]> Pileus Git - ~andy/linux/commitdiff
PCI: Allow pcie_aspm=force even when FADT indicates it is unsupported
authorColin Ian King <colin.king@canonical.com>
Tue, 27 Nov 2012 14:09:40 +0000 (14:09 +0000)
committerBjorn Helgaas <bhelgaas@google.com>
Mon, 14 Jan 2013 23:23:42 +0000 (16:23 -0700)
Right now using pcie_aspm=force will not enable ASPM if the FADT indicates
ASPM is unsupported.  However, the semantics of force should probably allow
for this, especially as they did before 3c076351c4 ("PCI: Rework ASPM
disable code")

This patch just skips the clearing of any ASPM setup that the firmware has
carried out on this bus if pcie_aspm=force is being used.

Reference: http://bugs.launchpad.net/bugs/962038
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
CC: stable@vger.kernel.org
drivers/pci/pcie/aspm.c

index b52630b8eada26ad35f8304e436c63f3e064edd3..8474b6a4fc9bb714e7ab85cf539353fd151b8125 100644 (file)
@@ -771,6 +771,9 @@ void pcie_clear_aspm(struct pci_bus *bus)
 {
        struct pci_dev *child;
 
+       if (aspm_force)
+               return;
+
        /*
         * Clear any ASPM setup that the firmware has carried out on this bus
         */