aspm.c 27.3 KB
Newer Older
S
Shaohua Li 已提交
1 2
/*
 * File:	drivers/pci/pcie/aspm.c
3
 * Enabling PCIe link L0s/L1 state and Clock Power Management
S
Shaohua Li 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 *
 * Copyright (C) 2007 Intel
 * Copyright (C) Zhang Yanmin (yanmin.zhang@intel.com)
 * Copyright (C) Shaohua Li (shaohua.li@intel.com)
 */

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/pci.h>
#include <linux/pci_regs.h>
#include <linux/errno.h>
#include <linux/pm.h>
#include <linux/init.h>
#include <linux/slab.h>
19
#include <linux/jiffies.h>
20
#include <linux/delay.h>
S
Shaohua Li 已提交
21 22 23 24 25 26 27 28
#include <linux/pci-aspm.h>
#include "../pci.h"

#ifdef MODULE_PARAM_PREFIX
#undef MODULE_PARAM_PREFIX
#endif
#define MODULE_PARAM_PREFIX "pcie_aspm."

29 30 31 32
/* Note: those are not register definitions */
#define ASPM_STATE_L0S_UP	(1)	/* Upstream direction L0s state */
#define ASPM_STATE_L0S_DW	(2)	/* Downstream direction L0s state */
#define ASPM_STATE_L1		(4)	/* L1 state */
33 34 35 36 37 38 39 40
#define ASPM_STATE_L1_1		(8)	/* ASPM L1.1 state */
#define ASPM_STATE_L1_2		(0x10)	/* ASPM L1.2 state */
#define ASPM_STATE_L1_1_PCIPM	(0x20)	/* PCI PM L1.1 state */
#define ASPM_STATE_L1_2_PCIPM	(0x40)	/* PCI PM L1.2 state */
#define ASPM_STATE_L1_SS_PCIPM	(ASPM_STATE_L1_1_PCIPM | ASPM_STATE_L1_2_PCIPM)
#define ASPM_STATE_L1_2_MASK	(ASPM_STATE_L1_2 | ASPM_STATE_L1_2_PCIPM)
#define ASPM_STATE_L1SS		(ASPM_STATE_L1_1 | ASPM_STATE_L1_1_PCIPM |\
				 ASPM_STATE_L1_2_MASK)
41
#define ASPM_STATE_L0S		(ASPM_STATE_L0S_UP | ASPM_STATE_L0S_DW)
42 43
#define ASPM_STATE_ALL		(ASPM_STATE_L0S | ASPM_STATE_L1 |	\
				 ASPM_STATE_L1SS)
44

45 46 47
struct aspm_latency {
	u32 l0s;			/* L0s latency (nsec) */
	u32 l1;				/* L1 latency (nsec) */
S
Shaohua Li 已提交
48 49 50
};

struct pcie_link_state {
51
	struct pci_dev *pdev;		/* Upstream component of the Link */
52
	struct pcie_link_state *root;	/* pointer to the root port link */
53 54 55 56
	struct pcie_link_state *parent;	/* pointer to the parent Link state */
	struct list_head sibling;	/* node in link_list */
	struct list_head children;	/* list of child link states */
	struct list_head link;		/* node in parent's children list */
S
Shaohua Li 已提交
57 58

	/* ASPM state */
59 60 61 62 63
	u32 aspm_support:7;		/* Supported ASPM state */
	u32 aspm_enabled:7;		/* Enabled ASPM state */
	u32 aspm_capable:7;		/* Capable ASPM state with latency */
	u32 aspm_default:7;		/* Default ASPM state by BIOS */
	u32 aspm_disable:7;		/* Disabled ASPM state */
64

65 66 67 68 69
	/* Clock PM state */
	u32 clkpm_capable:1;		/* Clock PM capable? */
	u32 clkpm_enabled:1;		/* Current Clock PM state */
	u32 clkpm_default:1;		/* Default Clock PM state by BIOS */

70 71 72
	/* Exit latencies */
	struct aspm_latency latency_up;	/* Upstream direction exit latency */
	struct aspm_latency latency_dw;	/* Downstream direction exit latency */
S
Shaohua Li 已提交
73
	/*
74 75
	 * Endpoint acceptable latencies. A pcie downstream port only
	 * has one slot under it, so at most there are 8 functions.
S
Shaohua Li 已提交
76
	 */
77
	struct aspm_latency acceptable[8];
S
Shaohua Li 已提交
78 79
};

M
Matthew Garrett 已提交
80
static int aspm_disabled, aspm_force;
81
static bool aspm_support_enabled = true;
S
Shaohua Li 已提交
82 83 84 85 86 87
static DEFINE_MUTEX(aspm_lock);
static LIST_HEAD(link_list);

#define POLICY_DEFAULT 0	/* BIOS default setting */
#define POLICY_PERFORMANCE 1	/* high performance */
#define POLICY_POWERSAVE 2	/* high power saving */
88
#define POLICY_POWER_SUPERSAVE 3 /* possibly even more power saving */
89 90 91 92 93

#ifdef CONFIG_PCIEASPM_PERFORMANCE
static int aspm_policy = POLICY_PERFORMANCE;
#elif defined CONFIG_PCIEASPM_POWERSAVE
static int aspm_policy = POLICY_POWERSAVE;
94 95
#elif defined CONFIG_PCIEASPM_POWER_SUPERSAVE
static int aspm_policy = POLICY_POWER_SUPERSAVE;
96
#else
S
Shaohua Li 已提交
97
static int aspm_policy;
98 99
#endif

