blob: 5eae5f35dcc7bc27ac4487066fff3abe3ac203f1 [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 */
Heiner Kallweit947a17f2019-10-05 14:03:57 +020060 u32 clkpm_disable:1; /* Clock PM disabled */
Kenji Kaneshige4d246e42009-05-13 12:15:38 +090061
Kenji Kaneshigeac180182009-08-19 11:02:13 +090062 /* Exit latencies */
63 struct aspm_latency latency_up; /* Upstream direction exit latency */
64 struct aspm_latency latency_dw; /* Downstream direction exit latency */
Shaohua Li7d715a62008-02-25 09:46:41 +080065 /*
Kenji Kaneshigeb6c2e542009-05-13 12:14:58 +090066 * Endpoint acceptable latencies. A pcie downstream port only
67 * has one slot under it, so at most there are 8 functions.
Shaohua Li7d715a62008-02-25 09:46:41 +080068 */
Kenji Kaneshigeb6c2e542009-05-13 12:14:58 +090069 struct aspm_latency acceptable[8];
Shaohua Li7d715a62008-02-25 09:46:41 +080070};
71
Matthew Garrett3c076352011-11-10 16:38:33 -050072static int aspm_disabled, aspm_force;
Rafael J. Wysocki8b8bae92011-03-05 13:21:51 +010073static bool aspm_support_enabled = true;
Shaohua Li7d715a62008-02-25 09:46:41 +080074static DEFINE_MUTEX(aspm_lock);
75static LIST_HEAD(link_list);
76
77#define POLICY_DEFAULT 0 /* BIOS default setting */
78#define POLICY_PERFORMANCE 1 /* high performance */
79#define POLICY_POWERSAVE 2 /* high power saving */
Matthew Garrettad71c962012-02-03 10:18:13 -050080
81#ifdef CONFIG_PCIEASPM_PERFORMANCE
82static int aspm_policy = POLICY_PERFORMANCE;
83#elif defined CONFIG_PCIEASPM_POWERSAVE
84static int aspm_policy = POLICY_POWERSAVE;
85#else
Shaohua Li7d715a62008-02-25 09:46:41 +080086static int aspm_policy;
Matthew Garrettad71c962012-02-03 10:18:13 -050087#endif
88
Shaohua Li7d715a62008-02-25 09:46:41 +080089static const char *policy_str[] = {
90 [POLICY_DEFAULT] = "default",
91 [POLICY_PERFORMANCE] = "performance",
92 [POLICY_POWERSAVE] = "powersave"
93};
94
Andrew Patterson987a4c72009-01-05 16:21:04 -070095#define LINK_RETRAIN_TIMEOUT HZ
96
Kenji Kaneshige5aa63582009-05-13 12:17:44 +090097static int policy_to_aspm_state(struct pcie_link_state *link)
Shaohua Li7d715a62008-02-25 09:46:41 +080098{
Shaohua Li7d715a62008-02-25 09:46:41 +080099 switch (aspm_policy) {
100 case POLICY_PERFORMANCE:
101 /* Disable ASPM and Clock PM */
102 return 0;
103 case POLICY_POWERSAVE:
104 /* Enable ASPM L0s/L1 */
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900105 return ASPM_STATE_ALL;
Shaohua Li7d715a62008-02-25 09:46:41 +0800106 case POLICY_DEFAULT:
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900107 return link->aspm_default;
Shaohua Li7d715a62008-02-25 09:46:41 +0800108 }
109 return 0;
110}
111
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900112static int policy_to_clkpm_state(struct pcie_link_state *link)
Shaohua Li7d715a62008-02-25 09:46:41 +0800113{
Shaohua Li7d715a62008-02-25 09:46:41 +0800114 switch (aspm_policy) {
115 case POLICY_PERFORMANCE:
116 /* Disable ASPM and Clock PM */
117 return 0;
118 case POLICY_POWERSAVE:
119 /* Disable Clock PM */
120 return 1;
121 case POLICY_DEFAULT:
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900122 return link->clkpm_default;
Shaohua Li7d715a62008-02-25 09:46:41 +0800123 }
124 return 0;
125}
126
Kenji Kaneshige430842e2009-05-13 12:20:10 +0900127static void pcie_set_clkpm_nocheck(struct pcie_link_state *link, int enable)
Shaohua Li7d715a62008-02-25 09:46:41 +0800128{
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900129 struct pci_dev *child;
130 struct pci_bus *linkbus = link->pdev->subordinate;
Bjorn Helgaas0c0cbb62015-06-10 14:00:21 -0500131 u32 val = enable ? PCI_EXP_LNKCTL_CLKREQ_EN : 0;
Shaohua Li7d715a62008-02-25 09:46:41 +0800132
Bjorn Helgaas0c0cbb62015-06-10 14:00:21 -0500133 list_for_each_entry(child, &linkbus->devices, bus_list)
134 pcie_capability_clear_and_set_word(child, PCI_EXP_LNKCTL,
135 PCI_EXP_LNKCTL_CLKREQ_EN,
136 val);
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900137 link->clkpm_enabled = !!enable;
Shaohua Li7d715a62008-02-25 09:46:41 +0800138}
139
Kenji Kaneshige430842e2009-05-13 12:20:10 +0900140static void pcie_set_clkpm(struct pcie_link_state *link, int enable)
141{
Heiner Kallweit947a17f2019-10-05 14:03:57 +0200142 /*
143 * Don't enable Clock PM if the link is not Clock PM capable
144 * or Clock PM is disabled
145 */
146 if (!link->clkpm_capable || link->clkpm_disable)
Matthew Garrett2f671e22010-12-06 14:00:56 -0500147 enable = 0;
Kenji Kaneshige430842e2009-05-13 12:20:10 +0900148 /* Need nothing if the specified equals to current state */
149 if (link->clkpm_enabled == enable)
150 return;
151 pcie_set_clkpm_nocheck(link, enable);
152}
153
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900154static void pcie_clkpm_cap_init(struct pcie_link_state *link, int blacklist)
Shaohua Li7d715a62008-02-25 09:46:41 +0800155{
Jiang Liuf12eb722012-07-24 17:20:12 +0800156 int capable = 1, enabled = 1;
Shaohua Li7d715a62008-02-25 09:46:41 +0800157 u32 reg32;
158 u16 reg16;
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900159 struct pci_dev *child;
160 struct pci_bus *linkbus = link->pdev->subordinate;
Shaohua Li7d715a62008-02-25 09:46:41 +0800161
162 /* All functions should have the same cap and state, take the worst */
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900163 list_for_each_entry(child, &linkbus->devices, bus_list) {
Jiang Liuf12eb722012-07-24 17:20:12 +0800164 pcie_capability_read_dword(child, PCI_EXP_LNKCAP, &reg32);
Shaohua Li7d715a62008-02-25 09:46:41 +0800165 if (!(reg32 & PCI_EXP_LNKCAP_CLKPM)) {
166 capable = 0;
167 enabled = 0;
168 break;
169 }
Jiang Liuf12eb722012-07-24 17:20:12 +0800170 pcie_capability_read_word(child, PCI_EXP_LNKCTL, &reg16);
Shaohua Li7d715a62008-02-25 09:46:41 +0800171 if (!(reg16 & PCI_EXP_LNKCTL_CLKREQ_EN))
172 enabled = 0;
173 }
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900174 link->clkpm_enabled = enabled;
175 link->clkpm_default = enabled;
Heiner Kallweit947a17f2019-10-05 14:03:57 +0200176 link->clkpm_capable = capable;
177 link->clkpm_disable = blacklist ? 1 : 0;
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800178}
179
Stefan Mätje1c38a7b2019-03-29 18:07:34 +0100180static bool pcie_retrain_link(struct pcie_link_state *link)
181{
182 struct pci_dev *parent = link->pdev;
183 unsigned long start_jiffies;
184 u16 reg16;
185
186 pcie_capability_read_word(parent, PCI_EXP_LNKCTL, &reg16);
187 reg16 |= PCI_EXP_LNKCTL_RL;
188 pcie_capability_write_word(parent, PCI_EXP_LNKCTL, reg16);
Stefan Mätjed0a3f252019-03-29 18:07:35 +0100189 if (parent->clear_retrain_link) {
190 /*
191 * Due to an erratum in some devices the Retrain Link bit
192 * needs to be cleared again manually to allow the link
193 * training to succeed.
194 */
195 reg16 &= ~PCI_EXP_LNKCTL_RL;
196 pcie_capability_write_word(parent, PCI_EXP_LNKCTL, reg16);
197 }
Stefan Mätje1c38a7b2019-03-29 18:07:34 +0100198
199 /* Wait for link training end. Break out after waiting for timeout */
200 start_jiffies = jiffies;
201 for (;;) {
202 pcie_capability_read_word(parent, PCI_EXP_LNKSTA, &reg16);
203 if (!(reg16 & PCI_EXP_LNKSTA_LT))
204 break;
205 if (time_after(jiffies, start_jiffies + LINK_RETRAIN_TIMEOUT))
206 break;
207 msleep(1);
208 }
209 return !(reg16 & PCI_EXP_LNKSTA_LT);
210}
211
Shaohua Li7d715a62008-02-25 09:46:41 +0800212/*
213 * pcie_aspm_configure_common_clock: check if the 2 ends of a link
214 * could use common clock. If they are, configure them to use the
215 * common clock. That will reduce the ASPM state exit latency.
216 */
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900217static void pcie_aspm_configure_common_clock(struct pcie_link_state *link)
Shaohua Li7d715a62008-02-25 09:46:41 +0800218{
Jiang Liuf12eb722012-07-24 17:20:12 +0800219 int same_clock = 1;
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900220 u16 reg16, parent_reg, child_reg[8];
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900221 struct pci_dev *child, *parent = link->pdev;
222 struct pci_bus *linkbus = parent->subordinate;
Shaohua Li7d715a62008-02-25 09:46:41 +0800223 /*
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900224 * All functions of a slot should have the same Slot Clock
Shaohua Li7d715a62008-02-25 09:46:41 +0800225 * Configuration, so just check one function
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900226 */
227 child = list_entry(linkbus->devices.next, struct pci_dev, bus_list);
Kenji Kaneshige8b064772009-11-11 14:36:52 +0900228 BUG_ON(!pci_is_pcie(child));
Shaohua Li7d715a62008-02-25 09:46:41 +0800229
230 /* Check downstream component if bit Slot Clock Configuration is 1 */
Jiang Liuf12eb722012-07-24 17:20:12 +0800231 pcie_capability_read_word(child, PCI_EXP_LNKSTA, &reg16);
Shaohua Li7d715a62008-02-25 09:46:41 +0800232 if (!(reg16 & PCI_EXP_LNKSTA_SLC))
233 same_clock = 0;
234
235 /* Check upstream component if bit Slot Clock Configuration is 1 */
Jiang Liuf12eb722012-07-24 17:20:12 +0800236 pcie_capability_read_word(parent, PCI_EXP_LNKSTA, &reg16);
Shaohua Li7d715a62008-02-25 09:46:41 +0800237 if (!(reg16 & PCI_EXP_LNKSTA_SLC))
238 same_clock = 0;
239
240 /* Configure downstream component, all functions */
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900241 list_for_each_entry(child, &linkbus->devices, bus_list) {
Jiang Liuf12eb722012-07-24 17:20:12 +0800242 pcie_capability_read_word(child, PCI_EXP_LNKCTL, &reg16);
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900243 child_reg[PCI_FUNC(child->devfn)] = reg16;
Shaohua Li7d715a62008-02-25 09:46:41 +0800244 if (same_clock)
245 reg16 |= PCI_EXP_LNKCTL_CCC;
246 else
247 reg16 &= ~PCI_EXP_LNKCTL_CCC;
Jiang Liuf12eb722012-07-24 17:20:12 +0800248 pcie_capability_write_word(child, PCI_EXP_LNKCTL, reg16);
Shaohua Li7d715a62008-02-25 09:46:41 +0800249 }
250
251 /* Configure upstream component */
Jiang Liuf12eb722012-07-24 17:20:12 +0800252 pcie_capability_read_word(parent, PCI_EXP_LNKCTL, &reg16);
Thomas Renninger2a42d9d2008-12-09 13:05:09 +0100253 parent_reg = reg16;
Shaohua Li7d715a62008-02-25 09:46:41 +0800254 if (same_clock)
255 reg16 |= PCI_EXP_LNKCTL_CCC;
256 else
257 reg16 &= ~PCI_EXP_LNKCTL_CCC;
Jiang Liuf12eb722012-07-24 17:20:12 +0800258 pcie_capability_write_word(parent, PCI_EXP_LNKCTL, reg16);
Shaohua Li7d715a62008-02-25 09:46:41 +0800259
Stefan Mätje1c38a7b2019-03-29 18:07:34 +0100260 if (pcie_retrain_link(link))
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900261 return;
262
263 /* Training failed. Restore common clock configurations */
Joe Perches438be3c2012-10-28 01:05:49 -0700264 dev_err(&parent->dev, "ASPM: Could not configure common clock\n");
Jiang Liuf12eb722012-07-24 17:20:12 +0800265 list_for_each_entry(child, &linkbus->devices, bus_list)
266 pcie_capability_write_word(child, PCI_EXP_LNKCTL,
267 child_reg[PCI_FUNC(child->devfn)]);
268 pcie_capability_write_word(parent, PCI_EXP_LNKCTL, parent_reg);
Shaohua Li7d715a62008-02-25 09:46:41 +0800269}
270
Kenji Kaneshige5e0eaa72009-05-13 12:21:48 +0900271/* Convert L0s latency encoding to ns */
272static u32 calc_l0s_latency(u32 encoding)
Shaohua Li7d715a62008-02-25 09:46:41 +0800273{
Kenji Kaneshige5e0eaa72009-05-13 12:21:48 +0900274 if (encoding == 0x7)
275 return (5 * 1000); /* > 4us */
276 return (64 << encoding);
Shaohua Li7d715a62008-02-25 09:46:41 +0800277}
278
Kenji Kaneshige5e0eaa72009-05-13 12:21:48 +0900279/* Convert L0s acceptable latency encoding to ns */
280static u32 calc_l0s_acceptable(u32 encoding)
Shaohua Li7d715a62008-02-25 09:46:41 +0800281{
Kenji Kaneshige5e0eaa72009-05-13 12:21:48 +0900282 if (encoding == 0x7)
283 return -1U;
284 return (64 << encoding);
285}
Shaohua Li7d715a62008-02-25 09:46:41 +0800286
Kenji Kaneshige5e0eaa72009-05-13 12:21:48 +0900287/* Convert L1 latency encoding to ns */
288static u32 calc_l1_latency(u32 encoding)
289{
290 if (encoding == 0x7)
291 return (65 * 1000); /* > 64us */
292 return (1000 << encoding);
293}
294
295/* Convert L1 acceptable latency encoding to ns */
296static u32 calc_l1_acceptable(u32 encoding)
297{
298 if (encoding == 0x7)
299 return -1U;
300 return (1000 << encoding);
Shaohua Li7d715a62008-02-25 09:46:41 +0800301}
302
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900303struct aspm_register_info {
304 u32 support:2;
305 u32 enabled:2;
306 u32 latency_encoding_l0s;
307 u32 latency_encoding_l1;
308};
309
310static void pcie_get_aspm_reg(struct pci_dev *pdev,
311 struct aspm_register_info *info)
Shaohua Li7d715a62008-02-25 09:46:41 +0800312{
Shaohua Li7d715a62008-02-25 09:46:41 +0800313 u16 reg16;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900314 u32 reg32;
Shaohua Li7d715a62008-02-25 09:46:41 +0800315
Jiang Liuf12eb722012-07-24 17:20:12 +0800316 pcie_capability_read_dword(pdev, PCI_EXP_LNKCAP, &reg32);
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900317 info->support = (reg32 & PCI_EXP_LNKCAP_ASPMS) >> 10;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900318 info->latency_encoding_l0s = (reg32 & PCI_EXP_LNKCAP_L0SEL) >> 12;
319 info->latency_encoding_l1 = (reg32 & PCI_EXP_LNKCAP_L1EL) >> 15;
Jiang Liuf12eb722012-07-24 17:20:12 +0800320 pcie_capability_read_word(pdev, PCI_EXP_LNKCTL, &reg16);
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900321 info->enabled = reg16 & PCI_EXP_LNKCTL_ASPMC;
Shaohua Li7d715a62008-02-25 09:46:41 +0800322}
323
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900324static void pcie_aspm_check_latency(struct pci_dev *endpoint)
325{
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900326 u32 latency, l1_switch_latency = 0;
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900327 struct aspm_latency *acceptable;
328 struct pcie_link_state *link;
329
330 /* Device not in D0 doesn't need latency check */
331 if ((endpoint->current_state != PCI_D0) &&
332 (endpoint->current_state != PCI_UNKNOWN))
333 return;
334
335 link = endpoint->bus->self->link_state;
336 acceptable = &link->acceptable[PCI_FUNC(endpoint->devfn)];
337
338 while (link) {
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900339 /* Check upstream direction L0s latency */
340 if ((link->aspm_capable & ASPM_STATE_L0S_UP) &&
341 (link->latency_up.l0s > acceptable->l0s))
342 link->aspm_capable &= ~ASPM_STATE_L0S_UP;
343
344 /* Check downstream direction L0s latency */
345 if ((link->aspm_capable & ASPM_STATE_L0S_DW) &&
346 (link->latency_dw.l0s > acceptable->l0s))
347 link->aspm_capable &= ~ASPM_STATE_L0S_DW;
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900348 /*
349 * Check L1 latency.
350 * Every switch on the path to root complex need 1
351 * more microsecond for L1. Spec doesn't mention L0s.
352 */
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900353 latency = max_t(u32, link->latency_up.l1, link->latency_dw.l1);
354 if ((link->aspm_capable & ASPM_STATE_L1) &&
355 (latency + l1_switch_latency > acceptable->l1))
356 link->aspm_capable &= ~ASPM_STATE_L1;
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900357 l1_switch_latency += 1000;
358
359 link = link->parent;
360 }
361}
362
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900363static void pcie_aspm_cap_init(struct pcie_link_state *link, int blacklist)
Shaohua Li7d715a62008-02-25 09:46:41 +0800364{
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900365 struct pci_dev *child, *parent = link->pdev;
366 struct pci_bus *linkbus = parent->subordinate;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900367 struct aspm_register_info upreg, dwreg;
Shaohua Li7d715a62008-02-25 09:46:41 +0800368
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900369 if (blacklist) {
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900370 /* Set enabled/disable so that we will disable ASPM later */
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900371 link->aspm_enabled = ASPM_STATE_ALL;
372 link->aspm_disable = ASPM_STATE_ALL;
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900373 return;
374 }
375
376 /* Configure common clock before checking latencies */
377 pcie_aspm_configure_common_clock(link);
378
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900379 /* Get upstream/downstream components' register state */
380 pcie_get_aspm_reg(parent, &upreg);
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900381 child = list_entry(linkbus->devices.next, struct pci_dev, bus_list);
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900382 pcie_get_aspm_reg(child, &dwreg);
383
384 /*
385 * Setup L0s state
386 *
387 * Note that we must not enable L0s in either direction on a
388 * given link unless components on both sides of the link each
389 * support L0s.
390 */
391 if (dwreg.support & upreg.support & PCIE_LINK_STATE_L0S)
392 link->aspm_support |= ASPM_STATE_L0S;
393 if (dwreg.enabled & PCIE_LINK_STATE_L0S)
394 link->aspm_enabled |= ASPM_STATE_L0S_UP;
395 if (upreg.enabled & PCIE_LINK_STATE_L0S)
396 link->aspm_enabled |= ASPM_STATE_L0S_DW;
397 link->latency_up.l0s = calc_l0s_latency(upreg.latency_encoding_l0s);
398 link->latency_dw.l0s = calc_l0s_latency(dwreg.latency_encoding_l0s);
399
400 /* Setup L1 state */
401 if (upreg.support & dwreg.support & PCIE_LINK_STATE_L1)
402 link->aspm_support |= ASPM_STATE_L1;
403 if (upreg.enabled & dwreg.enabled & PCIE_LINK_STATE_L1)
404 link->aspm_enabled |= ASPM_STATE_L1;
405 link->latency_up.l1 = calc_l1_latency(upreg.latency_encoding_l1);
406 link->latency_dw.l1 = calc_l1_latency(dwreg.latency_encoding_l1);
Kenji Kaneshige80bfdbe2009-05-13 12:12:43 +0900407
Kenji Kaneshigeb127bd52009-08-19 10:57:31 +0900408 /* Save default state */
409 link->aspm_default = link->aspm_enabled;
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900410
411 /* Setup initial capable state. Will be updated later */
412 link->aspm_capable = link->aspm_support;
Kenji Kaneshigeb127bd52009-08-19 10:57:31 +0900413
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900414 /* Get and check endpoint acceptable latencies */
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900415 list_for_each_entry(child, &linkbus->devices, bus_list) {
Kenji Kaneshige5e0eaa72009-05-13 12:21:48 +0900416 u32 reg32, encoding;
Kenji Kaneshigeb6c2e542009-05-13 12:14:58 +0900417 struct aspm_latency *acceptable =
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900418 &link->acceptable[PCI_FUNC(child->devfn)];
Shaohua Li7d715a62008-02-25 09:46:41 +0800419
Yijing Wang62f87c02012-07-24 17:20:03 +0800420 if (pci_pcie_type(child) != PCI_EXP_TYPE_ENDPOINT &&
421 pci_pcie_type(child) != PCI_EXP_TYPE_LEG_END)
Shaohua Li7d715a62008-02-25 09:46:41 +0800422 continue;
423
Jiang Liuf12eb722012-07-24 17:20:12 +0800424 pcie_capability_read_dword(child, PCI_EXP_DEVCAP, &reg32);
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900425 /* Calculate endpoint L0s acceptable latency */
Kenji Kaneshige5e0eaa72009-05-13 12:21:48 +0900426 encoding = (reg32 & PCI_EXP_DEVCAP_L0S) >> 6;
427 acceptable->l0s = calc_l0s_acceptable(encoding);
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900428 /* Calculate endpoint L1 acceptable latency */
429 encoding = (reg32 & PCI_EXP_DEVCAP_L1) >> 9;
430 acceptable->l1 = calc_l1_acceptable(encoding);
431
432 pcie_aspm_check_latency(child);
Shaohua Li7d715a62008-02-25 09:46:41 +0800433 }
434}
435
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900436static void pcie_config_aspm_dev(struct pci_dev *pdev, u32 val)
Shaohua Li7d715a62008-02-25 09:46:41 +0800437{
Bjorn Helgaas75083202012-12-05 13:51:19 -0700438 pcie_capability_clear_and_set_word(pdev, PCI_EXP_LNKCTL,
439 PCI_EXP_LNKCTL_ASPMC, val);
Shaohua Li7d715a62008-02-25 09:46:41 +0800440}
441
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900442static void pcie_config_aspm_link(struct pcie_link_state *link, u32 state)
Shaohua Li7d715a62008-02-25 09:46:41 +0800443{
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900444 u32 upstream = 0, dwstream = 0;
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900445 struct pci_dev *child, *parent = link->pdev;
446 struct pci_bus *linkbus = parent->subordinate;
Shaohua Li7d715a62008-02-25 09:46:41 +0800447
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900448 /* Nothing to do if the link is already in the requested state */
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900449 state &= (link->aspm_capable & ~link->aspm_disable);
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900450 if (link->aspm_enabled == state)
451 return;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900452 /* Convert ASPM state to upstream/downstream ASPM register state */
453 if (state & ASPM_STATE_L0S_UP)
Bjorn Helgaas75083202012-12-05 13:51:19 -0700454 dwstream |= PCI_EXP_LNKCTL_ASPM_L0S;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900455 if (state & ASPM_STATE_L0S_DW)
Bjorn Helgaas75083202012-12-05 13:51:19 -0700456 upstream |= PCI_EXP_LNKCTL_ASPM_L0S;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900457 if (state & ASPM_STATE_L1) {
Bjorn Helgaas75083202012-12-05 13:51:19 -0700458 upstream |= PCI_EXP_LNKCTL_ASPM_L1;
459 dwstream |= PCI_EXP_LNKCTL_ASPM_L1;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900460 }
Shaohua Li7d715a62008-02-25 09:46:41 +0800461 /*
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900462 * Spec 2.0 suggests all functions should be configured the
463 * same setting for ASPM. Enabling ASPM L1 should be done in
464 * upstream component first and then downstream, and vice
465 * versa for disabling ASPM L1. Spec doesn't mention L0S.
Shaohua Li7d715a62008-02-25 09:46:41 +0800466 */
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900467 if (state & ASPM_STATE_L1)
468 pcie_config_aspm_dev(parent, upstream);
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900469 list_for_each_entry(child, &linkbus->devices, bus_list)
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900470 pcie_config_aspm_dev(child, dwstream);
471 if (!(state & ASPM_STATE_L1))
472 pcie_config_aspm_dev(parent, upstream);
Shaohua Li7d715a62008-02-25 09:46:41 +0800473
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900474 link->aspm_enabled = state;
Shaohua Li7d715a62008-02-25 09:46:41 +0800475}
476
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900477static void pcie_config_aspm_path(struct pcie_link_state *link)
Shaohua Li7d715a62008-02-25 09:46:41 +0800478{
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900479 while (link) {
480 pcie_config_aspm_link(link, policy_to_aspm_state(link));
481 link = link->parent;
Shaohua Li46bbdfa2008-12-19 09:27:42 +0800482 }
Shaohua Li7d715a62008-02-25 09:46:41 +0800483}
484
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900485static void free_link_state(struct pcie_link_state *link)
Shaohua Li7d715a62008-02-25 09:46:41 +0800486{
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900487 link->pdev->link_state = NULL;
488 kfree(link);
Shaohua Li7d715a62008-02-25 09:46:41 +0800489}
490
Shaohua Liddc97532008-05-21 16:58:40 +0800491static int pcie_aspm_sanity_check(struct pci_dev *pdev)
492{
Kenji Kaneshige36475842009-05-13 12:23:09 +0900493 struct pci_dev *child;
Shaohua Li149e1632008-07-23 10:32:31 +0800494 u32 reg32;
Matthew Garrett2f671e22010-12-06 14:00:56 -0500495
Shaohua Liddc97532008-05-21 16:58:40 +0800496 /*
Stefan Assmann45e829e2009-12-03 06:49:24 -0500497 * Some functions in a slot might not all be PCIe functions,
Kenji Kaneshige36475842009-05-13 12:23:09 +0900498 * very strange. Disable ASPM for the whole slot
Shaohua Liddc97532008-05-21 16:58:40 +0800499 */
Kenji Kaneshige36475842009-05-13 12:23:09 +0900500 list_for_each_entry(child, &pdev->subordinate->devices, bus_list) {
Jiang Liuf12eb722012-07-24 17:20:12 +0800501 if (!pci_is_pcie(child))
Shaohua Liddc97532008-05-21 16:58:40 +0800502 return -EINVAL;
Matthew Garrettc9651e72012-03-27 10:17:41 -0400503
504 /*
505 * If ASPM is disabled then we're not going to change
506 * the BIOS state. It's safe to continue even if it's a
507 * pre-1.1 device
508 */
509
510 if (aspm_disabled)
511 continue;
512
Shaohua Li149e1632008-07-23 10:32:31 +0800513 /*
514 * Disable ASPM for pre-1.1 PCIe device, we follow MS to use
515 * RBER bit to determine if a function is 1.1 version device
516 */
Jiang Liuf12eb722012-07-24 17:20:12 +0800517 pcie_capability_read_dword(child, PCI_EXP_DEVCAP, &reg32);
Sitsofe Wheelere1f4f592008-09-16 14:27:13 +0100518 if (!(reg32 & PCI_EXP_DEVCAP_RBER) && !aspm_force) {
Joe Perches438be3c2012-10-28 01:05:49 -0700519 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 +0800520 return -EINVAL;
521 }
Shaohua Liddc97532008-05-21 16:58:40 +0800522 }
523 return 0;
524}
525
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900526static struct pcie_link_state *alloc_pcie_link_state(struct pci_dev *pdev)
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900527{
528 struct pcie_link_state *link;
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900529
530 link = kzalloc(sizeof(*link), GFP_KERNEL);
531 if (!link)
532 return NULL;
Bjorn Helgaas610c2b72017-01-27 15:00:45 -0600533
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900534 INIT_LIST_HEAD(&link->sibling);
535 INIT_LIST_HEAD(&link->children);
536 INIT_LIST_HEAD(&link->link);
537 link->pdev = pdev;
Bjorn Helgaas610c2b72017-01-27 15:00:45 -0600538
539 /*
540 * Root Ports and PCI/PCI-X to PCIe Bridges are roots of PCIe
Ard Biesheuvel6213c712017-10-02 15:08:40 +0100541 * hierarchies. Note that some PCIe host implementations omit
542 * the root ports entirely, in which case a downstream port on
543 * a switch may become the root of the link state chain for all
544 * its subordinate endpoints.
Bjorn Helgaas610c2b72017-01-27 15:00:45 -0600545 */
546 if (pci_pcie_type(pdev) == PCI_EXP_TYPE_ROOT_PORT ||
Ard Biesheuvel6213c712017-10-02 15:08:40 +0100547 pci_pcie_type(pdev) == PCI_EXP_TYPE_PCIE_BRIDGE ||
548 !pdev->bus->parent->self) {
Bjorn Helgaas610c2b72017-01-27 15:00:45 -0600549 link->root = link;
550 } else {
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900551 struct pcie_link_state *parent;
Bjorn Helgaas610c2b72017-01-27 15:00:45 -0600552
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900553 parent = pdev->bus->parent->self->link_state;
554 if (!parent) {
555 kfree(link);
556 return NULL;
557 }
Bjorn Helgaas610c2b72017-01-27 15:00:45 -0600558
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900559 link->parent = parent;
Bjorn Helgaas610c2b72017-01-27 15:00:45 -0600560 link->root = link->parent->root;
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900561 list_add(&link->link, &parent->children);
562 }
Kenji Kaneshige5c92ffb2009-05-13 12:23:57 +0900563
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900564 list_add(&link->sibling, &link_list);
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900565 pdev->link_state = link;
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900566 return link;
567}
568
Shaohua Li7d715a62008-02-25 09:46:41 +0800569/*
570 * pcie_aspm_init_link_state: Initiate PCI express link state.
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700571 * It is called after the pcie and its children devices are scanned.
Shaohua Li7d715a62008-02-25 09:46:41 +0800572 * @pdev: the root port or switch downstream port
573 */
574void pcie_aspm_init_link_state(struct pci_dev *pdev)
575{
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900576 struct pcie_link_state *link;
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900577 int blacklist = !!pcie_aspm_sanity_check(pdev);
Shaohua Li7d715a62008-02-25 09:46:41 +0800578
Joe Lawrencea26d5ec2013-01-15 15:31:28 -0500579 if (!aspm_support_enabled)
580 return;
581
Yijing Wangc8fc9332015-05-21 15:05:03 +0800582 if (pdev->link_state)
Shaohua Li7d715a62008-02-25 09:46:41 +0800583 return;
Yijing Wangc8fc9332015-05-21 15:05:03 +0800584
585 /*
586 * We allocate pcie_link_state for the component on the upstream
587 * end of a Link, so there's nothing to do unless this device has a
588 * Link on its secondary side.
589 */
590 if (!pdev->has_secondary_link)
Shaohua Li7d715a62008-02-25 09:46:41 +0800591 return;
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900592
Shaohua Li8e822df2009-06-08 09:27:25 +0800593 /* VIA has a strange chipset, root port is under a bridge */
Yijing Wang62f87c02012-07-24 17:20:03 +0800594 if (pci_pcie_type(pdev) == PCI_EXP_TYPE_ROOT_PORT &&
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900595 pdev->bus->self)
Shaohua Li8e822df2009-06-08 09:27:25 +0800596 return;
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900597
Shaohua Li7d715a62008-02-25 09:46:41 +0800598 down_read(&pci_bus_sem);
599 if (list_empty(&pdev->subordinate->devices))
600 goto out;
601
Shaohua Li7d715a62008-02-25 09:46:41 +0800602 mutex_lock(&aspm_lock);
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900603 link = alloc_pcie_link_state(pdev);
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900604 if (!link)
605 goto unlock;
606 /*
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900607 * Setup initial ASPM state. Note that we need to configure
608 * upstream links also because capable state of them can be
609 * update through pcie_aspm_cap_init().
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900610 */
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900611 pcie_aspm_cap_init(link, blacklist);
Shaohua Li7d715a62008-02-25 09:46:41 +0800612
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900613 /* Setup initial Clock PM state */
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900614 pcie_clkpm_cap_init(link, blacklist);
Matthew Garrett41cd7662010-06-09 16:05:07 -0400615
616 /*
617 * At this stage drivers haven't had an opportunity to change the
618 * link policy setting. Enabling ASPM on broken hardware can cripple
619 * it even before the driver has had a chance to disable ASPM, so
620 * default to a safe level right now. If we're enabling ASPM beyond
621 * the BIOS's expectation, we'll do so once pci_enable_device() is
622 * called.
623 */
Matthew Garrett3c076352011-11-10 16:38:33 -0500624 if (aspm_policy != POLICY_POWERSAVE) {
Matthew Garrett41cd7662010-06-09 16:05:07 -0400625 pcie_config_aspm_path(link);
626 pcie_set_clkpm(link, policy_to_clkpm_state(link));
627 }
628
Kenji Kaneshige8d349ac2009-05-13 12:18:22 +0900629unlock:
Shaohua Li7d715a62008-02-25 09:46:41 +0800630 mutex_unlock(&aspm_lock);
631out:
632 up_read(&pci_bus_sem);
633}
634
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900635/* Recheck latencies and update aspm_capable for links under the root */
636static void pcie_update_aspm_capable(struct pcie_link_state *root)
637{
638 struct pcie_link_state *link;
639 BUG_ON(root->parent);
640 list_for_each_entry(link, &link_list, sibling) {
641 if (link->root != root)
642 continue;
643 link->aspm_capable = link->aspm_support;
644 }
645 list_for_each_entry(link, &link_list, sibling) {
646 struct pci_dev *child;
647 struct pci_bus *linkbus = link->pdev->subordinate;
648 if (link->root != root)
649 continue;
650 list_for_each_entry(child, &linkbus->devices, bus_list) {
Yijing Wang62f87c02012-07-24 17:20:03 +0800651 if ((pci_pcie_type(child) != PCI_EXP_TYPE_ENDPOINT) &&
652 (pci_pcie_type(child) != PCI_EXP_TYPE_LEG_END))
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900653 continue;
654 pcie_aspm_check_latency(child);
655 }
656 }
657}
658
Shaohua Li7d715a62008-02-25 09:46:41 +0800659/* @pdev: the endpoint device */
660void pcie_aspm_exit_link_state(struct pci_dev *pdev)
661{
662 struct pci_dev *parent = pdev->bus->self;
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900663 struct pcie_link_state *link, *root, *parent_link;
Shaohua Li7d715a62008-02-25 09:46:41 +0800664
Myron Stowe84fb9132013-01-31 16:29:25 -0700665 if (!parent || !parent->link_state)
Shaohua Li7d715a62008-02-25 09:46:41 +0800666 return;
Kenji Kaneshigefc87e912009-08-19 10:58:46 +0900667
Shaohua Li7d715a62008-02-25 09:46:41 +0800668 down_read(&pci_bus_sem);
669 mutex_lock(&aspm_lock);
Shaohua Li7d715a62008-02-25 09:46:41 +0800670 /*
671 * All PCIe functions are in one slot, remove one function will remove
Alex Chiang3419c752009-01-28 14:59:18 -0700672 * the whole slot, so just wait until we are the last function left.
Shaohua Li7d715a62008-02-25 09:46:41 +0800673 */
Alex Chiang3419c752009-01-28 14:59:18 -0700674 if (!list_is_last(&pdev->bus_list, &parent->subordinate->devices))
Shaohua Li7d715a62008-02-25 09:46:41 +0800675 goto out;
676
Kenji Kaneshigefc87e912009-08-19 10:58:46 +0900677 link = parent->link_state;
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900678 root = link->root;
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900679 parent_link = link->parent;
Kenji Kaneshigefc87e912009-08-19 10:58:46 +0900680
Shaohua Li7d715a62008-02-25 09:46:41 +0800681 /* All functions are removed, so just disable ASPM for the link */
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900682 pcie_config_aspm_link(link, 0);
Kenji Kaneshigefc87e912009-08-19 10:58:46 +0900683 list_del(&link->sibling);
684 list_del(&link->link);
Shaohua Li7d715a62008-02-25 09:46:41 +0800685 /* Clock PM is for endpoint device */
Kenji Kaneshigefc87e912009-08-19 10:58:46 +0900686 free_link_state(link);
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900687
688 /* Recheck latencies and configure upstream links */
Kenji Kaneshigeb26a34a2009-11-06 11:25:13 +0900689 if (parent_link) {
690 pcie_update_aspm_capable(root);
691 pcie_config_aspm_path(parent_link);
692 }
Shaohua Li7d715a62008-02-25 09:46:41 +0800693out:
694 mutex_unlock(&aspm_lock);
695 up_read(&pci_bus_sem);
696}
697
698/* @pdev: the root port or switch downstream port */
699void pcie_aspm_pm_state_change(struct pci_dev *pdev)
700{
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900701 struct pcie_link_state *link = pdev->link_state;
Shaohua Li7d715a62008-02-25 09:46:41 +0800702
Yijing Wangf9b8cd72015-05-19 11:41:34 +0800703 if (aspm_disabled || !link)
Shaohua Li7d715a62008-02-25 09:46:41 +0800704 return;
705 /*
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900706 * Devices changed PM state, we should recheck if latency
707 * meets all functions' requirement
Shaohua Li7d715a62008-02-25 09:46:41 +0800708 */
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900709 down_read(&pci_bus_sem);
710 mutex_lock(&aspm_lock);
711 pcie_update_aspm_capable(link->root);
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900712 pcie_config_aspm_path(link);
Kenji Kaneshige07d92762009-08-19 11:00:25 +0900713 mutex_unlock(&aspm_lock);
714 up_read(&pci_bus_sem);
Shaohua Li7d715a62008-02-25 09:46:41 +0800715}
716
Naga Chumbalkar1a680b72011-03-21 03:29:08 +0000717void pcie_aspm_powersave_config_link(struct pci_dev *pdev)
718{
719 struct pcie_link_state *link = pdev->link_state;
720
Yijing Wangf9b8cd72015-05-19 11:41:34 +0800721 if (aspm_disabled || !link)
Naga Chumbalkar1a680b72011-03-21 03:29:08 +0000722 return;
723
724 if (aspm_policy != POLICY_POWERSAVE)
725 return;
726
Naga Chumbalkar1a680b72011-03-21 03:29:08 +0000727 down_read(&pci_bus_sem);
728 mutex_lock(&aspm_lock);
729 pcie_config_aspm_path(link);
730 pcie_set_clkpm(link, policy_to_clkpm_state(link));
731 mutex_unlock(&aspm_lock);
732 up_read(&pci_bus_sem);
733}
734
Bjorn Helgaase127a042015-05-20 12:13:05 -0500735static void __pci_disable_link_state(struct pci_dev *pdev, int state, bool sem)
Shaohua Li7d715a62008-02-25 09:46:41 +0800736{
737 struct pci_dev *parent = pdev->bus->self;
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900738 struct pcie_link_state *link;
Shaohua Li7d715a62008-02-25 09:46:41 +0800739
Matthew Garrett3c076352011-11-10 16:38:33 -0500740 if (!pci_is_pcie(pdev))
741 return;
742
Yijing Wangc8fc9332015-05-21 15:05:03 +0800743 if (pdev->has_secondary_link)
Shaohua Li7d715a62008-02-25 09:46:41 +0800744 parent = pdev;
745 if (!parent || !parent->link_state)
746 return;
747
Bjorn Helgaas2add0ec2013-05-21 10:56:51 -0600748 /*
749 * A driver requested that ASPM be disabled on this device, but
750 * if we don't have permission to manage ASPM (e.g., on ACPI
751 * systems we have to observe the FADT ACPI_FADT_NO_ASPM bit and
752 * the _OSC method), we can't honor that request. Windows has
753 * a similar mechanism using "PciASPMOptOut", which is also
754 * ignored in this situation.
755 */
Bjorn Helgaase127a042015-05-20 12:13:05 -0500756 if (aspm_disabled) {
Bjorn Helgaas2add0ec2013-05-21 10:56:51 -0600757 dev_warn(&pdev->dev, "can't disable ASPM; OS doesn't have ASPM control\n");
758 return;
759 }
760
Yinghai Lu9f728f52011-05-12 17:11:47 -0700761 if (sem)
762 down_read(&pci_bus_sem);
Shaohua Li7d715a62008-02-25 09:46:41 +0800763 mutex_lock(&aspm_lock);
Kenji Kaneshigef1c0ca22009-08-19 10:59:52 +0900764 link = parent->link_state;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900765 if (state & PCIE_LINK_STATE_L0S)
766 link->aspm_disable |= ASPM_STATE_L0S;
767 if (state & PCIE_LINK_STATE_L1)
768 link->aspm_disable |= ASPM_STATE_L1;
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900769 pcie_config_aspm_link(link, policy_to_aspm_state(link));
770
Heiner Kallweit947a17f2019-10-05 14:03:57 +0200771 if (state & PCIE_LINK_STATE_CLKPM)
772 link->clkpm_disable = 1;
773 pcie_set_clkpm(link, policy_to_clkpm_state(link));
Shaohua Li7d715a62008-02-25 09:46:41 +0800774 mutex_unlock(&aspm_lock);
Yinghai Lu9f728f52011-05-12 17:11:47 -0700775 if (sem)
776 up_read(&pci_bus_sem);
777}
778
779void pci_disable_link_state_locked(struct pci_dev *pdev, int state)
780{
Bjorn Helgaase127a042015-05-20 12:13:05 -0500781 __pci_disable_link_state(pdev, state, false);
Yinghai Lu9f728f52011-05-12 17:11:47 -0700782}
783EXPORT_SYMBOL(pci_disable_link_state_locked);
784
Yijing Wang2dfca872013-05-28 16:03:22 +0800785/**
786 * pci_disable_link_state - Disable device's link state, so the link will
787 * never enter specific states. Note that if the BIOS didn't grant ASPM
788 * control to the OS, this does nothing because we can't touch the LNKCTL
789 * register.
790 *
791 * @pdev: PCI device
792 * @state: ASPM link state to disable
793 */
Yinghai Lu9f728f52011-05-12 17:11:47 -0700794void pci_disable_link_state(struct pci_dev *pdev, int state)
795{
Bjorn Helgaase127a042015-05-20 12:13:05 -0500796 __pci_disable_link_state(pdev, state, true);
Shaohua Li7d715a62008-02-25 09:46:41 +0800797}
798EXPORT_SYMBOL(pci_disable_link_state);
799
800static int pcie_aspm_set_policy(const char *val, struct kernel_param *kp)
801{
802 int i;
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900803 struct pcie_link_state *link;
Shaohua Li7d715a62008-02-25 09:46:41 +0800804
Naga Chumbalkarbbfa3062011-03-21 03:29:14 +0000805 if (aspm_disabled)
806 return -EPERM;
Shaohua Li7d715a62008-02-25 09:46:41 +0800807 for (i = 0; i < ARRAY_SIZE(policy_str); i++)
808 if (!strncmp(val, policy_str[i], strlen(policy_str[i])))
809 break;
810 if (i >= ARRAY_SIZE(policy_str))
811 return -EINVAL;
812 if (i == aspm_policy)
813 return 0;
814
815 down_read(&pci_bus_sem);
816 mutex_lock(&aspm_lock);
817 aspm_policy = i;
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900818 list_for_each_entry(link, &link_list, sibling) {
819 pcie_config_aspm_link(link, policy_to_aspm_state(link));
820 pcie_set_clkpm(link, policy_to_clkpm_state(link));
Shaohua Li7d715a62008-02-25 09:46:41 +0800821 }
822 mutex_unlock(&aspm_lock);
823 up_read(&pci_bus_sem);
824 return 0;
825}
826
827static int pcie_aspm_get_policy(char *buffer, struct kernel_param *kp)
828{
829 int i, cnt = 0;
830 for (i = 0; i < ARRAY_SIZE(policy_str); i++)
831 if (i == aspm_policy)
832 cnt += sprintf(buffer + cnt, "[%s] ", policy_str[i]);
833 else
834 cnt += sprintf(buffer + cnt, "%s ", policy_str[i]);
Xiongfeng Wang345037f2020-07-17 15:59:25 +0800835 cnt += sprintf(buffer + cnt, "\n");
Shaohua Li7d715a62008-02-25 09:46:41 +0800836 return cnt;
837}
838
839module_param_call(policy, pcie_aspm_set_policy, pcie_aspm_get_policy,
840 NULL, 0644);
841
842#ifdef CONFIG_PCIEASPM_DEBUG
843static ssize_t link_state_show(struct device *dev,
844 struct device_attribute *attr,
845 char *buf)
846{
847 struct pci_dev *pci_device = to_pci_dev(dev);
848 struct pcie_link_state *link_state = pci_device->link_state;
849
Kenji Kaneshige80bfdbe2009-05-13 12:12:43 +0900850 return sprintf(buf, "%d\n", link_state->aspm_enabled);
Shaohua Li7d715a62008-02-25 09:46:41 +0800851}
852
853static ssize_t link_state_store(struct device *dev,
854 struct device_attribute *attr,
855 const char *buf,
856 size_t n)
857{
Kenji Kaneshige5aa63582009-05-13 12:17:44 +0900858 struct pci_dev *pdev = to_pci_dev(dev);
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900859 struct pcie_link_state *link, *root = pdev->link_state->root;
Andy Lutomirski57d86a02015-11-19 08:05:35 -0800860 u32 state;
Shaohua Li7d715a62008-02-25 09:46:41 +0800861
Naga Chumbalkarbbfa3062011-03-21 03:29:14 +0000862 if (aspm_disabled)
863 return -EPERM;
Shaohua Li7d715a62008-02-25 09:46:41 +0800864
Andy Lutomirski57d86a02015-11-19 08:05:35 -0800865 if (kstrtouint(buf, 10, &state))
866 return -EINVAL;
867 if ((state & ~ASPM_STATE_ALL) != 0)
868 return -EINVAL;
Kenji Kaneshigeac180182009-08-19 11:02:13 +0900869
Kenji Kaneshigeb7206cb2009-08-19 11:01:37 +0900870 down_read(&pci_bus_sem);
871 mutex_lock(&aspm_lock);
872 list_for_each_entry(link, &link_list, sibling) {
873 if (link->root != root)
874 continue;
875 pcie_config_aspm_link(link, state);
876 }
877 mutex_unlock(&aspm_lock);
878 up_read(&pci_bus_sem);
879 return n;
Shaohua Li7d715a62008-02-25 09:46:41 +0800880}
881
882static ssize_t clk_ctl_show(struct device *dev,
883 struct device_attribute *attr,
884 char *buf)
885{
886 struct pci_dev *pci_device = to_pci_dev(dev);
887 struct pcie_link_state *link_state = pci_device->link_state;
888
Kenji Kaneshige4d246e42009-05-13 12:15:38 +0900889 return sprintf(buf, "%d\n", link_state->clkpm_enabled);
Shaohua Li7d715a62008-02-25 09:46:41 +0800890}
891
892static ssize_t clk_ctl_store(struct device *dev,
893 struct device_attribute *attr,
894 const char *buf,
895 size_t n)
896{
Kenji Kaneshige430842e2009-05-13 12:20:10 +0900897 struct pci_dev *pdev = to_pci_dev(dev);
Chris J Arges94a90312014-12-05 17:02:42 -0600898 bool state;
Shaohua Li7d715a62008-02-25 09:46:41 +0800899
Chris J Arges94a90312014-12-05 17:02:42 -0600900 if (strtobool(buf, &state))
Shaohua Li7d715a62008-02-25 09:46:41 +0800901 return -EINVAL;
Shaohua Li7d715a62008-02-25 09:46:41 +0800902
903 down_read(&pci_bus_sem);
904 mutex_lock(&aspm_lock);
Chris J Arges94a90312014-12-05 17:02:42 -0600905 pcie_set_clkpm_nocheck(pdev->link_state, state);
Shaohua Li7d715a62008-02-25 09:46:41 +0800906 mutex_unlock(&aspm_lock);
907 up_read(&pci_bus_sem);
908
909 return n;
910}
911
912static DEVICE_ATTR(link_state, 0644, link_state_show, link_state_store);
913static DEVICE_ATTR(clk_ctl, 0644, clk_ctl_show, clk_ctl_store);
914
915static char power_group[] = "power";
916void pcie_aspm_create_sysfs_dev_files(struct pci_dev *pdev)
917{
918 struct pcie_link_state *link_state = pdev->link_state;
919
Yijing Wangf9b8cd72015-05-19 11:41:34 +0800920 if (!link_state)
Shaohua Li7d715a62008-02-25 09:46:41 +0800921 return;
922
Kenji Kaneshige80bfdbe2009-05-13 12:12:43 +0900923 if (link_state->aspm_support)
Shaohua Li7d715a62008-02-25 09:46:41 +0800924 sysfs_add_file_to_group(&pdev->dev.kobj,
925 &dev_attr_link_state.attr, power_group);
Kenji Kaneshige4d246e42009-05-13 12:15:38 +0900926 if (link_state->clkpm_capable)
Shaohua Li7d715a62008-02-25 09:46:41 +0800927 sysfs_add_file_to_group(&pdev->dev.kobj,
928 &dev_attr_clk_ctl.attr, power_group);
929}
930
931void pcie_aspm_remove_sysfs_dev_files(struct pci_dev *pdev)
932{
933 struct pcie_link_state *link_state = pdev->link_state;
934
Yijing Wangf9b8cd72015-05-19 11:41:34 +0800935 if (!link_state)
Shaohua Li7d715a62008-02-25 09:46:41 +0800936 return;
937
Kenji Kaneshige80bfdbe2009-05-13 12:12:43 +0900938 if (link_state->aspm_support)
Shaohua Li7d715a62008-02-25 09:46:41 +0800939 sysfs_remove_file_from_group(&pdev->dev.kobj,
940 &dev_attr_link_state.attr, power_group);
Kenji Kaneshige4d246e42009-05-13 12:15:38 +0900941 if (link_state->clkpm_capable)
Shaohua Li7d715a62008-02-25 09:46:41 +0800942 sysfs_remove_file_from_group(&pdev->dev.kobj,
943 &dev_attr_clk_ctl.attr, power_group);
944}
945#endif
946
947static int __init pcie_aspm_disable(char *str)
948{
Shaohua Lid6d38572008-07-23 10:32:42 +0800949 if (!strcmp(str, "off")) {
Matthew Garrett3c076352011-11-10 16:38:33 -0500950 aspm_policy = POLICY_DEFAULT;
Shaohua Lid6d38572008-07-23 10:32:42 +0800951 aspm_disabled = 1;
Rafael J. Wysocki8b8bae92011-03-05 13:21:51 +0100952 aspm_support_enabled = false;
Shaohua Lid6d38572008-07-23 10:32:42 +0800953 printk(KERN_INFO "PCIe ASPM is disabled\n");
954 } else if (!strcmp(str, "force")) {
955 aspm_force = 1;
Michael Witten8072ba12011-06-28 06:15:05 +0000956 printk(KERN_INFO "PCIe ASPM is forcibly enabled\n");
Shaohua Lid6d38572008-07-23 10:32:42 +0800957 }
Shaohua Li7d715a62008-02-25 09:46:41 +0800958 return 1;
959}
960
Shaohua Lid6d38572008-07-23 10:32:42 +0800961__setup("pcie_aspm=", pcie_aspm_disable);
Shaohua Li7d715a62008-02-25 09:46:41 +0800962
Shaohua Li5fde2442008-07-23 10:32:24 +0800963void pcie_no_aspm(void)
964{
Matthew Garrett3c076352011-11-10 16:38:33 -0500965 /*
966 * Disabling ASPM is intended to prevent the kernel from modifying
967 * existing hardware state, not to clear existing state. To that end:
968 * (a) set policy to POLICY_DEFAULT in order to avoid changing state
969 * (b) prevent userspace from changing policy
970 */
971 if (!aspm_force) {
972 aspm_policy = POLICY_DEFAULT;
Shaohua Lid6d38572008-07-23 10:32:42 +0800973 aspm_disabled = 1;
Matthew Garrett3c076352011-11-10 16:38:33 -0500974 }
Shaohua Li5fde2442008-07-23 10:32:24 +0800975}
976
Rafael J. Wysocki8b8bae92011-03-05 13:21:51 +0100977bool pcie_aspm_support_enabled(void)
978{
979 return aspm_support_enabled;
980}
981EXPORT_SYMBOL(pcie_aspm_support_enabled);