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