xref: /kvmtool/include/kvm/virtio-pci-dev.h (revision 2449f6e369079b277e4e1b3759da0e8d73c690e2)
1 #ifndef VIRTIO_PCI_DEV_H_
2 #define VIRTIO_PCI_DEV_H_
3 
4 /*
5  * Virtio PCI device constants and resources
6  * they do use (such as irqs and pins).
7  */
8 
9 #define PCI_DEVICE_ID_VIRTIO_NET		0x1000
10 #define PCI_DEVICE_ID_VIRTIO_BLK		0x1001
11 #define PCI_DEVICE_ID_VIRTIO_CONSOLE		0x1003
12 #define PCI_DEVICE_ID_VIRTIO_RNG		0x1004
13 
14 #define PCI_SUBSYSTEM_ID_VIRTIO_NET		0x0001
15 #define PCI_SUBSYSTEM_ID_VIRTIO_BLK		0x0002
16 #define PCI_SUBSYSTEM_ID_VIRTIO_CONSOLE		0x0003
17 #define PCI_SUBSYSTEM_ID_VIRTIO_RNG		0x0004
18 
19 #endif /* VIRTIO_PCI_DEV_H_ */
20