blob: ee125e714053a91a76658d417a46232349927450 [file] [log] [blame]
Michael S. Tsirkin4e53f782010-11-29 19:16:37 +02001#ifndef LINUX_VIRTIO_H
2#define LINUX_VIRTIO_H
Rusty Russell61d0b5a42013-03-18 13:22:19 +10303#include <linux/scatterlist.h>
4#include <linux/kernel.h>
Michael S. Tsirkin4e53f782010-11-29 19:16:37 +02005
Michael S. Tsirkin4e53f782010-11-29 19:16:37 +02006struct virtio_device {
7 void *dev;
Michael S. Tsirkind0254772014-10-07 16:39:43 +02008 u64 features;
Michael S. Tsirkin4e53f782010-11-29 19:16:37 +02009};
10
11struct virtqueue {
12 /* TODO: commented as list macros are empty stubs for now.
13 * Broken but enough for virtio_ring.c
14 * struct list_head list; */
15 void (*callback)(struct virtqueue *vq);
16 const char *name;
17 struct virtio_device *vdev;
Michael S. Tsirkin73640c92013-03-18 13:22:18 +103018 unsigned int index;
19 unsigned int num_free;
Michael S. Tsirkin4e53f782010-11-29 19:16:37 +020020 void *priv;
21};
22
Michael S. Tsirkin4e53f782010-11-29 19:16:37 +020023/* Interfaces exported by virtio_ring. */
Rusty Russell13816c72013-03-20 15:37:09 +103024int virtqueue_add_sgs(struct virtqueue *vq,
25 struct scatterlist *sgs[],
26 unsigned int out_sgs,
27 unsigned int in_sgs,
28 void *data,
29 gfp_t gfp);
30
Rusty Russelle538eba2013-03-20 15:44:26 +103031int virtqueue_add_outbuf(struct virtqueue *vq,
32 struct scatterlist sg[], unsigned int num,
33 void *data,
34 gfp_t gfp);
35
36int virtqueue_add_inbuf(struct virtqueue *vq,
37 struct scatterlist sg[], unsigned int num,
38 void *data,
39 gfp_t gfp);
40
Joel Stanleyd1b8c4c2014-02-13 15:03:44 +103041bool virtqueue_kick(struct virtqueue *vq);
Michael S. Tsirkin4e53f782010-11-29 19:16:37 +020042
43void *virtqueue_get_buf(struct virtqueue *vq, unsigned int *len);
44
45void virtqueue_disable_cb(struct virtqueue *vq);
46
47bool virtqueue_enable_cb(struct virtqueue *vq);
Michael S. Tsirkin64d09882012-04-16 10:11:12 -040048bool virtqueue_enable_cb_delayed(struct virtqueue *vq);
Michael S. Tsirkin4e53f782010-11-29 19:16:37 +020049
50void *virtqueue_detach_unused_buf(struct virtqueue *vq);
Michael S. Tsirkin73640c92013-03-18 13:22:18 +103051struct virtqueue *vring_new_virtqueue(unsigned int index,
52 unsigned int num,
Michael S. Tsirkin4e53f782010-11-29 19:16:37 +020053 unsigned int vring_align,
54 struct virtio_device *vdev,
Rusty Russell7b21e342012-01-12 15:44:42 +103055 bool weak_barriers,
Michael S. Tsirkin4e53f782010-11-29 19:16:37 +020056 void *pages,
Joel Stanleyd1b8c4c2014-02-13 15:03:44 +103057 bool (*notify)(struct virtqueue *vq),
Michael S. Tsirkin4e53f782010-11-29 19:16:37 +020058 void (*callback)(struct virtqueue *vq),
59 const char *name);
60void vring_del_virtqueue(struct virtqueue *vq);
61
62#endif