]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/linux/virtio.h
tcp: md5: dont write skb head in tcp_md5_hash_header()
[mirror_ubuntu-artful-kernel.git] / include / linux / virtio.h
CommitLineData
ec3d41c4
RR
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>
bbd603ef 10#include <linux/gfp.h>
ec3d41c4
RR
11
12/**
13 * virtqueue - a queue to register buffers for sending or receiving.
9499f5e7 14 * @list: the chain of virtqueues for this device
ec3d41c4 15 * @callback: the function to call when buffers are consumed (can be NULL).
9499f5e7 16 * @name: the name of this virtqueue (mainly for debugging)
ec3d41c4 17 * @vdev: the virtio device this queue was created for.
ec3d41c4
RR
18 * @priv: a pointer for the virtqueue implementation to use.
19 */
9499f5e7
RR
20struct virtqueue {
21 struct list_head list;
18445c4d 22 void (*callback)(struct virtqueue *vq);
9499f5e7 23 const char *name;
ec3d41c4 24 struct virtio_device *vdev;
ec3d41c4
RR
25 void *priv;
26};
27
28/**
7c5e9ed0
MT
29 * operations for virtqueue
30 * virtqueue_add_buf: expose buffer to other end
ec3d41c4
RR
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.
bbd603ef 36 * gfp: how to do memory allocations (if necessary).
3c1b27d5 37 * Returns remaining capacity of queue (sg segments) or a negative error.
7c5e9ed0 38 * virtqueue_kick: update after add_buf
ec3d41c4
RR
39 * vq: the struct virtqueue
40 * After one or more add_buf calls, invoke this to kick the other side.
7c5e9ed0 41 * virtqueue_get_buf: get the next used buffer
ec3d41c4
RR
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.
7c5e9ed0 45 * virtqueue_disable_cb: disable callbacks
18445c4d 46 * vq: the struct virtqueue we're talking about.
2557a933
RR
47 * Note that this is not necessarily synchronous, hence unreliable and only
48 * useful as an optimization.
7c5e9ed0 49 * virtqueue_enable_cb: restart callbacks after disable_cb.
ec3d41c4 50 * vq: the struct virtqueue we're talking about.
4265f161
CB
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.
7ab358c2
MT
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.
7c5e9ed0 61 * virtqueue_detach_unused_buf: detach first unused buffer
c021eac4
SM
62 * vq: the struct virtqueue we're talking about.
63 * Returns NULL or the "data" token handed to add_buf
ec3d41c4
RR
64 *
65 * Locking rules are straightforward: the driver is responsible for
2557a933 66 * locking. No two operations may be invoked simultaneously, with the exception
7c5e9ed0 67 * of virtqueue_disable_cb.
ec3d41c4
RR
68 *
69 * All operations can be called in any context.
70 */
ec3d41c4 71
bbd603ef
MT
72int virtqueue_add_buf_gfp(struct virtqueue *vq,
73 struct scatterlist sg[],
74 unsigned int out_num,
75 unsigned int in_num,
76 void *data,
77 gfp_t gfp);
78
79static inline int virtqueue_add_buf(struct virtqueue *vq,
80 struct scatterlist sg[],
81 unsigned int out_num,
82 unsigned int in_num,
83 void *data)
84{
85 return virtqueue_add_buf_gfp(vq, sg, out_num, in_num, data, GFP_ATOMIC);
86}
ec3d41c4 87
7c5e9ed0 88void virtqueue_kick(struct virtqueue *vq);
ec3d41c4 89
7c5e9ed0 90void *virtqueue_get_buf(struct virtqueue *vq, unsigned int *len);
316f25f5 91
7c5e9ed0 92void virtqueue_disable_cb(struct virtqueue *vq);
316f25f5 93
7c5e9ed0 94bool virtqueue_enable_cb(struct virtqueue *vq);
316f25f5 95
7ab358c2
MT
96bool virtqueue_enable_cb_delayed(struct virtqueue *vq);
97
7c5e9ed0 98void *virtqueue_detach_unused_buf(struct virtqueue *vq);
316f25f5 99
ec3d41c4
RR
100/**
101 * virtio_device - representation of a device using virtio
102 * @index: unique position on the virtio bus
103 * @dev: underlying device.
104 * @id: the device type identification (used to match it with a driver).
105 * @config: the configuration ops for this device.
9499f5e7 106 * @vqs: the list of virtqueues for this device.
c45a6816 107 * @features: the features supported by both driver and device.
ec3d41c4
RR
108 * @priv: private pointer for the driver's use.
109 */
9499f5e7 110struct virtio_device {
ec3d41c4
RR
111 int index;
112 struct device dev;
113 struct virtio_device_id id;
114 struct virtio_config_ops *config;
9499f5e7 115 struct list_head vqs;
c45a6816
RR
116 /* Note that this is a Linux set_bit-style bitmap. */
117 unsigned long features[1];
ec3d41c4
RR
118 void *priv;
119};
120
86c84373 121#define dev_to_virtio(dev) container_of(dev, struct virtio_device, dev)
ec3d41c4
RR
122int register_virtio_device(struct virtio_device *dev);
123void unregister_virtio_device(struct virtio_device *dev);
124
125/**
126 * virtio_driver - operations for a virtio I/O driver
127 * @driver: underlying device driver (populate name and owner).
128 * @id_table: the ids serviced by this driver.
c45a6816
RR
129 * @feature_table: an array of feature numbers supported by this device.
130 * @feature_table_size: number of entries in the feature table array.
20f77f56 131 * @probe: the function to call when a device is found. Returns 0 or -errno.
ec3d41c4 132 * @remove: the function when a device is removed.
f957d1f0
RR
133 * @config_changed: optional function to call when the device configuration
134 * changes; may be called in interrupt context.
ec3d41c4
RR
135 */
136struct virtio_driver {
137 struct device_driver driver;
138 const struct virtio_device_id *id_table;
c45a6816
RR
139 const unsigned int *feature_table;
140 unsigned int feature_table_size;
ec3d41c4
RR
141 int (*probe)(struct virtio_device *dev);
142 void (*remove)(struct virtio_device *dev);
f957d1f0 143 void (*config_changed)(struct virtio_device *dev);
ec3d41c4
RR
144};
145
146int register_virtio_driver(struct virtio_driver *drv);
147void unregister_virtio_driver(struct virtio_driver *drv);
148#endif /* _LINUX_VIRTIO_H */