blob: 9eaaf95f65a2e28f3cbfd96381e116ee2a9b0756 [file] [log] [blame]
Shaohua Li7d715a62008-02-25 09:46:41 +08001/*
2 * File: drivers/pci/pcie/aspm.c
3 * Enabling PCIE link L0s/L1 state and Clock Power Management
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>
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 Kaneshigeb6c2e542009-05-13 12:14:58 +090029struct aspm_latency {
30 u32 l0s; /* L0s latency (nsec) */
31 u32 l1; /* L1 latency (nsec) */
Shaohua Li7d715a62008-02-25 09:46:41 +080032};
33
34struct pcie_link_state {
Kenji Kaneshige5cde89d2009-05-13 12:17:04 +090035 struct pci_dev *pdev; /* Upstream component of the Link */
36 struct pcie_link_state *parent; /* pointer to the parent Link state */
37 struct list_head sibling; /* node in link_list */
38 struct list_head children; /* list of child link states */
39 struct list_head link; /* node in parent's children list */
Shaohua Li7d715a62008-02-25 09:46:41 +080040
41 /* ASPM state */
Kenji Kaneshige80bfdbe2009-05-13 12:12:43 +090042 u32 aspm_support:2; /* Supported ASPM state */
43 u32 aspm_enabled:2; /* Enabled ASPM state */
44 u32 aspm_default:2; /* Default ASPM state by BIOS */
45
Kenji Kaneshige4d246e42009-05-13 12:15:38 +090046 /* Clock PM state */
47 u32 clkpm_capable:1; /* Clock PM capable? */
48 u32 clkpm_enabled:1; /* Current Clock PM state */
49 u32 clkpm_default:1; /* Default Clock PM state by BIOS */
50
Kenji Kaneshige5cde89d2009-05-13 12:17:04 +090051 u32 has_switch:1; /* Downstream has switches? */
52
Kenji Kaneshigeb6c2e542009-05-13 12:14:58 +090053 /* Latencies */
54 struct aspm_latency latency; /* Exit latency */
Shaohua Li7d715a62008-02-25 09:46:41 +080055 /*
Kenji Kaneshigeb6c2e542009-05-13 12:14:58 +090056 * Endpoint acceptable latencies. A pcie downstream port only
57 * has one slot under it, so at most there are 8 functions.
Shaohua Li7d715a62008-02-25 09:46:41 +080058 */
Kenji Kaneshigeb6c2e542009-05-13 12:14:58 +090059 struct aspm_latency acceptable[8];
Shaohua Li7d715a62008-02-25 09:46:41 +080060};
61
Shaohua Lid6d38572008-07-23 10:32:42 +080062static int aspm_disabled, aspm_force;
Shaohua Li7d715a62008-02-25 09:46:41 +080063static DEFINE_MUTEX(aspm_lock);
64static LIST_HEAD(link_list);
65
66#define POLICY_DEFAULT 0 /* BIOS default setting */
67#define POLICY_PERFORMANCE 1 /* high performance */
68#define POLICY_POWERSAVE 2 /* high power saving */
69static int aspm_policy;
70static const char *policy_str[] = {
71 [POLICY_DEFAULT] = "default",
72 [POLICY_PERFORMANCE] = "performance",
73 [POLICY_POWERSAVE] = "powersave"
74};
75
Andrew Patterson987a4c72009-01-05 16:21:04 -070076#define LINK_RETRAIN_TIMEOUT HZ
77
Kenji Kaneshige5aa63582009-05-13 12:17:44 +090078static int policy_to_aspm_state(struct pcie_link_state *link)
Shaohua Li7d715a62008-02-25 09:46:41 +080079{
Shaohua Li7d715a62008-02-25 09:46:41 +080080 switch (aspm_policy) {
81 case POLICY_PERFORMANCE:
82 /* Disable ASPM and Clock PM */
83 return 0;
84 case POLICY_POWERSAVE:
85 /* Enable ASPM L0s/L1 */
Kenji Kaneshige80bfdbe2009-05-13 12:12:43 +090086 return PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1;
Shaohua Li7d715a62008-02-25 09:46:41 +080087 case POLICY_DEFAULT:
Kenji Kaneshige5aa63582009-05-13 12:17:44 +090088 return link->aspm_default;
Shaohua Li7d715a62008-02-25 09:46:41 +080089 }
90 return 0;
91}
92
Kenji Kaneshige5aa63582009-05-13 12:17:44 +090093static int policy_to_clkpm_state(struct pcie_link_state *link)
Shaohua Li7d715a62008-02-25 09:46:41 +080094{
Shaohua Li7d715a62008-02-25 09:46:41 +080095 switch (aspm_policy) {
96 case POLICY_PERFORMANCE:
97 /* Disable ASPM and Clock PM */
98 return 0;
99 case POLICY_POWERSAVE:
100 /* Disable Clock PM */
101 return 1;
102 case POLICY_DEFAULT:
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900103 return link->clkpm_default;
Shaohua Li7d715a62008-02-25 09:46:41 +0800104 }
105 return 0;
106}
107
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900108static void pcie_set_clock_pm(struct pcie_link_state *link, int enable)
Shaohua Li7d715a62008-02-25 09:46:41 +0800109{
Shaohua Li7d715a62008-02-25 09:46:41 +0800110 int pos;
111 u16 reg16;
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900112 struct pci_dev *child;
113 struct pci_bus *linkbus = link->pdev->subordinate;
Shaohua Li7d715a62008-02-25 09:46:41 +0800114
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900115 list_for_each_entry(child, &linkbus->devices, bus_list) {
116 pos = pci_find_capability(child, PCI_CAP_ID_EXP);
Shaohua Li7d715a62008-02-25 09:46:41 +0800117 if (!pos)
118 return;
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900119 pci_read_config_word(child, pos + PCI_EXP_LNKCTL, &reg16);
Shaohua Li7d715a62008-02-25 09:46:41 +0800120 if (enable)
121 reg16 |= PCI_EXP_LNKCTL_CLKREQ_EN;
122 else
123 reg16 &= ~PCI_EXP_LNKCTL_CLKREQ_EN;
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900124 pci_write_config_word(child, pos + PCI_EXP_LNKCTL, reg16);
Shaohua Li7d715a62008-02-25 09:46:41 +0800125 }
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900126 link->clkpm_enabled = !!enable;
Shaohua Li7d715a62008-02-25 09:46:41 +0800127}
128
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900129static void pcie_check_clock_pm(struct pcie_link_state *link, int blacklist)
Shaohua Li7d715a62008-02-25 09:46:41 +0800130{
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900131 int pos, capable = 1, enabled = 1;
Shaohua Li7d715a62008-02-25 09:46:41 +0800132 u32 reg32;
133 u16 reg16;
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900134 struct pci_dev *child;
135 struct pci_bus *linkbus = link->pdev->subordinate;
Shaohua Li7d715a62008-02-25 09:46:41 +0800136
137 /* All functions should have the same cap and state, take the worst */
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900138 list_for_each_entry(child, &linkbus->devices, bus_list) {
139 pos = pci_find_capability(child, PCI_CAP_ID_EXP);
Shaohua Li7d715a62008-02-25 09:46:41 +0800140 if (!pos)
141 return;
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900142 pci_read_config_dword(child, pos + PCI_EXP_LNKCAP, &reg32);
Shaohua Li7d715a62008-02-25 09:46:41 +0800143 if (!(reg32 & PCI_EXP_LNKCAP_CLKPM)) {
144 capable = 0;
145 enabled = 0;
146 break;
147 }
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900148 pci_read_config_word(child, pos + PCI_EXP_LNKCTL, &reg16);
Shaohua Li7d715a62008-02-25 09:46:41 +0800149 if (!(reg16 & PCI_EXP_LNKCTL_CLKREQ_EN))
150 enabled = 0;
151 }
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900152 link->clkpm_enabled = enabled;
153 link->clkpm_default = enabled;
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800154 if (!blacklist) {
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900155 link->clkpm_capable = capable;
156 pcie_set_clock_pm(link, policy_to_clkpm_state(link));
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800157 } else {
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900158 link->clkpm_capable = 0;
159 pcie_set_clock_pm(link, 0);
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800160 }
161}
162
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900163static bool pcie_aspm_downstream_has_switch(struct pcie_link_state *link)
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800164{
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900165 struct pci_dev *child;
166 struct pci_bus *linkbus = link->pdev->subordinate;
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800167
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900168 list_for_each_entry(child, &linkbus->devices, bus_list) {
169 if (child->pcie_type == PCI_EXP_TYPE_UPSTREAM)
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800170 return true;
171 }
172 return false;
Shaohua Li7d715a62008-02-25 09:46:41 +0800173}
174
175/*
176 * pcie_aspm_configure_common_clock: check if the 2 ends of a link
177 * could use common clock. If they are, configure them to use the
178 * common clock. That will reduce the ASPM state exit latency.
179 */
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900180static void pcie_aspm_configure_common_clock(struct pcie_link_state *link)
Shaohua Li7d715a62008-02-25 09:46:41 +0800181{
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900182 int ppos, cpos, same_clock = 1;
183 u16 reg16, parent_reg, child_reg[8];
Thomas Renninger2a42d9d2008-12-09 13:05:09 +0100184 unsigned long start_jiffies;
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900185 struct pci_dev *child, *parent = link->pdev;
186 struct pci_bus *linkbus = parent->subordinate;
Shaohua Li7d715a62008-02-25 09:46:41 +0800187 /*
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900188 * All functions of a slot should have the same Slot Clock
Shaohua Li7d715a62008-02-25 09:46:41 +0800189 * Configuration, so just check one function
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900190 */
191 child = list_entry(linkbus->devices.next, struct pci_dev, bus_list);
192 BUG_ON(!child->is_pcie);
Shaohua Li7d715a62008-02-25 09:46:41 +0800193
194 /* Check downstream component if bit Slot Clock Configuration is 1 */
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900195 cpos = pci_find_capability(child, PCI_CAP_ID_EXP);
196 pci_read_config_word(child, cpos + PCI_EXP_LNKSTA, &reg16);
Shaohua Li7d715a62008-02-25 09:46:41 +0800197 if (!(reg16 & PCI_EXP_LNKSTA_SLC))
198 same_clock = 0;
199
200 /* Check upstream component if bit Slot Clock Configuration is 1 */
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900201 ppos = pci_find_capability(parent, PCI_CAP_ID_EXP);
202 pci_read_config_word(parent, ppos + PCI_EXP_LNKSTA, &reg16);
Shaohua Li7d715a62008-02-25 09:46:41 +0800203 if (!(reg16 & PCI_EXP_LNKSTA_SLC))
204 same_clock = 0;
205
206 /* Configure downstream component, all functions */
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900207 list_for_each_entry(child, &linkbus->devices, bus_list) {
208 cpos = pci_find_capability(child, PCI_CAP_ID_EXP);
209 pci_read_config_word(child, cpos + PCI_EXP_LNKCTL, &reg16);
210 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;
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900215 pci_write_config_word(child, cpos + PCI_EXP_LNKCTL, reg16);
Shaohua Li7d715a62008-02-25 09:46:41 +0800216 }
217
218 /* Configure upstream component */
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900219 pci_read_config_word(parent, ppos + 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;
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900225 pci_write_config_word(parent, ppos + 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;
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900229 pci_write_config_word(parent, ppos + 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 (;;) {
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900234 pci_read_config_word(parent, ppos + 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 */
245 dev_printk(KERN_ERR, &parent->dev,
246 "ASPM: Could not configure common clock\n");
247 list_for_each_entry(child, &linkbus->devices, bus_list) {
248 cpos = pci_find_capability(child, PCI_CAP_ID_EXP);
249 pci_write_config_word(child, cpos + PCI_EXP_LNKCTL,
250 child_reg[PCI_FUNC(child->devfn)]);
Thomas Renninger2a42d9d2008-12-09 13:05:09 +0100251 }
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900252 pci_write_config_word(parent, ppos + PCI_EXP_LNKCTL, parent_reg);
Shaohua Li7d715a62008-02-25 09:46:41 +0800253}
254
255/*
256 * calc_L0S_latency: Convert L0s latency encoding to ns
257 */
258static unsigned int calc_L0S_latency(unsigned int latency_encoding, int ac)
259{
260 unsigned int ns = 64;
261
262 if (latency_encoding == 0x7) {
263 if (ac)
264 ns = -1U;
265 else
266 ns = 5*1000; /* > 4us */
267 } else
268 ns *= (1 << latency_encoding);
269 return ns;
270}
271
272/*
273 * calc_L1_latency: Convert L1 latency encoding to ns
274 */
275static unsigned int calc_L1_latency(unsigned int latency_encoding, int ac)
276{
277 unsigned int ns = 1000;
278
279 if (latency_encoding == 0x7) {
280 if (ac)
281 ns = -1U;
282 else
283 ns = 65*1000; /* > 64us */
284 } else
285 ns *= (1 << latency_encoding);
286 return ns;
287}
288
289static void pcie_aspm_get_cap_device(struct pci_dev *pdev, u32 *state,
290 unsigned int *l0s, unsigned int *l1, unsigned int *enabled)
291{
292 int pos;
293 u16 reg16;
294 u32 reg32;
295 unsigned int latency;
296
Kenji Kaneshige80bfdbe2009-05-13 12:12:43 +0900297 *l0s = *l1 = *enabled = 0;
Shaohua Li7d715a62008-02-25 09:46:41 +0800298 pos = pci_find_capability(pdev, PCI_CAP_ID_EXP);
299 pci_read_config_dword(pdev, pos + PCI_EXP_LNKCAP, &reg32);
300 *state = (reg32 & PCI_EXP_LNKCAP_ASPMS) >> 10;
301 if (*state != PCIE_LINK_STATE_L0S &&
302 *state != (PCIE_LINK_STATE_L1|PCIE_LINK_STATE_L0S))
303 *state = 0;
304 if (*state == 0)
305 return;
306
307 latency = (reg32 & PCI_EXP_LNKCAP_L0SEL) >> 12;
308 *l0s = calc_L0S_latency(latency, 0);
309 if (*state & PCIE_LINK_STATE_L1) {
310 latency = (reg32 & PCI_EXP_LNKCAP_L1EL) >> 15;
311 *l1 = calc_L1_latency(latency, 0);
312 }
313 pci_read_config_word(pdev, pos + PCI_EXP_LNKCTL, &reg16);
314 *enabled = reg16 & (PCIE_LINK_STATE_L0S|PCIE_LINK_STATE_L1);
315}
316
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900317static void pcie_aspm_cap_init(struct pcie_link_state *link)
Shaohua Li7d715a62008-02-25 09:46:41 +0800318{
Kenji Kaneshige80bfdbe2009-05-13 12:12:43 +0900319 u32 support, l0s, l1, enabled;
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900320 struct pci_dev *child, *parent = link->pdev;
321 struct pci_bus *linkbus = parent->subordinate;
Shaohua Li7d715a62008-02-25 09:46:41 +0800322
323 /* upstream component states */
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900324 pcie_aspm_get_cap_device(parent, &support, &l0s, &l1, &enabled);
325 link->aspm_support = support;
326 link->latency.l0s = l0s;
327 link->latency.l1 = l1;
328 link->aspm_enabled = enabled;
Kenji Kaneshige80bfdbe2009-05-13 12:12:43 +0900329
Shaohua Li7d715a62008-02-25 09:46:41 +0800330 /* downstream component states, all functions have the same setting */
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900331 child = list_entry(linkbus->devices.next, struct pci_dev, bus_list);
332 pcie_aspm_get_cap_device(child, &support, &l0s, &l1, &enabled);
333 link->aspm_support &= support;
334 link->latency.l0s = max_t(u32, link->latency.l0s, l0s);
335 link->latency.l1 = max_t(u32, link->latency.l1, l1);
Kenji Kaneshige80bfdbe2009-05-13 12:12:43 +0900336
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900337 if (!link->aspm_support)
Shaohua Li7d715a62008-02-25 09:46:41 +0800338 return;
Kenji Kaneshige80bfdbe2009-05-13 12:12:43 +0900339
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900340 link->aspm_enabled &= link->aspm_support;
341 link->aspm_default = link->aspm_enabled;
Shaohua Li7d715a62008-02-25 09:46:41 +0800342
343 /* ENDPOINT states*/
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900344 list_for_each_entry(child, &linkbus->devices, bus_list) {
Shaohua Li7d715a62008-02-25 09:46:41 +0800345 int pos;
346 u32 reg32;
347 unsigned int latency;
Kenji Kaneshigeb6c2e542009-05-13 12:14:58 +0900348 struct aspm_latency *acceptable =
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900349 &link->acceptable[PCI_FUNC(child->devfn)];
Shaohua Li7d715a62008-02-25 09:46:41 +0800350
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900351 if (child->pcie_type != PCI_EXP_TYPE_ENDPOINT &&
352 child->pcie_type != PCI_EXP_TYPE_LEG_END)
Shaohua Li7d715a62008-02-25 09:46:41 +0800353 continue;
354
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900355 pos = pci_find_capability(child, PCI_CAP_ID_EXP);
356 pci_read_config_dword(child, pos + PCI_EXP_DEVCAP, &reg32);
Shaohua Li7d715a62008-02-25 09:46:41 +0800357 latency = (reg32 & PCI_EXP_DEVCAP_L0S) >> 6;
358 latency = calc_L0S_latency(latency, 1);
Kenji Kaneshigeb6c2e542009-05-13 12:14:58 +0900359 acceptable->l0s = latency;
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900360 if (link->aspm_support & PCIE_LINK_STATE_L1) {
Shaohua Li7d715a62008-02-25 09:46:41 +0800361 latency = (reg32 & PCI_EXP_DEVCAP_L1) >> 9;
362 latency = calc_L1_latency(latency, 1);
Kenji Kaneshigeb6c2e542009-05-13 12:14:58 +0900363 acceptable->l1 = latency;
Shaohua Li7d715a62008-02-25 09:46:41 +0800364 }
365 }
366}
367
368static unsigned int __pcie_aspm_check_state_one(struct pci_dev *pdev,
369 unsigned int state)
370{
371 struct pci_dev *parent_dev, *tmp_dev;
Kenji Kaneshigeb6c2e542009-05-13 12:14:58 +0900372 unsigned int l1_latency = 0;
Shaohua Li7d715a62008-02-25 09:46:41 +0800373 struct pcie_link_state *link_state;
Kenji Kaneshigeb6c2e542009-05-13 12:14:58 +0900374 struct aspm_latency *acceptable;
Shaohua Li7d715a62008-02-25 09:46:41 +0800375
376 parent_dev = pdev->bus->self;
377 link_state = parent_dev->link_state;
Kenji Kaneshige80bfdbe2009-05-13 12:12:43 +0900378 state &= link_state->aspm_support;
Shaohua Li7d715a62008-02-25 09:46:41 +0800379 if (state == 0)
380 return 0;
Kenji Kaneshigeb6c2e542009-05-13 12:14:58 +0900381 acceptable = &link_state->acceptable[PCI_FUNC(pdev->devfn)];
Shaohua Li7d715a62008-02-25 09:46:41 +0800382
383 /*
384 * Check latency for endpoint device.
385 * TBD: The latency from the endpoint to root complex vary per
386 * switch's upstream link state above the device. Here we just do a
387 * simple check which assumes all links above the device can be in L1
388 * state, that is we just consider the worst case. If switch's upstream
389 * link can't be put into L0S/L1, then our check is too strictly.
390 */
391 tmp_dev = pdev;
392 while (state & (PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1)) {
393 parent_dev = tmp_dev->bus->self;
394 link_state = parent_dev->link_state;
Kenji Kaneshigeb6c2e542009-05-13 12:14:58 +0900395 if ((state & PCIE_LINK_STATE_L0S) &&
396 (link_state->latency.l0s > acceptable->l0s))
397 state &= ~PCIE_LINK_STATE_L0S;
398
399 if ((state & PCIE_LINK_STATE_L1) &&
400 (link_state->latency.l1 + l1_latency > acceptable->l1))
401 state &= ~PCIE_LINK_STATE_L1;
402
Shaohua Li7d715a62008-02-25 09:46:41 +0800403 if (!parent_dev->bus->self) /* parent_dev is a root port */
404 break;
405 else {
406 /*
407 * parent_dev is the downstream port of a switch, make
408 * tmp_dev the upstream port of the switch
409 */
410 tmp_dev = parent_dev->bus->self;
411 /*
412 * every switch on the path to root complex need 1 more
413 * microsecond for L1. Spec doesn't mention L0S.
414 */
415 if (state & PCIE_LINK_STATE_L1)
416 l1_latency += 1000;
417 }
418 }
419 return state;
420}
421
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900422static u32 pcie_aspm_check_state(struct pcie_link_state *link, u32 state)
Shaohua Li7d715a62008-02-25 09:46:41 +0800423{
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900424 pci_power_t power_state;
425 struct pci_dev *child;
426 struct pci_bus *linkbus = link->pdev->subordinate;
Shaohua Li7d715a62008-02-25 09:46:41 +0800427
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800428 /* If no child, ignore the link */
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900429 if (list_empty(&linkbus->devices))
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800430 return state;
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900431
432 list_for_each_entry(child, &linkbus->devices, bus_list) {
433 /*
434 * If downstream component of a link is pci bridge, we
435 * disable ASPM for now for the link
436 */
437 if (child->pcie_type == PCI_EXP_TYPE_PCI_BRIDGE)
438 return 0;
439
440 if ((child->pcie_type != PCI_EXP_TYPE_ENDPOINT &&
441 child->pcie_type != PCI_EXP_TYPE_LEG_END))
Shaohua Li7d715a62008-02-25 09:46:41 +0800442 continue;
443 /* Device not in D0 doesn't need check latency */
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900444 power_state = child->current_state;
445 if (power_state == PCI_D1 || power_state == PCI_D2 ||
446 power_state == PCI_D3hot || power_state == PCI_D3cold)
Shaohua Li7d715a62008-02-25 09:46:41 +0800447 continue;
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900448 state = __pcie_aspm_check_state_one(child, state);
Shaohua Li7d715a62008-02-25 09:46:41 +0800449 }
450 return state;
451}
452
453static void __pcie_aspm_config_one_dev(struct pci_dev *pdev, unsigned int state)
454{
455 u16 reg16;
456 int pos = pci_find_capability(pdev, PCI_CAP_ID_EXP);
457
458 pci_read_config_word(pdev, pos + PCI_EXP_LNKCTL, &reg16);
459 reg16 &= ~0x3;
460 reg16 |= state;
461 pci_write_config_word(pdev, pos + PCI_EXP_LNKCTL, reg16);
462}
463
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900464static void __pcie_aspm_config_link(struct pcie_link_state *link, u32 state)
Shaohua Li7d715a62008-02-25 09:46:41 +0800465{
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900466 struct pci_dev *child, *parent = link->pdev;
467 struct pci_bus *linkbus = parent->subordinate;
Shaohua Li7d715a62008-02-25 09:46:41 +0800468
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800469 /* If no child, disable the link */
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900470 if (list_empty(&linkbus->devices))
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800471 state = 0;
Shaohua Li7d715a62008-02-25 09:46:41 +0800472 /*
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900473 * If the downstream component has pci bridge function, don't
474 * do ASPM now.
Shaohua Li7d715a62008-02-25 09:46:41 +0800475 */
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900476 list_for_each_entry(child, &linkbus->devices, bus_list) {
477 if (child->pcie_type == PCI_EXP_TYPE_PCI_BRIDGE)
478 return;
Shaohua Li7d715a62008-02-25 09:46:41 +0800479 }
Shaohua Li7d715a62008-02-25 09:46:41 +0800480 /*
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900481 * Spec 2.0 suggests all functions should be configured the
482 * same setting for ASPM. Enabling ASPM L1 should be done in
483 * upstream component first and then downstream, and vice
484 * versa for disabling ASPM L1. Spec doesn't mention L0S.
Shaohua Li7d715a62008-02-25 09:46:41 +0800485 */
486 if (state & PCIE_LINK_STATE_L1)
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900487 __pcie_aspm_config_one_dev(parent, state);
Shaohua Li7d715a62008-02-25 09:46:41 +0800488
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900489 list_for_each_entry(child, &linkbus->devices, bus_list)
490 __pcie_aspm_config_one_dev(child, state);
Shaohua Li7d715a62008-02-25 09:46:41 +0800491
492 if (!(state & PCIE_LINK_STATE_L1))
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900493 __pcie_aspm_config_one_dev(parent, state);
Shaohua Li7d715a62008-02-25 09:46:41 +0800494
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900495 link->aspm_enabled = state;
Shaohua Li7d715a62008-02-25 09:46:41 +0800496}
497
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800498static struct pcie_link_state *get_root_port_link(struct pcie_link_state *link)
499{
500 struct pcie_link_state *root_port_link = link;
501 while (root_port_link->parent)
502 root_port_link = root_port_link->parent;
503 return root_port_link;
504}
505
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900506/* Check the whole hierarchy, and configure each link in the hierarchy */
507static void __pcie_aspm_configure_link_state(struct pcie_link_state *link,
508 u32 state)
Shaohua Li7d715a62008-02-25 09:46:41 +0800509{
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900510 struct pcie_link_state *leaf, *root = get_root_port_link(link);
Shaohua Li7d715a62008-02-25 09:46:41 +0800511
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900512 state &= (PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1);
Shaohua Li7d715a62008-02-25 09:46:41 +0800513
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900514 /* Check all links who have specific root port link */
Kenji Kaneshigedc64cd12009-05-13 12:11:33 +0900515 list_for_each_entry(leaf, &link_list, sibling) {
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800516 if (!list_empty(&leaf->children) ||
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900517 get_root_port_link(leaf) != root)
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800518 continue;
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900519 state = pcie_aspm_check_state(leaf, state);
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800520 }
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900521 /* Check root port link too in case it hasn't children */
522 state = pcie_aspm_check_state(root, state);
523 if (link->aspm_enabled == state)
Shaohua Li7d715a62008-02-25 09:46:41 +0800524 return;
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800525 /*
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900526 * We must change the hierarchy. See comments in
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800527 * __pcie_aspm_config_link for the order
528 **/
529 if (state & PCIE_LINK_STATE_L1) {
Kenji Kaneshigedc64cd12009-05-13 12:11:33 +0900530 list_for_each_entry(leaf, &link_list, sibling) {
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900531 if (get_root_port_link(leaf) == root)
532 __pcie_aspm_config_link(leaf, state);
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800533 }
534 } else {
Kenji Kaneshigedc64cd12009-05-13 12:11:33 +0900535 list_for_each_entry_reverse(leaf, &link_list, sibling) {
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900536 if (get_root_port_link(leaf) == root)
537 __pcie_aspm_config_link(leaf, state);
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800538 }
539 }
Shaohua Li7d715a62008-02-25 09:46:41 +0800540}
541
542/*
543 * pcie_aspm_configure_link_state: enable/disable PCI express link state
544 * @pdev: the root port or switch downstream port
545 */
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900546static void pcie_aspm_configure_link_state(struct pcie_link_state *link,
547 u32 state)
Shaohua Li7d715a62008-02-25 09:46:41 +0800548{
549 down_read(&pci_bus_sem);
550 mutex_lock(&aspm_lock);
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900551 __pcie_aspm_configure_link_state(link, state);
Shaohua Li7d715a62008-02-25 09:46:41 +0800552 mutex_unlock(&aspm_lock);
553 up_read(&pci_bus_sem);
554}
555
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900556static void free_link_state(struct pcie_link_state *link)
Shaohua Li7d715a62008-02-25 09:46:41 +0800557{
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900558 link->pdev->link_state = NULL;
559 kfree(link);
Shaohua Li7d715a62008-02-25 09:46:41 +0800560}
561
Shaohua Liddc97532008-05-21 16:58:40 +0800562static int pcie_aspm_sanity_check(struct pci_dev *pdev)
563{
564 struct pci_dev *child_dev;
565 int child_pos;
Shaohua Li149e1632008-07-23 10:32:31 +0800566 u32 reg32;
Shaohua Liddc97532008-05-21 16:58:40 +0800567
568 /*
569 * Some functions in a slot might not all be PCIE functions, very
570 * strange. Disable ASPM for the whole slot
571 */
572 list_for_each_entry(child_dev, &pdev->subordinate->devices, bus_list) {
573 child_pos = pci_find_capability(child_dev, PCI_CAP_ID_EXP);
574 if (!child_pos)
575 return -EINVAL;
Shaohua Li149e1632008-07-23 10:32:31 +0800576
577 /*
578 * Disable ASPM for pre-1.1 PCIe device, we follow MS to use
579 * RBER bit to determine if a function is 1.1 version device
580 */
581 pci_read_config_dword(child_dev, child_pos + PCI_EXP_DEVCAP,
582 &reg32);
Sitsofe Wheelere1f4f592008-09-16 14:27:13 +0100583 if (!(reg32 & PCI_EXP_DEVCAP_RBER) && !aspm_force) {
Vincent Legollf393d9b2008-10-12 12:26:12 +0200584 dev_printk(KERN_INFO, &child_dev->dev, "disabling ASPM"
585 " on pre-1.1 PCIe device. You can enable it"
586 " with 'pcie_aspm=force'\n");
Shaohua Li149e1632008-07-23 10:32:31 +0800587 return -EINVAL;
588 }
Shaohua Liddc97532008-05-21 16:58:40 +0800589 }
590 return 0;
591}
592
Shaohua Li7d715a62008-02-25 09:46:41 +0800593/*
594 * pcie_aspm_init_link_state: Initiate PCI express link state.
595 * It is called after the pcie and its children devices are scaned.
596 * @pdev: the root port or switch downstream port
597 */
598void pcie_aspm_init_link_state(struct pci_dev *pdev)
599{
600 unsigned int state;
601 struct pcie_link_state *link_state;
602 int error = 0;
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800603 int blacklist;
Shaohua Li7d715a62008-02-25 09:46:41 +0800604
605 if (aspm_disabled || !pdev->is_pcie || pdev->link_state)
606 return;
607 if (pdev->pcie_type != PCI_EXP_TYPE_ROOT_PORT &&
608 pdev->pcie_type != PCI_EXP_TYPE_DOWNSTREAM)
609 return;
Shaohua Li8e822df2009-06-08 09:27:25 +0800610 /* VIA has a strange chipset, root port is under a bridge */
611 if (pdev->pcie_type == PCI_EXP_TYPE_ROOT_PORT &&
612 pdev->bus->self)
613 return;
Shaohua Li7d715a62008-02-25 09:46:41 +0800614 down_read(&pci_bus_sem);
615 if (list_empty(&pdev->subordinate->devices))
616 goto out;
617
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800618 blacklist = !!pcie_aspm_sanity_check(pdev);
Shaohua Liddc97532008-05-21 16:58:40 +0800619
Shaohua Li7d715a62008-02-25 09:46:41 +0800620 mutex_lock(&aspm_lock);
621
622 link_state = kzalloc(sizeof(*link_state), GFP_KERNEL);
623 if (!link_state)
624 goto unlock_out;
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800625
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800626 INIT_LIST_HEAD(&link_state->children);
627 INIT_LIST_HEAD(&link_state->link);
628 if (pdev->bus->self) {/* this is a switch */
629 struct pcie_link_state *parent_link_state;
630
631 parent_link_state = pdev->bus->parent->self->link_state;
632 if (!parent_link_state) {
633 kfree(link_state);
634 goto unlock_out;
635 }
636 list_add(&link_state->link, &parent_link_state->children);
637 link_state->parent = parent_link_state;
638 }
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900639 link_state->pdev = pdev;
640 link_state->has_switch = pcie_aspm_downstream_has_switch(link_state);
Shaohua Li7d715a62008-02-25 09:46:41 +0800641 pdev->link_state = link_state;
642
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800643 if (!blacklist) {
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900644 pcie_aspm_configure_common_clock(link_state);
645 pcie_aspm_cap_init(link_state);
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800646 } else {
Kenji Kaneshige80bfdbe2009-05-13 12:12:43 +0900647 link_state->aspm_enabled =
648 (PCIE_LINK_STATE_L0S | PCIE_LINK_STATE_L1);
649 link_state->aspm_default = 0;
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800650 /* Set support state to 0, so we will disable ASPM later */
Kenji Kaneshige80bfdbe2009-05-13 12:12:43 +0900651 link_state->aspm_support = 0;
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800652 }
Shaohua Li7d715a62008-02-25 09:46:41 +0800653
Kenji Kaneshigedc64cd12009-05-13 12:11:33 +0900654 list_add(&link_state->sibling, &link_list);
Shaohua Li7d715a62008-02-25 09:46:41 +0800655
Kenji Kaneshige5cde89d2009-05-13 12:17:04 +0900656 if (link_state->has_switch) {
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800657 /*
658 * If link has switch, delay the link config. The leaf link
659 * initialization will config the whole hierarchy. but we must
660 * make sure BIOS doesn't set unsupported link state
661 **/
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900662 state = pcie_aspm_check_state(link_state,
663 link_state->aspm_default);
664 __pcie_aspm_config_link(link_state, state);
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800665 } else
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900666 __pcie_aspm_configure_link_state(link_state,
667 policy_to_aspm_state(link_state));
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800668
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900669 pcie_check_clock_pm(link_state, blacklist);
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800670
Shaohua Li7d715a62008-02-25 09:46:41 +0800671unlock_out:
672 if (error)
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900673 free_link_state(link_state);
Shaohua Li7d715a62008-02-25 09:46:41 +0800674 mutex_unlock(&aspm_lock);
675out:
676 up_read(&pci_bus_sem);
677}
678
679/* @pdev: the endpoint device */
680void pcie_aspm_exit_link_state(struct pci_dev *pdev)
681{
682 struct pci_dev *parent = pdev->bus->self;
683 struct pcie_link_state *link_state = parent->link_state;
684
685 if (aspm_disabled || !pdev->is_pcie || !parent || !link_state)
686 return;
687 if (parent->pcie_type != PCI_EXP_TYPE_ROOT_PORT &&
688 parent->pcie_type != PCI_EXP_TYPE_DOWNSTREAM)
689 return;
690 down_read(&pci_bus_sem);
691 mutex_lock(&aspm_lock);
692
693 /*
694 * All PCIe functions are in one slot, remove one function will remove
Alex Chiang3419c752009-01-28 14:59:18 -0700695 * the whole slot, so just wait until we are the last function left.
Shaohua Li7d715a62008-02-25 09:46:41 +0800696 */
Alex Chiang3419c752009-01-28 14:59:18 -0700697 if (!list_is_last(&pdev->bus_list, &parent->subordinate->devices))
Shaohua Li7d715a62008-02-25 09:46:41 +0800698 goto out;
699
700 /* All functions are removed, so just disable ASPM for the link */
701 __pcie_aspm_config_one_dev(parent, 0);
Kenji Kaneshigedc64cd12009-05-13 12:11:33 +0900702 list_del(&link_state->sibling);
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800703 list_del(&link_state->link);
Shaohua Li7d715a62008-02-25 09:46:41 +0800704 /* Clock PM is for endpoint device */
705
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900706 free_link_state(link_state);
Shaohua Li7d715a62008-02-25 09:46:41 +0800707out:
708 mutex_unlock(&aspm_lock);
709 up_read(&pci_bus_sem);
710}
711
712/* @pdev: the root port or switch downstream port */
713void pcie_aspm_pm_state_change(struct pci_dev *pdev)
714{
715 struct pcie_link_state *link_state = pdev->link_state;
716
717 if (aspm_disabled || !pdev->is_pcie || !pdev->link_state)
718 return;
719 if (pdev->pcie_type != PCI_EXP_TYPE_ROOT_PORT &&
720 pdev->pcie_type != PCI_EXP_TYPE_DOWNSTREAM)
721 return;
722 /*
723 * devices changed PM state, we should recheck if latency meets all
724 * functions' requirement
725 */
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900726 pcie_aspm_configure_link_state(link_state, link_state->aspm_enabled);
Shaohua Li7d715a62008-02-25 09:46:41 +0800727}
728
729/*
730 * pci_disable_link_state - disable pci device's link state, so the link will
731 * never enter specific states
732 */
733void pci_disable_link_state(struct pci_dev *pdev, int state)
734{
735 struct pci_dev *parent = pdev->bus->self;
736 struct pcie_link_state *link_state;
737
738 if (aspm_disabled || !pdev->is_pcie)
739 return;
740 if (pdev->pcie_type == PCI_EXP_TYPE_ROOT_PORT ||
741 pdev->pcie_type == PCI_EXP_TYPE_DOWNSTREAM)
742 parent = pdev;
743 if (!parent || !parent->link_state)
744 return;
745
746 down_read(&pci_bus_sem);
747 mutex_lock(&aspm_lock);
748 link_state = parent->link_state;
Kenji Kaneshige80bfdbe2009-05-13 12:12:43 +0900749 link_state->aspm_support &= ~state;
Shaohua Li7d715a62008-02-25 09:46:41 +0800750 if (state & PCIE_LINK_STATE_CLKPM)
Kenji Kaneshige4d246e42009-05-13 12:15:38 +0900751 link_state->clkpm_capable = 0;
Shaohua Li7d715a62008-02-25 09:46:41 +0800752
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900753 __pcie_aspm_configure_link_state(link_state, link_state->aspm_enabled);
Kenji Kaneshige4d246e42009-05-13 12:15:38 +0900754 if (!link_state->clkpm_capable && link_state->clkpm_enabled)
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900755 pcie_set_clock_pm(link_state, 0);
Shaohua Li7d715a62008-02-25 09:46:41 +0800756 mutex_unlock(&aspm_lock);
757 up_read(&pci_bus_sem);
758}
759EXPORT_SYMBOL(pci_disable_link_state);
760
761static int pcie_aspm_set_policy(const char *val, struct kernel_param *kp)
762{
763 int i;
Shaohua Li7d715a62008-02-25 09:46:41 +0800764 struct pcie_link_state *link_state;
765
766 for (i = 0; i < ARRAY_SIZE(policy_str); i++)
767 if (!strncmp(val, policy_str[i], strlen(policy_str[i])))
768 break;
769 if (i >= ARRAY_SIZE(policy_str))
770 return -EINVAL;
771 if (i == aspm_policy)
772 return 0;
773
774 down_read(&pci_bus_sem);
775 mutex_lock(&aspm_lock);
776 aspm_policy = i;
Kenji Kaneshigedc64cd12009-05-13 12:11:33 +0900777 list_for_each_entry(link_state, &link_list, sibling) {
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900778 __pcie_aspm_configure_link_state(link_state,
779 policy_to_aspm_state(link_state));
Kenji Kaneshige4d246e42009-05-13 12:15:38 +0900780 if (link_state->clkpm_capable &&
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900781 link_state->clkpm_enabled != policy_to_clkpm_state(link_state))
782 pcie_set_clock_pm(link_state,
783 policy_to_clkpm_state(link_state));
Shaohua Li7d715a62008-02-25 09:46:41 +0800784
785 }
786 mutex_unlock(&aspm_lock);
787 up_read(&pci_bus_sem);
788 return 0;
789}
790
791static int pcie_aspm_get_policy(char *buffer, struct kernel_param *kp)
792{
793 int i, cnt = 0;
794 for (i = 0; i < ARRAY_SIZE(policy_str); i++)
795 if (i == aspm_policy)
796 cnt += sprintf(buffer + cnt, "[%s] ", policy_str[i]);
797 else
798 cnt += sprintf(buffer + cnt, "%s ", policy_str[i]);
799 return cnt;
800}
801
802module_param_call(policy, pcie_aspm_set_policy, pcie_aspm_get_policy,
803 NULL, 0644);
804
805#ifdef CONFIG_PCIEASPM_DEBUG
806static ssize_t link_state_show(struct device *dev,
807 struct device_attribute *attr,
808 char *buf)
809{
810 struct pci_dev *pci_device = to_pci_dev(dev);
811 struct pcie_link_state *link_state = pci_device->link_state;
812
Kenji Kaneshige80bfdbe2009-05-13 12:12:43 +0900813 return sprintf(buf, "%d\n", link_state->aspm_enabled);
Shaohua Li7d715a62008-02-25 09:46:41 +0800814}
815
816static ssize_t link_state_store(struct device *dev,
817 struct device_attribute *attr,
818 const char *buf,
819 size_t n)
820{
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900821 struct pci_dev *pdev = to_pci_dev(dev);
Shaohua Li7d715a62008-02-25 09:46:41 +0800822 int state;
823
824 if (n < 1)
825 return -EINVAL;
826 state = buf[0]-'0';
827 if (state >= 0 && state <= 3) {
828 /* setup link aspm state */
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900829 pcie_aspm_configure_link_state(pdev->link_state, state);
Shaohua Li7d715a62008-02-25 09:46:41 +0800830 return n;
831 }
832
833 return -EINVAL;
834}
835
836static ssize_t clk_ctl_show(struct device *dev,
837 struct device_attribute *attr,
838 char *buf)
839{
840 struct pci_dev *pci_device = to_pci_dev(dev);
841 struct pcie_link_state *link_state = pci_device->link_state;
842
Kenji Kaneshige4d246e42009-05-13 12:15:38 +0900843 return sprintf(buf, "%d\n", link_state->clkpm_enabled);
Shaohua Li7d715a62008-02-25 09:46:41 +0800844}
845
846static ssize_t clk_ctl_store(struct device *dev,
847 struct device_attribute *attr,
848 const char *buf,
849 size_t n)
850{
851 struct pci_dev *pci_device = to_pci_dev(dev);
852 int state;
853
854 if (n < 1)
855 return -EINVAL;
856 state = buf[0]-'0';
857
858 down_read(&pci_bus_sem);
859 mutex_lock(&aspm_lock);
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900860 pcie_set_clock_pm(pci_device->link_state, !!state);
Shaohua Li7d715a62008-02-25 09:46:41 +0800861 mutex_unlock(&aspm_lock);
862 up_read(&pci_bus_sem);
863
864 return n;
865}
866
867static DEVICE_ATTR(link_state, 0644, link_state_show, link_state_store);
868static DEVICE_ATTR(clk_ctl, 0644, clk_ctl_show, clk_ctl_store);
869
870static char power_group[] = "power";
871void pcie_aspm_create_sysfs_dev_files(struct pci_dev *pdev)
872{
873 struct pcie_link_state *link_state = pdev->link_state;
874
875 if (!pdev->is_pcie || (pdev->pcie_type != PCI_EXP_TYPE_ROOT_PORT &&
876 pdev->pcie_type != PCI_EXP_TYPE_DOWNSTREAM) || !link_state)
877 return;
878
Kenji Kaneshige80bfdbe2009-05-13 12:12:43 +0900879 if (link_state->aspm_support)
Shaohua Li7d715a62008-02-25 09:46:41 +0800880 sysfs_add_file_to_group(&pdev->dev.kobj,
881 &dev_attr_link_state.attr, power_group);
Kenji Kaneshige4d246e42009-05-13 12:15:38 +0900882 if (link_state->clkpm_capable)
Shaohua Li7d715a62008-02-25 09:46:41 +0800883 sysfs_add_file_to_group(&pdev->dev.kobj,
884 &dev_attr_clk_ctl.attr, power_group);
885}
886
887void pcie_aspm_remove_sysfs_dev_files(struct pci_dev *pdev)
888{
889 struct pcie_link_state *link_state = pdev->link_state;
890
891 if (!pdev->is_pcie || (pdev->pcie_type != PCI_EXP_TYPE_ROOT_PORT &&
892 pdev->pcie_type != PCI_EXP_TYPE_DOWNSTREAM) || !link_state)
893 return;
894
Kenji Kaneshige80bfdbe2009-05-13 12:12:43 +0900895 if (link_state->aspm_support)
Shaohua Li7d715a62008-02-25 09:46:41 +0800896 sysfs_remove_file_from_group(&pdev->dev.kobj,
897 &dev_attr_link_state.attr, power_group);
Kenji Kaneshige4d246e42009-05-13 12:15:38 +0900898 if (link_state->clkpm_capable)
Shaohua Li7d715a62008-02-25 09:46:41 +0800899 sysfs_remove_file_from_group(&pdev->dev.kobj,
900 &dev_attr_clk_ctl.attr, power_group);
901}
902#endif
903
904static int __init pcie_aspm_disable(char *str)
905{
Shaohua Lid6d38572008-07-23 10:32:42 +0800906 if (!strcmp(str, "off")) {
907 aspm_disabled = 1;
908 printk(KERN_INFO "PCIe ASPM is disabled\n");
909 } else if (!strcmp(str, "force")) {
910 aspm_force = 1;
911 printk(KERN_INFO "PCIe ASPM is forcedly enabled\n");
912 }
Shaohua Li7d715a62008-02-25 09:46:41 +0800913 return 1;
914}
915
Shaohua Lid6d38572008-07-23 10:32:42 +0800916__setup("pcie_aspm=", pcie_aspm_disable);
Shaohua Li7d715a62008-02-25 09:46:41 +0800917
Shaohua Li5fde2442008-07-23 10:32:24 +0800918void pcie_no_aspm(void)
919{
Shaohua Lid6d38572008-07-23 10:32:42 +0800920 if (!aspm_force)
921 aspm_disabled = 1;
Shaohua Li5fde2442008-07-23 10:32:24 +0800922}
923
Andrew Patterson3e1b1602008-11-10 15:30:55 -0700924/**
925 * pcie_aspm_enabled - is PCIe ASPM enabled?
926 *
927 * Returns true if ASPM has not been disabled by the command-line option
928 * pcie_aspm=off.
929 **/
930int pcie_aspm_enabled(void)
Shaohua Li7d715a62008-02-25 09:46:41 +0800931{
Andrew Patterson3e1b1602008-11-10 15:30:55 -0700932 return !aspm_disabled;
Shaohua Li7d715a62008-02-25 09:46:41 +0800933}
Andrew Patterson3e1b1602008-11-10 15:30:55 -0700934EXPORT_SYMBOL(pcie_aspm_enabled);
Shaohua Li7d715a62008-02-25 09:46:41 +0800935