blob: 2d1955c118337fae68004ccaf3f7d3f3238b9cba [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
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
Len Brown4be44fc2005-08-05 00:44:28 -040044struct acpi_device *acpi_root;
45struct proc_dir_entry *acpi_root_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046EXPORT_SYMBOL(acpi_root_dir);
47
48#define STRUCT_TO_INT(s) (*((int*)&s))
49
50/* --------------------------------------------------------------------------
51 Device Management
52 -------------------------------------------------------------------------- */
53
Len Brown4be44fc2005-08-05 00:44:28 -040054int acpi_bus_get_device(acpi_handle handle, struct acpi_device **device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055{
Len Brown4be44fc2005-08-05 00:44:28 -040056 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -040060 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62 /* TBD: Support fixed-feature devices */
63
Len Brown4be44fc2005-08-05 00:44:28 -040064 status = acpi_get_data(handle, acpi_bus_data_handler, (void **)device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 if (ACPI_FAILURE(status) || !*device) {
Len Brown9805cb72006-07-25 13:30:57 -040066 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No context for object [%p]\n",
67 handle));
Patrick Mocheld550d982006-06-27 00:41:40 -040068 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 }
70
Patrick Mocheld550d982006-06-27 00:41:40 -040071 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072}
Len Brown4be44fc2005-08-05 00:44:28 -040073
Linus Torvalds1da177e2005-04-16 15:20:36 -070074EXPORT_SYMBOL(acpi_bus_get_device);
75
Len Brown4be44fc2005-08-05 00:44:28 -040076int acpi_bus_get_status(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
Len Brown4be44fc2005-08-05 00:44:28 -040078 acpi_status status = AE_OK;
79 unsigned long sta = 0;
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -040083 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85 /*
86 * Evaluate _STA if present.
87 */
88 if (device->flags.dynamic_status) {
Len Brown4be44fc2005-08-05 00:44:28 -040089 status =
90 acpi_evaluate_integer(device->handle, "_STA", NULL, &sta);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -040092 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -040093 STRUCT_TO_INT(device->status) = (int)sta;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 }
95
96 /*
97 * Otherwise we assume the status of our parent (unless we don't
98 * have one, in which case status is implied).
99 */
100 else if (device->parent)
101 device->status = device->parent->status;
102 else
Bjorn Helgaas0c0e8922007-04-25 14:20:58 -0400103 STRUCT_TO_INT(device->status) =
104 ACPI_STA_DEVICE_PRESENT | ACPI_STA_DEVICE_ENABLED |
105 ACPI_STA_DEVICE_UI | ACPI_STA_DEVICE_FUNCTIONING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107 if (device->status.functional && !device->status.present) {
108 printk(KERN_WARNING PREFIX "Device [%s] status [%08x]: "
Len Brown4be44fc2005-08-05 00:44:28 -0400109 "functional but not present; setting present\n",
110 device->pnp.bus_id, (u32) STRUCT_TO_INT(device->status));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 device->status.present = 1;
112 }
113
Len Brown4be44fc2005-08-05 00:44:28 -0400114 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] status [%08x]\n",
115 device->pnp.bus_id,
116 (u32) STRUCT_TO_INT(device->status)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Patrick Mocheld550d982006-06-27 00:41:40 -0400118 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Len Brown4be44fc2005-08-05 00:44:28 -0400121EXPORT_SYMBOL(acpi_bus_get_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Zhang Rui20733932008-01-17 15:51:21 +0800123void acpi_bus_private_data_handler(acpi_handle handle,
124 u32 function, void *context)
125{
126 return;
127}
128EXPORT_SYMBOL(acpi_bus_private_data_handler);
129
130int acpi_bus_get_private_data(acpi_handle handle, void **data)
131{
132 acpi_status status = AE_OK;
133
134 if (!*data)
135 return -EINVAL;
136
137 status = acpi_get_data(handle, acpi_bus_private_data_handler, data);
138 if (ACPI_FAILURE(status) || !*data) {
139 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No context for object [%p]\n",
140 handle));
141 return -ENODEV;
142 }
143
144 return 0;
145}
146EXPORT_SYMBOL(acpi_bus_get_private_data);
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148/* --------------------------------------------------------------------------
149 Power Management
150 -------------------------------------------------------------------------- */
151
Len Brown4be44fc2005-08-05 00:44:28 -0400152int acpi_bus_get_power(acpi_handle handle, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
Len Brown4be44fc2005-08-05 00:44:28 -0400154 int result = 0;
155 acpi_status status = 0;
156 struct acpi_device *device = NULL;
157 unsigned long psc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160 result = acpi_bus_get_device(handle, &device);
161 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400162 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 *state = ACPI_STATE_UNKNOWN;
165
166 if (!device->flags.power_manageable) {
167 /* TBD: Non-recursive algorithm for walking up hierarchy */
168 if (device->parent)
169 *state = device->parent->power.state;
170 else
171 *state = ACPI_STATE_D0;
Len Brown4be44fc2005-08-05 00:44:28 -0400172 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 /*
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500174 * Get the device's power state either directly (via _PSC) or
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 * indirectly (via power resources).
176 */
177 if (device->power.flags.explicit_get) {
Len Brown4be44fc2005-08-05 00:44:28 -0400178 status = acpi_evaluate_integer(device->handle, "_PSC",
179 NULL, &psc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400181 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400182 device->power.state = (int)psc;
183 } else if (device->power.flags.power_resources) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 result = acpi_power_get_inferred_state(device);
185 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400186 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 }
188
189 *state = device->power.state;
190 }
191
192 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] power state is D%d\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400193 device->pnp.bus_id, device->power.state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Patrick Mocheld550d982006-06-27 00:41:40 -0400195 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
Len Brown4be44fc2005-08-05 00:44:28 -0400197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198EXPORT_SYMBOL(acpi_bus_get_power);
199
Len Brown4be44fc2005-08-05 00:44:28 -0400200int acpi_bus_set_power(acpi_handle handle, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
Len Brown4be44fc2005-08-05 00:44:28 -0400202 int result = 0;
203 acpi_status status = AE_OK;
204 struct acpi_device *device = NULL;
205 char object_name[5] = { '_', 'P', 'S', '0' + state, '\0' };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208 result = acpi_bus_get_device(handle, &device);
209 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400210 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212 if ((state < ACPI_STATE_D0) || (state > ACPI_STATE_D3))
Patrick Mocheld550d982006-06-27 00:41:40 -0400213 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215 /* Make sure this is a valid target state */
216
217 if (!device->flags.power_manageable) {
Len Brown9805cb72006-07-25 13:30:57 -0400218 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device `[%s]' is not power manageable\n",
Greg Kroah-Hartman19c38de2007-09-12 15:06:57 -0700219 kobject_name(&device->dev.kobj)));
Patrick Mocheld550d982006-06-27 00:41:40 -0400220 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 }
David Shaohua Lib9131002005-03-19 00:16:18 -0500222 /*
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400223 * Get device's current power state
David Shaohua Lib9131002005-03-19 00:16:18 -0500224 */
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400225 acpi_bus_get_power(device->handle, &device->power.state);
Len Brownec683732008-01-23 22:41:20 -0500226 if ((state == device->power.state) && !device->flags.force_power_state) {
Konstantin Karasyovb1028c52007-02-16 02:23:07 -0500227 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device is already at D%d\n",
228 state));
229 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 }
Konstantin Karasyovb1028c52007-02-16 02:23:07 -0500231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 if (!device->power.states[state].flags.valid) {
Len Browncece9292006-06-26 23:04:31 -0400233 printk(KERN_WARNING PREFIX "Device does not support D%d\n", state);
Patrick Mocheld550d982006-06-27 00:41:40 -0400234 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 }
236 if (device->parent && (state < device->parent->power.state)) {
Len Browncece9292006-06-26 23:04:31 -0400237 printk(KERN_WARNING PREFIX
Thomas Renningera6fc6722006-06-26 23:58:43 -0400238 "Cannot set device to a higher-powered"
Len Browncece9292006-06-26 23:04:31 -0400239 " state than parent\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400240 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 }
242
243 /*
244 * Transition Power
245 * ----------------
246 * On transitions to a high-powered state we first apply power (via
247 * power resources) then evalute _PSx. Conversly for transitions to
248 * a lower-powered state.
David Shaohua Lib9131002005-03-19 00:16:18 -0500249 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 if (state < device->power.state) {
251 if (device->power.flags.power_resources) {
252 result = acpi_power_transition(device, state);
253 if (result)
254 goto end;
255 }
256 if (device->power.states[state].flags.explicit_set) {
Len Brown4be44fc2005-08-05 00:44:28 -0400257 status = acpi_evaluate_object(device->handle,
258 object_name, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 if (ACPI_FAILURE(status)) {
260 result = -ENODEV;
261 goto end;
262 }
263 }
Len Brown4be44fc2005-08-05 00:44:28 -0400264 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 if (device->power.states[state].flags.explicit_set) {
Len Brown4be44fc2005-08-05 00:44:28 -0400266 status = acpi_evaluate_object(device->handle,
267 object_name, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 if (ACPI_FAILURE(status)) {
269 result = -ENODEV;
270 goto end;
271 }
272 }
273 if (device->power.flags.power_resources) {
274 result = acpi_power_transition(device, state);
275 if (result)
276 goto end;
277 }
278 }
279
Len Brown4be44fc2005-08-05 00:44:28 -0400280 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 if (result)
Len Browncece9292006-06-26 23:04:31 -0400282 printk(KERN_WARNING PREFIX
283 "Transitioning device [%s] to D%d\n",
284 device->pnp.bus_id, state);
Shaohua Li5e321322007-10-11 23:53:58 +0200285 else {
286 device->power.state = state;
Len Brown4be44fc2005-08-05 00:44:28 -0400287 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
288 "Device [%s] transitioned to D%d\n",
289 device->pnp.bus_id, state));
Shaohua Li5e321322007-10-11 23:53:58 +0200290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Patrick Mocheld550d982006-06-27 00:41:40 -0400292 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293}
Len Brown4be44fc2005-08-05 00:44:28 -0400294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295EXPORT_SYMBOL(acpi_bus_set_power);
296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297/* --------------------------------------------------------------------------
298 Event Management
299 -------------------------------------------------------------------------- */
300
Len Brown14e04fb2007-08-23 15:20:26 -0400301#ifdef CONFIG_ACPI_PROC_EVENT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302static DEFINE_SPINLOCK(acpi_bus_event_lock);
303
304LIST_HEAD(acpi_bus_event_list);
305DECLARE_WAIT_QUEUE_HEAD(acpi_bus_event_queue);
306
Len Brown4be44fc2005-08-05 00:44:28 -0400307extern int event_is_open;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Alexey Starikovskiy8db85d42007-09-26 19:43:16 +0400309int acpi_bus_generate_proc_event4(const char *device_class, const char *bus_id, u8 type, int data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
Alexey Starikovskiy8db85d42007-09-26 19:43:16 +0400311 struct acpi_bus_event *event;
Len Brown4be44fc2005-08-05 00:44:28 -0400312 unsigned long flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 /* drop event on the floor if no one's listening */
315 if (!event_is_open)
Patrick Mocheld550d982006-06-27 00:41:40 -0400316 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 event = kmalloc(sizeof(struct acpi_bus_event), GFP_ATOMIC);
319 if (!event)
Patrick Mocheld550d982006-06-27 00:41:40 -0400320 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Alexey Starikovskiy8db85d42007-09-26 19:43:16 +0400322 strcpy(event->device_class, device_class);
323 strcpy(event->bus_id, bus_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 event->type = type;
325 event->data = data;
326
327 spin_lock_irqsave(&acpi_bus_event_lock, flags);
328 list_add_tail(&event->node, &acpi_bus_event_list);
329 spin_unlock_irqrestore(&acpi_bus_event_lock, flags);
330
331 wake_up_interruptible(&acpi_bus_event_queue);
332
Patrick Mocheld550d982006-06-27 00:41:40 -0400333 return 0;
Alexey Starikovskiy8db85d42007-09-26 19:43:16 +0400334
335}
336
337EXPORT_SYMBOL_GPL(acpi_bus_generate_proc_event4);
338
339int acpi_bus_generate_proc_event(struct acpi_device *device, u8 type, int data)
340{
341 if (!device)
342 return -EINVAL;
343 return acpi_bus_generate_proc_event4(device->pnp.device_class,
344 device->pnp.bus_id, type, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345}
Len Brown4be44fc2005-08-05 00:44:28 -0400346
Len Brown14e04fb2007-08-23 15:20:26 -0400347EXPORT_SYMBOL(acpi_bus_generate_proc_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Len Brown4be44fc2005-08-05 00:44:28 -0400349int acpi_bus_receive_event(struct acpi_bus_event *event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
Len Brown4be44fc2005-08-05 00:44:28 -0400351 unsigned long flags = 0;
352 struct acpi_bus_event *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
354 DECLARE_WAITQUEUE(wait, current);
355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 if (!event)
Patrick Mocheld550d982006-06-27 00:41:40 -0400358 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 if (list_empty(&acpi_bus_event_list)) {
361
362 set_current_state(TASK_INTERRUPTIBLE);
363 add_wait_queue(&acpi_bus_event_queue, &wait);
364
365 if (list_empty(&acpi_bus_event_list))
366 schedule();
367
368 remove_wait_queue(&acpi_bus_event_queue, &wait);
369 set_current_state(TASK_RUNNING);
370
371 if (signal_pending(current))
Patrick Mocheld550d982006-06-27 00:41:40 -0400372 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 }
374
375 spin_lock_irqsave(&acpi_bus_event_lock, flags);
Chuck Ebbertf0a37e02008-04-15 14:34:47 -0700376 if (!list_empty(&acpi_bus_event_list)) {
377 entry = list_entry(acpi_bus_event_list.next,
378 struct acpi_bus_event, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 list_del(&entry->node);
Chuck Ebbertf0a37e02008-04-15 14:34:47 -0700380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 spin_unlock_irqrestore(&acpi_bus_event_lock, flags);
382
383 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400384 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386 memcpy(event, entry, sizeof(struct acpi_bus_event));
387
388 kfree(entry);
389
Patrick Mocheld550d982006-06-27 00:41:40 -0400390 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Len Brown14e04fb2007-08-23 15:20:26 -0400393#endif /* CONFIG_ACPI_PROC_EVENT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395/* --------------------------------------------------------------------------
396 Notification Handling
397 -------------------------------------------------------------------------- */
398
399static int
Len Brown4be44fc2005-08-05 00:44:28 -0400400acpi_bus_check_device(struct acpi_device *device, int *status_changed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401{
Len Brown4be44fc2005-08-05 00:44:28 -0400402 acpi_status status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 struct acpi_device_status old_status;
404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
406 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400407 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409 if (status_changed)
410 *status_changed = 0;
411
412 old_status = device->status;
413
414 /*
415 * Make sure this device's parent is present before we go about
416 * messing with the device.
417 */
418 if (device->parent && !device->parent->status.present) {
419 device->status = device->parent->status;
420 if (STRUCT_TO_INT(old_status) != STRUCT_TO_INT(device->status)) {
421 if (status_changed)
422 *status_changed = 1;
423 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400424 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 }
426
427 status = acpi_bus_get_status(device);
428 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400429 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
431 if (STRUCT_TO_INT(old_status) == STRUCT_TO_INT(device->status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400432 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434 if (status_changed)
435 *status_changed = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 /*
438 * Device Insertion/Removal
439 */
440 if ((device->status.present) && !(old_status.present)) {
441 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device insertion detected\n"));
442 /* TBD: Handle device insertion */
Len Brown4be44fc2005-08-05 00:44:28 -0400443 } else if (!(device->status.present) && (old_status.present)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device removal detected\n"));
445 /* TBD: Handle device removal */
446 }
447
Patrick Mocheld550d982006-06-27 00:41:40 -0400448 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449}
450
Len Brown4be44fc2005-08-05 00:44:28 -0400451static int acpi_bus_check_scope(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
Len Brown4be44fc2005-08-05 00:44:28 -0400453 int result = 0;
454 int status_changed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
457 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400458 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
460 /* Status Change? */
461 result = acpi_bus_check_device(device, &status_changed);
462 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400463 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465 if (!status_changed)
Patrick Mocheld550d982006-06-27 00:41:40 -0400466 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
468 /*
469 * TBD: Enumerate child devices within this device's scope and
470 * run acpi_bus_check_device()'s on them.
471 */
472
Patrick Mocheld550d982006-06-27 00:41:40 -0400473 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474}
475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476/**
477 * acpi_bus_notify
478 * ---------------
479 * Callback for all 'system-level' device notifications (values 0x00-0x7F).
480 */
Len Brown4be44fc2005-08-05 00:44:28 -0400481static void acpi_bus_notify(acpi_handle handle, u32 type, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
Len Brown4be44fc2005-08-05 00:44:28 -0400483 int result = 0;
484 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487 if (acpi_bus_get_device(handle, &device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400488 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
490 switch (type) {
491
492 case ACPI_NOTIFY_BUS_CHECK:
Len Brown4be44fc2005-08-05 00:44:28 -0400493 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
494 "Received BUS CHECK notification for device [%s]\n",
495 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 result = acpi_bus_check_scope(device);
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500497 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 * TBD: We'll need to outsource certain events to non-ACPI
Len Brown4be44fc2005-08-05 00:44:28 -0400499 * drivers via the device manager (device.c).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 */
501 break;
502
503 case ACPI_NOTIFY_DEVICE_CHECK:
Len Brown4be44fc2005-08-05 00:44:28 -0400504 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
505 "Received DEVICE CHECK notification for device [%s]\n",
506 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 result = acpi_bus_check_device(device, NULL);
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500508 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 * TBD: We'll need to outsource certain events to non-ACPI
Len Brown4be44fc2005-08-05 00:44:28 -0400510 * drivers via the device manager (device.c).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 */
512 break;
513
514 case ACPI_NOTIFY_DEVICE_WAKE:
Len Brown4be44fc2005-08-05 00:44:28 -0400515 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
516 "Received DEVICE WAKE notification for device [%s]\n",
517 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 /* TBD */
519 break;
520
521 case ACPI_NOTIFY_EJECT_REQUEST:
Len Brown4be44fc2005-08-05 00:44:28 -0400522 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
523 "Received EJECT REQUEST notification for device [%s]\n",
524 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 /* TBD */
526 break;
527
528 case ACPI_NOTIFY_DEVICE_CHECK_LIGHT:
Len Brown4be44fc2005-08-05 00:44:28 -0400529 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
530 "Received DEVICE CHECK LIGHT notification for device [%s]\n",
531 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 /* TBD: Exactly what does 'light' mean? */
533 break;
534
535 case ACPI_NOTIFY_FREQUENCY_MISMATCH:
Len Brown4be44fc2005-08-05 00:44:28 -0400536 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
537 "Received FREQUENCY MISMATCH notification for device [%s]\n",
538 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 /* TBD */
540 break;
541
542 case ACPI_NOTIFY_BUS_MODE_MISMATCH:
Len Brown4be44fc2005-08-05 00:44:28 -0400543 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
544 "Received BUS MODE MISMATCH notification for device [%s]\n",
545 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 /* TBD */
547 break;
548
549 case ACPI_NOTIFY_POWER_FAULT:
Len Brown4be44fc2005-08-05 00:44:28 -0400550 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
551 "Received POWER FAULT notification for device [%s]\n",
552 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 /* TBD */
554 break;
555
556 default:
Len Brown4be44fc2005-08-05 00:44:28 -0400557 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
558 "Received unknown/unsupported notification [%08x]\n",
559 type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 break;
561 }
562
Patrick Mocheld550d982006-06-27 00:41:40 -0400563 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564}
565
566/* --------------------------------------------------------------------------
567 Initialization/Cleanup
568 -------------------------------------------------------------------------- */
569
Len Brown4be44fc2005-08-05 00:44:28 -0400570static int __init acpi_bus_init_irq(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
Len Brown4be44fc2005-08-05 00:44:28 -0400572 acpi_status status = AE_OK;
573 union acpi_object arg = { ACPI_TYPE_INTEGER };
574 struct acpi_object_list arg_list = { 1, &arg };
575 char *message = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500578 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 * Let the system know what interrupt model we are using by
580 * evaluating the \_PIC object, if exists.
581 */
582
583 switch (acpi_irq_model) {
584 case ACPI_IRQ_MODEL_PIC:
585 message = "PIC";
586 break;
587 case ACPI_IRQ_MODEL_IOAPIC:
588 message = "IOAPIC";
589 break;
590 case ACPI_IRQ_MODEL_IOSAPIC:
591 message = "IOSAPIC";
592 break;
John Keller3948ec92006-12-22 11:50:04 -0600593 case ACPI_IRQ_MODEL_PLATFORM:
594 message = "platform specific model";
595 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 default:
597 printk(KERN_WARNING PREFIX "Unknown interrupt routing model\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400598 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 }
600
601 printk(KERN_INFO PREFIX "Using %s for interrupt routing\n", message);
602
603 arg.integer.value = acpi_irq_model;
604
605 status = acpi_evaluate_object(NULL, "\\_PIC", &arg_list, NULL);
606 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400607 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PIC"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400608 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 }
610
Patrick Mocheld550d982006-06-27 00:41:40 -0400611 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612}
613
Alexey Starikovskiyad718602007-02-02 19:48:19 +0300614acpi_native_uint acpi_gbl_permanent_mmap;
615
616
Len Brown4be44fc2005-08-05 00:44:28 -0400617void __init acpi_early_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618{
Len Brown4be44fc2005-08-05 00:44:28 -0400619 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
621 if (acpi_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -0400622 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Bob Moore61686122006-03-17 16:44:00 -0500624 printk(KERN_INFO PREFIX "Core revision %08x\n", ACPI_CA_VERSION);
625
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 /* enable workarounds, unless strict ACPI spec. compliance */
627 if (!acpi_strict)
628 acpi_gbl_enable_interpreter_slack = TRUE;
629
Alexey Starikovskiyad718602007-02-02 19:48:19 +0300630 acpi_gbl_permanent_mmap = 1;
631
632 status = acpi_reallocate_root_table();
633 if (ACPI_FAILURE(status)) {
634 printk(KERN_ERR PREFIX
635 "Unable to reallocate ACPI tables\n");
636 goto error0;
637 }
638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 status = acpi_initialize_subsystem();
640 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400641 printk(KERN_ERR PREFIX
642 "Unable to initialize the ACPI Interpreter\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 goto error0;
644 }
645
646 status = acpi_load_tables();
647 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400648 printk(KERN_ERR PREFIX
649 "Unable to load the System Description Tables\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 goto error0;
651 }
652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653#ifdef CONFIG_X86
654 if (!acpi_ioapic) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 /* compatible (0) means level (3) */
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300656 if (!(acpi_sci_flags & ACPI_MADT_TRIGGER_MASK)) {
657 acpi_sci_flags &= ~ACPI_MADT_TRIGGER_MASK;
658 acpi_sci_flags |= ACPI_MADT_TRIGGER_LEVEL;
659 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 /* Set PIC-mode SCI trigger type */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300661 acpi_pic_sci_set_trigger(acpi_gbl_FADT.sci_interrupt,
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300662 (acpi_sci_flags & ACPI_MADT_TRIGGER_MASK) >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 /*
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300665 * now that acpi_gbl_FADT is initialized,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 * update it with result from INT_SRC_OVR parsing
667 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300668 acpi_gbl_FADT.sci_interrupt = acpi_sci_override_gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 }
670#endif
671
Len Brown4be44fc2005-08-05 00:44:28 -0400672 status =
673 acpi_enable_subsystem(~
674 (ACPI_NO_HARDWARE_INIT |
675 ACPI_NO_ACPI_ENABLE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 if (ACPI_FAILURE(status)) {
677 printk(KERN_ERR PREFIX "Unable to enable ACPI\n");
678 goto error0;
679 }
680
Patrick Mocheld550d982006-06-27 00:41:40 -0400681 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Len Brown4be44fc2005-08-05 00:44:28 -0400683 error0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 disable_acpi();
Patrick Mocheld550d982006-06-27 00:41:40 -0400685 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686}
687
Len Brown4be44fc2005-08-05 00:44:28 -0400688static int __init acpi_bus_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
Len Brown4be44fc2005-08-05 00:44:28 -0400690 int result = 0;
691 acpi_status status = AE_OK;
692 extern acpi_status acpi_os_initialize1(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
695 status = acpi_os_initialize1();
696
Len Brown4be44fc2005-08-05 00:44:28 -0400697 status =
698 acpi_enable_subsystem(ACPI_NO_HARDWARE_INIT | ACPI_NO_ACPI_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400700 printk(KERN_ERR PREFIX
701 "Unable to start the ACPI Interpreter\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 goto error1;
703 }
704
705 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400706 printk(KERN_ERR PREFIX
707 "Unable to initialize ACPI OS objects\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 goto error1;
709 }
710#ifdef CONFIG_ACPI_EC
711 /*
712 * ACPI 2.0 requires the EC driver to be loaded and work before
713 * the EC device is found in the namespace (i.e. before acpi_initialize_objects()
714 * is called).
715 *
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500716 * This is accomplished by looking for the ECDT table, and getting
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 * the EC parameters out of that.
718 */
719 status = acpi_ec_ecdt_probe();
720 /* Ignore result. Not having an ECDT is not fatal. */
721#endif
722
723 status = acpi_initialize_objects(ACPI_FULL_INITIALIZATION);
724 if (ACPI_FAILURE(status)) {
725 printk(KERN_ERR PREFIX "Unable to initialize ACPI objects\n");
726 goto error1;
727 }
728
729 printk(KERN_INFO PREFIX "Interpreter enabled\n");
730
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500731 /* Initialize sleep structures */
732 acpi_sleep_init();
733
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 /*
735 * Get the system interrupt model and evaluate \_PIC.
736 */
737 result = acpi_bus_init_irq();
738 if (result)
739 goto error1;
740
741 /*
742 * Register the for all standard device notifications.
743 */
Len Brown4be44fc2005-08-05 00:44:28 -0400744 status =
745 acpi_install_notify_handler(ACPI_ROOT_OBJECT, ACPI_SYSTEM_NOTIFY,
746 &acpi_bus_notify, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400748 printk(KERN_ERR PREFIX
749 "Unable to register for device notifications\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 goto error1;
751 }
752
753 /*
754 * Create the top ACPI proc directory
755 */
756 acpi_root_dir = proc_mkdir(ACPI_BUS_FILE_ROOT, NULL);
757
Patrick Mocheld550d982006-06-27 00:41:40 -0400758 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
760 /* Mimic structured exception handling */
Len Brown4be44fc2005-08-05 00:44:28 -0400761 error1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 acpi_terminate();
Patrick Mocheld550d982006-06-27 00:41:40 -0400763 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764}
765
Greg Kroah-Hartman99e0d2f2007-11-02 16:19:59 -0700766struct kobject *acpi_kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Len Brown4be44fc2005-08-05 00:44:28 -0400768static int __init acpi_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
Len Brown4be44fc2005-08-05 00:44:28 -0400770 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 if (acpi_disabled) {
774 printk(KERN_INFO PREFIX "Interpreter disabled.\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400775 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 }
777
Greg Kroah-Hartmanf62ed9e2007-11-05 13:16:15 -0800778 acpi_kobj = kobject_create_and_add("acpi", firmware_kobj);
Greg Kroah-Hartman99e0d2f2007-11-02 16:19:59 -0700779 if (!acpi_kobj) {
Harvey Harrison96b2dd12008-03-05 18:24:51 -0800780 printk(KERN_WARNING "%s: kset create error\n", __func__);
Greg Kroah-Hartman99e0d2f2007-11-02 16:19:59 -0700781 acpi_kobj = NULL;
782 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
784 result = acpi_bus_init();
785
786 if (!result) {
Len Brown9f9adec2007-12-13 17:38:03 -0500787 if (!(pm_flags & PM_APM))
788 pm_flags |= PM_ACPI;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 else {
Len Brown4be44fc2005-08-05 00:44:28 -0400790 printk(KERN_INFO PREFIX
791 "APM is already active, exiting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 disable_acpi();
793 result = -ENODEV;
794 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 } else
796 disable_acpi();
797
Patrick Mocheld550d982006-06-27 00:41:40 -0400798 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799}
800
801subsys_initcall(acpi_init);