blob: a1dee29beed328430491bdbff3cfe386692b06ba [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * pci_bind.c - ACPI PCI Device Binding ($Revision: 2 $)
3 *
4 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
5 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
6 *
7 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or (at
12 * your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
22 *
23 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
24 */
25
26#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/pci.h>
Rafael J. Wysockib67ea762010-02-17 23:44:09 +010029#include <linux/pci-acpi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/acpi.h>
Rafael J. Wysockib67ea762010-02-17 23:44:09 +010031#include <linux/pm_runtime.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <acpi/acpi_bus.h>
33#include <acpi/acpi_drivers.h>
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#define _COMPONENT ACPI_PCI_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050036ACPI_MODULE_NAME("pci_bind");
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Alexander Chiangc22d7f52009-06-10 19:55:25 +000038static int acpi_pci_unbind(struct acpi_device *device)
39{
Alexander Chiang499650d2009-06-10 19:55:30 +000040 struct pci_dev *dev;
Alexander Chiangc22d7f52009-06-10 19:55:25 +000041
Alexander Chiang499650d2009-06-10 19:55:30 +000042 dev = acpi_get_pci_dev(device->handle);
Rafael J. Wysockib67ea762010-02-17 23:44:09 +010043 if (!dev)
44 goto out;
45
46 device_set_run_wake(&dev->dev, false);
47 pci_acpi_remove_pm_notifier(device);
Huang Ying71fbad62012-11-07 08:57:59 +080048 acpi_power_resource_unregister_device(&dev->dev, device->handle);
Rafael J. Wysockib67ea762010-02-17 23:44:09 +010049
50 if (!dev->subordinate)
Alexander Chiang97719a82009-06-10 19:55:45 +000051 goto out;
Alexander Chiangc22d7f52009-06-10 19:55:25 +000052
Bjorn Helgaas79c44122012-10-30 15:24:06 +090053 acpi_pci_irq_del_prt(pci_domain_nr(dev->bus), dev->subordinate->number);
Alexander Chiangc22d7f52009-06-10 19:55:25 +000054
Alexander Chiang97719a82009-06-10 19:55:45 +000055 device->ops.bind = NULL;
56 device->ops.unbind = NULL;
57
58out:
Alexander Chiang499650d2009-06-10 19:55:30 +000059 pci_dev_put(dev);
60 return 0;
Alexander Chiangc22d7f52009-06-10 19:55:25 +000061}
62
Alexander Chiangce597bb2009-06-10 19:55:09 +000063static int acpi_pci_bind(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
Len Brown087da3b2008-12-30 22:44:33 -050065 acpi_status status;
Len Brown087da3b2008-12-30 22:44:33 -050066 acpi_handle handle;
Bjorn Helgaas79c44122012-10-30 15:24:06 +090067 unsigned char bus;
Alexander Chiang499650d2009-06-10 19:55:30 +000068 struct pci_dev *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Alexander Chiang499650d2009-06-10 19:55:30 +000070 dev = acpi_get_pci_dev(device->handle);
71 if (!dev)
72 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Rafael J. Wysockib67ea762010-02-17 23:44:09 +010074 pci_acpi_add_pm_notifier(device, dev);
Huang Ying71fbad62012-11-07 08:57:59 +080075 acpi_power_resource_register_device(&dev->dev, device->handle);
Rafael J. Wysockib67ea762010-02-17 23:44:09 +010076 if (device->wakeup.flags.run_wake)
77 device_set_run_wake(&dev->dev, true);
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 /*
Alexander Chiang499650d2009-06-10 19:55:30 +000080 * Install the 'bind' function to facilitate callbacks for
81 * children of the P2P bridge.
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 */
Alexander Chiang499650d2009-06-10 19:55:30 +000083 if (dev->subordinate) {
Len Brown4be44fc2005-08-05 00:44:28 -040084 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Bjorn Helgaas21a53282008-12-08 21:30:05 -070085 "Device %04x:%02x:%02x.%d is a PCI bridge\n",
Alexander Chiang499650d2009-06-10 19:55:30 +000086 pci_domain_nr(dev->bus), dev->bus->number,
87 PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn)));
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 device->ops.bind = acpi_pci_bind;
89 device->ops.unbind = acpi_pci_unbind;
90 }
91
92 /*
Alexander Chiang499650d2009-06-10 19:55:30 +000093 * Evaluate and parse _PRT, if exists. This code allows parsing of
94 * _PRT objects within the scope of non-bridge devices. Note that
95 * _PRTs within the scope of a PCI bridge assume the bridge's
96 * subordinate bus number.
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 *
98 * TBD: Can _PRTs exist within the scope of non-bridge PCI devices?
99 */
100 status = acpi_get_handle(device->handle, METHOD_NAME__PRT, &handle);
Alexander Chiang499650d2009-06-10 19:55:30 +0000101 if (ACPI_FAILURE(status))
102 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Alexander Chiang499650d2009-06-10 19:55:30 +0000104 if (dev->subordinate)
Bjorn Helgaas79c44122012-10-30 15:24:06 +0900105 bus = dev->subordinate->number;
Alexander Chiang499650d2009-06-10 19:55:30 +0000106 else
Bjorn Helgaas79c44122012-10-30 15:24:06 +0900107 bus = dev->bus->number;
Alexander Chiang499650d2009-06-10 19:55:30 +0000108
Bjorn Helgaas79c44122012-10-30 15:24:06 +0900109 acpi_pci_irq_add_prt(device->handle, pci_domain_nr(dev->bus), bus);
Alexander Chiang499650d2009-06-10 19:55:30 +0000110
111out:
112 pci_dev_put(dev);
113 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114}
115
Alexander Chiang499650d2009-06-10 19:55:30 +0000116int acpi_pci_bind_root(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 device->ops.bind = acpi_pci_bind;
119 device->ops.unbind = acpi_pci_unbind;
120
Alexander Chiang499650d2009-06-10 19:55:30 +0000121 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122}