pci-acpi.c 15.8 KB
Newer Older
L
Linus Torvalds 已提交
1 2
/*
 * File:	pci-acpi.c
3
 * Purpose:	Provide PCI support in ACPI
L
Linus Torvalds 已提交
4
 *
5 6 7
 * Copyright (C) 2005 David Shaohua Li <shaohua.li@intel.com>
 * Copyright (C) 2004 Tom Long Nguyen <tom.l.nguyen@intel.com>
 * Copyright (C) 2004 Intel Corp.
L
Linus Torvalds 已提交
8 9 10 11 12
 */

#include <linux/delay.h>
#include <linux/init.h>
#include <linux/pci.h>
13
#include <linux/pci_hotplug.h>
L
Linus Torvalds 已提交
14
#include <linux/module.h>
15
#include <linux/pci-aspm.h>
L
Linus Torvalds 已提交
16
#include <linux/pci-acpi.h>
17
#include <linux/pm_runtime.h>
18
#include <linux/pm_qos.h>
19
#include "pci.h"
L
Linus Torvalds 已提交
20

21 22 23 24 25 26 27 28 29 30 31 32 33 34
phys_addr_t acpi_pci_root_get_mcfg_addr(acpi_handle handle)
{
	acpi_status status = AE_NOT_EXIST;
	unsigned long long mcfg_addr;

	if (handle)
		status = acpi_evaluate_integer(handle, METHOD_NAME__CBA,
					       NULL, &mcfg_addr);
	if (ACPI_FAILURE(status))
		return 0;

	return (phys_addr_t)mcfg_addr;
}

35 36
static acpi_status decode_type0_hpx_record(union acpi_object *record,
					   struct hotplug_params *hpx)
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
{
	int i;
	union acpi_object *fields = record->package.elements;
	u32 revision = fields[1].integer.value;

	switch (revision) {
	case 1:
		if (record->package.count != 6)
			return AE_ERROR;
		for (i = 2; i < 6; i++)
			if (fields[i].type != ACPI_TYPE_INTEGER)
				return AE_ERROR;
		hpx->t0 = &hpx->type0_data;
		hpx->t0->revision        = revision;
		hpx->t0->cache_line_size = fields[2].integer.value;
		hpx->t0->latency_timer   = fields[3].integer.value;
		hpx->t0->enable_serr     = fields[4].integer.value;
		hpx->t0->enable_perr     = fields[5].integer.value;
		break;
	default:
		printk(KERN_WARNING
		       "%s: Type 0 Revision %d record not supported\n",
		       __func__, revision);
		return AE_ERROR;
	}
	return AE_OK;
}

65 66
static acpi_status decode_type1_hpx_record(union acpi_object *record,
					   struct hotplug_params *hpx)
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
{
	int i;
	union acpi_object *fields = record->package.elements;
	u32 revision = fields[1].integer.value;

	switch (revision) {
	case 1:
		if (record->package.count != 5)
			return AE_ERROR;
		for (i = 2; i < 5; i++)
			if (fields[i].type != ACPI_TYPE_INTEGER)
				return AE_ERROR;
		hpx->t1 = &hpx->type1_data;
		hpx->t1->revision      = revision;
		hpx->t1->max_mem_read  = fields[2].integer.value;
		hpx->t1->avg_max_split = fields[3].integer.value;
		hpx->t1->tot_max_split = fields[4].integer.value;
		break;
	default:
		printk(KERN_WARNING
		       "%s: Type 1 Revision %d record not supported\n",
		       __func__, revision);
		return AE_ERROR;
	}
	return AE_OK;
}