S
Shaohua Li 已提交
100 101 102
static const char *policy_str[] = {
	[POLICY_DEFAULT] = "default",
	[POLICY_PERFORMANCE] = "performance",
103 104
	[POLICY_POWERSAVE] = "powersave",
	[POLICY_POWER_SUPERSAVE] = "powersupersave"
S
Shaohua Li 已提交
105 106
};

107 108
#define LINK_RETRAIN_TIMEOUT HZ

109
static int policy_to_aspm_state(struct pcie_link_state *link)
S
Shaohua Li 已提交
110 111 112 113 114 115 116
{
	switch (aspm_policy) {
	case POLICY_PERFORMANCE:
		/* Disable ASPM and Clock PM */
		return 0;
	case POLICY_POWERSAVE:
		/* Enable ASPM L0s/L1 */
117 118 119
		return (ASPM_STATE_L0S | ASPM_STATE_L1);
	case POLICY_POWER_SUPERSAVE:
		/* Enable Everything */
120
		return ASPM_STATE_ALL;
S
Shaohua Li 已提交
121
	case POLICY_DEFAULT:
122
		return link->aspm_default;
S
Shaohua Li 已提交
123 124 125 126
	}
	return 0;
}

127
static int policy_to_clkpm_state(struct pcie_link_state *link)
S
Shaohua Li 已提交
128 129 130 131 132 133
{
	switch (aspm_policy) {
	case POLICY_PERFORMANCE:
		/* Disable ASPM and Clock PM */
		return 0;
	case POLICY_POWERSAVE:
134 135
	case POLICY_POWER_SUPERSAVE:
		/* Enable Clock PM */
S
Shaohua Li 已提交
136 137
		return 1;
	case POLICY_DEFAULT:
138
		return link->clkpm_default;
S
Shaohua Li 已提交
139 140 141 142
	}
	return 0;
}

K
Kenji Kaneshige 已提交
143
static void pcie_set_clkpm_nocheck(struct pcie_link_state *link, int enable)
S
Shaohua Li 已提交
144
{
145 146
	struct pci_dev *child;
	struct pci_bus *linkbus = link->pdev->subordinate;
147
	u32 val = enable ? PCI_EXP_LNKCTL_CLKREQ_EN : 0;
S
Shaohua Li 已提交
148

149 150 151 152
	list_for_each_entry(child, &linkbus->devices, bus_list)
		pcie_capability_clear_and_set_word(child, PCI_EXP_LNKCTL,
						   PCI_EXP_LNKCTL_CLKREQ_EN,
						   val);
153
	link->clkpm_enabled = !!enable;
S
Shaohua Li 已提交
154 155
}

K
Kenji Kaneshige 已提交
156 157 158
static void pcie_set_clkpm(struct pcie_link_state *link, int enable)
{
	/* Don't enable Clock PM if the link is not Clock PM capable */
159
	if (!link->clkpm_capable)
160
		enable = 0;
K
Kenji Kaneshige 已提交
161 162 163 164 165 166
	/* Need nothing if the specified equals to current state */
	if (link->clkpm_enabled == enable)
		return;
	pcie_set_clkpm_nocheck(link, enable);
}

167
static void pcie_clkpm_cap_init(struct pcie_link_state *link, int blacklist)
S
Shaohua Li 已提交
168
{
169
	int capable = 1, enabled = 1;
S
Shaohua Li 已提交
170 171
	u32 reg32;
	u16 reg16;
172 173
	struct pci_dev *child;
	struct pci_bus *linkbus = link->pdev->subordinate;
S
Shaohua Li 已提交
174 175

	/* All functions should have the same cap and state, take the worst */
176
	list_for_each_entry(child, &linkbus->devices, bus_list) {
177
		pcie_capability_read_dword(child, PCI_EXP_LNKCAP, &reg32);
S
Shaohua Li 已提交
178 179 180 181 182
		if (!(reg32 & PCI_EXP_LNKCAP_CLKPM)) {
			capable = 0;
			enabled = 0;
			break;
		}
183
		pcie_capability_read_word(child, PCI_EXP_LNKCTL, &reg16);
S
Shaohua Li 已提交
184 185 186
		if (!(reg16 & PCI_EXP_LNKCTL_CLKREQ_EN))
			enabled = 0;
	}
187 188
	link->clkpm_enabled = enabled;
	link->clkpm_default = enabled;
189
	link->clkpm_capable = (blacklist) ? 0 : capable;
190 191
}

S
Shaohua Li 已提交
192 193 194 195 196
/*
 * pcie_aspm_configure_common_clock: check if the 2 ends of a link
 *   could use common clock. If they are, configure them to use the
 *   common clock. That will reduce the ASPM state exit latency.
 */
