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>
32 #include <linux/device.h>
33 #include <linux/proc_fs.h>
34 #include <linux/acpi.h>
35 #include <linux/slab.h>
37 #include <asm/mpspec.h>
39 #include <linux/pci.h>
40 #include <acpi/acpi_bus.h>
41 #include <acpi/acpi_drivers.h>
42 #include <linux/dmi.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;
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
},
72 /* --------------------------------------------------------------------------
74 -------------------------------------------------------------------------- */
76 int acpi_bus_get_device(acpi_handle handle
, struct acpi_device
**device
)
78 acpi_status status
= AE_OK
;
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",
96 EXPORT_SYMBOL(acpi_bus_get_device
);
98 acpi_status
acpi_bus_get_status_handle(acpi_handle handle
,
99 unsigned long long *sta
)
103 status
= acpi_evaluate_integer(handle
, "_STA", NULL
, sta
);
104 if (ACPI_SUCCESS(status
))
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
;
115 int acpi_bus_get_status(struct acpi_device
*device
)
118 unsigned long long sta
;
120 status
= acpi_bus_get_status_handle(device
->handle
, &sta
);
121 if (ACPI_FAILURE(status
))
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",
130 (u32
) STRUCT_TO_INT(device
->status
)));
133 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Device [%s] status [%08x]\n",
135 (u32
) STRUCT_TO_INT(device
->status
)));
138 EXPORT_SYMBOL(acpi_bus_get_status
);
140 void acpi_bus_private_data_handler(acpi_handle handle
,
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
;
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",
163 EXPORT_SYMBOL(acpi_bus_get_private_data
);
165 /* --------------------------------------------------------------------------
167 -------------------------------------------------------------------------- */
169 int acpi_bus_get_power(acpi_handle handle
, int *state
)
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
);
181 *state
= ACPI_STATE_UNKNOWN
;
183 if (!device
->flags
.power_manageable
) {
184 /* TBD: Non-recursive algorithm for walking up hierarchy */
186 *state
= device
->parent
->power
.state
;
188 *state
= ACPI_STATE_D0
;
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
);
198 } else if (device
->power
.flags
.explicit_get
) {
199 status
= acpi_evaluate_integer(device
->handle
, "_PSC",
201 if (ACPI_FAILURE(status
))
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
));
215 EXPORT_SYMBOL(acpi_bus_get_power
);
217 int acpi_bus_set_power(acpi_handle handle
, int state
)
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
);
229 if ((state
< ACPI_STATE_D0
) || (state
> ACPI_STATE_D3
))
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
)));
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",
261 if (!device
->power
.states
[state
].flags
.valid
) {
262 printk(KERN_WARNING PREFIX
"Device does not support D%d\n", state
);
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");
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
);
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
)) {
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
)) {
302 if (device
->power
.flags
.power_resources
) {
303 result
= acpi_power_transition(device
, state
);
311 printk(KERN_WARNING PREFIX
312 "Device [%s] failed to transition to D%d\n",
313 device
->pnp
.bus_id
, state
);
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
));
324 EXPORT_SYMBOL(acpi_bus_set_power
);
326 bool acpi_bus_power_manageable(acpi_handle handle
)
328 struct acpi_device
*device
;
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
;
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
};
354 if (ACPI_FAILURE(acpi_get_name(handle
, ACPI_FULL_PATHNAME
, &buffer
)))
355 printk(KERN_DEBUG
"%s\n", error
);
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
)));
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
)
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) {
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]);
393 acpi_status
acpi_run_osc(acpi_handle handle
, struct acpi_osc_context
*context
)
396 struct acpi_object_list input
;
397 union acpi_object in_params
[4];
398 union acpi_object
*out_obj
;
401 struct acpi_buffer output
= {ACPI_ALLOCATE_BUFFER
, NULL
};
405 if (ACPI_FAILURE(acpi_str_to_uuid(context
->uuid_str
, uuid
)))
407 context
->ret
.length
= ACPI_ALLOCATE_BUFFER
;
408 context
->ret
.pointer
= NULL
;
410 /* Setting up input parameters */
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
))
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");
439 /* Need to ignore the bit0 in result code */
440 errors
= *((u32
*)out_obj
->buffer
.pointer
) & ~(1 << 0);
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
]
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
;
468 memcpy(context
->ret
.pointer
, out_obj
->buffer
.pointer
,
469 context
->ret
.length
);
473 kfree(output
.pointer
);
475 context
->ret
.pointer
= NULL
;
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)
484 struct acpi_osc_context context
= {
485 .uuid_str
= sb_uuid_str
,
488 .cap
.pointer
= capbuf
,
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
;
499 #if defined(CONFIG_ACPI_PROCESSOR) || defined(CONFIG_ACPI_PROCESSOR_MODULE)
500 capbuf
[OSC_SUPPORT_TYPE
] |= OSC_SB_PPC_OST_SUPPORT
;
502 if (ACPI_FAILURE(acpi_get_handle(NULL
, "\\_SB", &handle
)))
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 /* --------------------------------------------------------------------------
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 */
530 event
= kzalloc(sizeof(struct acpi_bus_event
), GFP_ATOMIC
);
534 strcpy(event
->device_class
, device_class
);
535 strcpy(event
->bus_id
, bus_id
);
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
);
549 EXPORT_SYMBOL_GPL(acpi_bus_generate_proc_event4
);
551 int acpi_bus_generate_proc_event(struct acpi_device
*device
, u8 type
, int data
)
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
);
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
))
580 remove_wait_queue(&acpi_bus_event_queue
, &wait
);
581 set_current_state(TASK_RUNNING
);
583 if (signal_pending(current
))
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
);
598 memcpy(event
, entry
, sizeof(struct acpi_bus_event
));
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
;
615 struct acpi_device_status old_status
;
617 if (acpi_bus_get_device(handle
, &device
))
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
;
633 status
= acpi_bus_get_status(device
);
634 if (ACPI_FAILURE(status
))
637 if (STRUCT_TO_INT(old_status
) == STRUCT_TO_INT(device
->status
))
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
)
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
);
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",
689 blocking_notifier_call_chain(&acpi_bus_notify_list
,
690 type
, (void *)handle
);
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).
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).
710 case ACPI_NOTIFY_DEVICE_WAKE
:
714 case ACPI_NOTIFY_EJECT_REQUEST
:
718 case ACPI_NOTIFY_DEVICE_CHECK_LIGHT
:
719 /* TBD: Exactly what does 'light' mean? */
722 case ACPI_NOTIFY_FREQUENCY_MISMATCH
:
726 case ACPI_NOTIFY_BUS_MODE_MISMATCH
:
730 case ACPI_NOTIFY_POWER_FAULT
:
735 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
736 "Received unknown/unsupported notification [%08x]\n",
741 acpi_bus_get_device(handle
, &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
:
771 case ACPI_IRQ_MODEL_IOAPIC
:
774 case ACPI_IRQ_MODEL_IOSAPIC
:
777 case ACPI_IRQ_MODEL_PLATFORM
:
778 message
= "platform specific model";
781 printk(KERN_WARNING PREFIX
"Unknown interrupt routing model\n");
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"));
798 u8 acpi_gbl_permanent_mmap
;
801 void __init
acpi_early_init(void)
803 acpi_status status
= AE_OK
;
808 printk(KERN_INFO PREFIX
"Core revision %08x\n", ACPI_CA_VERSION
);
810 /* enable workarounds, unless strict ACPI spec. compliance */
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");
823 status
= acpi_initialize_subsystem();
824 if (ACPI_FAILURE(status
)) {
825 printk(KERN_ERR PREFIX
826 "Unable to initialize the ACPI Interpreter\n");
830 status
= acpi_load_tables();
831 if (ACPI_FAILURE(status
)) {
832 printk(KERN_ERR PREFIX
833 "Unable to load the System Description Tables\n");
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);
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
;
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");
872 static int __init
acpi_bus_init(void)
875 acpi_status status
= AE_OK
;
876 extern acpi_status
acpi_os_initialize1(void);
878 acpi_os_initialize1();
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");
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()
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");
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 */
921 * Get the system interrupt model and evaluate \_PIC.
923 result
= acpi_bus_init_irq();
928 * Register the for all standard device notifications.
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");
940 * Create the top ACPI proc directory
942 acpi_root_dir
= proc_mkdir(ACPI_BUS_FILE_ROOT
, NULL
);
946 /* Mimic structured exception handling */
952 struct kobject
*acpi_kobj
;
954 static int __init
acpi_init(void)
960 printk(KERN_INFO PREFIX
"Interpreter disabled.\n");
964 acpi_kobj
= kobject_create_and_add("acpi", firmware_kobj
);
966 printk(KERN_WARNING
"%s: kset create error\n", __func__
);
970 init_acpi_device_notify();
971 result
= acpi_bus_init();
974 pci_mmcfg_late_init();
975 if (!(pm_flags
& PM_APM
))
978 printk(KERN_INFO PREFIX
979 "APM is already active, exiting\n");
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
);
1000 acpi_sleep_proc_init();
1001 acpi_wakeup_device_init();
1005 subsys_initcall(acpi_init
);