USB: Obscure Maxon BP3-USB Device Support 16d8:6280 for option driver
[linux-2.6/s3c2410-cpufreq.git] / drivers / acpi / bus.c
blob2d1955c118337fae68004ccaf3f7d3f3238b9cba
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 #ifdef CONFIG_X86
36 #include <asm/mpspec.h>
37 #endif
38 #include <acpi/acpi_bus.h>
39 #include <acpi/acpi_drivers.h>
41 #define _COMPONENT ACPI_BUS_COMPONENT
42 ACPI_MODULE_NAME("bus");
44 struct acpi_device *acpi_root;
45 struct proc_dir_entry *acpi_root_dir;
46 EXPORT_SYMBOL(acpi_root_dir);
48 #define STRUCT_TO_INT(s) (*((int*)&s))
50 /* --------------------------------------------------------------------------
51 Device Management
52 -------------------------------------------------------------------------- */
54 int acpi_bus_get_device(acpi_handle handle, struct acpi_device **device)
56 acpi_status status = AE_OK;
59 if (!device)
60 return -EINVAL;
62 /* TBD: Support fixed-feature devices */
64 status = acpi_get_data(handle, acpi_bus_data_handler, (void **)device);
65 if (ACPI_FAILURE(status) || !*device) {
66 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No context for object [%p]\n",
67 handle));
68 return -ENODEV;
71 return 0;
74 EXPORT_SYMBOL(acpi_bus_get_device);
76 int acpi_bus_get_status(struct acpi_device *device)
78 acpi_status status = AE_OK;
79 unsigned long sta = 0;
82 if (!device)
83 return -EINVAL;
86 * Evaluate _STA if present.
88 if (device->flags.dynamic_status) {
89 status =
90 acpi_evaluate_integer(device->handle, "_STA", NULL, &sta);
91 if (ACPI_FAILURE(status))
92 return -ENODEV;
93 STRUCT_TO_INT(device->status) = (int)sta;
97 * Otherwise we assume the status of our parent (unless we don't
98 * have one, in which case status is implied).
100 else if (device->parent)
101 device->status = device->parent->status;
102 else
103 STRUCT_TO_INT(device->status) =
104 ACPI_STA_DEVICE_PRESENT | ACPI_STA_DEVICE_ENABLED |
105 ACPI_STA_DEVICE_UI | ACPI_STA_DEVICE_FUNCTIONING;
107 if (device->status.functional && !device->status.present) {
108 printk(KERN_WARNING PREFIX "Device [%s] status [%08x]: "
109 "functional but not present; setting present\n",
110 device->pnp.bus_id, (u32) STRUCT_TO_INT(device->status));
111 device->status.present = 1;
114 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] status [%08x]\n",
115 device->pnp.bus_id,
116 (u32) STRUCT_TO_INT(device->status)));
118 return 0;
121 EXPORT_SYMBOL(acpi_bus_get_status);
123 void acpi_bus_private_data_handler(acpi_handle handle,
124 u32 function, void *context)
126 return;
128 EXPORT_SYMBOL(acpi_bus_private_data_handler);
130 int acpi_bus_get_private_data(acpi_handle handle, void **data)
132 acpi_status status = AE_OK;
134 if (!*data)
135 return -EINVAL;
137 status = acpi_get_data(handle, acpi_bus_private_data_handler, data);
138 if (ACPI_FAILURE(status) || !*data) {
139 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No context for object [%p]\n",
140 handle));
141 return -ENODEV;
144 return 0;
146 EXPORT_SYMBOL(acpi_bus_get_private_data);
148 /* --------------------------------------------------------------------------
149 Power Management
150 -------------------------------------------------------------------------- */
152 int acpi_bus_get_power(acpi_handle handle, int *state)
154 int result = 0;
155 acpi_status status = 0;
156 struct acpi_device *device = NULL;
157 unsigned long psc = 0;
160 result = acpi_bus_get_device(handle, &device);
161 if (result)
162 return result;
164 *state = ACPI_STATE_UNKNOWN;
166 if (!device->flags.power_manageable) {
167 /* TBD: Non-recursive algorithm for walking up hierarchy */
168 if (device->parent)
169 *state = device->parent->power.state;
170 else
171 *state = ACPI_STATE_D0;
172 } else {
174 * Get the device's power state either directly (via _PSC) or
175 * indirectly (via power resources).
177 if (device->power.flags.explicit_get) {
178 status = acpi_evaluate_integer(device->handle, "_PSC",
179 NULL, &psc);
180 if (ACPI_FAILURE(status))
181 return -ENODEV;
182 device->power.state = (int)psc;
183 } else if (device->power.flags.power_resources) {
184 result = acpi_power_get_inferred_state(device);
185 if (result)
186 return result;
189 *state = device->power.state;
192 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] power state is D%d\n",
193 device->pnp.bus_id, device->power.state));
195 return 0;
198 EXPORT_SYMBOL(acpi_bus_get_power);
200 int acpi_bus_set_power(acpi_handle handle, int state)
202 int result = 0;
203 acpi_status status = AE_OK;
204 struct acpi_device *device = NULL;
205 char object_name[5] = { '_', 'P', 'S', '0' + state, '\0' };
208 result = acpi_bus_get_device(handle, &device);
209 if (result)
210 return result;
212 if ((state < ACPI_STATE_D0) || (state > ACPI_STATE_D3))
213 return -EINVAL;
215 /* Make sure this is a valid target state */
217 if (!device->flags.power_manageable) {
218 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device `[%s]' is not power manageable\n",
219 kobject_name(&device->dev.kobj)));
220 return -ENODEV;
223 * Get device's current power state
225 acpi_bus_get_power(device->handle, &device->power.state);
226 if ((state == device->power.state) && !device->flags.force_power_state) {
227 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device is already at D%d\n",
228 state));
229 return 0;
232 if (!device->power.states[state].flags.valid) {
233 printk(KERN_WARNING PREFIX "Device does not support D%d\n", state);
234 return -ENODEV;
236 if (device->parent && (state < device->parent->power.state)) {
237 printk(KERN_WARNING PREFIX
238 "Cannot set device to a higher-powered"
239 " state than parent\n");
240 return -ENODEV;
244 * Transition Power
245 * ----------------
246 * On transitions to a high-powered state we first apply power (via
247 * power resources) then evalute _PSx. Conversly for transitions to
248 * a lower-powered state.
250 if (state < device->power.state) {
251 if (device->power.flags.power_resources) {
252 result = acpi_power_transition(device, state);
253 if (result)
254 goto end;
256 if (device->power.states[state].flags.explicit_set) {
257 status = acpi_evaluate_object(device->handle,
258 object_name, NULL, NULL);
259 if (ACPI_FAILURE(status)) {
260 result = -ENODEV;
261 goto end;
264 } else {
265 if (device->power.states[state].flags.explicit_set) {
266 status = acpi_evaluate_object(device->handle,
267 object_name, NULL, NULL);
268 if (ACPI_FAILURE(status)) {
269 result = -ENODEV;
270 goto end;
273 if (device->power.flags.power_resources) {
274 result = acpi_power_transition(device, state);
275 if (result)
276 goto end;
280 end:
281 if (result)
282 printk(KERN_WARNING PREFIX
283 "Transitioning device [%s] to D%d\n",
284 device->pnp.bus_id, state);
285 else {
286 device->power.state = state;
287 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
288 "Device [%s] transitioned to D%d\n",
289 device->pnp.bus_id, state));
292 return result;
295 EXPORT_SYMBOL(acpi_bus_set_power);
297 /* --------------------------------------------------------------------------
298 Event Management
299 -------------------------------------------------------------------------- */
301 #ifdef CONFIG_ACPI_PROC_EVENT
302 static DEFINE_SPINLOCK(acpi_bus_event_lock);
304 LIST_HEAD(acpi_bus_event_list);
305 DECLARE_WAIT_QUEUE_HEAD(acpi_bus_event_queue);
307 extern int event_is_open;
309 int acpi_bus_generate_proc_event4(const char *device_class, const char *bus_id, u8 type, int data)
311 struct acpi_bus_event *event;
312 unsigned long flags = 0;
314 /* drop event on the floor if no one's listening */
315 if (!event_is_open)
316 return 0;
318 event = kmalloc(sizeof(struct acpi_bus_event), GFP_ATOMIC);
319 if (!event)
320 return -ENOMEM;
322 strcpy(event->device_class, device_class);
323 strcpy(event->bus_id, bus_id);
324 event->type = type;
325 event->data = data;
327 spin_lock_irqsave(&acpi_bus_event_lock, flags);
328 list_add_tail(&event->node, &acpi_bus_event_list);
329 spin_unlock_irqrestore(&acpi_bus_event_lock, flags);
331 wake_up_interruptible(&acpi_bus_event_queue);
333 return 0;
337 EXPORT_SYMBOL_GPL(acpi_bus_generate_proc_event4);
339 int acpi_bus_generate_proc_event(struct acpi_device *device, u8 type, int data)
341 if (!device)
342 return -EINVAL;
343 return acpi_bus_generate_proc_event4(device->pnp.device_class,
344 device->pnp.bus_id, type, data);
347 EXPORT_SYMBOL(acpi_bus_generate_proc_event);
349 int acpi_bus_receive_event(struct acpi_bus_event *event)
351 unsigned long flags = 0;
352 struct acpi_bus_event *entry = NULL;
354 DECLARE_WAITQUEUE(wait, current);
357 if (!event)
358 return -EINVAL;
360 if (list_empty(&acpi_bus_event_list)) {
362 set_current_state(TASK_INTERRUPTIBLE);
363 add_wait_queue(&acpi_bus_event_queue, &wait);
365 if (list_empty(&acpi_bus_event_list))
366 schedule();
368 remove_wait_queue(&acpi_bus_event_queue, &wait);
369 set_current_state(TASK_RUNNING);
371 if (signal_pending(current))
372 return -ERESTARTSYS;
375 spin_lock_irqsave(&acpi_bus_event_lock, flags);
376 if (!list_empty(&acpi_bus_event_list)) {
377 entry = list_entry(acpi_bus_event_list.next,
378 struct acpi_bus_event, node);
379 list_del(&entry->node);
381 spin_unlock_irqrestore(&acpi_bus_event_lock, flags);
383 if (!entry)
384 return -ENODEV;
386 memcpy(event, entry, sizeof(struct acpi_bus_event));
388 kfree(entry);
390 return 0;
393 #endif /* CONFIG_ACPI_PROC_EVENT */
395 /* --------------------------------------------------------------------------
396 Notification Handling
397 -------------------------------------------------------------------------- */
399 static int
400 acpi_bus_check_device(struct acpi_device *device, int *status_changed)
402 acpi_status status = 0;
403 struct acpi_device_status old_status;
406 if (!device)
407 return -EINVAL;
409 if (status_changed)
410 *status_changed = 0;
412 old_status = device->status;
415 * Make sure this device's parent is present before we go about
416 * messing with the device.
418 if (device->parent && !device->parent->status.present) {
419 device->status = device->parent->status;
420 if (STRUCT_TO_INT(old_status) != STRUCT_TO_INT(device->status)) {
421 if (status_changed)
422 *status_changed = 1;
424 return 0;
427 status = acpi_bus_get_status(device);
428 if (ACPI_FAILURE(status))
429 return -ENODEV;
431 if (STRUCT_TO_INT(old_status) == STRUCT_TO_INT(device->status))
432 return 0;
434 if (status_changed)
435 *status_changed = 1;
438 * Device Insertion/Removal
440 if ((device->status.present) && !(old_status.present)) {
441 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device insertion detected\n"));
442 /* TBD: Handle device insertion */
443 } else if (!(device->status.present) && (old_status.present)) {
444 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device removal detected\n"));
445 /* TBD: Handle device removal */
448 return 0;
451 static int acpi_bus_check_scope(struct acpi_device *device)
453 int result = 0;
454 int status_changed = 0;
457 if (!device)
458 return -EINVAL;
460 /* Status Change? */
461 result = acpi_bus_check_device(device, &status_changed);
462 if (result)
463 return result;
465 if (!status_changed)
466 return 0;
469 * TBD: Enumerate child devices within this device's scope and
470 * run acpi_bus_check_device()'s on them.
473 return 0;
477 * acpi_bus_notify
478 * ---------------
479 * Callback for all 'system-level' device notifications (values 0x00-0x7F).
481 static void acpi_bus_notify(acpi_handle handle, u32 type, void *data)
483 int result = 0;
484 struct acpi_device *device = NULL;
487 if (acpi_bus_get_device(handle, &device))
488 return;
490 switch (type) {
492 case ACPI_NOTIFY_BUS_CHECK:
493 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
494 "Received BUS CHECK notification for device [%s]\n",
495 device->pnp.bus_id));
496 result = acpi_bus_check_scope(device);
498 * TBD: We'll need to outsource certain events to non-ACPI
499 * drivers via the device manager (device.c).
501 break;
503 case ACPI_NOTIFY_DEVICE_CHECK:
504 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
505 "Received DEVICE CHECK notification for device [%s]\n",
506 device->pnp.bus_id));
507 result = acpi_bus_check_device(device, NULL);
509 * TBD: We'll need to outsource certain events to non-ACPI
510 * drivers via the device manager (device.c).
512 break;
514 case ACPI_NOTIFY_DEVICE_WAKE:
515 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
516 "Received DEVICE WAKE notification for device [%s]\n",
517 device->pnp.bus_id));
518 /* TBD */
519 break;
521 case ACPI_NOTIFY_EJECT_REQUEST:
522 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
523 "Received EJECT REQUEST notification for device [%s]\n",
524 device->pnp.bus_id));
525 /* TBD */
526 break;
528 case ACPI_NOTIFY_DEVICE_CHECK_LIGHT:
529 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
530 "Received DEVICE CHECK LIGHT notification for device [%s]\n",
531 device->pnp.bus_id));
532 /* TBD: Exactly what does 'light' mean? */
533 break;
535 case ACPI_NOTIFY_FREQUENCY_MISMATCH:
536 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
537 "Received FREQUENCY MISMATCH notification for device [%s]\n",
538 device->pnp.bus_id));
539 /* TBD */
540 break;
542 case ACPI_NOTIFY_BUS_MODE_MISMATCH:
543 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
544 "Received BUS MODE MISMATCH notification for device [%s]\n",
545 device->pnp.bus_id));
546 /* TBD */
547 break;
549 case ACPI_NOTIFY_POWER_FAULT:
550 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
551 "Received POWER FAULT notification for device [%s]\n",
552 device->pnp.bus_id));
553 /* TBD */
554 break;
556 default:
557 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
558 "Received unknown/unsupported notification [%08x]\n",
559 type));
560 break;
563 return;
566 /* --------------------------------------------------------------------------
567 Initialization/Cleanup
568 -------------------------------------------------------------------------- */
570 static int __init acpi_bus_init_irq(void)
572 acpi_status status = AE_OK;
573 union acpi_object arg = { ACPI_TYPE_INTEGER };
574 struct acpi_object_list arg_list = { 1, &arg };
575 char *message = NULL;
579 * Let the system know what interrupt model we are using by
580 * evaluating the \_PIC object, if exists.
583 switch (acpi_irq_model) {
584 case ACPI_IRQ_MODEL_PIC:
585 message = "PIC";
586 break;
587 case ACPI_IRQ_MODEL_IOAPIC:
588 message = "IOAPIC";
589 break;
590 case ACPI_IRQ_MODEL_IOSAPIC:
591 message = "IOSAPIC";
592 break;
593 case ACPI_IRQ_MODEL_PLATFORM:
594 message = "platform specific model";
595 break;
596 default:
597 printk(KERN_WARNING PREFIX "Unknown interrupt routing model\n");
598 return -ENODEV;
601 printk(KERN_INFO PREFIX "Using %s for interrupt routing\n", message);
603 arg.integer.value = acpi_irq_model;
605 status = acpi_evaluate_object(NULL, "\\_PIC", &arg_list, NULL);
606 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
607 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PIC"));
608 return -ENODEV;
611 return 0;
614 acpi_native_uint acpi_gbl_permanent_mmap;
617 void __init acpi_early_init(void)
619 acpi_status status = AE_OK;
621 if (acpi_disabled)
622 return;
624 printk(KERN_INFO PREFIX "Core revision %08x\n", ACPI_CA_VERSION);
626 /* enable workarounds, unless strict ACPI spec. compliance */
627 if (!acpi_strict)
628 acpi_gbl_enable_interpreter_slack = TRUE;
630 acpi_gbl_permanent_mmap = 1;
632 status = acpi_reallocate_root_table();
633 if (ACPI_FAILURE(status)) {
634 printk(KERN_ERR PREFIX
635 "Unable to reallocate ACPI tables\n");
636 goto error0;
639 status = acpi_initialize_subsystem();
640 if (ACPI_FAILURE(status)) {
641 printk(KERN_ERR PREFIX
642 "Unable to initialize the ACPI Interpreter\n");
643 goto error0;
646 status = acpi_load_tables();
647 if (ACPI_FAILURE(status)) {
648 printk(KERN_ERR PREFIX
649 "Unable to load the System Description Tables\n");
650 goto error0;
653 #ifdef CONFIG_X86
654 if (!acpi_ioapic) {
655 /* compatible (0) means level (3) */
656 if (!(acpi_sci_flags & ACPI_MADT_TRIGGER_MASK)) {
657 acpi_sci_flags &= ~ACPI_MADT_TRIGGER_MASK;
658 acpi_sci_flags |= ACPI_MADT_TRIGGER_LEVEL;
660 /* Set PIC-mode SCI trigger type */
661 acpi_pic_sci_set_trigger(acpi_gbl_FADT.sci_interrupt,
662 (acpi_sci_flags & ACPI_MADT_TRIGGER_MASK) >> 2);
663 } else {
665 * now that acpi_gbl_FADT is initialized,
666 * update it with result from INT_SRC_OVR parsing
668 acpi_gbl_FADT.sci_interrupt = acpi_sci_override_gsi;
670 #endif
672 status =
673 acpi_enable_subsystem(~
674 (ACPI_NO_HARDWARE_INIT |
675 ACPI_NO_ACPI_ENABLE));
676 if (ACPI_FAILURE(status)) {
677 printk(KERN_ERR PREFIX "Unable to enable ACPI\n");
678 goto error0;
681 return;
683 error0:
684 disable_acpi();
685 return;
688 static int __init acpi_bus_init(void)
690 int result = 0;
691 acpi_status status = AE_OK;
692 extern acpi_status acpi_os_initialize1(void);
695 status = acpi_os_initialize1();
697 status =
698 acpi_enable_subsystem(ACPI_NO_HARDWARE_INIT | ACPI_NO_ACPI_ENABLE);
699 if (ACPI_FAILURE(status)) {
700 printk(KERN_ERR PREFIX
701 "Unable to start the ACPI Interpreter\n");
702 goto error1;
705 if (ACPI_FAILURE(status)) {
706 printk(KERN_ERR PREFIX
707 "Unable to initialize ACPI OS objects\n");
708 goto error1;
710 #ifdef CONFIG_ACPI_EC
712 * ACPI 2.0 requires the EC driver to be loaded and work before
713 * the EC device is found in the namespace (i.e. before acpi_initialize_objects()
714 * is called).
716 * This is accomplished by looking for the ECDT table, and getting
717 * the EC parameters out of that.
719 status = acpi_ec_ecdt_probe();
720 /* Ignore result. Not having an ECDT is not fatal. */
721 #endif
723 status = acpi_initialize_objects(ACPI_FULL_INITIALIZATION);
724 if (ACPI_FAILURE(status)) {
725 printk(KERN_ERR PREFIX "Unable to initialize ACPI objects\n");
726 goto error1;
729 printk(KERN_INFO PREFIX "Interpreter enabled\n");
731 /* Initialize sleep structures */
732 acpi_sleep_init();
735 * Get the system interrupt model and evaluate \_PIC.
737 result = acpi_bus_init_irq();
738 if (result)
739 goto error1;
742 * Register the for all standard device notifications.
744 status =
745 acpi_install_notify_handler(ACPI_ROOT_OBJECT, ACPI_SYSTEM_NOTIFY,
746 &acpi_bus_notify, NULL);
747 if (ACPI_FAILURE(status)) {
748 printk(KERN_ERR PREFIX
749 "Unable to register for device notifications\n");
750 goto error1;
754 * Create the top ACPI proc directory
756 acpi_root_dir = proc_mkdir(ACPI_BUS_FILE_ROOT, NULL);
758 return 0;
760 /* Mimic structured exception handling */
761 error1:
762 acpi_terminate();
763 return -ENODEV;
766 struct kobject *acpi_kobj;
768 static int __init acpi_init(void)
770 int result = 0;
773 if (acpi_disabled) {
774 printk(KERN_INFO PREFIX "Interpreter disabled.\n");
775 return -ENODEV;
778 acpi_kobj = kobject_create_and_add("acpi", firmware_kobj);
779 if (!acpi_kobj) {
780 printk(KERN_WARNING "%s: kset create error\n", __func__);
781 acpi_kobj = NULL;
784 result = acpi_bus_init();
786 if (!result) {
787 if (!(pm_flags & PM_APM))
788 pm_flags |= PM_ACPI;
789 else {
790 printk(KERN_INFO PREFIX
791 "APM is already active, exiting\n");
792 disable_acpi();
793 result = -ENODEV;
795 } else
796 disable_acpi();
798 return result;
801 subsys_initcall(acpi_init);