aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/virtio_config.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/virtio_config.h')
-rw-r--r--include/linux/virtio_config.h85
1 files changed, 48 insertions, 37 deletions
diff --git a/include/linux/virtio_config.h b/include/linux/virtio_config.h
index d581b2914b34..f364bbf63c34 100644
--- a/include/linux/virtio_config.h
+++ b/include/linux/virtio_config.h
@@ -15,28 +15,25 @@
15/* We've given up on this device. */ 15/* We've given up on this device. */
16#define VIRTIO_CONFIG_S_FAILED 0x80 16#define VIRTIO_CONFIG_S_FAILED 0x80
17 17
18/* Do we get callbacks when the ring is completely used, even if we've
19 * suppressed them? */
20#define VIRTIO_F_NOTIFY_ON_EMPTY 24
21
18#ifdef __KERNEL__ 22#ifdef __KERNEL__
19struct virtio_device; 23#include <linux/virtio.h>
20 24
21/** 25/**
22 * virtio_config_ops - operations for configuring a virtio device 26 * virtio_config_ops - operations for configuring a virtio device
23 * @feature: search for a feature in this config
24 * vdev: the virtio_device
25 * bit: the feature bit
26 * Returns true if the feature is supported. Acknowledges the feature
27 * so the host can see it.
28 * @get: read the value of a configuration field 27 * @get: read the value of a configuration field
29 * vdev: the virtio_device 28 * vdev: the virtio_device
30 * offset: the offset of the configuration field 29 * offset: the offset of the configuration field
31 * buf: the buffer to write the field value into. 30 * buf: the buffer to write the field value into.
32 * len: the length of the buffer 31 * len: the length of the buffer
33 * Note that contents are conventionally little-endian.
34 * @set: write the value of a configuration field 32 * @set: write the value of a configuration field
35 * vdev: the virtio_device 33 * vdev: the virtio_device
36 * offset: the offset of the configuration field 34 * offset: the offset of the configuration field
37 * buf: the buffer to read the field value from. 35 * buf: the buffer to read the field value from.
38 * len: the length of the buffer 36 * len: the length of the buffer
39 * Note that contents are conventionally little-endian.
40 * @get_status: read the status byte 37 * @get_status: read the status byte
41 * vdev: the virtio_device 38 * vdev: the virtio_device
42 * Returns the status byte 39 * Returns the status byte
@@ -52,10 +49,15 @@ struct virtio_device;
52 * callback: the virqtueue callback 49 * callback: the virqtueue callback
53 * Returns the new virtqueue or ERR_PTR() (eg. -ENOENT). 50 * Returns the new virtqueue or ERR_PTR() (eg. -ENOENT).
54 * @del_vq: free a virtqueue found by find_vq(). 51 * @del_vq: free a virtqueue found by find_vq().
52 * @get_features: get the array of feature bits for this device.
53 * vdev: the virtio_device
54 * Returns the first 32 feature bits (all we currently need).
55 * @set_features: confirm what device features we'll be using.
56 * vdev: the virtio_device
57 * feature: the first 32 feature bits
55 */ 58 */
56struct virtio_config_ops 59struct virtio_config_ops
57{ 60{
58 bool (*feature)(struct virtio_device *vdev, unsigned bit);
59 void (*get)(struct virtio_device *vdev, unsigned offset, 61 void (*get)(struct virtio_device *vdev, unsigned offset,
60 void *buf, unsigned len); 62 void *buf, unsigned len);
61 void (*set)(struct virtio_device *vdev, unsigned offset, 63 void (*set)(struct virtio_device *vdev, unsigned offset,
@@ -67,43 +69,52 @@ struct virtio_config_ops
67 unsigned index, 69 unsigned index,
68 void (*callback)(struct virtqueue *)); 70 void (*callback)(struct virtqueue *));
69 void (*del_vq)(struct virtqueue *vq); 71 void (*del_vq)(struct virtqueue *vq);
72 u32 (*get_features)(struct virtio_device *vdev);
73 void (*set_features)(struct virtio_device *vdev, u32 features);
70}; 74};
71 75
76/* If driver didn't advertise the feature, it will never appear. */
77void virtio_check_driver_offered_feature(const struct virtio_device *vdev,
78 unsigned int fbit);
79
72/** 80/**
73 * virtio_config_val - look for a feature and get a single virtio config. 81 * virtio_has_feature - helper to determine if this device has this feature.
74 * @vdev: the virtio device 82 * @vdev: the device
75 * @fbit: the feature bit 83 * @fbit: the feature bit
76 * @offset: the type to search for. 84 */
77 * @val: a pointer to the value to fill in. 85static inline bool virtio_has_feature(const struct virtio_device *vdev,
78 * 86 unsigned int fbit)
79 * The return value is -ENOENT if the feature doesn't exist. Otherwise 87{
80 * the value is endian-corrected and returned in v. */ 88 /* Did you forget to fix assumptions on max features? */
81#define virtio_config_val(vdev, fbit, offset, v) ({ \ 89 if (__builtin_constant_p(fbit))
82 int _err; \ 90 BUILD_BUG_ON(fbit >= 32);
83 if ((vdev)->config->feature((vdev), (fbit))) { \ 91
84 __virtio_config_val((vdev), (offset), (v)); \ 92 virtio_check_driver_offered_feature(vdev, fbit);
85 _err = 0; \ 93 return test_bit(fbit, vdev->features);
86 } else \ 94}
87 _err = -ENOENT; \
88 _err; \
89})
90 95
91/** 96/**
92 * __virtio_config_val - get a single virtio config without feature check. 97 * virtio_config_val - look for a feature and get a virtio config entry.
93 * @vdev: the virtio device 98 * @vdev: the virtio device
99 * @fbit: the feature bit
94 * @offset: the type to search for. 100 * @offset: the type to search for.
95 * @val: a pointer to the value to fill in. 101 * @val: a pointer to the value to fill in.
96 * 102 *
97 * The value is endian-corrected and returned in v. */ 103 * The return value is -ENOENT if the feature doesn't exist. Otherwise
98#define __virtio_config_val(vdev, offset, v) do { \ 104 * the config value is copied into whatever is pointed to by v. */
99 BUILD_BUG_ON(sizeof(*(v)) != 1 && sizeof(*(v)) != 2 \ 105#define virtio_config_val(vdev, fbit, offset, v) \
100 && sizeof(*(v)) != 4 && sizeof(*(v)) != 8); \ 106 virtio_config_buf((vdev), (fbit), (offset), (v), sizeof(*v))
101 (vdev)->config->get((vdev), (offset), (v), sizeof(*(v))); \ 107
102 switch (sizeof(*(v))) { \ 108static inline int virtio_config_buf(struct virtio_device *vdev,
103 case 2: le16_to_cpus((__u16 *) v); break; \ 109 unsigned int fbit,
104 case 4: le32_to_cpus((__u32 *) v); break; \ 110 unsigned int offset,
105 case 8: le64_to_cpus((__u64 *) v); break; \ 111 void *buf, unsigned len)
106 } \ 112{
107} while(0) 113 if (!virtio_has_feature(vdev, fbit))
114 return -ENOENT;
115
116 vdev->config->get(vdev, offset, buf, len);
117 return 0;
118}
108#endif /* __KERNEL__ */ 119#endif /* __KERNEL__ */
109#endif /* _LINUX_VIRTIO_CONFIG_H */ 120#endif /* _LINUX_VIRTIO_CONFIG_H */