]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
PCI/ASPM: Use correct capability pointer to program LTR_L1.2_THRESHOLD
authorBjorn Helgaas <bhelgaas@google.com>
Mon, 13 Nov 2017 21:05:50 +0000 (15:05 -0600)
committerBjorn Helgaas <bhelgaas@google.com>
Tue, 14 Nov 2017 14:32:32 +0000 (08:32 -0600)
Previously we programmed the LTR_L1.2_THRESHOLD in the parent (upstream)
device using the capability pointer of the *child* (downstream) device,
which corrupted some random word of the parent's config space.

Use the parent's L1 SS capability pointer to program its
LTR_L1.2_THRESHOLD.

Fixes: aeda9adebab8 ("PCI/ASPM: Configure L1 substate settings")
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Vidya Sagar <vidyas@nvidia.com>
CC: stable@vger.kernel.org # v4.11+
CC: Rajat Jain <rajatja@google.com>
drivers/pci/pcie/aspm.c

index 46c59afb83552e49bfd5608b4c2dd4705908ada2..a378dd9d2473a07314af283f04247fb5354e404d 100644 (file)
@@ -657,7 +657,7 @@ static void pcie_config_aspm_l1ss(struct pcie_link_state *link, u32 state)
                                        0xFF00, link->l1ss.ctl1);
 
                /* Program LTR L1.2 threshold in both ports */
-               pci_clear_and_set_dword(parent, dw_cap_ptr + PCI_L1SS_CTL1,
+               pci_clear_and_set_dword(parent, up_cap_ptr + PCI_L1SS_CTL1,
                                        0xE3FF0000, link->l1ss.ctl1);
                pci_clear_and_set_dword(child, dw_cap_ptr + PCI_L1SS_CTL1,
                                        0xE3FF0000, link->l1ss.ctl1);