> -----Original Message-----
> From: Amit Prakash Shukla <amitpraka...@marvell.com>
> Sent: Thursday, March 7, 2024 12:36 AM
> To: Jerin Jacob <jer...@marvell.com>
> Cc: dev@dpdk.org; Pavan Nikhilesh Bhagavatula
> <pbhagavat...@marvell.com>; Vamsi Krishna Attunuru
> <vattun...@marvell.com>; Nithin Kumar Dabilpuram
> <ndabilpu...@marvell.com>; Anoob Joseph <ano...@marvell.com>; Aakash
> Sasidharan <asasidha...@marvell.com>; Amit Prakash Shukla
> <amitpraka...@marvell.com>
> Subject: [PATCH v3] app/eventdev: support DMA adapter test
> 
> Added performance test support for DMA adapter.
> 
> Signed-off-by: Amit Prakash Shukla <amitpraka...@marvell.com>

With below changes
Acked-by: Pavan Nikhilesh <pbhagavat...@marvell.com>

> ---
> v3:
> - Resolved review comments.
> 
> v2:
> - Fixed intel compilation error.
> 
>  app/test-eventdev/evt_common.h       |   3 +
>  app/test-eventdev/evt_main.c         |  15 ++
>  app/test-eventdev/evt_options.c      |  36 ++++
>  app/test-eventdev/evt_options.h      |  12 ++
>  app/test-eventdev/evt_test.h         |   6 +
>  app/test-eventdev/test_perf_atq.c    |  34 +++-
>  app/test-eventdev/test_perf_common.c | 256
> ++++++++++++++++++++++++++-
>  app/test-eventdev/test_perf_common.h |  35 ++--
>  app/test-eventdev/test_perf_queue.c  |  32 +++-
>  doc/guides/tools/testeventdev.rst    |  27 +++
>  10 files changed, 427 insertions(+), 29 deletions(-)
> 
> diff --git a/app/test-eventdev/evt_common.h b/app/test-
> eventdev/evt_common.h
> index fcb3571438..dbe1e5c0c4 100644
> --- a/app/test-eventdev/evt_common.h
> +++ b/app/test-eventdev/evt_common.h
> @@ -9,6 +9,7 @@
>  #include <rte_crypto.h>
>  #include <rte_debug.h>
>  #include <rte_event_crypto_adapter.h>
> +#include <rte_event_dma_adapter.h>
>  #include <rte_eventdev.h>
>  #include <rte_service.h>
> 
> @@ -42,6 +43,7 @@ enum evt_prod_type {
>       EVT_PROD_TYPE_ETH_RX_ADPTR,  /* Producer type Eth Rx Adapter.
> */
>       EVT_PROD_TYPE_EVENT_TIMER_ADPTR,  /* Producer type Timer
> Adapter. */
>       EVT_PROD_TYPE_EVENT_CRYPTO_ADPTR,  /* Producer type Crypto
> Adapter. */
> +     EVT_PROD_TYPE_EVENT_DMA_ADPTR,  /* Producer type DMA
> Adapter. */
>       EVT_PROD_TYPE_MAX,
>  };
> 
> @@ -86,6 +88,7 @@ struct evt_options {
>       uint64_t timer_tick_nsec;
>       uint64_t optm_timer_tick_nsec;
>       enum evt_prod_type prod_type;
> +     enum rte_event_dma_adapter_mode dma_adptr_mode;
>       enum rte_event_crypto_adapter_mode crypto_adptr_mode;
>       enum rte_crypto_op_type crypto_op_type;
>       enum rte_crypto_cipher_algorithm crypto_cipher_alg;
> diff --git a/app/test-eventdev/evt_main.c b/app/test-eventdev/evt_main.c
> index 13a8500ef7..03114020f1 100644
> --- a/app/test-eventdev/evt_main.c
> +++ b/app/test-eventdev/evt_main.c
> @@ -138,6 +138,14 @@ main(int argc, char **argv)
>               }
>       }
> 
> +     /* Test specific dmadev setup */
> +     if (test->ops.dmadev_setup) {
> +             if (test->ops.dmadev_setup(test, &opt)) {
> +                     evt_err("%s: dmadev setup failed", opt.test_name);
> +                     goto dmadev_destroy;
> +             }
> +     }
> +
>       /* Test specific eventdev setup */
>       if (test->ops.eventdev_setup) {
>               if (test->ops.eventdev_setup(test, &opt)) {
> @@ -171,6 +179,9 @@ main(int argc, char **argv)
>       if (test->ops.cryptodev_destroy)
>               test->ops.cryptodev_destroy(test, &opt);
> 
> +     if (test->ops.dmadev_destroy)
> +             test->ops.dmadev_destroy(test, &opt);
> +
>       if (test->ops.mempool_destroy)
>               test->ops.mempool_destroy(test, &opt);
> 
> @@ -196,6 +207,10 @@ main(int argc, char **argv)
>       if (test->ops.cryptodev_destroy)
>               test->ops.cryptodev_destroy(test, &opt);
> 
> +dmadev_destroy:
> +     if (test->ops.dmadev_destroy)
> +             test->ops.dmadev_destroy(test, &opt);
> +
>  ethdev_destroy:
>       if (test->ops.ethdev_destroy)
>               test->ops.ethdev_destroy(test, &opt);
> diff --git a/app/test-eventdev/evt_options.c b/app/test-
> eventdev/evt_options.c
> index 03fb3bfce0..fb5a0a255f 100644
> --- a/app/test-eventdev/evt_options.c
> +++ b/app/test-eventdev/evt_options.c
> @@ -146,6 +146,36 @@ evt_parse_timer_prod_type_burst(struct
> evt_options *opt,
>       return 0;
>  }
> 
> +static int
> +evt_parse_dma_prod_type(struct evt_options *opt,
> +                        const char *arg __rte_unused)
> +{
> +     opt->prod_type = EVT_PROD_TYPE_EVENT_DMA_ADPTR;
> +
> +     /* Only Forward mode is supported for DMA adapter. */
> +     opt->dma_adptr_mode =
> RTE_EVENT_DMA_ADAPTER_OP_FORWARD;
> +
> +     return 0;
> +}
> +
> +static int
> +evt_parse_dma_adptr_mode(struct evt_options *opt, const char *arg)
> +{
> +     uint8_t mode;
> +     int ret;
> +
> +     ret = parser_read_uint8(&mode, arg);
> +     if (mode != RTE_EVENT_DMA_ADAPTER_OP_FORWARD) {
> +             RTE_LOG(ERR, USER1, "DMA adapter is supported in forward
> mode only\n");
> +             return -EINVAL;
> +     }
> +
> +     opt->dma_adptr_mode =
> RTE_EVENT_DMA_ADAPTER_OP_FORWARD;
> +
> +     return ret;
> +}
> +
> +
>  static int
>  evt_parse_crypto_prod_type(struct evt_options *opt,
>                          const char *arg __rte_unused)
> @@ -446,6 +476,7 @@ usage(char *program)
>               "\t--queue_priority   : enable queue priority\n"
>               "\t--deq_tmo_nsec     : global dequeue timeout\n"
>               "\t--prod_type_ethdev : use ethernet device as producer.\n"
> +             "\t--prod_type_dmadev : use dma device as producer.\n"
>               "\t--prod_type_cryptodev : use crypto device as producer.\n"
>               "\t--prod_type_timerdev : use event timer device as
> producer.\n"
>               "\t                     expiry_nsec would be the timeout\n"
> @@ -457,6 +488,7 @@ usage(char *program)
>               "\t--timer_tick_nsec  : timer tick interval in ns.\n"
>               "\t--max_tmo_nsec     : max timeout interval in ns.\n"
>               "\t--expiry_nsec      : event timer expiry ns.\n"
> +             "\t--dma_adptr_mode   : 1 for OP_FORWARD mode
> (default).\n"
>               "\t--crypto_adptr_mode : 0 for OP_NEW mode (default)
> and\n"

Please fixup the text.

>               "\t                      1 for OP_FORWARD mode.\n"
>               "\t--crypto_op_type   : 0 for SYM ops (default) and\n"
> @@ -540,9 +572,11 @@ static struct option lgopts[] = {
>       { EVT_QUEUE_PRIORITY,      0, 0, 0 },
>       { EVT_DEQ_TMO_NSEC,        1, 0, 0 },
>       { EVT_PROD_ETHDEV,         0, 0, 0 },
> +     { EVT_PROD_DMADEV,         0, 0, 0 },
>       { EVT_PROD_CRYPTODEV,      0, 0, 0 },
>       { EVT_PROD_TIMERDEV,       0, 0, 0 },
>       { EVT_PROD_TIMERDEV_BURST, 0, 0, 0 },
> +     { EVT_DMA_ADPTR_MODE,      1, 0, 0 },
>       { EVT_CRYPTO_ADPTR_MODE,   1, 0, 0 },
>       { EVT_CRYPTO_OP_TYPE,      1, 0, 0 },
>       { EVT_CRYPTO_CIPHER_ALG,   1, 0, 0 },

<snip>

Reply via email to