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>
33 #include <linux/pm_runtime.h>
34 #include <linux/pci.h>
35 #include <linux/pci-acpi.h>
36 #include <linux/acpi.h>
37 #include <acpi/acpi_bus.h>
38 #include <acpi/acpi_drivers.h>
40 #define PREFIX "ACPI: "
42 #define _COMPONENT ACPI_PCI_COMPONENT
43 ACPI_MODULE_NAME("pci_root");
44 #define ACPI_PCI_ROOT_CLASS "pci_bridge"
45 #define ACPI_PCI_ROOT_DEVICE_NAME "PCI Root Bridge"
46 static int acpi_pci_root_add(struct acpi_device
*device
);
47 static int acpi_pci_root_remove(struct acpi_device
*device
, int type
);
48 static int acpi_pci_root_start(struct acpi_device
*device
);
50 static const struct acpi_device_id root_device_ids
[] = {
54 MODULE_DEVICE_TABLE(acpi
, root_device_ids
);
56 static struct acpi_driver acpi_pci_root_driver
= {
58 .class = ACPI_PCI_ROOT_CLASS
,
59 .ids
= root_device_ids
,
61 .add
= acpi_pci_root_add
,
62 .remove
= acpi_pci_root_remove
,
63 .start
= acpi_pci_root_start
,
67 static LIST_HEAD(acpi_pci_roots
);
69 static struct acpi_pci_driver
*sub_driver
;
70 static DEFINE_MUTEX(osc_lock
);
72 int acpi_pci_register_driver(struct acpi_pci_driver
*driver
)
75 struct acpi_pci_root
*root
;
77 struct acpi_pci_driver
**pptr
= &sub_driver
;
79 pptr
= &(*pptr
)->next
;
85 list_for_each_entry(root
, &acpi_pci_roots
, node
) {
86 driver
->add(root
->device
->handle
);
93 EXPORT_SYMBOL(acpi_pci_register_driver
);
95 void acpi_pci_unregister_driver(struct acpi_pci_driver
*driver
)
97 struct acpi_pci_root
*root
;
99 struct acpi_pci_driver
**pptr
= &sub_driver
;
103 pptr
= &(*pptr
)->next
;
106 *pptr
= (*pptr
)->next
;
111 list_for_each_entry(root
, &acpi_pci_roots
, node
)
112 driver
->remove(root
->device
->handle
);
115 EXPORT_SYMBOL(acpi_pci_unregister_driver
);
117 acpi_handle
acpi_get_pci_rootbridge_handle(unsigned int seg
, unsigned int bus
)
119 struct acpi_pci_root
*root
;
121 list_for_each_entry(root
, &acpi_pci_roots
, node
)
122 if ((root
->segment
== (u16
) seg
) && (root
->bus_nr
== (u16
) bus
))
123 return root
->device
->handle
;
127 EXPORT_SYMBOL_GPL(acpi_get_pci_rootbridge_handle
);
130 * acpi_is_root_bridge - determine whether an ACPI CA node is a PCI root bridge
131 * @handle - the ACPI CA node in question.
133 * Note: we could make this API take a struct acpi_device * instead, but
134 * for now, it's more convenient to operate on an acpi_handle.
136 int acpi_is_root_bridge(acpi_handle handle
)
139 struct acpi_device
*device
;
141 ret
= acpi_bus_get_device(handle
, &device
);
145 ret
= acpi_match_device_ids(device
, root_device_ids
);
151 EXPORT_SYMBOL_GPL(acpi_is_root_bridge
);
154 get_root_bridge_busnr_callback(struct acpi_resource
*resource
, void *data
)
157 struct acpi_resource_address64 address
;
159 if (resource
->type
!= ACPI_RESOURCE_TYPE_ADDRESS16
&&
160 resource
->type
!= ACPI_RESOURCE_TYPE_ADDRESS32
&&
161 resource
->type
!= ACPI_RESOURCE_TYPE_ADDRESS64
)
164 acpi_resource_to_address64(resource
, &address
);
165 if ((address
.address_length
> 0) &&
166 (address
.resource_type
== ACPI_BUS_NUMBER_RANGE
))
167 *busnr
= address
.minimum
;
172 static acpi_status
try_get_root_bridge_busnr(acpi_handle handle
,
173 unsigned long long *bus
)
180 acpi_walk_resources(handle
, METHOD_NAME__CRS
,
181 get_root_bridge_busnr_callback
, &busnum
);
182 if (ACPI_FAILURE(status
))
184 /* Check if we really get a bus number from _CRS */
191 static void acpi_pci_bridge_scan(struct acpi_device
*device
)
194 struct acpi_device
*child
= NULL
;
196 if (device
->flags
.bus_address
)
197 if (device
->parent
&& device
->parent
->ops
.bind
) {
198 status
= device
->parent
->ops
.bind(device
);
200 list_for_each_entry(child
, &device
->children
, node
)
201 acpi_pci_bridge_scan(child
);
206 static u8 pci_osc_uuid_str
[] = "33DB4D5B-1FF7-401C-9657-7441C03DD766";
208 static acpi_status
acpi_pci_run_osc(acpi_handle handle
,
209 const u32
*capbuf
, u32
*retval
)
211 struct acpi_osc_context context
= {
212 .uuid_str
= pci_osc_uuid_str
,
215 .cap
.pointer
= (void *)capbuf
,
219 status
= acpi_run_osc(handle
, &context
);
220 if (ACPI_SUCCESS(status
)) {
221 *retval
= *((u32
*)(context
.ret
.pointer
+ 8));
222 kfree(context
.ret
.pointer
);
227 static acpi_status
acpi_pci_query_osc(struct acpi_pci_root
*root
, u32 flags
)
230 u32 support_set
, result
, capbuf
[3];
232 /* do _OSC query for all possible controls */
233 support_set
= root
->osc_support_set
| (flags
& OSC_PCI_SUPPORT_MASKS
);
234 capbuf
[OSC_QUERY_TYPE
] = OSC_QUERY_ENABLE
;
235 capbuf
[OSC_SUPPORT_TYPE
] = support_set
;
236 capbuf
[OSC_CONTROL_TYPE
] = OSC_PCI_CONTROL_MASKS
;
238 status
= acpi_pci_run_osc(root
->device
->handle
, capbuf
, &result
);
239 if (ACPI_SUCCESS(status
)) {
240 root
->osc_support_set
= support_set
;
241 root
->osc_control_qry
= result
;
242 root
->osc_queried
= 1;
247 static acpi_status
acpi_pci_osc_support(struct acpi_pci_root
*root
, u32 flags
)
252 status
= acpi_get_handle(root
->device
->handle
, "_OSC", &tmp
);
253 if (ACPI_FAILURE(status
))
255 mutex_lock(&osc_lock
);
256 status
= acpi_pci_query_osc(root
, flags
);
257 mutex_unlock(&osc_lock
);
261 struct acpi_pci_root
*acpi_pci_find_root(acpi_handle handle
)
263 struct acpi_pci_root
*root
;
265 list_for_each_entry(root
, &acpi_pci_roots
, node
) {
266 if (root
->device
->handle
== handle
)
271 EXPORT_SYMBOL_GPL(acpi_pci_find_root
);
273 struct acpi_handle_node
{
274 struct list_head node
;
279 * acpi_get_pci_dev - convert ACPI CA handle to struct pci_dev
280 * @handle: the handle in question
282 * Given an ACPI CA handle, the desired PCI device is located in the
283 * list of PCI devices.
285 * If the device is found, its reference count is increased and this
286 * function returns a pointer to its data structure. The caller must
287 * decrement the reference count by calling pci_dev_put().
288 * If no device is found, %NULL is returned.
290 struct pci_dev
*acpi_get_pci_dev(acpi_handle handle
)
293 unsigned long long adr
;
296 struct pci_bus
*pbus
;
297 struct pci_dev
*pdev
= NULL
;
298 struct acpi_handle_node
*node
, *tmp
;
299 struct acpi_pci_root
*root
;
300 LIST_HEAD(device_list
);
303 * Walk up the ACPI CA namespace until we reach a PCI root bridge.
306 while (!acpi_is_root_bridge(phandle
)) {
307 node
= kzalloc(sizeof(struct acpi_handle_node
), GFP_KERNEL
);
311 INIT_LIST_HEAD(&node
->node
);
312 node
->handle
= phandle
;
313 list_add(&node
->node
, &device_list
);
315 status
= acpi_get_parent(phandle
, &phandle
);
316 if (ACPI_FAILURE(status
))
320 root
= acpi_pci_find_root(phandle
);
327 * Now, walk back down the PCI device tree until we return to our
328 * original handle. Assumes that everything between the PCI root
329 * bridge and the device we're looking for must be a P2P bridge.
331 list_for_each_entry(node
, &device_list
, node
) {
332 acpi_handle hnd
= node
->handle
;
333 status
= acpi_evaluate_integer(hnd
, "_ADR", NULL
, &adr
);
334 if (ACPI_FAILURE(status
))
336 dev
= (adr
>> 16) & 0xffff;
339 pdev
= pci_get_slot(pbus
, PCI_DEVFN(dev
, fn
));
340 if (!pdev
|| hnd
== handle
)
343 pbus
= pdev
->subordinate
;
347 * This function may be called for a non-PCI device that has a
348 * PCI parent (eg. a disk under a PCI SATA controller). In that
349 * case pdev->subordinate will be NULL for the parent.
352 dev_dbg(&pdev
->dev
, "Not a PCI-to-PCI bridge\n");
358 list_for_each_entry_safe(node
, tmp
, &device_list
, node
)
363 EXPORT_SYMBOL_GPL(acpi_get_pci_dev
);
366 * acpi_pci_osc_control_set - commit requested control to Firmware
367 * @handle: acpi_handle for the target ACPI object
368 * @flags: driver's requested control bits
370 * Attempt to take control from Firmware on requested control bits.
372 acpi_status
acpi_pci_osc_control_set(acpi_handle handle
, u32 flags
)
375 u32 control_req
, result
, capbuf
[3];
377 struct acpi_pci_root
*root
;
379 status
= acpi_get_handle(handle
, "_OSC", &tmp
);
380 if (ACPI_FAILURE(status
))
383 control_req
= (flags
& OSC_PCI_CONTROL_MASKS
);
387 root
= acpi_pci_find_root(handle
);
391 mutex_lock(&osc_lock
);
392 /* No need to evaluate _OSC if the control was already granted. */
393 if ((root
->osc_control_set
& control_req
) == control_req
)
396 /* Need to query controls first before requesting them */
397 if (!root
->osc_queried
) {
398 status
= acpi_pci_query_osc(root
, root
->osc_support_set
);
399 if (ACPI_FAILURE(status
))
402 if ((root
->osc_control_qry
& control_req
) != control_req
) {
404 "Firmware did not grant requested _OSC control\n");
409 capbuf
[OSC_QUERY_TYPE
] = 0;
410 capbuf
[OSC_SUPPORT_TYPE
] = root
->osc_support_set
;
411 capbuf
[OSC_CONTROL_TYPE
] = root
->osc_control_set
| control_req
;
412 status
= acpi_pci_run_osc(handle
, capbuf
, &result
);
413 if (ACPI_SUCCESS(status
))
414 root
->osc_control_set
= result
;
416 mutex_unlock(&osc_lock
);
419 EXPORT_SYMBOL(acpi_pci_osc_control_set
);
421 static int __devinit
acpi_pci_root_add(struct acpi_device
*device
)
423 unsigned long long segment
, bus
;
426 struct acpi_pci_root
*root
;
428 struct acpi_device
*child
;
429 u32 flags
, base_flags
;
432 status
= acpi_evaluate_integer(device
->handle
, METHOD_NAME__SEG
, NULL
,
434 if (ACPI_FAILURE(status
) && status
!= AE_NOT_FOUND
) {
435 printk(KERN_ERR PREFIX
"can't evaluate _SEG\n");
439 /* Check _CRS first, then _BBN. If no _BBN, default to zero. */
441 status
= try_get_root_bridge_busnr(device
->handle
, &bus
);
442 if (ACPI_FAILURE(status
)) {
443 status
= acpi_evaluate_integer(device
->handle
, METHOD_NAME__BBN
, NULL
, &bus
);
444 if (ACPI_FAILURE(status
) && status
!= AE_NOT_FOUND
) {
445 printk(KERN_ERR PREFIX
446 "no bus number in _CRS and can't evaluate _BBN\n");
451 root
= kzalloc(sizeof(struct acpi_pci_root
), GFP_KERNEL
);
455 INIT_LIST_HEAD(&root
->node
);
456 root
->device
= device
;
457 root
->segment
= segment
& 0xFFFF;
458 root
->bus_nr
= bus
& 0xFF;
459 strcpy(acpi_device_name(device
), ACPI_PCI_ROOT_DEVICE_NAME
);
460 strcpy(acpi_device_class(device
), ACPI_PCI_ROOT_CLASS
);
461 device
->driver_data
= root
;
464 * All supported architectures that use ACPI have support for
465 * PCI domains, so we indicate this in _OSC support capabilities.
467 flags
= base_flags
= OSC_PCI_SEGMENT_GROUPS_SUPPORT
;
468 acpi_pci_osc_support(root
, flags
);
471 * TBD: Need PCI interface for enumeration/configuration of roots.
475 list_add_tail(&root
->node
, &acpi_pci_roots
);
477 printk(KERN_INFO PREFIX
"%s [%s] (%04x:%02x)\n",
478 acpi_device_name(device
), acpi_device_bid(device
),
479 root
->segment
, root
->bus_nr
);
482 * Scan the Root Bridge
483 * --------------------
484 * Must do this prior to any attempt to bind the root device, as the
485 * PCI namespace does not get created until this call is made (and
486 * thus the root bridge's pci_dev does not exist).
488 root
->bus
= pci_acpi_scan_root(device
, segment
, bus
);
490 printk(KERN_ERR PREFIX
491 "Bus %04x:%02x not present in PCI namespace\n",
492 root
->segment
, root
->bus_nr
);
498 * Attach ACPI-PCI Context
499 * -----------------------
500 * Thus binding the ACPI and PCI devices.
502 result
= acpi_pci_bind_root(device
);
509 * Evaluate and parse _PRT, if exists.
511 status
= acpi_get_handle(device
->handle
, METHOD_NAME__PRT
, &handle
);
512 if (ACPI_SUCCESS(status
))
513 result
= acpi_pci_irq_add_prt(device
->handle
, root
->bus
);
516 * Scan and bind all _ADR-Based Devices
518 list_for_each_entry(child
, &device
->children
, node
)
519 acpi_pci_bridge_scan(child
);
521 /* Indicate support for various _OSC capabilities. */
522 if (pci_ext_cfg_avail(root
->bus
->self
))
523 flags
|= OSC_EXT_PCI_CONFIG_SUPPORT
;
524 if (pcie_aspm_enabled())
525 flags
|= OSC_ACTIVE_STATE_PWR_SUPPORT
|
526 OSC_CLOCK_PWR_CAPABILITY_SUPPORT
;
527 if (pci_msi_enabled())
528 flags
|= OSC_MSI_SUPPORT
;
529 if (flags
!= base_flags
)
530 acpi_pci_osc_support(root
, flags
);
532 pci_acpi_add_bus_pm_notifier(device
, root
->bus
);
533 if (device
->wakeup
.flags
.run_wake
)
534 device_set_run_wake(root
->bus
->bridge
, true);
539 if (!list_empty(&root
->node
))
540 list_del(&root
->node
);
545 static int acpi_pci_root_start(struct acpi_device
*device
)
547 struct acpi_pci_root
*root
= acpi_driver_data(device
);
549 pci_bus_add_devices(root
->bus
);
553 static int acpi_pci_root_remove(struct acpi_device
*device
, int type
)
555 struct acpi_pci_root
*root
= acpi_driver_data(device
);
557 device_set_run_wake(root
->bus
->bridge
, false);
558 pci_acpi_remove_bus_pm_notifier(device
);
564 static int __init
acpi_pci_root_init(void)
566 if (acpi_pci_disabled
)
569 pci_acpi_crs_quirks();
570 if (acpi_bus_register_driver(&acpi_pci_root_driver
) < 0)
576 subsys_initcall(acpi_pci_root_init
);