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