blob: 8b0d4b7d188a4b2cae701f50459cd80f39fd4a63 [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>
32#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 Brownf52fd662007-02-12 22:42:12 -050041ACPI_MODULE_NAME("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
Len Brown4be44fc2005-08-05 00:44:28 -040046struct acpi_device *acpi_root;
47struct proc_dir_entry *acpi_root_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048EXPORT_SYMBOL(acpi_root_dir);
49
50#define STRUCT_TO_INT(s) (*((int*)&s))
51
52/* --------------------------------------------------------------------------
53 Device Management
54 -------------------------------------------------------------------------- */
55
Len Brown4be44fc2005-08-05 00:44:28 -040056int acpi_bus_get_device(acpi_handle handle, struct acpi_device **device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057{
Len Brown4be44fc2005-08-05 00:44:28 -040058 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -040062 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64 /* TBD: Support fixed-feature devices */
65
Len Brown4be44fc2005-08-05 00:44:28 -040066 status = acpi_get_data(handle, acpi_bus_data_handler, (void **)device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 if (ACPI_FAILURE(status) || !*device) {
Len Brown9805cb72006-07-25 13:30:57 -040068 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No context for object [%p]\n",
69 handle));
Patrick Mocheld550d982006-06-27 00:41:40 -040070 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 }
72
Patrick Mocheld550d982006-06-27 00:41:40 -040073 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074}
Len Brown4be44fc2005-08-05 00:44:28 -040075
Linus Torvalds1da177e2005-04-16 15:20:36 -070076EXPORT_SYMBOL(acpi_bus_get_device);
77
Len Brown4be44fc2005-08-05 00:44:28 -040078int acpi_bus_get_status(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
Len Brown4be44fc2005-08-05 00:44:28 -040080 acpi_status status = AE_OK;
81 unsigned long sta = 0;
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -040085 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87 /*
88 * Evaluate _STA if present.
89 */
90 if (device->flags.dynamic_status) {
Len Brown4be44fc2005-08-05 00:44:28 -040091 status =
92 acpi_evaluate_integer(device->handle, "_STA", NULL, &sta);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -040094 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -040095 STRUCT_TO_INT(device->status) = (int)sta;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 }
97
98 /*
99 * Otherwise we assume the status of our parent (unless we don't
100 * have one, in which case status is implied).
101 */
102 else if (device->parent)
103 device->status = device->parent->status;
104 else
Bjorn Helgaas0c0e8922007-04-25 14:20:58 -0400105 STRUCT_TO_INT(device->status) =
106 ACPI_STA_DEVICE_PRESENT | ACPI_STA_DEVICE_ENABLED |
107 ACPI_STA_DEVICE_UI | ACPI_STA_DEVICE_FUNCTIONING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109 if (device->status.functional && !device->status.present) {
110 printk(KERN_WARNING PREFIX "Device [%s] status [%08x]: "
Len Brown4be44fc2005-08-05 00:44:28 -0400111 "functional but not present; setting present\n",
112 device->pnp.bus_id, (u32) STRUCT_TO_INT(device->status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 device->status.present = 1;
114 }
115
Len Brown4be44fc2005-08-05 00:44:28 -0400116 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] status [%08x]\n",
117 device->pnp.bus_id,
118 (u32) STRUCT_TO_INT(device->status)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Patrick Mocheld550d982006-06-27 00:41:40 -0400120 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Len Brown4be44fc2005-08-05 00:44:28 -0400123EXPORT_SYMBOL(acpi_bus_get_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Zhang Rui20733932008-01-17 15:51:21 +0800125void acpi_bus_private_data_handler(acpi_handle handle,
126 u32 function, void *context)
127{
128 return;
129}
130EXPORT_SYMBOL(acpi_bus_private_data_handler);
131
132int acpi_bus_get_private_data(acpi_handle handle, void **data)
133{
134 acpi_status status = AE_OK;
135
136 if (!*data)
137 return -EINVAL;
138
139 status = acpi_get_data(handle, acpi_bus_private_data_handler, data);
140 if (ACPI_FAILURE(status) || !*data) {
141 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No context for object [%p]\n",
142 handle));
143 return -ENODEV;
144 }
145
146 return 0;
147}
148EXPORT_SYMBOL(acpi_bus_get_private_data);
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150/* --------------------------------------------------------------------------
151 Power Management
152 -------------------------------------------------------------------------- */
153
Len Brown4be44fc2005-08-05 00:44:28 -0400154int acpi_bus_get_power(acpi_handle handle, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
Len Brown4be44fc2005-08-05 00:44:28 -0400156 int result = 0;
157 acpi_status status = 0;
158 struct acpi_device *device = NULL;
159 unsigned long psc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162 result = acpi_bus_get_device(handle, &device);
163 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400164 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 *state = ACPI_STATE_UNKNOWN;
167
168 if (!device->flags.power_manageable) {
169 /* TBD: Non-recursive algorithm for walking up hierarchy */
170 if (device->parent)
171 *state = device->parent->power.state;
172 else
173 *state = ACPI_STATE_D0;
Len Brown4be44fc2005-08-05 00:44:28 -0400174 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 /*
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500176 * Get the device's power state either directly (via _PSC) or
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 * indirectly (via power resources).
178 */
179 if (device->power.flags.explicit_get) {
Len Brown4be44fc2005-08-05 00:44:28 -0400180 status = acpi_evaluate_integer(device->handle, "_PSC",
181 NULL, &psc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400183 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400184 device->power.state = (int)psc;
185 } else if (device->power.flags.power_resources) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 result = acpi_power_get_inferred_state(device);
187 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400188 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
190
191 *state = device->power.state;
192 }
193
194 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] power state is D%d\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400195 device->pnp.bus_id, device->power.state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Patrick Mocheld550d982006-06-27 00:41:40 -0400197 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198}
Len Brown4be44fc2005-08-05 00:44:28 -0400199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200EXPORT_SYMBOL(acpi_bus_get_power);
201
Len Brown4be44fc2005-08-05 00:44:28 -0400202int acpi_bus_set_power(acpi_handle handle, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
Len Brown4be44fc2005-08-05 00:44:28 -0400204 int result = 0;
205 acpi_status status = AE_OK;
206 struct acpi_device *device = NULL;
207 char object_name[5] = { '_', 'P', 'S', '0' + state, '\0' };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 result = acpi_bus_get_device(handle, &device);
211 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400212 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214 if ((state < ACPI_STATE_D0) || (state > ACPI_STATE_D3))
Patrick Mocheld550d982006-06-27 00:41:40 -0400215 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 /* Make sure this is a valid target state */
218
219 if (!device->flags.power_manageable) {
Len Brown9805cb72006-07-25 13:30:57 -0400220 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device `[%s]' is not power manageable\n",
Greg Kroah-Hartman19c38de2007-09-12 15:06:57 -0700221 kobject_name(&device->dev.kobj)));
Patrick Mocheld550d982006-06-27 00:41:40 -0400222 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 }
David Shaohua Lib9131002005-03-19 00:16:18 -0500224 /*
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400225 * Get device's current power state
David Shaohua Lib9131002005-03-19 00:16:18 -0500226 */
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400227 acpi_bus_get_power(device->handle, &device->power.state);
Len Brownec683732008-01-23 22:41:20 -0500228 if ((state == device->power.state) && !device->flags.force_power_state) {
Konstantin Karasyovb1028c52007-02-16 02:23:07 -0500229 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device is already at D%d\n",
230 state));
231 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 }
Konstantin Karasyovb1028c52007-02-16 02:23:07 -0500233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 if (!device->power.states[state].flags.valid) {
Len Browncece9292006-06-26 23:04:31 -0400235 printk(KERN_WARNING PREFIX "Device does not support D%d\n", state);
Patrick Mocheld550d982006-06-27 00:41:40 -0400236 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 }
238 if (device->parent && (state < device->parent->power.state)) {
Len Browncece9292006-06-26 23:04:31 -0400239 printk(KERN_WARNING PREFIX
Thomas Renningera6fc6722006-06-26 23:58:43 -0400240 "Cannot set device to a higher-powered"
Len Browncece9292006-06-26 23:04:31 -0400241 " state than parent\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400242 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 }
244
245 /*
246 * Transition Power
247 * ----------------
248 * On transitions to a high-powered state we first apply power (via
249 * power resources) then evalute _PSx. Conversly for transitions to
250 * a lower-powered state.
David Shaohua Lib9131002005-03-19 00:16:18 -0500251 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 if (state < device->power.state) {
253 if (device->power.flags.power_resources) {
254 result = acpi_power_transition(device, state);
255 if (result)
256 goto end;
257 }
258 if (device->power.states[state].flags.explicit_set) {
Len Brown4be44fc2005-08-05 00:44:28 -0400259 status = acpi_evaluate_object(device->handle,
260 object_name, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 if (ACPI_FAILURE(status)) {
262 result = -ENODEV;
263 goto end;
264 }
265 }
Len Brown4be44fc2005-08-05 00:44:28 -0400266 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 if (device->power.states[state].flags.explicit_set) {
Len Brown4be44fc2005-08-05 00:44:28 -0400268 status = acpi_evaluate_object(device->handle,
269 object_name, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 if (ACPI_FAILURE(status)) {
271 result = -ENODEV;
272 goto end;
273 }
274 }
275 if (device->power.flags.power_resources) {
276 result = acpi_power_transition(device, state);
277 if (result)
278 goto end;
279 }
280 }
281
Len Brown4be44fc2005-08-05 00:44:28 -0400282 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 if (result)
Len Browncece9292006-06-26 23:04:31 -0400284 printk(KERN_WARNING PREFIX
285 "Transitioning device [%s] to D%d\n",
286 device->pnp.bus_id, state);
Shaohua Li5e321322007-10-11 23:53:58 +0200287 else {
288 device->power.state = state;
Len Brown4be44fc2005-08-05 00:44:28 -0400289 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
290 "Device [%s] transitioned to D%d\n",
291 device->pnp.bus_id, state));
Shaohua Li5e321322007-10-11 23:53:58 +0200292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Patrick Mocheld550d982006-06-27 00:41:40 -0400294 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295}
Len Brown4be44fc2005-08-05 00:44:28 -0400296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297EXPORT_SYMBOL(acpi_bus_set_power);
298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299/* --------------------------------------------------------------------------
300 Event Management
301 -------------------------------------------------------------------------- */
302
Len Brown14e04fb2007-08-23 15:20:26 -0400303#ifdef CONFIG_ACPI_PROC_EVENT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304static DEFINE_SPINLOCK(acpi_bus_event_lock);
305
306LIST_HEAD(acpi_bus_event_list);
307DECLARE_WAIT_QUEUE_HEAD(acpi_bus_event_queue);
308
Len Brown4be44fc2005-08-05 00:44:28 -0400309extern int event_is_open;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Alexey Starikovskiy8db85d42007-09-26 19:43:16 +0400311int acpi_bus_generate_proc_event4(const char *device_class, const char *bus_id, u8 type, int data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
Alexey Starikovskiy8db85d42007-09-26 19:43:16 +0400313 struct acpi_bus_event *event;
Len Brown4be44fc2005-08-05 00:44:28 -0400314 unsigned long flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 /* drop event on the floor if no one's listening */
317 if (!event_is_open)
Patrick Mocheld550d982006-06-27 00:41:40 -0400318 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
320 event = kmalloc(sizeof(struct acpi_bus_event), GFP_ATOMIC);
321 if (!event)
Patrick Mocheld550d982006-06-27 00:41:40 -0400322 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Alexey Starikovskiy8db85d42007-09-26 19:43:16 +0400324 strcpy(event->device_class, device_class);
325 strcpy(event->bus_id, bus_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 event->type = type;
327 event->data = data;
328
329 spin_lock_irqsave(&acpi_bus_event_lock, flags);
330 list_add_tail(&event->node, &acpi_bus_event_list);
331 spin_unlock_irqrestore(&acpi_bus_event_lock, flags);
332
333 wake_up_interruptible(&acpi_bus_event_queue);
334
Patrick Mocheld550d982006-06-27 00:41:40 -0400335 return 0;
Alexey Starikovskiy8db85d42007-09-26 19:43:16 +0400336
337}
338
339EXPORT_SYMBOL_GPL(acpi_bus_generate_proc_event4);
340
341int acpi_bus_generate_proc_event(struct acpi_device *device, u8 type, int data)
342{
343 if (!device)
344 return -EINVAL;
345 return acpi_bus_generate_proc_event4(device->pnp.device_class,
346 device->pnp.bus_id, type, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347}
Len Brown4be44fc2005-08-05 00:44:28 -0400348
Len Brown14e04fb2007-08-23 15:20:26 -0400349EXPORT_SYMBOL(acpi_bus_generate_proc_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Len Brown4be44fc2005-08-05 00:44:28 -0400351int acpi_bus_receive_event(struct acpi_bus_event *event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
Len Brown4be44fc2005-08-05 00:44:28 -0400353 unsigned long flags = 0;
354 struct acpi_bus_event *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356 DECLARE_WAITQUEUE(wait, current);
357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
359 if (!event)
Patrick Mocheld550d982006-06-27 00:41:40 -0400360 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362 if (list_empty(&acpi_bus_event_list)) {
363
364 set_current_state(TASK_INTERRUPTIBLE);
365 add_wait_queue(&acpi_bus_event_queue, &wait);
366
367 if (list_empty(&acpi_bus_event_list))
368 schedule();
369
370 remove_wait_queue(&acpi_bus_event_queue, &wait);
371 set_current_state(TASK_RUNNING);
372
373 if (signal_pending(current))
Patrick Mocheld550d982006-06-27 00:41:40 -0400374 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 }
376
377 spin_lock_irqsave(&acpi_bus_event_lock, flags);
Len Brown4be44fc2005-08-05 00:44:28 -0400378 entry =
379 list_entry(acpi_bus_event_list.next, struct acpi_bus_event, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 if (entry)
381 list_del(&entry->node);
382 spin_unlock_irqrestore(&acpi_bus_event_lock, flags);
383
384 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400385 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387 memcpy(event, entry, sizeof(struct acpi_bus_event));
388
389 kfree(entry);
390
Patrick Mocheld550d982006-06-27 00:41:40 -0400391 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Len Brown14e04fb2007-08-23 15:20:26 -0400394#endif /* CONFIG_ACPI_PROC_EVENT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396/* --------------------------------------------------------------------------
397 Notification Handling
398 -------------------------------------------------------------------------- */
399
400static int
Len Brown4be44fc2005-08-05 00:44:28 -0400401acpi_bus_check_device(struct acpi_device *device, int *status_changed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402{
Len Brown4be44fc2005-08-05 00:44:28 -0400403 acpi_status status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 struct acpi_device_status old_status;
405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400408 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
410 if (status_changed)
411 *status_changed = 0;
412
413 old_status = device->status;
414
415 /*
416 * Make sure this device's parent is present before we go about
417 * messing with the device.
418 */
419 if (device->parent && !device->parent->status.present) {
420 device->status = device->parent->status;
421 if (STRUCT_TO_INT(old_status) != STRUCT_TO_INT(device->status)) {
422 if (status_changed)
423 *status_changed = 1;
424 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400425 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 }
427
428 status = acpi_bus_get_status(device);
429 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400430 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
432 if (STRUCT_TO_INT(old_status) == STRUCT_TO_INT(device->status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400433 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
435 if (status_changed)
436 *status_changed = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 /*
439 * Device Insertion/Removal
440 */
441 if ((device->status.present) && !(old_status.present)) {
442 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device insertion detected\n"));
443 /* TBD: Handle device insertion */
Len Brown4be44fc2005-08-05 00:44:28 -0400444 } else if (!(device->status.present) && (old_status.present)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device removal detected\n"));
446 /* TBD: Handle device removal */
447 }
448
Patrick Mocheld550d982006-06-27 00:41:40 -0400449 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450}
451
Len Brown4be44fc2005-08-05 00:44:28 -0400452static int acpi_bus_check_scope(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
Len Brown4be44fc2005-08-05 00:44:28 -0400454 int result = 0;
455 int status_changed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400459 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461 /* Status Change? */
462 result = acpi_bus_check_device(device, &status_changed);
463 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400464 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466 if (!status_changed)
Patrick Mocheld550d982006-06-27 00:41:40 -0400467 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469 /*
470 * TBD: Enumerate child devices within this device's scope and
471 * run acpi_bus_check_device()'s on them.
472 */
473
Patrick Mocheld550d982006-06-27 00:41:40 -0400474 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475}
476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477/**
478 * acpi_bus_notify
479 * ---------------
480 * Callback for all 'system-level' device notifications (values 0x00-0x7F).
481 */
Len Brown4be44fc2005-08-05 00:44:28 -0400482static void acpi_bus_notify(acpi_handle handle, u32 type, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
Len Brown4be44fc2005-08-05 00:44:28 -0400484 int result = 0;
485 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488 if (acpi_bus_get_device(handle, &device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400489 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
491 switch (type) {
492
493 case ACPI_NOTIFY_BUS_CHECK:
Len Brown4be44fc2005-08-05 00:44:28 -0400494 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
495 "Received BUS CHECK notification for device [%s]\n",
496 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 result = acpi_bus_check_scope(device);
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500498 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 * TBD: We'll need to outsource certain events to non-ACPI
Len Brown4be44fc2005-08-05 00:44:28 -0400500 * drivers via the device manager (device.c).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 */
502 break;
503
504 case ACPI_NOTIFY_DEVICE_CHECK:
Len Brown4be44fc2005-08-05 00:44:28 -0400505 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
506 "Received DEVICE CHECK notification for device [%s]\n",
507 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 result = acpi_bus_check_device(device, NULL);
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500509 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 * TBD: We'll need to outsource certain events to non-ACPI
Len Brown4be44fc2005-08-05 00:44:28 -0400511 * drivers via the device manager (device.c).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 */
513 break;
514
515 case ACPI_NOTIFY_DEVICE_WAKE:
Len Brown4be44fc2005-08-05 00:44:28 -0400516 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
517 "Received DEVICE WAKE notification for device [%s]\n",
518 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 /* TBD */
520 break;
521
522 case ACPI_NOTIFY_EJECT_REQUEST:
Len Brown4be44fc2005-08-05 00:44:28 -0400523 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
524 "Received EJECT REQUEST notification for device [%s]\n",
525 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 /* TBD */
527 break;
528
529 case ACPI_NOTIFY_DEVICE_CHECK_LIGHT:
Len Brown4be44fc2005-08-05 00:44:28 -0400530 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
531 "Received DEVICE CHECK LIGHT notification for device [%s]\n",
532 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 /* TBD: Exactly what does 'light' mean? */
534 break;
535
536 case ACPI_NOTIFY_FREQUENCY_MISMATCH:
Len Brown4be44fc2005-08-05 00:44:28 -0400537 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
538 "Received FREQUENCY MISMATCH notification for device [%s]\n",
539 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 /* TBD */
541 break;
542
543 case ACPI_NOTIFY_BUS_MODE_MISMATCH:
Len Brown4be44fc2005-08-05 00:44:28 -0400544 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
545 "Received BUS MODE MISMATCH notification for device [%s]\n",
546 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 /* TBD */
548 break;
549
550 case ACPI_NOTIFY_POWER_FAULT:
Len Brown4be44fc2005-08-05 00:44:28 -0400551 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
552 "Received POWER FAULT notification for device [%s]\n",
553 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 /* TBD */
555 break;
556
557 default:
Len Brown4be44fc2005-08-05 00:44:28 -0400558 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
559 "Received unknown/unsupported notification [%08x]\n",
560 type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 break;
562 }
563
Patrick Mocheld550d982006-06-27 00:41:40 -0400564 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565}
566
567/* --------------------------------------------------------------------------
568 Initialization/Cleanup
569 -------------------------------------------------------------------------- */
570
Len Brown4be44fc2005-08-05 00:44:28 -0400571static int __init acpi_bus_init_irq(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572{
Len Brown4be44fc2005-08-05 00:44:28 -0400573 acpi_status status = AE_OK;
574 union acpi_object arg = { ACPI_TYPE_INTEGER };
575 struct acpi_object_list arg_list = { 1, &arg };
576 char *message = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500579 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 * Let the system know what interrupt model we are using by
581 * evaluating the \_PIC object, if exists.
582 */
583
584 switch (acpi_irq_model) {
585 case ACPI_IRQ_MODEL_PIC:
586 message = "PIC";
587 break;
588 case ACPI_IRQ_MODEL_IOAPIC:
589 message = "IOAPIC";
590 break;
591 case ACPI_IRQ_MODEL_IOSAPIC:
592 message = "IOSAPIC";
593 break;
John Keller3948ec92006-12-22 11:50:04 -0600594 case ACPI_IRQ_MODEL_PLATFORM:
595 message = "platform specific model";
596 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 default:
598 printk(KERN_WARNING PREFIX "Unknown interrupt routing model\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400599 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 }
601
602 printk(KERN_INFO PREFIX "Using %s for interrupt routing\n", message);
603
604 arg.integer.value = acpi_irq_model;
605
606 status = acpi_evaluate_object(NULL, "\\_PIC", &arg_list, NULL);
607 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400608 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PIC"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400609 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 }
611
Patrick Mocheld550d982006-06-27 00:41:40 -0400612 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613}
614
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300615acpi_native_uint acpi_gbl_permanent_mmap;
616
617
Len Brown4be44fc2005-08-05 00:44:28 -0400618void __init acpi_early_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619{
Len Brown4be44fc2005-08-05 00:44:28 -0400620 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
622 if (acpi_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -0400623 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Bob Moore616861242006-03-17 16:44:00 -0500625 printk(KERN_INFO PREFIX "Core revision %08x\n", ACPI_CA_VERSION);
626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 /* enable workarounds, unless strict ACPI spec. compliance */
628 if (!acpi_strict)
629 acpi_gbl_enable_interpreter_slack = TRUE;
630
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300631 acpi_gbl_permanent_mmap = 1;
632
633 status = acpi_reallocate_root_table();
634 if (ACPI_FAILURE(status)) {
635 printk(KERN_ERR PREFIX
636 "Unable to reallocate ACPI tables\n");
637 goto error0;
638 }
639
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 status = acpi_initialize_subsystem();
641 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400642 printk(KERN_ERR PREFIX
643 "Unable to initialize the ACPI Interpreter\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 goto error0;
645 }
646
647 status = acpi_load_tables();
648 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400649 printk(KERN_ERR PREFIX
650 "Unable to load the System Description Tables\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 goto error0;
652 }
653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654#ifdef CONFIG_X86
655 if (!acpi_ioapic) {
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300656 extern u8 acpi_sci_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
658 /* compatible (0) means level (3) */
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300659 if (!(acpi_sci_flags & ACPI_MADT_TRIGGER_MASK)) {
660 acpi_sci_flags &= ~ACPI_MADT_TRIGGER_MASK;
661 acpi_sci_flags |= ACPI_MADT_TRIGGER_LEVEL;
662 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 /* Set PIC-mode SCI trigger type */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300664 acpi_pic_sci_set_trigger(acpi_gbl_FADT.sci_interrupt,
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300665 (acpi_sci_flags & ACPI_MADT_TRIGGER_MASK) >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 } else {
667 extern int acpi_sci_override_gsi;
668 /*
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300669 * now that acpi_gbl_FADT is initialized,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 * update it with result from INT_SRC_OVR parsing
671 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300672 acpi_gbl_FADT.sci_interrupt = acpi_sci_override_gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 }
674#endif
675
Len Brown4be44fc2005-08-05 00:44:28 -0400676 status =
677 acpi_enable_subsystem(~
678 (ACPI_NO_HARDWARE_INIT |
679 ACPI_NO_ACPI_ENABLE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 if (ACPI_FAILURE(status)) {
681 printk(KERN_ERR PREFIX "Unable to enable ACPI\n");
682 goto error0;
683 }
684
Patrick Mocheld550d982006-06-27 00:41:40 -0400685 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Len Brown4be44fc2005-08-05 00:44:28 -0400687 error0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 disable_acpi();
Patrick Mocheld550d982006-06-27 00:41:40 -0400689 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690}
691
Len Brown4be44fc2005-08-05 00:44:28 -0400692static int __init acpi_bus_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
Len Brown4be44fc2005-08-05 00:44:28 -0400694 int result = 0;
695 acpi_status status = AE_OK;
696 extern acpi_status acpi_os_initialize1(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
699 status = acpi_os_initialize1();
700
Len Brown4be44fc2005-08-05 00:44:28 -0400701 status =
702 acpi_enable_subsystem(ACPI_NO_HARDWARE_INIT | ACPI_NO_ACPI_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400704 printk(KERN_ERR PREFIX
705 "Unable to start the ACPI Interpreter\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 goto error1;
707 }
708
709 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400710 printk(KERN_ERR PREFIX
711 "Unable to initialize ACPI OS objects\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 goto error1;
713 }
714#ifdef CONFIG_ACPI_EC
715 /*
716 * ACPI 2.0 requires the EC driver to be loaded and work before
717 * the EC device is found in the namespace (i.e. before acpi_initialize_objects()
718 * is called).
719 *
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500720 * This is accomplished by looking for the ECDT table, and getting
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 * the EC parameters out of that.
722 */
723 status = acpi_ec_ecdt_probe();
724 /* Ignore result. Not having an ECDT is not fatal. */
725#endif
726
727 status = acpi_initialize_objects(ACPI_FULL_INITIALIZATION);
728 if (ACPI_FAILURE(status)) {
729 printk(KERN_ERR PREFIX "Unable to initialize ACPI objects\n");
730 goto error1;
731 }
732
733 printk(KERN_INFO PREFIX "Interpreter enabled\n");
734
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500735 /* Initialize sleep structures */
736 acpi_sleep_init();
737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 /*
739 * Get the system interrupt model and evaluate \_PIC.
740 */
741 result = acpi_bus_init_irq();
742 if (result)
743 goto error1;
744
745 /*
746 * Register the for all standard device notifications.
747 */
Len Brown4be44fc2005-08-05 00:44:28 -0400748 status =
749 acpi_install_notify_handler(ACPI_ROOT_OBJECT, ACPI_SYSTEM_NOTIFY,
750 &acpi_bus_notify, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400752 printk(KERN_ERR PREFIX
753 "Unable to register for device notifications\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 goto error1;
755 }
756
757 /*
758 * Create the top ACPI proc directory
759 */
760 acpi_root_dir = proc_mkdir(ACPI_BUS_FILE_ROOT, NULL);
761
Patrick Mocheld550d982006-06-27 00:41:40 -0400762 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
764 /* Mimic structured exception handling */
Len Brown4be44fc2005-08-05 00:44:28 -0400765 error1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 acpi_terminate();
Patrick Mocheld550d982006-06-27 00:41:40 -0400767 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768}
769
Greg Kroah-Hartman99e0d2f2007-11-02 16:19:59 -0700770struct kobject *acpi_kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Len Brown4be44fc2005-08-05 00:44:28 -0400772static int __init acpi_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773{
Len Brown4be44fc2005-08-05 00:44:28 -0400774 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 if (acpi_disabled) {
778 printk(KERN_INFO PREFIX "Interpreter disabled.\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400779 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 }
781
Greg Kroah-Hartmanf62ed9e2007-11-05 13:16:15 -0800782 acpi_kobj = kobject_create_and_add("acpi", firmware_kobj);
Greg Kroah-Hartman99e0d2f2007-11-02 16:19:59 -0700783 if (!acpi_kobj) {
784 printk(KERN_WARNING "%s: kset create error\n", __FUNCTION__);
785 acpi_kobj = NULL;
786 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
788 result = acpi_bus_init();
789
790 if (!result) {
Len Brown9f9adec2007-12-13 17:38:03 -0500791 if (!(pm_flags & PM_APM))
792 pm_flags |= PM_ACPI;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 else {
Len Brown4be44fc2005-08-05 00:44:28 -0400794 printk(KERN_INFO PREFIX
795 "APM is already active, exiting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 disable_acpi();
797 result = -ENODEV;
798 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 } else
800 disable_acpi();
801
Patrick Mocheld550d982006-06-27 00:41:40 -0400802 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803}
804
805subsys_initcall(acpi_init);