blob: 47f3d805c290041a38f30d7dae618f8697cfaee8 [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
Christoph Hellwigfb5e31d2017-02-05 18:15:22 +010010struct irq_affinity;
11
Rusty Russellec3d41c2007-10-22 11:03:36 +100012/**
13 * virtio_config_ops - operations for configuring a virtio device
Rusty Russella586d4f2008-02-04 23:49:56 -050014 * @get: read the value of a configuration field
Rusty Russellec3d41c2007-10-22 11:03:36 +100015 * vdev: the virtio_device
Rusty Russella586d4f2008-02-04 23:49:56 -050016 * offset: the offset of the configuration field
Rusty Russellec3d41c2007-10-22 11:03:36 +100017 * buf: the buffer to write the field value into.
Rusty Russella586d4f2008-02-04 23:49:56 -050018 * len: the length of the buffer
Rusty Russella586d4f2008-02-04 23:49:56 -050019 * @set: write the value of a configuration field
Rusty Russellec3d41c2007-10-22 11:03:36 +100020 * vdev: the virtio_device
Rusty Russella586d4f2008-02-04 23:49:56 -050021 * offset: the offset of the configuration field
Rusty Russellec3d41c2007-10-22 11:03:36 +100022 * buf: the buffer to read the field value from.
Rusty Russella586d4f2008-02-04 23:49:56 -050023 * len: the length of the buffer
Michael S. Tsirkind71de9e2014-12-14 16:55:44 +020024 * @generation: config generation counter
25 * vdev: the virtio_device
26 * Returns the config generation counter
Rusty Russellec3d41c2007-10-22 11:03:36 +100027 * @get_status: read the status byte
28 * vdev: the virtio_device
29 * Returns the status byte
30 * @set_status: write the status byte
31 * vdev: the virtio_device
32 * status: the new status byte
Rusty Russell6e5aa7e2008-02-04 23:50:03 -050033 * @reset: reset the device
34 * vdev: the virtio device
35 * After this, status and feature negotiation must be done again
Michael S. Tsirkine6af5782011-11-17 17:41:15 +020036 * Device must not be reset from its vq/config callbacks, or in
37 * parallel with being added/removed.
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -060038 * @find_vqs: find virtqueues and instantiate them.
Rusty Russellec3d41c2007-10-22 11:03:36 +100039 * vdev: the virtio_device
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -060040 * nvqs: the number of virtqueues to find
41 * vqs: on success, includes new virtqueues
42 * callbacks: array of callbacks, for each virtqueue
Michael S. Tsirkin6457f122012-09-05 21:47:45 +030043 * include a NULL entry for vqs that do not need a callback
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -060044 * names: array of virtqueue names (mainly for debugging)
Michael S. Tsirkin6457f122012-09-05 21:47:45 +030045 * include a NULL entry for vqs unused by driver
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -060046 * Returns 0 on success or error status
47 * @del_vqs: free virtqueues found by find_vqs().
Rusty Russellc45a6812008-05-02 21:50:50 -050048 * @get_features: get the array of feature bits for this device.
49 * vdev: the virtio_device
50 * Returns the first 32 feature bits (all we currently need).
Rusty Russellc6248962008-07-25 12:06:07 -050051 * @finalize_features: confirm what device features we'll be using.
Rusty Russellc45a6812008-05-02 21:50:50 -050052 * vdev: the virtio_device
Rusty Russellc6248962008-07-25 12:06:07 -050053 * This gives the final feature bits for the device: it can change
54 * the dev->feature bits if it wants.
Michael S. Tsirkin5c609a52014-12-04 20:20:27 +020055 * Returns 0 on success or error status
Rick Jones66846042011-11-14 14:17:08 +000056 * @bus_name: return the bus name associated with the device
57 * vdev: the virtio_device
58 * This returns a pointer to the bus name a la pci_name from which
59 * the caller can then copy.
Jason Wang75a0a522012-08-28 13:54:14 +020060 * @set_vq_affinity: set the affinity for a virtqueue.
Christoph Hellwigbbaba472017-02-05 18:15:23 +010061 * @get_vq_affinity: get the affinity for a virtqueue (optional).
Rusty Russellec3d41c2007-10-22 11:03:36 +100062 */
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -060063typedef void vq_callback_t(struct virtqueue *);
Rusty Russell1842f232009-07-30 16:03:46 -060064struct virtio_config_ops {
Rusty Russella586d4f2008-02-04 23:49:56 -050065 void (*get)(struct virtio_device *vdev, unsigned offset,
Rusty Russellec3d41c2007-10-22 11:03:36 +100066 void *buf, unsigned len);
Rusty Russella586d4f2008-02-04 23:49:56 -050067 void (*set)(struct virtio_device *vdev, unsigned offset,
Rusty Russellec3d41c2007-10-22 11:03:36 +100068 const void *buf, unsigned len);
Michael S. Tsirkind71de9e2014-12-14 16:55:44 +020069 u32 (*generation)(struct virtio_device *vdev);
Rusty Russellec3d41c2007-10-22 11:03:36 +100070 u8 (*get_status)(struct virtio_device *vdev);
71 void (*set_status)(struct virtio_device *vdev, u8 status);
Rusty Russell6e5aa7e2008-02-04 23:50:03 -050072 void (*reset)(struct virtio_device *vdev);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -060073 int (*find_vqs)(struct virtio_device *, unsigned nvqs,
Christoph Hellwigfb5e31d2017-02-05 18:15:22 +010074 struct virtqueue *vqs[], vq_callback_t *callbacks[],
75 const char * const names[], struct irq_affinity *desc);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -060076 void (*del_vqs)(struct virtio_device *);
Michael S. Tsirkind0254772014-10-07 16:39:43 +020077 u64 (*get_features)(struct virtio_device *vdev);
Michael S. Tsirkin5c609a52014-12-04 20:20:27 +020078 int (*finalize_features)(struct virtio_device *vdev);
Rick Jones66846042011-11-14 14:17:08 +000079 const char *(*bus_name)(struct virtio_device *vdev);
Jason Wang75a0a522012-08-28 13:54:14 +020080 int (*set_vq_affinity)(struct virtqueue *vq, int cpu);
Christoph Hellwigbbaba472017-02-05 18:15:23 +010081 const struct cpumask *(*get_vq_affinity)(struct virtio_device *vdev,
82 int index);
Rusty Russellec3d41c2007-10-22 11:03:36 +100083};
84
Rusty Russellc45a6812008-05-02 21:50:50 -050085/* If driver didn't advertise the feature, it will never appear. */
86void virtio_check_driver_offered_feature(const struct virtio_device *vdev,
87 unsigned int fbit);
88
89/**
Michael S. Tsirkind4024af2014-11-27 21:19:02 +020090 * __virtio_test_bit - helper to test feature bits. For use by transports.
91 * Devices should normally use virtio_has_feature,
92 * which includes more checks.
Rusty Russellc45a6812008-05-02 21:50:50 -050093 * @vdev: the device
94 * @fbit: the feature bit
95 */
Michael S. Tsirkind4024af2014-11-27 21:19:02 +020096static inline bool __virtio_test_bit(const struct virtio_device *vdev,
97 unsigned int fbit)
98{
99 /* Did you forget to fix assumptions on max features? */
100 if (__builtin_constant_p(fbit))
Michael S. Tsirkind0254772014-10-07 16:39:43 +0200101 BUILD_BUG_ON(fbit >= 64);
Michael S. Tsirkind4024af2014-11-27 21:19:02 +0200102 else
Michael S. Tsirkind0254772014-10-07 16:39:43 +0200103 BUG_ON(fbit >= 64);
Michael S. Tsirkind4024af2014-11-27 21:19:02 +0200104
Michael S. Tsirkind0254772014-10-07 16:39:43 +0200105 return vdev->features & BIT_ULL(fbit);
Michael S. Tsirkind4024af2014-11-27 21:19:02 +0200106}
107
108/**
109 * __virtio_set_bit - helper to set feature bits. For use by transports.
110 * @vdev: the device
111 * @fbit: the feature bit
112 */
113static inline void __virtio_set_bit(struct virtio_device *vdev,
114 unsigned int fbit)
115{
116 /* Did you forget to fix assumptions on max features? */
117 if (__builtin_constant_p(fbit))
Michael S. Tsirkind0254772014-10-07 16:39:43 +0200118 BUILD_BUG_ON(fbit >= 64);
Michael S. Tsirkind4024af2014-11-27 21:19:02 +0200119 else
Michael S. Tsirkind0254772014-10-07 16:39:43 +0200120 BUG_ON(fbit >= 64);
Michael S. Tsirkind4024af2014-11-27 21:19:02 +0200121
Michael S. Tsirkind0254772014-10-07 16:39:43 +0200122 vdev->features |= BIT_ULL(fbit);
Michael S. Tsirkind4024af2014-11-27 21:19:02 +0200123}
124
125/**
126 * __virtio_clear_bit - helper to clear feature bits. For use by transports.
127 * @vdev: the device
128 * @fbit: the feature bit
129 */
130static inline void __virtio_clear_bit(struct virtio_device *vdev,
Rusty Russellc45a6812008-05-02 21:50:50 -0500131 unsigned int fbit)
132{
133 /* Did you forget to fix assumptions on max features? */
Rusty Russell1765e3a2011-01-24 14:45:10 -0600134 if (__builtin_constant_p(fbit))
Michael S. Tsirkind0254772014-10-07 16:39:43 +0200135 BUILD_BUG_ON(fbit >= 64);
Rusty Russell1765e3a2011-01-24 14:45:10 -0600136 else
Michael S. Tsirkind0254772014-10-07 16:39:43 +0200137 BUG_ON(fbit >= 64);
Rusty Russellc45a6812008-05-02 21:50:50 -0500138
Michael S. Tsirkind0254772014-10-07 16:39:43 +0200139 vdev->features &= ~BIT_ULL(fbit);
Michael S. Tsirkind4024af2014-11-27 21:19:02 +0200140}
141
142/**
143 * virtio_has_feature - helper to determine if this device has this feature.
144 * @vdev: the device
145 * @fbit: the feature bit
146 */
147static inline bool virtio_has_feature(const struct virtio_device *vdev,
148 unsigned int fbit)
149{
Mark McLoughlinee006b352009-05-11 18:11:44 +0100150 if (fbit < VIRTIO_TRANSPORT_F_START)
151 virtio_check_driver_offered_feature(vdev, fbit);
152
Michael S. Tsirkind4024af2014-11-27 21:19:02 +0200153 return __virtio_test_bit(vdev, fbit);
Rusty Russellc45a6812008-05-02 21:50:50 -0500154}
155
Michael S. Tsirkin1a937692016-04-18 12:58:14 +0300156/**
157 * virtio_has_iommu_quirk - determine whether this device has the iommu quirk
158 * @vdev: the device
159 */
160static inline bool virtio_has_iommu_quirk(const struct virtio_device *vdev)
161{
162 /*
163 * Note the reverse polarity of the quirk feature (compared to most
164 * other features), this is for compatibility with legacy systems.
165 */
166 return !virtio_has_feature(vdev, VIRTIO_F_IOMMU_PLATFORM);
167}
168
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600169static inline
170struct virtqueue *virtio_find_single_vq(struct virtio_device *vdev,
171 vq_callback_t *c, const char *n)
172{
173 vq_callback_t *callbacks[] = { c };
174 const char *names[] = { n };
175 struct virtqueue *vq;
Christoph Hellwigfb5e31d2017-02-05 18:15:22 +0100176 int err = vdev->config->find_vqs(vdev, 1, &vq, callbacks, names, NULL);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600177 if (err < 0)
178 return ERR_PTR(err);
179 return vq;
180}
Rick Jones66846042011-11-14 14:17:08 +0000181
Michael S. Tsirkin9b2bbdb2017-03-06 18:19:39 +0200182static inline
183int virtio_find_vqs(struct virtio_device *vdev, unsigned nvqs,
184 struct virtqueue *vqs[], vq_callback_t *callbacks[],
185 const char * const names[],
186 struct irq_affinity *desc)
187{
188 return vdev->config->find_vqs(vdev, nvqs, vqs, callbacks, names, desc);
189}
190
Michael S. Tsirkin3569db52014-10-15 10:22:30 +1030191/**
192 * virtio_device_ready - enable vq use in probe function
193 * @vdev: the device
194 *
195 * Driver must call this to use vqs in the probe function.
196 *
197 * Note: vqs are enabled automatically after probe returns.
198 */
199static inline
200void virtio_device_ready(struct virtio_device *dev)
201{
202 unsigned status = dev->config->get_status(dev);
203
204 BUG_ON(status & VIRTIO_CONFIG_S_DRIVER_OK);
205 dev->config->set_status(dev, status | VIRTIO_CONFIG_S_DRIVER_OK);
206}
207
Rick Jones66846042011-11-14 14:17:08 +0000208static inline
209const char *virtio_bus_name(struct virtio_device *vdev)
210{
211 if (!vdev->config->bus_name)
212 return "virtio";
213 return vdev->config->bus_name(vdev);
214}
215
Jason Wang75a0a522012-08-28 13:54:14 +0200216/**
217 * virtqueue_set_affinity - setting affinity for a virtqueue
218 * @vq: the virtqueue
219 * @cpu: the cpu no.
220 *
221 * Pay attention the function are best-effort: the affinity hint may not be set
222 * due to config support, irq type and sharing.
223 *
224 */
225static inline
226int virtqueue_set_affinity(struct virtqueue *vq, int cpu)
227{
228 struct virtio_device *vdev = vq->vdev;
229 if (vdev->config->set_vq_affinity)
230 return vdev->config->set_vq_affinity(vq, cpu);
231 return 0;
232}
233
Greg Kurzcf561f02015-04-24 14:24:27 +0200234static inline bool virtio_is_little_endian(struct virtio_device *vdev)
235{
Greg Kurz7d824102015-04-24 14:26:24 +0200236 return virtio_has_feature(vdev, VIRTIO_F_VERSION_1) ||
237 virtio_legacy_is_little_endian();
Greg Kurzcf561f02015-04-24 14:24:27 +0200238}
239
Michael S. Tsirkineef960a2014-10-22 15:35:56 +0300240/* Memory accessors */
241static inline u16 virtio16_to_cpu(struct virtio_device *vdev, __virtio16 val)
242{
Greg Kurzcf561f02015-04-24 14:24:27 +0200243 return __virtio16_to_cpu(virtio_is_little_endian(vdev), val);
Michael S. Tsirkineef960a2014-10-22 15:35:56 +0300244}
245
246static inline __virtio16 cpu_to_virtio16(struct virtio_device *vdev, u16 val)
247{
Greg Kurzcf561f02015-04-24 14:24:27 +0200248 return __cpu_to_virtio16(virtio_is_little_endian(vdev), val);
Michael S. Tsirkineef960a2014-10-22 15:35:56 +0300249}
250
251static inline u32 virtio32_to_cpu(struct virtio_device *vdev, __virtio32 val)
252{
Greg Kurzcf561f02015-04-24 14:24:27 +0200253 return __virtio32_to_cpu(virtio_is_little_endian(vdev), val);
Michael S. Tsirkineef960a2014-10-22 15:35:56 +0300254}
255
256static inline __virtio32 cpu_to_virtio32(struct virtio_device *vdev, u32 val)
257{
Greg Kurzcf561f02015-04-24 14:24:27 +0200258 return __cpu_to_virtio32(virtio_is_little_endian(vdev), val);
Michael S. Tsirkineef960a2014-10-22 15:35:56 +0300259}
260
261static inline u64 virtio64_to_cpu(struct virtio_device *vdev, __virtio64 val)
262{
Greg Kurzcf561f02015-04-24 14:24:27 +0200263 return __virtio64_to_cpu(virtio_is_little_endian(vdev), val);
Michael S. Tsirkineef960a2014-10-22 15:35:56 +0300264}
265
266static inline __virtio64 cpu_to_virtio64(struct virtio_device *vdev, u64 val)
267{
Greg Kurzcf561f02015-04-24 14:24:27 +0200268 return __cpu_to_virtio64(virtio_is_little_endian(vdev), val);
Michael S. Tsirkineef960a2014-10-22 15:35:56 +0300269}
270
Rusty Russell0b90d062013-10-14 18:11:51 +1030271/* Config space accessors. */
272#define virtio_cread(vdev, structname, member, ptr) \
273 do { \
274 /* Must match the member's type, and be integer */ \
275 if (!typecheck(typeof((((structname*)0)->member)), *(ptr))) \
276 (*ptr) = 1; \
277 \
278 switch (sizeof(*ptr)) { \
279 case 1: \
280 *(ptr) = virtio_cread8(vdev, \
281 offsetof(structname, member)); \
282 break; \
283 case 2: \
284 *(ptr) = virtio_cread16(vdev, \
285 offsetof(structname, member)); \
286 break; \
287 case 4: \
288 *(ptr) = virtio_cread32(vdev, \
289 offsetof(structname, member)); \
290 break; \
291 case 8: \
292 *(ptr) = virtio_cread64(vdev, \
293 offsetof(structname, member)); \
294 break; \
295 default: \
296 BUG(); \
297 } \
298 } while(0)
299
300/* Config space accessors. */
301#define virtio_cwrite(vdev, structname, member, ptr) \
302 do { \
303 /* Must match the member's type, and be integer */ \
304 if (!typecheck(typeof((((structname*)0)->member)), *(ptr))) \
305 BUG_ON((*ptr) == 1); \
306 \
307 switch (sizeof(*ptr)) { \
308 case 1: \
309 virtio_cwrite8(vdev, \
310 offsetof(structname, member), \
311 *(ptr)); \
312 break; \
313 case 2: \
314 virtio_cwrite16(vdev, \
315 offsetof(structname, member), \
316 *(ptr)); \
317 break; \
318 case 4: \
319 virtio_cwrite32(vdev, \
320 offsetof(structname, member), \
321 *(ptr)); \
322 break; \
323 case 8: \
324 virtio_cwrite64(vdev, \
325 offsetof(structname, member), \
326 *(ptr)); \
327 break; \
328 default: \
329 BUG(); \
330 } \
331 } while(0)
332
Michael S. Tsirkind71de9e2014-12-14 16:55:44 +0200333/* Read @count fields, @bytes each. */
334static inline void __virtio_cread_many(struct virtio_device *vdev,
335 unsigned int offset,
336 void *buf, size_t count, size_t bytes)
337{
338 u32 old, gen = vdev->config->generation ?
339 vdev->config->generation(vdev) : 0;
340 int i;
341
342 do {
343 old = gen;
344
345 for (i = 0; i < count; i++)
346 vdev->config->get(vdev, offset + bytes * i,
347 buf + i * bytes, bytes);
348
349 gen = vdev->config->generation ?
350 vdev->config->generation(vdev) : 0;
351 } while (gen != old);
352}
353
Rusty Russell0b90d062013-10-14 18:11:51 +1030354static inline void virtio_cread_bytes(struct virtio_device *vdev,
355 unsigned int offset,
356 void *buf, size_t len)
357{
Michael S. Tsirkind71de9e2014-12-14 16:55:44 +0200358 __virtio_cread_many(vdev, offset, buf, len, 1);
Rusty Russell0b90d062013-10-14 18:11:51 +1030359}
360
Michael S. Tsirkincaa0e2d2015-04-01 08:21:51 +1030361static inline u8 virtio_cread8(struct virtio_device *vdev, unsigned int offset)
362{
363 u8 ret;
364 vdev->config->get(vdev, offset, &ret, sizeof(ret));
365 return ret;
366}
367
Rusty Russell0b90d062013-10-14 18:11:51 +1030368static inline void virtio_cwrite8(struct virtio_device *vdev,
369 unsigned int offset, u8 val)
370{
371 vdev->config->set(vdev, offset, &val, sizeof(val));
372}
373
374static inline u16 virtio_cread16(struct virtio_device *vdev,
375 unsigned int offset)
376{
377 u16 ret;
378 vdev->config->get(vdev, offset, &ret, sizeof(ret));
Michael S. Tsirkin92e6d742014-10-22 16:59:01 +0300379 return virtio16_to_cpu(vdev, (__force __virtio16)ret);
Rusty Russell0b90d062013-10-14 18:11:51 +1030380}
381
382static inline void virtio_cwrite16(struct virtio_device *vdev,
383 unsigned int offset, u16 val)
384{
Michael S. Tsirkin92e6d742014-10-22 16:59:01 +0300385 val = (__force u16)cpu_to_virtio16(vdev, val);
Rusty Russell0b90d062013-10-14 18:11:51 +1030386 vdev->config->set(vdev, offset, &val, sizeof(val));
387}
388
389static inline u32 virtio_cread32(struct virtio_device *vdev,
390 unsigned int offset)
391{
392 u32 ret;
393 vdev->config->get(vdev, offset, &ret, sizeof(ret));
Michael S. Tsirkin92e6d742014-10-22 16:59:01 +0300394 return virtio32_to_cpu(vdev, (__force __virtio32)ret);
Rusty Russell0b90d062013-10-14 18:11:51 +1030395}
396
397static inline void virtio_cwrite32(struct virtio_device *vdev,
398 unsigned int offset, u32 val)
399{
Michael S. Tsirkin92e6d742014-10-22 16:59:01 +0300400 val = (__force u32)cpu_to_virtio32(vdev, val);
Rusty Russell0b90d062013-10-14 18:11:51 +1030401 vdev->config->set(vdev, offset, &val, sizeof(val));
402}
403
404static inline u64 virtio_cread64(struct virtio_device *vdev,
405 unsigned int offset)
406{
407 u64 ret;
Michael S. Tsirkind71de9e2014-12-14 16:55:44 +0200408 __virtio_cread_many(vdev, offset, &ret, 1, sizeof(ret));
Michael S. Tsirkin92e6d742014-10-22 16:59:01 +0300409 return virtio64_to_cpu(vdev, (__force __virtio64)ret);
Rusty Russell0b90d062013-10-14 18:11:51 +1030410}
411
412static inline void virtio_cwrite64(struct virtio_device *vdev,
413 unsigned int offset, u64 val)
414{
Michael S. Tsirkin92e6d742014-10-22 16:59:01 +0300415 val = (__force u64)cpu_to_virtio64(vdev, val);
Rusty Russell0b90d062013-10-14 18:11:51 +1030416 vdev->config->set(vdev, offset, &val, sizeof(val));
417}
418
419/* Conditional config space accessors. */
420#define virtio_cread_feature(vdev, fbit, structname, member, ptr) \
421 ({ \
422 int _r = 0; \
423 if (!virtio_has_feature(vdev, fbit)) \
424 _r = -ENOENT; \
425 else \
426 virtio_cread((vdev), structname, member, ptr); \
427 _r; \
428 })
Jason Wang75a0a522012-08-28 13:54:14 +0200429
Rusty Russellec3d41c2007-10-22 11:03:36 +1000430#endif /* _LINUX_VIRTIO_CONFIG_H */