blob: e83f438b036b0046324832bb5e4b6e750a4d94af [file] [log] [blame]
Shaohua Li7d715a62008-02-25 09:46:41 +08001/*
2 * File: drivers/pci/pcie/aspm.c
Stefan Assmann45e829e2009-12-03 06:49:24 -05003 * Enabling PCIe link L0s/L1 state and Clock Power Management
Shaohua Li7d715a62008-02-25 09:46:41 +08004 *
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 Renninger2a42d9d2008-12-09 13:05:09 +010019#include <linux/jiffies.h>
Andrew Patterson987a4c72009-01-05 16:21:04 -070020#include <linux/delay.h>
Shaohua Li7d715a62008-02-25 09:46:41 +080021#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 Kaneshigeac180182009-08-19 11:02:13 +090029/* 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 Kaneshigeb6c2e542009-05-13 12:14:58 +090036struct aspm_latency {
37 u32 l0s; /* L0s latency (nsec) */
38 u32 l1; /* L1 latency (nsec) */
Shaohua Li7d715a62008-02-25 09:46:41 +080039};
40
41struct pcie_link_state {
Kenji Kaneshige5cde89d2009-05-13 12:17:04 +090042 struct pci_dev *pdev; /* Upstream component of the Link */
Kenji Kaneshige5c92ffb2009-05-13 12:23:57 +090043 struct pcie_link_state *root; /* pointer to the root port link */
Kenji Kaneshige5cde89d2009-05-13 12:17:04 +090044 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 Li7d715a62008-02-25 09:46:41 +080048
49 /* ASPM state */
Kenji Kaneshigeac180182009-08-19 11:02:13 +090050 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 Kaneshige80bfdbe2009-05-13 12:12:43 +090055
Kenji Kaneshige4d246e42009-05-13 12:15:38 +090056 /* 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 Kaneshigeac180182009-08-19 11:02:13 +090061 /* Exit latencies */
62 struct aspm_latency latency_up; /* Upstream direction exit latency */
63 struct aspm_latency latency_dw; /* Downstream direction exit latency */
Shaohua Li7d715a62008-02-25 09:46:41 +080064 /*
Kenji Kaneshigeb6c2e542009-05-13 12:14:58 +090065 * Endpoint acceptable latencies. A pcie downstream port only
66 * has one slot under it, so at most there are 8 functions.
Shaohua Li7d715a62008-02-25 09:46:41 +080067 */
Kenji Kaneshigeb6c2e542009-05-13 12:14:58 +090068 struct aspm_latency acceptable[8];
Shaohua Li7d715a62008-02-25 09:46:41 +080069};
70
Matthew Garrett3c076352011-11-10 16:38:33 -050071static int aspm_disabled, aspm_force;
Rafael J. Wysocki8b8bae92011-03-05 13:21:51 +010072static bool aspm_support_enabled = true;
Shaohua Li7d715a62008-02-25 09:46:41 +080073static DEFINE_MUTEX(aspm_lock);
74static 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 Garrettad71c962012-02-03 10:18:13 -050079
80#ifdef CONFIG_PCIEASPM_PERFORMANCE
81static int aspm_policy = POLICY_PERFORMANCE;
82#elif defined CONFIG_PCIEASPM_POWERSAVE
83static int aspm_policy = POLICY_POWERSAVE;
84#else
Shaohua Li7d715a62008-02-25 09:46:41 +080085static int aspm_policy;
Matthew Garrettad71c962012-02-03 10:18:13 -050086#endif
87
Shaohua Li7d715a62008-02-25 09:46:41 +080088static const char *policy_str[] = {
89 [POLICY_DEFAULT] = "default",
90 [POLICY_PERFORMANCE] = "performance",
91 [POLICY_POWERSAVE] = "powersave"
92};
93
Andrew Patterson987a4c72009-01-05 16:21:04 -070094#define LINK_RETRAIN_TIMEOUT HZ
95
Kenji Kaneshige5aa63582009-05-13 12:17:44 +090096static int policy_to_aspm_state(struct pcie_link_state *link)
Shaohua Li7d715a62008-02-25 09:46:41 +080097{
Shaohua Li7d715a62008-02-25 09:46:41 +080098 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 Kaneshigeac180182009-08-19 11:02:13 +0900104 return ASPM_STATE_ALL;
Shaohua Li7d715a62008-02-25 09:46:41 +0800105 case POLICY_DEFAULT:
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900106 return link->aspm_default;
Shaohua Li7d715a62008-02-25 09:46:41 +0800107 }
108 return 0;
109}
110
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900111static int policy_to_clkpm_state(struct pcie_link_state *link)
Shaohua Li7d715a62008-02-25 09:46:41 +0800112{
Shaohua Li7d715a62008-02-25 09:46:41 +0800113 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 Kaneshige5aa63582009-05-13 12:17:44 +0900121 return link->clkpm_default;
Shaohua Li7d715a62008-02-25 09:46:41 +0800122 }
123 return 0;
124}
125
Kenji Kaneshige430842e2009-05-13 12:20:10 +0900126static void pcie_set_clkpm_nocheck(struct pcie_link_state *link, int enable)
Shaohua Li7d715a62008-02-25 09:46:41 +0800127{
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900128 struct pci_dev *child;
129 struct pci_bus *linkbus = link->pdev->subordinate;
Bjorn Helgaas0c0cbb62015-06-10 14:00:21 -0500130 u32 val = enable ? PCI_EXP_LNKCTL_CLKREQ_EN : 0;
Shaohua Li7d715a62008-02-25 09:46:41 +0800131
Bjorn Helgaas0c0cbb62015-06-10 14:00:21 -0500132 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 Kaneshige5aa63582009-05-13 12:17:44 +0900136 link->clkpm_enabled = !!enable;
Shaohua Li7d715a62008-02-25 09:46:41 +0800137}
138
Kenji Kaneshige430842e2009-05-13 12:20:10 +0900139static 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 */
Shawn Lina6c1c6f2016-05-24 17:32:10 +0800142 if (!link->clkpm_capable)
Matthew Garrett2f671e22010-12-06 14:00:56 -0500143 enable = 0;
Kenji Kaneshige430842e2009-05-13 12:20:10 +0900144 /* 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 Kaneshige8d349ac2009-05-13 12:18:22 +0900150static void pcie_clkpm_cap_init(struct pcie_link_state *link, int blacklist)
Shaohua Li7d715a62008-02-25 09:46:41 +0800151{
Jiang Liuf12eb722012-07-24 17:20:12 +0800152 int capable = 1, enabled = 1;
Shaohua Li7d715a62008-02-25 09:46:41 +0800153 u32 reg32;
154 u16 reg16;
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900155 struct pci_dev *child;
156 struct pci_bus *linkbus = link->pdev->subordinate;
Shaohua Li7d715a62008-02-25 09:46:41 +0800157
158 /* All functions should have the same cap and state, take the worst */
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900159 list_for_each_entry(child, &linkbus->devices, bus_list) {
Jiang Liuf12eb722012-07-24 17:20:12 +0800160 pcie_capability_read_dword(child, PCI_EXP_LNKCAP, &reg32);
Shaohua Li7d715a62008-02-25 09:46:41 +0800161 if (!(reg32 & PCI_EXP_LNKCAP_CLKPM)) {
162 capable = 0;
163 enabled = 0;
164 break;
165 }
Jiang Liuf12eb722012-07-24 17:20:12 +0800166 pcie_capability_read_word(child, PCI_EXP_LNKCTL, &reg16);
Shaohua Li7d715a62008-02-25 09:46:41 +0800167 if (!(reg16 & PCI_EXP_LNKCTL_CLKREQ_EN))
168 enabled = 0;
169 }
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900170 link->clkpm_enabled = enabled;
171 link->clkpm_default = enabled;
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900172 link->clkpm_capable = (blacklist) ? 0 : capable;
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800173}
174
Stefan Mätje1c38a7b2019-03-29 18:07:34 +0100175static bool pcie_retrain_link(struct pcie_link_state *link)
176{
177 struct pci_dev *parent = link->pdev;
178 unsigned long start_jiffies;
179 u16 reg16;
180
181 pcie_capability_read_word(parent, PCI_EXP_LNKCTL, &reg16);
182 reg16 |= PCI_EXP_LNKCTL_RL;
183 pcie_capability_write_word(parent, PCI_EXP_LNKCTL, reg16);
184
185 /* Wait for link training end. Break out after waiting for timeout */
186 start_jiffies = jiffies;
187 for (;;) {
188 pcie_capability_read_word(parent, PCI_EXP_LNKSTA, &reg16);
189 if (!(reg16 & PCI_EXP_LNKSTA_LT))
190 break;
191 if (time_after(jiffies, start_jiffies + LINK_RETRAIN_TIMEOUT))
192 break;
193 msleep(1);
194 }
195 return !(reg16 & PCI_EXP_LNKSTA_LT);
196}
197
Shaohua Li7d715a62008-02-25 09:46:41 +0800198/*
199 * pcie_aspm_configure_common_clock: check if the 2 ends of a link
200 * could use common clock. If they are, configure them to use the
201 * common clock. That will reduce the ASPM state exit latency.
202 */
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900203static void pcie_aspm_configure_common_clock(struct pcie_link_state *link)
Shaohua Li7d715a62008-02-25 09:46:41 +0800204{
Jiang Liuf12eb722012-07-24 17:20:12 +0800205 int same_clock = 1;
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900206 u16 reg16, parent_reg, child_reg[8];
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900207 struct pci_dev *child, *parent = link->pdev;
208 struct pci_bus *linkbus = parent->subordinate;
Shaohua Li7d715a62008-02-25 09:46:41 +0800209 /*
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900210 * All functions of a slot should have the same Slot Clock
Shaohua Li7d715a62008-02-25 09:46:41 +0800211 * Configuration, so just check one function
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900212 */
213 child = list_entry(linkbus->devices.next, struct pci_dev, bus_list);
Kenji Kaneshige8b064772009-11-11 14:36:52 +0900214 BUG_ON(!pci_is_pcie(child));
Shaohua Li7d715a62008-02-25 09:46:41 +0800215
216 /* Check downstream component if bit Slot Clock Configuration is 1 */
Jiang Liuf12eb722012-07-24 17:20:12 +0800217 pcie_capability_read_word(child, PCI_EXP_LNKSTA, &reg16);
Shaohua Li7d715a62008-02-25 09:46:41 +0800218 if (!(reg16 & PCI_EXP_LNKSTA_SLC))
219 same_clock = 0;
220
221 /* Check upstream component if bit Slot Clock Configuration is 1 */
Jiang Liuf12eb722012-07-24 17:20:12 +0800222 pcie_capability_read_word(parent, PCI_EXP_LNKSTA, &reg16);
Shaohua Li7d715a62008-02-25 09:46:41 +0800223 if (!(reg16 & PCI_EXP_LNKSTA_SLC))
224 same_clock = 0;
225
226 /* Configure downstream component, all functions */
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900227 list_for_each_entry(child, &linkbus->devices, bus_list) {
Jiang Liuf12eb722012-07-24 17:20:12 +0800228 pcie_capability_read_word(child, PCI_EXP_LNKCTL, &reg16);
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900229 child_reg[PCI_FUNC(child->devfn)] = reg16;
Shaohua Li7d715a62008-02-25 09:46:41 +0800230 if (same_clock)
231 reg16 |= PCI_EXP_LNKCTL_CCC;
232 else
233 reg16 &= ~PCI_EXP_LNKCTL_CCC;
Jiang Liuf12eb722012-07-24 17:20:12 +0800234 pcie_capability_write_word(child, PCI_EXP_LNKCTL, reg16);
Shaohua Li7d715a62008-02-25 09:46:41 +0800235 }
236
237 /* Configure upstream component */
Jiang Liuf12eb722012-07-24 17:20:12 +0800238 pcie_capability_read_word(parent, PCI_EXP_LNKCTL, &reg16);
Thomas Renninger2a42d9d2008-12-09 13:05:09 +0100239 parent_reg = reg16;
Shaohua Li7d715a62008-02-25 09:46:41 +0800240 if (same_clock)
241 reg16 |= PCI_EXP_LNKCTL_CCC;
242 else
243 reg16 &= ~PCI_EXP_LNKCTL_CCC;
Jiang Liuf12eb722012-07-24 17:20:12 +0800244 pcie_capability_write_word(parent, PCI_EXP_LNKCTL, reg16);
Shaohua Li7d715a62008-02-25 09:46:41 +0800245
Stefan Mätje1c38a7b2019-03-29 18:07:34 +0100246 if (pcie_retrain_link(link))
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900247 return;
248
249 /* Training failed. Restore common clock configurations */
Joe Perches438be3c2012-10-28 01:05:49 -0700250 dev_err(&parent->dev, "ASPM: Could not configure common clock\n");
Jiang Liuf12eb722012-07-24 17:20:12 +0800251 list_for_each_entry(child, &linkbus->devices, bus_list)
252 pcie_capability_write_word(child, PCI_EXP_LNKCTL,
253 child_reg[PCI_FUNC(child->devfn)]);
254 pcie_capability_write_word(parent, PCI_EXP_LNKCTL, parent_reg);
Shaohua Li7d715a62008-02-25 09:46:41 +0800255}
256
Kenji Kaneshige5e0eaa72009-05-13 12:21:48 +0900257/* Convert L0s latency encoding to ns */
258static u32 calc_l0s_latency(u32 encoding)
Shaohua Li7d715a62008-02-25 09:46:41 +0800259{
Kenji Kaneshige5e0eaa72009-05-13 12:21:48 +0900260 if (encoding == 0x7)
261 return (5 * 1000); /* > 4us */
262 return (64 << encoding);
Shaohua Li7d715a62008-02-25 09:46:41 +0800263}
264
Kenji Kaneshige5e0eaa72009-05-13 12:21:48 +0900265/* Convert L0s acceptable latency encoding to ns */
266static u32 calc_l0s_acceptable(u32 encoding)
Shaohua Li7d715a62008-02-25 09:46:41 +0800267{
Kenji Kaneshige5e0eaa72009-05-13 12:21:48 +0900268 if (encoding == 0x7)
269 return -1U;
270 return (64 << encoding);
271}
Shaohua Li7d715a62008-02-25 09:46:41 +0800272
Kenji Kaneshige5e0eaa72009-05-13 12:21:48 +0900273/* Convert L1 latency encoding to ns */
274static u32 calc_l1_latency(u32 encoding)
275{
276 if (encoding == 0x7)
277 return (65 * 1000); /* > 64us */
278 return (1000 << encoding);
279}
280
281/* Convert L1 acceptable latency encoding to ns */
282static u32 calc_l1_acceptable(u32 encoding)
283{
284 if (encoding == 0x7)
285 return -1U;
286 return (1000 << encoding);
Shaohua Li7d715a62008-02-25 09:46:41 +0800287}
288
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900289struct aspm_register_info {
290 u32 support:2;
291 u32 enabled:2;
292 u32 latency_encoding_l0s;
293 u32 latency_encoding_l1;
294};
295
296static void pcie_get_aspm_reg(struct pci_dev *pdev,
297 struct aspm_register_info *info)
Shaohua Li7d715a62008-02-25 09:46:41 +0800298{
Shaohua Li7d715a62008-02-25 09:46:41 +0800299 u16 reg16;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900300 u32 reg32;
Shaohua Li7d715a62008-02-25 09:46:41 +0800301
Jiang Liuf12eb722012-07-24 17:20:12 +0800302 pcie_capability_read_dword(pdev, PCI_EXP_LNKCAP, &reg32);
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900303 info->support = (reg32 & PCI_EXP_LNKCAP_ASPMS) >> 10;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900304 info->latency_encoding_l0s = (reg32 & PCI_EXP_LNKCAP_L0SEL) >> 12;
305 info->latency_encoding_l1 = (reg32 & PCI_EXP_LNKCAP_L1EL) >> 15;
Jiang Liuf12eb722012-07-24 17:20:12 +0800306 pcie_capability_read_word(pdev, PCI_EXP_LNKCTL, &reg16);
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900307 info->enabled = reg16 & PCI_EXP_LNKCTL_ASPMC;
Shaohua Li7d715a62008-02-25 09:46:41 +0800308}
309
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900310static void pcie_aspm_check_latency(struct pci_dev *endpoint)
311{
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900312 u32 latency, l1_switch_latency = 0;
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900313 struct aspm_latency *acceptable;
314 struct pcie_link_state *link;
315
316 /* Device not in D0 doesn't need latency check */
317 if ((endpoint->current_state != PCI_D0) &&
318 (endpoint->current_state != PCI_UNKNOWN))
319 return;
320
321 link = endpoint->bus->self->link_state;
322 acceptable = &link->acceptable[PCI_FUNC(endpoint->devfn)];
323
324 while (link) {
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900325 /* Check upstream direction L0s latency */
326 if ((link->aspm_capable & ASPM_STATE_L0S_UP) &&
327 (link->latency_up.l0s > acceptable->l0s))
328 link->aspm_capable &= ~ASPM_STATE_L0S_UP;
329
330 /* Check downstream direction L0s latency */
331 if ((link->aspm_capable & ASPM_STATE_L0S_DW) &&
332 (link->latency_dw.l0s > acceptable->l0s))
333 link->aspm_capable &= ~ASPM_STATE_L0S_DW;
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900334 /*
335 * Check L1 latency.
336 * Every switch on the path to root complex need 1
337 * more microsecond for L1. Spec doesn't mention L0s.
338 */
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900339 latency = max_t(u32, link->latency_up.l1, link->latency_dw.l1);
340 if ((link->aspm_capable & ASPM_STATE_L1) &&
341 (latency + l1_switch_latency > acceptable->l1))
342 link->aspm_capable &= ~ASPM_STATE_L1;
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900343 l1_switch_latency += 1000;
344
345 link = link->parent;
346 }
347}
348
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900349static void pcie_aspm_cap_init(struct pcie_link_state *link, int blacklist)
Shaohua Li7d715a62008-02-25 09:46:41 +0800350{
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900351 struct pci_dev *child, *parent = link->pdev;
352 struct pci_bus *linkbus = parent->subordinate;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900353 struct aspm_register_info upreg, dwreg;
Shaohua Li7d715a62008-02-25 09:46:41 +0800354
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900355 if (blacklist) {
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900356 /* Set enabled/disable so that we will disable ASPM later */
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900357 link->aspm_enabled = ASPM_STATE_ALL;
358 link->aspm_disable = ASPM_STATE_ALL;
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900359 return;
360 }
361
362 /* Configure common clock before checking latencies */
363 pcie_aspm_configure_common_clock(link);
364
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900365 /* Get upstream/downstream components' register state */
366 pcie_get_aspm_reg(parent, &upreg);
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900367 child = list_entry(linkbus->devices.next, struct pci_dev, bus_list);
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900368 pcie_get_aspm_reg(child, &dwreg);
369
370 /*
371 * Setup L0s state
372 *
373 * Note that we must not enable L0s in either direction on a
374 * given link unless components on both sides of the link each
375 * support L0s.
376 */
377 if (dwreg.support & upreg.support & PCIE_LINK_STATE_L0S)
378 link->aspm_support |= ASPM_STATE_L0S;
379 if (dwreg.enabled & PCIE_LINK_STATE_L0S)
380 link->aspm_enabled |= ASPM_STATE_L0S_UP;
381 if (upreg.enabled & PCIE_LINK_STATE_L0S)
382 link->aspm_enabled |= ASPM_STATE_L0S_DW;
383 link->latency_up.l0s = calc_l0s_latency(upreg.latency_encoding_l0s);
384 link->latency_dw.l0s = calc_l0s_latency(dwreg.latency_encoding_l0s);
385
386 /* Setup L1 state */
387 if (upreg.support & dwreg.support & PCIE_LINK_STATE_L1)
388 link->aspm_support |= ASPM_STATE_L1;
389 if (upreg.enabled & dwreg.enabled & PCIE_LINK_STATE_L1)
390 link->aspm_enabled |= ASPM_STATE_L1;
391 link->latency_up.l1 = calc_l1_latency(upreg.latency_encoding_l1);
392 link->latency_dw.l1 = calc_l1_latency(dwreg.latency_encoding_l1);
Kenji Kaneshige80bfdbe2009-05-13 12:12:43 +0900393
Kenji Kaneshigeb127bd52009-08-19 10:57:31 +0900394 /* Save default state */
395 link->aspm_default = link->aspm_enabled;
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900396
397 /* Setup initial capable state. Will be updated later */
398 link->aspm_capable = link->aspm_support;
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900399 /*
400 * If the downstream component has pci bridge function, don't
401 * do ASPM for now.
402 */
403 list_for_each_entry(child, &linkbus->devices, bus_list) {
Yijing Wang62f87c02012-07-24 17:20:03 +0800404 if (pci_pcie_type(child) == PCI_EXP_TYPE_PCI_BRIDGE) {
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900405 link->aspm_disable = ASPM_STATE_ALL;
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900406 break;
407 }
408 }
Kenji Kaneshigeb127bd52009-08-19 10:57:31 +0900409
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900410 /* Get and check endpoint acceptable latencies */
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900411 list_for_each_entry(child, &linkbus->devices, bus_list) {
Kenji Kaneshige5e0eaa72009-05-13 12:21:48 +0900412 u32 reg32, encoding;
Kenji Kaneshigeb6c2e542009-05-13 12:14:58 +0900413 struct aspm_latency *acceptable =
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900414 &link->acceptable[PCI_FUNC(child->devfn)];
Shaohua Li7d715a62008-02-25 09:46:41 +0800415
Yijing Wang62f87c02012-07-24 17:20:03 +0800416 if (pci_pcie_type(child) != PCI_EXP_TYPE_ENDPOINT &&
417 pci_pcie_type(child) != PCI_EXP_TYPE_LEG_END)
Shaohua Li7d715a62008-02-25 09:46:41 +0800418 continue;
419
Jiang Liuf12eb722012-07-24 17:20:12 +0800420 pcie_capability_read_dword(child, PCI_EXP_DEVCAP, &reg32);
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900421 /* Calculate endpoint L0s acceptable latency */
Kenji Kaneshige5e0eaa72009-05-13 12:21:48 +0900422 encoding = (reg32 & PCI_EXP_DEVCAP_L0S) >> 6;
423 acceptable->l0s = calc_l0s_acceptable(encoding);
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900424 /* Calculate endpoint L1 acceptable latency */
425 encoding = (reg32 & PCI_EXP_DEVCAP_L1) >> 9;
426 acceptable->l1 = calc_l1_acceptable(encoding);
427
428 pcie_aspm_check_latency(child);
Shaohua Li7d715a62008-02-25 09:46:41 +0800429 }
430}
431
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900432static void pcie_config_aspm_dev(struct pci_dev *pdev, u32 val)
Shaohua Li7d715a62008-02-25 09:46:41 +0800433{
Bjorn Helgaas75083202012-12-05 13:51:19 -0700434 pcie_capability_clear_and_set_word(pdev, PCI_EXP_LNKCTL,
435 PCI_EXP_LNKCTL_ASPMC, val);
Shaohua Li7d715a62008-02-25 09:46:41 +0800436}
437
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900438static void pcie_config_aspm_link(struct pcie_link_state *link, u32 state)
Shaohua Li7d715a62008-02-25 09:46:41 +0800439{
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900440 u32 upstream = 0, dwstream = 0;
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900441 struct pci_dev *child, *parent = link->pdev;
442 struct pci_bus *linkbus = parent->subordinate;
Shaohua Li7d715a62008-02-25 09:46:41 +0800443
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900444 /* Nothing to do if the link is already in the requested state */
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900445 state &= (link->aspm_capable & ~link->aspm_disable);
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900446 if (link->aspm_enabled == state)
447 return;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900448 /* Convert ASPM state to upstream/downstream ASPM register state */
449 if (state & ASPM_STATE_L0S_UP)
Bjorn Helgaas75083202012-12-05 13:51:19 -0700450 dwstream |= PCI_EXP_LNKCTL_ASPM_L0S;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900451 if (state & ASPM_STATE_L0S_DW)
Bjorn Helgaas75083202012-12-05 13:51:19 -0700452 upstream |= PCI_EXP_LNKCTL_ASPM_L0S;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900453 if (state & ASPM_STATE_L1) {
Bjorn Helgaas75083202012-12-05 13:51:19 -0700454 upstream |= PCI_EXP_LNKCTL_ASPM_L1;
455 dwstream |= PCI_EXP_LNKCTL_ASPM_L1;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900456 }
Shaohua Li7d715a62008-02-25 09:46:41 +0800457 /*
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900458 * Spec 2.0 suggests all functions should be configured the
459 * same setting for ASPM. Enabling ASPM L1 should be done in
460 * upstream component first and then downstream, and vice
461 * versa for disabling ASPM L1. Spec doesn't mention L0S.
Shaohua Li7d715a62008-02-25 09:46:41 +0800462 */
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900463 if (state & ASPM_STATE_L1)
464 pcie_config_aspm_dev(parent, upstream);
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900465 list_for_each_entry(child, &linkbus->devices, bus_list)
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900466 pcie_config_aspm_dev(child, dwstream);
467 if (!(state & ASPM_STATE_L1))
468 pcie_config_aspm_dev(parent, upstream);
Shaohua Li7d715a62008-02-25 09:46:41 +0800469
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900470 link->aspm_enabled = state;
Shaohua Li7d715a62008-02-25 09:46:41 +0800471}
472
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900473static void pcie_config_aspm_path(struct pcie_link_state *link)
Shaohua Li7d715a62008-02-25 09:46:41 +0800474{
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900475 while (link) {
476 pcie_config_aspm_link(link, policy_to_aspm_state(link));
477 link = link->parent;
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800478 }
Shaohua Li7d715a62008-02-25 09:46:41 +0800479}
480
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900481static void free_link_state(struct pcie_link_state *link)
Shaohua Li7d715a62008-02-25 09:46:41 +0800482{
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900483 link->pdev->link_state = NULL;
484 kfree(link);
Shaohua Li7d715a62008-02-25 09:46:41 +0800485}
486
Shaohua Liddc97532008-05-21 16:58:40 +0800487static int pcie_aspm_sanity_check(struct pci_dev *pdev)
488{
Kenji Kaneshige36475842009-05-13 12:23:09 +0900489 struct pci_dev *child;
Shaohua Li149e1632008-07-23 10:32:31 +0800490 u32 reg32;
Matthew Garrett2f671e22010-12-06 14:00:56 -0500491
Shaohua Liddc97532008-05-21 16:58:40 +0800492 /*
Stefan Assmann45e829e2009-12-03 06:49:24 -0500493 * Some functions in a slot might not all be PCIe functions,
Kenji Kaneshige36475842009-05-13 12:23:09 +0900494 * very strange. Disable ASPM for the whole slot
Shaohua Liddc97532008-05-21 16:58:40 +0800495 */
Kenji Kaneshige36475842009-05-13 12:23:09 +0900496 list_for_each_entry(child, &pdev->subordinate->devices, bus_list) {
Jiang Liuf12eb722012-07-24 17:20:12 +0800497 if (!pci_is_pcie(child))
Shaohua Liddc97532008-05-21 16:58:40 +0800498 return -EINVAL;
Matthew Garrettc9651e72012-03-27 10:17:41 -0400499
500 /*
501 * If ASPM is disabled then we're not going to change
502 * the BIOS state. It's safe to continue even if it's a
503 * pre-1.1 device
504 */
505
506 if (aspm_disabled)
507 continue;
508
Shaohua Li149e1632008-07-23 10:32:31 +0800509 /*
510 * Disable ASPM for pre-1.1 PCIe device, we follow MS to use
511 * RBER bit to determine if a function is 1.1 version device
512 */
Jiang Liuf12eb722012-07-24 17:20:12 +0800513 pcie_capability_read_dword(child, PCI_EXP_DEVCAP, &reg32);
Sitsofe Wheelere1f4f592008-09-16 14:27:13 +0100514 if (!(reg32 & PCI_EXP_DEVCAP_RBER) && !aspm_force) {
Joe Perches438be3c2012-10-28 01:05:49 -0700515 dev_info(&child->dev, "disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'\n");
Shaohua Li149e1632008-07-23 10:32:31 +0800516 return -EINVAL;
517 }
Shaohua Liddc97532008-05-21 16:58:40 +0800518 }
519 return 0;
520}
521
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900522static struct pcie_link_state *alloc_pcie_link_state(struct pci_dev *pdev)
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900523{
524 struct pcie_link_state *link;
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900525
526 link = kzalloc(sizeof(*link), GFP_KERNEL);
527 if (!link)
528 return NULL;
Bjorn Helgaas610c2b72017-01-27 15:00:45 -0600529
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900530 INIT_LIST_HEAD(&link->sibling);
531 INIT_LIST_HEAD(&link->children);
532 INIT_LIST_HEAD(&link->link);
533 link->pdev = pdev;
Bjorn Helgaas610c2b72017-01-27 15:00:45 -0600534
535 /*
536 * Root Ports and PCI/PCI-X to PCIe Bridges are roots of PCIe
Ard Biesheuvel6213c712017-10-02 15:08:40 +0100537 * hierarchies. Note that some PCIe host implementations omit
538 * the root ports entirely, in which case a downstream port on
539 * a switch may become the root of the link state chain for all
540 * its subordinate endpoints.
Bjorn Helgaas610c2b72017-01-27 15:00:45 -0600541 */
542 if (pci_pcie_type(pdev) == PCI_EXP_TYPE_ROOT_PORT ||
Ard Biesheuvel6213c712017-10-02 15:08:40 +0100543 pci_pcie_type(pdev) == PCI_EXP_TYPE_PCIE_BRIDGE ||
544 !pdev->bus->parent->self) {
Bjorn Helgaas610c2b72017-01-27 15:00:45 -0600545 link->root = link;
546 } else {
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900547 struct pcie_link_state *parent;
Bjorn Helgaas610c2b72017-01-27 15:00:45 -0600548
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900549 parent = pdev->bus->parent->self->link_state;
550 if (!parent) {
551 kfree(link);
552 return NULL;
553 }
Bjorn Helgaas610c2b72017-01-27 15:00:45 -0600554
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900555 link->parent = parent;
Bjorn Helgaas610c2b72017-01-27 15:00:45 -0600556 link->root = link->parent->root;
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900557 list_add(&link->link, &parent->children);
558 }
Kenji Kaneshige5c92ffb2009-05-13 12:23:57 +0900559
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900560 list_add(&link->sibling, &link_list);
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900561 pdev->link_state = link;
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900562 return link;
563}
564
Shaohua Li7d715a62008-02-25 09:46:41 +0800565/*
566 * pcie_aspm_init_link_state: Initiate PCI express link state.
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700567 * It is called after the pcie and its children devices are scanned.
Shaohua Li7d715a62008-02-25 09:46:41 +0800568 * @pdev: the root port or switch downstream port
569 */
570void pcie_aspm_init_link_state(struct pci_dev *pdev)
571{
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900572 struct pcie_link_state *link;
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900573 int blacklist = !!pcie_aspm_sanity_check(pdev);
Shaohua Li7d715a62008-02-25 09:46:41 +0800574
Joe Lawrencea26d5ec2013-01-15 15:31:28 -0500575 if (!aspm_support_enabled)
576 return;
577
Yijing Wangc8fc9332015-05-21 15:05:03 +0800578 if (pdev->link_state)
Shaohua Li7d715a62008-02-25 09:46:41 +0800579 return;
Yijing Wangc8fc9332015-05-21 15:05:03 +0800580
581 /*
582 * We allocate pcie_link_state for the component on the upstream
583 * end of a Link, so there's nothing to do unless this device has a
584 * Link on its secondary side.
585 */
586 if (!pdev->has_secondary_link)
Shaohua Li7d715a62008-02-25 09:46:41 +0800587 return;
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900588
Shaohua Li8e822df2009-06-08 09:27:25 +0800589 /* VIA has a strange chipset, root port is under a bridge */
Yijing Wang62f87c02012-07-24 17:20:03 +0800590 if (pci_pcie_type(pdev) == PCI_EXP_TYPE_ROOT_PORT &&
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900591 pdev->bus->self)
Shaohua Li8e822df2009-06-08 09:27:25 +0800592 return;
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900593
Shaohua Li7d715a62008-02-25 09:46:41 +0800594 down_read(&pci_bus_sem);
595 if (list_empty(&pdev->subordinate->devices))
596 goto out;
597
Shaohua Li7d715a62008-02-25 09:46:41 +0800598 mutex_lock(&aspm_lock);
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900599 link = alloc_pcie_link_state(pdev);
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900600 if (!link)
601 goto unlock;
602 /*
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900603 * Setup initial ASPM state. Note that we need to configure
604 * upstream links also because capable state of them can be
605 * update through pcie_aspm_cap_init().
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900606 */
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900607 pcie_aspm_cap_init(link, blacklist);
Shaohua Li7d715a62008-02-25 09:46:41 +0800608
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900609 /* Setup initial Clock PM state */
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900610 pcie_clkpm_cap_init(link, blacklist);
Matthew Garrett41cd7662010-06-09 16:05:07 -0400611
612 /*
613 * At this stage drivers haven't had an opportunity to change the
614 * link policy setting. Enabling ASPM on broken hardware can cripple
615 * it even before the driver has had a chance to disable ASPM, so
616 * default to a safe level right now. If we're enabling ASPM beyond
617 * the BIOS's expectation, we'll do so once pci_enable_device() is
618 * called.
619 */
Matthew Garrett3c076352011-11-10 16:38:33 -0500620 if (aspm_policy != POLICY_POWERSAVE) {
Matthew Garrett41cd7662010-06-09 16:05:07 -0400621 pcie_config_aspm_path(link);
622 pcie_set_clkpm(link, policy_to_clkpm_state(link));
623 }
624
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900625unlock:
Shaohua Li7d715a62008-02-25 09:46:41 +0800626 mutex_unlock(&aspm_lock);
627out:
628 up_read(&pci_bus_sem);
629}
630
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900631/* Recheck latencies and update aspm_capable for links under the root */
632static void pcie_update_aspm_capable(struct pcie_link_state *root)
633{
634 struct pcie_link_state *link;
635 BUG_ON(root->parent);
636 list_for_each_entry(link, &link_list, sibling) {
637 if (link->root != root)
638 continue;
639 link->aspm_capable = link->aspm_support;
640 }
641 list_for_each_entry(link, &link_list, sibling) {
642 struct pci_dev *child;
643 struct pci_bus *linkbus = link->pdev->subordinate;
644 if (link->root != root)
645 continue;
646 list_for_each_entry(child, &linkbus->devices, bus_list) {
Yijing Wang62f87c02012-07-24 17:20:03 +0800647 if ((pci_pcie_type(child) != PCI_EXP_TYPE_ENDPOINT) &&
648 (pci_pcie_type(child) != PCI_EXP_TYPE_LEG_END))
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900649 continue;
650 pcie_aspm_check_latency(child);
651 }
652 }
653}
654
Shaohua Li7d715a62008-02-25 09:46:41 +0800655/* @pdev: the endpoint device */
656void pcie_aspm_exit_link_state(struct pci_dev *pdev)
657{
658 struct pci_dev *parent = pdev->bus->self;
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900659 struct pcie_link_state *link, *root, *parent_link;
Shaohua Li7d715a62008-02-25 09:46:41 +0800660
Myron Stowe84fb9132013-01-31 16:29:25 -0700661 if (!parent || !parent->link_state)
Shaohua Li7d715a62008-02-25 09:46:41 +0800662 return;
Kenji Kaneshigefc87e912009-08-19 10:58:46 +0900663
Shaohua Li7d715a62008-02-25 09:46:41 +0800664 down_read(&pci_bus_sem);
665 mutex_lock(&aspm_lock);
Shaohua Li7d715a62008-02-25 09:46:41 +0800666 /*
667 * All PCIe functions are in one slot, remove one function will remove
Alex Chiang3419c752009-01-28 14:59:18 -0700668 * the whole slot, so just wait until we are the last function left.
Shaohua Li7d715a62008-02-25 09:46:41 +0800669 */
Alex Chiang3419c752009-01-28 14:59:18 -0700670 if (!list_is_last(&pdev->bus_list, &parent->subordinate->devices))
Shaohua Li7d715a62008-02-25 09:46:41 +0800671 goto out;
672
Kenji Kaneshigefc87e912009-08-19 10:58:46 +0900673 link = parent->link_state;
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900674 root = link->root;
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900675 parent_link = link->parent;
Kenji Kaneshigefc87e912009-08-19 10:58:46 +0900676
Shaohua Li7d715a62008-02-25 09:46:41 +0800677 /* All functions are removed, so just disable ASPM for the link */
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900678 pcie_config_aspm_link(link, 0);
Kenji Kaneshigefc87e912009-08-19 10:58:46 +0900679 list_del(&link->sibling);
680 list_del(&link->link);
Shaohua Li7d715a62008-02-25 09:46:41 +0800681 /* Clock PM is for endpoint device */
Kenji Kaneshigefc87e912009-08-19 10:58:46 +0900682 free_link_state(link);
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900683
684 /* Recheck latencies and configure upstream links */
Kenji Kaneshigeb26a34a2009-11-06 11:25:13 +0900685 if (parent_link) {
686 pcie_update_aspm_capable(root);
687 pcie_config_aspm_path(parent_link);
688 }
Shaohua Li7d715a62008-02-25 09:46:41 +0800689out:
690 mutex_unlock(&aspm_lock);
691 up_read(&pci_bus_sem);
692}
693
694/* @pdev: the root port or switch downstream port */
695void pcie_aspm_pm_state_change(struct pci_dev *pdev)
696{
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900697 struct pcie_link_state *link = pdev->link_state;
Shaohua Li7d715a62008-02-25 09:46:41 +0800698
Yijing Wangf9b8cd72015-05-19 11:41:34 +0800699 if (aspm_disabled || !link)
Shaohua Li7d715a62008-02-25 09:46:41 +0800700 return;
701 /*
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900702 * Devices changed PM state, we should recheck if latency
703 * meets all functions' requirement
Shaohua Li7d715a62008-02-25 09:46:41 +0800704 */
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900705 down_read(&pci_bus_sem);
706 mutex_lock(&aspm_lock);
707 pcie_update_aspm_capable(link->root);
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900708 pcie_config_aspm_path(link);
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900709 mutex_unlock(&aspm_lock);
710 up_read(&pci_bus_sem);
Shaohua Li7d715a62008-02-25 09:46:41 +0800711}
712
Naga Chumbalkar1a680b72011-03-21 03:29:08 +0000713void pcie_aspm_powersave_config_link(struct pci_dev *pdev)
714{
715 struct pcie_link_state *link = pdev->link_state;
716
Yijing Wangf9b8cd72015-05-19 11:41:34 +0800717 if (aspm_disabled || !link)
Naga Chumbalkar1a680b72011-03-21 03:29:08 +0000718 return;
719
720 if (aspm_policy != POLICY_POWERSAVE)
721 return;
722
Naga Chumbalkar1a680b72011-03-21 03:29:08 +0000723 down_read(&pci_bus_sem);
724 mutex_lock(&aspm_lock);
725 pcie_config_aspm_path(link);
726 pcie_set_clkpm(link, policy_to_clkpm_state(link));
727 mutex_unlock(&aspm_lock);
728 up_read(&pci_bus_sem);
729}
730
Bjorn Helgaase127a042015-05-20 12:13:05 -0500731static void __pci_disable_link_state(struct pci_dev *pdev, int state, bool sem)
Shaohua Li7d715a62008-02-25 09:46:41 +0800732{
733 struct pci_dev *parent = pdev->bus->self;
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900734 struct pcie_link_state *link;
Shaohua Li7d715a62008-02-25 09:46:41 +0800735
Matthew Garrett3c076352011-11-10 16:38:33 -0500736 if (!pci_is_pcie(pdev))
737 return;
738
Yijing Wangc8fc9332015-05-21 15:05:03 +0800739 if (pdev->has_secondary_link)
Shaohua Li7d715a62008-02-25 09:46:41 +0800740 parent = pdev;
741 if (!parent || !parent->link_state)
742 return;
743
Bjorn Helgaas2add0ec2013-05-21 10:56:51 -0600744 /*
745 * A driver requested that ASPM be disabled on this device, but
746 * if we don't have permission to manage ASPM (e.g., on ACPI
747 * systems we have to observe the FADT ACPI_FADT_NO_ASPM bit and
748 * the _OSC method), we can't honor that request. Windows has
749 * a similar mechanism using "PciASPMOptOut", which is also
750 * ignored in this situation.
751 */
Bjorn Helgaase127a042015-05-20 12:13:05 -0500752 if (aspm_disabled) {
Bjorn Helgaas2add0ec2013-05-21 10:56:51 -0600753 dev_warn(&pdev->dev, "can't disable ASPM; OS doesn't have ASPM control\n");
754 return;
755 }
756
Yinghai Lu9f728f52011-05-12 17:11:47 -0700757 if (sem)
758 down_read(&pci_bus_sem);
Shaohua Li7d715a62008-02-25 09:46:41 +0800759 mutex_lock(&aspm_lock);
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900760 link = parent->link_state;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900761 if (state & PCIE_LINK_STATE_L0S)
762 link->aspm_disable |= ASPM_STATE_L0S;
763 if (state & PCIE_LINK_STATE_L1)
764 link->aspm_disable |= ASPM_STATE_L1;
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900765 pcie_config_aspm_link(link, policy_to_aspm_state(link));
766
Kenji Kaneshige430842e2009-05-13 12:20:10 +0900767 if (state & PCIE_LINK_STATE_CLKPM) {
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900768 link->clkpm_capable = 0;
769 pcie_set_clkpm(link, 0);
Kenji Kaneshige430842e2009-05-13 12:20:10 +0900770 }
Shaohua Li7d715a62008-02-25 09:46:41 +0800771 mutex_unlock(&aspm_lock);
Yinghai Lu9f728f52011-05-12 17:11:47 -0700772 if (sem)
773 up_read(&pci_bus_sem);
774}
775
776void pci_disable_link_state_locked(struct pci_dev *pdev, int state)
777{
Bjorn Helgaase127a042015-05-20 12:13:05 -0500778 __pci_disable_link_state(pdev, state, false);
Yinghai Lu9f728f52011-05-12 17:11:47 -0700779}
780EXPORT_SYMBOL(pci_disable_link_state_locked);
781
Yijing Wang2dfca872013-05-28 16:03:22 +0800782/**
783 * pci_disable_link_state - Disable device's link state, so the link will
784 * never enter specific states. Note that if the BIOS didn't grant ASPM
785 * control to the OS, this does nothing because we can't touch the LNKCTL
786 * register.
787 *
788 * @pdev: PCI device
789 * @state: ASPM link state to disable
790 */
Yinghai Lu9f728f52011-05-12 17:11:47 -0700791void pci_disable_link_state(struct pci_dev *pdev, int state)
792{
Bjorn Helgaase127a042015-05-20 12:13:05 -0500793 __pci_disable_link_state(pdev, state, true);
Shaohua Li7d715a62008-02-25 09:46:41 +0800794}
795EXPORT_SYMBOL(pci_disable_link_state);
796
797static int pcie_aspm_set_policy(const char *val, struct kernel_param *kp)
798{
799 int i;
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900800 struct pcie_link_state *link;
Shaohua Li7d715a62008-02-25 09:46:41 +0800801
Naga Chumbalkarbbfa3062011-03-21 03:29:14 +0000802 if (aspm_disabled)
803 return -EPERM;
Shaohua Li7d715a62008-02-25 09:46:41 +0800804 for (i = 0; i < ARRAY_SIZE(policy_str); i++)
805 if (!strncmp(val, policy_str[i], strlen(policy_str[i])))
806 break;
807 if (i >= ARRAY_SIZE(policy_str))
808 return -EINVAL;
809 if (i == aspm_policy)
810 return 0;
811
812 down_read(&pci_bus_sem);
813 mutex_lock(&aspm_lock);
814 aspm_policy = i;
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900815 list_for_each_entry(link, &link_list, sibling) {
816 pcie_config_aspm_link(link, policy_to_aspm_state(link));
817 pcie_set_clkpm(link, policy_to_clkpm_state(link));
Shaohua Li7d715a62008-02-25 09:46:41 +0800818 }
819 mutex_unlock(&aspm_lock);
820 up_read(&pci_bus_sem);
821 return 0;
822}
823
824static int pcie_aspm_get_policy(char *buffer, struct kernel_param *kp)
825{
826 int i, cnt = 0;
827 for (i = 0; i < ARRAY_SIZE(policy_str); i++)
828 if (i == aspm_policy)
829 cnt += sprintf(buffer + cnt, "[%s] ", policy_str[i]);
830 else
831 cnt += sprintf(buffer + cnt, "%s ", policy_str[i]);
832 return cnt;
833}
834
835module_param_call(policy, pcie_aspm_set_policy, pcie_aspm_get_policy,
836 NULL, 0644);
837
838#ifdef CONFIG_PCIEASPM_DEBUG
839static ssize_t link_state_show(struct device *dev,
840 struct device_attribute *attr,
841 char *buf)
842{
843 struct pci_dev *pci_device = to_pci_dev(dev);
844 struct pcie_link_state *link_state = pci_device->link_state;
845
Kenji Kaneshige80bfdbe2009-05-13 12:12:43 +0900846 return sprintf(buf, "%d\n", link_state->aspm_enabled);
Shaohua Li7d715a62008-02-25 09:46:41 +0800847}
848
849static ssize_t link_state_store(struct device *dev,
850 struct device_attribute *attr,
851 const char *buf,
852 size_t n)
853{
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900854 struct pci_dev *pdev = to_pci_dev(dev);
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900855 struct pcie_link_state *link, *root = pdev->link_state->root;
Andy Lutomirski57d86a02015-11-19 08:05:35 -0800856 u32 state;
Shaohua Li7d715a62008-02-25 09:46:41 +0800857
Naga Chumbalkarbbfa3062011-03-21 03:29:14 +0000858 if (aspm_disabled)
859 return -EPERM;
Shaohua Li7d715a62008-02-25 09:46:41 +0800860
Andy Lutomirski57d86a02015-11-19 08:05:35 -0800861 if (kstrtouint(buf, 10, &state))
862 return -EINVAL;
863 if ((state & ~ASPM_STATE_ALL) != 0)
864 return -EINVAL;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900865
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900866 down_read(&pci_bus_sem);
867 mutex_lock(&aspm_lock);
868 list_for_each_entry(link, &link_list, sibling) {
869 if (link->root != root)
870 continue;
871 pcie_config_aspm_link(link, state);
872 }
873 mutex_unlock(&aspm_lock);
874 up_read(&pci_bus_sem);
875 return n;
Shaohua Li7d715a62008-02-25 09:46:41 +0800876}
877
878static ssize_t clk_ctl_show(struct device *dev,
879 struct device_attribute *attr,
880 char *buf)
881{
882 struct pci_dev *pci_device = to_pci_dev(dev);
883 struct pcie_link_state *link_state = pci_device->link_state;
884
Kenji Kaneshige4d246e42009-05-13 12:15:38 +0900885 return sprintf(buf, "%d\n", link_state->clkpm_enabled);
Shaohua Li7d715a62008-02-25 09:46:41 +0800886}
887
888static ssize_t clk_ctl_store(struct device *dev,
889 struct device_attribute *attr,
890 const char *buf,
891 size_t n)
892{
Kenji Kaneshige430842e2009-05-13 12:20:10 +0900893 struct pci_dev *pdev = to_pci_dev(dev);
Chris J Arges94a90312014-12-05 17:02:42 -0600894 bool state;
Shaohua Li7d715a62008-02-25 09:46:41 +0800895
Chris J Arges94a90312014-12-05 17:02:42 -0600896 if (strtobool(buf, &state))
Shaohua Li7d715a62008-02-25 09:46:41 +0800897 return -EINVAL;
Shaohua Li7d715a62008-02-25 09:46:41 +0800898
899 down_read(&pci_bus_sem);
900 mutex_lock(&aspm_lock);
Chris J Arges94a90312014-12-05 17:02:42 -0600901 pcie_set_clkpm_nocheck(pdev->link_state, state);
Shaohua Li7d715a62008-02-25 09:46:41 +0800902 mutex_unlock(&aspm_lock);
903 up_read(&pci_bus_sem);
904
905 return n;
906}
907
908static DEVICE_ATTR(link_state, 0644, link_state_show, link_state_store);
909static DEVICE_ATTR(clk_ctl, 0644, clk_ctl_show, clk_ctl_store);
910
911static char power_group[] = "power";
912void pcie_aspm_create_sysfs_dev_files(struct pci_dev *pdev)
913{
914 struct pcie_link_state *link_state = pdev->link_state;
915
Yijing Wangf9b8cd72015-05-19 11:41:34 +0800916 if (!link_state)
Shaohua Li7d715a62008-02-25 09:46:41 +0800917 return;
918
Kenji Kaneshige80bfdbe2009-05-13 12:12:43 +0900919 if (link_state->aspm_support)
Shaohua Li7d715a62008-02-25 09:46:41 +0800920 sysfs_add_file_to_group(&pdev->dev.kobj,
921 &dev_attr_link_state.attr, power_group);
Kenji Kaneshige4d246e42009-05-13 12:15:38 +0900922 if (link_state->clkpm_capable)
Shaohua Li7d715a62008-02-25 09:46:41 +0800923 sysfs_add_file_to_group(&pdev->dev.kobj,
924 &dev_attr_clk_ctl.attr, power_group);
925}
926
927void pcie_aspm_remove_sysfs_dev_files(struct pci_dev *pdev)
928{
929 struct pcie_link_state *link_state = pdev->link_state;
930
Yijing Wangf9b8cd72015-05-19 11:41:34 +0800931 if (!link_state)
Shaohua Li7d715a62008-02-25 09:46:41 +0800932 return;
933
Kenji Kaneshige80bfdbe2009-05-13 12:12:43 +0900934 if (link_state->aspm_support)
Shaohua Li7d715a62008-02-25 09:46:41 +0800935 sysfs_remove_file_from_group(&pdev->dev.kobj,
936 &dev_attr_link_state.attr, power_group);
Kenji Kaneshige4d246e42009-05-13 12:15:38 +0900937 if (link_state->clkpm_capable)
Shaohua Li7d715a62008-02-25 09:46:41 +0800938 sysfs_remove_file_from_group(&pdev->dev.kobj,
939 &dev_attr_clk_ctl.attr, power_group);
940}
941#endif
942
943static int __init pcie_aspm_disable(char *str)
944{
Shaohua Lid6d38572008-07-23 10:32:42 +0800945 if (!strcmp(str, "off")) {
Matthew Garrett3c076352011-11-10 16:38:33 -0500946 aspm_policy = POLICY_DEFAULT;
Shaohua Lid6d38572008-07-23 10:32:42 +0800947 aspm_disabled = 1;
Rafael J. Wysocki8b8bae92011-03-05 13:21:51 +0100948 aspm_support_enabled = false;
Shaohua Lid6d38572008-07-23 10:32:42 +0800949 printk(KERN_INFO "PCIe ASPM is disabled\n");
950 } else if (!strcmp(str, "force")) {
951 aspm_force = 1;
Michael Witten8072ba12011-06-28 06:15:05 +0000952 printk(KERN_INFO "PCIe ASPM is forcibly enabled\n");
Shaohua Lid6d38572008-07-23 10:32:42 +0800953 }
Shaohua Li7d715a62008-02-25 09:46:41 +0800954 return 1;
955}
956
Shaohua Lid6d38572008-07-23 10:32:42 +0800957__setup("pcie_aspm=", pcie_aspm_disable);
Shaohua Li7d715a62008-02-25 09:46:41 +0800958
Shaohua Li5fde2442008-07-23 10:32:24 +0800959void pcie_no_aspm(void)
960{
Matthew Garrett3c076352011-11-10 16:38:33 -0500961 /*
962 * Disabling ASPM is intended to prevent the kernel from modifying
963 * existing hardware state, not to clear existing state. To that end:
964 * (a) set policy to POLICY_DEFAULT in order to avoid changing state
965 * (b) prevent userspace from changing policy
966 */
967 if (!aspm_force) {
968 aspm_policy = POLICY_DEFAULT;
Shaohua Lid6d38572008-07-23 10:32:42 +0800969 aspm_disabled = 1;
Matthew Garrett3c076352011-11-10 16:38:33 -0500970 }
Shaohua Li5fde2442008-07-23 10:32:24 +0800971}
972
Rafael J. Wysocki8b8bae92011-03-05 13:21:51 +0100973bool pcie_aspm_support_enabled(void)
974{
975 return aspm_support_enabled;
976}
977EXPORT_SYMBOL(pcie_aspm_support_enabled);