Fixed vxlan link status.
[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 ?= 256
20 DPDK_DOWNLOAD_DIR     ?= $(HOME)/Downloads
21 DPDK_MARCH            ?= native
22 DPDK_DEBUG            ?= n
23
24 B := $(DPDK_BUILD_DIR)
25 I := $(DPDK_INSTALL_DIR)
26 DPDK_VERSION ?= 2.2.0
27 DPDK_TARBALL := dpdk-$(DPDK_VERSION).tar.gz
28 DPDK_TAR_URL := http://dpdk.org/browse/dpdk/snapshot/$(DPDK_TARBALL)
29 DPDK_2.1.0_TARBALL_MD5_CKSUM := 205a0d12bfd6eb717d57506272f43519
30 DPDK_2.2.0_TARBALL_MD5_CKSUM := 22e2fd68cd5504f43fe9a5a6fd6dd938
31 DPDK_SOURCE := $(B)/dpdk-$(DPDK_VERSION)
32 DPDK_TARGET := x86_64-native-linuxapp-gcc
33 JOBS := $(shell grep processor /proc/cpuinfo | wc -l)
34
35 # compiler/linker custom arguments
36 DPDK_CPU_CFLAGS := -pie -fPIC
37 DPDK_CPU_LDFLAGS := -pie -fPIC
38 DPDK_EXTRA_LDFLAGS := -g
39
40 ifeq ($(DPDK_DEBUG),n)
41 DPDK_EXTRA_CFLAGS := -g 
42 else
43 DPDK_EXTRA_CFLAGS := -g -O0 
44 endif
45
46 # translate gcc march values to DPDK arch
47 ifeq ($(DPDK_MARCH),native)
48 DPDK_MACHINE:=native                     # autodetect host CPU
49 else ifeq ($(DPDK_MARCH),corei7)
50 DPDK_MACHINE:=nhm                        # Nehalem / Westmere
51 else ifeq ($(DPDK_MARCH),corei7-avx)
52 DPDK_MACHINE:=snb                        # Sandy Bridge
53 else ifeq ($(DPDK_MARCH),core-avx-i)
54 DPDK_MACHINE:=ivb                        # Ivy Bridge
55 else ifeq ($(DPDK_MARCH),core-avx2)
56 DPDK_MACHINE:=hsw                        # Haswell
57 else
58 $(error Unknown DPDK_MARCH)
59 endif
60
61 # assemble DPDK make arguments
62 DPDK_MAKE_ARGS := -C $(DPDK_SOURCE) -j $(JOBS) \
63         T=$(DPDK_TARGET) \
64         RTE_CONFIG_TEMPLATE=../custom-config \
65         RTE_OUTPUT=$(I) \
66         EXTRA_CFLAGS="$(DPDK_EXTRA_CFLAGS)" \
67         EXTRA_LDFLAGS="$(DPDK_EXTRA_LDFLAGS)" \
68         CPU_CFLAGS="$(DPDK_CPU_CFLAGS)" \
69         CPU_LDFLAGS="$(DPDK_CPU_LDFLAGS)"
70
71 DPDK_SOURCE_FILES := $(shell  [ -e $(DPDK_SOURCE) ] && find $(DPDK_SOURCE) -name "*.[chS]")  
72
73 define set
74 @if grep -q CONFIG_$1 $@ ; \
75         then sed -i -e 's/.*\(CONFIG_$1=\).*/\1$2/' $@ ; \
76         else echo CONFIG_$1=$2 >> $@ ; \
77 fi
78 endef
79
80 all: build
81
82 $(B)/custom-config: $(B)/.patch.ok Makefile
83         @echo --- generating custom config from $(DPDK_SOURCE)/config/common_linuxapp ---
84         @cp $(DPDK_SOURCE)/config/common_linuxapp $@ 
85         $(call set,RTE_MACHINE,$(DPDK_MACHINE))
86         $(call set,RTE_ARCH,"x86_64")
87         $(call set,RTE_ARCH_X86_64,y)
88         $(call set,RTE_ARCH_64,y)
89         $(call set,RTE_TOOLCHAIN_GCC,y)
90         $(call set,RTE_TOOLCHAIN,"gcc")
91         @# modify options
92         $(call set,RTE_MAX_LCORE,256)
93         $(call set,RTE_PKTMBUF_HEADROOM,$(DPDK_PKTMBUF_HEADROOM))
94         $(call set,RTE_LIBEAL_USE_HPET,y)
95         $(call set,RTE_BUILD_COMBINE_LIBS,y)
96         $(call set,RTE_LIBRTE_I40E_16BYTE_RX_DESC,y)
97         $(call set,RTE_LIBRTE_I40E_ITR_INTERVAL,16)
98         @# enable debug init for device drivers
99         $(call set,RTE_LIBRTE_I40E_DEBUG_INIT,$(DPDK_DEBUG))
100         $(call set,RTE_LIBRTE_IXGBE_DEBUG_INIT,$(DPDK_DEBUG))
101         $(call set,RTE_LIBRTE_E1000_DEBUG_INIT,$(DPDK_DEBUG))
102         $(call set,RTE_LIBRTE_VIRTIO_DEBUG_INIT,$(DPDK_DEBUG))
103         $(call set,RTE_LIBRTE_VMXNET3_DEBUG_INIT,$(DPDK_DEBUG))
104         $(call set,RTE_LIBRTE_PMD_BOND,y)
105         $(call set,RTE_LIBRTE_IP_FRAG,y)
106         @# not needed
107         $(call set,RTE_LIBRTE_TIMER,n)
108         $(call set,RTE_LIBRTE_CFGFILE,n)
109         $(call set,RTE_LIBRTE_LPM,n)
110         $(call set,RTE_LIBRTE_ACL,n)
111         $(call set,RTE_LIBRTE_POWER,n)
112         $(call set,RTE_LIBRTE_DISTRIBUTOR,n)
113         $(call set,RTE_LIBRTE_REORDER,n)
114         $(call set,RTE_LIBRTE_PORT,n)
115         $(call set,RTE_LIBRTE_TABLE,n)
116         $(call set,RTE_LIBRTE_PIPELINE,n)
117         $(call set,RTE_KNI_KMOD,n)
118         @rm -f .config.ok
119
120 $(CURDIR)/$(DPDK_TARBALL):
121         @mkdir -p $(B)
122         @if [ -e $(DPDK_DOWNLOAD_DIR)/$(DPDK_TARBALL) ] ; \
123                 then cp $(DPDK_DOWNLOAD_DIR)/$(DPDK_TARBALL) $(CURDIR) ; \
124                 else curl -o $(CURDIR)/$(DPDK_TARBALL) -LO $(DPDK_TAR_URL) ; \
125         fi
126         @rm -f $(B)/.download.ok
127
128 $(B)/.download.ok: $(CURDIR)/$(DPDK_TARBALL)
129         @openssl md5 $< | cut -f 2 -d " " - > $(B)/$(DPDK_TARBALL).md5sum
130         @([ "$$(<$(B)/$(DPDK_TARBALL).md5sum)" = "$(DPDK_$(DPDK_VERSION)_TARBALL_MD5_CKSUM)" ] || \
131         ( echo "Bad Checksum! Please remove $< and retry" && \
132                 rm $(B)/$(DPDK_TARBALL).md5sum && false ))
133         @touch $@
134
135 .PHONY: download
136 download: $(B)/.download.ok
137
138 $(B)/.extract.ok: $(B)/.download.ok
139         @echo --- extracting $(DPDK_TARBALL) ---
140         @tar --directory $(B) --extract --file $(CURDIR)/$(DPDK_TARBALL) --gzip
141         @touch $@
142
143 .PHONY: extract
144 extract: $(B)/.extract.ok
145
146 $(B)/.patch.ok: $(B)/.extract.ok
147         @echo --- patching ---
148         for f in $(CURDIR)/dpdk-$(DPDK_VERSION)_patches/*.patch ; do \
149                 echo Applying patch: $$(basename $$f) ; \
150                 patch -p1 -d $(DPDK_SOURCE) < $$f ; \
151         done
152         @touch $@
153
154 .PHONY: patch
155 patch: $(B)/.patch.ok
156
157 $(B)/.config.ok: $(B)/.patch.ok $(B)/custom-config
158         @make $(DPDK_MAKE_ARGS) config
159         @touch $@
160
161 .PHONY: config
162 config: $(B)/.config.ok
163
164 $(B)/.build.ok: $(DPDK_SOURCE_FILES)
165         @if [ ! -e $(B)/.config.ok ] ; then echo 'Please run "make config" first' && false ; fi
166         @make $(DPDK_MAKE_ARGS) install
167         @dkms/create_deb_manifest.sh $(DPDK_VERSION) $(subst $(realpath ..)/,,$(B))
168         @touch $@
169
170 .PHONY: build
171 build: $(B)/.build.ok
172
173 .PHONY: clean
174 clean:
175         @rm -rf $(B) $(I)
176