mirror of https://github.com/xqemu/xqemu.git
apb_pci: convert to PCIDeviceInfo to initialize ids
Use PCIDeviceInfo to initialize ids. Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
e7b9bc3e89
commit
92f9a4f13e
13
hw/apb_pci.c
13
hw/apb_pci.c
|
@ -304,9 +304,6 @@ static int apb_pci_bridge_initfn(PCIDevice *dev)
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
pci_config_set_vendor_id(dev->config, PCI_VENDOR_ID_SUN);
|
|
||||||
pci_config_set_device_id(dev->config, PCI_DEVICE_ID_SUN_SIMBA);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* command register:
|
* command register:
|
||||||
* According to PCI bridge spec, after reset
|
* According to PCI bridge spec, after reset
|
||||||
|
@ -321,7 +318,6 @@ static int apb_pci_bridge_initfn(PCIDevice *dev)
|
||||||
pci_set_word(dev->config + PCI_STATUS,
|
pci_set_word(dev->config + PCI_STATUS,
|
||||||
PCI_STATUS_FAST_BACK | PCI_STATUS_66MHZ |
|
PCI_STATUS_FAST_BACK | PCI_STATUS_66MHZ |
|
||||||
PCI_STATUS_DEVSEL_MEDIUM);
|
PCI_STATUS_DEVSEL_MEDIUM);
|
||||||
pci_set_byte(dev->config + PCI_REVISION_ID, 0x11);
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -436,14 +432,11 @@ static int pci_pbm_init_device(SysBusDevice *dev)
|
||||||
|
|
||||||
static int pbm_pci_host_init(PCIDevice *d)
|
static int pbm_pci_host_init(PCIDevice *d)
|
||||||
{
|
{
|
||||||
pci_config_set_vendor_id(d->config, PCI_VENDOR_ID_SUN);
|
|
||||||
pci_config_set_device_id(d->config, PCI_DEVICE_ID_SUN_SABRE);
|
|
||||||
pci_set_word(d->config + PCI_COMMAND,
|
pci_set_word(d->config + PCI_COMMAND,
|
||||||
PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER);
|
PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER);
|
||||||
pci_set_word(d->config + PCI_STATUS,
|
pci_set_word(d->config + PCI_STATUS,
|
||||||
PCI_STATUS_FAST_BACK | PCI_STATUS_66MHZ |
|
PCI_STATUS_FAST_BACK | PCI_STATUS_66MHZ |
|
||||||
PCI_STATUS_DEVSEL_MEDIUM);
|
PCI_STATUS_DEVSEL_MEDIUM);
|
||||||
pci_config_set_class(d->config, PCI_CLASS_BRIDGE_HOST);
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -451,6 +444,9 @@ static PCIDeviceInfo pbm_pci_host_info = {
|
||||||
.qdev.name = "pbm",
|
.qdev.name = "pbm",
|
||||||
.qdev.size = sizeof(PCIDevice),
|
.qdev.size = sizeof(PCIDevice),
|
||||||
.init = pbm_pci_host_init,
|
.init = pbm_pci_host_init,
|
||||||
|
.vendor_id = PCI_VENDOR_ID_SUN,
|
||||||
|
.device_id = PCI_DEVICE_ID_SUN_SABRE,
|
||||||
|
.class_id = PCI_CLASS_BRIDGE_HOST,
|
||||||
.is_bridge = 1,
|
.is_bridge = 1,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -468,6 +464,9 @@ static PCIDeviceInfo pbm_pci_bridge_info = {
|
||||||
.qdev.reset = pci_bridge_reset,
|
.qdev.reset = pci_bridge_reset,
|
||||||
.init = apb_pci_bridge_initfn,
|
.init = apb_pci_bridge_initfn,
|
||||||
.exit = pci_bridge_exitfn,
|
.exit = pci_bridge_exitfn,
|
||||||
|
.vendor_id = PCI_VENDOR_ID_SUN,
|
||||||
|
.device_id = PCI_DEVICE_ID_SUN_SIMBA,
|
||||||
|
.revision = 0x11,
|
||||||
.config_write = pci_bridge_write_config,
|
.config_write = pci_bridge_write_config,
|
||||||
.is_bridge = 1,
|
.is_bridge = 1,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue