virtio_ring.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. #ifndef _LINUX_VIRTIO_RING_H
  2. #define _LINUX_VIRTIO_RING_H
  3. /* An interface for efficient virtio implementation, currently for use by KVM
  4. * and lguest, but hopefully others soon. Do NOT change this since it will
  5. * break existing servers and clients.
  6. *
  7. * This header is BSD licensed so anyone can use the definitions to implement
  8. * compatible drivers/servers.
  9. *
  10. * Redistribution and use in source and binary forms, with or without
  11. * modification, are permitted provided that the following conditions
  12. * are met:
  13. * 1. Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions and the following disclaimer.
  15. * 2. Redistributions in binary form must reproduce the above copyright
  16. * notice, this list of conditions and the following disclaimer in the
  17. * documentation and/or other materials provided with the distribution.
  18. * 3. Neither the name of IBM nor the names of its contributors
  19. * may be used to endorse or promote products derived from this software
  20. * without specific prior written permission.
  21. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND
  22. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24. * ARE DISCLAIMED. IN NO EVENT SHALL IBM OR CONTRIBUTORS BE LIABLE
  25. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  27. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  28. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  30. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31. * SUCH DAMAGE.
  32. *
  33. * Copyright Rusty Russell IBM Corporation 2007. */
  34. #include <linux/types.h>
  35. /* This marks a buffer as continuing via the next field. */
  36. #define VRING_DESC_F_NEXT 1
  37. /* This marks a buffer as write-only (otherwise read-only). */
  38. #define VRING_DESC_F_WRITE 2
  39. /* This means the buffer contains a list of buffer descriptors. */
  40. #define VRING_DESC_F_INDIRECT 4
  41. /* The Host uses this in used->flags to advise the Guest: don't kick me when
  42. * you add a buffer. It's unreliable, so it's simply an optimization. Guest
  43. * will still kick if it's out of buffers. */
  44. #define VRING_USED_F_NO_NOTIFY 1
  45. /* The Guest uses this in avail->flags to advise the Host: don't interrupt me
  46. * when you consume a buffer. It's unreliable, so it's simply an
  47. * optimization. */
  48. #define VRING_AVAIL_F_NO_INTERRUPT 1
  49. /* We support indirect buffer descriptors */
  50. #define VIRTIO_RING_F_INDIRECT_DESC 28
  51. /* Virtio ring descriptors: 16 bytes. These can chain together via "next". */
  52. struct vring_desc {
  53. /* Address (guest-physical). */
  54. __u64 addr;
  55. /* Length. */
  56. __u32 len;
  57. /* The flags as indicated above. */
  58. __u16 flags;
  59. /* We chain unused descriptors via this, too */
  60. __u16 next;
  61. };
  62. struct vring_avail {
  63. __u16 flags;
  64. __u16 idx;
  65. __u16 ring[];
  66. };
  67. /* u32 is used here for ids for padding reasons. */
  68. struct vring_used_elem {
  69. /* Index of start of used descriptor chain. */
  70. __u32 id;
  71. /* Total length of the descriptor chain which was used (written to) */
  72. __u32 len;
  73. };
  74. struct vring_used {
  75. __u16 flags;
  76. __u16 idx;
  77. struct vring_used_elem ring[];
  78. };
  79. struct vring {
  80. unsigned int num;
  81. struct vring_desc *desc;
  82. struct vring_avail *avail;
  83. struct vring_used *used;
  84. };
  85. /* The standard layout for the ring is a continuous chunk of memory which looks
  86. * like this. We assume num is a power of 2.
  87. *
  88. * struct vring
  89. * {
  90. * // The actual descriptors (16 bytes each)
  91. * struct vring_desc desc[num];
  92. *
  93. * // A ring of available descriptor heads with free-running index.
  94. * __u16 avail_flags;
  95. * __u16 avail_idx;
  96. * __u16 available[num];
  97. *
  98. * // Padding to the next align boundary.
  99. * char pad[];
  100. *
  101. * // A ring of used descriptor heads with free-running index.
  102. * __u16 used_flags;
  103. * __u16 used_idx;
  104. * struct vring_used_elem used[num];
  105. * };
  106. */
  107. static inline void vring_init(struct vring *vr, unsigned int num, void *p,
  108. unsigned long align)
  109. {
  110. vr->num = num;
  111. vr->desc = p;
  112. vr->avail = p + num*sizeof(struct vring_desc);
  113. vr->used = (void *)(((unsigned long)&vr->avail->ring[num] + align-1)
  114. & ~(align - 1));
  115. }
  116. static inline unsigned vring_size(unsigned int num, unsigned long align)
  117. {
  118. return ((sizeof(struct vring_desc) * num + sizeof(__u16) * (2 + num)
  119. + align - 1) & ~(align - 1))
  120. + sizeof(__u16) * 2 + sizeof(struct vring_used_elem) * num;
  121. }
  122. #ifdef __KERNEL__
  123. #include <linux/irqreturn.h>
  124. struct virtio_device;
  125. struct virtqueue;
  126. struct virtqueue *vring_new_virtqueue(unsigned int num,
  127. unsigned int vring_align,
  128. struct virtio_device *vdev,
  129. void *pages,
  130. void (*notify)(struct virtqueue *vq),
  131. void (*callback)(struct virtqueue *vq),
  132. const char *name);
  133. void vring_del_virtqueue(struct virtqueue *vq);
  134. /* Filter out transport-specific feature bits. */
  135. void vring_transport_features(struct virtio_device *vdev);
  136. irqreturn_t vring_interrupt(int irq, void *_vq);
  137. #endif /* __KERNEL__ */
  138. #endif /* _LINUX_VIRTIO_RING_H */