blob: 0dc44945725ef1c53e0ae0c5f9ebbbd220256675 [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 */
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400226 acpi_bus_get_power(device->handle, &device->power.state);
Len Brownec683732008-01-23 22:41:20 -0500227 if ((state == device->power.state) && !device->flags.force_power_state) {
Konstantin Karasyovb1028c52007-02-16 02:23:07 -0500228 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device is already at D%d\n",
229 state));
230 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 }
Konstantin Karasyovb1028c52007-02-16 02:23:07 -0500232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 if (!device->power.states[state].flags.valid) {
Len Browncece9292006-06-26 23:04:31 -0400234 printk(KERN_WARNING PREFIX "Device does not support D%d\n", state);
Patrick Mocheld550d982006-06-27 00:41:40 -0400235 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
237 if (device->parent && (state < device->parent->power.state)) {
Len Browncece9292006-06-26 23:04:31 -0400238 printk(KERN_WARNING PREFIX
Thomas Renningera6fc6722006-06-26 23:58:43 -0400239 "Cannot set device to a higher-powered"
Len Browncece9292006-06-26 23:04:31 -0400240 " state than parent\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400241 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 }
243
244 /*
245 * Transition Power
246 * ----------------
247 * On transitions to a high-powered state we first apply power (via
248 * power resources) then evalute _PSx. Conversly for transitions to
249 * a lower-powered state.
David Shaohua Lib9131002005-03-19 00:16:18 -0500250 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 if (state < device->power.state) {
252 if (device->power.flags.power_resources) {
253 result = acpi_power_transition(device, state);
254 if (result)
255 goto end;
256 }
257 if (device->power.states[state].flags.explicit_set) {
Len Brown4be44fc2005-08-05 00:44:28 -0400258 status = acpi_evaluate_object(device->handle,
259 object_name, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 if (ACPI_FAILURE(status)) {
261 result = -ENODEV;
262 goto end;
263 }
264 }
Len Brown4be44fc2005-08-05 00:44:28 -0400265 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 if (device->power.states[state].flags.explicit_set) {
Len Brown4be44fc2005-08-05 00:44:28 -0400267 status = acpi_evaluate_object(device->handle,
268 object_name, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 if (ACPI_FAILURE(status)) {
270 result = -ENODEV;
271 goto end;
272 }
273 }
274 if (device->power.flags.power_resources) {
275 result = acpi_power_transition(device, state);
276 if (result)
277 goto end;
278 }
279 }
280
Len Brown4be44fc2005-08-05 00:44:28 -0400281 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 if (result)
Len Browncece9292006-06-26 23:04:31 -0400283 printk(KERN_WARNING PREFIX
284 "Transitioning device [%s] to D%d\n",
285 device->pnp.bus_id, state);
Shaohua Li5e321322007-10-11 23:53:58 +0200286 else {
287 device->power.state = state;
Len Brown4be44fc2005-08-05 00:44:28 -0400288 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
289 "Device [%s] transitioned to D%d\n",
290 device->pnp.bus_id, state));
Shaohua Li5e321322007-10-11 23:53:58 +0200291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Patrick Mocheld550d982006-06-27 00:41:40 -0400293 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294}
Len Brown4be44fc2005-08-05 00:44:28 -0400295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296EXPORT_SYMBOL(acpi_bus_set_power);
297
Rafael J. Wysocki3737b2b2008-07-07 03:30:55 +0200298bool acpi_bus_power_manageable(acpi_handle handle)
299{
300 struct acpi_device *device;
301 int result;
302
303 result = acpi_bus_get_device(handle, &device);
304 return result ? false : device->flags.power_manageable;
305}
306
307EXPORT_SYMBOL(acpi_bus_power_manageable);
308
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200309bool acpi_bus_can_wakeup(acpi_handle handle)
310{
311 struct acpi_device *device;
312 int result;
313
314 result = acpi_bus_get_device(handle, &device);
315 return result ? false : device->wakeup.flags.valid;
316}
317
318EXPORT_SYMBOL(acpi_bus_can_wakeup);
319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320/* --------------------------------------------------------------------------
321 Event Management
322 -------------------------------------------------------------------------- */
323
Len Brown14e04fb2007-08-23 15:20:26 -0400324#ifdef CONFIG_ACPI_PROC_EVENT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325static DEFINE_SPINLOCK(acpi_bus_event_lock);
326
327LIST_HEAD(acpi_bus_event_list);
328DECLARE_WAIT_QUEUE_HEAD(acpi_bus_event_queue);
329
Len Brown4be44fc2005-08-05 00:44:28 -0400330extern int event_is_open;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Alexey Starikovskiy8db85d42007-09-26 19:43:16 +0400332int acpi_bus_generate_proc_event4(const char *device_class, const char *bus_id, u8 type, int data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
Alexey Starikovskiy8db85d42007-09-26 19:43:16 +0400334 struct acpi_bus_event *event;
Len Brown4be44fc2005-08-05 00:44:28 -0400335 unsigned long flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 /* drop event on the floor if no one's listening */
338 if (!event_is_open)
Patrick Mocheld550d982006-06-27 00:41:40 -0400339 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341 event = kmalloc(sizeof(struct acpi_bus_event), GFP_ATOMIC);
342 if (!event)
Patrick Mocheld550d982006-06-27 00:41:40 -0400343 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Alexey Starikovskiy8db85d42007-09-26 19:43:16 +0400345 strcpy(event->device_class, device_class);
346 strcpy(event->bus_id, bus_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 event->type = type;
348 event->data = data;
349
350 spin_lock_irqsave(&acpi_bus_event_lock, flags);
351 list_add_tail(&event->node, &acpi_bus_event_list);
352 spin_unlock_irqrestore(&acpi_bus_event_lock, flags);
353
354 wake_up_interruptible(&acpi_bus_event_queue);
355
Patrick Mocheld550d982006-06-27 00:41:40 -0400356 return 0;
Alexey Starikovskiy8db85d42007-09-26 19:43:16 +0400357
358}
359
360EXPORT_SYMBOL_GPL(acpi_bus_generate_proc_event4);
361
362int acpi_bus_generate_proc_event(struct acpi_device *device, u8 type, int data)
363{
364 if (!device)
365 return -EINVAL;
366 return acpi_bus_generate_proc_event4(device->pnp.device_class,
367 device->pnp.bus_id, type, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368}
Len Brown4be44fc2005-08-05 00:44:28 -0400369
Len Brown14e04fb2007-08-23 15:20:26 -0400370EXPORT_SYMBOL(acpi_bus_generate_proc_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Len Brown4be44fc2005-08-05 00:44:28 -0400372int acpi_bus_receive_event(struct acpi_bus_event *event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
Len Brown4be44fc2005-08-05 00:44:28 -0400374 unsigned long flags = 0;
375 struct acpi_bus_event *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
377 DECLARE_WAITQUEUE(wait, current);
378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380 if (!event)
Patrick Mocheld550d982006-06-27 00:41:40 -0400381 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383 if (list_empty(&acpi_bus_event_list)) {
384
385 set_current_state(TASK_INTERRUPTIBLE);
386 add_wait_queue(&acpi_bus_event_queue, &wait);
387
388 if (list_empty(&acpi_bus_event_list))
389 schedule();
390
391 remove_wait_queue(&acpi_bus_event_queue, &wait);
392 set_current_state(TASK_RUNNING);
393
394 if (signal_pending(current))
Patrick Mocheld550d982006-06-27 00:41:40 -0400395 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 }
397
398 spin_lock_irqsave(&acpi_bus_event_lock, flags);
Chuck Ebbertf0a37e02008-04-15 14:34:47 -0700399 if (!list_empty(&acpi_bus_event_list)) {
400 entry = list_entry(acpi_bus_event_list.next,
401 struct acpi_bus_event, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 list_del(&entry->node);
Chuck Ebbertf0a37e02008-04-15 14:34:47 -0700403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 spin_unlock_irqrestore(&acpi_bus_event_lock, flags);
405
406 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400407 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409 memcpy(event, entry, sizeof(struct acpi_bus_event));
410
411 kfree(entry);
412
Patrick Mocheld550d982006-06-27 00:41:40 -0400413 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Len Brown14e04fb2007-08-23 15:20:26 -0400416#endif /* CONFIG_ACPI_PROC_EVENT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418/* --------------------------------------------------------------------------
419 Notification Handling
420 -------------------------------------------------------------------------- */
421
422static int
Len Brown4be44fc2005-08-05 00:44:28 -0400423acpi_bus_check_device(struct acpi_device *device, int *status_changed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
Len Brown4be44fc2005-08-05 00:44:28 -0400425 acpi_status status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 struct acpi_device_status old_status;
427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
429 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400430 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
432 if (status_changed)
433 *status_changed = 0;
434
435 old_status = device->status;
436
437 /*
438 * Make sure this device's parent is present before we go about
439 * messing with the device.
440 */
441 if (device->parent && !device->parent->status.present) {
442 device->status = device->parent->status;
443 if (STRUCT_TO_INT(old_status) != STRUCT_TO_INT(device->status)) {
444 if (status_changed)
445 *status_changed = 1;
446 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400447 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 }
449
450 status = acpi_bus_get_status(device);
451 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400452 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454 if (STRUCT_TO_INT(old_status) == STRUCT_TO_INT(device->status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400455 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
457 if (status_changed)
458 *status_changed = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 /*
461 * Device Insertion/Removal
462 */
463 if ((device->status.present) && !(old_status.present)) {
464 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device insertion detected\n"));
465 /* TBD: Handle device insertion */
Len Brown4be44fc2005-08-05 00:44:28 -0400466 } else if (!(device->status.present) && (old_status.present)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device removal detected\n"));
468 /* TBD: Handle device removal */
469 }
470
Patrick Mocheld550d982006-06-27 00:41:40 -0400471 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472}
473
Len Brown4be44fc2005-08-05 00:44:28 -0400474static int acpi_bus_check_scope(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
Len Brown4be44fc2005-08-05 00:44:28 -0400476 int result = 0;
477 int status_changed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400481 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
483 /* Status Change? */
484 result = acpi_bus_check_device(device, &status_changed);
485 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400486 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488 if (!status_changed)
Patrick Mocheld550d982006-06-27 00:41:40 -0400489 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
491 /*
492 * TBD: Enumerate child devices within this device's scope and
493 * run acpi_bus_check_device()'s on them.
494 */
495
Patrick Mocheld550d982006-06-27 00:41:40 -0400496 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497}
498
Shaohua Li6bd00a62008-08-28 10:04:29 +0800499static BLOCKING_NOTIFIER_HEAD(acpi_bus_notify_list);
500int register_acpi_bus_notifier(struct notifier_block *nb)
501{
502 return blocking_notifier_chain_register(&acpi_bus_notify_list, nb);
503}
504EXPORT_SYMBOL_GPL(register_acpi_bus_notifier);
505
506void unregister_acpi_bus_notifier(struct notifier_block *nb)
507{
508 blocking_notifier_chain_unregister(&acpi_bus_notify_list, nb);
509}
510EXPORT_SYMBOL_GPL(unregister_acpi_bus_notifier);
511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512/**
513 * acpi_bus_notify
514 * ---------------
515 * Callback for all 'system-level' device notifications (values 0x00-0x7F).
516 */
Len Brown4be44fc2005-08-05 00:44:28 -0400517static void acpi_bus_notify(acpi_handle handle, u32 type, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
Len Brown4be44fc2005-08-05 00:44:28 -0400519 int result = 0;
520 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Shaohua Li6bd00a62008-08-28 10:04:29 +0800522 blocking_notifier_call_chain(&acpi_bus_notify_list,
523 type, (void *)handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525 if (acpi_bus_get_device(handle, &device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400526 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528 switch (type) {
529
530 case ACPI_NOTIFY_BUS_CHECK:
Len Brown4be44fc2005-08-05 00:44:28 -0400531 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
532 "Received BUS CHECK notification for device [%s]\n",
533 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 result = acpi_bus_check_scope(device);
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500535 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 * TBD: We'll need to outsource certain events to non-ACPI
Len Brown4be44fc2005-08-05 00:44:28 -0400537 * drivers via the device manager (device.c).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 */
539 break;
540
541 case ACPI_NOTIFY_DEVICE_CHECK:
Len Brown4be44fc2005-08-05 00:44:28 -0400542 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
543 "Received DEVICE CHECK notification for device [%s]\n",
544 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 result = acpi_bus_check_device(device, NULL);
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500546 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 * TBD: We'll need to outsource certain events to non-ACPI
Len Brown4be44fc2005-08-05 00:44:28 -0400548 * drivers via the device manager (device.c).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 */
550 break;
551
552 case ACPI_NOTIFY_DEVICE_WAKE:
Len Brown4be44fc2005-08-05 00:44:28 -0400553 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
554 "Received DEVICE WAKE notification for device [%s]\n",
555 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 /* TBD */
557 break;
558
559 case ACPI_NOTIFY_EJECT_REQUEST:
Len Brown4be44fc2005-08-05 00:44:28 -0400560 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
561 "Received EJECT REQUEST notification for device [%s]\n",
562 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 /* TBD */
564 break;
565
566 case ACPI_NOTIFY_DEVICE_CHECK_LIGHT:
Len Brown4be44fc2005-08-05 00:44:28 -0400567 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
568 "Received DEVICE CHECK LIGHT notification for device [%s]\n",
569 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 /* TBD: Exactly what does 'light' mean? */
571 break;
572
573 case ACPI_NOTIFY_FREQUENCY_MISMATCH:
Len Brown4be44fc2005-08-05 00:44:28 -0400574 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
575 "Received FREQUENCY MISMATCH notification for device [%s]\n",
576 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 /* TBD */
578 break;
579
580 case ACPI_NOTIFY_BUS_MODE_MISMATCH:
Len Brown4be44fc2005-08-05 00:44:28 -0400581 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
582 "Received BUS MODE MISMATCH notification for device [%s]\n",
583 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 /* TBD */
585 break;
586
587 case ACPI_NOTIFY_POWER_FAULT:
Len Brown4be44fc2005-08-05 00:44:28 -0400588 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
589 "Received POWER FAULT notification for device [%s]\n",
590 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 /* TBD */
592 break;
593
594 default:
Len Brown4be44fc2005-08-05 00:44:28 -0400595 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
596 "Received unknown/unsupported notification [%08x]\n",
597 type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 break;
599 }
600
Patrick Mocheld550d982006-06-27 00:41:40 -0400601 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602}
603
604/* --------------------------------------------------------------------------
605 Initialization/Cleanup
606 -------------------------------------------------------------------------- */
607
Len Brown4be44fc2005-08-05 00:44:28 -0400608static int __init acpi_bus_init_irq(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609{
Len Brown4be44fc2005-08-05 00:44:28 -0400610 acpi_status status = AE_OK;
611 union acpi_object arg = { ACPI_TYPE_INTEGER };
612 struct acpi_object_list arg_list = { 1, &arg };
613 char *message = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500616 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 * Let the system know what interrupt model we are using by
618 * evaluating the \_PIC object, if exists.
619 */
620
621 switch (acpi_irq_model) {
622 case ACPI_IRQ_MODEL_PIC:
623 message = "PIC";
624 break;
625 case ACPI_IRQ_MODEL_IOAPIC:
626 message = "IOAPIC";
627 break;
628 case ACPI_IRQ_MODEL_IOSAPIC:
629 message = "IOSAPIC";
630 break;
John Keller3948ec92006-12-22 11:50:04 -0600631 case ACPI_IRQ_MODEL_PLATFORM:
632 message = "platform specific model";
633 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 default:
635 printk(KERN_WARNING PREFIX "Unknown interrupt routing model\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400636 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 }
638
639 printk(KERN_INFO PREFIX "Using %s for interrupt routing\n", message);
640
641 arg.integer.value = acpi_irq_model;
642
643 status = acpi_evaluate_object(NULL, "\\_PIC", &arg_list, NULL);
644 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400645 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PIC"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400646 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 }
648
Patrick Mocheld550d982006-06-27 00:41:40 -0400649 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650}
651
Bob Moore67a119f2008-06-10 13:42:13 +0800652u8 acpi_gbl_permanent_mmap;
Alexey Starikovskiyad718602007-02-02 19:48:19 +0300653
654
Len Brown4be44fc2005-08-05 00:44:28 -0400655void __init acpi_early_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656{
Len Brown4be44fc2005-08-05 00:44:28 -0400657 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
659 if (acpi_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -0400660 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
Bob Moore61686122006-03-17 16:44:00 -0500662 printk(KERN_INFO PREFIX "Core revision %08x\n", ACPI_CA_VERSION);
663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 /* enable workarounds, unless strict ACPI spec. compliance */
665 if (!acpi_strict)
666 acpi_gbl_enable_interpreter_slack = TRUE;
667
Alexey Starikovskiyad718602007-02-02 19:48:19 +0300668 acpi_gbl_permanent_mmap = 1;
669
670 status = acpi_reallocate_root_table();
671 if (ACPI_FAILURE(status)) {
672 printk(KERN_ERR PREFIX
673 "Unable to reallocate ACPI tables\n");
674 goto error0;
675 }
676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 status = acpi_initialize_subsystem();
678 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400679 printk(KERN_ERR PREFIX
680 "Unable to initialize the ACPI Interpreter\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 goto error0;
682 }
683
684 status = acpi_load_tables();
685 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400686 printk(KERN_ERR PREFIX
687 "Unable to load the System Description Tables\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 goto error0;
689 }
690
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691#ifdef CONFIG_X86
692 if (!acpi_ioapic) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 /* compatible (0) means level (3) */
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300694 if (!(acpi_sci_flags & ACPI_MADT_TRIGGER_MASK)) {
695 acpi_sci_flags &= ~ACPI_MADT_TRIGGER_MASK;
696 acpi_sci_flags |= ACPI_MADT_TRIGGER_LEVEL;
697 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 /* Set PIC-mode SCI trigger type */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300699 acpi_pic_sci_set_trigger(acpi_gbl_FADT.sci_interrupt,
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300700 (acpi_sci_flags & ACPI_MADT_TRIGGER_MASK) >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 /*
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300703 * now that acpi_gbl_FADT is initialized,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 * update it with result from INT_SRC_OVR parsing
705 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300706 acpi_gbl_FADT.sci_interrupt = acpi_sci_override_gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 }
708#endif
709
Len Brown4be44fc2005-08-05 00:44:28 -0400710 status =
711 acpi_enable_subsystem(~
712 (ACPI_NO_HARDWARE_INIT |
713 ACPI_NO_ACPI_ENABLE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 if (ACPI_FAILURE(status)) {
715 printk(KERN_ERR PREFIX "Unable to enable ACPI\n");
716 goto error0;
717 }
718
Patrick Mocheld550d982006-06-27 00:41:40 -0400719 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Len Brown4be44fc2005-08-05 00:44:28 -0400721 error0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 disable_acpi();
Patrick Mocheld550d982006-06-27 00:41:40 -0400723 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724}
725
Len Brown4be44fc2005-08-05 00:44:28 -0400726static int __init acpi_bus_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
Len Brown4be44fc2005-08-05 00:44:28 -0400728 int result = 0;
729 acpi_status status = AE_OK;
730 extern acpi_status acpi_os_initialize1(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
733 status = acpi_os_initialize1();
734
Len Brown4be44fc2005-08-05 00:44:28 -0400735 status =
736 acpi_enable_subsystem(ACPI_NO_HARDWARE_INIT | ACPI_NO_ACPI_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400738 printk(KERN_ERR PREFIX
739 "Unable to start the ACPI Interpreter\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 goto error1;
741 }
742
743 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400744 printk(KERN_ERR PREFIX
745 "Unable to initialize ACPI OS objects\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 goto error1;
747 }
748#ifdef CONFIG_ACPI_EC
749 /*
750 * ACPI 2.0 requires the EC driver to be loaded and work before
751 * the EC device is found in the namespace (i.e. before acpi_initialize_objects()
752 * is called).
753 *
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500754 * This is accomplished by looking for the ECDT table, and getting
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 * the EC parameters out of that.
756 */
757 status = acpi_ec_ecdt_probe();
758 /* Ignore result. Not having an ECDT is not fatal. */
759#endif
760
761 status = acpi_initialize_objects(ACPI_FULL_INITIALIZATION);
762 if (ACPI_FAILURE(status)) {
763 printk(KERN_ERR PREFIX "Unable to initialize ACPI objects\n");
764 goto error1;
765 }
766
767 printk(KERN_INFO PREFIX "Interpreter enabled\n");
768
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500769 /* Initialize sleep structures */
770 acpi_sleep_init();
771
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 /*
773 * Get the system interrupt model and evaluate \_PIC.
774 */
775 result = acpi_bus_init_irq();
776 if (result)
777 goto error1;
778
779 /*
780 * Register the for all standard device notifications.
781 */
Len Brown4be44fc2005-08-05 00:44:28 -0400782 status =
783 acpi_install_notify_handler(ACPI_ROOT_OBJECT, ACPI_SYSTEM_NOTIFY,
784 &acpi_bus_notify, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400786 printk(KERN_ERR PREFIX
787 "Unable to register for device notifications\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 goto error1;
789 }
790
791 /*
792 * Create the top ACPI proc directory
793 */
794 acpi_root_dir = proc_mkdir(ACPI_BUS_FILE_ROOT, NULL);
795
Patrick Mocheld550d982006-06-27 00:41:40 -0400796 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
798 /* Mimic structured exception handling */
Len Brown4be44fc2005-08-05 00:44:28 -0400799 error1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 acpi_terminate();
Patrick Mocheld550d982006-06-27 00:41:40 -0400801 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802}
803
Greg Kroah-Hartman99e0d2f2007-11-02 16:19:59 -0700804struct kobject *acpi_kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
Len Brown4be44fc2005-08-05 00:44:28 -0400806static int __init acpi_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
Len Brown4be44fc2005-08-05 00:44:28 -0400808 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 if (acpi_disabled) {
812 printk(KERN_INFO PREFIX "Interpreter disabled.\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400813 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 }
815
Greg Kroah-Hartmanf62ed9e2007-11-05 13:16:15 -0800816 acpi_kobj = kobject_create_and_add("acpi", firmware_kobj);
Greg Kroah-Hartman99e0d2f2007-11-02 16:19:59 -0700817 if (!acpi_kobj) {
Harvey Harrison96b2dd12008-03-05 18:24:51 -0800818 printk(KERN_WARNING "%s: kset create error\n", __func__);
Greg Kroah-Hartman99e0d2f2007-11-02 16:19:59 -0700819 acpi_kobj = NULL;
820 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
822 result = acpi_bus_init();
823
824 if (!result) {
Robert Hancock7752d5c2008-02-15 01:27:20 -0800825 pci_mmcfg_late_init();
Len Brown9f9adec2007-12-13 17:38:03 -0500826 if (!(pm_flags & PM_APM))
827 pm_flags |= PM_ACPI;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 else {
Len Brown4be44fc2005-08-05 00:44:28 -0400829 printk(KERN_INFO PREFIX
830 "APM is already active, exiting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 disable_acpi();
832 result = -ENODEV;
833 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 } else
835 disable_acpi();
836
Patrick Mocheld550d982006-06-27 00:41:40 -0400837 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838}
839
840subsys_initcall(acpi_init);