blob: 8eb6421761cd5cc7592d0ed6c6dd8b3f511805d5 [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
6/* TODO: empty stubs for now. Broken but enough for virtio_ring.c */
7#define list_add_tail(a, b) do {} while (0)
8#define list_del(a) do {} while (0)
Michael S. Tsirkin4e53f782010-11-29 19:16:37 +02009/* end of stubs */
10
11struct virtio_device {
12 void *dev;
Michael S. Tsirkind0254772014-10-07 16:39:43 +020013 u64 features;
Michael S. Tsirkin4e53f782010-11-29 19:16:37 +020014};
15
16struct virtqueue {
17 /* TODO: commented as list macros are empty stubs for now.
18 * Broken but enough for virtio_ring.c
19 * struct list_head list; */
20 void (*callback)(struct virtqueue *vq);
21 const char *name;
22 struct virtio_device *vdev;
Michael S. Tsirkin73640c92013-03-18 13:22:18 +103023 unsigned int index;
24 unsigned int num_free;
Michael S. Tsirkin4e53f782010-11-29 19:16:37 +020025 void *priv;
26};
27
Michael S. Tsirkin4e53f782010-11-29 19:16:37 +020028/* Interfaces exported by virtio_ring. */
Rusty Russell13816c72013-03-20 15:37:09 +103029int virtqueue_add_sgs(struct virtqueue *vq,
30 struct scatterlist *sgs[],
31 unsigned int out_sgs,
32 unsigned int in_sgs,
33 void *data,
34 gfp_t gfp);
35
Rusty Russelle538eba2013-03-20 15:44:26 +103036int virtqueue_add_outbuf(struct virtqueue *vq,
37 struct scatterlist sg[], unsigned int num,
38 void *data,
39 gfp_t gfp);
40
41int virtqueue_add_inbuf(struct virtqueue *vq,
42 struct scatterlist sg[], unsigned int num,
43 void *data,
44 gfp_t gfp);
45
Joel Stanleyd1b8c4c2014-02-13 15:03:44 +103046bool virtqueue_kick(struct virtqueue *vq);
Michael S. Tsirkin4e53f782010-11-29 19:16:37 +020047
48void *virtqueue_get_buf(struct virtqueue *vq, unsigned int *len);
49
50void virtqueue_disable_cb(struct virtqueue *vq);
51
52bool virtqueue_enable_cb(struct virtqueue *vq);
Michael S. Tsirkin64d09882012-04-16 10:11:12 -040053bool virtqueue_enable_cb_delayed(struct virtqueue *vq);
Michael S. Tsirkin4e53f782010-11-29 19:16:37 +020054
55void *virtqueue_detach_unused_buf(struct virtqueue *vq);
Michael S. Tsirkin73640c92013-03-18 13:22:18 +103056struct virtqueue *vring_new_virtqueue(unsigned int index,
57 unsigned int num,
Michael S. Tsirkin4e53f782010-11-29 19:16:37 +020058 unsigned int vring_align,
59 struct virtio_device *vdev,
Rusty Russell7b21e342012-01-12 15:44:42 +103060 bool weak_barriers,
Michael S. Tsirkin4e53f782010-11-29 19:16:37 +020061 void *pages,
Joel Stanleyd1b8c4c2014-02-13 15:03:44 +103062 bool (*notify)(struct virtqueue *vq),
Michael S. Tsirkin4e53f782010-11-29 19:16:37 +020063 void (*callback)(struct virtqueue *vq),
64 const char *name);
65void vring_del_virtqueue(struct virtqueue *vq);
66
67#endif