aboutsummaryrefslogtreecommitdiff
path: root/hw/phb4.c
diff options
context:
space:
mode:
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>2017-06-06 08:59:23 +1000
committerStewart Smith <stewart@linux.vnet.ibm.com>2017-06-06 20:49:05 +1000
commit9eb2ab74905ff59dd0de5fb3ece6b910863e8a31 (patch)
treee9c33dae3bb3bcdda24a5fd0eeef6d67e859bddc /hw/phb4.c
parent68d9e87c11b589d709bb86786703ccb5c68bd8f8 (diff)
downloadskiboot-9eb2ab74905ff59dd0de5fb3ece6b910863e8a31.zip
skiboot-9eb2ab74905ff59dd0de5fb3ece6b910863e8a31.tar.gz
skiboot-9eb2ab74905ff59dd0de5fb3ece6b910863e8a31.tar.bz2
phb4: Block D-state power management on direct slots
As current revisions of PHB4 don't properly handle the resulting L1 link transition. Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'hw/phb4.c')
-rw-r--r--hw/phb4.c34
1 files changed, 30 insertions, 4 deletions
diff --git a/hw/phb4.c b/hw/phb4.c
index bf664af..b53dadf 100644
--- a/hw/phb4.c
+++ b/hw/phb4.c
@@ -644,9 +644,36 @@ static void phb4_endpoint_init(struct phb *phb,
pci_cfg_write32(phb, bdfn, aercap + PCIECAP_AER_CAPCTL, val32);
}
+static int64_t phb4_pcicfg_no_dstate(void *dev,
+ struct pci_cfg_reg_filter *pcrf,
+ uint32_t offset, uint32_t len,
+ uint32_t *data, bool write)
+{
+ uint32_t loff = offset - pcrf->start;
+
+ /* Disable D-state change on children of the PHB. For now we
+ * simply block all writes to the PM control/status
+ */
+ if (write && loff >= 4 && loff < 6)
+ return OPAL_SUCCESS;
+
+ return OPAL_PARTIAL;
+}
+
static void phb4_check_device_quirks(struct phb *phb, struct pci_device *dev)
{
- // FIXME: add quirks later if necessary
+ /* Some special adapter tweaks for devices directly under the PHB */
+ if (dev->primary_bus != 1)
+ return;
+
+ /* PM quirk */
+ if (!pci_has_cap(dev, PCI_CFG_CAP_ID_PM, false))
+ return;
+
+ pci_add_cfg_reg_filter(dev,
+ pci_cap(dev, PCI_CFG_CAP_ID_PM, false), 8,
+ PCI_REG_FLAG_WRITE,
+ phb4_pcicfg_no_dstate);
}
static int phb4_device_init(struct phb *phb, struct pci_device *dev,
@@ -654,9 +681,8 @@ static int phb4_device_init(struct phb *phb, struct pci_device *dev,
{
int ecap, aercap;
- /* Some special adapter tweaks for devices directly under the PHB */
- if (dev->primary_bus == 1)
- phb4_check_device_quirks(phb, dev);
+ /* Setup special device quirks */
+ phb4_check_device_quirks(phb, dev);
/* Common initialization for the device */
pci_device_init(phb, dev);