blob: 6c62862901274a4f72e33f606b7c59a49bd2fe16 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * acpi_bus.c - ACPI Bus Driver ($Revision: 80 $)
3 *
4 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
5 *
6 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
7 *
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.
12 *
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.
17 *
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.
21 *
22 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
23 */
24
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>
Jeff Garzikbca73e42005-11-13 16:06:25 -080031#include <linux/pm_legacy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/device.h>
33#include <linux/proc_fs.h>
34#ifdef CONFIG_X86
35#include <asm/mpspec.h>
36#endif
37#include <acpi/acpi_bus.h>
38#include <acpi/acpi_drivers.h>
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#define _COMPONENT ACPI_BUS_COMPONENT
Len Brown4be44fc2005-08-05 00:44:28 -040041ACPI_MODULE_NAME("acpi_bus")
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#ifdef CONFIG_X86
43extern void __init acpi_pic_sci_set_trigger(unsigned int irq, u16 trigger);
44#endif
45
Bob Moore793c2382006-03-31 00:00:00 -050046struct fadt_descriptor acpi_fadt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047EXPORT_SYMBOL(acpi_fadt);
48
Len Brown4be44fc2005-08-05 00:44:28 -040049struct acpi_device *acpi_root;
50struct proc_dir_entry *acpi_root_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051EXPORT_SYMBOL(acpi_root_dir);
52
53#define STRUCT_TO_INT(s) (*((int*)&s))
54
55/* --------------------------------------------------------------------------
56 Device Management
57 -------------------------------------------------------------------------- */
58
Len Brown4be44fc2005-08-05 00:44:28 -040059int acpi_bus_get_device(acpi_handle handle, struct acpi_device **device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060{
Len Brown4be44fc2005-08-05 00:44:28 -040061 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63 ACPI_FUNCTION_TRACE("acpi_bus_get_device");
64
65 if (!device)
66 return_VALUE(-EINVAL);
67
68 /* TBD: Support fixed-feature devices */
69
Len Brown4be44fc2005-08-05 00:44:28 -040070 status = acpi_get_data(handle, acpi_bus_data_handler, (void **)device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 if (ACPI_FAILURE(status) || !*device) {
Thomas Renningera6fc6722006-06-26 23:58:43 -040072 ACPI_EXCEPTION((AE_INFO, status, "No context for object [%p]", handle));
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 return_VALUE(-ENODEV);
74 }
75
76 return_VALUE(0);
77}
Len Brown4be44fc2005-08-05 00:44:28 -040078
Linus Torvalds1da177e2005-04-16 15:20:36 -070079EXPORT_SYMBOL(acpi_bus_get_device);
80
Len Brown4be44fc2005-08-05 00:44:28 -040081int acpi_bus_get_status(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{
Len Brown4be44fc2005-08-05 00:44:28 -040083 acpi_status status = AE_OK;
84 unsigned long sta = 0;
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 ACPI_FUNCTION_TRACE("acpi_bus_get_status");
87
88 if (!device)
89 return_VALUE(-EINVAL);
90
91 /*
92 * Evaluate _STA if present.
93 */
94 if (device->flags.dynamic_status) {
Len Brown4be44fc2005-08-05 00:44:28 -040095 status =
96 acpi_evaluate_integer(device->handle, "_STA", NULL, &sta);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 if (ACPI_FAILURE(status))
98 return_VALUE(-ENODEV);
Len Brown4be44fc2005-08-05 00:44:28 -040099 STRUCT_TO_INT(device->status) = (int)sta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 }
101
102 /*
103 * Otherwise we assume the status of our parent (unless we don't
104 * have one, in which case status is implied).
105 */
106 else if (device->parent)
107 device->status = device->parent->status;
108 else
109 STRUCT_TO_INT(device->status) = 0x0F;
110
111 if (device->status.functional && !device->status.present) {
112 printk(KERN_WARNING PREFIX "Device [%s] status [%08x]: "
Len Brown4be44fc2005-08-05 00:44:28 -0400113 "functional but not present; setting present\n",
114 device->pnp.bus_id, (u32) STRUCT_TO_INT(device->status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 device->status.present = 1;
116 }
117
Len Brown4be44fc2005-08-05 00:44:28 -0400118 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] status [%08x]\n",
119 device->pnp.bus_id,
120 (u32) STRUCT_TO_INT(device->status)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122 return_VALUE(0);
123}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Len Brown4be44fc2005-08-05 00:44:28 -0400125EXPORT_SYMBOL(acpi_bus_get_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127/* --------------------------------------------------------------------------
128 Power Management
129 -------------------------------------------------------------------------- */
130
Len Brown4be44fc2005-08-05 00:44:28 -0400131int acpi_bus_get_power(acpi_handle handle, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
Len Brown4be44fc2005-08-05 00:44:28 -0400133 int result = 0;
134 acpi_status status = 0;
135 struct acpi_device *device = NULL;
136 unsigned long psc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138 ACPI_FUNCTION_TRACE("acpi_bus_get_power");
139
140 result = acpi_bus_get_device(handle, &device);
141 if (result)
142 return_VALUE(result);
143
144 *state = ACPI_STATE_UNKNOWN;
145
146 if (!device->flags.power_manageable) {
147 /* TBD: Non-recursive algorithm for walking up hierarchy */
148 if (device->parent)
149 *state = device->parent->power.state;
150 else
151 *state = ACPI_STATE_D0;
Len Brown4be44fc2005-08-05 00:44:28 -0400152 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 /*
154 * Get the device's power state either directly (via _PSC) or
155 * indirectly (via power resources).
156 */
157 if (device->power.flags.explicit_get) {
Len Brown4be44fc2005-08-05 00:44:28 -0400158 status = acpi_evaluate_integer(device->handle, "_PSC",
159 NULL, &psc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 if (ACPI_FAILURE(status))
161 return_VALUE(-ENODEV);
Len Brown4be44fc2005-08-05 00:44:28 -0400162 device->power.state = (int)psc;
163 } else if (device->power.flags.power_resources) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 result = acpi_power_get_inferred_state(device);
165 if (result)
166 return_VALUE(result);
167 }
168
169 *state = device->power.state;
170 }
171
172 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] power state is D%d\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400173 device->pnp.bus_id, device->power.state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175 return_VALUE(0);
176}
Len Brown4be44fc2005-08-05 00:44:28 -0400177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178EXPORT_SYMBOL(acpi_bus_get_power);
179
Len Brown4be44fc2005-08-05 00:44:28 -0400180int acpi_bus_set_power(acpi_handle handle, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
Len Brown4be44fc2005-08-05 00:44:28 -0400182 int result = 0;
183 acpi_status status = AE_OK;
184 struct acpi_device *device = NULL;
185 char object_name[5] = { '_', 'P', 'S', '0' + state, '\0' };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 ACPI_FUNCTION_TRACE("acpi_bus_set_power");
188
189 result = acpi_bus_get_device(handle, &device);
190 if (result)
191 return_VALUE(result);
192
193 if ((state < ACPI_STATE_D0) || (state > ACPI_STATE_D3))
194 return_VALUE(-EINVAL);
195
196 /* Make sure this is a valid target state */
197
198 if (!device->flags.power_manageable) {
Jae-hyeon Park64dedfb2006-06-26 22:34:03 -0400199 printk(KERN_DEBUG "Device `[%s]is not power manageable",
200 device->kobj.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 return_VALUE(-ENODEV);
202 }
David Shaohua Lib9131002005-03-19 00:16:18 -0500203 /*
204 * Get device's current power state if it's unknown
205 * This means device power state isn't initialized or previous setting failed
206 */
Konstantin Karasyov0feabb02006-05-08 00:00:00 -0400207 if (!device->flags.force_power_state) {
208 if (device->power.state == ACPI_STATE_UNKNOWN)
209 acpi_bus_get_power(device->handle, &device->power.state);
210 if (state == device->power.state) {
211 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device is already at D%d\n",
212 state));
213 return_VALUE(0);
214 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 }
216 if (!device->power.states[state].flags.valid) {
Len Browncece9292006-06-26 23:04:31 -0400217 printk(KERN_WARNING PREFIX "Device does not support D%d\n", state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 return_VALUE(-ENODEV);
219 }
220 if (device->parent && (state < device->parent->power.state)) {
Len Browncece9292006-06-26 23:04:31 -0400221 printk(KERN_WARNING PREFIX
Thomas Renningera6fc6722006-06-26 23:58:43 -0400222 "Cannot set device to a higher-powered"
Len Browncece9292006-06-26 23:04:31 -0400223 " state than parent\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 return_VALUE(-ENODEV);
225 }
226
227 /*
228 * Transition Power
229 * ----------------
230 * On transitions to a high-powered state we first apply power (via
231 * power resources) then evalute _PSx. Conversly for transitions to
232 * a lower-powered state.
David Shaohua Lib9131002005-03-19 00:16:18 -0500233 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 if (state < device->power.state) {
235 if (device->power.flags.power_resources) {
236 result = acpi_power_transition(device, state);
237 if (result)
238 goto end;
239 }
240 if (device->power.states[state].flags.explicit_set) {
Len Brown4be44fc2005-08-05 00:44:28 -0400241 status = acpi_evaluate_object(device->handle,
242 object_name, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 if (ACPI_FAILURE(status)) {
244 result = -ENODEV;
245 goto end;
246 }
247 }
Len Brown4be44fc2005-08-05 00:44:28 -0400248 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 if (device->power.states[state].flags.explicit_set) {
Len Brown4be44fc2005-08-05 00:44:28 -0400250 status = acpi_evaluate_object(device->handle,
251 object_name, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 if (ACPI_FAILURE(status)) {
253 result = -ENODEV;
254 goto end;
255 }
256 }
257 if (device->power.flags.power_resources) {
258 result = acpi_power_transition(device, state);
259 if (result)
260 goto end;
261 }
262 }
263
Len Brown4be44fc2005-08-05 00:44:28 -0400264 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 if (result)
Len Browncece9292006-06-26 23:04:31 -0400266 printk(KERN_WARNING PREFIX
267 "Transitioning device [%s] to D%d\n",
268 device->pnp.bus_id, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 else
Len Brown4be44fc2005-08-05 00:44:28 -0400270 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
271 "Device [%s] transitioned to D%d\n",
272 device->pnp.bus_id, state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274 return_VALUE(result);
275}
Len Brown4be44fc2005-08-05 00:44:28 -0400276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277EXPORT_SYMBOL(acpi_bus_set_power);
278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279/* --------------------------------------------------------------------------
280 Event Management
281 -------------------------------------------------------------------------- */
282
283static DEFINE_SPINLOCK(acpi_bus_event_lock);
284
285LIST_HEAD(acpi_bus_event_list);
286DECLARE_WAIT_QUEUE_HEAD(acpi_bus_event_queue);
287
Len Brown4be44fc2005-08-05 00:44:28 -0400288extern int event_is_open;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Len Brown4be44fc2005-08-05 00:44:28 -0400290int acpi_bus_generate_event(struct acpi_device *device, u8 type, int data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
Len Brown4be44fc2005-08-05 00:44:28 -0400292 struct acpi_bus_event *event = NULL;
293 unsigned long flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
295 ACPI_FUNCTION_TRACE("acpi_bus_generate_event");
296
297 if (!device)
298 return_VALUE(-EINVAL);
299
300 /* drop event on the floor if no one's listening */
301 if (!event_is_open)
302 return_VALUE(0);
303
304 event = kmalloc(sizeof(struct acpi_bus_event), GFP_ATOMIC);
305 if (!event)
306 return_VALUE(-ENOMEM);
307
308 strcpy(event->device_class, device->pnp.device_class);
309 strcpy(event->bus_id, device->pnp.bus_id);
310 event->type = type;
311 event->data = data;
312
313 spin_lock_irqsave(&acpi_bus_event_lock, flags);
314 list_add_tail(&event->node, &acpi_bus_event_list);
315 spin_unlock_irqrestore(&acpi_bus_event_lock, flags);
316
317 wake_up_interruptible(&acpi_bus_event_queue);
318
319 return_VALUE(0);
320}
Len Brown4be44fc2005-08-05 00:44:28 -0400321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322EXPORT_SYMBOL(acpi_bus_generate_event);
323
Len Brown4be44fc2005-08-05 00:44:28 -0400324int acpi_bus_receive_event(struct acpi_bus_event *event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
Len Brown4be44fc2005-08-05 00:44:28 -0400326 unsigned long flags = 0;
327 struct acpi_bus_event *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329 DECLARE_WAITQUEUE(wait, current);
330
331 ACPI_FUNCTION_TRACE("acpi_bus_receive_event");
332
333 if (!event)
334 return_VALUE(-EINVAL);
335
336 if (list_empty(&acpi_bus_event_list)) {
337
338 set_current_state(TASK_INTERRUPTIBLE);
339 add_wait_queue(&acpi_bus_event_queue, &wait);
340
341 if (list_empty(&acpi_bus_event_list))
342 schedule();
343
344 remove_wait_queue(&acpi_bus_event_queue, &wait);
345 set_current_state(TASK_RUNNING);
346
347 if (signal_pending(current))
348 return_VALUE(-ERESTARTSYS);
349 }
350
351 spin_lock_irqsave(&acpi_bus_event_lock, flags);
Len Brown4be44fc2005-08-05 00:44:28 -0400352 entry =
353 list_entry(acpi_bus_event_list.next, struct acpi_bus_event, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 if (entry)
355 list_del(&entry->node);
356 spin_unlock_irqrestore(&acpi_bus_event_lock, flags);
357
358 if (!entry)
359 return_VALUE(-ENODEV);
360
361 memcpy(event, entry, sizeof(struct acpi_bus_event));
362
363 kfree(entry);
364
365 return_VALUE(0);
366}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Len Brown4be44fc2005-08-05 00:44:28 -0400368EXPORT_SYMBOL(acpi_bus_receive_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370/* --------------------------------------------------------------------------
371 Notification Handling
372 -------------------------------------------------------------------------- */
373
374static int
Len Brown4be44fc2005-08-05 00:44:28 -0400375acpi_bus_check_device(struct acpi_device *device, int *status_changed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376{
Len Brown4be44fc2005-08-05 00:44:28 -0400377 acpi_status status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 struct acpi_device_status old_status;
379
380 ACPI_FUNCTION_TRACE("acpi_bus_check_device");
381
382 if (!device)
383 return_VALUE(-EINVAL);
384
385 if (status_changed)
386 *status_changed = 0;
387
388 old_status = device->status;
389
390 /*
391 * Make sure this device's parent is present before we go about
392 * messing with the device.
393 */
394 if (device->parent && !device->parent->status.present) {
395 device->status = device->parent->status;
396 if (STRUCT_TO_INT(old_status) != STRUCT_TO_INT(device->status)) {
397 if (status_changed)
398 *status_changed = 1;
399 }
400 return_VALUE(0);
401 }
402
403 status = acpi_bus_get_status(device);
404 if (ACPI_FAILURE(status))
405 return_VALUE(-ENODEV);
406
407 if (STRUCT_TO_INT(old_status) == STRUCT_TO_INT(device->status))
408 return_VALUE(0);
409
410 if (status_changed)
411 *status_changed = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 /*
414 * Device Insertion/Removal
415 */
416 if ((device->status.present) && !(old_status.present)) {
417 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device insertion detected\n"));
418 /* TBD: Handle device insertion */
Len Brown4be44fc2005-08-05 00:44:28 -0400419 } else if (!(device->status.present) && (old_status.present)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device removal detected\n"));
421 /* TBD: Handle device removal */
422 }
423
424 return_VALUE(0);
425}
426
Len Brown4be44fc2005-08-05 00:44:28 -0400427static int acpi_bus_check_scope(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
Len Brown4be44fc2005-08-05 00:44:28 -0400429 int result = 0;
430 int status_changed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
432 ACPI_FUNCTION_TRACE("acpi_bus_check_scope");
433
434 if (!device)
435 return_VALUE(-EINVAL);
436
437 /* Status Change? */
438 result = acpi_bus_check_device(device, &status_changed);
439 if (result)
440 return_VALUE(result);
441
442 if (!status_changed)
443 return_VALUE(0);
444
445 /*
446 * TBD: Enumerate child devices within this device's scope and
447 * run acpi_bus_check_device()'s on them.
448 */
449
450 return_VALUE(0);
451}
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453/**
454 * acpi_bus_notify
455 * ---------------
456 * Callback for all 'system-level' device notifications (values 0x00-0x7F).
457 */
Len Brown4be44fc2005-08-05 00:44:28 -0400458static void acpi_bus_notify(acpi_handle handle, u32 type, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459{
Len Brown4be44fc2005-08-05 00:44:28 -0400460 int result = 0;
461 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463 ACPI_FUNCTION_TRACE("acpi_bus_notify");
464
465 if (acpi_bus_get_device(handle, &device))
466 return_VOID;
467
468 switch (type) {
469
470 case ACPI_NOTIFY_BUS_CHECK:
Len Brown4be44fc2005-08-05 00:44:28 -0400471 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
472 "Received BUS CHECK notification for device [%s]\n",
473 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 result = acpi_bus_check_scope(device);
475 /*
476 * TBD: We'll need to outsource certain events to non-ACPI
Len Brown4be44fc2005-08-05 00:44:28 -0400477 * drivers via the device manager (device.c).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 */
479 break;
480
481 case ACPI_NOTIFY_DEVICE_CHECK:
Len Brown4be44fc2005-08-05 00:44:28 -0400482 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
483 "Received DEVICE CHECK notification for device [%s]\n",
484 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 result = acpi_bus_check_device(device, NULL);
486 /*
487 * TBD: We'll need to outsource certain events to non-ACPI
Len Brown4be44fc2005-08-05 00:44:28 -0400488 * drivers via the device manager (device.c).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 */
490 break;
491
492 case ACPI_NOTIFY_DEVICE_WAKE:
Len Brown4be44fc2005-08-05 00:44:28 -0400493 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
494 "Received DEVICE WAKE notification for device [%s]\n",
495 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 /* TBD */
497 break;
498
499 case ACPI_NOTIFY_EJECT_REQUEST:
Len Brown4be44fc2005-08-05 00:44:28 -0400500 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
501 "Received EJECT REQUEST notification for device [%s]\n",
502 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 /* TBD */
504 break;
505
506 case ACPI_NOTIFY_DEVICE_CHECK_LIGHT:
Len Brown4be44fc2005-08-05 00:44:28 -0400507 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
508 "Received DEVICE CHECK LIGHT notification for device [%s]\n",
509 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 /* TBD: Exactly what does 'light' mean? */
511 break;
512
513 case ACPI_NOTIFY_FREQUENCY_MISMATCH:
Len Brown4be44fc2005-08-05 00:44:28 -0400514 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
515 "Received FREQUENCY MISMATCH notification for device [%s]\n",
516 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 /* TBD */
518 break;
519
520 case ACPI_NOTIFY_BUS_MODE_MISMATCH:
Len Brown4be44fc2005-08-05 00:44:28 -0400521 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
522 "Received BUS MODE MISMATCH notification for device [%s]\n",
523 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 /* TBD */
525 break;
526
527 case ACPI_NOTIFY_POWER_FAULT:
Len Brown4be44fc2005-08-05 00:44:28 -0400528 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
529 "Received POWER FAULT notification for device [%s]\n",
530 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 /* TBD */
532 break;
533
534 default:
Len Brown4be44fc2005-08-05 00:44:28 -0400535 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
536 "Received unknown/unsupported notification [%08x]\n",
537 type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 break;
539 }
540
541 return_VOID;
542}
543
544/* --------------------------------------------------------------------------
545 Initialization/Cleanup
546 -------------------------------------------------------------------------- */
547
Len Brown4be44fc2005-08-05 00:44:28 -0400548static int __init acpi_bus_init_irq(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549{
Len Brown4be44fc2005-08-05 00:44:28 -0400550 acpi_status status = AE_OK;
551 union acpi_object arg = { ACPI_TYPE_INTEGER };
552 struct acpi_object_list arg_list = { 1, &arg };
553 char *message = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555 ACPI_FUNCTION_TRACE("acpi_bus_init_irq");
556
557 /*
558 * Let the system know what interrupt model we are using by
559 * evaluating the \_PIC object, if exists.
560 */
561
562 switch (acpi_irq_model) {
563 case ACPI_IRQ_MODEL_PIC:
564 message = "PIC";
565 break;
566 case ACPI_IRQ_MODEL_IOAPIC:
567 message = "IOAPIC";
568 break;
569 case ACPI_IRQ_MODEL_IOSAPIC:
570 message = "IOSAPIC";
571 break;
572 default:
573 printk(KERN_WARNING PREFIX "Unknown interrupt routing model\n");
574 return_VALUE(-ENODEV);
575 }
576
577 printk(KERN_INFO PREFIX "Using %s for interrupt routing\n", message);
578
579 arg.integer.value = acpi_irq_model;
580
581 status = acpi_evaluate_object(NULL, "\\_PIC", &arg_list, NULL);
582 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400583 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PIC"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 return_VALUE(-ENODEV);
585 }
586
587 return_VALUE(0);
588}
589
Len Brown4be44fc2005-08-05 00:44:28 -0400590void __init acpi_early_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591{
Len Brown4be44fc2005-08-05 00:44:28 -0400592 acpi_status status = AE_OK;
593 struct acpi_buffer buffer = { sizeof(acpi_fadt), &acpi_fadt };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
595 ACPI_FUNCTION_TRACE("acpi_early_init");
596
597 if (acpi_disabled)
598 return_VOID;
599
Bob Moore616861242006-03-17 16:44:00 -0500600 printk(KERN_INFO PREFIX "Core revision %08x\n", ACPI_CA_VERSION);
601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 /* enable workarounds, unless strict ACPI spec. compliance */
603 if (!acpi_strict)
604 acpi_gbl_enable_interpreter_slack = TRUE;
605
606 status = acpi_initialize_subsystem();
607 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400608 printk(KERN_ERR PREFIX
609 "Unable to initialize the ACPI Interpreter\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 goto error0;
611 }
612
613 status = acpi_load_tables();
614 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400615 printk(KERN_ERR PREFIX
616 "Unable to load the System Description Tables\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 goto error0;
618 }
619
620 /*
621 * Get a separate copy of the FADT for use by other drivers.
622 */
Bob Mooreb229cf92006-04-21 17:15:00 -0400623 status = acpi_get_table(ACPI_TABLE_ID_FADT, 1, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 if (ACPI_FAILURE(status)) {
625 printk(KERN_ERR PREFIX "Unable to get the FADT\n");
626 goto error0;
627 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628#ifdef CONFIG_X86
629 if (!acpi_ioapic) {
630 extern acpi_interrupt_flags acpi_sci_flags;
631
632 /* compatible (0) means level (3) */
633 if (acpi_sci_flags.trigger == 0)
634 acpi_sci_flags.trigger = 3;
635
636 /* Set PIC-mode SCI trigger type */
Len Brown4be44fc2005-08-05 00:44:28 -0400637 acpi_pic_sci_set_trigger(acpi_fadt.sci_int,
638 acpi_sci_flags.trigger);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 } else {
640 extern int acpi_sci_override_gsi;
641 /*
642 * now that acpi_fadt is initialized,
643 * update it with result from INT_SRC_OVR parsing
644 */
645 acpi_fadt.sci_int = acpi_sci_override_gsi;
646 }
647#endif
648
Len Brown4be44fc2005-08-05 00:44:28 -0400649 status =
650 acpi_enable_subsystem(~
651 (ACPI_NO_HARDWARE_INIT |
652 ACPI_NO_ACPI_ENABLE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 if (ACPI_FAILURE(status)) {
654 printk(KERN_ERR PREFIX "Unable to enable ACPI\n");
655 goto error0;
656 }
657
658 return_VOID;
659
Len Brown4be44fc2005-08-05 00:44:28 -0400660 error0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 disable_acpi();
662 return_VOID;
663}
664
Len Brown4be44fc2005-08-05 00:44:28 -0400665static int __init acpi_bus_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
Len Brown4be44fc2005-08-05 00:44:28 -0400667 int result = 0;
668 acpi_status status = AE_OK;
669 extern acpi_status acpi_os_initialize1(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
671 ACPI_FUNCTION_TRACE("acpi_bus_init");
672
673 status = acpi_os_initialize1();
674
Len Brown4be44fc2005-08-05 00:44:28 -0400675 status =
676 acpi_enable_subsystem(ACPI_NO_HARDWARE_INIT | ACPI_NO_ACPI_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400678 printk(KERN_ERR PREFIX
679 "Unable to start the ACPI Interpreter\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 goto error1;
681 }
682
683 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400684 printk(KERN_ERR PREFIX
685 "Unable to initialize ACPI OS objects\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 goto error1;
687 }
688#ifdef CONFIG_ACPI_EC
689 /*
690 * ACPI 2.0 requires the EC driver to be loaded and work before
691 * the EC device is found in the namespace (i.e. before acpi_initialize_objects()
692 * is called).
693 *
694 * This is accomplished by looking for the ECDT table, and getting
695 * the EC parameters out of that.
696 */
697 status = acpi_ec_ecdt_probe();
698 /* Ignore result. Not having an ECDT is not fatal. */
699#endif
700
701 status = acpi_initialize_objects(ACPI_FULL_INITIALIZATION);
702 if (ACPI_FAILURE(status)) {
703 printk(KERN_ERR PREFIX "Unable to initialize ACPI objects\n");
704 goto error1;
705 }
706
707 printk(KERN_INFO PREFIX "Interpreter enabled\n");
708
709 /*
710 * Get the system interrupt model and evaluate \_PIC.
711 */
712 result = acpi_bus_init_irq();
713 if (result)
714 goto error1;
715
716 /*
717 * Register the for all standard device notifications.
718 */
Len Brown4be44fc2005-08-05 00:44:28 -0400719 status =
720 acpi_install_notify_handler(ACPI_ROOT_OBJECT, ACPI_SYSTEM_NOTIFY,
721 &acpi_bus_notify, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400723 printk(KERN_ERR PREFIX
724 "Unable to register for device notifications\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 goto error1;
726 }
727
728 /*
729 * Create the top ACPI proc directory
730 */
731 acpi_root_dir = proc_mkdir(ACPI_BUS_FILE_ROOT, NULL);
732
733 return_VALUE(0);
734
735 /* Mimic structured exception handling */
Len Brown4be44fc2005-08-05 00:44:28 -0400736 error1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 acpi_terminate();
738 return_VALUE(-ENODEV);
739}
740
Len Brown4be44fc2005-08-05 00:44:28 -0400741decl_subsys(acpi, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
Len Brown4be44fc2005-08-05 00:44:28 -0400743static int __init acpi_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744{
Len Brown4be44fc2005-08-05 00:44:28 -0400745 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
747 ACPI_FUNCTION_TRACE("acpi_init");
748
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 if (acpi_disabled) {
750 printk(KERN_INFO PREFIX "Interpreter disabled.\n");
751 return_VALUE(-ENODEV);
752 }
753
754 firmware_register(&acpi_subsys);
755
756 result = acpi_bus_init();
757
758 if (!result) {
Jeff Garzikbca73e42005-11-13 16:06:25 -0800759#ifdef CONFIG_PM_LEGACY
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 if (!PM_IS_ACTIVE())
761 pm_active = 1;
762 else {
Len Brown4be44fc2005-08-05 00:44:28 -0400763 printk(KERN_INFO PREFIX
764 "APM is already active, exiting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 disable_acpi();
766 result = -ENODEV;
767 }
768#endif
769 } else
770 disable_acpi();
771
772 return_VALUE(result);
773}
774
775subsys_initcall(acpi_init);