Linux Audio

Check our new training course

Loading...
v4.6
 
  1/*
  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>
 19#include <linux/jiffies.h>
 20#include <linux/delay.h>
 21#include <linux/pci-aspm.h>
 22#include "../pci.h"
 23
 24#ifdef MODULE_PARAM_PREFIX
 25#undef MODULE_PARAM_PREFIX
 26#endif
 27#define MODULE_PARAM_PREFIX "pcie_aspm."
 28
 29/* 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
 36struct aspm_latency {
 37	u32 l0s;			/* L0s latency (nsec) */
 38	u32 l1;				/* L1 latency (nsec) */
 39};
 40
 41struct pcie_link_state {
 42	struct pci_dev *pdev;		/* Upstream component of the Link */
 
 43	struct pcie_link_state *root;	/* pointer to the root port link */
 44	struct pcie_link_state *parent;	/* pointer to the parent Link state */
 45	struct list_head sibling;	/* node in link_list */
 46	struct list_head children;	/* list of child link states */
 47	struct list_head link;		/* node in parent's children list */
 48
 49	/* ASPM state */
 50	u32 aspm_support:3;		/* Supported ASPM state */
 51	u32 aspm_enabled:3;		/* Enabled ASPM state */
 52	u32 aspm_capable:3;		/* Capable ASPM state with latency */
 53	u32 aspm_default:3;		/* Default ASPM state by BIOS */
 54	u32 aspm_disable:3;		/* Disabled ASPM state */
 55
 56	/* Clock PM state */
 57	u32 clkpm_capable:1;		/* Clock PM capable? */
 58	u32 clkpm_enabled:1;		/* Current Clock PM state */
 59	u32 clkpm_default:1;		/* Default Clock PM state by BIOS */
 60
 61	/* Exit latencies */
 62	struct aspm_latency latency_up;	/* Upstream direction exit latency */
 63	struct aspm_latency latency_dw;	/* Downstream direction exit latency */
 64	/*
 65	 * Endpoint acceptable latencies. A pcie downstream port only
 66	 * has one slot under it, so at most there are 8 functions.
 67	 */
 68	struct aspm_latency acceptable[8];
 69};
 70
 71static int aspm_disabled, aspm_force;
 72static bool aspm_support_enabled = true;
 73static DEFINE_MUTEX(aspm_lock);
 74static LIST_HEAD(link_list);
 75
 76#define POLICY_DEFAULT 0	/* BIOS default setting */
 77#define POLICY_PERFORMANCE 1	/* high performance */
 78#define POLICY_POWERSAVE 2	/* high power saving */
 
 79
 80#ifdef CONFIG_PCIEASPM_PERFORMANCE
 81static int aspm_policy = POLICY_PERFORMANCE;
 82#elif defined CONFIG_PCIEASPM_POWERSAVE
 83static int aspm_policy = POLICY_POWERSAVE;
 
 
 84#else
 85static int aspm_policy;
 86#endif
 87
 88static const char *policy_str[] = {
 89	[POLICY_DEFAULT] = "default",
 90	[POLICY_PERFORMANCE] = "performance",
 91	[POLICY_POWERSAVE] = "powersave"
 
 92};
 93
 94#define LINK_RETRAIN_TIMEOUT HZ
 95
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 96static int policy_to_aspm_state(struct pcie_link_state *link)
 97{
 98	switch (aspm_policy) {
 99	case POLICY_PERFORMANCE:
100		/* Disable ASPM and Clock PM */
101		return 0;
102	case POLICY_POWERSAVE:
103		/* Enable ASPM L0s/L1 */
 
 
 
104		return ASPM_STATE_ALL;
105	case POLICY_DEFAULT:
106		return link->aspm_default;
107	}
108	return 0;
109}
110
111static int policy_to_clkpm_state(struct pcie_link_state *link)
112{
113	switch (aspm_policy) {
114	case POLICY_PERFORMANCE:
115		/* Disable ASPM and Clock PM */
116		return 0;
117	case POLICY_POWERSAVE:
118		/* Disable Clock PM */
 
119		return 1;
120	case POLICY_DEFAULT:
121		return link->clkpm_default;
122	}
123	return 0;
124}
125
126static void pcie_set_clkpm_nocheck(struct pcie_link_state *link, int enable)
127{
128	struct pci_dev *child;
129	struct pci_bus *linkbus = link->pdev->subordinate;
130	u32 val = enable ? PCI_EXP_LNKCTL_CLKREQ_EN : 0;
131
132	list_for_each_entry(child, &linkbus->devices, bus_list)
133		pcie_capability_clear_and_set_word(child, PCI_EXP_LNKCTL,
134						   PCI_EXP_LNKCTL_CLKREQ_EN,
135						   val);
136	link->clkpm_enabled = !!enable;
137}
138
139static void pcie_set_clkpm(struct pcie_link_state *link, int enable)
140{
141	/* Don't enable Clock PM if the link is not Clock PM capable */
142	if (!link->clkpm_capable && enable)
 
 
 
143		enable = 0;
144	/* Need nothing if the specified equals to current state */
145	if (link->clkpm_enabled == enable)
146		return;
147	pcie_set_clkpm_nocheck(link, enable);
148}
149
150static void pcie_clkpm_cap_init(struct pcie_link_state *link, int blacklist)
151{
152	int capable = 1, enabled = 1;
153	u32 reg32;
154	u16 reg16;
155	struct pci_dev *child;
156	struct pci_bus *linkbus = link->pdev->subordinate;
157
158	/* All functions should have the same cap and state, take the worst */
159	list_for_each_entry(child, &linkbus->devices, bus_list) {
160		pcie_capability_read_dword(child, PCI_EXP_LNKCAP, &reg32);
161		if (!(reg32 & PCI_EXP_LNKCAP_CLKPM)) {
162			capable = 0;
163			enabled = 0;
164			break;
165		}
166		pcie_capability_read_word(child, PCI_EXP_LNKCTL, &reg16);
167		if (!(reg16 & PCI_EXP_LNKCTL_CLKREQ_EN))
168			enabled = 0;
169	}
170	link->clkpm_enabled = enabled;
171	link->clkpm_default = enabled;
172	link->clkpm_capable = (blacklist) ? 0 : capable;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
173}
174
175/*
176 * 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 */
180static void pcie_aspm_configure_common_clock(struct pcie_link_state *link)
181{
182	int same_clock = 1;
183	u16 reg16, parent_reg, child_reg[8];
184	unsigned long start_jiffies;
185	struct pci_dev *child, *parent = link->pdev;
186	struct pci_bus *linkbus = parent->subordinate;
187	/*
188	 * All functions of a slot should have the same Slot Clock
189	 * Configuration, so just check one function
190	 */
191	child = list_entry(linkbus->devices.next, struct pci_dev, bus_list);
192	BUG_ON(!pci_is_pcie(child));
193
194	/* Check downstream component if bit Slot Clock Configuration is 1 */
195	pcie_capability_read_word(child, PCI_EXP_LNKSTA, &reg16);
196	if (!(reg16 & PCI_EXP_LNKSTA_SLC))
197		same_clock = 0;
198
199	/* Check upstream component if bit Slot Clock Configuration is 1 */
200	pcie_capability_read_word(parent, PCI_EXP_LNKSTA, &reg16);
201	if (!(reg16 & PCI_EXP_LNKSTA_SLC))
202		same_clock = 0;
203
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
204	/* Configure downstream component, all functions */
205	list_for_each_entry(child, &linkbus->devices, bus_list) {
206		pcie_capability_read_word(child, PCI_EXP_LNKCTL, &reg16);
207		child_reg[PCI_FUNC(child->devfn)] = reg16;
208		if (same_clock)
209			reg16 |= PCI_EXP_LNKCTL_CCC;
210		else
211			reg16 &= ~PCI_EXP_LNKCTL_CCC;
212		pcie_capability_write_word(child, PCI_EXP_LNKCTL, reg16);
213	}
214
215	/* Configure upstream component */
216	pcie_capability_read_word(parent, PCI_EXP_LNKCTL, &reg16);
217	parent_reg = reg16;
218	if (same_clock)
219		reg16 |= PCI_EXP_LNKCTL_CCC;
220	else
221		reg16 &= ~PCI_EXP_LNKCTL_CCC;
222	pcie_capability_write_word(parent, PCI_EXP_LNKCTL, reg16);
223
224	/* Retrain link */
225	reg16 |= PCI_EXP_LNKCTL_RL;
226	pcie_capability_write_word(parent, PCI_EXP_LNKCTL, reg16);
227
228	/* Wait for link training end. Break out after waiting for timeout */
229	start_jiffies = jiffies;
230	for (;;) {
231		pcie_capability_read_word(parent, PCI_EXP_LNKSTA, &reg16);
232		if (!(reg16 & PCI_EXP_LNKSTA_LT))
233			break;
234		if (time_after(jiffies, start_jiffies + LINK_RETRAIN_TIMEOUT))
235			break;
236		msleep(1);
237	}
238	if (!(reg16 & PCI_EXP_LNKSTA_LT))
239		return;
240
241	/* Training failed. Restore common clock configurations */
242	dev_err(&parent->dev, "ASPM: Could not configure common clock\n");
243	list_for_each_entry(child, &linkbus->devices, bus_list)
244		pcie_capability_write_word(child, PCI_EXP_LNKCTL,
245					   child_reg[PCI_FUNC(child->devfn)]);
246	pcie_capability_write_word(parent, PCI_EXP_LNKCTL, parent_reg);
247}
248
249/* Convert L0s latency encoding to ns */
250static u32 calc_l0s_latency(u32 encoding)
251{
 
 
252	if (encoding == 0x7)
253		return (5 * 1000);	/* > 4us */
254	return (64 << encoding);
255}
256
257/* Convert L0s acceptable latency encoding to ns */
258static u32 calc_l0s_acceptable(u32 encoding)
259{
260	if (encoding == 0x7)
261		return -1U;
262	return (64 << encoding);
263}
264
265/* Convert L1 latency encoding to ns */
266static u32 calc_l1_latency(u32 encoding)
267{
 
 
268	if (encoding == 0x7)
269		return (65 * 1000);	/* > 64us */
270	return (1000 << encoding);
271}
272
273/* Convert L1 acceptable latency encoding to ns */
274static u32 calc_l1_acceptable(u32 encoding)
275{
276	if (encoding == 0x7)
277		return -1U;
278	return (1000 << encoding);
279}
280
281struct aspm_register_info {
282	u32 support:2;
283	u32 enabled:2;
284	u32 latency_encoding_l0s;
285	u32 latency_encoding_l1;
286};
 
 
 
 
 
 
 
 
287
288static void pcie_get_aspm_reg(struct pci_dev *pdev,
289			      struct aspm_register_info *info)
 
 
 
 
 
 
 
