b0c9f446d749a0932d98937fa100f72fbbb58855
[dpdk.git] / app / test-crypto-perf / cperf_options.h
1
2 #ifndef _CPERF_OPTIONS_
3 #define _CPERF_OPTIONS_
4
5 #include <rte_crypto.h>
6
7 #define CPERF_PTEST_TYPE        ("ptest")
8 #define CPERF_SILENT            ("silent")
9
10 #define CPERF_POOL_SIZE         ("pool-sz")
11 #define CPERF_TOTAL_OPS         ("total-ops")
12 #define CPERF_BURST_SIZE        ("burst-sz")
13 #define CPERF_BUFFER_SIZE       ("buffer-sz")
14 #define CPERF_SEGMENT_SIZE      ("segment-sz")
15 #define CPERF_DESC_NB           ("desc-nb")
16 #define CPERF_IMIX              ("imix")
17
18 #define CPERF_DEVTYPE           ("devtype")
19 #define CPERF_OPTYPE            ("optype")
20 #define CPERF_SESSIONLESS       ("sessionless")
21 #define CPERF_OUT_OF_PLACE      ("out-of-place")
22 #define CPERF_TEST_FILE         ("test-file")
23 #define CPERF_TEST_NAME         ("test-name")
24
25 #define CPERF_CIPHER_ALGO       ("cipher-algo")
26 #define CPERF_CIPHER_OP         ("cipher-op")
27 #define CPERF_CIPHER_KEY_SZ     ("cipher-key-sz")
28 #define CPERF_CIPHER_IV_SZ      ("cipher-iv-sz")
29
30 #define CPERF_AUTH_ALGO         ("auth-algo")
31 #define CPERF_AUTH_OP           ("auth-op")
32 #define CPERF_AUTH_KEY_SZ       ("auth-key-sz")
33 #define CPERF_AUTH_IV_SZ        ("auth-iv-sz")
34
35 #define CPERF_AEAD_ALGO         ("aead-algo")
36 #define CPERF_AEAD_OP           ("aead-op")
37 #define CPERF_AEAD_KEY_SZ       ("aead-key-sz")
38 #define CPERF_AEAD_IV_SZ        ("aead-iv-sz")
39 #define CPERF_AEAD_AAD_SZ       ("aead-aad-sz")
40
41 #define CPERF_DIGEST_SZ         ("digest-sz")
42
43 #define CPERF_CSV               ("csv-friendly")
44
45 /* benchmark-specific options */
46 #define CPERF_PMDCC_DELAY_MS    ("pmd-cyclecount-delay-ms")
47
48 #define MAX_LIST 32
49
50 enum cperf_perf_test_type {
51         CPERF_TEST_TYPE_THROUGHPUT,
52         CPERF_TEST_TYPE_LATENCY,
53         CPERF_TEST_TYPE_VERIFY,
54         CPERF_TEST_TYPE_PMDCC
55 };
56
57
58 extern const char *cperf_test_type_strs[];
59
60 enum cperf_op_type {
61         CPERF_CIPHER_ONLY = 1,
62         CPERF_AUTH_ONLY,
63         CPERF_CIPHER_THEN_AUTH,
64         CPERF_AUTH_THEN_CIPHER,
65         CPERF_AEAD
66 };
67
68 extern const char *cperf_op_type_strs[];
69
70 struct cperf_options {
71         enum cperf_perf_test_type test;
72
73         uint32_t pool_sz;
74         uint32_t total_ops;
75         uint32_t segment_sz;
76         uint32_t test_buffer_size;
77         uint32_t *imix_buffer_sizes;
78         uint32_t nb_descriptors;
79         uint16_t nb_qps;
80
81         uint32_t sessionless:1;
82         uint32_t out_of_place:1;
83         uint32_t silent:1;
84         uint32_t csv:1;
85
86         enum rte_crypto_cipher_algorithm cipher_algo;
87         enum rte_crypto_cipher_operation cipher_op;
88
89         uint16_t cipher_key_sz;
90         uint16_t cipher_iv_sz;
91
92         enum rte_crypto_auth_algorithm auth_algo;
93         enum rte_crypto_auth_operation auth_op;
94
95         uint16_t auth_key_sz;
96         uint16_t auth_iv_sz;
97
98         enum rte_crypto_aead_algorithm aead_algo;
99         enum rte_crypto_aead_operation aead_op;
100
101         uint16_t aead_key_sz;
102         uint16_t aead_iv_sz;
103         uint16_t aead_aad_sz;
104
105         uint16_t digest_sz;
106
107         char device_type[RTE_CRYPTODEV_NAME_LEN];
108         enum cperf_op_type op_type;
109
110         char *test_file;
111         char *test_name;
112
113         uint32_t buffer_size_list[MAX_LIST];
114         uint8_t buffer_size_count;
115         uint32_t max_buffer_size;
116         uint32_t min_buffer_size;
117         uint32_t inc_buffer_size;
118
119         uint32_t burst_size_list[MAX_LIST];
120         uint8_t burst_size_count;
121         uint32_t max_burst_size;
122         uint32_t min_burst_size;
123         uint32_t inc_burst_size;
124
125         /* pmd-cyclecount specific options */
126         uint32_t pmdcc_delay;
127         uint32_t imix_distribution_list[MAX_LIST];
128         uint8_t imix_distribution_count;
129 };
130
131 void
132 cperf_options_default(struct cperf_options *options);
133
134 int
135 cperf_options_parse(struct cperf_options *options,
136                 int argc, char **argv);
137
138 int
139 cperf_options_check(struct cperf_options *options);
140
141 void
142 cperf_options_dump(struct cperf_options *options);
143
144 #endif