blob: 7b77ee146a804bf2337e8b18594b3bd5c4902381 [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>
Randy Dunlapd568df82006-07-12 01:47:00 -040028#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/list.h>
30#include <linux/sched.h>
31#include <linux/pm.h>
Jeff Garzikbca73e42005-11-13 16:06:25 -080032#include <linux/pm_legacy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/device.h>
34#include <linux/proc_fs.h>
35#ifdef CONFIG_X86
36#include <asm/mpspec.h>
37#endif
38#include <acpi/acpi_bus.h>
39#include <acpi/acpi_drivers.h>
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#define _COMPONENT ACPI_BUS_COMPONENT
Len Brown4be44fc2005-08-05 00:44:28 -040042ACPI_MODULE_NAME("acpi_bus")
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#ifdef CONFIG_X86
44extern void __init acpi_pic_sci_set_trigger(unsigned int irq, u16 trigger);
45#endif
46
Bob Moore793c2382006-03-31 00:00:00 -050047struct fadt_descriptor acpi_fadt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048EXPORT_SYMBOL(acpi_fadt);
49
Len Brown4be44fc2005-08-05 00:44:28 -040050struct acpi_device *acpi_root;
51struct proc_dir_entry *acpi_root_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052EXPORT_SYMBOL(acpi_root_dir);
53
54#define STRUCT_TO_INT(s) (*((int*)&s))
55
56/* --------------------------------------------------------------------------
57 Device Management
58 -------------------------------------------------------------------------- */
59
Len Brown4be44fc2005-08-05 00:44:28 -040060int acpi_bus_get_device(acpi_handle handle, struct acpi_device **device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
Len Brown4be44fc2005-08-05 00:44:28 -040062 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -040066 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
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));
Patrick Mocheld550d982006-06-27 00:41:40 -040073 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 }
75
Patrick Mocheld550d982006-06-27 00:41:40 -040076 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077}
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
87 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -040088 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90 /*
91 * Evaluate _STA if present.
92 */
93 if (device->flags.dynamic_status) {
Len Brown4be44fc2005-08-05 00:44:28 -040094 status =
95 acpi_evaluate_integer(device->handle, "_STA", NULL, &sta);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -040097 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -040098 STRUCT_TO_INT(device->status) = (int)sta;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 }
100
101 /*
102 * Otherwise we assume the status of our parent (unless we don't
103 * have one, in which case status is implied).
104 */
105 else if (device->parent)
106 device->status = device->parent->status;
107 else
108 STRUCT_TO_INT(device->status) = 0x0F;
109
110 if (device->status.functional && !device->status.present) {
111 printk(KERN_WARNING PREFIX "Device [%s] status [%08x]: "
Len Brown4be44fc2005-08-05 00:44:28 -0400112 "functional but not present; setting present\n",
113 device->pnp.bus_id, (u32) STRUCT_TO_INT(device->status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 device->status.present = 1;
115 }
116
Len Brown4be44fc2005-08-05 00:44:28 -0400117 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] status [%08x]\n",
118 device->pnp.bus_id,
119 (u32) STRUCT_TO_INT(device->status)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Patrick Mocheld550d982006-06-27 00:41:40 -0400121 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Len Brown4be44fc2005-08-05 00:44:28 -0400124EXPORT_SYMBOL(acpi_bus_get_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126/* --------------------------------------------------------------------------
127 Power Management
128 -------------------------------------------------------------------------- */
129
Len Brown4be44fc2005-08-05 00:44:28 -0400130int acpi_bus_get_power(acpi_handle handle, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
Len Brown4be44fc2005-08-05 00:44:28 -0400132 int result = 0;
133 acpi_status status = 0;
134 struct acpi_device *device = NULL;
135 unsigned long psc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138 result = acpi_bus_get_device(handle, &device);
139 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400140 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142 *state = ACPI_STATE_UNKNOWN;
143
144 if (!device->flags.power_manageable) {
145 /* TBD: Non-recursive algorithm for walking up hierarchy */
146 if (device->parent)
147 *state = device->parent->power.state;
148 else
149 *state = ACPI_STATE_D0;
Len Brown4be44fc2005-08-05 00:44:28 -0400150 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 /*
152 * Get the device's power state either directly (via _PSC) or
153 * indirectly (via power resources).
154 */
155 if (device->power.flags.explicit_get) {
Len Brown4be44fc2005-08-05 00:44:28 -0400156 status = acpi_evaluate_integer(device->handle, "_PSC",
157 NULL, &psc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400159 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400160 device->power.state = (int)psc;
161 } else if (device->power.flags.power_resources) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 result = acpi_power_get_inferred_state(device);
163 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400164 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 }
166
167 *state = device->power.state;
168 }
169
170 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] power state is D%d\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400171 device->pnp.bus_id, device->power.state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Patrick Mocheld550d982006-06-27 00:41:40 -0400173 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
Len Brown4be44fc2005-08-05 00:44:28 -0400175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176EXPORT_SYMBOL(acpi_bus_get_power);
177
Len Brown4be44fc2005-08-05 00:44:28 -0400178int acpi_bus_set_power(acpi_handle handle, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
Len Brown4be44fc2005-08-05 00:44:28 -0400180 int result = 0;
181 acpi_status status = AE_OK;
182 struct acpi_device *device = NULL;
183 char object_name[5] = { '_', 'P', 'S', '0' + state, '\0' };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 result = acpi_bus_get_device(handle, &device);
187 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400188 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
190 if ((state < ACPI_STATE_D0) || (state > ACPI_STATE_D3))
Patrick Mocheld550d982006-06-27 00:41:40 -0400191 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193 /* Make sure this is a valid target state */
194
195 if (!device->flags.power_manageable) {
Len Brownaf4f9492006-07-09 16:33:26 -0400196 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device `[%s]' is not power manageable",
197 device->kobj.name));
Patrick Mocheld550d982006-06-27 00:41:40 -0400198 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 }
David Shaohua Lib9131002005-03-19 00:16:18 -0500200 /*
201 * Get device's current power state if it's unknown
202 * This means device power state isn't initialized or previous setting failed
203 */
Konstantin Karasyov0feabb02006-05-08 00:00:00 -0400204 if (!device->flags.force_power_state) {
205 if (device->power.state == ACPI_STATE_UNKNOWN)
206 acpi_bus_get_power(device->handle, &device->power.state);
207 if (state == device->power.state) {
208 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device is already at D%d\n",
209 state));
Patrick Mocheld550d982006-06-27 00:41:40 -0400210 return 0;
Konstantin Karasyov0feabb02006-05-08 00:00:00 -0400211 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 }
213 if (!device->power.states[state].flags.valid) {
Len Browncece9292006-06-26 23:04:31 -0400214 printk(KERN_WARNING PREFIX "Device does not support D%d\n", state);
Patrick Mocheld550d982006-06-27 00:41:40 -0400215 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 }
217 if (device->parent && (state < device->parent->power.state)) {
Len Browncece9292006-06-26 23:04:31 -0400218 printk(KERN_WARNING PREFIX
Thomas Renningera6fc6722006-06-26 23:58:43 -0400219 "Cannot set device to a higher-powered"
Len Browncece9292006-06-26 23:04:31 -0400220 " state than parent\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400221 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 }
223
224 /*
225 * Transition Power
226 * ----------------
227 * On transitions to a high-powered state we first apply power (via
228 * power resources) then evalute _PSx. Conversly for transitions to
229 * a lower-powered state.
David Shaohua Lib9131002005-03-19 00:16:18 -0500230 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 if (state < device->power.state) {
232 if (device->power.flags.power_resources) {
233 result = acpi_power_transition(device, state);
234 if (result)
235 goto end;
236 }
237 if (device->power.states[state].flags.explicit_set) {
Len Brown4be44fc2005-08-05 00:44:28 -0400238 status = acpi_evaluate_object(device->handle,
239 object_name, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 if (ACPI_FAILURE(status)) {
241 result = -ENODEV;
242 goto end;
243 }
244 }
Len Brown4be44fc2005-08-05 00:44:28 -0400245 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 if (device->power.states[state].flags.explicit_set) {
Len Brown4be44fc2005-08-05 00:44:28 -0400247 status = acpi_evaluate_object(device->handle,
248 object_name, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 if (ACPI_FAILURE(status)) {
250 result = -ENODEV;
251 goto end;
252 }
253 }
254 if (device->power.flags.power_resources) {
255 result = acpi_power_transition(device, state);
256 if (result)
257 goto end;
258 }
259 }
260
Len Brown4be44fc2005-08-05 00:44:28 -0400261 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 if (result)
Len Browncece9292006-06-26 23:04:31 -0400263 printk(KERN_WARNING PREFIX
264 "Transitioning device [%s] to D%d\n",
265 device->pnp.bus_id, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 else
Len Brown4be44fc2005-08-05 00:44:28 -0400267 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
268 "Device [%s] transitioned to D%d\n",
269 device->pnp.bus_id, state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Patrick Mocheld550d982006-06-27 00:41:40 -0400271 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272}
Len Brown4be44fc2005-08-05 00:44:28 -0400273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274EXPORT_SYMBOL(acpi_bus_set_power);
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276/* --------------------------------------------------------------------------
277 Event Management
278 -------------------------------------------------------------------------- */
279
280static DEFINE_SPINLOCK(acpi_bus_event_lock);
281
282LIST_HEAD(acpi_bus_event_list);
283DECLARE_WAIT_QUEUE_HEAD(acpi_bus_event_queue);
284
Len Brown4be44fc2005-08-05 00:44:28 -0400285extern int event_is_open;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Len Brown4be44fc2005-08-05 00:44:28 -0400287int acpi_bus_generate_event(struct acpi_device *device, u8 type, int data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
Len Brown4be44fc2005-08-05 00:44:28 -0400289 struct acpi_bus_event *event = NULL;
290 unsigned long flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400294 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
296 /* drop event on the floor if no one's listening */
297 if (!event_is_open)
Patrick Mocheld550d982006-06-27 00:41:40 -0400298 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300 event = kmalloc(sizeof(struct acpi_bus_event), GFP_ATOMIC);
301 if (!event)
Patrick Mocheld550d982006-06-27 00:41:40 -0400302 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304 strcpy(event->device_class, device->pnp.device_class);
305 strcpy(event->bus_id, device->pnp.bus_id);
306 event->type = type;
307 event->data = data;
308
309 spin_lock_irqsave(&acpi_bus_event_lock, flags);
310 list_add_tail(&event->node, &acpi_bus_event_list);
311 spin_unlock_irqrestore(&acpi_bus_event_lock, flags);
312
313 wake_up_interruptible(&acpi_bus_event_queue);
314
Patrick Mocheld550d982006-06-27 00:41:40 -0400315 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
Len Brown4be44fc2005-08-05 00:44:28 -0400317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318EXPORT_SYMBOL(acpi_bus_generate_event);
319
Len Brown4be44fc2005-08-05 00:44:28 -0400320int acpi_bus_receive_event(struct acpi_bus_event *event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
Len Brown4be44fc2005-08-05 00:44:28 -0400322 unsigned long flags = 0;
323 struct acpi_bus_event *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
325 DECLARE_WAITQUEUE(wait, current);
326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 if (!event)
Patrick Mocheld550d982006-06-27 00:41:40 -0400329 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331 if (list_empty(&acpi_bus_event_list)) {
332
333 set_current_state(TASK_INTERRUPTIBLE);
334 add_wait_queue(&acpi_bus_event_queue, &wait);
335
336 if (list_empty(&acpi_bus_event_list))
337 schedule();
338
339 remove_wait_queue(&acpi_bus_event_queue, &wait);
340 set_current_state(TASK_RUNNING);
341
342 if (signal_pending(current))
Patrick Mocheld550d982006-06-27 00:41:40 -0400343 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 }
345
346 spin_lock_irqsave(&acpi_bus_event_lock, flags);
Len Brown4be44fc2005-08-05 00:44:28 -0400347 entry =
348 list_entry(acpi_bus_event_list.next, struct acpi_bus_event, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 if (entry)
350 list_del(&entry->node);
351 spin_unlock_irqrestore(&acpi_bus_event_lock, flags);
352
353 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400354 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356 memcpy(event, entry, sizeof(struct acpi_bus_event));
357
358 kfree(entry);
359
Patrick Mocheld550d982006-06-27 00:41:40 -0400360 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Len Brown4be44fc2005-08-05 00:44:28 -0400363EXPORT_SYMBOL(acpi_bus_receive_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365/* --------------------------------------------------------------------------
366 Notification Handling
367 -------------------------------------------------------------------------- */
368
369static int
Len Brown4be44fc2005-08-05 00:44:28 -0400370acpi_bus_check_device(struct acpi_device *device, int *status_changed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
Len Brown4be44fc2005-08-05 00:44:28 -0400372 acpi_status status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 struct acpi_device_status old_status;
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
376 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400377 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379 if (status_changed)
380 *status_changed = 0;
381
382 old_status = device->status;
383
384 /*
385 * Make sure this device's parent is present before we go about
386 * messing with the device.
387 */
388 if (device->parent && !device->parent->status.present) {
389 device->status = device->parent->status;
390 if (STRUCT_TO_INT(old_status) != STRUCT_TO_INT(device->status)) {
391 if (status_changed)
392 *status_changed = 1;
393 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400394 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 }
396
397 status = acpi_bus_get_status(device);
398 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400399 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401 if (STRUCT_TO_INT(old_status) == STRUCT_TO_INT(device->status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400402 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404 if (status_changed)
405 *status_changed = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 /*
408 * Device Insertion/Removal
409 */
410 if ((device->status.present) && !(old_status.present)) {
411 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device insertion detected\n"));
412 /* TBD: Handle device insertion */
Len Brown4be44fc2005-08-05 00:44:28 -0400413 } else if (!(device->status.present) && (old_status.present)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device removal detected\n"));
415 /* TBD: Handle device removal */
416 }
417
Patrick Mocheld550d982006-06-27 00:41:40 -0400418 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
420
Len Brown4be44fc2005-08-05 00:44:28 -0400421static int acpi_bus_check_scope(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
Len Brown4be44fc2005-08-05 00:44:28 -0400423 int result = 0;
424 int status_changed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400428 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430 /* Status Change? */
431 result = acpi_bus_check_device(device, &status_changed);
432 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400433 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
435 if (!status_changed)
Patrick Mocheld550d982006-06-27 00:41:40 -0400436 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438 /*
439 * TBD: Enumerate child devices within this device's scope and
440 * run acpi_bus_check_device()'s on them.
441 */
442
Patrick Mocheld550d982006-06-27 00:41:40 -0400443 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444}
445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446/**
447 * acpi_bus_notify
448 * ---------------
449 * Callback for all 'system-level' device notifications (values 0x00-0x7F).
450 */
Len Brown4be44fc2005-08-05 00:44:28 -0400451static void acpi_bus_notify(acpi_handle handle, u32 type, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
Len Brown4be44fc2005-08-05 00:44:28 -0400453 int result = 0;
454 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
457 if (acpi_bus_get_device(handle, &device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400458 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
460 switch (type) {
461
462 case ACPI_NOTIFY_BUS_CHECK:
Len Brown4be44fc2005-08-05 00:44:28 -0400463 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
464 "Received BUS CHECK notification for device [%s]\n",
465 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 result = acpi_bus_check_scope(device);
467 /*
468 * TBD: We'll need to outsource certain events to non-ACPI
Len Brown4be44fc2005-08-05 00:44:28 -0400469 * drivers via the device manager (device.c).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 */
471 break;
472
473 case ACPI_NOTIFY_DEVICE_CHECK:
Len Brown4be44fc2005-08-05 00:44:28 -0400474 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
475 "Received DEVICE CHECK notification for device [%s]\n",
476 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 result = acpi_bus_check_device(device, NULL);
478 /*
479 * TBD: We'll need to outsource certain events to non-ACPI
Len Brown4be44fc2005-08-05 00:44:28 -0400480 * drivers via the device manager (device.c).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 */
482 break;
483
484 case ACPI_NOTIFY_DEVICE_WAKE:
Len Brown4be44fc2005-08-05 00:44:28 -0400485 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
486 "Received DEVICE WAKE notification for device [%s]\n",
487 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 /* TBD */
489 break;
490
491 case ACPI_NOTIFY_EJECT_REQUEST:
Len Brown4be44fc2005-08-05 00:44:28 -0400492 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
493 "Received EJECT REQUEST notification for device [%s]\n",
494 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 /* TBD */
496 break;
497
498 case ACPI_NOTIFY_DEVICE_CHECK_LIGHT:
Len Brown4be44fc2005-08-05 00:44:28 -0400499 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
500 "Received DEVICE CHECK LIGHT notification for device [%s]\n",
501 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 /* TBD: Exactly what does 'light' mean? */
503 break;
504
505 case ACPI_NOTIFY_FREQUENCY_MISMATCH:
Len Brown4be44fc2005-08-05 00:44:28 -0400506 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
507 "Received FREQUENCY MISMATCH notification for device [%s]\n",
508 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 /* TBD */
510 break;
511
512 case ACPI_NOTIFY_BUS_MODE_MISMATCH:
Len Brown4be44fc2005-08-05 00:44:28 -0400513 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
514 "Received BUS MODE MISMATCH notification for device [%s]\n",
515 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 /* TBD */
517 break;
518
519 case ACPI_NOTIFY_POWER_FAULT:
Len Brown4be44fc2005-08-05 00:44:28 -0400520 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
521 "Received POWER FAULT notification for device [%s]\n",
522 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 /* TBD */
524 break;
525
526 default:
Len Brown4be44fc2005-08-05 00:44:28 -0400527 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
528 "Received unknown/unsupported notification [%08x]\n",
529 type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 break;
531 }
532
Patrick Mocheld550d982006-06-27 00:41:40 -0400533 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
535
536/* --------------------------------------------------------------------------
537 Initialization/Cleanup
538 -------------------------------------------------------------------------- */
539
Len Brown4be44fc2005-08-05 00:44:28 -0400540static int __init acpi_bus_init_irq(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541{
Len Brown4be44fc2005-08-05 00:44:28 -0400542 acpi_status status = AE_OK;
543 union acpi_object arg = { ACPI_TYPE_INTEGER };
544 struct acpi_object_list arg_list = { 1, &arg };
545 char *message = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
548 /*
549 * Let the system know what interrupt model we are using by
550 * evaluating the \_PIC object, if exists.
551 */
552
553 switch (acpi_irq_model) {
554 case ACPI_IRQ_MODEL_PIC:
555 message = "PIC";
556 break;
557 case ACPI_IRQ_MODEL_IOAPIC:
558 message = "IOAPIC";
559 break;
560 case ACPI_IRQ_MODEL_IOSAPIC:
561 message = "IOSAPIC";
562 break;
563 default:
564 printk(KERN_WARNING PREFIX "Unknown interrupt routing model\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400565 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 }
567
568 printk(KERN_INFO PREFIX "Using %s for interrupt routing\n", message);
569
570 arg.integer.value = acpi_irq_model;
571
572 status = acpi_evaluate_object(NULL, "\\_PIC", &arg_list, NULL);
573 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400574 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PIC"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400575 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 }
577
Patrick Mocheld550d982006-06-27 00:41:40 -0400578 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579}
580
Len Brown4be44fc2005-08-05 00:44:28 -0400581void __init acpi_early_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582{
Len Brown4be44fc2005-08-05 00:44:28 -0400583 acpi_status status = AE_OK;
584 struct acpi_buffer buffer = { sizeof(acpi_fadt), &acpi_fadt };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
587 if (acpi_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -0400588 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Bob Moore616861242006-03-17 16:44:00 -0500590 printk(KERN_INFO PREFIX "Core revision %08x\n", ACPI_CA_VERSION);
591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 /* enable workarounds, unless strict ACPI spec. compliance */
593 if (!acpi_strict)
594 acpi_gbl_enable_interpreter_slack = TRUE;
595
596 status = acpi_initialize_subsystem();
597 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400598 printk(KERN_ERR PREFIX
599 "Unable to initialize the ACPI Interpreter\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 goto error0;
601 }
602
603 status = acpi_load_tables();
604 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400605 printk(KERN_ERR PREFIX
606 "Unable to load the System Description Tables\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 goto error0;
608 }
609
610 /*
611 * Get a separate copy of the FADT for use by other drivers.
612 */
Bob Mooreb229cf92006-04-21 17:15:00 -0400613 status = acpi_get_table(ACPI_TABLE_ID_FADT, 1, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 if (ACPI_FAILURE(status)) {
615 printk(KERN_ERR PREFIX "Unable to get the FADT\n");
616 goto error0;
617 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618#ifdef CONFIG_X86
619 if (!acpi_ioapic) {
620 extern acpi_interrupt_flags acpi_sci_flags;
621
622 /* compatible (0) means level (3) */
623 if (acpi_sci_flags.trigger == 0)
624 acpi_sci_flags.trigger = 3;
625
626 /* Set PIC-mode SCI trigger type */
Len Brown4be44fc2005-08-05 00:44:28 -0400627 acpi_pic_sci_set_trigger(acpi_fadt.sci_int,
628 acpi_sci_flags.trigger);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 } else {
630 extern int acpi_sci_override_gsi;
631 /*
632 * now that acpi_fadt is initialized,
633 * update it with result from INT_SRC_OVR parsing
634 */
635 acpi_fadt.sci_int = acpi_sci_override_gsi;
636 }
637#endif
638
Len Brown4be44fc2005-08-05 00:44:28 -0400639 status =
640 acpi_enable_subsystem(~
641 (ACPI_NO_HARDWARE_INIT |
642 ACPI_NO_ACPI_ENABLE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 if (ACPI_FAILURE(status)) {
644 printk(KERN_ERR PREFIX "Unable to enable ACPI\n");
645 goto error0;
646 }
647
Patrick Mocheld550d982006-06-27 00:41:40 -0400648 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Len Brown4be44fc2005-08-05 00:44:28 -0400650 error0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 disable_acpi();
Patrick Mocheld550d982006-06-27 00:41:40 -0400652 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653}
654
Len Brown4be44fc2005-08-05 00:44:28 -0400655static int __init acpi_bus_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656{
Len Brown4be44fc2005-08-05 00:44:28 -0400657 int result = 0;
658 acpi_status status = AE_OK;
659 extern acpi_status acpi_os_initialize1(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
662 status = acpi_os_initialize1();
663
Len Brown4be44fc2005-08-05 00:44:28 -0400664 status =
665 acpi_enable_subsystem(ACPI_NO_HARDWARE_INIT | ACPI_NO_ACPI_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400667 printk(KERN_ERR PREFIX
668 "Unable to start the ACPI Interpreter\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 goto error1;
670 }
671
672 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400673 printk(KERN_ERR PREFIX
674 "Unable to initialize ACPI OS objects\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 goto error1;
676 }
677#ifdef CONFIG_ACPI_EC
678 /*
679 * ACPI 2.0 requires the EC driver to be loaded and work before
680 * the EC device is found in the namespace (i.e. before acpi_initialize_objects()
681 * is called).
682 *
683 * This is accomplished by looking for the ECDT table, and getting
684 * the EC parameters out of that.
685 */
686 status = acpi_ec_ecdt_probe();
687 /* Ignore result. Not having an ECDT is not fatal. */
688#endif
689
690 status = acpi_initialize_objects(ACPI_FULL_INITIALIZATION);
691 if (ACPI_FAILURE(status)) {
692 printk(KERN_ERR PREFIX "Unable to initialize ACPI objects\n");
693 goto error1;
694 }
695
696 printk(KERN_INFO PREFIX "Interpreter enabled\n");
697
698 /*
699 * Get the system interrupt model and evaluate \_PIC.
700 */
701 result = acpi_bus_init_irq();
702 if (result)
703 goto error1;
704
705 /*
706 * Register the for all standard device notifications.
707 */
Len Brown4be44fc2005-08-05 00:44:28 -0400708 status =
709 acpi_install_notify_handler(ACPI_ROOT_OBJECT, ACPI_SYSTEM_NOTIFY,
710 &acpi_bus_notify, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400712 printk(KERN_ERR PREFIX
713 "Unable to register for device notifications\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 goto error1;
715 }
716
717 /*
718 * Create the top ACPI proc directory
719 */
720 acpi_root_dir = proc_mkdir(ACPI_BUS_FILE_ROOT, NULL);
721
Patrick Mocheld550d982006-06-27 00:41:40 -0400722 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
724 /* Mimic structured exception handling */
Len Brown4be44fc2005-08-05 00:44:28 -0400725 error1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 acpi_terminate();
Patrick Mocheld550d982006-06-27 00:41:40 -0400727 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728}
729
Len Brown4be44fc2005-08-05 00:44:28 -0400730decl_subsys(acpi, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Len Brown4be44fc2005-08-05 00:44:28 -0400732static int __init acpi_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
Len Brown4be44fc2005-08-05 00:44:28 -0400734 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 if (acpi_disabled) {
738 printk(KERN_INFO PREFIX "Interpreter disabled.\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400739 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 }
741
Randy Dunlapd568df82006-07-12 01:47:00 -0400742 result = firmware_register(&acpi_subsys);
743 if (result < 0)
744 printk(KERN_WARNING "%s: firmware_register error: %d\n",
745 __FUNCTION__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
747 result = acpi_bus_init();
748
749 if (!result) {
Jeff Garzikbca73e42005-11-13 16:06:25 -0800750#ifdef CONFIG_PM_LEGACY
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 if (!PM_IS_ACTIVE())
752 pm_active = 1;
753 else {
Len Brown4be44fc2005-08-05 00:44:28 -0400754 printk(KERN_INFO PREFIX
755 "APM is already active, exiting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 disable_acpi();
757 result = -ENODEV;
758 }
759#endif
760 } else
761 disable_acpi();
762
Patrick Mocheld550d982006-06-27 00:41:40 -0400763 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764}
765
766subsys_initcall(acpi_init);