290{
291	u16 reg16;
292	u32 reg32;
293
294	pcie_capability_read_dword(pdev, PCI_EXP_LNKCAP, &reg32);
295	info->support = (reg32 & PCI_EXP_LNKCAP_ASPMS) >> 10;
296	info->latency_encoding_l0s = (reg32 & PCI_EXP_LNKCAP_L0SEL) >> 12;
297	info->latency_encoding_l1  = (reg32 & PCI_EXP_LNKCAP_L1EL) >> 15;
298	pcie_capability_read_word(pdev, PCI_EXP_LNKCTL, &reg16);
299	info->enabled = reg16 & PCI_EXP_LNKCTL_ASPMC;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
300}
301
302static void pcie_aspm_check_latency(struct pci_dev *endpoint)
303{
304	u32 latency, l1_switch_latency = 0;
305	struct aspm_latency *acceptable;
 
 
306	struct pcie_link_state *link;
307
308	/* Device not in D0 doesn't need latency check */
309	if ((endpoint->current_state != PCI_D0) &&
310	    (endpoint->current_state != PCI_UNKNOWN))
311		return;
312
313	link = endpoint->bus->self->link_state;
314	acceptable = &link->acceptable[PCI_FUNC(endpoint->devfn)];
 
 
 
 
 
 
 
315
316	while (link) {
 
 
 
 
 
 
 
 
 
 
 
 
317		/* Check upstream direction L0s latency */
318		if ((link->aspm_capable & ASPM_STATE_L0S_UP) &&
319		    (link->latency_up.l0s > acceptable->l0s))
320			link->aspm_capable &= ~ASPM_STATE_L0S_UP;
321
322		/* Check downstream direction L0s latency */
323		if ((link->aspm_capable & ASPM_STATE_L0S_DW) &&
324		    (link->latency_dw.l0s > acceptable->l0s))
325			link->aspm_capable &= ~ASPM_STATE_L0S_DW;
326		/*
327		 * Check L1 latency.
328		 * Every switch on the path to root complex need 1
329		 * more microsecond for L1. Spec doesn't mention L0s.
 
 
 
 
 
 
 
 
330		 */
331		latency = max_t(u32, link->latency_up.l1, link->latency_dw.l1);
332		if ((link->aspm_capable & ASPM_STATE_L1) &&
333		    (latency + l1_switch_latency > acceptable->l1))
334			link->aspm_capable &= ~ASPM_STATE_L1;
335		l1_switch_latency += 1000;
336
337		link = link->parent;
338	}
339}
340
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
341static void pcie_aspm_cap_init(struct pcie_link_state *link, int blacklist)
342{
343	struct pci_dev *child, *parent = link->pdev;
 
 
344	struct pci_bus *linkbus = parent->subordinate;
345	struct aspm_register_info upreg, dwreg;
346
347	if (blacklist) {
348		/* Set enabled/disable so that we will disable ASPM later */
349		link->aspm_enabled = ASPM_STATE_ALL;
350		link->aspm_disable = ASPM_STATE_ALL;
351		return;
352	}
353
 
 
 
 
 
 
 
 
 
354	/* Configure common clock before checking latencies */
355	pcie_aspm_configure_common_clock(link);
356
357	/* Get upstream/downstream components' register state */
358	pcie_get_aspm_reg(parent, &upreg);
359	child = list_entry(linkbus->devices.next, struct pci_dev, bus_list);
360	pcie_get_aspm_reg(child, &dwreg);
 
 
 
 
 
 
361
362	/*
363	 * Setup L0s state
364	 *
365	 * Note that we must not enable L0s in either direction on a
366	 * given link unless components on both sides of the link each
367	 * support L0s.
368	 */
369	if (dwreg.support & upreg.support & PCIE_LINK_STATE_L0S)
370		link->aspm_support |= ASPM_STATE_L0S;
371	if (dwreg.enabled & PCIE_LINK_STATE_L0S)
 
372		link->aspm_enabled |= ASPM_STATE_L0S_UP;
373	if (upreg.enabled & PCIE_LINK_STATE_L0S)
374		link->aspm_enabled |= ASPM_STATE_L0S_DW;
375	link->latency_up.l0s = calc_l0s_latency(upreg.latency_encoding_l0s);
376	link->latency_dw.l0s = calc_l0s_latency(dwreg.latency_encoding_l0s);
377
378	/* Setup L1 state */
379	if (upreg.support & dwreg.support & PCIE_LINK_STATE_L1)
380		link->aspm_support |= ASPM_STATE_L1;
381	if (upreg.enabled & dwreg.enabled & PCIE_LINK_STATE_L1)
 
382		link->aspm_enabled |= ASPM_STATE_L1;
383	link->latency_up.l1 = calc_l1_latency(upreg.latency_encoding_l1);
384	link->latency_dw.l1 = calc_l1_latency(dwreg.latency_encoding_l1);
385
386	/* Save default state */
387	link->aspm_default = link->aspm_enabled;
388
389	/* Setup initial capable state. Will be updated later */
390	link->aspm_capable = link->aspm_support;
391	/*
392	 * If the downstream component has pci bridge function, don't
393	 * do ASPM for now.
394	 */
395	list_for_each_entry(child, &linkbus->devices, bus_list) {
396		if (pci_pcie_type(child) == PCI_EXP_TYPE_PCI_BRIDGE) {
397			link->aspm_disable = ASPM_STATE_ALL;
398			break;
399		}
400	}
401
402	/* Get and check endpoint acceptable latencies */
403	list_for_each_entry(child, &linkbus->devices, bus_list) {
404		u32 reg32, encoding;
405		struct aspm_latency *acceptable =
406			&link->acceptable[PCI_FUNC(child->devfn)];
407
408		if (pci_pcie_type(child) != PCI_EXP_TYPE_ENDPOINT &&
409		    pci_pcie_type(child) != PCI_EXP_TYPE_LEG_END)
410			continue;
411
412		pcie_capability_read_dword(child, PCI_EXP_DEVCAP, &reg32);
413		/* Calculate endpoint L0s acceptable latency */
414		encoding = (reg32 & PCI_EXP_DEVCAP_L0S) >> 6;
415		acceptable->l0s = calc_l0s_acceptable(encoding);
416		/* Calculate endpoint L1 acceptable latency */
417		encoding = (reg32 & PCI_EXP_DEVCAP_L1) >> 9;
418		acceptable->l1 = calc_l1_acceptable(encoding);
419
420		pcie_aspm_check_latency(child);
421	}
422}
423
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
424static void pcie_config_aspm_dev(struct pci_dev *pdev, u32 val)
425{
426	pcie_capability_clear_and_set_word(pdev, PCI_EXP_LNKCTL,
427					   PCI_EXP_LNKCTL_ASPMC, val);
428}
429
430static void pcie_config_aspm_link(struct pcie_link_state *link, u32 state)
431{
432	u32 upstream = 0, dwstream = 0;
433	struct pci_dev *child, *parent = link->pdev;
434	struct pci_bus *linkbus = parent->subordinate;
435
436	/* Nothing to do if the link is already in the requested state */
437	state &= (link->aspm_capable & ~link->aspm_disable);
 
 
 
 
 
 
 
 
 
 
 
 
438	if (link->aspm_enabled == state)
439		return;
440	/* Convert ASPM state to upstream/downstream ASPM register state */
441	if (state & ASPM_STATE_L0S_UP)
442		dwstream |= PCI_EXP_LNKCTL_ASPM_L0S;
443	if (state & ASPM_STATE_L0S_DW)
444		upstream |= PCI_EXP_LNKCTL_ASPM_L0S;
445	if (state & ASPM_STATE_L1) {
446		upstream |= PCI_EXP_LNKCTL_ASPM_L1;
447		dwstream |= PCI_EXP_LNKCTL_ASPM_L1;
448	}
 
 
 
 
449	/*
450	 * Spec 2.0 suggests all functions should be configured the
451	 * same setting for ASPM. Enabling ASPM L1 should be done in
452	 * upstream component first and then downstream, and vice
453	 * versa for disabling ASPM L1. Spec doesn't mention L0S.
454	 */
455	if (state & ASPM_STATE_L1)
456		pcie_config_aspm_dev(parent, upstream);
457	list_for_each_entry(child, &linkbus->devices, bus_list)
458		pcie_config_aspm_dev(child, dwstream);
459	if (!(state & ASPM_STATE_L1))
460		pcie_config_aspm_dev(parent, upstream);
461
462	link->aspm_enabled = state;
463}
464
465static void pcie_config_aspm_path(struct pcie_link_state *link)
466{
467	while (link) {
468		pcie_config_aspm_link(link, policy_to_aspm_state(link));
469		link = link->parent;
470	}
471}
472
473static void free_link_state(struct pcie_link_state *link)
474{
475	link->pdev->link_state = NULL;
476	kfree(link);
477}
478
479static int pcie_aspm_sanity_check(struct pci_dev *pdev)
480{
481	struct pci_dev *child;
482	u32 reg32;
483
484	/*
485	 * Some functions in a slot might not all be PCIe functions,
486	 * very strange. Disable ASPM for the whole slot
487	 */
488	list_for_each_entry(child, &pdev->subordinate->devices, bus_list) {
489		if (!pci_is_pcie(child))
490			return -EINVAL;
491
492		/*
493		 * If ASPM is disabled then we're not going to change
494		 * the BIOS state. It's safe to continue even if it's a
495		 * pre-1.1 device
496		 */
497
498		if (aspm_disabled)
499			continue;
500
501		/*
502		 * Disable ASPM for pre-1.1 PCIe device, we follow MS to use
503		 * RBER bit to determine if a function is 1.1 version device
504		 */
505		pcie_capability_read_dword(child, PCI_EXP_DEVCAP, &reg32);
506		if (!(reg32 & PCI_EXP_DEVCAP_RBER) && !aspm_force) {
507			dev_info(&child->dev, "disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'\n");
508			return -EINVAL;
509		}
510	}
511	return 0;
512}
513
514static struct pcie_link_state *alloc_pcie_link_state(struct pci_dev *pdev)
515{
516	struct pcie_link_state *link;
517
518	link = kzalloc(sizeof(*link), GFP_KERNEL);
519	if (!link)
520		return NULL;
 
521	INIT_LIST_HEAD(&link->sibling);
522	INIT_LIST_HEAD(&link->children);
523	INIT_LIST_HEAD(&link->link);
524	link->pdev = pdev;
525	if (pci_pcie_type(pdev) != PCI_EXP_TYPE_ROOT_PORT) {
 
 
 
 
 
 
 
 
 
 
 
 
 
526		struct pcie_link_state *parent;
 
527		parent = pdev->bus->parent->self->link_state;
528		if (!parent) {
529			kfree(link);
530			return NULL;
531		}
 
532		link->parent = parent;
533		list_add(&link->link, &parent->children);
534	}
535	/* Setup a pointer to the root port link */
536	if (!link->parent)
537		link->root = link;
538	else
539		link->root = link->parent->root;
 
540
541	list_add(&link->sibling, &link_list);
542	pdev->link_state = link;
543	return link;
544}
545
 
 
 
 
 
 
 
 
546/*
547 * pcie_aspm_init_link_state: Initiate PCI express link state.
548 * It is called after the pcie and its children devices are scanned.
549 * @pdev: the root port or switch downstream port
550 */
551void pcie_aspm_init_link_state(struct pci_dev *pdev)
552{
553	struct pcie_link_state *link;
554	int blacklist = !!pcie_aspm_sanity_check(pdev);
555
556	if (!aspm_support_enabled)
557		return;
558
559	if (pdev->link_state)
560		return;
561
562	/*
563	 * We allocate pcie_link_state for the component on the upstream
564	 * end of a Link, so there's nothing to do unless this device has a
565	 * Link on its secondary side.
566	 */
567	if (!pdev->has_secondary_link)
568		return;
569
570	/* VIA has a strange chipset, root port is under a bridge */
571	if (pci_pcie_type(pdev) == PCI_EXP_TYPE_ROOT_PORT &&
572	    pdev->bus->self)
573		return;
574
575	down_read(&pci_bus_sem);
576	if (list_empty(&pdev->subordinate->devices))
577		goto out;
578
579	mutex_lock(&aspm_lock);
580	link = alloc_pcie_link_state(pdev);
581	if (!link)
582		goto unlock;
583	/*
584	 * Setup initial ASPM state. Note that we need to configure
585	 * upstream links also because capable state of them can be
586	 * update through pcie_aspm_cap_init().
587	 */
588	pcie_aspm_cap_init(link, blacklist);
589
590	/* Setup initial Clock PM state */
591	pcie_clkpm_cap_init(link, blacklist);
592
593	/*
594	 * At this stage drivers haven't had an opportunity to change the
595	 * link policy setting. Enabling ASPM on broken hardware can cripple
596	 * it even before the driver has had a chance to disable ASPM, so
597	 * default to a safe level right now. If we're enabling ASPM beyond
598	 * the BIOS's expectation, we'll do so once pci_enable_device() is
599	 * called.
600	 */
601	if (aspm_policy != POLICY_POWERSAVE) {
 
602		pcie_config_aspm_path(link);
603		pcie_set_clkpm(link, policy_to_clkpm_state(link));
604	}
605
 
 
606unlock:
607	mutex_unlock(&aspm_lock);
608out:
609	up_read(&pci_bus_sem);
610}
611
612/* Recheck latencies and update aspm_capable for links under the root */
613static void pcie_update_aspm_capable(struct pcie_link_state *root)
614{
615	struct pcie_link_state *link;
616	BUG_ON(root->parent);
617	list_for_each_entry(link, &link_list, sibling) {
618		if (link->root != root)
619			continue;
620		link->aspm_capable = link->aspm_support;
621	}
622	list_for_each_entry(link, &link_list, sibling) {
623		struct pci_dev *child;
624		struct pci_bus *linkbus = link->pdev->subordinate;
625		if (link->root != root)
626			continue;
627		list_for_each_entry(child, &linkbus->devices, bus_list) {
628			if ((pci_pcie_type(child) != PCI_EXP_TYPE_ENDPOINT) &&
629			    (pci_pcie_type(child) != PCI_EXP_TYPE_LEG_END))
630				continue;
631			pcie_aspm_check_latency(child);
632		}
633	}
634}
635
636/* @pdev: the endpoint device */
637void pcie_aspm_exit_link_state(struct pci_dev *pdev)
638{
639	struct pci_dev *parent = pdev->bus->self;
640	struct pcie_link_state *link, *root, *parent_link;
641
642	if (!parent || !parent->link_state)
643		return;
644
645	down_read(&pci_bus_sem);
646	mutex_lock(&aspm_lock);
647	/*
648	 * All PCIe functions are in one slot, remove one function will remove
649	 * the whole slot, so just wait until we are the last function left.
650	 */
651	if (!list_is_last(&pdev->bus_list, &parent->subordinate->devices))
652		goto out;
653
654	link = parent->link_state;
655	root = link->root;
656	parent_link = link->parent;
657
658	/* All functions are removed, so just disable ASPM for the link */
659	pcie_config_aspm_link(link, 0);
660	list_del(&link->sibling);
661	list_del(&link->link);
662	/* Clock PM is for endpoint device */
663	free_link_state(link);
664
665	/* Recheck latencies and configure upstream links */
666	if (parent_link) {
667		pcie_update_aspm_capable(root);
668		pcie_config_aspm_path(parent_link);
669	}
670out:
671	mutex_unlock(&aspm_lock);
672	up_read(&pci_bus_sem);
673}
674
675/* @pdev: the root port or switch downstream port */
676void pcie_aspm_pm_state_change(struct pci_dev *pdev)
677{
678	struct pcie_link_state *link = pdev->link_state;
679
680	if (aspm_disabled || !link)
681		return;
682	/*
683	 * Devices changed PM state, we should recheck if latency
684	 * meets all functions' requirement
685	 */
686	down_read(&pci_bus_sem);
687	mutex_lock(&aspm_lock);
688	pcie_update_aspm_capable(link->root);
689	pcie_config_aspm_path(link);
690	mutex_unlock(&aspm_lock);
691	up_read(&pci_bus_sem);
692}
693
694void pcie_aspm_powersave_config_link(struct pci_dev *pdev)
695{
696	struct pcie_link_state *link = pdev->link_state;
697
698	if (aspm_disabled || !link)
699		return;
700
701	if (aspm_policy != POLICY_POWERSAVE)
 
702		return;
703
704	down_read(&pci_bus_sem);
705	mutex_lock(&aspm_lock);
706	pcie_config_aspm_path(link);
707	pcie_set_clkpm(link, policy_to_clkpm_state(link));
708	mutex_unlock(&aspm_lock);
709	up_read(&pci_bus_sem);
710}
711
712static void __pci_disable_link_state(struct pci_dev *pdev, int state, bool sem)
713{
714	struct pci_dev *parent = pdev->bus->self;
715	struct pcie_link_state *link;
716
717	if (!pci_is_pcie(pdev))
718		return;
719
720	if (pdev->has_secondary_link)
721		parent = pdev;
722	if (!parent || !parent->link_state)
723		return;
 
 
724
 
 
 
 
 
 
725	/*
726	 * A driver requested that ASPM be disabled on this device, but
727	 * if we don't have permission to manage ASPM (e.g., on ACPI
728	 * systems we have to observe the FADT ACPI_FADT_NO_ASPM bit and
729	 * the _OSC method), we can't honor that request.  Windows has
730	 * a similar mechanism using "PciASPMOptOut", which is also
731	 * ignored in this situation.
732	 */
733	if (aspm_disabled) {
734		dev_warn(&pdev->dev, "can't disable ASPM; OS doesn't have ASPM control\n");
735		return;
736	}
737
738	if (sem)
739		down_read(&pci_bus_sem);
740	mutex_lock(&aspm_lock);
741	link = parent->link_state;
742	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;
 
 
 
 
 
 
 
 
 
746	pcie_config_aspm_link(link, policy_to_aspm_state(link));
747
748	if (state & PCIE_LINK_STATE_CLKPM) {
749		link->clkpm_capable = 0;
750		pcie_set_clkpm(link, 0);
751	}
752	mutex_unlock(&aspm_lock);
753	if (sem)
754		up_read(&pci_bus_sem);
 
 
755}
756
757void pci_disable_link_state_locked(struct pci_dev *pdev, int state)
758{
759	__pci_disable_link_state(pdev, state, false);
760}
761EXPORT_SYMBOL(pci_disable_link_state_locked);
762
763/**
764 * pci_disable_link_state - Disable device's link state, so the link will
765 * never enter specific states.  Note that if the BIOS didn't grant ASPM
766 * control to the OS, this does nothing because we can't touch the LNKCTL
767 * register.
768 *
769 * @pdev: PCI device
770 * @state: ASPM link state to disable
771 */
772void pci_disable_link_state(struct pci_dev *pdev, int state)
773{
774	__pci_disable_link_state(pdev, state, true);
775}
776EXPORT_SYMBOL(pci_disable_link_state);
777
778static int pcie_aspm_set_policy(const char *val, struct kernel_param *kp)
 
