Merge tag 'apparmor-pr-2024-01-18' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-2.6-block.git] / include / linux / virtio.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
ec3d41c4
RR
2#ifndef _LINUX_VIRTIO_H
3#define _LINUX_VIRTIO_H
4/* Everything a virtio driver needs to work with any particular virtio
5 * implementation. */
6#include <linux/types.h>
7#include <linux/scatterlist.h>
8#include <linux/spinlock.h>
9#include <linux/device.h>
10#include <linux/mod_devicetable.h>
bbd603ef 11#include <linux/gfp.h>
b6253b4e 12#include <linux/dma-mapping.h>
ec3d41c4
RR
13
14/**
5c669c4a 15 * struct virtqueue - a queue to register buffers for sending or receiving.
9499f5e7 16 * @list: the chain of virtqueues for this device
ec3d41c4 17 * @callback: the function to call when buffers are consumed (can be NULL).
9499f5e7 18 * @name: the name of this virtqueue (mainly for debugging)
ec3d41c4 19 * @vdev: the virtio device this queue was created for.
ec3d41c4 20 * @priv: a pointer for the virtqueue implementation to use.
06ca287d
RR
21 * @index: the zero-based ordinal number for this queue.
22 * @num_free: number of elements we expect to be able to fit.
da802961 23 * @num_max: the maximum number of elements supported by the device.
4913e854 24 * @reset: vq is in reset state or not.
06ca287d
RR
25 *
26 * A note on @num_free: with indirect buffers, each buffer needs one
27 * element in the queue, otherwise a buffer will need one element per
28 * sg element.
ec3d41c4 29 */
9499f5e7
RR
30struct virtqueue {
31 struct list_head list;
18445c4d 32 void (*callback)(struct virtqueue *vq);
9499f5e7 33 const char *name;
ec3d41c4 34 struct virtio_device *vdev;
06ca287d
RR
35 unsigned int index;
36 unsigned int num_free;
da802961 37 unsigned int num_max;
4913e854 38 bool reset;
48cd6bc5 39 void *priv;
ec3d41c4
RR
40};
41
282edb36
RR
42int virtqueue_add_outbuf(struct virtqueue *vq,
43 struct scatterlist sg[], unsigned int num,
44 void *data,
45 gfp_t gfp);
46
47int virtqueue_add_inbuf(struct virtqueue *vq,
48 struct scatterlist sg[], unsigned int num,
49 void *data,
50 gfp_t gfp);
51
5a08b04f
MT
52int virtqueue_add_inbuf_ctx(struct virtqueue *vq,
53 struct scatterlist sg[], unsigned int num,
54 void *data,
55 void *ctx,
56 gfp_t gfp);
57
13816c76
RR
58int virtqueue_add_sgs(struct virtqueue *vq,
59 struct scatterlist *sgs[],
60 unsigned int out_sgs,
61 unsigned int in_sgs,
62 void *data,
63 gfp_t gfp);
64
2df64759
XZ
65struct device *virtqueue_dma_dev(struct virtqueue *vq);
66
5b1bf7cb 67bool virtqueue_kick(struct virtqueue *vq);
ec3d41c4 68
41f0377f
RR
69bool virtqueue_kick_prepare(struct virtqueue *vq);
70
5b1bf7cb 71bool virtqueue_notify(struct virtqueue *vq);
41f0377f 72
7c5e9ed0 73void *virtqueue_get_buf(struct virtqueue *vq, unsigned int *len);
316f25f5 74
5a08b04f
MT
75void *virtqueue_get_buf_ctx(struct virtqueue *vq, unsigned int *len,
76 void **ctx);
77
7c5e9ed0 78void virtqueue_disable_cb(struct virtqueue *vq);
316f25f5 79
7c5e9ed0 80bool virtqueue_enable_cb(struct virtqueue *vq);
316f25f5 81
cc229884
MT
82unsigned virtqueue_enable_cb_prepare(struct virtqueue *vq);
83
8daafe9e
XZ
84int virtqueue_set_dma_premapped(struct virtqueue *_vq);
85
cc229884
MT
86bool virtqueue_poll(struct virtqueue *vq, unsigned);
87
7ab358c2
MT
88bool virtqueue_enable_cb_delayed(struct virtqueue *vq);
89
7c5e9ed0 90void *virtqueue_detach_unused_buf(struct virtqueue *vq);
316f25f5 91
4b6ec919 92unsigned int virtqueue_get_vring_size(const struct virtqueue *vq);
17bb6d40 93
4b6ec919 94bool virtqueue_is_broken(const struct virtqueue *vq);
b3b32c94 95
4b6ec919
FL
96const struct vring *virtqueue_get_vring(const struct virtqueue *vq);
97dma_addr_t virtqueue_get_desc_addr(const struct virtqueue *vq);
98dma_addr_t virtqueue_get_avail_addr(const struct virtqueue *vq);
99dma_addr_t virtqueue_get_used_addr(const struct virtqueue *vq);
2a2d1382 100
c790e8e1
XZ
101int virtqueue_resize(struct virtqueue *vq, u32 num,
102 void (*recycle)(struct virtqueue *vq, void *buf));
ba3e0c47
XZ
103int virtqueue_reset(struct virtqueue *vq,
104 void (*recycle)(struct virtqueue *vq, void *buf));
c790e8e1 105
92792ac7
FL
106struct virtio_admin_cmd {
107 __le16 opcode;
108 __le16 group_type;
109 __le64 group_member_id;
110 struct scatterlist *data_sg;
111 struct scatterlist *result_sg;
112};
113
ec3d41c4 114/**
5c669c4a 115 * struct virtio_device - representation of a device using virtio
ec3d41c4 116 * @index: unique position on the virtio bus
cbd7f8d6 117 * @failed: saved value for VIRTIO_CONFIG_S_FAILED bit (for restore)
22b7050a
MT
118 * @config_enabled: configuration change reporting enabled
119 * @config_change_pending: configuration change reported while disabled
120 * @config_lock: protects configuration change reporting
33bd91fd 121 * @vqs_list_lock: protects @vqs.
ec3d41c4
RR
122 * @dev: underlying device.
123 * @id: the device type identification (used to match it with a driver).
124 * @config: the configuration ops for this device.
3beee86a 125 * @vringh_config: configuration ops for host vrings.
9499f5e7 126 * @vqs: the list of virtqueues for this device.
c45a6816 127 * @features: the features supported by both driver and device.
ec3d41c4
RR
128 * @priv: private pointer for the driver's use.
129 */
9499f5e7 130struct virtio_device {
ec3d41c4 131 int index;
c6716bae 132 bool failed;
22b7050a
MT
133 bool config_enabled;
134 bool config_change_pending;
135 spinlock_t config_lock;
33bd91fd 136 spinlock_t vqs_list_lock;
ec3d41c4
RR
137 struct device dev;
138 struct virtio_device_id id;
93503932 139 const struct virtio_config_ops *config;
3beee86a 140 const struct vringh_config_ops *vringh_config;
9499f5e7 141 struct list_head vqs;
d0254773 142 u64 features;
ec3d41c4
RR
143 void *priv;
144};
145
af3011b6 146#define dev_to_virtio(_dev) container_of_const(_dev, struct virtio_device, dev)
9bffdca8 147
9fe7bfce 148void virtio_add_status(struct virtio_device *dev, unsigned int status);
ec3d41c4
RR
149int register_virtio_device(struct virtio_device *dev);
150void unregister_virtio_device(struct virtio_device *dev);
a0308938 151bool is_virtio_device(struct device *dev);
ec3d41c4 152
e2dcdfe9 153void virtio_break_device(struct virtio_device *dev);
be83f04d 154void __virtio_unbreak_device(struct virtio_device *dev);
e2dcdfe9 155
32510631
XZ
156void __virtqueue_break(struct virtqueue *_vq);
157void __virtqueue_unbreak(struct virtqueue *_vq);
158
016c98c6 159void virtio_config_changed(struct virtio_device *dev);
c6716bae
MT
160#ifdef CONFIG_PM_SLEEP
161int virtio_device_freeze(struct virtio_device *dev);
162int virtio_device_restore(struct virtio_device *dev);
163#endif
d9679d00 164void virtio_reset_device(struct virtio_device *dev);
016c98c6 165
4b6ec919 166size_t virtio_max_dma_size(const struct virtio_device *vdev);
e6d6dd6c 167
24a7e4d2
MT
168#define virtio_device_for_each_vq(vdev, vq) \
169 list_for_each_entry(vq, &vdev->vqs, list)
170
ec3d41c4 171/**
5c669c4a 172 * struct virtio_driver - operations for a virtio I/O driver
ec3d41c4
RR
173 * @driver: underlying device driver (populate name and owner).
174 * @id_table: the ids serviced by this driver.
5f41f8bf 175 * @feature_table: an array of feature numbers supported by this driver.
c45a6816 176 * @feature_table_size: number of entries in the feature table array.
b3bb62d1
MT
177 * @feature_table_legacy: same as feature_table but when working in legacy mode.
178 * @feature_table_size_legacy: number of entries in feature table legacy array.
33bd91fd
SH
179 * @validate: the function to call to validate features and config space.
180 * Returns 0 or -errno.
20f77f56 181 * @probe: the function to call when a device is found. Returns 0 or -errno.
9ea762a5
CH
182 * @scan: optional function to call after successful probe; intended
183 * for virtio-scsi to invoke a scan.
5f41f8bf 184 * @remove: the function to call when a device is removed.
f957d1f0
RR
185 * @config_changed: optional function to call when the device configuration
186 * changes; may be called in interrupt context.
9ea762a5
CH
187 * @freeze: optional function to call during suspend/hibernation.
188 * @restore: optional function to call on resume.
ec3d41c4
RR
189 */
190struct virtio_driver {
191 struct device_driver driver;
192 const struct virtio_device_id *id_table;
c45a6816
RR
193 const unsigned int *feature_table;
194 unsigned int feature_table_size;
b3bb62d1
MT
195 const unsigned int *feature_table_legacy;
196 unsigned int feature_table_size_legacy;
404123c2 197 int (*validate)(struct virtio_device *dev);
ec3d41c4 198 int (*probe)(struct virtio_device *dev);
59057fbc 199 void (*scan)(struct virtio_device *dev);
ec3d41c4 200 void (*remove)(struct virtio_device *dev);
f957d1f0 201 void (*config_changed)(struct virtio_device *dev);
f0fe6f11 202 int (*freeze)(struct virtio_device *dev);
f0fe6f11 203 int (*restore)(struct virtio_device *dev);
ec3d41c4
RR
204};
205
9a2bdcc8
WG
206static inline struct virtio_driver *drv_to_virtio(struct device_driver *drv)
207{
208 return container_of(drv, struct virtio_driver, driver);
209}
210
ec3d41c4
RR
211int register_virtio_driver(struct virtio_driver *drv);
212void unregister_virtio_driver(struct virtio_driver *drv);
6e105e05
SB
213
214/* module_virtio_driver() - Helper macro for drivers that don't do
215 * anything special in module init/exit. This eliminates a lot of
216 * boilerplate. Each module may only use this macro once, and
217 * calling it replaces module_init() and module_exit()
218 */
219#define module_virtio_driver(__virtio_driver) \
220 module_driver(__virtio_driver, register_virtio_driver, \
221 unregister_virtio_driver)
b6253b4e
XZ
222
223dma_addr_t virtqueue_dma_map_single_attrs(struct virtqueue *_vq, void *ptr, size_t size,
224 enum dma_data_direction dir, unsigned long attrs);
225void virtqueue_dma_unmap_single_attrs(struct virtqueue *_vq, dma_addr_t addr,
226 size_t size, enum dma_data_direction dir,
227 unsigned long attrs);
228int virtqueue_dma_mapping_error(struct virtqueue *_vq, dma_addr_t addr);
8bd2f710
XZ
229
230bool virtqueue_dma_need_sync(struct virtqueue *_vq, dma_addr_t addr);
231void virtqueue_dma_sync_single_range_for_cpu(struct virtqueue *_vq, dma_addr_t addr,
232 unsigned long offset, size_t size,
233 enum dma_data_direction dir);
234void virtqueue_dma_sync_single_range_for_device(struct virtqueue *_vq, dma_addr_t addr,
235 unsigned long offset, size_t size,
236 enum dma_data_direction dir);
ec3d41c4 237#endif /* _LINUX_VIRTIO_H */