]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/pci/pcie/aspm.c
PCI/portdrv: Use PCI Express Capability accessors
[mirror_ubuntu-bionic-kernel.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;
7d715a6c 130
5aa63583 131 list_for_each_entry(child, &linkbus->devices, bus_list) {
7d715a6c 132 if (enable)
f12eb72a
JL
133 pcie_capability_set_word(child, PCI_EXP_LNKCTL,
134 PCI_EXP_LNKCTL_CLKREQ_EN);
7d715a6c 135 else
f12eb72a
JL
136 pcie_capability_clear_word(child, PCI_EXP_LNKCTL,
137 PCI_EXP_LNKCTL_CLKREQ_EN);
7d715a6c 138 }
5aa63583 139 link->clkpm_enabled = !!enable;
7d715a6c
SL
140}
141
430842e2
KK
142static void pcie_set_clkpm(struct pcie_link_state *link, int enable)
143{
144 /* Don't enable Clock PM if the link is not Clock PM capable */
145 if (!link->clkpm_capable && enable)
2f671e2d 146 enable = 0;
430842e2
KK
147 /* Need nothing if the specified equals to current state */
148 if (link->clkpm_enabled == enable)
149 return;
150 pcie_set_clkpm_nocheck(link, enable);
151}
152
8d349ace 153static void pcie_clkpm_cap_init(struct pcie_link_state *link, int blacklist)
7d715a6c 154{
f12eb72a 155 int capable = 1, enabled = 1;
7d715a6c
SL
156 u32 reg32;
157 u16 reg16;
5aa63583
KK
158 struct pci_dev *child;
159 struct pci_bus *linkbus = link->pdev->subordinate;
7d715a6c
SL
160
161 /* All functions should have the same cap and state, take the worst */
5aa63583 162 list_for_each_entry(child, &linkbus->devices, bus_list) {
f12eb72a 163 pcie_capability_read_dword(child, PCI_EXP_LNKCAP, &reg32);
7d715a6c
SL
164 if (!(reg32 & PCI_EXP_LNKCAP_CLKPM)) {
165 capable = 0;
166 enabled = 0;
167 break;
168 }
f12eb72a 169 pcie_capability_read_word(child, PCI_EXP_LNKCTL, &reg16);
7d715a6c
SL
170 if (!(reg16 & PCI_EXP_LNKCTL_CLKREQ_EN))
171 enabled = 0;
172 }
5aa63583
KK
173 link->clkpm_enabled = enabled;
174 link->clkpm_default = enabled;
8d349ace 175 link->clkpm_capable = (blacklist) ? 0 : capable;
46bbdfa4
SL
176}
177
7d715a6c
SL
178/*
179 * pcie_aspm_configure_common_clock: check if the 2 ends of a link
180 * could use common clock. If they are, configure them to use the
181 * common clock. That will reduce the ASPM state exit latency.
182 */
5aa63583 183static void pcie_aspm_configure_common_clock(struct pcie_link_state *link)
7d715a6c 184{
f12eb72a 185 int same_clock = 1;
5aa63583 186 u16 reg16, parent_reg, child_reg[8];
2a42d9db 187 unsigned long start_jiffies;
5aa63583
KK
188 struct pci_dev *child, *parent = link->pdev;
189 struct pci_bus *linkbus = parent->subordinate;
7d715a6c 190 /*
5aa63583 191 * All functions of a slot should have the same Slot Clock
7d715a6c 192 * Configuration, so just check one function
5aa63583
KK
193 */
194 child = list_entry(linkbus->devices.next, struct pci_dev, bus_list);
8b06477d 195 BUG_ON(!pci_is_pcie(child));
7d715a6c
SL
196
197 /* Check downstream component if bit Slot Clock Configuration is 1 */
f12eb72a 198 pcie_capability_read_word(child, PCI_EXP_LNKSTA, &reg16);
7d715a6c
SL
199 if (!(reg16 & PCI_EXP_LNKSTA_SLC))
200 same_clock = 0;
201
202 /* Check upstream component if bit Slot Clock Configuration is 1 */
f12eb72a 203 pcie_capability_read_word(parent, PCI_EXP_LNKSTA, &reg16);
7d715a6c
SL
204 if (!(reg16 & PCI_EXP_LNKSTA_SLC))
205 same_clock = 0;
206
207 /* Configure downstream component, all functions */
5aa63583 208 list_for_each_entry(child, &linkbus->devices, bus_list) {
f12eb72a 209 pcie_capability_read_word(child, PCI_EXP_LNKCTL, &reg16);
5aa63583 210 child_reg[PCI_FUNC(child->devfn)] = reg16;
7d715a6c
SL
211 if (same_clock)
212 reg16 |= PCI_EXP_LNKCTL_CCC;
213 else
214 reg16 &= ~PCI_EXP_LNKCTL_CCC;
f12eb72a 215 pcie_capability_write_word(child, PCI_EXP_LNKCTL, reg16);
7d715a6c
SL
216 }
217
218 /* Configure upstream component */
f12eb72a 219 pcie_capability_read_word(parent, PCI_EXP_LNKCTL, &reg16);
2a42d9db 220 parent_reg = reg16;
7d715a6c
SL
221 if (same_clock)
222 reg16 |= PCI_EXP_LNKCTL_CCC;
223 else
224 reg16 &= ~PCI_EXP_LNKCTL_CCC;
f12eb72a 225 pcie_capability_write_word(parent, PCI_EXP_LNKCTL, reg16);
7d715a6c 226
5aa63583 227 /* Retrain link */
7d715a6c 228 reg16 |= PCI_EXP_LNKCTL_RL;
f12eb72a 229 pcie_capability_write_word(parent, PCI_EXP_LNKCTL, reg16);
7d715a6c 230
5aa63583 231 /* Wait for link training end. Break out after waiting for timeout */
2a42d9db 232 start_jiffies = jiffies;
987a4c78 233 for (;;) {
f12eb72a 234 pcie_capability_read_word(parent, PCI_EXP_LNKSTA, &reg16);
7d715a6c
SL
235 if (!(reg16 & PCI_EXP_LNKSTA_LT))
236 break;
987a4c78
AP
237 if (time_after(jiffies, start_jiffies + LINK_RETRAIN_TIMEOUT))
238 break;
239 msleep(1);
7d715a6c 240 }
5aa63583
KK
241 if (!(reg16 & PCI_EXP_LNKSTA_LT))
242 return;
243
244 /* Training failed. Restore common clock configurations */
245 dev_printk(KERN_ERR, &parent->dev,
246 "ASPM: Could not configure common clock\n");
f12eb72a
JL
247 list_for_each_entry(child, &linkbus->devices, bus_list)
248 pcie_capability_write_word(child, PCI_EXP_LNKCTL,
249 child_reg[PCI_FUNC(child->devfn)]);
250 pcie_capability_write_word(parent, PCI_EXP_LNKCTL, parent_reg);
7d715a6c
SL
251}
252
5e0eaa7d
KK
253/* Convert L0s latency encoding to ns */
254static u32 calc_l0s_latency(u32 encoding)
7d715a6c 255{
5e0eaa7d
KK
256 if (encoding == 0x7)
257 return (5 * 1000); /* > 4us */
258 return (64 << encoding);
259}
7d715a6c 260
5e0eaa7d
KK
261/* Convert L0s acceptable latency encoding to ns */
262static u32 calc_l0s_acceptable(u32 encoding)
263{
264 if (encoding == 0x7)
265 return -1U;
266 return (64 << encoding);
7d715a6c
SL
267}
268
5e0eaa7d
KK
269/* Convert L1 latency encoding to ns */
270static u32 calc_l1_latency(u32 encoding)
7d715a6c 271{
5e0eaa7d
KK
272 if (encoding == 0x7)
273 return (65 * 1000); /* > 64us */
274 return (1000 << encoding);
275}
7d715a6c 276
5e0eaa7d
KK
277/* Convert L1 acceptable latency encoding to ns */
278static u32 calc_l1_acceptable(u32 encoding)
279{
280 if (encoding == 0x7)
281 return -1U;
282 return (1000 << encoding);
7d715a6c
SL
283}
284
ac18018a
KK
285struct aspm_register_info {
286 u32 support:2;
287 u32 enabled:2;
288 u32 latency_encoding_l0s;
289 u32 latency_encoding_l1;
290};
291
292static void pcie_get_aspm_reg(struct pci_dev *pdev,
293 struct aspm_register_info *info)
7d715a6c 294{
7d715a6c 295 u16 reg16;
ac18018a 296 u32 reg32;
7d715a6c 297
f12eb72a 298 pcie_capability_read_dword(pdev, PCI_EXP_LNKCAP, &reg32);
ac18018a 299 info->support = (reg32 & PCI_EXP_LNKCAP_ASPMS) >> 10;
ac18018a
KK
300 info->latency_encoding_l0s = (reg32 & PCI_EXP_LNKCAP_L0SEL) >> 12;
301 info->latency_encoding_l1 = (reg32 & PCI_EXP_LNKCAP_L1EL) >> 15;
f12eb72a 302 pcie_capability_read_word(pdev, PCI_EXP_LNKCTL, &reg16);
ac18018a 303 info->enabled = reg16 & PCI_EXP_LNKCTL_ASPMC;
7d715a6c
SL
304}
305
07d92760
KK
306static void pcie_aspm_check_latency(struct pci_dev *endpoint)
307{
ac18018a 308 u32 latency, l1_switch_latency = 0;
07d92760
KK
309 struct aspm_latency *acceptable;
310 struct pcie_link_state *link;
311
312 /* Device not in D0 doesn't need latency check */
313 if ((endpoint->current_state != PCI_D0) &&
314 (endpoint->current_state != PCI_UNKNOWN))
315 return;
316
317 link = endpoint->bus->self->link_state;
318 acceptable = &link->acceptable[PCI_FUNC(endpoint->devfn)];
319
320 while (link) {
ac18018a
KK
321 /* Check upstream direction L0s latency */
322 if ((link->aspm_capable & ASPM_STATE_L0S_UP) &&
323 (link->latency_up.l0s > acceptable->l0s))
324 link->aspm_capable &= ~ASPM_STATE_L0S_UP;
325
326 /* Check downstream direction L0s latency */
327 if ((link->aspm_capable & ASPM_STATE_L0S_DW) &&
328 (link->latency_dw.l0s > acceptable->l0s))
329 link->aspm_capable &= ~ASPM_STATE_L0S_DW;
07d92760
KK
330 /*
331 * Check L1 latency.
332 * Every switch on the path to root complex need 1
333 * more microsecond for L1. Spec doesn't mention L0s.
334 */
ac18018a
KK
335 latency = max_t(u32, link->latency_up.l1, link->latency_dw.l1);
336 if ((link->aspm_capable & ASPM_STATE_L1) &&
337 (latency + l1_switch_latency > acceptable->l1))
338 link->aspm_capable &= ~ASPM_STATE_L1;
07d92760
KK
339 l1_switch_latency += 1000;
340
341 link = link->parent;
342 }
343}
344
8d349ace 345static void pcie_aspm_cap_init(struct pcie_link_state *link, int blacklist)
7d715a6c 346{
5aa63583
KK
347 struct pci_dev *child, *parent = link->pdev;
348 struct pci_bus *linkbus = parent->subordinate;
ac18018a 349 struct aspm_register_info upreg, dwreg;
7d715a6c 350
8d349ace 351 if (blacklist) {
f1c0ca29 352 /* Set enabled/disable so that we will disable ASPM later */
ac18018a
KK
353 link->aspm_enabled = ASPM_STATE_ALL;
354 link->aspm_disable = ASPM_STATE_ALL;
8d349ace
KK
355 return;
356 }
357
358 /* Configure common clock before checking latencies */
359 pcie_aspm_configure_common_clock(link);
360
ac18018a
KK
361 /* Get upstream/downstream components' register state */
362 pcie_get_aspm_reg(parent, &upreg);
5aa63583 363 child = list_entry(linkbus->devices.next, struct pci_dev, bus_list);
ac18018a
KK
364 pcie_get_aspm_reg(child, &dwreg);
365
366 /*
367 * Setup L0s state
368 *
369 * Note that we must not enable L0s in either direction on a
370 * given link unless components on both sides of the link each
371 * support L0s.
372 */
373 if (dwreg.support & upreg.support & PCIE_LINK_STATE_L0S)
374 link->aspm_support |= ASPM_STATE_L0S;
375 if (dwreg.enabled & PCIE_LINK_STATE_L0S)
376 link->aspm_enabled |= ASPM_STATE_L0S_UP;
377 if (upreg.enabled & PCIE_LINK_STATE_L0S)
378 link->aspm_enabled |= ASPM_STATE_L0S_DW;
379 link->latency_up.l0s = calc_l0s_latency(upreg.latency_encoding_l0s);
380 link->latency_dw.l0s = calc_l0s_latency(dwreg.latency_encoding_l0s);
381
382 /* Setup L1 state */
383 if (upreg.support & dwreg.support & PCIE_LINK_STATE_L1)
384 link->aspm_support |= ASPM_STATE_L1;
385 if (upreg.enabled & dwreg.enabled & PCIE_LINK_STATE_L1)
386 link->aspm_enabled |= ASPM_STATE_L1;
387 link->latency_up.l1 = calc_l1_latency(upreg.latency_encoding_l1);
388 link->latency_dw.l1 = calc_l1_latency(dwreg.latency_encoding_l1);
5aa63583 389
b127bd55
KK
390 /* Save default state */
391 link->aspm_default = link->aspm_enabled;
07d92760
KK
392
393 /* Setup initial capable state. Will be updated later */
394 link->aspm_capable = link->aspm_support;
f1c0ca29
KK
395 /*
396 * If the downstream component has pci bridge function, don't
397 * do ASPM for now.
398 */
399 list_for_each_entry(child, &linkbus->devices, bus_list) {
62f87c0e 400 if (pci_pcie_type(child) == PCI_EXP_TYPE_PCI_BRIDGE) {
ac18018a 401 link->aspm_disable = ASPM_STATE_ALL;
f1c0ca29
KK
402 break;
403 }
404 }
b127bd55 405
b7206cbf 406 /* Get and check endpoint acceptable latencies */
5aa63583 407 list_for_each_entry(child, &linkbus->devices, bus_list) {
5e0eaa7d 408 u32 reg32, encoding;
b6c2e54d 409 struct aspm_latency *acceptable =
5aa63583 410 &link->acceptable[PCI_FUNC(child->devfn)];
7d715a6c 411
62f87c0e
YW
412 if (pci_pcie_type(child) != PCI_EXP_TYPE_ENDPOINT &&
413 pci_pcie_type(child) != PCI_EXP_TYPE_LEG_END)
7d715a6c
SL
414 continue;
415
f12eb72a 416 pcie_capability_read_dword(child, PCI_EXP_DEVCAP, &reg32);
07d92760 417 /* Calculate endpoint L0s acceptable latency */
5e0eaa7d
KK
418 encoding = (reg32 & PCI_EXP_DEVCAP_L0S) >> 6;
419 acceptable->l0s = calc_l0s_acceptable(encoding);
07d92760
KK
420 /* Calculate endpoint L1 acceptable latency */
421 encoding = (reg32 & PCI_EXP_DEVCAP_L1) >> 9;
422 acceptable->l1 = calc_l1_acceptable(encoding);
423
424 pcie_aspm_check_latency(child);
7d715a6c
SL
425 }
426}
427
ac18018a 428static void pcie_config_aspm_dev(struct pci_dev *pdev, u32 val)
7d715a6c 429{
f12eb72a 430 pcie_capability_clear_and_set_word(pdev, PCI_EXP_LNKCTL, 0x3, val);
7d715a6c
SL
431}
432
b7206cbf 433static void pcie_config_aspm_link(struct pcie_link_state *link, u32 state)
7d715a6c 434{
ac18018a 435 u32 upstream = 0, dwstream = 0;
5aa63583
KK
436 struct pci_dev *child, *parent = link->pdev;
437 struct pci_bus *linkbus = parent->subordinate;
7d715a6c 438
f1c0ca29 439 /* Nothing to do if the link is already in the requested state */
b7206cbf 440 state &= (link->aspm_capable & ~link->aspm_disable);
f1c0ca29
KK
441 if (link->aspm_enabled == state)
442 return;
ac18018a
KK
443 /* Convert ASPM state to upstream/downstream ASPM register state */
444 if (state & ASPM_STATE_L0S_UP)
445 dwstream |= PCIE_LINK_STATE_L0S;
446 if (state & ASPM_STATE_L0S_DW)
447 upstream |= PCIE_LINK_STATE_L0S;
448 if (state & ASPM_STATE_L1) {
449 upstream |= PCIE_LINK_STATE_L1;
450 dwstream |= PCIE_LINK_STATE_L1;
451 }
7d715a6c 452 /*
5aa63583
KK
453 * Spec 2.0 suggests all functions should be configured the
454 * same setting for ASPM. Enabling ASPM L1 should be done in
455 * upstream component first and then downstream, and vice
456 * versa for disabling ASPM L1. Spec doesn't mention L0S.
7d715a6c 457 */
ac18018a
KK
458 if (state & ASPM_STATE_L1)
459 pcie_config_aspm_dev(parent, upstream);
5aa63583 460 list_for_each_entry(child, &linkbus->devices, bus_list)
ac18018a
KK
461 pcie_config_aspm_dev(child, dwstream);
462 if (!(state & ASPM_STATE_L1))
463 pcie_config_aspm_dev(parent, upstream);
7d715a6c 464
5aa63583 465 link->aspm_enabled = state;
7d715a6c
SL
466}
467
b7206cbf 468static void pcie_config_aspm_path(struct pcie_link_state *link)
7d715a6c 469{
b7206cbf
KK
470 while (link) {
471 pcie_config_aspm_link(link, policy_to_aspm_state(link));
472 link = link->parent;
46bbdfa4 473 }
7d715a6c
SL
474}
475
5aa63583 476static void free_link_state(struct pcie_link_state *link)
7d715a6c 477{
5aa63583
KK
478 link->pdev->link_state = NULL;
479 kfree(link);
7d715a6c
SL
480}
481
ddc9753f
SL
482static int pcie_aspm_sanity_check(struct pci_dev *pdev)
483{
3647584d 484 struct pci_dev *child;
149e1637 485 u32 reg32;
2f671e2d 486
ddc9753f 487 /*
45e829ea 488 * Some functions in a slot might not all be PCIe functions,
3647584d 489 * very strange. Disable ASPM for the whole slot
ddc9753f 490 */
3647584d 491 list_for_each_entry(child, &pdev->subordinate->devices, bus_list) {
f12eb72a 492 if (!pci_is_pcie(child))
ddc9753f 493 return -EINVAL;
c9651e70
MG
494
495 /*
496 * If ASPM is disabled then we're not going to change
497 * the BIOS state. It's safe to continue even if it's a
498 * pre-1.1 device
499 */
500
501 if (aspm_disabled)
502 continue;
503
149e1637
SL
504 /*
505 * Disable ASPM for pre-1.1 PCIe device, we follow MS to use
506 * RBER bit to determine if a function is 1.1 version device
507 */
f12eb72a 508 pcie_capability_read_dword(child, PCI_EXP_DEVCAP, &reg32);
e1f4f59d 509 if (!(reg32 & PCI_EXP_DEVCAP_RBER) && !aspm_force) {
3647584d 510 dev_printk(KERN_INFO, &child->dev, "disabling ASPM"
f393d9b1
VL
511 " on pre-1.1 PCIe device. You can enable it"
512 " with 'pcie_aspm=force'\n");
149e1637
SL
513 return -EINVAL;
514 }
ddc9753f
SL
515 }
516 return 0;
517}
518
b7206cbf 519static struct pcie_link_state *alloc_pcie_link_state(struct pci_dev *pdev)
8d349ace
KK
520{
521 struct pcie_link_state *link;
8d349ace
KK
522
523 link = kzalloc(sizeof(*link), GFP_KERNEL);
524 if (!link)
525 return NULL;
526 INIT_LIST_HEAD(&link->sibling);
527 INIT_LIST_HEAD(&link->children);
528 INIT_LIST_HEAD(&link->link);
529 link->pdev = pdev;
62f87c0e 530 if (pci_pcie_type(pdev) == PCI_EXP_TYPE_DOWNSTREAM) {
8d349ace
KK
531 struct pcie_link_state *parent;
532 parent = pdev->bus->parent->self->link_state;
533 if (!parent) {
534 kfree(link);
535 return NULL;
536 }
537 link->parent = parent;
538 list_add(&link->link, &parent->children);
539 }
5c92ffb1
KK
540 /* Setup a pointer to the root port link */
541 if (!link->parent)
542 link->root = link;
543 else
544 link->root = link->parent->root;
545
8d349ace 546 list_add(&link->sibling, &link_list);
8d349ace 547 pdev->link_state = link;
8d349ace
KK
548 return link;
549}
550
7d715a6c
SL
551/*
552 * pcie_aspm_init_link_state: Initiate PCI express link state.
553 * It is called after the pcie and its children devices are scaned.
554 * @pdev: the root port or switch downstream port
555 */
556void pcie_aspm_init_link_state(struct pci_dev *pdev)
557{
8d349ace 558 struct pcie_link_state *link;
b7206cbf 559 int blacklist = !!pcie_aspm_sanity_check(pdev);
7d715a6c 560
2f671e2d 561 if (!pci_is_pcie(pdev) || pdev->link_state)
7d715a6c 562 return;
62f87c0e
YW
563 if (pci_pcie_type(pdev) != PCI_EXP_TYPE_ROOT_PORT &&
564 pci_pcie_type(pdev) != PCI_EXP_TYPE_DOWNSTREAM)
7d715a6c 565 return;
8d349ace 566
8e822df7 567 /* VIA has a strange chipset, root port is under a bridge */
62f87c0e 568 if (pci_pcie_type(pdev) == PCI_EXP_TYPE_ROOT_PORT &&
8d349ace 569 pdev->bus->self)
8e822df7 570 return;
8d349ace 571
7d715a6c
SL
572 down_read(&pci_bus_sem);
573 if (list_empty(&pdev->subordinate->devices))
574 goto out;
575
576 mutex_lock(&aspm_lock);
b7206cbf 577 link = alloc_pcie_link_state(pdev);
8d349ace
KK
578 if (!link)
579 goto unlock;
580 /*
b7206cbf
KK
581 * Setup initial ASPM state. Note that we need to configure
582 * upstream links also because capable state of them can be
583 * update through pcie_aspm_cap_init().
8d349ace 584 */
b7206cbf 585 pcie_aspm_cap_init(link, blacklist);
7d715a6c 586
8d349ace 587 /* Setup initial Clock PM state */
b7206cbf 588 pcie_clkpm_cap_init(link, blacklist);
41cd766b
MG
589
590 /*
591 * At this stage drivers haven't had an opportunity to change the
592 * link policy setting. Enabling ASPM on broken hardware can cripple
593 * it even before the driver has had a chance to disable ASPM, so
594 * default to a safe level right now. If we're enabling ASPM beyond
595 * the BIOS's expectation, we'll do so once pci_enable_device() is
596 * called.
597 */
3c076351 598 if (aspm_policy != POLICY_POWERSAVE) {
41cd766b
MG
599 pcie_config_aspm_path(link);
600 pcie_set_clkpm(link, policy_to_clkpm_state(link));
601 }
602
8d349ace 603unlock:
7d715a6c
SL
604 mutex_unlock(&aspm_lock);
605out:
606 up_read(&pci_bus_sem);
607}
608
07d92760
KK
609/* Recheck latencies and update aspm_capable for links under the root */
610static void pcie_update_aspm_capable(struct pcie_link_state *root)
611{
612 struct pcie_link_state *link;
613 BUG_ON(root->parent);
614 list_for_each_entry(link, &link_list, sibling) {
615 if (link->root != root)
616 continue;
617 link->aspm_capable = link->aspm_support;
618 }
619 list_for_each_entry(link, &link_list, sibling) {
620 struct pci_dev *child;
621 struct pci_bus *linkbus = link->pdev->subordinate;
622 if (link->root != root)
623 continue;
624 list_for_each_entry(child, &linkbus->devices, bus_list) {
62f87c0e
YW
625 if ((pci_pcie_type(child) != PCI_EXP_TYPE_ENDPOINT) &&
626 (pci_pcie_type(child) != PCI_EXP_TYPE_LEG_END))
07d92760
KK
627 continue;
628 pcie_aspm_check_latency(child);
629 }
630 }
631}
632
7d715a6c
SL
633/* @pdev: the endpoint device */
634void pcie_aspm_exit_link_state(struct pci_dev *pdev)
635{
636 struct pci_dev *parent = pdev->bus->self;
b7206cbf 637 struct pcie_link_state *link, *root, *parent_link;
7d715a6c 638
3c076351 639 if (!pci_is_pcie(pdev) || !parent || !parent->link_state)
7d715a6c 640 return;
62f87c0e
YW
641 if ((pci_pcie_type(parent) != PCI_EXP_TYPE_ROOT_PORT) &&
642 (pci_pcie_type(parent) != PCI_EXP_TYPE_DOWNSTREAM))
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
8b06477d 680 if (aspm_disabled || !pci_is_pcie(pdev) || !link)
7d715a6c 681 return;
62f87c0e
YW
682 if ((pci_pcie_type(pdev) != PCI_EXP_TYPE_ROOT_PORT) &&
683 (pci_pcie_type(pdev) != PCI_EXP_TYPE_DOWNSTREAM))
7d715a6c
SL
684 return;
685 /*
07d92760
KK
686 * Devices changed PM state, we should recheck if latency
687 * meets all functions' requirement
7d715a6c 688 */
07d92760
KK
689 down_read(&pci_bus_sem);
690 mutex_lock(&aspm_lock);
691 pcie_update_aspm_capable(link->root);
b7206cbf 692 pcie_config_aspm_path(link);
07d92760
KK
693 mutex_unlock(&aspm_lock);
694 up_read(&pci_bus_sem);
7d715a6c
SL
695}
696
1a680b7c
NC
697void pcie_aspm_powersave_config_link(struct pci_dev *pdev)
698{
699 struct pcie_link_state *link = pdev->link_state;
700
701 if (aspm_disabled || !pci_is_pcie(pdev) || !link)
702 return;
703
704 if (aspm_policy != POLICY_POWERSAVE)
705 return;
706
62f87c0e
YW
707 if ((pci_pcie_type(pdev) != PCI_EXP_TYPE_ROOT_PORT) &&
708 (pci_pcie_type(pdev) != PCI_EXP_TYPE_DOWNSTREAM))
1a680b7c
NC
709 return;
710
711 down_read(&pci_bus_sem);
712 mutex_lock(&aspm_lock);
713 pcie_config_aspm_path(link);
714 pcie_set_clkpm(link, policy_to_clkpm_state(link));
715 mutex_unlock(&aspm_lock);
716 up_read(&pci_bus_sem);
717}
718
7d715a6c
SL
719/*
720 * pci_disable_link_state - disable pci device's link state, so the link will
721 * never enter specific states
722 */
3c076351
MG
723static void __pci_disable_link_state(struct pci_dev *pdev, int state, bool sem,
724 bool force)
7d715a6c
SL
725{
726 struct pci_dev *parent = pdev->bus->self;
f1c0ca29 727 struct pcie_link_state *link;
7d715a6c 728
3c076351
MG
729 if (aspm_disabled && !force)
730 return;
731
732 if (!pci_is_pcie(pdev))
7d715a6c 733 return;
3c076351 734
62f87c0e
YW
735 if (pci_pcie_type(pdev) == PCI_EXP_TYPE_ROOT_PORT ||
736 pci_pcie_type(pdev) == PCI_EXP_TYPE_DOWNSTREAM)
7d715a6c
SL
737 parent = pdev;
738 if (!parent || !parent->link_state)
739 return;
740
9f728f53
YL
741 if (sem)
742 down_read(&pci_bus_sem);
7d715a6c 743 mutex_lock(&aspm_lock);
f1c0ca29 744 link = parent->link_state;
ac18018a
KK
745 if (state & PCIE_LINK_STATE_L0S)
746 link->aspm_disable |= ASPM_STATE_L0S;
747 if (state & PCIE_LINK_STATE_L1)
748 link->aspm_disable |= ASPM_STATE_L1;
b7206cbf
KK
749 pcie_config_aspm_link(link, policy_to_aspm_state(link));
750
430842e2 751 if (state & PCIE_LINK_STATE_CLKPM) {
f1c0ca29
KK
752 link->clkpm_capable = 0;
753 pcie_set_clkpm(link, 0);
430842e2 754 }
7d715a6c 755 mutex_unlock(&aspm_lock);
9f728f53
YL
756 if (sem)
757 up_read(&pci_bus_sem);
758}
759
760void pci_disable_link_state_locked(struct pci_dev *pdev, int state)
761{
3c076351 762 __pci_disable_link_state(pdev, state, false, false);
9f728f53
YL
763}
764EXPORT_SYMBOL(pci_disable_link_state_locked);
765
766void pci_disable_link_state(struct pci_dev *pdev, int state)
767{
3c076351 768 __pci_disable_link_state(pdev, state, true, false);
7d715a6c
SL
769}
770EXPORT_SYMBOL(pci_disable_link_state);
771
3c076351
MG
772void pcie_clear_aspm(struct pci_bus *bus)
773{
774 struct pci_dev *child;
775
776 /*
777 * Clear any ASPM setup that the firmware has carried out on this bus
778 */
779 list_for_each_entry(child, &bus->devices, bus_list) {
780 __pci_disable_link_state(child, PCIE_LINK_STATE_L0S |
781 PCIE_LINK_STATE_L1 |
782 PCIE_LINK_STATE_CLKPM,
783 false, true);
784 }
785}
786
7d715a6c
SL
787static int pcie_aspm_set_policy(const char *val, struct kernel_param *kp)
788{
789 int i;
b7206cbf 790 struct pcie_link_state *link;
7d715a6c 791
bbfa306a
NC
792 if (aspm_disabled)
793 return -EPERM;
7d715a6c
SL
794 for (i = 0; i < ARRAY_SIZE(policy_str); i++)
795 if (!strncmp(val, policy_str[i], strlen(policy_str[i])))
796 break;
797 if (i >= ARRAY_SIZE(policy_str))
798 return -EINVAL;
799 if (i == aspm_policy)
800 return 0;
801
802 down_read(&pci_bus_sem);
803 mutex_lock(&aspm_lock);
804 aspm_policy = i;
b7206cbf
KK
805 list_for_each_entry(link, &link_list, sibling) {
806 pcie_config_aspm_link(link, policy_to_aspm_state(link));
807 pcie_set_clkpm(link, policy_to_clkpm_state(link));
7d715a6c
SL
808 }
809 mutex_unlock(&aspm_lock);
810 up_read(&pci_bus_sem);
811 return 0;
812}
813
814static int pcie_aspm_get_policy(char *buffer, struct kernel_param *kp)
815{
816 int i, cnt = 0;
817 for (i = 0; i < ARRAY_SIZE(policy_str); i++)
818 if (i == aspm_policy)
819 cnt += sprintf(buffer + cnt, "[%s] ", policy_str[i]);
820 else
821 cnt += sprintf(buffer + cnt, "%s ", policy_str[i]);
822 return cnt;
823}
824
825module_param_call(policy, pcie_aspm_set_policy, pcie_aspm_get_policy,
826 NULL, 0644);
827
828#ifdef CONFIG_PCIEASPM_DEBUG
829static ssize_t link_state_show(struct device *dev,
830 struct device_attribute *attr,
831 char *buf)
832{
833 struct pci_dev *pci_device = to_pci_dev(dev);
834 struct pcie_link_state *link_state = pci_device->link_state;
835
80bfdbe3 836 return sprintf(buf, "%d\n", link_state->aspm_enabled);
7d715a6c
SL
837}
838
839static ssize_t link_state_store(struct device *dev,
840 struct device_attribute *attr,
841 const char *buf,
842 size_t n)
843{
5aa63583 844 struct pci_dev *pdev = to_pci_dev(dev);
b7206cbf 845 struct pcie_link_state *link, *root = pdev->link_state->root;
ac18018a 846 u32 val = buf[0] - '0', state = 0;
7d715a6c 847
bbfa306a
NC
848 if (aspm_disabled)
849 return -EPERM;
ac18018a 850 if (n < 1 || val > 3)
7d715a6c 851 return -EINVAL;
7d715a6c 852
ac18018a
KK
853 /* Convert requested state to ASPM state */
854 if (val & PCIE_LINK_STATE_L0S)
855 state |= ASPM_STATE_L0S;
856 if (val & PCIE_LINK_STATE_L1)
857 state |= ASPM_STATE_L1;
858
b7206cbf
KK
859 down_read(&pci_bus_sem);
860 mutex_lock(&aspm_lock);
861 list_for_each_entry(link, &link_list, sibling) {
862 if (link->root != root)
863 continue;
864 pcie_config_aspm_link(link, state);
865 }
866 mutex_unlock(&aspm_lock);
867 up_read(&pci_bus_sem);
868 return n;
7d715a6c
SL
869}
870
871static ssize_t clk_ctl_show(struct device *dev,
872 struct device_attribute *attr,
873 char *buf)
874{
875 struct pci_dev *pci_device = to_pci_dev(dev);
876 struct pcie_link_state *link_state = pci_device->link_state;
877
4d246e45 878 return sprintf(buf, "%d\n", link_state->clkpm_enabled);
7d715a6c
SL
879}
880
881static ssize_t clk_ctl_store(struct device *dev,
882 struct device_attribute *attr,
883 const char *buf,
884 size_t n)
885{
430842e2 886 struct pci_dev *pdev = to_pci_dev(dev);
7d715a6c
SL
887 int state;
888
889 if (n < 1)
890 return -EINVAL;
891 state = buf[0]-'0';
892
893 down_read(&pci_bus_sem);
894 mutex_lock(&aspm_lock);
430842e2 895 pcie_set_clkpm_nocheck(pdev->link_state, !!state);
7d715a6c
SL
896 mutex_unlock(&aspm_lock);
897 up_read(&pci_bus_sem);
898
899 return n;
900}
901
902static DEVICE_ATTR(link_state, 0644, link_state_show, link_state_store);
903static DEVICE_ATTR(clk_ctl, 0644, clk_ctl_show, clk_ctl_store);
904
905static char power_group[] = "power";
906void pcie_aspm_create_sysfs_dev_files(struct pci_dev *pdev)
907{
908 struct pcie_link_state *link_state = pdev->link_state;
909
8b06477d 910 if (!pci_is_pcie(pdev) ||
62f87c0e
YW
911 (pci_pcie_type(pdev) != PCI_EXP_TYPE_ROOT_PORT &&
912 pci_pcie_type(pdev) != PCI_EXP_TYPE_DOWNSTREAM) || !link_state)
7d715a6c
SL
913 return;
914
80bfdbe3 915 if (link_state->aspm_support)
7d715a6c
SL
916 sysfs_add_file_to_group(&pdev->dev.kobj,
917 &dev_attr_link_state.attr, power_group);
4d246e45 918 if (link_state->clkpm_capable)
7d715a6c
SL
919 sysfs_add_file_to_group(&pdev->dev.kobj,
920 &dev_attr_clk_ctl.attr, power_group);
921}
922
923void pcie_aspm_remove_sysfs_dev_files(struct pci_dev *pdev)
924{
925 struct pcie_link_state *link_state = pdev->link_state;
926
8b06477d 927 if (!pci_is_pcie(pdev) ||
62f87c0e
YW
928 (pci_pcie_type(pdev) != PCI_EXP_TYPE_ROOT_PORT &&
929 pci_pcie_type(pdev) != PCI_EXP_TYPE_DOWNSTREAM) || !link_state)
7d715a6c
SL
930 return;
931
80bfdbe3 932 if (link_state->aspm_support)
7d715a6c
SL
933 sysfs_remove_file_from_group(&pdev->dev.kobj,
934 &dev_attr_link_state.attr, power_group);
4d246e45 935 if (link_state->clkpm_capable)
7d715a6c
SL
936 sysfs_remove_file_from_group(&pdev->dev.kobj,
937 &dev_attr_clk_ctl.attr, power_group);
938}
939#endif
940
941static int __init pcie_aspm_disable(char *str)
942{
d6d38574 943 if (!strcmp(str, "off")) {
3c076351 944 aspm_policy = POLICY_DEFAULT;
d6d38574 945 aspm_disabled = 1;
8b8bae90 946 aspm_support_enabled = false;
d6d38574
SL
947 printk(KERN_INFO "PCIe ASPM is disabled\n");
948 } else if (!strcmp(str, "force")) {
949 aspm_force = 1;
8072ba1b 950 printk(KERN_INFO "PCIe ASPM is forcibly enabled\n");
d6d38574 951 }
7d715a6c
SL
952 return 1;
953}
954
d6d38574 955__setup("pcie_aspm=", pcie_aspm_disable);
7d715a6c 956
5fde244d
SL
957void pcie_no_aspm(void)
958{
3c076351
MG
959 /*
960 * Disabling ASPM is intended to prevent the kernel from modifying
961 * existing hardware state, not to clear existing state. To that end:
962 * (a) set policy to POLICY_DEFAULT in order to avoid changing state
963 * (b) prevent userspace from changing policy
964 */
965 if (!aspm_force) {
966 aspm_policy = POLICY_DEFAULT;
d6d38574 967 aspm_disabled = 1;
3c076351 968 }
5fde244d
SL
969}
970
3e1b1600
AP
971/**
972 * pcie_aspm_enabled - is PCIe ASPM enabled?
973 *
974 * Returns true if ASPM has not been disabled by the command-line option
975 * pcie_aspm=off.
976 **/
977int pcie_aspm_enabled(void)
7d715a6c 978{
3e1b1600 979 return !aspm_disabled;
7d715a6c 980}
3e1b1600 981EXPORT_SYMBOL(pcie_aspm_enabled);
7d715a6c 982
8b8bae90
RW
983bool pcie_aspm_support_enabled(void)
984{
985 return aspm_support_enabled;
986}
987EXPORT_SYMBOL(pcie_aspm_support_enabled);