1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2020 Intel Corporation
5 #ifndef _RTE_VHOST_ASYNC_H_
6 #define _RTE_VHOST_ASYNC_H_
13 struct rte_vhost_iov_iter {
14 /** offset to the first byte of interesting data */
16 /** total bytes of data in this iterator */
18 /** pointer to the iovec array */
20 /** number of iovec in this iterator */
21 unsigned long nr_segs;
25 * dma transfer descriptor pair
27 struct rte_vhost_async_desc {
28 /** source memory iov_iter */
29 struct rte_vhost_iov_iter *src;
30 /** destination memory iov_iter */
31 struct rte_vhost_iov_iter *dst;
37 struct rte_vhost_async_status {
38 /** An array of application specific data for source memory */
39 uintptr_t *src_opaque_data;
40 /** An array of application specific data for destination memory */
41 uintptr_t *dst_opaque_data;
45 * dma operation callbacks to be implemented by applications
47 struct rte_vhost_async_channel_ops {
49 * instruct async engines to perform copies for a batch of packets
52 * id of vhost device to perform data copies
54 * queue id to perform data copies
56 * an array of DMA transfer memory descriptors
58 * opaque data pair sending to DMA engine
60 * number of elements in the "descs" array
62 * number of descs processed, negative value means error
64 int32_t (*transfer_data)(int vid, uint16_t queue_id,
65 struct rte_vhost_async_desc *descs,
66 struct rte_vhost_async_status *opaque_data,
69 * check copy-completed packets from the async engine
71 * id of vhost device to check copy completion
73 * queue id to check copy completion
75 * buffer to receive the opaque data pair from DMA engine
77 * max number of packets could be completed
79 * number of async descs completed, negative value means error
81 int32_t (*check_completed_copies)(int vid, uint16_t queue_id,
82 struct rte_vhost_async_status *opaque_data,
83 uint16_t max_packets);
87 * inflight async packet information
89 struct async_inflight_info {
90 struct rte_mbuf *mbuf;
91 uint16_t descs; /* num of descs inflight */
92 uint16_t nr_buffers; /* num of buffers inflight for packed ring */
96 * async channel features
99 RTE_VHOST_ASYNC_INORDER = 1U << 0,
103 * async channel configuration
105 struct rte_vhost_async_config {
106 uint32_t async_threshold;
112 * Register an async channel for a vhost queue
115 * vhost device id async channel to be attached to
117 * vhost queue id async channel to be attached to
119 * Async channel configuration structure
121 * Async channel operation callbacks
123 * 0 on success, -1 on failures
126 int rte_vhost_async_channel_register(int vid, uint16_t queue_id,
127 struct rte_vhost_async_config config,
128 struct rte_vhost_async_channel_ops *ops);
131 * Unregister an async channel for a vhost queue
134 * vhost device id async channel to be detached from
136 * vhost queue id async channel to be detached from
138 * 0 on success, -1 on failures
141 int rte_vhost_async_channel_unregister(int vid, uint16_t queue_id);
144 * Register an async channel for a vhost queue without performing any
147 * @note This function does not perform any locking, and is only safe to
148 * call in vhost callback functions.
151 * vhost device id async channel to be attached to
153 * vhost queue id async channel to be attached to
155 * Async channel configuration
157 * Async channel operation callbacks
159 * 0 on success, -1 on failures
162 int rte_vhost_async_channel_register_thread_unsafe(int vid, uint16_t queue_id,
163 struct rte_vhost_async_config config,
164 struct rte_vhost_async_channel_ops *ops);
167 * Unregister an async channel for a vhost queue without performing any
170 * @note This function does not perform any locking, and is only safe to
171 * call in vhost callback functions.
174 * vhost device id async channel to be detached from
176 * vhost queue id async channel to be detached from
178 * 0 on success, -1 on failures
181 int rte_vhost_async_channel_unregister_thread_unsafe(int vid,
185 * This function submits enqueue data to async engine. Successfully
186 * enqueued packets can be transfer completed or being occupied by DMA
187 * engines, when this API returns. Transfer completed packets are returned
188 * in comp_pkts, so users need to guarantee its size is greater than or
189 * equal to the size of pkts; for packets that are successfully enqueued
190 * but not transfer completed, users should poll transfer status by
191 * rte_vhost_poll_enqueue_completed().
194 * id of vhost device to enqueue data
196 * queue id to enqueue data
198 * array of packets to be enqueued
200 * packets num to be enqueued
202 * empty array to get transfer completed packets. Users need to
203 * guarantee its size is greater than or equal to that of pkts
205 * num of packets that are transfer completed, when this API returns.
206 * If no packets are transfer completed, its value is set to 0.
208 * num of packets enqueued, including in-flight and transfer completed
211 uint16_t rte_vhost_submit_enqueue_burst(int vid, uint16_t queue_id,
212 struct rte_mbuf **pkts, uint16_t count,
213 struct rte_mbuf **comp_pkts, uint32_t *comp_count);
216 * This function checks async completion status for a specific vhost
217 * device queue. Packets which finish copying (enqueue) operation
218 * will be returned in an array.
221 * id of vhost device to enqueue data
223 * queue id to enqueue data
225 * blank array to get return packet pointer
227 * size of the packet array
229 * num of packets returned
232 uint16_t rte_vhost_poll_enqueue_completed(int vid, uint16_t queue_id,
233 struct rte_mbuf **pkts, uint16_t count);
236 * This function returns the amount of in-flight packets for the vhost
237 * queue which uses async channel acceleration.
240 * id of vhost device to enqueue data
242 * queue id to enqueue data
244 * the amount of in-flight packets on success; -1 on failure
247 int rte_vhost_async_get_inflight(int vid, uint16_t queue_id);
250 * This function checks async completion status and clear packets for
251 * a specific vhost device queue. Packets which are inflight will be
252 * returned in an array.
254 * @note This function does not perform any locking
257 * ID of vhost device to clear data
259 * Queue id to clear data
261 * Blank array to get return packet pointer
263 * Size of the packet array
265 * Number of packets returned
268 uint16_t rte_vhost_clear_queue_thread_unsafe(int vid, uint16_t queue_id,
269 struct rte_mbuf **pkts, uint16_t count);
271 #endif /* _RTE_VHOST_ASYNC_H_ */