]> Git Repo - qemu.git/commitdiff
hw/pcie: fix Extended Configuration Space for devices with no Extended Capabilities
authorMarcel Apfelbaum <[email protected]>
Mon, 20 Feb 2017 20:43:10 +0000 (22:43 +0200)
committerMichael S. Tsirkin <[email protected]>
Wed, 15 Mar 2017 23:46:40 +0000 (01:46 +0200)
Absence of any Extended Capabilities is required to be
indicated by an Extended Capability header with a Capability ID of
0000h, a Capability Version of 0h, and a Next Capability Offset of 000h.

Instead of inserting a 'NULL' capability is simpler to mark the start
of the Extended Configuration Space as read-only to achieve the same
behaviour.

Signed-off-by: Marcel Apfelbaum <[email protected]>
Reviewed-by: Michael S. Tsirkin <[email protected]>
Signed-off-by: Michael S. Tsirkin <[email protected]>
hw/pci/pci.c
hw/pci/pcie.c
include/hw/compat.h
include/hw/pci/pci.h

index ad46390ec54d5e2d0a42a1cf24de70380d3043c1..e6b08e198840b587a2e9e627d948201162999566 100644 (file)
@@ -64,6 +64,8 @@ static Property pci_props[] = {
                     QEMU_PCI_CAP_SERR_BITNR, true),
     DEFINE_PROP_BIT("x-pcie-lnksta-dllla", PCIDevice, cap_present,
                     QEMU_PCIE_LNKSTA_DLLLA_BITNR, true),
+    DEFINE_PROP_BIT("x-pcie-extcap-init", PCIDevice, cap_present,
+                    QEMU_PCIE_EXTCAP_INIT_BITNR, true),
     DEFINE_PROP_END_OF_LIST()
 };
 
index fc54bfd53db6f045ebfad385d533b933ec0db5bf..82a890234f0d96b059787fda0a2b9be752c9f7ec 100644 (file)
@@ -109,6 +109,12 @@ int pcie_cap_init(PCIDevice *dev, uint8_t offset, uint8_t type, uint8_t port)
                  PCI_EXP_DEVCAP2_EFF | PCI_EXP_DEVCAP2_EETLPP);
 
     pci_set_word(dev->wmask + pos + PCI_EXP_DEVCTL2, PCI_EXP_DEVCTL2_EETLPPB);
+
+    if (dev->cap_present & QEMU_PCIE_EXTCAP_INIT) {
+        /* read-only to behave like a 'NULL' Extended Capability Header */
+        pci_set_long(dev->wmask + PCI_CONFIG_SPACE_SIZE, 0);
+    }
+
     return pos;
 }
 
index b7db43803cf54f19aff3b37f66546059209b95f8..ce3bfe3eea18e2ad7f55e0b23ecff5bfa6a7685c 100644 (file)
         .driver   = "pci-bridge",\
         .property = "shpc",\
         .value    = "on",\
+    },{\
+        .driver   = TYPE_PCI_DEVICE,\
+        .property = "x-pcie-extcap-init",\
+        .value    = "off",\
     },
 
 #define HW_COMPAT_2_7 \
index 713ede00bf7f800022c97638d605c07c4690a2bd..a37a2d5cb6d478d3b83aa5a3f3ed8deb313f0e9c 100644 (file)
@@ -183,6 +183,8 @@ enum {
     /* Link active status in endpoint capability is always set */
 #define QEMU_PCIE_LNKSTA_DLLLA_BITNR 8
     QEMU_PCIE_LNKSTA_DLLLA = (1 << QEMU_PCIE_LNKSTA_DLLLA_BITNR),
+#define QEMU_PCIE_EXTCAP_INIT_BITNR 9
+    QEMU_PCIE_EXTCAP_INIT = (1 << QEMU_PCIE_EXTCAP_INIT_BITNR),
 };
 
 #define TYPE_PCI_DEVICE "pci-device"
This page took 0.033726 seconds and 4 git commands to generate.