Merge "Update .gitignore to ignore autotools files"
[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.1.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_PKTMBUF_HEADROOM,$(DPDK_PKTMBUF_HEADROOM))
93         $(call set,RTE_LIBEAL_USE_HPET,y)
94         $(call set,RTE_BUILD_COMBINE_LIBS,y)
95         $(call set,RTE_LIBRTE_I40E_16BYTE_RX_DESC,y)
96         $(call set,RTE_LIBRTE_I40E_ITR_INTERVAL,16)
97         @# enable debug init for device drivers
98         $(call set,RTE_LIBRTE_I40E_DEBUG_INIT,$(DPDK_DEBUG))
99         $(call set,RTE_LIBRTE_IXGBE_DEBUG_INIT,$(DPDK_DEBUG))
100         $(call set,RTE_LIBRTE_E1000_DEBUG_INIT,$(DPDK_DEBUG))
101         $(call set,RTE_LIBRTE_VIRTIO_DEBUG_INIT,$(DPDK_DEBUG))
102         $(call set,RTE_LIBRTE_VMXNET3_DEBUG_INIT,$(DPDK_DEBUG))
103         @# not needed
104         $(call set,RTE_LIBRTE_PMD_BOND,n)
105         $(call set,RTE_LIBRTE_TIMER,n)
106         $(call set,RTE_LIBRTE_CFGFILE,n)
107         $(call set,RTE_LIBRTE_LPM,n)
108         $(call set,RTE_LIBRTE_ACL,n)
109         $(call set,RTE_LIBRTE_POWER,n)
110         $(call set,RTE_LIBRTE_IP_FRAG,n)
111         $(call set,RTE_LIBRTE_DISTRIBUTOR,n)
112         $(call set,RTE_LIBRTE_REORDER,n)
113         $(call set,RTE_LIBRTE_PORT,n)
114         $(call set,RTE_LIBRTE_TABLE,n)
115         $(call set,RTE_LIBRTE_PIPELINE,n)
116         $(call set,RTE_KNI_KMOD,n)
117         @rm -f .config.ok
118
119 $(CURDIR)/$(DPDK_TARBALL):
120         @mkdir -p $(B)
121         @if [ -e $(DPDK_DOWNLOAD_DIR)/$(DPDK_TARBALL) ] ; \
122                 then cp $(DPDK_DOWNLOAD_DIR)/$(DPDK_TARBALL) $(CURDIR) ; \
123                 else curl -o $(CURDIR)/$(DPDK_TARBALL) -LO $(DPDK_TAR_URL) ; \
124         fi
125         @rm -f $(B)/.download.ok
126
127 $(B)/.download.ok: $(CURDIR)/$(DPDK_TARBALL)
128         @openssl md5 $< | cut -f 2 -d " " - > $(B)/$(DPDK_TARBALL).md5sum
129         @([ "$$(<$(B)/$(DPDK_TARBALL).md5sum)" = "$(DPDK_$(DPDK_VERSION)_TARBALL_MD5_CKSUM)" ] || \
130         ( echo "Bad Checksum! Please remove $< and retry" && \
131                 rm $(B)/$(DPDK_TARBALL).md5sum && false ))
132         @touch $@
133
134 .PHONY: download
135 download: $(B)/.download.ok
136
137 $(B)/.extract.ok: $(B)/.download.ok
138         @echo --- extracting $(DPDK_TARBALL) ---
139         @tar --directory $(B) --extract --file $(CURDIR)/$(DPDK_TARBALL) --gzip
140         @touch $@
141
142 .PHONY: extract
143 extract: $(B)/.extract.ok
144
145 $(B)/.patch.ok: $(B)/.extract.ok
146         @echo --- patching ---
147         for f in $(CURDIR)/dpdk-$(DPDK_VERSION)_patches/*.patch ; do \
148                 echo Applying patch: $$(basename $$f) ; \
149                 patch -p1 -d $(DPDK_SOURCE) < $$f ; \
150         done
151         @touch $@
152
153 .PHONY: patch
154 patch: $(B)/.patch.ok
155
156 $(B)/.config.ok: $(B)/.patch.ok $(B)/custom-config
157         @make $(DPDK_MAKE_ARGS) config
158         @touch $@
159
160 .PHONY: config
161 config: $(B)/.config.ok
162
163 $(B)/.build.ok: $(DPDK_SOURCE_FILES)
164         @if [ ! -e $(B)/.config.ok ] ; then echo 'Please run "make config" first' && false ; fi
165         @make $(DPDK_MAKE_ARGS) install
166         @dkms/create_deb_manifest.sh $(DPDK_VERSION) $(subst $(realpath ..)/,,$(B))
167         @touch $@
168
169 .PHONY: build
170 build: $(B)/.build.ok
171
172 .PHONY: clean
173 clean:
174         @rm -rf $(B) $(I)
175