cryptodev: add APIs to assist PMD initialisation
[dpdk.git] / lib / librte_cryptodev / rte_cryptodev.h
1 /*-
2  *
3  *   Copyright(c) 2015-2017 Intel Corporation. All rights reserved.
4  *
5  *   Redistribution and use in source and binary forms, with or without
6  *   modification, are permitted provided that the following conditions
7  *   are met:
8  *
9  *     * Redistributions of source code must retain the above copyright
10  *       notice, this list of conditions and the following disclaimer.
11  *     * Redistributions in binary form must reproduce the above copyright
12  *       notice, this list of conditions and the following disclaimer in
13  *       the documentation and/or other materials provided with the
14  *       distribution.
15  *     * Neither the name of Intel Corporation nor the names of its
16  *       contributors may be used to endorse or promote products derived
17  *       from this software without specific prior written permission.
18  *
19  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30  */
31
32 #ifndef _RTE_CRYPTODEV_H_
33 #define _RTE_CRYPTODEV_H_
34
35 /**
36  * @file rte_cryptodev.h
37  *
38  * RTE Cryptographic Device APIs
39  *
40  * Defines RTE Crypto Device APIs for the provisioning of cipher and
41  * authentication operations.
42  */
43
44 #ifdef __cplusplus
45 extern "C" {
46 #endif
47
48 #include "rte_kvargs.h"
49 #include "rte_crypto.h"
50 #include "rte_dev.h"
51 #include <rte_common.h>
52
53 extern const char **rte_cyptodev_names;
54
55 /* Logging Macros */
56
57 #define CDEV_LOG_ERR(...) \
58         RTE_LOG(ERR, CRYPTODEV, \
59                 RTE_FMT("%s() line %u: " RTE_FMT_HEAD(__VA_ARGS__,) "\n", \
60                         __func__, __LINE__, RTE_FMT_TAIL(__VA_ARGS__,)))
61
62 #define CDEV_LOG_INFO(...) \
63         RTE_LOG(INFO, CRYPTODEV, \
64                 RTE_FMT(RTE_FMT_HEAD(__VA_ARGS__,) "\n", \
65                         RTE_FMT_TAIL(__VA_ARGS__,)))
66
67 #ifdef RTE_LIBRTE_CRYPTODEV_DEBUG
68 #define CDEV_LOG_DEBUG(...) \
69         RTE_LOG(DEBUG, CRYPTODEV, \
70                 RTE_FMT("%s() line %u: " RTE_FMT_HEAD(__VA_ARGS__,) "\n", \
71                         __func__, __LINE__, RTE_FMT_TAIL(__VA_ARGS__,)))
72
73 #define CDEV_PMD_TRACE(...) \
74         RTE_LOG(DEBUG, CRYPTODEV, \
75                 RTE_FMT("[%s] %s: " RTE_FMT_HEAD(__VA_ARGS__,) "\n", \
76                         dev, __func__, RTE_FMT_TAIL(__VA_ARGS__,)))
77
78 #else
79 #define CDEV_LOG_DEBUG(...) (void)0
80 #define CDEV_PMD_TRACE(...) (void)0
81 #endif
82
83
84
85 /**
86  * A macro that points to an offset from the start
87  * of the crypto operation structure (rte_crypto_op)
88  *
89  * The returned pointer is cast to type t.
90  *
91  * @param c
92  *   The crypto operation.
93  * @param o
94  *   The offset from the start of the crypto operation.
95  * @param t
96  *   The type to cast the result into.
97  */
98 #define rte_crypto_op_ctod_offset(c, t, o)      \
99         ((t)((char *)(c) + (o)))
100
101 /**
102  * A macro that returns the physical address that points
103  * to an offset from the start of the crypto operation
104  * (rte_crypto_op)
105  *
106  * @param c
107  *   The crypto operation.
108  * @param o
109  *   The offset from the start of the crypto operation
110  *   to calculate address from.
111  */
112 #define rte_crypto_op_ctophys_offset(c, o)      \
113         (phys_addr_t)((c)->phys_addr + (o))
114
115 /**
116  * Crypto parameters range description
117  */
118 struct rte_crypto_param_range {
119         uint16_t min;   /**< minimum size */
120         uint16_t max;   /**< maximum size */
121         uint16_t increment;
122         /**< if a range of sizes are supported,
123          * this parameter is used to indicate
124          * increments in byte size that are supported
125          * between the minimum and maximum
126          */
127 };
128
129 /**
130  * Symmetric Crypto Capability
131  */
132 struct rte_cryptodev_symmetric_capability {
133         enum rte_crypto_sym_xform_type xform_type;
134         /**< Transform type : Authentication / Cipher / AEAD */
135         RTE_STD_C11
136         union {
137                 struct {
138                         enum rte_crypto_auth_algorithm algo;
139                         /**< authentication algorithm */
140                         uint16_t block_size;
141                         /**< algorithm block size */
142                         struct rte_crypto_param_range key_size;
143                         /**< auth key size range */
144                         struct rte_crypto_param_range digest_size;
145                         /**< digest size range */
146                         struct rte_crypto_param_range aad_size;
147                         /**< Additional authentication data size range */
148                         struct rte_crypto_param_range iv_size;
149                         /**< Initialisation vector data size range */
150                 } auth;
151                 /**< Symmetric Authentication transform capabilities */
152                 struct {
153                         enum rte_crypto_cipher_algorithm algo;
154                         /**< cipher algorithm */
155                         uint16_t block_size;
156                         /**< algorithm block size */
157                         struct rte_crypto_param_range key_size;
158                         /**< cipher key size range */
159                         struct rte_crypto_param_range iv_size;
160                         /**< Initialisation vector data size range */
161                 } cipher;
162                 /**< Symmetric Cipher transform capabilities */
163                 struct {
164                         enum rte_crypto_aead_algorithm algo;
165                         /**< AEAD algorithm */
166                         uint16_t block_size;
167                         /**< algorithm block size */
168                         struct rte_crypto_param_range key_size;
169                         /**< AEAD key size range */
170                         struct rte_crypto_param_range digest_size;
171                         /**< digest size range */
172                         struct rte_crypto_param_range aad_size;
173                         /**< Additional authentication data size range */
174                         struct rte_crypto_param_range iv_size;
175                         /**< Initialisation vector data size range */
176                 } aead;
177         };
178 };
179
180 /** Structure used to capture a capability of a crypto device */
181 struct rte_cryptodev_capabilities {
182         enum rte_crypto_op_type op;
183         /**< Operation type */
184
185         RTE_STD_C11
186         union {
187                 struct rte_cryptodev_symmetric_capability sym;
188                 /**< Symmetric operation capability parameters */
189         };
190 };
191
192 /** Structure used to describe crypto algorithms */
193 struct rte_cryptodev_sym_capability_idx {
194         enum rte_crypto_sym_xform_type type;
195         union {
196                 enum rte_crypto_cipher_algorithm cipher;
197                 enum rte_crypto_auth_algorithm auth;
198                 enum rte_crypto_aead_algorithm aead;
199         } algo;
200 };
201
202 /**
203  *  Provide capabilities available for defined device and algorithm
204  *
205  * @param       dev_id          The identifier of the device.
206  * @param       idx             Description of crypto algorithms.
207  *
208  * @return
209  *   - Return description of the symmetric crypto capability if exist.
210  *   - Return NULL if the capability not exist.
211  */
212 const struct rte_cryptodev_symmetric_capability *
213 rte_cryptodev_sym_capability_get(uint8_t dev_id,
214                 const struct rte_cryptodev_sym_capability_idx *idx);
215
216 /**
217  * Check if key size and initial vector are supported
218  * in crypto cipher capability
219  *
220  * @param       capability      Description of the symmetric crypto capability.
221  * @param       key_size        Cipher key size.
222  * @param       iv_size         Cipher initial vector size.
223  *
224  * @return
225  *   - Return 0 if the parameters are in range of the capability.
226  *   - Return -1 if the parameters are out of range of the capability.
227  */
228 int
229 rte_cryptodev_sym_capability_check_cipher(
230                 const struct rte_cryptodev_symmetric_capability *capability,
231                 uint16_t key_size, uint16_t iv_size);
232
233 /**
234  * Check if key size and initial vector are supported
235  * in crypto auth capability
236  *
237  * @param       capability      Description of the symmetric crypto capability.
238  * @param       key_size        Auth key size.
239  * @param       digest_size     Auth digest size.
240  * @param       iv_size         Auth initial vector size.
241  *
242  * @return
243  *   - Return 0 if the parameters are in range of the capability.
244  *   - Return -1 if the parameters are out of range of the capability.
245  */
246 int
247 rte_cryptodev_sym_capability_check_auth(
248                 const struct rte_cryptodev_symmetric_capability *capability,
249                 uint16_t key_size, uint16_t digest_size, uint16_t iv_size);
250
251 /**
252  * Check if key, digest, AAD and initial vector sizes are supported
253  * in crypto AEAD capability
254  *
255  * @param       capability      Description of the symmetric crypto capability.
256  * @param       key_size        AEAD key size.
257  * @param       digest_size     AEAD digest size.
258  * @param       aad_size        AEAD AAD size.
259  * @param       iv_size         AEAD IV size.
260  *
261  * @return
262  *   - Return 0 if the parameters are in range of the capability.
263  *   - Return -1 if the parameters are out of range of the capability.
264  */
265 int
266 rte_cryptodev_sym_capability_check_aead(
267                 const struct rte_cryptodev_symmetric_capability *capability,
268                 uint16_t key_size, uint16_t digest_size, uint16_t aad_size,
269                 uint16_t iv_size);
270
271 /**
272  * Provide the cipher algorithm enum, given an algorithm string
273  *
274  * @param       algo_enum       A pointer to the cipher algorithm
275  *                              enum to be filled
276  * @param       algo_string     Authentication algo string
277  *
278  * @return
279  * - Return -1 if string is not valid
280  * - Return 0 is the string is valid
281  */
282 int
283 rte_cryptodev_get_cipher_algo_enum(enum rte_crypto_cipher_algorithm *algo_enum,
284                 const char *algo_string);
285
286 /**
287  * Provide the authentication algorithm enum, given an algorithm string
288  *
289  * @param       algo_enum       A pointer to the authentication algorithm
290  *                              enum to be filled
291  * @param       algo_string     Authentication algo string
292  *
293  * @return
294  * - Return -1 if string is not valid
295  * - Return 0 is the string is valid
296  */
297 int
298 rte_cryptodev_get_auth_algo_enum(enum rte_crypto_auth_algorithm *algo_enum,
299                 const char *algo_string);
300
301 /**
302  * Provide the AEAD algorithm enum, given an algorithm string
303  *
304  * @param       algo_enum       A pointer to the AEAD algorithm
305  *                              enum to be filled
306  * @param       algo_string     AEAD algorithm string
307  *
308  * @return
309  * - Return -1 if string is not valid
310  * - Return 0 is the string is valid
311  */
312 int
313 rte_cryptodev_get_aead_algo_enum(enum rte_crypto_aead_algorithm *algo_enum,
314                 const char *algo_string);
315
316 /** Macro used at end of crypto PMD list */
317 #define RTE_CRYPTODEV_END_OF_CAPABILITIES_LIST() \
318         { RTE_CRYPTO_OP_TYPE_UNDEFINED }
319
320
321 /**
322  * Crypto device supported feature flags
323  *
324  * Note:
325  * New features flags should be added to the end of the list
326  *
327  * Keep these flags synchronised with rte_cryptodev_get_feature_name()
328  */
329 #define RTE_CRYPTODEV_FF_SYMMETRIC_CRYPTO       (1ULL << 0)
330 /**< Symmetric crypto operations are supported */
331 #define RTE_CRYPTODEV_FF_ASYMMETRIC_CRYPTO      (1ULL << 1)
332 /**< Asymmetric crypto operations are supported */
333 #define RTE_CRYPTODEV_FF_SYM_OPERATION_CHAINING (1ULL << 2)
334 /**< Chaining symmetric crypto operations are supported */
335 #define RTE_CRYPTODEV_FF_CPU_SSE                (1ULL << 3)
336 /**< Utilises CPU SIMD SSE instructions */
337 #define RTE_CRYPTODEV_FF_CPU_AVX                (1ULL << 4)
338 /**< Utilises CPU SIMD AVX instructions */
339 #define RTE_CRYPTODEV_FF_CPU_AVX2               (1ULL << 5)
340 /**< Utilises CPU SIMD AVX2 instructions */
341 #define RTE_CRYPTODEV_FF_CPU_AESNI              (1ULL << 6)
342 /**< Utilises CPU AES-NI instructions */
343 #define RTE_CRYPTODEV_FF_HW_ACCELERATED         (1ULL << 7)
344 /**< Operations are off-loaded to an external hardware accelerator */
345 #define RTE_CRYPTODEV_FF_CPU_AVX512             (1ULL << 8)
346 /**< Utilises CPU SIMD AVX512 instructions */
347 #define RTE_CRYPTODEV_FF_MBUF_SCATTER_GATHER    (1ULL << 9)
348 /**< Scatter-gather mbufs are supported */
349 #define RTE_CRYPTODEV_FF_CPU_NEON               (1ULL << 10)
350 /**< Utilises CPU NEON instructions */
351 #define RTE_CRYPTODEV_FF_CPU_ARM_CE             (1ULL << 11)
352 /**< Utilises ARM CPU Cryptographic Extensions */
353
354
355 /**
356  * Get the name of a crypto device feature flag
357  *
358  * @param       flag    The mask describing the flag.
359  *
360  * @return
361  *   The name of this flag, or NULL if it's not a valid feature flag.
362  */
363
364 extern const char *
365 rte_cryptodev_get_feature_name(uint64_t flag);
366
367 /**  Crypto device information */
368 struct rte_cryptodev_info {
369         const char *driver_name;                /**< Driver name. */
370         uint8_t driver_id;                      /**< Driver identifier */
371         struct rte_pci_device *pci_dev;         /**< PCI information. */
372
373         uint64_t feature_flags;                 /**< Feature flags */
374
375         const struct rte_cryptodev_capabilities *capabilities;
376         /**< Array of devices supported capabilities */
377
378         unsigned max_nb_queue_pairs;
379         /**< Maximum number of queues pairs supported by device. */
380
381         struct {
382                 unsigned max_nb_sessions;
383                 /**< Maximum number of sessions supported by device. */
384                 unsigned int max_nb_sessions_per_qp;
385                 /**< Maximum number of sessions per queue pair.
386                  * Default 0 for infinite sessions
387                  */
388         } sym;
389 };
390
391 #define RTE_CRYPTODEV_DETACHED  (0)
392 #define RTE_CRYPTODEV_ATTACHED  (1)
393
394 /** Definitions of Crypto device event types */
395 enum rte_cryptodev_event_type {
396         RTE_CRYPTODEV_EVENT_UNKNOWN,    /**< unknown event type */
397         RTE_CRYPTODEV_EVENT_ERROR,      /**< error interrupt event */
398         RTE_CRYPTODEV_EVENT_MAX         /**< max value of this enum */
399 };
400
401 /** Crypto device queue pair configuration structure. */
402 struct rte_cryptodev_qp_conf {
403         uint32_t nb_descriptors; /**< Number of descriptors per queue pair */
404 };
405
406 /**
407  * Typedef for application callback function to be registered by application
408  * software for notification of device events
409  *
410  * @param       dev_id  Crypto device identifier
411  * @param       event   Crypto device event to register for notification of.
412  * @param       cb_arg  User specified parameter to be passed as to passed to
413  *                      users callback function.
414  */
415 typedef void (*rte_cryptodev_cb_fn)(uint8_t dev_id,
416                 enum rte_cryptodev_event_type event, void *cb_arg);
417
418
419 /** Crypto Device statistics */
420 struct rte_cryptodev_stats {
421         uint64_t enqueued_count;
422         /**< Count of all operations enqueued */
423         uint64_t dequeued_count;
424         /**< Count of all operations dequeued */
425
426         uint64_t enqueue_err_count;
427         /**< Total error count on operations enqueued */
428         uint64_t dequeue_err_count;
429         /**< Total error count on operations dequeued */
430 };
431
432 #define RTE_CRYPTODEV_NAME_MAX_LEN      (64)
433 /**< Max length of name of crypto PMD */
434
435 /**
436  * @deprecated
437  *
438  * Create a virtual crypto device
439  *
440  * @param       name    Cryptodev PMD name of device to be created.
441  * @param       args    Options arguments for device.
442  *
443  * @return
444  * - On successful creation of the cryptodev the device index is returned,
445  *   which will be between 0 and rte_cryptodev_count().
446  * - In the case of a failure, returns -1.
447  */
448 __rte_deprecated
449 extern int
450 rte_cryptodev_create_vdev(const char *name, const char *args);
451
452 /**
453  * Get the device identifier for the named crypto device.
454  *
455  * @param       name    device name to select the device structure.
456  *
457  * @return
458  *   - Returns crypto device identifier on success.
459  *   - Return -1 on failure to find named crypto device.
460  */
461 extern int
462 rte_cryptodev_get_dev_id(const char *name);
463
464 /**
465  * Get the crypto device name given a device identifier.
466  *
467  * @param dev_id
468  *   The identifier of the device
469  *
470  * @return
471  *   - Returns crypto device name.
472  *   - Returns NULL if crypto device is not present.
473  */
474 extern const char *
475 rte_cryptodev_name_get(uint8_t dev_id);
476
477 /**
478  * Get the total number of crypto devices that have been successfully
479  * initialised.
480  *
481  * @return
482  *   - The total number of usable crypto devices.
483  */
484 extern uint8_t
485 rte_cryptodev_count(void);
486
487 /**
488  * Get number of crypto device defined type.
489  *
490  * @param       driver_id       driver identifier.
491  *
492  * @return
493  *   Returns number of crypto device.
494  */
495 extern uint8_t
496 rte_cryptodev_device_count_by_driver(uint8_t driver_id);
497
498 /**
499  * Get number and identifiers of attached crypto devices that
500  * use the same crypto driver.
501  *
502  * @param       driver_name     driver name.
503  * @param       devices         output devices identifiers.
504  * @param       nb_devices      maximal number of devices.
505  *
506  * @return
507  *   Returns number of attached crypto device.
508  */
509 uint8_t
510 rte_cryptodev_devices_get(const char *driver_name, uint8_t *devices,
511                 uint8_t nb_devices);
512 /*
513  * Return the NUMA socket to which a device is connected
514  *
515  * @param dev_id
516  *   The identifier of the device
517  * @return
518  *   The NUMA socket id to which the device is connected or
519  *   a default of zero if the socket could not be determined.
520  *   -1 if returned is the dev_id value is out of range.
521  */
522 extern int
523 rte_cryptodev_socket_id(uint8_t dev_id);
524
525 /** Crypto device configuration structure */
526 struct rte_cryptodev_config {
527         int socket_id;                  /**< Socket to allocate resources on */
528         uint16_t nb_queue_pairs;
529         /**< Number of queue pairs to configure on device */
530 };
531
532 /**
533  * Configure a device.
534  *
535  * This function must be invoked first before any other function in the
536  * API. This function can also be re-invoked when a device is in the
537  * stopped state.
538  *
539  * @param       dev_id          The identifier of the device to configure.
540  * @param       config          The crypto device configuration structure.
541  *
542  * @return
543  *   - 0: Success, device configured.
544  *   - <0: Error code returned by the driver configuration function.
545  */
546 extern int
547 rte_cryptodev_configure(uint8_t dev_id, struct rte_cryptodev_config *config);
548
549 /**
550  * Start an device.
551  *
552  * The device start step is the last one and consists of setting the configured
553  * offload features and in starting the transmit and the receive units of the
554  * device.
555  * On success, all basic functions exported by the API (link status,
556  * receive/transmit, and so on) can be invoked.
557  *
558  * @param dev_id
559  *   The identifier of the device.
560  * @return
561  *   - 0: Success, device started.
562  *   - <0: Error code of the driver device start function.
563  */
564 extern int
565 rte_cryptodev_start(uint8_t dev_id);
566
567 /**
568  * Stop an device. The device can be restarted with a call to
569  * rte_cryptodev_start()
570  *
571  * @param       dev_id          The identifier of the device.
572  */
573 extern void
574 rte_cryptodev_stop(uint8_t dev_id);
575
576 /**
577  * Close an device. The device cannot be restarted!
578  *
579  * @param       dev_id          The identifier of the device.
580  *
581  * @return
582  *  - 0 on successfully closing device
583  *  - <0 on failure to close device
584  */
585 extern int
586 rte_cryptodev_close(uint8_t dev_id);
587
588 /**
589  * Allocate and set up a receive queue pair for a device.
590  *
591  *
592  * @param       dev_id          The identifier of the device.
593  * @param       queue_pair_id   The index of the queue pairs to set up. The
594  *                              value must be in the range [0, nb_queue_pair
595  *                              - 1] previously supplied to
596  *                              rte_cryptodev_configure().
597  * @param       qp_conf         The pointer to the configuration data to be
598  *                              used for the queue pair. NULL value is
599  *                              allowed, in which case default configuration
600  *                              will be used.
601  * @param       socket_id       The *socket_id* argument is the socket
602  *                              identifier in case of NUMA. The value can be
603  *                              *SOCKET_ID_ANY* if there is no NUMA constraint
604  *                              for the DMA memory allocated for the receive
605  *                              queue pair.
606  * @param       session_pool    Pointer to device session mempool, used
607  *                              for session-less operations.
608  *
609  * @return
610  *   - 0: Success, queue pair correctly set up.
611  *   - <0: Queue pair configuration failed
612  */
613 extern int
614 rte_cryptodev_queue_pair_setup(uint8_t dev_id, uint16_t queue_pair_id,
615                 const struct rte_cryptodev_qp_conf *qp_conf, int socket_id,
616                 struct rte_mempool *session_pool);
617
618 /**
619  * Start a specified queue pair of a device. It is used
620  * when deferred_start flag of the specified queue is true.
621  *
622  * @param       dev_id          The identifier of the device
623  * @param       queue_pair_id   The index of the queue pair to start. The value
624  *                              must be in the range [0, nb_queue_pair - 1]
625  *                              previously supplied to
626  *                              rte_crypto_dev_configure().
627  * @return
628  *   - 0: Success, the transmit queue is correctly set up.
629  *   - -EINVAL: The dev_id or the queue_id out of range.
630  *   - -ENOTSUP: The function not supported in PMD driver.
631  */
632 extern int
633 rte_cryptodev_queue_pair_start(uint8_t dev_id, uint16_t queue_pair_id);
634
635 /**
636  * Stop specified queue pair of a device
637  *
638  * @param       dev_id          The identifier of the device
639  * @param       queue_pair_id   The index of the queue pair to stop. The value
640  *                              must be in the range [0, nb_queue_pair - 1]
641  *                              previously supplied to
642  *                              rte_cryptodev_configure().
643  * @return
644  *   - 0: Success, the transmit queue is correctly set up.
645  *   - -EINVAL: The dev_id or the queue_id out of range.
646  *   - -ENOTSUP: The function not supported in PMD driver.
647  */
648 extern int
649 rte_cryptodev_queue_pair_stop(uint8_t dev_id, uint16_t queue_pair_id);
650
651 /**
652  * Get the number of queue pairs on a specific crypto device
653  *
654  * @param       dev_id          Crypto device identifier.
655  * @return
656  *   - The number of configured queue pairs.
657  */
658 extern uint16_t
659 rte_cryptodev_queue_pair_count(uint8_t dev_id);
660
661
662 /**
663  * Retrieve the general I/O statistics of a device.
664  *
665  * @param       dev_id          The identifier of the device.
666  * @param       stats           A pointer to a structure of type
667  *                              *rte_cryptodev_stats* to be filled with the
668  *                              values of device counters.
669  * @return
670  *   - Zero if successful.
671  *   - Non-zero otherwise.
672  */
673 extern int
674 rte_cryptodev_stats_get(uint8_t dev_id, struct rte_cryptodev_stats *stats);
675
676 /**
677  * Reset the general I/O statistics of a device.
678  *
679  * @param       dev_id          The identifier of the device.
680  */
681 extern void
682 rte_cryptodev_stats_reset(uint8_t dev_id);
683
684 /**
685  * Retrieve the contextual information of a device.
686  *
687  * @param       dev_id          The identifier of the device.
688  * @param       dev_info        A pointer to a structure of type
689  *                              *rte_cryptodev_info* to be filled with the
690  *                              contextual information of the device.
691  */
692 extern void
693 rte_cryptodev_info_get(uint8_t dev_id, struct rte_cryptodev_info *dev_info);
694
695
696 /**
697  * Register a callback function for specific device id.
698  *
699  * @param       dev_id          Device id.
700  * @param       event           Event interested.
701  * @param       cb_fn           User supplied callback function to be called.
702  * @param       cb_arg          Pointer to the parameters for the registered
703  *                              callback.
704  *
705  * @return
706  *  - On success, zero.
707  *  - On failure, a negative value.
708  */
709 extern int
710 rte_cryptodev_callback_register(uint8_t dev_id,
711                 enum rte_cryptodev_event_type event,
712                 rte_cryptodev_cb_fn cb_fn, void *cb_arg);
713
714 /**
715  * Unregister a callback function for specific device id.
716  *
717  * @param       dev_id          The device identifier.
718  * @param       event           Event interested.
719  * @param       cb_fn           User supplied callback function to be called.
720  * @param       cb_arg          Pointer to the parameters for the registered
721  *                              callback.
722  *
723  * @return
724  *  - On success, zero.
725  *  - On failure, a negative value.
726  */
727 extern int
728 rte_cryptodev_callback_unregister(uint8_t dev_id,
729                 enum rte_cryptodev_event_type event,
730                 rte_cryptodev_cb_fn cb_fn, void *cb_arg);
731
732
733 typedef uint16_t (*dequeue_pkt_burst_t)(void *qp,
734                 struct rte_crypto_op **ops,     uint16_t nb_ops);
735 /**< Dequeue processed packets from queue pair of a device. */
736
737 typedef uint16_t (*enqueue_pkt_burst_t)(void *qp,
738                 struct rte_crypto_op **ops,     uint16_t nb_ops);
739 /**< Enqueue packets for processing on queue pair of a device. */
740
741
742
743
744 struct rte_cryptodev_callback;
745
746 /** Structure to keep track of registered callbacks */
747 TAILQ_HEAD(rte_cryptodev_cb_list, rte_cryptodev_callback);
748
749 /** The data structure associated with each crypto device. */
750 struct rte_cryptodev {
751         dequeue_pkt_burst_t dequeue_burst;
752         /**< Pointer to PMD receive function. */
753         enqueue_pkt_burst_t enqueue_burst;
754         /**< Pointer to PMD transmit function. */
755
756         struct rte_cryptodev_data *data;
757         /**< Pointer to device data */
758         struct rte_cryptodev_ops *dev_ops;
759         /**< Functions exported by PMD */
760         uint64_t feature_flags;
761         /**< Supported features */
762         struct rte_device *device;
763         /**< Backing device */
764
765         uint8_t driver_id;
766         /**< Crypto driver identifier*/
767
768         struct rte_cryptodev_cb_list link_intr_cbs;
769         /**< User application callback for interrupts if present */
770
771         __extension__
772         uint8_t attached : 1;
773         /**< Flag indicating the device is attached */
774 } __rte_cache_aligned;
775
776 /**
777  *
778  * The data part, with no function pointers, associated with each device.
779  *
780  * This structure is safe to place in shared memory to be common among
781  * different processes in a multi-process configuration.
782  */
783 struct rte_cryptodev_data {
784         uint8_t dev_id;
785         /**< Device ID for this instance */
786         uint8_t socket_id;
787         /**< Socket ID where memory is allocated */
788         char name[RTE_CRYPTODEV_NAME_MAX_LEN];
789         /**< Unique identifier name */
790
791         __extension__
792         uint8_t dev_started : 1;
793         /**< Device state: STARTED(1)/STOPPED(0) */
794
795         struct rte_mempool *session_pool;
796         /**< Session memory pool */
797         void **queue_pairs;
798         /**< Array of pointers to queue pairs. */
799         uint16_t nb_queue_pairs;
800         /**< Number of device queue pairs. */
801
802         void *dev_private;
803         /**< PMD-specific private data */
804 } __rte_cache_aligned;
805
806 extern struct rte_cryptodev *rte_cryptodevs;
807 /**
808  *
809  * Dequeue a burst of processed crypto operations from a queue on the crypto
810  * device. The dequeued operation are stored in *rte_crypto_op* structures
811  * whose pointers are supplied in the *ops* array.
812  *
813  * The rte_cryptodev_dequeue_burst() function returns the number of ops
814  * actually dequeued, which is the number of *rte_crypto_op* data structures
815  * effectively supplied into the *ops* array.
816  *
817  * A return value equal to *nb_ops* indicates that the queue contained
818  * at least *nb_ops* operations, and this is likely to signify that other
819  * processed operations remain in the devices output queue. Applications
820  * implementing a "retrieve as many processed operations as possible" policy
821  * can check this specific case and keep invoking the
822  * rte_cryptodev_dequeue_burst() function until a value less than
823  * *nb_ops* is returned.
824  *
825  * The rte_cryptodev_dequeue_burst() function does not provide any error
826  * notification to avoid the corresponding overhead.
827  *
828  * @param       dev_id          The symmetric crypto device identifier
829  * @param       qp_id           The index of the queue pair from which to
830  *                              retrieve processed packets. The value must be
831  *                              in the range [0, nb_queue_pair - 1] previously
832  *                              supplied to rte_cryptodev_configure().
833  * @param       ops             The address of an array of pointers to
834  *                              *rte_crypto_op* structures that must be
835  *                              large enough to store *nb_ops* pointers in it.
836  * @param       nb_ops          The maximum number of operations to dequeue.
837  *
838  * @return
839  *   - The number of operations actually dequeued, which is the number
840  *   of pointers to *rte_crypto_op* structures effectively supplied to the
841  *   *ops* array.
842  */
843 static inline uint16_t
844 rte_cryptodev_dequeue_burst(uint8_t dev_id, uint16_t qp_id,
845                 struct rte_crypto_op **ops, uint16_t nb_ops)
846 {
847         struct rte_cryptodev *dev = &rte_cryptodevs[dev_id];
848
849         nb_ops = (*dev->dequeue_burst)
850                         (dev->data->queue_pairs[qp_id], ops, nb_ops);
851
852         return nb_ops;
853 }
854
855 /**
856  * Enqueue a burst of operations for processing on a crypto device.
857  *
858  * The rte_cryptodev_enqueue_burst() function is invoked to place
859  * crypto operations on the queue *qp_id* of the device designated by
860  * its *dev_id*.
861  *
862  * The *nb_ops* parameter is the number of operations to process which are
863  * supplied in the *ops* array of *rte_crypto_op* structures.
864  *
865  * The rte_cryptodev_enqueue_burst() function returns the number of
866  * operations it actually enqueued for processing. A return value equal to
867  * *nb_ops* means that all packets have been enqueued.
868  *
869  * @param       dev_id          The identifier of the device.
870  * @param       qp_id           The index of the queue pair which packets are
871  *                              to be enqueued for processing. The value
872  *                              must be in the range [0, nb_queue_pairs - 1]
873  *                              previously supplied to
874  *                               *rte_cryptodev_configure*.
875  * @param       ops             The address of an array of *nb_ops* pointers
876  *                              to *rte_crypto_op* structures which contain
877  *                              the crypto operations to be processed.
878  * @param       nb_ops          The number of operations to process.
879  *
880  * @return
881  * The number of operations actually enqueued on the crypto device. The return
882  * value can be less than the value of the *nb_ops* parameter when the
883  * crypto devices queue is full or if invalid parameters are specified in
884  * a *rte_crypto_op*.
885  */
886 static inline uint16_t
887 rte_cryptodev_enqueue_burst(uint8_t dev_id, uint16_t qp_id,
888                 struct rte_crypto_op **ops, uint16_t nb_ops)
889 {
890         struct rte_cryptodev *dev = &rte_cryptodevs[dev_id];
891
892         return (*dev->enqueue_burst)(
893                         dev->data->queue_pairs[qp_id], ops, nb_ops);
894 }
895
896
897 /** Cryptodev symmetric crypto session */
898 struct rte_cryptodev_sym_session {
899         __extension__ void *sess_private_data[0];
900         /**< Private session material */
901 };
902
903
904 /**
905  * Create symmetric crypto session header (generic with no private data)
906  *
907  * @param   mempool    Symmetric session mempool to allocate session
908  *                     objects from
909  * @return
910  *  - On success return pointer to sym-session
911  *  - On failure returns NULL
912  */
913 struct rte_cryptodev_sym_session *
914 rte_cryptodev_sym_session_create(struct rte_mempool *mempool);
915
916 /**
917  * Frees symmetric crypto session header, after checking that all
918  * the device private data has been freed, returning it
919  * to its original mempool.
920  *
921  * @param   sess     Session header to be freed.
922  *
923  * @return
924  *  - 0 if successful.
925  *  - -EINVAL if session is NULL.
926  *  - -EBUSY if not all device private data has been freed.
927  */
928 int
929 rte_cryptodev_sym_session_free(struct rte_cryptodev_sym_session *sess);
930
931 /**
932  * Fill out private data for the device id, based on its device type.
933  *
934  * @param   dev_id   ID of device that we want the session to be used on
935  * @param   sess     Session where the private data will be attached to
936  * @param   xforms   Symmetric crypto transform operations to apply on flow
937  *                   processed with this session
938  * @param   mempool  Mempool where the private data is allocated.
939  *
940  * @return
941  *  - On success, zero.
942  *  - -EINVAL if input parameters are invalid.
943  *  - -ENOTSUP if crypto device does not support the crypto transform.
944  *  - -ENOMEM if the private session could not be allocated.
945  */
946 int
947 rte_cryptodev_sym_session_init(uint8_t dev_id,
948                         struct rte_cryptodev_sym_session *sess,
949                         struct rte_crypto_sym_xform *xforms,
950                         struct rte_mempool *mempool);
951
952 /**
953  * Frees private data for the device id, based on its device type,
954  * returning it to its mempool.
955  *
956  * @param   dev_id   ID of device that uses the session.
957  * @param   sess     Session containing the reference to the private data
958  *
959  * @return
960  *  - 0 if successful.
961  *  - -EINVAL if device is invalid or session is NULL.
962  */
963 int
964 rte_cryptodev_sym_session_clear(uint8_t dev_id,
965                         struct rte_cryptodev_sym_session *sess);
966
967 /**
968  * Get the size of the header session, for all registered drivers.
969  *
970  * @return
971  *   Size of the header session.
972  */
973 unsigned int
974 rte_cryptodev_get_header_session_size(void);
975
976 /**
977  * Get the size of the private session data for a device.
978  *
979  * @param       dev_id          The device identifier.
980  *
981  * @return
982  *   - Size of the private data, if successful
983  *   - 0 if device is invalid or does not have private session
984  */
985 unsigned int
986 rte_cryptodev_get_private_session_size(uint8_t dev_id);
987
988 /**
989  * Attach queue pair with sym session.
990  *
991  * @param       dev_id          Device to which the session will be attached.
992  * @param       qp_id           Queue pair to which the session will be attached.
993  * @param       session         Session pointer previously allocated by
994  *                              *rte_cryptodev_sym_session_create*.
995  *
996  * @return
997  *  - On success, zero.
998  *  - On failure, a negative value.
999  */
1000 int
1001 rte_cryptodev_queue_pair_attach_sym_session(uint8_t dev_id, uint16_t qp_id,
1002                 struct rte_cryptodev_sym_session *session);
1003
1004 /**
1005  * Detach queue pair with sym session.
1006  *
1007  * @param       dev_id          Device to which the session is attached.
1008  * @param       qp_id           Queue pair to which the session is attached.
1009  * @param       session         Session pointer previously allocated by
1010  *                              *rte_cryptodev_sym_session_create*.
1011  *
1012  * @return
1013  *  - On success, zero.
1014  *  - On failure, a negative value.
1015  */
1016 int
1017 rte_cryptodev_queue_pair_detach_sym_session(uint8_t dev_id, uint16_t qp_id,
1018                 struct rte_cryptodev_sym_session *session);
1019
1020 /**
1021  * Provide driver identifier.
1022  *
1023  * @param name
1024  *   The pointer to a driver name.
1025  * @return
1026  *  The driver type identifier or -1 if no driver found
1027  */
1028 int rte_cryptodev_driver_id_get(const char *name);
1029
1030 /**
1031  * Provide driver name.
1032  *
1033  * @param driver_id
1034  *   The driver identifier.
1035  * @return
1036  *  The driver name or null if no driver found
1037  */
1038 const char *rte_cryptodev_driver_name_get(uint8_t driver_id);
1039
1040 #ifdef __cplusplus
1041 }
1042 #endif
1043
1044 #endif /* _RTE_CRYPTODEV_H_ */