Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * File: pci-acpi.c |
Len Brown | a406d9e | 2005-03-23 16:16:03 -0500 | [diff] [blame] | 3 | * Purpose: Provide PCI support in ACPI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
David Shaohua Li | 84df749f | 2005-03-18 18:53:36 -0500 | [diff] [blame] | 5 | * Copyright (C) 2005 David Shaohua Li <shaohua.li@intel.com> |
| 6 | * Copyright (C) 2004 Tom Long Nguyen <tom.l.nguyen@intel.com> |
| 7 | * Copyright (C) 2004 Intel Corp. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <linux/delay.h> |
| 11 | #include <linux/init.h> |
| 12 | #include <linux/pci.h> |
| 13 | #include <linux/module.h> |
Shaohua Li | 5fde244 | 2008-07-23 10:32:24 +0800 | [diff] [blame] | 14 | #include <linux/pci-aspm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <acpi/acpi.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <acpi/acpi_bus.h> |
| 17 | |
| 18 | #include <linux/pci-acpi.h> |
David Shaohua Li | 0f64474 | 2005-03-19 00:15:48 -0500 | [diff] [blame] | 19 | #include "pci.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
David Shaohua Li | 0f64474 | 2005-03-19 00:15:48 -0500 | [diff] [blame] | 21 | /* |
| 22 | * _SxD returns the D-state with the highest power |
| 23 | * (lowest D-state number) supported in the S-state "x". |
| 24 | * |
| 25 | * If the devices does not have a _PRW |
| 26 | * (Power Resources for Wake) supporting system wakeup from "x" |
| 27 | * then the OS is free to choose a lower power (higher number |
| 28 | * D-state) than the return value from _SxD. |
| 29 | * |
| 30 | * But if _PRW is enabled at S-state "x", the OS |
| 31 | * must not choose a power lower than _SxD -- |
| 32 | * unless the device has an _SxW method specifying |
| 33 | * the lowest power (highest D-state number) the device |
| 34 | * may enter while still able to wake the system. |
| 35 | * |
| 36 | * ie. depending on global OS policy: |
| 37 | * |
| 38 | * if (_PRW at S-state x) |
| 39 | * choose from highest power _SxD to lowest power _SxW |
| 40 | * else // no _PRW at S-state x |
| 41 | * choose highest power _SxD or any lower power |
David Shaohua Li | 0f64474 | 2005-03-19 00:15:48 -0500 | [diff] [blame] | 42 | */ |
| 43 | |
Rafael J. Wysocki | 8d2bdf4 | 2008-06-05 01:16:37 +0200 | [diff] [blame] | 44 | static pci_power_t acpi_pci_choose_state(struct pci_dev *pdev) |
David Shaohua Li | 0f64474 | 2005-03-19 00:15:48 -0500 | [diff] [blame] | 45 | { |
Shaohua Li | ab826ca | 2007-07-20 10:03:22 +0800 | [diff] [blame] | 46 | int acpi_state; |
David Shaohua Li | 0f64474 | 2005-03-19 00:15:48 -0500 | [diff] [blame] | 47 | |
David Brownell | 0616678 | 2008-06-05 01:15:40 +0200 | [diff] [blame] | 48 | acpi_state = acpi_pm_device_sleep_state(&pdev->dev, NULL); |
Shaohua Li | ab826ca | 2007-07-20 10:03:22 +0800 | [diff] [blame] | 49 | if (acpi_state < 0) |
| 50 | return PCI_POWER_ERROR; |
| 51 | |
| 52 | switch (acpi_state) { |
| 53 | case ACPI_STATE_D0: |
| 54 | return PCI_D0; |
| 55 | case ACPI_STATE_D1: |
| 56 | return PCI_D1; |
| 57 | case ACPI_STATE_D2: |
| 58 | return PCI_D2; |
| 59 | case ACPI_STATE_D3: |
| 60 | return PCI_D3hot; |
| 61 | } |
| 62 | return PCI_POWER_ERROR; |
David Shaohua Li | 0f64474 | 2005-03-19 00:15:48 -0500 | [diff] [blame] | 63 | } |
Rafael J. Wysocki | 961d912 | 2008-07-07 03:32:02 +0200 | [diff] [blame] | 64 | |
| 65 | static bool acpi_pci_power_manageable(struct pci_dev *dev) |
| 66 | { |
| 67 | acpi_handle handle = DEVICE_ACPI_HANDLE(&dev->dev); |
| 68 | |
| 69 | return handle ? acpi_bus_power_manageable(handle) : false; |
| 70 | } |
David Shaohua Li | 0f64474 | 2005-03-19 00:15:48 -0500 | [diff] [blame] | 71 | |
David Shaohua Li | b913100 | 2005-03-19 00:16:18 -0500 | [diff] [blame] | 72 | static int acpi_pci_set_power_state(struct pci_dev *dev, pci_power_t state) |
| 73 | { |
| 74 | acpi_handle handle = DEVICE_ACPI_HANDLE(&dev->dev); |
Shaohua Li | 10b3dca | 2007-07-20 10:03:25 +0800 | [diff] [blame] | 75 | acpi_handle tmp; |
David Brownell | 583c377 | 2008-02-22 21:41:51 -0800 | [diff] [blame] | 76 | static const u8 state_conv[] = { |
| 77 | [PCI_D0] = ACPI_STATE_D0, |
| 78 | [PCI_D1] = ACPI_STATE_D1, |
| 79 | [PCI_D2] = ACPI_STATE_D2, |
| 80 | [PCI_D3hot] = ACPI_STATE_D3, |
| 81 | [PCI_D3cold] = ACPI_STATE_D3 |
David Shaohua Li | b913100 | 2005-03-19 00:16:18 -0500 | [diff] [blame] | 82 | }; |
Rafael J. Wysocki | 44e4e66 | 2008-07-07 03:32:52 +0200 | [diff] [blame] | 83 | int error = -EINVAL; |
David Shaohua Li | b913100 | 2005-03-19 00:16:18 -0500 | [diff] [blame] | 84 | |
Shaohua Li | 10b3dca | 2007-07-20 10:03:25 +0800 | [diff] [blame] | 85 | /* If the ACPI device has _EJ0, ignore the device */ |
Rafael J. Wysocki | 44e4e66 | 2008-07-07 03:32:52 +0200 | [diff] [blame] | 86 | if (!handle || ACPI_SUCCESS(acpi_get_handle(handle, "_EJ0", &tmp))) |
| 87 | return -ENODEV; |
David Brownell | 583c377 | 2008-02-22 21:41:51 -0800 | [diff] [blame] | 88 | |
| 89 | switch (state) { |
| 90 | case PCI_D0: |
| 91 | case PCI_D1: |
| 92 | case PCI_D2: |
| 93 | case PCI_D3hot: |
| 94 | case PCI_D3cold: |
Rafael J. Wysocki | 44e4e66 | 2008-07-07 03:32:52 +0200 | [diff] [blame] | 95 | error = acpi_bus_set_power(handle, state_conv[state]); |
David Brownell | 583c377 | 2008-02-22 21:41:51 -0800 | [diff] [blame] | 96 | } |
Rafael J. Wysocki | 44e4e66 | 2008-07-07 03:32:52 +0200 | [diff] [blame] | 97 | |
| 98 | if (!error) |
| 99 | dev_printk(KERN_INFO, &dev->dev, |
| 100 | "power state changed by ACPI to D%d\n", state); |
| 101 | |
| 102 | return error; |
David Shaohua Li | b913100 | 2005-03-19 00:16:18 -0500 | [diff] [blame] | 103 | } |
| 104 | |
Rafael J. Wysocki | eb9d0fe | 2008-07-07 03:34:48 +0200 | [diff] [blame] | 105 | static bool acpi_pci_can_wakeup(struct pci_dev *dev) |
| 106 | { |
| 107 | acpi_handle handle = DEVICE_ACPI_HANDLE(&dev->dev); |
| 108 | |
| 109 | return handle ? acpi_bus_can_wakeup(handle) : false; |
| 110 | } |
| 111 | |
Rafael J. Wysocki | 0baed8d | 2009-09-08 23:16:24 +0200 | [diff] [blame] | 112 | static void acpi_pci_propagate_wakeup_enable(struct pci_bus *bus, bool enable) |
| 113 | { |
| 114 | while (bus->parent) { |
| 115 | struct pci_dev *bridge = bus->self; |
| 116 | int ret; |
| 117 | |
| 118 | ret = acpi_pm_device_sleep_wake(&bridge->dev, enable); |
| 119 | if (!ret || bridge->is_pcie) |
| 120 | return; |
| 121 | bus = bus->parent; |
| 122 | } |
| 123 | |
| 124 | /* We have reached the root bus. */ |
| 125 | if (bus->bridge) |
| 126 | acpi_pm_device_sleep_wake(bus->bridge, enable); |
| 127 | } |
| 128 | |
Rafael J. Wysocki | eb9d0fe | 2008-07-07 03:34:48 +0200 | [diff] [blame] | 129 | static int acpi_pci_sleep_wake(struct pci_dev *dev, bool enable) |
| 130 | { |
Rafael J. Wysocki | 0baed8d | 2009-09-08 23:16:24 +0200 | [diff] [blame] | 131 | if (acpi_pci_can_wakeup(dev)) |
| 132 | return acpi_pm_device_sleep_wake(&dev->dev, enable); |
| 133 | |
| 134 | if (!dev->is_pcie) |
| 135 | acpi_pci_propagate_wakeup_enable(dev->bus, enable); |
| 136 | |
| 137 | return 0; |
Rafael J. Wysocki | eb9d0fe | 2008-07-07 03:34:48 +0200 | [diff] [blame] | 138 | } |
| 139 | |
Rafael J. Wysocki | 961d912 | 2008-07-07 03:32:02 +0200 | [diff] [blame] | 140 | static struct pci_platform_pm_ops acpi_pci_platform_pm = { |
| 141 | .is_manageable = acpi_pci_power_manageable, |
| 142 | .set_state = acpi_pci_set_power_state, |
| 143 | .choose_state = acpi_pci_choose_state, |
Rafael J. Wysocki | eb9d0fe | 2008-07-07 03:34:48 +0200 | [diff] [blame] | 144 | .can_wakeup = acpi_pci_can_wakeup, |
| 145 | .sleep_wake = acpi_pci_sleep_wake, |
Rafael J. Wysocki | 961d912 | 2008-07-07 03:32:02 +0200 | [diff] [blame] | 146 | }; |
David Shaohua Li | b913100 | 2005-03-19 00:16:18 -0500 | [diff] [blame] | 147 | |
David Shaohua Li | 84df749f | 2005-03-18 18:53:36 -0500 | [diff] [blame] | 148 | /* ACPI bus type */ |
Muthu Kumar | 9c273b9 | 2006-04-28 00:42:21 -0700 | [diff] [blame] | 149 | static int acpi_pci_find_device(struct device *dev, acpi_handle *handle) |
David Shaohua Li | 84df749f | 2005-03-18 18:53:36 -0500 | [diff] [blame] | 150 | { |
| 151 | struct pci_dev * pci_dev; |
| 152 | acpi_integer addr; |
| 153 | |
| 154 | pci_dev = to_pci_dev(dev); |
| 155 | /* Please ref to ACPI spec for the syntax of _ADR */ |
| 156 | addr = (PCI_SLOT(pci_dev->devfn) << 16) | PCI_FUNC(pci_dev->devfn); |
| 157 | *handle = acpi_get_child(DEVICE_ACPI_HANDLE(dev->parent), addr); |
| 158 | if (!*handle) |
| 159 | return -ENODEV; |
| 160 | return 0; |
| 161 | } |
| 162 | |
Muthu Kumar | 9c273b9 | 2006-04-28 00:42:21 -0700 | [diff] [blame] | 163 | static int acpi_pci_find_root_bridge(struct device *dev, acpi_handle *handle) |
David Shaohua Li | 84df749f | 2005-03-18 18:53:36 -0500 | [diff] [blame] | 164 | { |
| 165 | int num; |
| 166 | unsigned int seg, bus; |
| 167 | |
| 168 | /* |
| 169 | * The string should be the same as root bridge's name |
| 170 | * Please look at 'pci_scan_bus_parented' |
| 171 | */ |
Kay Sievers | 1a92713 | 2008-10-30 02:17:49 +0100 | [diff] [blame] | 172 | num = sscanf(dev_name(dev), "pci%04x:%02x", &seg, &bus); |
David Shaohua Li | 84df749f | 2005-03-18 18:53:36 -0500 | [diff] [blame] | 173 | if (num != 2) |
| 174 | return -ENODEV; |
| 175 | *handle = acpi_get_pci_rootbridge_handle(seg, bus); |
| 176 | if (!*handle) |
| 177 | return -ENODEV; |
| 178 | return 0; |
| 179 | } |
| 180 | |
Muthu Kumar | 9c273b9 | 2006-04-28 00:42:21 -0700 | [diff] [blame] | 181 | static struct acpi_bus_type acpi_pci_bus = { |
David Shaohua Li | 84df749f | 2005-03-18 18:53:36 -0500 | [diff] [blame] | 182 | .bus = &pci_bus_type, |
Muthu Kumar | 9c273b9 | 2006-04-28 00:42:21 -0700 | [diff] [blame] | 183 | .find_device = acpi_pci_find_device, |
| 184 | .find_bridge = acpi_pci_find_root_bridge, |
David Shaohua Li | 84df749f | 2005-03-18 18:53:36 -0500 | [diff] [blame] | 185 | }; |
| 186 | |
Muthu Kumar | 9c273b9 | 2006-04-28 00:42:21 -0700 | [diff] [blame] | 187 | static int __init acpi_pci_init(void) |
David Shaohua Li | 84df749f | 2005-03-18 18:53:36 -0500 | [diff] [blame] | 188 | { |
| 189 | int ret; |
| 190 | |
Bob Moore | 993958f | 2009-02-03 15:14:33 +0800 | [diff] [blame] | 191 | if (acpi_gbl_FADT.boot_flags & ACPI_FADT_NO_MSI) { |
Shaohua Li | f8993af | 2007-04-25 11:05:12 +0800 | [diff] [blame] | 192 | printk(KERN_INFO"ACPI FADT declares the system doesn't support MSI, so disable it\n"); |
| 193 | pci_no_msi(); |
| 194 | } |
Shaohua Li | 5fde244 | 2008-07-23 10:32:24 +0800 | [diff] [blame] | 195 | |
Bob Moore | 993958f | 2009-02-03 15:14:33 +0800 | [diff] [blame] | 196 | if (acpi_gbl_FADT.boot_flags & ACPI_FADT_NO_ASPM) { |
Shaohua Li | 5fde244 | 2008-07-23 10:32:24 +0800 | [diff] [blame] | 197 | printk(KERN_INFO"ACPI FADT declares the system doesn't support PCIe ASPM, so disable it\n"); |
| 198 | pcie_no_aspm(); |
| 199 | } |
| 200 | |
Muthu Kumar | 9c273b9 | 2006-04-28 00:42:21 -0700 | [diff] [blame] | 201 | ret = register_acpi_bus_type(&acpi_pci_bus); |
David Shaohua Li | 84df749f | 2005-03-18 18:53:36 -0500 | [diff] [blame] | 202 | if (ret) |
| 203 | return 0; |
Rafael J. Wysocki | 961d912 | 2008-07-07 03:32:02 +0200 | [diff] [blame] | 204 | pci_set_platform_pm(&acpi_pci_platform_pm); |
David Shaohua Li | 84df749f | 2005-03-18 18:53:36 -0500 | [diff] [blame] | 205 | return 0; |
| 206 | } |
Muthu Kumar | 9c273b9 | 2006-04-28 00:42:21 -0700 | [diff] [blame] | 207 | arch_initcall(acpi_pci_init); |