arm/imx/gpio: add spinlock protection
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / acpi / bus.c
blob743576bf1bd79e5e7b8c6fc10bafb674d88c8803
1 /*
2 * acpi_bus.c - ACPI Bus Driver ($Revision: 80 $)
4 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
6 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or (at
11 * your option) any later version.
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
22 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
25 #include <linux/module.h>
26 #include <linux/init.h>
27 #include <linux/ioport.h>
28 #include <linux/kernel.h>
29 #include <linux/list.h>
30 #include <linux/sched.h>
31 #include <linux/pm.h>
32 #include <linux/device.h>
33 #include <linux/proc_fs.h>
34 #include <linux/acpi.h>
35 #include <linux/slab.h>
36 #ifdef CONFIG_X86
37 #include <asm/mpspec.h>
38 #endif
39 #include <linux/pci.h>
40 #include <acpi/acpi_bus.h>
41 #include <acpi/acpi_drivers.h>
42 #include <linux/dmi.h>
44 #include "internal.h"
46 #define _COMPONENT ACPI_BUS_COMPONENT
47 ACPI_MODULE_NAME("bus");
49 struct acpi_device *acpi_root;
50 struct proc_dir_entry *acpi_root_dir;
51 EXPORT_SYMBOL(acpi_root_dir);
53 #define STRUCT_TO_INT(s) (*((int*)&s))
55 static int set_power_nocheck(const struct dmi_system_id *id)
57 printk(KERN_NOTICE PREFIX "%s detected - "
58 "disable power check in power transistion\n", id->ident);
59 acpi_power_nocheck = 1;
60 return 0;
62 static struct dmi_system_id __cpuinitdata power_nocheck_dmi_table[] = {
64 set_power_nocheck, "HP Pavilion 05", {
65 DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies LTD"),
66 DMI_MATCH(DMI_SYS_VENDOR, "HP Pavilion 05"),
67 DMI_MATCH(DMI_PRODUCT_VERSION, "2001211RE101GLEND") }, NULL},
68 {},
72 /* --------------------------------------------------------------------------
73 Device Management
74 -------------------------------------------------------------------------- */
76 int acpi_bus_get_device(acpi_handle handle, struct acpi_device **device)
78 acpi_status status = AE_OK;
81 if (!device)
82 return -EINVAL;
84 /* TBD: Support fixed-feature devices */
86 status = acpi_get_data(handle, acpi_bus_data_handler, (void **)device);
87 if (ACPI_FAILURE(status) || !*device) {
88 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No context for object [%p]\n",
89 handle));
90 return -ENODEV;
93 return 0;
96 EXPORT_SYMBOL(acpi_bus_get_device);
98 acpi_status acpi_bus_get_status_handle(acpi_handle handle,
99 unsigned long long *sta)
101 acpi_status status;
103 status = acpi_evaluate_integer(handle, "_STA", NULL, sta);
104 if (ACPI_SUCCESS(status))
105 return AE_OK;
107 if (status == AE_NOT_FOUND) {
108 *sta = ACPI_STA_DEVICE_PRESENT | ACPI_STA_DEVICE_ENABLED |
109 ACPI_STA_DEVICE_UI | ACPI_STA_DEVICE_FUNCTIONING;
110 return AE_OK;
112 return status;
115 int acpi_bus_get_status(struct acpi_device *device)
117 acpi_status status;
118 unsigned long long sta;
120 status = acpi_bus_get_status_handle(device->handle, &sta);
121 if (ACPI_FAILURE(status))
122 return -ENODEV;
124 STRUCT_TO_INT(device->status) = (int) sta;
126 if (device->status.functional && !device->status.present) {
127 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] status [%08x]: "
128 "functional but not present;\n",
129 device->pnp.bus_id,
130 (u32) STRUCT_TO_INT(device->status)));
133 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] status [%08x]\n",
134 device->pnp.bus_id,
135 (u32) STRUCT_TO_INT(device->status)));
136 return 0;
138 EXPORT_SYMBOL(acpi_bus_get_status);
140 void acpi_bus_private_data_handler(acpi_handle handle,
141 void *context)
143 return;
145 EXPORT_SYMBOL(acpi_bus_private_data_handler);
147 int acpi_bus_get_private_data(acpi_handle handle, void **data)
149 acpi_status status = AE_OK;
151 if (!*data)
152 return -EINVAL;
154 status = acpi_get_data(handle, acpi_bus_private_data_handler, data);
155 if (ACPI_FAILURE(status) || !*data) {
156 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No context for object [%p]\n",
157 handle));
158 return -ENODEV;
161 return 0;
163 EXPORT_SYMBOL(acpi_bus_get_private_data);
165 /* --------------------------------------------------------------------------
166 Power Management
167 -------------------------------------------------------------------------- */
169 int acpi_bus_get_power(acpi_handle handle, int *state)
171 int result = 0;
172 acpi_status status = 0;
173 struct acpi_device *device = NULL;
174 unsigned long long psc = 0;
177 result = acpi_bus_get_device(handle, &device);
178 if (result)
179 return result;
181 *state = ACPI_STATE_UNKNOWN;
183 if (!device->flags.power_manageable) {
184 /* TBD: Non-recursive algorithm for walking up hierarchy */
185 if (device->parent)
186 *state = device->parent->power.state;
187 else
188 *state = ACPI_STATE_D0;
189 } else {
191 * Get the device's power state either directly (via _PSC) or
192 * indirectly (via power resources).
194 if (device->power.flags.power_resources) {
195 result = acpi_power_get_inferred_state(device);
196 if (result)
197 return result;
198 } else if (device->power.flags.explicit_get) {
199 status = acpi_evaluate_integer(device->handle, "_PSC",
200 NULL, &psc);
201 if (ACPI_FAILURE(status))
202 return -ENODEV;
203 device->power.state = (int)psc;
206 *state = device->power.state;
209 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] power state is D%d\n",
210 device->pnp.bus_id, device->power.state));
212 return 0;
215 EXPORT_SYMBOL(acpi_bus_get_power);
217 int acpi_bus_set_power(acpi_handle handle, int state)
219 int result = 0;
220 acpi_status status = AE_OK;
221 struct acpi_device *device = NULL;
222 char object_name[5] = { '_', 'P', 'S', '0' + state, '\0' };
225 result = acpi_bus_get_device(handle, &device);
226 if (result)
227 return result;
229 if ((state < ACPI_STATE_D0) || (state > ACPI_STATE_D3))
230 return -EINVAL;
232 /* Make sure this is a valid target state */
234 if (!device->flags.power_manageable) {
235 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device `[%s]' is not power manageable\n",
236 kobject_name(&device->dev.kobj)));
237 return -ENODEV;
240 * Get device's current power state
242 if (!acpi_power_nocheck) {
244 * Maybe the incorrect power state is returned on the bogus
245 * bios, which is different with the real power state.
246 * For example: the bios returns D0 state and the real power
247 * state is D3. OS expects to set the device to D0 state. In
248 * such case if OS uses the power state returned by the BIOS,
249 * the device can't be transisted to the correct power state.
250 * So if the acpi_power_nocheck is set, it is unnecessary to
251 * get the power state by calling acpi_bus_get_power.
253 acpi_bus_get_power(device->handle, &device->power.state);
255 if ((state == device->power.state) && !device->flags.force_power_state) {
256 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device is already at D%d\n",
257 state));
258 return 0;
261 if (!device->power.states[state].flags.valid) {
262 printk(KERN_WARNING PREFIX "Device does not support D%d\n", state);
263 return -ENODEV;
265 if (device->parent && (state < device->parent->power.state)) {
266 printk(KERN_WARNING PREFIX
267 "Cannot set device to a higher-powered"
268 " state than parent\n");
269 return -ENODEV;
273 * Transition Power
274 * ----------------
275 * On transitions to a high-powered state we first apply power (via
276 * power resources) then evalute _PSx. Conversly for transitions to
277 * a lower-powered state.
279 if (state < device->power.state) {
280 if (device->power.flags.power_resources) {
281 result = acpi_power_transition(device, state);
282 if (result)
283 goto end;
285 if (device->power.states[state].flags.explicit_set) {
286 status = acpi_evaluate_object(device->handle,
287 object_name, NULL, NULL);
288 if (ACPI_FAILURE(status)) {
289 result = -ENODEV;
290 goto end;
293 } else {
294 if (device->power.states[state].flags.explicit_set) {
295 status = acpi_evaluate_object(device->handle,
296 object_name, NULL, NULL);
297 if (ACPI_FAILURE(status)) {
298 result = -ENODEV;
299 goto end;
302 if (device->power.flags.power_resources) {
303 result = acpi_power_transition(device, state);
304 if (result)
305 goto end;
309 end:
310 if (result)
311 printk(KERN_WARNING PREFIX
312 "Device [%s] failed to transition to D%d\n",
313 device->pnp.bus_id, state);
314 else {
315 device->power.state = state;
316 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
317 "Device [%s] transitioned to D%d\n",
318 device->pnp.bus_id, state));
321 return result;
324 EXPORT_SYMBOL(acpi_bus_set_power);
326 bool acpi_bus_power_manageable(acpi_handle handle)
328 struct acpi_device *device;
329 int result;
331 result = acpi_bus_get_device(handle, &device);
332 return result ? false : device->flags.power_manageable;
335 EXPORT_SYMBOL(acpi_bus_power_manageable);
337 bool acpi_bus_can_wakeup(acpi_handle handle)
339 struct acpi_device *device;
340 int result;
342 result = acpi_bus_get_device(handle, &device);
343 return result ? false : device->wakeup.flags.valid;
346 EXPORT_SYMBOL(acpi_bus_can_wakeup);
348 static void acpi_print_osc_error(acpi_handle handle,
349 struct acpi_osc_context *context, char *error)
351 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER};
352 int i;
354 if (ACPI_FAILURE(acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer)))
355 printk(KERN_DEBUG "%s\n", error);
356 else {
357 printk(KERN_DEBUG "%s:%s\n", (char *)buffer.pointer, error);
358 kfree(buffer.pointer);
360 printk(KERN_DEBUG"_OSC request data:");
361 for (i = 0; i < context->cap.length; i += sizeof(u32))
362 printk("%x ", *((u32 *)(context->cap.pointer + i)));
363 printk("\n");
366 static u8 hex_val(unsigned char c)
368 return isdigit(c) ? c - '0' : toupper(c) - 'A' + 10;
371 static acpi_status acpi_str_to_uuid(char *str, u8 *uuid)
373 int i;
374 static int opc_map_to_uuid[16] = {6, 4, 2, 0, 11, 9, 16, 14, 19, 21,
375 24, 26, 28, 30, 32, 34};
377 if (strlen(str) != 36)
378 return AE_BAD_PARAMETER;
379 for (i = 0; i < 36; i++) {
380 if (i == 8 || i == 13 || i == 18 || i == 23) {
381 if (str[i] != '-')
382 return AE_BAD_PARAMETER;
383 } else if (!isxdigit(str[i]))
384 return AE_BAD_PARAMETER;
386 for (i = 0; i < 16; i++) {
387 uuid[i] = hex_val(str[opc_map_to_uuid[i]]) << 4;
388 uuid[i] |= hex_val(str[opc_map_to_uuid[i] + 1]);
390 return AE_OK;
393 acpi_status acpi_run_osc(acpi_handle handle, struct acpi_osc_context *context)
395 acpi_status status;
396 struct acpi_object_list input;
397 union acpi_object in_params[4];
398 union acpi_object *out_obj;
399 u8 uuid[16];
400 u32 errors;
401 struct acpi_buffer output = {ACPI_ALLOCATE_BUFFER, NULL};
403 if (!context)
404 return AE_ERROR;
405 if (ACPI_FAILURE(acpi_str_to_uuid(context->uuid_str, uuid)))
406 return AE_ERROR;
407 context->ret.length = ACPI_ALLOCATE_BUFFER;
408 context->ret.pointer = NULL;
410 /* Setting up input parameters */
411 input.count = 4;
412 input.pointer = in_params;
413 in_params[0].type = ACPI_TYPE_BUFFER;
414 in_params[0].buffer.length = 16;
415 in_params[0].buffer.pointer = uuid;
416 in_params[1].type = ACPI_TYPE_INTEGER;
417 in_params[1].integer.value = context->rev;
418 in_params[2].type = ACPI_TYPE_INTEGER;
419 in_params[2].integer.value = context->cap.length/sizeof(u32);
420 in_params[3].type = ACPI_TYPE_BUFFER;
421 in_params[3].buffer.length = context->cap.length;
422 in_params[3].buffer.pointer = context->cap.pointer;
424 status = acpi_evaluate_object(handle, "_OSC", &input, &output);
425 if (ACPI_FAILURE(status))
426 return status;
428 if (!output.length)
429 return AE_NULL_OBJECT;
431 out_obj = output.pointer;
432 if (out_obj->type != ACPI_TYPE_BUFFER
433 || out_obj->buffer.length != context->cap.length) {
434 acpi_print_osc_error(handle, context,
435 "_OSC evaluation returned wrong type");
436 status = AE_TYPE;
437 goto out_kfree;
439 /* Need to ignore the bit0 in result code */
440 errors = *((u32 *)out_obj->buffer.pointer) & ~(1 << 0);
441 if (errors) {
442 if (errors & OSC_REQUEST_ERROR)
443 acpi_print_osc_error(handle, context,
444 "_OSC request failed");
445 if (errors & OSC_INVALID_UUID_ERROR)
446 acpi_print_osc_error(handle, context,
447 "_OSC invalid UUID");
448 if (errors & OSC_INVALID_REVISION_ERROR)
449 acpi_print_osc_error(handle, context,
450 "_OSC invalid revision");
451 if (errors & OSC_CAPABILITIES_MASK_ERROR) {
452 if (((u32 *)context->cap.pointer)[OSC_QUERY_TYPE]
453 & OSC_QUERY_ENABLE)
454 goto out_success;
455 status = AE_SUPPORT;
456 goto out_kfree;
458 status = AE_ERROR;
459 goto out_kfree;
461 out_success:
462 context->ret.length = out_obj->buffer.length;
463 context->ret.pointer = kmalloc(context->ret.length, GFP_KERNEL);
464 if (!context->ret.pointer) {
465 status = AE_NO_MEMORY;
466 goto out_kfree;
468 memcpy(context->ret.pointer, out_obj->buffer.pointer,
469 context->ret.length);
470 status = AE_OK;
472 out_kfree:
473 kfree(output.pointer);
474 if (status != AE_OK)
475 context->ret.pointer = NULL;
476 return status;
478 EXPORT_SYMBOL(acpi_run_osc);
480 static u8 sb_uuid_str[] = "0811B06E-4A27-44F9-8D60-3CBBC22E7B48";
481 static void acpi_bus_osc_support(void)
483 u32 capbuf[2];
484 struct acpi_osc_context context = {
485 .uuid_str = sb_uuid_str,
486 .rev = 1,
487 .cap.length = 8,
488 .cap.pointer = capbuf,
490 acpi_handle handle;
492 capbuf[OSC_QUERY_TYPE] = OSC_QUERY_ENABLE;
493 capbuf[OSC_SUPPORT_TYPE] = OSC_SB_PR3_SUPPORT; /* _PR3 is in use */
494 #if defined(CONFIG_ACPI_PROCESSOR_AGGREGATOR) ||\
495 defined(CONFIG_ACPI_PROCESSOR_AGGREGATOR_MODULE)
496 capbuf[OSC_SUPPORT_TYPE] |= OSC_SB_PAD_SUPPORT;
497 #endif
499 #if defined(CONFIG_ACPI_PROCESSOR) || defined(CONFIG_ACPI_PROCESSOR_MODULE)
500 capbuf[OSC_SUPPORT_TYPE] |= OSC_SB_PPC_OST_SUPPORT;
501 #endif
502 if (ACPI_FAILURE(acpi_get_handle(NULL, "\\_SB", &handle)))
503 return;
504 if (ACPI_SUCCESS(acpi_run_osc(handle, &context)))
505 kfree(context.ret.pointer);
506 /* do we need to check the returned cap? Sounds no */
509 /* --------------------------------------------------------------------------
510 Event Management
511 -------------------------------------------------------------------------- */
513 #ifdef CONFIG_ACPI_PROC_EVENT
514 static DEFINE_SPINLOCK(acpi_bus_event_lock);
516 LIST_HEAD(acpi_bus_event_list);
517 DECLARE_WAIT_QUEUE_HEAD(acpi_bus_event_queue);
519 extern int event_is_open;
521 int acpi_bus_generate_proc_event4(const char *device_class, const char *bus_id, u8 type, int data)
523 struct acpi_bus_event *event;
524 unsigned long flags = 0;
526 /* drop event on the floor if no one's listening */
527 if (!event_is_open)
528 return 0;
530 event = kzalloc(sizeof(struct acpi_bus_event), GFP_ATOMIC);
531 if (!event)
532 return -ENOMEM;
534 strcpy(event->device_class, device_class);
535 strcpy(event->bus_id, bus_id);
536 event->type = type;
537 event->data = data;
539 spin_lock_irqsave(&acpi_bus_event_lock, flags);
540 list_add_tail(&event->node, &acpi_bus_event_list);
541 spin_unlock_irqrestore(&acpi_bus_event_lock, flags);
543 wake_up_interruptible(&acpi_bus_event_queue);
545 return 0;
549 EXPORT_SYMBOL_GPL(acpi_bus_generate_proc_event4);
551 int acpi_bus_generate_proc_event(struct acpi_device *device, u8 type, int data)
553 if (!device)
554 return -EINVAL;
555 return acpi_bus_generate_proc_event4(device->pnp.device_class,
556 device->pnp.bus_id, type, data);
559 EXPORT_SYMBOL(acpi_bus_generate_proc_event);
561 int acpi_bus_receive_event(struct acpi_bus_event *event)
563 unsigned long flags = 0;
564 struct acpi_bus_event *entry = NULL;
566 DECLARE_WAITQUEUE(wait, current);
569 if (!event)
570 return -EINVAL;
572 if (list_empty(&acpi_bus_event_list)) {
574 set_current_state(TASK_INTERRUPTIBLE);
575 add_wait_queue(&acpi_bus_event_queue, &wait);
577 if (list_empty(&acpi_bus_event_list))
578 schedule();
580 remove_wait_queue(&acpi_bus_event_queue, &wait);
581 set_current_state(TASK_RUNNING);
583 if (signal_pending(current))
584 return -ERESTARTSYS;
587 spin_lock_irqsave(&acpi_bus_event_lock, flags);
588 if (!list_empty(&acpi_bus_event_list)) {
589 entry = list_entry(acpi_bus_event_list.next,
590 struct acpi_bus_event, node);
591 list_del(&entry->node);
593 spin_unlock_irqrestore(&acpi_bus_event_lock, flags);
595 if (!entry)
596 return -ENODEV;
598 memcpy(event, entry, sizeof(struct acpi_bus_event));
600 kfree(entry);
602 return 0;
605 #endif /* CONFIG_ACPI_PROC_EVENT */
607 /* --------------------------------------------------------------------------
608 Notification Handling
609 -------------------------------------------------------------------------- */
611 static void acpi_bus_check_device(acpi_handle handle)
613 struct acpi_device *device;
614 acpi_status status;
615 struct acpi_device_status old_status;
617 if (acpi_bus_get_device(handle, &device))
618 return;
619 if (!device)
620 return;
622 old_status = device->status;
625 * Make sure this device's parent is present before we go about
626 * messing with the device.
628 if (device->parent && !device->parent->status.present) {
629 device->status = device->parent->status;
630 return;
633 status = acpi_bus_get_status(device);
634 if (ACPI_FAILURE(status))
635 return;
637 if (STRUCT_TO_INT(old_status) == STRUCT_TO_INT(device->status))
638 return;
641 * Device Insertion/Removal
643 if ((device->status.present) && !(old_status.present)) {
644 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device insertion detected\n"));
645 /* TBD: Handle device insertion */
646 } else if (!(device->status.present) && (old_status.present)) {
647 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device removal detected\n"));
648 /* TBD: Handle device removal */
652 static void acpi_bus_check_scope(acpi_handle handle)
654 /* Status Change? */
655 acpi_bus_check_device(handle);
658 * TBD: Enumerate child devices within this device's scope and
659 * run acpi_bus_check_device()'s on them.
663 static BLOCKING_NOTIFIER_HEAD(acpi_bus_notify_list);
664 int register_acpi_bus_notifier(struct notifier_block *nb)
666 return blocking_notifier_chain_register(&acpi_bus_notify_list, nb);
668 EXPORT_SYMBOL_GPL(register_acpi_bus_notifier);
670 void unregister_acpi_bus_notifier(struct notifier_block *nb)
672 blocking_notifier_chain_unregister(&acpi_bus_notify_list, nb);
674 EXPORT_SYMBOL_GPL(unregister_acpi_bus_notifier);
677 * acpi_bus_notify
678 * ---------------
679 * Callback for all 'system-level' device notifications (values 0x00-0x7F).
681 static void acpi_bus_notify(acpi_handle handle, u32 type, void *data)
683 struct acpi_device *device = NULL;
684 struct acpi_driver *driver;
686 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Notification %#02x to handle %p\n",
687 type, handle));
689 blocking_notifier_call_chain(&acpi_bus_notify_list,
690 type, (void *)handle);
692 switch (type) {
694 case ACPI_NOTIFY_BUS_CHECK:
695 acpi_bus_check_scope(handle);
697 * TBD: We'll need to outsource certain events to non-ACPI
698 * drivers via the device manager (device.c).
700 break;
702 case ACPI_NOTIFY_DEVICE_CHECK:
703 acpi_bus_check_device(handle);
705 * TBD: We'll need to outsource certain events to non-ACPI
706 * drivers via the device manager (device.c).
708 break;
710 case ACPI_NOTIFY_DEVICE_WAKE:
711 /* TBD */
712 break;
714 case ACPI_NOTIFY_EJECT_REQUEST:
715 /* TBD */
716 break;
718 case ACPI_NOTIFY_DEVICE_CHECK_LIGHT:
719 /* TBD: Exactly what does 'light' mean? */
720 break;
722 case ACPI_NOTIFY_FREQUENCY_MISMATCH:
723 /* TBD */
724 break;
726 case ACPI_NOTIFY_BUS_MODE_MISMATCH:
727 /* TBD */
728 break;
730 case ACPI_NOTIFY_POWER_FAULT:
731 /* TBD */
732 break;
734 default:
735 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
736 "Received unknown/unsupported notification [%08x]\n",
737 type));
738 break;
741 acpi_bus_get_device(handle, &device);
742 if (device) {
743 driver = device->driver;
744 if (driver && driver->ops.notify &&
745 (driver->flags & ACPI_DRIVER_ALL_NOTIFY_EVENTS))
746 driver->ops.notify(device, type);
750 /* --------------------------------------------------------------------------
751 Initialization/Cleanup
752 -------------------------------------------------------------------------- */
754 static int __init acpi_bus_init_irq(void)
756 acpi_status status = AE_OK;
757 union acpi_object arg = { ACPI_TYPE_INTEGER };
758 struct acpi_object_list arg_list = { 1, &arg };
759 char *message = NULL;
763 * Let the system know what interrupt model we are using by
764 * evaluating the \_PIC object, if exists.
767 switch (acpi_irq_model) {
768 case ACPI_IRQ_MODEL_PIC:
769 message = "PIC";
770 break;
771 case ACPI_IRQ_MODEL_IOAPIC:
772 message = "IOAPIC";
773 break;
774 case ACPI_IRQ_MODEL_IOSAPIC:
775 message = "IOSAPIC";
776 break;
777 case ACPI_IRQ_MODEL_PLATFORM:
778 message = "platform specific model";
779 break;
780 default:
781 printk(KERN_WARNING PREFIX "Unknown interrupt routing model\n");
782 return -ENODEV;
785 printk(KERN_INFO PREFIX "Using %s for interrupt routing\n", message);
787 arg.integer.value = acpi_irq_model;
789 status = acpi_evaluate_object(NULL, "\\_PIC", &arg_list, NULL);
790 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
791 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PIC"));
792 return -ENODEV;
795 return 0;
798 u8 acpi_gbl_permanent_mmap;
801 void __init acpi_early_init(void)
803 acpi_status status = AE_OK;
805 if (acpi_disabled)
806 return;
808 printk(KERN_INFO PREFIX "Core revision %08x\n", ACPI_CA_VERSION);
810 /* enable workarounds, unless strict ACPI spec. compliance */
811 if (!acpi_strict)
812 acpi_gbl_enable_interpreter_slack = TRUE;
814 acpi_gbl_permanent_mmap = 1;
816 status = acpi_reallocate_root_table();
817 if (ACPI_FAILURE(status)) {
818 printk(KERN_ERR PREFIX
819 "Unable to reallocate ACPI tables\n");
820 goto error0;
823 status = acpi_initialize_subsystem();
824 if (ACPI_FAILURE(status)) {
825 printk(KERN_ERR PREFIX
826 "Unable to initialize the ACPI Interpreter\n");
827 goto error0;
830 status = acpi_load_tables();
831 if (ACPI_FAILURE(status)) {
832 printk(KERN_ERR PREFIX
833 "Unable to load the System Description Tables\n");
834 goto error0;
837 #ifdef CONFIG_X86
838 if (!acpi_ioapic) {
839 /* compatible (0) means level (3) */
840 if (!(acpi_sci_flags & ACPI_MADT_TRIGGER_MASK)) {
841 acpi_sci_flags &= ~ACPI_MADT_TRIGGER_MASK;
842 acpi_sci_flags |= ACPI_MADT_TRIGGER_LEVEL;
844 /* Set PIC-mode SCI trigger type */
845 acpi_pic_sci_set_trigger(acpi_gbl_FADT.sci_interrupt,
846 (acpi_sci_flags & ACPI_MADT_TRIGGER_MASK) >> 2);
847 } else {
849 * now that acpi_gbl_FADT is initialized,
850 * update it with result from INT_SRC_OVR parsing
852 acpi_gbl_FADT.sci_interrupt = acpi_sci_override_gsi;
854 #endif
856 status =
857 acpi_enable_subsystem(~
858 (ACPI_NO_HARDWARE_INIT |
859 ACPI_NO_ACPI_ENABLE));
860 if (ACPI_FAILURE(status)) {
861 printk(KERN_ERR PREFIX "Unable to enable ACPI\n");
862 goto error0;
865 return;
867 error0:
868 disable_acpi();
869 return;
872 static int __init acpi_bus_init(void)
874 int result = 0;
875 acpi_status status = AE_OK;
876 extern acpi_status acpi_os_initialize1(void);
878 acpi_os_initialize1();
880 status =
881 acpi_enable_subsystem(ACPI_NO_HARDWARE_INIT | ACPI_NO_ACPI_ENABLE);
882 if (ACPI_FAILURE(status)) {
883 printk(KERN_ERR PREFIX
884 "Unable to start the ACPI Interpreter\n");
885 goto error1;
889 * ACPI 2.0 requires the EC driver to be loaded and work before
890 * the EC device is found in the namespace (i.e. before acpi_initialize_objects()
891 * is called).
893 * This is accomplished by looking for the ECDT table, and getting
894 * the EC parameters out of that.
896 status = acpi_ec_ecdt_probe();
897 /* Ignore result. Not having an ECDT is not fatal. */
899 acpi_bus_osc_support();
901 status = acpi_initialize_objects(ACPI_FULL_INITIALIZATION);
902 if (ACPI_FAILURE(status)) {
903 printk(KERN_ERR PREFIX "Unable to initialize ACPI objects\n");
904 goto error1;
907 acpi_early_processor_set_pdc();
910 * Maybe EC region is required at bus_scan/acpi_get_devices. So it
911 * is necessary to enable it as early as possible.
913 acpi_boot_ec_enable();
915 printk(KERN_INFO PREFIX "Interpreter enabled\n");
917 /* Initialize sleep structures */
918 acpi_sleep_init();
921 * Get the system interrupt model and evaluate \_PIC.
923 result = acpi_bus_init_irq();
924 if (result)
925 goto error1;
928 * Register the for all standard device notifications.
930 status =
931 acpi_install_notify_handler(ACPI_ROOT_OBJECT, ACPI_SYSTEM_NOTIFY,
932 &acpi_bus_notify, NULL);
933 if (ACPI_FAILURE(status)) {
934 printk(KERN_ERR PREFIX
935 "Unable to register for device notifications\n");
936 goto error1;
940 * Create the top ACPI proc directory
942 acpi_root_dir = proc_mkdir(ACPI_BUS_FILE_ROOT, NULL);
944 return 0;
946 /* Mimic structured exception handling */
947 error1:
948 acpi_terminate();
949 return -ENODEV;
952 struct kobject *acpi_kobj;
954 static int __init acpi_init(void)
956 int result = 0;
959 if (acpi_disabled) {
960 printk(KERN_INFO PREFIX "Interpreter disabled.\n");
961 return -ENODEV;
964 acpi_kobj = kobject_create_and_add("acpi", firmware_kobj);
965 if (!acpi_kobj) {
966 printk(KERN_WARNING "%s: kset create error\n", __func__);
967 acpi_kobj = NULL;
970 init_acpi_device_notify();
971 result = acpi_bus_init();
973 if (!result) {
974 pci_mmcfg_late_init();
975 if (!(pm_flags & PM_APM))
976 pm_flags |= PM_ACPI;
977 else {
978 printk(KERN_INFO PREFIX
979 "APM is already active, exiting\n");
980 disable_acpi();
981 result = -ENODEV;
983 } else
984 disable_acpi();
986 if (acpi_disabled)
987 return result;
990 * If the laptop falls into the DMI check table, the power state check
991 * will be disabled in the course of device power transistion.
993 dmi_check_system(power_nocheck_dmi_table);
995 acpi_scan_init();
996 acpi_ec_init();
997 acpi_power_init();
998 acpi_system_init();
999 acpi_debug_init();
1000 acpi_sleep_proc_init();
1001 acpi_wakeup_device_init();
1002 return result;
1005 subsys_initcall(acpi_init);