blob: fdee82d37b7dd04ffdecf8ec7b0105560da37d25 [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 Brownf52fd662007-02-12 22:42:12 -050042ACPI_MODULE_NAME("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
Len Brown4be44fc2005-08-05 00:44:28 -040047struct acpi_device *acpi_root;
48struct proc_dir_entry *acpi_root_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049EXPORT_SYMBOL(acpi_root_dir);
50
51#define STRUCT_TO_INT(s) (*((int*)&s))
52
53/* --------------------------------------------------------------------------
54 Device Management
55 -------------------------------------------------------------------------- */
56
Len Brown4be44fc2005-08-05 00:44:28 -040057int acpi_bus_get_device(acpi_handle handle, struct acpi_device **device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058{
Len Brown4be44fc2005-08-05 00:44:28 -040059 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -040063 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65 /* TBD: Support fixed-feature devices */
66
Len Brown4be44fc2005-08-05 00:44:28 -040067 status = acpi_get_data(handle, acpi_bus_data_handler, (void **)device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 if (ACPI_FAILURE(status) || !*device) {
Len Brown9805cb72006-07-25 13:30:57 -040069 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No context for object [%p]\n",
70 handle));
Patrick Mocheld550d982006-06-27 00:41:40 -040071 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 }
73
Patrick Mocheld550d982006-06-27 00:41:40 -040074 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075}
Len Brown4be44fc2005-08-05 00:44:28 -040076
Linus Torvalds1da177e2005-04-16 15:20:36 -070077EXPORT_SYMBOL(acpi_bus_get_device);
78
Len Brown4be44fc2005-08-05 00:44:28 -040079int acpi_bus_get_status(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
Len Brown4be44fc2005-08-05 00:44:28 -040081 acpi_status status = AE_OK;
82 unsigned long sta = 0;
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -040086 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88 /*
89 * Evaluate _STA if present.
90 */
91 if (device->flags.dynamic_status) {
Len Brown4be44fc2005-08-05 00:44:28 -040092 status =
93 acpi_evaluate_integer(device->handle, "_STA", NULL, &sta);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -040095 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -040096 STRUCT_TO_INT(device->status) = (int)sta;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 }
98
99 /*
100 * Otherwise we assume the status of our parent (unless we don't
101 * have one, in which case status is implied).
102 */
103 else if (device->parent)
104 device->status = device->parent->status;
105 else
Bjorn Helgaas0c0e8922007-04-25 14:20:58 -0400106 STRUCT_TO_INT(device->status) =
107 ACPI_STA_DEVICE_PRESENT | ACPI_STA_DEVICE_ENABLED |
108 ACPI_STA_DEVICE_UI | ACPI_STA_DEVICE_FUNCTIONING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
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 /*
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500152 * Get the device's power state either directly (via _PSC) or
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 * 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 Brown9805cb72006-07-25 13:30:57 -0400196 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device `[%s]' is not power manageable\n",
Greg Kroah-Hartman19c38de2007-09-12 15:06:57 -0700197 kobject_name(&device->dev.kobj)));
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 /*
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400201 * Get device's current power state
David Shaohua Lib9131002005-03-19 00:16:18 -0500202 */
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400203 acpi_bus_get_power(device->handle, &device->power.state);
Konstantin Karasyovb1028c52007-02-16 02:23:07 -0500204 if ((state == device->power.state) && !device->flags.force_power_state) {
205 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device is already at D%d\n",
206 state));
207 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 }
Konstantin Karasyovb1028c52007-02-16 02:23:07 -0500209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 if (!device->power.states[state].flags.valid) {
Len Browncece9292006-06-26 23:04:31 -0400211 printk(KERN_WARNING PREFIX "Device does not support D%d\n", state);
Patrick Mocheld550d982006-06-27 00:41:40 -0400212 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 }
214 if (device->parent && (state < device->parent->power.state)) {
Len Browncece9292006-06-26 23:04:31 -0400215 printk(KERN_WARNING PREFIX
Thomas Renningera6fc6722006-06-26 23:58:43 -0400216 "Cannot set device to a higher-powered"
Len Browncece9292006-06-26 23:04:31 -0400217 " state than parent\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400218 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 }
220
221 /*
222 * Transition Power
223 * ----------------
224 * On transitions to a high-powered state we first apply power (via
225 * power resources) then evalute _PSx. Conversly for transitions to
226 * a lower-powered state.
David Shaohua Lib9131002005-03-19 00:16:18 -0500227 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 if (state < device->power.state) {
229 if (device->power.flags.power_resources) {
230 result = acpi_power_transition(device, state);
231 if (result)
232 goto end;
233 }
234 if (device->power.states[state].flags.explicit_set) {
Len Brown4be44fc2005-08-05 00:44:28 -0400235 status = acpi_evaluate_object(device->handle,
236 object_name, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 if (ACPI_FAILURE(status)) {
238 result = -ENODEV;
239 goto end;
240 }
241 }
Len Brown4be44fc2005-08-05 00:44:28 -0400242 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 if (device->power.states[state].flags.explicit_set) {
Len Brown4be44fc2005-08-05 00:44:28 -0400244 status = acpi_evaluate_object(device->handle,
245 object_name, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 if (ACPI_FAILURE(status)) {
247 result = -ENODEV;
248 goto end;
249 }
250 }
251 if (device->power.flags.power_resources) {
252 result = acpi_power_transition(device, state);
253 if (result)
254 goto end;
255 }
256 }
257
Len Brown4be44fc2005-08-05 00:44:28 -0400258 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 if (result)
Len Browncece9292006-06-26 23:04:31 -0400260 printk(KERN_WARNING PREFIX
261 "Transitioning device [%s] to D%d\n",
262 device->pnp.bus_id, state);
Shaohua Li5e321322007-10-11 23:53:58 +0200263 else {
264 device->power.state = state;
Len Brown4be44fc2005-08-05 00:44:28 -0400265 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
266 "Device [%s] transitioned to D%d\n",
267 device->pnp.bus_id, state));
Shaohua Li5e321322007-10-11 23:53:58 +0200268 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Patrick Mocheld550d982006-06-27 00:41:40 -0400270 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271}
Len Brown4be44fc2005-08-05 00:44:28 -0400272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273EXPORT_SYMBOL(acpi_bus_set_power);
274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275/* --------------------------------------------------------------------------
276 Event Management
277 -------------------------------------------------------------------------- */
278
Len Brown14e04fb2007-08-23 15:20:26 -0400279#ifdef CONFIG_ACPI_PROC_EVENT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280static 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
Alexey Starikovskiy8db85d42007-09-26 19:43:16 +0400287int acpi_bus_generate_proc_event4(const char *device_class, const char *bus_id, u8 type, int data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
Alexey Starikovskiy8db85d42007-09-26 19:43:16 +0400289 struct acpi_bus_event *event;
Len Brown4be44fc2005-08-05 00:44:28 -0400290 unsigned long flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 /* drop event on the floor if no one's listening */
293 if (!event_is_open)
Patrick Mocheld550d982006-06-27 00:41:40 -0400294 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
296 event = kmalloc(sizeof(struct acpi_bus_event), GFP_ATOMIC);
297 if (!event)
Patrick Mocheld550d982006-06-27 00:41:40 -0400298 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Alexey Starikovskiy8db85d42007-09-26 19:43:16 +0400300 strcpy(event->device_class, device_class);
301 strcpy(event->bus_id, bus_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 event->type = type;
303 event->data = data;
304
305 spin_lock_irqsave(&acpi_bus_event_lock, flags);
306 list_add_tail(&event->node, &acpi_bus_event_list);
307 spin_unlock_irqrestore(&acpi_bus_event_lock, flags);
308
309 wake_up_interruptible(&acpi_bus_event_queue);
310
Patrick Mocheld550d982006-06-27 00:41:40 -0400311 return 0;
Alexey Starikovskiy8db85d42007-09-26 19:43:16 +0400312
313}
314
315EXPORT_SYMBOL_GPL(acpi_bus_generate_proc_event4);
316
317int acpi_bus_generate_proc_event(struct acpi_device *device, u8 type, int data)
318{
319 if (!device)
320 return -EINVAL;
321 return acpi_bus_generate_proc_event4(device->pnp.device_class,
322 device->pnp.bus_id, type, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323}
Len Brown4be44fc2005-08-05 00:44:28 -0400324
Len Brown14e04fb2007-08-23 15:20:26 -0400325EXPORT_SYMBOL(acpi_bus_generate_proc_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Len Brown4be44fc2005-08-05 00:44:28 -0400327int acpi_bus_receive_event(struct acpi_bus_event *event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
Len Brown4be44fc2005-08-05 00:44:28 -0400329 unsigned long flags = 0;
330 struct acpi_bus_event *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332 DECLARE_WAITQUEUE(wait, current);
333
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335 if (!event)
Patrick Mocheld550d982006-06-27 00:41:40 -0400336 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 if (list_empty(&acpi_bus_event_list)) {
339
340 set_current_state(TASK_INTERRUPTIBLE);
341 add_wait_queue(&acpi_bus_event_queue, &wait);
342
343 if (list_empty(&acpi_bus_event_list))
344 schedule();
345
346 remove_wait_queue(&acpi_bus_event_queue, &wait);
347 set_current_state(TASK_RUNNING);
348
349 if (signal_pending(current))
Patrick Mocheld550d982006-06-27 00:41:40 -0400350 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 }
352
353 spin_lock_irqsave(&acpi_bus_event_lock, flags);
Len Brown4be44fc2005-08-05 00:44:28 -0400354 entry =
355 list_entry(acpi_bus_event_list.next, struct acpi_bus_event, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 if (entry)
357 list_del(&entry->node);
358 spin_unlock_irqrestore(&acpi_bus_event_lock, flags);
359
360 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400361 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
363 memcpy(event, entry, sizeof(struct acpi_bus_event));
364
365 kfree(entry);
366
Patrick Mocheld550d982006-06-27 00:41:40 -0400367 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Len Brown4be44fc2005-08-05 00:44:28 -0400370EXPORT_SYMBOL(acpi_bus_receive_event);
Len Brown14e04fb2007-08-23 15:20:26 -0400371#endif /* CONFIG_ACPI_PROC_EVENT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
373/* --------------------------------------------------------------------------
374 Notification Handling
375 -------------------------------------------------------------------------- */
376
377static int
Len Brown4be44fc2005-08-05 00:44:28 -0400378acpi_bus_check_device(struct acpi_device *device, int *status_changed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
Len Brown4be44fc2005-08-05 00:44:28 -0400380 acpi_status status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 struct acpi_device_status old_status;
382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400385 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387 if (status_changed)
388 *status_changed = 0;
389
390 old_status = device->status;
391
392 /*
393 * Make sure this device's parent is present before we go about
394 * messing with the device.
395 */
396 if (device->parent && !device->parent->status.present) {
397 device->status = device->parent->status;
398 if (STRUCT_TO_INT(old_status) != STRUCT_TO_INT(device->status)) {
399 if (status_changed)
400 *status_changed = 1;
401 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400402 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
404
405 status = acpi_bus_get_status(device);
406 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400407 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409 if (STRUCT_TO_INT(old_status) == STRUCT_TO_INT(device->status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400410 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412 if (status_changed)
413 *status_changed = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 /*
416 * Device Insertion/Removal
417 */
418 if ((device->status.present) && !(old_status.present)) {
419 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device insertion detected\n"));
420 /* TBD: Handle device insertion */
Len Brown4be44fc2005-08-05 00:44:28 -0400421 } else if (!(device->status.present) && (old_status.present)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device removal detected\n"));
423 /* TBD: Handle device removal */
424 }
425
Patrick Mocheld550d982006-06-27 00:41:40 -0400426 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427}
428
Len Brown4be44fc2005-08-05 00:44:28 -0400429static int acpi_bus_check_scope(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430{
Len Brown4be44fc2005-08-05 00:44:28 -0400431 int result = 0;
432 int status_changed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
435 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400436 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438 /* Status Change? */
439 result = acpi_bus_check_device(device, &status_changed);
440 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400441 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
443 if (!status_changed)
Patrick Mocheld550d982006-06-27 00:41:40 -0400444 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 /*
447 * TBD: Enumerate child devices within this device's scope and
448 * run acpi_bus_check_device()'s on them.
449 */
450
Patrick Mocheld550d982006-06-27 00:41:40 -0400451 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452}
453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454/**
455 * acpi_bus_notify
456 * ---------------
457 * Callback for all 'system-level' device notifications (values 0x00-0x7F).
458 */
Len Brown4be44fc2005-08-05 00:44:28 -0400459static void acpi_bus_notify(acpi_handle handle, u32 type, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460{
Len Brown4be44fc2005-08-05 00:44:28 -0400461 int result = 0;
462 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465 if (acpi_bus_get_device(handle, &device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400466 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
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);
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500475 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 * 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);
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500486 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 * 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
Patrick Mocheld550d982006-06-27 00:41:40 -0400541 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542}
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500556 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 * Let the system know what interrupt model we are using by
558 * evaluating the \_PIC object, if exists.
559 */
560
561 switch (acpi_irq_model) {
562 case ACPI_IRQ_MODEL_PIC:
563 message = "PIC";
564 break;
565 case ACPI_IRQ_MODEL_IOAPIC:
566 message = "IOAPIC";
567 break;
568 case ACPI_IRQ_MODEL_IOSAPIC:
569 message = "IOSAPIC";
570 break;
John Keller3948ec92006-12-22 11:50:04 -0600571 case ACPI_IRQ_MODEL_PLATFORM:
572 message = "platform specific model";
573 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 default:
575 printk(KERN_WARNING PREFIX "Unknown interrupt routing model\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400576 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 }
578
579 printk(KERN_INFO PREFIX "Using %s for interrupt routing\n", message);
580
581 arg.integer.value = acpi_irq_model;
582
583 status = acpi_evaluate_object(NULL, "\\_PIC", &arg_list, NULL);
584 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400585 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PIC"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400586 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 }
588
Patrick Mocheld550d982006-06-27 00:41:40 -0400589 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590}
591
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300592acpi_native_uint acpi_gbl_permanent_mmap;
593
594
Len Brown4be44fc2005-08-05 00:44:28 -0400595void __init acpi_early_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596{
Len Brown4be44fc2005-08-05 00:44:28 -0400597 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
599 if (acpi_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -0400600 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Bob Moore616861242006-03-17 16:44:00 -0500602 printk(KERN_INFO PREFIX "Core revision %08x\n", ACPI_CA_VERSION);
603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 /* enable workarounds, unless strict ACPI spec. compliance */
605 if (!acpi_strict)
606 acpi_gbl_enable_interpreter_slack = TRUE;
607
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300608 acpi_gbl_permanent_mmap = 1;
609
610 status = acpi_reallocate_root_table();
611 if (ACPI_FAILURE(status)) {
612 printk(KERN_ERR PREFIX
613 "Unable to reallocate ACPI tables\n");
614 goto error0;
615 }
616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 status = acpi_initialize_subsystem();
618 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400619 printk(KERN_ERR PREFIX
620 "Unable to initialize the ACPI Interpreter\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 goto error0;
622 }
623
624 status = acpi_load_tables();
625 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400626 printk(KERN_ERR PREFIX
627 "Unable to load the System Description Tables\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 goto error0;
629 }
630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631#ifdef CONFIG_X86
632 if (!acpi_ioapic) {
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300633 extern u8 acpi_sci_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
635 /* compatible (0) means level (3) */
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300636 if (!(acpi_sci_flags & ACPI_MADT_TRIGGER_MASK)) {
637 acpi_sci_flags &= ~ACPI_MADT_TRIGGER_MASK;
638 acpi_sci_flags |= ACPI_MADT_TRIGGER_LEVEL;
639 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 /* Set PIC-mode SCI trigger type */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300641 acpi_pic_sci_set_trigger(acpi_gbl_FADT.sci_interrupt,
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300642 (acpi_sci_flags & ACPI_MADT_TRIGGER_MASK) >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 } else {
644 extern int acpi_sci_override_gsi;
645 /*
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300646 * now that acpi_gbl_FADT is initialized,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 * update it with result from INT_SRC_OVR parsing
648 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300649 acpi_gbl_FADT.sci_interrupt = acpi_sci_override_gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 }
651#endif
652
Len Brown4be44fc2005-08-05 00:44:28 -0400653 status =
654 acpi_enable_subsystem(~
655 (ACPI_NO_HARDWARE_INIT |
656 ACPI_NO_ACPI_ENABLE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 if (ACPI_FAILURE(status)) {
658 printk(KERN_ERR PREFIX "Unable to enable ACPI\n");
659 goto error0;
660 }
661
Patrick Mocheld550d982006-06-27 00:41:40 -0400662 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Len Brown4be44fc2005-08-05 00:44:28 -0400664 error0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 disable_acpi();
Patrick Mocheld550d982006-06-27 00:41:40 -0400666 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667}
668
Len Brown4be44fc2005-08-05 00:44:28 -0400669static int __init acpi_bus_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670{
Len Brown4be44fc2005-08-05 00:44:28 -0400671 int result = 0;
672 acpi_status status = AE_OK;
673 extern acpi_status acpi_os_initialize1(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
676 status = acpi_os_initialize1();
677
Len Brown4be44fc2005-08-05 00:44:28 -0400678 status =
679 acpi_enable_subsystem(ACPI_NO_HARDWARE_INIT | ACPI_NO_ACPI_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400681 printk(KERN_ERR PREFIX
682 "Unable to start the ACPI Interpreter\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 goto error1;
684 }
685
686 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400687 printk(KERN_ERR PREFIX
688 "Unable to initialize ACPI OS objects\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 goto error1;
690 }
691#ifdef CONFIG_ACPI_EC
692 /*
693 * ACPI 2.0 requires the EC driver to be loaded and work before
694 * the EC device is found in the namespace (i.e. before acpi_initialize_objects()
695 * is called).
696 *
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500697 * This is accomplished by looking for the ECDT table, and getting
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 * the EC parameters out of that.
699 */
700 status = acpi_ec_ecdt_probe();
701 /* Ignore result. Not having an ECDT is not fatal. */
702#endif
703
704 status = acpi_initialize_objects(ACPI_FULL_INITIALIZATION);
705 if (ACPI_FAILURE(status)) {
706 printk(KERN_ERR PREFIX "Unable to initialize ACPI objects\n");
707 goto error1;
708 }
709
710 printk(KERN_INFO PREFIX "Interpreter enabled\n");
711
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500712 /* Initialize sleep structures */
713 acpi_sleep_init();
714
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 /*
716 * Get the system interrupt model and evaluate \_PIC.
717 */
718 result = acpi_bus_init_irq();
719 if (result)
720 goto error1;
721
722 /*
723 * Register the for all standard device notifications.
724 */
Len Brown4be44fc2005-08-05 00:44:28 -0400725 status =
726 acpi_install_notify_handler(ACPI_ROOT_OBJECT, ACPI_SYSTEM_NOTIFY,
727 &acpi_bus_notify, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400729 printk(KERN_ERR PREFIX
730 "Unable to register for device notifications\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 goto error1;
732 }
733
734 /*
735 * Create the top ACPI proc directory
736 */
737 acpi_root_dir = proc_mkdir(ACPI_BUS_FILE_ROOT, NULL);
738
Patrick Mocheld550d982006-06-27 00:41:40 -0400739 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
741 /* Mimic structured exception handling */
Len Brown4be44fc2005-08-05 00:44:28 -0400742 error1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 acpi_terminate();
Patrick Mocheld550d982006-06-27 00:41:40 -0400744 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745}
746
Len Brown4be44fc2005-08-05 00:44:28 -0400747decl_subsys(acpi, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Len Brown4be44fc2005-08-05 00:44:28 -0400749static int __init acpi_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750{
Len Brown4be44fc2005-08-05 00:44:28 -0400751 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 if (acpi_disabled) {
755 printk(KERN_INFO PREFIX "Interpreter disabled.\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400756 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 }
758
Randy Dunlapd568df82006-07-12 01:47:00 -0400759 result = firmware_register(&acpi_subsys);
760 if (result < 0)
761 printk(KERN_WARNING "%s: firmware_register error: %d\n",
762 __FUNCTION__, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
764 result = acpi_bus_init();
765
766 if (!result) {
Jeff Garzikbca73e42005-11-13 16:06:25 -0800767#ifdef CONFIG_PM_LEGACY
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 if (!PM_IS_ACTIVE())
769 pm_active = 1;
770 else {
Len Brown4be44fc2005-08-05 00:44:28 -0400771 printk(KERN_INFO PREFIX
772 "APM is already active, exiting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 disable_acpi();
774 result = -ENODEV;
775 }
776#endif
777 } else
778 disable_acpi();
779
Patrick Mocheld550d982006-06-27 00:41:40 -0400780 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781}
782
783subsys_initcall(acpi_init);