blob: 18ccc686a429afe3f69bc0451e5ead7b0d161446 [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.
17 * @vq_ops: the operations for this virtqueue (see below).
18 * @priv: a pointer for the virtqueue implementation to use.
19 */
Rusty Russell9499f5e2009-06-12 22:16:35 -060020struct virtqueue {
21 struct list_head list;
Rusty Russell18445c42008-02-04 23:49:57 -050022 void (*callback)(struct virtqueue *vq);
Rusty Russell9499f5e2009-06-12 22:16:35 -060023 const char *name;
Rusty Russellec3d41c2007-10-22 11:03:36 +100024 struct virtio_device *vdev;
25 struct virtqueue_ops *vq_ops;
26 void *priv;
27};
28
29/**
30 * virtqueue_ops - operations for virtqueue abstraction layer
31 * @add_buf: expose buffer to other end
32 * vq: the struct virtqueue we're talking about.
33 * sg: the description of the buffer(s).
34 * out_num: the number of sg readable by other side
35 * in_num: the number of sg which are writable (after readable ones)
36 * data: the token identifying the buffer.
Rusty Russell3c1b27d2009-09-23 22:26:31 -060037 * Returns remaining capacity of queue (sg segments) or a negative error.
Rusty Russellec3d41c2007-10-22 11:03:36 +100038 * @kick: update after add_buf
39 * vq: the struct virtqueue
40 * After one or more add_buf calls, invoke this to kick the other side.
41 * @get_buf: get the next used buffer
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.
Rusty Russell18445c42008-02-04 23:49:57 -050045 * @disable_cb: disable callbacks
46 * vq: the struct virtqueue we're talking about.
Rusty Russell2557a932008-04-07 14:30:28 +100047 * Note that this is not necessarily synchronous, hence unreliable and only
48 * useful as an optimization.
Rusty Russell18445c42008-02-04 23:49:57 -050049 * @enable_cb: restart callbacks after disable_cb.
Rusty Russellec3d41c2007-10-22 11:03:36 +100050 * vq: the struct virtqueue we're talking about.
Christian Borntraeger4265f162008-03-14 14:17:05 +010051 * 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.
Shirley Mac021eac2010-01-18 19:15:23 +053054 * @detach_unused_buf: detach first unused buffer
55 * vq: the struct virtqueue we're talking about.
56 * Returns NULL or the "data" token handed to add_buf
Rusty Russellec3d41c2007-10-22 11:03:36 +100057 *
58 * Locking rules are straightforward: the driver is responsible for
Rusty Russell2557a932008-04-07 14:30:28 +100059 * locking. No two operations may be invoked simultaneously, with the exception
60 * of @disable_cb.
Rusty Russellec3d41c2007-10-22 11:03:36 +100061 *
62 * All operations can be called in any context.
63 */
64struct virtqueue_ops {
65 int (*add_buf)(struct virtqueue *vq,
66 struct scatterlist sg[],
67 unsigned int out_num,
68 unsigned int in_num,
69 void *data);
70
71 void (*kick)(struct virtqueue *vq);
72
73 void *(*get_buf)(struct virtqueue *vq, unsigned int *len);
74
Rusty Russell18445c42008-02-04 23:49:57 -050075 void (*disable_cb)(struct virtqueue *vq);
76 bool (*enable_cb)(struct virtqueue *vq);
Shirley Mac021eac2010-01-18 19:15:23 +053077 void *(*detach_unused_buf)(struct virtqueue *vq);
Rusty Russellec3d41c2007-10-22 11:03:36 +100078};
79
Michael S. Tsirkin316f25f2010-04-12 16:18:25 +030080static inline int virtqueue_add_buf(struct virtqueue *vq,
81 struct scatterlist sg[],
82 unsigned int out_num,
83 unsigned int in_num,
84 void *data)
85{
86 return vq->vq_ops->add_buf(vq, sg, out_num, in_num, data);
87}
88
89static inline int void virtqueue_kick(struct virtqueue *vq)
90{
91 return vq->vq_ops->kick(vq);
92}
93
94static inline void *virtqueue_get_buf(struct virtqueue *vq, unsigned int *len)
95{
96 return vq->vq_ops->get_buf(vq, len);
97}
98
99static inline void virtqueue_disable_cb(struct virtqueue *vq)
100{
101 vq->vq_ops->disable_cb(vq);
102}
103
104static inline bool virtqueue_enable_cb(struct virtqueue *vq)
105{
106 return vq->vq_ops->enable_cb(vq);
107}
108
109static inline void *virtqueue_detach_unused_buf(struct virtqueue *vq)
110{
111 return vq->vq_ops->detach_unused_buf(vq);
112}
113
Rusty Russellec3d41c2007-10-22 11:03:36 +1000114/**
115 * virtio_device - representation of a device using virtio
116 * @index: unique position on the virtio bus
117 * @dev: underlying device.
118 * @id: the device type identification (used to match it with a driver).
119 * @config: the configuration ops for this device.
Rusty Russell9499f5e2009-06-12 22:16:35 -0600120 * @vqs: the list of virtqueues for this device.
Rusty Russellc45a6812008-05-02 21:50:50 -0500121 * @features: the features supported by both driver and device.
Rusty Russellec3d41c2007-10-22 11:03:36 +1000122 * @priv: private pointer for the driver's use.
123 */
Rusty Russell9499f5e2009-06-12 22:16:35 -0600124struct virtio_device {
Rusty Russellec3d41c2007-10-22 11:03:36 +1000125 int index;
126 struct device dev;
127 struct virtio_device_id id;
128 struct virtio_config_ops *config;
Rusty Russell9499f5e2009-06-12 22:16:35 -0600129 struct list_head vqs;
Rusty Russellc45a6812008-05-02 21:50:50 -0500130 /* Note that this is a Linux set_bit-style bitmap. */
131 unsigned long features[1];
Rusty Russellec3d41c2007-10-22 11:03:36 +1000132 void *priv;
133};
134
Aneesh Kumar K.V86c84372010-03-06 04:44:15 +0000135#define dev_to_virtio(dev) container_of(dev, struct virtio_device, dev)
Rusty Russellec3d41c2007-10-22 11:03:36 +1000136int register_virtio_device(struct virtio_device *dev);
137void unregister_virtio_device(struct virtio_device *dev);
138
139/**
140 * virtio_driver - operations for a virtio I/O driver
141 * @driver: underlying device driver (populate name and owner).
142 * @id_table: the ids serviced by this driver.
Rusty Russellc45a6812008-05-02 21:50:50 -0500143 * @feature_table: an array of feature numbers supported by this device.
144 * @feature_table_size: number of entries in the feature table array.
Rusty Russell20f77f52009-06-12 22:16:33 -0600145 * @probe: the function to call when a device is found. Returns 0 or -errno.
Rusty Russellec3d41c2007-10-22 11:03:36 +1000146 * @remove: the function when a device is removed.
Rusty Russellf957d1f2008-02-04 23:49:58 -0500147 * @config_changed: optional function to call when the device configuration
148 * changes; may be called in interrupt context.
Rusty Russellec3d41c2007-10-22 11:03:36 +1000149 */
150struct virtio_driver {
151 struct device_driver driver;
152 const struct virtio_device_id *id_table;
Rusty Russellc45a6812008-05-02 21:50:50 -0500153 const unsigned int *feature_table;
154 unsigned int feature_table_size;
Rusty Russellec3d41c2007-10-22 11:03:36 +1000155 int (*probe)(struct virtio_device *dev);
156 void (*remove)(struct virtio_device *dev);
Rusty Russellf957d1f2008-02-04 23:49:58 -0500157 void (*config_changed)(struct virtio_device *dev);
Rusty Russellec3d41c2007-10-22 11:03:36 +1000158};
159
160int register_virtio_driver(struct virtio_driver *drv);
161void unregister_virtio_driver(struct virtio_driver *drv);
162#endif /* _LINUX_VIRTIO_H */