blob: a4460ca8862c4e7fe84b0c936d5b9486c9cb0265 [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
Damjan Marion561f2732018-09-21 12:27:45 +020023
Mohammed Hawari4c4633c2020-09-15 14:05:11 +020024dpdk_version ?= 20.08
25dpdk_base_url ?= http://fast.dpdk.org/rel
26dpdk_tarball := dpdk-$(dpdk_version).tar.xz
27dpdk_tarball_md5sum_20.08 := 64badd32cd6bc0761befc8f2402c2148
28dpdk_tarball_md5sum := $(dpdk_tarball_md5sum_$(dpdk_version))
29dpdk_url := $(dpdk_base_url)/$(dpdk_tarball)
30dpdk_tarball_strip_dirs := 1
Damjan Marion561f2732018-09-21 12:27:45 +020031
Mohammed Hawari4c4633c2020-09-15 14:05:11 +020032# Debug or release
33
34DPDK_BUILD_TYPE:=release
35ifeq ($(DPDK_DEBUG), y)
36DPDK_BUILD_TYPE:=debug
Damjan Marion561f2732018-09-21 12:27:45 +020037endif
38
Mohammed Hawari4c4633c2020-09-15 14:05:11 +020039DPDK_DRIVERS_DISABLED := baseband/\*, \
40 bus/dpaa, \
41 bus/ifpga, \
Fan Zhang1152e602020-09-25 22:36:04 +010042 compress/isal, \
43 compress/octeontx, \
44 compress/zlib, \
Mohammed Hawari4c4633c2020-09-15 14:05:11 +020045 crypto/ccp, \
46 crypto/dpaa_sec, \
47 crypto/openssl, \
PiotrX Kleski9235d432020-10-12 15:33:11 +020048 crypto/aesni_mb, \
49 crypto/aesni_gcm, \
50 crypto/kasumi, \
51 crypto/snow3g, \
52 crypto/zuc, \
Mohammed Hawari4c4633c2020-09-15 14:05:11 +020053 event/\*, \
54 mempool/dpaa, \
55 net/af_packet, \
56 net/bnx2x, \
57 net/bonding, \
58 net/ipn3ke, \
59 net/liquidio, \
60 net/pcap, \
61 net/pfe, \
62 net/sfc, \
63 net/softnic, \
64 net/thunderx, \
65 raw/ifpga, \
66 net/af_xdp
67
68DPDK_LIBS_DISABLED := acl, \
69 bbdev, \
70 bitratestats, \
71 bpf, \
72 cfgfile, \
73 distributor, \
74 efd, \
75 fib, \
76 flow_classify, \
77 graph, \
78 gro, \
79 gso, \
80 jobstats, \
81 kni, \
82 latencystats, \
83 lpm, \
84 member, \
85 node, \
86 pipeline, \
87 port, \
88 power, \
89 rawdev, \
90 rib, \
91 table
92
93# Adjust disabled pmd and libs depending on user provided variables
94ifeq ($(DPDK_MLX4_PMD), n)
95 DPDK_DRIVERS_DISABLED += ,net/mlx4
96endif
97ifeq ($(DPDK_MLX5_PMD), n)
98 DPDK_DRIVERS_DISABLED += ,net/mlx5
99endif
100ifeq ($(DPDK_MLX5_COMMON_PMD), n)
101 DPDK_DRIVERS_DISABLED += ,common/mlx5
102endif
103ifeq ($(DPDK_TAP_PMD), n)
104 DPDK_DRIVERS_DISABLED += ,net/tap
105endif
106ifeq ($(DPDK_FAILSAFE_PMD), n)
107 DPDK_DRIVERS_DISABLED += ,net/failsafe
Damjan Marion561f2732018-09-21 12:27:45 +0200108endif
109
Mohammed Hawari4c4633c2020-09-15 14:05:11 +0200110# Sanitize DPDK_DRIVERS_DISABLED and DPDK_LIBS_DISABLED
111DPDK_DRIVERS_DISABLED := $(shell echo $(DPDK_DRIVERS_DISABLED) | tr -d '\\\t ')
112DPDK_LIBS_DISABLED := $(shell echo $(DPDK_LIBS_DISABLED) | tr -d '\\\t ')
Damjan Marion561f2732018-09-21 12:27:45 +0200113
Mohammed Hawari4c4633c2020-09-15 14:05:11 +0200114HASH := \#
115# post-meson-setup snippet to alter rte_build_config.h
116define dpdk_config
117if grep -q RTE_$(1) $(dpdk_src_dir)/config/rte_config.h ; then \
118sed -i -e 's/$(HASH)define RTE_$(1).*/$(HASH)define RTE_$(1) $(DPDK_$(1))/' \
119 $(dpdk_src_dir)/config/rte_config.h; \
120elif grep -q RTE_$(1) $(dpdk_build_dir)/rte_build_config.h ; then \
121sed -i -e 's/$(HASH)define RTE_$(1).*/$(HASH)define RTE_$(1) $(DPDK_$(1))/' \
122 $(dpdk_build_dir)/rte_build_config.h; \
123else \
124echo '$(HASH)define RTE_$(1) $(DPDK_$(1))' \
125 >> $(dpdk_build_dir)/rte_build_config.h ; \
Damjan Marion561f2732018-09-21 12:27:45 +0200126fi
127endef
128
Mohammed Hawari1f799bc2020-09-18 21:47:04 +0200129define dpdk_config_def
130if [[ "$(DPDK_$(1))" == "y" ]]; then \
131 if ! grep -q "RTE_$(1)" $(dpdk_build_dir)/rte_build_config.h \
132 $(dpdk_src_dir)/config/rte_config.h ; then \
133 echo '$(HASH)define RTE_$(1) 1' \
134 >> $(dpdk_build_dir)/rte_build_config.h ; \
135 fi; \
136elif [[ "$(DPDK_$(1))" == "n" ]]; then \
137 sed -i '/$(HASH)define RTE_$(1) .*/d' $(dpdk_build_dir)/rte_build_config.h \
138 $(dpdk_src_dir)/config/rte_config.h ; \
139fi
140endef
141
Mohammed Hawari4c4633c2020-09-15 14:05:11 +0200142DPDK_MESON_ARGS = \
143 --default-library static \
144 --libdir lib \
145 --prefix $(dpdk_install_dir) \
146 -Dtests=false \
147 "-Ddisable_drivers=$(DPDK_DRIVERS_DISABLED)" \
148 "-Ddisable_libs=$(DPDK_LIBS_DISABLED)" \
149 -Db_pie=true \
150 -Dmachine=$(DPDK_MACHINE) \
151 --buildtype=$(DPDK_BUILD_TYPE)
Damjan Marion561f2732018-09-21 12:27:45 +0200152
Mohammed Hawari4c4633c2020-09-15 14:05:11 +0200153define dpdk_config_cmds
154 cd $(dpdk_build_dir) && \
155 rm -rf ../dpdk-meson-venv && \
156 mkdir -p ../dpdk-meson-venv && \
157 python3 -m venv ../dpdk-meson-venv && \
158 source ../dpdk-meson-venv/bin/activate && \
159 pip3 install meson==0.54 && \
160 meson setup $(dpdk_src_dir) \
161 $(dpdk_build_dir) \
162 $(DPDK_MESON_ARGS) \
163 | tee $(dpdk_config_log) && \
164 deactivate && \
165 echo "DPDK post meson configuration" && \
166 echo "Altering rte_build_config.h" && \
Mohammed Hawari1f799bc2020-09-18 21:47:04 +0200167 $(call dpdk_config,PKTMBUF_HEADROOM) && \
168 $(call dpdk_config_def,USE_LIBBSD)
Mohammed Hawari4c4633c2020-09-15 14:05:11 +0200169endef
BenoƮt Gannefe750c22019-03-25 11:41:34 +0100170
Mohammed Hawari4c4633c2020-09-15 14:05:11 +0200171define dpdk_build_cmds
172 cd $(dpdk_build_dir) && \
173 source ../dpdk-meson-venv/bin/activate && \
174 meson compile -C . | tee $(dpdk_build_log) && \
175 deactivate
176endef
Damjan Marion561f2732018-09-21 12:27:45 +0200177
Mohammed Hawari4c4633c2020-09-15 14:05:11 +0200178define dpdk_install_cmds
179 cd $(dpdk_build_dir) && \
180 source ../dpdk-meson-venv/bin/activate && \
181 meson install && \
182 cd $(dpdk_install_dir)/lib && \
183 echo "GROUP ( $$(ls librte*.a ) )" > libdpdk.a && \
184 rm -rf librte*.so librte*.so.* dpdk/*/librte*.so dpdk/*/librte*.so.* && \
185 deactivate && \
186 rm -rf $(dpdk_build_dir)/../dpdk-meson-venv
187endef
Damjan Marion561f2732018-09-21 12:27:45 +0200188
Mohammed Hawari4c4633c2020-09-15 14:05:11 +0200189$(eval $(call package,dpdk))