blob: 22ca3a1f38964d027aca6b0e91c13cee59d87f0c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * pci_root.c - ACPI PCI Root Bridge Driver ($Revision: 40 $)
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>
27#include <linux/module.h>
28#include <linux/init.h>
29#include <linux/types.h>
30#include <linux/proc_fs.h>
31#include <linux/spinlock.h>
32#include <linux/pm.h>
33#include <linux/pci.h>
34#include <linux/acpi.h>
35#include <acpi/acpi_bus.h>
36#include <acpi/acpi_drivers.h>
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#define _COMPONENT ACPI_PCI_COMPONENT
Len Brown4be44fc2005-08-05 00:44:28 -040039ACPI_MODULE_NAME("pci_root")
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#define ACPI_PCI_ROOT_CLASS "pci_bridge"
41#define ACPI_PCI_ROOT_HID "PNP0A03"
42#define ACPI_PCI_ROOT_DRIVER_NAME "ACPI PCI Root Bridge Driver"
43#define ACPI_PCI_ROOT_DEVICE_NAME "PCI Root Bridge"
Len Brown4be44fc2005-08-05 00:44:28 -040044static int acpi_pci_root_add(struct acpi_device *device);
45static int acpi_pci_root_remove(struct acpi_device *device, int type);
46static int acpi_pci_root_start(struct acpi_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48static struct acpi_driver acpi_pci_root_driver = {
Len Brown4be44fc2005-08-05 00:44:28 -040049 .name = ACPI_PCI_ROOT_DRIVER_NAME,
50 .class = ACPI_PCI_ROOT_CLASS,
51 .ids = ACPI_PCI_ROOT_HID,
52 .ops = {
53 .add = acpi_pci_root_add,
54 .remove = acpi_pci_root_remove,
55 .start = acpi_pci_root_start,
56 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070057};
58
59struct acpi_pci_root {
Len Brown4be44fc2005-08-05 00:44:28 -040060 struct list_head node;
61 acpi_handle handle;
Patrick Mochel32917e52006-05-19 16:54:39 -040062 struct acpi_device * device;
Len Brown4be44fc2005-08-05 00:44:28 -040063 struct acpi_pci_id id;
64 struct pci_bus *bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065};
66
67static LIST_HEAD(acpi_pci_roots);
68
69static struct acpi_pci_driver *sub_driver;
70
71int acpi_pci_register_driver(struct acpi_pci_driver *driver)
72{
73 int n = 0;
74 struct list_head *entry;
75
76 struct acpi_pci_driver **pptr = &sub_driver;
77 while (*pptr)
78 pptr = &(*pptr)->next;
79 *pptr = driver;
80
81 if (!driver->add)
82 return 0;
83
84 list_for_each(entry, &acpi_pci_roots) {
85 struct acpi_pci_root *root;
86 root = list_entry(entry, struct acpi_pci_root, node);
Patrick Mochel2d1e0a02006-05-19 16:54:43 -040087 driver->add(root->device->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 n++;
89 }
90
91 return n;
92}
Len Brown4be44fc2005-08-05 00:44:28 -040093
Linus Torvalds1da177e2005-04-16 15:20:36 -070094EXPORT_SYMBOL(acpi_pci_register_driver);
95
96void acpi_pci_unregister_driver(struct acpi_pci_driver *driver)
97{
98 struct list_head *entry;
99
100 struct acpi_pci_driver **pptr = &sub_driver;
101 while (*pptr) {
102 if (*pptr != driver)
103 continue;
104 *pptr = (*pptr)->next;
105 break;
106 }
107
108 if (!driver->remove)
109 return;
110
111 list_for_each(entry, &acpi_pci_roots) {
112 struct acpi_pci_root *root;
113 root = list_entry(entry, struct acpi_pci_root, node);
Patrick Mochel2d1e0a02006-05-19 16:54:43 -0400114 driver->remove(root->device->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 }
116}
Len Brown4be44fc2005-08-05 00:44:28 -0400117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118EXPORT_SYMBOL(acpi_pci_unregister_driver);
119
120static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400121get_root_bridge_busnr_callback(struct acpi_resource *resource, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
123 int *busnr = (int *)data;
124 struct acpi_resource_address64 address;
125
Bob Moore50eca3e2005-09-30 19:03:00 -0400126 if (resource->type != ACPI_RESOURCE_TYPE_ADDRESS16 &&
127 resource->type != ACPI_RESOURCE_TYPE_ADDRESS32 &&
128 resource->type != ACPI_RESOURCE_TYPE_ADDRESS64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 return AE_OK;
130
131 acpi_resource_to_address64(resource, &address);
Len Brown4be44fc2005-08-05 00:44:28 -0400132 if ((address.address_length > 0) &&
133 (address.resource_type == ACPI_BUS_NUMBER_RANGE))
Bob Moore50eca3e2005-09-30 19:03:00 -0400134 *busnr = address.minimum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136 return AE_OK;
137}
138
Len Brown4be44fc2005-08-05 00:44:28 -0400139static acpi_status try_get_root_bridge_busnr(acpi_handle handle, int *busnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
141 acpi_status status;
142
143 *busnum = -1;
Len Brown4be44fc2005-08-05 00:44:28 -0400144 status =
145 acpi_walk_resources(handle, METHOD_NAME__CRS,
146 get_root_bridge_busnr_callback, busnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 if (ACPI_FAILURE(status))
148 return status;
149 /* Check if we really get a bus number from _CRS */
150 if (*busnum == -1)
151 return AE_ERROR;
152 return AE_OK;
153}
154
Len Brown4be44fc2005-08-05 00:44:28 -0400155static int acpi_pci_root_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
Len Brown4be44fc2005-08-05 00:44:28 -0400157 int result = 0;
158 struct acpi_pci_root *root = NULL;
159 struct acpi_pci_root *tmp;
160 acpi_status status = AE_OK;
161 unsigned long value = 0;
162 acpi_handle handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400166 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168 root = kmalloc(sizeof(struct acpi_pci_root), GFP_KERNEL);
169 if (!root)
Patrick Mocheld550d982006-06-27 00:41:40 -0400170 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 memset(root, 0, sizeof(struct acpi_pci_root));
Rajesh Shahc431ada2005-04-28 00:25:45 -0700172 INIT_LIST_HEAD(&root->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174 root->handle = device->handle;
Patrick Mochel32917e52006-05-19 16:54:39 -0400175 root->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 strcpy(acpi_device_name(device), ACPI_PCI_ROOT_DEVICE_NAME);
177 strcpy(acpi_device_class(device), ACPI_PCI_ROOT_CLASS);
178 acpi_driver_data(device) = root;
179
180 /*
181 * TBD: Doesn't the bus driver automatically set this?
182 */
183 device->ops.bind = acpi_pci_bind;
184
185 /*
186 * Segment
187 * -------
188 * Obtained via _SEG, if exists, otherwise assumed to be zero (0).
189 */
Patrick Mochel2d1e0a02006-05-19 16:54:43 -0400190 status = acpi_evaluate_integer(device->handle, METHOD_NAME__SEG, NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400191 &value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 switch (status) {
193 case AE_OK:
194 root->id.segment = (u16) value;
195 break;
196 case AE_NOT_FOUND:
Len Brown4be44fc2005-08-05 00:44:28 -0400197 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
198 "Assuming segment 0 (no _SEG)\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 root->id.segment = 0;
200 break;
201 default:
Thomas Renningera6fc6722006-06-26 23:58:43 -0400202 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _SEG"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 result = -ENODEV;
204 goto end;
205 }
206
207 /*
208 * Bus
209 * ---
210 * Obtained via _BBN, if exists, otherwise assumed to be zero (0).
211 */
Patrick Mochel2d1e0a02006-05-19 16:54:43 -0400212 status = acpi_evaluate_integer(device->handle, METHOD_NAME__BBN, NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400213 &value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 switch (status) {
215 case AE_OK:
216 root->id.bus = (u16) value;
217 break;
218 case AE_NOT_FOUND:
219 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Assuming bus 0 (no _BBN)\n"));
220 root->id.bus = 0;
221 break;
222 default:
Thomas Renningera6fc6722006-06-26 23:58:43 -0400223 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BBN"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 result = -ENODEV;
225 goto end;
226 }
227
228 /* Some systems have wrong _BBN */
229 list_for_each_entry(tmp, &acpi_pci_roots, node) {
230 if ((tmp->id.segment == root->id.segment)
Len Brown4be44fc2005-08-05 00:44:28 -0400231 && (tmp->id.bus == root->id.bus)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 int bus = 0;
233 acpi_status status;
234
Len Brown64684632006-06-26 23:41:38 -0400235 printk(KERN_ERR PREFIX
Thomas Renningera6fc6722006-06-26 23:58:43 -0400236 "Wrong _BBN value, reboot"
Len Brown64684632006-06-26 23:41:38 -0400237 " and use option 'pci=noacpi'\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Patrick Mochel2d1e0a02006-05-19 16:54:43 -0400239 status = try_get_root_bridge_busnr(device->handle, &bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 if (ACPI_FAILURE(status))
241 break;
242 if (bus != root->id.bus) {
Len Brown4be44fc2005-08-05 00:44:28 -0400243 printk(KERN_INFO PREFIX
244 "PCI _CRS %d overrides _BBN 0\n", bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 root->id.bus = bus;
246 }
247 break;
248 }
249 }
250 /*
251 * Device & Function
252 * -----------------
253 * Obtained from _ADR (which has already been evaluated for us).
254 */
255 root->id.device = device->pnp.bus_address >> 16;
256 root->id.function = device->pnp.bus_address & 0xFFFF;
257
258 /*
259 * TBD: Need PCI interface for enumeration/configuration of roots.
260 */
261
Len Brown4be44fc2005-08-05 00:44:28 -0400262 /* TBD: Locking */
263 list_add_tail(&root->node, &acpi_pci_roots);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Len Brown4be44fc2005-08-05 00:44:28 -0400265 printk(KERN_INFO PREFIX "%s [%s] (%04x:%02x)\n",
266 acpi_device_name(device), acpi_device_bid(device),
267 root->id.segment, root->id.bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269 /*
270 * Scan the Root Bridge
271 * --------------------
272 * Must do this prior to any attempt to bind the root device, as the
273 * PCI namespace does not get created until this call is made (and
274 * thus the root bridge's pci_dev does not exist).
275 */
276 root->bus = pci_acpi_scan_root(device, root->id.segment, root->id.bus);
277 if (!root->bus) {
Len Brown64684632006-06-26 23:41:38 -0400278 printk(KERN_ERR PREFIX
279 "Bus %04x:%02x not present in PCI namespace\n",
280 root->id.segment, root->id.bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 result = -ENODEV;
282 goto end;
283 }
284
285 /*
286 * Attach ACPI-PCI Context
287 * -----------------------
288 * Thus binding the ACPI and PCI devices.
289 */
290 result = acpi_pci_bind_root(device, &root->id, root->bus);
291 if (result)
292 goto end;
293
294 /*
295 * PCI Routing Table
296 * -----------------
297 * Evaluate and parse _PRT, if exists.
298 */
Patrick Mochel2d1e0a02006-05-19 16:54:43 -0400299 status = acpi_get_handle(device->handle, METHOD_NAME__PRT, &handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 if (ACPI_SUCCESS(status))
Patrick Mochel2d1e0a02006-05-19 16:54:43 -0400301 result = acpi_pci_irq_add_prt(device->handle, root->id.segment,
Len Brown4be44fc2005-08-05 00:44:28 -0400302 root->id.bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Len Brown4be44fc2005-08-05 00:44:28 -0400304 end:
Rajesh Shahc431ada2005-04-28 00:25:45 -0700305 if (result) {
306 if (!list_empty(&root->node))
307 list_del(&root->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 kfree(root);
Rajesh Shahc431ada2005-04-28 00:25:45 -0700309 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Patrick Mocheld550d982006-06-27 00:41:40 -0400311 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
Len Brown4be44fc2005-08-05 00:44:28 -0400314static int acpi_pci_root_start(struct acpi_device *device)
Rajesh Shahc431ada2005-04-28 00:25:45 -0700315{
Len Brown4be44fc2005-08-05 00:44:28 -0400316 struct acpi_pci_root *root;
Rajesh Shahc431ada2005-04-28 00:25:45 -0700317
Rajesh Shahc431ada2005-04-28 00:25:45 -0700318
319 list_for_each_entry(root, &acpi_pci_roots, node) {
320 if (root->handle == device->handle) {
321 pci_bus_add_devices(root->bus);
Patrick Mocheld550d982006-06-27 00:41:40 -0400322 return 0;
Rajesh Shahc431ada2005-04-28 00:25:45 -0700323 }
324 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400325 return -ENODEV;
Rajesh Shahc431ada2005-04-28 00:25:45 -0700326}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Len Brown4be44fc2005-08-05 00:44:28 -0400328static int acpi_pci_root_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
Len Brown4be44fc2005-08-05 00:44:28 -0400330 struct acpi_pci_root *root = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
333 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400334 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Len Brown4be44fc2005-08-05 00:44:28 -0400336 root = (struct acpi_pci_root *)acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 kfree(root);
339
Patrick Mocheld550d982006-06-27 00:41:40 -0400340 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
342
Len Brown4be44fc2005-08-05 00:44:28 -0400343static int __init acpi_pci_root_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
346 if (acpi_pci_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -0400347 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 /* DEBUG:
Len Brown4be44fc2005-08-05 00:44:28 -0400350 acpi_dbg_layer = ACPI_PCI_COMPONENT;
351 acpi_dbg_level = 0xFFFFFFFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 */
353
354 if (acpi_bus_register_driver(&acpi_pci_root_driver) < 0)
Patrick Mocheld550d982006-06-27 00:41:40 -0400355 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Patrick Mocheld550d982006-06-27 00:41:40 -0400357 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358}
359
360subsys_initcall(acpi_pci_root_init);