blob: bee64b73c91957ebe06fe978b579f5326ede12fd [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
Zhao Yakui6415e122008-08-11 14:59:59 +080051static int set_power_nocheck(const struct dmi_system_id *id)
52{
53 printk(KERN_NOTICE PREFIX "%s detected - "
54 "disable power check in power transistion\n", id->ident);
55 acpi_power_nocheck = 1;
56 return 0;
57}
58static struct dmi_system_id __cpuinitdata power_nocheck_dmi_table[] = {
59 {
60 set_power_nocheck, "HP Pavilion 05", {
61 DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies LTD"),
62 DMI_MATCH(DMI_SYS_VENDOR, "HP Pavilion 05"),
63 DMI_MATCH(DMI_PRODUCT_VERSION, "2001211RE101GLEND") }, NULL},
64 {},
65};
66
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068/* --------------------------------------------------------------------------
69 Device Management
70 -------------------------------------------------------------------------- */
71
Len Brown4be44fc2005-08-05 00:44:28 -040072int acpi_bus_get_device(acpi_handle handle, struct acpi_device **device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
Len Brown4be44fc2005-08-05 00:44:28 -040074 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -040078 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80 /* TBD: Support fixed-feature devices */
81
Len Brown4be44fc2005-08-05 00:44:28 -040082 status = acpi_get_data(handle, acpi_bus_data_handler, (void **)device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 if (ACPI_FAILURE(status) || !*device) {
Len Brown9805cb72006-07-25 13:30:57 -040084 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No context for object [%p]\n",
85 handle));
Patrick Mocheld550d982006-06-27 00:41:40 -040086 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 }
88
Patrick Mocheld550d982006-06-27 00:41:40 -040089 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090}
Len Brown4be44fc2005-08-05 00:44:28 -040091
Linus Torvalds1da177e2005-04-16 15:20:36 -070092EXPORT_SYMBOL(acpi_bus_get_device);
93
Len Brown4be44fc2005-08-05 00:44:28 -040094int acpi_bus_get_status(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
Len Brown4be44fc2005-08-05 00:44:28 -040096 acpi_status status = AE_OK;
Matthew Wilcox27663c52008-10-10 02:22:59 -040097 unsigned long long sta = 0;
Len Brown4be44fc2005-08-05 00:44:28 -040098
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400101 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103 /*
104 * Evaluate _STA if present.
105 */
106 if (device->flags.dynamic_status) {
Len Brown4be44fc2005-08-05 00:44:28 -0400107 status =
108 acpi_evaluate_integer(device->handle, "_STA", NULL, &sta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400110 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400111 STRUCT_TO_INT(device->status) = (int)sta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 }
113
114 /*
Zhao Yakui39a0ad82008-08-11 13:40:22 +0800115 * According to ACPI spec some device can be present and functional
116 * even if the parent is not present but functional.
117 * In such conditions the child device should not inherit the status
118 * from the parent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 else
Bjorn Helgaas0c0e8922007-04-25 14:20:58 -0400121 STRUCT_TO_INT(device->status) =
122 ACPI_STA_DEVICE_PRESENT | ACPI_STA_DEVICE_ENABLED |
123 ACPI_STA_DEVICE_UI | ACPI_STA_DEVICE_FUNCTIONING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 if (device->status.functional && !device->status.present) {
Zhao Yakui39a0ad82008-08-11 13:40:22 +0800126 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] status [%08x]: "
127 "functional but not present;\n",
128 device->pnp.bus_id,
129 (u32) STRUCT_TO_INT(device->status)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 }
131
Len Brown4be44fc2005-08-05 00:44:28 -0400132 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] status [%08x]\n",
133 device->pnp.bus_id,
134 (u32) STRUCT_TO_INT(device->status)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Patrick Mocheld550d982006-06-27 00:41:40 -0400136 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Len Brown4be44fc2005-08-05 00:44:28 -0400139EXPORT_SYMBOL(acpi_bus_get_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Zhang Rui20733932008-01-17 15:51:21 +0800141void acpi_bus_private_data_handler(acpi_handle handle,
142 u32 function, void *context)
143{
144 return;
145}
146EXPORT_SYMBOL(acpi_bus_private_data_handler);
147
148int acpi_bus_get_private_data(acpi_handle handle, void **data)
149{
150 acpi_status status = AE_OK;
151
152 if (!*data)
153 return -EINVAL;
154
155 status = acpi_get_data(handle, acpi_bus_private_data_handler, data);
156 if (ACPI_FAILURE(status) || !*data) {
157 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No context for object [%p]\n",
158 handle));
159 return -ENODEV;
160 }
161
162 return 0;
163}
164EXPORT_SYMBOL(acpi_bus_get_private_data);
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166/* --------------------------------------------------------------------------
167 Power Management
168 -------------------------------------------------------------------------- */
169
Len Brown4be44fc2005-08-05 00:44:28 -0400170int acpi_bus_get_power(acpi_handle handle, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
Len Brown4be44fc2005-08-05 00:44:28 -0400172 int result = 0;
173 acpi_status status = 0;
174 struct acpi_device *device = NULL;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400175 unsigned long long psc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178 result = acpi_bus_get_device(handle, &device);
179 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400180 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182 *state = ACPI_STATE_UNKNOWN;
183
184 if (!device->flags.power_manageable) {
185 /* TBD: Non-recursive algorithm for walking up hierarchy */
186 if (device->parent)
187 *state = device->parent->power.state;
188 else
189 *state = ACPI_STATE_D0;
Len Brown4be44fc2005-08-05 00:44:28 -0400190 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 /*
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500192 * Get the device's power state either directly (via _PSC) or
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 * indirectly (via power resources).
194 */
195 if (device->power.flags.explicit_get) {
Len Brown4be44fc2005-08-05 00:44:28 -0400196 status = acpi_evaluate_integer(device->handle, "_PSC",
197 NULL, &psc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400199 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400200 device->power.state = (int)psc;
201 } else if (device->power.flags.power_resources) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 result = acpi_power_get_inferred_state(device);
203 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400204 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 }
206
207 *state = device->power.state;
208 }
209
210 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] power state is D%d\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400211 device->pnp.bus_id, device->power.state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Patrick Mocheld550d982006-06-27 00:41:40 -0400213 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214}
Len Brown4be44fc2005-08-05 00:44:28 -0400215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216EXPORT_SYMBOL(acpi_bus_get_power);
217
Len Brown4be44fc2005-08-05 00:44:28 -0400218int acpi_bus_set_power(acpi_handle handle, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
Len Brown4be44fc2005-08-05 00:44:28 -0400220 int result = 0;
221 acpi_status status = AE_OK;
222 struct acpi_device *device = NULL;
223 char object_name[5] = { '_', 'P', 'S', '0' + state, '\0' };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 result = acpi_bus_get_device(handle, &device);
227 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400228 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 if ((state < ACPI_STATE_D0) || (state > ACPI_STATE_D3))
Patrick Mocheld550d982006-06-27 00:41:40 -0400231 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233 /* Make sure this is a valid target state */
234
235 if (!device->flags.power_manageable) {
Len Brown9805cb72006-07-25 13:30:57 -0400236 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device `[%s]' is not power manageable\n",
Greg Kroah-Hartman19c38de2007-09-12 15:06:57 -0700237 kobject_name(&device->dev.kobj)));
Patrick Mocheld550d982006-06-27 00:41:40 -0400238 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 }
David Shaohua Lib9131002005-03-19 00:16:18 -0500240 /*
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400241 * Get device's current power state
David Shaohua Lib9131002005-03-19 00:16:18 -0500242 */
Zhao Yakuif5adfaa2008-08-11 14:57:50 +0800243 if (!acpi_power_nocheck) {
244 /*
245 * Maybe the incorrect power state is returned on the bogus
246 * bios, which is different with the real power state.
247 * For example: the bios returns D0 state and the real power
248 * state is D3. OS expects to set the device to D0 state. In
249 * such case if OS uses the power state returned by the BIOS,
250 * the device can't be transisted to the correct power state.
251 * So if the acpi_power_nocheck is set, it is unnecessary to
252 * get the power state by calling acpi_bus_get_power.
253 */
254 acpi_bus_get_power(device->handle, &device->power.state);
255 }
Len Brownec683732008-01-23 22:41:20 -0500256 if ((state == device->power.state) && !device->flags.force_power_state) {
Konstantin Karasyovb1028c52007-02-16 02:23:07 -0500257 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device is already at D%d\n",
258 state));
259 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 }
Konstantin Karasyovb1028c52007-02-16 02:23:07 -0500261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 if (!device->power.states[state].flags.valid) {
Len Browncece9292006-06-26 23:04:31 -0400263 printk(KERN_WARNING PREFIX "Device does not support D%d\n", state);
Patrick Mocheld550d982006-06-27 00:41:40 -0400264 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 }
266 if (device->parent && (state < device->parent->power.state)) {
Len Browncece9292006-06-26 23:04:31 -0400267 printk(KERN_WARNING PREFIX
Thomas Renningera6fc6722006-06-26 23:58:43 -0400268 "Cannot set device to a higher-powered"
Len Browncece9292006-06-26 23:04:31 -0400269 " state than parent\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400270 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 }
272
273 /*
274 * Transition Power
275 * ----------------
276 * On transitions to a high-powered state we first apply power (via
277 * power resources) then evalute _PSx. Conversly for transitions to
278 * a lower-powered state.
David Shaohua Lib9131002005-03-19 00:16:18 -0500279 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 if (state < device->power.state) {
281 if (device->power.flags.power_resources) {
282 result = acpi_power_transition(device, state);
283 if (result)
284 goto end;
285 }
286 if (device->power.states[state].flags.explicit_set) {
Len Brown4be44fc2005-08-05 00:44:28 -0400287 status = acpi_evaluate_object(device->handle,
288 object_name, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 if (ACPI_FAILURE(status)) {
290 result = -ENODEV;
291 goto end;
292 }
293 }
Len Brown4be44fc2005-08-05 00:44:28 -0400294 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 if (device->power.states[state].flags.explicit_set) {
Len Brown4be44fc2005-08-05 00:44:28 -0400296 status = acpi_evaluate_object(device->handle,
297 object_name, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 if (ACPI_FAILURE(status)) {
299 result = -ENODEV;
300 goto end;
301 }
302 }
303 if (device->power.flags.power_resources) {
304 result = acpi_power_transition(device, state);
305 if (result)
306 goto end;
307 }
308 }
309
Len Brown4be44fc2005-08-05 00:44:28 -0400310 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 if (result)
Len Browncece9292006-06-26 23:04:31 -0400312 printk(KERN_WARNING PREFIX
313 "Transitioning device [%s] to D%d\n",
314 device->pnp.bus_id, state);
Shaohua Li5e321322007-10-11 23:53:58 +0200315 else {
316 device->power.state = state;
Len Brown4be44fc2005-08-05 00:44:28 -0400317 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
318 "Device [%s] transitioned to D%d\n",
319 device->pnp.bus_id, state));
Shaohua Li5e321322007-10-11 23:53:58 +0200320 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Patrick Mocheld550d982006-06-27 00:41:40 -0400322 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323}
Len Brown4be44fc2005-08-05 00:44:28 -0400324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325EXPORT_SYMBOL(acpi_bus_set_power);
326
Rafael J. Wysocki3737b2b2008-07-07 03:30:55 +0200327bool acpi_bus_power_manageable(acpi_handle handle)
328{
329 struct acpi_device *device;
330 int result;
331
332 result = acpi_bus_get_device(handle, &device);
333 return result ? false : device->flags.power_manageable;
334}
335
336EXPORT_SYMBOL(acpi_bus_power_manageable);
337
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200338bool acpi_bus_can_wakeup(acpi_handle handle)
339{
340 struct acpi_device *device;
341 int result;
342
343 result = acpi_bus_get_device(handle, &device);
344 return result ? false : device->wakeup.flags.valid;
345}
346
347EXPORT_SYMBOL(acpi_bus_can_wakeup);
348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349/* --------------------------------------------------------------------------
350 Event Management
351 -------------------------------------------------------------------------- */
352
Len Brown14e04fb2007-08-23 15:20:26 -0400353#ifdef CONFIG_ACPI_PROC_EVENT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354static DEFINE_SPINLOCK(acpi_bus_event_lock);
355
356LIST_HEAD(acpi_bus_event_list);
357DECLARE_WAIT_QUEUE_HEAD(acpi_bus_event_queue);
358
Len Brown4be44fc2005-08-05 00:44:28 -0400359extern int event_is_open;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Alexey Starikovskiy8db85d42007-09-26 19:43:16 +0400361int acpi_bus_generate_proc_event4(const char *device_class, const char *bus_id, u8 type, int data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
Alexey Starikovskiy8db85d42007-09-26 19:43:16 +0400363 struct acpi_bus_event *event;
Len Brown4be44fc2005-08-05 00:44:28 -0400364 unsigned long flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 /* drop event on the floor if no one's listening */
367 if (!event_is_open)
Patrick Mocheld550d982006-06-27 00:41:40 -0400368 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370 event = kmalloc(sizeof(struct acpi_bus_event), GFP_ATOMIC);
371 if (!event)
Patrick Mocheld550d982006-06-27 00:41:40 -0400372 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Alexey Starikovskiy8db85d42007-09-26 19:43:16 +0400374 strcpy(event->device_class, device_class);
375 strcpy(event->bus_id, bus_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 event->type = type;
377 event->data = data;
378
379 spin_lock_irqsave(&acpi_bus_event_lock, flags);
380 list_add_tail(&event->node, &acpi_bus_event_list);
381 spin_unlock_irqrestore(&acpi_bus_event_lock, flags);
382
383 wake_up_interruptible(&acpi_bus_event_queue);
384
Patrick Mocheld550d982006-06-27 00:41:40 -0400385 return 0;
Alexey Starikovskiy8db85d42007-09-26 19:43:16 +0400386
387}
388
389EXPORT_SYMBOL_GPL(acpi_bus_generate_proc_event4);
390
391int acpi_bus_generate_proc_event(struct acpi_device *device, u8 type, int data)
392{
393 if (!device)
394 return -EINVAL;
395 return acpi_bus_generate_proc_event4(device->pnp.device_class,
396 device->pnp.bus_id, type, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397}
Len Brown4be44fc2005-08-05 00:44:28 -0400398
Len Brown14e04fb2007-08-23 15:20:26 -0400399EXPORT_SYMBOL(acpi_bus_generate_proc_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Len Brown4be44fc2005-08-05 00:44:28 -0400401int acpi_bus_receive_event(struct acpi_bus_event *event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402{
Len Brown4be44fc2005-08-05 00:44:28 -0400403 unsigned long flags = 0;
404 struct acpi_bus_event *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
406 DECLARE_WAITQUEUE(wait, current);
407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409 if (!event)
Patrick Mocheld550d982006-06-27 00:41:40 -0400410 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412 if (list_empty(&acpi_bus_event_list)) {
413
414 set_current_state(TASK_INTERRUPTIBLE);
415 add_wait_queue(&acpi_bus_event_queue, &wait);
416
417 if (list_empty(&acpi_bus_event_list))
418 schedule();
419
420 remove_wait_queue(&acpi_bus_event_queue, &wait);
421 set_current_state(TASK_RUNNING);
422
423 if (signal_pending(current))
Patrick Mocheld550d982006-06-27 00:41:40 -0400424 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 }
426
427 spin_lock_irqsave(&acpi_bus_event_lock, flags);
Chuck Ebbertf0a37e02008-04-15 14:34:47 -0700428 if (!list_empty(&acpi_bus_event_list)) {
429 entry = list_entry(acpi_bus_event_list.next,
430 struct acpi_bus_event, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 list_del(&entry->node);
Chuck Ebbertf0a37e02008-04-15 14:34:47 -0700432 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 spin_unlock_irqrestore(&acpi_bus_event_lock, flags);
434
435 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400436 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438 memcpy(event, entry, sizeof(struct acpi_bus_event));
439
440 kfree(entry);
441
Patrick Mocheld550d982006-06-27 00:41:40 -0400442 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Len Brown14e04fb2007-08-23 15:20:26 -0400445#endif /* CONFIG_ACPI_PROC_EVENT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447/* --------------------------------------------------------------------------
448 Notification Handling
449 -------------------------------------------------------------------------- */
450
451static int
Len Brown4be44fc2005-08-05 00:44:28 -0400452acpi_bus_check_device(struct acpi_device *device, int *status_changed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
Len Brown4be44fc2005-08-05 00:44:28 -0400454 acpi_status status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 struct acpi_device_status old_status;
456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400459 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461 if (status_changed)
462 *status_changed = 0;
463
464 old_status = device->status;
465
466 /*
467 * Make sure this device's parent is present before we go about
468 * messing with the device.
469 */
470 if (device->parent && !device->parent->status.present) {
471 device->status = device->parent->status;
472 if (STRUCT_TO_INT(old_status) != STRUCT_TO_INT(device->status)) {
473 if (status_changed)
474 *status_changed = 1;
475 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400476 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 }
478
479 status = acpi_bus_get_status(device);
480 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400481 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
483 if (STRUCT_TO_INT(old_status) == STRUCT_TO_INT(device->status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400484 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
486 if (status_changed)
487 *status_changed = 1;
Len Brown4be44fc2005-08-05 00:44:28 -0400488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 /*
490 * Device Insertion/Removal
491 */
492 if ((device->status.present) && !(old_status.present)) {
493 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device insertion detected\n"));
494 /* TBD: Handle device insertion */
Len Brown4be44fc2005-08-05 00:44:28 -0400495 } else if (!(device->status.present) && (old_status.present)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device removal detected\n"));
497 /* TBD: Handle device removal */
498 }
499
Patrick Mocheld550d982006-06-27 00:41:40 -0400500 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501}
502
Len Brown4be44fc2005-08-05 00:44:28 -0400503static int acpi_bus_check_scope(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504{
Len Brown4be44fc2005-08-05 00:44:28 -0400505 int result = 0;
506 int status_changed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
509 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400510 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
512 /* Status Change? */
513 result = acpi_bus_check_device(device, &status_changed);
514 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400515 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
517 if (!status_changed)
Patrick Mocheld550d982006-06-27 00:41:40 -0400518 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520 /*
521 * TBD: Enumerate child devices within this device's scope and
522 * run acpi_bus_check_device()'s on them.
523 */
524
Patrick Mocheld550d982006-06-27 00:41:40 -0400525 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526}
527
Shaohua Li6bd00a62008-08-28 10:04:29 +0800528static BLOCKING_NOTIFIER_HEAD(acpi_bus_notify_list);
529int register_acpi_bus_notifier(struct notifier_block *nb)
530{
531 return blocking_notifier_chain_register(&acpi_bus_notify_list, nb);
532}
533EXPORT_SYMBOL_GPL(register_acpi_bus_notifier);
534
535void unregister_acpi_bus_notifier(struct notifier_block *nb)
536{
537 blocking_notifier_chain_unregister(&acpi_bus_notify_list, nb);
538}
539EXPORT_SYMBOL_GPL(unregister_acpi_bus_notifier);
540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541/**
542 * acpi_bus_notify
543 * ---------------
544 * Callback for all 'system-level' device notifications (values 0x00-0x7F).
545 */
Len Brown4be44fc2005-08-05 00:44:28 -0400546static void acpi_bus_notify(acpi_handle handle, u32 type, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
Len Brown4be44fc2005-08-05 00:44:28 -0400548 int result = 0;
549 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Shaohua Li6bd00a62008-08-28 10:04:29 +0800551 blocking_notifier_call_chain(&acpi_bus_notify_list,
552 type, (void *)handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
554 if (acpi_bus_get_device(handle, &device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400555 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
557 switch (type) {
558
559 case ACPI_NOTIFY_BUS_CHECK:
Len Brown4be44fc2005-08-05 00:44:28 -0400560 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
561 "Received BUS CHECK notification for device [%s]\n",
562 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 result = acpi_bus_check_scope(device);
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500564 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 * TBD: We'll need to outsource certain events to non-ACPI
Len Brown4be44fc2005-08-05 00:44:28 -0400566 * drivers via the device manager (device.c).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 */
568 break;
569
570 case ACPI_NOTIFY_DEVICE_CHECK:
Len Brown4be44fc2005-08-05 00:44:28 -0400571 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
572 "Received DEVICE CHECK notification for device [%s]\n",
573 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 result = acpi_bus_check_device(device, NULL);
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500575 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 * TBD: We'll need to outsource certain events to non-ACPI
Len Brown4be44fc2005-08-05 00:44:28 -0400577 * drivers via the device manager (device.c).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 */
579 break;
580
581 case ACPI_NOTIFY_DEVICE_WAKE:
Len Brown4be44fc2005-08-05 00:44:28 -0400582 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
583 "Received DEVICE WAKE notification for device [%s]\n",
584 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 /* TBD */
586 break;
587
588 case ACPI_NOTIFY_EJECT_REQUEST:
Len Brown4be44fc2005-08-05 00:44:28 -0400589 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
590 "Received EJECT REQUEST notification for device [%s]\n",
591 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 /* TBD */
593 break;
594
595 case ACPI_NOTIFY_DEVICE_CHECK_LIGHT:
Len Brown4be44fc2005-08-05 00:44:28 -0400596 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
597 "Received DEVICE CHECK LIGHT notification for device [%s]\n",
598 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 /* TBD: Exactly what does 'light' mean? */
600 break;
601
602 case ACPI_NOTIFY_FREQUENCY_MISMATCH:
Len Brown4be44fc2005-08-05 00:44:28 -0400603 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
604 "Received FREQUENCY MISMATCH notification for device [%s]\n",
605 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 /* TBD */
607 break;
608
609 case ACPI_NOTIFY_BUS_MODE_MISMATCH:
Len Brown4be44fc2005-08-05 00:44:28 -0400610 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
611 "Received BUS MODE MISMATCH notification for device [%s]\n",
612 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 /* TBD */
614 break;
615
616 case ACPI_NOTIFY_POWER_FAULT:
Len Brown4be44fc2005-08-05 00:44:28 -0400617 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
618 "Received POWER FAULT notification for device [%s]\n",
619 device->pnp.bus_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 /* TBD */
621 break;
622
623 default:
Len Brown4be44fc2005-08-05 00:44:28 -0400624 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
625 "Received unknown/unsupported notification [%08x]\n",
626 type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 break;
628 }
629
Patrick Mocheld550d982006-06-27 00:41:40 -0400630 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631}
632
633/* --------------------------------------------------------------------------
634 Initialization/Cleanup
635 -------------------------------------------------------------------------- */
636
Len Brown4be44fc2005-08-05 00:44:28 -0400637static int __init acpi_bus_init_irq(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
Len Brown4be44fc2005-08-05 00:44:28 -0400639 acpi_status status = AE_OK;
640 union acpi_object arg = { ACPI_TYPE_INTEGER };
641 struct acpi_object_list arg_list = { 1, &arg };
642 char *message = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500645 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 * Let the system know what interrupt model we are using by
647 * evaluating the \_PIC object, if exists.
648 */
649
650 switch (acpi_irq_model) {
651 case ACPI_IRQ_MODEL_PIC:
652 message = "PIC";
653 break;
654 case ACPI_IRQ_MODEL_IOAPIC:
655 message = "IOAPIC";
656 break;
657 case ACPI_IRQ_MODEL_IOSAPIC:
658 message = "IOSAPIC";
659 break;
John Keller3948ec92006-12-22 11:50:04 -0600660 case ACPI_IRQ_MODEL_PLATFORM:
661 message = "platform specific model";
662 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 default:
664 printk(KERN_WARNING PREFIX "Unknown interrupt routing model\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400665 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 }
667
668 printk(KERN_INFO PREFIX "Using %s for interrupt routing\n", message);
669
670 arg.integer.value = acpi_irq_model;
671
672 status = acpi_evaluate_object(NULL, "\\_PIC", &arg_list, NULL);
673 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400674 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PIC"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400675 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 }
677
Patrick Mocheld550d982006-06-27 00:41:40 -0400678 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679}
680
Bob Moore67a119f2008-06-10 13:42:13 +0800681u8 acpi_gbl_permanent_mmap;
Alexey Starikovskiyad718602007-02-02 19:48:19 +0300682
683
Len Brown4be44fc2005-08-05 00:44:28 -0400684void __init acpi_early_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
Len Brown4be44fc2005-08-05 00:44:28 -0400686 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
688 if (acpi_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -0400689 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Bob Moore61686122006-03-17 16:44:00 -0500691 printk(KERN_INFO PREFIX "Core revision %08x\n", ACPI_CA_VERSION);
692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 /* enable workarounds, unless strict ACPI spec. compliance */
694 if (!acpi_strict)
695 acpi_gbl_enable_interpreter_slack = TRUE;
696
Alexey Starikovskiyad718602007-02-02 19:48:19 +0300697 acpi_gbl_permanent_mmap = 1;
698
699 status = acpi_reallocate_root_table();
700 if (ACPI_FAILURE(status)) {
701 printk(KERN_ERR PREFIX
702 "Unable to reallocate ACPI tables\n");
703 goto error0;
704 }
705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 status = acpi_initialize_subsystem();
707 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400708 printk(KERN_ERR PREFIX
709 "Unable to initialize the ACPI Interpreter\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 goto error0;
711 }
712
713 status = acpi_load_tables();
714 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400715 printk(KERN_ERR PREFIX
716 "Unable to load the System Description Tables\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 goto error0;
718 }
719
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720#ifdef CONFIG_X86
721 if (!acpi_ioapic) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 /* compatible (0) means level (3) */
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300723 if (!(acpi_sci_flags & ACPI_MADT_TRIGGER_MASK)) {
724 acpi_sci_flags &= ~ACPI_MADT_TRIGGER_MASK;
725 acpi_sci_flags |= ACPI_MADT_TRIGGER_LEVEL;
726 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 /* Set PIC-mode SCI trigger type */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300728 acpi_pic_sci_set_trigger(acpi_gbl_FADT.sci_interrupt,
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300729 (acpi_sci_flags & ACPI_MADT_TRIGGER_MASK) >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 /*
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300732 * now that acpi_gbl_FADT is initialized,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 * update it with result from INT_SRC_OVR parsing
734 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300735 acpi_gbl_FADT.sci_interrupt = acpi_sci_override_gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 }
737#endif
738
Len Brown4be44fc2005-08-05 00:44:28 -0400739 status =
740 acpi_enable_subsystem(~
741 (ACPI_NO_HARDWARE_INIT |
742 ACPI_NO_ACPI_ENABLE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 if (ACPI_FAILURE(status)) {
744 printk(KERN_ERR PREFIX "Unable to enable ACPI\n");
745 goto error0;
746 }
747
Patrick Mocheld550d982006-06-27 00:41:40 -0400748 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Len Brown4be44fc2005-08-05 00:44:28 -0400750 error0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 disable_acpi();
Patrick Mocheld550d982006-06-27 00:41:40 -0400752 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753}
754
Len Brown4be44fc2005-08-05 00:44:28 -0400755static int __init acpi_bus_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756{
Len Brown4be44fc2005-08-05 00:44:28 -0400757 int result = 0;
758 acpi_status status = AE_OK;
759 extern acpi_status acpi_os_initialize1(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
Jiri Slaby176f9c12009-03-04 11:55:27 -0800761 acpi_os_initialize1();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Len Brown4be44fc2005-08-05 00:44:28 -0400763 status =
764 acpi_enable_subsystem(ACPI_NO_HARDWARE_INIT | ACPI_NO_ACPI_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400766 printk(KERN_ERR PREFIX
767 "Unable to start the ACPI Interpreter\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 goto error1;
769 }
770
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 /*
772 * ACPI 2.0 requires the EC driver to be loaded and work before
773 * the EC device is found in the namespace (i.e. before acpi_initialize_objects()
774 * is called).
775 *
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500776 * This is accomplished by looking for the ECDT table, and getting
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 * the EC parameters out of that.
778 */
779 status = acpi_ec_ecdt_probe();
780 /* Ignore result. Not having an ECDT is not fatal. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782 status = acpi_initialize_objects(ACPI_FULL_INITIALIZATION);
783 if (ACPI_FAILURE(status)) {
784 printk(KERN_ERR PREFIX "Unable to initialize ACPI objects\n");
785 goto error1;
786 }
787
Zhao Yakui455c8792008-10-06 10:31:36 +0800788 /*
789 * Maybe EC region is required at bus_scan/acpi_get_devices. So it
790 * is necessary to enable it as early as possible.
791 */
792 acpi_boot_ec_enable();
793
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 printk(KERN_INFO PREFIX "Interpreter enabled\n");
795
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500796 /* Initialize sleep structures */
797 acpi_sleep_init();
798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 /*
800 * Get the system interrupt model and evaluate \_PIC.
801 */
802 result = acpi_bus_init_irq();
803 if (result)
804 goto error1;
805
806 /*
807 * Register the for all standard device notifications.
808 */
Len Brown4be44fc2005-08-05 00:44:28 -0400809 status =
810 acpi_install_notify_handler(ACPI_ROOT_OBJECT, ACPI_SYSTEM_NOTIFY,
811 &acpi_bus_notify, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400813 printk(KERN_ERR PREFIX
814 "Unable to register for device notifications\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 goto error1;
816 }
817
818 /*
819 * Create the top ACPI proc directory
820 */
821 acpi_root_dir = proc_mkdir(ACPI_BUS_FILE_ROOT, NULL);
822
Patrick Mocheld550d982006-06-27 00:41:40 -0400823 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 /* Mimic structured exception handling */
Len Brown4be44fc2005-08-05 00:44:28 -0400826 error1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 acpi_terminate();
Patrick Mocheld550d982006-06-27 00:41:40 -0400828 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829}
830
Greg Kroah-Hartman99e0d2f2007-11-02 16:19:59 -0700831struct kobject *acpi_kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
Len Brown4be44fc2005-08-05 00:44:28 -0400833static int __init acpi_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834{
Len Brown4be44fc2005-08-05 00:44:28 -0400835 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 if (acpi_disabled) {
839 printk(KERN_INFO PREFIX "Interpreter disabled.\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400840 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 }
842
Greg Kroah-Hartmanf62ed9e2007-11-05 13:16:15 -0800843 acpi_kobj = kobject_create_and_add("acpi", firmware_kobj);
Greg Kroah-Hartman99e0d2f2007-11-02 16:19:59 -0700844 if (!acpi_kobj) {
Harvey Harrison96b2dd12008-03-05 18:24:51 -0800845 printk(KERN_WARNING "%s: kset create error\n", __func__);
Greg Kroah-Hartman99e0d2f2007-11-02 16:19:59 -0700846 acpi_kobj = NULL;
847 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
849 result = acpi_bus_init();
850
851 if (!result) {
Robert Hancock7752d5c2008-02-15 01:27:20 -0800852 pci_mmcfg_late_init();
Len Brown9f9adec2007-12-13 17:38:03 -0500853 if (!(pm_flags & PM_APM))
854 pm_flags |= PM_ACPI;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 else {
Len Brown4be44fc2005-08-05 00:44:28 -0400856 printk(KERN_INFO PREFIX
857 "APM is already active, exiting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 disable_acpi();
859 result = -ENODEV;
860 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 } else
862 disable_acpi();
Zhao Yakui6415e122008-08-11 14:59:59 +0800863 /*
864 * If the laptop falls into the DMI check table, the power state check
865 * will be disabled in the course of device power transistion.
866 */
867 dmi_check_system(power_nocheck_dmi_table);
Patrick Mocheld550d982006-06-27 00:41:40 -0400868 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869}
870
871subsys_initcall(acpi_init);