94 95
static acpi_status decode_type2_hpx_record(union acpi_object *record,
					   struct hotplug_params *hpx)
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
{
	int i;
	union acpi_object *fields = record->package.elements;
	u32 revision = fields[1].integer.value;

	switch (revision) {
	case 1:
		if (record->package.count != 18)
			return AE_ERROR;
		for (i = 2; i < 18; i++)
			if (fields[i].type != ACPI_TYPE_INTEGER)
				return AE_ERROR;
		hpx->t2 = &hpx->type2_data;
		hpx->t2->revision      = revision;
		hpx->t2->unc_err_mask_and      = fields[2].integer.value;
		hpx->t2->unc_err_mask_or       = fields[3].integer.value;
		hpx->t2->unc_err_sever_and     = fields[4].integer.value;
		hpx->t2->unc_err_sever_or      = fields[5].integer.value;
		hpx->t2->cor_err_mask_and      = fields[6].integer.value;
		hpx->t2->cor_err_mask_or       = fields[7].integer.value;
		hpx->t2->adv_err_cap_and       = fields[8].integer.value;
		hpx->t2->adv_err_cap_or        = fields[9].integer.value;
		hpx->t2->pci_exp_devctl_and    = fields[10].integer.value;
		hpx->t2->pci_exp_devctl_or     = fields[11].integer.value;
		hpx->t2->pci_exp_lnkctl_and    = fields[12].integer.value;
		hpx->t2->pci_exp_lnkctl_or     = fields[13].integer.value;
		hpx->t2->sec_unc_err_sever_and = fields[14].integer.value;
		hpx->t2->sec_unc_err_sever_or  = fields[15].integer.value;
		hpx->t2->sec_unc_err_mask_and  = fields[16].integer.value;
		hpx->t2->sec_unc_err_mask_or   = fields[17].integer.value;
		break;
	default:
		printk(KERN_WARNING
		       "%s: Type 2 Revision %d record not supported\n",
		       __func__, revision);
		return AE_ERROR;
	}
	return AE_OK;
}

136
static acpi_status acpi_run_hpx(acpi_handle handle, struct hotplug_params *hpx)
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
{
	acpi_status status;
	struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
	union acpi_object *package, *record, *fields;
	u32 type;
	int i;

	/* Clear the return buffer with zeros */
	memset(hpx, 0, sizeof(struct hotplug_params));

	status = acpi_evaluate_object(handle, "_HPX", NULL, &buffer);
	if (ACPI_FAILURE(status))
		return status;

	package = (union acpi_object *)buffer.pointer;
	if (package->type != ACPI_TYPE_PACKAGE) {
		status = AE_ERROR;
		goto exit;
	}

	for (i = 0; i < package->package.count; i++) {
		record = &package->package.elements[i];
		if (record->type != ACPI_TYPE_PACKAGE) {
			status = AE_ERROR;
			goto exit;
		}

		fields = record->package.elements;
		if (fields[0].type != ACPI_TYPE_INTEGER ||
		    fields[1].type != ACPI_TYPE_INTEGER) {
			status = AE_ERROR;
			goto exit;
		}

		type = fields[0].integer.value;
		switch (type) {
		case 0:
			status = decode_type0_hpx_record(record, hpx);
			if (ACPI_FAILURE(status))
				goto exit;
			break;
		case 1:
			status = decode_type1_hpx_record(record, hpx);
			if (ACPI_FAILURE(status))
				goto exit;
			break;
		case 2:
			status = decode_type2_hpx_record(record, hpx);
			if (ACPI_FAILURE(status))
				goto exit;
			break;
		default:
			printk(KERN_ERR "%s: Type %d record not supported\n",
			       __func__, type);
			status = AE_ERROR;
			goto exit;
		}
	}
 exit:
	kfree(buffer.pointer);
	return status;
}

200
static acpi_status acpi_run_hpp(acpi_handle handle, struct hotplug_params *hpp)
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
{
	acpi_status status;
	struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
	union acpi_object *package, *fields;
	int i;

	memset(hpp, 0, sizeof(struct hotplug_params));

	status = acpi_evaluate_object(handle, "_HPP", NULL, &buffer);
	if (ACPI_FAILURE(status))
		return status;

	package = (union acpi_object *) buffer.pointer;
	if (package->type != ACPI_TYPE_PACKAGE ||
	    package->package.count != 4) {
		status = AE_ERROR;
		goto exit;
	}

	fields = package->package.elements;
	for (i = 0; i < 4; i++) {
		if (fields[i].type != ACPI_TYPE_INTEGER) {
			status = AE_ERROR;
			goto exit;
		}
	}

	hpp->t0 = &hpp->type0_data;
	hpp->t0->revision        = 1;
	hpp->t0->cache_line_size = fields[0].integer.value;
	hpp->t0->latency_timer   = fields[1].integer.value;
	hpp->t0->enable_serr     = fields[2].integer.value;
	hpp->t0->enable_perr     = fields[3].integer.value;

exit:
	kfree(buffer.pointer);
	return status;
}

/* pci_get_hp_params
 *
 * @dev - the pci_dev for which we want parameters
 * @hpp - allocated by the caller
 */
