da8ee33ab1771e522fac6e98780f8e4c3bdc320b
[dpdk.git] / lib / librte_vhost / rte_vdpa.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2018 Intel Corporation
3  */
4
5 #ifndef _RTE_VDPA_H_
6 #define _RTE_VDPA_H_
7
8 /**
9  * @file
10  *
11  * Device specific vhost lib
12  */
13
14 #include <stdbool.h>
15
16 #include <rte_pci.h>
17 #include "rte_vhost.h"
18
19 #define MAX_VDPA_NAME_LEN 128
20
21 /** Maximum name length for statistics counters */
22 #define RTE_VDPA_STATS_NAME_SIZE 64
23
24 struct rte_vdpa_device;
25
26 /**
27  * A vDPA device statistic structure
28  *
29  * This structure is used by rte_vdpa_stats_get() to provide
30  * statistics from the HW vDPA device.
31  *
32  * It maps a name id, corresponding to an index in the array returned
33  * by rte_vdpa_get_stats_names, to a statistic value.
34  */
35 struct rte_vdpa_stat {
36         uint64_t id;        /**< The index in stats name array */
37         uint64_t value;     /**< The statistic counter value */
38 };
39
40 /**
41  * A name element for statistics
42  *
43  * An array of this structure is returned by rte_vdpa_get_stats_names
44  * It lists the names of extended statistics for a PMD. The rte_vdpa_stat
45  * structure references these names by their array index
46  */
47 struct rte_vdpa_stat_name {
48         char name[RTE_VDPA_STATS_NAME_SIZE]; /**< The statistic name */
49 };
50
51 /**
52  * vdpa device operations
53  */
54 struct rte_vdpa_dev_ops {
55         /** Get capabilities of this device */
56         int (*get_queue_num)(struct rte_vdpa_device *dev, uint32_t *queue_num);
57
58         /** Get supported features of this device */
59         int (*get_features)(struct rte_vdpa_device *dev, uint64_t *features);
60
61         /** Get supported protocol features of this device */
62         int (*get_protocol_features)(struct rte_vdpa_device *dev,
63                         uint64_t *protocol_features);
64
65         /** Driver configure/close the device */
66         int (*dev_conf)(int vid);
67         int (*dev_close)(int vid);
68
69         /** Enable/disable this vring */
70         int (*set_vring_state)(int vid, int vring, int state);
71
72         /** Set features when changed */
73         int (*set_features)(int vid);
74
75         /** Destination operations when migration done */
76         int (*migration_done)(int vid);
77
78         /** Get the vfio group fd */
79         int (*get_vfio_group_fd)(int vid);
80
81         /** Get the vfio device fd */
82         int (*get_vfio_device_fd)(int vid);
83
84         /** Get the notify area info of the queue */
85         int (*get_notify_area)(int vid, int qid,
86                         uint64_t *offset, uint64_t *size);
87
88         /** Get statistics name */
89         int (*get_stats_names)(struct rte_vdpa_device *dev,
90                         struct rte_vdpa_stat_name *stats_names,
91                         unsigned int size);
92
93         /** Get statistics of the queue */
94         int (*get_stats)(struct rte_vdpa_device *dev, int qid,
95                         struct rte_vdpa_stat *stats, unsigned int n);
96
97         /** Reset statistics of the queue */
98         int (*reset_stats)(struct rte_vdpa_device *dev, int qid);
99
100         /** Reserved for future extension */
101         void *reserved[2];
102 };
103
104 /**
105  * vdpa device structure includes device address and device operations.
106  */
107 struct rte_vdpa_device {
108         /** Generic device information */
109         struct rte_device *device;
110         /** vdpa device operations */
111         struct rte_vdpa_dev_ops *ops;
112 } __rte_cache_aligned;
113
114 /**
115  * @warning
116  * @b EXPERIMENTAL: this API may change without prior notice
117  *
118  * Register a vdpa device
119  *
120  * @param addr
121  *  the vdpa device address
122  * @param ops
123  *  the vdpa device operations
124  * @return
125  *  vDPA device pointer on success, NULL on failure
126  */
127 __rte_experimental
128 struct rte_vdpa_device *
129 rte_vdpa_register_device(struct rte_device *rte_dev,
130                 struct rte_vdpa_dev_ops *ops);
131
132 /**
133  * @warning
134  * @b EXPERIMENTAL: this API may change without prior notice
135  *
136  * Unregister a vdpa device
137  *
138  * @param did
139  *  vDPA device pointer
140  * @return
141  *  device id on success, -1 on failure
142  */
143 __rte_experimental
144 int
145 rte_vdpa_unregister_device(struct rte_vdpa_device *);
146
147 /**
148  * @warning
149  * @b EXPERIMENTAL: this API may change without prior notice
150  *
151  * Find the device id of a vdpa device from its name
152  *
153  * @param name
154  *  the vdpa device name
155  * @return
156  *  vDPA device pointer on success, NULL on failure
157  */
158 __rte_experimental
159 struct rte_vdpa_device *
160 rte_vdpa_find_device_by_name(const char *name);
161
162 /**
163  * @warning
164  * @b EXPERIMENTAL: this API may change without prior notice
165  *
166  * Get the generic device from the vdpa device
167  *
168  * @param vdpa_dev
169  *  the vdpa device pointer
170  * @return
171  *  generic device pointer on success, NULL on failure
172  */
173 __rte_experimental
174 struct rte_device *
175 rte_vdpa_get_rte_device(struct rte_vdpa_device *vdpa_dev);
176
177 /**
178  * @warning
179  * @b EXPERIMENTAL: this API may change without prior notice
180  *
181  * Get current available vdpa device number
182  *
183  * @return
184  *  available vdpa device number
185  */
186 __rte_experimental
187 int
188 rte_vdpa_get_device_num(void);
189
190 /**
191  * @warning
192  * @b EXPERIMENTAL: this API may change without prior notice
193  *
194  * Enable/Disable host notifier mapping for a vdpa port.
195  *
196  * @param vid
197  *  vhost device id
198  * @param enable
199  *  true for host notifier map, false for host notifier unmap
200  * @return
201  *  0 on success, -1 on failure
202  */
203 __rte_experimental
204 int
205 rte_vhost_host_notifier_ctrl(int vid, bool enable);
206
207 /**
208  * @warning
209  * @b EXPERIMENTAL: this API may change without prior notice
210  *
211  * Synchronize the used ring from mediated ring to guest, log dirty
212  * page for each writeable buffer, caller should handle the used
213  * ring logging before device stop.
214  *
215  * @param vid
216  *  vhost device id
217  * @param qid
218  *  vhost queue id
219  * @param vring_m
220  *  mediated virtio ring pointer
221  * @return
222  *  number of synced used entries on success, -1 on failure
223  */
224 __rte_experimental
225 int
226 rte_vdpa_relay_vring_used(int vid, uint16_t qid, void *vring_m);
227
228 /**
229  * @warning
230  * @b EXPERIMENTAL: this API may change without prior notice
231  *
232  * Retrieve names of statistics of a vDPA device.
233  *
234  * There is an assumption that 'stat_names' and 'stats' arrays are matched
235  * by array index: stats_names[i].name => stats[i].value
236  *
237  * And the array index is same with id field of 'struct rte_vdpa_stat':
238  * stats[i].id == i
239  *
240  * @param dev
241  *  vDPA device pointer
242  * @param stats_names
243  *   array of at least size elements to be filled.
244  *   If set to NULL, the function returns the required number of elements.
245  * @param size
246  *   The number of elements in stats_names array.
247  * @return
248  *   A negative value on error, otherwise the number of entries filled in the
249  *   stats name array.
250  */
251 __rte_experimental
252 int
253 rte_vdpa_get_stats_names(struct rte_vdpa_device *dev,
254                 struct rte_vdpa_stat_name *stats_names,
255                 unsigned int size);
256
257 /**
258  * @warning
259  * @b EXPERIMENTAL: this API may change without prior notice
260  *
261  * Retrieve statistics of a vDPA device.
262  *
263  * There is an assumption that 'stat_names' and 'stats' arrays are matched
264  * by array index: stats_names[i].name => stats[i].value
265  *
266  * And the array index is same with id field of 'struct rte_vdpa_stat':
267  * stats[i].id == i
268  *
269  * @param dev
270  *  vDPA device pointer
271  * @param qid
272  *  queue id
273  * @param stats
274  *   A pointer to a table of structure of type rte_vdpa_stat to be filled with
275  *   device statistics ids and values.
276  * @param n
277  *   The number of elements in stats array.
278  * @return
279  *   A negative value on error, otherwise the number of entries filled in the
280  *   stats table.
281  */
282 __rte_experimental
283 int
284 rte_vdpa_get_stats(struct rte_vdpa_device *dev, uint16_t qid,
285                 struct rte_vdpa_stat *stats, unsigned int n);
286 /**
287  * @warning
288  * @b EXPERIMENTAL: this API may change without prior notice
289  *
290  * Reset statistics of a vDPA device.
291  *
292  * @param dev
293  *  vDPA device pointer
294  * @param qid
295  *  queue id
296  * @return
297  *   0 on success, a negative value on error.
298  */
299 __rte_experimental
300 int
301 rte_vdpa_reset_stats(struct rte_vdpa_device *dev, uint16_t qid);
302 #endif /* _RTE_VDPA_H_ */