197
static void pcie_aspm_configure_common_clock(struct pcie_link_state *link)
S
Shaohua Li 已提交
198
{
199
	int same_clock = 1;
200
	u16 reg16, parent_reg, child_reg[8];
201
	unsigned long start_jiffies;
202 203
	struct pci_dev *child, *parent = link->pdev;
	struct pci_bus *linkbus = parent->subordinate;
S
Shaohua Li 已提交
204
	/*
205
	 * All functions of a slot should have the same Slot Clock
S
Shaohua Li 已提交
206
	 * Configuration, so just check one function
207 208
	 */
	child = list_entry(linkbus->devices.next, struct pci_dev, bus_list);
K
Kenji Kaneshige 已提交
209
	BUG_ON(!pci_is_pcie(child));
S
Shaohua Li 已提交
210 211

	/* Check downstream component if bit Slot Clock Configuration is 1 */
212
	pcie_capability_read_word(child, PCI_EXP_LNKSTA, &reg16);
S
Shaohua Li 已提交
213 214 215 216
	if (!(reg16 & PCI_EXP_LNKSTA_SLC))
		same_clock = 0;

	/* Check upstream component if bit Slot Clock Configuration is 1 */
217
	pcie_capability_read_word(parent, PCI_EXP_LNKSTA, &reg16);
S
Shaohua Li 已提交
218 219 220 221
	if (!(reg16 & PCI_EXP_LNKSTA_SLC))
		same_clock = 0;

	/* Configure downstream component, all functions */
222
	list_for_each_entry(child, &linkbus->devices, bus_list) {
223
		pcie_capability_read_word(child, PCI_EXP_LNKCTL, &reg16);
224
		child_reg[PCI_FUNC(child->devfn)] = reg16;
S
Shaohua Li 已提交
225 226 227 228
		if (same_clock)
			reg16 |= PCI_EXP_LNKCTL_CCC;
		else
			reg16 &= ~PCI_EXP_LNKCTL_CCC;
229
		pcie_capability_write_word(child, PCI_EXP_LNKCTL, reg16);
S
Shaohua Li 已提交
230 231 232
	}

	/* Configure upstream component */
233
	pcie_capability_read_word(parent, PCI_EXP_LNKCTL, &reg16);
234
	parent_reg = reg16;
S
Shaohua Li 已提交
235 236 237 238
	if (same_clock)
		reg16 |= PCI_EXP_LNKCTL_CCC;
	else
		reg16 &= ~PCI_EXP_LNKCTL_CCC;
239
	pcie_capability_write_word(parent, PCI_EXP_LNKCTL, reg16);
S
Shaohua Li 已提交
240

241
	/* Retrain link */
S
Shaohua Li 已提交
242
	reg16 |= PCI_EXP_LNKCTL_RL;
243
	pcie_capability_write_word(parent, PCI_EXP_LNKCTL, reg16);
S
Shaohua Li 已提交
244

245
	/* Wait for link training end. Break out after waiting for timeout */
246
	start_jiffies = jiffies;
247
	for (;;) {
248
		pcie_capability_read_word(parent, PCI_EXP_LNKSTA, &reg16);
S
Shaohua Li 已提交
249 250
		if (!(reg16 & PCI_EXP_LNKSTA_LT))
			break;
251 252 253
		if (time_after(jiffies, start_jiffies + LINK_RETRAIN_TIMEOUT))
			break;
		msleep(1);
S
Shaohua Li 已提交
254
	}
255 256 257 258
	if (!(reg16 & PCI_EXP_LNKSTA_LT))
		return;

	/* Training failed. Restore common clock configurations */
259
	dev_err(&parent->dev, "ASPM: Could not configure common clock\n");
260 261 262 263
	list_for_each_entry(child, &linkbus->devices, bus_list)
		pcie_capability_write_word(child, PCI_EXP_LNKCTL,
					   child_reg[PCI_FUNC(child->devfn)]);
	pcie_capability_write_word(parent, PCI_EXP_LNKCTL, parent_reg);
S
Shaohua Li 已提交
264 265
}

266 267
/* Convert L0s latency encoding to ns */
static u32 calc_l0s_latency(u32 encoding)
S
Shaohua Li 已提交
268
{
269 270 271 272
	if (encoding == 0x7)
		return (5 * 1000);	/* > 4us */
	return (64 << encoding);
}
S
Shaohua Li 已提交
273

274 275 276 277 278 279
/* Convert L0s acceptable latency encoding to ns */
static u32 calc_l0s_acceptable(u32 encoding)
{
	if (encoding == 0x7)
		return -1U;
	return (64 << encoding);
S
Shaohua Li 已提交
280 281
}

282 283
/* Convert L1 latency encoding to ns */
static u32 calc_l1_latency(u32 encoding)
S
Shaohua Li 已提交
284
{
285 286 287 288
	if (encoding == 0x7)
		return (65 * 1000);	/* > 64us */
	return (1000 << encoding);
}
S
Shaohua Li 已提交
289

290 291 292 293 294 295
/* Convert L1 acceptable latency encoding to ns */
static u32 calc_l1_acceptable(u32 encoding)
{
	if (encoding == 0x7)
		return -1U;
	return (1000 << encoding);
S
Shaohua Li 已提交
296 297
}

298 299 300 301 302 303 304 305 306
struct aspm_register_info {
	u32 support:2;
	u32 enabled:2;
	u32 latency_encoding_l0s;
	u32 latency_encoding_l1;
};

static void pcie_get_aspm_reg(struct pci_dev *pdev,
			      struct aspm_register_info *info)
S
Shaohua Li 已提交
307 308
{
	u16 reg16;
309
	u32 reg32;
S
Shaohua Li 已提交
310

311
	pcie_capability_read_dword(pdev, PCI_EXP_LNKCAP, &reg32);
312 313 314
	info->support = (reg32 & PCI_EXP_LNKCAP_ASPMS) >> 10;
	info->latency_encoding_l0s = (reg32 & PCI_EXP_LNKCAP_L0SEL) >> 12;
	info->latency_encoding_l1  = (reg32 & PCI_EXP_LNKCAP_L1EL) >> 15;
315
	pcie_capability_read_word(pdev, PCI_EXP_LNKCTL, &reg16);
316
	info->enabled = reg16 & PCI_EXP_LNKCTL_ASPMC;
S
Shaohua Li 已提交
317 318
}

