1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2017-2018 Intel Corporation
5 #ifndef _VHOST_CRYPTO_H_
6 #define _VHOST_CRYPTO_H_
10 #include <rte_compat.h>
12 /* pre-declare structs to avoid including full headers */
16 #define VHOST_CRYPTO_MBUF_POOL_SIZE (8192)
17 #define VHOST_CRYPTO_MAX_BURST_SIZE (64)
18 #define VHOST_CRYPTO_MAX_DATA_SIZE (4096)
19 #define VHOST_CRYPTO_SESSION_MAP_ENTRIES (1024) /**< Max nb sessions */
20 /** max nb virtual queues in a burst for finalizing*/
21 #define VIRTIO_CRYPTO_MAX_NUM_BURST_VQS (64)
22 #define VHOST_CRYPTO_MAX_IV_LEN (32)
23 #define VHOST_CRYPTO_MAX_N_DESC (32)
25 enum rte_vhost_crypto_zero_copy {
26 RTE_VHOST_CRYPTO_ZERO_COPY_DISABLE = 0,
27 RTE_VHOST_CRYPTO_ZERO_COPY_ENABLE = 1,
28 RTE_VHOST_CRYPTO_MAX_ZERO_COPY_OPTIONS
32 * Start vhost crypto driver
35 * The vhost-user socket file path
37 * 0 on success, -1 on failure
41 rte_vhost_crypto_driver_start(const char *path);
44 * Create Vhost-crypto instance
47 * The identifier of the vhost device.
49 * The identifier of DPDK Cryptodev, the same cryptodev_id can be assigned to
50 * multiple Vhost-crypto devices.
52 * The pointer to the created cryptodev session pool.
53 * @param sess_priv_pool
54 * The pointer to the created cryptodev session private data mempool.
56 * NUMA Socket ID to allocate resources on. *
58 * 0 if the Vhost Crypto Instance is created successfully.
59 * Negative integer if otherwise
63 rte_vhost_crypto_create(int vid, uint8_t cryptodev_id,
64 struct rte_mempool *sess_pool,
65 struct rte_mempool *sess_priv_pool,
69 * Free the Vhost-crypto instance
72 * The identifier of the vhost device.
74 * 0 if the Vhost Crypto Instance is created successfully.
75 * Negative integer if otherwise.
79 rte_vhost_crypto_free(int vid);
82 * Enable or disable zero copy feature
85 * The identifier of the vhost device.
87 * Flag of zero copy feature.
89 * 0 if completed successfully.
90 * Negative integer if otherwise.
94 rte_vhost_crypto_set_zero_copy(int vid, enum rte_vhost_crypto_zero_copy option);
97 * Fetch a number of vring descriptors from virt-queue and translate to DPDK
98 * crypto operations. After this function is executed, the user can enqueue
99 * the processed ops to the target cryptodev.
102 * The identifier of the vhost device.
104 * Virtio queue index.
106 * The address of an array of pointers to *rte_crypto_op* structures that must
107 * be large enough to store *nb_ops* pointers in it.
109 * The maximum number of operations to be fetched and translated.
111 * The number of fetched and processed vhost crypto request operations.
115 rte_vhost_crypto_fetch_requests(int vid, uint32_t qid,
116 struct rte_crypto_op **ops, uint16_t nb_ops);
118 * Finalize the dequeued crypto ops. After the translated crypto ops are
119 * dequeued from the cryptodev, this function shall be called to write the
120 * processed data back to the vring descriptor (if no-copy is turned off).
123 * The address of an array of *rte_crypto_op* structure that was dequeued
126 * The number of operations contained in the array.
128 * The callfd number(s) contained in this burst, this shall be an array with
129 * no less than VIRTIO_CRYPTO_MAX_NUM_BURST_VQS elements.
131 * The number of call_fd numbers exist in the callfds.
133 * The number of ops processed.
137 rte_vhost_crypto_finalize_requests(struct rte_crypto_op **ops,
138 uint16_t nb_ops, int *callfds, uint16_t *nb_callfds);
140 #endif /**< _VHOST_CRYPTO_H_ */