2 * ACPI PCI HotPlug glue functions to ACPI CA subsystem
4 * Copyright (C) 2002,2003 Takayoshi Kochi (t-kochi@bq.jp.nec.com)
5 * Copyright (C) 2002 Hiroshi Aono (h-aono@ap.jp.nec.com)
6 * Copyright (C) 2002,2003 NEC Corporation
7 * Copyright (C) 2003-2005 Matthew Wilcox (matthew.wilcox@hp.com)
8 * Copyright (C) 2003-2005 Hewlett Packard
9 * Copyright (C) 2005 Rajesh Shah (rajesh.shah@intel.com)
10 * Copyright (C) 2005 Intel Corporation
12 * All rights reserved.
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or (at
17 * your option) any later version.
19 * This program is distributed in the hope that it will be useful, but
20 * WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
22 * NON INFRINGEMENT. See the GNU General Public License for more
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
29 * Send feedback to <t-kochi@bq.jp.nec.com>
34 * Lifetime rules for pci_dev:
35 * - The one in acpiphp_func has its refcount elevated by pci_get_slot()
36 * when the driver is loaded or when an insertion event occurs. It loses
37 * a refcount when its ejected or the driver unloads.
38 * - The one in acpiphp_bridge has its refcount elevated by pci_get_slot()
39 * when the bridge is scanned and it loses a refcount when the bridge
43 #include <linux/init.h>
44 #include <linux/module.h>
46 #include <linux/kernel.h>
47 #include <linux/pci.h>
48 #include <linux/smp_lock.h>
49 #include <asm/semaphore.h>
52 #include "pci_hotplug.h"
55 static LIST_HEAD(bridge_list
);
57 #define MY_NAME "acpiphp_glue"
59 static void handle_hotplug_event_bridge (acpi_handle
, u32
, void *);
60 static void handle_hotplug_event_func (acpi_handle
, u32
, void *);
61 static void acpiphp_sanitize_bus(struct pci_bus
*bus
);
62 static void acpiphp_set_hpp_values(acpi_handle handle
, struct pci_bus
*bus
);
66 * initialization & terminatation routines
70 * is_ejectable - determine if a slot is ejectable
71 * @handle: handle to acpi namespace
73 * Ejectable slot should satisfy at least these conditions:
86 static int is_ejectable(acpi_handle handle
)
91 status
= acpi_get_handle(handle
, "_ADR", &tmp
);
92 if (ACPI_FAILURE(status
)) {
96 status
= acpi_get_handle(handle
, "_EJ0", &tmp
);
97 if (ACPI_FAILURE(status
)) {
105 /* callback routine to check the existence of ejectable slots */
107 is_ejectable_slot(acpi_handle handle
, u32 lvl
, void *context
, void **rv
)
109 int *count
= (int *)context
;
111 if (is_ejectable(handle
)) {
113 /* only one ejectable slot is enough */
114 return AE_CTRL_TERMINATE
;
121 /* callback routine to register each ACPI PCI slot object */
123 register_slot(acpi_handle handle
, u32 lvl
, void *context
, void **rv
)
125 struct acpiphp_bridge
*bridge
= (struct acpiphp_bridge
*)context
;
126 struct acpiphp_slot
*slot
;
127 struct acpiphp_func
*newfunc
;
129 acpi_status status
= AE_OK
;
130 unsigned long adr
, sun
;
131 int device
, function
;
132 static int num_slots
= 0; /* XXX if we support I/O node hotplug... */
134 status
= acpi_evaluate_integer(handle
, "_ADR", NULL
, &adr
);
136 if (ACPI_FAILURE(status
))
139 status
= acpi_get_handle(handle
, "_EJ0", &tmp
);
141 if (ACPI_FAILURE(status
))
144 device
= (adr
>> 16) & 0xffff;
145 function
= adr
& 0xffff;
147 newfunc
= kmalloc(sizeof(struct acpiphp_func
), GFP_KERNEL
);
150 memset(newfunc
, 0, sizeof(struct acpiphp_func
));
152 INIT_LIST_HEAD(&newfunc
->sibling
);
153 newfunc
->handle
= handle
;
154 newfunc
->function
= function
;
155 newfunc
->flags
= FUNC_HAS_EJ0
;
157 if (ACPI_SUCCESS(acpi_get_handle(handle
, "_STA", &tmp
)))
158 newfunc
->flags
|= FUNC_HAS_STA
;
160 if (ACPI_SUCCESS(acpi_get_handle(handle
, "_PS0", &tmp
)))
161 newfunc
->flags
|= FUNC_HAS_PS0
;
163 if (ACPI_SUCCESS(acpi_get_handle(handle
, "_PS3", &tmp
)))
164 newfunc
->flags
|= FUNC_HAS_PS3
;
166 status
= acpi_evaluate_integer(handle
, "_SUN", NULL
, &sun
);
167 if (ACPI_FAILURE(status
))
170 /* search for objects that share the same slot */
171 for (slot
= bridge
->slots
; slot
; slot
= slot
->next
)
172 if (slot
->device
== device
) {
173 if (slot
->sun
!= sun
)
174 warn("sibling found, but _SUN doesn't match!\n");
179 slot
= kmalloc(sizeof(struct acpiphp_slot
), GFP_KERNEL
);
185 memset(slot
, 0, sizeof(struct acpiphp_slot
));
186 slot
->bridge
= bridge
;
187 slot
->id
= num_slots
++;
188 slot
->device
= device
;
190 INIT_LIST_HEAD(&slot
->funcs
);
191 init_MUTEX(&slot
->crit_sect
);
193 slot
->next
= bridge
->slots
;
194 bridge
->slots
= slot
;
198 dbg("found ACPI PCI Hotplug slot %d at PCI %04x:%02x:%02x\n",
199 slot
->sun
, pci_domain_nr(bridge
->pci_bus
),
200 bridge
->pci_bus
->number
, slot
->device
);
203 newfunc
->slot
= slot
;
204 list_add_tail(&newfunc
->sibling
, &slot
->funcs
);
206 /* associate corresponding pci_dev */
207 newfunc
->pci_dev
= pci_get_slot(bridge
->pci_bus
,
208 PCI_DEVFN(device
, function
));
209 if (newfunc
->pci_dev
) {
210 slot
->flags
|= (SLOT_ENABLED
| SLOT_POWEREDON
);
213 /* install notify handler */
214 status
= acpi_install_notify_handler(handle
,
216 handle_hotplug_event_func
,
219 if (ACPI_FAILURE(status
)) {
220 err("failed to register interrupt notify handler\n");
228 /* see if it's worth looking at this bridge */
229 static int detect_ejectable_slots(acpi_handle
*bridge_handle
)
236 /* only check slots defined directly below bridge object */
237 status
= acpi_walk_namespace(ACPI_TYPE_DEVICE
, bridge_handle
, (u32
)1,
238 is_ejectable_slot
, (void *)&count
, NULL
);
244 /* decode ACPI 2.0 _HPP hot plug parameters */
245 static void decode_hpp(struct acpiphp_bridge
*bridge
)
248 struct acpi_buffer buffer
= { .length
= ACPI_ALLOCATE_BUFFER
,
250 union acpi_object
*package
;
253 /* default numbers */
254 bridge
->hpp
.cache_line_size
= 0x10;
255 bridge
->hpp
.latency_timer
= 0x40;
256 bridge
->hpp
.enable_SERR
= 0;
257 bridge
->hpp
.enable_PERR
= 0;
259 status
= acpi_evaluate_object(bridge
->handle
, "_HPP", NULL
, &buffer
);
261 if (ACPI_FAILURE(status
)) {
262 dbg("_HPP evaluation failed\n");
266 package
= (union acpi_object
*) buffer
.pointer
;
268 if (!package
|| package
->type
!= ACPI_TYPE_PACKAGE
||
269 package
->package
.count
!= 4 || !package
->package
.elements
) {
270 err("invalid _HPP object; ignoring\n");
274 for (i
= 0; i
< 4; i
++) {
275 if (package
->package
.elements
[i
].type
!= ACPI_TYPE_INTEGER
) {
276 err("invalid _HPP parameter type; ignoring\n");
281 bridge
->hpp
.cache_line_size
= package
->package
.elements
[0].integer
.value
;
282 bridge
->hpp
.latency_timer
= package
->package
.elements
[1].integer
.value
;
283 bridge
->hpp
.enable_SERR
= package
->package
.elements
[2].integer
.value
;
284 bridge
->hpp
.enable_PERR
= package
->package
.elements
[3].integer
.value
;
286 dbg("_HPP parameter = (%02x, %02x, %02x, %02x)\n",
287 bridge
->hpp
.cache_line_size
,
288 bridge
->hpp
.latency_timer
,
289 bridge
->hpp
.enable_SERR
,
290 bridge
->hpp
.enable_PERR
);
292 bridge
->flags
|= BRIDGE_HAS_HPP
;
295 kfree(buffer
.pointer
);
299 /* initialize miscellaneous stuff for both root and PCI-to-PCI bridge */
300 static void init_bridge_misc(struct acpiphp_bridge
*bridge
)
304 /* decode ACPI 2.0 _HPP (hot plug parameters) */
307 /* register all slot objects under this bridge */
308 status
= acpi_walk_namespace(ACPI_TYPE_DEVICE
, bridge
->handle
, (u32
)1,
309 register_slot
, bridge
, NULL
);
311 /* install notify handler */
312 if (bridge
->type
!= BRIDGE_TYPE_HOST
) {
313 status
= acpi_install_notify_handler(bridge
->handle
,
315 handle_hotplug_event_bridge
,
318 if (ACPI_FAILURE(status
)) {
319 err("failed to register interrupt notify handler\n");
323 list_add(&bridge
->list
, &bridge_list
);
327 /* allocate and initialize host bridge data structure */
328 static void add_host_bridge(acpi_handle
*handle
, struct pci_bus
*pci_bus
)
330 struct acpiphp_bridge
*bridge
;
332 bridge
= kmalloc(sizeof(struct acpiphp_bridge
), GFP_KERNEL
);
336 memset(bridge
, 0, sizeof(struct acpiphp_bridge
));
338 bridge
->type
= BRIDGE_TYPE_HOST
;
339 bridge
->handle
= handle
;
341 bridge
->pci_bus
= pci_bus
;
343 spin_lock_init(&bridge
->res_lock
);
345 init_bridge_misc(bridge
);
349 /* allocate and initialize PCI-to-PCI bridge data structure */
350 static void add_p2p_bridge(acpi_handle
*handle
, struct pci_dev
*pci_dev
)
352 struct acpiphp_bridge
*bridge
;
354 bridge
= kmalloc(sizeof(struct acpiphp_bridge
), GFP_KERNEL
);
355 if (bridge
== NULL
) {
356 err("out of memory\n");
360 memset(bridge
, 0, sizeof(struct acpiphp_bridge
));
362 bridge
->type
= BRIDGE_TYPE_P2P
;
363 bridge
->handle
= handle
;
365 bridge
->pci_dev
= pci_dev_get(pci_dev
);
366 bridge
->pci_bus
= pci_dev
->subordinate
;
367 if (!bridge
->pci_bus
) {
368 err("This is not a PCI-to-PCI bridge!\n");
372 spin_lock_init(&bridge
->res_lock
);
374 init_bridge_misc(bridge
);
377 pci_dev_put(pci_dev
);
383 /* callback routine to find P2P bridges */
385 find_p2p_bridge(acpi_handle handle
, u32 lvl
, void *context
, void **rv
)
388 acpi_handle dummy_handle
;
390 int device
, function
;
392 struct pci_bus
*pci_bus
= context
;
394 status
= acpi_get_handle(handle
, "_ADR", &dummy_handle
);
395 if (ACPI_FAILURE(status
))
396 return AE_OK
; /* continue */
398 status
= acpi_evaluate_integer(handle
, "_ADR", NULL
, &tmp
);
399 if (ACPI_FAILURE(status
)) {
400 dbg("%s: _ADR evaluation failure\n", __FUNCTION__
);
404 device
= (tmp
>> 16) & 0xffff;
405 function
= tmp
& 0xffff;
407 dev
= pci_get_slot(pci_bus
, PCI_DEVFN(device
, function
));
409 if (!dev
|| !dev
->subordinate
)
412 /* check if this bridge has ejectable slots */
413 if (detect_ejectable_slots(handle
) > 0) {
414 dbg("found PCI-to-PCI bridge at PCI %s\n", pci_name(dev
));
415 add_p2p_bridge(handle
, dev
);
424 /* find hot-pluggable slots, and then find P2P bridge */
425 static int add_bridge(acpi_handle handle
)
430 acpi_handle dummy_handle
;
431 struct pci_bus
*pci_bus
;
433 /* if the bridge doesn't have _STA, we assume it is always there */
434 status
= acpi_get_handle(handle
, "_STA", &dummy_handle
);
435 if (ACPI_SUCCESS(status
)) {
436 status
= acpi_evaluate_integer(handle
, "_STA", NULL
, &tmp
);
437 if (ACPI_FAILURE(status
)) {
438 dbg("%s: _STA evaluation failure\n", __FUNCTION__
);
441 if ((tmp
& ACPI_STA_FUNCTIONING
) == 0)
442 /* don't register this object */
446 /* get PCI segment number */
447 status
= acpi_evaluate_integer(handle
, "_SEG", NULL
, &tmp
);
449 seg
= ACPI_SUCCESS(status
) ? tmp
: 0;
451 /* get PCI bus number */
452 status
= acpi_evaluate_integer(handle
, "_BBN", NULL
, &tmp
);
454 if (ACPI_SUCCESS(status
)) {
457 warn("can't get bus number, assuming 0\n");
461 pci_bus
= pci_find_bus(seg
, bus
);
463 err("Can't find bus %04x:%02x\n", seg
, bus
);
467 /* check if this bridge has ejectable slots */
468 if (detect_ejectable_slots(handle
) > 0) {
469 dbg("found PCI host-bus bridge with hot-pluggable slots\n");
470 add_host_bridge(handle
, pci_bus
);
474 /* search P2P bridges under this host bridge */
475 status
= acpi_walk_namespace(ACPI_TYPE_DEVICE
, handle
, (u32
)1,
476 find_p2p_bridge
, pci_bus
, NULL
);
478 if (ACPI_FAILURE(status
))
479 warn("find_p2p_bridge faied (error code = 0x%x)\n",status
);
484 static struct acpiphp_bridge
*acpiphp_handle_to_bridge(acpi_handle handle
)
486 struct list_head
*head
;
487 list_for_each(head
, &bridge_list
) {
488 struct acpiphp_bridge
*bridge
= list_entry(head
,
489 struct acpiphp_bridge
, list
);
490 if (bridge
->handle
== handle
)
497 static void cleanup_bridge(struct acpiphp_bridge
*bridge
)
499 struct list_head
*list
, *tmp
;
500 struct acpiphp_slot
*slot
;
502 acpi_handle handle
= bridge
->handle
;
504 status
= acpi_remove_notify_handler(handle
, ACPI_SYSTEM_NOTIFY
,
505 handle_hotplug_event_bridge
);
506 if (ACPI_FAILURE(status
))
507 err("failed to remove notify handler\n");
509 slot
= bridge
->slots
;
511 struct acpiphp_slot
*next
= slot
->next
;
512 list_for_each_safe (list
, tmp
, &slot
->funcs
) {
513 struct acpiphp_func
*func
;
514 func
= list_entry(list
, struct acpiphp_func
, sibling
);
515 status
= acpi_remove_notify_handler(func
->handle
,
517 handle_hotplug_event_func
);
518 if (ACPI_FAILURE(status
))
519 err("failed to remove notify handler\n");
520 pci_dev_put(func
->pci_dev
);
528 pci_dev_put(bridge
->pci_dev
);
529 list_del(&bridge
->list
);
534 cleanup_p2p_bridge(acpi_handle handle
, u32 lvl
, void *context
, void **rv
)
536 struct acpiphp_bridge
*bridge
;
538 if (!(bridge
= acpiphp_handle_to_bridge(handle
)))
540 cleanup_bridge(bridge
);
544 static void remove_bridge(acpi_handle handle
)
546 struct acpiphp_bridge
*bridge
;
548 bridge
= acpiphp_handle_to_bridge(handle
);
550 cleanup_bridge(bridge
);
552 /* clean-up p2p bridges under this host bridge */
553 acpi_walk_namespace(ACPI_TYPE_DEVICE
, handle
,
554 (u32
)1, cleanup_p2p_bridge
, NULL
, NULL
);
558 static struct pci_dev
* get_apic_pci_info(acpi_handle handle
)
560 struct acpi_pci_id id
;
564 if (ACPI_FAILURE(acpi_get_pci_id(handle
, &id
)))
567 bus
= pci_find_bus(id
.segment
, id
.bus
);
571 dev
= pci_get_slot(bus
, PCI_DEVFN(id
.device
, id
.function
));
575 if ((dev
->class != PCI_CLASS_SYSTEM_PIC_IOAPIC
) &&
576 (dev
->class != PCI_CLASS_SYSTEM_PIC_IOXAPIC
))
585 static int get_gsi_base(acpi_handle handle
, u32
*gsi_base
)
590 struct acpi_buffer buffer
= {ACPI_ALLOCATE_BUFFER
, NULL
};
591 union acpi_object
*obj
;
594 status
= acpi_evaluate_integer(handle
, "_GSB", NULL
, &gsb
);
595 if (ACPI_SUCCESS(status
)) {
596 *gsi_base
= (u32
)gsb
;
600 status
= acpi_evaluate_object(handle
, "_MAT", NULL
, &buffer
);
601 if (ACPI_FAILURE(status
) || !buffer
.length
|| !buffer
.pointer
)
604 obj
= buffer
.pointer
;
605 if (obj
->type
!= ACPI_TYPE_BUFFER
)
608 table
= obj
->buffer
.pointer
;
609 switch (((acpi_table_entry_header
*)table
)->type
) {
610 case ACPI_MADT_IOSAPIC
:
611 *gsi_base
= ((struct acpi_table_iosapic
*)table
)->global_irq_base
;
614 case ACPI_MADT_IOAPIC
:
615 *gsi_base
= ((struct acpi_table_ioapic
*)table
)->global_irq_base
;
622 acpi_os_free(buffer
.pointer
);
627 ioapic_add(acpi_handle handle
, u32 lvl
, void *context
, void **rv
)
632 struct pci_dev
*pdev
;
636 /* Evaluate _STA if present */
637 status
= acpi_evaluate_integer(handle
, "_STA", NULL
, &sta
);
638 if (ACPI_SUCCESS(status
) && sta
!= ACPI_STA_ALL
)
639 return AE_CTRL_DEPTH
;
641 /* Scan only PCI bus scope */
642 status
= acpi_get_handle(handle
, "_HID", &tmp
);
643 if (ACPI_SUCCESS(status
))
644 return AE_CTRL_DEPTH
;
646 if (get_gsi_base(handle
, &gsi_base
))
649 pdev
= get_apic_pci_info(handle
);
653 if (pci_enable_device(pdev
)) {
658 pci_set_master(pdev
);
660 if (pci_request_region(pdev
, 0, "I/O APIC(acpiphp)")) {
661 pci_disable_device(pdev
);
666 phys_addr
= pci_resource_start(pdev
, 0);
667 if (acpi_register_ioapic(handle
, phys_addr
, gsi_base
)) {
668 pci_release_region(pdev
, 0);
669 pci_disable_device(pdev
);
677 static int acpiphp_configure_ioapics(acpi_handle handle
)
679 acpi_walk_namespace(ACPI_TYPE_DEVICE
, handle
,
680 ACPI_UINT32_MAX
, ioapic_add
, NULL
, NULL
);
684 static int power_on_slot(struct acpiphp_slot
*slot
)
687 struct acpiphp_func
*func
;
691 /* if already enabled, just skip */
692 if (slot
->flags
& SLOT_POWEREDON
)
695 list_for_each (l
, &slot
->funcs
) {
696 func
= list_entry(l
, struct acpiphp_func
, sibling
);
698 if (func
->flags
& FUNC_HAS_PS0
) {
699 dbg("%s: executing _PS0\n", __FUNCTION__
);
700 status
= acpi_evaluate_object(func
->handle
, "_PS0", NULL
, NULL
);
701 if (ACPI_FAILURE(status
)) {
702 warn("%s: _PS0 failed\n", __FUNCTION__
);
710 /* TBD: evaluate _STA to check if the slot is enabled */
712 slot
->flags
|= SLOT_POWEREDON
;
719 static int power_off_slot(struct acpiphp_slot
*slot
)
722 struct acpiphp_func
*func
;
727 /* if already disabled, just skip */
728 if ((slot
->flags
& SLOT_POWEREDON
) == 0)
731 list_for_each (l
, &slot
->funcs
) {
732 func
= list_entry(l
, struct acpiphp_func
, sibling
);
734 if (func
->flags
& FUNC_HAS_PS3
) {
735 status
= acpi_evaluate_object(func
->handle
, "_PS3", NULL
, NULL
);
736 if (ACPI_FAILURE(status
)) {
737 warn("%s: _PS3 failed\n", __FUNCTION__
);
745 /* TBD: evaluate _STA to check if the slot is disabled */
747 slot
->flags
&= (~SLOT_POWEREDON
);
755 * enable_device - enable, configure a slot
756 * @slot: slot to be enabled
758 * This function should be called per *physical slot*,
759 * not per each slot object in ACPI namespace.
762 static int enable_device(struct acpiphp_slot
*slot
)
765 struct pci_bus
*bus
= slot
->bridge
->pci_bus
;
767 struct acpiphp_func
*func
;
771 if (slot
->flags
& SLOT_ENABLED
)
774 /* sanity check: dev should be NULL when hot-plugged in */
775 dev
= pci_get_slot(bus
, PCI_DEVFN(slot
->device
, 0));
777 /* This case shouldn't happen */
778 err("pci_dev structure already exists.\n");
784 num
= pci_scan_slot(bus
, PCI_DEVFN(slot
->device
, 0));
786 err("No new device found\n");
791 max
= bus
->secondary
;
792 for (pass
= 0; pass
< 2; pass
++) {
793 list_for_each_entry(dev
, &bus
->devices
, bus_list
) {
794 if (PCI_SLOT(dev
->devfn
) != slot
->device
)
796 if (dev
->hdr_type
== PCI_HEADER_TYPE_BRIDGE
||
797 dev
->hdr_type
== PCI_HEADER_TYPE_CARDBUS
) {
798 max
= pci_scan_bridge(bus
, dev
, max
, pass
);
799 if (pass
&& dev
->subordinate
)
800 pci_bus_size_bridges(dev
->subordinate
);
805 pci_bus_assign_resources(bus
);
806 acpiphp_sanitize_bus(bus
);
807 pci_enable_bridges(bus
);
808 pci_bus_add_devices(bus
);
809 acpiphp_set_hpp_values(DEVICE_ACPI_HANDLE(&bus
->self
->dev
), bus
);
810 acpiphp_configure_ioapics(DEVICE_ACPI_HANDLE(&bus
->self
->dev
));
812 /* associate pci_dev to our representation */
813 list_for_each (l
, &slot
->funcs
) {
814 func
= list_entry(l
, struct acpiphp_func
, sibling
);
815 func
->pci_dev
= pci_get_slot(bus
, PCI_DEVFN(slot
->device
,
819 slot
->flags
|= SLOT_ENABLED
;
827 * disable_device - disable a slot
829 static int disable_device(struct acpiphp_slot
*slot
)
832 struct acpiphp_func
*func
;
835 /* is this slot already disabled? */
836 if (!(slot
->flags
& SLOT_ENABLED
))
839 list_for_each (l
, &slot
->funcs
) {
840 func
= list_entry(l
, struct acpiphp_func
, sibling
);
844 pci_remove_bus_device(func
->pci_dev
);
845 pci_dev_put(func
->pci_dev
);
846 func
->pci_dev
= NULL
;
849 slot
->flags
&= (~SLOT_ENABLED
);
857 * get_slot_status - get ACPI slot status
859 * if a slot has _STA for each function and if any one of them
860 * returned non-zero status, return it
862 * if a slot doesn't have _STA and if any one of its functions'
863 * configuration space is configured, return 0x0f as a _STA
867 static unsigned int get_slot_status(struct acpiphp_slot
*slot
)
870 unsigned long sta
= 0;
873 struct acpiphp_func
*func
;
875 list_for_each (l
, &slot
->funcs
) {
876 func
= list_entry(l
, struct acpiphp_func
, sibling
);
878 if (func
->flags
& FUNC_HAS_STA
) {
879 status
= acpi_evaluate_integer(func
->handle
, "_STA", NULL
, &sta
);
880 if (ACPI_SUCCESS(status
) && sta
)
883 pci_bus_read_config_dword(slot
->bridge
->pci_bus
,
884 PCI_DEVFN(slot
->device
,
886 PCI_VENDOR_ID
, &dvid
);
887 if (dvid
!= 0xffffffff) {
894 return (unsigned int)sta
;
898 * acpiphp_eject_slot - physically eject the slot
900 static int acpiphp_eject_slot(struct acpiphp_slot
*slot
)
903 struct acpiphp_func
*func
;
905 struct acpi_object_list arg_list
;
906 union acpi_object arg
;
908 list_for_each (l
, &slot
->funcs
) {
909 func
= list_entry(l
, struct acpiphp_func
, sibling
);
911 /* We don't want to call _EJ0 on non-existing functions. */
912 if ((func
->flags
& FUNC_HAS_EJ0
)) {
913 /* _EJ0 method take one argument */
915 arg_list
.pointer
= &arg
;
916 arg
.type
= ACPI_TYPE_INTEGER
;
917 arg
.integer
.value
= 1;
919 status
= acpi_evaluate_object(func
->handle
, "_EJ0", &arg_list
, NULL
);
920 if (ACPI_FAILURE(status
)) {
921 warn("%s: _EJ0 failed\n", __FUNCTION__
);
931 * acpiphp_check_bridge - re-enumerate devices
933 * Iterate over all slots under this bridge and make sure that if a
934 * card is present they are enabled, and if not they are disabled.
936 static int acpiphp_check_bridge(struct acpiphp_bridge
*bridge
)
938 struct acpiphp_slot
*slot
;
940 int enabled
, disabled
;
942 enabled
= disabled
= 0;
944 for (slot
= bridge
->slots
; slot
; slot
= slot
->next
) {
945 unsigned int status
= get_slot_status(slot
);
946 if (slot
->flags
& SLOT_ENABLED
) {
947 if (status
== ACPI_STA_ALL
)
949 retval
= acpiphp_disable_slot(slot
);
951 err("Error occurred in disabling\n");
954 acpiphp_eject_slot(slot
);
958 if (status
!= ACPI_STA_ALL
)
960 retval
= acpiphp_enable_slot(slot
);
962 err("Error occurred in enabling\n");
969 dbg("%s: %d enabled, %d disabled\n", __FUNCTION__
, enabled
, disabled
);
975 static void program_hpp(struct pci_dev
*dev
, struct acpiphp_bridge
*bridge
)
977 u16 pci_cmd
, pci_bctl
;
978 struct pci_dev
*cdev
;
980 /* Program hpp values for this device */
981 if (!(dev
->hdr_type
== PCI_HEADER_TYPE_NORMAL
||
982 (dev
->hdr_type
== PCI_HEADER_TYPE_BRIDGE
&&
983 (dev
->class >> 8) == PCI_CLASS_BRIDGE_PCI
)))
985 pci_write_config_byte(dev
, PCI_CACHE_LINE_SIZE
,
986 bridge
->hpp
.cache_line_size
);
987 pci_write_config_byte(dev
, PCI_LATENCY_TIMER
,
988 bridge
->hpp
.latency_timer
);
989 pci_read_config_word(dev
, PCI_COMMAND
, &pci_cmd
);
990 if (bridge
->hpp
.enable_SERR
)
991 pci_cmd
|= PCI_COMMAND_SERR
;
993 pci_cmd
&= ~PCI_COMMAND_SERR
;
994 if (bridge
->hpp
.enable_PERR
)
995 pci_cmd
|= PCI_COMMAND_PARITY
;
997 pci_cmd
&= ~PCI_COMMAND_PARITY
;
998 pci_write_config_word(dev
, PCI_COMMAND
, pci_cmd
);
1000 /* Program bridge control value and child devices */
1001 if ((dev
->class >> 8) == PCI_CLASS_BRIDGE_PCI
) {
1002 pci_write_config_byte(dev
, PCI_SEC_LATENCY_TIMER
,
1003 bridge
->hpp
.latency_timer
);
1004 pci_read_config_word(dev
, PCI_BRIDGE_CONTROL
, &pci_bctl
);
1005 if (bridge
->hpp
.enable_SERR
)
1006 pci_bctl
|= PCI_BRIDGE_CTL_SERR
;
1008 pci_bctl
&= ~PCI_BRIDGE_CTL_SERR
;
1009 if (bridge
->hpp
.enable_PERR
)
1010 pci_bctl
|= PCI_BRIDGE_CTL_PARITY
;
1012 pci_bctl
&= ~PCI_BRIDGE_CTL_PARITY
;
1013 pci_write_config_word(dev
, PCI_BRIDGE_CONTROL
, pci_bctl
);
1014 if (dev
->subordinate
) {
1015 list_for_each_entry(cdev
, &dev
->subordinate
->devices
,
1017 program_hpp(cdev
, bridge
);
1022 static void acpiphp_set_hpp_values(acpi_handle handle
, struct pci_bus
*bus
)
1024 struct acpiphp_bridge bridge
;
1025 struct pci_dev
*dev
;
1027 memset(&bridge
, 0, sizeof(bridge
));
1028 bridge
.handle
= handle
;
1029 decode_hpp(&bridge
);
1030 list_for_each_entry(dev
, &bus
->devices
, bus_list
)
1031 program_hpp(dev
, &bridge
);
1036 * Remove devices for which we could not assign resources, call
1037 * arch specific code to fix-up the bus
1039 static void acpiphp_sanitize_bus(struct pci_bus
*bus
)
1041 struct pci_dev
*dev
;
1043 unsigned long type_mask
= IORESOURCE_IO
| IORESOURCE_MEM
;
1045 list_for_each_entry(dev
, &bus
->devices
, bus_list
) {
1046 for (i
=0; i
<PCI_BRIDGE_RESOURCES
; i
++) {
1047 struct resource
*res
= &dev
->resource
[i
];
1048 if ((res
->flags
& type_mask
) && !res
->start
&&
1050 /* Could not assign a required resources
1051 * for this device, remove it */
1052 pci_remove_bus_device(dev
);
1059 /* Program resources in newly inserted bridge */
1060 static int acpiphp_configure_bridge (acpi_handle handle
)
1062 struct acpi_pci_id pci_id
;
1063 struct pci_bus
*bus
;
1065 if (ACPI_FAILURE(acpi_get_pci_id(handle
, &pci_id
))) {
1066 err("cannot get PCI domain and bus number for bridge\n");
1069 bus
= pci_find_bus(pci_id
.segment
, pci_id
.bus
);
1071 err("cannot find bus %d:%d\n",
1072 pci_id
.segment
, pci_id
.bus
);
1076 pci_bus_size_bridges(bus
);
1077 pci_bus_assign_resources(bus
);
1078 acpiphp_sanitize_bus(bus
);
1079 acpiphp_set_hpp_values(handle
, bus
);
1080 pci_enable_bridges(bus
);
1081 acpiphp_configure_ioapics(handle
);
1085 static void handle_bridge_insertion(acpi_handle handle
, u32 type
)
1087 struct acpi_device
*device
, *pdevice
;
1088 acpi_handle phandle
;
1090 if ((type
!= ACPI_NOTIFY_BUS_CHECK
) &&
1091 (type
!= ACPI_NOTIFY_DEVICE_CHECK
)) {
1092 err("unexpected notification type %d\n", type
);
1096 acpi_get_parent(handle
, &phandle
);
1097 if (acpi_bus_get_device(phandle
, &pdevice
)) {
1098 dbg("no parent device, assuming NULL\n");
1101 if (acpi_bus_add(&device
, pdevice
, handle
, ACPI_BUS_TYPE_DEVICE
)) {
1102 err("cannot add bridge to acpi list\n");
1105 if (!acpiphp_configure_bridge(handle
) &&
1106 !acpi_bus_start(device
))
1109 err("cannot configure and start bridge\n");
1114 * ACPI event handlers
1118 * handle_hotplug_event_bridge - handle ACPI event on bridges
1120 * @handle: Notify()'ed acpi_handle
1121 * @type: Notify code
1122 * @context: pointer to acpiphp_bridge structure
1124 * handles ACPI event notification on {host,p2p} bridges
1127 static void handle_hotplug_event_bridge(acpi_handle handle
, u32 type
, void *context
)
1129 struct acpiphp_bridge
*bridge
;
1131 struct acpi_buffer buffer
= { .length
= sizeof(objname
),
1132 .pointer
= objname
};
1133 struct acpi_device
*device
;
1135 if (acpi_bus_get_device(handle
, &device
)) {
1136 /* This bridge must have just been physically inserted */
1137 handle_bridge_insertion(handle
, type
);
1141 bridge
= acpiphp_handle_to_bridge(handle
);
1143 err("cannot get bridge info\n");
1147 acpi_get_name(handle
, ACPI_FULL_PATHNAME
, &buffer
);
1150 case ACPI_NOTIFY_BUS_CHECK
:
1151 /* bus re-enumerate */
1152 dbg("%s: Bus check notify on %s\n", __FUNCTION__
, objname
);
1153 acpiphp_check_bridge(bridge
);
1156 case ACPI_NOTIFY_DEVICE_CHECK
:
1158 dbg("%s: Device check notify on %s\n", __FUNCTION__
, objname
);
1159 acpiphp_check_bridge(bridge
);
1162 case ACPI_NOTIFY_DEVICE_WAKE
:
1164 dbg("%s: Device wake notify on %s\n", __FUNCTION__
, objname
);
1167 case ACPI_NOTIFY_EJECT_REQUEST
:
1168 /* request device eject */
1169 dbg("%s: Device eject notify on %s\n", __FUNCTION__
, objname
);
1172 case ACPI_NOTIFY_FREQUENCY_MISMATCH
:
1173 printk(KERN_ERR
"Device %s cannot be configured due"
1174 " to a frequency mismatch\n", objname
);
1177 case ACPI_NOTIFY_BUS_MODE_MISMATCH
:
1178 printk(KERN_ERR
"Device %s cannot be configured due"
1179 " to a bus mode mismatch\n", objname
);
1182 case ACPI_NOTIFY_POWER_FAULT
:
1183 printk(KERN_ERR
"Device %s has suffered a power fault\n",
1188 warn("notify_handler: unknown event type 0x%x for %s\n", type
, objname
);
1194 * handle_hotplug_event_func - handle ACPI event on functions (i.e. slots)
1196 * @handle: Notify()'ed acpi_handle
1197 * @type: Notify code
1198 * @context: pointer to acpiphp_func structure
1200 * handles ACPI event notification on slots
1203 static void handle_hotplug_event_func(acpi_handle handle
, u32 type
, void *context
)
1205 struct acpiphp_func
*func
;
1207 struct acpi_buffer buffer
= { .length
= sizeof(objname
),
1208 .pointer
= objname
};
1210 acpi_get_name(handle
, ACPI_FULL_PATHNAME
, &buffer
);
1212 func
= (struct acpiphp_func
*)context
;
1215 case ACPI_NOTIFY_BUS_CHECK
:
1216 /* bus re-enumerate */
1217 dbg("%s: Bus check notify on %s\n", __FUNCTION__
, objname
);
1218 acpiphp_enable_slot(func
->slot
);
1221 case ACPI_NOTIFY_DEVICE_CHECK
:
1222 /* device check : re-enumerate from parent bus */
1223 dbg("%s: Device check notify on %s\n", __FUNCTION__
, objname
);
1224 acpiphp_check_bridge(func
->slot
->bridge
);
1227 case ACPI_NOTIFY_DEVICE_WAKE
:
1229 dbg("%s: Device wake notify on %s\n", __FUNCTION__
, objname
);
1232 case ACPI_NOTIFY_EJECT_REQUEST
:
1233 /* request device eject */
1234 dbg("%s: Device eject notify on %s\n", __FUNCTION__
, objname
);
1235 if (!(acpiphp_disable_slot(func
->slot
)))
1236 acpiphp_eject_slot(func
->slot
);
1240 warn("notify_handler: unknown event type 0x%x for %s\n", type
, objname
);
1245 static int is_root_bridge(acpi_handle handle
)
1248 struct acpi_device_info
*info
;
1249 struct acpi_buffer buffer
= {ACPI_ALLOCATE_BUFFER
, NULL
};
1252 status
= acpi_get_object_info(handle
, &buffer
);
1253 if (ACPI_SUCCESS(status
)) {
1254 info
= buffer
.pointer
;
1255 if ((info
->valid
& ACPI_VALID_HID
) &&
1256 !strcmp(PCI_ROOT_HID_STRING
,
1257 info
->hardware_id
.value
)) {
1258 acpi_os_free(buffer
.pointer
);
1261 if (info
->valid
& ACPI_VALID_CID
) {
1262 for (i
=0; i
< info
->compatibility_id
.count
; i
++) {
1263 if (!strcmp(PCI_ROOT_HID_STRING
,
1264 info
->compatibility_id
.id
[i
].value
)) {
1265 acpi_os_free(buffer
.pointer
);
1275 find_root_bridges(acpi_handle handle
, u32 lvl
, void *context
, void **rv
)
1277 int *count
= (int *)context
;
1279 if (is_root_bridge(handle
)) {
1280 acpi_install_notify_handler(handle
, ACPI_SYSTEM_NOTIFY
,
1281 handle_hotplug_event_bridge
, NULL
);
1287 static struct acpi_pci_driver acpi_pci_hp_driver
= {
1289 .remove
= remove_bridge
,
1293 * acpiphp_glue_init - initializes all PCI hotplug - ACPI glue data structures
1296 int __init
acpiphp_glue_init(void)
1300 acpi_walk_namespace(ACPI_TYPE_DEVICE
, ACPI_ROOT_OBJECT
,
1301 ACPI_UINT32_MAX
, find_root_bridges
, &num
, NULL
);
1306 acpi_pci_register_driver(&acpi_pci_hp_driver
);
1313 * acpiphp_glue_exit - terminates all PCI hotplug - ACPI glue data structures
1315 * This function frees all data allocated in acpiphp_glue_init()
1317 void __exit
acpiphp_glue_exit(void)
1319 acpi_pci_unregister_driver(&acpi_pci_hp_driver
);
1324 * acpiphp_get_num_slots - count number of slots in a system
1326 int __init
acpiphp_get_num_slots(void)
1328 struct list_head
*node
;
1329 struct acpiphp_bridge
*bridge
;
1334 list_for_each (node
, &bridge_list
) {
1335 bridge
= (struct acpiphp_bridge
*)node
;
1336 dbg("Bus %04x:%02x has %d slot%s\n",
1337 pci_domain_nr(bridge
->pci_bus
),
1338 bridge
->pci_bus
->number
, bridge
->nr_slots
,
1339 bridge
->nr_slots
== 1 ? "" : "s");
1340 num_slots
+= bridge
->nr_slots
;
1343 dbg("Total %d slots\n", num_slots
);
1350 * acpiphp_for_each_slot - call function for each slot
1351 * @fn: callback function
1352 * @data: context to be passed to callback function
1355 static int acpiphp_for_each_slot(acpiphp_callback fn
, void *data
)
1357 struct list_head
*node
;
1358 struct acpiphp_bridge
*bridge
;
1359 struct acpiphp_slot
*slot
;
1362 list_for_each (node
, &bridge_list
) {
1363 bridge
= (struct acpiphp_bridge
*)node
;
1364 for (slot
= bridge
->slots
; slot
; slot
= slot
->next
) {
1365 retval
= fn(slot
, data
);
1376 /* search matching slot from id */
1377 struct acpiphp_slot
*get_slot_from_id(int id
)
1379 struct list_head
*node
;
1380 struct acpiphp_bridge
*bridge
;
1381 struct acpiphp_slot
*slot
;
1383 list_for_each (node
, &bridge_list
) {
1384 bridge
= (struct acpiphp_bridge
*)node
;
1385 for (slot
= bridge
->slots
; slot
; slot
= slot
->next
)
1390 /* should never happen! */
1391 err("%s: no object for id %d\n", __FUNCTION__
, id
);
1398 * acpiphp_enable_slot - power on slot
1400 int acpiphp_enable_slot(struct acpiphp_slot
*slot
)
1404 down(&slot
->crit_sect
);
1406 /* wake up all functions */
1407 retval
= power_on_slot(slot
);
1411 if (get_slot_status(slot
) == ACPI_STA_ALL
)
1412 /* configure all functions */
1413 retval
= enable_device(slot
);
1416 up(&slot
->crit_sect
);
1421 * acpiphp_disable_slot - power off slot
1423 int acpiphp_disable_slot(struct acpiphp_slot
*slot
)
1427 down(&slot
->crit_sect
);
1429 /* unconfigure all functions */
1430 retval
= disable_device(slot
);
1434 /* power off all functions */
1435 retval
= power_off_slot(slot
);
1440 up(&slot
->crit_sect
);
1449 u8
acpiphp_get_power_status(struct acpiphp_slot
*slot
)
1451 return (slot
->flags
& SLOT_POWEREDON
);
1459 u8
acpiphp_get_latch_status(struct acpiphp_slot
*slot
)
1463 sta
= get_slot_status(slot
);
1465 return (sta
& ACPI_STA_SHOW_IN_UI
) ? 1 : 0;
1470 * adapter presence : 1
1473 u8
acpiphp_get_adapter_status(struct acpiphp_slot
*slot
)
1477 sta
= get_slot_status(slot
);
1479 return (sta
== 0) ? 0 : 1;
1484 * pci address (seg/bus/dev)
1486 u32
acpiphp_get_address(struct acpiphp_slot
*slot
)
1489 struct pci_bus
*pci_bus
= slot
->bridge
->pci_bus
;
1491 address
= (pci_domain_nr(pci_bus
) << 16) |
1492 (pci_bus
->number
<< 8) |