319 320
static void pcie_aspm_check_latency(struct pci_dev *endpoint)
{
321
	u32 latency, l1_switch_latency = 0;
322 323 324 325 326 327 328 329 330 331 332 333
	struct aspm_latency *acceptable;
	struct pcie_link_state *link;

	/* Device not in D0 doesn't need latency check */
	if ((endpoint->current_state != PCI_D0) &&
	    (endpoint->current_state != PCI_UNKNOWN))
		return;

	link = endpoint->bus->self->link_state;
	acceptable = &link->acceptable[PCI_FUNC(endpoint->devfn)];

	while (link) {
334 335 336 337 338 339 340 341 342
		/* Check upstream direction L0s latency */
		if ((link->aspm_capable & ASPM_STATE_L0S_UP) &&
		    (link->latency_up.l0s > acceptable->l0s))
			link->aspm_capable &= ~ASPM_STATE_L0S_UP;

		/* Check downstream direction L0s latency */
		if ((link->aspm_capable & ASPM_STATE_L0S_DW) &&
		    (link->latency_dw.l0s > acceptable->l0s))
			link->aspm_capable &= ~ASPM_STATE_L0S_DW;
343 344 345 346 347
		/*
		 * Check L1 latency.
		 * Every switch on the path to root complex need 1
		 * more microsecond for L1. Spec doesn't mention L0s.
		 */
348 349 350 351
		latency = max_t(u32, link->latency_up.l1, link->latency_dw.l1);
		if ((link->aspm_capable & ASPM_STATE_L1) &&
		    (latency + l1_switch_latency > acceptable->l1))
			link->aspm_capable &= ~ASPM_STATE_L1;
352 353 354 355 356 357
		l1_switch_latency += 1000;

		link = link->parent;
	}
}

358
static void pcie_aspm_cap_init(struct pcie_link_state *link, int blacklist)
S
Shaohua Li 已提交
359
{
360 361
	struct pci_dev *child, *parent = link->pdev;
	struct pci_bus *linkbus = parent->subordinate;
362
	struct aspm_register_info upreg, dwreg;
S
Shaohua Li 已提交
363

364
	if (blacklist) {
365
		/* Set enabled/disable so that we will disable ASPM later */
366 367
		link->aspm_enabled = ASPM_STATE_ALL;
		link->aspm_disable = ASPM_STATE_ALL;
368 369 370
		return;
	}

371 372 373 374 375 376 377 378 379 380 381 382
	/* Get upstream/downstream components' register state */
	pcie_get_aspm_reg(parent, &upreg);
	child = list_entry(linkbus->devices.next, struct pci_dev, bus_list);
	pcie_get_aspm_reg(child, &dwreg);

	/*
	 * If ASPM not supported, don't mess with the clocks and link,
	 * bail out now.
	 */
	if (!(upreg.support & dwreg.support))
		return;

383 384 385
	/* Configure common clock before checking latencies */
	pcie_aspm_configure_common_clock(link);

386 387 388 389
	/*
	 * Re-read upstream/downstream components' register state
	 * after clock configuration
	 */
390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415
	pcie_get_aspm_reg(parent, &upreg);
	pcie_get_aspm_reg(child, &dwreg);

	/*
	 * Setup L0s state
	 *
	 * Note that we must not enable L0s in either direction on a
	 * given link unless components on both sides of the link each
	 * support L0s.
	 */
	if (dwreg.support & upreg.support & PCIE_LINK_STATE_L0S)
		link->aspm_support |= ASPM_STATE_L0S;
	if (dwreg.enabled & PCIE_LINK_STATE_L0S)
		link->aspm_enabled |= ASPM_STATE_L0S_UP;
	if (upreg.enabled & PCIE_LINK_STATE_L0S)
		link->aspm_enabled |= ASPM_STATE_L0S_DW;
	link->latency_up.l0s = calc_l0s_latency(upreg.latency_encoding_l0s);
	link->latency_dw.l0s = calc_l0s_latency(dwreg.latency_encoding_l0s);

	/* Setup L1 state */
	if (upreg.support & dwreg.support & PCIE_LINK_STATE_L1)
		link->aspm_support |= ASPM_STATE_L1;
	if (upreg.enabled & dwreg.enabled & PCIE_LINK_STATE_L1)
		link->aspm_enabled |= ASPM_STATE_L1;
	link->latency_up.l1 = calc_l1_latency(upreg.latency_encoding_l1);
	link->latency_dw.l1 = calc_l1_latency(dwreg.latency_encoding_l1);
416

417 418
	/* Save default state */
	link->aspm_default = link->aspm_enabled;
419 420 421

	/* Setup initial capable state. Will be updated later */
	link->aspm_capable = link->aspm_support;
422 423 424 425 426
	/*
	 * If the downstream component has pci bridge function, don't
	 * do ASPM for now.
	 */
	list_for_each_entry(child, &linkbus->devices, bus_list) {
427
		if (pci_pcie_type(child) == PCI_EXP_TYPE_PCI_BRIDGE) {
428
			link->aspm_disable = ASPM_STATE_ALL;
429 430 431
			break;
		}
	}
432

433
	/* Get and check endpoint acceptable latencies */
434
	list_for_each_entry(child, &linkbus->devices, bus_list) {
435
		u32 reg32, encoding;
436
		struct aspm_latency *acceptable =
437
			&link->acceptable[PCI_FUNC(child->devfn)];
S
Shaohua Li 已提交
438

439 440
		if (pci_pcie_type(child) != PCI_EXP_TYPE_ENDPOINT &&
		    pci_pcie_type(child) != PCI_EXP_TYPE_LEG_END)
S
Shaohua Li 已提交
441 442
			continue;

443
		pcie_capability_read_dword(child, PCI_EXP_DEVCAP, &reg32);
444
		/* Calculate endpoint L0s acceptable latency */
445 446
		encoding = (reg32 & PCI_EXP_DEVCAP_L0S) >> 6;
		acceptable->l0s = calc_l0s_acceptable(encoding);
447 448 449 450 451
		/* Calculate endpoint L1 acceptable latency */
		encoding = (reg32 & PCI_EXP_DEVCAP_L1) >> 9;
		acceptable->l1 = calc_l1_acceptable(encoding);

		pcie_aspm_check_latency(child);
S
Shaohua Li 已提交
452 453 454
	}
}

