cryptodev: use single mempool for asymmetric session
[dpdk.git] / lib / cryptodev / rte_cryptodev.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2015-2020 Intel Corporation.
3  */
4
5 #ifndef _RTE_CRYPTODEV_H_
6 #define _RTE_CRYPTODEV_H_
7
8 /**
9  * @file rte_cryptodev.h
10  *
11  * RTE Cryptographic Device APIs
12  *
13  * Defines RTE Crypto Device APIs for the provisioning of cipher and
14  * authentication operations.
15  */
16
17 #ifdef __cplusplus
18 extern "C" {
19 #endif
20
21 #include "rte_kvargs.h"
22 #include "rte_crypto.h"
23 #include "rte_dev.h"
24 #include <rte_common.h>
25 #include <rte_config.h>
26 #include <rte_rcu_qsbr.h>
27
28 #include "rte_cryptodev_trace_fp.h"
29
30 extern const char **rte_cyptodev_names;
31
32 /* Logging Macros */
33
34 #define CDEV_LOG_ERR(...) \
35         RTE_LOG(ERR, CRYPTODEV, \
36                 RTE_FMT("%s() line %u: " RTE_FMT_HEAD(__VA_ARGS__,) "\n", \
37                         __func__, __LINE__, RTE_FMT_TAIL(__VA_ARGS__,)))
38
39 #define CDEV_LOG_INFO(...) \
40         RTE_LOG(INFO, CRYPTODEV, \
41                 RTE_FMT(RTE_FMT_HEAD(__VA_ARGS__,) "\n", \
42                         RTE_FMT_TAIL(__VA_ARGS__,)))
43
44 #define CDEV_LOG_DEBUG(...) \
45         RTE_LOG(DEBUG, CRYPTODEV, \
46                 RTE_FMT("%s() line %u: " RTE_FMT_HEAD(__VA_ARGS__,) "\n", \
47                         __func__, __LINE__, RTE_FMT_TAIL(__VA_ARGS__,)))
48
49 #define CDEV_PMD_TRACE(...) \
50         RTE_LOG(DEBUG, CRYPTODEV, \
51                 RTE_FMT("[%s] %s: " RTE_FMT_HEAD(__VA_ARGS__,) "\n", \
52                         dev, __func__, RTE_FMT_TAIL(__VA_ARGS__,)))
53
54 /**
55  * A macro that points to an offset from the start
56  * of the crypto operation structure (rte_crypto_op)
57  *
58  * The returned pointer is cast to type t.
59  *
60  * @param c
61  *   The crypto operation.
62  * @param o
63  *   The offset from the start of the crypto operation.
64  * @param t
65  *   The type to cast the result into.
66  */
67 #define rte_crypto_op_ctod_offset(c, t, o)      \
68         ((t)((char *)(c) + (o)))
69
70 /**
71  * A macro that returns the physical address that points
72  * to an offset from the start of the crypto operation
73  * (rte_crypto_op)
74  *
75  * @param c
76  *   The crypto operation.
77  * @param o
78  *   The offset from the start of the crypto operation
79  *   to calculate address from.
80  */
81 #define rte_crypto_op_ctophys_offset(c, o)      \
82         (rte_iova_t)((c)->phys_addr + (o))
83
84 /**
85  * Crypto parameters range description
86  */
87 struct rte_crypto_param_range {
88         uint16_t min;   /**< minimum size */
89         uint16_t max;   /**< maximum size */
90         uint16_t increment;
91         /**< if a range of sizes are supported,
92          * this parameter is used to indicate
93          * increments in byte size that are supported
94          * between the minimum and maximum
95          */
96 };
97
98 /**
99  * Data-unit supported lengths of cipher algorithms.
100  * A bit can represent any set of data-unit sizes
101  * (single size, multiple size, range, etc).
102  */
103 #define RTE_CRYPTO_CIPHER_DATA_UNIT_LEN_512_BYTES             RTE_BIT32(0)
104 #define RTE_CRYPTO_CIPHER_DATA_UNIT_LEN_4096_BYTES            RTE_BIT32(1)
105 #define RTE_CRYPTO_CIPHER_DATA_UNIT_LEN_1_MEGABYTES           RTE_BIT32(2)
106
107 /**
108  * Symmetric Crypto Capability
109  */
110 struct rte_cryptodev_symmetric_capability {
111         enum rte_crypto_sym_xform_type xform_type;
112         /**< Transform type : Authentication / Cipher / AEAD */
113         RTE_STD_C11
114         union {
115                 struct {
116                         enum rte_crypto_auth_algorithm algo;
117                         /**< authentication algorithm */
118                         uint16_t block_size;
119                         /**< algorithm block size */
120                         struct rte_crypto_param_range key_size;
121                         /**< auth key size range */
122                         struct rte_crypto_param_range digest_size;
123                         /**< digest size range */
124                         struct rte_crypto_param_range aad_size;
125                         /**< Additional authentication data size range */
126                         struct rte_crypto_param_range iv_size;
127                         /**< Initialisation vector data size range */
128                 } auth;
129                 /**< Symmetric Authentication transform capabilities */
130                 struct {
131                         enum rte_crypto_cipher_algorithm algo;
132                         /**< cipher algorithm */
133                         uint16_t block_size;
134                         /**< algorithm block size */
135                         struct rte_crypto_param_range key_size;
136                         /**< cipher key size range */
137                         struct rte_crypto_param_range iv_size;
138                         /**< Initialisation vector data size range */
139                         uint32_t dataunit_set;
140                         /**<
141                          * Supported data-unit lengths:
142                          * RTE_CRYPTO_CIPHER_DATA_UNIT_LEN_* bits
143                          * or 0 for lengths defined in the algorithm standard.
144                          */
145                 } cipher;
146                 /**< Symmetric Cipher transform capabilities */
147                 struct {
148                         enum rte_crypto_aead_algorithm algo;
149                         /**< AEAD algorithm */
150                         uint16_t block_size;
151                         /**< algorithm block size */
152                         struct rte_crypto_param_range key_size;
153                         /**< AEAD key size range */
154                         struct rte_crypto_param_range digest_size;
155                         /**< digest size range */
156                         struct rte_crypto_param_range aad_size;
157                         /**< Additional authentication data size range */
158                         struct rte_crypto_param_range iv_size;
159                         /**< Initialisation vector data size range */
160                 } aead;
161         };
162 };
163
164 /**
165  * Asymmetric Xform Crypto Capability
166  *
167  */
168 struct rte_cryptodev_asymmetric_xform_capability {
169         enum rte_crypto_asym_xform_type xform_type;
170         /**< Transform type: RSA/MODEXP/DH/DSA/MODINV */
171
172         uint32_t op_types;
173         /**< bitmask for supported rte_crypto_asym_op_type */
174
175         __extension__
176         union {
177                 struct rte_crypto_param_range modlen;
178                 /**< Range of modulus length supported by modulus based xform.
179                  * Value 0 mean implementation default
180                  */
181         };
182 };
183
184 /**
185  * Asymmetric Crypto Capability
186  *
187  */
188 struct rte_cryptodev_asymmetric_capability {
189         struct rte_cryptodev_asymmetric_xform_capability xform_capa;
190 };
191
192
193 /** Structure used to capture a capability of a crypto device */
194 struct rte_cryptodev_capabilities {
195         enum rte_crypto_op_type op;
196         /**< Operation type */
197
198         RTE_STD_C11
199         union {
200                 struct rte_cryptodev_symmetric_capability sym;
201                 /**< Symmetric operation capability parameters */
202                 struct rte_cryptodev_asymmetric_capability asym;
203                 /**< Asymmetric operation capability parameters */
204         };
205 };
206
207 /** Structure used to describe crypto algorithms */
208 struct rte_cryptodev_sym_capability_idx {
209         enum rte_crypto_sym_xform_type type;
210         union {
211                 enum rte_crypto_cipher_algorithm cipher;
212                 enum rte_crypto_auth_algorithm auth;
213                 enum rte_crypto_aead_algorithm aead;
214         } algo;
215 };
216
217 /**
218  * Structure used to describe asymmetric crypto xforms
219  * Each xform maps to one asym algorithm.
220  *
221  */
222 struct rte_cryptodev_asym_capability_idx {
223         enum rte_crypto_asym_xform_type type;
224         /**< Asymmetric xform (algo) type */
225 };
226
227 /**
228  * Provide capabilities available for defined device and algorithm
229  *
230  * @param       dev_id          The identifier of the device.
231  * @param       idx             Description of crypto algorithms.
232  *
233  * @return
234  *   - Return description of the symmetric crypto capability if exist.
235  *   - Return NULL if the capability not exist.
236  */
237 const struct rte_cryptodev_symmetric_capability *
238 rte_cryptodev_sym_capability_get(uint8_t dev_id,
239                 const struct rte_cryptodev_sym_capability_idx *idx);
240
241 /**
242  *  Provide capabilities available for defined device and xform
243  *
244  * @param       dev_id          The identifier of the device.
245  * @param       idx             Description of asym crypto xform.
246  *
247  * @return
248  *   - Return description of the asymmetric crypto capability if exist.
249  *   - Return NULL if the capability not exist.
250  */
251 __rte_experimental
252 const struct rte_cryptodev_asymmetric_xform_capability *
253 rte_cryptodev_asym_capability_get(uint8_t dev_id,
254                 const struct rte_cryptodev_asym_capability_idx *idx);
255
256 /**
257  * Check if key size and initial vector are supported
258  * in crypto cipher capability
259  *
260  * @param       capability      Description of the symmetric crypto capability.
261  * @param       key_size        Cipher key size.
262  * @param       iv_size         Cipher initial vector size.
263  *
264  * @return
265  *   - Return 0 if the parameters are in range of the capability.
266  *   - Return -1 if the parameters are out of range of the capability.
267  */
268 int
269 rte_cryptodev_sym_capability_check_cipher(
270                 const struct rte_cryptodev_symmetric_capability *capability,
271                 uint16_t key_size, uint16_t iv_size);
272
273 /**
274  * Check if key size and initial vector are supported
275  * in crypto auth capability
276  *
277  * @param       capability      Description of the symmetric crypto capability.
278  * @param       key_size        Auth key size.
279  * @param       digest_size     Auth digest size.
280  * @param       iv_size         Auth initial vector size.
281  *
282  * @return
283  *   - Return 0 if the parameters are in range of the capability.
284  *   - Return -1 if the parameters are out of range of the capability.
285  */
286 int
287 rte_cryptodev_sym_capability_check_auth(
288                 const struct rte_cryptodev_symmetric_capability *capability,
289                 uint16_t key_size, uint16_t digest_size, uint16_t iv_size);
290
291 /**
292  * Check if key, digest, AAD and initial vector sizes are supported
293  * in crypto AEAD capability
294  *
295  * @param       capability      Description of the symmetric crypto capability.
296  * @param       key_size        AEAD key size.
297  * @param       digest_size     AEAD digest size.
298  * @param       aad_size        AEAD AAD size.
299  * @param       iv_size         AEAD IV size.
300  *
301  * @return
302  *   - Return 0 if the parameters are in range of the capability.
303  *   - Return -1 if the parameters are out of range of the capability.
304  */
305 int
306 rte_cryptodev_sym_capability_check_aead(
307                 const struct rte_cryptodev_symmetric_capability *capability,
308                 uint16_t key_size, uint16_t digest_size, uint16_t aad_size,
309                 uint16_t iv_size);
310
311 /**
312  * Check if op type is supported
313  *
314  * @param       capability      Description of the asymmetric crypto capability.
315  * @param       op_type         op type
316  *
317  * @return
318  *   - Return 1 if the op type is supported
319  *   - Return 0 if unsupported
320  */
321 __rte_experimental
322 int
323 rte_cryptodev_asym_xform_capability_check_optype(
324         const struct rte_cryptodev_asymmetric_xform_capability *capability,
325                 enum rte_crypto_asym_op_type op_type);
326
327 /**
328  * Check if modulus length is in supported range
329  *
330  * @param       capability      Description of the asymmetric crypto capability.
331  * @param       modlen          modulus length.
332  *
333  * @return
334  *   - Return 0 if the parameters are in range of the capability.
335  *   - Return -1 if the parameters are out of range of the capability.
336  */
337 __rte_experimental
338 int
339 rte_cryptodev_asym_xform_capability_check_modlen(
340         const struct rte_cryptodev_asymmetric_xform_capability *capability,
341                 uint16_t modlen);
342
343 /**
344  * Provide the cipher algorithm enum, given an algorithm string
345  *
346  * @param       algo_enum       A pointer to the cipher algorithm
347  *                              enum to be filled
348  * @param       algo_string     Authentication algo string
349  *
350  * @return
351  * - Return -1 if string is not valid
352  * - Return 0 is the string is valid
353  */
354 int
355 rte_cryptodev_get_cipher_algo_enum(enum rte_crypto_cipher_algorithm *algo_enum,
356                 const char *algo_string);
357
358 /**
359  * Provide the authentication algorithm enum, given an algorithm string
360  *
361  * @param       algo_enum       A pointer to the authentication algorithm
362  *                              enum to be filled
363  * @param       algo_string     Authentication algo string
364  *
365  * @return
366  * - Return -1 if string is not valid
367  * - Return 0 is the string is valid
368  */
369 int
370 rte_cryptodev_get_auth_algo_enum(enum rte_crypto_auth_algorithm *algo_enum,
371                 const char *algo_string);
372
373 /**
374  * Provide the AEAD algorithm enum, given an algorithm string
375  *
376  * @param       algo_enum       A pointer to the AEAD algorithm
377  *                              enum to be filled
378  * @param       algo_string     AEAD algorithm string
379  *
380  * @return
381  * - Return -1 if string is not valid
382  * - Return 0 is the string is valid
383  */
384 int
385 rte_cryptodev_get_aead_algo_enum(enum rte_crypto_aead_algorithm *algo_enum,
386                 const char *algo_string);
387
388 /**
389  * Provide the Asymmetric xform enum, given an xform string
390  *
391  * @param       xform_enum      A pointer to the xform type
392  *                              enum to be filled
393  * @param       xform_string    xform string
394  *
395  * @return
396  * - Return -1 if string is not valid
397  * - Return 0 if the string is valid
398  */
399 __rte_experimental
400 int
401 rte_cryptodev_asym_get_xform_enum(enum rte_crypto_asym_xform_type *xform_enum,
402                 const char *xform_string);
403
404
405 /** Macro used at end of crypto PMD list */
406 #define RTE_CRYPTODEV_END_OF_CAPABILITIES_LIST() \
407         { RTE_CRYPTO_OP_TYPE_UNDEFINED }
408
409
410 /**
411  * Crypto device supported feature flags
412  *
413  * Note:
414  * New features flags should be added to the end of the list
415  *
416  * Keep these flags synchronised with rte_cryptodev_get_feature_name()
417  */
418 #define RTE_CRYPTODEV_FF_SYMMETRIC_CRYPTO               (1ULL << 0)
419 /**< Symmetric crypto operations are supported */
420 #define RTE_CRYPTODEV_FF_ASYMMETRIC_CRYPTO              (1ULL << 1)
421 /**< Asymmetric crypto operations are supported */
422 #define RTE_CRYPTODEV_FF_SYM_OPERATION_CHAINING         (1ULL << 2)
423 /**< Chaining symmetric crypto operations are supported */
424 #define RTE_CRYPTODEV_FF_CPU_SSE                        (1ULL << 3)
425 /**< Utilises CPU SIMD SSE instructions */
426 #define RTE_CRYPTODEV_FF_CPU_AVX                        (1ULL << 4)
427 /**< Utilises CPU SIMD AVX instructions */
428 #define RTE_CRYPTODEV_FF_CPU_AVX2                       (1ULL << 5)
429 /**< Utilises CPU SIMD AVX2 instructions */
430 #define RTE_CRYPTODEV_FF_CPU_AESNI                      (1ULL << 6)
431 /**< Utilises CPU AES-NI instructions */
432 #define RTE_CRYPTODEV_FF_HW_ACCELERATED                 (1ULL << 7)
433 /**< Operations are off-loaded to an
434  * external hardware accelerator
435  */
436 #define RTE_CRYPTODEV_FF_CPU_AVX512                     (1ULL << 8)
437 /**< Utilises CPU SIMD AVX512 instructions */
438 #define RTE_CRYPTODEV_FF_IN_PLACE_SGL                   (1ULL << 9)
439 /**< In-place Scatter-gather (SGL) buffers, with multiple segments,
440  * are supported
441  */
442 #define RTE_CRYPTODEV_FF_OOP_SGL_IN_SGL_OUT             (1ULL << 10)
443 /**< Out-of-place Scatter-gather (SGL) buffers are
444  * supported in input and output
445  */
446 #define RTE_CRYPTODEV_FF_OOP_SGL_IN_LB_OUT              (1ULL << 11)
447 /**< Out-of-place Scatter-gather (SGL) buffers are supported
448  * in input, combined with linear buffers (LB), with a
449  * single segment in output
450  */
451 #define RTE_CRYPTODEV_FF_OOP_LB_IN_SGL_OUT              (1ULL << 12)
452 /**< Out-of-place Scatter-gather (SGL) buffers are supported
453  * in output, combined with linear buffers (LB) in input
454  */
455 #define RTE_CRYPTODEV_FF_OOP_LB_IN_LB_OUT               (1ULL << 13)
456 /**< Out-of-place linear buffers (LB) are supported in input and output */
457 #define RTE_CRYPTODEV_FF_CPU_NEON                       (1ULL << 14)
458 /**< Utilises CPU NEON instructions */
459 #define RTE_CRYPTODEV_FF_CPU_ARM_CE                     (1ULL << 15)
460 /**< Utilises ARM CPU Cryptographic Extensions */
461 #define RTE_CRYPTODEV_FF_SECURITY                       (1ULL << 16)
462 /**< Support Security Protocol Processing */
463 #define RTE_CRYPTODEV_FF_RSA_PRIV_OP_KEY_EXP            (1ULL << 17)
464 /**< Support RSA Private Key OP with exponent */
465 #define RTE_CRYPTODEV_FF_RSA_PRIV_OP_KEY_QT             (1ULL << 18)
466 /**< Support RSA Private Key OP with CRT (quintuple) Keys */
467 #define RTE_CRYPTODEV_FF_DIGEST_ENCRYPTED               (1ULL << 19)
468 /**< Support encrypted-digest operations where digest is appended to data */
469 #define RTE_CRYPTODEV_FF_ASYM_SESSIONLESS               (1ULL << 20)
470 /**< Support asymmetric session-less operations */
471 #define RTE_CRYPTODEV_FF_SYM_CPU_CRYPTO                 (1ULL << 21)
472 /**< Support symmetric cpu-crypto processing */
473 #define RTE_CRYPTODEV_FF_SYM_SESSIONLESS                (1ULL << 22)
474 /**< Support symmetric session-less operations */
475 #define RTE_CRYPTODEV_FF_NON_BYTE_ALIGNED_DATA          (1ULL << 23)
476 /**< Support operations on data which is not byte aligned */
477 #define RTE_CRYPTODEV_FF_SYM_RAW_DP                     (1ULL << 24)
478 /**< Support accelerator specific symmetric raw data-path APIs */
479 #define RTE_CRYPTODEV_FF_CIPHER_MULTIPLE_DATA_UNITS     (1ULL << 25)
480 /**< Support operations on multiple data-units message */
481 #define RTE_CRYPTODEV_FF_CIPHER_WRAPPED_KEY             (1ULL << 26)
482 /**< Support wrapped key in cipher xform  */
483 #define RTE_CRYPTODEV_FF_SECURITY_INNER_CSUM            (1ULL << 27)
484 /**< Support inner checksum computation/verification */
485
486 /**
487  * Get the name of a crypto device feature flag
488  *
489  * @param       flag    The mask describing the flag.
490  *
491  * @return
492  *   The name of this flag, or NULL if it's not a valid feature flag.
493  */
494
495 extern const char *
496 rte_cryptodev_get_feature_name(uint64_t flag);
497
498 /**  Crypto device information */
499 struct rte_cryptodev_info {
500         const char *driver_name;        /**< Driver name. */
501         uint8_t driver_id;              /**< Driver identifier */
502         struct rte_device *device;      /**< Generic device information. */
503
504         uint64_t feature_flags;
505         /**< Feature flags exposes HW/SW features for the given device */
506
507         const struct rte_cryptodev_capabilities *capabilities;
508         /**< Array of devices supported capabilities */
509
510         unsigned max_nb_queue_pairs;
511         /**< Maximum number of queues pairs supported by device. */
512
513         uint16_t min_mbuf_headroom_req;
514         /**< Minimum mbuf headroom required by device */
515
516         uint16_t min_mbuf_tailroom_req;
517         /**< Minimum mbuf tailroom required by device */
518
519         struct {
520                 unsigned max_nb_sessions;
521                 /**< Maximum number of sessions supported by device.
522                  * If 0, the device does not have any limitation in
523                  * number of sessions that can be used.
524                  */
525         } sym;
526 };
527
528 #define RTE_CRYPTODEV_DETACHED  (0)
529 #define RTE_CRYPTODEV_ATTACHED  (1)
530
531 /** Definitions of Crypto device event types */
532 enum rte_cryptodev_event_type {
533         RTE_CRYPTODEV_EVENT_UNKNOWN,    /**< unknown event type */
534         RTE_CRYPTODEV_EVENT_ERROR,      /**< error interrupt event */
535         RTE_CRYPTODEV_EVENT_MAX         /**< max value of this enum */
536 };
537
538 /** Crypto device queue pair configuration structure. */
539 struct rte_cryptodev_qp_conf {
540         uint32_t nb_descriptors; /**< Number of descriptors per queue pair */
541         struct rte_mempool *mp_session;
542         /**< The mempool for creating session in sessionless mode */
543         struct rte_mempool *mp_session_private;
544         /**< The mempool for creating sess private data in sessionless mode */
545 };
546
547 /**
548  * Function type used for processing crypto ops when enqueue/dequeue burst is
549  * called.
550  *
551  * The callback function is called on enqueue/dequeue burst immediately.
552  *
553  * @param       dev_id          The identifier of the device.
554  * @param       qp_id           The index of the queue pair on which ops are
555  *                              enqueued/dequeued. The value must be in the
556  *                              range [0, nb_queue_pairs - 1] previously
557  *                              supplied to *rte_cryptodev_configure*.
558  * @param       ops             The address of an array of *nb_ops* pointers
559  *                              to *rte_crypto_op* structures which contain
560  *                              the crypto operations to be processed.
561  * @param       nb_ops          The number of operations to process.
562  * @param       user_param      The arbitrary user parameter passed in by the
563  *                              application when the callback was originally
564  *                              registered.
565  * @return                      The number of ops to be enqueued to the
566  *                              crypto device.
567  */
568 typedef uint16_t (*rte_cryptodev_callback_fn)(uint16_t dev_id, uint16_t qp_id,
569                 struct rte_crypto_op **ops, uint16_t nb_ops, void *user_param);
570
571 /**
572  * Typedef for application callback function to be registered by application
573  * software for notification of device events
574  *
575  * @param       dev_id  Crypto device identifier
576  * @param       event   Crypto device event to register for notification of.
577  * @param       cb_arg  User specified parameter to be passed as to passed to
578  *                      users callback function.
579  */
580 typedef void (*rte_cryptodev_cb_fn)(uint8_t dev_id,
581                 enum rte_cryptodev_event_type event, void *cb_arg);
582
583
584 /** Crypto Device statistics */
585 struct rte_cryptodev_stats {
586         uint64_t enqueued_count;
587         /**< Count of all operations enqueued */
588         uint64_t dequeued_count;
589         /**< Count of all operations dequeued */
590
591         uint64_t enqueue_err_count;
592         /**< Total error count on operations enqueued */
593         uint64_t dequeue_err_count;
594         /**< Total error count on operations dequeued */
595 };
596
597 #define RTE_CRYPTODEV_NAME_MAX_LEN      (64)
598 /**< Max length of name of crypto PMD */
599
600 /**
601  * Get the device identifier for the named crypto device.
602  *
603  * @param       name    device name to select the device structure.
604  *
605  * @return
606  *   - Returns crypto device identifier on success.
607  *   - Return -1 on failure to find named crypto device.
608  */
609 extern int
610 rte_cryptodev_get_dev_id(const char *name);
611
612 /**
613  * Get the crypto device name given a device identifier.
614  *
615  * @param dev_id
616  *   The identifier of the device
617  *
618  * @return
619  *   - Returns crypto device name.
620  *   - Returns NULL if crypto device is not present.
621  */
622 extern const char *
623 rte_cryptodev_name_get(uint8_t dev_id);
624
625 /**
626  * Get the total number of crypto devices that have been successfully
627  * initialised.
628  *
629  * @return
630  *   - The total number of usable crypto devices.
631  */
632 extern uint8_t
633 rte_cryptodev_count(void);
634
635 /**
636  * Get number of crypto device defined type.
637  *
638  * @param       driver_id       driver identifier.
639  *
640  * @return
641  *   Returns number of crypto device.
642  */
643 extern uint8_t
644 rte_cryptodev_device_count_by_driver(uint8_t driver_id);
645
646 /**
647  * Get number and identifiers of attached crypto devices that
648  * use the same crypto driver.
649  *
650  * @param       driver_name     driver name.
651  * @param       devices         output devices identifiers.
652  * @param       nb_devices      maximal number of devices.
653  *
654  * @return
655  *   Returns number of attached crypto device.
656  */
657 uint8_t
658 rte_cryptodev_devices_get(const char *driver_name, uint8_t *devices,
659                 uint8_t nb_devices);
660 /*
661  * Return the NUMA socket to which a device is connected
662  *
663  * @param dev_id
664  *   The identifier of the device
665  * @return
666  *   The NUMA socket id to which the device is connected or
667  *   a default of zero if the socket could not be determined.
668  *   -1 if returned is the dev_id value is out of range.
669  */
670 extern int
671 rte_cryptodev_socket_id(uint8_t dev_id);
672
673 /** Crypto device configuration structure */
674 struct rte_cryptodev_config {
675         int socket_id;                  /**< Socket to allocate resources on */
676         uint16_t nb_queue_pairs;
677         /**< Number of queue pairs to configure on device */
678         uint64_t ff_disable;
679         /**< Feature flags to be disabled. Only the following features are
680          * allowed to be disabled,
681          *  - RTE_CRYPTODEV_FF_SYMMETRIC_CRYPTO
682          *  - RTE_CRYPTODEV_FF_ASYMMETRIC_CRYPTO
683          *  - RTE_CRYTPODEV_FF_SECURITY
684          */
685 };
686
687 /**
688  * Configure a device.
689  *
690  * This function must be invoked first before any other function in the
691  * API. This function can also be re-invoked when a device is in the
692  * stopped state.
693  *
694  * @param       dev_id          The identifier of the device to configure.
695  * @param       config          The crypto device configuration structure.
696  *
697  * @return
698  *   - 0: Success, device configured.
699  *   - <0: Error code returned by the driver configuration function.
700  */
701 extern int
702 rte_cryptodev_configure(uint8_t dev_id, struct rte_cryptodev_config *config);
703
704 /**
705  * Start an device.
706  *
707  * The device start step is the last one and consists of setting the configured
708  * offload features and in starting the transmit and the receive units of the
709  * device.
710  * On success, all basic functions exported by the API (link status,
711  * receive/transmit, and so on) can be invoked.
712  *
713  * @param dev_id
714  *   The identifier of the device.
715  * @return
716  *   - 0: Success, device started.
717  *   - <0: Error code of the driver device start function.
718  */
719 extern int
720 rte_cryptodev_start(uint8_t dev_id);
721
722 /**
723  * Stop an device. The device can be restarted with a call to
724  * rte_cryptodev_start()
725  *
726  * @param       dev_id          The identifier of the device.
727  */
728 extern void
729 rte_cryptodev_stop(uint8_t dev_id);
730
731 /**
732  * Close an device. The device cannot be restarted!
733  *
734  * @param       dev_id          The identifier of the device.
735  *
736  * @return
737  *  - 0 on successfully closing device
738  *  - <0 on failure to close device
739  */
740 extern int
741 rte_cryptodev_close(uint8_t dev_id);
742
743 /**
744  * Allocate and set up a receive queue pair for a device.
745  *
746  *
747  * @param       dev_id          The identifier of the device.
748  * @param       queue_pair_id   The index of the queue pairs to set up. The
749  *                              value must be in the range [0, nb_queue_pair
750  *                              - 1] previously supplied to
751  *                              rte_cryptodev_configure().
752  * @param       qp_conf         The pointer to the configuration data to be
753  *                              used for the queue pair.
754  * @param       socket_id       The *socket_id* argument is the socket
755  *                              identifier in case of NUMA. The value can be
756  *                              *SOCKET_ID_ANY* if there is no NUMA constraint
757  *                              for the DMA memory allocated for the receive
758  *                              queue pair.
759  *
760  * @return
761  *   - 0: Success, queue pair correctly set up.
762  *   - <0: Queue pair configuration failed
763  */
764 extern int
765 rte_cryptodev_queue_pair_setup(uint8_t dev_id, uint16_t queue_pair_id,
766                 const struct rte_cryptodev_qp_conf *qp_conf, int socket_id);
767
768 /**
769  * Get the status of queue pairs setup on a specific crypto device
770  *
771  * @param       dev_id          Crypto device identifier.
772  * @param       queue_pair_id   The index of the queue pairs to set up. The
773  *                              value must be in the range [0, nb_queue_pair
774  *                              - 1] previously supplied to
775  *                              rte_cryptodev_configure().
776  * @return
777  *   - 0: qp was not configured
778  *       - 1: qp was configured
779  *       - -EINVAL: device was not configured
780  */
781 __rte_experimental
782 int
783 rte_cryptodev_get_qp_status(uint8_t dev_id, uint16_t queue_pair_id);
784
785 /**
786  * Get the number of queue pairs on a specific crypto device
787  *
788  * @param       dev_id          Crypto device identifier.
789  * @return
790  *   - The number of configured queue pairs.
791  */
792 extern uint16_t
793 rte_cryptodev_queue_pair_count(uint8_t dev_id);
794
795
796 /**
797  * Retrieve the general I/O statistics of a device.
798  *
799  * @param       dev_id          The identifier of the device.
800  * @param       stats           A pointer to a structure of type
801  *                              *rte_cryptodev_stats* to be filled with the
802  *                              values of device counters.
803  * @return
804  *   - Zero if successful.
805  *   - Non-zero otherwise.
806  */
807 extern int
808 rte_cryptodev_stats_get(uint8_t dev_id, struct rte_cryptodev_stats *stats);
809
810 /**
811  * Reset the general I/O statistics of a device.
812  *
813  * @param       dev_id          The identifier of the device.
814  */
815 extern void
816 rte_cryptodev_stats_reset(uint8_t dev_id);
817
818 /**
819  * Retrieve the contextual information of a device.
820  *
821  * @param       dev_id          The identifier of the device.
822  * @param       dev_info        A pointer to a structure of type
823  *                              *rte_cryptodev_info* to be filled with the
824  *                              contextual information of the device.
825  *
826  * @note The capabilities field of dev_info is set to point to the first
827  * element of an array of struct rte_cryptodev_capabilities. The element after
828  * the last valid element has it's op field set to
829  * RTE_CRYPTO_OP_TYPE_UNDEFINED.
830  */
831 extern void
832 rte_cryptodev_info_get(uint8_t dev_id, struct rte_cryptodev_info *dev_info);
833
834
835 /**
836  * Register a callback function for specific device id.
837  *
838  * @param       dev_id          Device id.
839  * @param       event           Event interested.
840  * @param       cb_fn           User supplied callback function to be called.
841  * @param       cb_arg          Pointer to the parameters for the registered
842  *                              callback.
843  *
844  * @return
845  *  - On success, zero.
846  *  - On failure, a negative value.
847  */
848 extern int
849 rte_cryptodev_callback_register(uint8_t dev_id,
850                 enum rte_cryptodev_event_type event,
851                 rte_cryptodev_cb_fn cb_fn, void *cb_arg);
852
853 /**
854  * Unregister a callback function for specific device id.
855  *
856  * @param       dev_id          The device identifier.
857  * @param       event           Event interested.
858  * @param       cb_fn           User supplied callback function to be called.
859  * @param       cb_arg          Pointer to the parameters for the registered
860  *                              callback.
861  *
862  * @return
863  *  - On success, zero.
864  *  - On failure, a negative value.
865  */
866 extern int
867 rte_cryptodev_callback_unregister(uint8_t dev_id,
868                 enum rte_cryptodev_event_type event,
869                 rte_cryptodev_cb_fn cb_fn, void *cb_arg);
870
871 struct rte_cryptodev_callback;
872
873 /** Structure to keep track of registered callbacks */
874 RTE_TAILQ_HEAD(rte_cryptodev_cb_list, rte_cryptodev_callback);
875
876 /**
877  * Structure used to hold information about the callbacks to be called for a
878  * queue pair on enqueue/dequeue.
879  */
880 struct rte_cryptodev_cb {
881         struct rte_cryptodev_cb *next;
882         /**< Pointer to next callback */
883         rte_cryptodev_callback_fn fn;
884         /**< Pointer to callback function */
885         void *arg;
886         /**< Pointer to argument */
887 };
888
889 /**
890  * @internal
891  * Structure used to hold information about the RCU for a queue pair.
892  */
893 struct rte_cryptodev_cb_rcu {
894         struct rte_cryptodev_cb *next;
895         /**< Pointer to next callback */
896         struct rte_rcu_qsbr *qsbr;
897         /**< RCU QSBR variable per queue pair */
898 };
899
900 void *
901 rte_cryptodev_get_sec_ctx(uint8_t dev_id);
902
903 /** Cryptodev symmetric crypto session
904  * Each session is derived from a fixed xform chain. Therefore each session
905  * has a fixed algo, key, op-type, digest_len etc.
906  */
907 struct rte_cryptodev_sym_session {
908         uint64_t opaque_data;
909         /**< Can be used for external metadata */
910         uint16_t nb_drivers;
911         /**< number of elements in sess_data array */
912         uint16_t user_data_sz;
913         /**< session user data will be placed after sess_data */
914         __extension__ struct {
915                 void *data;
916                 uint16_t refcnt;
917         } sess_data[0];
918         /**< Driver specific session material, variable size */
919 };
920
921 /** Cryptodev asymmetric crypto session */
922 RTE_STD_C11 struct rte_cryptodev_asym_session {
923         uint8_t driver_id;
924         /**< Session driver ID. */
925         uint16_t max_priv_data_sz;
926         /**< Size of private data used when creating mempool */
927         uint8_t padding[5];
928         uint8_t sess_private_data[0];
929 };
930
931 /**
932  * Create a symmetric session mempool.
933  *
934  * @param name
935  *   The unique mempool name.
936  * @param nb_elts
937  *   The number of elements in the mempool.
938  * @param elt_size
939  *   The size of the element. This value will be ignored if it is smaller than
940  *   the minimum session header size required for the system. For the user who
941  *   want to use the same mempool for sym session and session private data it
942  *   can be the maximum value of all existing devices' private data and session
943  *   header sizes.
944  * @param cache_size
945  *   The number of per-lcore cache elements
946  * @param priv_size
947  *   The private data size of each session.
948  * @param socket_id
949  *   The *socket_id* argument is the socket identifier in the case of
950  *   NUMA. The value can be *SOCKET_ID_ANY* if there is no NUMA
951  *   constraint for the reserved zone.
952  *
953  * @return
954  *  - On success return size of the session
955  *  - On failure returns 0
956  */
957 __rte_experimental
958 struct rte_mempool *
959 rte_cryptodev_sym_session_pool_create(const char *name, uint32_t nb_elts,
960         uint32_t elt_size, uint32_t cache_size, uint16_t priv_size,
961         int socket_id);
962
963 /**
964  * Create an asymmetric session mempool.
965  *
966  * @param name
967  *   The unique mempool name.
968  * @param nb_elts
969  *   The number of elements in the mempool.
970  * @param cache_size
971  *   The number of per-lcore cache elements
972  * @param socket_id
973  *   The *socket_id* argument is the socket identifier in the case of
974  *   NUMA. The value can be *SOCKET_ID_ANY* if there is no NUMA
975  *   constraint for the reserved zone.
976  *
977  * @return
978  *  - On success return mempool
979  *  - On failure returns NULL
980  */
981 __rte_experimental
982 struct rte_mempool *
983 rte_cryptodev_asym_session_pool_create(const char *name, uint32_t nb_elts,
984         uint32_t cache_size, int socket_id);
985
986 /**
987  * Create symmetric crypto session header (generic with no private data)
988  *
989  * @param   mempool    Symmetric session mempool to allocate session
990  *                     objects from
991  * @return
992  *  - On success return pointer to sym-session
993  *  - On failure returns NULL
994  */
995 struct rte_cryptodev_sym_session *
996 rte_cryptodev_sym_session_create(struct rte_mempool *mempool);
997
998 /**
999  * Create and initialise an asymmetric crypto session structure.
1000  * Calls the PMD to configure the private session data.
1001  *
1002  * @param   dev_id   ID of device that we want the session to be used on
1003  * @param   xforms   Asymmetric crypto transform operations to apply on flow
1004  *                   processed with this session
1005  * @param   mp       mempool to allocate asymmetric session
1006  *                   objects from
1007  * @return
1008  *  - On success return pointer to asym-session
1009  *  - On failure returns NULL
1010  */
1011 __rte_experimental
1012 struct rte_cryptodev_asym_session *
1013 rte_cryptodev_asym_session_create(uint8_t dev_id,
1014                 struct rte_crypto_asym_xform *xforms, struct rte_mempool *mp);
1015
1016 /**
1017  * Frees symmetric crypto session header, after checking that all
1018  * the device private data has been freed, returning it
1019  * to its original mempool.
1020  *
1021  * @param   sess     Session header to be freed.
1022  *
1023  * @return
1024  *  - 0 if successful.
1025  *  - -EINVAL if session is NULL.
1026  *  - -EBUSY if not all device private data has been freed.
1027  */
1028 int
1029 rte_cryptodev_sym_session_free(struct rte_cryptodev_sym_session *sess);
1030
1031 /**
1032  * Clears and frees asymmetric crypto session header and private data,
1033  * returning it to its original mempool.
1034  *
1035  * @param   dev_id   ID of device that uses the asymmetric session.
1036  * @param   sess     Session header to be freed.
1037  *
1038  * @return
1039  *  - 0 if successful.
1040  *  - -EINVAL if device is invalid or session is NULL.
1041  */
1042 __rte_experimental
1043 int
1044 rte_cryptodev_asym_session_free(uint8_t dev_id,
1045                 struct rte_cryptodev_asym_session *sess);
1046
1047 /**
1048  * Fill out private data for the device id, based on its device type.
1049  *
1050  * @param   dev_id   ID of device that we want the session to be used on
1051  * @param   sess     Session where the private data will be attached to
1052  * @param   xforms   Symmetric crypto transform operations to apply on flow
1053  *                   processed with this session
1054  * @param   mempool  Mempool where the private data is allocated.
1055  *
1056  * @return
1057  *  - On success, zero.
1058  *  - -EINVAL if input parameters are invalid.
1059  *  - -ENOTSUP if crypto device does not support the crypto transform or
1060  *    does not support symmetric operations.
1061  *  - -ENOMEM if the private session could not be allocated.
1062  */
1063 int
1064 rte_cryptodev_sym_session_init(uint8_t dev_id,
1065                         struct rte_cryptodev_sym_session *sess,
1066                         struct rte_crypto_sym_xform *xforms,
1067                         struct rte_mempool *mempool);
1068
1069 /**
1070  * Frees private data for the device id, based on its device type,
1071  * returning it to its mempool. It is the application's responsibility
1072  * to ensure that private session data is not cleared while there are
1073  * still in-flight operations using it.
1074  *
1075  * @param   dev_id   ID of device that uses the session.
1076  * @param   sess     Session containing the reference to the private data
1077  *
1078  * @return
1079  *  - 0 if successful.
1080  *  - -EINVAL if device is invalid or session is NULL.
1081  *  - -ENOTSUP if crypto device does not support symmetric operations.
1082  */
1083 int
1084 rte_cryptodev_sym_session_clear(uint8_t dev_id,
1085                         struct rte_cryptodev_sym_session *sess);
1086
1087 /**
1088  * Get the size of the header session, for all registered drivers excluding
1089  * the user data size.
1090  *
1091  * @return
1092  *   Size of the symmetric header session.
1093  */
1094 unsigned int
1095 rte_cryptodev_sym_get_header_session_size(void);
1096
1097 /**
1098  * Get the size of the header session from created session.
1099  *
1100  * @param sess
1101  *   The sym cryptodev session pointer
1102  *
1103  * @return
1104  *   - If sess is not NULL, return the size of the header session including
1105  *   the private data size defined within sess.
1106  *   - If sess is NULL, return 0.
1107  */
1108 __rte_experimental
1109 unsigned int
1110 rte_cryptodev_sym_get_existing_header_session_size(
1111                 struct rte_cryptodev_sym_session *sess);
1112
1113 /**
1114  * Get the size of the asymmetric session header.
1115  *
1116  * @return
1117  *   Size of the asymmetric header session.
1118  */
1119 __rte_experimental
1120 unsigned int
1121 rte_cryptodev_asym_get_header_session_size(void);
1122
1123 /**
1124  * Get the size of the private symmetric session data
1125  * for a device.
1126  *
1127  * @param       dev_id          The device identifier.
1128  *
1129  * @return
1130  *   - Size of the private data, if successful
1131  *   - 0 if device is invalid or does not have private
1132  *   symmetric session
1133  */
1134 unsigned int
1135 rte_cryptodev_sym_get_private_session_size(uint8_t dev_id);
1136
1137 /**
1138  * Get the size of the private data for asymmetric session
1139  * on device
1140  *
1141  * @param       dev_id          The device identifier.
1142  *
1143  * @return
1144  *   - Size of the asymmetric private data, if successful
1145  *   - 0 if device is invalid or does not have private session
1146  */
1147 __rte_experimental
1148 unsigned int
1149 rte_cryptodev_asym_get_private_session_size(uint8_t dev_id);
1150
1151 /**
1152  * Validate if the crypto device index is valid attached crypto device.
1153  *
1154  * @param       dev_id  Crypto device index.
1155  *
1156  * @return
1157  *   - If the device index is valid (1) or not (0).
1158  */
1159 unsigned int
1160 rte_cryptodev_is_valid_dev(uint8_t dev_id);
1161
1162 /**
1163  * Provide driver identifier.
1164  *
1165  * @param name
1166  *   The pointer to a driver name.
1167  * @return
1168  *  The driver type identifier or -1 if no driver found
1169  */
1170 int rte_cryptodev_driver_id_get(const char *name);
1171
1172 /**
1173  * Provide driver name.
1174  *
1175  * @param driver_id
1176  *   The driver identifier.
1177  * @return
1178  *  The driver name or null if no driver found
1179  */
1180 const char *rte_cryptodev_driver_name_get(uint8_t driver_id);
1181
1182 /**
1183  * Store user data in a session.
1184  *
1185  * @param       sess            Session pointer allocated by
1186  *                              *rte_cryptodev_sym_session_create*.
1187  * @param       data            Pointer to the user data.
1188  * @param       size            Size of the user data.
1189  *
1190  * @return
1191  *  - On success, zero.
1192  *  - On failure, a negative value.
1193  */
1194 __rte_experimental
1195 int
1196 rte_cryptodev_sym_session_set_user_data(
1197                                         struct rte_cryptodev_sym_session *sess,
1198                                         void *data,
1199                                         uint16_t size);
1200
1201 /**
1202  * Get user data stored in a session.
1203  *
1204  * @param       sess            Session pointer allocated by
1205  *                              *rte_cryptodev_sym_session_create*.
1206  *
1207  * @return
1208  *  - On success return pointer to user data.
1209  *  - On failure returns NULL.
1210  */
1211 __rte_experimental
1212 void *
1213 rte_cryptodev_sym_session_get_user_data(
1214                                         struct rte_cryptodev_sym_session *sess);
1215
1216 /**
1217  * Perform actual crypto processing (encrypt/digest or auth/decrypt)
1218  * on user provided data.
1219  *
1220  * @param       dev_id  The device identifier.
1221  * @param       sess    Cryptodev session structure
1222  * @param       ofs     Start and stop offsets for auth and cipher operations
1223  * @param       vec     Vectorized operation descriptor
1224  *
1225  * @return
1226  *  - Returns number of successfully processed packets.
1227  */
1228 __rte_experimental
1229 uint32_t
1230 rte_cryptodev_sym_cpu_crypto_process(uint8_t dev_id,
1231         struct rte_cryptodev_sym_session *sess, union rte_crypto_sym_ofs ofs,
1232         struct rte_crypto_sym_vec *vec);
1233
1234 /**
1235  * Get the size of the raw data-path context buffer.
1236  *
1237  * @param       dev_id          The device identifier.
1238  *
1239  * @return
1240  *   - If the device supports raw data-path APIs, return the context size.
1241  *   - If the device does not support the APIs, return -1.
1242  */
1243 __rte_experimental
1244 int
1245 rte_cryptodev_get_raw_dp_ctx_size(uint8_t dev_id);
1246
1247 /**
1248  * Union of different crypto session types, including session-less xform
1249  * pointer.
1250  */
1251 union rte_cryptodev_session_ctx {
1252         struct rte_cryptodev_sym_session *crypto_sess;
1253         struct rte_crypto_sym_xform *xform;
1254         struct rte_security_session *sec_sess;
1255 };
1256
1257 /**
1258  * Enqueue a vectorized operation descriptor into the device queue but the
1259  * driver may or may not start processing until rte_cryptodev_raw_enqueue_done()
1260  * is called.
1261  *
1262  * @param       qp              Driver specific queue pair data.
1263  * @param       drv_ctx         Driver specific context data.
1264  * @param       vec             Vectorized operation descriptor.
1265  * @param       ofs             Start and stop offsets for auth and cipher
1266  *                              operations.
1267  * @param       user_data       The array of user data for dequeue later.
1268  * @param       enqueue_status  Driver written value to specify the
1269  *                              enqueue status. Possible values:
1270  *                              - 1: The number of operations returned are
1271  *                                   enqueued successfully.
1272  *                              - 0: The number of operations returned are
1273  *                                   cached into the queue but are not processed
1274  *                                   until rte_cryptodev_raw_enqueue_done() is
1275  *                                   called.
1276  *                              - negative integer: Error occurred.
1277  * @return
1278  *   - The number of operations in the descriptor successfully enqueued or
1279  *     cached into the queue but not enqueued yet, depends on the
1280  *     "enqueue_status" value.
1281  */
1282 typedef uint32_t (*cryptodev_sym_raw_enqueue_burst_t)(
1283         void *qp, uint8_t *drv_ctx, struct rte_crypto_sym_vec *vec,
1284         union rte_crypto_sym_ofs ofs, void *user_data[], int *enqueue_status);
1285
1286 /**
1287  * Enqueue single raw data vector into the device queue but the driver may or
1288  * may not start processing until rte_cryptodev_raw_enqueue_done() is called.
1289  *
1290  * @param       qp              Driver specific queue pair data.
1291  * @param       drv_ctx         Driver specific context data.
1292  * @param       data_vec        The buffer data vector.
1293  * @param       n_data_vecs     Number of buffer data vectors.
1294  * @param       ofs             Start and stop offsets for auth and cipher
1295  *                              operations.
1296  * @param       iv              IV virtual and IOVA addresses
1297  * @param       digest          digest virtual and IOVA addresses
1298  * @param       aad_or_auth_iv  AAD or auth IV virtual and IOVA addresses,
1299  *                              depends on the algorithm used.
1300  * @param       user_data       The user data.
1301  * @return
1302  *   - 1: The data vector is enqueued successfully.
1303  *   - 0: The data vector is cached into the queue but is not processed
1304  *        until rte_cryptodev_raw_enqueue_done() is called.
1305  *   - negative integer: failure.
1306  */
1307 typedef int (*cryptodev_sym_raw_enqueue_t)(
1308         void *qp, uint8_t *drv_ctx, struct rte_crypto_vec *data_vec,
1309         uint16_t n_data_vecs, union rte_crypto_sym_ofs ofs,
1310         struct rte_crypto_va_iova_ptr *iv,
1311         struct rte_crypto_va_iova_ptr *digest,
1312         struct rte_crypto_va_iova_ptr *aad_or_auth_iv,
1313         void *user_data);
1314
1315 /**
1316  * Inform the cryptodev queue pair to start processing or finish dequeuing all
1317  * enqueued/dequeued operations.
1318  *
1319  * @param       qp              Driver specific queue pair data.
1320  * @param       drv_ctx         Driver specific context data.
1321  * @param       n               The total number of processed operations.
1322  * @return
1323  *   - On success return 0.
1324  *   - On failure return negative integer.
1325  */
1326 typedef int (*cryptodev_sym_raw_operation_done_t)(void *qp, uint8_t *drv_ctx,
1327         uint32_t n);
1328
1329 /**
1330  * Typedef that the user provided for the driver to get the dequeue count.
1331  * The function may return a fixed number or the number parsed from the user
1332  * data stored in the first processed operation.
1333  *
1334  * @param       user_data       Dequeued user data.
1335  * @return
1336  *  - The number of operations to be dequeued.
1337  **/
1338 typedef uint32_t (*rte_cryptodev_raw_get_dequeue_count_t)(void *user_data);
1339
1340 /**
1341  * Typedef that the user provided to deal with post dequeue operation, such
1342  * as filling status.
1343  *
1344  * @param       user_data       Dequeued user data.
1345  * @param       index           Index number of the processed descriptor.
1346  * @param       is_op_success   Operation status provided by the driver.
1347  **/
1348 typedef void (*rte_cryptodev_raw_post_dequeue_t)(void *user_data,
1349         uint32_t index, uint8_t is_op_success);
1350
1351 /**
1352  * Dequeue a burst of symmetric crypto processing.
1353  *
1354  * @param       qp                      Driver specific queue pair data.
1355  * @param       drv_ctx                 Driver specific context data.
1356  * @param       get_dequeue_count       User provided callback function to
1357  *                                      obtain dequeue operation count.
1358  * @param       max_nb_to_dequeue       When get_dequeue_count is NULL this
1359  *                                      value is used to pass the maximum
1360  *                                      number of operations to be dequeued.
1361  * @param       post_dequeue            User provided callback function to
1362  *                                      post-process a dequeued operation.
1363  * @param       out_user_data           User data pointer array to be retrieve
1364  *                                      from device queue. In case of
1365  *                                      *is_user_data_array* is set there
1366  *                                      should be enough room to store all
1367  *                                      user data.
1368  * @param       is_user_data_array      Set 1 if every dequeued user data will
1369  *                                      be written into out_user_data array.
1370  *                                      Set 0 if only the first user data will
1371  *                                      be written into out_user_data array.
1372  * @param       n_success               Driver written value to specific the
1373  *                                      total successful operations count.
1374  * @param       dequeue_status          Driver written value to specify the
1375  *                                      dequeue status. Possible values:
1376  *                                      - 1: Successfully dequeued the number
1377  *                                           of operations returned. The user
1378  *                                           data previously set during enqueue
1379  *                                           is stored in the "out_user_data".
1380  *                                      - 0: The number of operations returned
1381  *                                           are completed and the user data is
1382  *                                           stored in the "out_user_data", but
1383  *                                           they are not freed from the queue
1384  *                                           until
1385  *                                           rte_cryptodev_raw_dequeue_done()
1386  *                                           is called.
1387  *                                      - negative integer: Error occurred.
1388  * @return
1389  *   - The number of operations dequeued or completed but not freed from the
1390  *     queue, depends on "dequeue_status" value.
1391  */
1392 typedef uint32_t (*cryptodev_sym_raw_dequeue_burst_t)(void *qp,
1393         uint8_t *drv_ctx,
1394         rte_cryptodev_raw_get_dequeue_count_t get_dequeue_count,
1395         uint32_t max_nb_to_dequeue,
1396         rte_cryptodev_raw_post_dequeue_t post_dequeue,
1397         void **out_user_data, uint8_t is_user_data_array,
1398         uint32_t *n_success, int *dequeue_status);
1399
1400 /**
1401  * Dequeue a symmetric crypto processing.
1402  *
1403  * @param       qp                      Driver specific queue pair data.
1404  * @param       drv_ctx                 Driver specific context data.
1405  * @param       dequeue_status          Driver written value to specify the
1406  *                                      dequeue status. Possible values:
1407  *                                      - 1: Successfully dequeued a operation.
1408  *                                           The user data is returned.
1409  *                                      - 0: The first operation in the queue
1410  *                                           is completed and the user data
1411  *                                           previously set during enqueue is
1412  *                                           returned, but it is not freed from
1413  *                                           the queue until
1414  *                                           rte_cryptodev_raw_dequeue_done() is
1415  *                                           called.
1416  *                                      - negative integer: Error occurred.
1417  * @param       op_status               Driver written value to specify
1418  *                                      operation status.
1419  * @return
1420  *   - The user data pointer retrieved from device queue or NULL if no
1421  *     operation is ready for dequeue.
1422  */
1423 typedef void * (*cryptodev_sym_raw_dequeue_t)(
1424                 void *qp, uint8_t *drv_ctx, int *dequeue_status,
1425                 enum rte_crypto_op_status *op_status);
1426
1427 /**
1428  * Context data for raw data-path API crypto process. The buffer of this
1429  * structure is to be allocated by the user application with the size equal
1430  * or bigger than rte_cryptodev_get_raw_dp_ctx_size() returned value.
1431  */
1432 struct rte_crypto_raw_dp_ctx {
1433         void *qp_data;
1434
1435         cryptodev_sym_raw_enqueue_t enqueue;
1436         cryptodev_sym_raw_enqueue_burst_t enqueue_burst;
1437         cryptodev_sym_raw_operation_done_t enqueue_done;
1438         cryptodev_sym_raw_dequeue_t dequeue;
1439         cryptodev_sym_raw_dequeue_burst_t dequeue_burst;
1440         cryptodev_sym_raw_operation_done_t dequeue_done;
1441
1442         /* Driver specific context data */
1443         __extension__ uint8_t drv_ctx_data[];
1444 };
1445
1446 /**
1447  * Configure raw data-path context data.
1448  *
1449  * NOTE:
1450  * After the context data is configured, the user should call
1451  * rte_cryptodev_raw_attach_session() before using it in
1452  * rte_cryptodev_raw_enqueue/dequeue function call.
1453  *
1454  * @param       dev_id          The device identifier.
1455  * @param       qp_id           The index of the queue pair from which to
1456  *                              retrieve processed packets. The value must be
1457  *                              in the range [0, nb_queue_pair - 1] previously
1458  *                              supplied to rte_cryptodev_configure().
1459  * @param       ctx             The raw data-path context data.
1460  * @param       sess_type       session type.
1461  * @param       session_ctx     Session context data.
1462  * @param       is_update       Set 0 if it is to initialize the ctx.
1463  *                              Set 1 if ctx is initialized and only to update
1464  *                              session context data.
1465  * @return
1466  *   - On success return 0.
1467  *   - On failure return negative integer.
1468  */
1469 __rte_experimental
1470 int
1471 rte_cryptodev_configure_raw_dp_ctx(uint8_t dev_id, uint16_t qp_id,
1472         struct rte_crypto_raw_dp_ctx *ctx,
1473         enum rte_crypto_op_sess_type sess_type,
1474         union rte_cryptodev_session_ctx session_ctx,
1475         uint8_t is_update);
1476
1477 /**
1478  * Enqueue a vectorized operation descriptor into the device queue but the
1479  * driver may or may not start processing until rte_cryptodev_raw_enqueue_done()
1480  * is called.
1481  *
1482  * @param       ctx             The initialized raw data-path context data.
1483  * @param       vec             Vectorized operation descriptor.
1484  * @param       ofs             Start and stop offsets for auth and cipher
1485  *                              operations.
1486  * @param       user_data       The array of user data for dequeue later.
1487  * @param       enqueue_status  Driver written value to specify the
1488  *                              enqueue status. Possible values:
1489  *                              - 1: The number of operations returned are
1490  *                                   enqueued successfully.
1491  *                              - 0: The number of operations returned are
1492  *                                   cached into the queue but are not processed
1493  *                                   until rte_cryptodev_raw_enqueue_done() is
1494  *                                   called.
1495  *                              - negative integer: Error occurred.
1496  * @return
1497  *   - The number of operations in the descriptor successfully enqueued or
1498  *     cached into the queue but not enqueued yet, depends on the
1499  *     "enqueue_status" value.
1500  */
1501 __rte_experimental
1502 uint32_t
1503 rte_cryptodev_raw_enqueue_burst(struct rte_crypto_raw_dp_ctx *ctx,
1504         struct rte_crypto_sym_vec *vec, union rte_crypto_sym_ofs ofs,
1505         void **user_data, int *enqueue_status);
1506
1507 /**
1508  * Enqueue single raw data vector into the device queue but the driver may or
1509  * may not start processing until rte_cryptodev_raw_enqueue_done() is called.
1510  *
1511  * @param       ctx             The initialized raw data-path context data.
1512  * @param       data_vec        The buffer data vector.
1513  * @param       n_data_vecs     Number of buffer data vectors.
1514  * @param       ofs             Start and stop offsets for auth and cipher
1515  *                              operations.
1516  * @param       iv              IV virtual and IOVA addresses
1517  * @param       digest          digest virtual and IOVA addresses
1518  * @param       aad_or_auth_iv  AAD or auth IV virtual and IOVA addresses,
1519  *                              depends on the algorithm used.
1520  * @param       user_data       The user data.
1521  * @return
1522  *   - 1: The data vector is enqueued successfully.
1523  *   - 0: The data vector is cached into the queue but is not processed
1524  *        until rte_cryptodev_raw_enqueue_done() is called.
1525  *   - negative integer: failure.
1526  */
1527 __rte_experimental
1528 static __rte_always_inline int
1529 rte_cryptodev_raw_enqueue(struct rte_crypto_raw_dp_ctx *ctx,
1530         struct rte_crypto_vec *data_vec, uint16_t n_data_vecs,
1531         union rte_crypto_sym_ofs ofs,
1532         struct rte_crypto_va_iova_ptr *iv,
1533         struct rte_crypto_va_iova_ptr *digest,
1534         struct rte_crypto_va_iova_ptr *aad_or_auth_iv,
1535         void *user_data)
1536 {
1537         return (*ctx->enqueue)(ctx->qp_data, ctx->drv_ctx_data, data_vec,
1538                 n_data_vecs, ofs, iv, digest, aad_or_auth_iv, user_data);
1539 }
1540
1541 /**
1542  * Start processing all enqueued operations from last
1543  * rte_cryptodev_configure_raw_dp_ctx() call.
1544  *
1545  * @param       ctx     The initialized raw data-path context data.
1546  * @param       n       The number of operations cached.
1547  * @return
1548  *   - On success return 0.
1549  *   - On failure return negative integer.
1550  */
1551 __rte_experimental
1552 int
1553 rte_cryptodev_raw_enqueue_done(struct rte_crypto_raw_dp_ctx *ctx,
1554                 uint32_t n);
1555
1556 /**
1557  * Dequeue a burst of symmetric crypto processing.
1558  *
1559  * @param       ctx                     The initialized raw data-path context
1560  *                                      data.
1561  * @param       get_dequeue_count       User provided callback function to
1562  *                                      obtain dequeue operation count.
1563  * @param       max_nb_to_dequeue       When get_dequeue_count is NULL this
1564  *                                      value is used to pass the maximum
1565  *                                      number of operations to be dequeued.
1566  * @param       post_dequeue            User provided callback function to
1567  *                                      post-process a dequeued operation.
1568  * @param       out_user_data           User data pointer array to be retrieve
1569  *                                      from device queue. In case of
1570  *                                      *is_user_data_array* is set there
1571  *                                      should be enough room to store all
1572  *                                      user data.
1573  * @param       is_user_data_array      Set 1 if every dequeued user data will
1574  *                                      be written into out_user_data array.
1575  *                                      Set 0 if only the first user data will
1576  *                                      be written into out_user_data array.
1577  * @param       n_success               Driver written value to specific the
1578  *                                      total successful operations count.
1579  * @param       dequeue_status          Driver written value to specify the
1580  *                                      dequeue status. Possible values:
1581  *                                      - 1: Successfully dequeued the number
1582  *                                           of operations returned. The user
1583  *                                           data previously set during enqueue
1584  *                                           is stored in the "out_user_data".
1585  *                                      - 0: The number of operations returned
1586  *                                           are completed and the user data is
1587  *                                           stored in the "out_user_data", but
1588  *                                           they are not freed from the queue
1589  *                                           until
1590  *                                           rte_cryptodev_raw_dequeue_done()
1591  *                                           is called.
1592  *                                      - negative integer: Error occurred.
1593  * @return
1594  *   - The number of operations dequeued or completed but not freed from the
1595  *     queue, depends on "dequeue_status" value.
1596  */
1597 __rte_experimental
1598 uint32_t
1599 rte_cryptodev_raw_dequeue_burst(struct rte_crypto_raw_dp_ctx *ctx,
1600         rte_cryptodev_raw_get_dequeue_count_t get_dequeue_count,
1601         uint32_t max_nb_to_dequeue,
1602         rte_cryptodev_raw_post_dequeue_t post_dequeue,
1603         void **out_user_data, uint8_t is_user_data_array,
1604         uint32_t *n_success, int *dequeue_status);
1605
1606 /**
1607  * Dequeue a symmetric crypto processing.
1608  *
1609  * @param       ctx                     The initialized raw data-path context
1610  *                                      data.
1611  * @param       dequeue_status          Driver written value to specify the
1612  *                                      dequeue status. Possible values:
1613  *                                      - 1: Successfully dequeued a operation.
1614  *                                           The user data is returned.
1615  *                                      - 0: The first operation in the queue
1616  *                                           is completed and the user data
1617  *                                           previously set during enqueue is
1618  *                                           returned, but it is not freed from
1619  *                                           the queue until
1620  *                                           rte_cryptodev_raw_dequeue_done() is
1621  *                                           called.
1622  *                                      - negative integer: Error occurred.
1623  * @param       op_status               Driver written value to specify
1624  *                                      operation status.
1625  * @return
1626  *   - The user data pointer retrieved from device queue or NULL if no
1627  *     operation is ready for dequeue.
1628  */
1629 __rte_experimental
1630 static __rte_always_inline void *
1631 rte_cryptodev_raw_dequeue(struct rte_crypto_raw_dp_ctx *ctx,
1632                 int *dequeue_status, enum rte_crypto_op_status *op_status)
1633 {
1634         return (*ctx->dequeue)(ctx->qp_data, ctx->drv_ctx_data, dequeue_status,
1635                         op_status);
1636 }
1637
1638 /**
1639  * Inform the queue pair dequeue operations is finished.
1640  *
1641  * @param       ctx     The initialized raw data-path context data.
1642  * @param       n       The number of operations.
1643  * @return
1644  *   - On success return 0.
1645  *   - On failure return negative integer.
1646  */
1647 __rte_experimental
1648 int
1649 rte_cryptodev_raw_dequeue_done(struct rte_crypto_raw_dp_ctx *ctx,
1650                 uint32_t n);
1651
1652 /**
1653  * Add a user callback for a given crypto device and queue pair which will be
1654  * called on crypto ops enqueue.
1655  *
1656  * This API configures a function to be called for each burst of crypto ops
1657  * received on a given crypto device queue pair. The return value is a pointer
1658  * that can be used later to remove the callback using
1659  * rte_cryptodev_remove_enq_callback().
1660  *
1661  * Callbacks registered by application would not survive
1662  * rte_cryptodev_configure() as it reinitializes the callback list.
1663  * It is user responsibility to remove all installed callbacks before
1664  * calling rte_cryptodev_configure() to avoid possible memory leakage.
1665  * Application is expected to call add API after rte_cryptodev_configure().
1666  *
1667  * Multiple functions can be registered per queue pair & they are called
1668  * in the order they were added. The API does not restrict on maximum number
1669  * of callbacks.
1670  *
1671  * @param       dev_id          The identifier of the device.
1672  * @param       qp_id           The index of the queue pair on which ops are
1673  *                              to be enqueued for processing. The value
1674  *                              must be in the range [0, nb_queue_pairs - 1]
1675  *                              previously supplied to
1676  *                              *rte_cryptodev_configure*.
1677  * @param       cb_fn           The callback function
1678  * @param       cb_arg          A generic pointer parameter which will be passed
1679  *                              to each invocation of the callback function on
1680  *                              this crypto device and queue pair.
1681  *
1682  * @return
1683  *  - NULL on error & rte_errno will contain the error code.
1684  *  - On success, a pointer value which can later be used to remove the
1685  *    callback.
1686  */
1687
1688 __rte_experimental
1689 struct rte_cryptodev_cb *
1690 rte_cryptodev_add_enq_callback(uint8_t dev_id,
1691                                uint16_t qp_id,
1692                                rte_cryptodev_callback_fn cb_fn,
1693                                void *cb_arg);
1694
1695 /**
1696  * Remove a user callback function for given crypto device and queue pair.
1697  *
1698  * This function is used to remove enqueue callbacks that were added to a
1699  * crypto device queue pair using rte_cryptodev_add_enq_callback().
1700  *
1701  *
1702  *
1703  * @param       dev_id          The identifier of the device.
1704  * @param       qp_id           The index of the queue pair on which ops are
1705  *                              to be enqueued. The value must be in the
1706  *                              range [0, nb_queue_pairs - 1] previously
1707  *                              supplied to *rte_cryptodev_configure*.
1708  * @param       cb              Pointer to user supplied callback created via
1709  *                              rte_cryptodev_add_enq_callback().
1710  *
1711  * @return
1712  *   -  0: Success. Callback was removed.
1713  *   - <0: The dev_id or the qp_id is out of range, or the callback
1714  *         is NULL or not found for the crypto device queue pair.
1715  */
1716
1717 __rte_experimental
1718 int rte_cryptodev_remove_enq_callback(uint8_t dev_id,
1719                                       uint16_t qp_id,
1720                                       struct rte_cryptodev_cb *cb);
1721
1722 /**
1723  * Add a user callback for a given crypto device and queue pair which will be
1724  * called on crypto ops dequeue.
1725  *
1726  * This API configures a function to be called for each burst of crypto ops
1727  * received on a given crypto device queue pair. The return value is a pointer
1728  * that can be used later to remove the callback using
1729  * rte_cryptodev_remove_deq_callback().
1730  *
1731  * Callbacks registered by application would not survive
1732  * rte_cryptodev_configure() as it reinitializes the callback list.
1733  * It is user responsibility to remove all installed callbacks before
1734  * calling rte_cryptodev_configure() to avoid possible memory leakage.
1735  * Application is expected to call add API after rte_cryptodev_configure().
1736  *
1737  * Multiple functions can be registered per queue pair & they are called
1738  * in the order they were added. The API does not restrict on maximum number
1739  * of callbacks.
1740  *
1741  * @param       dev_id          The identifier of the device.
1742  * @param       qp_id           The index of the queue pair on which ops are
1743  *                              to be dequeued. The value must be in the
1744  *                              range [0, nb_queue_pairs - 1] previously
1745  *                              supplied to *rte_cryptodev_configure*.
1746  * @param       cb_fn           The callback function
1747  * @param       cb_arg          A generic pointer parameter which will be passed
1748  *                              to each invocation of the callback function on
1749  *                              this crypto device and queue pair.
1750  *
1751  * @return
1752  *   - NULL on error & rte_errno will contain the error code.
1753  *   - On success, a pointer value which can later be used to remove the
1754  *     callback.
1755  */
1756
1757 __rte_experimental
1758 struct rte_cryptodev_cb *
1759 rte_cryptodev_add_deq_callback(uint8_t dev_id,
1760                                uint16_t qp_id,
1761                                rte_cryptodev_callback_fn cb_fn,
1762                                void *cb_arg);
1763
1764 /**
1765  * Remove a user callback function for given crypto device and queue pair.
1766  *
1767  * This function is used to remove dequeue callbacks that were added to a
1768  * crypto device queue pair using rte_cryptodev_add_deq_callback().
1769  *
1770  *
1771  *
1772  * @param       dev_id          The identifier of the device.
1773  * @param       qp_id           The index of the queue pair on which ops are
1774  *                              to be dequeued. The value must be in the
1775  *                              range [0, nb_queue_pairs - 1] previously
1776  *                              supplied to *rte_cryptodev_configure*.
1777  * @param       cb              Pointer to user supplied callback created via
1778  *                              rte_cryptodev_add_deq_callback().
1779  *
1780  * @return
1781  *   -  0: Success. Callback was removed.
1782  *   - <0: The dev_id or the qp_id is out of range, or the callback
1783  *         is NULL or not found for the crypto device queue pair.
1784  */
1785 __rte_experimental
1786 int rte_cryptodev_remove_deq_callback(uint8_t dev_id,
1787                                       uint16_t qp_id,
1788                                       struct rte_cryptodev_cb *cb);
1789
1790 #include <rte_cryptodev_core.h>
1791 /**
1792  *
1793  * Dequeue a burst of processed crypto operations from a queue on the crypto
1794  * device. The dequeued operation are stored in *rte_crypto_op* structures
1795  * whose pointers are supplied in the *ops* array.
1796  *
1797  * The rte_cryptodev_dequeue_burst() function returns the number of ops
1798  * actually dequeued, which is the number of *rte_crypto_op* data structures
1799  * effectively supplied into the *ops* array.
1800  *
1801  * A return value equal to *nb_ops* indicates that the queue contained
1802  * at least *nb_ops* operations, and this is likely to signify that other
1803  * processed operations remain in the devices output queue. Applications
1804  * implementing a "retrieve as many processed operations as possible" policy
1805  * can check this specific case and keep invoking the
1806  * rte_cryptodev_dequeue_burst() function until a value less than
1807  * *nb_ops* is returned.
1808  *
1809  * The rte_cryptodev_dequeue_burst() function does not provide any error
1810  * notification to avoid the corresponding overhead.
1811  *
1812  * @param       dev_id          The symmetric crypto device identifier
1813  * @param       qp_id           The index of the queue pair from which to
1814  *                              retrieve processed packets. The value must be
1815  *                              in the range [0, nb_queue_pair - 1] previously
1816  *                              supplied to rte_cryptodev_configure().
1817  * @param       ops             The address of an array of pointers to
1818  *                              *rte_crypto_op* structures that must be
1819  *                              large enough to store *nb_ops* pointers in it.
1820  * @param       nb_ops          The maximum number of operations to dequeue.
1821  *
1822  * @return
1823  *   - The number of operations actually dequeued, which is the number
1824  *   of pointers to *rte_crypto_op* structures effectively supplied to the
1825  *   *ops* array.
1826  */
1827 static inline uint16_t
1828 rte_cryptodev_dequeue_burst(uint8_t dev_id, uint16_t qp_id,
1829                 struct rte_crypto_op **ops, uint16_t nb_ops)
1830 {
1831         const struct rte_crypto_fp_ops *fp_ops;
1832         void *qp;
1833
1834         rte_cryptodev_trace_dequeue_burst(dev_id, qp_id, (void **)ops, nb_ops);
1835
1836         fp_ops = &rte_crypto_fp_ops[dev_id];
1837         qp = fp_ops->qp.data[qp_id];
1838
1839         nb_ops = fp_ops->dequeue_burst(qp, ops, nb_ops);
1840
1841 #ifdef RTE_CRYPTO_CALLBACKS
1842         if (unlikely(fp_ops->qp.deq_cb != NULL)) {
1843                 struct rte_cryptodev_cb_rcu *list;
1844                 struct rte_cryptodev_cb *cb;
1845
1846                 /* __ATOMIC_RELEASE memory order was used when the
1847                  * call back was inserted into the list.
1848                  * Since there is a clear dependency between loading
1849                  * cb and cb->fn/cb->next, __ATOMIC_ACQUIRE memory order is
1850                  * not required.
1851                  */
1852                 list = &fp_ops->qp.deq_cb[qp_id];
1853                 rte_rcu_qsbr_thread_online(list->qsbr, 0);
1854                 cb = __atomic_load_n(&list->next, __ATOMIC_RELAXED);
1855
1856                 while (cb != NULL) {
1857                         nb_ops = cb->fn(dev_id, qp_id, ops, nb_ops,
1858                                         cb->arg);
1859                         cb = cb->next;
1860                 };
1861
1862                 rte_rcu_qsbr_thread_offline(list->qsbr, 0);
1863         }
1864 #endif
1865         return nb_ops;
1866 }
1867
1868 /**
1869  * Enqueue a burst of operations for processing on a crypto device.
1870  *
1871  * The rte_cryptodev_enqueue_burst() function is invoked to place
1872  * crypto operations on the queue *qp_id* of the device designated by
1873  * its *dev_id*.
1874  *
1875  * The *nb_ops* parameter is the number of operations to process which are
1876  * supplied in the *ops* array of *rte_crypto_op* structures.
1877  *
1878  * The rte_cryptodev_enqueue_burst() function returns the number of
1879  * operations it actually enqueued for processing. A return value equal to
1880  * *nb_ops* means that all packets have been enqueued.
1881  *
1882  * @param       dev_id          The identifier of the device.
1883  * @param       qp_id           The index of the queue pair which packets are
1884  *                              to be enqueued for processing. The value
1885  *                              must be in the range [0, nb_queue_pairs - 1]
1886  *                              previously supplied to
1887  *                               *rte_cryptodev_configure*.
1888  * @param       ops             The address of an array of *nb_ops* pointers
1889  *                              to *rte_crypto_op* structures which contain
1890  *                              the crypto operations to be processed.
1891  * @param       nb_ops          The number of operations to process.
1892  *
1893  * @return
1894  * The number of operations actually enqueued on the crypto device. The return
1895  * value can be less than the value of the *nb_ops* parameter when the
1896  * crypto devices queue is full or if invalid parameters are specified in
1897  * a *rte_crypto_op*.
1898  */
1899 static inline uint16_t
1900 rte_cryptodev_enqueue_burst(uint8_t dev_id, uint16_t qp_id,
1901                 struct rte_crypto_op **ops, uint16_t nb_ops)
1902 {
1903         const struct rte_crypto_fp_ops *fp_ops;
1904         void *qp;
1905
1906         fp_ops = &rte_crypto_fp_ops[dev_id];
1907         qp = fp_ops->qp.data[qp_id];
1908 #ifdef RTE_CRYPTO_CALLBACKS
1909         if (unlikely(fp_ops->qp.enq_cb != NULL)) {
1910                 struct rte_cryptodev_cb_rcu *list;
1911                 struct rte_cryptodev_cb *cb;
1912
1913                 /* __ATOMIC_RELEASE memory order was used when the
1914                  * call back was inserted into the list.
1915                  * Since there is a clear dependency between loading
1916                  * cb and cb->fn/cb->next, __ATOMIC_ACQUIRE memory order is
1917                  * not required.
1918                  */
1919                 list = &fp_ops->qp.enq_cb[qp_id];
1920                 rte_rcu_qsbr_thread_online(list->qsbr, 0);
1921                 cb = __atomic_load_n(&list->next, __ATOMIC_RELAXED);
1922
1923                 while (cb != NULL) {
1924                         nb_ops = cb->fn(dev_id, qp_id, ops, nb_ops,
1925                                         cb->arg);
1926                         cb = cb->next;
1927                 };
1928
1929                 rte_rcu_qsbr_thread_offline(list->qsbr, 0);
1930         }
1931 #endif
1932
1933         rte_cryptodev_trace_enqueue_burst(dev_id, qp_id, (void **)ops, nb_ops);
1934         return fp_ops->enqueue_burst(qp, ops, nb_ops);
1935 }
1936
1937
1938
1939 #ifdef __cplusplus
1940 }
1941 #endif
1942
1943 #endif /* _RTE_CRYPTODEV_H_ */