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