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 *);
63 * initialization & terminatation routines
67 * is_ejectable - determine if a slot is ejectable
68 * @handle: handle to acpi namespace
70 * Ejectable slot should satisfy at least these conditions:
83 static int is_ejectable(acpi_handle handle)
88 status = acpi_get_handle(handle, "_ADR", &tmp);
89 if (ACPI_FAILURE(status)) {
93 status = acpi_get_handle(handle, "_EJ0", &tmp);
94 if (ACPI_FAILURE(status)) {
102 /* callback routine to check the existence of ejectable slots */
104 is_ejectable_slot(acpi_handle handle, u32 lvl, void *context, void **rv)
106 int *count = (int *)context;
108 if (is_ejectable(handle)) {
110 /* only one ejectable slot is enough */
111 return AE_CTRL_TERMINATE;
118 /* callback routine to register each ACPI PCI slot object */
120 register_slot(acpi_handle handle, u32 lvl, void *context, void **rv)
122 struct acpiphp_bridge *bridge = (struct acpiphp_bridge *)context;
123 struct acpiphp_slot *slot;
124 struct acpiphp_func *newfunc;
126 acpi_status status = AE_OK;
127 unsigned long adr, sun;
128 int device, function;
129 static int num_slots = 0; /* XXX if we support I/O node hotplug... */
131 status = acpi_evaluate_integer(handle, "_ADR", NULL, &adr);
133 if (ACPI_FAILURE(status))
136 status = acpi_get_handle(handle, "_EJ0", &tmp);
138 if (ACPI_FAILURE(status))
141 device = (adr >> 16) & 0xffff;
142 function = adr & 0xffff;
144 newfunc = kmalloc(sizeof(struct acpiphp_func), GFP_KERNEL);
147 memset(newfunc, 0, sizeof(struct acpiphp_func));
149 INIT_LIST_HEAD(&newfunc->sibling);
150 newfunc->handle = handle;
151 newfunc->function = function;
152 newfunc->flags = FUNC_HAS_EJ0;
154 if (ACPI_SUCCESS(acpi_get_handle(handle, "_STA", &tmp)))
155 newfunc->flags |= FUNC_HAS_STA;
157 if (ACPI_SUCCESS(acpi_get_handle(handle, "_PS0", &tmp)))
158 newfunc->flags |= FUNC_HAS_PS0;
160 if (ACPI_SUCCESS(acpi_get_handle(handle, "_PS3", &tmp)))
161 newfunc->flags |= FUNC_HAS_PS3;
163 status = acpi_evaluate_integer(handle, "_SUN", NULL, &sun);
164 if (ACPI_FAILURE(status))
167 /* search for objects that share the same slot */
168 for (slot = bridge->slots; slot; slot = slot->next)
169 if (slot->device == device) {
170 if (slot->sun != sun)
171 warn("sibling found, but _SUN doesn't match!\n");
176 slot = kmalloc(sizeof(struct acpiphp_slot), GFP_KERNEL);
182 memset(slot, 0, sizeof(struct acpiphp_slot));
183 slot->bridge = bridge;
184 slot->id = num_slots++;
185 slot->device = device;
187 INIT_LIST_HEAD(&slot->funcs);
188 init_MUTEX(&slot->crit_sect);
190 slot->next = bridge->slots;
191 bridge->slots = slot;
195 dbg("found ACPI PCI Hotplug slot %d at PCI %04x:%02x:%02x\n",
196 slot->sun, pci_domain_nr(bridge->pci_bus),
197 bridge->pci_bus->number, slot->device);
200 newfunc->slot = slot;
201 list_add_tail(&newfunc->sibling, &slot->funcs);
203 /* associate corresponding pci_dev */
204 newfunc->pci_dev = pci_get_slot(bridge->pci_bus,
205 PCI_DEVFN(device, function));
206 if (newfunc->pci_dev) {
207 slot->flags |= (SLOT_ENABLED | SLOT_POWEREDON);
210 /* install notify handler */
211 status = acpi_install_notify_handler(handle,
213 handle_hotplug_event_func,
216 if (ACPI_FAILURE(status)) {
217 err("failed to register interrupt notify handler\n");
225 /* see if it's worth looking at this bridge */
226 static int detect_ejectable_slots(acpi_handle *bridge_handle)
233 /* only check slots defined directly below bridge object */
234 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, bridge_handle, (u32)1,
235 is_ejectable_slot, (void *)&count, NULL);
241 /* decode ACPI 2.0 _HPP hot plug parameters */
242 static void decode_hpp(struct acpiphp_bridge *bridge)
245 struct acpi_buffer buffer = { .length = ACPI_ALLOCATE_BUFFER,
247 union acpi_object *package;
250 /* default numbers */
251 bridge->hpp.cache_line_size = 0x10;
252 bridge->hpp.latency_timer = 0x40;
253 bridge->hpp.enable_SERR = 0;
254 bridge->hpp.enable_PERR = 0;
256 status = acpi_evaluate_object(bridge->handle, "_HPP", NULL, &buffer);
258 if (ACPI_FAILURE(status)) {
259 dbg("_HPP evaluation failed\n");
263 package = (union acpi_object *) buffer.pointer;
265 if (!package || package->type != ACPI_TYPE_PACKAGE ||
266 package->package.count != 4 || !package->package.elements) {
267 err("invalid _HPP object; ignoring\n");
271 for (i = 0; i < 4; i++) {
272 if (package->package.elements[i].type != ACPI_TYPE_INTEGER) {
273 err("invalid _HPP parameter type; ignoring\n");
278 bridge->hpp.cache_line_size = package->package.elements[0].integer.value;
279 bridge->hpp.latency_timer = package->package.elements[1].integer.value;
280 bridge->hpp.enable_SERR = package->package.elements[2].integer.value;
281 bridge->hpp.enable_PERR = package->package.elements[3].integer.value;
283 dbg("_HPP parameter = (%02x, %02x, %02x, %02x)\n",
284 bridge->hpp.cache_line_size,
285 bridge->hpp.latency_timer,
286 bridge->hpp.enable_SERR,
287 bridge->hpp.enable_PERR);
289 bridge->flags |= BRIDGE_HAS_HPP;
292 kfree(buffer.pointer);
296 /* initialize miscellaneous stuff for both root and PCI-to-PCI bridge */
297 static void init_bridge_misc(struct acpiphp_bridge *bridge)
301 /* decode ACPI 2.0 _HPP (hot plug parameters) */
304 /* register all slot objects under this bridge */
305 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, bridge->handle, (u32)1,
306 register_slot, bridge, NULL);
308 /* install notify handler */
309 if (bridge->type != BRIDGE_TYPE_HOST) {
310 status = acpi_install_notify_handler(bridge->handle,
312 handle_hotplug_event_bridge,
315 if (ACPI_FAILURE(status)) {
316 err("failed to register interrupt notify handler\n");
320 list_add(&bridge->list, &bridge_list);
324 /* allocate and initialize host bridge data structure */
325 static void add_host_bridge(acpi_handle *handle, struct pci_bus *pci_bus)
327 struct acpiphp_bridge *bridge;
329 bridge = kmalloc(sizeof(struct acpiphp_bridge), GFP_KERNEL);
333 memset(bridge, 0, sizeof(struct acpiphp_bridge));
335 bridge->type = BRIDGE_TYPE_HOST;
336 bridge->handle = handle;
338 bridge->pci_bus = pci_bus;
340 spin_lock_init(&bridge->res_lock);
342 init_bridge_misc(bridge);
346 /* allocate and initialize PCI-to-PCI bridge data structure */
347 static void add_p2p_bridge(acpi_handle *handle, struct pci_dev *pci_dev)
349 struct acpiphp_bridge *bridge;
351 bridge = kmalloc(sizeof(struct acpiphp_bridge), GFP_KERNEL);
352 if (bridge == NULL) {
353 err("out of memory\n");
357 memset(bridge, 0, sizeof(struct acpiphp_bridge));
359 bridge->type = BRIDGE_TYPE_P2P;
360 bridge->handle = handle;
362 bridge->pci_dev = pci_dev_get(pci_dev);
363 bridge->pci_bus = pci_dev->subordinate;
364 if (!bridge->pci_bus) {
365 err("This is not a PCI-to-PCI bridge!\n");
369 spin_lock_init(&bridge->res_lock);
371 init_bridge_misc(bridge);
374 pci_dev_put(pci_dev);
380 /* callback routine to find P2P bridges */
382 find_p2p_bridge(acpi_handle handle, u32 lvl, void *context, void **rv)
385 acpi_handle dummy_handle;
387 int device, function;
389 struct pci_bus *pci_bus = context;
391 status = acpi_get_handle(handle, "_ADR", &dummy_handle);
392 if (ACPI_FAILURE(status))
393 return AE_OK; /* continue */
395 status = acpi_evaluate_integer(handle, "_ADR", NULL, &tmp);
396 if (ACPI_FAILURE(status)) {
397 dbg("%s: _ADR evaluation failure\n", __FUNCTION__);
401 device = (tmp >> 16) & 0xffff;
402 function = tmp & 0xffff;
404 dev = pci_get_slot(pci_bus, PCI_DEVFN(device, function));
406 if (!dev || !dev->subordinate)
409 /* check if this bridge has ejectable slots */
410 if (detect_ejectable_slots(handle) > 0) {
411 dbg("found PCI-to-PCI bridge at PCI %s\n", pci_name(dev));
412 add_p2p_bridge(handle, dev);
421 /* find hot-pluggable slots, and then find P2P bridge */
422 static int add_bridge(acpi_handle handle)
427 acpi_handle dummy_handle;
428 struct pci_bus *pci_bus;
430 /* if the bridge doesn't have _STA, we assume it is always there */
431 status = acpi_get_handle(handle, "_STA", &dummy_handle);
432 if (ACPI_SUCCESS(status)) {
433 status = acpi_evaluate_integer(handle, "_STA", NULL, &tmp);
434 if (ACPI_FAILURE(status)) {
435 dbg("%s: _STA evaluation failure\n", __FUNCTION__);
438 if ((tmp & ACPI_STA_FUNCTIONING) == 0)
439 /* don't register this object */
443 /* get PCI segment number */
444 status = acpi_evaluate_integer(handle, "_SEG", NULL, &tmp);
446 seg = ACPI_SUCCESS(status) ? tmp : 0;
448 /* get PCI bus number */
449 status = acpi_evaluate_integer(handle, "_BBN", NULL, &tmp);
451 if (ACPI_SUCCESS(status)) {
454 warn("can't get bus number, assuming 0\n");
458 pci_bus = pci_find_bus(seg, bus);
460 err("Can't find bus %04x:%02x\n", seg, bus);
464 /* check if this bridge has ejectable slots */
465 if (detect_ejectable_slots(handle) > 0) {
466 dbg("found PCI host-bus bridge with hot-pluggable slots\n");
467 add_host_bridge(handle, pci_bus);
471 /* search P2P bridges under this host bridge */
472 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, (u32)1,
473 find_p2p_bridge, pci_bus, NULL);
475 if (ACPI_FAILURE(status))
476 warn("find_p2p_bridge faied (error code = 0x%x)\n",status);
481 static struct acpiphp_bridge *acpiphp_handle_to_bridge(acpi_handle handle)
483 struct list_head *head;
484 list_for_each(head, &bridge_list) {
485 struct acpiphp_bridge *bridge = list_entry(head,
486 struct acpiphp_bridge, list);
487 if (bridge->handle == handle)
494 static void cleanup_bridge(struct acpiphp_bridge *bridge)
496 struct list_head *list, *tmp;
497 struct acpiphp_slot *slot;
499 acpi_handle handle = bridge->handle;
501 status = acpi_remove_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
502 handle_hotplug_event_bridge);
503 if (ACPI_FAILURE(status))
504 err("failed to remove notify handler\n");
506 slot = bridge->slots;
508 struct acpiphp_slot *next = slot->next;
509 list_for_each_safe (list, tmp, &slot->funcs) {
510 struct acpiphp_func *func;
511 func = list_entry(list, struct acpiphp_func, sibling);
512 status = acpi_remove_notify_handler(func->handle,
514 handle_hotplug_event_func);
515 if (ACPI_FAILURE(status))
516 err("failed to remove notify handler\n");
517 pci_dev_put(func->pci_dev);
525 pci_dev_put(bridge->pci_dev);
526 list_del(&bridge->list);
531 cleanup_p2p_bridge(acpi_handle handle, u32 lvl, void *context, void **rv)
533 struct acpiphp_bridge *bridge;
535 if (!(bridge = acpiphp_handle_to_bridge(handle)))
537 cleanup_bridge(bridge);
541 static void remove_bridge(acpi_handle handle)
543 struct acpiphp_bridge *bridge;
545 bridge = acpiphp_handle_to_bridge(handle);
547 cleanup_bridge(bridge);
549 /* clean-up p2p bridges under this host bridge */
550 acpi_walk_namespace(ACPI_TYPE_DEVICE, handle,
551 (u32)1, cleanup_p2p_bridge, NULL, NULL);
555 static struct pci_dev * get_apic_pci_info(acpi_handle handle)
557 struct acpi_pci_id id;
561 if (ACPI_FAILURE(acpi_get_pci_id(handle, &id)))
564 bus = pci_find_bus(id.segment, id.bus);
568 dev = pci_get_slot(bus, PCI_DEVFN(id.device, id.function));
572 if ((dev->class != PCI_CLASS_SYSTEM_PIC_IOAPIC) &&
573 (dev->class != PCI_CLASS_SYSTEM_PIC_IOXAPIC))
582 static int get_gsi_base(acpi_handle handle, u32 *gsi_base)
587 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
588 union acpi_object *obj;
591 status = acpi_evaluate_integer(handle, "_GSB", NULL, &gsb);
592 if (ACPI_SUCCESS(status)) {
593 *gsi_base = (u32)gsb;
597 status = acpi_evaluate_object(handle, "_MAT", NULL, &buffer);
598 if (ACPI_FAILURE(status) || !buffer.length || !buffer.pointer)
601 obj = buffer.pointer;
602 if (obj->type != ACPI_TYPE_BUFFER)
605 table = obj->buffer.pointer;
606 switch (((acpi_table_entry_header *)table)->type) {
607 case ACPI_MADT_IOSAPIC:
608 *gsi_base = ((struct acpi_table_iosapic *)table)->global_irq_base;
611 case ACPI_MADT_IOAPIC:
612 *gsi_base = ((struct acpi_table_ioapic *)table)->global_irq_base;
619 acpi_os_free(buffer.pointer);
624 ioapic_add(acpi_handle handle, u32 lvl, void *context, void **rv)
629 struct pci_dev *pdev;
633 /* Evaluate _STA if present */
634 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
635 if (ACPI_SUCCESS(status) && sta != ACPI_STA_ALL)
636 return AE_CTRL_DEPTH;
638 /* Scan only PCI bus scope */
639 status = acpi_get_handle(handle, "_HID", &tmp);
640 if (ACPI_SUCCESS(status))
641 return AE_CTRL_DEPTH;
643 if (get_gsi_base(handle, &gsi_base))
646 pdev = get_apic_pci_info(handle);
650 if (pci_enable_device(pdev)) {
655 pci_set_master(pdev);
657 if (pci_request_region(pdev, 0, "I/O APIC(acpiphp)")) {
658 pci_disable_device(pdev);
663 phys_addr = pci_resource_start(pdev, 0);
664 if (acpi_register_ioapic(handle, phys_addr, gsi_base)) {
665 pci_release_region(pdev, 0);
666 pci_disable_device(pdev);
674 static int acpiphp_configure_ioapics(acpi_handle handle)
676 acpi_walk_namespace(ACPI_TYPE_DEVICE, handle,
677 ACPI_UINT32_MAX, ioapic_add, NULL, NULL);
681 static int power_on_slot(struct acpiphp_slot *slot)
684 struct acpiphp_func *func;
688 /* if already enabled, just skip */
689 if (slot->flags & SLOT_POWEREDON)
692 list_for_each (l, &slot->funcs) {
693 func = list_entry(l, struct acpiphp_func, sibling);
695 if (func->flags & FUNC_HAS_PS0) {
696 dbg("%s: executing _PS0\n", __FUNCTION__);
697 status = acpi_evaluate_object(func->handle, "_PS0", NULL, NULL);
698 if (ACPI_FAILURE(status)) {
699 warn("%s: _PS0 failed\n", __FUNCTION__);
707 /* TBD: evaluate _STA to check if the slot is enabled */
709 slot->flags |= SLOT_POWEREDON;
716 static int power_off_slot(struct acpiphp_slot *slot)
719 struct acpiphp_func *func;
724 /* if already disabled, just skip */
725 if ((slot->flags & SLOT_POWEREDON) == 0)
728 list_for_each (l, &slot->funcs) {
729 func = list_entry(l, struct acpiphp_func, sibling);
731 if (func->flags & FUNC_HAS_PS3) {
732 status = acpi_evaluate_object(func->handle, "_PS3", NULL, NULL);
733 if (ACPI_FAILURE(status)) {
734 warn("%s: _PS3 failed\n", __FUNCTION__);
742 /* TBD: evaluate _STA to check if the slot is disabled */
744 slot->flags &= (~SLOT_POWEREDON);
752 * enable_device - enable, configure a slot
753 * @slot: slot to be enabled
755 * This function should be called per *physical slot*,
756 * not per each slot object in ACPI namespace.
759 static int enable_device(struct acpiphp_slot *slot)
762 struct pci_bus *bus = slot->bridge->pci_bus;
764 struct acpiphp_func *func;
768 if (slot->flags & SLOT_ENABLED)
771 /* sanity check: dev should be NULL when hot-plugged in */
772 dev = pci_get_slot(bus, PCI_DEVFN(slot->device, 0));
774 /* This case shouldn't happen */
775 err("pci_dev structure already exists.\n");
781 num = pci_scan_slot(bus, PCI_DEVFN(slot->device, 0));
783 err("No new device found\n");
788 max = bus->secondary;
789 for (pass = 0; pass < 2; pass++) {
790 list_for_each_entry(dev, &bus->devices, bus_list) {
791 if (PCI_SLOT(dev->devfn) != slot->device)
793 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE ||
794 dev->hdr_type == PCI_HEADER_TYPE_CARDBUS)
795 max = pci_scan_bridge(bus, dev, max, pass);
799 pci_bus_assign_resources(bus);
800 pci_bus_add_devices(bus);
802 /* associate pci_dev to our representation */
803 list_for_each (l, &slot->funcs) {
804 func = list_entry(l, struct acpiphp_func, sibling);
805 func->pci_dev = pci_get_slot(bus, PCI_DEVFN(slot->device,
809 slot->flags |= SLOT_ENABLED;
817 * disable_device - disable a slot
819 static int disable_device(struct acpiphp_slot *slot)
822 struct acpiphp_func *func;
825 /* is this slot already disabled? */
826 if (!(slot->flags & SLOT_ENABLED))
829 list_for_each (l, &slot->funcs) {
830 func = list_entry(l, struct acpiphp_func, sibling);
834 pci_remove_bus_device(func->pci_dev);
835 pci_dev_put(func->pci_dev);
836 func->pci_dev = NULL;
839 slot->flags &= (~SLOT_ENABLED);
847 * get_slot_status - get ACPI slot status
849 * if a slot has _STA for each function and if any one of them
850 * returned non-zero status, return it
852 * if a slot doesn't have _STA and if any one of its functions'
853 * configuration space is configured, return 0x0f as a _STA
857 static unsigned int get_slot_status(struct acpiphp_slot *slot)
860 unsigned long sta = 0;
863 struct acpiphp_func *func;
865 list_for_each (l, &slot->funcs) {
866 func = list_entry(l, struct acpiphp_func, sibling);
868 if (func->flags & FUNC_HAS_STA) {
869 status = acpi_evaluate_integer(func->handle, "_STA", NULL, &sta);
870 if (ACPI_SUCCESS(status) && sta)
873 pci_bus_read_config_dword(slot->bridge->pci_bus,
874 PCI_DEVFN(slot->device,
876 PCI_VENDOR_ID, &dvid);
877 if (dvid != 0xffffffff) {
884 return (unsigned int)sta;
888 * acpiphp_eject_slot - physically eject the slot
890 static int acpiphp_eject_slot(struct acpiphp_slot *slot)
893 struct acpiphp_func *func;
895 struct acpi_object_list arg_list;
896 union acpi_object arg;
898 list_for_each (l, &slot->funcs) {
899 func = list_entry(l, struct acpiphp_func, sibling);
901 /* We don't want to call _EJ0 on non-existing functions. */
902 if ((func->flags & FUNC_HAS_EJ0)) {
903 /* _EJ0 method take one argument */
905 arg_list.pointer = &arg;
906 arg.type = ACPI_TYPE_INTEGER;
907 arg.integer.value = 1;
909 status = acpi_evaluate_object(func->handle, "_EJ0", &arg_list, NULL);
910 if (ACPI_FAILURE(status)) {
911 warn("%s: _EJ0 failed\n", __FUNCTION__);
921 * acpiphp_check_bridge - re-enumerate devices
923 * Iterate over all slots under this bridge and make sure that if a
924 * card is present they are enabled, and if not they are disabled.
926 static int acpiphp_check_bridge(struct acpiphp_bridge *bridge)
928 struct acpiphp_slot *slot;
930 int enabled, disabled;
932 enabled = disabled = 0;
934 for (slot = bridge->slots; slot; slot = slot->next) {
935 unsigned int status = get_slot_status(slot);
936 if (slot->flags & SLOT_ENABLED) {
937 if (status == ACPI_STA_ALL)
939 retval = acpiphp_disable_slot(slot);
941 err("Error occurred in disabling\n");
944 acpiphp_eject_slot(slot);
948 if (status != ACPI_STA_ALL)
950 retval = acpiphp_enable_slot(slot);
952 err("Error occurred in enabling\n");
959 dbg("%s: %d enabled, %d disabled\n", __FUNCTION__, enabled, disabled);
965 static void program_hpp(struct pci_dev *dev, struct acpiphp_bridge *bridge)
967 u16 pci_cmd, pci_bctl;
968 struct pci_dev *cdev;
970 /* Program hpp values for this device */
971 if (!(dev->hdr_type == PCI_HEADER_TYPE_NORMAL ||
972 (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE &&
973 (dev->class >> 8) == PCI_CLASS_BRIDGE_PCI)))
975 pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE,
976 bridge->hpp.cache_line_size);
977 pci_write_config_byte(dev, PCI_LATENCY_TIMER,
978 bridge->hpp.latency_timer);
979 pci_read_config_word(dev, PCI_COMMAND, &pci_cmd);
980 if (bridge->hpp.enable_SERR)
981 pci_cmd |= PCI_COMMAND_SERR;
983 pci_cmd &= ~PCI_COMMAND_SERR;
984 if (bridge->hpp.enable_PERR)
985 pci_cmd |= PCI_COMMAND_PARITY;
987 pci_cmd &= ~PCI_COMMAND_PARITY;
988 pci_write_config_word(dev, PCI_COMMAND, pci_cmd);
990 /* Program bridge control value and child devices */
991 if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI) {
992 pci_write_config_byte(dev, PCI_SEC_LATENCY_TIMER,
993 bridge->hpp.latency_timer);
994 pci_read_config_word(dev, PCI_BRIDGE_CONTROL, &pci_bctl);
995 if (bridge->hpp.enable_SERR)
996 pci_bctl |= PCI_BRIDGE_CTL_SERR;
998 pci_bctl &= ~PCI_BRIDGE_CTL_SERR;
999 if (bridge->hpp.enable_PERR)
1000 pci_bctl |= PCI_BRIDGE_CTL_PARITY;
1002 pci_bctl &= ~PCI_BRIDGE_CTL_PARITY;
1003 pci_write_config_word(dev, PCI_BRIDGE_CONTROL, pci_bctl);
1004 if (dev->subordinate) {
1005 list_for_each_entry(cdev, &dev->subordinate->devices,
1007 program_hpp(cdev, bridge);
1012 static void acpiphp_set_hpp_values(acpi_handle handle, struct pci_bus *bus)
1014 struct acpiphp_bridge bridge;
1015 struct pci_dev *dev;
1017 memset(&bridge, 0, sizeof(bridge));
1018 bridge.handle = handle;
1019 decode_hpp(&bridge);
1020 list_for_each_entry(dev, &bus->devices, bus_list)
1021 program_hpp(dev, &bridge);
1026 * Remove devices for which we could not assign resources, call
1027 * arch specific code to fix-up the bus
1029 static void acpiphp_sanitize_bus(struct pci_bus *bus)
1031 struct pci_dev *dev;
1033 unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM;
1035 list_for_each_entry(dev, &bus->devices, bus_list) {
1036 for (i=0; i<PCI_BRIDGE_RESOURCES; i++) {
1037 struct resource *res = &dev->resource[i];
1038 if ((res->flags & type_mask) && !res->start &&
1040 /* Could not assign a required resources
1041 * for this device, remove it */
1042 pci_remove_bus_device(dev);
1049 /* Program resources in newly inserted bridge */
1050 static int acpiphp_configure_bridge (acpi_handle handle)
1052 struct acpi_pci_id pci_id;
1053 struct pci_bus *bus;
1055 if (ACPI_FAILURE(acpi_get_pci_id(handle, &pci_id))) {
1056 err("cannot get PCI domain and bus number for bridge\n");
1059 bus = pci_find_bus(pci_id.segment, pci_id.bus);
1061 err("cannot find bus %d:%d\n",
1062 pci_id.segment, pci_id.bus);
1066 pci_bus_size_bridges(bus);
1067 pci_bus_assign_resources(bus);
1068 acpiphp_sanitize_bus(bus);
1069 acpiphp_set_hpp_values(handle, bus);
1070 pci_enable_bridges(bus);
1071 acpiphp_configure_ioapics(handle);
1075 static void handle_bridge_insertion(acpi_handle handle, u32 type)
1077 struct acpi_device *device, *pdevice;
1078 acpi_handle phandle;
1080 if ((type != ACPI_NOTIFY_BUS_CHECK) &&
1081 (type != ACPI_NOTIFY_DEVICE_CHECK)) {
1082 err("unexpected notification type %d\n", type);
1086 acpi_get_parent(handle, &phandle);
1087 if (acpi_bus_get_device(phandle, &pdevice)) {
1088 dbg("no parent device, assuming NULL\n");
1091 if (acpi_bus_add(&device, pdevice, handle, ACPI_BUS_TYPE_DEVICE)) {
1092 err("cannot add bridge to acpi list\n");
1095 if (!acpiphp_configure_bridge(handle) &&
1096 !acpi_bus_start(device))
1099 err("cannot configure and start bridge\n");
1104 * ACPI event handlers
1108 * handle_hotplug_event_bridge - handle ACPI event on bridges
1110 * @handle: Notify()'ed acpi_handle
1111 * @type: Notify code
1112 * @context: pointer to acpiphp_bridge structure
1114 * handles ACPI event notification on {host,p2p} bridges
1117 static void handle_hotplug_event_bridge(acpi_handle handle, u32 type, void *context)
1119 struct acpiphp_bridge *bridge;
1121 struct acpi_buffer buffer = { .length = sizeof(objname),
1122 .pointer = objname };
1123 struct acpi_device *device;
1125 if (acpi_bus_get_device(handle, &device)) {
1126 /* This bridge must have just been physically inserted */
1127 handle_bridge_insertion(handle, type);
1131 bridge = acpiphp_handle_to_bridge(handle);
1133 err("cannot get bridge info\n");
1137 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
1140 case ACPI_NOTIFY_BUS_CHECK:
1141 /* bus re-enumerate */
1142 dbg("%s: Bus check notify on %s\n", __FUNCTION__, objname);
1143 acpiphp_check_bridge(bridge);
1146 case ACPI_NOTIFY_DEVICE_CHECK:
1148 dbg("%s: Device check notify on %s\n", __FUNCTION__, objname);
1149 acpiphp_check_bridge(bridge);
1152 case ACPI_NOTIFY_DEVICE_WAKE:
1154 dbg("%s: Device wake notify on %s\n", __FUNCTION__, objname);
1157 case ACPI_NOTIFY_EJECT_REQUEST:
1158 /* request device eject */
1159 dbg("%s: Device eject notify on %s\n", __FUNCTION__, objname);
1162 case ACPI_NOTIFY_FREQUENCY_MISMATCH:
1163 printk(KERN_ERR "Device %s cannot be configured due"
1164 " to a frequency mismatch\n", objname);
1167 case ACPI_NOTIFY_BUS_MODE_MISMATCH:
1168 printk(KERN_ERR "Device %s cannot be configured due"
1169 " to a bus mode mismatch\n", objname);
1172 case ACPI_NOTIFY_POWER_FAULT:
1173 printk(KERN_ERR "Device %s has suffered a power fault\n",
1178 warn("notify_handler: unknown event type 0x%x for %s\n", type, objname);
1184 * handle_hotplug_event_func - handle ACPI event on functions (i.e. slots)
1186 * @handle: Notify()'ed acpi_handle
1187 * @type: Notify code
1188 * @context: pointer to acpiphp_func structure
1190 * handles ACPI event notification on slots
1193 static void handle_hotplug_event_func(acpi_handle handle, u32 type, void *context)
1195 struct acpiphp_func *func;
1197 struct acpi_buffer buffer = { .length = sizeof(objname),
1198 .pointer = objname };
1200 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
1202 func = (struct acpiphp_func *)context;
1205 case ACPI_NOTIFY_BUS_CHECK:
1206 /* bus re-enumerate */
1207 dbg("%s: Bus check notify on %s\n", __FUNCTION__, objname);
1208 acpiphp_enable_slot(func->slot);
1211 case ACPI_NOTIFY_DEVICE_CHECK:
1212 /* device check : re-enumerate from parent bus */
1213 dbg("%s: Device check notify on %s\n", __FUNCTION__, objname);
1214 acpiphp_check_bridge(func->slot->bridge);
1217 case ACPI_NOTIFY_DEVICE_WAKE:
1219 dbg("%s: Device wake notify on %s\n", __FUNCTION__, objname);
1222 case ACPI_NOTIFY_EJECT_REQUEST:
1223 /* request device eject */
1224 dbg("%s: Device eject notify on %s\n", __FUNCTION__, objname);
1225 if (!(acpiphp_disable_slot(func->slot)))
1226 acpiphp_eject_slot(func->slot);
1230 warn("notify_handler: unknown event type 0x%x for %s\n", type, objname);
1235 static int is_root_bridge(acpi_handle handle)
1238 struct acpi_device_info *info;
1239 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
1242 status = acpi_get_object_info(handle, &buffer);
1243 if (ACPI_SUCCESS(status)) {
1244 info = buffer.pointer;
1245 if ((info->valid & ACPI_VALID_HID) &&
1246 !strcmp(PCI_ROOT_HID_STRING,
1247 info->hardware_id.value)) {
1248 acpi_os_free(buffer.pointer);
1251 if (info->valid & ACPI_VALID_CID) {
1252 for (i=0; i < info->compatibility_id.count; i++) {
1253 if (!strcmp(PCI_ROOT_HID_STRING,
1254 info->compatibility_id.id[i].value)) {
1255 acpi_os_free(buffer.pointer);
1265 find_root_bridges(acpi_handle handle, u32 lvl, void *context, void **rv)
1267 int *count = (int *)context;
1269 if (is_root_bridge(handle)) {
1270 acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
1271 handle_hotplug_event_bridge, NULL);
1277 static struct acpi_pci_driver acpi_pci_hp_driver = {
1279 .remove = remove_bridge,
1283 * acpiphp_glue_init - initializes all PCI hotplug - ACPI glue data structures
1286 int __init acpiphp_glue_init(void)
1290 acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
1291 ACPI_UINT32_MAX, find_root_bridges, &num, NULL);
1296 acpi_pci_register_driver(&acpi_pci_hp_driver);
1303 * acpiphp_glue_exit - terminates all PCI hotplug - ACPI glue data structures
1305 * This function frees all data allocated in acpiphp_glue_init()
1307 void __exit acpiphp_glue_exit(void)
1309 acpi_pci_unregister_driver(&acpi_pci_hp_driver);
1314 * acpiphp_get_num_slots - count number of slots in a system
1316 int __init acpiphp_get_num_slots(void)
1318 struct list_head *node;
1319 struct acpiphp_bridge *bridge;
1324 list_for_each (node, &bridge_list) {
1325 bridge = (struct acpiphp_bridge *)node;
1326 dbg("Bus %04x:%02x has %d slot%s\n",
1327 pci_domain_nr(bridge->pci_bus),
1328 bridge->pci_bus->number, bridge->nr_slots,
1329 bridge->nr_slots == 1 ? "" : "s");
1330 num_slots += bridge->nr_slots;
1333 dbg("Total %d slots\n", num_slots);
1340 * acpiphp_for_each_slot - call function for each slot
1341 * @fn: callback function
1342 * @data: context to be passed to callback function
1345 static int acpiphp_for_each_slot(acpiphp_callback fn, void *data)
1347 struct list_head *node;
1348 struct acpiphp_bridge *bridge;
1349 struct acpiphp_slot *slot;
1352 list_for_each (node, &bridge_list) {
1353 bridge = (struct acpiphp_bridge *)node;
1354 for (slot = bridge->slots; slot; slot = slot->next) {
1355 retval = fn(slot, data);
1366 /* search matching slot from id */
1367 struct acpiphp_slot *get_slot_from_id(int id)
1369 struct list_head *node;
1370 struct acpiphp_bridge *bridge;
1371 struct acpiphp_slot *slot;
1373 list_for_each (node, &bridge_list) {
1374 bridge = (struct acpiphp_bridge *)node;
1375 for (slot = bridge->slots; slot; slot = slot->next)
1380 /* should never happen! */
1381 err("%s: no object for id %d\n", __FUNCTION__, id);
1388 * acpiphp_enable_slot - power on slot
1390 int acpiphp_enable_slot(struct acpiphp_slot *slot)
1394 down(&slot->crit_sect);
1396 /* wake up all functions */
1397 retval = power_on_slot(slot);
1401 if (get_slot_status(slot) == ACPI_STA_ALL)
1402 /* configure all functions */
1403 retval = enable_device(slot);
1406 up(&slot->crit_sect);
1411 * acpiphp_disable_slot - power off slot
1413 int acpiphp_disable_slot(struct acpiphp_slot *slot)
1417 down(&slot->crit_sect);
1419 /* unconfigure all functions */
1420 retval = disable_device(slot);
1424 /* power off all functions */
1425 retval = power_off_slot(slot);
1430 up(&slot->crit_sect);
1439 u8 acpiphp_get_power_status(struct acpiphp_slot *slot)
1441 return (slot->flags & SLOT_POWEREDON);
1449 u8 acpiphp_get_latch_status(struct acpiphp_slot *slot)
1453 sta = get_slot_status(slot);
1455 return (sta & ACPI_STA_SHOW_IN_UI) ? 1 : 0;
1460 * adapter presence : 1
1463 u8 acpiphp_get_adapter_status(struct acpiphp_slot *slot)
1467 sta = get_slot_status(slot);
1469 return (sta == 0) ? 0 : 1;
1474 * pci address (seg/bus/dev)
1476 u32 acpiphp_get_address(struct acpiphp_slot *slot)
1479 struct pci_bus *pci_bus = slot->bridge->pci_bus;
1481 address = (pci_domain_nr(pci_bus) << 16) |
1482 (pci_bus->number << 8) |