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_L0S (ASPM_STATE_L0S_UP | ASPM_STATE_L0S_DW)
34#define ASPM_STATE_ALL (ASPM_STATE_L0S | ASPM_STATE_L1)
35
36struct aspm_latency {
37 u32 l0s;
38 u32 l1;
39};
40
41struct pcie_link_state {
42 struct pci_dev *pdev;
43 struct pcie_link_state *root;
44 struct pcie_link_state *parent;
45 struct list_head sibling;
46 struct list_head children;
47 struct list_head link;
48
49
50 u32 aspm_support:3;
51 u32 aspm_enabled:3;
52 u32 aspm_capable:3;
53 u32 aspm_default:3;
54 u32 aspm_disable:3;
55
56
57 u32 clkpm_capable:1;
58 u32 clkpm_enabled:1;
59 u32 clkpm_default:1;
60
61
62 struct aspm_latency latency_up;
63 struct aspm_latency latency_dw;
64
65
66
67
68 struct aspm_latency acceptable[8];
69};
70
71static int aspm_disabled, aspm_force;
72static bool aspm_support_enabled = true;
73static DEFINE_MUTEX(aspm_lock);
74static LIST_HEAD(link_list);
75
76#define POLICY_DEFAULT 0
77#define POLICY_PERFORMANCE 1
78#define POLICY_POWERSAVE 2
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
85static int aspm_policy;
86#endif
87
88static const char *policy_str[] = {
89 [POLICY_DEFAULT] = "default",
90 [POLICY_PERFORMANCE] = "performance",
91 [POLICY_POWERSAVE] = "powersave"
92};
93
94#define LINK_RETRAIN_TIMEOUT HZ
95
96static int policy_to_aspm_state(struct pcie_link_state *link)
97{
98 switch (aspm_policy) {
99 case POLICY_PERFORMANCE:
100
101 return 0;
102 case POLICY_POWERSAVE:
103
104 return ASPM_STATE_ALL;
105 case POLICY_DEFAULT:
106 return link->aspm_default;
107 }
108 return 0;
109}
110
111static int policy_to_clkpm_state(struct pcie_link_state *link)
112{
113 switch (aspm_policy) {
114 case POLICY_PERFORMANCE:
115
116 return 0;
117 case POLICY_POWERSAVE:
118
119 return 1;
120 case POLICY_DEFAULT:
121 return link->clkpm_default;
122 }
123 return 0;
124}
125
126static void pcie_set_clkpm_nocheck(struct pcie_link_state *link, int enable)
127{
128 struct pci_dev *child;
129 struct pci_bus *linkbus = link->pdev->subordinate;
130 u32 val = enable ? PCI_EXP_LNKCTL_CLKREQ_EN : 0;
131
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);
136 link->clkpm_enabled = !!enable;
137}
138
139static void pcie_set_clkpm(struct pcie_link_state *link, int enable)
140{
141
142 if (!link->clkpm_capable && enable)
143 enable = 0;
144
145 if (link->clkpm_enabled == enable)
146 return;
147 pcie_set_clkpm_nocheck(link, enable);
148}
149
150static void pcie_clkpm_cap_init(struct pcie_link_state *link, int blacklist)
151{
152 int capable = 1, enabled = 1;
153 u32 reg32;
154 u16 reg16;
155 struct pci_dev *child;
156 struct pci_bus *linkbus = link->pdev->subordinate;
157
158
159 list_for_each_entry(child, &linkbus->devices, bus_list) {
160 pcie_capability_read_dword(child, PCI_EXP_LNKCAP, ®32);
161 if (!(reg32 & PCI_EXP_LNKCAP_CLKPM)) {
162 capable = 0;
163 enabled = 0;
164 break;
165 }
166 pcie_capability_read_word(child, PCI_EXP_LNKCTL, ®16);
167 if (!(reg16 & PCI_EXP_LNKCTL_CLKREQ_EN))
168 enabled = 0;
169 }
170 link->clkpm_enabled = enabled;
171 link->clkpm_default = enabled;
172 link->clkpm_capable = (blacklist) ? 0 : capable;
173}
174
175
176
177
178
179
180static void pcie_aspm_configure_common_clock(struct pcie_link_state *link)
181{
182 int same_clock = 1;
183 u16 reg16, parent_reg, child_reg[8];
184 unsigned long start_jiffies;
185 struct pci_dev *child, *parent = link->pdev;
186 struct pci_bus *linkbus = parent->subordinate;
187
188
189
190
191 child = list_entry(linkbus->devices.next, struct pci_dev, bus_list);
192 BUG_ON(!pci_is_pcie(child));
193
194
195 pcie_capability_read_word(child, PCI_EXP_LNKSTA, ®16);
196 if (!(reg16 & PCI_EXP_LNKSTA_SLC))
197 same_clock = 0;
198
199
200 pcie_capability_read_word(parent, PCI_EXP_LNKSTA, ®16);
201 if (!(reg16 & PCI_EXP_LNKSTA_SLC))
202 same_clock = 0;
203
204
205 list_for_each_entry(child, &linkbus->devices, bus_list) {
206 pcie_capability_read_word(child, PCI_EXP_LNKCTL, ®16);
207 child_reg[PCI_FUNC(child->devfn)] = reg16;
208 if (same_clock)
209 reg16 |= PCI_EXP_LNKCTL_CCC;
210 else
211 reg16 &= ~PCI_EXP_LNKCTL_CCC;
212 pcie_capability_write_word(child, PCI_EXP_LNKCTL, reg16);
213 }
214
215
216 pcie_capability_read_word(parent, PCI_EXP_LNKCTL, ®16);
217 parent_reg = reg16;
218 if (same_clock)
219 reg16 |= PCI_EXP_LNKCTL_CCC;
220 else
221 reg16 &= ~PCI_EXP_LNKCTL_CCC;
222 pcie_capability_write_word(parent, PCI_EXP_LNKCTL, reg16);
223
224
225 reg16 |= PCI_EXP_LNKCTL_RL;
226 pcie_capability_write_word(parent, PCI_EXP_LNKCTL, reg16);
227
228
229 start_jiffies = jiffies;
230 for (;;) {
231 pcie_capability_read_word(parent, PCI_EXP_LNKSTA, ®16);
232 if (!(reg16 & PCI_EXP_LNKSTA_LT))
233 break;
234 if (time_after(jiffies, start_jiffies + LINK_RETRAIN_TIMEOUT))
235 break;
236 msleep(1);
237 }
238 if (!(reg16 & PCI_EXP_LNKSTA_LT))
239 return;
240
241
242 dev_err(&parent->dev, "ASPM: Could not configure common clock\n");
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);
247}
248
249
250static u32 calc_l0s_latency(u32 encoding)
251{
252 if (encoding == 0x7)
253 return (5 * 1000);
254 return (64 << encoding);
255}
256
257
258static u32 calc_l0s_acceptable(u32 encoding)
259{
260 if (encoding == 0x7)
261 return -1U;
262 return (64 << encoding);
263}
264
265
266static u32 calc_l1_latency(u32 encoding)
267{
268 if (encoding == 0x7)
269 return (65 * 1000);
270 return (1000 << encoding);
271}
272
273
274static u32 calc_l1_acceptable(u32 encoding)
275{
276 if (encoding == 0x7)
277 return -1U;
278 return (1000 << encoding);
279}
280
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)
290{
291 u16 reg16;
292 u32 reg32;
293
294 pcie_capability_read_dword(pdev, PCI_EXP_LNKCAP, ®32);
295 info->support = (reg32 & PCI_EXP_LNKCAP_ASPMS) >> 10;
296 info->latency_encoding_l0s = (reg32 & PCI_EXP_LNKCAP_L0SEL) >> 12;
297 info->latency_encoding_l1 = (reg32 & PCI_EXP_LNKCAP_L1EL) >> 15;
298 pcie_capability_read_word(pdev, PCI_EXP_LNKCTL, ®16);
299 info->enabled = reg16 & PCI_EXP_LNKCTL_ASPMC;
300}
301
302static void pcie_aspm_check_latency(struct pci_dev *endpoint)
303{
304 u32 latency, l1_switch_latency = 0;
305 struct aspm_latency *acceptable;
306 struct pcie_link_state *link;
307
308
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) {
317
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
323 if ((link->aspm_capable & ASPM_STATE_L0S_DW) &&
324 (link->latency_dw.l0s > acceptable->l0s))
325 link->aspm_capable &= ~ASPM_STATE_L0S_DW;
326
327
328
329
330
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;
335 l1_switch_latency += 1000;
336
337 link = link->parent;
338 }
339}
340
341static void pcie_aspm_cap_init(struct pcie_link_state *link, int blacklist)
342{
343 struct pci_dev *child, *parent = link->pdev;
344 struct pci_bus *linkbus = parent->subordinate;
345 struct aspm_register_info upreg, dwreg;
346
347 if (blacklist) {
348
349 link->aspm_enabled = ASPM_STATE_ALL;
350 link->aspm_disable = ASPM_STATE_ALL;
351 return;
352 }
353
354
355 pcie_get_aspm_reg(parent, &upreg);
356 child = list_entry(linkbus->devices.next, struct pci_dev, bus_list);
357 pcie_get_aspm_reg(child, &dwreg);
358
359
360
361
362
363 if (!(upreg.support & dwreg.support))
364 return;
365
366
367 pcie_aspm_configure_common_clock(link);
368
369
370
371
372
373 pcie_get_aspm_reg(parent, &upreg);
374 pcie_get_aspm_reg(child, &dwreg);
375
376
377
378
379
380
381
382
383 if (dwreg.support & upreg.support & PCIE_LINK_STATE_L0S)
384 link->aspm_support |= ASPM_STATE_L0S;
385 if (dwreg.enabled & PCIE_LINK_STATE_L0S)
386 link->aspm_enabled |= ASPM_STATE_L0S_UP;
387 if (upreg.enabled & PCIE_LINK_STATE_L0S)
388 link->aspm_enabled |= ASPM_STATE_L0S_DW;
389 link->latency_up.l0s = calc_l0s_latency(upreg.latency_encoding_l0s);
390 link->latency_dw.l0s = calc_l0s_latency(dwreg.latency_encoding_l0s);
391
392
393 if (upreg.support & dwreg.support & PCIE_LINK_STATE_L1)
394 link->aspm_support |= ASPM_STATE_L1;
395 if (upreg.enabled & dwreg.enabled & PCIE_LINK_STATE_L1)
396 link->aspm_enabled |= ASPM_STATE_L1;
397 link->latency_up.l1 = calc_l1_latency(upreg.latency_encoding_l1);
398 link->latency_dw.l1 = calc_l1_latency(dwreg.latency_encoding_l1);
399
400
401 link->aspm_default = link->aspm_enabled;
402
403
404 link->aspm_capable = link->aspm_support;
405
406
407
408
409 list_for_each_entry(child, &linkbus->devices, bus_list) {
410 if (pci_pcie_type(child) == PCI_EXP_TYPE_PCI_BRIDGE) {
411 link->aspm_disable = ASPM_STATE_ALL;
412 break;
413 }
414 }
415
416
417 list_for_each_entry(child, &linkbus->devices, bus_list) {
418 u32 reg32, encoding;
419 struct aspm_latency *acceptable =
420 &link->acceptable[PCI_FUNC(child->devfn)];
421
422 if (pci_pcie_type(child) != PCI_EXP_TYPE_ENDPOINT &&
423 pci_pcie_type(child) != PCI_EXP_TYPE_LEG_END)
424 continue;
425
426 pcie_capability_read_dword(child, PCI_EXP_DEVCAP, ®32);
427
428 encoding = (reg32 & PCI_EXP_DEVCAP_L0S) >> 6;
429 acceptable->l0s = calc_l0s_acceptable(encoding);
430
431 encoding = (reg32 & PCI_EXP_DEVCAP_L1) >> 9;
432 acceptable->l1 = calc_l1_acceptable(encoding);
433
434 pcie_aspm_check_latency(child);
435 }
436}
437
438static void pcie_config_aspm_dev(struct pci_dev *pdev, u32 val)
439{
440 pcie_capability_clear_and_set_word(pdev, PCI_EXP_LNKCTL,
441 PCI_EXP_LNKCTL_ASPMC, val);
442}
443
444static void pcie_config_aspm_link(struct pcie_link_state *link, u32 state)
445{
446 u32 upstream = 0, dwstream = 0;
447 struct pci_dev *child, *parent = link->pdev;
448 struct pci_bus *linkbus = parent->subordinate;
449
450
451 state &= (link->aspm_capable & ~link->aspm_disable);
452 if (link->aspm_enabled == state)
453 return;
454
455 if (state & ASPM_STATE_L0S_UP)
456 dwstream |= PCI_EXP_LNKCTL_ASPM_L0S;
457 if (state & ASPM_STATE_L0S_DW)
458 upstream |= PCI_EXP_LNKCTL_ASPM_L0S;
459 if (state & ASPM_STATE_L1) {
460 upstream |= PCI_EXP_LNKCTL_ASPM_L1;
461 dwstream |= PCI_EXP_LNKCTL_ASPM_L1;
462 }
463
464
465
466
467
468
469 if (state & ASPM_STATE_L1)
470 pcie_config_aspm_dev(parent, upstream);
471 list_for_each_entry(child, &linkbus->devices, bus_list)
472 pcie_config_aspm_dev(child, dwstream);
473 if (!(state & ASPM_STATE_L1))
474 pcie_config_aspm_dev(parent, upstream);
475
476 link->aspm_enabled = state;
477}
478
479static void pcie_config_aspm_path(struct pcie_link_state *link)
480{
481 while (link) {
482 pcie_config_aspm_link(link, policy_to_aspm_state(link));
483 link = link->parent;
484 }
485}
486
487static void free_link_state(struct pcie_link_state *link)
488{
489 link->pdev->link_state = NULL;
490 kfree(link);
491}
492
493static int pcie_aspm_sanity_check(struct pci_dev *pdev)
494{
495 struct pci_dev *child;
496 u32 reg32;
497
498
499
500
501
502 list_for_each_entry(child, &pdev->subordinate->devices, bus_list) {
503 if (!pci_is_pcie(child))
504 return -EINVAL;
505
506
507
508
509
510
511
512 if (aspm_disabled)
513 continue;
514
515
516
517
518
519 pcie_capability_read_dword(child, PCI_EXP_DEVCAP, ®32);
520 if (!(reg32 & PCI_EXP_DEVCAP_RBER) && !aspm_force) {
521 dev_info(&child->dev, "disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'\n");
522 return -EINVAL;
523 }
524 }
525 return 0;
526}
527
528static struct pcie_link_state *alloc_pcie_link_state(struct pci_dev *pdev)
529{
530 struct pcie_link_state *link;
531
532 link = kzalloc(sizeof(*link), GFP_KERNEL);
533 if (!link)
534 return NULL;
535
536 INIT_LIST_HEAD(&link->sibling);
537 INIT_LIST_HEAD(&link->children);
538 INIT_LIST_HEAD(&link->link);
539 link->pdev = pdev;
540
541
542
543
544
545 if (pci_pcie_type(pdev) == PCI_EXP_TYPE_ROOT_PORT ||
546 pci_pcie_type(pdev) == PCI_EXP_TYPE_PCIE_BRIDGE) {
547 link->root = link;
548 } else {
549 struct pcie_link_state *parent;
550
551 parent = pdev->bus->parent->self->link_state;
552 if (!parent) {
553 kfree(link);
554 return NULL;
555 }
556
557 link->parent = parent;
558 link->root = link->parent->root;
559 list_add(&link->link, &parent->children);
560 }
561
562 list_add(&link->sibling, &link_list);
563 pdev->link_state = link;
564 return link;
565}
566
567
568
569
570
571
572void pcie_aspm_init_link_state(struct pci_dev *pdev)
573{
574 struct pcie_link_state *link;
575 int blacklist = !!pcie_aspm_sanity_check(pdev);
576
577 if (!aspm_support_enabled)
578 return;
579
580 if (pdev->link_state)
581 return;
582
583
584
585
586
587
588 if (!pdev->has_secondary_link)
589 return;
590
591
592 if (pci_pcie_type(pdev) == PCI_EXP_TYPE_ROOT_PORT &&
593 pdev->bus->self)
594 return;
595
596 down_read(&pci_bus_sem);
597 if (list_empty(&pdev->subordinate->devices))
598 goto out;
599
600 mutex_lock(&aspm_lock);
601 link = alloc_pcie_link_state(pdev);
602 if (!link)
603 goto unlock;
604
605
606
607
608
609 pcie_aspm_cap_init(link, blacklist);
610
611
612 pcie_clkpm_cap_init(link, blacklist);
613
614
615
616
617
618
619
620
621
622 if (aspm_policy != POLICY_POWERSAVE) {
623 pcie_config_aspm_path(link);
624 pcie_set_clkpm(link, policy_to_clkpm_state(link));
625 }
626
627unlock:
628 mutex_unlock(&aspm_lock);
629out:
630 up_read(&pci_bus_sem);
631}
632
633
634static void pcie_update_aspm_capable(struct pcie_link_state *root)
635{
636 struct pcie_link_state *link;
637 BUG_ON(root->parent);
638 list_for_each_entry(link, &link_list, sibling) {
639 if (link->root != root)
640 continue;
641 link->aspm_capable = link->aspm_support;
642 }
643 list_for_each_entry(link, &link_list, sibling) {
644 struct pci_dev *child;
645 struct pci_bus *linkbus = link->pdev->subordinate;
646 if (link->root != root)
647 continue;
648 list_for_each_entry(child, &linkbus->devices, bus_list) {
649 if ((pci_pcie_type(child) != PCI_EXP_TYPE_ENDPOINT) &&
650 (pci_pcie_type(child) != PCI_EXP_TYPE_LEG_END))
651 continue;
652 pcie_aspm_check_latency(child);
653 }
654 }
655}
656
657
658void pcie_aspm_exit_link_state(struct pci_dev *pdev)
659{
660 struct pci_dev *parent = pdev->bus->self;
661 struct pcie_link_state *link, *root, *parent_link;
662
663 if (!parent || !parent->link_state)
664 return;
665
666 down_read(&pci_bus_sem);
667 mutex_lock(&aspm_lock);
668
669
670
671
672 if (!list_is_last(&pdev->bus_list, &parent->subordinate->devices))
673 goto out;
674
675 link = parent->link_state;
676 root = link->root;
677 parent_link = link->parent;
678
679
680 pcie_config_aspm_link(link, 0);
681 list_del(&link->sibling);
682 list_del(&link->link);
683
684 free_link_state(link);
685
686
687 if (parent_link) {
688 pcie_update_aspm_capable(root);
689 pcie_config_aspm_path(parent_link);
690 }
691out:
692 mutex_unlock(&aspm_lock);
693 up_read(&pci_bus_sem);
694}
695
696
697void pcie_aspm_pm_state_change(struct pci_dev *pdev)
698{
699 struct pcie_link_state *link = pdev->link_state;
700
701 if (aspm_disabled || !link)
702 return;
703
704
705
706
707 down_read(&pci_bus_sem);
708 mutex_lock(&aspm_lock);
709 pcie_update_aspm_capable(link->root);
710 pcie_config_aspm_path(link);
711 mutex_unlock(&aspm_lock);
712 up_read(&pci_bus_sem);
713}
714
715void pcie_aspm_powersave_config_link(struct pci_dev *pdev)
716{
717 struct pcie_link_state *link = pdev->link_state;
718
719 if (aspm_disabled || !link)
720 return;
721
722 if (aspm_policy != POLICY_POWERSAVE)
723 return;
724
725 down_read(&pci_bus_sem);
726 mutex_lock(&aspm_lock);
727 pcie_config_aspm_path(link);
728 pcie_set_clkpm(link, policy_to_clkpm_state(link));
729 mutex_unlock(&aspm_lock);
730 up_read(&pci_bus_sem);
731}
732
733static void __pci_disable_link_state(struct pci_dev *pdev, int state, bool sem)
734{
735 struct pci_dev *parent = pdev->bus->self;
736 struct pcie_link_state *link;
737
738 if (!pci_is_pcie(pdev))
739 return;
740
741 if (pdev->has_secondary_link)
742 parent = pdev;
743 if (!parent || !parent->link_state)
744 return;
745
746
747
748
749
750
751
752
753
754 if (aspm_disabled) {
755 dev_warn(&pdev->dev, "can't disable ASPM; OS doesn't have ASPM control\n");
756 return;
757 }
758
759 if (sem)
760 down_read(&pci_bus_sem);
761 mutex_lock(&aspm_lock);
762 link = parent->link_state;
763 if (state & PCIE_LINK_STATE_L0S)
764 link->aspm_disable |= ASPM_STATE_L0S;
765 if (state & PCIE_LINK_STATE_L1)
766 link->aspm_disable |= ASPM_STATE_L1;
767 pcie_config_aspm_link(link, policy_to_aspm_state(link));
768
769 if (state & PCIE_LINK_STATE_CLKPM) {
770 link->clkpm_capable = 0;
771 pcie_set_clkpm(link, 0);
772 }
773 mutex_unlock(&aspm_lock);
774 if (sem)
775 up_read(&pci_bus_sem);
776}
777
778void pci_disable_link_state_locked(struct pci_dev *pdev, int state)
779{
780 __pci_disable_link_state(pdev, state, false);
781}
782EXPORT_SYMBOL(pci_disable_link_state_locked);
783
784
785
786
787
788
789
790
791
792
793void pci_disable_link_state(struct pci_dev *pdev, int state)
794{
795 __pci_disable_link_state(pdev, state, true);
796}
797EXPORT_SYMBOL(pci_disable_link_state);
798
799static int pcie_aspm_set_policy(const char *val, struct kernel_param *kp)
800{
801 int i;
802 struct pcie_link_state *link;
803
804 if (aspm_disabled)
805 return -EPERM;
806 for (i = 0; i < ARRAY_SIZE(policy_str); i++)
807 if (!strncmp(val, policy_str[i], strlen(policy_str[i])))
808 break;
809 if (i >= ARRAY_SIZE(policy_str))
810 return -EINVAL;
811 if (i == aspm_policy)
812 return 0;
813
814 down_read(&pci_bus_sem);
815 mutex_lock(&aspm_lock);
816 aspm_policy = i;
817 list_for_each_entry(link, &link_list, sibling) {
818 pcie_config_aspm_link(link, policy_to_aspm_state(link));
819 pcie_set_clkpm(link, policy_to_clkpm_state(link));
820 }
821 mutex_unlock(&aspm_lock);
822 up_read(&pci_bus_sem);
823 return 0;
824}
825
826static int pcie_aspm_get_policy(char *buffer, struct kernel_param *kp)
827{
828 int i, cnt = 0;
829 for (i = 0; i < ARRAY_SIZE(policy_str); i++)
830 if (i == aspm_policy)
831 cnt += sprintf(buffer + cnt, "[%s] ", policy_str[i]);
832 else
833 cnt += sprintf(buffer + cnt, "%s ", policy_str[i]);
834 return cnt;
835}
836
837module_param_call(policy, pcie_aspm_set_policy, pcie_aspm_get_policy,
838 NULL, 0644);
839
840#ifdef CONFIG_PCIEASPM_DEBUG
841static ssize_t link_state_show(struct device *dev,
842 struct device_attribute *attr,
843 char *buf)
844{
845 struct pci_dev *pci_device = to_pci_dev(dev);
846 struct pcie_link_state *link_state = pci_device->link_state;
847
848 return sprintf(buf, "%d\n", link_state->aspm_enabled);
849}
850
851static ssize_t link_state_store(struct device *dev,
852 struct device_attribute *attr,
853 const char *buf,
854 size_t n)
855{
856 struct pci_dev *pdev = to_pci_dev(dev);
857 struct pcie_link_state *link, *root = pdev->link_state->root;
858 u32 state;
859
860 if (aspm_disabled)
861 return -EPERM;
862
863 if (kstrtouint(buf, 10, &state))
864 return -EINVAL;
865 if ((state & ~ASPM_STATE_ALL) != 0)
866 return -EINVAL;
867
868 down_read(&pci_bus_sem);
869 mutex_lock(&aspm_lock);
870 list_for_each_entry(link, &link_list, sibling) {
871 if (link->root != root)
872 continue;
873 pcie_config_aspm_link(link, state);
874 }
875 mutex_unlock(&aspm_lock);
876 up_read(&pci_bus_sem);
877 return n;
878}
879
880static ssize_t clk_ctl_show(struct device *dev,
881 struct device_attribute *attr,
882 char *buf)
883{
884 struct pci_dev *pci_device = to_pci_dev(dev);
885 struct pcie_link_state *link_state = pci_device->link_state;
886
887 return sprintf(buf, "%d\n", link_state->clkpm_enabled);
888}
889
890static ssize_t clk_ctl_store(struct device *dev,
891 struct device_attribute *attr,
892 const char *buf,
893 size_t n)
894{
895 struct pci_dev *pdev = to_pci_dev(dev);
896 bool state;
897
898 if (strtobool(buf, &state))
899 return -EINVAL;
900
901 down_read(&pci_bus_sem);
902 mutex_lock(&aspm_lock);
903 pcie_set_clkpm_nocheck(pdev->link_state, state);
904 mutex_unlock(&aspm_lock);
905 up_read(&pci_bus_sem);
906
907 return n;
908}
909
910static DEVICE_ATTR(link_state, 0644, link_state_show, link_state_store);
911static DEVICE_ATTR(clk_ctl, 0644, clk_ctl_show, clk_ctl_store);
912
913static char power_group[] = "power";
914void pcie_aspm_create_sysfs_dev_files(struct pci_dev *pdev)
915{
916 struct pcie_link_state *link_state = pdev->link_state;
917
918 if (!link_state)
919 return;
920
921 if (link_state->aspm_support)
922 sysfs_add_file_to_group(&pdev->dev.kobj,
923 &dev_attr_link_state.attr, power_group);
924 if (link_state->clkpm_capable)
925 sysfs_add_file_to_group(&pdev->dev.kobj,
926 &dev_attr_clk_ctl.attr, power_group);
927}
928
929void pcie_aspm_remove_sysfs_dev_files(struct pci_dev *pdev)
930{
931 struct pcie_link_state *link_state = pdev->link_state;
932
933 if (!link_state)
934 return;
935
936 if (link_state->aspm_support)
937 sysfs_remove_file_from_group(&pdev->dev.kobj,
938 &dev_attr_link_state.attr, power_group);
939 if (link_state->clkpm_capable)
940 sysfs_remove_file_from_group(&pdev->dev.kobj,
941 &dev_attr_clk_ctl.attr, power_group);
942}
943#endif
944
945static int __init pcie_aspm_disable(char *str)
946{
947 if (!strcmp(str, "off")) {
948 aspm_policy = POLICY_DEFAULT;
949 aspm_disabled = 1;
950 aspm_support_enabled = false;
951 printk(KERN_INFO "PCIe ASPM is disabled\n");
952 } else if (!strcmp(str, "force")) {
953 aspm_force = 1;
954 printk(KERN_INFO "PCIe ASPM is forcibly enabled\n");
955 }
956 return 1;
957}
958
959__setup("pcie_aspm=", pcie_aspm_disable);
960
961void pcie_no_aspm(void)
962{
963
964
965
966
967
968
969 if (!aspm_force) {
970 aspm_policy = POLICY_DEFAULT;
971 aspm_disabled = 1;
972 }
973}
974
975bool pcie_aspm_support_enabled(void)
976{
977 return aspm_support_enabled;
978}
979EXPORT_SYMBOL(pcie_aspm_support_enabled);
980