blob: 5b0fce0d2aa2868565a4dcea023610a69e7bceec [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>
10
11/**
12 * virtqueue - a queue to register buffers for sending or receiving.
Rusty Russell9499f5e2009-06-12 22:16:35 -060013 * @list: the chain of virtqueues for this device
Rusty Russellec3d41c2007-10-22 11:03:36 +100014 * @callback: the function to call when buffers are consumed (can be NULL).
Rusty Russell9499f5e2009-06-12 22:16:35 -060015 * @name: the name of this virtqueue (mainly for debugging)
Rusty Russellec3d41c2007-10-22 11:03:36 +100016 * @vdev: the virtio device this queue was created for.
Rusty Russellec3d41c2007-10-22 11:03:36 +100017 * @priv: a pointer for the virtqueue implementation to use.
18 */
Rusty Russell9499f5e2009-06-12 22:16:35 -060019struct virtqueue {
20 struct list_head list;
Rusty Russell18445c42008-02-04 23:49:57 -050021 void (*callback)(struct virtqueue *vq);
Rusty Russell9499f5e2009-06-12 22:16:35 -060022 const char *name;
Rusty Russellec3d41c2007-10-22 11:03:36 +100023 struct virtio_device *vdev;
Rusty Russellec3d41c2007-10-22 11:03:36 +100024 void *priv;
25};
26
27/**
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +030028 * operations for virtqueue
29 * virtqueue_add_buf: expose buffer to other end
Rusty Russellec3d41c2007-10-22 11:03:36 +100030 * vq: the struct virtqueue we're talking about.
31 * sg: the description of the buffer(s).
32 * out_num: the number of sg readable by other side
33 * in_num: the number of sg which are writable (after readable ones)
34 * data: the token identifying the buffer.
Rusty Russell3c1b27d2009-09-23 22:26:31 -060035 * Returns remaining capacity of queue (sg segments) or a negative error.
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +030036 * virtqueue_kick: update after add_buf
Rusty Russellec3d41c2007-10-22 11:03:36 +100037 * vq: the struct virtqueue
38 * After one or more add_buf calls, invoke this to kick the other side.
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +030039 * virtqueue_get_buf: get the next used buffer
Rusty Russellec3d41c2007-10-22 11:03:36 +100040 * vq: the struct virtqueue we're talking about.
41 * len: the length written into the buffer
42 * Returns NULL or the "data" token handed to add_buf.
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +030043 * virtqueue_disable_cb: disable callbacks
Rusty Russell18445c42008-02-04 23:49:57 -050044 * vq: the struct virtqueue we're talking about.
Rusty Russell2557a932008-04-07 14:30:28 +100045 * Note that this is not necessarily synchronous, hence unreliable and only
46 * useful as an optimization.
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +030047 * virtqueue_enable_cb: restart callbacks after disable_cb.
Rusty Russellec3d41c2007-10-22 11:03:36 +100048 * vq: the struct virtqueue we're talking about.
Christian Borntraeger4265f162008-03-14 14:17:05 +010049 * This re-enables callbacks; it returns "false" if there are pending
50 * buffers in the queue, to detect a possible race between the driver
51 * checking for more work, and enabling callbacks.
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +030052 * virtqueue_detach_unused_buf: detach first unused buffer
Shirley Mac021eac2010-01-18 19:15:23 +053053 * vq: the struct virtqueue we're talking about.
54 * Returns NULL or the "data" token handed to add_buf
Rusty Russellec3d41c2007-10-22 11:03:36 +100055 *
56 * Locking rules are straightforward: the driver is responsible for
Rusty Russell2557a932008-04-07 14:30:28 +100057 * locking. No two operations may be invoked simultaneously, with the exception
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +030058 * of virtqueue_disable_cb.
Rusty Russellec3d41c2007-10-22 11:03:36 +100059 *
60 * All operations can be called in any context.
61 */
Rusty Russellec3d41c2007-10-22 11:03:36 +100062
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +030063int virtqueue_add_buf(struct virtqueue *vq,
64 struct scatterlist sg[],
65 unsigned int out_num,
66 unsigned int in_num,
67 void *data);
Rusty Russellec3d41c2007-10-22 11:03:36 +100068
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +030069void virtqueue_kick(struct virtqueue *vq);
Rusty Russellec3d41c2007-10-22 11:03:36 +100070
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +030071void *virtqueue_get_buf(struct virtqueue *vq, unsigned int *len);
Rusty Russellec3d41c2007-10-22 11:03:36 +100072
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +030073void virtqueue_disable_cb(struct virtqueue *vq);
Michael S. Tsirkin316f25f2010-04-12 16:18:25 +030074
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +030075bool virtqueue_enable_cb(struct virtqueue *vq);
Michael S. Tsirkin316f25f2010-04-12 16:18:25 +030076
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +030077void *virtqueue_detach_unused_buf(struct virtqueue *vq);
Michael S. Tsirkin316f25f2010-04-12 16:18:25 +030078
Rusty Russellec3d41c2007-10-22 11:03:36 +100079/**
80 * virtio_device - representation of a device using virtio
81 * @index: unique position on the virtio bus
82 * @dev: underlying device.
83 * @id: the device type identification (used to match it with a driver).
84 * @config: the configuration ops for this device.
Rusty Russell9499f5e2009-06-12 22:16:35 -060085 * @vqs: the list of virtqueues for this device.
Rusty Russellc45a6812008-05-02 21:50:50 -050086 * @features: the features supported by both driver and device.
Rusty Russellec3d41c2007-10-22 11:03:36 +100087 * @priv: private pointer for the driver's use.
88 */
Rusty Russell9499f5e2009-06-12 22:16:35 -060089struct virtio_device {
Rusty Russellec3d41c2007-10-22 11:03:36 +100090 int index;
91 struct device dev;
92 struct virtio_device_id id;
93 struct virtio_config_ops *config;
Rusty Russell9499f5e2009-06-12 22:16:35 -060094 struct list_head vqs;
Rusty Russellc45a6812008-05-02 21:50:50 -050095 /* Note that this is a Linux set_bit-style bitmap. */
96 unsigned long features[1];
Rusty Russellec3d41c2007-10-22 11:03:36 +100097 void *priv;
98};
99
Aneesh Kumar K.V86c84372010-03-06 04:44:15 +0000100#define dev_to_virtio(dev) container_of(dev, struct virtio_device, dev)
Rusty Russellec3d41c2007-10-22 11:03:36 +1000101int register_virtio_device(struct virtio_device *dev);
102void unregister_virtio_device(struct virtio_device *dev);
103
104/**
105 * virtio_driver - operations for a virtio I/O driver
106 * @driver: underlying device driver (populate name and owner).
107 * @id_table: the ids serviced by this driver.
Rusty Russellc45a6812008-05-02 21:50:50 -0500108 * @feature_table: an array of feature numbers supported by this device.
109 * @feature_table_size: number of entries in the feature table array.
Rusty Russell20f77f52009-06-12 22:16:33 -0600110 * @probe: the function to call when a device is found. Returns 0 or -errno.
Rusty Russellec3d41c2007-10-22 11:03:36 +1000111 * @remove: the function when a device is removed.
Rusty Russellf957d1f2008-02-04 23:49:58 -0500112 * @config_changed: optional function to call when the device configuration
113 * changes; may be called in interrupt context.
Rusty Russellec3d41c2007-10-22 11:03:36 +1000114 */
115struct virtio_driver {
116 struct device_driver driver;
117 const struct virtio_device_id *id_table;
Rusty Russellc45a6812008-05-02 21:50:50 -0500118 const unsigned int *feature_table;
119 unsigned int feature_table_size;
Rusty Russellec3d41c2007-10-22 11:03:36 +1000120 int (*probe)(struct virtio_device *dev);
121 void (*remove)(struct virtio_device *dev);
Rusty Russellf957d1f2008-02-04 23:49:58 -0500122 void (*config_changed)(struct virtio_device *dev);
Rusty Russellec3d41c2007-10-22 11:03:36 +1000123};
124
125int register_virtio_driver(struct virtio_driver *drv);
126void unregister_virtio_driver(struct virtio_driver *drv);
127#endif /* _LINUX_VIRTIO_H */