[NETLINK]: Fix infinite loops in synchronous netlink changes.
[linux-2.6/kvm.git] / drivers / acpi / bus.c
blob4edff17385791ce10070529414625267aed2d59b
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/list.h>
29 #include <linux/sched.h>
30 #include <linux/pm.h>
31 #include <linux/device.h>
32 #include <linux/proc_fs.h>
33 #ifdef CONFIG_X86
34 #include <asm/mpspec.h>
35 #endif
36 #include <acpi/acpi_bus.h>
37 #include <acpi/acpi_drivers.h>
40 #define _COMPONENT ACPI_BUS_COMPONENT
41 ACPI_MODULE_NAME ("acpi_bus")
43 #ifdef CONFIG_X86
44 extern void __init acpi_pic_sci_set_trigger(unsigned int irq, u16 trigger);
45 #endif
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 /* --------------------------------------------------------------------------
57 Device Management
58 -------------------------------------------------------------------------- */
60 int
61 acpi_bus_get_device (
62 acpi_handle handle,
63 struct acpi_device **device)
65 acpi_status status = AE_OK;
67 ACPI_FUNCTION_TRACE("acpi_bus_get_device");
69 if (!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",
77 handle));
78 return_VALUE(-ENODEV);
81 return_VALUE(0);
83 EXPORT_SYMBOL(acpi_bus_get_device);
85 int
86 acpi_bus_get_status (
87 struct acpi_device *device)
89 acpi_status status = AE_OK;
90 unsigned long sta = 0;
92 ACPI_FUNCTION_TRACE("acpi_bus_get_status");
94 if (!device)
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;
113 else
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",
119 device->pnp.bus_id,
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)));
127 return_VALUE(0);
129 EXPORT_SYMBOL(acpi_bus_get_status);
132 /* --------------------------------------------------------------------------
133 Power Management
134 -------------------------------------------------------------------------- */
137 acpi_bus_get_power (
138 acpi_handle handle,
139 int *state)
141 int result = 0;
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);
149 if (result)
150 return_VALUE(result);
152 *state = ACPI_STATE_UNKNOWN;
154 if (!device->flags.power_manageable) {
155 /* TBD: Non-recursive algorithm for walking up hierarchy */
156 if (device->parent)
157 *state = device->parent->power.state;
158 else
159 *state = ACPI_STATE_D0;
161 else {
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",
168 NULL, &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);
175 if (result)
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));
185 return_VALUE(0);
187 EXPORT_SYMBOL(acpi_bus_get_power);
191 acpi_bus_set_power (
192 acpi_handle handle,
193 int state)
195 int result = 0;
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);
203 if (result)
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));
217 return_VALUE(0);
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);
229 * Transition Power
230 * ----------------
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);
238 if (result)
239 goto end;
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)) {
245 result = -ENODEV;
246 goto end;
250 else {
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)) {
255 result = -ENODEV;
256 goto end;
259 if (device->power.flags.power_resources) {
260 result = acpi_power_transition(device, state);
261 if (result)
262 goto end;
266 end:
267 if (result)
268 ACPI_DEBUG_PRINT((ACPI_DB_WARN, "Error transitioning device [%s] to D%d\n",
269 device->pnp.bus_id, state));
270 else
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 /* --------------------------------------------------------------------------
281 Event Management
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,
294 u8 type,
295 int data)
297 struct acpi_bus_event *event = NULL;
298 unsigned long flags = 0;
300 ACPI_FUNCTION_TRACE("acpi_bus_generate_event");
302 if (!device)
303 return_VALUE(-EINVAL);
305 /* drop event on the floor if no one's listening */
306 if (!event_is_open)
307 return_VALUE(0);
309 event = kmalloc(sizeof(struct acpi_bus_event), GFP_ATOMIC);
310 if (!event)
311 return_VALUE(-ENOMEM);
313 strcpy(event->device_class, device->pnp.device_class);
314 strcpy(event->bus_id, device->pnp.bus_id);
315 event->type = type;
316 event->data = data;
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);
324 return_VALUE(0);
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");
339 if (!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))
348 schedule();
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);
359 if (entry)
360 list_del(&entry->node);
361 spin_unlock_irqrestore(&acpi_bus_event_lock, flags);
363 if (!entry)
364 return_VALUE(-ENODEV);
366 memcpy(event, entry, sizeof(struct acpi_bus_event));
368 kfree(entry);
370 return_VALUE(0);
372 EXPORT_SYMBOL(acpi_bus_receive_event);
375 /* --------------------------------------------------------------------------
376 Notification Handling
377 -------------------------------------------------------------------------- */
379 static int
380 acpi_bus_check_device (
381 struct acpi_device *device,
382 int *status_changed)
384 acpi_status status = 0;
385 struct acpi_device_status old_status;
387 ACPI_FUNCTION_TRACE("acpi_bus_check_device");
389 if (!device)
390 return_VALUE(-EINVAL);
392 if (status_changed)
393 *status_changed = 0;
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)) {
404 if (status_changed)
405 *status_changed = 1;
407 return_VALUE(0);
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))
415 return_VALUE(0);
417 if (status_changed)
418 *status_changed = 1;
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 */
432 return_VALUE(0);
436 static int
437 acpi_bus_check_scope (
438 struct acpi_device *device)
440 int result = 0;
441 int status_changed = 0;
443 ACPI_FUNCTION_TRACE("acpi_bus_check_scope");
445 if (!device)
446 return_VALUE(-EINVAL);
448 /* Status Change? */
449 result = acpi_bus_check_device(device, &status_changed);
450 if (result)
451 return_VALUE(result);
453 if (!status_changed)
454 return_VALUE(0);
457 * TBD: Enumerate child devices within this device's scope and
458 * run acpi_bus_check_device()'s on them.
461 return_VALUE(0);
466 * acpi_bus_notify
467 * ---------------
468 * Callback for all 'system-level' device notifications (values 0x00-0x7F).
470 static void
471 acpi_bus_notify (
472 acpi_handle handle,
473 u32 type,
474 void *data)
476 int result = 0;
477 struct acpi_device *device = NULL;
479 ACPI_FUNCTION_TRACE("acpi_bus_notify");
481 if (acpi_bus_get_device(handle, &device))
482 return_VOID;
484 switch (type) {
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).
494 break;
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).
504 break;
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));
509 /* TBD */
510 break;
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));
515 /* TBD */
516 break;
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? */
522 break;
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));
527 /* TBD */
528 break;
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));
533 /* TBD */
534 break;
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));
539 /* TBD */
540 break;
542 default:
543 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Received unknown/unsupported notification [%08x]\n",
544 type));
545 break;
548 return_VOID;
551 /* --------------------------------------------------------------------------
552 Initialization/Cleanup
553 -------------------------------------------------------------------------- */
555 static int __init
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:
572 message = "PIC";
573 break;
574 case ACPI_IRQ_MODEL_IOAPIC:
575 message = "IOAPIC";
576 break;
577 case ACPI_IRQ_MODEL_IOSAPIC:
578 message = "IOSAPIC";
579 break;
580 default:
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);
595 return_VALUE(0);
599 void __init
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");
607 if (acpi_disabled)
608 return_VOID;
610 /* enable workarounds, unless strict ACPI spec. compliance */
611 if (!acpi_strict)
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");
617 goto error0;
620 status = acpi_load_tables();
621 if (ACPI_FAILURE(status)) {
622 printk(KERN_ERR PREFIX "Unable to load the System Description Tables\n");
623 goto error0;
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");
632 goto error0;
635 #ifdef CONFIG_X86
636 if (!acpi_ioapic) {
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);
645 } else {
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;
653 #endif
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");
658 goto error0;
661 return_VOID;
663 error0:
664 disable_acpi();
665 return_VOID;
668 static int __init
669 acpi_bus_init (void)
671 int result = 0;
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");
682 goto error1;
685 if (ACPI_FAILURE(status)) {
686 printk(KERN_ERR PREFIX "Unable to initialize ACPI OS objects\n");
687 goto error1;
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()
693 * is called).
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. */
700 #endif
702 status = acpi_initialize_objects(ACPI_FULL_INITIALIZATION);
703 if (ACPI_FAILURE(status)) {
704 printk(KERN_ERR PREFIX "Unable to initialize ACPI objects\n");
705 goto error1;
708 printk(KERN_INFO PREFIX "Interpreter enabled\n");
711 * Get the system interrupt model and evaluate \_PIC.
713 result = acpi_bus_init_irq();
714 if (result)
715 goto error1;
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");
723 goto error1;
727 * Create the top ACPI proc directory
729 acpi_root_dir = proc_mkdir(ACPI_BUS_FILE_ROOT, NULL);
731 return_VALUE(0);
733 /* Mimic structured exception handling */
734 error1:
735 acpi_terminate();
736 return_VALUE(-ENODEV);
739 decl_subsys(acpi,NULL,NULL);
741 static int __init acpi_init (void)
743 int result = 0;
745 ACPI_FUNCTION_TRACE("acpi_init");
747 printk(KERN_INFO PREFIX "Subsystem revision %08x\n",
748 ACPI_CA_VERSION);
750 if (acpi_disabled) {
751 printk(KERN_INFO PREFIX "Interpreter disabled.\n");
752 return_VALUE(-ENODEV);
755 firmware_register(&acpi_subsys);
757 result = acpi_bus_init();
759 if (!result) {
760 #ifdef CONFIG_PM
761 if (!PM_IS_ACTIVE())
762 pm_active = 1;
763 else {
764 printk(KERN_INFO PREFIX "APM is already active, exiting\n");
765 disable_acpi();
766 result = -ENODEV;
768 #endif
769 } else
770 disable_acpi();
772 return_VALUE(result);
775 subsys_initcall(acpi_init);