diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2014-12-11 06:46:52 -0500 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2014-12-14 08:10:31 -0500 |
commit | 0dce3771fdd1db03c6f498594a34bba5a6d1f870 (patch) | |
tree | bfe7fe118a5fc452fd6572a9ac8cffbe23db2d2d /include/uapi | |
parent | 9a4253db0c4ea1b6b15aa289203bc0584298278e (diff) |
virtio_pci: add VIRTIO_PCI_NO_LEGACY
Add macro to disable all legacy register defines.
Helpful to make sure legacy macros don't leak
through into modern code.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'include/uapi')
-rw-r--r-- | include/uapi/linux/virtio_pci.h | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/include/uapi/linux/virtio_pci.h b/include/uapi/linux/virtio_pci.h index e5ec1caab82a..35b552c7f330 100644 --- a/include/uapi/linux/virtio_pci.h +++ b/include/uapi/linux/virtio_pci.h | |||
@@ -41,6 +41,8 @@ | |||
41 | 41 | ||
42 | #include <linux/virtio_config.h> | 42 | #include <linux/virtio_config.h> |
43 | 43 | ||
44 | #ifndef VIRTIO_PCI_NO_LEGACY | ||
45 | |||
44 | /* A 32-bit r/o bitmask of the features supported by the host */ | 46 | /* A 32-bit r/o bitmask of the features supported by the host */ |
45 | #define VIRTIO_PCI_HOST_FEATURES 0 | 47 | #define VIRTIO_PCI_HOST_FEATURES 0 |
46 | 48 | ||
@@ -67,16 +69,11 @@ | |||
67 | * a read-and-acknowledge. */ | 69 | * a read-and-acknowledge. */ |
68 | #define VIRTIO_PCI_ISR 19 | 70 | #define VIRTIO_PCI_ISR 19 |
69 | 71 | ||
70 | /* The bit of the ISR which indicates a device configuration change. */ | ||
71 | #define VIRTIO_PCI_ISR_CONFIG 0x2 | ||
72 | |||
73 | /* MSI-X registers: only enabled if MSI-X is enabled. */ | 72 | /* MSI-X registers: only enabled if MSI-X is enabled. */ |
74 | /* A 16-bit vector for configuration changes. */ | 73 | /* A 16-bit vector for configuration changes. */ |
75 | #define VIRTIO_MSI_CONFIG_VECTOR 20 | 74 | #define VIRTIO_MSI_CONFIG_VECTOR 20 |
76 | /* A 16-bit vector for selected queue notifications. */ | 75 | /* A 16-bit vector for selected queue notifications. */ |
77 | #define VIRTIO_MSI_QUEUE_VECTOR 22 | 76 | #define VIRTIO_MSI_QUEUE_VECTOR 22 |
78 | /* Vector value used to disable MSI for queue */ | ||
79 | #define VIRTIO_MSI_NO_VECTOR 0xffff | ||
80 | 77 | ||
81 | /* The remaining space is defined by each driver as the per-driver | 78 | /* The remaining space is defined by each driver as the per-driver |
82 | * configuration space */ | 79 | * configuration space */ |
@@ -94,4 +91,12 @@ | |||
94 | /* The alignment to use between consumer and producer parts of vring. | 91 | /* The alignment to use between consumer and producer parts of vring. |
95 | * x86 pagesize again. */ | 92 | * x86 pagesize again. */ |
96 | #define VIRTIO_PCI_VRING_ALIGN 4096 | 93 | #define VIRTIO_PCI_VRING_ALIGN 4096 |
94 | |||
95 | #endif /* VIRTIO_PCI_NO_LEGACY */ | ||
96 | |||
97 | /* The bit of the ISR which indicates a device configuration change. */ | ||
98 | #define VIRTIO_PCI_ISR_CONFIG 0x2 | ||
99 | /* Vector value used to disable MSI for queue */ | ||
100 | #define VIRTIO_MSI_NO_VECTOR 0xffff | ||
101 | |||
97 | #endif | 102 | #endif |