Revert "dpdk: build sw cryptodev support with make verify"
[vpp.git] / dpdk / Makefile
1 # Copyright (c) 2015 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 # Scripts require non-POSIX parts of bash
15 SHELL := /bin/bash
16
17 DPDK_BUILD_DIR        ?= $(CURDIR)/_build
18 DPDK_INSTALL_DIR      ?= $(CURDIR)/_install
19 DPDK_PKTMBUF_HEADROOM ?= 128
20 DPDK_DOWNLOAD_DIR     ?= $(HOME)/Downloads
21 DPDK_DEBUG            ?= n
22 DPDK_CRYPTO_SW_PMD    ?= n
23 DPDK_MLX4_PMD         ?= n
24 DPDK_MLX5_PMD         ?= n
25
26 B := $(DPDK_BUILD_DIR)
27 I := $(DPDK_INSTALL_DIR)
28 DPDK_VERSION ?= 17.05
29 PKG_SUFFIX ?= vpp5
30 DPDK_BASE_URL ?= http://fast.dpdk.org/rel
31 DPDK_TARBALL := dpdk-$(DPDK_VERSION).tar.xz
32 DPDK_TAR_URL := $(DPDK_BASE_URL)/$(DPDK_TARBALL)
33 DPDK_17.02_TARBALL_MD5_CKSUM := 6b9f7387c35641f4e8dbba3e528f2376
34 DPDK_17.05_TARBALL_MD5_CKSUM := 0a68c31cd6a6cabeed0a4331073e4c05
35 DPDK_SOURCE := $(B)/dpdk-$(DPDK_VERSION)
36
37 ifeq ($(DPDK_CRYPTO_SW_PMD),y)
38 AESNIMB_LIB_TARBALL := v0.44-gcm.2.tar.gz
39 AESNIMB_LIB_TARBALL_URL := http://github.com/01org/intel-ipsec-mb/archive/$(AESNIMB_LIB_TARBALL)
40 AESNIMB_LIB_SOURCE := $(B)/intel-ipsec-mb-0.44-gcm.2
41 ISA_L_CRYPTO_LIB_TARBALL := isa_l_crypto.tar.gz
42 ISA_L_CRYPTO_LIB_TARBALL_URL := http://github.com/01org/isa-l_crypto/archive/master.tar.gz
43 ISA_L_CRYPTO_LIB_SOURCE := $(B)/isa-l_crypto-master
44 endif
45
46 ifneq (,$(findstring clang,$(CC)))
47 DPDK_CC=clang
48 else ifneq (,$(findstring icc,$(CC)))
49 DPDK_CC=icc
50 else
51 DPDK_CC=gcc
52 endif
53
54 MACHINE=$(shell uname -m)
55
56 ##############################################################################
57 # Intel x86
58 ##############################################################################
59 ifeq ($(MACHINE),$(filter $(MACHINE),x86_64 i686))
60 DPDK_TARGET           ?= $(MACHINE)-native-linuxapp-$(DPDK_CC)
61 DPDK_MACHINE          ?= nhm
62 DPDK_TUNE             ?= core-avx2
63
64 ##############################################################################
65 # Cavium ThunderX
66 ##############################################################################
67 else ifneq (,$(findstring thunder,$(shell cat /sys/bus/pci/devices/0000:00:01.0/uevent | grep cavium)))
68 export CROSS=""
69 DPDK_TARGET           ?= arm64-thunderx-linuxapp-$(DPDK_CC)
70 DPDK_MACHINE          ?= thunderx
71 DPDK_TUNE             ?= generic
72
73 ##############################################################################
74 # Unknown platofrm
75 ##############################################################################
76 else
77 $(error unknown platform)
78 endif
79
80 JOBS := $(shell grep processor /proc/cpuinfo | wc -l)
81
82 # compiler/linker custom arguments
83 DPDK_CPU_CFLAGS := -pie -fPIC
84 DPDK_EXTRA_LDFLAGS := -g
85
86 ifeq ($(DPDK_DEBUG),n)
87 DPDK_EXTRA_CFLAGS := -g -mtune=$(DPDK_TUNE)
88 else
89 DPDK_EXTRA_CFLAGS := -g -O0
90 endif
91
92 ifeq ($(DPDK_CRYPTO_SW_PMD),y)
93 DPDK_EXTRA_CFLAGS += -I$(I)/include
94 DPDK_EXTRA_LDFLAGS += -L$(I)/lib
95 DPDK_MAKE_EXTRA_ARGS += AESNI_MULTI_BUFFER_LIB_PATH=$(AESNIMB_LIB_SOURCE)
96 endif
97
98 # assemble DPDK make arguments
99 DPDK_MAKE_ARGS := -C $(DPDK_SOURCE) -j $(JOBS) \
100         T=$(DPDK_TARGET) \
101         RTE_CONFIG_TEMPLATE=../custom-config \
102         EXTRA_CFLAGS="$(DPDK_EXTRA_CFLAGS)" \
103         EXTRA_LDFLAGS="$(DPDK_EXTRA_LDFLAGS)" \
104         CPU_CFLAGS="$(DPDK_CPU_CFLAGS)" \
105         DESTDIR=$(I) \
106         $(DPDK_MAKE_EXTRA_ARGS)
107
108 DPDK_SOURCE_FILES := $(shell  [ -e $(DPDK_SOURCE) ] && find $(DPDK_SOURCE) -name "*.[chS]")
109
110 define set
111 @if grep -q CONFIG_$1 $@ ; \
112         then sed -i -e 's/.*\(CONFIG_$1=\).*/\1$2/' $@ ; \
113         else echo CONFIG_$1=$2 >> $@ ; \
114 fi
115 endef
116
117 all: build
118
119 $(B)/custom-config: $(B)/.patch.ok Makefile
120         @echo --- generating custom config from $(DPDK_SOURCE)/config/defconfig_$(DPDK_TARGET) ---
121         @cpp -undef -ffreestanding -x assembler-with-cpp $(DPDK_SOURCE)/config/defconfig_$(DPDK_TARGET) $@
122         $(call set,RTE_MACHINE,$(DPDK_MACHINE))
123         @# modify options
124         $(call set,RTE_MAX_LCORE,256)
125         $(call set,RTE_PKTMBUF_HEADROOM,$(DPDK_PKTMBUF_HEADROOM))
126         $(call set,RTE_LIBEAL_USE_HPET,y)
127         $(call set,RTE_BUILD_COMBINE_LIBS,y)
128         $(call set,RTE_PCI_CONFIG,y)
129         $(call set,RTE_PCI_EXTENDED_TAG,"on")
130         $(call set,RTE_PCI_MAX_READ_REQUEST_SIZE,4096)
131         @# enable debug init for device drivers
132         $(call set,RTE_LIBRTE_I40E_DEBUG_INIT,$(DPDK_DEBUG))
133         $(call set,RTE_LIBRTE_IXGBE_DEBUG_INIT,$(DPDK_DEBUG))
134         $(call set,RTE_LIBRTE_E1000_DEBUG_INIT,$(DPDK_DEBUG))
135         $(call set,RTE_LIBRTE_VIRTIO_DEBUG_INIT,$(DPDK_DEBUG))
136         $(call set,RTE_LIBRTE_VMXNET3_DEBUG_INIT,$(DPDK_DEBUG))
137         $(call set,RTE_LIBRTE_PMD_BOND,y)
138         $(call set,RTE_LIBRTE_IP_FRAG,y)
139         $(call set,RTE_LIBRTE_PMD_QAT,y)
140         $(call set,RTE_LIBRTE_PMD_AESNI_MB,$(DPDK_CRYPTO_SW_PMD))
141         $(call set,RTE_LIBRTE_PMD_AESNI_GCM,$(DPDK_CRYPTO_SW_PMD))
142         $(call set,RTE_LIBRTE_MLX4_PMD,$(DPDK_MLX4_PMD))
143         $(call set,RTE_LIBRTE_MLX5_PMD,$(DPDK_MLX5_PMD))
144         @# not needed
145         $(call set,RTE_LIBRTE_TIMER,n)
146         $(call set,RTE_LIBRTE_CFGFILE,n)
147         $(call set,RTE_LIBRTE_LPM,n)
148         $(call set,RTE_LIBRTE_ACL,n)
149         $(call set,RTE_LIBRTE_POWER,n)
150         $(call set,RTE_LIBRTE_DISTRIBUTOR,n)
151         $(call set,RTE_LIBRTE_PORT,n)
152         $(call set,RTE_LIBRTE_TABLE,n)
153         $(call set,RTE_LIBRTE_PIPELINE,n)
154         $(call set,RTE_KNI_KMOD,n)
155         $(call set,RTE_EAL_IGB_UIO,n)
156         @rm -f .config.ok
157
158 $(CURDIR)/$(DPDK_TARBALL):
159         @if [ -e $(DPDK_DOWNLOAD_DIR)/$(DPDK_TARBALL) ] ; \
160                 then cp $(DPDK_DOWNLOAD_DIR)/$(DPDK_TARBALL) $(CURDIR) ; \
161                 else curl -o $(CURDIR)/$(DPDK_TARBALL) -LO $(DPDK_TAR_URL) ; \
162         fi
163         @rm -f $(B)/.download.ok
164
165 $(CURDIR)/$(AESNIMB_LIB_TARBALL):
166         @if [ -e $(DPDK_DOWNLOAD_DIR)/$(AESNIMB_LIB_TARBALL) ] ; \
167                 then cp $(DPDK_DOWNLOAD_DIR)/$(AESNIMB_LIB_TARBALL) $(CURDIR) ; \
168                 else curl -o $@ -LO $(AESNIMB_LIB_TARBALL_URL) ; \
169         fi
170
171 $(CURDIR)/$(ISA_L_CRYPTO_LIB_TARBALL):
172         @if [ -e $(DPDK_DOWNLOAD_DIR)/$(ISA_L_CRYPTO_LIB_TARBALL) ] ; \
173                 then cp $(DPDK_DOWNLOAD_DIR)/$(ISA_L_CRYPTO_LIB_TARBALL) $(CURDIR) ; \
174                 else curl -o $@ -LO $(ISA_L_CRYPTO_LIB_TARBALL_URL) ; \
175         fi
176
177 DPDK_DOWNLOADS = $(CURDIR)/$(DPDK_TARBALL)
178 ifeq ($(DPDK_CRYPTO_SW_PMD),y)
179 DPDK_DOWNLOADS += $(CURDIR)/$(AESNIMB_LIB_TARBALL)
180 DPDK_DOWNLOADS += $(CURDIR)/$(ISA_L_CRYPTO_LIB_TARBALL)
181 endif
182
183 $(B)/.download.ok: $(DPDK_DOWNLOADS)
184         @mkdir -p $(B)
185         @openssl md5 $< | cut -f 2 -d " " - > $(B)/$(DPDK_TARBALL).md5sum
186         @([ "$$(<$(B)/$(DPDK_TARBALL).md5sum)" = "$(DPDK_$(DPDK_VERSION)_TARBALL_MD5_CKSUM)" ] || \
187         ( echo "Bad Checksum! Please remove $< and retry" && \
188                 rm $(B)/$(DPDK_TARBALL).md5sum && false ))
189         @touch $@
190
191 .PHONY: download
192 download: $(B)/.download.ok
193
194 $(B)/.extract.ok: $(B)/.download.ok
195         @echo --- extracting $(DPDK_TARBALL) ---
196         @tar --directory $(B) --extract --file $(CURDIR)/$(DPDK_TARBALL)
197 ifeq ($(DPDK_CRYPTO_SW_PMD),y)
198         @echo --- extracting $(AESNIMB_LIB_TARBALL) ---
199         @tar --directory $(B) --extract --file $(CURDIR)/$(AESNIMB_LIB_TARBALL)
200         @echo --- extracting $(ISA_L_CRYPTO_LIB_TARBALL) ---
201         @tar --directory $(B) --extract --file $(CURDIR)/$(ISA_L_CRYPTO_LIB_TARBALL)
202 endif
203         @touch $@
204
205 .PHONY: extract
206 extract: $(B)/.extract.ok
207
208 $(B)/.patch.ok: $(B)/.extract.ok
209 ifneq ($(wildcard $(CURDIR)/dpdk-$(DPDK_VERSION)_patches/*.patch),)
210         @echo --- patching ---
211         @for f in $(CURDIR)/dpdk-$(DPDK_VERSION)_patches/*.patch ; do \
212                 echo Applying patch: $$(basename $$f) ; \
213                 patch -p1 -d $(DPDK_SOURCE) < $$f ; \
214         done
215 endif
216         @touch $@
217
218 .PHONY: patch
219 patch: $(B)/.patch.ok
220
221 $(B)/.config.ok: $(B)/.patch.ok $(B)/custom-config
222         @make $(DPDK_MAKE_ARGS) config
223         @touch $@
224
225 .PHONY: config
226 config: $(B)/.config.ok
227
228 $(B)/.build.ok: $(DPDK_SOURCE_FILES)
229         @if [ ! -e $(B)/.config.ok ] ; then echo 'Please run "make config" first' && false ; fi
230 ifeq ($(DPDK_CRYPTO_SW_PMD),y)
231         # Build IPsec_MB library
232         mkdir -p $(I)/lib/
233         make -C $(AESNIMB_LIB_SOURCE) -j NO_GCM=y
234         cp $(AESNIMB_LIB_SOURCE)/libIPSec_MB.a $(I)/lib/
235         # Build ISA-L Crypto library
236         cd $(ISA_L_CRYPTO_LIB_SOURCE) && ./autogen.sh && ./configure --prefix=$(I)
237         make -C $(ISA_L_CRYPTO_LIB_SOURCE) -j install
238 endif
239         @make $(DPDK_MAKE_ARGS) install
240         @touch $@
241
242 .PHONY: build
243 build: $(B)/.build.ok
244
245 .PHONY: install
246 install: $(B)/.build.ok
247
248 .PHONY: clean
249 clean:
250         @rm -rf $(B) $(I)
251
252 ##############################################################################
253 # .deb packaging
254 ##############################################################################
255
256 DEB_ARCH=$(shell dpkg --print-architecture 2> /dev/null)
257 DEV_DEB=vpp-dpdk-dev_$(DPDK_VERSION)-$(PKG_SUFFIX)_$(DEB_ARCH).deb
258 INSTALLED_DEB_VER=$(shell dpkg-query --showformat='$${Version}' --show vpp-dpdk-dev 2> /dev/null)
259
260 .PHONY: build-deb install-deb check-deb
261
262 deb/debian/changelog: Makefile
263         @echo "vpp-dpdk ($(DPDK_VERSION)-$(PKG_SUFFIX)) unstable; urgency=low" > $@
264         @echo "" >> $@
265         @echo "  * DPDK Release $(DPDK_VERSION)" >> $@
266         @echo "" >> $@
267         @echo " -- VPP Dev <vpp-dev@lists.fd.io>  $(shell date -R)" >> $@
268
269 $(DEV_DEB): deb/debian/changelog
270         @cd deb && dpkg-buildpackage -b -uc -us
271         git clean -fdx deb
272
273 build-deb: $(DEV_DEB)
274
275 install-deb:
276 ifneq ($(INSTALLED_DEB_VER),$(DPDK_VERSION)-$(PKG_SUFFIX))
277         @make $(DEV_DEB)
278         @sudo dpkg -i $(DEV_DEB)
279 else
280         @echo "=========================================================="
281         @echo " Up-to-date DPDK package already installed"
282         @echo "=========================================================="
283 endif
284
285 check-deb:
286 ifneq ($(INSTALLED_DEB_VER),$(DPDK_VERSION)-$(PKG_SUFFIX))
287         @echo "=========================================================="
288         @echo " Outdated DPDK package detected:"
289         @echo "  Installed: vpp-dpdk-dev $(INSTALLED_DEB_VER)"
290         @echo "  Current:   vpp-dpdk-dev $(DPDK_VERSION)-$(PKG_SUFFIX)"
291         @echo ""
292         @echo " Please upgrade by invoking 'make dpdk-install-dev'"
293         @echo " from the top level directory."
294         @echo "=========================================================="
295 endif
296
297 ##############################################################################
298 # .rpm packaging
299 ##############################################################################
300
301 RPM_ARCH=$(shell rpm --eval "%{_arch}" 2> /dev/null)
302 DEV_RPM=vpp-dpdk-devel-$(DPDK_VERSION)-$(PKG_SUFFIX).$(RPM_ARCH).rpm
303 INSTALLED_RPM_VER=$(shell rpm -q --queryformat '%{VERSION}-%{RELEASE}' vpp-dpdk-devel 2> /dev/null | grep -v "not inst")
304
305 .PHONY: build-rpm install-rpm check-rpm
306
307 $(DEV_RPM): Makefile rpm/vpp-dpdk.spec
308         @rpmbuild -bb \
309           --define "_topdir $(CURDIR)/rpm" \
310           --define "_version $(DPDK_VERSION)" \
311           --define "_release $(PKG_SUFFIX)" \
312           $(CURDIR)/rpm/vpp-dpdk.spec
313         mv rpm/RPMS/$(RPM_ARCH)/*.rpm .
314         git clean -fdx rpm
315
316 build-rpm: $(DEV_RPM)
317
318 install-rpm:
319 ifneq ($(INSTALLED_RPM_VER),$(DPDK_VERSION)-$(PKG_SUFFIX))
320         @make $(DEV_RPM)
321         sudo rpm -Uih $(DEV_RPM)
322 else
323         @echo "=========================================================="
324         @echo " Up-to-date DPDK package already installed"
325         @echo "=========================================================="
326 endif
327
328 check-rpm:
329 ifneq ($(INSTALLED_RPM_VER),$(DPDK_VERSION)-$(PKG_SUFFIX))
330         @echo "=========================================================="
331         @echo " Outdated DPDK package detected:"
332         @echo "  Installed: vpp-dpdk-devel $(INSTALLED_RPM_VER)"
333         @echo "  Current:   vpp-dpdk-devel $(DPDK_VERSION)-$(PKG_SUFFIX)"
334         @echo ""
335         @echo " Please upgrade by invoking 'make dpdk-install-dev'"
336         @echo " from the top level directory."
337         @echo "=========================================================="
338 endif
339
340 ##############################################################################
341 # ebuild support
342 ##############################################################################
343
344 .PHONY: ebuild-build ebuild-install
345
346 ebuild-build:
347 ifeq ($(INSTALLED_DEB_VER)$(INSTALLED_RPM_VER),)
348         @echo "=========================================================="
349         @echo "Building DPDK from source. Consider installing development"
350         @echo "package by invoking 'make dpdk-install-dev' from the"
351         @echo "top level directory"
352         @echo "=========================================================="
353         make config
354 else
355 ifneq ($(INSTALLED_DEB_VER),)
356         make check-deb
357 endif
358 ifneq ($(INSTALLED_RPM_VER),)
359         make check-rpm
360 endif
361 endif
362
363 ebuild-install:
364 ifeq ($(INSTALLED_DEB_VER)$(INSTALLED_RPM_VER),)
365         make install
366 endif