779{
780	int i;
781	struct pcie_link_state *link;
782
783	if (aspm_disabled)
784		return -EPERM;
785	for (i = 0; i < ARRAY_SIZE(policy_str); i++)
786		if (!strncmp(val, policy_str[i], strlen(policy_str[i])))
787			break;
788	if (i >= ARRAY_SIZE(policy_str))
789		return -EINVAL;
790	if (i == aspm_policy)
791		return 0;
792
793	down_read(&pci_bus_sem);
794	mutex_lock(&aspm_lock);
795	aspm_policy = i;
796	list_for_each_entry(link, &link_list, sibling) {
797		pcie_config_aspm_link(link, policy_to_aspm_state(link));
798		pcie_set_clkpm(link, policy_to_clkpm_state(link));
799	}
800	mutex_unlock(&aspm_lock);
801	up_read(&pci_bus_sem);
802	return 0;
803}
804
805static int pcie_aspm_get_policy(char *buffer, struct kernel_param *kp)
806{
807	int i, cnt = 0;
808	for (i = 0; i < ARRAY_SIZE(policy_str); i++)
809		if (i == aspm_policy)
810			cnt += sprintf(buffer + cnt, "[%s] ", policy_str[i]);
811		else
812			cnt += sprintf(buffer + cnt, "%s ", policy_str[i]);
 
813	return cnt;
814}
815
816module_param_call(policy, pcie_aspm_set_policy, pcie_aspm_get_policy,
817	NULL, 0644);
818
819#ifdef CONFIG_PCIEASPM_DEBUG
820static ssize_t link_state_show(struct device *dev,
821		struct device_attribute *attr,
822		char *buf)
 
 
 
 
 
 
823{
824	struct pci_dev *pci_device = to_pci_dev(dev);
825	struct pcie_link_state *link_state = pci_device->link_state;
 
 
826
827	return sprintf(buf, "%d\n", link_state->aspm_enabled);
828}
 
829
830static ssize_t link_state_store(struct device *dev,
831		struct device_attribute *attr,
832		const char *buf,
833		size_t n)
834{
835	struct pci_dev *pdev = to_pci_dev(dev);
836	struct pcie_link_state *link, *root = pdev->link_state->root;
837	u32 state;
838
839	if (aspm_disabled)
840		return -EPERM;
841
842	if (kstrtouint(buf, 10, &state))
843		return -EINVAL;
844	if ((state & ~ASPM_STATE_ALL) != 0)
 
 
 
 
 
 
845		return -EINVAL;
846
847	down_read(&pci_bus_sem);
848	mutex_lock(&aspm_lock);
849	list_for_each_entry(link, &link_list, sibling) {
850		if (link->root != root)
851			continue;
852		pcie_config_aspm_link(link, state);
 
 
 
 
853	}
 
 
 
854	mutex_unlock(&aspm_lock);
855	up_read(&pci_bus_sem);
856	return n;
 
857}
858
859static ssize_t clk_ctl_show(struct device *dev,
860		struct device_attribute *attr,
861		char *buf)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
862{
863	struct pci_dev *pci_device = to_pci_dev(dev);
864	struct pcie_link_state *link_state = pci_device->link_state;
865
866	return sprintf(buf, "%d\n", link_state->clkpm_enabled);
867}
868
869static ssize_t clk_ctl_store(struct device *dev,
870		struct device_attribute *attr,
871		const char *buf,
872		size_t n)
873{
874	struct pci_dev *pdev = to_pci_dev(dev);
875	bool state;
 
876
877	if (strtobool(buf, &state))
878		return -EINVAL;
879
880	down_read(&pci_bus_sem);
881	mutex_lock(&aspm_lock);
882	pcie_set_clkpm_nocheck(pdev->link_state, state);
 
 
 
883	mutex_unlock(&aspm_lock);
884	up_read(&pci_bus_sem);
885
886	return n;
887}
888
889static DEVICE_ATTR(link_state, 0644, link_state_show, link_state_store);
890static DEVICE_ATTR(clk_ctl, 0644, clk_ctl_show, clk_ctl_store);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
891
892static char power_group[] = "power";
893void pcie_aspm_create_sysfs_dev_files(struct pci_dev *pdev)
894{
895	struct pcie_link_state *link_state = pdev->link_state;
896
897	if (!link_state)
898		return;
899
900	if (link_state->aspm_support)
901		sysfs_add_file_to_group(&pdev->dev.kobj,
902			&dev_attr_link_state.attr, power_group);
903	if (link_state->clkpm_capable)
904		sysfs_add_file_to_group(&pdev->dev.kobj,
905			&dev_attr_clk_ctl.attr, power_group);
906}
907
908void pcie_aspm_remove_sysfs_dev_files(struct pci_dev *pdev)
909{
910	struct pcie_link_state *link_state = pdev->link_state;
911
912	if (!link_state)
913		return;
914
915	if (link_state->aspm_support)
916		sysfs_remove_file_from_group(&pdev->dev.kobj,
917			&dev_attr_link_state.attr, power_group);
918	if (link_state->clkpm_capable)
919		sysfs_remove_file_from_group(&pdev->dev.kobj,
920			&dev_attr_clk_ctl.attr, power_group);
921}
922#endif
 
 
 
 
 