int pci_get_hp_params(struct pci_dev *dev, struct hotplug_params *hpp)
{
	acpi_status status;
	acpi_handle handle, phandle;
	struct pci_bus *pbus;

251 252 253
	if (acpi_pci_disabled)
		return -ENODEV;

254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
	handle = NULL;
	for (pbus = dev->bus; pbus; pbus = pbus->parent) {
		handle = acpi_pci_get_bridge_handle(pbus);
		if (handle)
			break;
	}

	/*
	 * _HPP settings apply to all child buses, until another _HPP is
	 * encountered. If we don't find an _HPP for the input pci dev,
	 * look for it in the parent device scope since that would apply to
	 * this pci dev.
	 */
	while (handle) {
		status = acpi_run_hpx(handle, hpp);
		if (ACPI_SUCCESS(status))
			return 0;
		status = acpi_run_hpp(handle, hpp);
		if (ACPI_SUCCESS(status))
			return 0;
		if (acpi_is_root_bridge(handle))
			break;
		status = acpi_get_parent(handle, &phandle);
		if (ACPI_FAILURE(status))
			break;
		handle = phandle;
	}
	return -ENODEV;
}
EXPORT_SYMBOL_GPL(pci_get_hp_params);

285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
/**
 * pci_acpi_wake_bus - Root bus wakeup notification fork function.
 * @work: Work item to handle.
 */
static void pci_acpi_wake_bus(struct work_struct *work)
{
	struct acpi_device *adev;
	struct acpi_pci_root *root;

	adev = container_of(work, struct acpi_device, wakeup.context.work);
	root = acpi_driver_data(adev);
	pci_pme_wakeup_bus(root->bus);
}

/**
 * pci_acpi_wake_dev - PCI device wakeup notification work function.
 * @handle: ACPI handle of a device the notification is for.
 * @work: Work item to handle.
 */
static void pci_acpi_wake_dev(struct work_struct *work)
{
	struct acpi_device_wakeup_context *context;
	struct pci_dev *pci_dev;

	context = container_of(work, struct acpi_device_wakeup_context, work);
	pci_dev = to_pci_dev(context->dev);

	if (pci_dev->pme_poll)
		pci_dev->pme_poll = false;

	if (pci_dev->current_state == PCI_D3cold) {
		pci_wakeup_event(pci_dev);
		pm_runtime_resume(&pci_dev->dev);
		return;
	}

	/* Clear PME Status if set. */
	if (pci_dev->pme_support)
		pci_check_pme_status(pci_dev);

	pci_wakeup_event(pci_dev);
	pm_runtime_resume(&pci_dev->dev);

328
	pci_pme_wakeup_bus(pci_dev->subordinate);
329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350
}

/**
 * pci_acpi_add_bus_pm_notifier - Register PM notifier for root PCI bus.
 * @dev: PCI root bridge ACPI device.
 */
acpi_status pci_acpi_add_bus_pm_notifier(struct acpi_device *dev)
{
	return acpi_add_pm_notifier(dev, NULL, pci_acpi_wake_bus);
}

/**
 * pci_acpi_add_pm_notifier - Register PM notifier for given PCI device.
 * @dev: ACPI device to add the notifier for.
 * @pci_dev: PCI device to check for the PME status if an event is signaled.
 */
acpi_status pci_acpi_add_pm_notifier(struct acpi_device *dev,
				     struct pci_dev *pci_dev)
{
	return acpi_add_pm_notifier(dev, &pci_dev->dev, pci_acpi_wake_dev);
}

351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370
/*
 * _SxD returns the D-state with the highest power
 * (lowest D-state number) supported in the S-state "x".
 *
 * If the devices does not have a _PRW
 * (Power Resources for Wake) supporting system wakeup from "x"
 * then the OS is free to choose a lower power (higher number
 * D-state) than the return value from _SxD.
 *
 * But if _PRW is enabled at S-state "x", the OS
 * must not choose a power lower than _SxD --
 * unless the device has an _SxW method specifying
 * the lowest power (highest D-state number) the device
 * may enter while still able to wake the system.
 *
 * ie. depending on global OS policy:
 *
 * if (_PRW at S-state x)
 *	choose from highest power _SxD to lowest power _SxW
 * else // no _PRW at S-state x
371
 *	choose highest power _SxD or any lower power
372 373
 */

374
static pci_power_t acpi_pci_choose_state(struct pci_dev *pdev)
375
{
376
	int acpi_state, d_max;
377

378 379 380 381 382
	if (pdev->no_d3cold)
		d_max = ACPI_STATE_D3_HOT;
	else
		d_max = ACPI_STATE_D3_COLD;
	acpi_state = acpi_pm_device_sleep_state(&pdev->dev, NULL, d_max);
383 384 385 386 387 388 389 390 391 392
	if (acpi_state < 0)
		return PCI_POWER_ERROR;

	switch (acpi_state) {
	case ACPI_STATE_D0:
		return PCI_D0;
	case ACPI_STATE_D1:
		return PCI_D1;
	case ACPI_STATE_D2:
		return PCI_D2;
L
Lin Ming 已提交
393
	case ACPI_STATE_D3_HOT:
394
		return PCI_D3hot;
L
Lin Ming 已提交
395 396
	case ACPI_STATE_D3_COLD:
		return PCI_D3cold;
397 398
	}
	return PCI_POWER_ERROR;
399
}
400 401 402

