Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 1 | #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. Tsirkin | bbd603e | 2010-04-29 17:26:37 +0300 | [diff] [blame] | 10 | #include <linux/gfp.h> |
Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 11 | |
| 12 | /** |
| 13 | * virtqueue - a queue to register buffers for sending or receiving. |
Rusty Russell | 9499f5e | 2009-06-12 22:16:35 -0600 | [diff] [blame] | 14 | * @list: the chain of virtqueues for this device |
Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 15 | * @callback: the function to call when buffers are consumed (can be NULL). |
Rusty Russell | 9499f5e | 2009-06-12 22:16:35 -0600 | [diff] [blame] | 16 | * @name: the name of this virtqueue (mainly for debugging) |
Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 17 | * @vdev: the virtio device this queue was created for. |
Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 18 | * @priv: a pointer for the virtqueue implementation to use. |
| 19 | */ |
Rusty Russell | 9499f5e | 2009-06-12 22:16:35 -0600 | [diff] [blame] | 20 | struct virtqueue { |
| 21 | struct list_head list; |
Rusty Russell | 18445c4 | 2008-02-04 23:49:57 -0500 | [diff] [blame] | 22 | void (*callback)(struct virtqueue *vq); |
Rusty Russell | 9499f5e | 2009-06-12 22:16:35 -0600 | [diff] [blame] | 23 | const char *name; |
Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 24 | struct virtio_device *vdev; |
Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 25 | void *priv; |
| 26 | }; |
| 27 | |
| 28 | /** |
Michael S. Tsirkin | 7c5e9ed | 2010-04-12 16:19:07 +0300 | [diff] [blame] | 29 | * operations for virtqueue |
| 30 | * virtqueue_add_buf: expose buffer to other end |
Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 31 | * vq: the struct virtqueue we're talking about. |
| 32 | * sg: the description of the buffer(s). |
| 33 | * out_num: the number of sg readable by other side |
| 34 | * in_num: the number of sg which are writable (after readable ones) |
| 35 | * data: the token identifying the buffer. |
Michael S. Tsirkin | bbd603e | 2010-04-29 17:26:37 +0300 | [diff] [blame] | 36 | * gfp: how to do memory allocations (if necessary). |
Rusty Russell | 3c1b27d | 2009-09-23 22:26:31 -0600 | [diff] [blame] | 37 | * Returns remaining capacity of queue (sg segments) or a negative error. |
Michael S. Tsirkin | 7c5e9ed | 2010-04-12 16:19:07 +0300 | [diff] [blame] | 38 | * virtqueue_kick: update after add_buf |
Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 39 | * vq: the struct virtqueue |
| 40 | * After one or more add_buf calls, invoke this to kick the other side. |
Michael S. Tsirkin | 7c5e9ed | 2010-04-12 16:19:07 +0300 | [diff] [blame] | 41 | * virtqueue_get_buf: get the next used buffer |
Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 42 | * vq: the struct virtqueue we're talking about. |
| 43 | * len: the length written into the buffer |
| 44 | * Returns NULL or the "data" token handed to add_buf. |
Michael S. Tsirkin | 7c5e9ed | 2010-04-12 16:19:07 +0300 | [diff] [blame] | 45 | * virtqueue_disable_cb: disable callbacks |
Rusty Russell | 18445c4 | 2008-02-04 23:49:57 -0500 | [diff] [blame] | 46 | * vq: the struct virtqueue we're talking about. |
Rusty Russell | 2557a93 | 2008-04-07 14:30:28 +1000 | [diff] [blame] | 47 | * Note that this is not necessarily synchronous, hence unreliable and only |
| 48 | * useful as an optimization. |
Michael S. Tsirkin | 7c5e9ed | 2010-04-12 16:19:07 +0300 | [diff] [blame] | 49 | * virtqueue_enable_cb: restart callbacks after disable_cb. |
Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 50 | * vq: the struct virtqueue we're talking about. |
Christian Borntraeger | 4265f16 | 2008-03-14 14:17:05 +0100 | [diff] [blame] | 51 | * This re-enables callbacks; it returns "false" if there are pending |
| 52 | * buffers in the queue, to detect a possible race between the driver |
| 53 | * checking for more work, and enabling callbacks. |
Michael S. Tsirkin | 7ab358c | 2011-05-20 02:11:14 +0300 | [diff] [blame] | 54 | * virtqueue_enable_cb_delayed: restart callbacks after disable_cb. |
| 55 | * vq: the struct virtqueue we're talking about. |
| 56 | * This re-enables callbacks but hints to the other side to delay |
| 57 | * interrupts until most of the available buffers have been processed; |
| 58 | * it returns "false" if there are many pending buffers in the queue, |
| 59 | * to detect a possible race between the driver checking for more work, |
| 60 | * and enabling callbacks. |
Michael S. Tsirkin | 7c5e9ed | 2010-04-12 16:19:07 +0300 | [diff] [blame] | 61 | * virtqueue_detach_unused_buf: detach first unused buffer |
Shirley Ma | c021eac | 2010-01-18 19:15:23 +0530 | [diff] [blame] | 62 | * vq: the struct virtqueue we're talking about. |
| 63 | * Returns NULL or the "data" token handed to add_buf |
Rick Jones | 8f9f466 | 2011-10-19 08:10:59 +0000 | [diff] [blame^] | 64 | * virtqueue_get_vring_size: return the size of the virtqueue's vring |
| 65 | * vq: the struct virtqueue containing the vring of interest. |
| 66 | * Returns the size of the vring. |
Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 67 | * |
| 68 | * Locking rules are straightforward: the driver is responsible for |
Rusty Russell | 2557a93 | 2008-04-07 14:30:28 +1000 | [diff] [blame] | 69 | * locking. No two operations may be invoked simultaneously, with the exception |
Michael S. Tsirkin | 7c5e9ed | 2010-04-12 16:19:07 +0300 | [diff] [blame] | 70 | * of virtqueue_disable_cb. |
Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 71 | * |
| 72 | * All operations can be called in any context. |
| 73 | */ |
Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 74 | |
Michael S. Tsirkin | bbd603e | 2010-04-29 17:26:37 +0300 | [diff] [blame] | 75 | int virtqueue_add_buf_gfp(struct virtqueue *vq, |
| 76 | struct scatterlist sg[], |
| 77 | unsigned int out_num, |
| 78 | unsigned int in_num, |
| 79 | void *data, |
| 80 | gfp_t gfp); |
| 81 | |
| 82 | static inline int virtqueue_add_buf(struct virtqueue *vq, |
| 83 | struct scatterlist sg[], |
| 84 | unsigned int out_num, |
| 85 | unsigned int in_num, |
| 86 | void *data) |
| 87 | { |
| 88 | return virtqueue_add_buf_gfp(vq, sg, out_num, in_num, data, GFP_ATOMIC); |
| 89 | } |
Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 90 | |
Michael S. Tsirkin | 7c5e9ed | 2010-04-12 16:19:07 +0300 | [diff] [blame] | 91 | void virtqueue_kick(struct virtqueue *vq); |
Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 92 | |
Michael S. Tsirkin | 7c5e9ed | 2010-04-12 16:19:07 +0300 | [diff] [blame] | 93 | void *virtqueue_get_buf(struct virtqueue *vq, unsigned int *len); |
Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 94 | |
Michael S. Tsirkin | 7c5e9ed | 2010-04-12 16:19:07 +0300 | [diff] [blame] | 95 | void virtqueue_disable_cb(struct virtqueue *vq); |
Michael S. Tsirkin | 316f25f | 2010-04-12 16:18:25 +0300 | [diff] [blame] | 96 | |
Michael S. Tsirkin | 7c5e9ed | 2010-04-12 16:19:07 +0300 | [diff] [blame] | 97 | bool virtqueue_enable_cb(struct virtqueue *vq); |
Michael S. Tsirkin | 316f25f | 2010-04-12 16:18:25 +0300 | [diff] [blame] | 98 | |
Michael S. Tsirkin | 7ab358c | 2011-05-20 02:11:14 +0300 | [diff] [blame] | 99 | bool virtqueue_enable_cb_delayed(struct virtqueue *vq); |
| 100 | |
Michael S. Tsirkin | 7c5e9ed | 2010-04-12 16:19:07 +0300 | [diff] [blame] | 101 | void *virtqueue_detach_unused_buf(struct virtqueue *vq); |
Michael S. Tsirkin | 316f25f | 2010-04-12 16:18:25 +0300 | [diff] [blame] | 102 | |
Rick Jones | 8f9f466 | 2011-10-19 08:10:59 +0000 | [diff] [blame^] | 103 | unsigned int virtqueue_get_vring_size(struct virtqueue *vq); |
| 104 | |
Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 105 | /** |
| 106 | * virtio_device - representation of a device using virtio |
| 107 | * @index: unique position on the virtio bus |
| 108 | * @dev: underlying device. |
| 109 | * @id: the device type identification (used to match it with a driver). |
| 110 | * @config: the configuration ops for this device. |
Rusty Russell | 9499f5e | 2009-06-12 22:16:35 -0600 | [diff] [blame] | 111 | * @vqs: the list of virtqueues for this device. |
Rusty Russell | c45a681 | 2008-05-02 21:50:50 -0500 | [diff] [blame] | 112 | * @features: the features supported by both driver and device. |
Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 113 | * @priv: private pointer for the driver's use. |
| 114 | */ |
Rusty Russell | 9499f5e | 2009-06-12 22:16:35 -0600 | [diff] [blame] | 115 | struct virtio_device { |
Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 116 | int index; |
| 117 | struct device dev; |
| 118 | struct virtio_device_id id; |
| 119 | struct virtio_config_ops *config; |
Rusty Russell | 9499f5e | 2009-06-12 22:16:35 -0600 | [diff] [blame] | 120 | struct list_head vqs; |
Rusty Russell | c45a681 | 2008-05-02 21:50:50 -0500 | [diff] [blame] | 121 | /* Note that this is a Linux set_bit-style bitmap. */ |
| 122 | unsigned long features[1]; |
Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 123 | void *priv; |
| 124 | }; |
| 125 | |
Aneesh Kumar K.V | 86c8437 | 2010-03-06 04:44:15 +0000 | [diff] [blame] | 126 | #define dev_to_virtio(dev) container_of(dev, struct virtio_device, dev) |
Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 127 | int register_virtio_device(struct virtio_device *dev); |
| 128 | void unregister_virtio_device(struct virtio_device *dev); |
| 129 | |
| 130 | /** |
| 131 | * virtio_driver - operations for a virtio I/O driver |
| 132 | * @driver: underlying device driver (populate name and owner). |
| 133 | * @id_table: the ids serviced by this driver. |
Rusty Russell | c45a681 | 2008-05-02 21:50:50 -0500 | [diff] [blame] | 134 | * @feature_table: an array of feature numbers supported by this device. |
| 135 | * @feature_table_size: number of entries in the feature table array. |
Rusty Russell | 20f77f5 | 2009-06-12 22:16:33 -0600 | [diff] [blame] | 136 | * @probe: the function to call when a device is found. Returns 0 or -errno. |
Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 137 | * @remove: the function when a device is removed. |
Rusty Russell | f957d1f | 2008-02-04 23:49:58 -0500 | [diff] [blame] | 138 | * @config_changed: optional function to call when the device configuration |
| 139 | * changes; may be called in interrupt context. |
Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 140 | */ |
| 141 | struct virtio_driver { |
| 142 | struct device_driver driver; |
| 143 | const struct virtio_device_id *id_table; |
Rusty Russell | c45a681 | 2008-05-02 21:50:50 -0500 | [diff] [blame] | 144 | const unsigned int *feature_table; |
| 145 | unsigned int feature_table_size; |
Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 146 | int (*probe)(struct virtio_device *dev); |
| 147 | void (*remove)(struct virtio_device *dev); |
Rusty Russell | f957d1f | 2008-02-04 23:49:58 -0500 | [diff] [blame] | 148 | void (*config_changed)(struct virtio_device *dev); |
Rusty Russell | ec3d41c | 2007-10-22 11:03:36 +1000 | [diff] [blame] | 149 | }; |
| 150 | |
| 151 | int register_virtio_driver(struct virtio_driver *drv); |
| 152 | void unregister_virtio_driver(struct virtio_driver *drv); |
| 153 | #endif /* _LINUX_VIRTIO_H */ |