blob: 5b5f9eead591e309e2338ebda370f0e77a1c0eff [file] [log] [blame]
Mohammed Hawari4c4633c2020-09-15 14:05:11 +02001# Copyright (c) 2020 Cisco and/or its affiliates.
Damjan Marion561f2732018-09-21 12:27:45 +02002# 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
14DPDK_PKTMBUF_HEADROOM ?= 128
Mohammed Hawari1f799bc2020-09-18 21:47:04 +020015DPDK_USE_LIBBSD ?= n
Damjan Marion561f2732018-09-21 12:27:45 +020016DPDK_DEBUG ?= n
17DPDK_MLX4_PMD ?= n
18DPDK_MLX5_PMD ?= n
Mohammed Hawari4c4633c2020-09-15 14:05:11 +020019DPDK_MLX5_COMMON_PMD ?= n
Damjan Marion561f2732018-09-21 12:27:45 +020020DPDK_TAP_PMD ?= n
21DPDK_FAILSAFE_PMD ?= n
Mohammed Hawari4c4633c2020-09-15 14:05:11 +020022DPDK_MACHINE ?= default
Mohammed Hawarife909a62020-11-20 18:37:14 +010023DPDK_MLX_IBV_LINK ?= static
Damjan Marion561f2732018-09-21 12:27:45 +020024
Mohammed Hawari4c4633c2020-09-15 14:05:11 +020025dpdk_version ?= 20.08
26dpdk_base_url ?= http://fast.dpdk.org/rel
27dpdk_tarball := dpdk-$(dpdk_version).tar.xz
28dpdk_tarball_md5sum_20.08 := 64badd32cd6bc0761befc8f2402c2148
29dpdk_tarball_md5sum := $(dpdk_tarball_md5sum_$(dpdk_version))
30dpdk_url := $(dpdk_base_url)/$(dpdk_tarball)
31dpdk_tarball_strip_dirs := 1
Mohammed Hawarife909a62020-11-20 18:37:14 +010032dpdk_depends := rdma-core $(if $(ARCH_X86_64), ipsec-mb)
Mohammed Hawari4c4633c2020-09-15 14:05:11 +020033# Debug or release
34
35DPDK_BUILD_TYPE:=release
36ifeq ($(DPDK_DEBUG), y)
37DPDK_BUILD_TYPE:=debug
Damjan Marion561f2732018-09-21 12:27:45 +020038endif
39
Mohammed Hawari4c4633c2020-09-15 14:05:11 +020040DPDK_DRIVERS_DISABLED := baseband/\*, \
41 bus/dpaa, \
42 bus/ifpga, \
Fan Zhang1152e602020-09-25 22:36:04 +010043 compress/isal, \
44 compress/octeontx, \
45 compress/zlib, \
Mohammed Hawari4c4633c2020-09-15 14:05:11 +020046 crypto/ccp, \
47 crypto/dpaa_sec, \
48 crypto/openssl, \
PiotrX Kleski9235d432020-10-12 15:33:11 +020049 crypto/aesni_mb, \
50 crypto/aesni_gcm, \
51 crypto/kasumi, \
52 crypto/snow3g, \
53 crypto/zuc, \
Mohammed Hawari4c4633c2020-09-15 14:05:11 +020054 event/\*, \
55 mempool/dpaa, \
56 net/af_packet, \
57 net/bnx2x, \
58 net/bonding, \
59 net/ipn3ke, \
60 net/liquidio, \
61 net/pcap, \
62 net/pfe, \
63 net/sfc, \
64 net/softnic, \
65 net/thunderx, \
66 raw/ifpga, \
67 net/af_xdp
68
69DPDK_LIBS_DISABLED := acl, \
70 bbdev, \
71 bitratestats, \
72 bpf, \
73 cfgfile, \
74 distributor, \
75 efd, \
76 fib, \
77 flow_classify, \
78 graph, \
79 gro, \
80 gso, \
81 jobstats, \
82 kni, \
83 latencystats, \
84 lpm, \
85 member, \
86 node, \
87 pipeline, \
88 port, \
89 power, \
90 rawdev, \
91 rib, \
92 table
93
Mohammed Hawarife909a62020-11-20 18:37:14 +010094DPDK_MLX_CONFIG_FLAG :=
95
Mohammed Hawari4c4633c2020-09-15 14:05:11 +020096# Adjust disabled pmd and libs depending on user provided variables
97ifeq ($(DPDK_MLX4_PMD), n)
98 DPDK_DRIVERS_DISABLED += ,net/mlx4
Mohammed Hawarife909a62020-11-20 18:37:14 +010099else
100 DPDK_MLX_CONFIG_FLAG := -Dibverbs_link=${DPDK_MLX_IBV_LINK}
Mohammed Hawari4c4633c2020-09-15 14:05:11 +0200101endif
102ifeq ($(DPDK_MLX5_PMD), n)
103 DPDK_DRIVERS_DISABLED += ,net/mlx5
Mohammed Hawarife909a62020-11-20 18:37:14 +0100104else
105 DPDK_MLX_CONFIG_FLAG := -Dibverbs_link=${DPDK_MLX_IBV_LINK}
Mohammed Hawari4c4633c2020-09-15 14:05:11 +0200106endif
107ifeq ($(DPDK_MLX5_COMMON_PMD), n)
108 DPDK_DRIVERS_DISABLED += ,common/mlx5
Mohammed Hawarife909a62020-11-20 18:37:14 +0100109else
110 DPDK_MLX_CONFIG_FLAG := -Dibverbs_link=${DPDK_MLX_IBV_LINK}
Mohammed Hawari4c4633c2020-09-15 14:05:11 +0200111endif
112ifeq ($(DPDK_TAP_PMD), n)
113 DPDK_DRIVERS_DISABLED += ,net/tap
114endif
115ifeq ($(DPDK_FAILSAFE_PMD), n)
116 DPDK_DRIVERS_DISABLED += ,net/failsafe
Damjan Marion561f2732018-09-21 12:27:45 +0200117endif
118
Mohammed Hawari4c4633c2020-09-15 14:05:11 +0200119# Sanitize DPDK_DRIVERS_DISABLED and DPDK_LIBS_DISABLED
120DPDK_DRIVERS_DISABLED := $(shell echo $(DPDK_DRIVERS_DISABLED) | tr -d '\\\t ')
121DPDK_LIBS_DISABLED := $(shell echo $(DPDK_LIBS_DISABLED) | tr -d '\\\t ')
Damjan Marion561f2732018-09-21 12:27:45 +0200122
Mohammed Hawari4c4633c2020-09-15 14:05:11 +0200123HASH := \#
124# post-meson-setup snippet to alter rte_build_config.h
125define dpdk_config
126if grep -q RTE_$(1) $(dpdk_src_dir)/config/rte_config.h ; then \
127sed -i -e 's/$(HASH)define RTE_$(1).*/$(HASH)define RTE_$(1) $(DPDK_$(1))/' \
128 $(dpdk_src_dir)/config/rte_config.h; \
129elif grep -q RTE_$(1) $(dpdk_build_dir)/rte_build_config.h ; then \
130sed -i -e 's/$(HASH)define RTE_$(1).*/$(HASH)define RTE_$(1) $(DPDK_$(1))/' \
131 $(dpdk_build_dir)/rte_build_config.h; \
132else \
133echo '$(HASH)define RTE_$(1) $(DPDK_$(1))' \
134 >> $(dpdk_build_dir)/rte_build_config.h ; \
Damjan Marion561f2732018-09-21 12:27:45 +0200135fi
136endef
137
Mohammed Hawari1f799bc2020-09-18 21:47:04 +0200138define dpdk_config_def
139if [[ "$(DPDK_$(1))" == "y" ]]; then \
140 if ! grep -q "RTE_$(1)" $(dpdk_build_dir)/rte_build_config.h \
141 $(dpdk_src_dir)/config/rte_config.h ; then \
142 echo '$(HASH)define RTE_$(1) 1' \
143 >> $(dpdk_build_dir)/rte_build_config.h ; \
144 fi; \
145elif [[ "$(DPDK_$(1))" == "n" ]]; then \
146 sed -i '/$(HASH)define RTE_$(1) .*/d' $(dpdk_build_dir)/rte_build_config.h \
147 $(dpdk_src_dir)/config/rte_config.h ; \
148fi
149endef
150
Mohammed Hawari4c4633c2020-09-15 14:05:11 +0200151DPDK_MESON_ARGS = \
152 --default-library static \
153 --libdir lib \
154 --prefix $(dpdk_install_dir) \
155 -Dtests=false \
156 "-Ddisable_drivers=$(DPDK_DRIVERS_DISABLED)" \
157 "-Ddisable_libs=$(DPDK_LIBS_DISABLED)" \
158 -Db_pie=true \
159 -Dmachine=$(DPDK_MACHINE) \
Mohammed Hawarife909a62020-11-20 18:37:14 +0100160 --buildtype=$(DPDK_BUILD_TYPE) \
161 ${DPDK_MLX_CONFIG_FLAG}
Mohammed Hawaria6d5f242020-10-22 14:14:04 +0200162
163PIP_DOWNLOAD_DIR = $(CURDIR)/downloads/
Damjan Marion561f2732018-09-21 12:27:45 +0200164
Mohammed Hawari4c4633c2020-09-15 14:05:11 +0200165define dpdk_config_cmds
166 cd $(dpdk_build_dir) && \
167 rm -rf ../dpdk-meson-venv && \
168 mkdir -p ../dpdk-meson-venv && \
169 python3 -m venv ../dpdk-meson-venv && \
170 source ../dpdk-meson-venv/bin/activate && \
Mohammed Hawaria6d5f242020-10-22 14:14:04 +0200171 (if ! ls $(PIP_DOWNLOAD_DIR)meson* ; then pip3 download -d $(PIP_DOWNLOAD_DIR) -f $(DL_CACHE_DIR) meson==0.54 setuptools wheel; fi) && \
172 pip3 install --no-index --find-links=$(PIP_DOWNLOAD_DIR) meson==0.54 && \
Mohammed Hawarife909a62020-11-20 18:37:14 +0100173 PKG_CONFIG_PATH=$(dpdk_install_dir)/lib/pkgconfig meson setup $(dpdk_src_dir) \
Mohammed Hawari4c4633c2020-09-15 14:05:11 +0200174 $(dpdk_build_dir) \
175 $(DPDK_MESON_ARGS) \
176 | tee $(dpdk_config_log) && \
177 deactivate && \
178 echo "DPDK post meson configuration" && \
179 echo "Altering rte_build_config.h" && \
Mohammed Hawari1f799bc2020-09-18 21:47:04 +0200180 $(call dpdk_config,PKTMBUF_HEADROOM) && \
181 $(call dpdk_config_def,USE_LIBBSD)
Mohammed Hawari4c4633c2020-09-15 14:05:11 +0200182endef
BenoƮt Gannefe750c22019-03-25 11:41:34 +0100183
Mohammed Hawari4c4633c2020-09-15 14:05:11 +0200184define dpdk_build_cmds
185 cd $(dpdk_build_dir) && \
186 source ../dpdk-meson-venv/bin/activate && \
187 meson compile -C . | tee $(dpdk_build_log) && \
188 deactivate
189endef
Damjan Marion561f2732018-09-21 12:27:45 +0200190
Mohammed Hawari4c4633c2020-09-15 14:05:11 +0200191define dpdk_install_cmds
192 cd $(dpdk_build_dir) && \
193 source ../dpdk-meson-venv/bin/activate && \
194 meson install && \
195 cd $(dpdk_install_dir)/lib && \
196 echo "GROUP ( $$(ls librte*.a ) )" > libdpdk.a && \
197 rm -rf librte*.so librte*.so.* dpdk/*/librte*.so dpdk/*/librte*.so.* && \
Mohammed Hawaria6d5f242020-10-22 14:14:04 +0200198 deactivate
Mohammed Hawari4c4633c2020-09-15 14:05:11 +0200199endef
Damjan Marion561f2732018-09-21 12:27:45 +0200200
Mohammed Hawari4c4633c2020-09-15 14:05:11 +0200201$(eval $(call package,dpdk))