aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci/pcie/aspm.c
diff options
context:
space:
mode:
authorShaohua Li <shaohua.li@intel.com>2009-06-08 09:27:25 +0800
committerJesse Barnes <jbarnes@virtuousgeek.org>2009-06-11 12:04:18 -0700
commit8e822df700694ca6850d1e0c122fd7004b2778d8 (patch)
tree2c0218345809138c1dfb45a325705c870d0ccb21 /drivers/pci/pcie/aspm.c
parent9e9f46c44e487af0a82eb61b624553e2f7118f5b (diff)
downloadkernel_samsung_smdk4412-8e822df700694ca6850d1e0c122fd7004b2778d8.zip
kernel_samsung_smdk4412-8e822df700694ca6850d1e0c122fd7004b2778d8.tar.gz
kernel_samsung_smdk4412-8e822df700694ca6850d1e0c122fd7004b2778d8.tar.bz2
PCI: disable ASPM on VIA root-port-under-bridge configurations
VIA has a strange chipset, it has root port under a bridge. Disable ASPM for such strange chipset. Cc: stable@kernel.org Tested-by: Wolfgang Denk <wd@denx.de> Signed-off-by: Shaohua Li <shaohua.li@intel.com> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'drivers/pci/pcie/aspm.c')
-rw-r--r--drivers/pci/pcie/aspm.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/pci/pcie/aspm.c b/drivers/pci/pcie/aspm.c
index b0367f1..777b2c7 100644
--- a/drivers/pci/pcie/aspm.c
+++ b/drivers/pci/pcie/aspm.c
@@ -638,6 +638,10 @@ void pcie_aspm_init_link_state(struct pci_dev *pdev)
if (pdev->pcie_type != PCI_EXP_TYPE_ROOT_PORT &&
pdev->pcie_type != PCI_EXP_TYPE_DOWNSTREAM)
return;
+ /* VIA has a strange chipset, root port is under a bridge */
+ if (pdev->pcie_type == PCI_EXP_TYPE_ROOT_PORT &&
+ pdev->bus->self)
+ return;
down_read(&pci_bus_sem);
if (list_empty(&pdev->subordinate->devices))
goto out;