Message ID | 20190625112752.83188-3-Jonathan.Cameron@huawei.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | qemu: CCIX pcie config space emulation | expand |
diff --git a/include/hw/pci/pci_ids.h b/include/hw/pci/pci_ids.h index 0abe27a53a..f49be07328 100644 --- a/include/hw/pci/pci_ids.h +++ b/include/hw/pci/pci_ids.h @@ -220,6 +220,11 @@ #define PCI_VENDOR_ID_FREESCALE 0x1957 #define PCI_DEVICE_ID_MPC8533E 0x0030 +#define PCI_VENDOR_ID_HUAWEI 0x19E5 +#define PCI_DEVICE_ID_HUAWEI_CCIX_UP 0xA260 +#define PCI_DEVICE_ID_HUAWEI_CCIX_DOWN 0xA261 +#define PCI_DEVICE_ID_HUAWEI_CCIX_EP 0xA262 + #define PCI_VENDOR_ID_INTEL 0x8086 #define PCI_DEVICE_ID_INTEL_82378 0x0484 #define PCI_DEVICE_ID_INTEL_82441 0x1237
These device IDs have been allocated for emulated only devices, giving us more flexibility than would be possible by emulating real devices. They will be used for the CCIX PCIe configuration space emulation modules that follow. Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> --- include/hw/pci/pci_ids.h | 5 +++++ 1 file changed, 5 insertions(+)