mbuf_offload: introduce library to attach offloads to mbuf
[dpdk.git] / config / common_bsdapp
1 #   BSD LICENSE
2 #
3 #   Copyright(c) 2010-2015 Intel Corporation. All rights reserved.
4 #   All rights reserved.
5 #
6 #   Redistribution and use in source and binary forms, with or without
7 #   modification, are permitted provided that the following conditions
8 #   are met:
9 #
10 #     * Redistributions of source code must retain the above copyright
11 #       notice, this list of conditions and the following disclaimer.
12 #     * Redistributions in binary form must reproduce the above copyright
13 #       notice, this list of conditions and the following disclaimer in
14 #       the documentation and/or other materials provided with the
15 #       distribution.
16 #     * Neither the name of Intel Corporation nor the names of its
17 #       contributors may be used to endorse or promote products derived
18 #       from this software without specific prior written permission.
19 #
20 #   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 #   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 #   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 #   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 #   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 #   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 #   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 #   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 #   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 #   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 #   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 #
32
33 #
34 # define executive environment
35 #
36 # CONFIG_RTE_EXEC_ENV can be linuxapp, bsdapp
37 #
38 CONFIG_RTE_EXEC_ENV="bsdapp"
39 CONFIG_RTE_EXEC_ENV_BSDAPP=y
40
41 ##
42 ## machine can define specific variables or action for a specific board
43 ## RTE_MACHINE can be:
44 ## default  nothing specific
45 ## native   current machine
46 ## atm      Intel® Atom™ microarchitecture
47 ## nhm      Intel® microarchitecture code name Nehalem
48 ## wsm      Intel® microarchitecture code name Westmere
49 ## snb      Intel® microarchitecture code name Sandy Bridge
50 ## ivb      Intel® microarchitecture code name Ivy Bridge
51 ##
52 ## Note: if your compiler does not support the relevant -march options,
53 ## it will be compiled with whatever latest processor the compiler supports!
54 ##
55 #CONFIG_RTE_MACHINE="native"
56 #
57 ##
58 ## define the architecture we compile for.
59 ## CONFIG_RTE_ARCH can be i686, x86_64, x86_64_32
60 ##
61 #CONFIG_RTE_ARCH="x86_64"
62 #CONFIG_RTE_ARCH_X86_64=y
63 #
64 ##
65 ## The compiler we use.
66 ## Can be gcc, icc or clang.
67 ##
68 #CONFIG_RTE_TOOLCHAIN="gcc"
69 #CONFIG_RTE_TOOLCHAIN_GCC=y
70
71 #
72 # Use intrinsics or assembly code for key routines
73 #
74 CONFIG_RTE_FORCE_INTRINSICS=n
75
76 #
77 # Machine forces strict alignment constraints.
78 #
79 CONFIG_RTE_ARCH_STRICT_ALIGN=n
80
81 #
82 # Compile to share library
83 #
84 CONFIG_RTE_BUILD_SHARED_LIB=n
85
86 #
87 # Combine to one single library
88 #
89 CONFIG_RTE_BUILD_COMBINE_LIBS=n
90
91 #
92 # Use newest code breaking previous ABI
93 #
94 CONFIG_RTE_NEXT_ABI=y
95
96 #
97 # Compile Environment Abstraction Layer
98 #
99 CONFIG_RTE_LIBRTE_EAL=y
100 CONFIG_RTE_MAX_LCORE=128
101 CONFIG_RTE_MAX_NUMA_NODES=8
102 CONFIG_RTE_MAX_MEMSEG=256
103 CONFIG_RTE_MAX_MEMZONE=2560
104 CONFIG_RTE_MAX_TAILQ=32
105 CONFIG_RTE_LOG_LEVEL=8
106 CONFIG_RTE_LOG_HISTORY=256
107 CONFIG_RTE_EAL_ALLOW_INV_SOCKET_ID=n
108 CONFIG_RTE_EAL_ALWAYS_PANIC_ON_ERROR=n
109 CONFIG_RTE_MALLOC_DEBUG=n
110
111 # Default driver path (or "" to disable)
112 CONFIG_RTE_EAL_PMD_PATH=""
113
114 #
115 # FreeBSD contiguous memory driver settings
116 #
117 CONFIG_RTE_CONTIGMEM_MAX_NUM_BUFS=64
118 CONFIG_RTE_CONTIGMEM_DEFAULT_NUM_BUFS=2
119 CONFIG_RTE_CONTIGMEM_DEFAULT_BUF_SIZE=1024*1024*1024
120
121 #
122 # Compile Environment Abstraction Layer for BSD
123 #
124 CONFIG_RTE_LIBRTE_EAL_BSDAPP=y
125
126 #
127 # Compile Environment Abstraction Layer for linux
128 #
129 CONFIG_RTE_LIBRTE_EAL_LINUXAPP=n
130
131 #
132 # Compile Environment Abstraction Layer to support Vmware TSC map
133 #
134 CONFIG_RTE_LIBRTE_EAL_VMWARE_TSC_MAP_SUPPORT=y
135
136 #
137 # Compile the argument parser library
138 #
139 CONFIG_RTE_LIBRTE_KVARGS=y
140
141 #
142 # Compile generic ethernet library
143 #
144 CONFIG_RTE_LIBRTE_ETHER=y
145 CONFIG_RTE_LIBRTE_ETHDEV_DEBUG=n
146 CONFIG_RTE_MAX_ETHPORTS=32
147 CONFIG_RTE_MAX_QUEUES_PER_PORT=1024
148 CONFIG_RTE_LIBRTE_IEEE1588=n
149 CONFIG_RTE_ETHDEV_QUEUE_STAT_CNTRS=16
150 CONFIG_RTE_ETHDEV_RXTX_CALLBACKS=y
151
152 #
153 # Support NIC bypass logic
154 #
155 CONFIG_RTE_NIC_BYPASS=n
156
157 #
158 # Compile burst-oriented IGB & EM PMD drivers
159 #
160 CONFIG_RTE_LIBRTE_EM_PMD=y
161 CONFIG_RTE_LIBRTE_IGB_PMD=y
162 CONFIG_RTE_LIBRTE_E1000_DEBUG_INIT=n
163 CONFIG_RTE_LIBRTE_E1000_DEBUG_RX=n
164 CONFIG_RTE_LIBRTE_E1000_DEBUG_TX=n
165 CONFIG_RTE_LIBRTE_E1000_DEBUG_TX_FREE=n
166 CONFIG_RTE_LIBRTE_E1000_DEBUG_DRIVER=n
167 CONFIG_RTE_LIBRTE_E1000_PF_DISABLE_STRIP_CRC=n
168
169 #
170 # Compile burst-oriented IXGBE PMD driver
171 #
172 CONFIG_RTE_LIBRTE_IXGBE_PMD=y
173 CONFIG_RTE_LIBRTE_IXGBE_DEBUG_INIT=n
174 CONFIG_RTE_LIBRTE_IXGBE_DEBUG_RX=n
175 CONFIG_RTE_LIBRTE_IXGBE_DEBUG_TX=n
176 CONFIG_RTE_LIBRTE_IXGBE_DEBUG_TX_FREE=n
177 CONFIG_RTE_LIBRTE_IXGBE_DEBUG_DRIVER=n
178 CONFIG_RTE_LIBRTE_IXGBE_PF_DISABLE_STRIP_CRC=n
179 CONFIG_RTE_IXGBE_INC_VECTOR=y
180 CONFIG_RTE_IXGBE_RX_OLFLAGS_ENABLE=y
181
182 #
183 # Compile burst-oriented I40E PMD driver
184 #
185 CONFIG_RTE_LIBRTE_I40E_PMD=y
186 CONFIG_RTE_LIBRTE_I40E_DEBUG_INIT=n
187 CONFIG_RTE_LIBRTE_I40E_DEBUG_RX=n
188 CONFIG_RTE_LIBRTE_I40E_DEBUG_TX=n
189 CONFIG_RTE_LIBRTE_I40E_DEBUG_TX_FREE=n
190 CONFIG_RTE_LIBRTE_I40E_DEBUG_DRIVER=n
191 CONFIG_RTE_LIBRTE_I40E_RX_ALLOW_BULK_ALLOC=y
192 CONFIG_RTE_LIBRTE_I40E_INC_VECTOR=n
193 CONFIG_RTE_LIBRTE_I40E_RX_OLFLAGS_ENABLE=y
194 CONFIG_RTE_LIBRTE_I40E_16BYTE_RX_DESC=n
195 CONFIG_RTE_LIBRTE_I40E_QUEUE_NUM_PER_PF=64
196 CONFIG_RTE_LIBRTE_I40E_QUEUE_NUM_PER_VF=4
197 CONFIG_RTE_LIBRTE_I40E_QUEUE_NUM_PER_VM=4
198 # interval up to 8160 us, aligned to 2 (or default value)
199 CONFIG_RTE_LIBRTE_I40E_ITR_INTERVAL=-1
200
201 #
202 # Compile burst-oriented FM10K PMD
203 #
204 CONFIG_RTE_LIBRTE_FM10K_PMD=y
205 CONFIG_RTE_LIBRTE_FM10K_DEBUG_INIT=n
206 CONFIG_RTE_LIBRTE_FM10K_DEBUG_RX=n
207 CONFIG_RTE_LIBRTE_FM10K_DEBUG_TX=n
208 CONFIG_RTE_LIBRTE_FM10K_DEBUG_TX_FREE=n
209 CONFIG_RTE_LIBRTE_FM10K_DEBUG_DRIVER=n
210 CONFIG_RTE_LIBRTE_FM10K_RX_OLFLAGS_ENABLE=y
211
212 #
213 # Compile burst-oriented Mellanox ConnectX-3 (MLX4) PMD
214 #
215 CONFIG_RTE_LIBRTE_MLX4_PMD=n
216 CONFIG_RTE_LIBRTE_MLX4_DEBUG=n
217 CONFIG_RTE_LIBRTE_MLX4_SGE_WR_N=4
218 CONFIG_RTE_LIBRTE_MLX4_MAX_INLINE=0
219 CONFIG_RTE_LIBRTE_MLX4_TX_MP_CACHE=8
220 CONFIG_RTE_LIBRTE_MLX4_SOFT_COUNTERS=1
221
222 #
223 # Compile burst-oriented Mellanox ConnectX-4 (MLX5) PMD
224 #
225 CONFIG_RTE_LIBRTE_MLX5_PMD=n
226 CONFIG_RTE_LIBRTE_MLX5_DEBUG=n
227 CONFIG_RTE_LIBRTE_MLX5_SGE_WR_N=4
228 CONFIG_RTE_LIBRTE_MLX5_MAX_INLINE=0
229 CONFIG_RTE_LIBRTE_MLX5_TX_MP_CACHE=8
230
231 #
232 # Compile burst-oriented Broadcom PMD driver
233 #
234 CONFIG_RTE_LIBRTE_BNX2X_PMD=n
235 CONFIG_RTE_LIBRTE_BNX2X_DEBUG=n
236 CONFIG_RTE_LIBRTE_BNX2X_DEBUG_INIT=n
237 CONFIG_RTE_LIBRTE_BNX2X_DEBUG_RX=n
238 CONFIG_RTE_LIBRTE_BNX2X_DEBUG_TX=n
239 CONFIG_RTE_LIBRTE_BNX2X_MF_SUPPORT=n
240
241 #
242 # Compile burst-oriented Chelsio Terminator 10GbE/40GbE (CXGBE) PMD
243 #
244 CONFIG_RTE_LIBRTE_CXGBE_PMD=y
245 CONFIG_RTE_LIBRTE_CXGBE_DEBUG=n
246 CONFIG_RTE_LIBRTE_CXGBE_DEBUG_REG=n
247 CONFIG_RTE_LIBRTE_CXGBE_DEBUG_MBOX=n
248 CONFIG_RTE_LIBRTE_CXGBE_DEBUG_TX=n
249 CONFIG_RTE_LIBRTE_CXGBE_DEBUG_RX=n
250
251 #
252 # Compile burst-oriented Cisco ENIC PMD driver
253 #
254 CONFIG_RTE_LIBRTE_ENIC_PMD=y
255 CONFIG_RTE_LIBRTE_ENIC_DEBUG=n
256
257 #
258 # Compile software PMD backed by SZEDATA2 device
259 #
260 CONFIG_RTE_LIBRTE_PMD_SZEDATA2=n
261
262 #
263 # Compile burst-oriented VIRTIO PMD driver
264 #
265 CONFIG_RTE_LIBRTE_VIRTIO_PMD=y
266 CONFIG_RTE_LIBRTE_VIRTIO_DEBUG_INIT=n
267 CONFIG_RTE_LIBRTE_VIRTIO_DEBUG_RX=n
268 CONFIG_RTE_LIBRTE_VIRTIO_DEBUG_TX=n
269 CONFIG_RTE_LIBRTE_VIRTIO_DEBUG_DRIVER=n
270 CONFIG_RTE_LIBRTE_VIRTIO_DEBUG_DUMP=n
271
272 #
273 # Compile burst-oriented VMXNET3 PMD driver
274 #
275 CONFIG_RTE_LIBRTE_VMXNET3_PMD=y
276 CONFIG_RTE_LIBRTE_VMXNET3_DEBUG_INIT=n
277 CONFIG_RTE_LIBRTE_VMXNET3_DEBUG_RX=n
278 CONFIG_RTE_LIBRTE_VMXNET3_DEBUG_TX=n
279 CONFIG_RTE_LIBRTE_VMXNET3_DEBUG_TX_FREE=n
280 CONFIG_RTE_LIBRTE_VMXNET3_DEBUG_DRIVER=n
281
282 #
283 # Compile example software rings based PMD
284 #
285 CONFIG_RTE_LIBRTE_PMD_RING=y
286 CONFIG_RTE_PMD_RING_MAX_RX_RINGS=16
287 CONFIG_RTE_PMD_RING_MAX_TX_RINGS=16
288
289 #
290 # Compile software PMD backed by PCAP files
291 #
292 CONFIG_RTE_LIBRTE_PMD_PCAP=y
293
294 #
295 # Compile link bonding PMD library
296 #
297 CONFIG_RTE_LIBRTE_PMD_BOND=y
298 CONFIG_RTE_LIBRTE_BOND_DEBUG_ALB=n
299 CONFIG_RTE_LIBRTE_BOND_DEBUG_ALB_L1=n
300
301 #
302 # Compile null PMD
303 #
304 CONFIG_RTE_LIBRTE_PMD_NULL=y
305
306 #
307 # Do prefetch of packet data within PMD driver receive function
308 #
309 CONFIG_RTE_PMD_PACKET_PREFETCH=y
310
311 #
312 # Compile generic crypto device library
313 #
314 CONFIG_RTE_LIBRTE_CRYPTODEV=y
315 CONFIG_RTE_LIBRTE_CRYPTODEV_DEBUG=n
316 CONFIG_RTE_CRYPTO_MAX_DEVS=64
317 CONFIG_RTE_CRYPTODEV_NAME_LEN=64
318
319 #
320 # Compile librte_ring
321 #
322 CONFIG_RTE_LIBRTE_RING=y
323 CONFIG_RTE_LIBRTE_RING_DEBUG=n
324 CONFIG_RTE_RING_SPLIT_PROD_CONS=n
325 CONFIG_RTE_RING_PAUSE_REP_COUNT=0
326
327 #
328 # Compile librte_mempool
329 #
330 CONFIG_RTE_LIBRTE_MEMPOOL=y
331 CONFIG_RTE_MEMPOOL_CACHE_MAX_SIZE=512
332 CONFIG_RTE_LIBRTE_MEMPOOL_DEBUG=n
333
334 #
335 # Compile librte_mbuf
336 #
337 CONFIG_RTE_LIBRTE_MBUF=y
338 CONFIG_RTE_LIBRTE_MBUF_DEBUG=n
339 CONFIG_RTE_MBUF_REFCNT_ATOMIC=y
340 CONFIG_RTE_PKTMBUF_HEADROOM=128
341
342 #
343 # Compile librte_mbuf_offload
344 #
345 CONFIG_RTE_LIBRTE_MBUF_OFFLOAD=y
346 CONFIG_RTE_LIBRTE_MBUF_OFFLOAD_DEBUG=n
347
348 #
349 # Compile librte_timer
350 #
351 CONFIG_RTE_LIBRTE_TIMER=y
352 CONFIG_RTE_LIBRTE_TIMER_DEBUG=n
353
354 #
355 # Compile librte_cfgfile
356 #
357 CONFIG_RTE_LIBRTE_CFGFILE=y
358
359 #
360 # Compile librte_cmdline
361 #
362 CONFIG_RTE_LIBRTE_CMDLINE=y
363 CONFIG_RTE_LIBRTE_CMDLINE_DEBUG=n
364
365 #
366 # Compile librte_hash
367 #
368 CONFIG_RTE_LIBRTE_HASH=y
369 CONFIG_RTE_LIBRTE_HASH_DEBUG=n
370
371 #
372 # Compile librte_jobstats
373 #
374 CONFIG_RTE_LIBRTE_JOBSTATS=y
375
376 #
377 # Compile librte_lpm
378 #
379 CONFIG_RTE_LIBRTE_LPM=y
380 CONFIG_RTE_LIBRTE_LPM_DEBUG=n
381
382 #
383 # Compile librte_acl
384 #
385 CONFIG_RTE_LIBRTE_ACL=y
386 CONFIG_RTE_LIBRTE_ACL_DEBUG=n
387
388 #
389 # Compile librte_power
390 #
391 CONFIG_RTE_LIBRTE_POWER=n
392 CONFIG_RTE_LIBRTE_POWER_DEBUG=n
393 CONFIG_RTE_MAX_LCORE_FREQS=64
394
395 #
396 # Compile librte_net
397 #
398 CONFIG_RTE_LIBRTE_NET=y
399
400 #
401 # Compile librte_ip_frag
402 #
403 CONFIG_RTE_LIBRTE_IP_FRAG=y
404 CONFIG_RTE_LIBRTE_IP_FRAG_DEBUG=n
405 CONFIG_RTE_LIBRTE_IP_FRAG_MAX_FRAG=4
406 CONFIG_RTE_LIBRTE_IP_FRAG_TBL_STAT=n
407
408 #
409 # Compile librte_meter
410 #
411 CONFIG_RTE_LIBRTE_METER=y
412
413 #
414 # Compile librte_sched
415 #
416 CONFIG_RTE_LIBRTE_SCHED=y
417 CONFIG_RTE_SCHED_DEBUG=n
418 CONFIG_RTE_SCHED_RED=n
419 CONFIG_RTE_SCHED_COLLECT_STATS=n
420 CONFIG_RTE_SCHED_SUBPORT_TC_OV=n
421 CONFIG_RTE_SCHED_PORT_N_GRINDERS=8
422 CONFIG_RTE_SCHED_VECTOR=y
423
424 #
425 # Compile the distributor library
426 #
427 CONFIG_RTE_LIBRTE_DISTRIBUTOR=y
428
429 #
430 # Compile the reorder library
431 #
432 CONFIG_RTE_LIBRTE_REORDER=y
433
434 #
435 # Compile librte_port
436 #
437 CONFIG_RTE_LIBRTE_PORT=y
438 CONFIG_RTE_PORT_STATS_COLLECT=n
439
440 #
441 # Compile librte_table
442 #
443 CONFIG_RTE_LIBRTE_TABLE=y
444 CONFIG_RTE_TABLE_STATS_COLLECT=n
445
446 #
447 # Compile librte_pipeline
448 #
449 CONFIG_RTE_LIBRTE_PIPELINE=y
450 CONFIG_RTE_PIPELINE_STATS_COLLECT=n
451
452 #
453 # Enable warning directives
454 #
455 CONFIG_RTE_INSECURE_FUNCTION_WARNING=n
456
457 #
458 # Compile the test application
459 #
460 CONFIG_RTE_APP_TEST=y
461
462 #
463 # Compile the PMD test application
464 #
465 CONFIG_RTE_TEST_PMD=y
466 CONFIG_RTE_TEST_PMD_RECORD_CORE_CYCLES=n
467 CONFIG_RTE_TEST_PMD_RECORD_BURST_STATS=n