blob: 72398eea6e86e6a1b736b05fc310f021d204bdb6 [file] [log] [blame]
Rusty Russellec3d41c2007-10-22 11:03:36 +10001#ifndef _LINUX_VIRTIO_H
2#define _LINUX_VIRTIO_H
3/* Everything a virtio driver needs to work with any particular virtio
4 * implementation. */
5#include <linux/types.h>
6#include <linux/scatterlist.h>
7#include <linux/spinlock.h>
8#include <linux/device.h>
9#include <linux/mod_devicetable.h>
Michael S. Tsirkinbbd603e2010-04-29 17:26:37 +030010#include <linux/gfp.h>
Sjur Brændeland3beee862013-03-20 13:51:24 +103011#include <linux/vringh.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 Russellf96fde42012-01-12 15:44:42 +103037int virtqueue_add_buf(struct virtqueue *vq,
38 struct scatterlist sg[],
39 unsigned int out_num,
40 unsigned int in_num,
41 void *data,
42 gfp_t gfp);
Rusty Russellec3d41c2007-10-22 11:03:36 +100043
Rusty Russell282edb32013-03-20 15:44:26 +103044int virtqueue_add_outbuf(struct virtqueue *vq,
45 struct scatterlist sg[], unsigned int num,
46 void *data,
47 gfp_t gfp);
48
49int virtqueue_add_inbuf(struct virtqueue *vq,
50 struct scatterlist sg[], unsigned int num,
51 void *data,
52 gfp_t gfp);
53
Rusty Russell13816c72013-03-20 15:37:09 +103054int virtqueue_add_sgs(struct virtqueue *vq,
55 struct scatterlist *sgs[],
56 unsigned int out_sgs,
57 unsigned int in_sgs,
58 void *data,
59 gfp_t gfp);
60
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +030061void virtqueue_kick(struct virtqueue *vq);
Rusty Russellec3d41c2007-10-22 11:03:36 +100062
Rusty Russell41f03772012-01-12 15:44:43 +103063bool virtqueue_kick_prepare(struct virtqueue *vq);
64
65void virtqueue_notify(struct virtqueue *vq);
66
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +030067void *virtqueue_get_buf(struct virtqueue *vq, unsigned int *len);
Rusty Russellec3d41c2007-10-22 11:03:36 +100068
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +030069void virtqueue_disable_cb(struct virtqueue *vq);
Michael S. Tsirkin316f25f2010-04-12 16:18:25 +030070
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +030071bool virtqueue_enable_cb(struct virtqueue *vq);
Michael S. Tsirkin316f25f2010-04-12 16:18:25 +030072
Michael S. Tsirkincc229882013-07-09 13:19:18 +030073unsigned virtqueue_enable_cb_prepare(struct virtqueue *vq);
74
75bool virtqueue_poll(struct virtqueue *vq, unsigned);
76
Michael S. Tsirkin7ab358c2011-05-20 02:11:14 +030077bool virtqueue_enable_cb_delayed(struct virtqueue *vq);
78
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +030079void *virtqueue_detach_unused_buf(struct virtqueue *vq);
Michael S. Tsirkin316f25f2010-04-12 16:18:25 +030080
Rick Jones8f9f4662011-10-19 08:10:59 +000081unsigned int virtqueue_get_vring_size(struct virtqueue *vq);
82
Rusty Russellec3d41c2007-10-22 11:03:36 +100083/**
84 * virtio_device - representation of a device using virtio
85 * @index: unique position on the virtio bus
86 * @dev: underlying device.
87 * @id: the device type identification (used to match it with a driver).
88 * @config: the configuration ops for this device.
Sjur Brændeland3beee862013-03-20 13:51:24 +103089 * @vringh_config: configuration ops for host vrings.
Rusty Russell9499f5e2009-06-12 22:16:35 -060090 * @vqs: the list of virtqueues for this device.
Rusty Russellc45a6812008-05-02 21:50:50 -050091 * @features: the features supported by both driver and device.
Rusty Russellec3d41c2007-10-22 11:03:36 +100092 * @priv: private pointer for the driver's use.
93 */
Rusty Russell9499f5e2009-06-12 22:16:35 -060094struct virtio_device {
Rusty Russellec3d41c2007-10-22 11:03:36 +100095 int index;
96 struct device dev;
97 struct virtio_device_id id;
Stephen Hemminger93503932013-02-10 15:57:38 +103098 const struct virtio_config_ops *config;
Sjur Brændeland3beee862013-03-20 13:51:24 +103099 const struct vringh_config_ops *vringh_config;
Rusty Russell9499f5e2009-06-12 22:16:35 -0600100 struct list_head vqs;
Rusty Russellc45a6812008-05-02 21:50:50 -0500101 /* Note that this is a Linux set_bit-style bitmap. */
102 unsigned long features[1];
Rusty Russellec3d41c2007-10-22 11:03:36 +1000103 void *priv;
104};
105
Wanlong Gao9bffdca2012-12-11 11:04:50 +1030106static inline struct virtio_device *dev_to_virtio(struct device *_dev)
107{
108 return container_of(_dev, struct virtio_device, dev);
109}
110
Rusty Russellec3d41c2007-10-22 11:03:36 +1000111int register_virtio_device(struct virtio_device *dev);
112void unregister_virtio_device(struct virtio_device *dev);
113
114/**
115 * virtio_driver - operations for a virtio I/O driver
116 * @driver: underlying device driver (populate name and owner).
117 * @id_table: the ids serviced by this driver.
Wang Sheng-Hui5f41f8b2011-08-25 21:04:05 +0800118 * @feature_table: an array of feature numbers supported by this driver.
Rusty Russellc45a6812008-05-02 21:50:50 -0500119 * @feature_table_size: number of entries in the feature table array.
Rusty Russell20f77f52009-06-12 22:16:33 -0600120 * @probe: the function to call when a device is found. Returns 0 or -errno.
Wang Sheng-Hui5f41f8b2011-08-25 21:04:05 +0800121 * @remove: the function to call when a device is removed.
Rusty Russellf957d1f2008-02-04 23:49:58 -0500122 * @config_changed: optional function to call when the device configuration
123 * changes; may be called in interrupt context.
Rusty Russellec3d41c2007-10-22 11:03:36 +1000124 */
125struct virtio_driver {
126 struct device_driver driver;
127 const struct virtio_device_id *id_table;
Rusty Russellc45a6812008-05-02 21:50:50 -0500128 const unsigned int *feature_table;
129 unsigned int feature_table_size;
Rusty Russellec3d41c2007-10-22 11:03:36 +1000130 int (*probe)(struct virtio_device *dev);
Nicholas Bellinger59057fb2012-07-11 21:22:16 +0000131 void (*scan)(struct virtio_device *dev);
Rusty Russellec3d41c2007-10-22 11:03:36 +1000132 void (*remove)(struct virtio_device *dev);
Rusty Russellf957d1f2008-02-04 23:49:58 -0500133 void (*config_changed)(struct virtio_device *dev);
Amit Shahf0fe6f12011-12-22 16:58:26 +0530134#ifdef CONFIG_PM
135 int (*freeze)(struct virtio_device *dev);
Amit Shahf0fe6f12011-12-22 16:58:26 +0530136 int (*restore)(struct virtio_device *dev);
137#endif
Rusty Russellec3d41c2007-10-22 11:03:36 +1000138};
139
Wanlong Gao9a2bdcc2012-12-10 16:38:33 +0800140static inline struct virtio_driver *drv_to_virtio(struct device_driver *drv)
141{
142 return container_of(drv, struct virtio_driver, driver);
143}
144
Rusty Russellec3d41c2007-10-22 11:03:36 +1000145int register_virtio_driver(struct virtio_driver *drv);
146void unregister_virtio_driver(struct virtio_driver *drv);
Sjur Brændeland6e105e02013-02-13 15:52:36 +1030147
148/* module_virtio_driver() - Helper macro for drivers that don't do
149 * anything special in module init/exit. This eliminates a lot of
150 * boilerplate. Each module may only use this macro once, and
151 * calling it replaces module_init() and module_exit()
152 */
153#define module_virtio_driver(__virtio_driver) \
154 module_driver(__virtio_driver, register_virtio_driver, \
155 unregister_virtio_driver)
Rusty Russellec3d41c2007-10-22 11:03:36 +1000156#endif /* _LINUX_VIRTIO_H */