static bool acpi_pci_power_manageable(struct pci_dev *dev)
{
403 404
	struct acpi_device *adev = ACPI_COMPANION(&dev->dev);
	return adev ? acpi_device_power_manageable(adev) : false;
405
}
406

407 408
static int acpi_pci_set_power_state(struct pci_dev *dev, pci_power_t state)
{
409
	struct acpi_device *adev = ACPI_COMPANION(&dev->dev);
410 411 412 413
	static const u8 state_conv[] = {
		[PCI_D0] = ACPI_STATE_D0,
		[PCI_D1] = ACPI_STATE_D1,
		[PCI_D2] = ACPI_STATE_D2,
414 415
		[PCI_D3hot] = ACPI_STATE_D3_COLD,
		[PCI_D3cold] = ACPI_STATE_D3_COLD,
416
	};
417
	int error = -EINVAL;
418

419
	/* If the ACPI device has _EJ0, ignore the device */
420
	if (!adev || acpi_has_method(adev->handle, "_EJ0"))
421
		return -ENODEV;
422 423

	switch (state) {
424 425 426 427 428 429
	case PCI_D3cold:
		if (dev_pm_qos_flags(&dev->dev, PM_QOS_FLAG_NO_POWER_OFF) ==
				PM_QOS_FLAGS_ALL) {
			error = -EBUSY;
			break;
		}
430 431 432 433
	case PCI_D0:
	case PCI_D1:
	case PCI_D2:
	case PCI_D3hot:
434
		error = acpi_device_set_power(adev, state_conv[state]);
435
	}
436 437

	if (!error)
438
		dev_dbg(&dev->dev, "power state changed by ACPI to %s\n",
439
			 acpi_power_state_string(state_conv[state]));
440 441

	return error;
442 443
}

444 445
static bool acpi_pci_can_wakeup(struct pci_dev *dev)
{
446 447
	struct acpi_device *adev = ACPI_COMPANION(&dev->dev);
	return adev ? acpi_device_can_wakeup(adev) : false;
448 449
}

450 451 452
static void acpi_pci_propagate_wakeup_enable(struct pci_bus *bus, bool enable)
{
	while (bus->parent) {
453
		if (!acpi_pm_device_sleep_wake(&bus->self->dev, enable))
454 455 456 457 458 459 460 461 462
			return;
		bus = bus->parent;
	}

	/* We have reached the root bus. */
	if (bus->bridge)
		acpi_pm_device_sleep_wake(bus->bridge, enable);
}

463 464
static int acpi_pci_sleep_wake(struct pci_dev *dev, bool enable)
{
465 466 467
	if (acpi_pci_can_wakeup(dev))
		return acpi_pm_device_sleep_wake(&dev->dev, enable);

468
	acpi_pci_propagate_wakeup_enable(dev->bus, enable);
469
	return 0;
470 471
}

472 473 474 475 476 477 478
static void acpi_pci_propagate_run_wake(struct pci_bus *bus, bool enable)
{
	while (bus->parent) {
		struct pci_dev *bridge = bus->self;

		if (bridge->pme_interrupt)
			return;
479
		if (!acpi_pm_device_run_wake(&bridge->dev, enable))
480 481 482 483 484 485
			return;
		bus = bus->parent;
	}

	/* We have reached the root bus. */
	if (bus->bridge)
486
		acpi_pm_device_run_wake(bus->bridge, enable);
487 488 489 490
}

static int acpi_pci_run_wake(struct pci_dev *dev, bool enable)
{
491 492 493 494 495 496 497
	/*
	 * Per PCI Express Base Specification Revision 2.0 section
	 * 5.3.3.2 Link Wakeup, platform support is needed for D3cold
	 * waking up to power on the main link even if there is PME
	 * support for D3cold
	 */
	if (dev->pme_interrupt && !dev->runtime_d3cold)
498 499
		return 0;

500
	if (!acpi_pm_device_run_wake(&dev->dev, enable))
501 502 503 504 505 506
		return 0;

	acpi_pci_propagate_run_wake(dev->bus, enable);
	return 0;
}

