blob: 3da9ecc9ab84eb74102ecc2ef753ede44c5950a2 [file] [log] [blame]
Shaohua Li7d715a62008-02-25 09:46:41 +08001/*
2 * File: drivers/pci/pcie/aspm.c
Stefan Assmann45e829e2009-12-03 06:49:24 -05003 * Enabling PCIe link L0s/L1 state and Clock Power Management
Shaohua Li7d715a62008-02-25 09:46:41 +08004 *
5 * Copyright (C) 2007 Intel
6 * Copyright (C) Zhang Yanmin (yanmin.zhang@intel.com)
7 * Copyright (C) Shaohua Li (shaohua.li@intel.com)
8 */
9
10#include <linux/kernel.h>
11#include <linux/module.h>
12#include <linux/moduleparam.h>
13#include <linux/pci.h>
14#include <linux/pci_regs.h>
15#include <linux/errno.h>
16#include <linux/pm.h>
17#include <linux/init.h>
18#include <linux/slab.h>
Thomas Renninger2a42d9d2008-12-09 13:05:09 +010019#include <linux/jiffies.h>
Andrew Patterson987a4c72009-01-05 16:21:04 -070020#include <linux/delay.h>
Shaohua Li7d715a62008-02-25 09:46:41 +080021#include <linux/pci-aspm.h>
22#include "../pci.h"
23
24#ifdef MODULE_PARAM_PREFIX
25#undef MODULE_PARAM_PREFIX
26#endif
27#define MODULE_PARAM_PREFIX "pcie_aspm."
28
Kenji Kaneshigeac180182009-08-19 11:02:13 +090029/* Note: those are not register definitions */
30#define ASPM_STATE_L0S_UP (1) /* Upstream direction L0s state */
31#define ASPM_STATE_L0S_DW (2) /* Downstream direction L0s state */
32#define ASPM_STATE_L1 (4) /* L1 state */
33#define ASPM_STATE_L0S (ASPM_STATE_L0S_UP | ASPM_STATE_L0S_DW)
34#define ASPM_STATE_ALL (ASPM_STATE_L0S | ASPM_STATE_L1)
35
Kenji Kaneshigeb6c2e542009-05-13 12:14:58 +090036struct aspm_latency {
37 u32 l0s; /* L0s latency (nsec) */
38 u32 l1; /* L1 latency (nsec) */
Shaohua Li7d715a62008-02-25 09:46:41 +080039};
40
41struct pcie_link_state {
Kenji Kaneshige5cde89d2009-05-13 12:17:04 +090042 struct pci_dev *pdev; /* Upstream component of the Link */
Kenji Kaneshige5c92ffb2009-05-13 12:23:57 +090043 struct pcie_link_state *root; /* pointer to the root port link */
Kenji Kaneshige5cde89d2009-05-13 12:17:04 +090044 struct pcie_link_state *parent; /* pointer to the parent Link state */
45 struct list_head sibling; /* node in link_list */
46 struct list_head children; /* list of child link states */
47 struct list_head link; /* node in parent's children list */
Shaohua Li7d715a62008-02-25 09:46:41 +080048
49 /* ASPM state */
Kenji Kaneshigeac180182009-08-19 11:02:13 +090050 u32 aspm_support:3; /* Supported ASPM state */
51 u32 aspm_enabled:3; /* Enabled ASPM state */
52 u32 aspm_capable:3; /* Capable ASPM state with latency */
53 u32 aspm_default:3; /* Default ASPM state by BIOS */
54 u32 aspm_disable:3; /* Disabled ASPM state */
Kenji Kaneshige80bfdbe2009-05-13 12:12:43 +090055
Kenji Kaneshige4d246e42009-05-13 12:15:38 +090056 /* Clock PM state */
57 u32 clkpm_capable:1; /* Clock PM capable? */
58 u32 clkpm_enabled:1; /* Current Clock PM state */
59 u32 clkpm_default:1; /* Default Clock PM state by BIOS */
60
Kenji Kaneshigeac180182009-08-19 11:02:13 +090061 /* Exit latencies */
62 struct aspm_latency latency_up; /* Upstream direction exit latency */
63 struct aspm_latency latency_dw; /* Downstream direction exit latency */
Shaohua Li7d715a62008-02-25 09:46:41 +080064 /*
Kenji Kaneshigeb6c2e542009-05-13 12:14:58 +090065 * Endpoint acceptable latencies. A pcie downstream port only
66 * has one slot under it, so at most there are 8 functions.
Shaohua Li7d715a62008-02-25 09:46:41 +080067 */
Kenji Kaneshigeb6c2e542009-05-13 12:14:58 +090068 struct aspm_latency acceptable[8];
Shaohua Li7d715a62008-02-25 09:46:41 +080069};
70
Matthew Garrett3c076352011-11-10 16:38:33 -050071static int aspm_disabled, aspm_force;
Rafael J. Wysocki8b8bae92011-03-05 13:21:51 +010072static bool aspm_support_enabled = true;
Shaohua Li7d715a62008-02-25 09:46:41 +080073static DEFINE_MUTEX(aspm_lock);
74static LIST_HEAD(link_list);
75
76#define POLICY_DEFAULT 0 /* BIOS default setting */
77#define POLICY_PERFORMANCE 1 /* high performance */
78#define POLICY_POWERSAVE 2 /* high power saving */
Matthew Garrettad71c962012-02-03 10:18:13 -050079
80#ifdef CONFIG_PCIEASPM_PERFORMANCE
81static int aspm_policy = POLICY_PERFORMANCE;
82#elif defined CONFIG_PCIEASPM_POWERSAVE
83static int aspm_policy = POLICY_POWERSAVE;
84#else
Shaohua Li7d715a62008-02-25 09:46:41 +080085static int aspm_policy;
Matthew Garrettad71c962012-02-03 10:18:13 -050086#endif
87
Shaohua Li7d715a62008-02-25 09:46:41 +080088static const char *policy_str[] = {
89 [POLICY_DEFAULT] = "default",
90 [POLICY_PERFORMANCE] = "performance",
91 [POLICY_POWERSAVE] = "powersave"
92};
93
Andrew Patterson987a4c72009-01-05 16:21:04 -070094#define LINK_RETRAIN_TIMEOUT HZ
95
Kenji Kaneshige5aa63582009-05-13 12:17:44 +090096static int policy_to_aspm_state(struct pcie_link_state *link)
Shaohua Li7d715a62008-02-25 09:46:41 +080097{
Shaohua Li7d715a62008-02-25 09:46:41 +080098 switch (aspm_policy) {
99 case POLICY_PERFORMANCE:
100 /* Disable ASPM and Clock PM */
101 return 0;
102 case POLICY_POWERSAVE:
103 /* Enable ASPM L0s/L1 */
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900104 return ASPM_STATE_ALL;
Shaohua Li7d715a62008-02-25 09:46:41 +0800105 case POLICY_DEFAULT:
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900106 return link->aspm_default;
Shaohua Li7d715a62008-02-25 09:46:41 +0800107 }
108 return 0;
109}
110
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900111static int policy_to_clkpm_state(struct pcie_link_state *link)
Shaohua Li7d715a62008-02-25 09:46:41 +0800112{
Shaohua Li7d715a62008-02-25 09:46:41 +0800113 switch (aspm_policy) {
114 case POLICY_PERFORMANCE:
115 /* Disable ASPM and Clock PM */
116 return 0;
117 case POLICY_POWERSAVE:
118 /* Disable Clock PM */
119 return 1;
120 case POLICY_DEFAULT:
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900121 return link->clkpm_default;
Shaohua Li7d715a62008-02-25 09:46:41 +0800122 }
123 return 0;
124}
125
Kenji Kaneshige430842e2009-05-13 12:20:10 +0900126static void pcie_set_clkpm_nocheck(struct pcie_link_state *link, int enable)
Shaohua Li7d715a62008-02-25 09:46:41 +0800127{
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900128 struct pci_dev *child;
129 struct pci_bus *linkbus = link->pdev->subordinate;
Shaohua Li7d715a62008-02-25 09:46:41 +0800130
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900131 list_for_each_entry(child, &linkbus->devices, bus_list) {
Shaohua Li7d715a62008-02-25 09:46:41 +0800132 if (enable)
Jiang Liuf12eb722012-07-24 17:20:12 +0800133 pcie_capability_set_word(child, PCI_EXP_LNKCTL,
134 PCI_EXP_LNKCTL_CLKREQ_EN);
Shaohua Li7d715a62008-02-25 09:46:41 +0800135 else
Jiang Liuf12eb722012-07-24 17:20:12 +0800136 pcie_capability_clear_word(child, PCI_EXP_LNKCTL,
137 PCI_EXP_LNKCTL_CLKREQ_EN);
Shaohua Li7d715a62008-02-25 09:46:41 +0800138 }
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900139 link->clkpm_enabled = !!enable;
Shaohua Li7d715a62008-02-25 09:46:41 +0800140}
141
Kenji Kaneshige430842e2009-05-13 12:20:10 +0900142static 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)
Matthew Garrett2f671e22010-12-06 14:00:56 -0500146 enable = 0;
Kenji Kaneshige430842e2009-05-13 12:20:10 +0900147 /* 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
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900153static void pcie_clkpm_cap_init(struct pcie_link_state *link, int blacklist)
Shaohua Li7d715a62008-02-25 09:46:41 +0800154{
Jiang Liuf12eb722012-07-24 17:20:12 +0800155 int capable = 1, enabled = 1;
Shaohua Li7d715a62008-02-25 09:46:41 +0800156 u32 reg32;
157 u16 reg16;
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900158 struct pci_dev *child;
159 struct pci_bus *linkbus = link->pdev->subordinate;
Shaohua Li7d715a62008-02-25 09:46:41 +0800160
161 /* All functions should have the same cap and state, take the worst */
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900162 list_for_each_entry(child, &linkbus->devices, bus_list) {
Jiang Liuf12eb722012-07-24 17:20:12 +0800163 pcie_capability_read_dword(child, PCI_EXP_LNKCAP, &reg32);
Shaohua Li7d715a62008-02-25 09:46:41 +0800164 if (!(reg32 & PCI_EXP_LNKCAP_CLKPM)) {
165 capable = 0;
166 enabled = 0;
167 break;
168 }
Jiang Liuf12eb722012-07-24 17:20:12 +0800169 pcie_capability_read_word(child, PCI_EXP_LNKCTL, &reg16);
Shaohua Li7d715a62008-02-25 09:46:41 +0800170 if (!(reg16 & PCI_EXP_LNKCTL_CLKREQ_EN))
171 enabled = 0;
172 }
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900173 link->clkpm_enabled = enabled;
174 link->clkpm_default = enabled;
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900175 link->clkpm_capable = (blacklist) ? 0 : capable;
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800176}
177
Shaohua Li7d715a62008-02-25 09:46:41 +0800178/*
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 */
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900183static void pcie_aspm_configure_common_clock(struct pcie_link_state *link)
Shaohua Li7d715a62008-02-25 09:46:41 +0800184{
Jiang Liuf12eb722012-07-24 17:20:12 +0800185 int same_clock = 1;
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900186 u16 reg16, parent_reg, child_reg[8];
Thomas Renninger2a42d9d2008-12-09 13:05:09 +0100187 unsigned long start_jiffies;
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900188 struct pci_dev *child, *parent = link->pdev;
189 struct pci_bus *linkbus = parent->subordinate;
Shaohua Li7d715a62008-02-25 09:46:41 +0800190 /*
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900191 * All functions of a slot should have the same Slot Clock
Shaohua Li7d715a62008-02-25 09:46:41 +0800192 * Configuration, so just check one function
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900193 */
194 child = list_entry(linkbus->devices.next, struct pci_dev, bus_list);
Kenji Kaneshige8b064772009-11-11 14:36:52 +0900195 BUG_ON(!pci_is_pcie(child));
Shaohua Li7d715a62008-02-25 09:46:41 +0800196
197 /* Check downstream component if bit Slot Clock Configuration is 1 */
Jiang Liuf12eb722012-07-24 17:20:12 +0800198 pcie_capability_read_word(child, PCI_EXP_LNKSTA, &reg16);
Shaohua Li7d715a62008-02-25 09:46:41 +0800199 if (!(reg16 & PCI_EXP_LNKSTA_SLC))
200 same_clock = 0;
201
202 /* Check upstream component if bit Slot Clock Configuration is 1 */
Jiang Liuf12eb722012-07-24 17:20:12 +0800203 pcie_capability_read_word(parent, PCI_EXP_LNKSTA, &reg16);
Shaohua Li7d715a62008-02-25 09:46:41 +0800204 if (!(reg16 & PCI_EXP_LNKSTA_SLC))
205 same_clock = 0;
206
207 /* Configure downstream component, all functions */
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900208 list_for_each_entry(child, &linkbus->devices, bus_list) {
Jiang Liuf12eb722012-07-24 17:20:12 +0800209 pcie_capability_read_word(child, PCI_EXP_LNKCTL, &reg16);
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900210 child_reg[PCI_FUNC(child->devfn)] = reg16;
Shaohua Li7d715a62008-02-25 09:46:41 +0800211 if (same_clock)
212 reg16 |= PCI_EXP_LNKCTL_CCC;
213 else
214 reg16 &= ~PCI_EXP_LNKCTL_CCC;
Jiang Liuf12eb722012-07-24 17:20:12 +0800215 pcie_capability_write_word(child, PCI_EXP_LNKCTL, reg16);
Shaohua Li7d715a62008-02-25 09:46:41 +0800216 }
217
218 /* Configure upstream component */
Jiang Liuf12eb722012-07-24 17:20:12 +0800219 pcie_capability_read_word(parent, PCI_EXP_LNKCTL, &reg16);
Thomas Renninger2a42d9d2008-12-09 13:05:09 +0100220 parent_reg = reg16;
Shaohua Li7d715a62008-02-25 09:46:41 +0800221 if (same_clock)
222 reg16 |= PCI_EXP_LNKCTL_CCC;
223 else
224 reg16 &= ~PCI_EXP_LNKCTL_CCC;
Jiang Liuf12eb722012-07-24 17:20:12 +0800225 pcie_capability_write_word(parent, PCI_EXP_LNKCTL, reg16);
Shaohua Li7d715a62008-02-25 09:46:41 +0800226
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900227 /* Retrain link */
Shaohua Li7d715a62008-02-25 09:46:41 +0800228 reg16 |= PCI_EXP_LNKCTL_RL;
Jiang Liuf12eb722012-07-24 17:20:12 +0800229 pcie_capability_write_word(parent, PCI_EXP_LNKCTL, reg16);
Shaohua Li7d715a62008-02-25 09:46:41 +0800230
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900231 /* Wait for link training end. Break out after waiting for timeout */
Thomas Renninger2a42d9d2008-12-09 13:05:09 +0100232 start_jiffies = jiffies;
Andrew Patterson987a4c72009-01-05 16:21:04 -0700233 for (;;) {
Jiang Liuf12eb722012-07-24 17:20:12 +0800234 pcie_capability_read_word(parent, PCI_EXP_LNKSTA, &reg16);
Shaohua Li7d715a62008-02-25 09:46:41 +0800235 if (!(reg16 & PCI_EXP_LNKSTA_LT))
236 break;
Andrew Patterson987a4c72009-01-05 16:21:04 -0700237 if (time_after(jiffies, start_jiffies + LINK_RETRAIN_TIMEOUT))
238 break;
239 msleep(1);
Shaohua Li7d715a62008-02-25 09:46:41 +0800240 }
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900241 if (!(reg16 & PCI_EXP_LNKSTA_LT))
242 return;
243
244 /* Training failed. Restore common clock configurations */
Joe Perches438be3c2012-10-28 01:05:49 -0700245 dev_err(&parent->dev, "ASPM: Could not configure common clock\n");
Jiang Liuf12eb722012-07-24 17:20:12 +0800246 list_for_each_entry(child, &linkbus->devices, bus_list)
247 pcie_capability_write_word(child, PCI_EXP_LNKCTL,
248 child_reg[PCI_FUNC(child->devfn)]);
249 pcie_capability_write_word(parent, PCI_EXP_LNKCTL, parent_reg);
Shaohua Li7d715a62008-02-25 09:46:41 +0800250}
251
Kenji Kaneshige5e0eaa72009-05-13 12:21:48 +0900252/* Convert L0s latency encoding to ns */
253static u32 calc_l0s_latency(u32 encoding)
Shaohua Li7d715a62008-02-25 09:46:41 +0800254{
Kenji Kaneshige5e0eaa72009-05-13 12:21:48 +0900255 if (encoding == 0x7)
256 return (5 * 1000); /* > 4us */
257 return (64 << encoding);
Shaohua Li7d715a62008-02-25 09:46:41 +0800258}
259
Kenji Kaneshige5e0eaa72009-05-13 12:21:48 +0900260/* Convert L0s acceptable latency encoding to ns */
261static u32 calc_l0s_acceptable(u32 encoding)
Shaohua Li7d715a62008-02-25 09:46:41 +0800262{
Kenji Kaneshige5e0eaa72009-05-13 12:21:48 +0900263 if (encoding == 0x7)
264 return -1U;
265 return (64 << encoding);
266}
Shaohua Li7d715a62008-02-25 09:46:41 +0800267
Kenji Kaneshige5e0eaa72009-05-13 12:21:48 +0900268/* Convert L1 latency encoding to ns */
269static u32 calc_l1_latency(u32 encoding)
270{
271 if (encoding == 0x7)
272 return (65 * 1000); /* > 64us */
273 return (1000 << encoding);
274}
275
276/* Convert L1 acceptable latency encoding to ns */
277static u32 calc_l1_acceptable(u32 encoding)
278{
279 if (encoding == 0x7)
280 return -1U;
281 return (1000 << encoding);
Shaohua Li7d715a62008-02-25 09:46:41 +0800282}
283
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900284struct aspm_register_info {
285 u32 support:2;
286 u32 enabled:2;
287 u32 latency_encoding_l0s;
288 u32 latency_encoding_l1;
289};
290
291static void pcie_get_aspm_reg(struct pci_dev *pdev,
292 struct aspm_register_info *info)
Shaohua Li7d715a62008-02-25 09:46:41 +0800293{
Shaohua Li7d715a62008-02-25 09:46:41 +0800294 u16 reg16;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900295 u32 reg32;
Shaohua Li7d715a62008-02-25 09:46:41 +0800296
Jiang Liuf12eb722012-07-24 17:20:12 +0800297 pcie_capability_read_dword(pdev, PCI_EXP_LNKCAP, &reg32);
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900298 info->support = (reg32 & PCI_EXP_LNKCAP_ASPMS) >> 10;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900299 info->latency_encoding_l0s = (reg32 & PCI_EXP_LNKCAP_L0SEL) >> 12;
300 info->latency_encoding_l1 = (reg32 & PCI_EXP_LNKCAP_L1EL) >> 15;
Jiang Liuf12eb722012-07-24 17:20:12 +0800301 pcie_capability_read_word(pdev, PCI_EXP_LNKCTL, &reg16);
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900302 info->enabled = reg16 & PCI_EXP_LNKCTL_ASPMC;
Shaohua Li7d715a62008-02-25 09:46:41 +0800303}
304
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900305static void pcie_aspm_check_latency(struct pci_dev *endpoint)
306{
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900307 u32 latency, l1_switch_latency = 0;
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900308 struct aspm_latency *acceptable;
309 struct pcie_link_state *link;
310
311 /* Device not in D0 doesn't need latency check */
312 if ((endpoint->current_state != PCI_D0) &&
313 (endpoint->current_state != PCI_UNKNOWN))
314 return;
315
316 link = endpoint->bus->self->link_state;
317 acceptable = &link->acceptable[PCI_FUNC(endpoint->devfn)];
318
319 while (link) {
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900320 /* Check upstream direction L0s latency */
321 if ((link->aspm_capable & ASPM_STATE_L0S_UP) &&
322 (link->latency_up.l0s > acceptable->l0s))
323 link->aspm_capable &= ~ASPM_STATE_L0S_UP;
324
325 /* Check downstream direction L0s latency */
326 if ((link->aspm_capable & ASPM_STATE_L0S_DW) &&
327 (link->latency_dw.l0s > acceptable->l0s))
328 link->aspm_capable &= ~ASPM_STATE_L0S_DW;
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900329 /*
330 * Check L1 latency.
331 * Every switch on the path to root complex need 1
332 * more microsecond for L1. Spec doesn't mention L0s.
333 */
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900334 latency = max_t(u32, link->latency_up.l1, link->latency_dw.l1);
335 if ((link->aspm_capable & ASPM_STATE_L1) &&
336 (latency + l1_switch_latency > acceptable->l1))
337 link->aspm_capable &= ~ASPM_STATE_L1;
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900338 l1_switch_latency += 1000;
339
340 link = link->parent;
341 }
342}
343
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900344static void pcie_aspm_cap_init(struct pcie_link_state *link, int blacklist)
Shaohua Li7d715a62008-02-25 09:46:41 +0800345{
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900346 struct pci_dev *child, *parent = link->pdev;
347 struct pci_bus *linkbus = parent->subordinate;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900348 struct aspm_register_info upreg, dwreg;
Shaohua Li7d715a62008-02-25 09:46:41 +0800349
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900350 if (blacklist) {
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900351 /* Set enabled/disable so that we will disable ASPM later */
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900352 link->aspm_enabled = ASPM_STATE_ALL;
353 link->aspm_disable = ASPM_STATE_ALL;
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900354 return;
355 }
356
357 /* Configure common clock before checking latencies */
358 pcie_aspm_configure_common_clock(link);
359
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900360 /* Get upstream/downstream components' register state */
361 pcie_get_aspm_reg(parent, &upreg);
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900362 child = list_entry(linkbus->devices.next, struct pci_dev, bus_list);
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900363 pcie_get_aspm_reg(child, &dwreg);
364
365 /*
366 * Setup L0s state
367 *
368 * Note that we must not enable L0s in either direction on a
369 * given link unless components on both sides of the link each
370 * support L0s.
371 */
372 if (dwreg.support & upreg.support & PCIE_LINK_STATE_L0S)
373 link->aspm_support |= ASPM_STATE_L0S;
374 if (dwreg.enabled & PCIE_LINK_STATE_L0S)
375 link->aspm_enabled |= ASPM_STATE_L0S_UP;
376 if (upreg.enabled & PCIE_LINK_STATE_L0S)
377 link->aspm_enabled |= ASPM_STATE_L0S_DW;
378 link->latency_up.l0s = calc_l0s_latency(upreg.latency_encoding_l0s);
379 link->latency_dw.l0s = calc_l0s_latency(dwreg.latency_encoding_l0s);
380
381 /* Setup L1 state */
382 if (upreg.support & dwreg.support & PCIE_LINK_STATE_L1)
383 link->aspm_support |= ASPM_STATE_L1;
384 if (upreg.enabled & dwreg.enabled & PCIE_LINK_STATE_L1)
385 link->aspm_enabled |= ASPM_STATE_L1;
386 link->latency_up.l1 = calc_l1_latency(upreg.latency_encoding_l1);
387 link->latency_dw.l1 = calc_l1_latency(dwreg.latency_encoding_l1);
Kenji Kaneshige80bfdbe2009-05-13 12:12:43 +0900388
Kenji Kaneshigeb127bd52009-08-19 10:57:31 +0900389 /* Save default state */
390 link->aspm_default = link->aspm_enabled;
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900391
392 /* Setup initial capable state. Will be updated later */
393 link->aspm_capable = link->aspm_support;
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900394 /*
395 * If the downstream component has pci bridge function, don't
396 * do ASPM for now.
397 */
398 list_for_each_entry(child, &linkbus->devices, bus_list) {
Yijing Wang62f87c02012-07-24 17:20:03 +0800399 if (pci_pcie_type(child) == PCI_EXP_TYPE_PCI_BRIDGE) {
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900400 link->aspm_disable = ASPM_STATE_ALL;
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900401 break;
402 }
403 }
Kenji Kaneshigeb127bd52009-08-19 10:57:31 +0900404
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900405 /* Get and check endpoint acceptable latencies */
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900406 list_for_each_entry(child, &linkbus->devices, bus_list) {
Kenji Kaneshige5e0eaa72009-05-13 12:21:48 +0900407 u32 reg32, encoding;
Kenji Kaneshigeb6c2e542009-05-13 12:14:58 +0900408 struct aspm_latency *acceptable =
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900409 &link->acceptable[PCI_FUNC(child->devfn)];
Shaohua Li7d715a62008-02-25 09:46:41 +0800410
Yijing Wang62f87c02012-07-24 17:20:03 +0800411 if (pci_pcie_type(child) != PCI_EXP_TYPE_ENDPOINT &&
412 pci_pcie_type(child) != PCI_EXP_TYPE_LEG_END)
Shaohua Li7d715a62008-02-25 09:46:41 +0800413 continue;
414
Jiang Liuf12eb722012-07-24 17:20:12 +0800415 pcie_capability_read_dword(child, PCI_EXP_DEVCAP, &reg32);
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900416 /* Calculate endpoint L0s acceptable latency */
Kenji Kaneshige5e0eaa72009-05-13 12:21:48 +0900417 encoding = (reg32 & PCI_EXP_DEVCAP_L0S) >> 6;
418 acceptable->l0s = calc_l0s_acceptable(encoding);
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900419 /* Calculate endpoint L1 acceptable latency */
420 encoding = (reg32 & PCI_EXP_DEVCAP_L1) >> 9;
421 acceptable->l1 = calc_l1_acceptable(encoding);
422
423 pcie_aspm_check_latency(child);
Shaohua Li7d715a62008-02-25 09:46:41 +0800424 }
425}
426
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900427static void pcie_config_aspm_dev(struct pci_dev *pdev, u32 val)
Shaohua Li7d715a62008-02-25 09:46:41 +0800428{
Jiang Liuf12eb722012-07-24 17:20:12 +0800429 pcie_capability_clear_and_set_word(pdev, PCI_EXP_LNKCTL, 0x3, val);
Shaohua Li7d715a62008-02-25 09:46:41 +0800430}
431
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900432static void pcie_config_aspm_link(struct pcie_link_state *link, u32 state)
Shaohua Li7d715a62008-02-25 09:46:41 +0800433{
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900434 u32 upstream = 0, dwstream = 0;
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900435 struct pci_dev *child, *parent = link->pdev;
436 struct pci_bus *linkbus = parent->subordinate;
Shaohua Li7d715a62008-02-25 09:46:41 +0800437
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900438 /* Nothing to do if the link is already in the requested state */
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900439 state &= (link->aspm_capable & ~link->aspm_disable);
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900440 if (link->aspm_enabled == state)
441 return;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900442 /* Convert ASPM state to upstream/downstream ASPM register state */
443 if (state & ASPM_STATE_L0S_UP)
444 dwstream |= PCIE_LINK_STATE_L0S;
445 if (state & ASPM_STATE_L0S_DW)
446 upstream |= PCIE_LINK_STATE_L0S;
447 if (state & ASPM_STATE_L1) {
448 upstream |= PCIE_LINK_STATE_L1;
449 dwstream |= PCIE_LINK_STATE_L1;
450 }
Shaohua Li7d715a62008-02-25 09:46:41 +0800451 /*
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900452 * Spec 2.0 suggests all functions should be configured the
453 * same setting for ASPM. Enabling ASPM L1 should be done in
454 * upstream component first and then downstream, and vice
455 * versa for disabling ASPM L1. Spec doesn't mention L0S.
Shaohua Li7d715a62008-02-25 09:46:41 +0800456 */
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900457 if (state & ASPM_STATE_L1)
458 pcie_config_aspm_dev(parent, upstream);
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900459 list_for_each_entry(child, &linkbus->devices, bus_list)
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900460 pcie_config_aspm_dev(child, dwstream);
461 if (!(state & ASPM_STATE_L1))
462 pcie_config_aspm_dev(parent, upstream);
Shaohua Li7d715a62008-02-25 09:46:41 +0800463
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900464 link->aspm_enabled = state;
Shaohua Li7d715a62008-02-25 09:46:41 +0800465}
466
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900467static void pcie_config_aspm_path(struct pcie_link_state *link)
Shaohua Li7d715a62008-02-25 09:46:41 +0800468{
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900469 while (link) {
470 pcie_config_aspm_link(link, policy_to_aspm_state(link));
471 link = link->parent;
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800472 }
Shaohua Li7d715a62008-02-25 09:46:41 +0800473}
474
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900475static void free_link_state(struct pcie_link_state *link)
Shaohua Li7d715a62008-02-25 09:46:41 +0800476{
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900477 link->pdev->link_state = NULL;
478 kfree(link);
Shaohua Li7d715a62008-02-25 09:46:41 +0800479}
480
Shaohua Liddc97532008-05-21 16:58:40 +0800481static int pcie_aspm_sanity_check(struct pci_dev *pdev)
482{
Kenji Kaneshige36475842009-05-13 12:23:09 +0900483 struct pci_dev *child;
Shaohua Li149e1632008-07-23 10:32:31 +0800484 u32 reg32;
Matthew Garrett2f671e22010-12-06 14:00:56 -0500485
Shaohua Liddc97532008-05-21 16:58:40 +0800486 /*
Stefan Assmann45e829e2009-12-03 06:49:24 -0500487 * Some functions in a slot might not all be PCIe functions,
Kenji Kaneshige36475842009-05-13 12:23:09 +0900488 * very strange. Disable ASPM for the whole slot
Shaohua Liddc97532008-05-21 16:58:40 +0800489 */
Kenji Kaneshige36475842009-05-13 12:23:09 +0900490 list_for_each_entry(child, &pdev->subordinate->devices, bus_list) {
Jiang Liuf12eb722012-07-24 17:20:12 +0800491 if (!pci_is_pcie(child))
Shaohua Liddc97532008-05-21 16:58:40 +0800492 return -EINVAL;
Matthew Garrettc9651e72012-03-27 10:17:41 -0400493
494 /*
495 * If ASPM is disabled then we're not going to change
496 * the BIOS state. It's safe to continue even if it's a
497 * pre-1.1 device
498 */
499
500 if (aspm_disabled)
501 continue;
502
Shaohua Li149e1632008-07-23 10:32:31 +0800503 /*
504 * Disable ASPM for pre-1.1 PCIe device, we follow MS to use
505 * RBER bit to determine if a function is 1.1 version device
506 */
Jiang Liuf12eb722012-07-24 17:20:12 +0800507 pcie_capability_read_dword(child, PCI_EXP_DEVCAP, &reg32);
Sitsofe Wheelere1f4f592008-09-16 14:27:13 +0100508 if (!(reg32 & PCI_EXP_DEVCAP_RBER) && !aspm_force) {
Joe Perches438be3c2012-10-28 01:05:49 -0700509 dev_info(&child->dev, "disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'\n");
Shaohua Li149e1632008-07-23 10:32:31 +0800510 return -EINVAL;
511 }
Shaohua Liddc97532008-05-21 16:58:40 +0800512 }
513 return 0;
514}
515
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900516static struct pcie_link_state *alloc_pcie_link_state(struct pci_dev *pdev)
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900517{
518 struct pcie_link_state *link;
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900519
520 link = kzalloc(sizeof(*link), GFP_KERNEL);
521 if (!link)
522 return NULL;
523 INIT_LIST_HEAD(&link->sibling);
524 INIT_LIST_HEAD(&link->children);
525 INIT_LIST_HEAD(&link->link);
526 link->pdev = pdev;
Yijing Wang62f87c02012-07-24 17:20:03 +0800527 if (pci_pcie_type(pdev) == PCI_EXP_TYPE_DOWNSTREAM) {
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900528 struct pcie_link_state *parent;
529 parent = pdev->bus->parent->self->link_state;
530 if (!parent) {
531 kfree(link);
532 return NULL;
533 }
534 link->parent = parent;
535 list_add(&link->link, &parent->children);
536 }
Kenji Kaneshige5c92ffb2009-05-13 12:23:57 +0900537 /* Setup a pointer to the root port link */
538 if (!link->parent)
539 link->root = link;
540 else
541 link->root = link->parent->root;
542
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900543 list_add(&link->sibling, &link_list);
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900544 pdev->link_state = link;
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900545 return link;
546}
547
Shaohua Li7d715a62008-02-25 09:46:41 +0800548/*
549 * pcie_aspm_init_link_state: Initiate PCI express link state.
550 * It is called after the pcie and its children devices are scaned.
551 * @pdev: the root port or switch downstream port
552 */
553void pcie_aspm_init_link_state(struct pci_dev *pdev)
554{
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900555 struct pcie_link_state *link;
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900556 int blacklist = !!pcie_aspm_sanity_check(pdev);
Shaohua Li7d715a62008-02-25 09:46:41 +0800557
Matthew Garrett2f671e22010-12-06 14:00:56 -0500558 if (!pci_is_pcie(pdev) || pdev->link_state)
Shaohua Li7d715a62008-02-25 09:46:41 +0800559 return;
Yijing Wang62f87c02012-07-24 17:20:03 +0800560 if (pci_pcie_type(pdev) != PCI_EXP_TYPE_ROOT_PORT &&
561 pci_pcie_type(pdev) != PCI_EXP_TYPE_DOWNSTREAM)
Shaohua Li7d715a62008-02-25 09:46:41 +0800562 return;
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900563
Shaohua Li8e822df2009-06-08 09:27:25 +0800564 /* VIA has a strange chipset, root port is under a bridge */
Yijing Wang62f87c02012-07-24 17:20:03 +0800565 if (pci_pcie_type(pdev) == PCI_EXP_TYPE_ROOT_PORT &&
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900566 pdev->bus->self)
Shaohua Li8e822df2009-06-08 09:27:25 +0800567 return;
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900568
Shaohua Li7d715a62008-02-25 09:46:41 +0800569 down_read(&pci_bus_sem);
570 if (list_empty(&pdev->subordinate->devices))
571 goto out;
572
Shaohua Li7d715a62008-02-25 09:46:41 +0800573 mutex_lock(&aspm_lock);
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900574 link = alloc_pcie_link_state(pdev);
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900575 if (!link)
576 goto unlock;
577 /*
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900578 * Setup initial ASPM state. Note that we need to configure
579 * upstream links also because capable state of them can be
580 * update through pcie_aspm_cap_init().
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900581 */
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900582 pcie_aspm_cap_init(link, blacklist);
Shaohua Li7d715a62008-02-25 09:46:41 +0800583
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900584 /* Setup initial Clock PM state */
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900585 pcie_clkpm_cap_init(link, blacklist);
Matthew Garrett41cd7662010-06-09 16:05:07 -0400586
587 /*
588 * At this stage drivers haven't had an opportunity to change the
589 * link policy setting. Enabling ASPM on broken hardware can cripple
590 * it even before the driver has had a chance to disable ASPM, so
591 * default to a safe level right now. If we're enabling ASPM beyond
592 * the BIOS's expectation, we'll do so once pci_enable_device() is
593 * called.
594 */
Matthew Garrett3c076352011-11-10 16:38:33 -0500595 if (aspm_policy != POLICY_POWERSAVE) {
Matthew Garrett41cd7662010-06-09 16:05:07 -0400596 pcie_config_aspm_path(link);
597 pcie_set_clkpm(link, policy_to_clkpm_state(link));
598 }
599
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900600unlock:
Shaohua Li7d715a62008-02-25 09:46:41 +0800601 mutex_unlock(&aspm_lock);
602out:
603 up_read(&pci_bus_sem);
604}
605
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900606/* Recheck latencies and update aspm_capable for links under the root */
607static void pcie_update_aspm_capable(struct pcie_link_state *root)
608{
609 struct pcie_link_state *link;
610 BUG_ON(root->parent);
611 list_for_each_entry(link, &link_list, sibling) {
612 if (link->root != root)
613 continue;
614 link->aspm_capable = link->aspm_support;
615 }
616 list_for_each_entry(link, &link_list, sibling) {
617 struct pci_dev *child;
618 struct pci_bus *linkbus = link->pdev->subordinate;
619 if (link->root != root)
620 continue;
621 list_for_each_entry(child, &linkbus->devices, bus_list) {
Yijing Wang62f87c02012-07-24 17:20:03 +0800622 if ((pci_pcie_type(child) != PCI_EXP_TYPE_ENDPOINT) &&
623 (pci_pcie_type(child) != PCI_EXP_TYPE_LEG_END))
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900624 continue;
625 pcie_aspm_check_latency(child);
626 }
627 }
628}
629
Shaohua Li7d715a62008-02-25 09:46:41 +0800630/* @pdev: the endpoint device */
631void pcie_aspm_exit_link_state(struct pci_dev *pdev)
632{
633 struct pci_dev *parent = pdev->bus->self;
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900634 struct pcie_link_state *link, *root, *parent_link;
Shaohua Li7d715a62008-02-25 09:46:41 +0800635
Matthew Garrett3c076352011-11-10 16:38:33 -0500636 if (!pci_is_pcie(pdev) || !parent || !parent->link_state)
Shaohua Li7d715a62008-02-25 09:46:41 +0800637 return;
Yijing Wang62f87c02012-07-24 17:20:03 +0800638 if ((pci_pcie_type(parent) != PCI_EXP_TYPE_ROOT_PORT) &&
639 (pci_pcie_type(parent) != PCI_EXP_TYPE_DOWNSTREAM))
Shaohua Li7d715a62008-02-25 09:46:41 +0800640 return;
Kenji Kaneshigefc87e912009-08-19 10:58:46 +0900641
Shaohua Li7d715a62008-02-25 09:46:41 +0800642 down_read(&pci_bus_sem);
643 mutex_lock(&aspm_lock);
Shaohua Li7d715a62008-02-25 09:46:41 +0800644 /*
645 * All PCIe functions are in one slot, remove one function will remove
Alex Chiang3419c752009-01-28 14:59:18 -0700646 * the whole slot, so just wait until we are the last function left.
Shaohua Li7d715a62008-02-25 09:46:41 +0800647 */
Alex Chiang3419c752009-01-28 14:59:18 -0700648 if (!list_is_last(&pdev->bus_list, &parent->subordinate->devices))
Shaohua Li7d715a62008-02-25 09:46:41 +0800649 goto out;
650
Kenji Kaneshigefc87e912009-08-19 10:58:46 +0900651 link = parent->link_state;
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900652 root = link->root;
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900653 parent_link = link->parent;
Kenji Kaneshigefc87e912009-08-19 10:58:46 +0900654
Shaohua Li7d715a62008-02-25 09:46:41 +0800655 /* All functions are removed, so just disable ASPM for the link */
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900656 pcie_config_aspm_link(link, 0);
Kenji Kaneshigefc87e912009-08-19 10:58:46 +0900657 list_del(&link->sibling);
658 list_del(&link->link);
Shaohua Li7d715a62008-02-25 09:46:41 +0800659 /* Clock PM is for endpoint device */
Kenji Kaneshigefc87e912009-08-19 10:58:46 +0900660 free_link_state(link);
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900661
662 /* Recheck latencies and configure upstream links */
Kenji Kaneshigeb26a34a2009-11-06 11:25:13 +0900663 if (parent_link) {
664 pcie_update_aspm_capable(root);
665 pcie_config_aspm_path(parent_link);
666 }
Shaohua Li7d715a62008-02-25 09:46:41 +0800667out:
668 mutex_unlock(&aspm_lock);
669 up_read(&pci_bus_sem);
670}
671
672/* @pdev: the root port or switch downstream port */
673void pcie_aspm_pm_state_change(struct pci_dev *pdev)
674{
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900675 struct pcie_link_state *link = pdev->link_state;
Shaohua Li7d715a62008-02-25 09:46:41 +0800676
Kenji Kaneshige8b064772009-11-11 14:36:52 +0900677 if (aspm_disabled || !pci_is_pcie(pdev) || !link)
Shaohua Li7d715a62008-02-25 09:46:41 +0800678 return;
Yijing Wang62f87c02012-07-24 17:20:03 +0800679 if ((pci_pcie_type(pdev) != PCI_EXP_TYPE_ROOT_PORT) &&
680 (pci_pcie_type(pdev) != PCI_EXP_TYPE_DOWNSTREAM))
Shaohua Li7d715a62008-02-25 09:46:41 +0800681 return;
682 /*
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900683 * Devices changed PM state, we should recheck if latency
684 * meets all functions' requirement
Shaohua Li7d715a62008-02-25 09:46:41 +0800685 */
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900686 down_read(&pci_bus_sem);
687 mutex_lock(&aspm_lock);
688 pcie_update_aspm_capable(link->root);
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900689 pcie_config_aspm_path(link);
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900690 mutex_unlock(&aspm_lock);
691 up_read(&pci_bus_sem);
Shaohua Li7d715a62008-02-25 09:46:41 +0800692}
693
Naga Chumbalkar1a680b72011-03-21 03:29:08 +0000694void pcie_aspm_powersave_config_link(struct pci_dev *pdev)
695{
696 struct pcie_link_state *link = pdev->link_state;
697
698 if (aspm_disabled || !pci_is_pcie(pdev) || !link)
699 return;
700
701 if (aspm_policy != POLICY_POWERSAVE)
702 return;
703
Yijing Wang62f87c02012-07-24 17:20:03 +0800704 if ((pci_pcie_type(pdev) != PCI_EXP_TYPE_ROOT_PORT) &&
705 (pci_pcie_type(pdev) != PCI_EXP_TYPE_DOWNSTREAM))
Naga Chumbalkar1a680b72011-03-21 03:29:08 +0000706 return;
707
708 down_read(&pci_bus_sem);
709 mutex_lock(&aspm_lock);
710 pcie_config_aspm_path(link);
711 pcie_set_clkpm(link, policy_to_clkpm_state(link));
712 mutex_unlock(&aspm_lock);
713 up_read(&pci_bus_sem);
714}
715
Shaohua Li7d715a62008-02-25 09:46:41 +0800716/*
717 * pci_disable_link_state - disable pci device's link state, so the link will
718 * never enter specific states
719 */
Matthew Garrett3c076352011-11-10 16:38:33 -0500720static void __pci_disable_link_state(struct pci_dev *pdev, int state, bool sem,
721 bool force)
Shaohua Li7d715a62008-02-25 09:46:41 +0800722{
723 struct pci_dev *parent = pdev->bus->self;
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900724 struct pcie_link_state *link;
Shaohua Li7d715a62008-02-25 09:46:41 +0800725
Matthew Garrett3c076352011-11-10 16:38:33 -0500726 if (aspm_disabled && !force)
Shaohua Li7d715a62008-02-25 09:46:41 +0800727 return;
Matthew Garrett3c076352011-11-10 16:38:33 -0500728
729 if (!pci_is_pcie(pdev))
730 return;
731
Yijing Wang62f87c02012-07-24 17:20:03 +0800732 if (pci_pcie_type(pdev) == PCI_EXP_TYPE_ROOT_PORT ||
733 pci_pcie_type(pdev) == PCI_EXP_TYPE_DOWNSTREAM)
Shaohua Li7d715a62008-02-25 09:46:41 +0800734 parent = pdev;
735 if (!parent || !parent->link_state)
736 return;
737
Yinghai Lu9f728f52011-05-12 17:11:47 -0700738 if (sem)
739 down_read(&pci_bus_sem);
Shaohua Li7d715a62008-02-25 09:46:41 +0800740 mutex_lock(&aspm_lock);
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900741 link = parent->link_state;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900742 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;
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900746 pcie_config_aspm_link(link, policy_to_aspm_state(link));
747
Kenji Kaneshige430842e2009-05-13 12:20:10 +0900748 if (state & PCIE_LINK_STATE_CLKPM) {
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900749 link->clkpm_capable = 0;
750 pcie_set_clkpm(link, 0);
Kenji Kaneshige430842e2009-05-13 12:20:10 +0900751 }
Shaohua Li7d715a62008-02-25 09:46:41 +0800752 mutex_unlock(&aspm_lock);
Yinghai Lu9f728f52011-05-12 17:11:47 -0700753 if (sem)
754 up_read(&pci_bus_sem);
755}
756
757void pci_disable_link_state_locked(struct pci_dev *pdev, int state)
758{
Matthew Garrett3c076352011-11-10 16:38:33 -0500759 __pci_disable_link_state(pdev, state, false, false);
Yinghai Lu9f728f52011-05-12 17:11:47 -0700760}
761EXPORT_SYMBOL(pci_disable_link_state_locked);
762
763void pci_disable_link_state(struct pci_dev *pdev, int state)
764{
Matthew Garrett3c076352011-11-10 16:38:33 -0500765 __pci_disable_link_state(pdev, state, true, false);
Shaohua Li7d715a62008-02-25 09:46:41 +0800766}
767EXPORT_SYMBOL(pci_disable_link_state);
768
Matthew Garrett3c076352011-11-10 16:38:33 -0500769void pcie_clear_aspm(struct pci_bus *bus)
770{
771 struct pci_dev *child;
772
773 /*
774 * Clear any ASPM setup that the firmware has carried out on this bus
775 */
776 list_for_each_entry(child, &bus->devices, bus_list) {
777 __pci_disable_link_state(child, PCIE_LINK_STATE_L0S |
778 PCIE_LINK_STATE_L1 |
779 PCIE_LINK_STATE_CLKPM,
780 false, true);
781 }
782}
783
Shaohua Li7d715a62008-02-25 09:46:41 +0800784static int pcie_aspm_set_policy(const char *val, struct kernel_param *kp)
785{
786 int i;
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900787 struct pcie_link_state *link;
Shaohua Li7d715a62008-02-25 09:46:41 +0800788
Naga Chumbalkarbbfa3062011-03-21 03:29:14 +0000789 if (aspm_disabled)
790 return -EPERM;
Shaohua Li7d715a62008-02-25 09:46:41 +0800791 for (i = 0; i < ARRAY_SIZE(policy_str); i++)
792 if (!strncmp(val, policy_str[i], strlen(policy_str[i])))
793 break;
794 if (i >= ARRAY_SIZE(policy_str))
795 return -EINVAL;
796 if (i == aspm_policy)
797 return 0;
798
799 down_read(&pci_bus_sem);
800 mutex_lock(&aspm_lock);
801 aspm_policy = i;
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900802 list_for_each_entry(link, &link_list, sibling) {
803 pcie_config_aspm_link(link, policy_to_aspm_state(link));
804 pcie_set_clkpm(link, policy_to_clkpm_state(link));
Shaohua Li7d715a62008-02-25 09:46:41 +0800805 }
806 mutex_unlock(&aspm_lock);
807 up_read(&pci_bus_sem);
808 return 0;
809}
810
811static int pcie_aspm_get_policy(char *buffer, struct kernel_param *kp)
812{
813 int i, cnt = 0;
814 for (i = 0; i < ARRAY_SIZE(policy_str); i++)
815 if (i == aspm_policy)
816 cnt += sprintf(buffer + cnt, "[%s] ", policy_str[i]);
817 else
818 cnt += sprintf(buffer + cnt, "%s ", policy_str[i]);
819 return cnt;
820}
821
822module_param_call(policy, pcie_aspm_set_policy, pcie_aspm_get_policy,
823 NULL, 0644);
824
825#ifdef CONFIG_PCIEASPM_DEBUG
826static ssize_t link_state_show(struct device *dev,
827 struct device_attribute *attr,
828 char *buf)
829{
830 struct pci_dev *pci_device = to_pci_dev(dev);
831 struct pcie_link_state *link_state = pci_device->link_state;
832
Kenji Kaneshige80bfdbe2009-05-13 12:12:43 +0900833 return sprintf(buf, "%d\n", link_state->aspm_enabled);
Shaohua Li7d715a62008-02-25 09:46:41 +0800834}
835
836static ssize_t link_state_store(struct device *dev,
837 struct device_attribute *attr,
838 const char *buf,
839 size_t n)
840{
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900841 struct pci_dev *pdev = to_pci_dev(dev);
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900842 struct pcie_link_state *link, *root = pdev->link_state->root;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900843 u32 val = buf[0] - '0', state = 0;
Shaohua Li7d715a62008-02-25 09:46:41 +0800844
Naga Chumbalkarbbfa3062011-03-21 03:29:14 +0000845 if (aspm_disabled)
846 return -EPERM;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900847 if (n < 1 || val > 3)
Shaohua Li7d715a62008-02-25 09:46:41 +0800848 return -EINVAL;
Shaohua Li7d715a62008-02-25 09:46:41 +0800849
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900850 /* Convert requested state to ASPM state */
851 if (val & PCIE_LINK_STATE_L0S)
852 state |= ASPM_STATE_L0S;
853 if (val & PCIE_LINK_STATE_L1)
854 state |= ASPM_STATE_L1;
855
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900856 down_read(&pci_bus_sem);
857 mutex_lock(&aspm_lock);
858 list_for_each_entry(link, &link_list, sibling) {
859 if (link->root != root)
860 continue;
861 pcie_config_aspm_link(link, state);
862 }
863 mutex_unlock(&aspm_lock);
864 up_read(&pci_bus_sem);
865 return n;
Shaohua Li7d715a62008-02-25 09:46:41 +0800866}
867
868static ssize_t clk_ctl_show(struct device *dev,
869 struct device_attribute *attr,
870 char *buf)
871{
872 struct pci_dev *pci_device = to_pci_dev(dev);
873 struct pcie_link_state *link_state = pci_device->link_state;
874
Kenji Kaneshige4d246e42009-05-13 12:15:38 +0900875 return sprintf(buf, "%d\n", link_state->clkpm_enabled);
Shaohua Li7d715a62008-02-25 09:46:41 +0800876}
877
878static ssize_t clk_ctl_store(struct device *dev,
879 struct device_attribute *attr,
880 const char *buf,
881 size_t n)
882{
Kenji Kaneshige430842e2009-05-13 12:20:10 +0900883 struct pci_dev *pdev = to_pci_dev(dev);
Shaohua Li7d715a62008-02-25 09:46:41 +0800884 int state;
885
886 if (n < 1)
887 return -EINVAL;
888 state = buf[0]-'0';
889
890 down_read(&pci_bus_sem);
891 mutex_lock(&aspm_lock);
Kenji Kaneshige430842e2009-05-13 12:20:10 +0900892 pcie_set_clkpm_nocheck(pdev->link_state, !!state);
Shaohua Li7d715a62008-02-25 09:46:41 +0800893 mutex_unlock(&aspm_lock);
894 up_read(&pci_bus_sem);
895
896 return n;
897}
898
899static DEVICE_ATTR(link_state, 0644, link_state_show, link_state_store);
900static DEVICE_ATTR(clk_ctl, 0644, clk_ctl_show, clk_ctl_store);
901
902static char power_group[] = "power";
903void pcie_aspm_create_sysfs_dev_files(struct pci_dev *pdev)
904{
905 struct pcie_link_state *link_state = pdev->link_state;
906
Kenji Kaneshige8b064772009-11-11 14:36:52 +0900907 if (!pci_is_pcie(pdev) ||
Yijing Wang62f87c02012-07-24 17:20:03 +0800908 (pci_pcie_type(pdev) != PCI_EXP_TYPE_ROOT_PORT &&
909 pci_pcie_type(pdev) != PCI_EXP_TYPE_DOWNSTREAM) || !link_state)
Shaohua Li7d715a62008-02-25 09:46:41 +0800910 return;
911
Kenji Kaneshige80bfdbe2009-05-13 12:12:43 +0900912 if (link_state->aspm_support)
Shaohua Li7d715a62008-02-25 09:46:41 +0800913 sysfs_add_file_to_group(&pdev->dev.kobj,
914 &dev_attr_link_state.attr, power_group);
Kenji Kaneshige4d246e42009-05-13 12:15:38 +0900915 if (link_state->clkpm_capable)
Shaohua Li7d715a62008-02-25 09:46:41 +0800916 sysfs_add_file_to_group(&pdev->dev.kobj,
917 &dev_attr_clk_ctl.attr, power_group);
918}
919
920void pcie_aspm_remove_sysfs_dev_files(struct pci_dev *pdev)
921{
922 struct pcie_link_state *link_state = pdev->link_state;
923
Kenji Kaneshige8b064772009-11-11 14:36:52 +0900924 if (!pci_is_pcie(pdev) ||
Yijing Wang62f87c02012-07-24 17:20:03 +0800925 (pci_pcie_type(pdev) != PCI_EXP_TYPE_ROOT_PORT &&
926 pci_pcie_type(pdev) != PCI_EXP_TYPE_DOWNSTREAM) || !link_state)
Shaohua Li7d715a62008-02-25 09:46:41 +0800927 return;
928
Kenji Kaneshige80bfdbe2009-05-13 12:12:43 +0900929 if (link_state->aspm_support)
Shaohua Li7d715a62008-02-25 09:46:41 +0800930 sysfs_remove_file_from_group(&pdev->dev.kobj,
931 &dev_attr_link_state.attr, power_group);
Kenji Kaneshige4d246e42009-05-13 12:15:38 +0900932 if (link_state->clkpm_capable)
Shaohua Li7d715a62008-02-25 09:46:41 +0800933 sysfs_remove_file_from_group(&pdev->dev.kobj,
934 &dev_attr_clk_ctl.attr, power_group);
935}
936#endif
937
938static int __init pcie_aspm_disable(char *str)
939{
Shaohua Lid6d38572008-07-23 10:32:42 +0800940 if (!strcmp(str, "off")) {
Matthew Garrett3c076352011-11-10 16:38:33 -0500941 aspm_policy = POLICY_DEFAULT;
Shaohua Lid6d38572008-07-23 10:32:42 +0800942 aspm_disabled = 1;
Rafael J. Wysocki8b8bae92011-03-05 13:21:51 +0100943 aspm_support_enabled = false;
Shaohua Lid6d38572008-07-23 10:32:42 +0800944 printk(KERN_INFO "PCIe ASPM is disabled\n");
945 } else if (!strcmp(str, "force")) {
946 aspm_force = 1;
Michael Witten8072ba12011-06-28 06:15:05 +0000947 printk(KERN_INFO "PCIe ASPM is forcibly enabled\n");
Shaohua Lid6d38572008-07-23 10:32:42 +0800948 }
Shaohua Li7d715a62008-02-25 09:46:41 +0800949 return 1;
950}
951
Shaohua Lid6d38572008-07-23 10:32:42 +0800952__setup("pcie_aspm=", pcie_aspm_disable);
Shaohua Li7d715a62008-02-25 09:46:41 +0800953
Shaohua Li5fde2442008-07-23 10:32:24 +0800954void pcie_no_aspm(void)
955{
Matthew Garrett3c076352011-11-10 16:38:33 -0500956 /*
957 * Disabling ASPM is intended to prevent the kernel from modifying
958 * existing hardware state, not to clear existing state. To that end:
959 * (a) set policy to POLICY_DEFAULT in order to avoid changing state
960 * (b) prevent userspace from changing policy
961 */
962 if (!aspm_force) {
963 aspm_policy = POLICY_DEFAULT;
Shaohua Lid6d38572008-07-23 10:32:42 +0800964 aspm_disabled = 1;
Matthew Garrett3c076352011-11-10 16:38:33 -0500965 }
Shaohua Li5fde2442008-07-23 10:32:24 +0800966}
967
Andrew Patterson3e1b1602008-11-10 15:30:55 -0700968/**
969 * pcie_aspm_enabled - is PCIe ASPM enabled?
970 *
971 * Returns true if ASPM has not been disabled by the command-line option
972 * pcie_aspm=off.
973 **/
974int pcie_aspm_enabled(void)
Shaohua Li7d715a62008-02-25 09:46:41 +0800975{
Andrew Patterson3e1b1602008-11-10 15:30:55 -0700976 return !aspm_disabled;
Shaohua Li7d715a62008-02-25 09:46:41 +0800977}
Andrew Patterson3e1b1602008-11-10 15:30:55 -0700978EXPORT_SYMBOL(pcie_aspm_enabled);
Shaohua Li7d715a62008-02-25 09:46:41 +0800979
Rafael J. Wysocki8b8bae92011-03-05 13:21:51 +0100980bool pcie_aspm_support_enabled(void)
981{
982 return aspm_support_enabled;
983}
984EXPORT_SYMBOL(pcie_aspm_support_enabled);