net/ixgbe: remove option to disable offload flags
[dpdk.git] / config / common_base
1 #   BSD LICENSE
2 #
3 #   Copyright(c) 2010-2017 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 # RTE_EXEC_ENV values are the directories in mk/exec-env/
36 #
37 CONFIG_RTE_EXEC_ENV=
38
39 #
40 # define the architecture we compile for.
41 # RTE_ARCH values are the directories in mk/arch/
42 #
43 CONFIG_RTE_ARCH=
44
45 #
46 # machine can define specific variables or action for a specific board
47 # RTE_MACHINE values are the directories in mk/machine/
48 #
49 CONFIG_RTE_MACHINE=
50
51 #
52 # The compiler we use.
53 # RTE_TOOLCHAIN values are the directories in mk/toolchain/
54 #
55 CONFIG_RTE_TOOLCHAIN=
56
57 #
58 # Use intrinsics or assembly code for key routines
59 #
60 CONFIG_RTE_FORCE_INTRINSICS=n
61
62 #
63 # Machine forces strict alignment constraints.
64 #
65 CONFIG_RTE_ARCH_STRICT_ALIGN=n
66
67 #
68 # Compile to share library
69 #
70 CONFIG_RTE_BUILD_SHARED_LIB=n
71
72 #
73 # Use newest code breaking previous ABI
74 #
75 CONFIG_RTE_NEXT_ABI=y
76
77 #
78 # Major ABI to overwrite library specific LIBABIVER
79 #
80 CONFIG_RTE_MAJOR_ABI=
81
82 #
83 # Machine's cache line size
84 #
85 CONFIG_RTE_CACHE_LINE_SIZE=64
86
87 #
88 # Compile Environment Abstraction Layer
89 #
90 CONFIG_RTE_LIBRTE_EAL=y
91 CONFIG_RTE_MAX_LCORE=128
92 CONFIG_RTE_MAX_NUMA_NODES=8
93 CONFIG_RTE_MAX_MEMSEG=256
94 CONFIG_RTE_MAX_MEMZONE=2560
95 CONFIG_RTE_MAX_TAILQ=32
96 CONFIG_RTE_LOG_LEVEL=RTE_LOG_INFO
97 CONFIG_RTE_LOG_DP_LEVEL=RTE_LOG_INFO
98 CONFIG_RTE_LOG_HISTORY=256
99 CONFIG_RTE_LIBEAL_USE_HPET=n
100 CONFIG_RTE_EAL_ALLOW_INV_SOCKET_ID=n
101 CONFIG_RTE_EAL_ALWAYS_PANIC_ON_ERROR=n
102 CONFIG_RTE_EAL_IGB_UIO=n
103 CONFIG_RTE_EAL_VFIO=n
104 CONFIG_RTE_MALLOC_DEBUG=n
105
106 # Default driver path (or "" to disable)
107 CONFIG_RTE_EAL_PMD_PATH=""
108
109 #
110 # Compile Environment Abstraction Layer to support Vmware TSC map
111 #
112 CONFIG_RTE_LIBRTE_EAL_VMWARE_TSC_MAP_SUPPORT=y
113
114 #
115 # Compile the argument parser library
116 #
117 CONFIG_RTE_LIBRTE_KVARGS=y
118
119 #
120 # Compile generic ethernet library
121 #
122 CONFIG_RTE_LIBRTE_ETHER=y
123 CONFIG_RTE_LIBRTE_ETHDEV_DEBUG=n
124 CONFIG_RTE_MAX_ETHPORTS=32
125 CONFIG_RTE_MAX_QUEUES_PER_PORT=1024
126 CONFIG_RTE_LIBRTE_IEEE1588=n
127 CONFIG_RTE_ETHDEV_QUEUE_STAT_CNTRS=16
128 CONFIG_RTE_ETHDEV_RXTX_CALLBACKS=y
129
130 #
131 # Turn off Tx preparation stage
132 #
133 # Warning: rte_ethdev_tx_prepare() can be safely disabled only if using a
134 # driver which do not implement any Tx preparation.
135 #
136 CONFIG_RTE_ETHDEV_TX_PREPARE_NOOP=n
137
138 #
139 # Support NIC bypass logic
140 #
141 CONFIG_RTE_NIC_BYPASS=n
142
143 #
144 # Compile burst-oriented Amazon ENA PMD driver
145 #
146 CONFIG_RTE_LIBRTE_ENA_PMD=y
147 CONFIG_RTE_LIBRTE_ENA_DEBUG_RX=n
148 CONFIG_RTE_LIBRTE_ENA_DEBUG_TX=n
149 CONFIG_RTE_LIBRTE_ENA_DEBUG_TX_FREE=n
150 CONFIG_RTE_LIBRTE_ENA_DEBUG_DRIVER=n
151 CONFIG_RTE_LIBRTE_ENA_COM_DEBUG=n
152
153 #
154 # Compile burst-oriented IGB & EM PMD drivers
155 #
156 CONFIG_RTE_LIBRTE_EM_PMD=y
157 CONFIG_RTE_LIBRTE_IGB_PMD=y
158 CONFIG_RTE_LIBRTE_E1000_DEBUG_INIT=n
159 CONFIG_RTE_LIBRTE_E1000_DEBUG_RX=n
160 CONFIG_RTE_LIBRTE_E1000_DEBUG_TX=n
161 CONFIG_RTE_LIBRTE_E1000_DEBUG_TX_FREE=n
162 CONFIG_RTE_LIBRTE_E1000_DEBUG_DRIVER=n
163 CONFIG_RTE_LIBRTE_E1000_PF_DISABLE_STRIP_CRC=n
164
165 #
166 # Compile burst-oriented IXGBE PMD driver
167 #
168 CONFIG_RTE_LIBRTE_IXGBE_PMD=y
169 CONFIG_RTE_LIBRTE_IXGBE_DEBUG_INIT=n
170 CONFIG_RTE_LIBRTE_IXGBE_DEBUG_RX=n
171 CONFIG_RTE_LIBRTE_IXGBE_DEBUG_TX=n
172 CONFIG_RTE_LIBRTE_IXGBE_DEBUG_TX_FREE=n
173 CONFIG_RTE_LIBRTE_IXGBE_DEBUG_DRIVER=n
174 CONFIG_RTE_LIBRTE_IXGBE_PF_DISABLE_STRIP_CRC=n
175 CONFIG_RTE_IXGBE_INC_VECTOR=y
176
177 #
178 # Compile burst-oriented I40E PMD driver
179 #
180 CONFIG_RTE_LIBRTE_I40E_PMD=y
181 CONFIG_RTE_LIBRTE_I40E_DEBUG_RX=n
182 CONFIG_RTE_LIBRTE_I40E_DEBUG_TX=n
183 CONFIG_RTE_LIBRTE_I40E_DEBUG_TX_FREE=n
184 CONFIG_RTE_LIBRTE_I40E_RX_ALLOW_BULK_ALLOC=y
185 CONFIG_RTE_LIBRTE_I40E_INC_VECTOR=y
186 CONFIG_RTE_LIBRTE_I40E_16BYTE_RX_DESC=n
187 CONFIG_RTE_LIBRTE_I40E_QUEUE_NUM_PER_PF=64
188 CONFIG_RTE_LIBRTE_I40E_QUEUE_NUM_PER_VF=4
189 CONFIG_RTE_LIBRTE_I40E_QUEUE_NUM_PER_VM=4
190 # interval up to 8160 us, aligned to 2 (or default value)
191 CONFIG_RTE_LIBRTE_I40E_ITR_INTERVAL=-1
192
193 #
194 # Compile burst-oriented FM10K PMD
195 #
196 CONFIG_RTE_LIBRTE_FM10K_PMD=y
197 CONFIG_RTE_LIBRTE_FM10K_DEBUG_INIT=n
198 CONFIG_RTE_LIBRTE_FM10K_DEBUG_RX=n
199 CONFIG_RTE_LIBRTE_FM10K_DEBUG_TX=n
200 CONFIG_RTE_LIBRTE_FM10K_DEBUG_TX_FREE=n
201 CONFIG_RTE_LIBRTE_FM10K_DEBUG_DRIVER=n
202 CONFIG_RTE_LIBRTE_FM10K_RX_OLFLAGS_ENABLE=y
203 CONFIG_RTE_LIBRTE_FM10K_INC_VECTOR=y
204
205 #
206 # Compile burst-oriented Mellanox ConnectX-3 (MLX4) PMD
207 #
208 CONFIG_RTE_LIBRTE_MLX4_PMD=n
209 CONFIG_RTE_LIBRTE_MLX4_DEBUG=n
210 CONFIG_RTE_LIBRTE_MLX4_SGE_WR_N=4
211 CONFIG_RTE_LIBRTE_MLX4_MAX_INLINE=0
212 CONFIG_RTE_LIBRTE_MLX4_TX_MP_CACHE=8
213 CONFIG_RTE_LIBRTE_MLX4_SOFT_COUNTERS=1
214
215 #
216 # Compile burst-oriented Mellanox ConnectX-4 & ConnectX-5 (MLX5) PMD
217 #
218 CONFIG_RTE_LIBRTE_MLX5_PMD=n
219 CONFIG_RTE_LIBRTE_MLX5_DEBUG=n
220 CONFIG_RTE_LIBRTE_MLX5_TX_MP_CACHE=8
221
222 #
223 # Compile burst-oriented Broadcom PMD driver
224 #
225 CONFIG_RTE_LIBRTE_BNX2X_PMD=n
226 CONFIG_RTE_LIBRTE_BNX2X_DEBUG=n
227 CONFIG_RTE_LIBRTE_BNX2X_DEBUG_INIT=n
228 CONFIG_RTE_LIBRTE_BNX2X_DEBUG_RX=n
229 CONFIG_RTE_LIBRTE_BNX2X_DEBUG_TX=n
230 CONFIG_RTE_LIBRTE_BNX2X_MF_SUPPORT=n
231 CONFIG_RTE_LIBRTE_BNX2X_DEBUG_PERIODIC=n
232
233 #
234 # Compile burst-oriented Chelsio Terminator 10GbE/40GbE (CXGBE) PMD
235 #
236 CONFIG_RTE_LIBRTE_CXGBE_PMD=y
237 CONFIG_RTE_LIBRTE_CXGBE_DEBUG=n
238 CONFIG_RTE_LIBRTE_CXGBE_DEBUG_REG=n
239 CONFIG_RTE_LIBRTE_CXGBE_DEBUG_MBOX=n
240 CONFIG_RTE_LIBRTE_CXGBE_DEBUG_TX=n
241 CONFIG_RTE_LIBRTE_CXGBE_DEBUG_RX=n
242
243 #
244 # Compile burst-oriented Cisco ENIC PMD driver
245 #
246 CONFIG_RTE_LIBRTE_ENIC_PMD=y
247 CONFIG_RTE_LIBRTE_ENIC_DEBUG=n
248
249 #
250 # Compile burst-oriented Netronome NFP PMD driver
251 #
252 CONFIG_RTE_LIBRTE_NFP_PMD=n
253 CONFIG_RTE_LIBRTE_NFP_DEBUG=n
254
255 #
256 # Compile burst-oriented Broadcom BNXT PMD driver
257 #
258 CONFIG_RTE_LIBRTE_BNXT_PMD=y
259
260 #
261 # Compile burst-oriented Solarflare libefx-based PMD
262 #
263 CONFIG_RTE_LIBRTE_SFC_EFX_PMD=y
264 CONFIG_RTE_LIBRTE_SFC_EFX_DEBUG=n
265
266 #
267 # Compile software PMD backed by SZEDATA2 device
268 #
269 CONFIG_RTE_LIBRTE_PMD_SZEDATA2=n
270 #
271 # Defines firmware type address space.
272 # RTE_LIBRTE_PMD_SZEDATA2_AS can be:
273 # 0 - for firmwares:
274 #         NIC_100G1_LR4
275 #         HANIC_100G1_LR4
276 #         HANIC_100G1_SR10
277 # Other values raise compile time error
278 CONFIG_RTE_LIBRTE_PMD_SZEDATA2_AS=0
279
280 #
281 # Compile burst-oriented Cavium Thunderx NICVF PMD driver
282 #
283 CONFIG_RTE_LIBRTE_THUNDERX_NICVF_PMD=y
284 CONFIG_RTE_LIBRTE_THUNDERX_NICVF_DEBUG_INIT=n
285 CONFIG_RTE_LIBRTE_THUNDERX_NICVF_DEBUG_RX=n
286 CONFIG_RTE_LIBRTE_THUNDERX_NICVF_DEBUG_TX=n
287 CONFIG_RTE_LIBRTE_THUNDERX_NICVF_DEBUG_DRIVER=n
288 CONFIG_RTE_LIBRTE_THUNDERX_NICVF_DEBUG_MBOX=n
289
290 #
291 # Compile burst-oriented Cavium LiquidIO PMD driver
292 #
293 CONFIG_RTE_LIBRTE_LIO_PMD=y
294 CONFIG_RTE_LIBRTE_LIO_DEBUG_DRIVER=n
295 CONFIG_RTE_LIBRTE_LIO_DEBUG_INIT=n
296 CONFIG_RTE_LIBRTE_LIO_DEBUG_RX=n
297 CONFIG_RTE_LIBRTE_LIO_DEBUG_TX=n
298 CONFIG_RTE_LIBRTE_LIO_DEBUG_MBOX=n
299 CONFIG_RTE_LIBRTE_LIO_DEBUG_REGS=n
300
301 #
302 # Compile burst-oriented VIRTIO PMD driver
303 #
304 CONFIG_RTE_LIBRTE_VIRTIO_PMD=y
305 CONFIG_RTE_LIBRTE_VIRTIO_DEBUG_INIT=n
306 CONFIG_RTE_LIBRTE_VIRTIO_DEBUG_RX=n
307 CONFIG_RTE_LIBRTE_VIRTIO_DEBUG_TX=n
308 CONFIG_RTE_LIBRTE_VIRTIO_DEBUG_DRIVER=n
309 CONFIG_RTE_LIBRTE_VIRTIO_DEBUG_DUMP=n
310
311 #
312 # Compile virtio device emulation inside virtio PMD driver
313 #
314 CONFIG_RTE_VIRTIO_USER=n
315
316 #
317 # Compile burst-oriented VMXNET3 PMD driver
318 #
319 CONFIG_RTE_LIBRTE_VMXNET3_PMD=y
320 CONFIG_RTE_LIBRTE_VMXNET3_DEBUG_INIT=n
321 CONFIG_RTE_LIBRTE_VMXNET3_DEBUG_RX=n
322 CONFIG_RTE_LIBRTE_VMXNET3_DEBUG_TX=n
323 CONFIG_RTE_LIBRTE_VMXNET3_DEBUG_TX_FREE=n
324 CONFIG_RTE_LIBRTE_VMXNET3_DEBUG_DRIVER=n
325
326 #
327 # Compile example software rings based PMD
328 #
329 CONFIG_RTE_LIBRTE_PMD_RING=y
330 CONFIG_RTE_PMD_RING_MAX_RX_RINGS=16
331 CONFIG_RTE_PMD_RING_MAX_TX_RINGS=16
332
333 #
334 # Compile software PMD backed by PCAP files
335 #
336 CONFIG_RTE_LIBRTE_PMD_PCAP=n
337
338 #
339 # Compile link bonding PMD library
340 #
341 CONFIG_RTE_LIBRTE_PMD_BOND=y
342 CONFIG_RTE_LIBRTE_BOND_DEBUG_ALB=n
343 CONFIG_RTE_LIBRTE_BOND_DEBUG_ALB_L1=n
344
345 # QLogic 10G/25G/40G/50G/100G PMD
346 #
347 CONFIG_RTE_LIBRTE_QEDE_PMD=y
348 CONFIG_RTE_LIBRTE_QEDE_DEBUG_INIT=n
349 CONFIG_RTE_LIBRTE_QEDE_DEBUG_INFO=n
350 CONFIG_RTE_LIBRTE_QEDE_DEBUG_DRIVER=n
351 CONFIG_RTE_LIBRTE_QEDE_DEBUG_TX=n
352 CONFIG_RTE_LIBRTE_QEDE_DEBUG_RX=n
353 #Provides abs path/name of the firmware file.
354 #Empty string denotes driver will use default firmware
355 CONFIG_RTE_LIBRTE_QEDE_FW=""
356
357 #
358 # Compile software PMD backed by AF_PACKET sockets (Linux only)
359 #
360 CONFIG_RTE_LIBRTE_PMD_AF_PACKET=n
361
362 #
363 # Compile ARK PMD
364 #
365 CONFIG_RTE_LIBRTE_ARK_PMD=y
366 CONFIG_RTE_LIBRTE_ARK_PAD_TX=y
367 CONFIG_RTE_LIBRTE_ARK_DEBUG_RX=n
368 CONFIG_RTE_LIBRTE_ARK_DEBUG_TX=n
369 CONFIG_RTE_LIBRTE_ARK_DEBUG_STATS=n
370 CONFIG_RTE_LIBRTE_ARK_DEBUG_TRACE=n
371
372 #
373 # Compile WRS accelerated virtual port (AVP) guest PMD driver
374 #
375 CONFIG_RTE_LIBRTE_AVP_PMD=n
376 CONFIG_RTE_LIBRTE_AVP_DEBUG_RX=n
377 CONFIG_RTE_LIBRTE_AVP_DEBUG_TX=n
378 CONFIG_RTE_LIBRTE_AVP_DEBUG_DRIVER=y
379 CONFIG_RTE_LIBRTE_AVP_DEBUG_BUFFERS=n
380
381 #
382 # Compile the TAP PMD
383 # It is enabled by default for Linux only.
384 #
385 CONFIG_RTE_LIBRTE_PMD_TAP=n
386
387 #
388 # Compile Xen PMD
389 #
390 CONFIG_RTE_LIBRTE_PMD_XENVIRT=n
391
392 #
393 # Compile null PMD
394 #
395 CONFIG_RTE_LIBRTE_PMD_NULL=y
396
397 #
398 # Do prefetch of packet data within PMD driver receive function
399 #
400 CONFIG_RTE_PMD_PACKET_PREFETCH=y
401
402 #
403 # Compile generic crypto device library
404 #
405 CONFIG_RTE_LIBRTE_CRYPTODEV=y
406 CONFIG_RTE_LIBRTE_CRYPTODEV_DEBUG=n
407 CONFIG_RTE_CRYPTO_MAX_DEVS=64
408 CONFIG_RTE_CRYPTODEV_NAME_LEN=64
409
410 #
411 # Compile PMD for ARMv8 Crypto device
412 #
413 CONFIG_RTE_LIBRTE_PMD_ARMV8_CRYPTO=n
414 CONFIG_RTE_LIBRTE_PMD_ARMV8_CRYPTO_DEBUG=n
415
416 #
417 # Compile PMD for QuickAssist based devices
418 #
419 CONFIG_RTE_LIBRTE_PMD_QAT=n
420 CONFIG_RTE_LIBRTE_PMD_QAT_DEBUG_INIT=n
421 CONFIG_RTE_LIBRTE_PMD_QAT_DEBUG_TX=n
422 CONFIG_RTE_LIBRTE_PMD_QAT_DEBUG_RX=n
423 CONFIG_RTE_LIBRTE_PMD_QAT_DEBUG_DRIVER=n
424 #
425 # Number of sessions to create in the session memory pool
426 # on a single QuickAssist device.
427 #
428 CONFIG_RTE_QAT_PMD_MAX_NB_SESSIONS=2048
429
430 #
431 # Compile PMD for AESNI backed device
432 #
433 CONFIG_RTE_LIBRTE_PMD_AESNI_MB=n
434 CONFIG_RTE_LIBRTE_PMD_AESNI_MB_DEBUG=n
435
436 #
437 # Compile PMD for Software backed device
438 #
439 CONFIG_RTE_LIBRTE_PMD_OPENSSL=n
440 CONFIG_RTE_LIBRTE_PMD_OPENSSL_DEBUG=n
441
442 #
443 # Compile PMD for AESNI GCM device
444 #
445 CONFIG_RTE_LIBRTE_PMD_AESNI_GCM=n
446 CONFIG_RTE_LIBRTE_PMD_AESNI_GCM_DEBUG=n
447
448 #
449 # Compile PMD for SNOW 3G device
450 #
451 CONFIG_RTE_LIBRTE_PMD_SNOW3G=n
452 CONFIG_RTE_LIBRTE_PMD_SNOW3G_DEBUG=n
453
454 #
455 # Compile PMD for KASUMI device
456 #
457 CONFIG_RTE_LIBRTE_PMD_KASUMI=n
458 CONFIG_RTE_LIBRTE_PMD_KASUMI_DEBUG=n
459
460 #
461 # Compile PMD for ZUC device
462 #
463 CONFIG_RTE_LIBRTE_PMD_ZUC=n
464 CONFIG_RTE_LIBRTE_PMD_ZUC_DEBUG=n
465
466 #
467 # Compile PMD for Crypto Scheduler device
468 #
469 CONFIG_RTE_LIBRTE_PMD_CRYPTO_SCHEDULER=y
470 CONFIG_RTE_LIBRTE_PMD_CRYPTO_SCHEDULER_DEBUG=n
471
472 #
473 # Compile PMD for NULL Crypto device
474 #
475 CONFIG_RTE_LIBRTE_PMD_NULL_CRYPTO=y
476
477 #
478 # Compile generic event device library
479 #
480 CONFIG_RTE_LIBRTE_EVENTDEV=y
481 CONFIG_RTE_LIBRTE_EVENTDEV_DEBUG=n
482 CONFIG_RTE_EVENT_MAX_DEVS=16
483 CONFIG_RTE_EVENT_MAX_QUEUES_PER_DEV=64
484
485 #
486 # Compile PMD for skeleton event device
487 #
488 CONFIG_RTE_LIBRTE_PMD_SKELETON_EVENTDEV=y
489 CONFIG_RTE_LIBRTE_PMD_SKELETON_EVENTDEV_DEBUG=n
490
491 #
492 # Compile PMD for software event device
493 #
494 CONFIG_RTE_LIBRTE_PMD_SW_EVENTDEV=y
495 CONFIG_RTE_LIBRTE_PMD_SW_EVENTDEV_DEBUG=n
496
497 #
498 # Compile PMD for octeontx sso event device
499 #
500 CONFIG_RTE_LIBRTE_PMD_OCTEONTX_SSOVF=y
501 CONFIG_RTE_LIBRTE_PMD_OCTEONTX_SSOVF_DEBUG=n
502
503 #
504 # Compile librte_ring
505 #
506 CONFIG_RTE_LIBRTE_RING=y
507
508 #
509 # Compile librte_mempool
510 #
511 CONFIG_RTE_LIBRTE_MEMPOOL=y
512 CONFIG_RTE_MEMPOOL_CACHE_MAX_SIZE=512
513 CONFIG_RTE_LIBRTE_MEMPOOL_DEBUG=n
514
515 #
516 # Compile Mempool drivers
517 #
518 CONFIG_RTE_DRIVER_MEMPOOL_RING=y
519 CONFIG_RTE_DRIVER_MEMPOOL_STACK=y
520
521 #
522 # Compile librte_mbuf
523 #
524 CONFIG_RTE_LIBRTE_MBUF=y
525 CONFIG_RTE_LIBRTE_MBUF_DEBUG=n
526 CONFIG_RTE_MBUF_DEFAULT_MEMPOOL_OPS="ring_mp_mc"
527 CONFIG_RTE_MBUF_REFCNT_ATOMIC=y
528 CONFIG_RTE_PKTMBUF_HEADROOM=128
529
530 #
531 # Compile librte_timer
532 #
533 CONFIG_RTE_LIBRTE_TIMER=y
534 CONFIG_RTE_LIBRTE_TIMER_DEBUG=n
535
536 #
537 # Compile librte_cfgfile
538 #
539 CONFIG_RTE_LIBRTE_CFGFILE=y
540
541 #
542 # Compile librte_cmdline
543 #
544 CONFIG_RTE_LIBRTE_CMDLINE=y
545 CONFIG_RTE_LIBRTE_CMDLINE_DEBUG=n
546
547 #
548 # Compile librte_hash
549 #
550 CONFIG_RTE_LIBRTE_HASH=y
551 CONFIG_RTE_LIBRTE_HASH_DEBUG=n
552
553 #
554 # Compile librte_efd
555 #
556 CONFIG_RTE_LIBRTE_EFD=y
557
558 #
559 # Compile librte_jobstats
560 #
561 CONFIG_RTE_LIBRTE_JOBSTATS=y
562
563 #
564 # Compile the device metrics library
565 #
566 CONFIG_RTE_LIBRTE_METRICS=y
567
568 #
569 # Compile the bitrate statistics library
570 #
571 CONFIG_RTE_LIBRTE_BITRATE=y
572
573 #
574 # Compile the latency statistics library
575 #
576 CONFIG_RTE_LIBRTE_LATENCY_STATS=y
577
578 #
579 # Compile librte_lpm
580 #
581 CONFIG_RTE_LIBRTE_LPM=y
582 CONFIG_RTE_LIBRTE_LPM_DEBUG=n
583
584 #
585 # Compile librte_acl
586 #
587 CONFIG_RTE_LIBRTE_ACL=y
588 CONFIG_RTE_LIBRTE_ACL_DEBUG=n
589
590 #
591 # Compile librte_power
592 #
593 CONFIG_RTE_LIBRTE_POWER=n
594 CONFIG_RTE_LIBRTE_POWER_DEBUG=n
595 CONFIG_RTE_MAX_LCORE_FREQS=64
596
597 #
598 # Compile librte_net
599 #
600 CONFIG_RTE_LIBRTE_NET=y
601
602 #
603 # Compile librte_ip_frag
604 #
605 CONFIG_RTE_LIBRTE_IP_FRAG=y
606 CONFIG_RTE_LIBRTE_IP_FRAG_DEBUG=n
607 CONFIG_RTE_LIBRTE_IP_FRAG_MAX_FRAG=4
608 CONFIG_RTE_LIBRTE_IP_FRAG_TBL_STAT=n
609
610 #
611 # Compile librte_meter
612 #
613 CONFIG_RTE_LIBRTE_METER=y
614
615 #
616 # Compile librte_sched
617 #
618 CONFIG_RTE_LIBRTE_SCHED=y
619 CONFIG_RTE_SCHED_DEBUG=n
620 CONFIG_RTE_SCHED_RED=n
621 CONFIG_RTE_SCHED_COLLECT_STATS=n
622 CONFIG_RTE_SCHED_SUBPORT_TC_OV=n
623 CONFIG_RTE_SCHED_PORT_N_GRINDERS=8
624 CONFIG_RTE_SCHED_VECTOR=n
625
626 #
627 # Compile the distributor library
628 #
629 CONFIG_RTE_LIBRTE_DISTRIBUTOR=y
630
631 #
632 # Compile the reorder library
633 #
634 CONFIG_RTE_LIBRTE_REORDER=y
635
636 #
637 # Compile librte_port
638 #
639 CONFIG_RTE_LIBRTE_PORT=y
640 CONFIG_RTE_PORT_STATS_COLLECT=n
641 CONFIG_RTE_PORT_PCAP=n
642
643 #
644 # Compile librte_table
645 #
646 CONFIG_RTE_LIBRTE_TABLE=y
647 CONFIG_RTE_TABLE_STATS_COLLECT=n
648
649 #
650 # Compile librte_pipeline
651 #
652 CONFIG_RTE_LIBRTE_PIPELINE=y
653 CONFIG_RTE_PIPELINE_STATS_COLLECT=n
654
655 #
656 # Compile librte_kni
657 #
658 CONFIG_RTE_LIBRTE_KNI=n
659 CONFIG_RTE_LIBRTE_PMD_KNI=n
660 CONFIG_RTE_KNI_KMOD=n
661 CONFIG_RTE_KNI_KMOD_ETHTOOL=n
662 CONFIG_RTE_KNI_PREEMPT_DEFAULT=y
663
664 #
665 # Compile the pdump library
666 #
667 CONFIG_RTE_LIBRTE_PDUMP=y
668
669 #
670 # Compile vhost user library
671 #
672 CONFIG_RTE_LIBRTE_VHOST=n
673 CONFIG_RTE_LIBRTE_VHOST_NUMA=n
674 CONFIG_RTE_LIBRTE_VHOST_DEBUG=n
675
676 #
677 # Compile vhost PMD
678 # To compile, CONFIG_RTE_LIBRTE_VHOST should be enabled.
679 #
680 CONFIG_RTE_LIBRTE_PMD_VHOST=n
681
682 #
683 #Compile Xen domain0 support
684 #
685 CONFIG_RTE_LIBRTE_XEN_DOM0=n
686
687 #
688 # Compile the test application
689 #
690 CONFIG_RTE_APP_TEST=y
691 CONFIG_RTE_APP_TEST_RESOURCE_TAR=n
692
693 #
694 # Compile the PMD test application
695 #
696 CONFIG_RTE_TEST_PMD=y
697 CONFIG_RTE_TEST_PMD_RECORD_CORE_CYCLES=n
698 CONFIG_RTE_TEST_PMD_RECORD_BURST_STATS=n
699
700 #
701 # Compile the crypto performance application
702 #
703 CONFIG_RTE_APP_CRYPTO_PERF=y