dpdk: bump to DPDK v21.11
[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                 ?= 21.11
26 dpdk_base_url                ?= http://fast.dpdk.org/rel
27 dpdk_tarball                 := dpdk-$(dpdk_version).tar.xz
28 dpdk_tarball_md5sum_21.11    := 58660bbbe9e95abce86e47692b196555
29 dpdk_tarball_md5sum_21.08    := de33433a1806280996a0ecbe66e3642f
30 dpdk_tarball_md5sum_21.05    := a78bba290b11d9717d1272cc6bfaf7c3
31 dpdk_tarball_md5sum          := $(dpdk_tarball_md5sum_$(dpdk_version))
32 dpdk_url                     := $(dpdk_base_url)/$(dpdk_tarball)
33 dpdk_tarball_strip_dirs      := 1
34 dpdk_depends                 := rdma-core $(if $(ARCH_X86_64), ipsec-mb)
35 # Debug or release
36
37 DPDK_BUILD_TYPE:=release
38 ifeq ($(DPDK_DEBUG), y)
39 DPDK_BUILD_TYPE:=debug
40 endif
41
42 DPDK_DRIVERS_DISABLED := baseband/\*,   \
43         bus/dpaa,                                                       \
44         bus/ifpga,                                                      \
45         compress/isal,                                          \
46         compress/octeontx,                                      \
47         compress/zlib,                                          \
48         crypto/ccp,                                                     \
49         crypto/dpaa_sec,                                        \
50         crypto/openssl,                                         \
51         crypto/aesni_mb,                                                \
52         crypto/aesni_gcm,                                               \
53         crypto/kasumi,                                          \
54         crypto/snow3g,                                          \
55         crypto/zuc,                                             \
56         event/\*,                                                       \
57         mempool/dpaa,                                           \
58         net/af_packet,                                          \
59         net/bnx2x,                                                      \
60         net/bonding,                                            \
61         net/ipn3ke,                                                     \
62         net/liquidio,                                           \
63         net/pcap,                                                       \
64         net/pfe,                                                        \
65         net/sfc,                                                        \
66         net/softnic,                                            \
67         net/thunderx,                                           \
68         raw/ifpga,                                                      \
69         net/af_xdp
70
71 DPDK_LIBS_DISABLED := acl,                              \
72         bbdev,                                                          \
73         bitratestats,                                           \
74         bpf,                                                            \
75         cfgfile,                                                        \
76         distributor,                                            \
77         efd,                                                            \
78         fib,                                                            \
79         flow_classify,                                          \
80         graph,                                                          \
81         gro,                                                            \
82         gso,                                                            \
83         jobstats,                                                       \
84         kni,                                                            \
85         latencystats,                                           \
86         lpm,                                                            \
87         member,                                                         \
88         node,                                                           \
89         pipeline,                                                       \
90         port,                                                           \
91         power,                                                          \
92         rawdev,                                                         \
93         rib,                                                            \
94         table
95
96 DPDK_MLX_CONFIG_FLAG :=
97
98 # Adjust disabled pmd and libs depending on user provided variables
99 ifeq ($(DPDK_MLX4_PMD), n)
100         DPDK_DRIVERS_DISABLED += ,net/mlx4
101 else
102         DPDK_MLX_CONFIG_FLAG := -Dibverbs_link=${DPDK_MLX_IBV_LINK}
103 endif
104 ifeq ($(DPDK_MLX5_PMD), n)
105         DPDK_DRIVERS_DISABLED += ,net/mlx5
106 else
107         DPDK_MLX_CONFIG_FLAG := -Dibverbs_link=${DPDK_MLX_IBV_LINK}
108 endif
109 ifeq ($(DPDK_MLX5_COMMON_PMD), n)
110         DPDK_DRIVERS_DISABLED += ,common/mlx5
111 else
112         DPDK_MLX_CONFIG_FLAG := -Dibverbs_link=${DPDK_MLX_IBV_LINK}
113 endif
114 ifeq ($(DPDK_TAP_PMD), n)
115         DPDK_DRIVERS_DISABLED += ,net/tap
116 endif
117 ifeq ($(DPDK_FAILSAFE_PMD), n)
118         DPDK_DRIVERS_DISABLED += ,net/failsafe
119 endif
120
121 # Sanitize DPDK_DRIVERS_DISABLED and DPDK_LIBS_DISABLED
122 DPDK_DRIVERS_DISABLED := $(shell echo $(DPDK_DRIVERS_DISABLED) | tr -d '\\\t ')
123 DPDK_LIBS_DISABLED := $(shell echo $(DPDK_LIBS_DISABLED) | tr -d '\\\t ')
124
125 HASH := \#
126 # post-meson-setup snippet to alter rte_build_config.h
127 define dpdk_config
128 if grep -q RTE_$(1) $(dpdk_src_dir)/config/rte_config.h ; then  \
129 sed -i -e 's/$(HASH)define RTE_$(1).*/$(HASH)define RTE_$(1) $(DPDK_$(1))/' \
130         $(dpdk_src_dir)/config/rte_config.h; \
131 elif grep -q RTE_$(1) $(dpdk_build_dir)/rte_build_config.h ; then \
132 sed -i -e 's/$(HASH)define RTE_$(1).*/$(HASH)define RTE_$(1) $(DPDK_$(1))/' \
133         $(dpdk_build_dir)/rte_build_config.h; \
134 else \
135 echo '$(HASH)define RTE_$(1) $(DPDK_$(1))' \
136         >> $(dpdk_build_dir)/rte_build_config.h ; \
137 fi
138 endef
139
140 define dpdk_config_def
141 if [[ "$(DPDK_$(1))" == "y" ]]; then \
142     if ! grep -q "RTE_$(1)" $(dpdk_build_dir)/rte_build_config.h \
143       $(dpdk_src_dir)/config/rte_config.h ; then \
144         echo '$(HASH)define RTE_$(1) 1' \
145           >> $(dpdk_build_dir)/rte_build_config.h ; \
146     fi; \
147 elif [[ "$(DPDK_$(1))" == "n" ]]; then \
148     sed -i '/$(HASH)define RTE_$(1) .*/d' $(dpdk_build_dir)/rte_build_config.h \
149       $(dpdk_src_dir)/config/rte_config.h ; \
150 fi
151 endef
152
153 DPDK_MESON_ARGS = \
154         --default-library static \
155         --libdir lib \
156         --prefix $(dpdk_install_dir) \
157         -Dtests=false \
158         "-Ddisable_drivers=$(DPDK_DRIVERS_DISABLED)" \
159         "-Ddisable_libs=$(DPDK_LIBS_DISABLED)" \
160         -Db_pie=true \
161         -Dmachine=$(DPDK_MACHINE) \
162         --buildtype=$(DPDK_BUILD_TYPE) \
163         ${DPDK_MLX_CONFIG_FLAG}
164
165 PIP_DOWNLOAD_DIR = $(CURDIR)/downloads/
166
167 define dpdk_config_cmds
168         cd $(dpdk_build_dir) && \
169         rm -rf ../dpdk-meson-venv && \
170         mkdir -p ../dpdk-meson-venv && \
171         python3 -m venv ../dpdk-meson-venv && \
172         source ../dpdk-meson-venv/bin/activate && \
173         (if ! ls $(PIP_DOWNLOAD_DIR)meson* ; then pip3 download -d $(PIP_DOWNLOAD_DIR) -f $(DL_CACHE_DIR) meson==0.55 setuptools wheel pyelftools; fi) && \
174         pip3 install --no-index --find-links=$(PIP_DOWNLOAD_DIR) meson==0.55 pyelftools && \
175         PKG_CONFIG_PATH=$(dpdk_install_dir)/lib/pkgconfig meson setup $(dpdk_src_dir) \
176                 $(dpdk_build_dir) \
177                 $(DPDK_MESON_ARGS) \
178                         | tee $(dpdk_config_log) && \
179         deactivate && \
180         echo "DPDK post meson configuration" && \
181         echo "Altering rte_build_config.h" && \
182         $(call dpdk_config,PKTMBUF_HEADROOM) && \
183         $(call dpdk_config_def,USE_LIBBSD)
184 endef
185
186 ifeq ("$(DPDK_VERBOSE)","1")
187 DPDK_VERBOSE_BUILD = --verbose
188 endif
189
190 define dpdk_build_cmds
191         cd $(dpdk_build_dir) && \
192         source ../dpdk-meson-venv/bin/activate && \
193         meson compile $(DPDK_VERBOSE_BUILD) -C . | tee $(dpdk_build_log) && \
194         deactivate
195 endef
196
197 define dpdk_install_cmds
198         cd $(dpdk_build_dir) && \
199         source ../dpdk-meson-venv/bin/activate && \
200         meson install && \
201         cd $(dpdk_install_dir)/lib && \
202         echo "GROUP ( $$(ls librte*.a ) )" > libdpdk.a && \
203         rm -rf librte*.so librte*.so.* dpdk/*/librte*.so dpdk/*/librte*.so.* && \
204         deactivate
205 endef
206
207 $(eval $(call package,dpdk))