virtio_pci.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /*
  2. * Virtio PCI driver
  3. *
  4. * This module allows virtio devices to be used over a virtual PCI device.
  5. * This can be used with QEMU based VMMs like KVM or Xen.
  6. *
  7. * Copyright IBM Corp. 2007
  8. *
  9. * Authors:
  10. * Anthony Liguori <aliguori@us.ibm.com>
  11. *
  12. * This header is BSD licensed so anyone can use the definitions to implement
  13. * compatible drivers/servers.
  14. *
  15. * Redistribution and use in source and binary forms, with or without
  16. * modification, are permitted provided that the following conditions
  17. * are met:
  18. * 1. Redistributions of source code must retain the above copyright
  19. * notice, this list of conditions and the following disclaimer.
  20. * 2. Redistributions in binary form must reproduce the above copyright
  21. * notice, this list of conditions and the following disclaimer in the
  22. * documentation and/or other materials provided with the distribution.
  23. * 3. Neither the name of IBM nor the names of its contributors
  24. * may be used to endorse or promote products derived from this software
  25. * without specific prior written permission.
  26. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND
  27. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  28. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  29. * ARE DISCLAIMED. IN NO EVENT SHALL IBM OR CONTRIBUTORS BE LIABLE
  30. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  31. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  32. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  33. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  34. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  35. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  36. * SUCH DAMAGE.
  37. */
  38. #ifndef _LINUX_VIRTIO_PCI_H
  39. #define _LINUX_VIRTIO_PCI_H
  40. #include <linux/virtio_config.h>
  41. /* A 32-bit r/o bitmask of the features supported by the host */
  42. #define VIRTIO_PCI_HOST_FEATURES 0
  43. /* A 32-bit r/w bitmask of features activated by the guest */
  44. #define VIRTIO_PCI_GUEST_FEATURES 4
  45. /* A 32-bit r/w PFN for the currently selected queue */
  46. #define VIRTIO_PCI_QUEUE_PFN 8
  47. /* A 16-bit r/o queue size for the currently selected queue */
  48. #define VIRTIO_PCI_QUEUE_NUM 12
  49. /* A 16-bit r/w queue selector */
  50. #define VIRTIO_PCI_QUEUE_SEL 14
  51. /* A 16-bit r/w queue notifier */
  52. #define VIRTIO_PCI_QUEUE_NOTIFY 16
  53. /* An 8-bit device status register. */
  54. #define VIRTIO_PCI_STATUS 18
  55. /* An 8-bit r/o interrupt status register. Reading the value will return the
  56. * current contents of the ISR and will also clear it. This is effectively
  57. * a read-and-acknowledge. */
  58. #define VIRTIO_PCI_ISR 19
  59. /* The bit of the ISR which indicates a device configuration change. */
  60. #define VIRTIO_PCI_ISR_CONFIG 0x2
  61. /* MSI-X registers: only enabled if MSI-X is enabled. */
  62. /* A 16-bit vector for configuration changes. */
  63. #define VIRTIO_MSI_CONFIG_VECTOR 20
  64. /* A 16-bit vector for selected queue notifications. */
  65. #define VIRTIO_MSI_QUEUE_VECTOR 22
  66. /* Vector value used to disable MSI for queue */
  67. #define VIRTIO_MSI_NO_VECTOR 0xffff
  68. /* The remaining space is defined by each driver as the per-driver
  69. * configuration space */
  70. #define VIRTIO_PCI_CONFIG(dev) ((dev)->msix_enabled ? 24 : 20)
  71. /* Virtio ABI version, this must match exactly */
  72. #define VIRTIO_PCI_ABI_VERSION 0
  73. /* How many bits to shift physical queue address written to QUEUE_PFN.
  74. * 12 is historical, and due to x86 page size. */
  75. #define VIRTIO_PCI_QUEUE_ADDR_SHIFT 12
  76. /* The alignment to use between consumer and producer parts of vring.
  77. * x86 pagesize again. */
  78. #define VIRTIO_PCI_VRING_ALIGN 4096
  79. #endif