doc: add Mellanox BlueField platform guide
[dpdk.git] / doc / guides / linux_gsg / cross_build_dpdk_for_arm64.rst
1 ..  SPDX-License-Identifier: BSD-3-Clause
2     Copyright(c) 2018 ARM Corporation.
3
4 Cross compile DPDK for ARM64
5 ============================
6 This chapter describes how to cross compile DPDK for ARM64 from x86 build hosts.
7
8 .. note::
9
10    Whilst it is recommended to natively build DPDK on ARM64 (just
11    like with x86), it is also possible to cross-build DPDK for ARM64. An
12    ARM64 cross compile GNU toolchain is used for this.
13
14 Obtain the cross tool chain
15 ---------------------------
16 The latest cross compile tool chain can be downloaded from:
17 https://developer.arm.com/open-source/gnu-toolchain/gnu-a/downloads.
18
19 Following is the step to get the version 8.2, latest one at the time of this writing.
20
21 .. code-block:: console
22
23    wget https://developer.arm.com/-/media/Files/downloads/gnu-a/8.2-2019.01/gcc-arm-8.2-2019.01-x86_64-aarch64-linux-gnu.tar.xz
24
25 Unzip and add into the PATH
26 ---------------------------
27
28 .. code-block:: console
29
30    tar -xvf gcc-arm-8.2-2019.01-x86_64-aarch64-linux-gnu.tar.xz
31    export PATH=$PATH:<cross_install_dir>/gcc-arm-8.2-2019.01-x86_64-aarch64-linux-gnu/bin
32
33 .. note::
34
35    For the host requirements and other info, refer to the release note section: https://releases.linaro.org/components/toolchain/binaries/
36
37 .. _arm_cross_build_getting_the_prerequisite_library:
38
39 Getting the prerequisite library
40 --------------------------------
41
42 NUMA is required by most modern machines, not needed for non-NUMA architectures.
43
44 .. note::
45
46    For compiling the NUMA lib, run libtool --version to ensure the libtool version >= 2.2,
47    otherwise the compilation will fail with errors.
48
49 .. code-block:: console
50
51    git clone https://github.com/numactl/numactl.git
52    cd numactl
53    git checkout v2.0.11 -b v2.0.11
54    ./autogen.sh
55    autoconf -i
56    ./configure --host=aarch64-linux-gnu CC=aarch64-linux-gnu-gcc --prefix=<numa install dir>
57    make install
58
59 The numa header files and lib file is generated in the include and lib folder respectively under <numa install dir>.
60
61 .. _augment_the_cross_toolchain_with_numa_support:
62
63 Augment the cross toolchain with NUMA support
64 ---------------------------------------------
65
66 .. note::
67
68    This way is optional, an alternative is to use extra CFLAGS and LDFLAGS, depicted in :ref:`configure_and_cross_compile_dpdk_build` below.
69
70 Copy the NUMA header files and lib to the cross compiler's directories:
71
72 .. code-block:: console
73
74    cp <numa_install_dir>/include/numa*.h <cross_install_dir>/gcc-arm-8.2-2019.01-x86_64-aarch64-linux-gnu/bin/../aarch64-linux-gnu/libc/usr/include/
75    cp <numa_install_dir>/lib/libnuma.a <cross_install_dir>/gcc-arm-8.2-2019.01-x86_64-aarch64-linux-gnu/lib/gcc/aarch64-linux-gnu/8.2/
76
77 .. _configure_and_cross_compile_dpdk_build:
78
79 Configure and cross compile DPDK Build
80 --------------------------------------
81 To configure a build, choose one of the target configurations, like arm64-dpaa2-linux-gcc and arm64-thunderx-linux-gcc.
82
83 .. code-block:: console
84
85    make config T=arm64-armv8a-linux-gcc
86
87 To cross-compile, without compiling the kernel modules, use the following command:
88
89 .. code-block:: console
90
91    make -j CROSS=aarch64-linux-gnu- CONFIG_RTE_KNI_KMOD=n CONFIG_RTE_EAL_IGB_UIO=n
92
93 To cross-compile, including the kernel modules, the kernel source tree needs to be specified by setting
94 RTE_KERNELDIR:
95
96 .. code-block:: console
97
98    make -j CROSS=aarch64-linux-gnu- RTE_KERNELDIR=<kernel_src_rootdir> CROSS_COMPILE=aarch64-linux-gnu-
99
100 To compile for non-NUMA targets, without compiling the kernel modules, use the following command:
101
102 .. code-block:: console
103
104    make -j CROSS=aarch64-linux-gnu- CONFIG_RTE_KNI_KMOD=n CONFIG_RTE_EAL_IGB_UIO=n CONFIG_RTE_LIBRTE_VHOST_NUMA=n CONFIG_RTE_EAL_NUMA_AWARE_HUGEPAGES=n
105
106 .. note::
107
108    1. EXTRA_CFLAGS and EXTRA_LDFLAGS should be added to include the NUMA headers and link the library respectively,
109    if the above step :ref:`augment_the_cross_toolchain_with_numa_support` was skipped therefore the toolchain was not
110    augmented with NUMA support.
111
112    2. "-isystem <numa_install_dir>/include" should be add to EXTRA_CFLAGS, otherwise the numa.h file will get a lot of compiling
113    errors of Werror=cast-qual, Werror=strict-prototypes and Werror=old-style-definition.
114
115    An example is given below:
116
117    .. code-block:: console
118
119       make -j CROSS=aarch64-linux-gnu- CONFIG_RTE_KNI_KMOD=n CONFIG_RTE_EAL_IGB_UIO=n EXTRA_CFLAGS="-isystem <numa_install_dir>/include" EXTRA_LDFLAGS="-L<numa_install_dir>/lib -lnuma"
120
121 Meson Cross Compiling DPDK
122 --------------------------
123
124 To cross-compile DPDK on a desired target machine we can use the following
125 command::
126
127         meson cross-build --cross-file <target_machine_configuration>
128         ninja -C cross-build
129
130 For example if the target machine is arm64 we can use the following
131 command::
132
133         meson arm64-build --cross-file config/arm/arm64_armv8_linux_gcc
134         ninja -C arm64-build