crypto/qat: rework burst data path
[dpdk.git] / drivers / crypto / qat / qat_crypto.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2022 Intel Corporation
3  */
4
5  #ifndef _QAT_CRYPTO_H_
6  #define _QAT_CRYPTO_H_
7
8 #include <rte_cryptodev.h>
9
10 #include "qat_device.h"
11
12 extern uint8_t qat_sym_driver_id;
13 extern uint8_t qat_asym_driver_id;
14
15 /**
16  * helper macro to set cryptodev capability range
17  * <n: name> <l: min > <r: max> <i: increment> <v: value>
18  **/
19 #define CAP_RNG(n, l, r, i) .n = {.min = l, .max = r, .increment = i}
20
21 #define CAP_RNG_ZERO(n) .n = {.min = 0, .max = 0, .increment = 0}
22 /** helper macro to set cryptodev capability value **/
23 #define CAP_SET(n, v) .n = v
24
25 /** private data structure for a QAT device.
26  * there can be one of these on each qat_pci_device (VF).
27  */
28 struct qat_cryptodev_private {
29         struct qat_pci_device *qat_dev;
30         /**< The qat pci device hosting the service */
31         uint8_t dev_id;
32         /**< Device instance for this rte_cryptodev */
33         const struct rte_cryptodev_capabilities *qat_dev_capabilities;
34         /* QAT device symmetric crypto capabilities */
35         const struct rte_memzone *capa_mz;
36         /* Shared memzone for storing capabilities */
37         uint16_t min_enq_burst_threshold;
38         uint32_t internal_capabilities; /* see flags QAT_SYM_CAP_xxx */
39         enum qat_service_type service_type;
40 };
41
42 struct qat_capabilities_info {
43         struct rte_cryptodev_capabilities *data;
44         uint64_t size;
45 };
46
47 typedef struct qat_capabilities_info (*get_capabilities_info_t)
48                         (struct qat_pci_device *qat_dev);
49
50 typedef uint64_t (*get_feature_flags_t)(struct qat_pci_device *qat_dev);
51
52 typedef void * (*create_security_ctx_t)(void *cryptodev);
53
54 typedef int (*set_session_t)(void *cryptodev, void *session);
55
56 struct qat_crypto_gen_dev_ops {
57         get_feature_flags_t get_feature_flags;
58         get_capabilities_info_t get_capabilities;
59         struct rte_cryptodev_ops *cryptodev_ops;
60         set_session_t set_session;
61 #ifdef RTE_LIB_SECURITY
62         create_security_ctx_t create_security_ctx;
63 #endif
64 };
65
66 extern struct qat_crypto_gen_dev_ops qat_sym_gen_dev_ops[];
67 extern struct qat_crypto_gen_dev_ops qat_asym_gen_dev_ops[];
68
69 int
70 qat_cryptodev_config(struct rte_cryptodev *dev,
71                 struct rte_cryptodev_config *config);
72
73 int
74 qat_cryptodev_start(struct rte_cryptodev *dev);
75
76 void
77 qat_cryptodev_stop(struct rte_cryptodev *dev);
78
79 int
80 qat_cryptodev_close(struct rte_cryptodev *dev);
81
82 void
83 qat_cryptodev_info_get(struct rte_cryptodev *dev,
84                 struct rte_cryptodev_info *info);
85
86 void
87 qat_cryptodev_stats_get(struct rte_cryptodev *dev,
88                 struct rte_cryptodev_stats *stats);
89
90 void
91 qat_cryptodev_stats_reset(struct rte_cryptodev *dev);
92
93 int
94 qat_cryptodev_qp_setup(struct rte_cryptodev *dev, uint16_t qp_id,
95         const struct rte_cryptodev_qp_conf *qp_conf, int socket_id);
96
97 int
98 qat_cryptodev_qp_release(struct rte_cryptodev *dev, uint16_t queue_pair_id);
99
100 #endif