923
924static int __init pcie_aspm_disable(char *str)
925{
926	if (!strcmp(str, "off")) {
927		aspm_policy = POLICY_DEFAULT;
928		aspm_disabled = 1;
929		aspm_support_enabled = false;
930		printk(KERN_INFO "PCIe ASPM is disabled\n");
931	} else if (!strcmp(str, "force")) {
932		aspm_force = 1;
933		printk(KERN_INFO "PCIe ASPM is forcibly enabled\n");
934	}
935	return 1;
936}
937
938__setup("pcie_aspm=", pcie_aspm_disable);
939
940void pcie_no_aspm(void)
941{
942	/*
943	 * Disabling ASPM is intended to prevent the kernel from modifying
944	 * existing hardware state, not to clear existing state. To that end:
945	 * (a) set policy to POLICY_DEFAULT in order to avoid changing state
946	 * (b) prevent userspace from changing policy
947	 */
948	if (!aspm_force) {
949		aspm_policy = POLICY_DEFAULT;
950		aspm_disabled = 1;
951	}
952}
953
954bool pcie_aspm_support_enabled(void)
955{
956	return aspm_support_enabled;
957}
958EXPORT_SYMBOL(pcie_aspm_support_enabled);
v6.2
   1// SPDX-License-Identifier: GPL-2.0
   2/*
   3 * Enable 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/math.h>
  12#include <linux/module.h>
  13#include <linux/moduleparam.h>
  14#include <linux/pci.h>
  15#include <linux/pci_regs.h>
  16#include <linux/errno.h>
  17#include <linux/pm.h>
  18#include <linux/init.h>
  19#include <linux/slab.h>
  20#include <linux/jiffies.h>
  21#include <linux/delay.h>
 
  22#include "../pci.h"
  23
  24#ifdef MODULE_PARAM_PREFIX
  25#undef MODULE_PARAM_PREFIX
  26#endif
  27#define MODULE_PARAM_PREFIX "pcie_aspm."
  28
  29/* 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_L1_1		(8)	/* ASPM L1.1 state */
  34#define ASPM_STATE_L1_2		(0x10)	/* ASPM L1.2 state */
  35#define ASPM_STATE_L1_1_PCIPM	(0x20)	/* PCI PM L1.1 state */
  36#define ASPM_STATE_L1_2_PCIPM	(0x40)	/* PCI PM L1.2 state */
  37#define ASPM_STATE_L1_SS_PCIPM	(ASPM_STATE_L1_1_PCIPM | ASPM_STATE_L1_2_PCIPM)
  38#define ASPM_STATE_L1_2_MASK	(ASPM_STATE_L1_2 | ASPM_STATE_L1_2_PCIPM)
  39#define ASPM_STATE_L1SS		(ASPM_STATE_L1_1 | ASPM_STATE_L1_1_PCIPM |\
  40				 ASPM_STATE_L1_2_MASK)
  41#define ASPM_STATE_L0S		(ASPM_STATE_L0S_UP | ASPM_STATE_L0S_DW)
  42#define ASPM_STATE_ALL		(ASPM_STATE_L0S | ASPM_STATE_L1 |	\
  43				 ASPM_STATE_L1SS)
 
 
 
 
  44
  45struct pcie_link_state {
  46	struct pci_dev *pdev;		/* Upstream component of the Link */
  47	struct pci_dev *downstream;	/* Downstream component, function 0 */
  48	struct pcie_link_state *root;	/* pointer to the root port link */
  49	struct pcie_link_state *parent;	/* pointer to the parent Link state */
  50	struct list_head sibling;	/* node in link_list */
 
 
  51
  52	/* ASPM state */
  53	u32 aspm_support:7;		/* Supported ASPM state */
  54	u32 aspm_enabled:7;		/* Enabled ASPM state */
  55	u32 aspm_capable:7;		/* Capable ASPM state with latency */
  56	u32 aspm_default:7;		/* Default ASPM state by BIOS */
  57	u32 aspm_disable:7;		/* Disabled ASPM state */
  58
  59	/* Clock PM state */
  60	u32 clkpm_capable:1;		/* Clock PM capable? */
  61	u32 clkpm_enabled:1;		/* Current Clock PM state */
  62	u32 clkpm_default:1;		/* Default Clock PM state by BIOS */
  63	u32 clkpm_disable:1;		/* Clock PM disabled */
 
 
 
 
 
 
 
 
  64};
  65
  66static int aspm_disabled, aspm_force;
  67static bool aspm_support_enabled = true;
  68static DEFINE_MUTEX(aspm_lock);
  69static LIST_HEAD(link_list);
  70
  71#define POLICY_DEFAULT 0	/* BIOS default setting */
  72#define POLICY_PERFORMANCE 1	/* high performance */
  73#define POLICY_POWERSAVE 2	/* high power saving */
  74#define POLICY_POWER_SUPERSAVE 3 /* possibly even more power saving */
  75
  76#ifdef CONFIG_PCIEASPM_PERFORMANCE
  77static int aspm_policy = POLICY_PERFORMANCE;
  78#elif defined CONFIG_PCIEASPM_POWERSAVE
  79static int aspm_policy = POLICY_POWERSAVE;
  80#elif defined CONFIG_PCIEASPM_POWER_SUPERSAVE
  81static int aspm_policy = POLICY_POWER_SUPERSAVE;
  82#else
  83static int aspm_policy;
  84#endif
  85
  86static const char *policy_str[] = {
  87	[POLICY_DEFAULT] = "default",
  88	[POLICY_PERFORMANCE] = "performance",
  89	[POLICY_POWERSAVE] = "powersave",
  90	[POLICY_POWER_SUPERSAVE] = "powersupersave"
  91};
  92
  93#define LINK_RETRAIN_TIMEOUT HZ
  94
  95/*
  96 * The L1 PM substate capability is only implemented in function 0 in a
  97 * multi function device.
  98 */
  99static struct pci_dev *pci_function_0(struct pci_bus *linkbus)
 100{
 101	struct pci_dev *child;
 102
 103	list_for_each_entry(child, &linkbus->devices, bus_list)
 104		if (PCI_FUNC(child->devfn) == 0)
 105			return child;
 106	return NULL;
 107}
 108
 109static int policy_to_aspm_state(struct pcie_link_state *link)
 110{
 111	switch (aspm_policy) {
 112	case POLICY_PERFORMANCE:
 113		/* Disable ASPM and Clock PM */
 114		return 0;
 115	case POLICY_POWERSAVE:
 116		/* Enable ASPM L0s/L1 */
 117		return (ASPM_STATE_L0S | ASPM_STATE_L1);
 118	case POLICY_POWER_SUPERSAVE:
 119		/* Enable Everything */
 120		return ASPM_STATE_ALL;
 121	case POLICY_DEFAULT:
 122		return link->aspm_default;
 123	}
 124	return 0;
 125}
 126
 127static int policy_to_clkpm_state(struct pcie_link_state *link)
 128{
 129	switch (aspm_policy) {
 130	case POLICY_PERFORMANCE:
 131		/* Disable ASPM and Clock PM */
 132		return 0;
 133	case POLICY_POWERSAVE:
 134	case POLICY_POWER_SUPERSAVE:
 135		/* Enable Clock PM */
 136		return 1;
 137	case POLICY_DEFAULT:
 138		return link->clkpm_default;
 139	}
 140	return 0;
 141}
 142
 143static void pcie_set_clkpm_nocheck(struct pcie_link_state *link, int enable)
 144{
 145	struct pci_dev *child;
 146	struct pci_bus *linkbus = link->pdev->subordinate;
 147	u32 val = enable ? PCI_EXP_LNKCTL_CLKREQ_EN : 0;
 148
 149	list_for_each_entry(child, &linkbus->devices, bus_list)
 150		pcie_capability_clear_and_set_word(child, PCI_EXP_LNKCTL,
 151						   PCI_EXP_LNKCTL_CLKREQ_EN,
 152						   val);
 153	link->clkpm_enabled = !!enable;
 154}
 155
 156static void pcie_set_clkpm(struct pcie_link_state *link, int enable)
 157{
 158	/*
 159	 * Don't enable Clock PM if the link is not Clock PM capable
 160	 * or Clock PM is disabled
 161	 */
 162	if (!link->clkpm_capable || link->clkpm_disable)
 163		enable = 0;
 164	/* Need nothing if the specified equals to current state */
 165	if (link->clkpm_enabled == enable)
 166		return;
 167	pcie_set_clkpm_nocheck(link, enable);
 168}
 169
 170static void pcie_clkpm_cap_init(struct pcie_link_state *link, int blacklist)
 171{
 172	int capable = 1, enabled = 1;
 173	u32 reg32;
 174	u16 reg16;
 175	struct pci_dev *child;
 176	struct pci_bus *linkbus = link->pdev->subordinate;
 177
 178	/* All functions should have the same cap and state, take the worst */
 179	list_for_each_entry(child, &linkbus->devices, bus_list) {
 180		pcie_capability_read_dword(child, PCI_EXP_LNKCAP, &reg32);
 181		if (!(reg32 & PCI_EXP_LNKCAP_CLKPM)) {
 182			capable = 0;
 183			enabled = 0;
 184			break;
 185		}
 186		pcie_capability_read_word(child, PCI_EXP_LNKCTL, &reg16);
 187		if (!(reg16 & PCI_EXP_LNKCTL_CLKREQ_EN))
 188			enabled = 0;
 189	}
 190	link->clkpm_enabled = enabled;
 191	link->clkpm_default = enabled;
 192	link->clkpm_capable = capable;
 193	link->clkpm_disable = blacklist ? 1 : 0;
 194}
 195
 196static bool pcie_retrain_link(struct pcie_link_state *link)
 197{
 198	struct pci_dev *parent = link->pdev;
 199	unsigned long end_jiffies;
 200	u16 reg16;
 201
 202	pcie_capability_read_word(parent, PCI_EXP_LNKCTL, &reg16);
 203	reg16 |= PCI_EXP_LNKCTL_RL;
 204	pcie_capability_write_word(parent, PCI_EXP_LNKCTL, reg16);
 205	if (parent->clear_retrain_link) {
 206		/*
 207		 * Due to an erratum in some devices the Retrain Link bit
 208		 * needs to be cleared again manually to allow the link
 209		 * training to succeed.
 210		 */
 211		reg16 &= ~PCI_EXP_LNKCTL_RL;
 212		pcie_capability_write_word(parent, PCI_EXP_LNKCTL, reg16);
 213	}
 214
 215	/* Wait for link training end. Break out after waiting for timeout */
 216	end_jiffies = jiffies + LINK_RETRAIN_TIMEOUT;
 217	do {
 218		pcie_capability_read_word(parent, PCI_EXP_LNKSTA, &reg16);
 219		if (!(reg16 & PCI_EXP_LNKSTA_LT))
 220			break;
 221		msleep(1);
 222	} while (time_before(jiffies, end_jiffies));
 223	return !(reg16 & PCI_EXP_LNKSTA_LT);
 224}
 225
 226/*
 227 * pcie_aspm_configure_common_clock: check if the 2 ends of a link
 228 *   could use common clock. If they are, configure them to use the
 229 *   common clock. That will reduce the ASPM state exit latency.
 230 */
 231static void pcie_aspm_configure_common_clock(struct pcie_link_state *link)
 232{
 233	int same_clock = 1;
 234	u16 reg16, parent_reg, child_reg[8];
 
 235	struct pci_dev *child, *parent = link->pdev;
 236	struct pci_bus *linkbus = parent->subordinate;
 237	/*
 238	 * All functions of a slot should have the same Slot Clock
 239	 * Configuration, so just check one function
 240	 */
 241	child = list_entry(linkbus->devices.next, struct pci_dev, bus_list);
 242	BUG_ON(!pci_is_pcie(child));
 243
 244	/* Check downstream component if bit Slot Clock Configuration is 1 */
 245	pcie_capability_read_word(child, PCI_EXP_LNKSTA, &reg16);
 246	if (!(reg16 & PCI_EXP_LNKSTA_SLC))
 247		same_clock = 0;
 248
 249	/* Check upstream component if bit Slot Clock Configuration is 1 */
 250	pcie_capability_read_word(parent, PCI_EXP_LNKSTA, &reg16);
 251	if (!(reg16 & PCI_EXP_LNKSTA_SLC))
 252		same_clock = 0;
 253
 254	/* Port might be already in common clock mode */
 255	pcie_capability_read_word(parent, PCI_EXP_LNKCTL, &reg16);
 256	if (same_clock && (reg16 & PCI_EXP_LNKCTL_CCC)) {
 257		bool consistent = true;
 258
 259		list_for_each_entry(child, &linkbus->devices, bus_list) {
 260			pcie_capability_read_word(child, PCI_EXP_LNKCTL,
 261						  &reg16);
 262			if (!(reg16 & PCI_EXP_LNKCTL_CCC)) {
 263				consistent = false;
 264				break;
 265			}
 266		}
 267		if (consistent)
 268			return;
 269		pci_info(parent, "ASPM: current common clock configuration is inconsistent, reconfiguring\n");
 270	}
 271
 272	/* Configure downstream component, all functions */
 273	list_for_each_entry(child, &linkbus->devices, bus_list) {
 274		pcie_capability_read_word(child, PCI_EXP_LNKCTL, &reg16);
 275		child_reg[PCI_FUNC(child->devfn)] = reg16;
 276		if (same_clock)
 277			reg16 |= PCI_EXP_LNKCTL_CCC;
 278		else
 279			reg16 &= ~PCI_EXP_LNKCTL_CCC;
 280		pcie_capability_write_word(child, PCI_EXP_LNKCTL, reg16);
 281	}
 282
 283	/* Configure upstream component */
 284	pcie_capability_read_word(parent, PCI_EXP_LNKCTL, &reg16);
 285	parent_reg = reg16;
 286	if (same_clock)
 287		reg16 |= PCI_EXP_LNKCTL_CCC;
 288	else
 289		reg16 &= ~PCI_EXP_LNKCTL_CCC;
 290	pcie_capability_write_word(parent, PCI_EXP_LNKCTL, reg16);
 291
 292	if (pcie_retrain_link(link))
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 293		return;
 294
 295	/* Training failed. Restore common clock configurations */
 296	pci_err(parent, "ASPM: Could not configure common clock\n");
 297	list_for_each_entry(child, &linkbus->devices, bus_list)
 298		pcie_capability_write_word(child, PCI_EXP_LNKCTL,
 299					   child_reg[PCI_FUNC(child->devfn)]);
 300	pcie_capability_write_word(parent, PCI_EXP_LNKCTL, parent_reg);
 301}
 302
 303/* Convert L0s latency encoding to ns */
 304static u32 calc_l0s_latency(u32 lnkcap)
 305{
 306	u32 encoding = (lnkcap & PCI_EXP_LNKCAP_L0SEL) >> 12;
 307
 308	if (encoding == 0x7)
 309		return (5 * 1000);	/* > 4us */
 310	return (64 << encoding);
 311}
 312
 313/* Convert L0s acceptable latency encoding to ns */
 314static u32 calc_l0s_acceptable(u32 encoding)
 315{
 316	if (encoding == 0x7)
 317		return -1U;
 318	return (64 << encoding);
 319}
 320
 321/* Convert L1 latency encoding to ns */
 322static u32 calc_l1_latency(u32 lnkcap)
 323{
 324	u32 encoding = (lnkcap & PCI_EXP_LNKCAP_L1EL) >> 15;
 325
 326	if (encoding == 0x7)
 327		return (65 * 1000);	/* > 64us */
 328	return (1000 << encoding);
 329}
 330
 331/* Convert L1 acceptable latency encoding to ns */
 332static u32 calc_l1_acceptable(u32 encoding)
 333{
 334	if (encoding == 0x7)
 335		return -1U;
 336	return (1000 << encoding);
 337}
 338
 339/* Convert L1SS T_pwr encoding to usec */
 340static u32 calc_l1ss_pwron(struct pci_dev *pdev, u32 scale, u32 val)
 341{
 342	switch (scale) {
 343	case 0:
 344		return val * 2;
 345	case 1:
 346		return val * 10;
 347	case 2:
 348		return val * 100;
 349	}
 350	pci_err(pdev, "%s: Invalid T_PwrOn scale: %u\n", __func__, scale);
 351	return 0;
 352}
 353
 354/*
 355 * Encode an LTR_L1.2_THRESHOLD value for the L1 PM Substates Control 1
 356 * register.  Ports enter L1.2 when the most recent LTR value is greater
 357 * than or equal to LTR_L1.2_THRESHOLD, so we round up to make sure we
 358 * don't enter L1.2 too aggressively.
 359 *
 360 * See PCIe r6.0, sec 5.5.1, 6.18, 7.8.3.3.
 361 */
 362static void encode_l12_threshold(u32 threshold_us, u32 *scale, u32 *value)
 363{
 364	u64 threshold_ns = (u64) threshold_us * 1000;
 
 365
 366	/*
 367	 * LTR_L1.2_THRESHOLD_Value ("value") is a 10-bit field with max
 368	 * value of 0x3ff.
 369	 */
 370	if (threshold_ns <= 0x3ff * 1) {
 371		*scale = 0;		/* Value times 1ns */
 372		*value = threshold_ns;
 373	} else if (threshold_ns <= 0x3ff * 32) {
 374		*scale = 1;		/* Value times 32ns */
 375		*value = roundup(threshold_ns, 32) / 32;
 376	} else if (threshold_ns <= 0x3ff * 1024) {
 377		*scale = 2;		/* Value times 1024ns */
 378		*value = roundup(threshold_ns, 1024) / 1024;
 379	} else if (threshold_ns <= 0x3ff * 32768) {
 380		*scale = 3;		/* Value times 32768ns */
 381		*value = roundup(threshold_ns, 32768) / 32768;
 382	} else if (threshold_ns <= 0x3ff * 1048576) {
 383		*scale = 4;		/* Value times 1048576ns */
 384		*value = roundup(threshold_ns, 1048576) / 1048576;
 385	} else if (threshold_ns <= 0x3ff * (u64) 33554432) {
 386		*scale = 5;		/* Value times 33554432ns */
 387		*value = roundup(threshold_ns, 33554432) / 33554432;
 388	} else {
 389		*scale = 5;
 390		*value = 0x3ff;		/* Max representable value */
 391	}
 392}
 393
 394static void pcie_aspm_check_latency(struct pci_dev *endpoint)
 395{
 396	u32 latency, encoding, lnkcap_up, lnkcap_dw;
 397	u32 l1_switch_latency = 0, latency_up_l0s;
 398	u32 latency_up_l1, latency_dw_l0s, latency_dw_l1;
 399	u32 acceptable_l0s, acceptable_l1;
 400	struct pcie_link_state *link;
 401
 402	/* Device not in D0 doesn't need latency check */
 403	if ((endpoint->current_state != PCI_D0) &&
 404	    (endpoint->current_state != PCI_UNKNOWN))
 405		return;
 406
 407	link = endpoint->bus->self->link_state;
 408
 409	/* Calculate endpoint L0s acceptable latency */
 410	encoding = (endpoint->devcap & PCI_EXP_DEVCAP_L0S) >> 6;
 411	acceptable_l0s = calc_l0s_acceptable(encoding);
 412
 413	/* Calculate endpoint L1 acceptable latency */
 414	encoding = (endpoint->devcap & PCI_EXP_DEVCAP_L1) >> 9;
 415	acceptable_l1 = calc_l1_acceptable(encoding);
 416
 417	while (link) {
 418		struct pci_dev *dev = pci_function_0(link->pdev->subordinate);
 419
 420		/* Read direction exit latencies */
 421		pcie_capability_read_dword(link->pdev, PCI_EXP_LNKCAP,
 422					   &lnkcap_up);
 423		pcie_capability_read_dword(dev, PCI_EXP_LNKCAP,
 424					   &lnkcap_dw);
 425		latency_up_l0s = calc_l0s_latency(lnkcap_up);
 426		latency_up_l1 = calc_l1_latency(lnkcap_up);
 427		latency_dw_l0s = calc_l0s_latency(lnkcap_dw);
 428		latency_dw_l1 = calc_l1_latency(lnkcap_dw);
 429
 430		/* Check upstream direction L0s latency */
 431		if ((link->aspm_capable & ASPM_STATE_L0S_UP) &&
 432		    (latency_up_l0s > acceptable_l0s))
 433			link->aspm_capable &= ~ASPM_STATE_L0S_UP;
 434
 435		/* Check downstream direction L0s latency */
 436		if ((link->aspm_capable & ASPM_STATE_L0S_DW) &&
 437		    (latency_dw_l0s > acceptable_l0s))
 438			link->aspm_capable &= ~ASPM_STATE_L0S_DW;
 439		/*
 440		 * Check L1 latency.
 441		 * Every switch on the path to root complex need 1
 442		 * more microsecond for L1. Spec doesn't mention L0s.
 443		 *
 444		 * The exit latencies for L1 substates are not advertised
 445		 * by a device.  Since the spec also doesn't mention a way
 446		 * to determine max latencies introduced by enabling L1
 447		 * substates on the components, it is not clear how to do
 448		 * a L1 substate exit latency check.  We assume that the
 449		 * L1 exit latencies advertised by a device include L1
 450		 * substate latencies (and hence do not do any check).
 451		 */
 452		latency = max_t(u32, latency_up_l1, latency_dw_l1);
 453		if ((link->aspm_capable & ASPM_STATE_L1) &&
 454		    (latency + l1_switch_latency > acceptable_l1))
 455			link->aspm_capable &= ~ASPM_STATE_L1;
 456		l1_switch_latency += 1000;
 457
 458		link = link->parent;
 459	}
 460}
 461
 462static void pci_clear_and_set_dword(struct pci_dev *pdev, int pos,
 463				    u32 clear, u32 set)
 464{
 465	u32 val;
 466
 467	pci_read_config_dword(pdev, pos, &val);
 468	val &= ~clear;
 469	val |= set;
 470	pci_write_config_dword(pdev, pos, val);
 471}
 472
 473/* Calculate L1.2 PM substate timing parameters */
 474static void aspm_calc_l1ss_info(struct pcie_link_state *link,
 475				u32 parent_l1ss_cap, u32 child_l1ss_cap)
 476{
 477	struct pci_dev *child = link->downstream, *parent = link->pdev;
 478	u32 val1, val2, scale1, scale2;
 479	u32 t_common_mode, t_power_on, l1_2_threshold, scale, value;
 480	u32 ctl1 = 0, ctl2 = 0;
 481	u32 pctl1, pctl2, cctl1, cctl2;
 482	u32 pl1_2_enables, cl1_2_enables;
 483
 484	if (!(link->aspm_support & ASPM_STATE_L1_2_MASK))
 485		return;
 486
 487	/* Choose the greater of the two Port Common_Mode_Restore_Times */
 488	val1 = (parent_l1ss_cap & PCI_L1SS_CAP_CM_RESTORE_TIME) >> 8;
 489	val2 = (child_l1ss_cap & PCI_L1SS_CAP_CM_RESTORE_TIME) >> 8;
 490	t_common_mode = max(val1, val2);
 491
 492	/* Choose the greater of the two Port T_POWER_ON times */
 493	val1   = (parent_l1ss_cap & PCI_L1SS_CAP_P_PWR_ON_VALUE) >> 19;
 494	scale1 = (parent_l1ss_cap & PCI_L1SS_CAP_P_PWR_ON_SCALE) >> 16;
 495	val2   = (child_l1ss_cap & PCI_L1SS_CAP_P_PWR_ON_VALUE) >> 19;
 496	scale2 = (child_l1ss_cap & PCI_L1SS_CAP_P_PWR_ON_SCALE) >> 16;
 497
 498	if (calc_l1ss_pwron(parent, scale1, val1) >
 499	    calc_l1ss_pwron(child, scale2, val2)) {
 500		ctl2 |= scale1 | (val1 << 3);
 501		t_power_on = calc_l1ss_pwron(parent, scale1, val1);
 502	} else {
 503		ctl2 |= scale2 | (val2 << 3);
 504		t_power_on = calc_l1ss_pwron(child, scale2, val2);
 505	}
 506
 507	/*
 508	 * Set LTR_L1.2_THRESHOLD to the time required to transition the
 509	 * Link from L0 to L1.2 and back to L0 so we enter L1.2 only if
 510	 * downstream devices report (via LTR) that they can tolerate at
 511	 * least that much latency.
 512	 *
 513	 * Based on PCIe r3.1, sec 5.5.3.3.1, Figures 5-16 and 5-17, and
 514	 * Table 5-11.  T(POWER_OFF) is at most 2us and T(L1.2) is at
 515	 * least 4us.
 516	 */
 517	l1_2_threshold = 2 + 4 + t_common_mode + t_power_on;
 518	encode_l12_threshold(l1_2_threshold, &scale, &value);
 519	ctl1 |= t_common_mode << 8 | scale << 29 | value << 16;
 520
 521	/* Some broken devices only support dword access to L1 SS */
 522	pci_read_config_dword(parent, parent->l1ss + PCI_L1SS_CTL1, &pctl1);
 523	pci_read_config_dword(parent, parent->l1ss + PCI_L1SS_CTL2, &pctl2);
 524	pci_read_config_dword(child, child->l1ss + PCI_L1SS_CTL1, &cctl1);
 525	pci_read_config_dword(child, child->l1ss + PCI_L1SS_CTL2, &cctl2);
 526
 527	if (ctl1 == pctl1 && ctl1 == cctl1 &&
 528	    ctl2 == pctl2 && ctl2 == cctl2)
 529		return;
 530
 531	/* Disable L1.2 while updating.  See PCIe r5.0, sec 5.5.4, 7.8.3.3 */
 532	pl1_2_enables = pctl1 & PCI_L1SS_CTL1_L1_2_MASK;
 533	cl1_2_enables = cctl1 & PCI_L1SS_CTL1_L1_2_MASK;
 534
 535	if (pl1_2_enables || cl1_2_enables) {
 536		pci_clear_and_set_dword(child, child->l1ss + PCI_L1SS_CTL1,
 537					PCI_L1SS_CTL1_L1_2_MASK, 0);
 538		pci_clear_and_set_dword(parent, parent->l1ss + PCI_L1SS_CTL1,
 539					PCI_L1SS_CTL1_L1_2_MASK, 0);
 540	}
 541
 542	/* Program T_POWER_ON times in both ports */
 543	pci_write_config_dword(parent, parent->l1ss + PCI_L1SS_CTL2, ctl2);
 544	pci_write_config_dword(child, child->l1ss + PCI_L1SS_CTL2, ctl2);
 545
 546	/* Program Common_Mode_Restore_Time in upstream device */
 547	pci_clear_and_set_dword(parent, parent->l1ss + PCI_L1SS_CTL1,
 548				PCI_L1SS_CTL1_CM_RESTORE_TIME, ctl1);
 549
 550	/* Program LTR_L1.2_THRESHOLD time in both ports */
 551	pci_clear_and_set_dword(parent,	parent->l1ss + PCI_L1SS_CTL1,
 552				PCI_L1SS_CTL1_LTR_L12_TH_VALUE |
 553				PCI_L1SS_CTL1_LTR_L12_TH_SCALE, ctl1);
 554	pci_clear_and_set_dword(child, child->l1ss + PCI_L1SS_CTL1,
 555				PCI_L1SS_CTL1_LTR_L12_TH_VALUE |
 556				PCI_L1SS_CTL1_LTR_L12_TH_SCALE, ctl1);
 557
 558	if (pl1_2_enables || cl1_2_enables) {
 559		pci_clear_and_set_dword(parent, parent->l1ss + PCI_L1SS_CTL1, 0,
 560					pl1_2_enables);
 561		pci_clear_and_set_dword(child, child->l1ss + PCI_L1SS_CTL1, 0,
 562					cl1_2_enables);
 563	}
 564}
 565
 566static void aspm_l1ss_init(struct pcie_link_state *link)
 567{
 568	struct pci_dev *child = link->downstream, *parent = link->pdev;
 569	u32 parent_l1ss_cap, child_l1ss_cap;
 570	u32 parent_l1ss_ctl1 = 0, child_l1ss_ctl1 = 0;
 571
 572	if (!parent->l1ss || !child->l1ss)
 573		return;
 574
 575	/* Setup L1 substate */
 576	pci_read_config_dword(parent, parent->l1ss + PCI_L1SS_CAP,
 577			      &parent_l1ss_cap);
 578	pci_read_config_dword(child, child->l1ss + PCI_L1SS_CAP,
 579			      &child_l1ss_cap);
 580
 581	if (!(parent_l1ss_cap & PCI_L1SS_CAP_L1_PM_SS))
 582		parent_l1ss_cap = 0;
 583	if (!(child_l1ss_cap & PCI_L1SS_CAP_L1_PM_SS))
 584		child_l1ss_cap = 0;
 585
 586	/*
 587	 * If we don't have LTR for the entire path from the Root Complex
 588	 * to this device, we can't use ASPM L1.2 because it relies on the
 589	 * LTR_L1.2_THRESHOLD.  See PCIe r4.0, secs 5.5.4, 6.18.
 590	 */
 591	if (!child->ltr_path)
 592		child_l1ss_cap &= ~PCI_L1SS_CAP_ASPM_L1_2;
 593
 594	if (parent_l1ss_cap & child_l1ss_cap & PCI_L1SS_CAP_ASPM_L1_1)
 595		link->aspm_support |= ASPM_STATE_L1_1;
 596	if (parent_l1ss_cap & child_l1ss_cap & PCI_L1SS_CAP_ASPM_L1_2)
 597		link->aspm_support |= ASPM_STATE_L1_2;
 598	if (parent_l1ss_cap & child_l1ss_cap & PCI_L1SS_CAP_PCIPM_L1_1)
 599		link->aspm_support |= ASPM_STATE_L1_1_PCIPM;
 600	if (parent_l1ss_cap & child_l1ss_cap & PCI_L1SS_CAP_PCIPM_L1_2)
 601		link->aspm_support |= ASPM_STATE_L1_2_PCIPM;
 602
 603	if (parent_l1ss_cap)
 604		pci_read_config_dword(parent, parent->l1ss + PCI_L1SS_CTL1,
 605				      &parent_l1ss_ctl1);
 606	if (child_l1ss_cap)
 607		pci_read_config_dword(child, child->l1ss + PCI_L1SS_CTL1,
 608				      &child_l1ss_ctl1);
 609
 610	if (parent_l1ss_ctl1 & child_l1ss_ctl1 & PCI_L1SS_CTL1_ASPM_L1_1)
 611		link->aspm_enabled |= ASPM_STATE_L1_1;
 612	if (parent_l1ss_ctl1 & child_l1ss_ctl1 & PCI_L1SS_CTL1_ASPM_L1_2)
 613		link->aspm_enabled |= ASPM_STATE_L1_2;
 614	if (parent_l1ss_ctl1 & child_l1ss_ctl1 & PCI_L1SS_CTL1_PCIPM_L1_1)
 615		link->aspm_enabled |= ASPM_STATE_L1_1_PCIPM;
 616	if (parent_l1ss_ctl1 & child_l1ss_ctl1 & PCI_L1SS_CTL1_PCIPM_L1_2)
 617		link->aspm_enabled |= ASPM_STATE_L1_2_PCIPM;
 618
 619	if (link->aspm_support & ASPM_STATE_L1SS)
 620		aspm_calc_l1ss_info(link, parent_l1ss_cap, child_l1ss_cap);
 621}
 622
 623static void pcie_aspm_cap_init(struct pcie_link_state *link, int blacklist)
 624{
 625	struct pci_dev *child = link->downstream, *parent = link->pdev;
 626	u32 parent_lnkcap, child_lnkcap;
 627	u16 parent_lnkctl, child_lnkctl;
 628	struct pci_bus *linkbus = parent->subordinate;
 
 629
 630	if (blacklist) {
 631		/* Set enabled/disable so that we will disable ASPM later */
 632		link->aspm_enabled = ASPM_STATE_ALL;
 633		link->aspm_disable = ASPM_STATE_ALL;
 634		return;
 635	}
 636
 637	/*
 638	 * If ASPM not supported, don't mess with the clocks and link,
 639	 * bail out now.
 640	 */
 641	pcie_capability_read_dword(parent, PCI_EXP_LNKCAP, &parent_lnkcap);
 642	pcie_capability_read_dword(child, PCI_EXP_LNKCAP, &child_lnkcap);
 643	if (!(parent_lnkcap & child_lnkcap & PCI_EXP_LNKCAP_ASPMS))
 644		return;
 645
 646	/* Configure common clock before checking latencies */
 647	pcie_aspm_configure_common_clock(link);
 648
 649	/*
 650	 * Re-read upstream/downstream components' register state after
 651	 * clock configuration.  L0s & L1 exit latencies in the otherwise
 652	 * read-only Link Capabilities may change depending on common clock
 653	 * configuration (PCIe r5.0, sec 7.5.3.6).
 654	 */
 655	pcie_capability_read_dword(parent, PCI_EXP_LNKCAP, &parent_lnkcap);
 656	pcie_capability_read_dword(child, PCI_EXP_LNKCAP, &child_lnkcap);
 657	pcie_capability_read_word(parent, PCI_EXP_LNKCTL, &parent_lnkctl);
 658	pcie_capability_read_word(child, PCI_EXP_LNKCTL, &child_lnkctl);
 659
 660	/*
 661	 * Setup L0s state
 662	 *
 663	 * Note that we must not enable L0s in either direction on a
 664	 * given link unless components on both sides of the link each
 665	 * support L0s.
 666	 */
 667	if (parent_lnkcap & child_lnkcap & PCI_EXP_LNKCAP_ASPM_L0S)
 668		link->aspm_support |= ASPM_STATE_L0S;
 669
 670	if (child_lnkctl & PCI_EXP_LNKCTL_ASPM_L0S)
 671		link->aspm_enabled |= ASPM_STATE_L0S_UP;
 672	if (parent_lnkctl & PCI_EXP_LNKCTL_ASPM_L0S)
 673		link->aspm_enabled |= ASPM_STATE_L0S_DW;
 
 
 674
 675	/* Setup L1 state */
 676	if (parent_lnkcap & child_lnkcap & PCI_EXP_LNKCAP_ASPM_L1)
 677		link->aspm_support |= ASPM_STATE_L1;
 678
 679	if (parent_lnkctl & child_lnkctl & PCI_EXP_LNKCTL_ASPM_L1)
 680		link->aspm_enabled |= ASPM_STATE_L1;
 681
 682	aspm_l1ss_init(link);
 683
 684	/* Save default state */
 685	link->aspm_default = link->aspm_enabled;
 686
 687	/* Setup initial capable state. Will be updated later */
 688	link->aspm_capable = link->aspm_support;
 
 
 
 
 
 
 
 
 
 
 689
 690	/* Get and check endpoint acceptable latencies */
 691	list_for_each_entry(child, &linkbus->devices, bus_list) {
 
 
 
 
 692		if (pci_pcie_type(child) != PCI_EXP_TYPE_ENDPOINT &&
 693		    pci_pcie_type(child) != PCI_EXP_TYPE_LEG_END)
 694			continue;
 695
 
 
 
 
 
 
 
 
 696		pcie_aspm_check_latency(child);
 697	}
 698}
 699
 700/* Configure the ASPM L1 substates */
 701static void pcie_config_aspm_l1ss(struct pcie_link_state *link, u32 state)
 702{
 703	u32 val, enable_req;
 704	struct pci_dev *child = link->downstream, *parent = link->pdev;
 705
 706	enable_req = (link->aspm_enabled ^ state) & state;
 707
 708	/*
 709	 * Here are the rules specified in the PCIe spec for enabling L1SS:
 710	 * - When enabling L1.x, enable bit at parent first, then at child
 711	 * - When disabling L1.x, disable bit at child first, then at parent
 712	 * - When enabling ASPM L1.x, need to disable L1
 713	 *   (at child followed by parent).
 714	 * - The ASPM/PCIPM L1.2 must be disabled while programming timing
 715	 *   parameters
 716	 *
 717	 * To keep it simple, disable all L1SS bits first, and later enable
 718	 * what is needed.
 719	 */
 720
 721	/* Disable all L1 substates */
 722	pci_clear_and_set_dword(child, child->l1ss + PCI_L1SS_CTL1,
 723				PCI_L1SS_CTL1_L1SS_MASK, 0);
 724	pci_clear_and_set_dword(parent, parent->l1ss + PCI_L1SS_CTL1,
 725				PCI_L1SS_CTL1_L1SS_MASK, 0);
 726	/*
 727	 * If needed, disable L1, and it gets enabled later
 728	 * in pcie_config_aspm_link().
 729	 */
 730	if (enable_req & (ASPM_STATE_L1_1 | ASPM_STATE_L1_2)) {
 731		pcie_capability_clear_and_set_word(child, PCI_EXP_LNKCTL,
 732						   PCI_EXP_LNKCTL_ASPM_L1, 0);
 733		pcie_capability_clear_and_set_word(parent, PCI_EXP_LNKCTL,
 734						   PCI_EXP_LNKCTL_ASPM_L1, 0);
 735	}
 736
 737	val = 0;
 738	if (state & ASPM_STATE_L1_1)
 739		val |= PCI_L1SS_CTL1_ASPM_L1_1;
 740	if (state & ASPM_STATE_L1_2)
 741		val |= PCI_L1SS_CTL1_ASPM_L1_2;
 742	if (state & ASPM_STATE_L1_1_PCIPM)
 743		val |= PCI_L1SS_CTL1_PCIPM_L1_1;
 744	if (state & ASPM_STATE_L1_2_PCIPM)
 745		val |= PCI_L1SS_CTL1_PCIPM_L1_2;
 746
 747	/* Enable what we need to enable */
 748	pci_clear_and_set_dword(parent, parent->l1ss + PCI_L1SS_CTL1,
 749				PCI_L1SS_CTL1_L1SS_MASK, val);
 750	pci_clear_and_set_dword(child, child->l1ss + PCI_L1SS_CTL1,
 751				PCI_L1SS_CTL1_L1SS_MASK, val);
 752}
 753
 754static void pcie_config_aspm_dev(struct pci_dev *pdev, u32 val)
 755{
 756	pcie_capability_clear_and_set_word(pdev, PCI_EXP_LNKCTL,
 757					   PCI_EXP_LNKCTL_ASPMC, val);
 758}
 759
 760static void pcie_config_aspm_link(struct pcie_link_state *link, u32 state)
 761{
 762	u32 upstream = 0, dwstream = 0;
 763	struct pci_dev *child = link->downstream, *parent = link->pdev;
 764	struct pci_bus *linkbus = parent->subordinate;
 765
 766	/* Enable only the states that were not explicitly disabled */
 767	state &= (link->aspm_capable & ~link->aspm_disable);
 768
 769	/* Can't enable any substates if L1 is not enabled */
 770	if (!(state & ASPM_STATE_L1))
 771		state &= ~ASPM_STATE_L1SS;
 772
 773	/* Spec says both ports must be in D0 before enabling PCI PM substates*/
 774	if (parent->current_state != PCI_D0 || child->current_state != PCI_D0) {
 775		state &= ~ASPM_STATE_L1_SS_PCIPM;
 776		state |= (link->aspm_enabled & ASPM_STATE_L1_SS_PCIPM);
 777	}
 778
 779	/* Nothing to do if the link is already in the requested state */
 780	if (link->aspm_enabled == state)
 781		return;
 782	/* Convert ASPM state to upstream/downstream ASPM register state */
 783	if (state & ASPM_STATE_L0S_UP)
 784		dwstream |= PCI_EXP_LNKCTL_ASPM_L0S;
 785	if (state & ASPM_STATE_L0S_DW)
 786		upstream |= PCI_EXP_LNKCTL_ASPM_L0S;
 787	if (state & ASPM_STATE_L1) {
 788		upstream |= PCI_EXP_LNKCTL_ASPM_L1;
 789		dwstream |= PCI_EXP_LNKCTL_ASPM_L1;
 790	}
 791
 792	if (link->aspm_capable & ASPM_STATE_L1SS)
 793		pcie_config_aspm_l1ss(link, state);
 794
 795	/*
 796	 * Spec 2.0 suggests all functions should be configured the
 797	 * same setting for ASPM. Enabling ASPM L1 should be done in
 798	 * upstream component first and then downstream, and vice
 799	 * versa for disabling ASPM L1. Spec doesn't mention L0S.
 800	 */
 801	if (state & ASPM_STATE_L1)
 802		pcie_config_aspm_dev(parent, upstream);
 803	list_for_each_entry(child, &linkbus->devices, bus_list)
 804		pcie_config_aspm_dev(child, dwstream);
 805	if (!(state & ASPM_STATE_L1))
 806		pcie_config_aspm_dev(parent, upstream);
 807
 808	link->aspm_enabled = state;
 809}
 810
 811static void pcie_config_aspm_path(struct pcie_link_state *link)
 812{
 813	while (link) {
 814		pcie_config_aspm_link(link, policy_to_aspm_state(link));
 815		link = link->parent;
 816	}
 817}
 818
 819static void free_link_state(struct pcie_link_state *link)
 820{
 821	link->pdev->link_state = NULL;
 822	kfree(link);
 823}
 824
 825static int pcie_aspm_sanity_check(struct pci_dev *pdev)
 826{
 827	struct pci_dev *child;
 828	u32 reg32;
 829
 830	/*
 831	 * Some functions in a slot might not all be PCIe functions,
 832	 * very strange. Disable ASPM for the whole slot
 833	 */
 834	list_for_each_entry(child, &pdev->subordinate->devices, bus_list) {
 835		if (!pci_is_pcie(child))
 836			return -EINVAL;
 837
 838		/*
 839		 * If ASPM is disabled then we're not going to change
 840		 * the BIOS state. It's safe to continue even if it's a
 841		 * pre-1.1 device
 842		 */
 843
 844		if (aspm_disabled)
 845			continue;
 846
 847		/*
 848		 * Disable ASPM for pre-1.1 PCIe device, we follow MS to use
 849		 * RBER bit to determine if a function is 1.1 version device
 850		 */
 851		pcie_capability_read_dword(child, PCI_EXP_DEVCAP, &reg32);
 852		if (!(reg32 & PCI_EXP_DEVCAP_RBER) && !aspm_force) {
 853			pci_info(child, "disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'\n");
 854			return -EINVAL;
 855		}
 856	}
 857	return 0;
 858}
 859
 860static struct pcie_link_state *alloc_pcie_link_state(struct pci_dev *pdev)
 861{
 862	struct pcie_link_state *link;
 863
 864	link = kzalloc(sizeof(*link), GFP_KERNEL);
 865	if (!link)
 866		return NULL;
 867
 868	INIT_LIST_HEAD(&link->sibling);
 
 
 869	link->pdev = pdev;
 870	link->downstream = pci_function_0(pdev->subordinate);
 871
 872	/*
 873	 * Root Ports and PCI/PCI-X to PCIe Bridges are roots of PCIe
 874	 * hierarchies.  Note that some PCIe host implementations omit
 875	 * the root ports entirely, in which case a downstream port on
 876	 * a switch may become the root of the link state chain for all
 877	 * its subordinate endpoints.
 878	 */
 879	if (pci_pcie_type(pdev) == PCI_EXP_TYPE_ROOT_PORT ||
 880	    pci_pcie_type(pdev) == PCI_EXP_TYPE_PCIE_BRIDGE ||
 881	    !pdev->bus->parent->self) {
 882		link->root = link;
 883	} else {
 884		struct pcie_link_state *parent;
 885
 886		parent = pdev->bus->parent->self->link_state;
 887		if (!parent) {
 888			kfree(link);
 889			return NULL;
 890		}
 891
 892		link->parent = parent;
 
 
 
 
 
 
 893		link->root = link->parent->root;
 894	}
 895
 896	list_add(&link->sibling, &link_list);
 897	pdev->link_state = link;
 898	return link;
 899}
 900
 901static void pcie_aspm_update_sysfs_visibility(struct pci_dev *pdev)
 902{
 903	struct pci_dev *child;
 904
 905	list_for_each_entry(child, &pdev->subordinate->devices, bus_list)
 906		sysfs_update_group(&child->dev.kobj, &aspm_ctrl_attr_group);
 907}
 908
 909/*
 910 * pcie_aspm_init_link_state: Initiate PCI express link state.
 911 * It is called after the pcie and its children devices are scanned.
 912 * @pdev: the root port or switch downstream port
 913 */
 914void pcie_aspm_init_link_state(struct pci_dev *pdev)
 915{
 916	struct pcie_link_state *link;
 917	int blacklist = !!pcie_aspm_sanity_check(pdev);
 918
 919	if (!aspm_support_enabled)
 920		return;
 921
 922	if (pdev->link_state)
 923		return;
 924
 925	/*
 926	 * We allocate pcie_link_state for the component on the upstream
 927	 * end of a Link, so there's nothing to do unless this device is
 928	 * downstream port.
 929	 */
 930	if (!pcie_downstream_port(pdev))
 931		return;
 932
 933	/* VIA has a strange chipset, root port is under a bridge */
 934	if (pci_pcie_type(pdev) == PCI_EXP_TYPE_ROOT_PORT &&
 935	    pdev->bus->self)
 936		return;
 937
 938	down_read(&pci_bus_sem);
 939	if (list_empty(&pdev->subordinate->devices))
 940		goto out;
 941
 942	mutex_lock(&aspm_lock);
 943	link = alloc_pcie_link_state(pdev);
 944	if (!link)
 945		goto unlock;
 946	/*
 947	 * Setup initial ASPM state. Note that we need to configure
 948	 * upstream links also because capable state of them can be
 949	 * update through pcie_aspm_cap_init().
 950	 */
 951	pcie_aspm_cap_init(link, blacklist);
 952
 953	/* Setup initial Clock PM state */
 954	pcie_clkpm_cap_init(link, blacklist);
 955
 956	/*
 957	 * At this stage drivers haven't had an opportunity to change the
 958	 * link policy setting. Enabling ASPM on broken hardware can cripple
 959	 * it even before the driver has had a chance to disable ASPM, so
 960	 * default to a safe level right now. If we're enabling ASPM beyond
 961	 * the BIOS's expectation, we'll do so once pci_enable_device() is
 962	 * called.
 963	 */
 964	if (aspm_policy != POLICY_POWERSAVE &&
 965	    aspm_policy != POLICY_POWER_SUPERSAVE) {
 966		pcie_config_aspm_path(link);
 967		pcie_set_clkpm(link, policy_to_clkpm_state(link));
 968	}
 969
 970	pcie_aspm_update_sysfs_visibility(pdev);
 971
 972unlock:
 973	mutex_unlock(&aspm_lock);
 974out:
 975	up_read(&pci_bus_sem);
 976}
 977
 978/* Recheck latencies and update aspm_capable for links under the root */
 979static void pcie_update_aspm_capable(struct pcie_link_state *root)
 980{
 981	struct pcie_link_state *link;
 982	BUG_ON(root->parent);
 983	list_for_each_entry(link, &link_list, sibling) {
 984		if (link->root != root)
 985			continue;
 986		link->aspm_capable = link->aspm_support;
 987	}
 988	list_for_each_entry(link, &link_list, sibling) {
 989		struct pci_dev *child;
 990		struct pci_bus *linkbus = link->pdev->subordinate;
 991		if (link->root != root)
 992			continue;
 993		list_for_each_entry(child, &linkbus->devices, bus_list) {
 994			if ((pci_pcie_type(child) != PCI_EXP_TYPE_ENDPOINT) &&
 995			    (pci_pcie_type(child) != PCI_EXP_TYPE_LEG_END))
 996				continue;
 997			pcie_aspm_check_latency(child);
 998		}
 999	}
1000}
1001
1002/* @pdev: the endpoint device */
1003void pcie_aspm_exit_link_state(struct pci_dev *pdev)
1004{
1005	struct pci_dev *parent = pdev->bus->self;
1006	struct pcie_link_state *link, *root, *parent_link;
1007
1008	if (!parent || !parent->link_state)
1009		return;
1010
1011	down_read(&pci_bus_sem);
1012	mutex_lock(&aspm_lock);
1013	/*
1014	 * All PCIe functions are in one slot, remove one function will remove
1015	 * the whole slot, so just wait until we are the last function left.
1016	 */
1017	if (!list_empty(&parent->subordinate->devices))
1018		goto out;
1019
1020	link = parent->link_state;
1021	root = link->root;
1022	parent_link = link->parent;
1023
1024	/* All functions are removed, so just disable ASPM for the link */
1025	pcie_config_aspm_link(link, 0);
1026	list_del(&link->sibling);
 
1027	/* Clock PM is for endpoint device */
1028	free_link_state(link);
1029
1030	/* Recheck latencies and configure upstream links */
1031	if (parent_link) {
1032		pcie_update_aspm_capable(root);
1033		pcie_config_aspm_path(parent_link);
1034	}
1035out:
1036	mutex_unlock(&aspm_lock);
1037	up_read(&pci_bus_sem);
1038}
1039
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1040void pcie_aspm_powersave_config_link(struct pci_dev *pdev)
1041{
1042	struct pcie_link_state *link = pdev->link_state;
1043
1044	if (aspm_disabled || !link)
1045		return;
1046
1047	if (aspm_policy != POLICY_POWERSAVE &&
1048	    aspm_policy != POLICY_POWER_SUPERSAVE)
1049		return;
1050
1051	down_read(&pci_bus_sem);
1052	mutex_lock(&aspm_lock);
1053	pcie_config_aspm_path(link);
1054	pcie_set_clkpm(link, policy_to_clkpm_state(link));
1055	mutex_unlock(&aspm_lock);
1056	up_read(&pci_bus_sem);
1057}
1058
1059static struct pcie_link_state *pcie_aspm_get_link(struct pci_dev *pdev)
1060{
1061	struct pci_dev *bridge;
 
1062
1063	if (!pci_is_pcie(pdev))
1064		return NULL;
1065
1066	bridge = pci_upstream_bridge(pdev);
1067	if (!bridge || !pci_is_pcie(bridge))
1068		return NULL;
1069
1070	return bridge->link_state;
1071}
1072
1073static int __pci_disable_link_state(struct pci_dev *pdev, int state, bool sem)
1074{
1075	struct pcie_link_state *link = pcie_aspm_get_link(pdev);
1076
1077	if (!link)
1078		return -EINVAL;
1079	/*
1080	 * A driver requested that ASPM be disabled on this device, but
1081	 * if we don't have permission to manage ASPM (e.g., on ACPI
1082	 * systems we have to observe the FADT ACPI_FADT_NO_ASPM bit and
1083	 * the _OSC method), we can't honor that request.  Windows has
1084	 * a similar mechanism using "PciASPMOptOut", which is also
1085	 * ignored in this situation.
1086	 */
1087	if (aspm_disabled) {
1088		pci_warn(pdev, "can't disable ASPM; OS doesn't have ASPM control\n");
1089		return -EPERM;
1090	}
1091
1092	if (sem)
1093		down_read(&pci_bus_sem);
1094	mutex_lock(&aspm_lock);
 
1095	if (state & PCIE_LINK_STATE_L0S)
1096		link->aspm_disable |= ASPM_STATE_L0S;
1097	if (state & PCIE_LINK_STATE_L1)
1098		/* L1 PM substates require L1 */
1099		link->aspm_disable |= ASPM_STATE_L1 | ASPM_STATE_L1SS;
1100	if (state & PCIE_LINK_STATE_L1_1)
1101		link->aspm_disable |= ASPM_STATE_L1_1;
1102	if (state & PCIE_LINK_STATE_L1_2)
1103		link->aspm_disable |= ASPM_STATE_L1_2;
1104	if (state & PCIE_LINK_STATE_L1_1_PCIPM)
1105		link->aspm_disable |= ASPM_STATE_L1_1_PCIPM;
1106	if (state & PCIE_LINK_STATE_L1_2_PCIPM)
1107		link->aspm_disable |= ASPM_STATE_L1_2_PCIPM;
1108	pcie_config_aspm_link(link, policy_to_aspm_state(link));
1109
1110	if (state & PCIE_LINK_STATE_CLKPM)
1111		link->clkpm_disable = 1;
1112	pcie_set_clkpm(link, policy_to_clkpm_state(link));
 
1113	mutex_unlock(&aspm_lock);
1114	if (sem)
1115		up_read(&pci_bus_sem);
1116
1117	return 0;
1118}
1119
1120int pci_disable_link_state_locked(struct pci_dev *pdev, int state)
1121{
1122	return __pci_disable_link_state(pdev, state, false);
1123}
1124EXPORT_SYMBOL(pci_disable_link_state_locked);
1125
1126/**
1127 * pci_disable_link_state - Disable device's link state, so the link will
1128 * never enter specific states.  Note that if the BIOS didn't grant ASPM
1129 * control to the OS, this does nothing because we can't touch the LNKCTL
1130 * register. Returns 0 or a negative errno.
1131 *
1132 * @pdev: PCI device
1133 * @state: ASPM link state to disable
1134 */
1135int pci_disable_link_state(struct pci_dev *pdev, int state)
1136{
1137	return __pci_disable_link_state(pdev, state, true);
1138}
1139EXPORT_SYMBOL(pci_disable_link_state);
1140
1141static int pcie_aspm_set_policy(const char *val,
1142				const struct kernel_param *kp)
1143{
1144	int i;
1145	struct pcie_link_state *link;
1146
1147	if (aspm_disabled)
1148		return -EPERM;
1149	i = sysfs_match_string(policy_str, val);
1150	if (i < 0)
1151		return i;
 
 
1152	if (i == aspm_policy)
1153		return 0;
1154
1155	down_read(&pci_bus_sem);
1156	mutex_lock(&aspm_lock);
1157	aspm_policy = i;
1158	list_for_each_entry(link, &link_list, sibling) {
1159		pcie_config_aspm_link(link, policy_to_aspm_state(link));
1160		pcie_set_clkpm(link, policy_to_clkpm_state(link));
1161	}
1162	mutex_unlock(&aspm_lock);
1163	up_read(&pci_bus_sem);
1164	return 0;
1165}
1166
1167static int pcie_aspm_get_policy(char *buffer, const struct kernel_param *kp)
1168{
1169	int i, cnt = 0;
1170	for (i = 0; i < ARRAY_SIZE(policy_str); i++)
1171		if (i == aspm_policy)
1172			cnt += sprintf(buffer + cnt, "[%s] ", policy_str[i]);
1173		else
1174			cnt += sprintf(buffer + cnt, "%s ", policy_str[i]);
1175	cnt += sprintf(buffer + cnt, "\n");
1176	return cnt;
1177}
1178
1179module_param_call(policy, pcie_aspm_set_policy, pcie_aspm_get_policy,
1180	NULL, 0644);
1181
1182/**
1183 * pcie_aspm_enabled - Check if PCIe ASPM has been enabled for a device.
1184 * @pdev: Target device.
1185 *
1186 * Relies on the upstream bridge's link_state being valid.  The link_state
1187 * is deallocated only when the last child of the bridge (i.e., @pdev or a
1188 * sibling) is removed, and the caller should be holding a reference to
1189 * @pdev, so this should be safe.
1190 */
1191bool pcie_aspm_enabled(struct pci_dev *pdev)
1192{
1193	struct pcie_link_state *link = pcie_aspm_get_link(pdev);
1194
1195	if (!link)
1196		return false;
1197
1198	return link->aspm_enabled;
1199}
1200EXPORT_SYMBOL_GPL(pcie_aspm_enabled);
1201
1202static ssize_t aspm_attr_show_common(struct device *dev,
1203				     struct device_attribute *attr,
1204				     char *buf, u8 state)
 