455
static void pcie_config_aspm_dev(struct pci_dev *pdev, u32 val)
S
Shaohua Li 已提交
456
{
457 458
	pcie_capability_clear_and_set_word(pdev, PCI_EXP_LNKCTL,
					   PCI_EXP_LNKCTL_ASPMC, val);
S
Shaohua Li 已提交
459 460
}

461
static void pcie_config_aspm_link(struct pcie_link_state *link, u32 state)
S
Shaohua Li 已提交
462
{
463
	u32 upstream = 0, dwstream = 0;
464 465
	struct pci_dev *child, *parent = link->pdev;
	struct pci_bus *linkbus = parent->subordinate;
S
Shaohua Li 已提交
466

467
	/* Nothing to do if the link is already in the requested state */
468
	state &= (link->aspm_capable & ~link->aspm_disable);
469 470
	if (link->aspm_enabled == state)
		return;
471 472
	/* Convert ASPM state to upstream/downstream ASPM register state */
	if (state & ASPM_STATE_L0S_UP)
473
		dwstream |= PCI_EXP_LNKCTL_ASPM_L0S;
474
	if (state & ASPM_STATE_L0S_DW)
475
		upstream |= PCI_EXP_LNKCTL_ASPM_L0S;
476
	if (state & ASPM_STATE_L1) {
477 478
		upstream |= PCI_EXP_LNKCTL_ASPM_L1;
		dwstream |= PCI_EXP_LNKCTL_ASPM_L1;
479
	}
S
Shaohua Li 已提交
480
	/*
481 482 483 484
	 * Spec 2.0 suggests all functions should be configured the
	 * same setting for ASPM. Enabling ASPM L1 should be done in
	 * upstream component first and then downstream, and vice
	 * versa for disabling ASPM L1. Spec doesn't mention L0S.
S
Shaohua Li 已提交
485
	 */
486 487
	if (state & ASPM_STATE_L1)
		pcie_config_aspm_dev(parent, upstream);
488
	list_for_each_entry(child, &linkbus->devices, bus_list)
489 490 491
		pcie_config_aspm_dev(child, dwstream);
	if (!(state & ASPM_STATE_L1))
		pcie_config_aspm_dev(parent, upstream);
S
Shaohua Li 已提交
492

493
	link->aspm_enabled = state;
S
Shaohua Li 已提交
494 495
}

496
static void pcie_config_aspm_path(struct pcie_link_state *link)
S
Shaohua Li 已提交
497
{
498 499 500
	while (link) {
		pcie_config_aspm_link(link, policy_to_aspm_state(link));
		link = link->parent;
501
	}
S
Shaohua Li 已提交
502 503
}

504
static void free_link_state(struct pcie_link_state *link)
S
Shaohua Li 已提交
505
{
506 507
	link->pdev->link_state = NULL;
	kfree(link);
S
Shaohua Li 已提交
508 509
}

510 511
static int pcie_aspm_sanity_check(struct pci_dev *pdev)
{
512
	struct pci_dev *child;
513
	u32 reg32;
514

515
	/*
516
	 * Some functions in a slot might not all be PCIe functions,
517
	 * very strange. Disable ASPM for the whole slot
518
	 */
519
	list_for_each_entry(child, &pdev->subordinate->devices, bus_list) {
520
		if (!pci_is_pcie(child))
521
			return -EINVAL;
522 523 524 525 526 527 528 529 530 531

		/*
		 * If ASPM is disabled then we're not going to change
		 * the BIOS state. It's safe to continue even if it's a
		 * pre-1.1 device
		 */

		if (aspm_disabled)
			continue;

532 533 534 535
		/*
		 * Disable ASPM for pre-1.1 PCIe device, we follow MS to use
		 * RBER bit to determine if a function is 1.1 version device
		 */
536
		pcie_capability_read_dword(child, PCI_EXP_DEVCAP, &reg32);
S
Sitsofe Wheeler 已提交
537
		if (!(reg32 & PCI_EXP_DEVCAP_RBER) && !aspm_force) {
538
			dev_info(&child->dev, "disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'\n");
539 540
			return -EINVAL;
		}
541 542 543 544
	}
	return 0;
}

545
static struct pcie_link_state *alloc_pcie_link_state(struct pci_dev *pdev)
546 547 548 549 550 551 552 553 554 555
{
	struct pcie_link_state *link;

	link = kzalloc(sizeof(*link), GFP_KERNEL);
	if (!link)
		return NULL;
	INIT_LIST_HEAD(&link->sibling);
	INIT_LIST_HEAD(&link->children);
	INIT_LIST_HEAD(&link->link);
	link->pdev = pdev;
556
	if (pci_pcie_type(pdev) != PCI_EXP_TYPE_ROOT_PORT) {
557 558 559 560 561 562 563 564 565
		struct pcie_link_state *parent;
		parent = pdev->bus->parent->self->link_state;
		if (!parent) {
			kfree(link);
			return NULL;
		}
		link->parent = parent;
		list_add(&link->link, &parent->children);
	}
566 567 568 569 570 571
	/* Setup a pointer to the root port link */
	if (!link->parent)
		link->root = link;
	else
		link->root = link->parent->root;

572 573 574 575 576
	list_add(&link->sibling, &link_list);
	pdev->link_state = link;
	return link;
}

S
Shaohua Li 已提交
577 578
/*
 * pcie_aspm_init_link_state: Initiate PCI express link state.
579
 * It is called after the pcie and its children devices are scanned.
S
Shaohua Li 已提交
580 581 582 583
 * @pdev: the root port or switch downstream port
 */
