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