aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci/pcie/aspm.c
diff options
context:
space:
mode:
authorAndrew Patterson <andrew.patterson@hp.com>2008-11-10 17:30:55 -0500
committerJesse Barnes <jbarnes@virtuousgeek.org>2009-01-07 14:12:29 -0500
commit3e1b16002af29758b6bc9c38939d43838d9335bc (patch)
tree6782f844e3813355280ad3367c58d90d576901f2 /drivers/pci/pcie/aspm.c
parent0ef5f8f6159e44b4faa997be08d1a3bcbf44ad08 (diff)
ACPI/PCI: PCIe ASPM _OSC support capabilities called when root bridge added
The _OSC capabilities OSC_ACTIVE_STATE_PWR_SUPPORT and OSC_CLOCK_PWR_CAPABILITY_SUPPORT are set when the root bridge is added with pci_acpi_osc_support(), so we no longer need to do it in the ASPM driver. Also add the function pcie_aspm_enabled, which returns true if pcie_aspm=off is not on the kernel command-line. Signed-off-by: Andrew Patterson <andrew.patterson@hp.com> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'drivers/pci/pcie/aspm.c')
-rw-r--r--drivers/pci/pcie/aspm.c27
1 files changed, 9 insertions, 18 deletions
diff --git a/drivers/pci/pcie/aspm.c b/drivers/pci/pcie/aspm.c
index 9aad608bcf3f..e361c7dc726f 100644
--- a/drivers/pci/pcie/aspm.c
+++ b/drivers/pci/pcie/aspm.c
@@ -857,24 +857,15 @@ void pcie_no_aspm(void)
857 aspm_disabled = 1; 857 aspm_disabled = 1;
858} 858}
859 859
860#ifdef CONFIG_ACPI 860/**
861#include <acpi/acpi_bus.h> 861 * pcie_aspm_enabled - is PCIe ASPM enabled?
862#include <linux/pci-acpi.h> 862 *
863static void pcie_aspm_platform_init(void) 863 * Returns true if ASPM has not been disabled by the command-line option
864{ 864 * pcie_aspm=off.
865 pcie_osc_support_set(OSC_ACTIVE_STATE_PWR_SUPPORT| 865 **/
866 OSC_CLOCK_PWR_CAPABILITY_SUPPORT); 866int pcie_aspm_enabled(void)
867}
868#else
869static inline void pcie_aspm_platform_init(void) { }
870#endif
871
872static int __init pcie_aspm_init(void)
873{ 867{
874 if (aspm_disabled) 868 return !aspm_disabled;
875 return 0;
876 pcie_aspm_platform_init();
877 return 0;
878} 869}
870EXPORT_SYMBOL(pcie_aspm_enabled);
879 871
880fs_initcall(pcie_aspm_init);