void pcie_aspm_init_link_state(struct pci_dev *pdev)
{
584
	struct pcie_link_state *link;
585
	int blacklist = !!pcie_aspm_sanity_check(pdev);
S
Shaohua Li 已提交
586

587 588 589
	if (!aspm_support_enabled)
		return;

590
	if (pdev->link_state)
S
Shaohua Li 已提交
591
		return;
592 593 594 595 596 597 598

	/*
	 * We allocate pcie_link_state for the component on the upstream
	 * end of a Link, so there's nothing to do unless this device has a
	 * Link on its secondary side.
	 */
	if (!pdev->has_secondary_link)
S
Shaohua Li 已提交
599
		return;
600

601
	/* VIA has a strange chipset, root port is under a bridge */
602
	if (pci_pcie_type(pdev) == PCI_EXP_TYPE_ROOT_PORT &&
603
	    pdev->bus->self)
604
		return;
605

S
Shaohua Li 已提交
606 607 608 609 610
	down_read(&pci_bus_sem);
	if (list_empty(&pdev->subordinate->devices))
		goto out;

	mutex_lock(&aspm_lock);
611
	link = alloc_pcie_link_state(pdev);
612 613 614
	if (!link)
		goto unlock;
	/*
615 616 617
	 * Setup initial ASPM state. Note that we need to configure
	 * upstream links also because capable state of them can be
	 * update through pcie_aspm_cap_init().
618
	 */
619
	pcie_aspm_cap_init(link, blacklist);
S
Shaohua Li 已提交
620

621
	/* Setup initial Clock PM state */
622
	pcie_clkpm_cap_init(link, blacklist);
623 624 625 626 627 628 629 630 631

	/*
	 * At this stage drivers haven't had an opportunity to change the
	 * link policy setting. Enabling ASPM on broken hardware can cripple
	 * it even before the driver has had a chance to disable ASPM, so
	 * default to a safe level right now. If we're enabling ASPM beyond
	 * the BIOS's expectation, we'll do so once pci_enable_device() is
	 * called.
	 */
632 633
	if (aspm_policy != POLICY_POWERSAVE &&
	    aspm_policy != POLICY_POWER_SUPERSAVE) {
634 635 636 637
		pcie_config_aspm_path(link);
		pcie_set_clkpm(link, policy_to_clkpm_state(link));
	}

638
unlock:
S
Shaohua Li 已提交
639 640 641 642 643
	mutex_unlock(&aspm_lock);
out:
	up_read(&pci_bus_sem);
}

644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659
/* Recheck latencies and update aspm_capable for links under the root */
static void pcie_update_aspm_capable(struct pcie_link_state *root)
{
	struct pcie_link_state *link;
	BUG_ON(root->parent);
	list_for_each_entry(link, &link_list, sibling) {
		if (link->root != root)
			continue;
		link->aspm_capable = link->aspm_support;
	}
	list_for_each_entry(link, &link_list, sibling) {
		struct pci_dev *child;
		struct pci_bus *linkbus = link->pdev->subordinate;
		if (link->root != root)
			continue;
		list_for_each_entry(child, &linkbus->devices, bus_list) {
660 661
			if ((pci_pcie_type(child) != PCI_EXP_TYPE_ENDPOINT) &&
			    (pci_pcie_type(child) != PCI_EXP_TYPE_LEG_END))
662 663 664 665 666 667
				continue;
			pcie_aspm_check_latency(child);
		}
	}
}

S
Shaohua Li 已提交
668 669 670 671
/* @pdev: the endpoint device */
void pcie_aspm_exit_link_state(struct pci_dev *pdev)
{
	struct pci_dev *parent = pdev->bus->self;
672
	struct pcie_link_state *link, *root, *parent_link;
S
Shaohua Li 已提交
673

674
	if (!parent || !parent->link_state)
S
Shaohua Li 已提交
675
		return;
676

S
Shaohua Li 已提交
677 678 679 680
	down_read(&pci_bus_sem);
	mutex_lock(&aspm_lock);
	/*
	 * All PCIe functions are in one slot, remove one function will remove
681
	 * the whole slot, so just wait until we are the last function left.
S
Shaohua Li 已提交
682
	 */
683
	if (!list_is_last(&pdev->bus_list, &parent->subordinate->devices))
S
Shaohua Li 已提交
684 685
		goto out;

686
	link = parent->link_state;
687
	root = link->root;
688
	parent_link = link->parent;
689

S
Shaohua Li 已提交
690
	/* All functions are removed, so just disable ASPM for the link */
691
	pcie_config_aspm_link(link, 0);
692 693
	list_del(&link->sibling);
	list_del(&link->link);
S
Shaohua Li 已提交
694
	/* Clock PM is for endpoint device */
695
	free_link_state(link);
696 697

	/* Recheck latencies and configure upstream links */
698 699 700 701
	if (parent_link) {
		pcie_update_aspm_capable(root);
		pcie_config_aspm_path(parent_link);
	}
S
Shaohua Li 已提交
702 703 704 705 706 707 708 709
out:
	mutex_unlock(&aspm_lock);
	up_read(&pci_bus_sem);
}

/* @pdev: the root port or switch downstream port */
void pcie_aspm_pm_state_change(struct pci_dev *pdev)
{
710
	struct pcie_link_state *link = pdev->link_state;
S
Shaohua Li 已提交
711

712
	if (aspm_disabled || !link)
S
Shaohua Li 已提交
713 714
		return;
	/*
715 716
	 * Devices changed PM state, we should recheck if latency
	 * meets all functions' requirement
S
Shaohua Li 已提交
717
	 */
718 719 720
	down_read(&pci_bus_sem);
	mutex_lock(&aspm_lock);
	pcie_update_aspm_capable(link->root);
721
	pcie_config_aspm_path(link);
722 723
	mutex_unlock(&aspm_lock);
	up_read(&pci_bus_sem);
S
Shaohua Li 已提交
724 725
}

