Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 1 | /* |
| 2 | * File: drivers/pci/pcie/aspm.c |
Stefan Assmann | 45e829e | 2009-12-03 06:49:24 -0500 | [diff] [blame] | 3 | * Enabling PCIe link L0s/L1 state and Clock Power Management |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 4 | * |
| 5 | * Copyright (C) 2007 Intel |
| 6 | * Copyright (C) Zhang Yanmin (yanmin.zhang@intel.com) |
| 7 | * Copyright (C) Shaohua Li (shaohua.li@intel.com) |
| 8 | */ |
| 9 | |
| 10 | #include <linux/kernel.h> |
| 11 | #include <linux/module.h> |
| 12 | #include <linux/moduleparam.h> |
| 13 | #include <linux/pci.h> |
| 14 | #include <linux/pci_regs.h> |
| 15 | #include <linux/errno.h> |
| 16 | #include <linux/pm.h> |
| 17 | #include <linux/init.h> |
| 18 | #include <linux/slab.h> |
Thomas Renninger | 2a42d9d | 2008-12-09 13:05:09 +0100 | [diff] [blame] | 19 | #include <linux/jiffies.h> |
Andrew Patterson | 987a4c7 | 2009-01-05 16:21:04 -0700 | [diff] [blame] | 20 | #include <linux/delay.h> |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 21 | #include <linux/pci-aspm.h> |
| 22 | #include "../pci.h" |
| 23 | |
| 24 | #ifdef MODULE_PARAM_PREFIX |
| 25 | #undef MODULE_PARAM_PREFIX |
| 26 | #endif |
| 27 | #define MODULE_PARAM_PREFIX "pcie_aspm." |
| 28 | |
Kenji Kaneshige | ac18018 | 2009-08-19 11:02:13 +0900 | [diff] [blame] | 29 | /* Note: those are not register definitions */ |
| 30 | #define ASPM_STATE_L0S_UP (1) /* Upstream direction L0s state */ |
| 31 | #define ASPM_STATE_L0S_DW (2) /* Downstream direction L0s state */ |
| 32 | #define ASPM_STATE_L1 (4) /* L1 state */ |
| 33 | #define ASPM_STATE_L0S (ASPM_STATE_L0S_UP | ASPM_STATE_L0S_DW) |
| 34 | #define ASPM_STATE_ALL (ASPM_STATE_L0S | ASPM_STATE_L1) |
| 35 | |
Kenji Kaneshige | b6c2e54 | 2009-05-13 12:14:58 +0900 | [diff] [blame] | 36 | struct aspm_latency { |
| 37 | u32 l0s; /* L0s latency (nsec) */ |
| 38 | u32 l1; /* L1 latency (nsec) */ |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 39 | }; |
| 40 | |
| 41 | struct pcie_link_state { |
Kenji Kaneshige | 5cde89d | 2009-05-13 12:17:04 +0900 | [diff] [blame] | 42 | struct pci_dev *pdev; /* Upstream component of the Link */ |
Kenji Kaneshige | 5c92ffb | 2009-05-13 12:23:57 +0900 | [diff] [blame] | 43 | struct pcie_link_state *root; /* pointer to the root port link */ |
Kenji Kaneshige | 5cde89d | 2009-05-13 12:17:04 +0900 | [diff] [blame] | 44 | struct pcie_link_state *parent; /* pointer to the parent Link state */ |
| 45 | struct list_head sibling; /* node in link_list */ |
| 46 | struct list_head children; /* list of child link states */ |
| 47 | struct list_head link; /* node in parent's children list */ |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 48 | |
| 49 | /* ASPM state */ |
Kenji Kaneshige | ac18018 | 2009-08-19 11:02:13 +0900 | [diff] [blame] | 50 | u32 aspm_support:3; /* Supported ASPM state */ |
| 51 | u32 aspm_enabled:3; /* Enabled ASPM state */ |
| 52 | u32 aspm_capable:3; /* Capable ASPM state with latency */ |
| 53 | u32 aspm_default:3; /* Default ASPM state by BIOS */ |
| 54 | u32 aspm_disable:3; /* Disabled ASPM state */ |
Kenji Kaneshige | 80bfdbe | 2009-05-13 12:12:43 +0900 | [diff] [blame] | 55 | |
Kenji Kaneshige | 4d246e4 | 2009-05-13 12:15:38 +0900 | [diff] [blame] | 56 | /* Clock PM state */ |
| 57 | u32 clkpm_capable:1; /* Clock PM capable? */ |
| 58 | u32 clkpm_enabled:1; /* Current Clock PM state */ |
| 59 | u32 clkpm_default:1; /* Default Clock PM state by BIOS */ |
| 60 | |
Kenji Kaneshige | ac18018 | 2009-08-19 11:02:13 +0900 | [diff] [blame] | 61 | /* Exit latencies */ |
| 62 | struct aspm_latency latency_up; /* Upstream direction exit latency */ |
| 63 | struct aspm_latency latency_dw; /* Downstream direction exit latency */ |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 64 | /* |
Kenji Kaneshige | b6c2e54 | 2009-05-13 12:14:58 +0900 | [diff] [blame] | 65 | * Endpoint acceptable latencies. A pcie downstream port only |
| 66 | * has one slot under it, so at most there are 8 functions. |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 67 | */ |
Kenji Kaneshige | b6c2e54 | 2009-05-13 12:14:58 +0900 | [diff] [blame] | 68 | struct aspm_latency acceptable[8]; |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 69 | }; |
| 70 | |
Matthew Garrett | 3c07635 | 2011-11-10 16:38:33 -0500 | [diff] [blame] | 71 | static int aspm_disabled, aspm_force; |
Rafael J. Wysocki | 8b8bae9 | 2011-03-05 13:21:51 +0100 | [diff] [blame] | 72 | static bool aspm_support_enabled = true; |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 73 | static DEFINE_MUTEX(aspm_lock); |
| 74 | static LIST_HEAD(link_list); |
| 75 | |
| 76 | #define POLICY_DEFAULT 0 /* BIOS default setting */ |
| 77 | #define POLICY_PERFORMANCE 1 /* high performance */ |
| 78 | #define POLICY_POWERSAVE 2 /* high power saving */ |
Matthew Garrett | ad71c96 | 2012-02-03 10:18:13 -0500 | [diff] [blame] | 79 | |
| 80 | #ifdef CONFIG_PCIEASPM_PERFORMANCE |
| 81 | static int aspm_policy = POLICY_PERFORMANCE; |
| 82 | #elif defined CONFIG_PCIEASPM_POWERSAVE |
| 83 | static int aspm_policy = POLICY_POWERSAVE; |
| 84 | #else |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 85 | static int aspm_policy; |
Matthew Garrett | ad71c96 | 2012-02-03 10:18:13 -0500 | [diff] [blame] | 86 | #endif |
| 87 | |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 88 | static const char *policy_str[] = { |
| 89 | [POLICY_DEFAULT] = "default", |
| 90 | [POLICY_PERFORMANCE] = "performance", |
| 91 | [POLICY_POWERSAVE] = "powersave" |
| 92 | }; |
| 93 | |
Andrew Patterson | 987a4c7 | 2009-01-05 16:21:04 -0700 | [diff] [blame] | 94 | #define LINK_RETRAIN_TIMEOUT HZ |
| 95 | |
Kenji Kaneshige | 5aa6358 | 2009-05-13 12:17:44 +0900 | [diff] [blame] | 96 | static int policy_to_aspm_state(struct pcie_link_state *link) |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 97 | { |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 98 | switch (aspm_policy) { |
| 99 | case POLICY_PERFORMANCE: |
| 100 | /* Disable ASPM and Clock PM */ |
| 101 | return 0; |
| 102 | case POLICY_POWERSAVE: |
| 103 | /* Enable ASPM L0s/L1 */ |
Kenji Kaneshige | ac18018 | 2009-08-19 11:02:13 +0900 | [diff] [blame] | 104 | return ASPM_STATE_ALL; |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 105 | case POLICY_DEFAULT: |
Kenji Kaneshige | 5aa6358 | 2009-05-13 12:17:44 +0900 | [diff] [blame] | 106 | return link->aspm_default; |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 107 | } |
| 108 | return 0; |
| 109 | } |
| 110 | |
Kenji Kaneshige | 5aa6358 | 2009-05-13 12:17:44 +0900 | [diff] [blame] | 111 | static int policy_to_clkpm_state(struct pcie_link_state *link) |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 112 | { |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 113 | switch (aspm_policy) { |
| 114 | case POLICY_PERFORMANCE: |
| 115 | /* Disable ASPM and Clock PM */ |
| 116 | return 0; |
| 117 | case POLICY_POWERSAVE: |
| 118 | /* Disable Clock PM */ |
| 119 | return 1; |
| 120 | case POLICY_DEFAULT: |
Kenji Kaneshige | 5aa6358 | 2009-05-13 12:17:44 +0900 | [diff] [blame] | 121 | return link->clkpm_default; |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 122 | } |
| 123 | return 0; |
| 124 | } |
| 125 | |
Kenji Kaneshige | 430842e | 2009-05-13 12:20:10 +0900 | [diff] [blame] | 126 | static void pcie_set_clkpm_nocheck(struct pcie_link_state *link, int enable) |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 127 | { |
Kenji Kaneshige | 5aa6358 | 2009-05-13 12:17:44 +0900 | [diff] [blame] | 128 | struct pci_dev *child; |
| 129 | struct pci_bus *linkbus = link->pdev->subordinate; |
Bjorn Helgaas | 0c0cbb6 | 2015-06-10 14:00:21 -0500 | [diff] [blame] | 130 | u32 val = enable ? PCI_EXP_LNKCTL_CLKREQ_EN : 0; |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 131 | |
Bjorn Helgaas | 0c0cbb6 | 2015-06-10 14:00:21 -0500 | [diff] [blame] | 132 | list_for_each_entry(child, &linkbus->devices, bus_list) |
| 133 | pcie_capability_clear_and_set_word(child, PCI_EXP_LNKCTL, |
| 134 | PCI_EXP_LNKCTL_CLKREQ_EN, |
| 135 | val); |
Kenji Kaneshige | 5aa6358 | 2009-05-13 12:17:44 +0900 | [diff] [blame] | 136 | link->clkpm_enabled = !!enable; |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 137 | } |
| 138 | |
Kenji Kaneshige | 430842e | 2009-05-13 12:20:10 +0900 | [diff] [blame] | 139 | static void pcie_set_clkpm(struct pcie_link_state *link, int enable) |
| 140 | { |
| 141 | /* Don't enable Clock PM if the link is not Clock PM capable */ |
| 142 | if (!link->clkpm_capable && enable) |
Matthew Garrett | 2f671e2 | 2010-12-06 14:00:56 -0500 | [diff] [blame] | 143 | enable = 0; |
Kenji Kaneshige | 430842e | 2009-05-13 12:20:10 +0900 | [diff] [blame] | 144 | /* Need nothing if the specified equals to current state */ |
| 145 | if (link->clkpm_enabled == enable) |
| 146 | return; |
| 147 | pcie_set_clkpm_nocheck(link, enable); |
| 148 | } |
| 149 | |
Kenji Kaneshige | 8d349ac | 2009-05-13 12:18:22 +0900 | [diff] [blame] | 150 | static void pcie_clkpm_cap_init(struct pcie_link_state *link, int blacklist) |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 151 | { |
Jiang Liu | f12eb72 | 2012-07-24 17:20:12 +0800 | [diff] [blame] | 152 | int capable = 1, enabled = 1; |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 153 | u32 reg32; |
| 154 | u16 reg16; |
Kenji Kaneshige | 5aa6358 | 2009-05-13 12:17:44 +0900 | [diff] [blame] | 155 | struct pci_dev *child; |
| 156 | struct pci_bus *linkbus = link->pdev->subordinate; |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 157 | |
| 158 | /* All functions should have the same cap and state, take the worst */ |
Kenji Kaneshige | 5aa6358 | 2009-05-13 12:17:44 +0900 | [diff] [blame] | 159 | list_for_each_entry(child, &linkbus->devices, bus_list) { |
Jiang Liu | f12eb72 | 2012-07-24 17:20:12 +0800 | [diff] [blame] | 160 | pcie_capability_read_dword(child, PCI_EXP_LNKCAP, ®32); |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 161 | if (!(reg32 & PCI_EXP_LNKCAP_CLKPM)) { |
| 162 | capable = 0; |
| 163 | enabled = 0; |
| 164 | break; |
| 165 | } |
Jiang Liu | f12eb72 | 2012-07-24 17:20:12 +0800 | [diff] [blame] | 166 | pcie_capability_read_word(child, PCI_EXP_LNKCTL, ®16); |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 167 | if (!(reg16 & PCI_EXP_LNKCTL_CLKREQ_EN)) |
| 168 | enabled = 0; |
| 169 | } |
Kenji Kaneshige | 5aa6358 | 2009-05-13 12:17:44 +0900 | [diff] [blame] | 170 | link->clkpm_enabled = enabled; |
| 171 | link->clkpm_default = enabled; |
Kenji Kaneshige | 8d349ac | 2009-05-13 12:18:22 +0900 | [diff] [blame] | 172 | link->clkpm_capable = (blacklist) ? 0 : capable; |
Shaohua Li | 46bbdfa | 2008-12-19 09:27:42 +0800 | [diff] [blame] | 173 | } |
| 174 | |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 175 | /* |
| 176 | * pcie_aspm_configure_common_clock: check if the 2 ends of a link |
| 177 | * could use common clock. If they are, configure them to use the |
| 178 | * common clock. That will reduce the ASPM state exit latency. |
| 179 | */ |
Kenji Kaneshige | 5aa6358 | 2009-05-13 12:17:44 +0900 | [diff] [blame] | 180 | static void pcie_aspm_configure_common_clock(struct pcie_link_state *link) |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 181 | { |
Jiang Liu | f12eb72 | 2012-07-24 17:20:12 +0800 | [diff] [blame] | 182 | int same_clock = 1; |
Kenji Kaneshige | 5aa6358 | 2009-05-13 12:17:44 +0900 | [diff] [blame] | 183 | u16 reg16, parent_reg, child_reg[8]; |
Thomas Renninger | 2a42d9d | 2008-12-09 13:05:09 +0100 | [diff] [blame] | 184 | unsigned long start_jiffies; |
Kenji Kaneshige | 5aa6358 | 2009-05-13 12:17:44 +0900 | [diff] [blame] | 185 | struct pci_dev *child, *parent = link->pdev; |
| 186 | struct pci_bus *linkbus = parent->subordinate; |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 187 | /* |
Kenji Kaneshige | 5aa6358 | 2009-05-13 12:17:44 +0900 | [diff] [blame] | 188 | * All functions of a slot should have the same Slot Clock |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 189 | * Configuration, so just check one function |
Kenji Kaneshige | 5aa6358 | 2009-05-13 12:17:44 +0900 | [diff] [blame] | 190 | */ |
| 191 | child = list_entry(linkbus->devices.next, struct pci_dev, bus_list); |
Kenji Kaneshige | 8b06477 | 2009-11-11 14:36:52 +0900 | [diff] [blame] | 192 | BUG_ON(!pci_is_pcie(child)); |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 193 | |
| 194 | /* Check downstream component if bit Slot Clock Configuration is 1 */ |
Jiang Liu | f12eb72 | 2012-07-24 17:20:12 +0800 | [diff] [blame] | 195 | pcie_capability_read_word(child, PCI_EXP_LNKSTA, ®16); |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 196 | if (!(reg16 & PCI_EXP_LNKSTA_SLC)) |
| 197 | same_clock = 0; |
| 198 | |
| 199 | /* Check upstream component if bit Slot Clock Configuration is 1 */ |
Jiang Liu | f12eb72 | 2012-07-24 17:20:12 +0800 | [diff] [blame] | 200 | pcie_capability_read_word(parent, PCI_EXP_LNKSTA, ®16); |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 201 | if (!(reg16 & PCI_EXP_LNKSTA_SLC)) |
| 202 | same_clock = 0; |
| 203 | |
| 204 | /* Configure downstream component, all functions */ |
Kenji Kaneshige | 5aa6358 | 2009-05-13 12:17:44 +0900 | [diff] [blame] | 205 | list_for_each_entry(child, &linkbus->devices, bus_list) { |
Jiang Liu | f12eb72 | 2012-07-24 17:20:12 +0800 | [diff] [blame] | 206 | pcie_capability_read_word(child, PCI_EXP_LNKCTL, ®16); |
Kenji Kaneshige | 5aa6358 | 2009-05-13 12:17:44 +0900 | [diff] [blame] | 207 | child_reg[PCI_FUNC(child->devfn)] = reg16; |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 208 | if (same_clock) |
| 209 | reg16 |= PCI_EXP_LNKCTL_CCC; |
| 210 | else |
| 211 | reg16 &= ~PCI_EXP_LNKCTL_CCC; |
Jiang Liu | f12eb72 | 2012-07-24 17:20:12 +0800 | [diff] [blame] | 212 | pcie_capability_write_word(child, PCI_EXP_LNKCTL, reg16); |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 213 | } |
| 214 | |
| 215 | /* Configure upstream component */ |
Jiang Liu | f12eb72 | 2012-07-24 17:20:12 +0800 | [diff] [blame] | 216 | pcie_capability_read_word(parent, PCI_EXP_LNKCTL, ®16); |
Thomas Renninger | 2a42d9d | 2008-12-09 13:05:09 +0100 | [diff] [blame] | 217 | parent_reg = reg16; |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 218 | if (same_clock) |
| 219 | reg16 |= PCI_EXP_LNKCTL_CCC; |
| 220 | else |
| 221 | reg16 &= ~PCI_EXP_LNKCTL_CCC; |
Jiang Liu | f12eb72 | 2012-07-24 17:20:12 +0800 | [diff] [blame] | 222 | pcie_capability_write_word(parent, PCI_EXP_LNKCTL, reg16); |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 223 | |
Kenji Kaneshige | 5aa6358 | 2009-05-13 12:17:44 +0900 | [diff] [blame] | 224 | /* Retrain link */ |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 225 | reg16 |= PCI_EXP_LNKCTL_RL; |
Jiang Liu | f12eb72 | 2012-07-24 17:20:12 +0800 | [diff] [blame] | 226 | pcie_capability_write_word(parent, PCI_EXP_LNKCTL, reg16); |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 227 | |
Kenji Kaneshige | 5aa6358 | 2009-05-13 12:17:44 +0900 | [diff] [blame] | 228 | /* Wait for link training end. Break out after waiting for timeout */ |
Thomas Renninger | 2a42d9d | 2008-12-09 13:05:09 +0100 | [diff] [blame] | 229 | start_jiffies = jiffies; |
Andrew Patterson | 987a4c7 | 2009-01-05 16:21:04 -0700 | [diff] [blame] | 230 | for (;;) { |
Jiang Liu | f12eb72 | 2012-07-24 17:20:12 +0800 | [diff] [blame] | 231 | pcie_capability_read_word(parent, PCI_EXP_LNKSTA, ®16); |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 232 | if (!(reg16 & PCI_EXP_LNKSTA_LT)) |
| 233 | break; |
Andrew Patterson | 987a4c7 | 2009-01-05 16:21:04 -0700 | [diff] [blame] | 234 | if (time_after(jiffies, start_jiffies + LINK_RETRAIN_TIMEOUT)) |
| 235 | break; |
| 236 | msleep(1); |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 237 | } |
Kenji Kaneshige | 5aa6358 | 2009-05-13 12:17:44 +0900 | [diff] [blame] | 238 | if (!(reg16 & PCI_EXP_LNKSTA_LT)) |
| 239 | return; |
| 240 | |
| 241 | /* Training failed. Restore common clock configurations */ |
Joe Perches | 438be3c | 2012-10-28 01:05:49 -0700 | [diff] [blame] | 242 | dev_err(&parent->dev, "ASPM: Could not configure common clock\n"); |
Jiang Liu | f12eb72 | 2012-07-24 17:20:12 +0800 | [diff] [blame] | 243 | list_for_each_entry(child, &linkbus->devices, bus_list) |
| 244 | pcie_capability_write_word(child, PCI_EXP_LNKCTL, |
| 245 | child_reg[PCI_FUNC(child->devfn)]); |
| 246 | pcie_capability_write_word(parent, PCI_EXP_LNKCTL, parent_reg); |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 247 | } |
| 248 | |
Kenji Kaneshige | 5e0eaa7 | 2009-05-13 12:21:48 +0900 | [diff] [blame] | 249 | /* Convert L0s latency encoding to ns */ |
| 250 | static u32 calc_l0s_latency(u32 encoding) |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 251 | { |
Kenji Kaneshige | 5e0eaa7 | 2009-05-13 12:21:48 +0900 | [diff] [blame] | 252 | if (encoding == 0x7) |
| 253 | return (5 * 1000); /* > 4us */ |
| 254 | return (64 << encoding); |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 255 | } |
| 256 | |
Kenji Kaneshige | 5e0eaa7 | 2009-05-13 12:21:48 +0900 | [diff] [blame] | 257 | /* Convert L0s acceptable latency encoding to ns */ |
| 258 | static u32 calc_l0s_acceptable(u32 encoding) |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 259 | { |
Kenji Kaneshige | 5e0eaa7 | 2009-05-13 12:21:48 +0900 | [diff] [blame] | 260 | if (encoding == 0x7) |
| 261 | return -1U; |
| 262 | return (64 << encoding); |
| 263 | } |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 264 | |
Kenji Kaneshige | 5e0eaa7 | 2009-05-13 12:21:48 +0900 | [diff] [blame] | 265 | /* Convert L1 latency encoding to ns */ |
| 266 | static u32 calc_l1_latency(u32 encoding) |
| 267 | { |
| 268 | if (encoding == 0x7) |
| 269 | return (65 * 1000); /* > 64us */ |
| 270 | return (1000 << encoding); |
| 271 | } |
| 272 | |
| 273 | /* Convert L1 acceptable latency encoding to ns */ |
| 274 | static u32 calc_l1_acceptable(u32 encoding) |
| 275 | { |
| 276 | if (encoding == 0x7) |
| 277 | return -1U; |
| 278 | return (1000 << encoding); |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 279 | } |
| 280 | |
Kenji Kaneshige | ac18018 | 2009-08-19 11:02:13 +0900 | [diff] [blame] | 281 | struct aspm_register_info { |
| 282 | u32 support:2; |
| 283 | u32 enabled:2; |
| 284 | u32 latency_encoding_l0s; |
| 285 | u32 latency_encoding_l1; |
| 286 | }; |
| 287 | |
| 288 | static void pcie_get_aspm_reg(struct pci_dev *pdev, |
| 289 | struct aspm_register_info *info) |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 290 | { |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 291 | u16 reg16; |
Kenji Kaneshige | ac18018 | 2009-08-19 11:02:13 +0900 | [diff] [blame] | 292 | u32 reg32; |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 293 | |
Jiang Liu | f12eb72 | 2012-07-24 17:20:12 +0800 | [diff] [blame] | 294 | pcie_capability_read_dword(pdev, PCI_EXP_LNKCAP, ®32); |
Kenji Kaneshige | ac18018 | 2009-08-19 11:02:13 +0900 | [diff] [blame] | 295 | info->support = (reg32 & PCI_EXP_LNKCAP_ASPMS) >> 10; |
Kenji Kaneshige | ac18018 | 2009-08-19 11:02:13 +0900 | [diff] [blame] | 296 | info->latency_encoding_l0s = (reg32 & PCI_EXP_LNKCAP_L0SEL) >> 12; |
| 297 | info->latency_encoding_l1 = (reg32 & PCI_EXP_LNKCAP_L1EL) >> 15; |
Jiang Liu | f12eb72 | 2012-07-24 17:20:12 +0800 | [diff] [blame] | 298 | pcie_capability_read_word(pdev, PCI_EXP_LNKCTL, ®16); |
Kenji Kaneshige | ac18018 | 2009-08-19 11:02:13 +0900 | [diff] [blame] | 299 | info->enabled = reg16 & PCI_EXP_LNKCTL_ASPMC; |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 300 | } |
| 301 | |
Kenji Kaneshige | 07d9276 | 2009-08-19 11:00:25 +0900 | [diff] [blame] | 302 | static void pcie_aspm_check_latency(struct pci_dev *endpoint) |
| 303 | { |
Kenji Kaneshige | ac18018 | 2009-08-19 11:02:13 +0900 | [diff] [blame] | 304 | u32 latency, l1_switch_latency = 0; |
Kenji Kaneshige | 07d9276 | 2009-08-19 11:00:25 +0900 | [diff] [blame] | 305 | struct aspm_latency *acceptable; |
| 306 | struct pcie_link_state *link; |
| 307 | |
| 308 | /* Device not in D0 doesn't need latency check */ |
| 309 | if ((endpoint->current_state != PCI_D0) && |
| 310 | (endpoint->current_state != PCI_UNKNOWN)) |
| 311 | return; |
| 312 | |
| 313 | link = endpoint->bus->self->link_state; |
| 314 | acceptable = &link->acceptable[PCI_FUNC(endpoint->devfn)]; |
| 315 | |
| 316 | while (link) { |
Kenji Kaneshige | ac18018 | 2009-08-19 11:02:13 +0900 | [diff] [blame] | 317 | /* Check upstream direction L0s latency */ |
| 318 | if ((link->aspm_capable & ASPM_STATE_L0S_UP) && |
| 319 | (link->latency_up.l0s > acceptable->l0s)) |
| 320 | link->aspm_capable &= ~ASPM_STATE_L0S_UP; |
| 321 | |
| 322 | /* Check downstream direction L0s latency */ |
| 323 | if ((link->aspm_capable & ASPM_STATE_L0S_DW) && |
| 324 | (link->latency_dw.l0s > acceptable->l0s)) |
| 325 | link->aspm_capable &= ~ASPM_STATE_L0S_DW; |
Kenji Kaneshige | 07d9276 | 2009-08-19 11:00:25 +0900 | [diff] [blame] | 326 | /* |
| 327 | * Check L1 latency. |
| 328 | * Every switch on the path to root complex need 1 |
| 329 | * more microsecond for L1. Spec doesn't mention L0s. |
| 330 | */ |
Kenji Kaneshige | ac18018 | 2009-08-19 11:02:13 +0900 | [diff] [blame] | 331 | latency = max_t(u32, link->latency_up.l1, link->latency_dw.l1); |
| 332 | if ((link->aspm_capable & ASPM_STATE_L1) && |
| 333 | (latency + l1_switch_latency > acceptable->l1)) |
| 334 | link->aspm_capable &= ~ASPM_STATE_L1; |
Kenji Kaneshige | 07d9276 | 2009-08-19 11:00:25 +0900 | [diff] [blame] | 335 | l1_switch_latency += 1000; |
| 336 | |
| 337 | link = link->parent; |
| 338 | } |
| 339 | } |
| 340 | |
Kenji Kaneshige | 8d349ac | 2009-05-13 12:18:22 +0900 | [diff] [blame] | 341 | static void pcie_aspm_cap_init(struct pcie_link_state *link, int blacklist) |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 342 | { |
Kenji Kaneshige | 5aa6358 | 2009-05-13 12:17:44 +0900 | [diff] [blame] | 343 | struct pci_dev *child, *parent = link->pdev; |
| 344 | struct pci_bus *linkbus = parent->subordinate; |
Kenji Kaneshige | ac18018 | 2009-08-19 11:02:13 +0900 | [diff] [blame] | 345 | struct aspm_register_info upreg, dwreg; |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 346 | |
Kenji Kaneshige | 8d349ac | 2009-05-13 12:18:22 +0900 | [diff] [blame] | 347 | if (blacklist) { |
Kenji Kaneshige | f1c0ca2 | 2009-08-19 10:59:52 +0900 | [diff] [blame] | 348 | /* Set enabled/disable so that we will disable ASPM later */ |
Kenji Kaneshige | ac18018 | 2009-08-19 11:02:13 +0900 | [diff] [blame] | 349 | link->aspm_enabled = ASPM_STATE_ALL; |
| 350 | link->aspm_disable = ASPM_STATE_ALL; |
Kenji Kaneshige | 8d349ac | 2009-05-13 12:18:22 +0900 | [diff] [blame] | 351 | return; |
| 352 | } |
| 353 | |
| 354 | /* Configure common clock before checking latencies */ |
| 355 | pcie_aspm_configure_common_clock(link); |
| 356 | |
Kenji Kaneshige | ac18018 | 2009-08-19 11:02:13 +0900 | [diff] [blame] | 357 | /* Get upstream/downstream components' register state */ |
| 358 | pcie_get_aspm_reg(parent, &upreg); |
Kenji Kaneshige | 5aa6358 | 2009-05-13 12:17:44 +0900 | [diff] [blame] | 359 | child = list_entry(linkbus->devices.next, struct pci_dev, bus_list); |
Kenji Kaneshige | ac18018 | 2009-08-19 11:02:13 +0900 | [diff] [blame] | 360 | pcie_get_aspm_reg(child, &dwreg); |
| 361 | |
| 362 | /* |
| 363 | * Setup L0s state |
| 364 | * |
| 365 | * Note that we must not enable L0s in either direction on a |
| 366 | * given link unless components on both sides of the link each |
| 367 | * support L0s. |
| 368 | */ |
| 369 | if (dwreg.support & upreg.support & PCIE_LINK_STATE_L0S) |
| 370 | link->aspm_support |= ASPM_STATE_L0S; |
| 371 | if (dwreg.enabled & PCIE_LINK_STATE_L0S) |
| 372 | link->aspm_enabled |= ASPM_STATE_L0S_UP; |
| 373 | if (upreg.enabled & PCIE_LINK_STATE_L0S) |
| 374 | link->aspm_enabled |= ASPM_STATE_L0S_DW; |
| 375 | link->latency_up.l0s = calc_l0s_latency(upreg.latency_encoding_l0s); |
| 376 | link->latency_dw.l0s = calc_l0s_latency(dwreg.latency_encoding_l0s); |
| 377 | |
| 378 | /* Setup L1 state */ |
| 379 | if (upreg.support & dwreg.support & PCIE_LINK_STATE_L1) |
| 380 | link->aspm_support |= ASPM_STATE_L1; |
| 381 | if (upreg.enabled & dwreg.enabled & PCIE_LINK_STATE_L1) |
| 382 | link->aspm_enabled |= ASPM_STATE_L1; |
| 383 | link->latency_up.l1 = calc_l1_latency(upreg.latency_encoding_l1); |
| 384 | link->latency_dw.l1 = calc_l1_latency(dwreg.latency_encoding_l1); |
Kenji Kaneshige | 80bfdbe | 2009-05-13 12:12:43 +0900 | [diff] [blame] | 385 | |
Kenji Kaneshige | b127bd5 | 2009-08-19 10:57:31 +0900 | [diff] [blame] | 386 | /* Save default state */ |
| 387 | link->aspm_default = link->aspm_enabled; |
Kenji Kaneshige | 07d9276 | 2009-08-19 11:00:25 +0900 | [diff] [blame] | 388 | |
| 389 | /* Setup initial capable state. Will be updated later */ |
| 390 | link->aspm_capable = link->aspm_support; |
Kenji Kaneshige | f1c0ca2 | 2009-08-19 10:59:52 +0900 | [diff] [blame] | 391 | /* |
| 392 | * If the downstream component has pci bridge function, don't |
| 393 | * do ASPM for now. |
| 394 | */ |
| 395 | list_for_each_entry(child, &linkbus->devices, bus_list) { |
Yijing Wang | 62f87c0 | 2012-07-24 17:20:03 +0800 | [diff] [blame] | 396 | if (pci_pcie_type(child) == PCI_EXP_TYPE_PCI_BRIDGE) { |
Kenji Kaneshige | ac18018 | 2009-08-19 11:02:13 +0900 | [diff] [blame] | 397 | link->aspm_disable = ASPM_STATE_ALL; |
Kenji Kaneshige | f1c0ca2 | 2009-08-19 10:59:52 +0900 | [diff] [blame] | 398 | break; |
| 399 | } |
| 400 | } |
Kenji Kaneshige | b127bd5 | 2009-08-19 10:57:31 +0900 | [diff] [blame] | 401 | |
Kenji Kaneshige | b7206cb | 2009-08-19 11:01:37 +0900 | [diff] [blame] | 402 | /* Get and check endpoint acceptable latencies */ |
Kenji Kaneshige | 5aa6358 | 2009-05-13 12:17:44 +0900 | [diff] [blame] | 403 | list_for_each_entry(child, &linkbus->devices, bus_list) { |
Kenji Kaneshige | 5e0eaa7 | 2009-05-13 12:21:48 +0900 | [diff] [blame] | 404 | u32 reg32, encoding; |
Kenji Kaneshige | b6c2e54 | 2009-05-13 12:14:58 +0900 | [diff] [blame] | 405 | struct aspm_latency *acceptable = |
Kenji Kaneshige | 5aa6358 | 2009-05-13 12:17:44 +0900 | [diff] [blame] | 406 | &link->acceptable[PCI_FUNC(child->devfn)]; |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 407 | |
Yijing Wang | 62f87c0 | 2012-07-24 17:20:03 +0800 | [diff] [blame] | 408 | if (pci_pcie_type(child) != PCI_EXP_TYPE_ENDPOINT && |
| 409 | pci_pcie_type(child) != PCI_EXP_TYPE_LEG_END) |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 410 | continue; |
| 411 | |
Jiang Liu | f12eb72 | 2012-07-24 17:20:12 +0800 | [diff] [blame] | 412 | pcie_capability_read_dword(child, PCI_EXP_DEVCAP, ®32); |
Kenji Kaneshige | 07d9276 | 2009-08-19 11:00:25 +0900 | [diff] [blame] | 413 | /* Calculate endpoint L0s acceptable latency */ |
Kenji Kaneshige | 5e0eaa7 | 2009-05-13 12:21:48 +0900 | [diff] [blame] | 414 | encoding = (reg32 & PCI_EXP_DEVCAP_L0S) >> 6; |
| 415 | acceptable->l0s = calc_l0s_acceptable(encoding); |
Kenji Kaneshige | 07d9276 | 2009-08-19 11:00:25 +0900 | [diff] [blame] | 416 | /* Calculate endpoint L1 acceptable latency */ |
| 417 | encoding = (reg32 & PCI_EXP_DEVCAP_L1) >> 9; |
| 418 | acceptable->l1 = calc_l1_acceptable(encoding); |
| 419 | |
| 420 | pcie_aspm_check_latency(child); |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 421 | } |
| 422 | } |
| 423 | |
Kenji Kaneshige | ac18018 | 2009-08-19 11:02:13 +0900 | [diff] [blame] | 424 | static void pcie_config_aspm_dev(struct pci_dev *pdev, u32 val) |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 425 | { |
Bjorn Helgaas | 7508320 | 2012-12-05 13:51:19 -0700 | [diff] [blame] | 426 | pcie_capability_clear_and_set_word(pdev, PCI_EXP_LNKCTL, |
| 427 | PCI_EXP_LNKCTL_ASPMC, val); |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 428 | } |
| 429 | |
Kenji Kaneshige | b7206cb | 2009-08-19 11:01:37 +0900 | [diff] [blame] | 430 | static void pcie_config_aspm_link(struct pcie_link_state *link, u32 state) |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 431 | { |
Kenji Kaneshige | ac18018 | 2009-08-19 11:02:13 +0900 | [diff] [blame] | 432 | u32 upstream = 0, dwstream = 0; |
Kenji Kaneshige | 5aa6358 | 2009-05-13 12:17:44 +0900 | [diff] [blame] | 433 | struct pci_dev *child, *parent = link->pdev; |
| 434 | struct pci_bus *linkbus = parent->subordinate; |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 435 | |
Kenji Kaneshige | f1c0ca2 | 2009-08-19 10:59:52 +0900 | [diff] [blame] | 436 | /* Nothing to do if the link is already in the requested state */ |
Kenji Kaneshige | b7206cb | 2009-08-19 11:01:37 +0900 | [diff] [blame] | 437 | state &= (link->aspm_capable & ~link->aspm_disable); |
Kenji Kaneshige | f1c0ca2 | 2009-08-19 10:59:52 +0900 | [diff] [blame] | 438 | if (link->aspm_enabled == state) |
| 439 | return; |
Kenji Kaneshige | ac18018 | 2009-08-19 11:02:13 +0900 | [diff] [blame] | 440 | /* Convert ASPM state to upstream/downstream ASPM register state */ |
| 441 | if (state & ASPM_STATE_L0S_UP) |
Bjorn Helgaas | 7508320 | 2012-12-05 13:51:19 -0700 | [diff] [blame] | 442 | dwstream |= PCI_EXP_LNKCTL_ASPM_L0S; |
Kenji Kaneshige | ac18018 | 2009-08-19 11:02:13 +0900 | [diff] [blame] | 443 | if (state & ASPM_STATE_L0S_DW) |
Bjorn Helgaas | 7508320 | 2012-12-05 13:51:19 -0700 | [diff] [blame] | 444 | upstream |= PCI_EXP_LNKCTL_ASPM_L0S; |
Kenji Kaneshige | ac18018 | 2009-08-19 11:02:13 +0900 | [diff] [blame] | 445 | if (state & ASPM_STATE_L1) { |
Bjorn Helgaas | 7508320 | 2012-12-05 13:51:19 -0700 | [diff] [blame] | 446 | upstream |= PCI_EXP_LNKCTL_ASPM_L1; |
| 447 | dwstream |= PCI_EXP_LNKCTL_ASPM_L1; |
Kenji Kaneshige | ac18018 | 2009-08-19 11:02:13 +0900 | [diff] [blame] | 448 | } |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 449 | /* |
Kenji Kaneshige | 5aa6358 | 2009-05-13 12:17:44 +0900 | [diff] [blame] | 450 | * Spec 2.0 suggests all functions should be configured the |
| 451 | * same setting for ASPM. Enabling ASPM L1 should be done in |
| 452 | * upstream component first and then downstream, and vice |
| 453 | * versa for disabling ASPM L1. Spec doesn't mention L0S. |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 454 | */ |
Kenji Kaneshige | ac18018 | 2009-08-19 11:02:13 +0900 | [diff] [blame] | 455 | if (state & ASPM_STATE_L1) |
| 456 | pcie_config_aspm_dev(parent, upstream); |
Kenji Kaneshige | 5aa6358 | 2009-05-13 12:17:44 +0900 | [diff] [blame] | 457 | list_for_each_entry(child, &linkbus->devices, bus_list) |
Kenji Kaneshige | ac18018 | 2009-08-19 11:02:13 +0900 | [diff] [blame] | 458 | pcie_config_aspm_dev(child, dwstream); |
| 459 | if (!(state & ASPM_STATE_L1)) |
| 460 | pcie_config_aspm_dev(parent, upstream); |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 461 | |
Kenji Kaneshige | 5aa6358 | 2009-05-13 12:17:44 +0900 | [diff] [blame] | 462 | link->aspm_enabled = state; |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 463 | } |
| 464 | |
Kenji Kaneshige | b7206cb | 2009-08-19 11:01:37 +0900 | [diff] [blame] | 465 | static void pcie_config_aspm_path(struct pcie_link_state *link) |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 466 | { |
Kenji Kaneshige | b7206cb | 2009-08-19 11:01:37 +0900 | [diff] [blame] | 467 | while (link) { |
| 468 | pcie_config_aspm_link(link, policy_to_aspm_state(link)); |
| 469 | link = link->parent; |
Shaohua Li | 46bbdfa | 2008-12-19 09:27:42 +0800 | [diff] [blame] | 470 | } |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 471 | } |
| 472 | |
Kenji Kaneshige | 5aa6358 | 2009-05-13 12:17:44 +0900 | [diff] [blame] | 473 | static void free_link_state(struct pcie_link_state *link) |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 474 | { |
Kenji Kaneshige | 5aa6358 | 2009-05-13 12:17:44 +0900 | [diff] [blame] | 475 | link->pdev->link_state = NULL; |
| 476 | kfree(link); |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 477 | } |
| 478 | |
Shaohua Li | ddc9753 | 2008-05-21 16:58:40 +0800 | [diff] [blame] | 479 | static int pcie_aspm_sanity_check(struct pci_dev *pdev) |
| 480 | { |
Kenji Kaneshige | 3647584 | 2009-05-13 12:23:09 +0900 | [diff] [blame] | 481 | struct pci_dev *child; |
Shaohua Li | 149e163 | 2008-07-23 10:32:31 +0800 | [diff] [blame] | 482 | u32 reg32; |
Matthew Garrett | 2f671e2 | 2010-12-06 14:00:56 -0500 | [diff] [blame] | 483 | |
Shaohua Li | ddc9753 | 2008-05-21 16:58:40 +0800 | [diff] [blame] | 484 | /* |
Stefan Assmann | 45e829e | 2009-12-03 06:49:24 -0500 | [diff] [blame] | 485 | * Some functions in a slot might not all be PCIe functions, |
Kenji Kaneshige | 3647584 | 2009-05-13 12:23:09 +0900 | [diff] [blame] | 486 | * very strange. Disable ASPM for the whole slot |
Shaohua Li | ddc9753 | 2008-05-21 16:58:40 +0800 | [diff] [blame] | 487 | */ |
Kenji Kaneshige | 3647584 | 2009-05-13 12:23:09 +0900 | [diff] [blame] | 488 | list_for_each_entry(child, &pdev->subordinate->devices, bus_list) { |
Jiang Liu | f12eb72 | 2012-07-24 17:20:12 +0800 | [diff] [blame] | 489 | if (!pci_is_pcie(child)) |
Shaohua Li | ddc9753 | 2008-05-21 16:58:40 +0800 | [diff] [blame] | 490 | return -EINVAL; |
Matthew Garrett | c9651e7 | 2012-03-27 10:17:41 -0400 | [diff] [blame] | 491 | |
| 492 | /* |
| 493 | * If ASPM is disabled then we're not going to change |
| 494 | * the BIOS state. It's safe to continue even if it's a |
| 495 | * pre-1.1 device |
| 496 | */ |
| 497 | |
| 498 | if (aspm_disabled) |
| 499 | continue; |
| 500 | |
Shaohua Li | 149e163 | 2008-07-23 10:32:31 +0800 | [diff] [blame] | 501 | /* |
| 502 | * Disable ASPM for pre-1.1 PCIe device, we follow MS to use |
| 503 | * RBER bit to determine if a function is 1.1 version device |
| 504 | */ |
Jiang Liu | f12eb72 | 2012-07-24 17:20:12 +0800 | [diff] [blame] | 505 | pcie_capability_read_dword(child, PCI_EXP_DEVCAP, ®32); |
Sitsofe Wheeler | e1f4f59 | 2008-09-16 14:27:13 +0100 | [diff] [blame] | 506 | if (!(reg32 & PCI_EXP_DEVCAP_RBER) && !aspm_force) { |
Joe Perches | 438be3c | 2012-10-28 01:05:49 -0700 | [diff] [blame] | 507 | dev_info(&child->dev, "disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'\n"); |
Shaohua Li | 149e163 | 2008-07-23 10:32:31 +0800 | [diff] [blame] | 508 | return -EINVAL; |
| 509 | } |
Shaohua Li | ddc9753 | 2008-05-21 16:58:40 +0800 | [diff] [blame] | 510 | } |
| 511 | return 0; |
| 512 | } |
| 513 | |
Kenji Kaneshige | b7206cb | 2009-08-19 11:01:37 +0900 | [diff] [blame] | 514 | static struct pcie_link_state *alloc_pcie_link_state(struct pci_dev *pdev) |
Kenji Kaneshige | 8d349ac | 2009-05-13 12:18:22 +0900 | [diff] [blame] | 515 | { |
| 516 | struct pcie_link_state *link; |
Kenji Kaneshige | 8d349ac | 2009-05-13 12:18:22 +0900 | [diff] [blame] | 517 | |
| 518 | link = kzalloc(sizeof(*link), GFP_KERNEL); |
| 519 | if (!link) |
| 520 | return NULL; |
| 521 | INIT_LIST_HEAD(&link->sibling); |
| 522 | INIT_LIST_HEAD(&link->children); |
| 523 | INIT_LIST_HEAD(&link->link); |
| 524 | link->pdev = pdev; |
Yijing Wang | c8fc933 | 2015-05-21 15:05:03 +0800 | [diff] [blame] | 525 | if (pci_pcie_type(pdev) != PCI_EXP_TYPE_ROOT_PORT) { |
Kenji Kaneshige | 8d349ac | 2009-05-13 12:18:22 +0900 | [diff] [blame] | 526 | struct pcie_link_state *parent; |
| 527 | parent = pdev->bus->parent->self->link_state; |
| 528 | if (!parent) { |
| 529 | kfree(link); |
| 530 | return NULL; |
| 531 | } |
| 532 | link->parent = parent; |
| 533 | list_add(&link->link, &parent->children); |
| 534 | } |
Kenji Kaneshige | 5c92ffb | 2009-05-13 12:23:57 +0900 | [diff] [blame] | 535 | /* Setup a pointer to the root port link */ |
| 536 | if (!link->parent) |
| 537 | link->root = link; |
| 538 | else |
| 539 | link->root = link->parent->root; |
| 540 | |
Kenji Kaneshige | 8d349ac | 2009-05-13 12:18:22 +0900 | [diff] [blame] | 541 | list_add(&link->sibling, &link_list); |
Kenji Kaneshige | 8d349ac | 2009-05-13 12:18:22 +0900 | [diff] [blame] | 542 | pdev->link_state = link; |
Kenji Kaneshige | 8d349ac | 2009-05-13 12:18:22 +0900 | [diff] [blame] | 543 | return link; |
| 544 | } |
| 545 | |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 546 | /* |
| 547 | * pcie_aspm_init_link_state: Initiate PCI express link state. |
Bjorn Helgaas | f762598 | 2013-11-14 11:28:18 -0700 | [diff] [blame] | 548 | * It is called after the pcie and its children devices are scanned. |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 549 | * @pdev: the root port or switch downstream port |
| 550 | */ |
| 551 | void pcie_aspm_init_link_state(struct pci_dev *pdev) |
| 552 | { |
Kenji Kaneshige | 8d349ac | 2009-05-13 12:18:22 +0900 | [diff] [blame] | 553 | struct pcie_link_state *link; |
Kenji Kaneshige | b7206cb | 2009-08-19 11:01:37 +0900 | [diff] [blame] | 554 | int blacklist = !!pcie_aspm_sanity_check(pdev); |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 555 | |
Joe Lawrence | a26d5ec | 2013-01-15 15:31:28 -0500 | [diff] [blame] | 556 | if (!aspm_support_enabled) |
| 557 | return; |
| 558 | |
Yijing Wang | c8fc933 | 2015-05-21 15:05:03 +0800 | [diff] [blame] | 559 | if (pdev->link_state) |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 560 | return; |
Yijing Wang | c8fc933 | 2015-05-21 15:05:03 +0800 | [diff] [blame] | 561 | |
| 562 | /* |
| 563 | * We allocate pcie_link_state for the component on the upstream |
| 564 | * end of a Link, so there's nothing to do unless this device has a |
| 565 | * Link on its secondary side. |
| 566 | */ |
| 567 | if (!pdev->has_secondary_link) |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 568 | return; |
Kenji Kaneshige | 8d349ac | 2009-05-13 12:18:22 +0900 | [diff] [blame] | 569 | |
Shaohua Li | 8e822df | 2009-06-08 09:27:25 +0800 | [diff] [blame] | 570 | /* VIA has a strange chipset, root port is under a bridge */ |
Yijing Wang | 62f87c0 | 2012-07-24 17:20:03 +0800 | [diff] [blame] | 571 | if (pci_pcie_type(pdev) == PCI_EXP_TYPE_ROOT_PORT && |
Kenji Kaneshige | 8d349ac | 2009-05-13 12:18:22 +0900 | [diff] [blame] | 572 | pdev->bus->self) |
Shaohua Li | 8e822df | 2009-06-08 09:27:25 +0800 | [diff] [blame] | 573 | return; |
Kenji Kaneshige | 8d349ac | 2009-05-13 12:18:22 +0900 | [diff] [blame] | 574 | |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 575 | down_read(&pci_bus_sem); |
| 576 | if (list_empty(&pdev->subordinate->devices)) |
| 577 | goto out; |
| 578 | |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 579 | mutex_lock(&aspm_lock); |
Kenji Kaneshige | b7206cb | 2009-08-19 11:01:37 +0900 | [diff] [blame] | 580 | link = alloc_pcie_link_state(pdev); |
Kenji Kaneshige | 8d349ac | 2009-05-13 12:18:22 +0900 | [diff] [blame] | 581 | if (!link) |
| 582 | goto unlock; |
| 583 | /* |
Kenji Kaneshige | b7206cb | 2009-08-19 11:01:37 +0900 | [diff] [blame] | 584 | * Setup initial ASPM state. Note that we need to configure |
| 585 | * upstream links also because capable state of them can be |
| 586 | * update through pcie_aspm_cap_init(). |
Kenji Kaneshige | 8d349ac | 2009-05-13 12:18:22 +0900 | [diff] [blame] | 587 | */ |
Kenji Kaneshige | b7206cb | 2009-08-19 11:01:37 +0900 | [diff] [blame] | 588 | pcie_aspm_cap_init(link, blacklist); |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 589 | |
Kenji Kaneshige | 8d349ac | 2009-05-13 12:18:22 +0900 | [diff] [blame] | 590 | /* Setup initial Clock PM state */ |
Kenji Kaneshige | b7206cb | 2009-08-19 11:01:37 +0900 | [diff] [blame] | 591 | pcie_clkpm_cap_init(link, blacklist); |
Matthew Garrett | 41cd766 | 2010-06-09 16:05:07 -0400 | [diff] [blame] | 592 | |
| 593 | /* |
| 594 | * At this stage drivers haven't had an opportunity to change the |
| 595 | * link policy setting. Enabling ASPM on broken hardware can cripple |
| 596 | * it even before the driver has had a chance to disable ASPM, so |
| 597 | * default to a safe level right now. If we're enabling ASPM beyond |
| 598 | * the BIOS's expectation, we'll do so once pci_enable_device() is |
| 599 | * called. |
| 600 | */ |
Matthew Garrett | 3c07635 | 2011-11-10 16:38:33 -0500 | [diff] [blame] | 601 | if (aspm_policy != POLICY_POWERSAVE) { |
Matthew Garrett | 41cd766 | 2010-06-09 16:05:07 -0400 | [diff] [blame] | 602 | pcie_config_aspm_path(link); |
| 603 | pcie_set_clkpm(link, policy_to_clkpm_state(link)); |
| 604 | } |
| 605 | |
Kenji Kaneshige | 8d349ac | 2009-05-13 12:18:22 +0900 | [diff] [blame] | 606 | unlock: |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 607 | mutex_unlock(&aspm_lock); |
| 608 | out: |
| 609 | up_read(&pci_bus_sem); |
| 610 | } |
| 611 | |
Kenji Kaneshige | 07d9276 | 2009-08-19 11:00:25 +0900 | [diff] [blame] | 612 | /* Recheck latencies and update aspm_capable for links under the root */ |
| 613 | static void pcie_update_aspm_capable(struct pcie_link_state *root) |
| 614 | { |
| 615 | struct pcie_link_state *link; |
| 616 | BUG_ON(root->parent); |
| 617 | list_for_each_entry(link, &link_list, sibling) { |
| 618 | if (link->root != root) |
| 619 | continue; |
| 620 | link->aspm_capable = link->aspm_support; |
| 621 | } |
| 622 | list_for_each_entry(link, &link_list, sibling) { |
| 623 | struct pci_dev *child; |
| 624 | struct pci_bus *linkbus = link->pdev->subordinate; |
| 625 | if (link->root != root) |
| 626 | continue; |
| 627 | list_for_each_entry(child, &linkbus->devices, bus_list) { |
Yijing Wang | 62f87c0 | 2012-07-24 17:20:03 +0800 | [diff] [blame] | 628 | if ((pci_pcie_type(child) != PCI_EXP_TYPE_ENDPOINT) && |
| 629 | (pci_pcie_type(child) != PCI_EXP_TYPE_LEG_END)) |
Kenji Kaneshige | 07d9276 | 2009-08-19 11:00:25 +0900 | [diff] [blame] | 630 | continue; |
| 631 | pcie_aspm_check_latency(child); |
| 632 | } |
| 633 | } |
| 634 | } |
| 635 | |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 636 | /* @pdev: the endpoint device */ |
| 637 | void pcie_aspm_exit_link_state(struct pci_dev *pdev) |
| 638 | { |
| 639 | struct pci_dev *parent = pdev->bus->self; |
Kenji Kaneshige | b7206cb | 2009-08-19 11:01:37 +0900 | [diff] [blame] | 640 | struct pcie_link_state *link, *root, *parent_link; |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 641 | |
Myron Stowe | 84fb913 | 2013-01-31 16:29:25 -0700 | [diff] [blame] | 642 | if (!parent || !parent->link_state) |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 643 | return; |
Kenji Kaneshige | fc87e91 | 2009-08-19 10:58:46 +0900 | [diff] [blame] | 644 | |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 645 | down_read(&pci_bus_sem); |
| 646 | mutex_lock(&aspm_lock); |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 647 | /* |
| 648 | * All PCIe functions are in one slot, remove one function will remove |
Alex Chiang | 3419c75 | 2009-01-28 14:59:18 -0700 | [diff] [blame] | 649 | * the whole slot, so just wait until we are the last function left. |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 650 | */ |
Alex Chiang | 3419c75 | 2009-01-28 14:59:18 -0700 | [diff] [blame] | 651 | if (!list_is_last(&pdev->bus_list, &parent->subordinate->devices)) |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 652 | goto out; |
| 653 | |
Kenji Kaneshige | fc87e91 | 2009-08-19 10:58:46 +0900 | [diff] [blame] | 654 | link = parent->link_state; |
Kenji Kaneshige | 07d9276 | 2009-08-19 11:00:25 +0900 | [diff] [blame] | 655 | root = link->root; |
Kenji Kaneshige | b7206cb | 2009-08-19 11:01:37 +0900 | [diff] [blame] | 656 | parent_link = link->parent; |
Kenji Kaneshige | fc87e91 | 2009-08-19 10:58:46 +0900 | [diff] [blame] | 657 | |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 658 | /* All functions are removed, so just disable ASPM for the link */ |
Kenji Kaneshige | b7206cb | 2009-08-19 11:01:37 +0900 | [diff] [blame] | 659 | pcie_config_aspm_link(link, 0); |
Kenji Kaneshige | fc87e91 | 2009-08-19 10:58:46 +0900 | [diff] [blame] | 660 | list_del(&link->sibling); |
| 661 | list_del(&link->link); |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 662 | /* Clock PM is for endpoint device */ |
Kenji Kaneshige | fc87e91 | 2009-08-19 10:58:46 +0900 | [diff] [blame] | 663 | free_link_state(link); |
Kenji Kaneshige | 07d9276 | 2009-08-19 11:00:25 +0900 | [diff] [blame] | 664 | |
| 665 | /* Recheck latencies and configure upstream links */ |
Kenji Kaneshige | b26a34a | 2009-11-06 11:25:13 +0900 | [diff] [blame] | 666 | if (parent_link) { |
| 667 | pcie_update_aspm_capable(root); |
| 668 | pcie_config_aspm_path(parent_link); |
| 669 | } |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 670 | out: |
| 671 | mutex_unlock(&aspm_lock); |
| 672 | up_read(&pci_bus_sem); |
| 673 | } |
| 674 | |
| 675 | /* @pdev: the root port or switch downstream port */ |
| 676 | void pcie_aspm_pm_state_change(struct pci_dev *pdev) |
| 677 | { |
Kenji Kaneshige | 07d9276 | 2009-08-19 11:00:25 +0900 | [diff] [blame] | 678 | struct pcie_link_state *link = pdev->link_state; |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 679 | |
Yijing Wang | f9b8cd7 | 2015-05-19 11:41:34 +0800 | [diff] [blame] | 680 | if (aspm_disabled || !link) |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 681 | return; |
| 682 | /* |
Kenji Kaneshige | 07d9276 | 2009-08-19 11:00:25 +0900 | [diff] [blame] | 683 | * Devices changed PM state, we should recheck if latency |
| 684 | * meets all functions' requirement |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 685 | */ |
Kenji Kaneshige | 07d9276 | 2009-08-19 11:00:25 +0900 | [diff] [blame] | 686 | down_read(&pci_bus_sem); |
| 687 | mutex_lock(&aspm_lock); |
| 688 | pcie_update_aspm_capable(link->root); |
Kenji Kaneshige | b7206cb | 2009-08-19 11:01:37 +0900 | [diff] [blame] | 689 | pcie_config_aspm_path(link); |
Kenji Kaneshige | 07d9276 | 2009-08-19 11:00:25 +0900 | [diff] [blame] | 690 | mutex_unlock(&aspm_lock); |
| 691 | up_read(&pci_bus_sem); |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 692 | } |
| 693 | |
Naga Chumbalkar | 1a680b7 | 2011-03-21 03:29:08 +0000 | [diff] [blame] | 694 | void pcie_aspm_powersave_config_link(struct pci_dev *pdev) |
| 695 | { |
| 696 | struct pcie_link_state *link = pdev->link_state; |
| 697 | |
Yijing Wang | f9b8cd7 | 2015-05-19 11:41:34 +0800 | [diff] [blame] | 698 | if (aspm_disabled || !link) |
Naga Chumbalkar | 1a680b7 | 2011-03-21 03:29:08 +0000 | [diff] [blame] | 699 | return; |
| 700 | |
| 701 | if (aspm_policy != POLICY_POWERSAVE) |
| 702 | return; |
| 703 | |
Naga Chumbalkar | 1a680b7 | 2011-03-21 03:29:08 +0000 | [diff] [blame] | 704 | down_read(&pci_bus_sem); |
| 705 | mutex_lock(&aspm_lock); |
| 706 | pcie_config_aspm_path(link); |
| 707 | pcie_set_clkpm(link, policy_to_clkpm_state(link)); |
| 708 | mutex_unlock(&aspm_lock); |
| 709 | up_read(&pci_bus_sem); |
| 710 | } |
| 711 | |
Bjorn Helgaas | e127a04 | 2015-05-20 12:13:05 -0500 | [diff] [blame] | 712 | static void __pci_disable_link_state(struct pci_dev *pdev, int state, bool sem) |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 713 | { |
| 714 | struct pci_dev *parent = pdev->bus->self; |
Kenji Kaneshige | f1c0ca2 | 2009-08-19 10:59:52 +0900 | [diff] [blame] | 715 | struct pcie_link_state *link; |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 716 | |
Matthew Garrett | 3c07635 | 2011-11-10 16:38:33 -0500 | [diff] [blame] | 717 | if (!pci_is_pcie(pdev)) |
| 718 | return; |
| 719 | |
Yijing Wang | c8fc933 | 2015-05-21 15:05:03 +0800 | [diff] [blame] | 720 | if (pdev->has_secondary_link) |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 721 | parent = pdev; |
| 722 | if (!parent || !parent->link_state) |
| 723 | return; |
| 724 | |
Bjorn Helgaas | 2add0ec | 2013-05-21 10:56:51 -0600 | [diff] [blame] | 725 | /* |
| 726 | * A driver requested that ASPM be disabled on this device, but |
| 727 | * if we don't have permission to manage ASPM (e.g., on ACPI |
| 728 | * systems we have to observe the FADT ACPI_FADT_NO_ASPM bit and |
| 729 | * the _OSC method), we can't honor that request. Windows has |
| 730 | * a similar mechanism using "PciASPMOptOut", which is also |
| 731 | * ignored in this situation. |
| 732 | */ |
Bjorn Helgaas | e127a04 | 2015-05-20 12:13:05 -0500 | [diff] [blame] | 733 | if (aspm_disabled) { |
Bjorn Helgaas | 2add0ec | 2013-05-21 10:56:51 -0600 | [diff] [blame] | 734 | dev_warn(&pdev->dev, "can't disable ASPM; OS doesn't have ASPM control\n"); |
| 735 | return; |
| 736 | } |
| 737 | |
Yinghai Lu | 9f728f5 | 2011-05-12 17:11:47 -0700 | [diff] [blame] | 738 | if (sem) |
| 739 | down_read(&pci_bus_sem); |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 740 | mutex_lock(&aspm_lock); |
Kenji Kaneshige | f1c0ca2 | 2009-08-19 10:59:52 +0900 | [diff] [blame] | 741 | link = parent->link_state; |
Kenji Kaneshige | ac18018 | 2009-08-19 11:02:13 +0900 | [diff] [blame] | 742 | if (state & PCIE_LINK_STATE_L0S) |
| 743 | link->aspm_disable |= ASPM_STATE_L0S; |
| 744 | if (state & PCIE_LINK_STATE_L1) |
| 745 | link->aspm_disable |= ASPM_STATE_L1; |
Kenji Kaneshige | b7206cb | 2009-08-19 11:01:37 +0900 | [diff] [blame] | 746 | pcie_config_aspm_link(link, policy_to_aspm_state(link)); |
| 747 | |
Kenji Kaneshige | 430842e | 2009-05-13 12:20:10 +0900 | [diff] [blame] | 748 | if (state & PCIE_LINK_STATE_CLKPM) { |
Kenji Kaneshige | f1c0ca2 | 2009-08-19 10:59:52 +0900 | [diff] [blame] | 749 | link->clkpm_capable = 0; |
| 750 | pcie_set_clkpm(link, 0); |
Kenji Kaneshige | 430842e | 2009-05-13 12:20:10 +0900 | [diff] [blame] | 751 | } |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 752 | mutex_unlock(&aspm_lock); |
Yinghai Lu | 9f728f5 | 2011-05-12 17:11:47 -0700 | [diff] [blame] | 753 | if (sem) |
| 754 | up_read(&pci_bus_sem); |
| 755 | } |
| 756 | |
| 757 | void pci_disable_link_state_locked(struct pci_dev *pdev, int state) |
| 758 | { |
Bjorn Helgaas | e127a04 | 2015-05-20 12:13:05 -0500 | [diff] [blame] | 759 | __pci_disable_link_state(pdev, state, false); |
Yinghai Lu | 9f728f5 | 2011-05-12 17:11:47 -0700 | [diff] [blame] | 760 | } |
| 761 | EXPORT_SYMBOL(pci_disable_link_state_locked); |
| 762 | |
Yijing Wang | 2dfca87 | 2013-05-28 16:03:22 +0800 | [diff] [blame] | 763 | /** |
| 764 | * pci_disable_link_state - Disable device's link state, so the link will |
| 765 | * never enter specific states. Note that if the BIOS didn't grant ASPM |
| 766 | * control to the OS, this does nothing because we can't touch the LNKCTL |
| 767 | * register. |
| 768 | * |
| 769 | * @pdev: PCI device |
| 770 | * @state: ASPM link state to disable |
| 771 | */ |
Yinghai Lu | 9f728f5 | 2011-05-12 17:11:47 -0700 | [diff] [blame] | 772 | void pci_disable_link_state(struct pci_dev *pdev, int state) |
| 773 | { |
Bjorn Helgaas | e127a04 | 2015-05-20 12:13:05 -0500 | [diff] [blame] | 774 | __pci_disable_link_state(pdev, state, true); |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 775 | } |
| 776 | EXPORT_SYMBOL(pci_disable_link_state); |
| 777 | |
| 778 | static int pcie_aspm_set_policy(const char *val, struct kernel_param *kp) |
| 779 | { |
| 780 | int i; |
Kenji Kaneshige | b7206cb | 2009-08-19 11:01:37 +0900 | [diff] [blame] | 781 | struct pcie_link_state *link; |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 782 | |
Naga Chumbalkar | bbfa306 | 2011-03-21 03:29:14 +0000 | [diff] [blame] | 783 | if (aspm_disabled) |
| 784 | return -EPERM; |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 785 | for (i = 0; i < ARRAY_SIZE(policy_str); i++) |
| 786 | if (!strncmp(val, policy_str[i], strlen(policy_str[i]))) |
| 787 | break; |
| 788 | if (i >= ARRAY_SIZE(policy_str)) |
| 789 | return -EINVAL; |
| 790 | if (i == aspm_policy) |
| 791 | return 0; |
| 792 | |
| 793 | down_read(&pci_bus_sem); |
| 794 | mutex_lock(&aspm_lock); |
| 795 | aspm_policy = i; |
Kenji Kaneshige | b7206cb | 2009-08-19 11:01:37 +0900 | [diff] [blame] | 796 | list_for_each_entry(link, &link_list, sibling) { |
| 797 | pcie_config_aspm_link(link, policy_to_aspm_state(link)); |
| 798 | pcie_set_clkpm(link, policy_to_clkpm_state(link)); |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 799 | } |
| 800 | mutex_unlock(&aspm_lock); |
| 801 | up_read(&pci_bus_sem); |
| 802 | return 0; |
| 803 | } |
| 804 | |
| 805 | static int pcie_aspm_get_policy(char *buffer, struct kernel_param *kp) |
| 806 | { |
| 807 | int i, cnt = 0; |
| 808 | for (i = 0; i < ARRAY_SIZE(policy_str); i++) |
| 809 | if (i == aspm_policy) |
| 810 | cnt += sprintf(buffer + cnt, "[%s] ", policy_str[i]); |
| 811 | else |
| 812 | cnt += sprintf(buffer + cnt, "%s ", policy_str[i]); |
| 813 | return cnt; |
| 814 | } |
| 815 | |
| 816 | module_param_call(policy, pcie_aspm_set_policy, pcie_aspm_get_policy, |
| 817 | NULL, 0644); |
| 818 | |
| 819 | #ifdef CONFIG_PCIEASPM_DEBUG |
| 820 | static ssize_t link_state_show(struct device *dev, |
| 821 | struct device_attribute *attr, |
| 822 | char *buf) |
| 823 | { |
| 824 | struct pci_dev *pci_device = to_pci_dev(dev); |
| 825 | struct pcie_link_state *link_state = pci_device->link_state; |
| 826 | |
Kenji Kaneshige | 80bfdbe | 2009-05-13 12:12:43 +0900 | [diff] [blame] | 827 | return sprintf(buf, "%d\n", link_state->aspm_enabled); |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 828 | } |
| 829 | |
| 830 | static ssize_t link_state_store(struct device *dev, |
| 831 | struct device_attribute *attr, |
| 832 | const char *buf, |
| 833 | size_t n) |
| 834 | { |
Kenji Kaneshige | 5aa6358 | 2009-05-13 12:17:44 +0900 | [diff] [blame] | 835 | struct pci_dev *pdev = to_pci_dev(dev); |
Kenji Kaneshige | b7206cb | 2009-08-19 11:01:37 +0900 | [diff] [blame] | 836 | struct pcie_link_state *link, *root = pdev->link_state->root; |
Andy Lutomirski | 57d86a0 | 2015-11-19 08:05:35 -0800 | [diff] [blame] | 837 | u32 state; |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 838 | |
Naga Chumbalkar | bbfa306 | 2011-03-21 03:29:14 +0000 | [diff] [blame] | 839 | if (aspm_disabled) |
| 840 | return -EPERM; |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 841 | |
Andy Lutomirski | 57d86a0 | 2015-11-19 08:05:35 -0800 | [diff] [blame] | 842 | if (kstrtouint(buf, 10, &state)) |
| 843 | return -EINVAL; |
| 844 | if ((state & ~ASPM_STATE_ALL) != 0) |
| 845 | return -EINVAL; |
Kenji Kaneshige | ac18018 | 2009-08-19 11:02:13 +0900 | [diff] [blame] | 846 | |
Kenji Kaneshige | b7206cb | 2009-08-19 11:01:37 +0900 | [diff] [blame] | 847 | down_read(&pci_bus_sem); |
| 848 | mutex_lock(&aspm_lock); |
| 849 | list_for_each_entry(link, &link_list, sibling) { |
| 850 | if (link->root != root) |
| 851 | continue; |
| 852 | pcie_config_aspm_link(link, state); |
| 853 | } |
| 854 | mutex_unlock(&aspm_lock); |
| 855 | up_read(&pci_bus_sem); |
| 856 | return n; |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 857 | } |
| 858 | |
| 859 | static ssize_t clk_ctl_show(struct device *dev, |
| 860 | struct device_attribute *attr, |
| 861 | char *buf) |
| 862 | { |
| 863 | struct pci_dev *pci_device = to_pci_dev(dev); |
| 864 | struct pcie_link_state *link_state = pci_device->link_state; |
| 865 | |
Kenji Kaneshige | 4d246e4 | 2009-05-13 12:15:38 +0900 | [diff] [blame] | 866 | return sprintf(buf, "%d\n", link_state->clkpm_enabled); |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 867 | } |
| 868 | |
| 869 | static ssize_t clk_ctl_store(struct device *dev, |
| 870 | struct device_attribute *attr, |
| 871 | const char *buf, |
| 872 | size_t n) |
| 873 | { |
Kenji Kaneshige | 430842e | 2009-05-13 12:20:10 +0900 | [diff] [blame] | 874 | struct pci_dev *pdev = to_pci_dev(dev); |
Chris J Arges | 94a9031 | 2014-12-05 17:02:42 -0600 | [diff] [blame] | 875 | bool state; |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 876 | |
Chris J Arges | 94a9031 | 2014-12-05 17:02:42 -0600 | [diff] [blame] | 877 | if (strtobool(buf, &state)) |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 878 | return -EINVAL; |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 879 | |
| 880 | down_read(&pci_bus_sem); |
| 881 | mutex_lock(&aspm_lock); |
Chris J Arges | 94a9031 | 2014-12-05 17:02:42 -0600 | [diff] [blame] | 882 | pcie_set_clkpm_nocheck(pdev->link_state, state); |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 883 | mutex_unlock(&aspm_lock); |
| 884 | up_read(&pci_bus_sem); |
| 885 | |
| 886 | return n; |
| 887 | } |
| 888 | |
| 889 | static DEVICE_ATTR(link_state, 0644, link_state_show, link_state_store); |
| 890 | static DEVICE_ATTR(clk_ctl, 0644, clk_ctl_show, clk_ctl_store); |
| 891 | |
| 892 | static char power_group[] = "power"; |
| 893 | void pcie_aspm_create_sysfs_dev_files(struct pci_dev *pdev) |
| 894 | { |
| 895 | struct pcie_link_state *link_state = pdev->link_state; |
| 896 | |
Yijing Wang | f9b8cd7 | 2015-05-19 11:41:34 +0800 | [diff] [blame] | 897 | if (!link_state) |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 898 | return; |
| 899 | |
Kenji Kaneshige | 80bfdbe | 2009-05-13 12:12:43 +0900 | [diff] [blame] | 900 | if (link_state->aspm_support) |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 901 | sysfs_add_file_to_group(&pdev->dev.kobj, |
| 902 | &dev_attr_link_state.attr, power_group); |
Kenji Kaneshige | 4d246e4 | 2009-05-13 12:15:38 +0900 | [diff] [blame] | 903 | if (link_state->clkpm_capable) |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 904 | sysfs_add_file_to_group(&pdev->dev.kobj, |
| 905 | &dev_attr_clk_ctl.attr, power_group); |
| 906 | } |
| 907 | |
| 908 | void pcie_aspm_remove_sysfs_dev_files(struct pci_dev *pdev) |
| 909 | { |
| 910 | struct pcie_link_state *link_state = pdev->link_state; |
| 911 | |
Yijing Wang | f9b8cd7 | 2015-05-19 11:41:34 +0800 | [diff] [blame] | 912 | if (!link_state) |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 913 | return; |
| 914 | |
Kenji Kaneshige | 80bfdbe | 2009-05-13 12:12:43 +0900 | [diff] [blame] | 915 | if (link_state->aspm_support) |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 916 | sysfs_remove_file_from_group(&pdev->dev.kobj, |
| 917 | &dev_attr_link_state.attr, power_group); |
Kenji Kaneshige | 4d246e4 | 2009-05-13 12:15:38 +0900 | [diff] [blame] | 918 | if (link_state->clkpm_capable) |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 919 | sysfs_remove_file_from_group(&pdev->dev.kobj, |
| 920 | &dev_attr_clk_ctl.attr, power_group); |
| 921 | } |
| 922 | #endif |
| 923 | |
| 924 | static int __init pcie_aspm_disable(char *str) |
| 925 | { |
Shaohua Li | d6d3857 | 2008-07-23 10:32:42 +0800 | [diff] [blame] | 926 | if (!strcmp(str, "off")) { |
Matthew Garrett | 3c07635 | 2011-11-10 16:38:33 -0500 | [diff] [blame] | 927 | aspm_policy = POLICY_DEFAULT; |
Shaohua Li | d6d3857 | 2008-07-23 10:32:42 +0800 | [diff] [blame] | 928 | aspm_disabled = 1; |
Rafael J. Wysocki | 8b8bae9 | 2011-03-05 13:21:51 +0100 | [diff] [blame] | 929 | aspm_support_enabled = false; |
Shaohua Li | d6d3857 | 2008-07-23 10:32:42 +0800 | [diff] [blame] | 930 | printk(KERN_INFO "PCIe ASPM is disabled\n"); |
| 931 | } else if (!strcmp(str, "force")) { |
| 932 | aspm_force = 1; |
Michael Witten | 8072ba1 | 2011-06-28 06:15:05 +0000 | [diff] [blame] | 933 | printk(KERN_INFO "PCIe ASPM is forcibly enabled\n"); |
Shaohua Li | d6d3857 | 2008-07-23 10:32:42 +0800 | [diff] [blame] | 934 | } |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 935 | return 1; |
| 936 | } |
| 937 | |
Shaohua Li | d6d3857 | 2008-07-23 10:32:42 +0800 | [diff] [blame] | 938 | __setup("pcie_aspm=", pcie_aspm_disable); |
Shaohua Li | 7d715a6 | 2008-02-25 09:46:41 +0800 | [diff] [blame] | 939 | |
Shaohua Li | 5fde244 | 2008-07-23 10:32:24 +0800 | [diff] [blame] | 940 | void pcie_no_aspm(void) |
| 941 | { |
Matthew Garrett | 3c07635 | 2011-11-10 16:38:33 -0500 | [diff] [blame] | 942 | /* |
| 943 | * Disabling ASPM is intended to prevent the kernel from modifying |
| 944 | * existing hardware state, not to clear existing state. To that end: |
| 945 | * (a) set policy to POLICY_DEFAULT in order to avoid changing state |
| 946 | * (b) prevent userspace from changing policy |
| 947 | */ |
| 948 | if (!aspm_force) { |
| 949 | aspm_policy = POLICY_DEFAULT; |
Shaohua Li | d6d3857 | 2008-07-23 10:32:42 +0800 | [diff] [blame] | 950 | aspm_disabled = 1; |
Matthew Garrett | 3c07635 | 2011-11-10 16:38:33 -0500 | [diff] [blame] | 951 | } |
Shaohua Li | 5fde244 | 2008-07-23 10:32:24 +0800 | [diff] [blame] | 952 | } |
| 953 | |
Rafael J. Wysocki | 8b8bae9 | 2011-03-05 13:21:51 +0100 | [diff] [blame] | 954 | bool pcie_aspm_support_enabled(void) |
| 955 | { |
| 956 | return aspm_support_enabled; |
| 957 | } |
| 958 | EXPORT_SYMBOL(pcie_aspm_support_enabled); |