blob: 55ea329fe72a42c234a3078e779ebda8d729fd1f [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Rusty Russellec3d41c2007-10-22 11:03:36 +10002#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>
Michael S. Tsirkinbbd603e2010-04-29 17:26:37 +030011#include <linux/gfp.h>
Rusty Russellec3d41c2007-10-22 11:03:36 +100012
13/**
14 * virtqueue - a queue to register buffers for sending or receiving.
Rusty Russell9499f5e2009-06-12 22:16:35 -060015 * @list: the chain of virtqueues for this device
Rusty Russellec3d41c2007-10-22 11:03:36 +100016 * @callback: the function to call when buffers are consumed (can be NULL).
Rusty Russell9499f5e2009-06-12 22:16:35 -060017 * @name: the name of this virtqueue (mainly for debugging)
Rusty Russellec3d41c2007-10-22 11:03:36 +100018 * @vdev: the virtio device this queue was created for.
Rusty Russellec3d41c2007-10-22 11:03:36 +100019 * @priv: a pointer for the virtqueue implementation to use.
Rusty Russell06ca2872012-10-16 23:56:14 +103020 * @index: the zero-based ordinal number for this queue.
21 * @num_free: number of elements we expect to be able to fit.
22 *
23 * A note on @num_free: with indirect buffers, each buffer needs one
24 * element in the queue, otherwise a buffer will need one element per
25 * sg element.
Rusty Russellec3d41c2007-10-22 11:03:36 +100026 */
Rusty Russell9499f5e2009-06-12 22:16:35 -060027struct virtqueue {
28 struct list_head list;
Rusty Russell18445c42008-02-04 23:49:57 -050029 void (*callback)(struct virtqueue *vq);
Rusty Russell9499f5e2009-06-12 22:16:35 -060030 const char *name;
Rusty Russellec3d41c2007-10-22 11:03:36 +100031 struct virtio_device *vdev;
Rusty Russell06ca2872012-10-16 23:56:14 +103032 unsigned int index;
33 unsigned int num_free;
Rusty Russellec3d41c2007-10-22 11:03:36 +100034 void *priv;
35};
36
Rusty Russell282edb32013-03-20 15:44:26 +103037int virtqueue_add_outbuf(struct virtqueue *vq,
38 struct scatterlist sg[], unsigned int num,
39 void *data,
40 gfp_t gfp);
41
42int virtqueue_add_inbuf(struct virtqueue *vq,
43 struct scatterlist sg[], unsigned int num,
44 void *data,
45 gfp_t gfp);
46
Michael S. Tsirkin5a08b042017-02-07 06:15:13 +020047int virtqueue_add_inbuf_ctx(struct virtqueue *vq,
48 struct scatterlist sg[], unsigned int num,
49 void *data,
50 void *ctx,
51 gfp_t gfp);
52
Rusty Russell13816c72013-03-20 15:37:09 +103053int virtqueue_add_sgs(struct virtqueue *vq,
54 struct scatterlist *sgs[],
55 unsigned int out_sgs,
56 unsigned int in_sgs,
57 void *data,
58 gfp_t gfp);
59
Heinz Graalfs5b1bf7c2013-10-29 09:39:48 +103060bool virtqueue_kick(struct virtqueue *vq);
Rusty Russellec3d41c2007-10-22 11:03:36 +100061
Rusty Russell41f03772012-01-12 15:44:43 +103062bool virtqueue_kick_prepare(struct virtqueue *vq);
63
Heinz Graalfs5b1bf7c2013-10-29 09:39:48 +103064bool virtqueue_notify(struct virtqueue *vq);
Rusty Russell41f03772012-01-12 15:44:43 +103065
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +030066void *virtqueue_get_buf(struct virtqueue *vq, unsigned int *len);
Rusty Russellec3d41c2007-10-22 11:03:36 +100067
Michael S. Tsirkin5a08b042017-02-07 06:15:13 +020068void *virtqueue_get_buf_ctx(struct virtqueue *vq, unsigned int *len,
69 void **ctx);
70
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +030071void virtqueue_disable_cb(struct virtqueue *vq);
Michael S. Tsirkin316f25f2010-04-12 16:18:25 +030072
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +030073bool virtqueue_enable_cb(struct virtqueue *vq);
Michael S. Tsirkin316f25f2010-04-12 16:18:25 +030074
Michael S. Tsirkincc229882013-07-09 13:19:18 +030075unsigned virtqueue_enable_cb_prepare(struct virtqueue *vq);
76
77bool virtqueue_poll(struct virtqueue *vq, unsigned);
78
Michael S. Tsirkin7ab358c2011-05-20 02:11:14 +030079bool virtqueue_enable_cb_delayed(struct virtqueue *vq);
80
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +030081void *virtqueue_detach_unused_buf(struct virtqueue *vq);
Michael S. Tsirkin316f25f2010-04-12 16:18:25 +030082
Rick Jones8f9f4662011-10-19 08:10:59 +000083unsigned int virtqueue_get_vring_size(struct virtqueue *vq);
84
Heinz Graalfsb3b32c92013-10-29 09:40:19 +103085bool virtqueue_is_broken(struct virtqueue *vq);
86
Andy Lutomirski2a2d1382016-02-02 21:46:37 -080087const struct vring *virtqueue_get_vring(struct virtqueue *vq);
88dma_addr_t virtqueue_get_desc_addr(struct virtqueue *vq);
89dma_addr_t virtqueue_get_avail_addr(struct virtqueue *vq);
90dma_addr_t virtqueue_get_used_addr(struct virtqueue *vq);
91
Rusty Russellec3d41c2007-10-22 11:03:36 +100092/**
93 * virtio_device - representation of a device using virtio
94 * @index: unique position on the virtio bus
Paul Bollecbd7f8d2014-11-10 09:33:29 +103095 * @failed: saved value for VIRTIO_CONFIG_S_FAILED bit (for restore)
Michael S. Tsirkin22b70502014-10-15 10:21:55 +103096 * @config_enabled: configuration change reporting enabled
97 * @config_change_pending: configuration change reported while disabled
98 * @config_lock: protects configuration change reporting
Rusty Russellec3d41c2007-10-22 11:03:36 +100099 * @dev: underlying device.
100 * @id: the device type identification (used to match it with a driver).
101 * @config: the configuration ops for this device.
Sjur Brændeland3beee862013-03-20 13:51:24 +1030102 * @vringh_config: configuration ops for host vrings.
Rusty Russell9499f5e2009-06-12 22:16:35 -0600103 * @vqs: the list of virtqueues for this device.
Rusty Russellc45a6812008-05-02 21:50:50 -0500104 * @features: the features supported by both driver and device.
Rusty Russellec3d41c2007-10-22 11:03:36 +1000105 * @priv: private pointer for the driver's use.
106 */
Rusty Russell9499f5e2009-06-12 22:16:35 -0600107struct virtio_device {
Rusty Russellec3d41c2007-10-22 11:03:36 +1000108 int index;
Michael S. Tsirkinc6716ba2014-10-14 10:40:35 +1030109 bool failed;
Michael S. Tsirkin22b70502014-10-15 10:21:55 +1030110 bool config_enabled;
111 bool config_change_pending;
112 spinlock_t config_lock;
Rusty Russellec3d41c2007-10-22 11:03:36 +1000113 struct device dev;
114 struct virtio_device_id id;
Stephen Hemminger93503932013-02-10 15:57:38 +1030115 const struct virtio_config_ops *config;
Sjur Brændeland3beee862013-03-20 13:51:24 +1030116 const struct vringh_config_ops *vringh_config;
Rusty Russell9499f5e2009-06-12 22:16:35 -0600117 struct list_head vqs;
Michael S. Tsirkind0254772014-10-07 16:39:43 +0200118 u64 features;
Rusty Russellec3d41c2007-10-22 11:03:36 +1000119 void *priv;
120};
121
Wanlong Gao9bffdca2012-12-11 11:04:50 +1030122static inline struct virtio_device *dev_to_virtio(struct device *_dev)
123{
124 return container_of(_dev, struct virtio_device, dev);
125}
126
John Fastabend9fe7bfc2017-02-02 19:16:01 -0800127void virtio_add_status(struct virtio_device *dev, unsigned int status);
Rusty Russellec3d41c2007-10-22 11:03:36 +1000128int register_virtio_device(struct virtio_device *dev);
129void unregister_virtio_device(struct virtio_device *dev);
David Stevensa0308932020-08-18 16:13:41 +0900130bool is_virtio_device(struct device *dev);
Rusty Russellec3d41c2007-10-22 11:03:36 +1000131
Rusty Russelle2dcdfe2014-04-28 11:15:08 +0930132void virtio_break_device(struct virtio_device *dev);
133
Michael S. Tsirkin016c98c2014-10-14 10:40:34 +1030134void virtio_config_changed(struct virtio_device *dev);
John Fastabend9fe7bfc2017-02-02 19:16:01 -0800135void virtio_config_disable(struct virtio_device *dev);
136void virtio_config_enable(struct virtio_device *dev);
137int virtio_finalize_features(struct virtio_device *dev);
Michael S. Tsirkinc6716ba2014-10-14 10:40:35 +1030138#ifdef CONFIG_PM_SLEEP
139int virtio_device_freeze(struct virtio_device *dev);
140int virtio_device_restore(struct virtio_device *dev);
141#endif
Michael S. Tsirkin016c98c2014-10-14 10:40:34 +1030142
Joerg Roedele6d6dd62019-02-07 12:59:16 +0100143size_t virtio_max_dma_size(struct virtio_device *vdev);
144
Michael S. Tsirkin24a7e4d2018-04-20 20:22:40 +0300145#define virtio_device_for_each_vq(vdev, vq) \
146 list_for_each_entry(vq, &vdev->vqs, list)
147
Rusty Russellec3d41c2007-10-22 11:03:36 +1000148/**
149 * virtio_driver - operations for a virtio I/O driver
150 * @driver: underlying device driver (populate name and owner).
151 * @id_table: the ids serviced by this driver.
Wang Sheng-Hui5f41f8b2011-08-25 21:04:05 +0800152 * @feature_table: an array of feature numbers supported by this driver.
Rusty Russellc45a6812008-05-02 21:50:50 -0500153 * @feature_table_size: number of entries in the feature table array.
Michael S. Tsirkinb3bb62d2014-10-23 18:07:47 +0300154 * @feature_table_legacy: same as feature_table but when working in legacy mode.
155 * @feature_table_size_legacy: number of entries in feature table legacy array.
Rusty Russell20f77f52009-06-12 22:16:33 -0600156 * @probe: the function to call when a device is found. Returns 0 or -errno.
Cornelia Huck9ea762a2017-03-30 13:13:33 +0200157 * @scan: optional function to call after successful probe; intended
158 * for virtio-scsi to invoke a scan.
Wang Sheng-Hui5f41f8b2011-08-25 21:04:05 +0800159 * @remove: the function to call when a device is removed.
Rusty Russellf957d1f2008-02-04 23:49:58 -0500160 * @config_changed: optional function to call when the device configuration
161 * changes; may be called in interrupt context.
Cornelia Huck9ea762a2017-03-30 13:13:33 +0200162 * @freeze: optional function to call during suspend/hibernation.
163 * @restore: optional function to call on resume.
Rusty Russellec3d41c2007-10-22 11:03:36 +1000164 */
165struct virtio_driver {
166 struct device_driver driver;
167 const struct virtio_device_id *id_table;
Rusty Russellc45a6812008-05-02 21:50:50 -0500168 const unsigned int *feature_table;
169 unsigned int feature_table_size;
Michael S. Tsirkinb3bb62d2014-10-23 18:07:47 +0300170 const unsigned int *feature_table_legacy;
171 unsigned int feature_table_size_legacy;
Michael S. Tsirkin404123c2017-03-29 19:06:20 +0300172 int (*validate)(struct virtio_device *dev);
Rusty Russellec3d41c2007-10-22 11:03:36 +1000173 int (*probe)(struct virtio_device *dev);
Nicholas Bellinger59057fb2012-07-11 21:22:16 +0000174 void (*scan)(struct virtio_device *dev);
Rusty Russellec3d41c2007-10-22 11:03:36 +1000175 void (*remove)(struct virtio_device *dev);
Rusty Russellf957d1f2008-02-04 23:49:58 -0500176 void (*config_changed)(struct virtio_device *dev);
Amit Shahf0fe6f12011-12-22 16:58:26 +0530177#ifdef CONFIG_PM
178 int (*freeze)(struct virtio_device *dev);
Amit Shahf0fe6f12011-12-22 16:58:26 +0530179 int (*restore)(struct virtio_device *dev);
180#endif
Rusty Russellec3d41c2007-10-22 11:03:36 +1000181};
182
Wanlong Gao9a2bdcc2012-12-10 16:38:33 +0800183static inline struct virtio_driver *drv_to_virtio(struct device_driver *drv)
184{
185 return container_of(drv, struct virtio_driver, driver);
186}
187
Rusty Russellec3d41c2007-10-22 11:03:36 +1000188int register_virtio_driver(struct virtio_driver *drv);
189void unregister_virtio_driver(struct virtio_driver *drv);
Sjur Brændeland6e105e02013-02-13 15:52:36 +1030190
191/* module_virtio_driver() - Helper macro for drivers that don't do
192 * anything special in module init/exit. This eliminates a lot of
193 * boilerplate. Each module may only use this macro once, and
194 * calling it replaces module_init() and module_exit()
195 */
196#define module_virtio_driver(__virtio_driver) \
197 module_driver(__virtio_driver, register_virtio_driver, \
198 unregister_virtio_driver)
Rusty Russellec3d41c2007-10-22 11:03:36 +1000199#endif /* _LINUX_VIRTIO_H */