blob: a61cd37f088c3f2a57d4b50d6cac98145ecc2f36 [file] [log] [blame]
Rusty Russellec3d41c2007-10-22 11:03:36 +10001#ifndef _LINUX_VIRTIO_CONFIG_H
2#define _LINUX_VIRTIO_CONFIG_H
Rusty Russell674bfc22008-07-25 12:06:03 -05003
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06004#include <linux/err.h>
Paul Gortmaker187f1882011-11-23 20:12:59 -05005#include <linux/bug.h>
Rusty Russell72e61eb2008-05-02 21:50:49 -05006#include <linux/virtio.h>
Michael S. Tsirkineef960a2014-10-22 15:35:56 +03007#include <linux/virtio_byteorder.h>
David Howells607ca462012-10-13 10:46:48 +01008#include <uapi/linux/virtio_config.h>
Rusty Russellec3d41c2007-10-22 11:03:36 +10009
10/**
11 * virtio_config_ops - operations for configuring a virtio device
Rusty Russella586d4f2008-02-04 23:49:56 -050012 * @get: read the value of a configuration field
Rusty Russellec3d41c2007-10-22 11:03:36 +100013 * vdev: the virtio_device
Rusty Russella586d4f2008-02-04 23:49:56 -050014 * offset: the offset of the configuration field
Rusty Russellec3d41c2007-10-22 11:03:36 +100015 * buf: the buffer to write the field value into.
Rusty Russella586d4f2008-02-04 23:49:56 -050016 * len: the length of the buffer
Rusty Russella586d4f2008-02-04 23:49:56 -050017 * @set: write the value of a configuration field
Rusty Russellec3d41c2007-10-22 11:03:36 +100018 * vdev: the virtio_device
Rusty Russella586d4f2008-02-04 23:49:56 -050019 * offset: the offset of the configuration field
Rusty Russellec3d41c2007-10-22 11:03:36 +100020 * buf: the buffer to read the field value from.
Rusty Russella586d4f2008-02-04 23:49:56 -050021 * len: the length of the buffer
Rusty Russellec3d41c2007-10-22 11:03:36 +100022 * @get_status: read the status byte
23 * vdev: the virtio_device
24 * Returns the status byte
25 * @set_status: write the status byte
26 * vdev: the virtio_device
27 * status: the new status byte
Rusty Russell6e5aa7e2008-02-04 23:50:03 -050028 * @reset: reset the device
29 * vdev: the virtio device
30 * After this, status and feature negotiation must be done again
Michael S. Tsirkine6af5782011-11-17 17:41:15 +020031 * Device must not be reset from its vq/config callbacks, or in
32 * parallel with being added/removed.
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -060033 * @find_vqs: find virtqueues and instantiate them.
Rusty Russellec3d41c2007-10-22 11:03:36 +100034 * vdev: the virtio_device
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -060035 * nvqs: the number of virtqueues to find
36 * vqs: on success, includes new virtqueues
37 * callbacks: array of callbacks, for each virtqueue
Michael S. Tsirkin6457f122012-09-05 21:47:45 +030038 * include a NULL entry for vqs that do not need a callback
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -060039 * names: array of virtqueue names (mainly for debugging)
Michael S. Tsirkin6457f122012-09-05 21:47:45 +030040 * include a NULL entry for vqs unused by driver
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -060041 * Returns 0 on success or error status
42 * @del_vqs: free virtqueues found by find_vqs().
Rusty Russellc45a6812008-05-02 21:50:50 -050043 * @get_features: get the array of feature bits for this device.
44 * vdev: the virtio_device
45 * Returns the first 32 feature bits (all we currently need).
Rusty Russellc6248962008-07-25 12:06:07 -050046 * @finalize_features: confirm what device features we'll be using.
Rusty Russellc45a6812008-05-02 21:50:50 -050047 * vdev: the virtio_device
Rusty Russellc6248962008-07-25 12:06:07 -050048 * This gives the final feature bits for the device: it can change
49 * the dev->feature bits if it wants.
Michael S. Tsirkin5c609a52014-12-04 20:20:27 +020050 * Returns 0 on success or error status
Rick Jones66846042011-11-14 14:17:08 +000051 * @bus_name: return the bus name associated with the device
52 * vdev: the virtio_device
53 * This returns a pointer to the bus name a la pci_name from which
54 * the caller can then copy.
Jason Wang75a0a522012-08-28 13:54:14 +020055 * @set_vq_affinity: set the affinity for a virtqueue.
Rusty Russellec3d41c2007-10-22 11:03:36 +100056 */
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -060057typedef void vq_callback_t(struct virtqueue *);
Rusty Russell1842f232009-07-30 16:03:46 -060058struct virtio_config_ops {
Rusty Russella586d4f2008-02-04 23:49:56 -050059 void (*get)(struct virtio_device *vdev, unsigned offset,
Rusty Russellec3d41c2007-10-22 11:03:36 +100060 void *buf, unsigned len);
Rusty Russella586d4f2008-02-04 23:49:56 -050061 void (*set)(struct virtio_device *vdev, unsigned offset,
Rusty Russellec3d41c2007-10-22 11:03:36 +100062 const void *buf, unsigned len);
63 u8 (*get_status)(struct virtio_device *vdev);
64 void (*set_status)(struct virtio_device *vdev, u8 status);
Rusty Russell6e5aa7e2008-02-04 23:50:03 -050065 void (*reset)(struct virtio_device *vdev);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -060066 int (*find_vqs)(struct virtio_device *, unsigned nvqs,
67 struct virtqueue *vqs[],
68 vq_callback_t *callbacks[],
69 const char *names[]);
70 void (*del_vqs)(struct virtio_device *);
Michael S. Tsirkind0254772014-10-07 16:39:43 +020071 u64 (*get_features)(struct virtio_device *vdev);
Michael S. Tsirkin5c609a52014-12-04 20:20:27 +020072 int (*finalize_features)(struct virtio_device *vdev);
Rick Jones66846042011-11-14 14:17:08 +000073 const char *(*bus_name)(struct virtio_device *vdev);
Jason Wang75a0a522012-08-28 13:54:14 +020074 int (*set_vq_affinity)(struct virtqueue *vq, int cpu);
Rusty Russellec3d41c2007-10-22 11:03:36 +100075};
76
Rusty Russellc45a6812008-05-02 21:50:50 -050077/* If driver didn't advertise the feature, it will never appear. */
78void virtio_check_driver_offered_feature(const struct virtio_device *vdev,
79 unsigned int fbit);
80
81/**
Michael S. Tsirkind4024af2014-11-27 21:19:02 +020082 * __virtio_test_bit - helper to test feature bits. For use by transports.
83 * Devices should normally use virtio_has_feature,
84 * which includes more checks.
Rusty Russellc45a6812008-05-02 21:50:50 -050085 * @vdev: the device
86 * @fbit: the feature bit
87 */
Michael S. Tsirkind4024af2014-11-27 21:19:02 +020088static inline bool __virtio_test_bit(const struct virtio_device *vdev,
89 unsigned int fbit)
90{
91 /* Did you forget to fix assumptions on max features? */
92 if (__builtin_constant_p(fbit))
Michael S. Tsirkind0254772014-10-07 16:39:43 +020093 BUILD_BUG_ON(fbit >= 64);
Michael S. Tsirkind4024af2014-11-27 21:19:02 +020094 else
Michael S. Tsirkind0254772014-10-07 16:39:43 +020095 BUG_ON(fbit >= 64);
Michael S. Tsirkind4024af2014-11-27 21:19:02 +020096
Michael S. Tsirkind0254772014-10-07 16:39:43 +020097 return vdev->features & BIT_ULL(fbit);
Michael S. Tsirkind4024af2014-11-27 21:19:02 +020098}
99
100/**
101 * __virtio_set_bit - helper to set feature bits. For use by transports.
102 * @vdev: the device
103 * @fbit: the feature bit
104 */
105static inline void __virtio_set_bit(struct virtio_device *vdev,
106 unsigned int fbit)
107{
108 /* Did you forget to fix assumptions on max features? */
109 if (__builtin_constant_p(fbit))
Michael S. Tsirkind0254772014-10-07 16:39:43 +0200110 BUILD_BUG_ON(fbit >= 64);
Michael S. Tsirkind4024af2014-11-27 21:19:02 +0200111 else
Michael S. Tsirkind0254772014-10-07 16:39:43 +0200112 BUG_ON(fbit >= 64);
Michael S. Tsirkind4024af2014-11-27 21:19:02 +0200113
Michael S. Tsirkind0254772014-10-07 16:39:43 +0200114 vdev->features |= BIT_ULL(fbit);
Michael S. Tsirkind4024af2014-11-27 21:19:02 +0200115}
116
117/**
118 * __virtio_clear_bit - helper to clear feature bits. For use by transports.
119 * @vdev: the device
120 * @fbit: the feature bit
121 */
122static inline void __virtio_clear_bit(struct virtio_device *vdev,
Rusty Russellc45a6812008-05-02 21:50:50 -0500123 unsigned int fbit)
124{
125 /* Did you forget to fix assumptions on max features? */
Rusty Russell1765e3a2011-01-24 14:45:10 -0600126 if (__builtin_constant_p(fbit))
Michael S. Tsirkind0254772014-10-07 16:39:43 +0200127 BUILD_BUG_ON(fbit >= 64);
Rusty Russell1765e3a2011-01-24 14:45:10 -0600128 else
Michael S. Tsirkind0254772014-10-07 16:39:43 +0200129 BUG_ON(fbit >= 64);
Rusty Russellc45a6812008-05-02 21:50:50 -0500130
Michael S. Tsirkind0254772014-10-07 16:39:43 +0200131 vdev->features &= ~BIT_ULL(fbit);
Michael S. Tsirkind4024af2014-11-27 21:19:02 +0200132}
133
134/**
135 * virtio_has_feature - helper to determine if this device has this feature.
136 * @vdev: the device
137 * @fbit: the feature bit
138 */
139static inline bool virtio_has_feature(const struct virtio_device *vdev,
140 unsigned int fbit)
141{
Mark McLoughlinee006b352009-05-11 18:11:44 +0100142 if (fbit < VIRTIO_TRANSPORT_F_START)
143 virtio_check_driver_offered_feature(vdev, fbit);
144
Michael S. Tsirkind4024af2014-11-27 21:19:02 +0200145 return __virtio_test_bit(vdev, fbit);
Rusty Russellc45a6812008-05-02 21:50:50 -0500146}
147
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600148static inline
149struct virtqueue *virtio_find_single_vq(struct virtio_device *vdev,
150 vq_callback_t *c, const char *n)
151{
152 vq_callback_t *callbacks[] = { c };
153 const char *names[] = { n };
154 struct virtqueue *vq;
155 int err = vdev->config->find_vqs(vdev, 1, &vq, callbacks, names);
156 if (err < 0)
157 return ERR_PTR(err);
158 return vq;
159}
Rick Jones66846042011-11-14 14:17:08 +0000160
Michael S. Tsirkin3569db52014-10-15 10:22:30 +1030161/**
162 * virtio_device_ready - enable vq use in probe function
163 * @vdev: the device
164 *
165 * Driver must call this to use vqs in the probe function.
166 *
167 * Note: vqs are enabled automatically after probe returns.
168 */
169static inline
170void virtio_device_ready(struct virtio_device *dev)
171{
172 unsigned status = dev->config->get_status(dev);
173
174 BUG_ON(status & VIRTIO_CONFIG_S_DRIVER_OK);
175 dev->config->set_status(dev, status | VIRTIO_CONFIG_S_DRIVER_OK);
176}
177
Rick Jones66846042011-11-14 14:17:08 +0000178static inline
179const char *virtio_bus_name(struct virtio_device *vdev)
180{
181 if (!vdev->config->bus_name)
182 return "virtio";
183 return vdev->config->bus_name(vdev);
184}
185
Jason Wang75a0a522012-08-28 13:54:14 +0200186/**
187 * virtqueue_set_affinity - setting affinity for a virtqueue
188 * @vq: the virtqueue
189 * @cpu: the cpu no.
190 *
191 * Pay attention the function are best-effort: the affinity hint may not be set
192 * due to config support, irq type and sharing.
193 *
194 */
195static inline
196int virtqueue_set_affinity(struct virtqueue *vq, int cpu)
197{
198 struct virtio_device *vdev = vq->vdev;
199 if (vdev->config->set_vq_affinity)
200 return vdev->config->set_vq_affinity(vq, cpu);
201 return 0;
202}
203
Michael S. Tsirkineef960a2014-10-22 15:35:56 +0300204/* Memory accessors */
205static inline u16 virtio16_to_cpu(struct virtio_device *vdev, __virtio16 val)
206{
207 return __virtio16_to_cpu(virtio_has_feature(vdev, VIRTIO_F_VERSION_1), val);
208}
209
210static inline __virtio16 cpu_to_virtio16(struct virtio_device *vdev, u16 val)
211{
212 return __cpu_to_virtio16(virtio_has_feature(vdev, VIRTIO_F_VERSION_1), val);
213}
214
215static inline u32 virtio32_to_cpu(struct virtio_device *vdev, __virtio32 val)
216{
217 return __virtio32_to_cpu(virtio_has_feature(vdev, VIRTIO_F_VERSION_1), val);
218}
219
220static inline __virtio32 cpu_to_virtio32(struct virtio_device *vdev, u32 val)
221{
222 return __cpu_to_virtio32(virtio_has_feature(vdev, VIRTIO_F_VERSION_1), val);
223}
224
225static inline u64 virtio64_to_cpu(struct virtio_device *vdev, __virtio64 val)
226{
227 return __virtio64_to_cpu(virtio_has_feature(vdev, VIRTIO_F_VERSION_1), val);
228}
229
230static inline __virtio64 cpu_to_virtio64(struct virtio_device *vdev, u64 val)
231{
232 return __cpu_to_virtio64(virtio_has_feature(vdev, VIRTIO_F_VERSION_1), val);
233}
234
Rusty Russell0b90d062013-10-14 18:11:51 +1030235/* Config space accessors. */
236#define virtio_cread(vdev, structname, member, ptr) \
237 do { \
238 /* Must match the member's type, and be integer */ \
239 if (!typecheck(typeof((((structname*)0)->member)), *(ptr))) \
240 (*ptr) = 1; \
241 \
242 switch (sizeof(*ptr)) { \
243 case 1: \
244 *(ptr) = virtio_cread8(vdev, \
245 offsetof(structname, member)); \
246 break; \
247 case 2: \
248 *(ptr) = virtio_cread16(vdev, \
249 offsetof(structname, member)); \
250 break; \
251 case 4: \
252 *(ptr) = virtio_cread32(vdev, \
253 offsetof(structname, member)); \
254 break; \
255 case 8: \
256 *(ptr) = virtio_cread64(vdev, \
257 offsetof(structname, member)); \
258 break; \
259 default: \
260 BUG(); \
261 } \
262 } while(0)
263
264/* Config space accessors. */
265#define virtio_cwrite(vdev, structname, member, ptr) \
266 do { \
267 /* Must match the member's type, and be integer */ \
268 if (!typecheck(typeof((((structname*)0)->member)), *(ptr))) \
269 BUG_ON((*ptr) == 1); \
270 \
271 switch (sizeof(*ptr)) { \
272 case 1: \
273 virtio_cwrite8(vdev, \
274 offsetof(structname, member), \
275 *(ptr)); \
276 break; \
277 case 2: \
278 virtio_cwrite16(vdev, \
279 offsetof(structname, member), \
280 *(ptr)); \
281 break; \
282 case 4: \
283 virtio_cwrite32(vdev, \
284 offsetof(structname, member), \
285 *(ptr)); \
286 break; \
287 case 8: \
288 virtio_cwrite64(vdev, \
289 offsetof(structname, member), \
290 *(ptr)); \
291 break; \
292 default: \
293 BUG(); \
294 } \
295 } while(0)
296
297static inline u8 virtio_cread8(struct virtio_device *vdev, unsigned int offset)
298{
299 u8 ret;
300 vdev->config->get(vdev, offset, &ret, sizeof(ret));
301 return ret;
302}
303
304static inline void virtio_cread_bytes(struct virtio_device *vdev,
305 unsigned int offset,
306 void *buf, size_t len)
307{
Michael S. Tsirkin3d2667822014-12-11 15:54:07 +0200308 int i;
309
310 for (i = 0; i < len; i++)
311 vdev->config->get(vdev, offset + i, buf + i, 1);
Rusty Russell0b90d062013-10-14 18:11:51 +1030312}
313
314static inline void virtio_cwrite8(struct virtio_device *vdev,
315 unsigned int offset, u8 val)
316{
317 vdev->config->set(vdev, offset, &val, sizeof(val));
318}
319
320static inline u16 virtio_cread16(struct virtio_device *vdev,
321 unsigned int offset)
322{
323 u16 ret;
324 vdev->config->get(vdev, offset, &ret, sizeof(ret));
Michael S. Tsirkin92e6d742014-10-22 16:59:01 +0300325 return virtio16_to_cpu(vdev, (__force __virtio16)ret);
Rusty Russell0b90d062013-10-14 18:11:51 +1030326}
327
328static inline void virtio_cwrite16(struct virtio_device *vdev,
329 unsigned int offset, u16 val)
330{
Michael S. Tsirkin92e6d742014-10-22 16:59:01 +0300331 val = (__force u16)cpu_to_virtio16(vdev, val);
Rusty Russell0b90d062013-10-14 18:11:51 +1030332 vdev->config->set(vdev, offset, &val, sizeof(val));
333}
334
335static inline u32 virtio_cread32(struct virtio_device *vdev,
336 unsigned int offset)
337{
338 u32 ret;
339 vdev->config->get(vdev, offset, &ret, sizeof(ret));
Michael S. Tsirkin92e6d742014-10-22 16:59:01 +0300340 return virtio32_to_cpu(vdev, (__force __virtio32)ret);
Rusty Russell0b90d062013-10-14 18:11:51 +1030341}
342
343static inline void virtio_cwrite32(struct virtio_device *vdev,
344 unsigned int offset, u32 val)
345{
Michael S. Tsirkin92e6d742014-10-22 16:59:01 +0300346 val = (__force u32)cpu_to_virtio32(vdev, val);
Rusty Russell0b90d062013-10-14 18:11:51 +1030347 vdev->config->set(vdev, offset, &val, sizeof(val));
348}
349
350static inline u64 virtio_cread64(struct virtio_device *vdev,
351 unsigned int offset)
352{
353 u64 ret;
354 vdev->config->get(vdev, offset, &ret, sizeof(ret));
Michael S. Tsirkin92e6d742014-10-22 16:59:01 +0300355 return virtio64_to_cpu(vdev, (__force __virtio64)ret);
Rusty Russell0b90d062013-10-14 18:11:51 +1030356}
357
358static inline void virtio_cwrite64(struct virtio_device *vdev,
359 unsigned int offset, u64 val)
360{
Michael S. Tsirkin92e6d742014-10-22 16:59:01 +0300361 val = (__force u64)cpu_to_virtio64(vdev, val);
Rusty Russell0b90d062013-10-14 18:11:51 +1030362 vdev->config->set(vdev, offset, &val, sizeof(val));
363}
364
365/* Conditional config space accessors. */
366#define virtio_cread_feature(vdev, fbit, structname, member, ptr) \
367 ({ \
368 int _r = 0; \
369 if (!virtio_has_feature(vdev, fbit)) \
370 _r = -ENOENT; \
371 else \
372 virtio_cread((vdev), structname, member, ptr); \
373 _r; \
374 })
Jason Wang75a0a522012-08-28 13:54:14 +0200375
Rusty Russellec3d41c2007-10-22 11:03:36 +1000376#endif /* _LINUX_VIRTIO_CONFIG_H */