blob: 832b8c8f99ec4f3a98f6ff3933cb1f00c3cdd70b [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);
Stefan Mätjed0a3f252019-03-29 18:07:35 +0100184 if (parent->clear_retrain_link) {
185 /*
186 * Due to an erratum in some devices the Retrain Link bit
187 * needs to be cleared again manually to allow the link
188 * training to succeed.
189 */
190 reg16 &= ~PCI_EXP_LNKCTL_RL;
191 pcie_capability_write_word(parent, PCI_EXP_LNKCTL, reg16);
192 }
Stefan Mätje1c38a7b2019-03-29 18:07:34 +0100193
194 /* Wait for link training end. Break out after waiting for timeout */
195 start_jiffies = jiffies;
196 for (;;) {
197 pcie_capability_read_word(parent, PCI_EXP_LNKSTA, &reg16);
198 if (!(reg16 & PCI_EXP_LNKSTA_LT))
199 break;
200 if (time_after(jiffies, start_jiffies + LINK_RETRAIN_TIMEOUT))
201 break;
202 msleep(1);
203 }
204 return !(reg16 & PCI_EXP_LNKSTA_LT);
205}
206
Shaohua Li7d715a62008-02-25 09:46:41 +0800207/*
208 * pcie_aspm_configure_common_clock: check if the 2 ends of a link
209 * could use common clock. If they are, configure them to use the
210 * common clock. That will reduce the ASPM state exit latency.
211 */
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900212static void pcie_aspm_configure_common_clock(struct pcie_link_state *link)
Shaohua Li7d715a62008-02-25 09:46:41 +0800213{
Jiang Liuf12eb722012-07-24 17:20:12 +0800214 int same_clock = 1;
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900215 u16 reg16, parent_reg, child_reg[8];
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900216 struct pci_dev *child, *parent = link->pdev;
217 struct pci_bus *linkbus = parent->subordinate;
Shaohua Li7d715a62008-02-25 09:46:41 +0800218 /*
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900219 * All functions of a slot should have the same Slot Clock
Shaohua Li7d715a62008-02-25 09:46:41 +0800220 * Configuration, so just check one function
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900221 */
222 child = list_entry(linkbus->devices.next, struct pci_dev, bus_list);
Kenji Kaneshige8b064772009-11-11 14:36:52 +0900223 BUG_ON(!pci_is_pcie(child));
Shaohua Li7d715a62008-02-25 09:46:41 +0800224
225 /* Check downstream component if bit Slot Clock Configuration is 1 */
Jiang Liuf12eb722012-07-24 17:20:12 +0800226 pcie_capability_read_word(child, PCI_EXP_LNKSTA, &reg16);
Shaohua Li7d715a62008-02-25 09:46:41 +0800227 if (!(reg16 & PCI_EXP_LNKSTA_SLC))
228 same_clock = 0;
229
230 /* Check upstream component if bit Slot Clock Configuration is 1 */
Jiang Liuf12eb722012-07-24 17:20:12 +0800231 pcie_capability_read_word(parent, PCI_EXP_LNKSTA, &reg16);
Shaohua Li7d715a62008-02-25 09:46:41 +0800232 if (!(reg16 & PCI_EXP_LNKSTA_SLC))
233 same_clock = 0;
234
235 /* Configure downstream component, all functions */
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900236 list_for_each_entry(child, &linkbus->devices, bus_list) {
Jiang Liuf12eb722012-07-24 17:20:12 +0800237 pcie_capability_read_word(child, PCI_EXP_LNKCTL, &reg16);
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900238 child_reg[PCI_FUNC(child->devfn)] = reg16;
Shaohua Li7d715a62008-02-25 09:46:41 +0800239 if (same_clock)
240 reg16 |= PCI_EXP_LNKCTL_CCC;
241 else
242 reg16 &= ~PCI_EXP_LNKCTL_CCC;
Jiang Liuf12eb722012-07-24 17:20:12 +0800243 pcie_capability_write_word(child, PCI_EXP_LNKCTL, reg16);
Shaohua Li7d715a62008-02-25 09:46:41 +0800244 }
245
246 /* Configure upstream component */
Jiang Liuf12eb722012-07-24 17:20:12 +0800247 pcie_capability_read_word(parent, PCI_EXP_LNKCTL, &reg16);
Thomas Renninger2a42d9d2008-12-09 13:05:09 +0100248 parent_reg = reg16;
Shaohua Li7d715a62008-02-25 09:46:41 +0800249 if (same_clock)
250 reg16 |= PCI_EXP_LNKCTL_CCC;
251 else
252 reg16 &= ~PCI_EXP_LNKCTL_CCC;
Jiang Liuf12eb722012-07-24 17:20:12 +0800253 pcie_capability_write_word(parent, PCI_EXP_LNKCTL, reg16);
Shaohua Li7d715a62008-02-25 09:46:41 +0800254
Stefan Mätje1c38a7b2019-03-29 18:07:34 +0100255 if (pcie_retrain_link(link))
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900256 return;
257
258 /* Training failed. Restore common clock configurations */
Joe Perches438be3c2012-10-28 01:05:49 -0700259 dev_err(&parent->dev, "ASPM: Could not configure common clock\n");
Jiang Liuf12eb722012-07-24 17:20:12 +0800260 list_for_each_entry(child, &linkbus->devices, bus_list)
261 pcie_capability_write_word(child, PCI_EXP_LNKCTL,
262 child_reg[PCI_FUNC(child->devfn)]);
263 pcie_capability_write_word(parent, PCI_EXP_LNKCTL, parent_reg);
Shaohua Li7d715a62008-02-25 09:46:41 +0800264}
265
Kenji Kaneshige5e0eaa72009-05-13 12:21:48 +0900266/* Convert L0s latency encoding to ns */
267static u32 calc_l0s_latency(u32 encoding)
Shaohua Li7d715a62008-02-25 09:46:41 +0800268{
Kenji Kaneshige5e0eaa72009-05-13 12:21:48 +0900269 if (encoding == 0x7)
270 return (5 * 1000); /* > 4us */
271 return (64 << encoding);
Shaohua Li7d715a62008-02-25 09:46:41 +0800272}
273
Kenji Kaneshige5e0eaa72009-05-13 12:21:48 +0900274/* Convert L0s acceptable latency encoding to ns */
275static u32 calc_l0s_acceptable(u32 encoding)
Shaohua Li7d715a62008-02-25 09:46:41 +0800276{
Kenji Kaneshige5e0eaa72009-05-13 12:21:48 +0900277 if (encoding == 0x7)
278 return -1U;
279 return (64 << encoding);
280}
Shaohua Li7d715a62008-02-25 09:46:41 +0800281
Kenji Kaneshige5e0eaa72009-05-13 12:21:48 +0900282/* Convert L1 latency encoding to ns */
283static u32 calc_l1_latency(u32 encoding)
284{
285 if (encoding == 0x7)
286 return (65 * 1000); /* > 64us */
287 return (1000 << encoding);
288}
289
290/* Convert L1 acceptable latency encoding to ns */
291static u32 calc_l1_acceptable(u32 encoding)
292{
293 if (encoding == 0x7)
294 return -1U;
295 return (1000 << encoding);
Shaohua Li7d715a62008-02-25 09:46:41 +0800296}
297
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900298struct aspm_register_info {
299 u32 support:2;
300 u32 enabled:2;
301 u32 latency_encoding_l0s;
302 u32 latency_encoding_l1;
303};
304
305static void pcie_get_aspm_reg(struct pci_dev *pdev,
306 struct aspm_register_info *info)
Shaohua Li7d715a62008-02-25 09:46:41 +0800307{
Shaohua Li7d715a62008-02-25 09:46:41 +0800308 u16 reg16;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900309 u32 reg32;
Shaohua Li7d715a62008-02-25 09:46:41 +0800310
Jiang Liuf12eb722012-07-24 17:20:12 +0800311 pcie_capability_read_dword(pdev, PCI_EXP_LNKCAP, &reg32);
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900312 info->support = (reg32 & PCI_EXP_LNKCAP_ASPMS) >> 10;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900313 info->latency_encoding_l0s = (reg32 & PCI_EXP_LNKCAP_L0SEL) >> 12;
314 info->latency_encoding_l1 = (reg32 & PCI_EXP_LNKCAP_L1EL) >> 15;
Jiang Liuf12eb722012-07-24 17:20:12 +0800315 pcie_capability_read_word(pdev, PCI_EXP_LNKCTL, &reg16);
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900316 info->enabled = reg16 & PCI_EXP_LNKCTL_ASPMC;
Shaohua Li7d715a62008-02-25 09:46:41 +0800317}
318
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900319static void pcie_aspm_check_latency(struct pci_dev *endpoint)
320{
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900321 u32 latency, l1_switch_latency = 0;
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900322 struct aspm_latency *acceptable;
323 struct pcie_link_state *link;
324
325 /* Device not in D0 doesn't need latency check */
326 if ((endpoint->current_state != PCI_D0) &&
327 (endpoint->current_state != PCI_UNKNOWN))
328 return;
329
330 link = endpoint->bus->self->link_state;
331 acceptable = &link->acceptable[PCI_FUNC(endpoint->devfn)];
332
333 while (link) {
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900334 /* Check upstream direction L0s latency */
335 if ((link->aspm_capable & ASPM_STATE_L0S_UP) &&
336 (link->latency_up.l0s > acceptable->l0s))
337 link->aspm_capable &= ~ASPM_STATE_L0S_UP;
338
339 /* Check downstream direction L0s latency */
340 if ((link->aspm_capable & ASPM_STATE_L0S_DW) &&
341 (link->latency_dw.l0s > acceptable->l0s))
342 link->aspm_capable &= ~ASPM_STATE_L0S_DW;
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900343 /*
344 * Check L1 latency.
345 * Every switch on the path to root complex need 1
346 * more microsecond for L1. Spec doesn't mention L0s.
347 */
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900348 latency = max_t(u32, link->latency_up.l1, link->latency_dw.l1);
349 if ((link->aspm_capable & ASPM_STATE_L1) &&
350 (latency + l1_switch_latency > acceptable->l1))
351 link->aspm_capable &= ~ASPM_STATE_L1;
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900352 l1_switch_latency += 1000;
353
354 link = link->parent;
355 }
356}
357
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900358static void pcie_aspm_cap_init(struct pcie_link_state *link, int blacklist)
Shaohua Li7d715a62008-02-25 09:46:41 +0800359{
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900360 struct pci_dev *child, *parent = link->pdev;
361 struct pci_bus *linkbus = parent->subordinate;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900362 struct aspm_register_info upreg, dwreg;
Shaohua Li7d715a62008-02-25 09:46:41 +0800363
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900364 if (blacklist) {
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900365 /* Set enabled/disable so that we will disable ASPM later */
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900366 link->aspm_enabled = ASPM_STATE_ALL;
367 link->aspm_disable = ASPM_STATE_ALL;
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900368 return;
369 }
370
371 /* Configure common clock before checking latencies */
372 pcie_aspm_configure_common_clock(link);
373
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900374 /* Get upstream/downstream components' register state */
375 pcie_get_aspm_reg(parent, &upreg);
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900376 child = list_entry(linkbus->devices.next, struct pci_dev, bus_list);
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900377 pcie_get_aspm_reg(child, &dwreg);
378
379 /*
380 * Setup L0s state
381 *
382 * Note that we must not enable L0s in either direction on a
383 * given link unless components on both sides of the link each
384 * support L0s.
385 */
386 if (dwreg.support & upreg.support & PCIE_LINK_STATE_L0S)
387 link->aspm_support |= ASPM_STATE_L0S;
388 if (dwreg.enabled & PCIE_LINK_STATE_L0S)
389 link->aspm_enabled |= ASPM_STATE_L0S_UP;
390 if (upreg.enabled & PCIE_LINK_STATE_L0S)
391 link->aspm_enabled |= ASPM_STATE_L0S_DW;
392 link->latency_up.l0s = calc_l0s_latency(upreg.latency_encoding_l0s);
393 link->latency_dw.l0s = calc_l0s_latency(dwreg.latency_encoding_l0s);
394
395 /* Setup L1 state */
396 if (upreg.support & dwreg.support & PCIE_LINK_STATE_L1)
397 link->aspm_support |= ASPM_STATE_L1;
398 if (upreg.enabled & dwreg.enabled & PCIE_LINK_STATE_L1)
399 link->aspm_enabled |= ASPM_STATE_L1;
400 link->latency_up.l1 = calc_l1_latency(upreg.latency_encoding_l1);
401 link->latency_dw.l1 = calc_l1_latency(dwreg.latency_encoding_l1);
Kenji Kaneshige80bfdbe2009-05-13 12:12:43 +0900402
Kenji Kaneshigeb127bd52009-08-19 10:57:31 +0900403 /* Save default state */
404 link->aspm_default = link->aspm_enabled;
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900405
406 /* Setup initial capable state. Will be updated later */
407 link->aspm_capable = link->aspm_support;
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900408 /*
409 * If the downstream component has pci bridge function, don't
410 * do ASPM for now.
411 */
412 list_for_each_entry(child, &linkbus->devices, bus_list) {
Yijing Wang62f87c02012-07-24 17:20:03 +0800413 if (pci_pcie_type(child) == PCI_EXP_TYPE_PCI_BRIDGE) {
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900414 link->aspm_disable = ASPM_STATE_ALL;
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900415 break;
416 }
417 }
Kenji Kaneshigeb127bd52009-08-19 10:57:31 +0900418
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900419 /* Get and check endpoint acceptable latencies */
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900420 list_for_each_entry(child, &linkbus->devices, bus_list) {
Kenji Kaneshige5e0eaa72009-05-13 12:21:48 +0900421 u32 reg32, encoding;
Kenji Kaneshigeb6c2e542009-05-13 12:14:58 +0900422 struct aspm_latency *acceptable =
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900423 &link->acceptable[PCI_FUNC(child->devfn)];
Shaohua Li7d715a62008-02-25 09:46:41 +0800424
Yijing Wang62f87c02012-07-24 17:20:03 +0800425 if (pci_pcie_type(child) != PCI_EXP_TYPE_ENDPOINT &&
426 pci_pcie_type(child) != PCI_EXP_TYPE_LEG_END)
Shaohua Li7d715a62008-02-25 09:46:41 +0800427 continue;
428
Jiang Liuf12eb722012-07-24 17:20:12 +0800429 pcie_capability_read_dword(child, PCI_EXP_DEVCAP, &reg32);
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900430 /* Calculate endpoint L0s acceptable latency */
Kenji Kaneshige5e0eaa72009-05-13 12:21:48 +0900431 encoding = (reg32 & PCI_EXP_DEVCAP_L0S) >> 6;
432 acceptable->l0s = calc_l0s_acceptable(encoding);
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900433 /* Calculate endpoint L1 acceptable latency */
434 encoding = (reg32 & PCI_EXP_DEVCAP_L1) >> 9;
435 acceptable->l1 = calc_l1_acceptable(encoding);
436
437 pcie_aspm_check_latency(child);
Shaohua Li7d715a62008-02-25 09:46:41 +0800438 }
439}
440
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900441static void pcie_config_aspm_dev(struct pci_dev *pdev, u32 val)
Shaohua Li7d715a62008-02-25 09:46:41 +0800442{
Bjorn Helgaas75083202012-12-05 13:51:19 -0700443 pcie_capability_clear_and_set_word(pdev, PCI_EXP_LNKCTL,
444 PCI_EXP_LNKCTL_ASPMC, val);
Shaohua Li7d715a62008-02-25 09:46:41 +0800445}
446
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900447static void pcie_config_aspm_link(struct pcie_link_state *link, u32 state)
Shaohua Li7d715a62008-02-25 09:46:41 +0800448{
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900449 u32 upstream = 0, dwstream = 0;
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900450 struct pci_dev *child, *parent = link->pdev;
451 struct pci_bus *linkbus = parent->subordinate;
Shaohua Li7d715a62008-02-25 09:46:41 +0800452
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900453 /* Nothing to do if the link is already in the requested state */
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900454 state &= (link->aspm_capable & ~link->aspm_disable);
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900455 if (link->aspm_enabled == state)
456 return;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900457 /* Convert ASPM state to upstream/downstream ASPM register state */
458 if (state & ASPM_STATE_L0S_UP)
Bjorn Helgaas75083202012-12-05 13:51:19 -0700459 dwstream |= PCI_EXP_LNKCTL_ASPM_L0S;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900460 if (state & ASPM_STATE_L0S_DW)
Bjorn Helgaas75083202012-12-05 13:51:19 -0700461 upstream |= PCI_EXP_LNKCTL_ASPM_L0S;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900462 if (state & ASPM_STATE_L1) {
Bjorn Helgaas75083202012-12-05 13:51:19 -0700463 upstream |= PCI_EXP_LNKCTL_ASPM_L1;
464 dwstream |= PCI_EXP_LNKCTL_ASPM_L1;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900465 }
Shaohua Li7d715a62008-02-25 09:46:41 +0800466 /*
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900467 * Spec 2.0 suggests all functions should be configured the
468 * same setting for ASPM. Enabling ASPM L1 should be done in
469 * upstream component first and then downstream, and vice
470 * versa for disabling ASPM L1. Spec doesn't mention L0S.
Shaohua Li7d715a62008-02-25 09:46:41 +0800471 */
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900472 if (state & ASPM_STATE_L1)
473 pcie_config_aspm_dev(parent, upstream);
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900474 list_for_each_entry(child, &linkbus->devices, bus_list)
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900475 pcie_config_aspm_dev(child, dwstream);
476 if (!(state & ASPM_STATE_L1))
477 pcie_config_aspm_dev(parent, upstream);
Shaohua Li7d715a62008-02-25 09:46:41 +0800478
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900479 link->aspm_enabled = state;
Shaohua Li7d715a62008-02-25 09:46:41 +0800480}
481
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900482static void pcie_config_aspm_path(struct pcie_link_state *link)
Shaohua Li7d715a62008-02-25 09:46:41 +0800483{
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900484 while (link) {
485 pcie_config_aspm_link(link, policy_to_aspm_state(link));
486 link = link->parent;
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800487 }
Shaohua Li7d715a62008-02-25 09:46:41 +0800488}
489
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900490static void free_link_state(struct pcie_link_state *link)
Shaohua Li7d715a62008-02-25 09:46:41 +0800491{
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900492 link->pdev->link_state = NULL;
493 kfree(link);
Shaohua Li7d715a62008-02-25 09:46:41 +0800494}
495
Shaohua Liddc97532008-05-21 16:58:40 +0800496static int pcie_aspm_sanity_check(struct pci_dev *pdev)
497{
Kenji Kaneshige36475842009-05-13 12:23:09 +0900498 struct pci_dev *child;
Shaohua Li149e1632008-07-23 10:32:31 +0800499 u32 reg32;
Matthew Garrett2f671e22010-12-06 14:00:56 -0500500
Shaohua Liddc97532008-05-21 16:58:40 +0800501 /*
Stefan Assmann45e829e2009-12-03 06:49:24 -0500502 * Some functions in a slot might not all be PCIe functions,
Kenji Kaneshige36475842009-05-13 12:23:09 +0900503 * very strange. Disable ASPM for the whole slot
Shaohua Liddc97532008-05-21 16:58:40 +0800504 */
Kenji Kaneshige36475842009-05-13 12:23:09 +0900505 list_for_each_entry(child, &pdev->subordinate->devices, bus_list) {
Jiang Liuf12eb722012-07-24 17:20:12 +0800506 if (!pci_is_pcie(child))
Shaohua Liddc97532008-05-21 16:58:40 +0800507 return -EINVAL;
Matthew Garrettc9651e72012-03-27 10:17:41 -0400508
509 /*
510 * If ASPM is disabled then we're not going to change
511 * the BIOS state. It's safe to continue even if it's a
512 * pre-1.1 device
513 */
514
515 if (aspm_disabled)
516 continue;
517
Shaohua Li149e1632008-07-23 10:32:31 +0800518 /*
519 * Disable ASPM for pre-1.1 PCIe device, we follow MS to use
520 * RBER bit to determine if a function is 1.1 version device
521 */
Jiang Liuf12eb722012-07-24 17:20:12 +0800522 pcie_capability_read_dword(child, PCI_EXP_DEVCAP, &reg32);
Sitsofe Wheelere1f4f592008-09-16 14:27:13 +0100523 if (!(reg32 & PCI_EXP_DEVCAP_RBER) && !aspm_force) {
Joe Perches438be3c2012-10-28 01:05:49 -0700524 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 +0800525 return -EINVAL;
526 }
Shaohua Liddc97532008-05-21 16:58:40 +0800527 }
528 return 0;
529}
530
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900531static struct pcie_link_state *alloc_pcie_link_state(struct pci_dev *pdev)
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900532{
533 struct pcie_link_state *link;
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900534
535 link = kzalloc(sizeof(*link), GFP_KERNEL);
536 if (!link)
537 return NULL;
Bjorn Helgaas610c2b72017-01-27 15:00:45 -0600538
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900539 INIT_LIST_HEAD(&link->sibling);
540 INIT_LIST_HEAD(&link->children);
541 INIT_LIST_HEAD(&link->link);
542 link->pdev = pdev;
Bjorn Helgaas610c2b72017-01-27 15:00:45 -0600543
544 /*
545 * Root Ports and PCI/PCI-X to PCIe Bridges are roots of PCIe
Ard Biesheuvel6213c712017-10-02 15:08:40 +0100546 * hierarchies. Note that some PCIe host implementations omit
547 * the root ports entirely, in which case a downstream port on
548 * a switch may become the root of the link state chain for all
549 * its subordinate endpoints.
Bjorn Helgaas610c2b72017-01-27 15:00:45 -0600550 */
551 if (pci_pcie_type(pdev) == PCI_EXP_TYPE_ROOT_PORT ||
Ard Biesheuvel6213c712017-10-02 15:08:40 +0100552 pci_pcie_type(pdev) == PCI_EXP_TYPE_PCIE_BRIDGE ||
553 !pdev->bus->parent->self) {
Bjorn Helgaas610c2b72017-01-27 15:00:45 -0600554 link->root = link;
555 } else {
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900556 struct pcie_link_state *parent;
Bjorn Helgaas610c2b72017-01-27 15:00:45 -0600557
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900558 parent = pdev->bus->parent->self->link_state;
559 if (!parent) {
560 kfree(link);
561 return NULL;
562 }
Bjorn Helgaas610c2b72017-01-27 15:00:45 -0600563
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900564 link->parent = parent;
Bjorn Helgaas610c2b72017-01-27 15:00:45 -0600565 link->root = link->parent->root;
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900566 list_add(&link->link, &parent->children);
567 }
Kenji Kaneshige5c92ffb2009-05-13 12:23:57 +0900568
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900569 list_add(&link->sibling, &link_list);
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900570 pdev->link_state = link;
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900571 return link;
572}
573
Shaohua Li7d715a62008-02-25 09:46:41 +0800574/*
575 * pcie_aspm_init_link_state: Initiate PCI express link state.
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700576 * It is called after the pcie and its children devices are scanned.
Shaohua Li7d715a62008-02-25 09:46:41 +0800577 * @pdev: the root port or switch downstream port
578 */
579void pcie_aspm_init_link_state(struct pci_dev *pdev)
580{
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900581 struct pcie_link_state *link;
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900582 int blacklist = !!pcie_aspm_sanity_check(pdev);
Shaohua Li7d715a62008-02-25 09:46:41 +0800583
Joe Lawrencea26d5ec2013-01-15 15:31:28 -0500584 if (!aspm_support_enabled)
585 return;
586
Yijing Wangc8fc9332015-05-21 15:05:03 +0800587 if (pdev->link_state)
Shaohua Li7d715a62008-02-25 09:46:41 +0800588 return;
Yijing Wangc8fc9332015-05-21 15:05:03 +0800589
590 /*
591 * We allocate pcie_link_state for the component on the upstream
592 * end of a Link, so there's nothing to do unless this device has a
593 * Link on its secondary side.
594 */
595 if (!pdev->has_secondary_link)
Shaohua Li7d715a62008-02-25 09:46:41 +0800596 return;
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900597
Shaohua Li8e822df2009-06-08 09:27:25 +0800598 /* VIA has a strange chipset, root port is under a bridge */
Yijing Wang62f87c02012-07-24 17:20:03 +0800599 if (pci_pcie_type(pdev) == PCI_EXP_TYPE_ROOT_PORT &&
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900600 pdev->bus->self)
Shaohua Li8e822df2009-06-08 09:27:25 +0800601 return;
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900602
Shaohua Li7d715a62008-02-25 09:46:41 +0800603 down_read(&pci_bus_sem);
604 if (list_empty(&pdev->subordinate->devices))
605 goto out;
606
Shaohua Li7d715a62008-02-25 09:46:41 +0800607 mutex_lock(&aspm_lock);
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900608 link = alloc_pcie_link_state(pdev);
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900609 if (!link)
610 goto unlock;
611 /*
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900612 * Setup initial ASPM state. Note that we need to configure
613 * upstream links also because capable state of them can be
614 * update through pcie_aspm_cap_init().
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900615 */
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900616 pcie_aspm_cap_init(link, blacklist);
Shaohua Li7d715a62008-02-25 09:46:41 +0800617
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900618 /* Setup initial Clock PM state */
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900619 pcie_clkpm_cap_init(link, blacklist);
Matthew Garrett41cd7662010-06-09 16:05:07 -0400620
621 /*
622 * At this stage drivers haven't had an opportunity to change the
623 * link policy setting. Enabling ASPM on broken hardware can cripple
624 * it even before the driver has had a chance to disable ASPM, so
625 * default to a safe level right now. If we're enabling ASPM beyond
626 * the BIOS's expectation, we'll do so once pci_enable_device() is
627 * called.
628 */
Matthew Garrett3c076352011-11-10 16:38:33 -0500629 if (aspm_policy != POLICY_POWERSAVE) {
Matthew Garrett41cd7662010-06-09 16:05:07 -0400630 pcie_config_aspm_path(link);
631 pcie_set_clkpm(link, policy_to_clkpm_state(link));
632 }
633
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900634unlock:
Shaohua Li7d715a62008-02-25 09:46:41 +0800635 mutex_unlock(&aspm_lock);
636out:
637 up_read(&pci_bus_sem);
638}
639
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900640/* Recheck latencies and update aspm_capable for links under the root */
641static void pcie_update_aspm_capable(struct pcie_link_state *root)
642{
643 struct pcie_link_state *link;
644 BUG_ON(root->parent);
645 list_for_each_entry(link, &link_list, sibling) {
646 if (link->root != root)
647 continue;
648 link->aspm_capable = link->aspm_support;
649 }
650 list_for_each_entry(link, &link_list, sibling) {
651 struct pci_dev *child;
652 struct pci_bus *linkbus = link->pdev->subordinate;
653 if (link->root != root)
654 continue;
655 list_for_each_entry(child, &linkbus->devices, bus_list) {
Yijing Wang62f87c02012-07-24 17:20:03 +0800656 if ((pci_pcie_type(child) != PCI_EXP_TYPE_ENDPOINT) &&
657 (pci_pcie_type(child) != PCI_EXP_TYPE_LEG_END))
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900658 continue;
659 pcie_aspm_check_latency(child);
660 }
661 }
662}
663
Shaohua Li7d715a62008-02-25 09:46:41 +0800664/* @pdev: the endpoint device */
665void pcie_aspm_exit_link_state(struct pci_dev *pdev)
666{
667 struct pci_dev *parent = pdev->bus->self;
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900668 struct pcie_link_state *link, *root, *parent_link;
Shaohua Li7d715a62008-02-25 09:46:41 +0800669
Myron Stowe84fb9132013-01-31 16:29:25 -0700670 if (!parent || !parent->link_state)
Shaohua Li7d715a62008-02-25 09:46:41 +0800671 return;
Kenji Kaneshigefc87e912009-08-19 10:58:46 +0900672
Shaohua Li7d715a62008-02-25 09:46:41 +0800673 down_read(&pci_bus_sem);
674 mutex_lock(&aspm_lock);
Shaohua Li7d715a62008-02-25 09:46:41 +0800675 /*
676 * All PCIe functions are in one slot, remove one function will remove
Alex Chiang3419c752009-01-28 14:59:18 -0700677 * the whole slot, so just wait until we are the last function left.
Shaohua Li7d715a62008-02-25 09:46:41 +0800678 */
Alex Chiang3419c752009-01-28 14:59:18 -0700679 if (!list_is_last(&pdev->bus_list, &parent->subordinate->devices))
Shaohua Li7d715a62008-02-25 09:46:41 +0800680 goto out;
681
Kenji Kaneshigefc87e912009-08-19 10:58:46 +0900682 link = parent->link_state;
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900683 root = link->root;
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900684 parent_link = link->parent;
Kenji Kaneshigefc87e912009-08-19 10:58:46 +0900685
Shaohua Li7d715a62008-02-25 09:46:41 +0800686 /* All functions are removed, so just disable ASPM for the link */
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900687 pcie_config_aspm_link(link, 0);
Kenji Kaneshigefc87e912009-08-19 10:58:46 +0900688 list_del(&link->sibling);
689 list_del(&link->link);
Shaohua Li7d715a62008-02-25 09:46:41 +0800690 /* Clock PM is for endpoint device */
Kenji Kaneshigefc87e912009-08-19 10:58:46 +0900691 free_link_state(link);
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900692
693 /* Recheck latencies and configure upstream links */
Kenji Kaneshigeb26a34a2009-11-06 11:25:13 +0900694 if (parent_link) {
695 pcie_update_aspm_capable(root);
696 pcie_config_aspm_path(parent_link);
697 }
Shaohua Li7d715a62008-02-25 09:46:41 +0800698out:
699 mutex_unlock(&aspm_lock);
700 up_read(&pci_bus_sem);
701}
702
703/* @pdev: the root port or switch downstream port */
704void pcie_aspm_pm_state_change(struct pci_dev *pdev)
705{
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900706 struct pcie_link_state *link = pdev->link_state;
Shaohua Li7d715a62008-02-25 09:46:41 +0800707
Yijing Wangf9b8cd72015-05-19 11:41:34 +0800708 if (aspm_disabled || !link)
Shaohua Li7d715a62008-02-25 09:46:41 +0800709 return;
710 /*
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900711 * Devices changed PM state, we should recheck if latency
712 * meets all functions' requirement
Shaohua Li7d715a62008-02-25 09:46:41 +0800713 */
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900714 down_read(&pci_bus_sem);
715 mutex_lock(&aspm_lock);
716 pcie_update_aspm_capable(link->root);
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900717 pcie_config_aspm_path(link);
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900718 mutex_unlock(&aspm_lock);
719 up_read(&pci_bus_sem);
Shaohua Li7d715a62008-02-25 09:46:41 +0800720}
721
Naga Chumbalkar1a680b72011-03-21 03:29:08 +0000722void pcie_aspm_powersave_config_link(struct pci_dev *pdev)
723{
724 struct pcie_link_state *link = pdev->link_state;
725
Yijing Wangf9b8cd72015-05-19 11:41:34 +0800726 if (aspm_disabled || !link)
Naga Chumbalkar1a680b72011-03-21 03:29:08 +0000727 return;
728
729 if (aspm_policy != POLICY_POWERSAVE)
730 return;
731
Naga Chumbalkar1a680b72011-03-21 03:29:08 +0000732 down_read(&pci_bus_sem);
733 mutex_lock(&aspm_lock);
734 pcie_config_aspm_path(link);
735 pcie_set_clkpm(link, policy_to_clkpm_state(link));
736 mutex_unlock(&aspm_lock);
737 up_read(&pci_bus_sem);
738}
739
Bjorn Helgaase127a042015-05-20 12:13:05 -0500740static void __pci_disable_link_state(struct pci_dev *pdev, int state, bool sem)
Shaohua Li7d715a62008-02-25 09:46:41 +0800741{
742 struct pci_dev *parent = pdev->bus->self;
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900743 struct pcie_link_state *link;
Shaohua Li7d715a62008-02-25 09:46:41 +0800744
Matthew Garrett3c076352011-11-10 16:38:33 -0500745 if (!pci_is_pcie(pdev))
746 return;
747
Yijing Wangc8fc9332015-05-21 15:05:03 +0800748 if (pdev->has_secondary_link)
Shaohua Li7d715a62008-02-25 09:46:41 +0800749 parent = pdev;
750 if (!parent || !parent->link_state)
751 return;
752
Bjorn Helgaas2add0ec2013-05-21 10:56:51 -0600753 /*
754 * A driver requested that ASPM be disabled on this device, but
755 * if we don't have permission to manage ASPM (e.g., on ACPI
756 * systems we have to observe the FADT ACPI_FADT_NO_ASPM bit and
757 * the _OSC method), we can't honor that request. Windows has
758 * a similar mechanism using "PciASPMOptOut", which is also
759 * ignored in this situation.
760 */
Bjorn Helgaase127a042015-05-20 12:13:05 -0500761 if (aspm_disabled) {
Bjorn Helgaas2add0ec2013-05-21 10:56:51 -0600762 dev_warn(&pdev->dev, "can't disable ASPM; OS doesn't have ASPM control\n");
763 return;
764 }
765
Yinghai Lu9f728f52011-05-12 17:11:47 -0700766 if (sem)
767 down_read(&pci_bus_sem);
Shaohua Li7d715a62008-02-25 09:46:41 +0800768 mutex_lock(&aspm_lock);
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900769 link = parent->link_state;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900770 if (state & PCIE_LINK_STATE_L0S)
771 link->aspm_disable |= ASPM_STATE_L0S;
772 if (state & PCIE_LINK_STATE_L1)
773 link->aspm_disable |= ASPM_STATE_L1;
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900774 pcie_config_aspm_link(link, policy_to_aspm_state(link));
775
Kenji Kaneshige430842e2009-05-13 12:20:10 +0900776 if (state & PCIE_LINK_STATE_CLKPM) {
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900777 link->clkpm_capable = 0;
778 pcie_set_clkpm(link, 0);
Kenji Kaneshige430842e2009-05-13 12:20:10 +0900779 }
Shaohua Li7d715a62008-02-25 09:46:41 +0800780 mutex_unlock(&aspm_lock);
Yinghai Lu9f728f52011-05-12 17:11:47 -0700781 if (sem)
782 up_read(&pci_bus_sem);
783}
784
785void pci_disable_link_state_locked(struct pci_dev *pdev, int state)
786{
Bjorn Helgaase127a042015-05-20 12:13:05 -0500787 __pci_disable_link_state(pdev, state, false);
Yinghai Lu9f728f52011-05-12 17:11:47 -0700788}
789EXPORT_SYMBOL(pci_disable_link_state_locked);
790
Yijing Wang2dfca872013-05-28 16:03:22 +0800791/**
792 * pci_disable_link_state - Disable device's link state, so the link will
793 * never enter specific states. Note that if the BIOS didn't grant ASPM
794 * control to the OS, this does nothing because we can't touch the LNKCTL
795 * register.
796 *
797 * @pdev: PCI device
798 * @state: ASPM link state to disable
799 */
Yinghai Lu9f728f52011-05-12 17:11:47 -0700800void pci_disable_link_state(struct pci_dev *pdev, int state)
801{
Bjorn Helgaase127a042015-05-20 12:13:05 -0500802 __pci_disable_link_state(pdev, state, true);
Shaohua Li7d715a62008-02-25 09:46:41 +0800803}
804EXPORT_SYMBOL(pci_disable_link_state);
805
Kees Cook24da2c82017-10-17 19:04:42 -0700806static int pcie_aspm_set_policy(const char *val,
807 const struct kernel_param *kp)
Shaohua Li7d715a62008-02-25 09:46:41 +0800808{
809 int i;
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900810 struct pcie_link_state *link;
Shaohua Li7d715a62008-02-25 09:46:41 +0800811
Naga Chumbalkarbbfa3062011-03-21 03:29:14 +0000812 if (aspm_disabled)
813 return -EPERM;
Shaohua Li7d715a62008-02-25 09:46:41 +0800814 for (i = 0; i < ARRAY_SIZE(policy_str); i++)
815 if (!strncmp(val, policy_str[i], strlen(policy_str[i])))
816 break;
817 if (i >= ARRAY_SIZE(policy_str))
818 return -EINVAL;
819 if (i == aspm_policy)
820 return 0;
821
822 down_read(&pci_bus_sem);
823 mutex_lock(&aspm_lock);
824 aspm_policy = i;
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900825 list_for_each_entry(link, &link_list, sibling) {
826 pcie_config_aspm_link(link, policy_to_aspm_state(link));
827 pcie_set_clkpm(link, policy_to_clkpm_state(link));
Shaohua Li7d715a62008-02-25 09:46:41 +0800828 }
829 mutex_unlock(&aspm_lock);
830 up_read(&pci_bus_sem);
831 return 0;
832}
833
Kees Cook24da2c82017-10-17 19:04:42 -0700834static int pcie_aspm_get_policy(char *buffer, const struct kernel_param *kp)
Shaohua Li7d715a62008-02-25 09:46:41 +0800835{
836 int i, cnt = 0;
837 for (i = 0; i < ARRAY_SIZE(policy_str); i++)
838 if (i == aspm_policy)
839 cnt += sprintf(buffer + cnt, "[%s] ", policy_str[i]);
840 else
841 cnt += sprintf(buffer + cnt, "%s ", policy_str[i]);
842 return cnt;
843}
844
845module_param_call(policy, pcie_aspm_set_policy, pcie_aspm_get_policy,
846 NULL, 0644);
847
848#ifdef CONFIG_PCIEASPM_DEBUG
849static ssize_t link_state_show(struct device *dev,
850 struct device_attribute *attr,
851 char *buf)
852{
853 struct pci_dev *pci_device = to_pci_dev(dev);
854 struct pcie_link_state *link_state = pci_device->link_state;
855
Kenji Kaneshige80bfdbe2009-05-13 12:12:43 +0900856 return sprintf(buf, "%d\n", link_state->aspm_enabled);
Shaohua Li7d715a62008-02-25 09:46:41 +0800857}
858
859static ssize_t link_state_store(struct device *dev,
860 struct device_attribute *attr,
861 const char *buf,
862 size_t n)
863{
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900864 struct pci_dev *pdev = to_pci_dev(dev);
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900865 struct pcie_link_state *link, *root = pdev->link_state->root;
Andy Lutomirski57d86a02015-11-19 08:05:35 -0800866 u32 state;
Shaohua Li7d715a62008-02-25 09:46:41 +0800867
Naga Chumbalkarbbfa3062011-03-21 03:29:14 +0000868 if (aspm_disabled)
869 return -EPERM;
Shaohua Li7d715a62008-02-25 09:46:41 +0800870
Andy Lutomirski57d86a02015-11-19 08:05:35 -0800871 if (kstrtouint(buf, 10, &state))
872 return -EINVAL;
873 if ((state & ~ASPM_STATE_ALL) != 0)
874 return -EINVAL;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900875
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900876 down_read(&pci_bus_sem);
877 mutex_lock(&aspm_lock);
878 list_for_each_entry(link, &link_list, sibling) {
879 if (link->root != root)
880 continue;
881 pcie_config_aspm_link(link, state);
882 }
883 mutex_unlock(&aspm_lock);
884 up_read(&pci_bus_sem);
885 return n;
Shaohua Li7d715a62008-02-25 09:46:41 +0800886}
887
888static ssize_t clk_ctl_show(struct device *dev,
889 struct device_attribute *attr,
890 char *buf)
891{
892 struct pci_dev *pci_device = to_pci_dev(dev);
893 struct pcie_link_state *link_state = pci_device->link_state;
894
Kenji Kaneshige4d246e42009-05-13 12:15:38 +0900895 return sprintf(buf, "%d\n", link_state->clkpm_enabled);
Shaohua Li7d715a62008-02-25 09:46:41 +0800896}
897
898static ssize_t clk_ctl_store(struct device *dev,
899 struct device_attribute *attr,
900 const char *buf,
901 size_t n)
902{
Kenji Kaneshige430842e2009-05-13 12:20:10 +0900903 struct pci_dev *pdev = to_pci_dev(dev);
Chris J Arges94a90312014-12-05 17:02:42 -0600904 bool state;
Shaohua Li7d715a62008-02-25 09:46:41 +0800905
Chris J Arges94a90312014-12-05 17:02:42 -0600906 if (strtobool(buf, &state))
Shaohua Li7d715a62008-02-25 09:46:41 +0800907 return -EINVAL;
Shaohua Li7d715a62008-02-25 09:46:41 +0800908
909 down_read(&pci_bus_sem);
910 mutex_lock(&aspm_lock);
Chris J Arges94a90312014-12-05 17:02:42 -0600911 pcie_set_clkpm_nocheck(pdev->link_state, state);
Shaohua Li7d715a62008-02-25 09:46:41 +0800912 mutex_unlock(&aspm_lock);
913 up_read(&pci_bus_sem);
914
915 return n;
916}
917
918static DEVICE_ATTR(link_state, 0644, link_state_show, link_state_store);
919static DEVICE_ATTR(clk_ctl, 0644, clk_ctl_show, clk_ctl_store);
920
921static char power_group[] = "power";
922void pcie_aspm_create_sysfs_dev_files(struct pci_dev *pdev)
923{
924 struct pcie_link_state *link_state = pdev->link_state;
925
Yijing Wangf9b8cd72015-05-19 11:41:34 +0800926 if (!link_state)
Shaohua Li7d715a62008-02-25 09:46:41 +0800927 return;
928
Kenji Kaneshige80bfdbe2009-05-13 12:12:43 +0900929 if (link_state->aspm_support)
Shaohua Li7d715a62008-02-25 09:46:41 +0800930 sysfs_add_file_to_group(&pdev->dev.kobj,
931 &dev_attr_link_state.attr, power_group);
Kenji Kaneshige4d246e42009-05-13 12:15:38 +0900932 if (link_state->clkpm_capable)
Shaohua Li7d715a62008-02-25 09:46:41 +0800933 sysfs_add_file_to_group(&pdev->dev.kobj,
934 &dev_attr_clk_ctl.attr, power_group);
935}
936
937void pcie_aspm_remove_sysfs_dev_files(struct pci_dev *pdev)
938{
939 struct pcie_link_state *link_state = pdev->link_state;
940
Yijing Wangf9b8cd72015-05-19 11:41:34 +0800941 if (!link_state)
Shaohua Li7d715a62008-02-25 09:46:41 +0800942 return;
943
Kenji Kaneshige80bfdbe2009-05-13 12:12:43 +0900944 if (link_state->aspm_support)
Shaohua Li7d715a62008-02-25 09:46:41 +0800945 sysfs_remove_file_from_group(&pdev->dev.kobj,
946 &dev_attr_link_state.attr, power_group);
Kenji Kaneshige4d246e42009-05-13 12:15:38 +0900947 if (link_state->clkpm_capable)
Shaohua Li7d715a62008-02-25 09:46:41 +0800948 sysfs_remove_file_from_group(&pdev->dev.kobj,
949 &dev_attr_clk_ctl.attr, power_group);
950}
951#endif
952
953static int __init pcie_aspm_disable(char *str)
954{
Shaohua Lid6d38572008-07-23 10:32:42 +0800955 if (!strcmp(str, "off")) {
Matthew Garrett3c076352011-11-10 16:38:33 -0500956 aspm_policy = POLICY_DEFAULT;
Shaohua Lid6d38572008-07-23 10:32:42 +0800957 aspm_disabled = 1;
Rafael J. Wysocki8b8bae92011-03-05 13:21:51 +0100958 aspm_support_enabled = false;
Shaohua Lid6d38572008-07-23 10:32:42 +0800959 printk(KERN_INFO "PCIe ASPM is disabled\n");
960 } else if (!strcmp(str, "force")) {
961 aspm_force = 1;
Michael Witten8072ba12011-06-28 06:15:05 +0000962 printk(KERN_INFO "PCIe ASPM is forcibly enabled\n");
Shaohua Lid6d38572008-07-23 10:32:42 +0800963 }
Shaohua Li7d715a62008-02-25 09:46:41 +0800964 return 1;
965}
966
Shaohua Lid6d38572008-07-23 10:32:42 +0800967__setup("pcie_aspm=", pcie_aspm_disable);
Shaohua Li7d715a62008-02-25 09:46:41 +0800968
Shaohua Li5fde2442008-07-23 10:32:24 +0800969void pcie_no_aspm(void)
970{
Matthew Garrett3c076352011-11-10 16:38:33 -0500971 /*
972 * Disabling ASPM is intended to prevent the kernel from modifying
973 * existing hardware state, not to clear existing state. To that end:
974 * (a) set policy to POLICY_DEFAULT in order to avoid changing state
975 * (b) prevent userspace from changing policy
976 */
977 if (!aspm_force) {
978 aspm_policy = POLICY_DEFAULT;
Shaohua Lid6d38572008-07-23 10:32:42 +0800979 aspm_disabled = 1;
Matthew Garrett3c076352011-11-10 16:38:33 -0500980 }
Shaohua Li5fde2442008-07-23 10:32:24 +0800981}
982
Rafael J. Wysocki8b8bae92011-03-05 13:21:51 +0100983bool pcie_aspm_support_enabled(void)
984{
985 return aspm_support_enabled;
986}
987EXPORT_SYMBOL(pcie_aspm_support_enabled);