726 727 728 729
void pcie_aspm_powersave_config_link(struct pci_dev *pdev)
{
	struct pcie_link_state *link = pdev->link_state;

730
	if (aspm_disabled || !link)
731 732
		return;

733 734
	if (aspm_policy != POLICY_POWERSAVE &&
	    aspm_policy != POLICY_POWER_SUPERSAVE)
735 736 737 738 739 740 741 742 743 744
		return;

	down_read(&pci_bus_sem);
	mutex_lock(&aspm_lock);
	pcie_config_aspm_path(link);
	pcie_set_clkpm(link, policy_to_clkpm_state(link));
	mutex_unlock(&aspm_lock);
	up_read(&pci_bus_sem);
}

745
static void __pci_disable_link_state(struct pci_dev *pdev, int state, bool sem)
S
Shaohua Li 已提交
746 747
{
	struct pci_dev *parent = pdev->bus->self;
748
	struct pcie_link_state *link;
S
Shaohua Li 已提交
749

M
Matthew Garrett 已提交
750
	if (!pci_is_pcie(pdev))
S
Shaohua Li 已提交
751
		return;
M
Matthew Garrett 已提交
752

753
	if (pdev->has_secondary_link)
S
Shaohua Li 已提交
754 755 756 757
		parent = pdev;
	if (!parent || !parent->link_state)
		return;

758 759 760 761 762 763 764 765
	/*
	 * A driver requested that ASPM be disabled on this device, but
	 * if we don't have permission to manage ASPM (e.g., on ACPI
	 * systems we have to observe the FADT ACPI_FADT_NO_ASPM bit and
	 * the _OSC method), we can't honor that request.  Windows has
	 * a similar mechanism using "PciASPMOptOut", which is also
	 * ignored in this situation.
	 */
766
	if (aspm_disabled) {
767 768 769 770
		dev_warn(&pdev->dev, "can't disable ASPM; OS doesn't have ASPM control\n");
		return;
	}

771 772
	if (sem)
		down_read(&pci_bus_sem);
S
Shaohua Li 已提交
773
	mutex_lock(&aspm_lock);
774
	link = parent->link_state;
775 776 777 778
	if (state & PCIE_LINK_STATE_L0S)
		link->aspm_disable |= ASPM_STATE_L0S;
	if (state & PCIE_LINK_STATE_L1)
		link->aspm_disable |= ASPM_STATE_L1;
779 780
	pcie_config_aspm_link(link, policy_to_aspm_state(link));

K
Kenji Kaneshige 已提交
781
	if (state & PCIE_LINK_STATE_CLKPM) {
782 783
		link->clkpm_capable = 0;
		pcie_set_clkpm(link, 0);
K
Kenji Kaneshige 已提交
784
	}
S
Shaohua Li 已提交
785
	mutex_unlock(&aspm_lock);
786 787 788 789 790 791
	if (sem)
		up_read(&pci_bus_sem);
}

void pci_disable_link_state_locked(struct pci_dev *pdev, int state)
{
792
	__pci_disable_link_state(pdev, state, false);
793 794 795
}
EXPORT_SYMBOL(pci_disable_link_state_locked);

796 797 798 799 800 801 802 803 804
/**
 * pci_disable_link_state - Disable device's link state, so the link will
 * never enter specific states.  Note that if the BIOS didn't grant ASPM
 * control to the OS, this does nothing because we can't touch the LNKCTL
 * register.
 *
 * @pdev: PCI device
 * @state: ASPM link state to disable
 */
805 806
void pci_disable_link_state(struct pci_dev *pdev, int state)
{
807
	__pci_disable_link_state(pdev, state, true);
S
Shaohua Li 已提交
808 809 810 811 812 813
}
EXPORT_SYMBOL(pci_disable_link_state);

static int pcie_aspm_set_policy(const char *val, struct kernel_param *kp)
{
	int i;
814
	struct pcie_link_state *link;
S
Shaohua Li 已提交
815

816 817
	if (aspm_disabled)
		return -EPERM;
S
Shaohua Li 已提交
818 819 820 821 822 823 824 825 826 827 828
	for (i = 0; i < ARRAY_SIZE(policy_str); i++)
		if (!strncmp(val, policy_str[i], strlen(policy_str[i])))
			break;
	if (i >= ARRAY_SIZE(policy_str))
		return -EINVAL;
	if (i == aspm_policy)
		return 0;

	down_read(&pci_bus_sem);
	mutex_lock(&aspm_lock);
	aspm_policy = i;
829 830 831
	list_for_each_entry(link, &link_list, sibling) {
		pcie_config_aspm_link(link, policy_to_aspm_state(link));
		pcie_set_clkpm(link, policy_to_clkpm_state(link));
S
Shaohua Li 已提交
832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859
	}
	mutex_unlock(&aspm_lock);
	up_read(&pci_bus_sem);
	return 0;
}

static int pcie_aspm_get_policy(char *buffer, struct kernel_param *kp)
{
	int i, cnt = 0;
	for (i = 0; i < ARRAY_SIZE(policy_str); i++)
		if (i == aspm_policy)
			cnt += sprintf(buffer + cnt, "[%s] ", policy_str[i]);
		else
			cnt += sprintf(buffer + cnt, "%s ", policy_str[i]);
	return cnt;
}

module_param_call(policy, pcie_aspm_set_policy, pcie_aspm_get_policy,
	NULL, 0644);

