mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 09:43:56 -06:00
Define PCI vendor and device IDs in pci.h (Stuart Brady)
This patch defines PCI vendor and device IDs in pci.h (matching those from Linux's pci_ids.h), and uses those definitions where appropriate. Change from v1: Introduces pci_config_set_vendor_id() / pci_config_set_device_id() accessors as suggested by Anthony Liguori. Signed-off-by: Stuart Brady <stuart.brady@gmail.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6442 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
90a1e3c0b5
commit
deb54399df
29 changed files with 157 additions and 159 deletions
|
@ -173,8 +173,7 @@
|
|||
#define CIRRUS_MMIO_LINEDRAW_MODE 0x39 // byte
|
||||
#define CIRRUS_MMIO_BLTSTATUS 0x40 // byte
|
||||
|
||||
// PCI 0x00: vendor, 0x02: device
|
||||
#define PCI_VENDOR_CIRRUS 0x1013
|
||||
// PCI 0x02: device
|
||||
#define PCI_DEVICE_CLGD5462 0x00d0
|
||||
#define PCI_DEVICE_CLGD5465 0x00d6
|
||||
|
||||
|
@ -3376,10 +3375,8 @@ void pci_cirrus_vga_init(PCIBus *bus, uint8_t *vga_ram_base,
|
|||
sizeof(PCICirrusVGAState),
|
||||
-1, NULL, pci_cirrus_write_config);
|
||||
pci_conf = d->dev.config;
|
||||
pci_conf[0x00] = (uint8_t) (PCI_VENDOR_CIRRUS & 0xff);
|
||||
pci_conf[0x01] = (uint8_t) (PCI_VENDOR_CIRRUS >> 8);
|
||||
pci_conf[0x02] = (uint8_t) (device_id & 0xff);
|
||||
pci_conf[0x03] = (uint8_t) (device_id >> 8);
|
||||
pci_config_set_vendor_id(pci_conf, PCI_VENDOR_ID_CIRRUS);
|
||||
pci_config_set_device_id(pci_conf, device_id);
|
||||
pci_conf[0x04] = PCI_COMMAND_IOACCESS | PCI_COMMAND_MEMACCESS;
|
||||
pci_conf[0x0a] = PCI_CLASS_SUB_VGA;
|
||||
pci_conf[0x0b] = PCI_CLASS_BASE_DISPLAY;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue