b963c363738022ad458b87f0f80ca86430a2840f
[vpp.git] / build / external / packages / dpdk.mk
1 # Copyright (c) 2020 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14 DPDK_PKTMBUF_HEADROOM        ?= 128
15 DPDK_USE_LIBBSD              ?= n
16 DPDK_DEBUG                   ?= n
17 DPDK_MLX4_PMD                ?= n
18 DPDK_MLX5_PMD                ?= n
19 DPDK_MLX5_COMMON_PMD         ?= n
20 DPDK_TAP_PMD                 ?= n
21 DPDK_FAILSAFE_PMD            ?= n
22 DPDK_MACHINE                 ?= default
23 DPDK_MLX_IBV_LINK            ?= static
24
25 dpdk_version                 ?= 22.07
26 dpdk_base_url                ?= http://fast.dpdk.org/rel
27 dpdk_tarball                 := dpdk-$(dpdk_version).tar.xz
28 dpdk_tarball_md5sum_22.07    := fb73b58b80b1349cd05fe9cf6984afd4
29 dpdk_tarball_md5sum_22.03    := a07ca8839f98062f46e1cc359735cce8
30 dpdk_tarball_md5sum_21.11    := 58660bbbe9e95abce86e47692b196555
31 dpdk_tarball_md5sum_21.08    := de33433a1806280996a0ecbe66e3642f
32 dpdk_tarball_md5sum_21.05    := a78bba290b11d9717d1272cc6bfaf7c3
33 dpdk_tarball_md5sum          := $(dpdk_tarball_md5sum_$(dpdk_version))
34 dpdk_url                     := $(dpdk_base_url)/$(dpdk_tarball)
35 dpdk_tarball_strip_dirs      := 1
36 dpdk_depends                 := rdma-core $(if $(ARCH_X86_64), ipsec-mb)
37 # Debug or release
38
39 DPDK_BUILD_TYPE:=release
40 ifeq ($(DPDK_DEBUG), y)
41 DPDK_BUILD_TYPE:=debug
42 endif
43
44 DPDK_DRIVERS_DISABLED := baseband/\*,   \
45         bus/dpaa,                                                       \
46         bus/ifpga,                                                      \
47         common/cnxk,                                            \
48         compress/isal,                                          \
49         compress/octeontx,                                      \
50         compress/zlib,                                          \
51         crypto/ccp,                                                     \
52         crypto/cnxk,                                            \
53         crypto/dpaa_sec,                                        \
54         crypto/openssl,                                         \
55         crypto/aesni_mb,                                                \
56         crypto/aesni_gcm,                                               \
57         crypto/kasumi,                                          \
58         crypto/snow3g,                                          \
59         crypto/zuc,                                             \
60         event/\*,                                                       \
61         mempool/dpaa,                                           \
62         mempool/cnxk,                                           \
63         net/af_packet,                                          \
64         net/bnx2x,                                                      \
65         net/bonding,                                            \
66         net/cnxk,                                                       \
67         net/ipn3ke,                                                     \
68         net/liquidio,                                           \
69         net/pcap,                                                       \
70         net/pfe,                                                        \
71         net/sfc,                                                        \
72         net/softnic,                                            \
73         net/thunderx,                                           \
74         raw/ifpga,                                                      \
75         net/af_xdp
76
77 DPDK_LIBS_DISABLED := acl,                              \
78         bbdev,                                                          \
79         bitratestats,                                           \
80         bpf,                                                            \
81         cfgfile,                                                        \
82         cnxk,                                                   \
83         distributor,                                            \
84         efd,                                                            \
85         fib,                                                            \
86         flow_classify,                                          \
87         graph,                                                          \
88         gro,                                                            \
89         gso,                                                            \
90         jobstats,                                                       \
91         kni,                                                            \
92         latencystats,                                           \
93         lpm,                                                            \
94         member,                                                         \
95         node,                                                           \
96         pipeline,                                                       \
97         port,                                                           \
98         power,                                                          \
99         rawdev,                                                         \
100         rib,                                                            \
101         table
102
103 DPDK_MLX_CONFIG_FLAG :=
104
105 # Adjust disabled pmd and libs depending on user provided variables
106 ifeq ($(DPDK_MLX4_PMD), n)
107         DPDK_DRIVERS_DISABLED += ,net/mlx4
108 else
109         DPDK_MLX_CONFIG_FLAG := -Dibverbs_link=${DPDK_MLX_IBV_LINK}
110 endif
111 ifeq ($(DPDK_MLX5_PMD), n)
112         DPDK_DRIVERS_DISABLED += ,net/mlx5
113 else
114         DPDK_MLX_CONFIG_FLAG := -Dibverbs_link=${DPDK_MLX_IBV_LINK}
115 endif
116 ifeq ($(DPDK_MLX5_COMMON_PMD), n)
117         DPDK_DRIVERS_DISABLED += ,common/mlx5
118 else
119         DPDK_MLX_CONFIG_FLAG := -Dibverbs_link=${DPDK_MLX_IBV_LINK}
120 endif
121 ifeq ($(DPDK_TAP_PMD), n)
122         DPDK_DRIVERS_DISABLED += ,net/tap
123 endif
124 ifeq ($(DPDK_FAILSAFE_PMD), n)
125         DPDK_DRIVERS_DISABLED += ,net/failsafe
126 endif
127
128 # Sanitize DPDK_DRIVERS_DISABLED and DPDK_LIBS_DISABLED
129 DPDK_DRIVERS_DISABLED := $(shell echo $(DPDK_DRIVERS_DISABLED) | tr -d '\\\t ')
130 DPDK_LIBS_DISABLED := $(shell echo $(DPDK_LIBS_DISABLED) | tr -d '\\\t ')
131
132 HASH := \#
133 # post-meson-setup snippet to alter rte_build_config.h
134 define dpdk_config
135 if grep -q RTE_$(1) $(dpdk_src_dir)/config/rte_config.h ; then  \
136 sed -i -e 's/$(HASH)define RTE_$(1).*/$(HASH)define RTE_$(1) $(DPDK_$(1))/' \
137         $(dpdk_src_dir)/config/rte_config.h; \
138 elif grep -q RTE_$(1) $(dpdk_build_dir)/rte_build_config.h ; then \
139 sed -i -e 's/$(HASH)define RTE_$(1).*/$(HASH)define RTE_$(1) $(DPDK_$(1))/' \
140         $(dpdk_build_dir)/rte_build_config.h; \
141 else \
142 echo '$(HASH)define RTE_$(1) $(DPDK_$(1))' \
143         >> $(dpdk_build_dir)/rte_build_config.h ; \
144 fi
145 endef
146
147 define dpdk_config_def
148 if [[ "$(DPDK_$(1))" == "y" ]]; then \
149     if ! grep -q "RTE_$(1)" $(dpdk_build_dir)/rte_build_config.h \
150       $(dpdk_src_dir)/config/rte_config.h ; then \
151         echo '$(HASH)define RTE_$(1) 1' \
152           >> $(dpdk_build_dir)/rte_build_config.h ; \
153     fi; \
154 elif [[ "$(DPDK_$(1))" == "n" ]]; then \
155     sed -i '/$(HASH)define RTE_$(1) .*/d' $(dpdk_build_dir)/rte_build_config.h \
156       $(dpdk_src_dir)/config/rte_config.h ; \
157 fi
158 endef
159
160 DPDK_MESON_ARGS = \
161         --default-library static \
162         --libdir lib \
163         --prefix $(dpdk_install_dir) \
164         -Dtests=false \
165         "-Ddisable_drivers=$(DPDK_DRIVERS_DISABLED)" \
166         "-Ddisable_libs=$(DPDK_LIBS_DISABLED)" \
167         -Db_pie=true \
168         -Dmachine=$(DPDK_MACHINE) \
169         --buildtype=$(DPDK_BUILD_TYPE) \
170         ${DPDK_MLX_CONFIG_FLAG}
171
172 PIP_DOWNLOAD_DIR = $(CURDIR)/downloads/
173
174 define dpdk_config_cmds
175         cd $(dpdk_build_dir) && \
176         rm -rf ../dpdk-meson-venv && \
177         mkdir -p ../dpdk-meson-venv && \
178         python3 -m venv ../dpdk-meson-venv && \
179         source ../dpdk-meson-venv/bin/activate && \
180         (if ! ls $(PIP_DOWNLOAD_DIR)meson* ; then pip3 download -d $(PIP_DOWNLOAD_DIR) -f $(DL_CACHE_DIR) meson==0.55 setuptools wheel pyelftools; fi) && \
181         pip3 install --no-index --find-links=$(PIP_DOWNLOAD_DIR) meson==0.55 pyelftools && \
182         PKG_CONFIG_PATH=$(dpdk_install_dir)/lib/pkgconfig meson setup $(dpdk_src_dir) \
183                 $(dpdk_build_dir) \
184                 $(DPDK_MESON_ARGS) \
185                         | tee $(dpdk_config_log) && \
186         deactivate && \
187         echo "DPDK post meson configuration" && \
188         echo "Altering rte_build_config.h" && \
189         $(call dpdk_config,PKTMBUF_HEADROOM) && \
190         $(call dpdk_config_def,USE_LIBBSD)
191 endef
192
193 ifeq ("$(DPDK_VERBOSE)","1")
194 DPDK_VERBOSE_BUILD = --verbose
195 endif
196
197 define dpdk_build_cmds
198         cd $(dpdk_build_dir) && \
199         source ../dpdk-meson-venv/bin/activate && \
200         meson compile $(DPDK_VERBOSE_BUILD) -C . | tee $(dpdk_build_log) && \
201         deactivate
202 endef
203
204 define dpdk_install_cmds
205         cd $(dpdk_build_dir) && \
206         source ../dpdk-meson-venv/bin/activate && \
207         meson install && \
208         cd $(dpdk_install_dir)/lib && \
209         echo "GROUP ( $$(ls librte*.a ) )" > libdpdk.a && \
210         rm -rf librte*.so librte*.so.* dpdk/*/librte*.so dpdk/*/librte*.so.* && \
211         deactivate
212 endef
213
214 $(eval $(call package,dpdk))