1 .. SPDX-License-Identifier: BSD-3-Clause
2 Copyright(c) 2017 Cavium, Inc
4 dpdk-test-eventdev Application
5 ==============================
7 The ``dpdk-test-eventdev`` tool is a Data Plane Development Kit (DPDK)
8 application that allows exercising various eventdev use cases.
9 This application has a generic framework to add new eventdev based test cases to
10 verify functionality and measure the performance parameters of DPDK eventdev
14 Running the Application
15 -----------------------
17 The application has a number of command line options:
19 .. code-block:: console
21 dpdk-test-eventdev [EAL Options] -- [application options]
26 The following are the EAL command-line options that can be used in conjunction
27 with the ``dpdk-test-eventdev`` application.
28 See the DPDK Getting Started Guides for more information on these options.
30 * ``-c <COREMASK>`` or ``-l <CORELIST>``
32 Set the hexadecimal bitmask of the cores to run on. The corelist is a
35 * ``--vdev <driver><id>``
37 Add a virtual eventdev device.
42 The following are the application command-line options:
46 Set verbose level. Default is 1. Value > 1 displays more details.
50 Set the device id of the event device.
54 Set test name, where ``name`` is one of the following::
65 Set the socket id of the application resources.
69 Set the number of mbufs to be allocated from the mempool.
71 * ``--plcores <CORELIST>``
73 Set the list of cores to be used as producers.
75 * ``--wlcores <CORELIST>``
77 Set the list of cores to be used as workers.
79 * ``--stlist <type_list>``
81 Set the scheduled type of each stage where ``type_list`` size
82 determines the number of stages used in the test application.
83 Each type_list member can be one of the following::
85 P or p : Parallel schedule type
86 O or o : Ordered schedule type
87 A or a : Atomic schedule type
89 Application expects the ``type_list`` in comma separated form (i.e. ``--stlist o,a,a,a``)
93 Set the number of flows to produce.
97 Set the number of packets to produce. 0 implies no limit.
99 * ``--worker_deq_depth <n>``
101 Set the dequeue depth of the worker.
105 Perform forward latency measurement.
107 * ``--queue_priority``
109 Enable queue priority.
111 * ``--prod_type_ethdev``
113 Use ethernet device as producer.
115 * ``--prod_type_timerdev``
117 Use event timer adapter as producer.
119 * ``--prod_type_timerdev_burst``
121 Use burst mode event timer adapter as producer.
123 * ``--prod_type_cryptodev``
125 Use crypto device as producer.
127 * ``--timer_tick_nsec``
129 Used to dictate number of nano seconds between bucket traversal of the
130 event timer adapter. Refer `rte_event_timer_adapter_conf`.
134 Used to configure event timer adapter max arm timeout in nano seconds.
138 Dictate the number of nano seconds after which the event timer expires.
142 Number of event timers each producer core will generate.
144 * ``--nb_timer_adptrs``
146 Number of event timer adapters to be used. Each adapter is used in
147 round robin manner by the producer cores.
151 Global dequeue timeout for all the event ports if the provided dequeue
152 timeout is out of the supported range of event device it will be
153 adjusted to the highest/lowest supported dequeue timeout supported.
155 * ``--crypto_adptr_mode``
157 Set crypto adapter mode. Use 0 for OP_NEW (default) and 1 for
162 Set packet mbuf size. Can be used to configure Jumbo Frames. Only
163 applicable for `pipeline_atq` and `pipeline_queue` tests.
167 Set max packet mbuf size. Can be used to configure Rx/Tx scatter gather.
168 Only applicable for `pipeline_atq` and `pipeline_queue` tests.
170 * ``--prod_enq_burst_sz``
172 Set producer enqueue burst size. Can be used to configure the number of
173 events the producer(s) will enqueue as a burst to the event device.
174 Only applicable for `perf_queue` test.
176 * ``--nb_eth_queues``
178 Configure multiple Rx queues per each ethernet port.
179 Only applicable for `pipeline_atq` and `pipeline_queue` tests.
181 * ``--enable_vector``
183 Enable event vector for Rx/Tx adapters.
184 Only applicable for `pipeline_atq` and `pipeline_queue` tests.
188 Vector size to configure for the Rx adapter.
189 Only applicable for `pipeline_atq` and `pipeline_queue` tests.
191 * ``--vector_tmo_ns``
193 Vector timeout nanoseconds to be configured for the Rx adapter.
194 Only applicable for `pipeline_atq` and `pipeline_queue` tests.
196 * ``--per_port_pool``
198 Configure unique mempool per ethernet device, the size of each pool
199 is equal to `pool_sz`.
200 Only applicable for pipeline_atq` and `pipeline_queue` tests.
209 This is a functional test case that aims at testing the following:
211 #. Verify the ingress order maintenance.
212 #. Verify the exclusive(atomic) access to given atomic flow per eventdev port.
214 .. _table_eventdev_order_queue_test:
216 .. table:: Order queue test eventdev configuration.
218 +---+--------------+----------------+------------------------+
219 | # | Items | Value | Comments |
221 +===+==============+================+========================+
222 | 1 | nb_queues | 2 | q0(ordered), q1(atomic)|
224 +---+--------------+----------------+------------------------+
225 | 2 | nb_producers | 1 | |
227 +---+--------------+----------------+------------------------+
228 | 3 | nb_workers | >= 1 | |
230 +---+--------------+----------------+------------------------+
231 | 4 | nb_ports | nb_workers + | Workers use port 0 to |
232 | | | 1 | port n-1. Producer uses|
234 +---+--------------+----------------+------------------------+
236 .. _figure_eventdev_order_queue_test:
238 .. figure:: img/eventdev_order_queue_test.*
240 order queue test operation.
242 The order queue test configures the eventdev with two queues and an event
243 producer to inject the events to q0(ordered) queue. Both q0(ordered) and
244 q1(atomic) are linked to all the workers.
246 The event producer maintains a sequence number per flow and injects the events
247 to the ordered queue. The worker receives the events from ordered queue and
248 forwards to atomic queue. Since the events from an ordered queue can be
249 processed in parallel on the different workers, the ingress order of events
250 might have changed on the downstream atomic queue enqueue. On enqueue to the
251 atomic queue, the eventdev PMD reorders the event to the original
252 ingress order(i.e producer ingress order).
254 When the event is dequeued from the atomic queue by the worker, this test
255 verifies the expected sequence number of associated event per flow by comparing
256 the free running expected sequence number per flow.
261 Supported application command line options are following::
278 Example command to run order queue test:
280 .. code-block:: console
282 sudo <build_dir>/app/dpdk-test-eventdev --vdev=event_sw0 -- \
283 --test=order_queue --plcores 1 --wlcores 2,3
289 This test verifies the same aspects of ``order_queue`` test, the difference is
290 the number of queues used, this test operates on a single ``all types queue(atq)``
291 instead of two different queues for ordered and atomic.
293 .. _table_eventdev_order_atq_test:
295 .. table:: Order all types queue test eventdev configuration.
297 +---+--------------+----------------+------------------------+
298 | # | Items | Value | Comments |
300 +===+==============+================+========================+
301 | 1 | nb_queues | 1 | q0(all types queue) |
303 +---+--------------+----------------+------------------------+
304 | 2 | nb_producers | 1 | |
306 +---+--------------+----------------+------------------------+
307 | 3 | nb_workers | >= 1 | |
309 +---+--------------+----------------+------------------------+
310 | 4 | nb_ports | nb_workers + | Workers use port 0 to |
311 | | | 1 | port n-1.Producer uses |
313 +---+--------------+----------------+------------------------+
315 .. _figure_eventdev_order_atq_test:
317 .. figure:: img/eventdev_order_atq_test.*
319 order all types queue test operation.
324 Supported application command line options are following::
341 Example command to run order ``all types queue`` test:
343 .. code-block:: console
345 sudo <build_dir>/app/dpdk-test-eventdev --vdev=event_octeontx -- \
346 --test=order_atq --plcores 1 --wlcores 2,3
352 This is a performance test case that aims at testing the following:
354 #. Measure the number of events can be processed in a second.
355 #. Measure the latency to forward an event.
357 .. _table_eventdev_perf_queue_test:
359 .. table:: Perf queue test eventdev configuration.
361 +---+--------------+----------------+-----------------------------------------+
362 | # | Items | Value | Comments |
364 +===+==============+================+=========================================+
365 | 1 | nb_queues | nb_producers * | Queues will be configured based on the |
366 | | | nb_stages | user requested sched type list(--stlist)|
367 +---+--------------+----------------+-----------------------------------------+
368 | 2 | nb_producers | >= 1 | Selected through --plcores command line |
370 +---+--------------+----------------+-----------------------------------------+
371 | 3 | nb_workers | >= 1 | Selected through --wlcores command line |
373 +---+--------------+----------------+-----------------------------------------+
374 | 4 | nb_ports | nb_workers + | Workers use port 0 to port n-1. |
375 | | | nb_producers | Producers use port n to port p |
376 +---+--------------+----------------+-----------------------------------------+
378 .. _figure_eventdev_perf_queue_test:
380 .. figure:: img/eventdev_perf_queue_test.*
382 perf queue test operation.
384 The perf queue test configures the eventdev with Q queues and P ports, where
385 Q and P is a function of the number of workers, the number of producers and
386 number of stages as mentioned in :numref:`table_eventdev_perf_queue_test`.
388 The user can choose the number of workers, the number of producers and number of
389 stages through the ``--wlcores``, ``--plcores`` and the ``--stlist`` application
390 command line arguments respectively.
392 The producer(s) injects the events to eventdev based on the first stage sched type
393 list requested by the user through ``--stlist`` command line argument. It can
394 inject a burst of events using ``--prod_enq_burst_sz`` command line argument.
396 Based on the number of stages to process(selected through ``--stlist``),
397 The application forwards the event to next upstream queue and terminates when it
398 reaches the last stage in the pipeline. On event termination, application
399 increments the number events processed and print periodically in one second
400 to get the number of events processed in one second.
402 When ``--fwd_latency`` command line option selected, the application inserts
403 the timestamp in the event on the first stage and then on termination, it
404 updates the number of cycles to forward a packet. The application uses this
405 value to compute the average latency to a forward packet.
407 When ``--prod_type_ethdev`` command line option is selected, the application
408 uses the probed ethernet devices as producers by configuring them as Rx
409 adapters instead of using synthetic producers.
414 Supported application command line options are following::
430 --prod_type_timerdev_burst
432 --prod_type_cryptodev
445 Example command to run perf queue test:
447 .. code-block:: console
449 sudo <build_dir>/app/dpdk-test-eventdev -c 0xf -s 0x1 --vdev=event_sw0 -- \
450 --test=perf_queue --plcores=2 --wlcore=3 --stlist=p --nb_pkts=0
452 Example command to run perf queue test with producer enqueuing a burst of events:
454 .. code-block:: console
456 sudo <build_dir>/app/dpdk-test-eventdev -c 0xf -s 0x1 --vdev=event_sw0 -- \
457 --test=perf_queue --plcores=2 --wlcore=3 --stlist=p --nb_pkts=0 \
458 --prod_enq_burst_sz=32
460 Example command to run perf queue test with ethernet ports:
462 .. code-block:: console
464 sudo build/app/dpdk-test-eventdev --vdev=event_sw0 -- \
465 --test=perf_queue --plcores=2 --wlcore=3 --stlist=p --prod_type_ethdev
467 Example command to run perf queue test with event timer adapter:
469 .. code-block:: console
471 sudo <build_dir>/app/dpdk-test-eventdev --vdev="event_octeontx" -- \
472 --wlcores 4 --plcores 12 --test perf_queue --stlist=a \
473 --prod_type_timerdev --fwd_latency
478 This is a performance test case that aims at testing the following with
479 ``all types queue`` eventdev scheme.
481 #. Measure the number of events can be processed in a second.
482 #. Measure the latency to forward an event.
484 .. _table_eventdev_perf_atq_test:
486 .. table:: Perf all types queue test eventdev configuration.
488 +---+--------------+----------------+-----------------------------------------+
489 | # | Items | Value | Comments |
491 +===+==============+================+=========================================+
492 | 1 | nb_queues | nb_producers | Queues will be configured based on the |
493 | | | | user requested sched type list(--stlist)|
494 +---+--------------+----------------+-----------------------------------------+
495 | 2 | nb_producers | >= 1 | Selected through --plcores command line |
497 +---+--------------+----------------+-----------------------------------------+
498 | 3 | nb_workers | >= 1 | Selected through --wlcores command line |
500 +---+--------------+----------------+-----------------------------------------+
501 | 4 | nb_ports | nb_workers + | Workers use port 0 to port n-1. |
502 | | | nb_producers | Producers use port n to port p |
503 +---+--------------+----------------+-----------------------------------------+
505 .. _figure_eventdev_perf_atq_test:
507 .. figure:: img/eventdev_perf_atq_test.*
509 perf all types queue test operation.
512 The ``all types queues(atq)`` perf test configures the eventdev with Q queues
513 and P ports, where Q and P is a function of the number of workers and number of
514 producers as mentioned in :numref:`table_eventdev_perf_atq_test`.
517 The atq queue test functions as same as ``perf_queue`` test. The difference
518 is, It uses, ``all type queue scheme`` instead of separate queues for each
519 stage and thus reduces the number of queues required to realize the use case
520 and enables flow pinning as the event does not move to the next queue.
526 Supported application command line options are following::
541 --prod_type_timerdev_burst
543 --prod_type_cryptodev
555 Example command to run perf ``all types queue`` test:
557 .. code-block:: console
559 sudo <build_dir>/app/dpdk-test-eventdev --vdev=event_octeontx -- \
560 --test=perf_atq --plcores=2 --wlcore=3 --stlist=p --nb_pkts=0
562 Example command to run perf ``all types queue`` test with event timer adapter:
564 .. code-block:: console
566 sudo <build_dir>/app/dpdk-test-eventdev --vdev="event_octeontx" -- \
567 --wlcores 4 --plcores 12 --test perf_atq --verbose 20 \
568 --stlist=a --prod_type_timerdev --fwd_latency
574 This is a pipeline test case that aims at testing the following:
576 #. Measure the end-to-end performance of an event dev with a ethernet dev.
577 #. Maintain packet ordering from Rx to Tx.
579 .. _table_eventdev_pipeline_queue_test:
581 .. table:: Pipeline queue test eventdev configuration.
583 +---+--------------+----------------+-----------------------------------------+
584 | # | Items | Value | Comments |
586 +===+==============+================+=========================================+
587 | 1 | nb_queues | (nb_producers | Queues will be configured based on the |
588 | | | * nb_stages) + | user requested sched type list(--stlist)|
589 | | | nb_producers | At the last stage of the schedule list |
590 | | | | the event is enqueued onto per port |
591 | | | | unique queue which is then Transmitted. |
592 +---+--------------+----------------+-----------------------------------------+
593 | 2 | nb_producers | >= 1 | Producers will be configured based on |
594 | | | | the number of detected ethernet devices.|
595 | | | | Each ethdev will be configured as an Rx |
597 +---+--------------+----------------+-----------------------------------------+
598 | 3 | nb_workers | >= 1 | Selected through --wlcores command line |
600 +---+--------------+----------------+-----------------------------------------+
601 | 4 | nb_ports | nb_workers + | Workers use port 0 to port n. |
602 | | | (nb_produces * | Producers use port n+1 to port n+m, |
603 | | | 2) | depending on the Rx adapter capability. |
604 | | | | Consumers use port n+m+1 to port n+o |
605 | | | | depending on the Tx adapter capability. |
606 +---+--------------+----------------+-----------------------------------------+
608 .. _figure_eventdev_pipeline_queue_test_generic:
610 .. figure:: img/eventdev_pipeline_queue_test_generic.*
612 .. _figure_eventdev_pipeline_queue_test_internal_port:
614 .. figure:: img/eventdev_pipeline_queue_test_internal_port.*
616 pipeline queue test operation.
618 The pipeline queue test configures the eventdev with Q queues and P ports,
619 where Q and P is a function of the number of workers, the number of producers
620 and number of stages as mentioned in :numref:`table_eventdev_pipeline_queue_test`.
622 The user can choose the number of workers and number of stages through the
623 ``--wlcores`` and the ``--stlist`` application command line arguments
626 The number of producers depends on the number of ethernet devices detected and
627 each ethernet device is configured as a event_eth_rx_adapter that acts as a
630 The producer(s) injects the events to eventdev based the first stage sched type
631 list requested by the user through ``--stlist`` the command line argument.
633 Based on the number of stages to process(selected through ``--stlist``),
634 The application forwards the event to next upstream queue and when it reaches
635 the last stage in the pipeline if the event type is ``atomic`` it is enqueued
636 onto ethdev Tx queue else to maintain ordering the event type is set to
637 ``atomic`` and enqueued onto the last stage queue.
639 If the ethdev and eventdev pair have ``RTE_EVENT_ETH_TX_ADAPTER_CAP_INTERNAL_PORT``
640 capability then the worker cores enqueue the packets to the eventdev directly
641 using ``rte_event_eth_tx_adapter_enqueue`` else the worker cores enqueue the
642 packet onto the ``SINGLE_LINK_QUEUE`` that is managed by the Tx adapter.
643 The Tx adapter dequeues the packet and transmits it.
645 On packet Tx, application increments the number events processed and print
646 periodically in one second to get the number of events processed in one
653 Supported application command line options are following::
674 * The ``--prod_type_ethdev`` is mandatory for running this test.
679 Example command to run pipeline queue test:
681 .. code-block:: console
683 sudo <build_dir>/app/dpdk-test-eventdev -c 0xf -s 0x8 --vdev=event_sw0 -- \
684 --test=pipeline_queue --wlcore=1 --prod_type_ethdev --stlist=a
686 Example command to run pipeline atq test with vector events:
688 .. code-block:: console
690 sudo <build_dir>/app/dpdk-test-eventdev -c 0xf -s 0x8 --vdev=event_sw0 -- \
691 --test=pipeline_queue --wlcore=1 --prod_type_ethdev --stlist=a \
692 --enable_vector --vector_size 512
697 This is a pipeline test case that aims at testing the following with
698 ``all types queue`` eventdev scheme.
700 #. Measure the end-to-end performance of an event dev with a ethernet dev.
701 #. Maintain packet ordering from Rx to Tx.
703 .. _table_eventdev_pipeline_atq_test:
705 .. table:: Pipeline atq test eventdev configuration.
707 +---+--------------+----------------+-----------------------------------------+
708 | # | Items | Value | Comments |
710 +===+==============+================+=========================================+
711 | 1 | nb_queues | nb_producers + | Queues will be configured based on the |
712 | | | x | user requested sched type list(--stlist)|
713 | | | | where x = nb_producers in generic |
714 | | | | pipeline and 0 if all the ethdev |
715 | | | | being used have Internal port capability|
716 +---+--------------+----------------+-----------------------------------------+
717 | 2 | nb_producers | >= 1 | Producers will be configured based on |
718 | | | | the number of detected ethernet devices.|
719 | | | | Each ethdev will be configured as an Rx |
721 +---+--------------+----------------+-----------------------------------------+
722 | 3 | nb_workers | >= 1 | Selected through --wlcores command line |
724 +---+--------------+----------------+-----------------------------------------+
725 | 4 | nb_ports | nb_workers + | Workers use port 0 to port n. |
726 | | | nb_producers + | Producers use port n+1 to port n+m, |
727 | | | x | depending on the Rx adapter capability. |
728 | | | | x = nb_producers in generic pipeline and|
729 | | | | 0 if all the ethdev being used have |
730 | | | | Internal port capability. |
731 | | | | Consumers may use port n+m+1 to port n+o|
732 | | | | depending on the Tx adapter capability. |
733 +---+--------------+----------------+-----------------------------------------+
735 .. _figure_eventdev_pipeline_atq_test_generic:
737 .. figure:: img/eventdev_pipeline_atq_test_generic.*
739 .. _figure_eventdev_pipeline_atq_test_internal_port:
741 .. figure:: img/eventdev_pipeline_atq_test_internal_port.*
743 pipeline atq test operation.
745 The pipeline atq test configures the eventdev with Q queues and P ports,
746 where Q and P is a function of the number of workers, the number of producers
747 and number of stages as mentioned in :numref:`table_eventdev_pipeline_atq_test`.
749 The atq queue test functions as same as ``pipeline_queue`` test. The difference
750 is, It uses, ``all type queue scheme`` instead of separate queues for each
751 stage and thus reduces the number of queues required to realize the use case.
757 Supported application command line options are following::
778 * The ``--prod_type_ethdev`` is mandatory for running this test.
783 Example command to run pipeline atq test:
785 .. code-block:: console
787 sudo <build_dir>/app/dpdk-test-eventdev -c 0xf -s 0x8 --vdev=event_sw0 -- \
788 --test=pipeline_atq --wlcore=1 --prod_type_ethdev --stlist=a
790 Example command to run pipeline atq test with vector events:
792 .. code-block:: console
794 sudo <build_dir>/app/dpdk-test-eventdev -c 0xf -s 0x8 --vdev=event_sw0 -- \
795 --test=pipeline_atq --wlcore=1 --prod_type_ethdev --stlist=a \
796 --enable_vector --vector_size 512