blob: 91bdeb3b081e7d5f7f2dde1309e6a597175fd9c1 [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>
Harvey Harrison6697c052008-02-09 23:24:08 +010034#include <linux/acpi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#ifdef CONFIG_X86
36#include <asm/mpspec.h>
37#endif
Robert Hancock7752d5c2008-02-15 01:27:20 -080038#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <acpi/acpi_bus.h>
40#include <acpi/acpi_drivers.h>
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#define _COMPONENT ACPI_BUS_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050043ACPI_MODULE_NAME("bus");
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Len Brown4be44fc2005-08-05 00:44:28 -040045struct acpi_device *acpi_root;
46struct proc_dir_entry *acpi_root_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047EXPORT_SYMBOL(acpi_root_dir);
48
49#define STRUCT_TO_INT(s) (*((int*)&s))
50
51/* --------------------------------------------------------------------------
52 Device Management
53 -------------------------------------------------------------------------- */
54
Len Brown4be44fc2005-08-05 00:44:28 -040055int acpi_bus_get_device(acpi_handle handle, struct acpi_device **device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056{
Len Brown4be44fc2005-08-05 00:44:28 -040057 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -040061 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63 /* TBD: Support fixed-feature devices */
64
Len Brown4be44fc2005-08-05 00:44:28 -040065 status = acpi_get_data(handle, acpi_bus_data_handler, (void **)device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 if (ACPI_FAILURE(status) || !*device) {
Len Brown9805cb72006-07-25 13:30:57 -040067 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No context for object [%p]\n",
68 handle));
Patrick Mocheld550d982006-06-27 00:41:40 -040069 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 }
71
Patrick Mocheld550d982006-06-27 00:41:40 -040072 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073}
Len Brown4be44fc2005-08-05 00:44:28 -040074
Linus Torvalds1da177e2005-04-16 15:20:36 -070075EXPORT_SYMBOL(acpi_bus_get_device);
76
Len Brown4be44fc2005-08-05 00:44:28 -040077int acpi_bus_get_status(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078{
Len Brown4be44fc2005-08-05 00:44:28 -040079 acpi_status status = AE_OK;
80 unsigned long sta = 0;
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -040084 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86 /*
87 * Evaluate _STA if present.
88 */
89 if (device->flags.dynamic_status) {
Len Brown4be44fc2005-08-05 00:44:28 -040090 status =
91 acpi_evaluate_integer(device->handle, "_STA", NULL, &sta);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -040093 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -040094 STRUCT_TO_INT(device->status) = (int)sta;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 }
96
97 /*
98 * Otherwise we assume the status of our parent (unless we don't
99 * have one, in which case status is implied).
100 */
101 else if (device->parent)
102 device->status = device->parent->status;
103 else
Bjorn Helgaas0c0e8922007-04-25 14:20:58 -0400104 STRUCT_TO_INT(device->status) =
105 ACPI_STA_DEVICE_PRESENT | ACPI_STA_DEVICE_ENABLED |
106 ACPI_STA_DEVICE_UI | ACPI_STA_DEVICE_FUNCTIONING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108 if (device->status.functional && !device->status.present) {
109 printk(KERN_WARNING PREFIX "Device [%s] status [%08x]: "
Len Brown4be44fc2005-08-05 00:44:28 -0400110 "functional but not present; setting present\n",
111 device->pnp.bus_id, (u32) STRUCT_TO_INT(device->status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 device->status.present = 1;
113 }
114
Len Brown4be44fc2005-08-05 00:44:28 -0400115 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] status [%08x]\n",
116 device->pnp.bus_id,
117 (u32) STRUCT_TO_INT(device->status)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Patrick Mocheld550d982006-06-27 00:41:40 -0400119 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Len Brown4be44fc2005-08-05 00:44:28 -0400122EXPORT_SYMBOL(acpi_bus_get_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Zhang Rui20733932008-01-17 15:51:21 +0800124void acpi_bus_private_data_handler(acpi_handle handle,
125 u32 function, void *context)
126{
127 return;
128}
129EXPORT_SYMBOL(acpi_bus_private_data_handler);
130
131int acpi_bus_get_private_data(acpi_handle handle, void **data)
132{
133 acpi_status status = AE_OK;
134
135 if (!*data)
136 return -EINVAL;
137
138 status = acpi_get_data(handle, acpi_bus_private_data_handler, data);
139 if (ACPI_FAILURE(status) || !*data) {
140 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No context for object [%p]\n",
141 handle));
142 return -ENODEV;
143 }
144
145 return 0;
146}
147EXPORT_SYMBOL(acpi_bus_get_private_data);
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149/* --------------------------------------------------------------------------
150 Power Management
151 -------------------------------------------------------------------------- */
152
Len Brown4be44fc2005-08-05 00:44:28 -0400153int acpi_bus_get_power(acpi_handle handle, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Len Brown4be44fc2005-08-05 00:44:28 -0400155 int result = 0;
156 acpi_status status = 0;
157 struct acpi_device *device = NULL;
158 unsigned long psc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 result = acpi_bus_get_device(handle, &device);
162 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400163 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165 *state = ACPI_STATE_UNKNOWN;
166
167 if (!device->flags.power_manageable) {
168 /* TBD: Non-recursive algorithm for walking up hierarchy */
169 if (device->parent)
170 *state = device->parent->power.state;
171 else
172 *state = ACPI_STATE_D0;
Len Brown4be44fc2005-08-05 00:44:28 -0400173 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 /*
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500175 * Get the device's power state either directly (via _PSC) or
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 * indirectly (via power resources).
177 */
178 if (device->power.flags.explicit_get) {
Len Brown4be44fc2005-08-05 00:44:28 -0400179 status = acpi_evaluate_integer(device->handle, "_PSC",
180 NULL, &psc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400182 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400183 device->power.state = (int)psc;
184 } else if (device->power.flags.power_resources) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 result = acpi_power_get_inferred_state(device);
186 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400187 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 }
189
190 *state = device->power.state;
191 }
192
193 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] power state is D%d\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400194 device->pnp.bus_id, device->power.state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Patrick Mocheld550d982006-06-27 00:41:40 -0400196 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197}
Len Brown4be44fc2005-08-05 00:44:28 -0400198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199EXPORT_SYMBOL(acpi_bus_get_power);
200
Len Brown4be44fc2005-08-05 00:44:28 -0400201int acpi_bus_set_power(acpi_handle handle, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Len Brown4be44fc2005-08-05 00:44:28 -0400203 int result = 0;
204 acpi_status status = AE_OK;
205 struct acpi_device *device = NULL;
206 char object_name[5] = { '_', 'P', 'S', '0' + state, '\0' };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209 result = acpi_bus_get_device(handle, &device);
210 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400211 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213 if ((state < ACPI_STATE_D0) || (state > ACPI_STATE_D3))
Patrick Mocheld550d982006-06-27 00:41:40 -0400214 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216 /* Make sure this is a valid target state */
217
218 if (!device->flags.power_manageable) {
Len Brown9805cb72006-07-25 13:30:57 -0400219 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device `[%s]' is not power manageable\n",
Greg Kroah-Hartman19c38de2007-09-12 15:06:57 -0700220 kobject_name(&device->dev.kobj)));
Patrick Mocheld550d982006-06-27 00:41:40 -0400221 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 }
David Shaohua Lib9131002005-03-19 00:16:18 -0500223 /*
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400224 * Get device's current power state
David Shaohua Lib9131002005-03-19 00:16:18 -0500225 */
Zhao Yakuif5adfaa2008-08-11 14:57:50 +0800226 if (!acpi_power_nocheck) {
227 /*
228 * Maybe the incorrect power state is returned on the bogus
229 * bios, which is different with the real power state.
230 * For example: the bios returns D0 state and the real power
231 * state is D3. OS expects to set the device to D0 state. In
232 * such case if OS uses the power state returned by the BIOS,
233 * the device can't be transisted to the correct power state.
234 * So if the acpi_power_nocheck is set, it is unnecessary to
235 * get the power state by calling acpi_bus_get_power.
236 */
237 acpi_bus_get_power(device->handle, &device->power.state);
238 }
Len Brownec683732008-01-23 22:41:20 -0500239 if ((state == device->power.state) && !device->flags.force_power_state) {
Konstantin Karasyovb1028c52007-02-16 02:23:07 -0500240 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device is already at D%d\n",
241 state));
242 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 }
Konstantin Karasyovb1028c52007-02-16 02:23:07 -0500244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 if (!device->power.states[state].flags.valid) {
Len Browncece9292006-06-26 23:04:31 -0400246 printk(KERN_WARNING PREFIX "Device does not support D%d\n", state);
Patrick Mocheld550d982006-06-27 00:41:40 -0400247 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 }
249 if (device->parent && (state < device->parent->power.state)) {
Len Browncece9292006-06-26 23:04:31 -0400250 printk(KERN_WARNING PREFIX
Thomas Renningera6fc6722006-06-26 23:58:43 -0400251 "Cannot set device to a higher-powered"
Len Browncece9292006-06-26 23:04:31 -0400252 " state than parent\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400253 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 }
255
256 /*
257 * Transition Power
258 * ----------------
259 * On transitions to a high-powered state we first apply power (via
260 * power resources) then evalute _PSx. Conversly for transitions to
261 * a lower-powered state.
David Shaohua Lib9131002005-03-19 00:16:18 -0500262 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 if (state < device->power.state) {
264 if (device->power.flags.power_resources) {
265 result = acpi_power_transition(device, state);
266 if (result)
267 goto end;
268 }
269 if (device->power.states[state].flags.explicit_set) {
Len Brown4be44fc2005-08-05 00:44:28 -0400270 status = acpi_evaluate_object(device->handle,
271 object_name, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 if (ACPI_FAILURE(status)) {
273 result = -ENODEV;
274 goto end;
275 }
276 }
Len Brown4be44fc2005-08-05 00:44:28 -0400277 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 if (device->power.states[state].flags.explicit_set) {
Len Brown4be44fc2005-08-05 00:44:28 -0400279 status = acpi_evaluate_object(device->handle,
280 object_name, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 if (ACPI_FAILURE(status)) {
282 result = -ENODEV;
283 goto end;
284 }
285 }
286 if (device->power.flags.power_resources) {
287 result = acpi_power_transition(device, state);
288 if (result)
289 goto end;
290 }
291 }
292
Len Brown4be44fc2005-08-05 00:44:28 -0400293 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 if (result)
Len Browncece9292006-06-26 23:04:31 -0400295 printk(KERN_WARNING PREFIX
296 "Transitioning device [%s] to D%d\n",
297 device->pnp.bus_id, state);
Shaohua Li5e321322007-10-11 23:53:58 +0200298 else {
299 device->power.state = state;
Len Brown4be44fc2005-08-05 00:44:28 -0400300 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
301 "Device [%s] transitioned to D%d\n",
302 device->pnp.bus_id, state));
Shaohua Li5e321322007-10-11 23:53:58 +0200303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Patrick Mocheld550d982006-06-27 00:41:40 -0400305 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306}
Len Brown4be44fc2005-08-05 00:44:28 -0400307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308EXPORT_SYMBOL(acpi_bus_set_power);
309
Rafael J. Wysocki3737b2b2008-07-07 03:30:55 +0200310bool acpi_bus_power_manageable(acpi_handle handle)
311{
312 struct acpi_device *device;
313 int result;
314
315 result = acpi_bus_get_device(handle, &device);
316 return result ? false : device->flags.power_manageable;
317}
318
319EXPORT_SYMBOL(acpi_bus_power_manageable);
320
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200321bool acpi_bus_can_wakeup(acpi_handle handle)
322{
323 struct acpi_device *device;
324 int result;
325
326 result = acpi_bus_get_device(handle, &device);
327 return result ? false : device->wakeup.flags.valid;
328}
329
330EXPORT_SYMBOL(acpi_bus_can_wakeup);
331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332/* --------------------------------------------------------------------------
333 Event Management
334 -------------------------------------------------------------------------- */
335
Len Brown14e04fb2007-08-23 15:20:26 -0400336#ifdef CONFIG_ACPI_PROC_EVENT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337static DEFINE_SPINLOCK(acpi_bus_event_lock);
338
339LIST_HEAD(acpi_bus_event_list);
340DECLARE_WAIT_QUEUE_HEAD(acpi_bus_event_queue);
341
Len Brown4be44fc2005-08-05 00:44:28 -0400342extern int event_is_open;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Alexey Starikovskiy8db85d42007-09-26 19:43:16 +0400344int acpi_bus_generate_proc_event4(const char *device_class, const char *bus_id, u8 type, int data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
Alexey Starikovskiy8db85d42007-09-26 19:43:16 +0400346 struct acpi_bus_event *event;
Len Brown4be44fc2005-08-05 00:44:28 -0400347 unsigned long flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 /* drop event on the floor if no one's listening */
350 if (!event_is_open)
Patrick Mocheld550d982006-06-27 00:41:40 -0400351 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353 event = kmalloc(sizeof(struct acpi_bus_event), GFP_ATOMIC);
354 if (!event)
Patrick Mocheld550d982006-06-27 00:41:40 -0400355 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Alexey Starikovskiy8db85d42007-09-26 19:43:16 +0400357 strcpy(event->device_class, device_class);
358 strcpy(event->bus_id, bus_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 event->type = type;
360 event->data = data;
361
362 spin_lock_irqsave(&acpi_bus_event_lock, flags);
363 list_add_tail(&event->node, &acpi_bus_event_list);
364 spin_unlock_irqrestore(&acpi_bus_event_lock, flags);
365
366 wake_up_interruptible(&acpi_bus_event_queue);
367
Patrick Mocheld550d982006-06-27 00:41:40 -0400368 return 0;
Alexey Starikovskiy8db85d42007-09-26 19:43:16 +0400369
370}
371
372EXPORT_SYMBOL_GPL(acpi_bus_generate_proc_event4);
373
374int acpi_bus_generate_proc_event(struct acpi_device *device, u8 type, int data)
375{
376 if (!device)
377 return -EINVAL;
378 return acpi_bus_generate_proc_event4(device->pnp.device_class,
379 device->pnp.bus_id, type, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380}
Len Brown4be44fc2005-08-05 00:44:28 -0400381
Len Brown14e04fb2007-08-23 15:20:26 -0400382EXPORT_SYMBOL(acpi_bus_generate_proc_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Len Brown4be44fc2005-08-05 00:44:28 -0400384int acpi_bus_receive_event(struct acpi_bus_event *event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
Len Brown4be44fc2005-08-05 00:44:28 -0400386 unsigned long flags = 0;
387 struct acpi_bus_event *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
389 DECLARE_WAITQUEUE(wait, current);
390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392 if (!event)
Patrick Mocheld550d982006-06-27 00:41:40 -0400393 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395 if (list_empty(&acpi_bus_event_list)) {
396
397 set_current_state(TASK_INTERRUPTIBLE);
398 add_wait_queue(&acpi_bus_event_queue, &wait);
399
400 if (list_empty(&acpi_bus_event_list))
401 schedule();
402
403 remove_wait_queue(&acpi_bus_event_queue, &wait);
404 set_current_state(TASK_RUNNING);
405
406 if (signal_pending(current))
Patrick Mocheld550d982006-06-27 00:41:40 -0400407 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 }
409
410 spin_lock_irqsave(&acpi_bus_event_lock, flags);
Chuck Ebbertf0a37e02008-04-15 14:34:47 -0700411 if (!list_empty(&acpi_bus_event_list)) {
412 entry = list_entry(acpi_bus_event_list.next,
413 struct acpi_bus_event, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 list_del(&entry->node);
Chuck Ebbertf0a37e02008-04-15 14:34:47 -0700415 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 spin_unlock_irqrestore(&acpi_bus_event_lock, flags);
417
418 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400419 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 memcpy(event, entry, sizeof(struct acpi_bus_event));
422
423 kfree(entry);
424
Patrick Mocheld550d982006-06-27 00:41:40 -0400425 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Len Brown14e04fb2007-08-23 15:20:26 -0400428#endif /* CONFIG_ACPI_PROC_EVENT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430/* --------------------------------------------------------------------------
431 Notification Handling
432 -------------------------------------------------------------------------- */
433
434static int
Len Brown4be44fc2005-08-05 00:44:28 -0400435acpi_bus_check_device(struct acpi_device *device, int *status_changed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
Len Brown4be44fc2005-08-05 00:44:28 -0400437 acpi_status status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 struct acpi_device_status old_status;
439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400442 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444 if (status_changed)
445 *status_changed = 0;
446
447 old_status = device->status;
448
449 /*
450 * Make sure this device's parent is present before we go about
451 * messing with the device.
452 */
453 if (device->parent && !device->parent->status.present) {
454 device->status = device->parent->status;
455 if (STRUCT_TO_INT(old_status) != STRUCT_TO_INT(device->status)) {
456 if (status_changed)
457 *status_changed = 1;
458 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400459 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 }
461
462 status = acpi_bus_get_status(device);
463 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400464 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466 if (STRUCT_TO_INT(old_status) == STRUCT_TO_INT(device->status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400467 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469 if (status_changed)
470 *status_changed = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 /*
473 * Device Insertion/Removal
474 */
475 if ((device->status.present) && !(old_status.present)) {
476 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device insertion detected\n"));
477 /* TBD: Handle device insertion */
Len Brown4be44fc2005-08-05 00:44:28 -0400478 } else if (!(device->status.present) && (old_status.present)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device removal detected\n"));
480 /* TBD: Handle device removal */
481 }
482
Patrick Mocheld550d982006-06-27 00:41:40 -0400483 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484}
485
Len Brown4be44fc2005-08-05 00:44:28 -0400486static int acpi_bus_check_scope(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
Len Brown4be44fc2005-08-05 00:44:28 -0400488 int result = 0;
489 int status_changed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400493 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495 /* Status Change? */
496 result = acpi_bus_check_device(device, &status_changed);
497 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400498 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
500 if (!status_changed)
Patrick Mocheld550d982006-06-27 00:41:40 -0400501 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
503 /*
504 * TBD: Enumerate child devices within this device's scope and
505 * run acpi_bus_check_device()'s on them.
506 */
507
Patrick Mocheld550d982006-06-27 00:41:40 -0400508 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509}
510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511/**
512 * acpi_bus_notify
513 * ---------------
514 * Callback for all 'system-level' device notifications (values 0x00-0x7F).
515 */
Len Brown4be44fc2005-08-05 00:44:28 -0400516static void acpi_bus_notify(acpi_handle handle, u32 type, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517{
Len Brown4be44fc2005-08-05 00:44:28 -0400518 int result = 0;
519 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
522 if (acpi_bus_get_device(handle, &device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400523 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525 switch (type) {
526
527 case ACPI_NOTIFY_BUS_CHECK:
Len Brown4be44fc2005-08-05 00:44:28 -0400528 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
529 "Received BUS CHECK notification for device [%s]\n",
530 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 result = acpi_bus_check_scope(device);
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500532 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 * TBD: We'll need to outsource certain events to non-ACPI
Len Brown4be44fc2005-08-05 00:44:28 -0400534 * drivers via the device manager (device.c).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 */
536 break;
537
538 case ACPI_NOTIFY_DEVICE_CHECK:
Len Brown4be44fc2005-08-05 00:44:28 -0400539 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
540 "Received DEVICE CHECK notification for device [%s]\n",
541 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 result = acpi_bus_check_device(device, NULL);
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500543 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 * TBD: We'll need to outsource certain events to non-ACPI
Len Brown4be44fc2005-08-05 00:44:28 -0400545 * drivers via the device manager (device.c).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 */
547 break;
548
549 case ACPI_NOTIFY_DEVICE_WAKE:
Len Brown4be44fc2005-08-05 00:44:28 -0400550 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
551 "Received DEVICE WAKE notification for device [%s]\n",
552 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 /* TBD */
554 break;
555
556 case ACPI_NOTIFY_EJECT_REQUEST:
Len Brown4be44fc2005-08-05 00:44:28 -0400557 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
558 "Received EJECT REQUEST notification for device [%s]\n",
559 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 /* TBD */
561 break;
562
563 case ACPI_NOTIFY_DEVICE_CHECK_LIGHT:
Len Brown4be44fc2005-08-05 00:44:28 -0400564 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
565 "Received DEVICE CHECK LIGHT notification for device [%s]\n",
566 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 /* TBD: Exactly what does 'light' mean? */
568 break;
569
570 case ACPI_NOTIFY_FREQUENCY_MISMATCH:
Len Brown4be44fc2005-08-05 00:44:28 -0400571 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
572 "Received FREQUENCY MISMATCH notification for device [%s]\n",
573 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 /* TBD */
575 break;
576
577 case ACPI_NOTIFY_BUS_MODE_MISMATCH:
Len Brown4be44fc2005-08-05 00:44:28 -0400578 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
579 "Received BUS MODE MISMATCH notification for device [%s]\n",
580 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 /* TBD */
582 break;
583
584 case ACPI_NOTIFY_POWER_FAULT:
Len Brown4be44fc2005-08-05 00:44:28 -0400585 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
586 "Received POWER FAULT notification for device [%s]\n",
587 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 /* TBD */
589 break;
590
591 default:
Len Brown4be44fc2005-08-05 00:44:28 -0400592 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
593 "Received unknown/unsupported notification [%08x]\n",
594 type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 break;
596 }
597
Patrick Mocheld550d982006-06-27 00:41:40 -0400598 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599}
600
601/* --------------------------------------------------------------------------
602 Initialization/Cleanup
603 -------------------------------------------------------------------------- */
604
Len Brown4be44fc2005-08-05 00:44:28 -0400605static int __init acpi_bus_init_irq(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606{
Len Brown4be44fc2005-08-05 00:44:28 -0400607 acpi_status status = AE_OK;
608 union acpi_object arg = { ACPI_TYPE_INTEGER };
609 struct acpi_object_list arg_list = { 1, &arg };
610 char *message = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500613 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 * Let the system know what interrupt model we are using by
615 * evaluating the \_PIC object, if exists.
616 */
617
618 switch (acpi_irq_model) {
619 case ACPI_IRQ_MODEL_PIC:
620 message = "PIC";
621 break;
622 case ACPI_IRQ_MODEL_IOAPIC:
623 message = "IOAPIC";
624 break;
625 case ACPI_IRQ_MODEL_IOSAPIC:
626 message = "IOSAPIC";
627 break;
John Keller3948ec92006-12-22 11:50:04 -0600628 case ACPI_IRQ_MODEL_PLATFORM:
629 message = "platform specific model";
630 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 default:
632 printk(KERN_WARNING PREFIX "Unknown interrupt routing model\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400633 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 }
635
636 printk(KERN_INFO PREFIX "Using %s for interrupt routing\n", message);
637
638 arg.integer.value = acpi_irq_model;
639
640 status = acpi_evaluate_object(NULL, "\\_PIC", &arg_list, NULL);
641 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400642 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PIC"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400643 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 }
645
Patrick Mocheld550d982006-06-27 00:41:40 -0400646 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647}
648
Bob Moore67a119f2008-06-10 13:42:13 +0800649u8 acpi_gbl_permanent_mmap;
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300650
651
Len Brown4be44fc2005-08-05 00:44:28 -0400652void __init acpi_early_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653{
Len Brown4be44fc2005-08-05 00:44:28 -0400654 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
656 if (acpi_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -0400657 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Bob Moore616861242006-03-17 16:44:00 -0500659 printk(KERN_INFO PREFIX "Core revision %08x\n", ACPI_CA_VERSION);
660
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 /* enable workarounds, unless strict ACPI spec. compliance */
662 if (!acpi_strict)
663 acpi_gbl_enable_interpreter_slack = TRUE;
664
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300665 acpi_gbl_permanent_mmap = 1;
666
667 status = acpi_reallocate_root_table();
668 if (ACPI_FAILURE(status)) {
669 printk(KERN_ERR PREFIX
670 "Unable to reallocate ACPI tables\n");
671 goto error0;
672 }
673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 status = acpi_initialize_subsystem();
675 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400676 printk(KERN_ERR PREFIX
677 "Unable to initialize the ACPI Interpreter\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 goto error0;
679 }
680
681 status = acpi_load_tables();
682 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400683 printk(KERN_ERR PREFIX
684 "Unable to load the System Description Tables\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 goto error0;
686 }
687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688#ifdef CONFIG_X86
689 if (!acpi_ioapic) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 /* compatible (0) means level (3) */
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300691 if (!(acpi_sci_flags & ACPI_MADT_TRIGGER_MASK)) {
692 acpi_sci_flags &= ~ACPI_MADT_TRIGGER_MASK;
693 acpi_sci_flags |= ACPI_MADT_TRIGGER_LEVEL;
694 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 /* Set PIC-mode SCI trigger type */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300696 acpi_pic_sci_set_trigger(acpi_gbl_FADT.sci_interrupt,
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300697 (acpi_sci_flags & ACPI_MADT_TRIGGER_MASK) >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 /*
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300700 * now that acpi_gbl_FADT is initialized,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 * update it with result from INT_SRC_OVR parsing
702 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300703 acpi_gbl_FADT.sci_interrupt = acpi_sci_override_gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 }
705#endif
706
Len Brown4be44fc2005-08-05 00:44:28 -0400707 status =
708 acpi_enable_subsystem(~
709 (ACPI_NO_HARDWARE_INIT |
710 ACPI_NO_ACPI_ENABLE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 if (ACPI_FAILURE(status)) {
712 printk(KERN_ERR PREFIX "Unable to enable ACPI\n");
713 goto error0;
714 }
715
Patrick Mocheld550d982006-06-27 00:41:40 -0400716 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Len Brown4be44fc2005-08-05 00:44:28 -0400718 error0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 disable_acpi();
Patrick Mocheld550d982006-06-27 00:41:40 -0400720 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721}
722
Len Brown4be44fc2005-08-05 00:44:28 -0400723static int __init acpi_bus_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724{
Len Brown4be44fc2005-08-05 00:44:28 -0400725 int result = 0;
726 acpi_status status = AE_OK;
727 extern acpi_status acpi_os_initialize1(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730 status = acpi_os_initialize1();
731
Len Brown4be44fc2005-08-05 00:44:28 -0400732 status =
733 acpi_enable_subsystem(ACPI_NO_HARDWARE_INIT | ACPI_NO_ACPI_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400735 printk(KERN_ERR PREFIX
736 "Unable to start the ACPI Interpreter\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 goto error1;
738 }
739
740 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400741 printk(KERN_ERR PREFIX
742 "Unable to initialize ACPI OS objects\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 goto error1;
744 }
745#ifdef CONFIG_ACPI_EC
746 /*
747 * ACPI 2.0 requires the EC driver to be loaded and work before
748 * the EC device is found in the namespace (i.e. before acpi_initialize_objects()
749 * is called).
750 *
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500751 * This is accomplished by looking for the ECDT table, and getting
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 * the EC parameters out of that.
753 */
754 status = acpi_ec_ecdt_probe();
755 /* Ignore result. Not having an ECDT is not fatal. */
756#endif
757
758 status = acpi_initialize_objects(ACPI_FULL_INITIALIZATION);
759 if (ACPI_FAILURE(status)) {
760 printk(KERN_ERR PREFIX "Unable to initialize ACPI objects\n");
761 goto error1;
762 }
763
764 printk(KERN_INFO PREFIX "Interpreter enabled\n");
765
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500766 /* Initialize sleep structures */
767 acpi_sleep_init();
768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 /*
770 * Get the system interrupt model and evaluate \_PIC.
771 */
772 result = acpi_bus_init_irq();
773 if (result)
774 goto error1;
775
776 /*
777 * Register the for all standard device notifications.
778 */
Len Brown4be44fc2005-08-05 00:44:28 -0400779 status =
780 acpi_install_notify_handler(ACPI_ROOT_OBJECT, ACPI_SYSTEM_NOTIFY,
781 &acpi_bus_notify, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400783 printk(KERN_ERR PREFIX
784 "Unable to register for device notifications\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 goto error1;
786 }
787
788 /*
789 * Create the top ACPI proc directory
790 */
791 acpi_root_dir = proc_mkdir(ACPI_BUS_FILE_ROOT, NULL);
792
Patrick Mocheld550d982006-06-27 00:41:40 -0400793 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
795 /* Mimic structured exception handling */
Len Brown4be44fc2005-08-05 00:44:28 -0400796 error1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 acpi_terminate();
Patrick Mocheld550d982006-06-27 00:41:40 -0400798 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799}
800
Greg Kroah-Hartman99e0d2f2007-11-02 16:19:59 -0700801struct kobject *acpi_kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
Len Brown4be44fc2005-08-05 00:44:28 -0400803static int __init acpi_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804{
Len Brown4be44fc2005-08-05 00:44:28 -0400805 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 if (acpi_disabled) {
809 printk(KERN_INFO PREFIX "Interpreter disabled.\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400810 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 }
812
Greg Kroah-Hartmanf62ed9e2007-11-05 13:16:15 -0800813 acpi_kobj = kobject_create_and_add("acpi", firmware_kobj);
Greg Kroah-Hartman99e0d2f2007-11-02 16:19:59 -0700814 if (!acpi_kobj) {
Harvey Harrison96b2dd12008-03-05 18:24:51 -0800815 printk(KERN_WARNING "%s: kset create error\n", __func__);
Greg Kroah-Hartman99e0d2f2007-11-02 16:19:59 -0700816 acpi_kobj = NULL;
817 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819 result = acpi_bus_init();
820
821 if (!result) {
Robert Hancock7752d5c2008-02-15 01:27:20 -0800822 pci_mmcfg_late_init();
Len Brown9f9adec2007-12-13 17:38:03 -0500823 if (!(pm_flags & PM_APM))
824 pm_flags |= PM_ACPI;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 else {
Len Brown4be44fc2005-08-05 00:44:28 -0400826 printk(KERN_INFO PREFIX
827 "APM is already active, exiting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 disable_acpi();
829 result = -ENODEV;
830 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 } else
832 disable_acpi();
833
Patrick Mocheld550d982006-06-27 00:41:40 -0400834 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835}
836
837subsys_initcall(acpi_init);