blob: 6643a7bc381c480c683bb2ecf30ebaf74c4048aa [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
Shaohua Li7d715a62008-02-25 09:46:41 +0800175/*
176 * pcie_aspm_configure_common_clock: check if the 2 ends of a link
177 * could use common clock. If they are, configure them to use the
178 * common clock. That will reduce the ASPM state exit latency.
179 */
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900180static void pcie_aspm_configure_common_clock(struct pcie_link_state *link)
Shaohua Li7d715a62008-02-25 09:46:41 +0800181{
Jiang Liuf12eb722012-07-24 17:20:12 +0800182 int same_clock = 1;
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900183 u16 reg16, parent_reg, child_reg[8];
Thomas Renninger2a42d9d2008-12-09 13:05:09 +0100184 unsigned long start_jiffies;
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900185 struct pci_dev *child, *parent = link->pdev;
186 struct pci_bus *linkbus = parent->subordinate;
Shaohua Li7d715a62008-02-25 09:46:41 +0800187 /*
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900188 * All functions of a slot should have the same Slot Clock
Shaohua Li7d715a62008-02-25 09:46:41 +0800189 * Configuration, so just check one function
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900190 */
191 child = list_entry(linkbus->devices.next, struct pci_dev, bus_list);
Kenji Kaneshige8b064772009-11-11 14:36:52 +0900192 BUG_ON(!pci_is_pcie(child));
Shaohua Li7d715a62008-02-25 09:46:41 +0800193
194 /* Check downstream component if bit Slot Clock Configuration is 1 */
Jiang Liuf12eb722012-07-24 17:20:12 +0800195 pcie_capability_read_word(child, PCI_EXP_LNKSTA, &reg16);
Shaohua Li7d715a62008-02-25 09:46:41 +0800196 if (!(reg16 & PCI_EXP_LNKSTA_SLC))
197 same_clock = 0;
198
199 /* Check upstream component if bit Slot Clock Configuration is 1 */
Jiang Liuf12eb722012-07-24 17:20:12 +0800200 pcie_capability_read_word(parent, PCI_EXP_LNKSTA, &reg16);
Shaohua Li7d715a62008-02-25 09:46:41 +0800201 if (!(reg16 & PCI_EXP_LNKSTA_SLC))
202 same_clock = 0;
203
204 /* Configure downstream component, all functions */
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900205 list_for_each_entry(child, &linkbus->devices, bus_list) {
Jiang Liuf12eb722012-07-24 17:20:12 +0800206 pcie_capability_read_word(child, PCI_EXP_LNKCTL, &reg16);
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900207 child_reg[PCI_FUNC(child->devfn)] = reg16;
Shaohua Li7d715a62008-02-25 09:46:41 +0800208 if (same_clock)
209 reg16 |= PCI_EXP_LNKCTL_CCC;
210 else
211 reg16 &= ~PCI_EXP_LNKCTL_CCC;
Jiang Liuf12eb722012-07-24 17:20:12 +0800212 pcie_capability_write_word(child, PCI_EXP_LNKCTL, reg16);
Shaohua Li7d715a62008-02-25 09:46:41 +0800213 }
214
215 /* Configure upstream component */
Jiang Liuf12eb722012-07-24 17:20:12 +0800216 pcie_capability_read_word(parent, PCI_EXP_LNKCTL, &reg16);
Thomas Renninger2a42d9d2008-12-09 13:05:09 +0100217 parent_reg = reg16;
Shaohua Li7d715a62008-02-25 09:46:41 +0800218 if (same_clock)
219 reg16 |= PCI_EXP_LNKCTL_CCC;
220 else
221 reg16 &= ~PCI_EXP_LNKCTL_CCC;
Jiang Liuf12eb722012-07-24 17:20:12 +0800222 pcie_capability_write_word(parent, PCI_EXP_LNKCTL, reg16);
Shaohua Li7d715a62008-02-25 09:46:41 +0800223
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900224 /* Retrain link */
Shaohua Li7d715a62008-02-25 09:46:41 +0800225 reg16 |= PCI_EXP_LNKCTL_RL;
Jiang Liuf12eb722012-07-24 17:20:12 +0800226 pcie_capability_write_word(parent, PCI_EXP_LNKCTL, reg16);
Shaohua Li7d715a62008-02-25 09:46:41 +0800227
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900228 /* Wait for link training end. Break out after waiting for timeout */
Thomas Renninger2a42d9d2008-12-09 13:05:09 +0100229 start_jiffies = jiffies;
Andrew Patterson987a4c72009-01-05 16:21:04 -0700230 for (;;) {
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_LT))
233 break;
Andrew Patterson987a4c72009-01-05 16:21:04 -0700234 if (time_after(jiffies, start_jiffies + LINK_RETRAIN_TIMEOUT))
235 break;
236 msleep(1);
Shaohua Li7d715a62008-02-25 09:46:41 +0800237 }
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900238 if (!(reg16 & PCI_EXP_LNKSTA_LT))
239 return;
240
241 /* Training failed. Restore common clock configurations */
Joe Perches438be3c2012-10-28 01:05:49 -0700242 dev_err(&parent->dev, "ASPM: Could not configure common clock\n");
Jiang Liuf12eb722012-07-24 17:20:12 +0800243 list_for_each_entry(child, &linkbus->devices, bus_list)
244 pcie_capability_write_word(child, PCI_EXP_LNKCTL,
245 child_reg[PCI_FUNC(child->devfn)]);
246 pcie_capability_write_word(parent, PCI_EXP_LNKCTL, parent_reg);
Shaohua Li7d715a62008-02-25 09:46:41 +0800247}
248
Kenji Kaneshige5e0eaa72009-05-13 12:21:48 +0900249/* Convert L0s latency encoding to ns */
250static u32 calc_l0s_latency(u32 encoding)
Shaohua Li7d715a62008-02-25 09:46:41 +0800251{
Kenji Kaneshige5e0eaa72009-05-13 12:21:48 +0900252 if (encoding == 0x7)
253 return (5 * 1000); /* > 4us */
254 return (64 << encoding);
Shaohua Li7d715a62008-02-25 09:46:41 +0800255}
256
Kenji Kaneshige5e0eaa72009-05-13 12:21:48 +0900257/* Convert L0s acceptable latency encoding to ns */
258static u32 calc_l0s_acceptable(u32 encoding)
Shaohua Li7d715a62008-02-25 09:46:41 +0800259{
Kenji Kaneshige5e0eaa72009-05-13 12:21:48 +0900260 if (encoding == 0x7)
261 return -1U;
262 return (64 << encoding);
263}
Shaohua Li7d715a62008-02-25 09:46:41 +0800264
Kenji Kaneshige5e0eaa72009-05-13 12:21:48 +0900265/* Convert L1 latency encoding to ns */
266static u32 calc_l1_latency(u32 encoding)
267{
268 if (encoding == 0x7)
269 return (65 * 1000); /* > 64us */
270 return (1000 << encoding);
271}
272
273/* Convert L1 acceptable latency encoding to ns */
274static u32 calc_l1_acceptable(u32 encoding)
275{
276 if (encoding == 0x7)
277 return -1U;
278 return (1000 << encoding);
Shaohua Li7d715a62008-02-25 09:46:41 +0800279}
280
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900281struct aspm_register_info {
282 u32 support:2;
283 u32 enabled:2;
284 u32 latency_encoding_l0s;
285 u32 latency_encoding_l1;
286};
287
288static void pcie_get_aspm_reg(struct pci_dev *pdev,
289 struct aspm_register_info *info)
Shaohua Li7d715a62008-02-25 09:46:41 +0800290{
Shaohua Li7d715a62008-02-25 09:46:41 +0800291 u16 reg16;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900292 u32 reg32;
Shaohua Li7d715a62008-02-25 09:46:41 +0800293
Jiang Liuf12eb722012-07-24 17:20:12 +0800294 pcie_capability_read_dword(pdev, PCI_EXP_LNKCAP, &reg32);
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900295 info->support = (reg32 & PCI_EXP_LNKCAP_ASPMS) >> 10;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900296 info->latency_encoding_l0s = (reg32 & PCI_EXP_LNKCAP_L0SEL) >> 12;
297 info->latency_encoding_l1 = (reg32 & PCI_EXP_LNKCAP_L1EL) >> 15;
Jiang Liuf12eb722012-07-24 17:20:12 +0800298 pcie_capability_read_word(pdev, PCI_EXP_LNKCTL, &reg16);
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900299 info->enabled = reg16 & PCI_EXP_LNKCTL_ASPMC;
Shaohua Li7d715a62008-02-25 09:46:41 +0800300}
301
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900302static void pcie_aspm_check_latency(struct pci_dev *endpoint)
303{
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900304 u32 latency, l1_switch_latency = 0;
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900305 struct aspm_latency *acceptable;
306 struct pcie_link_state *link;
307
308 /* Device not in D0 doesn't need latency check */
309 if ((endpoint->current_state != PCI_D0) &&
310 (endpoint->current_state != PCI_UNKNOWN))
311 return;
312
313 link = endpoint->bus->self->link_state;
314 acceptable = &link->acceptable[PCI_FUNC(endpoint->devfn)];
315
316 while (link) {
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900317 /* Check upstream direction L0s latency */
318 if ((link->aspm_capable & ASPM_STATE_L0S_UP) &&
319 (link->latency_up.l0s > acceptable->l0s))
320 link->aspm_capable &= ~ASPM_STATE_L0S_UP;
321
322 /* Check downstream direction L0s latency */
323 if ((link->aspm_capable & ASPM_STATE_L0S_DW) &&
324 (link->latency_dw.l0s > acceptable->l0s))
325 link->aspm_capable &= ~ASPM_STATE_L0S_DW;
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900326 /*
327 * Check L1 latency.
328 * Every switch on the path to root complex need 1
329 * more microsecond for L1. Spec doesn't mention L0s.
330 */
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900331 latency = max_t(u32, link->latency_up.l1, link->latency_dw.l1);
332 if ((link->aspm_capable & ASPM_STATE_L1) &&
333 (latency + l1_switch_latency > acceptable->l1))
334 link->aspm_capable &= ~ASPM_STATE_L1;
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900335 l1_switch_latency += 1000;
336
337 link = link->parent;
338 }
339}
340
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900341static void pcie_aspm_cap_init(struct pcie_link_state *link, int blacklist)
Shaohua Li7d715a62008-02-25 09:46:41 +0800342{
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900343 struct pci_dev *child, *parent = link->pdev;
344 struct pci_bus *linkbus = parent->subordinate;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900345 struct aspm_register_info upreg, dwreg;
Shaohua Li7d715a62008-02-25 09:46:41 +0800346
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900347 if (blacklist) {
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900348 /* Set enabled/disable so that we will disable ASPM later */
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900349 link->aspm_enabled = ASPM_STATE_ALL;
350 link->aspm_disable = ASPM_STATE_ALL;
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900351 return;
352 }
353
354 /* Configure common clock before checking latencies */
355 pcie_aspm_configure_common_clock(link);
356
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900357 /* Get upstream/downstream components' register state */
358 pcie_get_aspm_reg(parent, &upreg);
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900359 child = list_entry(linkbus->devices.next, struct pci_dev, bus_list);
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900360 pcie_get_aspm_reg(child, &dwreg);
361
362 /*
363 * Setup L0s state
364 *
365 * Note that we must not enable L0s in either direction on a
366 * given link unless components on both sides of the link each
367 * support L0s.
368 */
369 if (dwreg.support & upreg.support & PCIE_LINK_STATE_L0S)
370 link->aspm_support |= ASPM_STATE_L0S;
371 if (dwreg.enabled & PCIE_LINK_STATE_L0S)
372 link->aspm_enabled |= ASPM_STATE_L0S_UP;
373 if (upreg.enabled & PCIE_LINK_STATE_L0S)
374 link->aspm_enabled |= ASPM_STATE_L0S_DW;
375 link->latency_up.l0s = calc_l0s_latency(upreg.latency_encoding_l0s);
376 link->latency_dw.l0s = calc_l0s_latency(dwreg.latency_encoding_l0s);
377
378 /* Setup L1 state */
379 if (upreg.support & dwreg.support & PCIE_LINK_STATE_L1)
380 link->aspm_support |= ASPM_STATE_L1;
381 if (upreg.enabled & dwreg.enabled & PCIE_LINK_STATE_L1)
382 link->aspm_enabled |= ASPM_STATE_L1;
383 link->latency_up.l1 = calc_l1_latency(upreg.latency_encoding_l1);
384 link->latency_dw.l1 = calc_l1_latency(dwreg.latency_encoding_l1);
Kenji Kaneshige80bfdbe2009-05-13 12:12:43 +0900385
Kenji Kaneshigeb127bd52009-08-19 10:57:31 +0900386 /* Save default state */
387 link->aspm_default = link->aspm_enabled;
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900388
389 /* Setup initial capable state. Will be updated later */
390 link->aspm_capable = link->aspm_support;
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900391 /*
392 * If the downstream component has pci bridge function, don't
393 * do ASPM for now.
394 */
395 list_for_each_entry(child, &linkbus->devices, bus_list) {
Yijing Wang62f87c02012-07-24 17:20:03 +0800396 if (pci_pcie_type(child) == PCI_EXP_TYPE_PCI_BRIDGE) {
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900397 link->aspm_disable = ASPM_STATE_ALL;
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900398 break;
399 }
400 }
Kenji Kaneshigeb127bd52009-08-19 10:57:31 +0900401
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900402 /* Get and check endpoint acceptable latencies */
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900403 list_for_each_entry(child, &linkbus->devices, bus_list) {
Kenji Kaneshige5e0eaa72009-05-13 12:21:48 +0900404 u32 reg32, encoding;
Kenji Kaneshigeb6c2e542009-05-13 12:14:58 +0900405 struct aspm_latency *acceptable =
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900406 &link->acceptable[PCI_FUNC(child->devfn)];
Shaohua Li7d715a62008-02-25 09:46:41 +0800407
Yijing Wang62f87c02012-07-24 17:20:03 +0800408 if (pci_pcie_type(child) != PCI_EXP_TYPE_ENDPOINT &&
409 pci_pcie_type(child) != PCI_EXP_TYPE_LEG_END)
Shaohua Li7d715a62008-02-25 09:46:41 +0800410 continue;
411
Jiang Liuf12eb722012-07-24 17:20:12 +0800412 pcie_capability_read_dword(child, PCI_EXP_DEVCAP, &reg32);
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900413 /* Calculate endpoint L0s acceptable latency */
Kenji Kaneshige5e0eaa72009-05-13 12:21:48 +0900414 encoding = (reg32 & PCI_EXP_DEVCAP_L0S) >> 6;
415 acceptable->l0s = calc_l0s_acceptable(encoding);
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900416 /* Calculate endpoint L1 acceptable latency */
417 encoding = (reg32 & PCI_EXP_DEVCAP_L1) >> 9;
418 acceptable->l1 = calc_l1_acceptable(encoding);
419
420 pcie_aspm_check_latency(child);
Shaohua Li7d715a62008-02-25 09:46:41 +0800421 }
422}
423
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900424static void pcie_config_aspm_dev(struct pci_dev *pdev, u32 val)
Shaohua Li7d715a62008-02-25 09:46:41 +0800425{
Bjorn Helgaas75083202012-12-05 13:51:19 -0700426 pcie_capability_clear_and_set_word(pdev, PCI_EXP_LNKCTL,
427 PCI_EXP_LNKCTL_ASPMC, val);
Shaohua Li7d715a62008-02-25 09:46:41 +0800428}
429
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900430static void pcie_config_aspm_link(struct pcie_link_state *link, u32 state)
Shaohua Li7d715a62008-02-25 09:46:41 +0800431{
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900432 u32 upstream = 0, dwstream = 0;
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900433 struct pci_dev *child, *parent = link->pdev;
434 struct pci_bus *linkbus = parent->subordinate;
Shaohua Li7d715a62008-02-25 09:46:41 +0800435
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900436 /* Nothing to do if the link is already in the requested state */
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900437 state &= (link->aspm_capable & ~link->aspm_disable);
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900438 if (link->aspm_enabled == state)
439 return;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900440 /* Convert ASPM state to upstream/downstream ASPM register state */
441 if (state & ASPM_STATE_L0S_UP)
Bjorn Helgaas75083202012-12-05 13:51:19 -0700442 dwstream |= PCI_EXP_LNKCTL_ASPM_L0S;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900443 if (state & ASPM_STATE_L0S_DW)
Bjorn Helgaas75083202012-12-05 13:51:19 -0700444 upstream |= PCI_EXP_LNKCTL_ASPM_L0S;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900445 if (state & ASPM_STATE_L1) {
Bjorn Helgaas75083202012-12-05 13:51:19 -0700446 upstream |= PCI_EXP_LNKCTL_ASPM_L1;
447 dwstream |= PCI_EXP_LNKCTL_ASPM_L1;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900448 }
Shaohua Li7d715a62008-02-25 09:46:41 +0800449 /*
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900450 * Spec 2.0 suggests all functions should be configured the
451 * same setting for ASPM. Enabling ASPM L1 should be done in
452 * upstream component first and then downstream, and vice
453 * versa for disabling ASPM L1. Spec doesn't mention L0S.
Shaohua Li7d715a62008-02-25 09:46:41 +0800454 */
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900455 if (state & ASPM_STATE_L1)
456 pcie_config_aspm_dev(parent, upstream);
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900457 list_for_each_entry(child, &linkbus->devices, bus_list)
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900458 pcie_config_aspm_dev(child, dwstream);
459 if (!(state & ASPM_STATE_L1))
460 pcie_config_aspm_dev(parent, upstream);
Shaohua Li7d715a62008-02-25 09:46:41 +0800461
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900462 link->aspm_enabled = state;
Shaohua Li7d715a62008-02-25 09:46:41 +0800463}
464
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900465static void pcie_config_aspm_path(struct pcie_link_state *link)
Shaohua Li7d715a62008-02-25 09:46:41 +0800466{
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900467 while (link) {
468 pcie_config_aspm_link(link, policy_to_aspm_state(link));
469 link = link->parent;
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800470 }
Shaohua Li7d715a62008-02-25 09:46:41 +0800471}
472
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900473static void free_link_state(struct pcie_link_state *link)
Shaohua Li7d715a62008-02-25 09:46:41 +0800474{
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900475 link->pdev->link_state = NULL;
476 kfree(link);
Shaohua Li7d715a62008-02-25 09:46:41 +0800477}
478
Shaohua Liddc97532008-05-21 16:58:40 +0800479static int pcie_aspm_sanity_check(struct pci_dev *pdev)
480{
Kenji Kaneshige36475842009-05-13 12:23:09 +0900481 struct pci_dev *child;
Shaohua Li149e1632008-07-23 10:32:31 +0800482 u32 reg32;
Matthew Garrett2f671e22010-12-06 14:00:56 -0500483
Shaohua Liddc97532008-05-21 16:58:40 +0800484 /*
Stefan Assmann45e829e2009-12-03 06:49:24 -0500485 * Some functions in a slot might not all be PCIe functions,
Kenji Kaneshige36475842009-05-13 12:23:09 +0900486 * very strange. Disable ASPM for the whole slot
Shaohua Liddc97532008-05-21 16:58:40 +0800487 */
Kenji Kaneshige36475842009-05-13 12:23:09 +0900488 list_for_each_entry(child, &pdev->subordinate->devices, bus_list) {
Jiang Liuf12eb722012-07-24 17:20:12 +0800489 if (!pci_is_pcie(child))
Shaohua Liddc97532008-05-21 16:58:40 +0800490 return -EINVAL;
Matthew Garrettc9651e72012-03-27 10:17:41 -0400491
492 /*
493 * If ASPM is disabled then we're not going to change
494 * the BIOS state. It's safe to continue even if it's a
495 * pre-1.1 device
496 */
497
498 if (aspm_disabled)
499 continue;
500
Shaohua Li149e1632008-07-23 10:32:31 +0800501 /*
502 * Disable ASPM for pre-1.1 PCIe device, we follow MS to use
503 * RBER bit to determine if a function is 1.1 version device
504 */
Jiang Liuf12eb722012-07-24 17:20:12 +0800505 pcie_capability_read_dword(child, PCI_EXP_DEVCAP, &reg32);
Sitsofe Wheelere1f4f592008-09-16 14:27:13 +0100506 if (!(reg32 & PCI_EXP_DEVCAP_RBER) && !aspm_force) {
Joe Perches438be3c2012-10-28 01:05:49 -0700507 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 +0800508 return -EINVAL;
509 }
Shaohua Liddc97532008-05-21 16:58:40 +0800510 }
511 return 0;
512}
513
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900514static struct pcie_link_state *alloc_pcie_link_state(struct pci_dev *pdev)
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900515{
516 struct pcie_link_state *link;
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900517
518 link = kzalloc(sizeof(*link), GFP_KERNEL);
519 if (!link)
520 return NULL;
Bjorn Helgaas610c2b72017-01-27 15:00:45 -0600521
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900522 INIT_LIST_HEAD(&link->sibling);
523 INIT_LIST_HEAD(&link->children);
524 INIT_LIST_HEAD(&link->link);
525 link->pdev = pdev;
Bjorn Helgaas610c2b72017-01-27 15:00:45 -0600526
527 /*
528 * Root Ports and PCI/PCI-X to PCIe Bridges are roots of PCIe
Ard Biesheuvel6213c712017-10-02 15:08:40 +0100529 * hierarchies. Note that some PCIe host implementations omit
530 * the root ports entirely, in which case a downstream port on
531 * a switch may become the root of the link state chain for all
532 * its subordinate endpoints.
Bjorn Helgaas610c2b72017-01-27 15:00:45 -0600533 */
534 if (pci_pcie_type(pdev) == PCI_EXP_TYPE_ROOT_PORT ||
Ard Biesheuvel6213c712017-10-02 15:08:40 +0100535 pci_pcie_type(pdev) == PCI_EXP_TYPE_PCIE_BRIDGE ||
536 !pdev->bus->parent->self) {
Bjorn Helgaas610c2b72017-01-27 15:00:45 -0600537 link->root = link;
538 } else {
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900539 struct pcie_link_state *parent;
Bjorn Helgaas610c2b72017-01-27 15:00:45 -0600540
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900541 parent = pdev->bus->parent->self->link_state;
542 if (!parent) {
543 kfree(link);
544 return NULL;
545 }
Bjorn Helgaas610c2b72017-01-27 15:00:45 -0600546
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900547 link->parent = parent;
Bjorn Helgaas610c2b72017-01-27 15:00:45 -0600548 link->root = link->parent->root;
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900549 list_add(&link->link, &parent->children);
550 }
Kenji Kaneshige5c92ffb2009-05-13 12:23:57 +0900551
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900552 list_add(&link->sibling, &link_list);
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900553 pdev->link_state = link;
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900554 return link;
555}
556
Shaohua Li7d715a62008-02-25 09:46:41 +0800557/*
558 * pcie_aspm_init_link_state: Initiate PCI express link state.
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700559 * It is called after the pcie and its children devices are scanned.
Shaohua Li7d715a62008-02-25 09:46:41 +0800560 * @pdev: the root port or switch downstream port
561 */
562void pcie_aspm_init_link_state(struct pci_dev *pdev)
563{
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900564 struct pcie_link_state *link;
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900565 int blacklist = !!pcie_aspm_sanity_check(pdev);
Shaohua Li7d715a62008-02-25 09:46:41 +0800566
Joe Lawrencea26d5ec2013-01-15 15:31:28 -0500567 if (!aspm_support_enabled)
568 return;
569
Yijing Wangc8fc9332015-05-21 15:05:03 +0800570 if (pdev->link_state)
Shaohua Li7d715a62008-02-25 09:46:41 +0800571 return;
Yijing Wangc8fc9332015-05-21 15:05:03 +0800572
573 /*
574 * We allocate pcie_link_state for the component on the upstream
575 * end of a Link, so there's nothing to do unless this device has a
576 * Link on its secondary side.
577 */
578 if (!pdev->has_secondary_link)
Shaohua Li7d715a62008-02-25 09:46:41 +0800579 return;
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900580
Shaohua Li8e822df2009-06-08 09:27:25 +0800581 /* VIA has a strange chipset, root port is under a bridge */
Yijing Wang62f87c02012-07-24 17:20:03 +0800582 if (pci_pcie_type(pdev) == PCI_EXP_TYPE_ROOT_PORT &&
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900583 pdev->bus->self)
Shaohua Li8e822df2009-06-08 09:27:25 +0800584 return;
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900585
Shaohua Li7d715a62008-02-25 09:46:41 +0800586 down_read(&pci_bus_sem);
587 if (list_empty(&pdev->subordinate->devices))
588 goto out;
589
Shaohua Li7d715a62008-02-25 09:46:41 +0800590 mutex_lock(&aspm_lock);
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900591 link = alloc_pcie_link_state(pdev);
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900592 if (!link)
593 goto unlock;
594 /*
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900595 * Setup initial ASPM state. Note that we need to configure
596 * upstream links also because capable state of them can be
597 * update through pcie_aspm_cap_init().
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900598 */
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900599 pcie_aspm_cap_init(link, blacklist);
Shaohua Li7d715a62008-02-25 09:46:41 +0800600
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900601 /* Setup initial Clock PM state */
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900602 pcie_clkpm_cap_init(link, blacklist);
Matthew Garrett41cd7662010-06-09 16:05:07 -0400603
604 /*
605 * At this stage drivers haven't had an opportunity to change the
606 * link policy setting. Enabling ASPM on broken hardware can cripple
607 * it even before the driver has had a chance to disable ASPM, so
608 * default to a safe level right now. If we're enabling ASPM beyond
609 * the BIOS's expectation, we'll do so once pci_enable_device() is
610 * called.
611 */
Matthew Garrett3c076352011-11-10 16:38:33 -0500612 if (aspm_policy != POLICY_POWERSAVE) {
Matthew Garrett41cd7662010-06-09 16:05:07 -0400613 pcie_config_aspm_path(link);
614 pcie_set_clkpm(link, policy_to_clkpm_state(link));
615 }
616
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900617unlock:
Shaohua Li7d715a62008-02-25 09:46:41 +0800618 mutex_unlock(&aspm_lock);
619out:
620 up_read(&pci_bus_sem);
621}
622
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900623/* Recheck latencies and update aspm_capable for links under the root */
624static void pcie_update_aspm_capable(struct pcie_link_state *root)
625{
626 struct pcie_link_state *link;
627 BUG_ON(root->parent);
628 list_for_each_entry(link, &link_list, sibling) {
629 if (link->root != root)
630 continue;
631 link->aspm_capable = link->aspm_support;
632 }
633 list_for_each_entry(link, &link_list, sibling) {
634 struct pci_dev *child;
635 struct pci_bus *linkbus = link->pdev->subordinate;
636 if (link->root != root)
637 continue;
638 list_for_each_entry(child, &linkbus->devices, bus_list) {
Yijing Wang62f87c02012-07-24 17:20:03 +0800639 if ((pci_pcie_type(child) != PCI_EXP_TYPE_ENDPOINT) &&
640 (pci_pcie_type(child) != PCI_EXP_TYPE_LEG_END))
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900641 continue;
642 pcie_aspm_check_latency(child);
643 }
644 }
645}
646
Shaohua Li7d715a62008-02-25 09:46:41 +0800647/* @pdev: the endpoint device */
648void pcie_aspm_exit_link_state(struct pci_dev *pdev)
649{
650 struct pci_dev *parent = pdev->bus->self;
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900651 struct pcie_link_state *link, *root, *parent_link;
Shaohua Li7d715a62008-02-25 09:46:41 +0800652
Myron Stowe84fb9132013-01-31 16:29:25 -0700653 if (!parent || !parent->link_state)
Shaohua Li7d715a62008-02-25 09:46:41 +0800654 return;
Kenji Kaneshigefc87e912009-08-19 10:58:46 +0900655
Shaohua Li7d715a62008-02-25 09:46:41 +0800656 down_read(&pci_bus_sem);
657 mutex_lock(&aspm_lock);
Shaohua Li7d715a62008-02-25 09:46:41 +0800658 /*
659 * All PCIe functions are in one slot, remove one function will remove
Alex Chiang3419c752009-01-28 14:59:18 -0700660 * the whole slot, so just wait until we are the last function left.
Shaohua Li7d715a62008-02-25 09:46:41 +0800661 */
Alex Chiang3419c752009-01-28 14:59:18 -0700662 if (!list_is_last(&pdev->bus_list, &parent->subordinate->devices))
Shaohua Li7d715a62008-02-25 09:46:41 +0800663 goto out;
664
Kenji Kaneshigefc87e912009-08-19 10:58:46 +0900665 link = parent->link_state;
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900666 root = link->root;
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900667 parent_link = link->parent;
Kenji Kaneshigefc87e912009-08-19 10:58:46 +0900668
Shaohua Li7d715a62008-02-25 09:46:41 +0800669 /* All functions are removed, so just disable ASPM for the link */
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900670 pcie_config_aspm_link(link, 0);
Kenji Kaneshigefc87e912009-08-19 10:58:46 +0900671 list_del(&link->sibling);
672 list_del(&link->link);
Shaohua Li7d715a62008-02-25 09:46:41 +0800673 /* Clock PM is for endpoint device */
Kenji Kaneshigefc87e912009-08-19 10:58:46 +0900674 free_link_state(link);
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900675
676 /* Recheck latencies and configure upstream links */
Kenji Kaneshigeb26a34a2009-11-06 11:25:13 +0900677 if (parent_link) {
678 pcie_update_aspm_capable(root);
679 pcie_config_aspm_path(parent_link);
680 }
Shaohua Li7d715a62008-02-25 09:46:41 +0800681out:
682 mutex_unlock(&aspm_lock);
683 up_read(&pci_bus_sem);
684}
685
686/* @pdev: the root port or switch downstream port */
687void pcie_aspm_pm_state_change(struct pci_dev *pdev)
688{
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900689 struct pcie_link_state *link = pdev->link_state;
Shaohua Li7d715a62008-02-25 09:46:41 +0800690
Yijing Wangf9b8cd72015-05-19 11:41:34 +0800691 if (aspm_disabled || !link)
Shaohua Li7d715a62008-02-25 09:46:41 +0800692 return;
693 /*
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900694 * Devices changed PM state, we should recheck if latency
695 * meets all functions' requirement
Shaohua Li7d715a62008-02-25 09:46:41 +0800696 */
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900697 down_read(&pci_bus_sem);
698 mutex_lock(&aspm_lock);
699 pcie_update_aspm_capable(link->root);
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900700 pcie_config_aspm_path(link);
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900701 mutex_unlock(&aspm_lock);
702 up_read(&pci_bus_sem);
Shaohua Li7d715a62008-02-25 09:46:41 +0800703}
704
Naga Chumbalkar1a680b72011-03-21 03:29:08 +0000705void pcie_aspm_powersave_config_link(struct pci_dev *pdev)
706{
707 struct pcie_link_state *link = pdev->link_state;
708
Yijing Wangf9b8cd72015-05-19 11:41:34 +0800709 if (aspm_disabled || !link)
Naga Chumbalkar1a680b72011-03-21 03:29:08 +0000710 return;
711
712 if (aspm_policy != POLICY_POWERSAVE)
713 return;
714
Naga Chumbalkar1a680b72011-03-21 03:29:08 +0000715 down_read(&pci_bus_sem);
716 mutex_lock(&aspm_lock);
717 pcie_config_aspm_path(link);
718 pcie_set_clkpm(link, policy_to_clkpm_state(link));
719 mutex_unlock(&aspm_lock);
720 up_read(&pci_bus_sem);
721}
722
Bjorn Helgaase127a042015-05-20 12:13:05 -0500723static void __pci_disable_link_state(struct pci_dev *pdev, int state, bool sem)
Shaohua Li7d715a62008-02-25 09:46:41 +0800724{
725 struct pci_dev *parent = pdev->bus->self;
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900726 struct pcie_link_state *link;
Shaohua Li7d715a62008-02-25 09:46:41 +0800727
Matthew Garrett3c076352011-11-10 16:38:33 -0500728 if (!pci_is_pcie(pdev))
729 return;
730
Yijing Wangc8fc9332015-05-21 15:05:03 +0800731 if (pdev->has_secondary_link)
Shaohua Li7d715a62008-02-25 09:46:41 +0800732 parent = pdev;
733 if (!parent || !parent->link_state)
734 return;
735
Bjorn Helgaas2add0ec2013-05-21 10:56:51 -0600736 /*
737 * A driver requested that ASPM be disabled on this device, but
738 * if we don't have permission to manage ASPM (e.g., on ACPI
739 * systems we have to observe the FADT ACPI_FADT_NO_ASPM bit and
740 * the _OSC method), we can't honor that request. Windows has
741 * a similar mechanism using "PciASPMOptOut", which is also
742 * ignored in this situation.
743 */
Bjorn Helgaase127a042015-05-20 12:13:05 -0500744 if (aspm_disabled) {
Bjorn Helgaas2add0ec2013-05-21 10:56:51 -0600745 dev_warn(&pdev->dev, "can't disable ASPM; OS doesn't have ASPM control\n");
746 return;
747 }
748
Yinghai Lu9f728f52011-05-12 17:11:47 -0700749 if (sem)
750 down_read(&pci_bus_sem);
Shaohua Li7d715a62008-02-25 09:46:41 +0800751 mutex_lock(&aspm_lock);
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900752 link = parent->link_state;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900753 if (state & PCIE_LINK_STATE_L0S)
754 link->aspm_disable |= ASPM_STATE_L0S;
755 if (state & PCIE_LINK_STATE_L1)
756 link->aspm_disable |= ASPM_STATE_L1;
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900757 pcie_config_aspm_link(link, policy_to_aspm_state(link));
758
Kenji Kaneshige430842e2009-05-13 12:20:10 +0900759 if (state & PCIE_LINK_STATE_CLKPM) {
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900760 link->clkpm_capable = 0;
761 pcie_set_clkpm(link, 0);
Kenji Kaneshige430842e2009-05-13 12:20:10 +0900762 }
Shaohua Li7d715a62008-02-25 09:46:41 +0800763 mutex_unlock(&aspm_lock);
Yinghai Lu9f728f52011-05-12 17:11:47 -0700764 if (sem)
765 up_read(&pci_bus_sem);
766}
767
768void pci_disable_link_state_locked(struct pci_dev *pdev, int state)
769{
Bjorn Helgaase127a042015-05-20 12:13:05 -0500770 __pci_disable_link_state(pdev, state, false);
Yinghai Lu9f728f52011-05-12 17:11:47 -0700771}
772EXPORT_SYMBOL(pci_disable_link_state_locked);
773
Yijing Wang2dfca872013-05-28 16:03:22 +0800774/**
775 * pci_disable_link_state - Disable device's link state, so the link will
776 * never enter specific states. Note that if the BIOS didn't grant ASPM
777 * control to the OS, this does nothing because we can't touch the LNKCTL
778 * register.
779 *
780 * @pdev: PCI device
781 * @state: ASPM link state to disable
782 */
Yinghai Lu9f728f52011-05-12 17:11:47 -0700783void pci_disable_link_state(struct pci_dev *pdev, int state)
784{
Bjorn Helgaase127a042015-05-20 12:13:05 -0500785 __pci_disable_link_state(pdev, state, true);
Shaohua Li7d715a62008-02-25 09:46:41 +0800786}
787EXPORT_SYMBOL(pci_disable_link_state);
788
789static int pcie_aspm_set_policy(const char *val, struct kernel_param *kp)
790{
791 int i;
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900792 struct pcie_link_state *link;
Shaohua Li7d715a62008-02-25 09:46:41 +0800793
Naga Chumbalkarbbfa3062011-03-21 03:29:14 +0000794 if (aspm_disabled)
795 return -EPERM;
Shaohua Li7d715a62008-02-25 09:46:41 +0800796 for (i = 0; i < ARRAY_SIZE(policy_str); i++)
797 if (!strncmp(val, policy_str[i], strlen(policy_str[i])))
798 break;
799 if (i >= ARRAY_SIZE(policy_str))
800 return -EINVAL;
801 if (i == aspm_policy)
802 return 0;
803
804 down_read(&pci_bus_sem);
805 mutex_lock(&aspm_lock);
806 aspm_policy = i;
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900807 list_for_each_entry(link, &link_list, sibling) {
808 pcie_config_aspm_link(link, policy_to_aspm_state(link));
809 pcie_set_clkpm(link, policy_to_clkpm_state(link));
Shaohua Li7d715a62008-02-25 09:46:41 +0800810 }
811 mutex_unlock(&aspm_lock);
812 up_read(&pci_bus_sem);
813 return 0;
814}
815
816static int pcie_aspm_get_policy(char *buffer, struct kernel_param *kp)
817{
818 int i, cnt = 0;
819 for (i = 0; i < ARRAY_SIZE(policy_str); i++)
820 if (i == aspm_policy)
821 cnt += sprintf(buffer + cnt, "[%s] ", policy_str[i]);
822 else
823 cnt += sprintf(buffer + cnt, "%s ", policy_str[i]);
824 return cnt;
825}
826
827module_param_call(policy, pcie_aspm_set_policy, pcie_aspm_get_policy,
828 NULL, 0644);
829
830#ifdef CONFIG_PCIEASPM_DEBUG
831static ssize_t link_state_show(struct device *dev,
832 struct device_attribute *attr,
833 char *buf)
834{
835 struct pci_dev *pci_device = to_pci_dev(dev);
836 struct pcie_link_state *link_state = pci_device->link_state;
837
Kenji Kaneshige80bfdbe2009-05-13 12:12:43 +0900838 return sprintf(buf, "%d\n", link_state->aspm_enabled);
Shaohua Li7d715a62008-02-25 09:46:41 +0800839}
840
841static ssize_t link_state_store(struct device *dev,
842 struct device_attribute *attr,
843 const char *buf,
844 size_t n)
845{
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900846 struct pci_dev *pdev = to_pci_dev(dev);
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900847 struct pcie_link_state *link, *root = pdev->link_state->root;
Andy Lutomirski57d86a02015-11-19 08:05:35 -0800848 u32 state;
Shaohua Li7d715a62008-02-25 09:46:41 +0800849
Naga Chumbalkarbbfa3062011-03-21 03:29:14 +0000850 if (aspm_disabled)
851 return -EPERM;
Shaohua Li7d715a62008-02-25 09:46:41 +0800852
Andy Lutomirski57d86a02015-11-19 08:05:35 -0800853 if (kstrtouint(buf, 10, &state))
854 return -EINVAL;
855 if ((state & ~ASPM_STATE_ALL) != 0)
856 return -EINVAL;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900857
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900858 down_read(&pci_bus_sem);
859 mutex_lock(&aspm_lock);
860 list_for_each_entry(link, &link_list, sibling) {
861 if (link->root != root)
862 continue;
863 pcie_config_aspm_link(link, state);
864 }
865 mutex_unlock(&aspm_lock);
866 up_read(&pci_bus_sem);
867 return n;
Shaohua Li7d715a62008-02-25 09:46:41 +0800868}
869
870static ssize_t clk_ctl_show(struct device *dev,
871 struct device_attribute *attr,
872 char *buf)
873{
874 struct pci_dev *pci_device = to_pci_dev(dev);
875 struct pcie_link_state *link_state = pci_device->link_state;
876
Kenji Kaneshige4d246e42009-05-13 12:15:38 +0900877 return sprintf(buf, "%d\n", link_state->clkpm_enabled);
Shaohua Li7d715a62008-02-25 09:46:41 +0800878}
879
880static ssize_t clk_ctl_store(struct device *dev,
881 struct device_attribute *attr,
882 const char *buf,
883 size_t n)
884{
Kenji Kaneshige430842e2009-05-13 12:20:10 +0900885 struct pci_dev *pdev = to_pci_dev(dev);
Chris J Arges94a90312014-12-05 17:02:42 -0600886 bool state;
Shaohua Li7d715a62008-02-25 09:46:41 +0800887
Chris J Arges94a90312014-12-05 17:02:42 -0600888 if (strtobool(buf, &state))
Shaohua Li7d715a62008-02-25 09:46:41 +0800889 return -EINVAL;
Shaohua Li7d715a62008-02-25 09:46:41 +0800890
891 down_read(&pci_bus_sem);
892 mutex_lock(&aspm_lock);
Chris J Arges94a90312014-12-05 17:02:42 -0600893 pcie_set_clkpm_nocheck(pdev->link_state, state);
Shaohua Li7d715a62008-02-25 09:46:41 +0800894 mutex_unlock(&aspm_lock);
895 up_read(&pci_bus_sem);
896
897 return n;
898}
899
900static DEVICE_ATTR(link_state, 0644, link_state_show, link_state_store);
901static DEVICE_ATTR(clk_ctl, 0644, clk_ctl_show, clk_ctl_store);
902
903static char power_group[] = "power";
904void pcie_aspm_create_sysfs_dev_files(struct pci_dev *pdev)
905{
906 struct pcie_link_state *link_state = pdev->link_state;
907
Yijing Wangf9b8cd72015-05-19 11:41:34 +0800908 if (!link_state)
Shaohua Li7d715a62008-02-25 09:46:41 +0800909 return;
910
Kenji Kaneshige80bfdbe2009-05-13 12:12:43 +0900911 if (link_state->aspm_support)
Shaohua Li7d715a62008-02-25 09:46:41 +0800912 sysfs_add_file_to_group(&pdev->dev.kobj,
913 &dev_attr_link_state.attr, power_group);
Kenji Kaneshige4d246e42009-05-13 12:15:38 +0900914 if (link_state->clkpm_capable)
Shaohua Li7d715a62008-02-25 09:46:41 +0800915 sysfs_add_file_to_group(&pdev->dev.kobj,
916 &dev_attr_clk_ctl.attr, power_group);
917}
918
919void pcie_aspm_remove_sysfs_dev_files(struct pci_dev *pdev)
920{
921 struct pcie_link_state *link_state = pdev->link_state;
922
Yijing Wangf9b8cd72015-05-19 11:41:34 +0800923 if (!link_state)
Shaohua Li7d715a62008-02-25 09:46:41 +0800924 return;
925
Kenji Kaneshige80bfdbe2009-05-13 12:12:43 +0900926 if (link_state->aspm_support)
Shaohua Li7d715a62008-02-25 09:46:41 +0800927 sysfs_remove_file_from_group(&pdev->dev.kobj,
928 &dev_attr_link_state.attr, power_group);
Kenji Kaneshige4d246e42009-05-13 12:15:38 +0900929 if (link_state->clkpm_capable)
Shaohua Li7d715a62008-02-25 09:46:41 +0800930 sysfs_remove_file_from_group(&pdev->dev.kobj,
931 &dev_attr_clk_ctl.attr, power_group);
932}
933#endif
934
935static int __init pcie_aspm_disable(char *str)
936{
Shaohua Lid6d38572008-07-23 10:32:42 +0800937 if (!strcmp(str, "off")) {
Matthew Garrett3c076352011-11-10 16:38:33 -0500938 aspm_policy = POLICY_DEFAULT;
Shaohua Lid6d38572008-07-23 10:32:42 +0800939 aspm_disabled = 1;
Rafael J. Wysocki8b8bae92011-03-05 13:21:51 +0100940 aspm_support_enabled = false;
Shaohua Lid6d38572008-07-23 10:32:42 +0800941 printk(KERN_INFO "PCIe ASPM is disabled\n");
942 } else if (!strcmp(str, "force")) {
943 aspm_force = 1;
Michael Witten8072ba12011-06-28 06:15:05 +0000944 printk(KERN_INFO "PCIe ASPM is forcibly enabled\n");
Shaohua Lid6d38572008-07-23 10:32:42 +0800945 }
Shaohua Li7d715a62008-02-25 09:46:41 +0800946 return 1;
947}
948
Shaohua Lid6d38572008-07-23 10:32:42 +0800949__setup("pcie_aspm=", pcie_aspm_disable);
Shaohua Li7d715a62008-02-25 09:46:41 +0800950
Shaohua Li5fde2442008-07-23 10:32:24 +0800951void pcie_no_aspm(void)
952{
Matthew Garrett3c076352011-11-10 16:38:33 -0500953 /*
954 * Disabling ASPM is intended to prevent the kernel from modifying
955 * existing hardware state, not to clear existing state. To that end:
956 * (a) set policy to POLICY_DEFAULT in order to avoid changing state
957 * (b) prevent userspace from changing policy
958 */
959 if (!aspm_force) {
960 aspm_policy = POLICY_DEFAULT;
Shaohua Lid6d38572008-07-23 10:32:42 +0800961 aspm_disabled = 1;
Matthew Garrett3c076352011-11-10 16:38:33 -0500962 }
Shaohua Li5fde2442008-07-23 10:32:24 +0800963}
964
Rafael J. Wysocki8b8bae92011-03-05 13:21:51 +0100965bool pcie_aspm_support_enabled(void)
966{
967 return aspm_support_enabled;
968}
969EXPORT_SYMBOL(pcie_aspm_support_enabled);