app/crypto-perf: add nb-desc parameter
[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_SEGMENTS_NB       ("segments-nb")
15 #define CPERF_DESC_NB           ("desc-nb")
16
17 #define CPERF_DEVTYPE           ("devtype")
18 #define CPERF_OPTYPE            ("optype")
19 #define CPERF_SESSIONLESS       ("sessionless")
20 #define CPERF_OUT_OF_PLACE      ("out-of-place")
21 #define CPERF_TEST_FILE         ("test-file")
22 #define CPERF_TEST_NAME         ("test-name")
23
24 #define CPERF_CIPHER_ALGO       ("cipher-algo")
25 #define CPERF_CIPHER_OP         ("cipher-op")
26 #define CPERF_CIPHER_KEY_SZ     ("cipher-key-sz")
27 #define CPERF_CIPHER_IV_SZ      ("cipher-iv-sz")
28
29 #define CPERF_AUTH_ALGO         ("auth-algo")
30 #define CPERF_AUTH_OP           ("auth-op")
31 #define CPERF_AUTH_KEY_SZ       ("auth-key-sz")
32 #define CPERF_AUTH_IV_SZ        ("auth-iv-sz")
33
34 #define CPERF_AEAD_ALGO         ("aead-algo")
35 #define CPERF_AEAD_OP           ("aead-op")
36 #define CPERF_AEAD_KEY_SZ       ("aead-key-sz")
37 #define CPERF_AEAD_IV_SZ        ("aead-iv-sz")
38 #define CPERF_AEAD_AAD_SZ       ("aead-aad-sz")
39
40 #define CPERF_DIGEST_SZ         ("digest-sz")
41
42 #define CPERF_CSV               ("csv-friendly")
43
44 #define MAX_LIST 32
45
46 enum cperf_perf_test_type {
47         CPERF_TEST_TYPE_THROUGHPUT,
48         CPERF_TEST_TYPE_LATENCY,
49         CPERF_TEST_TYPE_VERIFY
50 };
51
52
53 extern const char *cperf_test_type_strs[];
54
55 enum cperf_op_type {
56         CPERF_CIPHER_ONLY = 1,
57         CPERF_AUTH_ONLY,
58         CPERF_CIPHER_THEN_AUTH,
59         CPERF_AUTH_THEN_CIPHER,
60         CPERF_AEAD
61 };
62
63 extern const char *cperf_op_type_strs[];
64
65 struct cperf_options {
66         enum cperf_perf_test_type test;
67
68         uint32_t pool_sz;
69         uint32_t total_ops;
70         uint32_t segments_nb;
71         uint32_t test_buffer_size;
72         uint32_t nb_descriptors;
73
74         uint32_t sessionless:1;
75         uint32_t out_of_place:1;
76         uint32_t silent:1;
77         uint32_t csv:1;
78
79         enum rte_crypto_cipher_algorithm cipher_algo;
80         enum rte_crypto_cipher_operation cipher_op;
81
82         uint16_t cipher_key_sz;
83         uint16_t cipher_iv_sz;
84
85         enum rte_crypto_auth_algorithm auth_algo;
86         enum rte_crypto_auth_operation auth_op;
87
88         uint16_t auth_key_sz;
89         uint16_t auth_iv_sz;
90
91         enum rte_crypto_aead_algorithm aead_algo;
92         enum rte_crypto_aead_operation aead_op;
93
94         uint16_t aead_key_sz;
95         uint16_t aead_iv_sz;
96         uint16_t aead_aad_sz;
97
98         uint16_t digest_sz;
99
100         char device_type[RTE_CRYPTODEV_NAME_LEN];
101         enum cperf_op_type op_type;
102
103         char *test_file;
104         char *test_name;
105
106         uint32_t buffer_size_list[MAX_LIST];
107         uint8_t buffer_size_count;
108         uint32_t max_buffer_size;
109         uint32_t min_buffer_size;
110         uint32_t inc_buffer_size;
111
112         uint32_t burst_size_list[MAX_LIST];
113         uint8_t burst_size_count;
114         uint32_t max_burst_size;
115         uint32_t min_burst_size;
116         uint32_t inc_burst_size;
117
118 };
119
120 void
121 cperf_options_default(struct cperf_options *options);
122
123 int
124 cperf_options_parse(struct cperf_options *options,
125                 int argc, char **argv);
126
127 int
128 cperf_options_check(struct cperf_options *options);
129
130 void
131 cperf_options_dump(struct cperf_options *options);
132
133 #endif