virtio_pci.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. #ifndef _LINUX_VIRTIO_PCI_H
  16. #define _LINUX_VIRTIO_PCI_H
  17. #include <linux/virtio_config.h>
  18. /* A 32-bit r/o bitmask of the features supported by the host */
  19. #define VIRTIO_PCI_HOST_FEATURES 0
  20. /* A 32-bit r/w bitmask of features activated by the guest */
  21. #define VIRTIO_PCI_GUEST_FEATURES 4
  22. /* A 32-bit r/w PFN for the currently selected queue */
  23. #define VIRTIO_PCI_QUEUE_PFN 8
  24. /* A 16-bit r/o queue size for the currently selected queue */
  25. #define VIRTIO_PCI_QUEUE_NUM 12
  26. /* A 16-bit r/w queue selector */
  27. #define VIRTIO_PCI_QUEUE_SEL 14
  28. /* A 16-bit r/w queue notifier */
  29. #define VIRTIO_PCI_QUEUE_NOTIFY 16
  30. /* An 8-bit device status register. */
  31. #define VIRTIO_PCI_STATUS 18
  32. /* An 8-bit r/o interrupt status register. Reading the value will return the
  33. * current contents of the ISR and will also clear it. This is effectively
  34. * a read-and-acknowledge. */
  35. #define VIRTIO_PCI_ISR 19
  36. /* The bit of the ISR which indicates a device configuration change. */
  37. #define VIRTIO_PCI_ISR_CONFIG 0x2
  38. /* The remaining space is defined by each driver as the per-driver
  39. * configuration space */
  40. #define VIRTIO_PCI_CONFIG 20
  41. /* Virtio ABI version, this must match exactly */
  42. #define VIRTIO_PCI_ABI_VERSION 0
  43. /* How many bits to shift physical queue address written to QUEUE_PFN.
  44. * 12 is historical, and due to x86 page size. */
  45. #define VIRTIO_PCI_QUEUE_ADDR_SHIFT 12
  46. /* The alignment to use between consumer and producer parts of vring.
  47. * x86 pagesize again. */
  48. #define VIRTIO_PCI_VRING_ALIGN 4096
  49. #endif