1
2
3
4
5
6
7
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>
19#include <linux/jiffies.h>
20#include <linux/delay.h>
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
29
30#define ASPM_STATE_L0S_UP (1)
31#define ASPM_STATE_L0S_DW (2)
32#define ASPM_STATE_L1 (4)
33#define ASPM_STATE_L1_1 (8)
34#define ASPM_STATE_L1_2 (0x10)
35#define ASPM_STATE_L1_1_PCIPM (0x20)
36#define ASPM_STATE_L1_2_PCIPM (0x40)
37#define ASPM_STATE_L1_SS_PCIPM (ASPM_STATE_L1_1_PCIPM | ASPM_STATE_L1_2_PCIPM)
38#define ASPM_STATE_L1_2_MASK (ASPM_STATE_L1_2 | ASPM_STATE_L1_2_PCIPM)
39#define ASPM_STATE_L1SS (ASPM_STATE_L1_1 | ASPM_STATE_L1_1_PCIPM |\
40 ASPM_STATE_L1_2_MASK)
41#define ASPM_STATE_L0S (ASPM_STATE_L0S_UP | ASPM_STATE_L0S_DW)
42#define ASPM_STATE_ALL (ASPM_STATE_L0S | ASPM_STATE_L1 | \
43 ASPM_STATE_L1SS)
44
45
46
47
48
49
50
51
52
53
54
55#define LTR_L1_2_THRESHOLD_BITS ((1 << 21) | (1 << 23) | (1 << 30))
56
57struct aspm_latency {
58 u32 l0s;
59 u32 l1;
60};
61
62struct pcie_link_state {
63 struct pci_dev *pdev;
64 struct pci_dev *downstream;
65 struct pcie_link_state *root;
66 struct pcie_link_state *parent;
67 struct list_head sibling;
68 struct list_head children;
69 struct list_head link;
70
71
72 u32 aspm_support:7;
73 u32 aspm_enabled:7;
74 u32 aspm_capable:7;
75 u32 aspm_default:7;
76 u32 aspm_disable:7;
77
78
79 u32 clkpm_capable:1;
80 u32 clkpm_enabled:1;
81 u32 clkpm_default:1;
82
83
84 struct aspm_latency latency_up;
85 struct aspm_latency latency_dw;
86
87
88
89
90 struct aspm_latency acceptable[8];
91
92
93 struct {
94 u32 up_cap_ptr;
95 u32 dw_cap_ptr;
96 u32 ctl1;
97 u32 ctl2;
98 } l1ss;
99};
100
101static int aspm_disabled, aspm_force;
102static bool aspm_support_enabled = true;
103static DEFINE_MUTEX(aspm_lock);
104static LIST_HEAD(link_list);
105
106#define POLICY_DEFAULT 0
107#define POLICY_PERFORMANCE 1
108#define POLICY_POWERSAVE 2
109#define POLICY_POWER_SUPERSAVE 3
110
111#ifdef CONFIG_PCIEASPM_PERFORMANCE
112static int aspm_policy = POLICY_PERFORMANCE;
113#elif defined CONFIG_PCIEASPM_POWERSAVE
114static int aspm_policy = POLICY_POWERSAVE;
115#elif defined CONFIG_PCIEASPM_POWER_SUPERSAVE
116static int aspm_policy = POLICY_POWER_SUPERSAVE;
117#else
118static int aspm_policy;
119#endif
120
121static const char *policy_str[] = {
122 [POLICY_DEFAULT] = "default",
123 [POLICY_PERFORMANCE] = "performance",
124 [POLICY_POWERSAVE] = "powersave",
125 [POLICY_POWER_SUPERSAVE] = "powersupersave"
126};
127
128#define LINK_RETRAIN_TIMEOUT HZ
129
130static int policy_to_aspm_state(struct pcie_link_state *link)
131{
132 switch (aspm_policy) {
133 case POLICY_PERFORMANCE:
134
135 return 0;
136 case POLICY_POWERSAVE:
137
138 return (ASPM_STATE_L0S | ASPM_STATE_L1);
139 case POLICY_POWER_SUPERSAVE:
140
141 return ASPM_STATE_ALL;
142 case POLICY_DEFAULT:
143 return link->aspm_default;
144 }
145 return 0;
146}
147
148static int policy_to_clkpm_state(struct pcie_link_state *link)
149{
150 switch (aspm_policy) {
151 case POLICY_PERFORMANCE:
152
153 return 0;
154 case POLICY_POWERSAVE:
155 case POLICY_POWER_SUPERSAVE:
156
157 return 1;
158 case POLICY_DEFAULT:
159 return link->clkpm_default;
160 }
161 return 0;
162}
163
164static void pcie_set_clkpm_nocheck(struct pcie_link_state *link, int enable)
165{
166 struct pci_dev *child;
167 struct pci_bus *linkbus = link->pdev->subordinate;
168 u32 val = enable ? PCI_EXP_LNKCTL_CLKREQ_EN : 0;
169
170 list_for_each_entry(child, &linkbus->devices, bus_list)
171 pcie_capability_clear_and_set_word(child, PCI_EXP_LNKCTL,
172 PCI_EXP_LNKCTL_CLKREQ_EN,
173 val);
174 link->clkpm_enabled = !!enable;
175}
176
177static void pcie_set_clkpm(struct pcie_link_state *link, int enable)
178{
179
180 if (!link->clkpm_capable)
181 enable = 0;
182
183 if (link->clkpm_enabled == enable)
184 return;
185 pcie_set_clkpm_nocheck(link, enable);
186}
187
188static void pcie_clkpm_cap_init(struct pcie_link_state *link, int blacklist)
189{
190 int capable = 1, enabled = 1;
191 u32 reg32;
192 u16 reg16;
193 struct pci_dev *child;
194 struct pci_bus *linkbus = link->pdev->subordinate;
195
196
197 list_for_each_entry(child, &linkbus->devices, bus_list) {
198 pcie_capability_read_dword(child, PCI_EXP_LNKCAP, ®32);
199 if (!(reg32 & PCI_EXP_LNKCAP_CLKPM)) {
200 capable = 0;
201 enabled = 0;
202 break;
203 }
204 pcie_capability_read_word(child, PCI_EXP_LNKCTL, ®16);
205 if (!(reg16 & PCI_EXP_LNKCTL_CLKREQ_EN))
206 enabled = 0;
207 }
208 link->clkpm_enabled = enabled;
209 link->clkpm_default = enabled;
210 link->clkpm_capable = (blacklist) ? 0 : capable;
211}
212
213
214
215
216
217
218static void pcie_aspm_configure_common_clock(struct pcie_link_state *link)
219{
220 int same_clock = 1;
221 u16 reg16, parent_reg, child_reg[8];
222 unsigned long start_jiffies;
223 struct pci_dev *child, *parent = link->pdev;
224 struct pci_bus *linkbus = parent->subordinate;
225
226
227
228
229 child = list_entry(linkbus->devices.next, struct pci_dev, bus_list);
230 BUG_ON(!pci_is_pcie(child));
231
232
233 pcie_capability_read_word(child, PCI_EXP_LNKSTA, ®16);
234 if (!(reg16 & PCI_EXP_LNKSTA_SLC))
235 same_clock = 0;
236
237
238 pcie_capability_read_word(parent, PCI_EXP_LNKSTA, ®16);
239 if (!(reg16 & PCI_EXP_LNKSTA_SLC))
240 same_clock = 0;
241
242
243 list_for_each_entry(child, &linkbus->devices, bus_list) {
244 pcie_capability_read_word(child, PCI_EXP_LNKCTL, ®16);
245 child_reg[PCI_FUNC(child->devfn)] = reg16;
246 if (same_clock)
247 reg16 |= PCI_EXP_LNKCTL_CCC;
248 else
249 reg16 &= ~PCI_EXP_LNKCTL_CCC;
250 pcie_capability_write_word(child, PCI_EXP_LNKCTL, reg16);
251 }
252
253
254 pcie_capability_read_word(parent, PCI_EXP_LNKCTL, ®16);
255 parent_reg = reg16;
256 if (same_clock)
257 reg16 |= PCI_EXP_LNKCTL_CCC;
258 else
259 reg16 &= ~PCI_EXP_LNKCTL_CCC;
260 pcie_capability_write_word(parent, PCI_EXP_LNKCTL, reg16);
261
262
263 reg16 |= PCI_EXP_LNKCTL_RL;
264 pcie_capability_write_word(parent, PCI_EXP_LNKCTL, reg16);
265
266
267 start_jiffies = jiffies;
268 for (;;) {
269 pcie_capability_read_word(parent, PCI_EXP_LNKSTA, ®16);
270 if (!(reg16 & PCI_EXP_LNKSTA_LT))
271 break;
272 if (time_after(jiffies, start_jiffies + LINK_RETRAIN_TIMEOUT))
273 break;
274 msleep(1);
275 }
276 if (!(reg16 & PCI_EXP_LNKSTA_LT))
277 return;
278
279
280 dev_err(&parent->dev, "ASPM: Could not configure common clock\n");
281 list_for_each_entry(child, &linkbus->devices, bus_list)
282 pcie_capability_write_word(child, PCI_EXP_LNKCTL,
283 child_reg[PCI_FUNC(child->devfn)]);
284 pcie_capability_write_word(parent, PCI_EXP_LNKCTL, parent_reg);
285}
286
287
288static u32 calc_l0s_latency(u32 encoding)
289{
290 if (encoding == 0x7)
291 return (5 * 1000);
292 return (64 << encoding);
293}
294
295
296static u32 calc_l0s_acceptable(u32 encoding)
297{
298 if (encoding == 0x7)
299 return -1U;
300 return (64 << encoding);
301}
302
303
304static u32 calc_l1_latency(u32 encoding)
305{
306 if (encoding == 0x7)
307 return (65 * 1000);
308 return (1000 << encoding);
309}
310
311
312static u32 calc_l1_acceptable(u32 encoding)
313{
314 if (encoding == 0x7)
315 return -1U;
316 return (1000 << encoding);
317}
318
319
320static u32 calc_l1ss_pwron(struct pci_dev *pdev, u32 scale, u32 val)
321{
322 switch (scale) {
323 case 0:
324 return val * 2;
325 case 1:
326 return val * 10;
327 case 2:
328 return val * 100;
329 }
330 dev_err(&pdev->dev, "%s: Invalid T_PwrOn scale: %u\n",
331 __func__, scale);
332 return 0;
333}
334
335struct aspm_register_info {
336 u32 support:2;
337 u32 enabled:2;
338 u32 latency_encoding_l0s;
339 u32 latency_encoding_l1;
340
341
342 u32 l1ss_cap_ptr;
343 u32 l1ss_cap;
344 u32 l1ss_ctl1;
345 u32 l1ss_ctl2;
346};
347
348static void pcie_get_aspm_reg(struct pci_dev *pdev,
349 struct aspm_register_info *info)
350{
351 u16 reg16;
352 u32 reg32;
353
354 pcie_capability_read_dword(pdev, PCI_EXP_LNKCAP, ®32);
355 info->support = (reg32 & PCI_EXP_LNKCAP_ASPMS) >> 10;
356 info->latency_encoding_l0s = (reg32 & PCI_EXP_LNKCAP_L0SEL) >> 12;
357 info->latency_encoding_l1 = (reg32 & PCI_EXP_LNKCAP_L1EL) >> 15;
358 pcie_capability_read_word(pdev, PCI_EXP_LNKCTL, ®16);
359 info->enabled = reg16 & PCI_EXP_LNKCTL_ASPMC;
360
361
362 info->l1ss_cap = info->l1ss_ctl1 = info->l1ss_ctl2 = 0;
363 info->l1ss_cap_ptr = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_L1SS);
364 if (!info->l1ss_cap_ptr)
365 return;
366 pci_read_config_dword(pdev, info->l1ss_cap_ptr + PCI_L1SS_CAP,
367 &info->l1ss_cap);
368 if (!(info->l1ss_cap & PCI_L1SS_CAP_L1_PM_SS)) {
369 info->l1ss_cap = 0;
370 return;
371 }
372 pci_read_config_dword(pdev, info->l1ss_cap_ptr + PCI_L1SS_CTL1,
373 &info->l1ss_ctl1);
374 pci_read_config_dword(pdev, info->l1ss_cap_ptr + PCI_L1SS_CTL2,
375 &info->l1ss_ctl2);
376}
377
378static void pcie_aspm_check_latency(struct pci_dev *endpoint)
379{
380 u32 latency, l1_switch_latency = 0;
381 struct aspm_latency *acceptable;
382 struct pcie_link_state *link;
383
384
385 if ((endpoint->current_state != PCI_D0) &&
386 (endpoint->current_state != PCI_UNKNOWN))
387 return;
388
389 link = endpoint->bus->self->link_state;
390 acceptable = &link->acceptable[PCI_FUNC(endpoint->devfn)];
391
392 while (link) {
393
394 if ((link->aspm_capable & ASPM_STATE_L0S_UP) &&
395 (link->latency_up.l0s > acceptable->l0s))
396 link->aspm_capable &= ~ASPM_STATE_L0S_UP;
397
398
399 if ((link->aspm_capable & ASPM_STATE_L0S_DW) &&
400 (link->latency_dw.l0s > acceptable->l0s))
401 link->aspm_capable &= ~ASPM_STATE_L0S_DW;
402
403
404
405
406
407
408
409
410
411
412
413
414
415 latency = max_t(u32, link->latency_up.l1, link->latency_dw.l1);
416 if ((link->aspm_capable & ASPM_STATE_L1) &&
417 (latency + l1_switch_latency > acceptable->l1))
418 link->aspm_capable &= ~ASPM_STATE_L1;
419 l1_switch_latency += 1000;
420
421 link = link->parent;
422 }
423}
424
425
426
427
428
429static struct pci_dev *pci_function_0(struct pci_bus *linkbus)
430{
431 struct pci_dev *child;
432
433 list_for_each_entry(child, &linkbus->devices, bus_list)
434 if (PCI_FUNC(child->devfn) == 0)
435 return child;
436 return NULL;
437}
438
439
440static void aspm_calc_l1ss_info(struct pcie_link_state *link,
441 struct aspm_register_info *upreg,
442 struct aspm_register_info *dwreg)
443{
444 u32 val1, val2, scale1, scale2;
445
446 link->l1ss.up_cap_ptr = upreg->l1ss_cap_ptr;
447 link->l1ss.dw_cap_ptr = dwreg->l1ss_cap_ptr;
448 link->l1ss.ctl1 = link->l1ss.ctl2 = 0;
449
450 if (!(link->aspm_support & ASPM_STATE_L1_2_MASK))
451 return;
452
453
454 val1 = (upreg->l1ss_cap >> 8) & 0xFF;
455 val2 = (upreg->l1ss_cap >> 8) & 0xFF;
456 if (val1 > val2)
457 link->l1ss.ctl1 |= val1 << 8;
458 else
459 link->l1ss.ctl1 |= val2 << 8;
460
461
462
463
464 link->l1ss.ctl1 |= LTR_L1_2_THRESHOLD_BITS;
465
466
467 val1 = (upreg->l1ss_cap >> 19) & 0x1F;
468 scale1 = (upreg->l1ss_cap >> 16) & 0x03;
469 val2 = (dwreg->l1ss_cap >> 19) & 0x1F;
470 scale2 = (dwreg->l1ss_cap >> 16) & 0x03;
471
472 if (calc_l1ss_pwron(link->pdev, scale1, val1) >
473 calc_l1ss_pwron(link->downstream, scale2, val2))
474 link->l1ss.ctl2 |= scale1 | (val1 << 3);
475 else
476 link->l1ss.ctl2 |= scale2 | (val2 << 3);
477}
478
479static void pcie_aspm_cap_init(struct pcie_link_state *link, int blacklist)
480{
481 struct pci_dev *child = link->downstream, *parent = link->pdev;
482 struct pci_bus *linkbus = parent->subordinate;
483 struct aspm_register_info upreg, dwreg;
484
485 if (blacklist) {
486
487 link->aspm_enabled = ASPM_STATE_ALL;
488 link->aspm_disable = ASPM_STATE_ALL;
489 return;
490 }
491
492
493 pcie_get_aspm_reg(parent, &upreg);
494 pcie_get_aspm_reg(child, &dwreg);
495
496
497
498
499
500 if (!(upreg.support & dwreg.support))
501 return;
502
503
504 pcie_aspm_configure_common_clock(link);
505
506
507
508
509
510 pcie_get_aspm_reg(parent, &upreg);
511 pcie_get_aspm_reg(child, &dwreg);
512
513
514
515
516
517
518
519
520 if (dwreg.support & upreg.support & PCIE_LINK_STATE_L0S)
521 link->aspm_support |= ASPM_STATE_L0S;
522 if (dwreg.enabled & PCIE_LINK_STATE_L0S)
523 link->aspm_enabled |= ASPM_STATE_L0S_UP;
524 if (upreg.enabled & PCIE_LINK_STATE_L0S)
525 link->aspm_enabled |= ASPM_STATE_L0S_DW;
526 link->latency_up.l0s = calc_l0s_latency(upreg.latency_encoding_l0s);
527 link->latency_dw.l0s = calc_l0s_latency(dwreg.latency_encoding_l0s);
528
529
530 if (upreg.support & dwreg.support & PCIE_LINK_STATE_L1)
531 link->aspm_support |= ASPM_STATE_L1;
532 if (upreg.enabled & dwreg.enabled & PCIE_LINK_STATE_L1)
533 link->aspm_enabled |= ASPM_STATE_L1;
534 link->latency_up.l1 = calc_l1_latency(upreg.latency_encoding_l1);
535 link->latency_dw.l1 = calc_l1_latency(dwreg.latency_encoding_l1);
536
537
538 if (upreg.l1ss_cap & dwreg.l1ss_cap & PCI_L1SS_CAP_ASPM_L1_1)
539 link->aspm_support |= ASPM_STATE_L1_1;
540 if (upreg.l1ss_cap & dwreg.l1ss_cap & PCI_L1SS_CAP_ASPM_L1_2)
541 link->aspm_support |= ASPM_STATE_L1_2;
542 if (upreg.l1ss_cap & dwreg.l1ss_cap & PCI_L1SS_CAP_PCIPM_L1_1)
543 link->aspm_support |= ASPM_STATE_L1_1_PCIPM;
544 if (upreg.l1ss_cap & dwreg.l1ss_cap & PCI_L1SS_CAP_PCIPM_L1_2)
545 link->aspm_support |= ASPM_STATE_L1_2_PCIPM;
546
547 if (upreg.l1ss_ctl1 & dwreg.l1ss_ctl1 & PCI_L1SS_CTL1_ASPM_L1_1)
548 link->aspm_enabled |= ASPM_STATE_L1_1;
549 if (upreg.l1ss_ctl1 & dwreg.l1ss_ctl1 & PCI_L1SS_CTL1_ASPM_L1_2)
550 link->aspm_enabled |= ASPM_STATE_L1_2;
551 if (upreg.l1ss_ctl1 & dwreg.l1ss_ctl1 & PCI_L1SS_CTL1_PCIPM_L1_1)
552 link->aspm_enabled |= ASPM_STATE_L1_1_PCIPM;
553 if (upreg.l1ss_ctl1 & dwreg.l1ss_ctl1 & PCI_L1SS_CTL1_PCIPM_L1_2)
554 link->aspm_enabled |= ASPM_STATE_L1_2_PCIPM;
555
556 if (link->aspm_support & ASPM_STATE_L1SS)
557 aspm_calc_l1ss_info(link, &upreg, &dwreg);
558
559
560 link->aspm_default = link->aspm_enabled;
561
562
563 link->aspm_capable = link->aspm_support;
564
565
566
567
568 list_for_each_entry(child, &linkbus->devices, bus_list) {
569 if (pci_pcie_type(child) == PCI_EXP_TYPE_PCI_BRIDGE) {
570 link->aspm_disable = ASPM_STATE_ALL;
571 break;
572 }
573 }
574
575
576 list_for_each_entry(child, &linkbus->devices, bus_list) {
577 u32 reg32, encoding;
578 struct aspm_latency *acceptable =
579 &link->acceptable[PCI_FUNC(child->devfn)];
580
581 if (pci_pcie_type(child) != PCI_EXP_TYPE_ENDPOINT &&
582 pci_pcie_type(child) != PCI_EXP_TYPE_LEG_END)
583 continue;
584
585 pcie_capability_read_dword(child, PCI_EXP_DEVCAP, ®32);
586
587 encoding = (reg32 & PCI_EXP_DEVCAP_L0S) >> 6;
588 acceptable->l0s = calc_l0s_acceptable(encoding);
589
590 encoding = (reg32 & PCI_EXP_DEVCAP_L1) >> 9;
591 acceptable->l1 = calc_l1_acceptable(encoding);
592
593 pcie_aspm_check_latency(child);
594 }
595}
596
597static void pci_clear_and_set_dword(struct pci_dev *pdev, int pos,
598 u32 clear, u32 set)
599{
600 u32 val;
601
602 pci_read_config_dword(pdev, pos, &val);
603 val &= ~clear;
604 val |= set;
605 pci_write_config_dword(pdev, pos, val);
606}
607
608
609static void pcie_config_aspm_l1ss(struct pcie_link_state *link, u32 state)
610{
611 u32 val, enable_req;
612 struct pci_dev *child = link->downstream, *parent = link->pdev;
613 u32 up_cap_ptr = link->l1ss.up_cap_ptr;
614 u32 dw_cap_ptr = link->l1ss.dw_cap_ptr;
615
616 enable_req = (link->aspm_enabled ^ state) & state;
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632 pci_clear_and_set_dword(child, dw_cap_ptr + PCI_L1SS_CTL1,
633 PCI_L1SS_CTL1_L1SS_MASK, 0);
634 pci_clear_and_set_dword(parent, up_cap_ptr + PCI_L1SS_CTL1,
635 PCI_L1SS_CTL1_L1SS_MASK, 0);
636
637
638
639
640 if (enable_req & (ASPM_STATE_L1_1 | ASPM_STATE_L1_2)) {
641 pcie_capability_clear_and_set_word(child, PCI_EXP_LNKCTL,
642 PCI_EXP_LNKCTL_ASPM_L1, 0);
643 pcie_capability_clear_and_set_word(parent, PCI_EXP_LNKCTL,
644 PCI_EXP_LNKCTL_ASPM_L1, 0);
645 }
646
647 if (enable_req & ASPM_STATE_L1_2_MASK) {
648
649
650 pci_write_config_dword(parent, up_cap_ptr + PCI_L1SS_CTL2,
651 link->l1ss.ctl2);
652 pci_write_config_dword(child, dw_cap_ptr + PCI_L1SS_CTL2,
653 link->l1ss.ctl2);
654
655
656 pci_clear_and_set_dword(parent, up_cap_ptr + PCI_L1SS_CTL1,
657 0xFF00, link->l1ss.ctl1);
658
659
660 pci_clear_and_set_dword(parent, dw_cap_ptr + PCI_L1SS_CTL1,
661 0xE3FF0000, link->l1ss.ctl1);
662 pci_clear_and_set_dword(child, dw_cap_ptr + PCI_L1SS_CTL1,
663 0xE3FF0000, link->l1ss.ctl1);
664 }
665
666 val = 0;
667 if (state & ASPM_STATE_L1_1)
668 val |= PCI_L1SS_CTL1_ASPM_L1_1;
669 if (state & ASPM_STATE_L1_2)
670 val |= PCI_L1SS_CTL1_ASPM_L1_2;
671 if (state & ASPM_STATE_L1_1_PCIPM)
672 val |= PCI_L1SS_CTL1_PCIPM_L1_1;
673 if (state & ASPM_STATE_L1_2_PCIPM)
674 val |= PCI_L1SS_CTL1_PCIPM_L1_2;
675
676
677 pci_clear_and_set_dword(parent, up_cap_ptr + PCI_L1SS_CTL1,
678 PCI_L1SS_CAP_L1_PM_SS, val);
679 pci_clear_and_set_dword(child, dw_cap_ptr + PCI_L1SS_CTL1,
680 PCI_L1SS_CAP_L1_PM_SS, val);
681}
682
683static void pcie_config_aspm_dev(struct pci_dev *pdev, u32 val)
684{
685 pcie_capability_clear_and_set_word(pdev, PCI_EXP_LNKCTL,
686 PCI_EXP_LNKCTL_ASPMC, val);
687}
688
689static void pcie_config_aspm_link(struct pcie_link_state *link, u32 state)
690{
691 u32 upstream = 0, dwstream = 0;
692 struct pci_dev *child = link->downstream, *parent = link->pdev;
693 struct pci_bus *linkbus = parent->subordinate;
694
695
696 state &= (link->aspm_capable & ~link->aspm_disable);
697
698
699 if (!(state & ASPM_STATE_L1))
700 state &= ~ASPM_STATE_L1SS;
701
702
703 if (parent->current_state != PCI_D0 || child->current_state != PCI_D0) {
704 state &= ~ASPM_STATE_L1_SS_PCIPM;
705 state |= (link->aspm_enabled & ASPM_STATE_L1_SS_PCIPM);
706 }
707
708
709 if (link->aspm_enabled == state)
710 return;
711
712 if (state & ASPM_STATE_L0S_UP)
713 dwstream |= PCI_EXP_LNKCTL_ASPM_L0S;
714 if (state & ASPM_STATE_L0S_DW)
715 upstream |= PCI_EXP_LNKCTL_ASPM_L0S;
716 if (state & ASPM_STATE_L1) {
717 upstream |= PCI_EXP_LNKCTL_ASPM_L1;
718 dwstream |= PCI_EXP_LNKCTL_ASPM_L1;
719 }
720
721 if (link->aspm_capable & ASPM_STATE_L1SS)
722 pcie_config_aspm_l1ss(link, state);
723
724
725
726
727
728
729
730 if (state & ASPM_STATE_L1)
731 pcie_config_aspm_dev(parent, upstream);
732 list_for_each_entry(child, &linkbus->devices, bus_list)
733 pcie_config_aspm_dev(child, dwstream);
734 if (!(state & ASPM_STATE_L1))
735 pcie_config_aspm_dev(parent, upstream);
736
737 link->aspm_enabled = state;
738}
739
740static void pcie_config_aspm_path(struct pcie_link_state *link)
741{
742 while (link) {
743 pcie_config_aspm_link(link, policy_to_aspm_state(link));
744 link = link->parent;
745 }
746}
747
748static void free_link_state(struct pcie_link_state *link)
749{
750 link->pdev->link_state = NULL;
751 kfree(link);
752}
753
754static int pcie_aspm_sanity_check(struct pci_dev *pdev)
755{
756 struct pci_dev *child;
757 u32 reg32;
758
759
760
761
762
763 list_for_each_entry(child, &pdev->subordinate->devices, bus_list) {
764 if (!pci_is_pcie(child))
765 return -EINVAL;
766
767
768
769
770
771
772
773 if (aspm_disabled)
774 continue;
775
776
777
778
779
780 pcie_capability_read_dword(child, PCI_EXP_DEVCAP, ®32);
781 if (!(reg32 & PCI_EXP_DEVCAP_RBER) && !aspm_force) {
782 dev_info(&child->dev, "disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'\n");
783 return -EINVAL;
784 }
785 }
786 return 0;
787}
788
789static struct pcie_link_state *alloc_pcie_link_state(struct pci_dev *pdev)
790{
791 struct pcie_link_state *link;
792
793 link = kzalloc(sizeof(*link), GFP_KERNEL);
794 if (!link)
795 return NULL;
796
797 INIT_LIST_HEAD(&link->sibling);
798 INIT_LIST_HEAD(&link->children);
799 INIT_LIST_HEAD(&link->link);
800 link->pdev = pdev;
801 link->downstream = pci_function_0(pdev->subordinate);
802
803
804
805
806
807 if (pci_pcie_type(pdev) == PCI_EXP_TYPE_ROOT_PORT ||
808 pci_pcie_type(pdev) == PCI_EXP_TYPE_PCIE_BRIDGE) {
809 link->root = link;
810 } else {
811 struct pcie_link_state *parent;
812
813 parent = pdev->bus->parent->self->link_state;
814 if (!parent) {
815 kfree(link);
816 return NULL;
817 }
818
819 link->parent = parent;
820 link->root = link->parent->root;
821 list_add(&link->link, &parent->children);
822 }
823
824 list_add(&link->sibling, &link_list);
825 pdev->link_state = link;
826 return link;
827}
828
829
830
831
832
833
834void pcie_aspm_init_link_state(struct pci_dev *pdev)
835{
836 struct pcie_link_state *link;
837 int blacklist = !!pcie_aspm_sanity_check(pdev);
838
839 if (!aspm_support_enabled)
840 return;
841
842 if (pdev->link_state)
843 return;
844
845
846
847
848
849
850 if (!pdev->has_secondary_link)
851 return;
852
853
854 if (pci_pcie_type(pdev) == PCI_EXP_TYPE_ROOT_PORT &&
855 pdev->bus->self)
856 return;
857
858 down_read(&pci_bus_sem);
859 if (list_empty(&pdev->subordinate->devices))
860 goto out;
861
862 mutex_lock(&aspm_lock);
863 link = alloc_pcie_link_state(pdev);
864 if (!link)
865 goto unlock;
866
867
868
869
870
871 pcie_aspm_cap_init(link, blacklist);
872
873
874 pcie_clkpm_cap_init(link, blacklist);
875
876
877
878
879
880
881
882
883
884 if (aspm_policy != POLICY_POWERSAVE &&
885 aspm_policy != POLICY_POWER_SUPERSAVE) {
886 pcie_config_aspm_path(link);
887 pcie_set_clkpm(link, policy_to_clkpm_state(link));
888 }
889
890unlock:
891 mutex_unlock(&aspm_lock);
892out:
893 up_read(&pci_bus_sem);
894}
895
896
897static void pcie_update_aspm_capable(struct pcie_link_state *root)
898{
899 struct pcie_link_state *link;
900 BUG_ON(root->parent);
901 list_for_each_entry(link, &link_list, sibling) {
902 if (link->root != root)
903 continue;
904 link->aspm_capable = link->aspm_support;
905 }
906 list_for_each_entry(link, &link_list, sibling) {
907 struct pci_dev *child;
908 struct pci_bus *linkbus = link->pdev->subordinate;
909 if (link->root != root)
910 continue;
911 list_for_each_entry(child, &linkbus->devices, bus_list) {
912 if ((pci_pcie_type(child) != PCI_EXP_TYPE_ENDPOINT) &&
913 (pci_pcie_type(child) != PCI_EXP_TYPE_LEG_END))
914 continue;
915 pcie_aspm_check_latency(child);
916 }
917 }
918}
919
920
921void pcie_aspm_exit_link_state(struct pci_dev *pdev)
922{
923 struct pci_dev *parent = pdev->bus->self;
924 struct pcie_link_state *link, *root, *parent_link;
925
926 if (!parent || !parent->link_state)
927 return;
928
929 down_read(&pci_bus_sem);
930 mutex_lock(&aspm_lock);
931
932
933
934
935 if (!list_is_last(&pdev->bus_list, &parent->subordinate->devices))
936 goto out;
937
938 link = parent->link_state;
939 root = link->root;
940 parent_link = link->parent;
941
942
943 pcie_config_aspm_link(link, 0);
944 list_del(&link->sibling);
945 list_del(&link->link);
946
947 free_link_state(link);
948
949
950 if (parent_link) {
951 pcie_update_aspm_capable(root);
952 pcie_config_aspm_path(parent_link);
953 }
954out:
955 mutex_unlock(&aspm_lock);
956 up_read(&pci_bus_sem);
957}
958
959
960void pcie_aspm_pm_state_change(struct pci_dev *pdev)
961{
962 struct pcie_link_state *link = pdev->link_state;
963
964 if (aspm_disabled || !link)
965 return;
966
967
968
969
970 down_read(&pci_bus_sem);
971 mutex_lock(&aspm_lock);
972 pcie_update_aspm_capable(link->root);
973 pcie_config_aspm_path(link);
974 mutex_unlock(&aspm_lock);
975 up_read(&pci_bus_sem);
976}
977
978void pcie_aspm_powersave_config_link(struct pci_dev *pdev)
979{
980 struct pcie_link_state *link = pdev->link_state;
981
982 if (aspm_disabled || !link)
983 return;
984
985 if (aspm_policy != POLICY_POWERSAVE &&
986 aspm_policy != POLICY_POWER_SUPERSAVE)
987 return;
988
989 down_read(&pci_bus_sem);
990 mutex_lock(&aspm_lock);
991 pcie_config_aspm_path(link);
992 pcie_set_clkpm(link, policy_to_clkpm_state(link));
993 mutex_unlock(&aspm_lock);
994 up_read(&pci_bus_sem);
995}
996
997static void __pci_disable_link_state(struct pci_dev *pdev, int state, bool sem)
998{
999 struct pci_dev *parent = pdev->bus->self;
1000 struct pcie_link_state *link;
1001
1002 if (!pci_is_pcie(pdev))
1003 return;
1004
1005 if (pdev->has_secondary_link)
1006 parent = pdev;
1007 if (!parent || !parent->link_state)
1008 return;
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018 if (aspm_disabled) {
1019 dev_warn(&pdev->dev, "can't disable ASPM; OS doesn't have ASPM control\n");
1020 return;
1021 }
1022
1023 if (sem)
1024 down_read(&pci_bus_sem);
1025 mutex_lock(&aspm_lock);
1026 link = parent->link_state;
1027 if (state & PCIE_LINK_STATE_L0S)
1028 link->aspm_disable |= ASPM_STATE_L0S;
1029 if (state & PCIE_LINK_STATE_L1)
1030 link->aspm_disable |= ASPM_STATE_L1;
1031 pcie_config_aspm_link(link, policy_to_aspm_state(link));
1032
1033 if (state & PCIE_LINK_STATE_CLKPM) {
1034 link->clkpm_capable = 0;
1035 pcie_set_clkpm(link, 0);
1036 }
1037 mutex_unlock(&aspm_lock);
1038 if (sem)
1039 up_read(&pci_bus_sem);
1040}
1041
1042void pci_disable_link_state_locked(struct pci_dev *pdev, int state)
1043{
1044 __pci_disable_link_state(pdev, state, false);
1045}
1046EXPORT_SYMBOL(pci_disable_link_state_locked);
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057void pci_disable_link_state(struct pci_dev *pdev, int state)
1058{
1059 __pci_disable_link_state(pdev, state, true);
1060}
1061EXPORT_SYMBOL(pci_disable_link_state);
1062
1063static int pcie_aspm_set_policy(const char *val, struct kernel_param *kp)
1064{
1065 int i;
1066 struct pcie_link_state *link;
1067
1068 if (aspm_disabled)
1069 return -EPERM;
1070 for (i = 0; i < ARRAY_SIZE(policy_str); i++)
1071 if (!strncmp(val, policy_str[i], strlen(policy_str[i])))
1072 break;
1073 if (i >= ARRAY_SIZE(policy_str))
1074 return -EINVAL;
1075 if (i == aspm_policy)
1076 return 0;
1077
1078 down_read(&pci_bus_sem);
1079 mutex_lock(&aspm_lock);
1080 aspm_policy = i;
1081 list_for_each_entry(link, &link_list, sibling) {
1082 pcie_config_aspm_link(link, policy_to_aspm_state(link));
1083 pcie_set_clkpm(link, policy_to_clkpm_state(link));
1084 }
1085 mutex_unlock(&aspm_lock);
1086 up_read(&pci_bus_sem);
1087 return 0;
1088}
1089
1090static int pcie_aspm_get_policy(char *buffer, struct kernel_param *kp)
1091{
1092 int i, cnt = 0;
1093 for (i = 0; i < ARRAY_SIZE(policy_str); i++)
1094 if (i == aspm_policy)
1095 cnt += sprintf(buffer + cnt, "[%s] ", policy_str[i]);
1096 else
1097 cnt += sprintf(buffer + cnt, "%s ", policy_str[i]);
1098 return cnt;
1099}
1100
1101module_param_call(policy, pcie_aspm_set_policy, pcie_aspm_get_policy,
1102 NULL, 0644);
1103
1104#ifdef CONFIG_PCIEASPM_DEBUG
1105static ssize_t link_state_show(struct device *dev,
1106 struct device_attribute *attr,
1107 char *buf)
1108{
1109 struct pci_dev *pci_device = to_pci_dev(dev);
1110 struct pcie_link_state *link_state = pci_device->link_state;
1111
1112 return sprintf(buf, "%d\n", link_state->aspm_enabled);
1113}
1114
1115static ssize_t link_state_store(struct device *dev,
1116 struct device_attribute *attr,
1117 const char *buf,
1118 size_t n)
1119{
1120 struct pci_dev *pdev = to_pci_dev(dev);
1121 struct pcie_link_state *link, *root = pdev->link_state->root;
1122 u32 state;
1123
1124 if (aspm_disabled)
1125 return -EPERM;
1126
1127 if (kstrtouint(buf, 10, &state))
1128 return -EINVAL;
1129 if ((state & ~ASPM_STATE_ALL) != 0)
1130 return -EINVAL;
1131
1132 down_read(&pci_bus_sem);
1133 mutex_lock(&aspm_lock);
1134 list_for_each_entry(link, &link_list, sibling) {
1135 if (link->root != root)
1136 continue;
1137 pcie_config_aspm_link(link, state);
1138 }
1139 mutex_unlock(&aspm_lock);
1140 up_read(&pci_bus_sem);
1141 return n;
1142}
1143
1144static ssize_t clk_ctl_show(struct device *dev,
1145 struct device_attribute *attr,
1146 char *buf)
1147{
1148 struct pci_dev *pci_device = to_pci_dev(dev);
1149 struct pcie_link_state *link_state = pci_device->link_state;
1150
1151 return sprintf(buf, "%d\n", link_state->clkpm_enabled);
1152}
1153
1154static ssize_t clk_ctl_store(struct device *dev,
1155 struct device_attribute *attr,
1156 const char *buf,
1157 size_t n)
1158{
1159 struct pci_dev *pdev = to_pci_dev(dev);
1160 bool state;
1161
1162 if (strtobool(buf, &state))
1163 return -EINVAL;
1164
1165 down_read(&pci_bus_sem);
1166 mutex_lock(&aspm_lock);
1167 pcie_set_clkpm_nocheck(pdev->link_state, state);
1168 mutex_unlock(&aspm_lock);
1169 up_read(&pci_bus_sem);
1170
1171 return n;
1172}
1173
1174static DEVICE_ATTR_RW(link_state);
1175static DEVICE_ATTR_RW(clk_ctl);
1176
1177static char power_group[] = "power";
1178void pcie_aspm_create_sysfs_dev_files(struct pci_dev *pdev)
1179{
1180 struct pcie_link_state *link_state = pdev->link_state;
1181
1182 if (!link_state)
1183 return;
1184
1185 if (link_state->aspm_support)
1186 sysfs_add_file_to_group(&pdev->dev.kobj,
1187 &dev_attr_link_state.attr, power_group);
1188 if (link_state->clkpm_capable)
1189 sysfs_add_file_to_group(&pdev->dev.kobj,
1190 &dev_attr_clk_ctl.attr, power_group);
1191}
1192
1193void pcie_aspm_remove_sysfs_dev_files(struct pci_dev *pdev)
1194{
1195 struct pcie_link_state *link_state = pdev->link_state;
1196
1197 if (!link_state)
1198 return;
1199
1200 if (link_state->aspm_support)
1201 sysfs_remove_file_from_group(&pdev->dev.kobj,
1202 &dev_attr_link_state.attr, power_group);
1203 if (link_state->clkpm_capable)
1204 sysfs_remove_file_from_group(&pdev->dev.kobj,
1205 &dev_attr_clk_ctl.attr, power_group);
1206}
1207#endif
1208
1209static int __init pcie_aspm_disable(char *str)
1210{
1211 if (!strcmp(str, "off")) {
1212 aspm_policy = POLICY_DEFAULT;
1213 aspm_disabled = 1;
1214 aspm_support_enabled = false;
1215 printk(KERN_INFO "PCIe ASPM is disabled\n");
1216 } else if (!strcmp(str, "force")) {
1217 aspm_force = 1;
1218 printk(KERN_INFO "PCIe ASPM is forcibly enabled\n");
1219 }
1220 return 1;
1221}
1222
1223__setup("pcie_aspm=", pcie_aspm_disable);
1224
1225void pcie_no_aspm(void)
1226{
1227
1228
1229
1230
1231
1232
1233 if (!aspm_force) {
1234 aspm_policy = POLICY_DEFAULT;
1235 aspm_disabled = 1;
1236 }
1237}
1238
1239bool pcie_aspm_support_enabled(void)
1240{
1241 return aspm_support_enabled;
1242}
1243EXPORT_SYMBOL(pcie_aspm_support_enabled);
1244