diff mbox

[6/6] piix: use 64 bit window programmed by guest

Message ID 1378291667-8516-7-git-send-email-mst@redhat.com
State New
Headers show

Commit Message

Michael S. Tsirkin Sept. 4, 2013, 10:48 a.m. UTC
Detect the 64 bit window programmed by firmware
and configure properties accordingly.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
 hw/pci-host/piix.c | 6 ++++++
 1 file changed, 6 insertions(+)
diff mbox

Patch

diff --git a/hw/pci-host/piix.c b/hw/pci-host/piix.c
index 221d82b..9e7f82a 100644
--- a/hw/pci-host/piix.c
+++ b/hw/pci-host/piix.c
@@ -236,6 +236,9 @@  static void i440fx_pcihost_get_pci_hole64_start(Object *obj, Visitor *v,
                                                 Error **errp)
 {
     I440FXState *s = I440FX_PCI_HOST_BRIDGE(obj);
+    PCIHostState *h = PCI_HOST_BRIDGE(obj);
+
+    pci_bus_get_w64_range(h->bus, &s->pci_info.w64);
 
     visit_type_uint64(v, &s->pci_info.w64.begin, name, errp);
 }
@@ -245,6 +248,9 @@  static void i440fx_pcihost_get_pci_hole64_end(Object *obj, Visitor *v,
                                               Error **errp)
 {
     I440FXState *s = I440FX_PCI_HOST_BRIDGE(obj);
+    PCIHostState *h = PCI_HOST_BRIDGE(obj);
+
+    pci_bus_get_w64_range(h->bus, &s->pci_info.w64);
 
     visit_type_uint64(v, &s->pci_info.w64.end, name, errp);
 }