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/list.h>
29 #include <linux/sched.h>
31 #include <linux/device.h>
32 #include <linux/proc_fs.h>
34 #include <asm/mpspec.h>
36 #include <acpi/acpi_bus.h>
37 #include <acpi/acpi_drivers.h>
40 #define _COMPONENT ACPI_BUS_COMPONENT
41 ACPI_MODULE_NAME ("acpi_bus")
44 extern void __init
acpi_pic_sci_set_trigger(unsigned int irq
, u16 trigger
);
47 FADT_DESCRIPTOR acpi_fadt
;
48 EXPORT_SYMBOL(acpi_fadt
);
50 struct acpi_device
*acpi_root
;
51 struct proc_dir_entry
*acpi_root_dir
;
52 EXPORT_SYMBOL(acpi_root_dir
);
54 #define STRUCT_TO_INT(s) (*((int*)&s))
56 /* --------------------------------------------------------------------------
58 -------------------------------------------------------------------------- */
63 struct acpi_device
**device
)
65 acpi_status status
= AE_OK
;
67 ACPI_FUNCTION_TRACE("acpi_bus_get_device");
70 return_VALUE(-EINVAL
);
72 /* TBD: Support fixed-feature devices */
74 status
= acpi_get_data(handle
, acpi_bus_data_handler
, (void**) device
);
75 if (ACPI_FAILURE(status
) || !*device
) {
76 ACPI_DEBUG_PRINT((ACPI_DB_WARN
, "No context for object [%p]\n",
78 return_VALUE(-ENODEV
);
83 EXPORT_SYMBOL(acpi_bus_get_device
);
87 struct acpi_device
*device
)
89 acpi_status status
= AE_OK
;
90 unsigned long sta
= 0;
92 ACPI_FUNCTION_TRACE("acpi_bus_get_status");
95 return_VALUE(-EINVAL
);
98 * Evaluate _STA if present.
100 if (device
->flags
.dynamic_status
) {
101 status
= acpi_evaluate_integer(device
->handle
, "_STA", NULL
, &sta
);
102 if (ACPI_FAILURE(status
))
103 return_VALUE(-ENODEV
);
104 STRUCT_TO_INT(device
->status
) = (int) sta
;
108 * Otherwise we assume the status of our parent (unless we don't
109 * have one, in which case status is implied).
111 else if (device
->parent
)
112 device
->status
= device
->parent
->status
;
114 STRUCT_TO_INT(device
->status
) = 0x0F;
116 if (device
->status
.functional
&& !device
->status
.present
) {
117 printk(KERN_WARNING PREFIX
"Device [%s] status [%08x]: "
118 "functional but not present; setting present\n",
120 (u32
) STRUCT_TO_INT(device
->status
));
121 device
->status
.present
= 1;
124 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Device [%s] status [%08x]\n",
125 device
->pnp
.bus_id
, (u32
) STRUCT_TO_INT(device
->status
)));
129 EXPORT_SYMBOL(acpi_bus_get_status
);
132 /* --------------------------------------------------------------------------
134 -------------------------------------------------------------------------- */
142 acpi_status status
= 0;
143 struct acpi_device
*device
= NULL
;
144 unsigned long psc
= 0;
146 ACPI_FUNCTION_TRACE("acpi_bus_get_power");
148 result
= acpi_bus_get_device(handle
, &device
);
150 return_VALUE(result
);
152 *state
= ACPI_STATE_UNKNOWN
;
154 if (!device
->flags
.power_manageable
) {
155 /* TBD: Non-recursive algorithm for walking up hierarchy */
157 *state
= device
->parent
->power
.state
;
159 *state
= ACPI_STATE_D0
;
163 * Get the device's power state either directly (via _PSC) or
164 * indirectly (via power resources).
166 if (device
->power
.flags
.explicit_get
) {
167 status
= acpi_evaluate_integer(device
->handle
, "_PSC",
169 if (ACPI_FAILURE(status
))
170 return_VALUE(-ENODEV
);
171 device
->power
.state
= (int) psc
;
173 else if (device
->power
.flags
.power_resources
) {
174 result
= acpi_power_get_inferred_state(device
);
176 return_VALUE(result
);
179 *state
= device
->power
.state
;
182 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Device [%s] power state is D%d\n",
183 device
->pnp
.bus_id
, device
->power
.state
));
187 EXPORT_SYMBOL(acpi_bus_get_power
);
196 acpi_status status
= AE_OK
;
197 struct acpi_device
*device
= NULL
;
198 char object_name
[5] = {'_','P','S','0'+state
,'\0'};
200 ACPI_FUNCTION_TRACE("acpi_bus_set_power");
202 result
= acpi_bus_get_device(handle
, &device
);
204 return_VALUE(result
);
206 if ((state
< ACPI_STATE_D0
) || (state
> ACPI_STATE_D3
))
207 return_VALUE(-EINVAL
);
209 /* Make sure this is a valid target state */
211 if (!device
->flags
.power_manageable
) {
212 ACPI_DEBUG_PRINT((ACPI_DB_WARN
, "Device is not power manageable\n"));
213 return_VALUE(-ENODEV
);
215 if (state
== device
->power
.state
) {
216 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Device is already at D%d\n", state
));
219 if (!device
->power
.states
[state
].flags
.valid
) {
220 ACPI_DEBUG_PRINT((ACPI_DB_WARN
, "Device does not support D%d\n", state
));
221 return_VALUE(-ENODEV
);
223 if (device
->parent
&& (state
< device
->parent
->power
.state
)) {
224 ACPI_DEBUG_PRINT((ACPI_DB_WARN
, "Cannot set device to a higher-powered state than parent\n"));
225 return_VALUE(-ENODEV
);
231 * On transitions to a high-powered state we first apply power (via
232 * power resources) then evalute _PSx. Conversly for transitions to
233 * a lower-powered state.
235 if (state
< device
->power
.state
) {
236 if (device
->power
.flags
.power_resources
) {
237 result
= acpi_power_transition(device
, state
);
241 if (device
->power
.states
[state
].flags
.explicit_set
) {
242 status
= acpi_evaluate_object(device
->handle
,
243 object_name
, NULL
, NULL
);
244 if (ACPI_FAILURE(status
)) {
251 if (device
->power
.states
[state
].flags
.explicit_set
) {
252 status
= acpi_evaluate_object(device
->handle
,
253 object_name
, NULL
, NULL
);
254 if (ACPI_FAILURE(status
)) {
259 if (device
->power
.flags
.power_resources
) {
260 result
= acpi_power_transition(device
, state
);
268 ACPI_DEBUG_PRINT((ACPI_DB_WARN
, "Error transitioning device [%s] to D%d\n",
269 device
->pnp
.bus_id
, state
));
271 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Device [%s] transitioned to D%d\n",
272 device
->pnp
.bus_id
, state
));
274 return_VALUE(result
);
276 EXPORT_SYMBOL(acpi_bus_set_power
);
280 /* --------------------------------------------------------------------------
282 -------------------------------------------------------------------------- */
284 static DEFINE_SPINLOCK(acpi_bus_event_lock
);
286 LIST_HEAD(acpi_bus_event_list
);
287 DECLARE_WAIT_QUEUE_HEAD(acpi_bus_event_queue
);
289 extern int event_is_open
;
292 acpi_bus_generate_event (
293 struct acpi_device
*device
,
297 struct acpi_bus_event
*event
= NULL
;
298 unsigned long flags
= 0;
300 ACPI_FUNCTION_TRACE("acpi_bus_generate_event");
303 return_VALUE(-EINVAL
);
305 /* drop event on the floor if no one's listening */
309 event
= kmalloc(sizeof(struct acpi_bus_event
), GFP_ATOMIC
);
311 return_VALUE(-ENOMEM
);
313 strcpy(event
->device_class
, device
->pnp
.device_class
);
314 strcpy(event
->bus_id
, device
->pnp
.bus_id
);
318 spin_lock_irqsave(&acpi_bus_event_lock
, flags
);
319 list_add_tail(&event
->node
, &acpi_bus_event_list
);
320 spin_unlock_irqrestore(&acpi_bus_event_lock
, flags
);
322 wake_up_interruptible(&acpi_bus_event_queue
);
326 EXPORT_SYMBOL(acpi_bus_generate_event
);
329 acpi_bus_receive_event (
330 struct acpi_bus_event
*event
)
332 unsigned long flags
= 0;
333 struct acpi_bus_event
*entry
= NULL
;
335 DECLARE_WAITQUEUE(wait
, current
);
337 ACPI_FUNCTION_TRACE("acpi_bus_receive_event");
340 return_VALUE(-EINVAL
);
342 if (list_empty(&acpi_bus_event_list
)) {
344 set_current_state(TASK_INTERRUPTIBLE
);
345 add_wait_queue(&acpi_bus_event_queue
, &wait
);
347 if (list_empty(&acpi_bus_event_list
))
350 remove_wait_queue(&acpi_bus_event_queue
, &wait
);
351 set_current_state(TASK_RUNNING
);
353 if (signal_pending(current
))
354 return_VALUE(-ERESTARTSYS
);
357 spin_lock_irqsave(&acpi_bus_event_lock
, flags
);
358 entry
= list_entry(acpi_bus_event_list
.next
, struct acpi_bus_event
, node
);
360 list_del(&entry
->node
);
361 spin_unlock_irqrestore(&acpi_bus_event_lock
, flags
);
364 return_VALUE(-ENODEV
);
366 memcpy(event
, entry
, sizeof(struct acpi_bus_event
));
372 EXPORT_SYMBOL(acpi_bus_receive_event
);
375 /* --------------------------------------------------------------------------
376 Notification Handling
377 -------------------------------------------------------------------------- */
380 acpi_bus_check_device (
381 struct acpi_device
*device
,
384 acpi_status status
= 0;
385 struct acpi_device_status old_status
;
387 ACPI_FUNCTION_TRACE("acpi_bus_check_device");
390 return_VALUE(-EINVAL
);
395 old_status
= device
->status
;
398 * Make sure this device's parent is present before we go about
399 * messing with the device.
401 if (device
->parent
&& !device
->parent
->status
.present
) {
402 device
->status
= device
->parent
->status
;
403 if (STRUCT_TO_INT(old_status
) != STRUCT_TO_INT(device
->status
)) {
410 status
= acpi_bus_get_status(device
);
411 if (ACPI_FAILURE(status
))
412 return_VALUE(-ENODEV
);
414 if (STRUCT_TO_INT(old_status
) == STRUCT_TO_INT(device
->status
))
421 * Device Insertion/Removal
423 if ((device
->status
.present
) && !(old_status
.present
)) {
424 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Device insertion detected\n"));
425 /* TBD: Handle device insertion */
427 else if (!(device
->status
.present
) && (old_status
.present
)) {
428 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Device removal detected\n"));
429 /* TBD: Handle device removal */
437 acpi_bus_check_scope (
438 struct acpi_device
*device
)
441 int status_changed
= 0;
443 ACPI_FUNCTION_TRACE("acpi_bus_check_scope");
446 return_VALUE(-EINVAL
);
449 result
= acpi_bus_check_device(device
, &status_changed
);
451 return_VALUE(result
);
457 * TBD: Enumerate child devices within this device's scope and
458 * run acpi_bus_check_device()'s on them.
468 * Callback for all 'system-level' device notifications (values 0x00-0x7F).
477 struct acpi_device
*device
= NULL
;
479 ACPI_FUNCTION_TRACE("acpi_bus_notify");
481 if (acpi_bus_get_device(handle
, &device
))
486 case ACPI_NOTIFY_BUS_CHECK
:
487 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Received BUS CHECK notification for device [%s]\n",
488 device
->pnp
.bus_id
));
489 result
= acpi_bus_check_scope(device
);
491 * TBD: We'll need to outsource certain events to non-ACPI
492 * drivers via the device manager (device.c).
496 case ACPI_NOTIFY_DEVICE_CHECK
:
497 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Received DEVICE CHECK notification for device [%s]\n",
498 device
->pnp
.bus_id
));
499 result
= acpi_bus_check_device(device
, NULL
);
501 * TBD: We'll need to outsource certain events to non-ACPI
502 * drivers via the device manager (device.c).
506 case ACPI_NOTIFY_DEVICE_WAKE
:
507 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Received DEVICE WAKE notification for device [%s]\n",
508 device
->pnp
.bus_id
));
512 case ACPI_NOTIFY_EJECT_REQUEST
:
513 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Received EJECT REQUEST notification for device [%s]\n",
514 device
->pnp
.bus_id
));
518 case ACPI_NOTIFY_DEVICE_CHECK_LIGHT
:
519 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Received DEVICE CHECK LIGHT notification for device [%s]\n",
520 device
->pnp
.bus_id
));
521 /* TBD: Exactly what does 'light' mean? */
524 case ACPI_NOTIFY_FREQUENCY_MISMATCH
:
525 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Received FREQUENCY MISMATCH notification for device [%s]\n",
526 device
->pnp
.bus_id
));
530 case ACPI_NOTIFY_BUS_MODE_MISMATCH
:
531 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Received BUS MODE MISMATCH notification for device [%s]\n",
532 device
->pnp
.bus_id
));
536 case ACPI_NOTIFY_POWER_FAULT
:
537 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Received POWER FAULT notification for device [%s]\n",
538 device
->pnp
.bus_id
));
543 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Received unknown/unsupported notification [%08x]\n",
551 /* --------------------------------------------------------------------------
552 Initialization/Cleanup
553 -------------------------------------------------------------------------- */
556 acpi_bus_init_irq (void)
558 acpi_status status
= AE_OK
;
559 union acpi_object arg
= {ACPI_TYPE_INTEGER
};
560 struct acpi_object_list arg_list
= {1, &arg
};
561 char *message
= NULL
;
563 ACPI_FUNCTION_TRACE("acpi_bus_init_irq");
566 * Let the system know what interrupt model we are using by
567 * evaluating the \_PIC object, if exists.
570 switch (acpi_irq_model
) {
571 case ACPI_IRQ_MODEL_PIC
:
574 case ACPI_IRQ_MODEL_IOAPIC
:
577 case ACPI_IRQ_MODEL_IOSAPIC
:
581 printk(KERN_WARNING PREFIX
"Unknown interrupt routing model\n");
582 return_VALUE(-ENODEV
);
585 printk(KERN_INFO PREFIX
"Using %s for interrupt routing\n", message
);
587 arg
.integer
.value
= acpi_irq_model
;
589 status
= acpi_evaluate_object(NULL
, "\\_PIC", &arg_list
, NULL
);
590 if (ACPI_FAILURE(status
) && (status
!= AE_NOT_FOUND
)) {
591 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
, "Error evaluating _PIC\n"));
592 return_VALUE(-ENODEV
);
600 acpi_early_init (void)
602 acpi_status status
= AE_OK
;
603 struct acpi_buffer buffer
= {sizeof(acpi_fadt
), &acpi_fadt
};
605 ACPI_FUNCTION_TRACE("acpi_early_init");
610 /* enable workarounds, unless strict ACPI spec. compliance */
612 acpi_gbl_enable_interpreter_slack
= TRUE
;
614 status
= acpi_initialize_subsystem();
615 if (ACPI_FAILURE(status
)) {
616 printk(KERN_ERR PREFIX
"Unable to initialize the ACPI Interpreter\n");
620 status
= acpi_load_tables();
621 if (ACPI_FAILURE(status
)) {
622 printk(KERN_ERR PREFIX
"Unable to load the System Description Tables\n");
627 * Get a separate copy of the FADT for use by other drivers.
629 status
= acpi_get_table(ACPI_TABLE_FADT
, 1, &buffer
);
630 if (ACPI_FAILURE(status
)) {
631 printk(KERN_ERR PREFIX
"Unable to get the FADT\n");
637 extern acpi_interrupt_flags acpi_sci_flags
;
639 /* compatible (0) means level (3) */
640 if (acpi_sci_flags
.trigger
== 0)
641 acpi_sci_flags
.trigger
= 3;
643 /* Set PIC-mode SCI trigger type */
644 acpi_pic_sci_set_trigger(acpi_fadt
.sci_int
, acpi_sci_flags
.trigger
);
646 extern int acpi_sci_override_gsi
;
648 * now that acpi_fadt is initialized,
649 * update it with result from INT_SRC_OVR parsing
651 acpi_fadt
.sci_int
= acpi_sci_override_gsi
;
655 status
= acpi_enable_subsystem(~(ACPI_NO_HARDWARE_INIT
| ACPI_NO_ACPI_ENABLE
));
656 if (ACPI_FAILURE(status
)) {
657 printk(KERN_ERR PREFIX
"Unable to enable ACPI\n");
672 acpi_status status
= AE_OK
;
673 extern acpi_status
acpi_os_initialize1(void);
675 ACPI_FUNCTION_TRACE("acpi_bus_init");
677 status
= acpi_os_initialize1();
679 status
= acpi_enable_subsystem(ACPI_NO_HARDWARE_INIT
| ACPI_NO_ACPI_ENABLE
);
680 if (ACPI_FAILURE(status
)) {
681 printk(KERN_ERR PREFIX
"Unable to start the ACPI Interpreter\n");
685 if (ACPI_FAILURE(status
)) {
686 printk(KERN_ERR PREFIX
"Unable to initialize ACPI OS objects\n");
689 #ifdef CONFIG_ACPI_EC
691 * ACPI 2.0 requires the EC driver to be loaded and work before
692 * the EC device is found in the namespace (i.e. before acpi_initialize_objects()
695 * This is accomplished by looking for the ECDT table, and getting
696 * the EC parameters out of that.
698 status
= acpi_ec_ecdt_probe();
699 /* Ignore result. Not having an ECDT is not fatal. */
702 status
= acpi_initialize_objects(ACPI_FULL_INITIALIZATION
);
703 if (ACPI_FAILURE(status
)) {
704 printk(KERN_ERR PREFIX
"Unable to initialize ACPI objects\n");
708 printk(KERN_INFO PREFIX
"Interpreter enabled\n");
711 * Get the system interrupt model and evaluate \_PIC.
713 result
= acpi_bus_init_irq();
718 * Register the for all standard device notifications.
720 status
= acpi_install_notify_handler(ACPI_ROOT_OBJECT
, ACPI_SYSTEM_NOTIFY
, &acpi_bus_notify
, NULL
);
721 if (ACPI_FAILURE(status
)) {
722 printk(KERN_ERR PREFIX
"Unable to register for device notifications\n");
727 * Create the top ACPI proc directory
729 acpi_root_dir
= proc_mkdir(ACPI_BUS_FILE_ROOT
, NULL
);
733 /* Mimic structured exception handling */
736 return_VALUE(-ENODEV
);
739 decl_subsys(acpi
,NULL
,NULL
);
741 static int __init
acpi_init (void)
745 ACPI_FUNCTION_TRACE("acpi_init");
747 printk(KERN_INFO PREFIX
"Subsystem revision %08x\n",
751 printk(KERN_INFO PREFIX
"Interpreter disabled.\n");
752 return_VALUE(-ENODEV
);
755 firmware_register(&acpi_subsys
);
757 result
= acpi_bus_init();
764 printk(KERN_INFO PREFIX
"APM is already active, exiting\n");
772 return_VALUE(result
);
775 subsys_initcall(acpi_init
);