summaryrefslogtreecommitdiff
path: root/hw/pci-host/versatile.c
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2013-04-19 11:15:19 +0100
committerPeter Maydell <peter.maydell@linaro.org>2013-04-19 11:15:19 +0100
commit5f37ef92b7690423ac6311d3c597e182fc5f8fe6 (patch)
tree37a012edf3b730c67e5196d980fba19fea823b9e /hw/pci-host/versatile.c
parent967c2607496087abf84904c82e6de0cd320a3831 (diff)
downloadqemu-5f37ef92b7690423ac6311d3c597e182fc5f8fe6.tar.gz
versatile_pci: Put the host bridge PCI device at slot 29
On real hardware the host bridge appears as a PCI device in slot 29, so make QEMU put its host bridge in that slot too. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Acked-by: Paul Brook <paul@codesourcery.com>
Diffstat (limited to 'hw/pci-host/versatile.c')
-rw-r--r--hw/pci-host/versatile.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/pci-host/versatile.c b/hw/pci-host/versatile.c
index ce5bdf22b1..8f8612c126 100644
--- a/hw/pci-host/versatile.c
+++ b/hw/pci-host/versatile.c
@@ -87,6 +87,8 @@ static void pci_vpb_init(Object *obj)
object_initialize(&s->pci_dev, TYPE_VERSATILE_PCI_HOST);
qdev_set_parent_bus(DEVICE(&s->pci_dev), BUS(&s->pci_bus));
+ object_property_set_int(OBJECT(&s->pci_dev), PCI_DEVFN(29, 0), "addr",
+ NULL);
}
static void pci_vpb_realize(DeviceState *dev, Error **errp)