eventdev: add interrupt driven queues to Rx adapter
[dpdk.git] / config / common_base
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2010-2017 Intel Corporation
3
4 #
5 # define executive environment
6 # RTE_EXEC_ENV values are the directories in mk/exec-env/
7 #
8 CONFIG_RTE_EXEC_ENV=
9
10 #
11 # define the architecture we compile for.
12 # RTE_ARCH values are the directories in mk/arch/
13 #
14 CONFIG_RTE_ARCH=
15
16 #
17 # machine can define specific variables or action for a specific board
18 # RTE_MACHINE values are the directories in mk/machine/
19 #
20 CONFIG_RTE_MACHINE=
21
22 #
23 # The compiler we use.
24 # RTE_TOOLCHAIN values are the directories in mk/toolchain/
25 #
26 CONFIG_RTE_TOOLCHAIN=
27
28 #
29 # Use intrinsics or assembly code for key routines
30 #
31 CONFIG_RTE_FORCE_INTRINSICS=n
32
33 #
34 # Machine forces strict alignment constraints.
35 #
36 CONFIG_RTE_ARCH_STRICT_ALIGN=n
37
38 #
39 # Compile to share library
40 #
41 CONFIG_RTE_BUILD_SHARED_LIB=n
42
43 #
44 # Use newest code breaking previous ABI
45 #
46 CONFIG_RTE_NEXT_ABI=y
47
48 #
49 # Major ABI to overwrite library specific LIBABIVER
50 #
51 CONFIG_RTE_MAJOR_ABI=
52
53 #
54 # Machine's cache line size
55 #
56 CONFIG_RTE_CACHE_LINE_SIZE=64
57
58 #
59 # Compile Environment Abstraction Layer
60 #
61 CONFIG_RTE_LIBRTE_EAL=y
62 CONFIG_RTE_MAX_LCORE=128
63 CONFIG_RTE_MAX_NUMA_NODES=8
64 CONFIG_RTE_MAX_MEMSEG_LISTS=64
65 # each memseg list will be limited to either RTE_MAX_MEMSEG_PER_LIST pages
66 # or RTE_MAX_MEM_MB_PER_LIST megabytes worth of memory, whichever is smaller
67 CONFIG_RTE_MAX_MEMSEG_PER_LIST=8192
68 CONFIG_RTE_MAX_MEM_MB_PER_LIST=32768
69 # a "type" is a combination of page size and NUMA node. total number of memseg
70 # lists per type will be limited to either RTE_MAX_MEMSEG_PER_TYPE pages (split
71 # over multiple lists of RTE_MAX_MEMSEG_PER_LIST pages), or
72 # RTE_MAX_MEM_MB_PER_TYPE megabytes of memory (split over multiple lists of
73 # RTE_MAX_MEM_MB_PER_LIST), whichever is smaller
74 CONFIG_RTE_MAX_MEMSEG_PER_TYPE=32768
75 CONFIG_RTE_MAX_MEM_MB_PER_TYPE=131072
76 # global maximum usable amount of VA, in megabytes
77 CONFIG_RTE_MAX_MEM_MB=524288
78 CONFIG_RTE_MAX_MEMZONE=2560
79 CONFIG_RTE_MAX_TAILQ=32
80 CONFIG_RTE_ENABLE_ASSERT=n
81 CONFIG_RTE_LOG_DP_LEVEL=RTE_LOG_INFO
82 CONFIG_RTE_LOG_HISTORY=256
83 CONFIG_RTE_BACKTRACE=y
84 CONFIG_RTE_LIBEAL_USE_HPET=n
85 CONFIG_RTE_EAL_ALLOW_INV_SOCKET_ID=n
86 CONFIG_RTE_EAL_ALWAYS_PANIC_ON_ERROR=n
87 CONFIG_RTE_EAL_IGB_UIO=n
88 CONFIG_RTE_EAL_VFIO=n
89 CONFIG_RTE_MAX_VFIO_GROUPS=64
90 CONFIG_RTE_MAX_VFIO_CONTAINERS=64
91 CONFIG_RTE_MALLOC_DEBUG=n
92 CONFIG_RTE_EAL_NUMA_AWARE_HUGEPAGES=n
93 CONFIG_RTE_USE_LIBBSD=n
94
95 #
96 # Recognize/ignore the AVX/AVX512 CPU flags for performance/power testing.
97 # AVX512 is marked as experimental for now, will enable it after enough
98 # field test and possible optimization.
99 #
100 CONFIG_RTE_ENABLE_AVX=y
101 CONFIG_RTE_ENABLE_AVX512=n
102
103 # Default driver path (or "" to disable)
104 CONFIG_RTE_EAL_PMD_PATH=""
105
106 #
107 # Compile Environment Abstraction Layer to support Vmware TSC map
108 #
109 CONFIG_RTE_LIBRTE_EAL_VMWARE_TSC_MAP_SUPPORT=y
110
111 #
112 # Compile the PCI library
113 #
114 CONFIG_RTE_LIBRTE_PCI=y
115
116 #
117 # Compile the argument parser library
118 #
119 CONFIG_RTE_LIBRTE_KVARGS=y
120
121 #
122 # Compile generic ethernet library
123 #
124 CONFIG_RTE_LIBRTE_ETHER=y
125 CONFIG_RTE_LIBRTE_ETHDEV_DEBUG=n
126 CONFIG_RTE_MAX_ETHPORTS=32
127 CONFIG_RTE_MAX_QUEUES_PER_PORT=1024
128 CONFIG_RTE_LIBRTE_IEEE1588=n
129 CONFIG_RTE_ETHDEV_QUEUE_STAT_CNTRS=16
130 CONFIG_RTE_ETHDEV_RXTX_CALLBACKS=y
131 CONFIG_RTE_ETHDEV_PROFILE_ITT_WASTED_RX_ITERATIONS=n
132
133 #
134 # Turn off Tx preparation stage
135 #
136 # Warning: rte_eth_tx_prepare() can be safely disabled only if using a
137 # driver which do not implement any Tx preparation.
138 #
139 CONFIG_RTE_ETHDEV_TX_PREPARE_NOOP=n
140
141 #
142 # Compile the Intel FPGA bus
143 #
144 CONFIG_RTE_LIBRTE_IFPGA_BUS=y
145
146 #
147 # Compile PCI bus driver
148 #
149 CONFIG_RTE_LIBRTE_PCI_BUS=y
150
151 #
152 # Compile the vdev bus
153 #
154 CONFIG_RTE_LIBRTE_VDEV_BUS=y
155
156 #
157 # Compile ARK PMD
158 #
159 CONFIG_RTE_LIBRTE_ARK_PMD=y
160 CONFIG_RTE_LIBRTE_ARK_PAD_TX=y
161 CONFIG_RTE_LIBRTE_ARK_DEBUG_RX=n
162 CONFIG_RTE_LIBRTE_ARK_DEBUG_TX=n
163 CONFIG_RTE_LIBRTE_ARK_DEBUG_STATS=n
164 CONFIG_RTE_LIBRTE_ARK_DEBUG_TRACE=n
165
166 #
167 # Compile AMD PMD
168 #
169 CONFIG_RTE_LIBRTE_AXGBE_PMD=y
170 CONFIG_RTE_LIBRTE_AXGBE_PMD_DEBUG=n
171
172 #
173 # Compile burst-oriented Broadcom PMD driver
174 #
175 CONFIG_RTE_LIBRTE_BNX2X_PMD=n
176 CONFIG_RTE_LIBRTE_BNX2X_DEBUG_RX=n
177 CONFIG_RTE_LIBRTE_BNX2X_DEBUG_TX=n
178 CONFIG_RTE_LIBRTE_BNX2X_MF_SUPPORT=n
179 CONFIG_RTE_LIBRTE_BNX2X_DEBUG_PERIODIC=n
180
181 #
182 # Compile burst-oriented Broadcom BNXT PMD driver
183 #
184 CONFIG_RTE_LIBRTE_BNXT_PMD=y
185
186 #
187 # Compile burst-oriented Chelsio Terminator (CXGBE) PMD
188 #
189 CONFIG_RTE_LIBRTE_CXGBE_PMD=y
190 CONFIG_RTE_LIBRTE_CXGBE_DEBUG=n
191 CONFIG_RTE_LIBRTE_CXGBE_DEBUG_REG=n
192 CONFIG_RTE_LIBRTE_CXGBE_DEBUG_MBOX=n
193 CONFIG_RTE_LIBRTE_CXGBE_DEBUG_TX=n
194 CONFIG_RTE_LIBRTE_CXGBE_DEBUG_RX=n
195 CONFIG_RTE_LIBRTE_CXGBE_TPUT=y
196
197 # NXP DPAA Bus
198 CONFIG_RTE_LIBRTE_DPAA_BUS=n
199 CONFIG_RTE_LIBRTE_DPAA_MEMPOOL=n
200 CONFIG_RTE_LIBRTE_DPAA_PMD=n
201 CONFIG_RTE_LIBRTE_DPAA_HWDEBUG=n
202
203 #
204 # Compile NXP DPAA2 FSL-MC Bus
205 #
206 CONFIG_RTE_LIBRTE_FSLMC_BUS=n
207
208 #
209 # Compile Support Libraries for NXP DPAA2
210 #
211 CONFIG_RTE_LIBRTE_DPAA2_MEMPOOL=n
212 CONFIG_RTE_LIBRTE_DPAA2_USE_PHYS_IOVA=y
213
214 #
215 # Compile burst-oriented NXP DPAA2 PMD driver
216 #
217 CONFIG_RTE_LIBRTE_DPAA2_PMD=n
218 CONFIG_RTE_LIBRTE_DPAA2_DEBUG_DRIVER=n
219
220 #
221 # Compile burst-oriented Amazon ENA PMD driver
222 #
223 CONFIG_RTE_LIBRTE_ENA_PMD=y
224 CONFIG_RTE_LIBRTE_ENA_DEBUG_RX=n
225 CONFIG_RTE_LIBRTE_ENA_DEBUG_TX=n
226 CONFIG_RTE_LIBRTE_ENA_DEBUG_TX_FREE=n
227 CONFIG_RTE_LIBRTE_ENA_COM_DEBUG=n
228
229 #
230 # Compile burst-oriented Cisco ENIC PMD driver
231 #
232 CONFIG_RTE_LIBRTE_ENIC_PMD=y
233
234 #
235 # Compile burst-oriented IGB & EM PMD drivers
236 #
237 CONFIG_RTE_LIBRTE_EM_PMD=y
238 CONFIG_RTE_LIBRTE_IGB_PMD=y
239 CONFIG_RTE_LIBRTE_E1000_DEBUG_RX=n
240 CONFIG_RTE_LIBRTE_E1000_DEBUG_TX=n
241 CONFIG_RTE_LIBRTE_E1000_DEBUG_TX_FREE=n
242 CONFIG_RTE_LIBRTE_E1000_PF_DISABLE_STRIP_CRC=n
243
244 #
245 # Compile burst-oriented IXGBE PMD driver
246 #
247 CONFIG_RTE_LIBRTE_IXGBE_PMD=y
248 CONFIG_RTE_LIBRTE_IXGBE_DEBUG_RX=n
249 CONFIG_RTE_LIBRTE_IXGBE_DEBUG_TX=n
250 CONFIG_RTE_LIBRTE_IXGBE_DEBUG_TX_FREE=n
251 CONFIG_RTE_LIBRTE_IXGBE_PF_DISABLE_STRIP_CRC=n
252 CONFIG_RTE_IXGBE_INC_VECTOR=y
253 CONFIG_RTE_LIBRTE_IXGBE_BYPASS=n
254
255 #
256 # Compile burst-oriented I40E PMD driver
257 #
258 CONFIG_RTE_LIBRTE_I40E_PMD=y
259 CONFIG_RTE_LIBRTE_I40E_DEBUG_RX=n
260 CONFIG_RTE_LIBRTE_I40E_DEBUG_TX=n
261 CONFIG_RTE_LIBRTE_I40E_DEBUG_TX_FREE=n
262 CONFIG_RTE_LIBRTE_I40E_RX_ALLOW_BULK_ALLOC=y
263 CONFIG_RTE_LIBRTE_I40E_INC_VECTOR=y
264 CONFIG_RTE_LIBRTE_I40E_16BYTE_RX_DESC=n
265 CONFIG_RTE_LIBRTE_I40E_QUEUE_NUM_PER_PF=64
266 CONFIG_RTE_LIBRTE_I40E_QUEUE_NUM_PER_VM=4
267
268 #
269 # Compile burst-oriented FM10K PMD
270 #
271 CONFIG_RTE_LIBRTE_FM10K_PMD=y
272 CONFIG_RTE_LIBRTE_FM10K_DEBUG_RX=n
273 CONFIG_RTE_LIBRTE_FM10K_DEBUG_TX=n
274 CONFIG_RTE_LIBRTE_FM10K_DEBUG_TX_FREE=n
275 CONFIG_RTE_LIBRTE_FM10K_RX_OLFLAGS_ENABLE=y
276 CONFIG_RTE_LIBRTE_FM10K_INC_VECTOR=y
277
278 #
279 # Compile burst-oriented AVF PMD driver
280 #
281 CONFIG_RTE_LIBRTE_AVF_PMD=y
282 CONFIG_RTE_LIBRTE_AVF_INC_VECTOR=y
283 CONFIG_RTE_LIBRTE_AVF_DEBUG_TX=n
284 CONFIG_RTE_LIBRTE_AVF_DEBUG_TX_FREE=n
285 CONFIG_RTE_LIBRTE_AVF_DEBUG_RX=n
286 CONFIG_RTE_LIBRTE_AVF_16BYTE_RX_DESC=n
287
288 #
289 # Compile burst-oriented Mellanox ConnectX-3 (MLX4) PMD
290 #
291 CONFIG_RTE_LIBRTE_MLX4_PMD=n
292 CONFIG_RTE_LIBRTE_MLX4_DEBUG=n
293 CONFIG_RTE_LIBRTE_MLX4_DLOPEN_DEPS=n
294
295 #
296 # Compile burst-oriented Mellanox ConnectX-4, ConnectX-5 & Bluefield
297 # (MLX5) PMD
298 #
299 CONFIG_RTE_LIBRTE_MLX5_PMD=n
300 CONFIG_RTE_LIBRTE_MLX5_DEBUG=n
301 CONFIG_RTE_LIBRTE_MLX5_DLOPEN_DEPS=n
302
303 #
304 # Compile burst-oriented Netronome NFP PMD driver
305 #
306 CONFIG_RTE_LIBRTE_NFP_PMD=n
307 CONFIG_RTE_LIBRTE_NFP_DEBUG_TX=n
308 CONFIG_RTE_LIBRTE_NFP_DEBUG_RX=n
309
310 # QLogic 10G/25G/40G/50G/100G PMD
311 #
312 CONFIG_RTE_LIBRTE_QEDE_PMD=y
313 CONFIG_RTE_LIBRTE_QEDE_DEBUG_TX=n
314 CONFIG_RTE_LIBRTE_QEDE_DEBUG_RX=n
315 #Provides abs path/name of the firmware file.
316 #Empty string denotes driver will use default firmware
317 CONFIG_RTE_LIBRTE_QEDE_FW=""
318
319 #
320 # Compile burst-oriented Solarflare libefx-based PMD
321 #
322 CONFIG_RTE_LIBRTE_SFC_EFX_PMD=y
323 CONFIG_RTE_LIBRTE_SFC_EFX_DEBUG=n
324
325 #
326 # Compile software PMD backed by SZEDATA2 device
327 #
328 CONFIG_RTE_LIBRTE_PMD_SZEDATA2=n
329
330 #
331 # Compile burst-oriented Cavium Thunderx NICVF PMD driver
332 #
333 CONFIG_RTE_LIBRTE_THUNDERX_NICVF_PMD=y
334 CONFIG_RTE_LIBRTE_THUNDERX_NICVF_DEBUG_RX=n
335 CONFIG_RTE_LIBRTE_THUNDERX_NICVF_DEBUG_TX=n
336
337 #
338 # Compile burst-oriented Cavium LiquidIO PMD driver
339 #
340 CONFIG_RTE_LIBRTE_LIO_PMD=y
341 CONFIG_RTE_LIBRTE_LIO_DEBUG_RX=n
342 CONFIG_RTE_LIBRTE_LIO_DEBUG_TX=n
343 CONFIG_RTE_LIBRTE_LIO_DEBUG_MBOX=n
344 CONFIG_RTE_LIBRTE_LIO_DEBUG_REGS=n
345
346 #
347 # Compile burst-oriented Cavium OCTEONTX network PMD driver
348 #
349 CONFIG_RTE_LIBRTE_OCTEONTX_PMD=y
350
351 #
352 # Compile WRS accelerated virtual port (AVP) guest PMD driver
353 #
354 CONFIG_RTE_LIBRTE_AVP_PMD=n
355 CONFIG_RTE_LIBRTE_AVP_DEBUG_RX=n
356 CONFIG_RTE_LIBRTE_AVP_DEBUG_TX=n
357 CONFIG_RTE_LIBRTE_AVP_DEBUG_BUFFERS=n
358
359 #
360 # Compile burst-oriented VIRTIO PMD driver
361 #
362 CONFIG_RTE_LIBRTE_VIRTIO_PMD=y
363 CONFIG_RTE_LIBRTE_VIRTIO_DEBUG_RX=n
364 CONFIG_RTE_LIBRTE_VIRTIO_DEBUG_TX=n
365 CONFIG_RTE_LIBRTE_VIRTIO_DEBUG_DUMP=n
366
367 #
368 # Compile virtio device emulation inside virtio PMD driver
369 #
370 CONFIG_RTE_VIRTIO_USER=n
371
372 #
373 # Compile burst-oriented VMXNET3 PMD driver
374 #
375 CONFIG_RTE_LIBRTE_VMXNET3_PMD=y
376 CONFIG_RTE_LIBRTE_VMXNET3_DEBUG_RX=n
377 CONFIG_RTE_LIBRTE_VMXNET3_DEBUG_TX=n
378 CONFIG_RTE_LIBRTE_VMXNET3_DEBUG_TX_FREE=n
379
380 #
381 # Compile software PMD backed by AF_PACKET sockets (Linux only)
382 #
383 CONFIG_RTE_LIBRTE_PMD_AF_PACKET=n
384
385 #
386 # Compile link bonding PMD library
387 #
388 CONFIG_RTE_LIBRTE_PMD_BOND=y
389 CONFIG_RTE_LIBRTE_BOND_DEBUG_ALB=n
390 CONFIG_RTE_LIBRTE_BOND_DEBUG_ALB_L1=n
391
392 #
393 # Compile fail-safe PMD
394 #
395 CONFIG_RTE_LIBRTE_PMD_FAILSAFE=y
396
397 #
398 # Compile Marvell PMD driver
399 #
400 CONFIG_RTE_LIBRTE_MVPP2_PMD=n
401
402 #
403 # Compile virtual device driver for NetVSC on Hyper-V/Azure
404 #
405 CONFIG_RTE_LIBRTE_VDEV_NETVSC_PMD=n
406
407 #
408 # Compile null PMD
409 #
410 CONFIG_RTE_LIBRTE_PMD_NULL=y
411
412 #
413 # Compile software PMD backed by PCAP files
414 #
415 CONFIG_RTE_LIBRTE_PMD_PCAP=n
416
417 #
418 # Compile example software rings based PMD
419 #
420 CONFIG_RTE_LIBRTE_PMD_RING=y
421 CONFIG_RTE_PMD_RING_MAX_RX_RINGS=16
422 CONFIG_RTE_PMD_RING_MAX_TX_RINGS=16
423
424 #
425 # Compile SOFTNIC PMD
426 #
427 CONFIG_RTE_LIBRTE_PMD_SOFTNIC=y
428
429 #
430 # Compile the TAP PMD
431 # It is enabled by default for Linux only.
432 #
433 CONFIG_RTE_LIBRTE_PMD_TAP=n
434
435 #
436 # Do prefetch of packet data within PMD driver receive function
437 #
438 CONFIG_RTE_PMD_PACKET_PREFETCH=y
439
440 # Compile generic wireless base band device library
441 # EXPERIMENTAL: API may change without prior notice
442 #
443 CONFIG_RTE_LIBRTE_BBDEV=y
444 CONFIG_RTE_BBDEV_MAX_DEVS=128
445 CONFIG_RTE_BBDEV_OFFLOAD_COST=n
446
447 #
448 # Compile PMD for NULL bbdev device
449 #
450 CONFIG_RTE_LIBRTE_PMD_BBDEV_NULL=y
451
452 #
453 # Compile PMD for turbo software bbdev device
454 #
455 CONFIG_RTE_LIBRTE_PMD_BBDEV_TURBO_SW=n
456
457 #
458 # Compile generic crypto device library
459 #
460 CONFIG_RTE_LIBRTE_CRYPTODEV=y
461 CONFIG_RTE_CRYPTO_MAX_DEVS=64
462
463 #
464 # Compile PMD for ARMv8 Crypto device
465 #
466 CONFIG_RTE_LIBRTE_PMD_ARMV8_CRYPTO=n
467 CONFIG_RTE_LIBRTE_PMD_ARMV8_CRYPTO_DEBUG=n
468
469 #
470 # Compile NXP DPAA2 crypto sec driver for CAAM HW
471 #
472 CONFIG_RTE_LIBRTE_PMD_DPAA2_SEC=n
473
474 #
475 # NXP DPAA caam - crypto driver
476 #
477 CONFIG_RTE_LIBRTE_PMD_DPAA_SEC=n
478 CONFIG_RTE_LIBRTE_DPAA_MAX_CRYPTODEV=4
479
480 #
481 # Compile PMD for QuickAssist based devices
482 #
483 CONFIG_RTE_LIBRTE_PMD_QAT=n
484 #
485 # Max. number of QuickAssist devices, which can be detected and attached
486 #
487 CONFIG_RTE_PMD_QAT_MAX_PCI_DEVICES=48
488
489 #
490 # Compile PMD for virtio crypto devices
491 #
492 CONFIG_RTE_LIBRTE_PMD_VIRTIO_CRYPTO=y
493 #
494 # Number of maximum virtio crypto devices
495 #
496 CONFIG_RTE_MAX_VIRTIO_CRYPTO=32
497
498 #
499 # Compile PMD for AESNI backed device
500 #
501 CONFIG_RTE_LIBRTE_PMD_AESNI_MB=n
502
503 #
504 # Compile PMD for Software backed device
505 #
506 CONFIG_RTE_LIBRTE_PMD_OPENSSL=n
507
508 #
509 # Compile PMD for AESNI GCM device
510 #
511 CONFIG_RTE_LIBRTE_PMD_AESNI_GCM=n
512
513 #
514 # Compile PMD for SNOW 3G device
515 #
516 CONFIG_RTE_LIBRTE_PMD_SNOW3G=n
517 CONFIG_RTE_LIBRTE_PMD_SNOW3G_DEBUG=n
518
519 #
520 # Compile PMD for KASUMI device
521 #
522 CONFIG_RTE_LIBRTE_PMD_KASUMI=n
523
524 #
525 # Compile PMD for ZUC device
526 #
527 CONFIG_RTE_LIBRTE_PMD_ZUC=n
528
529 # Compile PMD for Crypto Scheduler device
530 #
531 CONFIG_RTE_LIBRTE_PMD_CRYPTO_SCHEDULER=y
532
533 #
534 # Compile PMD for NULL Crypto device
535 #
536 CONFIG_RTE_LIBRTE_PMD_NULL_CRYPTO=y
537
538 #
539 # Compile PMD for AMD CCP crypto device
540 #
541 CONFIG_RTE_LIBRTE_PMD_CCP=n
542
543 #
544 # Compile PMD for Marvell Crypto device
545 #
546 CONFIG_RTE_LIBRTE_PMD_MVSAM_CRYPTO=n
547 CONFIG_RTE_LIBRTE_PMD_MVSAM_CRYPTO_DEBUG=n
548
549 #
550 # Compile generic security library
551 #
552 CONFIG_RTE_LIBRTE_SECURITY=y
553
554 #
555 # Compile generic compression device library
556 #
557 CONFIG_RTE_LIBRTE_COMPRESSDEV=y
558 CONFIG_RTE_COMPRESS_MAX_DEVS=64
559
560 #
561 # Compile compressdev unit test
562 #
563 CONFIG_RTE_COMPRESSDEV_TEST=n
564
565 #
566 # Compile PMD for ISA-L compression device
567 #
568 CONFIG_RTE_LIBRTE_PMD_ISAL=n
569
570 #
571 # Compile generic event device library
572 #
573 CONFIG_RTE_LIBRTE_EVENTDEV=y
574 CONFIG_RTE_LIBRTE_EVENTDEV_DEBUG=n
575 CONFIG_RTE_EVENT_MAX_DEVS=16
576 CONFIG_RTE_EVENT_MAX_QUEUES_PER_DEV=64
577 CONFIG_RTE_EVENT_TIMER_ADAPTER_NUM_MAX=32
578 CONFIG_RTE_EVENT_ETH_INTR_RING_SIZE=1024
579 CONFIG_RTE_EVENT_CRYPTO_ADAPTER_MAX_INSTANCE=32
580
581 #
582 # Compile PMD for skeleton event device
583 #
584 CONFIG_RTE_LIBRTE_PMD_SKELETON_EVENTDEV=y
585 CONFIG_RTE_LIBRTE_PMD_SKELETON_EVENTDEV_DEBUG=n
586
587 #
588 # Compile PMD for software event device
589 #
590 CONFIG_RTE_LIBRTE_PMD_SW_EVENTDEV=y
591
592 #
593 # Compile PMD for octeontx sso event device
594 #
595 CONFIG_RTE_LIBRTE_PMD_OCTEONTX_SSOVF=y
596
597 #
598 # Compile PMD for OPDL event device
599 #
600 CONFIG_RTE_LIBRTE_PMD_OPDL_EVENTDEV=y
601
602 #
603 # Compile PMD for NXP DPAA event device
604 #
605 CONFIG_RTE_LIBRTE_PMD_DPAA_EVENTDEV=n
606
607 #
608 # Compile PMD for NXP DPAA2 event device
609 #
610 CONFIG_RTE_LIBRTE_PMD_DPAA2_EVENTDEV=n
611
612 #
613 # Compile raw device support
614 # EXPERIMENTAL: API may change without prior notice
615 #
616 CONFIG_RTE_LIBRTE_RAWDEV=y
617 CONFIG_RTE_RAWDEV_MAX_DEVS=10
618 CONFIG_RTE_LIBRTE_PMD_SKELETON_RAWDEV=y
619
620 #
621 # Compile PMD for NXP DPAA2 CMDIF raw device
622 #
623 CONFIG_RTE_LIBRTE_PMD_DPAA2_CMDIF_RAWDEV=n
624
625 #
626 # Compile PMD for NXP DPAA2 QDMA raw device
627 #
628 CONFIG_RTE_LIBRTE_PMD_DPAA2_QDMA_RAWDEV=n
629
630 #
631 # Compile PMD for Intel FPGA raw device
632 #
633 CONFIG_RTE_LIBRTE_PMD_IFPGA_RAWDEV=y
634
635 #
636 # Compile librte_ring
637 #
638 CONFIG_RTE_LIBRTE_RING=y
639 CONFIG_RTE_RING_USE_C11_MEM_MODEL=n
640
641 #
642 # Compile librte_mempool
643 #
644 CONFIG_RTE_LIBRTE_MEMPOOL=y
645 CONFIG_RTE_MEMPOOL_CACHE_MAX_SIZE=512
646 CONFIG_RTE_LIBRTE_MEMPOOL_DEBUG=n
647
648 #
649 # Compile Mempool drivers
650 #
651 CONFIG_RTE_DRIVER_MEMPOOL_BUCKET=y
652 CONFIG_RTE_DRIVER_MEMPOOL_BUCKET_SIZE_KB=64
653 CONFIG_RTE_DRIVER_MEMPOOL_RING=y
654 CONFIG_RTE_DRIVER_MEMPOOL_STACK=y
655
656 #
657 # Compile PMD for octeontx fpa mempool device
658 #
659 CONFIG_RTE_LIBRTE_OCTEONTX_MEMPOOL=y
660
661 #
662 # Compile librte_mbuf
663 #
664 CONFIG_RTE_LIBRTE_MBUF=y
665 CONFIG_RTE_LIBRTE_MBUF_DEBUG=n
666 CONFIG_RTE_MBUF_DEFAULT_MEMPOOL_OPS="ring_mp_mc"
667 CONFIG_RTE_MBUF_REFCNT_ATOMIC=y
668 CONFIG_RTE_PKTMBUF_HEADROOM=128
669
670 #
671 # Compile librte_timer
672 #
673 CONFIG_RTE_LIBRTE_TIMER=y
674 CONFIG_RTE_LIBRTE_TIMER_DEBUG=n
675
676 #
677 # Compile librte_cfgfile
678 #
679 CONFIG_RTE_LIBRTE_CFGFILE=y
680
681 #
682 # Compile librte_cmdline
683 #
684 CONFIG_RTE_LIBRTE_CMDLINE=y
685 CONFIG_RTE_LIBRTE_CMDLINE_DEBUG=n
686
687 #
688 # Compile librte_hash
689 #
690 CONFIG_RTE_LIBRTE_HASH=y
691 CONFIG_RTE_LIBRTE_HASH_DEBUG=n
692
693 #
694 # Compile librte_efd
695 #
696 CONFIG_RTE_LIBRTE_EFD=y
697
698 #
699 # Compile librte_member
700 #
701 CONFIG_RTE_LIBRTE_MEMBER=y
702
703 #
704 # Compile librte_jobstats
705 #
706 CONFIG_RTE_LIBRTE_JOBSTATS=y
707
708 #
709 # Compile the device metrics library
710 #
711 CONFIG_RTE_LIBRTE_METRICS=y
712
713 #
714 # Compile the bitrate statistics library
715 #
716 CONFIG_RTE_LIBRTE_BITRATE=y
717
718 #
719 # Compile the latency statistics library
720 #
721 CONFIG_RTE_LIBRTE_LATENCY_STATS=y
722
723 #
724 # Compile librte_lpm
725 #
726 CONFIG_RTE_LIBRTE_LPM=y
727 CONFIG_RTE_LIBRTE_LPM_DEBUG=n
728
729 #
730 # Compile librte_acl
731 #
732 CONFIG_RTE_LIBRTE_ACL=y
733 CONFIG_RTE_LIBRTE_ACL_DEBUG=n
734
735 #
736 # Compile librte_power
737 #
738 CONFIG_RTE_LIBRTE_POWER=n
739 CONFIG_RTE_LIBRTE_POWER_DEBUG=n
740 CONFIG_RTE_MAX_LCORE_FREQS=64
741
742 #
743 # Compile librte_net
744 #
745 CONFIG_RTE_LIBRTE_NET=y
746
747 #
748 # Compile librte_ip_frag
749 #
750 CONFIG_RTE_LIBRTE_IP_FRAG=y
751 CONFIG_RTE_LIBRTE_IP_FRAG_DEBUG=n
752 CONFIG_RTE_LIBRTE_IP_FRAG_MAX_FRAG=4
753 CONFIG_RTE_LIBRTE_IP_FRAG_TBL_STAT=n
754
755 #
756 # Compile GRO library
757 #
758 CONFIG_RTE_LIBRTE_GRO=y
759
760 #
761 # Compile GSO library
762 #
763 CONFIG_RTE_LIBRTE_GSO=y
764
765 #
766 # Compile librte_meter
767 #
768 CONFIG_RTE_LIBRTE_METER=y
769
770 #
771 # Compile librte_classify
772 #
773 CONFIG_RTE_LIBRTE_FLOW_CLASSIFY=y
774
775 #
776 # Compile librte_sched
777 #
778 CONFIG_RTE_LIBRTE_SCHED=y
779 CONFIG_RTE_SCHED_DEBUG=n
780 CONFIG_RTE_SCHED_RED=n
781 CONFIG_RTE_SCHED_COLLECT_STATS=n
782 CONFIG_RTE_SCHED_SUBPORT_TC_OV=n
783 CONFIG_RTE_SCHED_PORT_N_GRINDERS=8
784 CONFIG_RTE_SCHED_VECTOR=n
785
786 #
787 # Compile the distributor library
788 #
789 CONFIG_RTE_LIBRTE_DISTRIBUTOR=y
790
791 #
792 # Compile the reorder library
793 #
794 CONFIG_RTE_LIBRTE_REORDER=y
795
796 #
797 # Compile librte_port
798 #
799 CONFIG_RTE_LIBRTE_PORT=y
800 CONFIG_RTE_PORT_STATS_COLLECT=n
801 CONFIG_RTE_PORT_PCAP=n
802
803 #
804 # Compile librte_table
805 #
806 CONFIG_RTE_LIBRTE_TABLE=y
807 CONFIG_RTE_TABLE_STATS_COLLECT=n
808
809 #
810 # Compile librte_pipeline
811 #
812 CONFIG_RTE_LIBRTE_PIPELINE=y
813 CONFIG_RTE_PIPELINE_STATS_COLLECT=n
814
815 #
816 # Compile librte_kni
817 #
818 CONFIG_RTE_LIBRTE_KNI=n
819 CONFIG_RTE_LIBRTE_PMD_KNI=n
820 CONFIG_RTE_KNI_KMOD=n
821 CONFIG_RTE_KNI_KMOD_ETHTOOL=n
822 CONFIG_RTE_KNI_PREEMPT_DEFAULT=y
823
824 #
825 # Compile the pdump library
826 #
827 CONFIG_RTE_LIBRTE_PDUMP=y
828
829 #
830 # Compile vhost user library
831 #
832 CONFIG_RTE_LIBRTE_VHOST=n
833 CONFIG_RTE_LIBRTE_VHOST_NUMA=n
834 CONFIG_RTE_LIBRTE_VHOST_DEBUG=n
835
836 #
837 # Compile vhost PMD
838 # To compile, CONFIG_RTE_LIBRTE_VHOST should be enabled.
839 #
840 CONFIG_RTE_LIBRTE_PMD_VHOST=n
841
842 #
843 # Compile IFC driver
844 # To compile, CONFIG_RTE_LIBRTE_VHOST and CONFIG_RTE_EAL_VFIO
845 # should be enabled.
846 #
847 CONFIG_RTE_LIBRTE_IFC_PMD=n
848
849 #
850 # Compile librte_bpf
851 #
852 CONFIG_RTE_LIBRTE_BPF=y
853 # allow load BPF from ELF files (requires libelf)
854 CONFIG_RTE_LIBRTE_BPF_ELF=n
855
856 #
857 # Compile the test application
858 #
859 CONFIG_RTE_APP_TEST=y
860 CONFIG_RTE_APP_TEST_RESOURCE_TAR=n
861
862 #
863 # Compile the procinfo application
864 #
865 CONFIG_RTE_PROC_INFO=n
866
867 #
868 # Compile the PMD test application
869 #
870 CONFIG_RTE_TEST_PMD=y
871 CONFIG_RTE_TEST_PMD_RECORD_CORE_CYCLES=n
872 CONFIG_RTE_TEST_PMD_RECORD_BURST_STATS=n
873
874 #
875 # Compile the bbdev test application
876 #
877 CONFIG_RTE_TEST_BBDEV=y
878
879 #
880 # Compile the crypto performance application
881 #
882 CONFIG_RTE_APP_CRYPTO_PERF=y
883
884 #
885 # Compile the eventdev application
886 #
887 CONFIG_RTE_APP_EVENTDEV=y