ext3: Update MAINTAINERS for ext3 and JBD
[linux/fpc-iii.git] / drivers / acpi / pci_root.c
blob31b961c2f22f483f61222ac75a426ca2b701a367
1 /*
2 * pci_root.c - ACPI PCI Root Bridge Driver ($Revision: 40 $)
4 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
5 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
7 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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.
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.
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.
23 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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/pci-acpi.h>
35 #include <linux/acpi.h>
36 #include <acpi/acpi_bus.h>
37 #include <acpi/acpi_drivers.h>
39 #define _COMPONENT ACPI_PCI_COMPONENT
40 ACPI_MODULE_NAME("pci_root");
41 #define ACPI_PCI_ROOT_CLASS "pci_bridge"
42 #define ACPI_PCI_ROOT_DEVICE_NAME "PCI Root Bridge"
43 static int acpi_pci_root_add(struct acpi_device *device);
44 static int acpi_pci_root_remove(struct acpi_device *device, int type);
45 static int acpi_pci_root_start(struct acpi_device *device);
47 static struct acpi_device_id root_device_ids[] = {
48 {"PNP0A03", 0},
49 {"", 0},
51 MODULE_DEVICE_TABLE(acpi, root_device_ids);
53 static struct acpi_driver acpi_pci_root_driver = {
54 .name = "pci_root",
55 .class = ACPI_PCI_ROOT_CLASS,
56 .ids = root_device_ids,
57 .ops = {
58 .add = acpi_pci_root_add,
59 .remove = acpi_pci_root_remove,
60 .start = acpi_pci_root_start,
64 static LIST_HEAD(acpi_pci_roots);
66 static struct acpi_pci_driver *sub_driver;
67 static DEFINE_MUTEX(osc_lock);
69 int acpi_pci_register_driver(struct acpi_pci_driver *driver)
71 int n = 0;
72 struct acpi_pci_root *root;
74 struct acpi_pci_driver **pptr = &sub_driver;
75 while (*pptr)
76 pptr = &(*pptr)->next;
77 *pptr = driver;
79 if (!driver->add)
80 return 0;
82 list_for_each_entry(root, &acpi_pci_roots, node) {
83 driver->add(root->device->handle);
84 n++;
87 return n;
90 EXPORT_SYMBOL(acpi_pci_register_driver);
92 void acpi_pci_unregister_driver(struct acpi_pci_driver *driver)
94 struct acpi_pci_root *root;
96 struct acpi_pci_driver **pptr = &sub_driver;
97 while (*pptr) {
98 if (*pptr == driver)
99 break;
100 pptr = &(*pptr)->next;
102 BUG_ON(!*pptr);
103 *pptr = (*pptr)->next;
105 if (!driver->remove)
106 return;
108 list_for_each_entry(root, &acpi_pci_roots, node)
109 driver->remove(root->device->handle);
112 EXPORT_SYMBOL(acpi_pci_unregister_driver);
114 acpi_handle acpi_get_pci_rootbridge_handle(unsigned int seg, unsigned int bus)
116 struct acpi_pci_root *root;
118 list_for_each_entry(root, &acpi_pci_roots, node)
119 if ((root->segment == (u16) seg) && (root->bus_nr == (u16) bus))
120 return root->device->handle;
121 return NULL;
124 EXPORT_SYMBOL_GPL(acpi_get_pci_rootbridge_handle);
127 * acpi_is_root_bridge - determine whether an ACPI CA node is a PCI root bridge
128 * @handle - the ACPI CA node in question.
130 * Note: we could make this API take a struct acpi_device * instead, but
131 * for now, it's more convenient to operate on an acpi_handle.
133 int acpi_is_root_bridge(acpi_handle handle)
135 int ret;
136 struct acpi_device *device;
138 ret = acpi_bus_get_device(handle, &device);
139 if (ret)
140 return 0;
142 ret = acpi_match_device_ids(device, root_device_ids);
143 if (ret)
144 return 0;
145 else
146 return 1;
148 EXPORT_SYMBOL_GPL(acpi_is_root_bridge);
150 static acpi_status
151 get_root_bridge_busnr_callback(struct acpi_resource *resource, void *data)
153 int *busnr = data;
154 struct acpi_resource_address64 address;
156 if (resource->type != ACPI_RESOURCE_TYPE_ADDRESS16 &&
157 resource->type != ACPI_RESOURCE_TYPE_ADDRESS32 &&
158 resource->type != ACPI_RESOURCE_TYPE_ADDRESS64)
159 return AE_OK;
161 acpi_resource_to_address64(resource, &address);
162 if ((address.address_length > 0) &&
163 (address.resource_type == ACPI_BUS_NUMBER_RANGE))
164 *busnr = address.minimum;
166 return AE_OK;
169 static acpi_status try_get_root_bridge_busnr(acpi_handle handle,
170 unsigned long long *bus)
172 acpi_status status;
173 int busnum;
175 busnum = -1;
176 status =
177 acpi_walk_resources(handle, METHOD_NAME__CRS,
178 get_root_bridge_busnr_callback, &busnum);
179 if (ACPI_FAILURE(status))
180 return status;
181 /* Check if we really get a bus number from _CRS */
182 if (busnum == -1)
183 return AE_ERROR;
184 *bus = busnum;
185 return AE_OK;
188 static void acpi_pci_bridge_scan(struct acpi_device *device)
190 int status;
191 struct acpi_device *child = NULL;
193 if (device->flags.bus_address)
194 if (device->parent && device->parent->ops.bind) {
195 status = device->parent->ops.bind(device);
196 if (!status) {
197 list_for_each_entry(child, &device->children, node)
198 acpi_pci_bridge_scan(child);
203 static u8 OSC_UUID[16] = {0x5B, 0x4D, 0xDB, 0x33, 0xF7, 0x1F, 0x1C, 0x40,
204 0x96, 0x57, 0x74, 0x41, 0xC0, 0x3D, 0xD7, 0x66};
206 static acpi_status acpi_pci_run_osc(acpi_handle handle,
207 const u32 *capbuf, u32 *retval)
209 acpi_status status;
210 struct acpi_object_list input;
211 union acpi_object in_params[4];
212 struct acpi_buffer output = {ACPI_ALLOCATE_BUFFER, NULL};
213 union acpi_object *out_obj;
214 u32 errors;
216 /* Setting up input parameters */
217 input.count = 4;
218 input.pointer = in_params;
219 in_params[0].type = ACPI_TYPE_BUFFER;
220 in_params[0].buffer.length = 16;
221 in_params[0].buffer.pointer = OSC_UUID;
222 in_params[1].type = ACPI_TYPE_INTEGER;
223 in_params[1].integer.value = 1;
224 in_params[2].type = ACPI_TYPE_INTEGER;
225 in_params[2].integer.value = 3;
226 in_params[3].type = ACPI_TYPE_BUFFER;
227 in_params[3].buffer.length = 12;
228 in_params[3].buffer.pointer = (u8 *)capbuf;
230 status = acpi_evaluate_object(handle, "_OSC", &input, &output);
231 if (ACPI_FAILURE(status))
232 return status;
234 if (!output.length)
235 return AE_NULL_OBJECT;
237 out_obj = output.pointer;
238 if (out_obj->type != ACPI_TYPE_BUFFER) {
239 printk(KERN_DEBUG "_OSC evaluation returned wrong type\n");
240 status = AE_TYPE;
241 goto out_kfree;
243 /* Need to ignore the bit0 in result code */
244 errors = *((u32 *)out_obj->buffer.pointer) & ~(1 << 0);
245 if (errors) {
246 if (errors & OSC_REQUEST_ERROR)
247 printk(KERN_DEBUG "_OSC request failed\n");
248 if (errors & OSC_INVALID_UUID_ERROR)
249 printk(KERN_DEBUG "_OSC invalid UUID\n");
250 if (errors & OSC_INVALID_REVISION_ERROR)
251 printk(KERN_DEBUG "_OSC invalid revision\n");
252 if (errors & OSC_CAPABILITIES_MASK_ERROR) {
253 if (capbuf[OSC_QUERY_TYPE] & OSC_QUERY_ENABLE)
254 goto out_success;
255 printk(KERN_DEBUG
256 "Firmware did not grant requested _OSC control\n");
257 status = AE_SUPPORT;
258 goto out_kfree;
260 status = AE_ERROR;
261 goto out_kfree;
263 out_success:
264 *retval = *((u32 *)(out_obj->buffer.pointer + 8));
265 status = AE_OK;
267 out_kfree:
268 kfree(output.pointer);
269 return status;
272 static acpi_status acpi_pci_query_osc(struct acpi_pci_root *root, u32 flags)
274 acpi_status status;
275 u32 support_set, result, capbuf[3];
277 /* do _OSC query for all possible controls */
278 support_set = root->osc_support_set | (flags & OSC_SUPPORT_MASKS);
279 capbuf[OSC_QUERY_TYPE] = OSC_QUERY_ENABLE;
280 capbuf[OSC_SUPPORT_TYPE] = support_set;
281 capbuf[OSC_CONTROL_TYPE] = OSC_CONTROL_MASKS;
283 status = acpi_pci_run_osc(root->device->handle, capbuf, &result);
284 if (ACPI_SUCCESS(status)) {
285 root->osc_support_set = support_set;
286 root->osc_control_qry = result;
287 root->osc_queried = 1;
289 return status;
292 static acpi_status acpi_pci_osc_support(struct acpi_pci_root *root, u32 flags)
294 acpi_status status;
295 acpi_handle tmp;
297 status = acpi_get_handle(root->device->handle, "_OSC", &tmp);
298 if (ACPI_FAILURE(status))
299 return status;
300 mutex_lock(&osc_lock);
301 status = acpi_pci_query_osc(root, flags);
302 mutex_unlock(&osc_lock);
303 return status;
306 struct acpi_pci_root *acpi_pci_find_root(acpi_handle handle)
308 struct acpi_pci_root *root;
310 list_for_each_entry(root, &acpi_pci_roots, node) {
311 if (root->device->handle == handle)
312 return root;
314 return NULL;
316 EXPORT_SYMBOL_GPL(acpi_pci_find_root);
318 struct acpi_handle_node {
319 struct list_head node;
320 acpi_handle handle;
324 * acpi_get_pci_dev - convert ACPI CA handle to struct pci_dev
325 * @handle: the handle in question
327 * Given an ACPI CA handle, the desired PCI device is located in the
328 * list of PCI devices.
330 * If the device is found, its reference count is increased and this
331 * function returns a pointer to its data structure. The caller must
332 * decrement the reference count by calling pci_dev_put().
333 * If no device is found, %NULL is returned.
335 struct pci_dev *acpi_get_pci_dev(acpi_handle handle)
337 int dev, fn;
338 unsigned long long adr;
339 acpi_status status;
340 acpi_handle phandle;
341 struct pci_bus *pbus;
342 struct pci_dev *pdev = NULL;
343 struct acpi_handle_node *node, *tmp;
344 struct acpi_pci_root *root;
345 LIST_HEAD(device_list);
348 * Walk up the ACPI CA namespace until we reach a PCI root bridge.
350 phandle = handle;
351 while (!acpi_is_root_bridge(phandle)) {
352 node = kzalloc(sizeof(struct acpi_handle_node), GFP_KERNEL);
353 if (!node)
354 goto out;
356 INIT_LIST_HEAD(&node->node);
357 node->handle = phandle;
358 list_add(&node->node, &device_list);
360 status = acpi_get_parent(phandle, &phandle);
361 if (ACPI_FAILURE(status))
362 goto out;
365 root = acpi_pci_find_root(phandle);
366 if (!root)
367 goto out;
369 pbus = root->bus;
372 * Now, walk back down the PCI device tree until we return to our
373 * original handle. Assumes that everything between the PCI root
374 * bridge and the device we're looking for must be a P2P bridge.
376 list_for_each_entry(node, &device_list, node) {
377 acpi_handle hnd = node->handle;
378 status = acpi_evaluate_integer(hnd, "_ADR", NULL, &adr);
379 if (ACPI_FAILURE(status))
380 goto out;
381 dev = (adr >> 16) & 0xffff;
382 fn = adr & 0xffff;
384 pdev = pci_get_slot(pbus, PCI_DEVFN(dev, fn));
385 if (!pdev || hnd == handle)
386 break;
388 pbus = pdev->subordinate;
389 pci_dev_put(pdev);
391 out:
392 list_for_each_entry_safe(node, tmp, &device_list, node)
393 kfree(node);
395 return pdev;
397 EXPORT_SYMBOL_GPL(acpi_get_pci_dev);
400 * acpi_pci_osc_control_set - commit requested control to Firmware
401 * @handle: acpi_handle for the target ACPI object
402 * @flags: driver's requested control bits
404 * Attempt to take control from Firmware on requested control bits.
406 acpi_status acpi_pci_osc_control_set(acpi_handle handle, u32 flags)
408 acpi_status status;
409 u32 control_req, result, capbuf[3];
410 acpi_handle tmp;
411 struct acpi_pci_root *root;
413 status = acpi_get_handle(handle, "_OSC", &tmp);
414 if (ACPI_FAILURE(status))
415 return status;
417 control_req = (flags & OSC_CONTROL_MASKS);
418 if (!control_req)
419 return AE_TYPE;
421 root = acpi_pci_find_root(handle);
422 if (!root)
423 return AE_NOT_EXIST;
425 mutex_lock(&osc_lock);
426 /* No need to evaluate _OSC if the control was already granted. */
427 if ((root->osc_control_set & control_req) == control_req)
428 goto out;
430 /* Need to query controls first before requesting them */
431 if (!root->osc_queried) {
432 status = acpi_pci_query_osc(root, root->osc_support_set);
433 if (ACPI_FAILURE(status))
434 goto out;
436 if ((root->osc_control_qry & control_req) != control_req) {
437 printk(KERN_DEBUG
438 "Firmware did not grant requested _OSC control\n");
439 status = AE_SUPPORT;
440 goto out;
443 capbuf[OSC_QUERY_TYPE] = 0;
444 capbuf[OSC_SUPPORT_TYPE] = root->osc_support_set;
445 capbuf[OSC_CONTROL_TYPE] = root->osc_control_set | control_req;
446 status = acpi_pci_run_osc(handle, capbuf, &result);
447 if (ACPI_SUCCESS(status))
448 root->osc_control_set = result;
449 out:
450 mutex_unlock(&osc_lock);
451 return status;
453 EXPORT_SYMBOL(acpi_pci_osc_control_set);
455 static int __devinit acpi_pci_root_add(struct acpi_device *device)
457 unsigned long long segment, bus;
458 acpi_status status;
459 int result;
460 struct acpi_pci_root *root;
461 acpi_handle handle;
462 struct acpi_device *child;
463 u32 flags, base_flags;
465 segment = 0;
466 status = acpi_evaluate_integer(device->handle, METHOD_NAME__SEG, NULL,
467 &segment);
468 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
469 printk(KERN_ERR PREFIX "can't evaluate _SEG\n");
470 return -ENODEV;
473 /* Check _CRS first, then _BBN. If no _BBN, default to zero. */
474 bus = 0;
475 status = try_get_root_bridge_busnr(device->handle, &bus);
476 if (ACPI_FAILURE(status)) {
477 status = acpi_evaluate_integer(device->handle, METHOD_NAME__BBN, NULL, &bus);
478 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
479 printk(KERN_ERR PREFIX
480 "no bus number in _CRS and can't evaluate _BBN\n");
481 return -ENODEV;
485 root = kzalloc(sizeof(struct acpi_pci_root), GFP_KERNEL);
486 if (!root)
487 return -ENOMEM;
489 INIT_LIST_HEAD(&root->node);
490 root->device = device;
491 root->segment = segment & 0xFFFF;
492 root->bus_nr = bus & 0xFF;
493 strcpy(acpi_device_name(device), ACPI_PCI_ROOT_DEVICE_NAME);
494 strcpy(acpi_device_class(device), ACPI_PCI_ROOT_CLASS);
495 device->driver_data = root;
498 * All supported architectures that use ACPI have support for
499 * PCI domains, so we indicate this in _OSC support capabilities.
501 flags = base_flags = OSC_PCI_SEGMENT_GROUPS_SUPPORT;
502 acpi_pci_osc_support(root, flags);
505 * TBD: Need PCI interface for enumeration/configuration of roots.
508 /* TBD: Locking */
509 list_add_tail(&root->node, &acpi_pci_roots);
511 printk(KERN_INFO PREFIX "%s [%s] (%04x:%02x)\n",
512 acpi_device_name(device), acpi_device_bid(device),
513 root->segment, root->bus_nr);
516 * Scan the Root Bridge
517 * --------------------
518 * Must do this prior to any attempt to bind the root device, as the
519 * PCI namespace does not get created until this call is made (and
520 * thus the root bridge's pci_dev does not exist).
522 root->bus = pci_acpi_scan_root(device, segment, bus);
523 if (!root->bus) {
524 printk(KERN_ERR PREFIX
525 "Bus %04x:%02x not present in PCI namespace\n",
526 root->segment, root->bus_nr);
527 result = -ENODEV;
528 goto end;
532 * Attach ACPI-PCI Context
533 * -----------------------
534 * Thus binding the ACPI and PCI devices.
536 result = acpi_pci_bind_root(device);
537 if (result)
538 goto end;
541 * PCI Routing Table
542 * -----------------
543 * Evaluate and parse _PRT, if exists.
545 status = acpi_get_handle(device->handle, METHOD_NAME__PRT, &handle);
546 if (ACPI_SUCCESS(status))
547 result = acpi_pci_irq_add_prt(device->handle, root->bus);
550 * Scan and bind all _ADR-Based Devices
552 list_for_each_entry(child, &device->children, node)
553 acpi_pci_bridge_scan(child);
555 /* Indicate support for various _OSC capabilities. */
556 if (pci_ext_cfg_avail(root->bus->self))
557 flags |= OSC_EXT_PCI_CONFIG_SUPPORT;
558 if (pcie_aspm_enabled())
559 flags |= OSC_ACTIVE_STATE_PWR_SUPPORT |
560 OSC_CLOCK_PWR_CAPABILITY_SUPPORT;
561 if (pci_msi_enabled())
562 flags |= OSC_MSI_SUPPORT;
563 if (flags != base_flags)
564 acpi_pci_osc_support(root, flags);
566 return 0;
568 end:
569 if (!list_empty(&root->node))
570 list_del(&root->node);
571 kfree(root);
572 return result;
575 static int acpi_pci_root_start(struct acpi_device *device)
577 struct acpi_pci_root *root = acpi_driver_data(device);
579 pci_bus_add_devices(root->bus);
580 return 0;
583 static int acpi_pci_root_remove(struct acpi_device *device, int type)
585 struct acpi_pci_root *root = acpi_driver_data(device);
587 kfree(root);
588 return 0;
591 static int __init acpi_pci_root_init(void)
593 if (acpi_pci_disabled)
594 return 0;
596 if (acpi_bus_register_driver(&acpi_pci_root_driver) < 0)
597 return -ENODEV;
599 return 0;
602 subsys_initcall(acpi_pci_root_init);