507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522
static bool acpi_pci_need_resume(struct pci_dev *dev)
{
	struct acpi_device *adev = ACPI_COMPANION(&dev->dev);

	if (!adev || !acpi_device_power_manageable(adev))
		return false;

	if (device_may_wakeup(&dev->dev) != !!adev->wakeup.prepare_count)
		return true;

	if (acpi_target_system_state() == ACPI_STATE_S0)
		return false;

	return !!adev->power.flags.dsw_present;
}

523 524 525 526
static struct pci_platform_pm_ops acpi_pci_platform_pm = {
	.is_manageable = acpi_pci_power_manageable,
	.set_state = acpi_pci_set_power_state,
	.choose_state = acpi_pci_choose_state,
527
	.sleep_wake = acpi_pci_sleep_wake,
528
	.run_wake = acpi_pci_run_wake,
529
	.need_resume = acpi_pci_need_resume,
530
};
531

532 533
void acpi_pci_add_bus(struct pci_bus *bus)
{
534
	if (acpi_pci_disabled || !bus->bridge)
535 536
		return;

537 538
	acpi_pci_slot_enumerate(bus);
	acpiphp_enumerate_slots(bus);
539 540 541 542
}

void acpi_pci_remove_bus(struct pci_bus *bus)
{
543
	if (acpi_pci_disabled || !bus->bridge)
544 545
		return;

546
	acpiphp_remove_slots(bus);
547
	acpi_pci_slot_remove(bus);
548 549
}

550
/* ACPI bus type */
551
static struct acpi_device *acpi_pci_find_companion(struct device *dev)
552
{
553
	struct pci_dev *pci_dev = to_pci_dev(dev);
554
	bool check_children;
555
	u64 addr;
556

557
	check_children = pci_is_bridge(pci_dev);
558 559
	/* Please ref to ACPI spec for the syntax of _ADR */
	addr = (PCI_SLOT(pci_dev->devfn) << 16) | PCI_FUNC(pci_dev->devfn);
560
	return acpi_find_child_device(ACPI_COMPANION(dev->parent), addr,
561
				      check_children);
562 563
}

564
static void pci_acpi_setup(struct device *dev)
565 566
{
	struct pci_dev *pci_dev = to_pci_dev(dev);
567
	struct acpi_device *adev = ACPI_COMPANION(dev);
568

569 570 571 572 573
	if (!adev)
		return;

	pci_acpi_add_pm_notifier(adev, pci_dev);
	if (!adev->wakeup.flags.valid)
574 575 576 577 578 579 580 581
		return;

	device_set_wakeup_capable(dev, true);
	acpi_pci_sleep_wake(pci_dev, false);
	if (adev->wakeup.flags.run_wake)
		device_set_run_wake(dev, true);
}

582
static void pci_acpi_cleanup(struct device *dev)
583
{
584 585 586 587
	struct acpi_device *adev = ACPI_COMPANION(dev);

	if (!adev)
		return;
588

589 590
	pci_acpi_remove_pm_notifier(adev);
	if (adev->wakeup.flags.valid) {
591 592 593 594 595
		device_set_wakeup_capable(dev, false);
		device_set_run_wake(dev, false);
	}
}

596 597
static bool pci_acpi_bus_match(struct device *dev)
{
598
	return dev_is_pci(dev);
599 600
}

601
static struct acpi_bus_type acpi_pci_bus = {
602 603
	.name = "PCI",
	.match = pci_acpi_bus_match,
604
	.find_companion = acpi_pci_find_companion,
605 606
	.setup = pci_acpi_setup,
	.cleanup = pci_acpi_cleanup,
607 608
};

609
static int __init acpi_pci_init(void)
610 611 612
{
	int ret;

B
Bob Moore 已提交
613
	if (acpi_gbl_FADT.boot_flags & ACPI_FADT_NO_MSI) {
614
		pr_info("ACPI FADT declares the system doesn't support MSI, so disable it\n");
615 616
		pci_no_msi();
	}
617

B
Bob Moore 已提交
618
	if (acpi_gbl_FADT.boot_flags & ACPI_FADT_NO_ASPM) {
619
		pr_info("ACPI FADT declares the system doesn't support PCIe ASPM, so disable it\n");
620 621 622
		pcie_no_aspm();
	}

623
	ret = register_acpi_bus_type(&acpi_pci_bus);
624 625
	if (ret)
		return 0;
626

627
	pci_set_platform_pm(&acpi_pci_platform_pm);
628
	acpi_pci_slot_init();
629
	acpiphp_init();
630

631 632
	return 0;
}
633
arch_initcall(acpi_pci_init);