1205{
1206	struct pci_dev *pdev = to_pci_dev(dev);
1207	struct pcie_link_state *link = pcie_aspm_get_link(pdev);
 
1208
1209	return sysfs_emit(buf, "%d\n", (link->aspm_enabled & state) ? 1 : 0);
1210}
1211
1212static ssize_t aspm_attr_store_common(struct device *dev,
1213				      struct device_attribute *attr,
1214				      const char *buf, size_t len, u8 state)
1215{
1216	struct pci_dev *pdev = to_pci_dev(dev);
1217	struct pcie_link_state *link = pcie_aspm_get_link(pdev);
1218	bool state_enable;
1219
1220	if (kstrtobool(buf, &state_enable) < 0)
1221		return -EINVAL;
1222
1223	down_read(&pci_bus_sem);
1224	mutex_lock(&aspm_lock);
1225
1226	if (state_enable) {
1227		link->aspm_disable &= ~state;
1228		/* need to enable L1 for substates */
1229		if (state & ASPM_STATE_L1SS)
1230			link->aspm_disable &= ~ASPM_STATE_L1;
1231	} else {
1232		link->aspm_disable |= state;
1233	}
1234
1235	pcie_config_aspm_link(link, policy_to_aspm_state(link));
1236
1237	mutex_unlock(&aspm_lock);
1238	up_read(&pci_bus_sem);
1239
1240	return len;
1241}
1242
1243#define ASPM_ATTR(_f, _s)						\
1244static ssize_t _f##_show(struct device *dev,				\
1245			 struct device_attribute *attr, char *buf)	\
1246{ return aspm_attr_show_common(dev, attr, buf, ASPM_STATE_##_s); }	\
1247									\
1248static ssize_t _f##_store(struct device *dev,				\
1249			  struct device_attribute *attr,		\
1250			  const char *buf, size_t len)			\
1251{ return aspm_attr_store_common(dev, attr, buf, len, ASPM_STATE_##_s); }
1252
1253ASPM_ATTR(l0s_aspm, L0S)
1254ASPM_ATTR(l1_aspm, L1)
1255ASPM_ATTR(l1_1_aspm, L1_1)
1256ASPM_ATTR(l1_2_aspm, L1_2)
1257ASPM_ATTR(l1_1_pcipm, L1_1_PCIPM)
1258ASPM_ATTR(l1_2_pcipm, L1_2_PCIPM)
1259
1260static ssize_t clkpm_show(struct device *dev,
1261			  struct device_attribute *attr, char *buf)
1262{
1263	struct pci_dev *pdev = to_pci_dev(dev);
1264	struct pcie_link_state *link = pcie_aspm_get_link(pdev);
1265
1266	return sysfs_emit(buf, "%d\n", link->clkpm_enabled);
1267}
1268
1269static ssize_t clkpm_store(struct device *dev,
1270			   struct device_attribute *attr,
1271			   const char *buf, size_t len)
 
1272{
1273	struct pci_dev *pdev = to_pci_dev(dev);
1274	struct pcie_link_state *link = pcie_aspm_get_link(pdev);
1275	bool state_enable;
1276
1277	if (kstrtobool(buf, &state_enable) < 0)
1278		return -EINVAL;
1279
1280	down_read(&pci_bus_sem);
1281	mutex_lock(&aspm_lock);
1282
1283	link->clkpm_disable = !state_enable;
1284	pcie_set_clkpm(link, policy_to_clkpm_state(link));
1285
1286	mutex_unlock(&aspm_lock);
1287	up_read(&pci_bus_sem);
1288
1289	return len;
1290}
1291
1292static DEVICE_ATTR_RW(clkpm);
1293static DEVICE_ATTR_RW(l0s_aspm);
1294static DEVICE_ATTR_RW(l1_aspm);
1295static DEVICE_ATTR_RW(l1_1_aspm);
1296static DEVICE_ATTR_RW(l1_2_aspm);
1297static DEVICE_ATTR_RW(l1_1_pcipm);
1298static DEVICE_ATTR_RW(l1_2_pcipm);
1299
1300static struct attribute *aspm_ctrl_attrs[] = {
1301	&dev_attr_clkpm.attr,
1302	&dev_attr_l0s_aspm.attr,
1303	&dev_attr_l1_aspm.attr,
1304	&dev_attr_l1_1_aspm.attr,
1305	&dev_attr_l1_2_aspm.attr,
1306	&dev_attr_l1_1_pcipm.attr,
1307	&dev_attr_l1_2_pcipm.attr,
1308	NULL
1309};
1310
1311static umode_t aspm_ctrl_attrs_are_visible(struct kobject *kobj,
1312					   struct attribute *a, int n)
1313{
1314	struct device *dev = kobj_to_dev(kobj);
1315	struct pci_dev *pdev = to_pci_dev(dev);
1316	struct pcie_link_state *link = pcie_aspm_get_link(pdev);
1317	static const u8 aspm_state_map[] = {
1318		ASPM_STATE_L0S,
1319		ASPM_STATE_L1,
1320		ASPM_STATE_L1_1,
1321		ASPM_STATE_L1_2,
1322		ASPM_STATE_L1_1_PCIPM,
1323		ASPM_STATE_L1_2_PCIPM,
1324	};
 
1325
1326	if (aspm_disabled || !link)
1327		return 0;
 
1328
1329	if (n == 0)
1330		return link->clkpm_capable ? a->mode : 0;
1331
1332	return link->aspm_capable & aspm_state_map[n - 1] ? a->mode : 0;
 
 
 
 
 
1333}
1334
1335const struct attribute_group aspm_ctrl_attr_group = {
1336	.name = "link",
1337	.attrs = aspm_ctrl_attrs,
1338	.is_visible = aspm_ctrl_attrs_are_visible,
1339};
1340
1341static int __init pcie_aspm_disable(char *str)
1342{
1343	if (!strcmp(str, "off")) {
1344		aspm_policy = POLICY_DEFAULT;
1345		aspm_disabled = 1;
1346		aspm_support_enabled = false;
1347		printk(KERN_INFO "PCIe ASPM is disabled\n");
1348	} else if (!strcmp(str, "force")) {
1349		aspm_force = 1;
1350		printk(KERN_INFO "PCIe ASPM is forcibly enabled\n");
1351	}
1352	return 1;
1353}
1354
1355__setup("pcie_aspm=", pcie_aspm_disable);
1356
1357void pcie_no_aspm(void)
1358{
1359	/*
1360	 * Disabling ASPM is intended to prevent the kernel from modifying
1361	 * existing hardware state, not to clear existing state. To that end:
1362	 * (a) set policy to POLICY_DEFAULT in order to avoid changing state
1363	 * (b) prevent userspace from changing policy
1364	 */
1365	if (!aspm_force) {
1366		aspm_policy = POLICY_DEFAULT;
1367		aspm_disabled = 1;
1368	}
1369}
1370
1371bool pcie_aspm_support_enabled(void)
1372{
1373	return aspm_support_enabled;
1374}