#ifdef CONFIG_PCIEASPM_DEBUG
static ssize_t link_state_show(struct device *dev,
		struct device_attribute *attr,
		char *buf)
{
	struct pci_dev *pci_device = to_pci_dev(dev);
	struct pcie_link_state *link_state = pci_device->link_state;

860
	return sprintf(buf, "%d\n", link_state->aspm_enabled);
S
Shaohua Li 已提交
861 862 863 864 865 866 867
}

static ssize_t link_state_store(struct device *dev,
		struct device_attribute *attr,
		const char *buf,
		size_t n)
{
868
	struct pci_dev *pdev = to_pci_dev(dev);
869
	struct pcie_link_state *link, *root = pdev->link_state->root;
870
	u32 state;
S
Shaohua Li 已提交
871

872 873
	if (aspm_disabled)
		return -EPERM;
S
Shaohua Li 已提交
874

875 876 877 878
	if (kstrtouint(buf, 10, &state))
		return -EINVAL;
	if ((state & ~ASPM_STATE_ALL) != 0)
		return -EINVAL;
879

880 881 882 883 884 885 886 887 888 889
	down_read(&pci_bus_sem);
	mutex_lock(&aspm_lock);
	list_for_each_entry(link, &link_list, sibling) {
		if (link->root != root)
			continue;
		pcie_config_aspm_link(link, state);
	}
	mutex_unlock(&aspm_lock);
	up_read(&pci_bus_sem);
	return n;
S
Shaohua Li 已提交
890 891 892 893 894 895 896 897 898
}

static ssize_t clk_ctl_show(struct device *dev,
		struct device_attribute *attr,
		char *buf)
{
	struct pci_dev *pci_device = to_pci_dev(dev);
	struct pcie_link_state *link_state = pci_device->link_state;

899
	return sprintf(buf, "%d\n", link_state->clkpm_enabled);
S
Shaohua Li 已提交
900 901 902 903 904 905 906
}

static ssize_t clk_ctl_store(struct device *dev,
		struct device_attribute *attr,
		const char *buf,
		size_t n)
{
K
Kenji Kaneshige 已提交
907
	struct pci_dev *pdev = to_pci_dev(dev);
908
	bool state;
S
Shaohua Li 已提交
909

910
	if (strtobool(buf, &state))
S
Shaohua Li 已提交
911 912 913 914
		return -EINVAL;

	down_read(&pci_bus_sem);
	mutex_lock(&aspm_lock);
915
	pcie_set_clkpm_nocheck(pdev->link_state, state);
S
Shaohua Li 已提交
916 917 918 919 920 921
	mutex_unlock(&aspm_lock);
	up_read(&pci_bus_sem);

	return n;
}

922 923
static DEVICE_ATTR_RW(link_state);
static DEVICE_ATTR_RW(clk_ctl);
S
Shaohua Li 已提交
924 925 926 927 928 929

static char power_group[] = "power";
void pcie_aspm_create_sysfs_dev_files(struct pci_dev *pdev)
{
	struct pcie_link_state *link_state = pdev->link_state;

930
	if (!link_state)
S
Shaohua Li 已提交
931 932
		return;

933
	if (link_state->aspm_support)
S
Shaohua Li 已提交
934 935
		sysfs_add_file_to_group(&pdev->dev.kobj,
			&dev_attr_link_state.attr, power_group);
936
	if (link_state->clkpm_capable)
S
Shaohua Li 已提交
937 938 939 940 941 942 943 944
		sysfs_add_file_to_group(&pdev->dev.kobj,
			&dev_attr_clk_ctl.attr, power_group);
}

void pcie_aspm_remove_sysfs_dev_files(struct pci_dev *pdev)
{
	struct pcie_link_state *link_state = pdev->link_state;

945
	if (!link_state)
S
Shaohua Li 已提交
946 947
		return;

948
	if (link_state->aspm_support)
S
Shaohua Li 已提交
949 950
		sysfs_remove_file_from_group(&pdev->dev.kobj,
			&dev_attr_link_state.attr, power_group);
951
	if (link_state->clkpm_capable)
S
Shaohua Li 已提交
952 953 954 955 956 957 958
		sysfs_remove_file_from_group(&pdev->dev.kobj,
			&dev_attr_clk_ctl.attr, power_group);
}
#endif

static int __init pcie_aspm_disable(char *str)
{
959
	if (!strcmp(str, "off")) {
M
Matthew Garrett 已提交
960
		aspm_policy = POLICY_DEFAULT;
961
		aspm_disabled = 1;
962
		aspm_support_enabled = false;
963 964 965
		printk(KERN_INFO "PCIe ASPM is disabled\n");
	} else if (!strcmp(str, "force")) {
		aspm_force = 1;
M
Michael Witten 已提交
966
		printk(KERN_INFO "PCIe ASPM is forcibly enabled\n");
967
	}
S
Shaohua Li 已提交
968 969 970
	return 1;
}

971
__setup("pcie_aspm=", pcie_aspm_disable);
S
Shaohua Li 已提交
972

973 974
void pcie_no_aspm(void)
{
M
Matthew Garrett 已提交
975 976 977 978 979 980 981 982
	/*
	 * Disabling ASPM is intended to prevent the kernel from modifying
	 * existing hardware state, not to clear existing state. To that end:
	 * (a) set policy to POLICY_DEFAULT in order to avoid changing state
	 * (b) prevent userspace from changing policy
	 */
	if (!aspm_force) {
		aspm_policy = POLICY_DEFAULT;
983
		aspm_disabled = 1;
M
Matthew Garrett 已提交
984
	}
985 986
}

987 988 989 990 991
bool pcie_aspm_support_enabled(void)
{
	return aspm_support_enabled;
}
EXPORT_SYMBOL(pcie_aspm_support_enabled);