DPDK  19.11.3
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
rte_vhost_crypto.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2017-2018 Intel Corporation
3  */
4 
5 #ifndef _VHOST_CRYPTO_H_
6 #define _VHOST_CRYPTO_H_
7 
8 #define VHOST_CRYPTO_MBUF_POOL_SIZE (8192)
9 #define VHOST_CRYPTO_MAX_BURST_SIZE (64)
10 #define VHOST_CRYPTO_MAX_DATA_SIZE (4096)
11 #define VHOST_CRYPTO_SESSION_MAP_ENTRIES (1024)
13 #define VIRTIO_CRYPTO_MAX_NUM_BURST_VQS (64)
14 #define VHOST_CRYPTO_MAX_IV_LEN (32)
15 #define VHOST_CRYPTO_MAX_N_DESC (32)
16 
17 enum rte_vhost_crypto_zero_copy {
18  RTE_VHOST_CRYPTO_ZERO_COPY_DISABLE = 0,
19  RTE_VHOST_CRYPTO_ZERO_COPY_ENABLE = 1,
20  RTE_VHOST_CRYPTO_MAX_ZERO_COPY_OPTIONS
21 };
22 
41 __rte_experimental
42 int
43 rte_vhost_crypto_create(int vid, uint8_t cryptodev_id,
44  struct rte_mempool *sess_pool,
45  struct rte_mempool *sess_priv_pool,
46  int socket_id);
47 
57 __rte_experimental
58 int
59 rte_vhost_crypto_free(int vid);
60 
72 __rte_experimental
73 int
74 rte_vhost_crypto_set_zero_copy(int vid, enum rte_vhost_crypto_zero_copy option);
75 
93 __rte_experimental
94 uint16_t
95 rte_vhost_crypto_fetch_requests(int vid, uint32_t qid,
96  struct rte_crypto_op **ops, uint16_t nb_ops);
115 __rte_experimental
116 uint16_t
117 rte_vhost_crypto_finalize_requests(struct rte_crypto_op **ops,
118  uint16_t nb_ops, int *callfds, uint16_t *nb_callfds);
119 
120 #endif
struct rte_vdpa_dev_ops * ops
Definition: rte_vdpa_dev.h:75