1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2018 Intel Corporation
5 #ifndef _CPERF_OPTIONS_
6 #define _CPERF_OPTIONS_
8 #include <rte_crypto.h>
9 #include <rte_cryptodev.h>
11 #define CPERF_PTEST_TYPE ("ptest")
12 #define CPERF_SILENT ("silent")
14 #define CPERF_POOL_SIZE ("pool-sz")
15 #define CPERF_TOTAL_OPS ("total-ops")
16 #define CPERF_BURST_SIZE ("burst-sz")
17 #define CPERF_BUFFER_SIZE ("buffer-sz")
18 #define CPERF_SEGMENT_SIZE ("segment-sz")
19 #define CPERF_DESC_NB ("desc-nb")
20 #define CPERF_IMIX ("imix")
22 #define CPERF_DEVTYPE ("devtype")
23 #define CPERF_OPTYPE ("optype")
24 #define CPERF_SESSIONLESS ("sessionless")
25 #define CPERF_OUT_OF_PLACE ("out-of-place")
26 #define CPERF_TEST_FILE ("test-file")
27 #define CPERF_TEST_NAME ("test-name")
29 #define CPERF_CIPHER_ALGO ("cipher-algo")
30 #define CPERF_CIPHER_OP ("cipher-op")
31 #define CPERF_CIPHER_KEY_SZ ("cipher-key-sz")
32 #define CPERF_CIPHER_IV_SZ ("cipher-iv-sz")
34 #define CPERF_AUTH_ALGO ("auth-algo")
35 #define CPERF_AUTH_OP ("auth-op")
36 #define CPERF_AUTH_KEY_SZ ("auth-key-sz")
37 #define CPERF_AUTH_IV_SZ ("auth-iv-sz")
39 #define CPERF_AEAD_ALGO ("aead-algo")
40 #define CPERF_AEAD_OP ("aead-op")
41 #define CPERF_AEAD_KEY_SZ ("aead-key-sz")
42 #define CPERF_AEAD_IV_SZ ("aead-iv-sz")
43 #define CPERF_AEAD_AAD_SZ ("aead-aad-sz")
45 #define CPERF_DIGEST_SZ ("digest-sz")
47 #define CPERF_CSV ("csv-friendly")
49 /* benchmark-specific options */
50 #define CPERF_PMDCC_DELAY_MS ("pmd-cyclecount-delay-ms")
54 enum cperf_perf_test_type {
55 CPERF_TEST_TYPE_THROUGHPUT,
56 CPERF_TEST_TYPE_LATENCY,
57 CPERF_TEST_TYPE_VERIFY,
62 extern const char *cperf_test_type_strs[];
65 CPERF_CIPHER_ONLY = 1,
67 CPERF_CIPHER_THEN_AUTH,
68 CPERF_AUTH_THEN_CIPHER,
72 extern const char *cperf_op_type_strs[];
74 struct cperf_options {
75 enum cperf_perf_test_type test;
82 uint32_t test_buffer_size;
83 uint32_t *imix_buffer_sizes;
84 uint32_t nb_descriptors;
87 uint32_t sessionless:1;
88 uint32_t out_of_place:1;
92 enum rte_crypto_cipher_algorithm cipher_algo;
93 enum rte_crypto_cipher_operation cipher_op;
95 uint16_t cipher_key_sz;
96 uint16_t cipher_iv_sz;
98 enum rte_crypto_auth_algorithm auth_algo;
99 enum rte_crypto_auth_operation auth_op;
101 uint16_t auth_key_sz;
104 enum rte_crypto_aead_algorithm aead_algo;
105 enum rte_crypto_aead_operation aead_op;
107 uint16_t aead_key_sz;
109 uint16_t aead_aad_sz;
113 char device_type[RTE_CRYPTODEV_NAME_MAX_LEN];
114 enum cperf_op_type op_type;
119 uint32_t buffer_size_list[MAX_LIST];
120 uint8_t buffer_size_count;
121 uint32_t max_buffer_size;
122 uint32_t min_buffer_size;
123 uint32_t inc_buffer_size;
125 uint32_t burst_size_list[MAX_LIST];
126 uint8_t burst_size_count;
127 uint32_t max_burst_size;
128 uint32_t min_burst_size;
129 uint32_t inc_burst_size;
131 /* pmd-cyclecount specific options */
132 uint32_t pmdcc_delay;
133 uint32_t imix_distribution_list[MAX_LIST];
134 uint8_t imix_distribution_count;
138 cperf_options_default(struct cperf_options *options);
141 cperf_options_parse(struct cperf_options *options,
142 int argc, char **argv);
145 cperf_options_check(struct cperf_options *options);
148 cperf_options_dump(struct cperf_options *options);