blob: 6df181a6bcc6fc9cf2c78f7ed2474f6aff15f298 [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)
9
10#define BIT_WORD(nr) ((nr) / BITS_PER_LONG)
11#define BITS_PER_BYTE 8
12#define BITS_PER_LONG (sizeof(long) * BITS_PER_BYTE)
13#define BIT_MASK(nr) (1UL << ((nr) % BITS_PER_LONG))
Rusty Russell61d0b5a42013-03-18 13:22:19 +103014
Michael S. Tsirkin4e53f782010-11-29 19:16:37 +020015/* TODO: Not atomic as it should be:
16 * we don't use this for anything important. */
17static inline void clear_bit(int nr, volatile unsigned long *addr)
18{
19 unsigned long mask = BIT_MASK(nr);
20 unsigned long *p = ((unsigned long *)addr) + BIT_WORD(nr);
21
22 *p &= ~mask;
23}
24
25static inline int test_bit(int nr, const volatile unsigned long *addr)
26{
27 return 1UL & (addr[BIT_WORD(nr)] >> (nr & (BITS_PER_LONG-1)));
28}
Michael S. Tsirkin4e53f782010-11-29 19:16:37 +020029/* end of stubs */
30
31struct virtio_device {
32 void *dev;
33 unsigned long features[1];
34};
35
36struct virtqueue {
37 /* TODO: commented as list macros are empty stubs for now.
38 * Broken but enough for virtio_ring.c
39 * struct list_head list; */
40 void (*callback)(struct virtqueue *vq);
41 const char *name;
42 struct virtio_device *vdev;
Michael S. Tsirkin73640c92013-03-18 13:22:18 +103043 unsigned int index;
44 unsigned int num_free;
Michael S. Tsirkin4e53f782010-11-29 19:16:37 +020045 void *priv;
46};
47
Michael S. Tsirkin4e53f782010-11-29 19:16:37 +020048#define MODULE_LICENSE(__MODULE_LICENSE_value) \
49 const char *__MODULE_LICENSE_name = __MODULE_LICENSE_value
50
Michael S. Tsirkin4e53f782010-11-29 19:16:37 +020051/* Interfaces exported by virtio_ring. */
Rusty Russellf96fde42012-01-12 15:44:42 +103052int virtqueue_add_buf(struct virtqueue *vq,
53 struct scatterlist sg[],
54 unsigned int out_num,
55 unsigned int in_num,
56 void *data,
57 gfp_t gfp);
Michael S. Tsirkin4e53f782010-11-29 19:16:37 +020058
Rusty Russell13816c72013-03-20 15:37:09 +103059int virtqueue_add_sgs(struct virtqueue *vq,
60 struct scatterlist *sgs[],
61 unsigned int out_sgs,
62 unsigned int in_sgs,
63 void *data,
64 gfp_t gfp);
65
Rusty Russelle538eba2013-03-20 15:44:26 +103066int virtqueue_add_outbuf(struct virtqueue *vq,
67 struct scatterlist sg[], unsigned int num,
68 void *data,
69 gfp_t gfp);
70
71int virtqueue_add_inbuf(struct virtqueue *vq,
72 struct scatterlist sg[], unsigned int num,
73 void *data,
74 gfp_t gfp);
75
Michael S. Tsirkin4e53f782010-11-29 19:16:37 +020076void virtqueue_kick(struct virtqueue *vq);
77
78void *virtqueue_get_buf(struct virtqueue *vq, unsigned int *len);
79
80void virtqueue_disable_cb(struct virtqueue *vq);
81
82bool virtqueue_enable_cb(struct virtqueue *vq);
Michael S. Tsirkin64d09882012-04-16 10:11:12 -040083bool virtqueue_enable_cb_delayed(struct virtqueue *vq);
Michael S. Tsirkin4e53f782010-11-29 19:16:37 +020084
85void *virtqueue_detach_unused_buf(struct virtqueue *vq);
Michael S. Tsirkin73640c92013-03-18 13:22:18 +103086struct virtqueue *vring_new_virtqueue(unsigned int index,
87 unsigned int num,
Michael S. Tsirkin4e53f782010-11-29 19:16:37 +020088 unsigned int vring_align,
89 struct virtio_device *vdev,
Rusty Russell7b21e342012-01-12 15:44:42 +103090 bool weak_barriers,
Michael S. Tsirkin4e53f782010-11-29 19:16:37 +020091 void *pages,
92 void (*notify)(struct virtqueue *vq),
93 void (*callback)(struct virtqueue *vq),
94 const char *name);
95void vring_del_virtqueue(struct virtqueue *vq);
96
97#endif