blob: 37132dc2da03df35ec25b1e8e203715ceb172aac [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#ifdef CONFIG_X86
37#include <asm/mpspec.h>
38#endif
Robert Hancock7752d5c2008-02-15 01:27:20 -080039#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <acpi/acpi_bus.h>
41#include <acpi/acpi_drivers.h>
Len Browneb27cae2009-07-06 23:40:19 -040042#include <linux/dmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Bjorn Helgaase60cc7a2009-03-13 12:08:26 -060044#include "internal.h"
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#define _COMPONENT ACPI_BUS_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050047ACPI_MODULE_NAME("bus");
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Len Brown4be44fc2005-08-05 00:44:28 -040049struct acpi_device *acpi_root;
50struct proc_dir_entry *acpi_root_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051EXPORT_SYMBOL(acpi_root_dir);
52
53#define STRUCT_TO_INT(s) (*((int*)&s))
54
Zhao Yakui6415e122008-08-11 14:59:59 +080055static int set_power_nocheck(const struct dmi_system_id *id)
56{
57 printk(KERN_NOTICE PREFIX "%s detected - "
58 "disable power check in power transistion\n", id->ident);
59 acpi_power_nocheck = 1;
60 return 0;
61}
62static struct dmi_system_id __cpuinitdata power_nocheck_dmi_table[] = {
63 {
64 set_power_nocheck, "HP Pavilion 05", {
65 DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies LTD"),
66 DMI_MATCH(DMI_SYS_VENDOR, "HP Pavilion 05"),
67 DMI_MATCH(DMI_PRODUCT_VERSION, "2001211RE101GLEND") }, NULL},
68 {},
69};
70
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072/* --------------------------------------------------------------------------
73 Device Management
74 -------------------------------------------------------------------------- */
75
Len Brown4be44fc2005-08-05 00:44:28 -040076int acpi_bus_get_device(acpi_handle handle, 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -040082 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84 /* TBD: Support fixed-feature devices */
85
Len Brown4be44fc2005-08-05 00:44:28 -040086 status = acpi_get_data(handle, acpi_bus_data_handler, (void **)device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 if (ACPI_FAILURE(status) || !*device) {
Len Brown9805cb72006-07-25 13:30:57 -040088 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No context for object [%p]\n",
89 handle));
Patrick Mocheld550d982006-06-27 00:41:40 -040090 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 }
92
Patrick Mocheld550d982006-06-27 00:41:40 -040093 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094}
Len Brown4be44fc2005-08-05 00:44:28 -040095
Linus Torvalds1da177e2005-04-16 15:20:36 -070096EXPORT_SYMBOL(acpi_bus_get_device);
97
Bjorn Helgaas402ac532009-09-21 19:30:01 +000098acpi_status acpi_bus_get_status_handle(acpi_handle handle,
99 unsigned long long *sta)
100{
101 acpi_status status;
102
103 status = acpi_evaluate_integer(handle, "_STA", NULL, sta);
104 if (ACPI_SUCCESS(status))
105 return AE_OK;
106
107 if (status == AE_NOT_FOUND) {
108 *sta = ACPI_STA_DEVICE_PRESENT | ACPI_STA_DEVICE_ENABLED |
109 ACPI_STA_DEVICE_UI | ACPI_STA_DEVICE_FUNCTIONING;
110 return AE_OK;
111 }
112 return status;
113}
114
Len Brown4be44fc2005-08-05 00:44:28 -0400115int acpi_bus_get_status(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
Bjorn Helgaas402ac532009-09-21 19:30:01 +0000117 acpi_status status;
118 unsigned long long sta;
Len Brown4be44fc2005-08-05 00:44:28 -0400119
Bjorn Helgaas402ac532009-09-21 19:30:01 +0000120 status = acpi_bus_get_status_handle(device->handle, &sta);
121 if (ACPI_FAILURE(status))
122 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Bjorn Helgaas402ac532009-09-21 19:30:01 +0000124 STRUCT_TO_INT(device->status) = (int) sta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 if (device->status.functional && !device->status.present) {
Zhao Yakui39a0ad82008-08-11 13:40:22 +0800127 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] status [%08x]: "
128 "functional but not present;\n",
129 device->pnp.bus_id,
130 (u32) STRUCT_TO_INT(device->status)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 }
132
Len Brown4be44fc2005-08-05 00:44:28 -0400133 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] status [%08x]\n",
134 device->pnp.bus_id,
135 (u32) STRUCT_TO_INT(device->status)));
Patrick Mocheld550d982006-06-27 00:41:40 -0400136 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
Len Brown4be44fc2005-08-05 00:44:28 -0400138EXPORT_SYMBOL(acpi_bus_get_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Zhang Rui20733932008-01-17 15:51:21 +0800140void acpi_bus_private_data_handler(acpi_handle handle,
Bob Moore8e4319c2009-06-29 13:43:27 +0800141 void *context)
Zhang Rui20733932008-01-17 15:51:21 +0800142{
143 return;
144}
145EXPORT_SYMBOL(acpi_bus_private_data_handler);
146
147int acpi_bus_get_private_data(acpi_handle handle, void **data)
148{
149 acpi_status status = AE_OK;
150
151 if (!*data)
152 return -EINVAL;
153
154 status = acpi_get_data(handle, acpi_bus_private_data_handler, data);
155 if (ACPI_FAILURE(status) || !*data) {
156 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No context for object [%p]\n",
157 handle));
158 return -ENODEV;
159 }
160
161 return 0;
162}
163EXPORT_SYMBOL(acpi_bus_get_private_data);
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165/* --------------------------------------------------------------------------
166 Power Management
167 -------------------------------------------------------------------------- */
168
Len Brown4be44fc2005-08-05 00:44:28 -0400169int acpi_bus_get_power(acpi_handle handle, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
Len Brown4be44fc2005-08-05 00:44:28 -0400171 int result = 0;
172 acpi_status status = 0;
173 struct acpi_device *device = NULL;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400174 unsigned long long psc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177 result = acpi_bus_get_device(handle, &device);
178 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400179 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
181 *state = ACPI_STATE_UNKNOWN;
182
183 if (!device->flags.power_manageable) {
184 /* TBD: Non-recursive algorithm for walking up hierarchy */
185 if (device->parent)
186 *state = device->parent->power.state;
187 else
188 *state = ACPI_STATE_D0;
Len Brown4be44fc2005-08-05 00:44:28 -0400189 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 /*
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500191 * Get the device's power state either directly (via _PSC) or
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 * indirectly (via power resources).
193 */
Zhang Rui0c99c522009-12-17 16:02:08 +0800194 if (device->power.flags.power_resources) {
195 result = acpi_power_get_inferred_state(device);
196 if (result)
197 return result;
198 } else if (device->power.flags.explicit_get) {
Len Brown4be44fc2005-08-05 00:44:28 -0400199 status = acpi_evaluate_integer(device->handle, "_PSC",
200 NULL, &psc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400202 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400203 device->power.state = (int)psc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 }
205
206 *state = device->power.state;
207 }
208
209 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] power state is D%d\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400210 device->pnp.bus_id, device->power.state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Patrick Mocheld550d982006-06-27 00:41:40 -0400212 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213}
Len Brown4be44fc2005-08-05 00:44:28 -0400214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215EXPORT_SYMBOL(acpi_bus_get_power);
216
Len Brown4be44fc2005-08-05 00:44:28 -0400217int acpi_bus_set_power(acpi_handle handle, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
Len Brown4be44fc2005-08-05 00:44:28 -0400219 int result = 0;
220 acpi_status status = AE_OK;
221 struct acpi_device *device = NULL;
222 char object_name[5] = { '_', 'P', 'S', '0' + state, '\0' };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225 result = acpi_bus_get_device(handle, &device);
226 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400227 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229 if ((state < ACPI_STATE_D0) || (state > ACPI_STATE_D3))
Patrick Mocheld550d982006-06-27 00:41:40 -0400230 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232 /* Make sure this is a valid target state */
233
234 if (!device->flags.power_manageable) {
Len Brown9805cb72006-07-25 13:30:57 -0400235 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device `[%s]' is not power manageable\n",
Greg Kroah-Hartman19c38de2007-09-12 15:06:57 -0700236 kobject_name(&device->dev.kobj)));
Patrick Mocheld550d982006-06-27 00:41:40 -0400237 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 }
David Shaohua Lib9131002005-03-19 00:16:18 -0500239 /*
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400240 * Get device's current power state
David Shaohua Lib9131002005-03-19 00:16:18 -0500241 */
Zhao Yakuif5adfaa2008-08-11 14:57:50 +0800242 if (!acpi_power_nocheck) {
243 /*
244 * Maybe the incorrect power state is returned on the bogus
245 * bios, which is different with the real power state.
246 * For example: the bios returns D0 state and the real power
247 * state is D3. OS expects to set the device to D0 state. In
248 * such case if OS uses the power state returned by the BIOS,
249 * the device can't be transisted to the correct power state.
250 * So if the acpi_power_nocheck is set, it is unnecessary to
251 * get the power state by calling acpi_bus_get_power.
252 */
253 acpi_bus_get_power(device->handle, &device->power.state);
254 }
Len Brownec683732008-01-23 22:41:20 -0500255 if ((state == device->power.state) && !device->flags.force_power_state) {
Konstantin Karasyovb1028c52007-02-16 02:23:07 -0500256 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device is already at D%d\n",
257 state));
258 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 }
Konstantin Karasyovb1028c52007-02-16 02:23:07 -0500260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 if (!device->power.states[state].flags.valid) {
Len Browncece9292006-06-26 23:04:31 -0400262 printk(KERN_WARNING PREFIX "Device does not support D%d\n", state);
Patrick Mocheld550d982006-06-27 00:41:40 -0400263 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 }
265 if (device->parent && (state < device->parent->power.state)) {
Len Browncece9292006-06-26 23:04:31 -0400266 printk(KERN_WARNING PREFIX
Thomas Renningera6fc6722006-06-26 23:58:43 -0400267 "Cannot set device to a higher-powered"
Len Browncece9292006-06-26 23:04:31 -0400268 " state than parent\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400269 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 }
271
272 /*
273 * Transition Power
274 * ----------------
275 * On transitions to a high-powered state we first apply power (via
276 * power resources) then evalute _PSx. Conversly for transitions to
277 * a lower-powered state.
David Shaohua Lib9131002005-03-19 00:16:18 -0500278 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 if (state < device->power.state) {
280 if (device->power.flags.power_resources) {
281 result = acpi_power_transition(device, state);
282 if (result)
283 goto end;
284 }
285 if (device->power.states[state].flags.explicit_set) {
Len Brown4be44fc2005-08-05 00:44:28 -0400286 status = acpi_evaluate_object(device->handle,
287 object_name, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 if (ACPI_FAILURE(status)) {
289 result = -ENODEV;
290 goto end;
291 }
292 }
Len Brown4be44fc2005-08-05 00:44:28 -0400293 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 if (device->power.states[state].flags.explicit_set) {
Len Brown4be44fc2005-08-05 00:44:28 -0400295 status = acpi_evaluate_object(device->handle,
296 object_name, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 if (ACPI_FAILURE(status)) {
298 result = -ENODEV;
299 goto end;
300 }
301 }
302 if (device->power.flags.power_resources) {
303 result = acpi_power_transition(device, state);
304 if (result)
305 goto end;
306 }
307 }
308
Len Brown4be44fc2005-08-05 00:44:28 -0400309 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 if (result)
Len Browncece9292006-06-26 23:04:31 -0400311 printk(KERN_WARNING PREFIX
Len Brownddc50b62009-05-08 00:07:30 -0400312 "Device [%s] failed to transition to D%d\n",
Len Browncece9292006-06-26 23:04:31 -0400313 device->pnp.bus_id, state);
Shaohua Li5e321322007-10-11 23:53:58 +0200314 else {
315 device->power.state = state;
Len Brown4be44fc2005-08-05 00:44:28 -0400316 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
317 "Device [%s] transitioned to D%d\n",
318 device->pnp.bus_id, state));
Shaohua Li5e321322007-10-11 23:53:58 +0200319 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Patrick Mocheld550d982006-06-27 00:41:40 -0400321 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322}
Len Brown4be44fc2005-08-05 00:44:28 -0400323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324EXPORT_SYMBOL(acpi_bus_set_power);
325
Rafael J. Wysocki3737b2b2008-07-07 03:30:55 +0200326bool acpi_bus_power_manageable(acpi_handle handle)
327{
328 struct acpi_device *device;
329 int result;
330
331 result = acpi_bus_get_device(handle, &device);
332 return result ? false : device->flags.power_manageable;
333}
334
335EXPORT_SYMBOL(acpi_bus_power_manageable);
336
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200337bool acpi_bus_can_wakeup(acpi_handle handle)
338{
339 struct acpi_device *device;
340 int result;
341
342 result = acpi_bus_get_device(handle, &device);
343 return result ? false : device->wakeup.flags.valid;
344}
345
346EXPORT_SYMBOL(acpi_bus_can_wakeup);
347
Shaohua Li70023de2009-10-29 11:04:28 +0800348static void acpi_print_osc_error(acpi_handle handle,
349 struct acpi_osc_context *context, char *error)
350{
351 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER};
352 int i;
353
354 if (ACPI_FAILURE(acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer)))
355 printk(KERN_DEBUG "%s\n", error);
356 else {
357 printk(KERN_DEBUG "%s:%s\n", (char *)buffer.pointer, error);
358 kfree(buffer.pointer);
359 }
360 printk(KERN_DEBUG"_OSC request data:");
361 for (i = 0; i < context->cap.length; i += sizeof(u32))
362 printk("%x ", *((u32 *)(context->cap.pointer + i)));
363 printk("\n");
364}
365
366static u8 hex_val(unsigned char c)
367{
368 return isdigit(c) ? c - '0' : toupper(c) - 'A' + 10;
369}
370
371static acpi_status acpi_str_to_uuid(char *str, u8 *uuid)
372{
373 int i;
374 static int opc_map_to_uuid[16] = {6, 4, 2, 0, 11, 9, 16, 14, 19, 21,
375 24, 26, 28, 30, 32, 34};
376
377 if (strlen(str) != 36)
378 return AE_BAD_PARAMETER;
379 for (i = 0; i < 36; i++) {
380 if (i == 8 || i == 13 || i == 18 || i == 23) {
381 if (str[i] != '-')
382 return AE_BAD_PARAMETER;
383 } else if (!isxdigit(str[i]))
384 return AE_BAD_PARAMETER;
385 }
386 for (i = 0; i < 16; i++) {
387 uuid[i] = hex_val(str[opc_map_to_uuid[i]]) << 4;
388 uuid[i] |= hex_val(str[opc_map_to_uuid[i] + 1]);
389 }
390 return AE_OK;
391}
392
393acpi_status acpi_run_osc(acpi_handle handle, struct acpi_osc_context *context)
394{
395 acpi_status status;
396 struct acpi_object_list input;
397 union acpi_object in_params[4];
398 union acpi_object *out_obj;
399 u8 uuid[16];
400 u32 errors;
Shaohua Li9dc130f2009-12-23 17:04:11 +0800401 struct acpi_buffer output = {ACPI_ALLOCATE_BUFFER, NULL};
Shaohua Li70023de2009-10-29 11:04:28 +0800402
403 if (!context)
404 return AE_ERROR;
405 if (ACPI_FAILURE(acpi_str_to_uuid(context->uuid_str, uuid)))
406 return AE_ERROR;
407 context->ret.length = ACPI_ALLOCATE_BUFFER;
408 context->ret.pointer = NULL;
409
410 /* Setting up input parameters */
411 input.count = 4;
412 input.pointer = in_params;
413 in_params[0].type = ACPI_TYPE_BUFFER;
414 in_params[0].buffer.length = 16;
415 in_params[0].buffer.pointer = uuid;
416 in_params[1].type = ACPI_TYPE_INTEGER;
417 in_params[1].integer.value = context->rev;
418 in_params[2].type = ACPI_TYPE_INTEGER;
419 in_params[2].integer.value = context->cap.length/sizeof(u32);
420 in_params[3].type = ACPI_TYPE_BUFFER;
421 in_params[3].buffer.length = context->cap.length;
422 in_params[3].buffer.pointer = context->cap.pointer;
423
Shaohua Li9dc130f2009-12-23 17:04:11 +0800424 status = acpi_evaluate_object(handle, "_OSC", &input, &output);
Shaohua Li70023de2009-10-29 11:04:28 +0800425 if (ACPI_FAILURE(status))
426 return status;
427
Shaohua Li9dc130f2009-12-23 17:04:11 +0800428 if (!output.length)
Shaohua Li70023de2009-10-29 11:04:28 +0800429 return AE_NULL_OBJECT;
430
Shaohua Li9dc130f2009-12-23 17:04:11 +0800431 out_obj = output.pointer;
432 if (out_obj->type != ACPI_TYPE_BUFFER
433 || out_obj->buffer.length != context->cap.length) {
Shaohua Li70023de2009-10-29 11:04:28 +0800434 acpi_print_osc_error(handle, context,
435 "_OSC evaluation returned wrong type");
436 status = AE_TYPE;
437 goto out_kfree;
438 }
439 /* Need to ignore the bit0 in result code */
440 errors = *((u32 *)out_obj->buffer.pointer) & ~(1 << 0);
441 if (errors) {
442 if (errors & OSC_REQUEST_ERROR)
443 acpi_print_osc_error(handle, context,
444 "_OSC request failed");
445 if (errors & OSC_INVALID_UUID_ERROR)
446 acpi_print_osc_error(handle, context,
447 "_OSC invalid UUID");
448 if (errors & OSC_INVALID_REVISION_ERROR)
449 acpi_print_osc_error(handle, context,
450 "_OSC invalid revision");
451 if (errors & OSC_CAPABILITIES_MASK_ERROR) {
452 if (((u32 *)context->cap.pointer)[OSC_QUERY_TYPE]
453 & OSC_QUERY_ENABLE)
454 goto out_success;
455 status = AE_SUPPORT;
456 goto out_kfree;
457 }
458 status = AE_ERROR;
459 goto out_kfree;
460 }
461out_success:
Shaohua Li9dc130f2009-12-23 17:04:11 +0800462 context->ret.length = out_obj->buffer.length;
463 context->ret.pointer = kmalloc(context->ret.length, GFP_KERNEL);
464 if (!context->ret.pointer) {
465 status = AE_NO_MEMORY;
466 goto out_kfree;
467 }
468 memcpy(context->ret.pointer, out_obj->buffer.pointer,
469 context->ret.length);
470 status = AE_OK;
Shaohua Li70023de2009-10-29 11:04:28 +0800471
472out_kfree:
Shaohua Li9dc130f2009-12-23 17:04:11 +0800473 kfree(output.pointer);
474 if (status != AE_OK)
475 context->ret.pointer = NULL;
Shaohua Li70023de2009-10-29 11:04:28 +0800476 return status;
477}
478EXPORT_SYMBOL(acpi_run_osc);
479
Shaohua Li3563ff92009-10-29 11:05:05 +0800480static u8 sb_uuid_str[] = "0811B06E-4A27-44F9-8D60-3CBBC22E7B48";
481static void acpi_bus_osc_support(void)
482{
483 u32 capbuf[2];
484 struct acpi_osc_context context = {
485 .uuid_str = sb_uuid_str,
486 .rev = 1,
487 .cap.length = 8,
488 .cap.pointer = capbuf,
489 };
490 acpi_handle handle;
491
492 capbuf[OSC_QUERY_TYPE] = OSC_QUERY_ENABLE;
493 capbuf[OSC_SUPPORT_TYPE] = OSC_SB_PR3_SUPPORT; /* _PR3 is in use */
Zhao Yakui6a4e2b72010-01-08 21:29:58 +0800494#if defined(CONFIG_ACPI_PROCESSOR_AGGREGATOR) ||\
495 defined(CONFIG_ACPI_PROCESSOR_AGGREGATOR_MODULE)
Shaohua Li3563ff92009-10-29 11:05:05 +0800496 capbuf[OSC_SUPPORT_TYPE] |= OSC_SB_PAD_SUPPORT;
497#endif
Zhao Yakui6a4e2b72010-01-08 21:29:58 +0800498
499#if defined(CONFIG_ACPI_PROCESSOR) || defined(CONFIG_ACPI_PROCESSOR_MODULE)
500 capbuf[OSC_SUPPORT_TYPE] |= OSC_SB_PPC_OST_SUPPORT;
501#endif
Shaohua Li3563ff92009-10-29 11:05:05 +0800502 if (ACPI_FAILURE(acpi_get_handle(NULL, "\\_SB", &handle)))
503 return;
504 if (ACPI_SUCCESS(acpi_run_osc(handle, &context)))
505 kfree(context.ret.pointer);
506 /* do we need to check the returned cap? Sounds no */
507}
508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509/* --------------------------------------------------------------------------
510 Event Management
511 -------------------------------------------------------------------------- */
512
Len Brown14e04fb2007-08-23 15:20:26 -0400513#ifdef CONFIG_ACPI_PROC_EVENT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514static DEFINE_SPINLOCK(acpi_bus_event_lock);
515
516LIST_HEAD(acpi_bus_event_list);
517DECLARE_WAIT_QUEUE_HEAD(acpi_bus_event_queue);
518
Len Brown4be44fc2005-08-05 00:44:28 -0400519extern int event_is_open;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Alexey Starikovskiy8db85d42007-09-26 19:43:16 +0400521int acpi_bus_generate_proc_event4(const char *device_class, const char *bus_id, u8 type, int data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522{
Alexey Starikovskiy8db85d42007-09-26 19:43:16 +0400523 struct acpi_bus_event *event;
Len Brown4be44fc2005-08-05 00:44:28 -0400524 unsigned long flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 /* drop event on the floor if no one's listening */
527 if (!event_is_open)
Patrick Mocheld550d982006-06-27 00:41:40 -0400528 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
530 event = kmalloc(sizeof(struct acpi_bus_event), GFP_ATOMIC);
531 if (!event)
Patrick Mocheld550d982006-06-27 00:41:40 -0400532 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Alexey Starikovskiy8db85d42007-09-26 19:43:16 +0400534 strcpy(event->device_class, device_class);
535 strcpy(event->bus_id, bus_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 event->type = type;
537 event->data = data;
538
539 spin_lock_irqsave(&acpi_bus_event_lock, flags);
540 list_add_tail(&event->node, &acpi_bus_event_list);
541 spin_unlock_irqrestore(&acpi_bus_event_lock, flags);
542
543 wake_up_interruptible(&acpi_bus_event_queue);
544
Patrick Mocheld550d982006-06-27 00:41:40 -0400545 return 0;
Alexey Starikovskiy8db85d42007-09-26 19:43:16 +0400546
547}
548
549EXPORT_SYMBOL_GPL(acpi_bus_generate_proc_event4);
550
551int acpi_bus_generate_proc_event(struct acpi_device *device, u8 type, int data)
552{
553 if (!device)
554 return -EINVAL;
555 return acpi_bus_generate_proc_event4(device->pnp.device_class,
556 device->pnp.bus_id, type, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557}
Len Brown4be44fc2005-08-05 00:44:28 -0400558
Len Brown14e04fb2007-08-23 15:20:26 -0400559EXPORT_SYMBOL(acpi_bus_generate_proc_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Len Brown4be44fc2005-08-05 00:44:28 -0400561int acpi_bus_receive_event(struct acpi_bus_event *event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
Len Brown4be44fc2005-08-05 00:44:28 -0400563 unsigned long flags = 0;
564 struct acpi_bus_event *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566 DECLARE_WAITQUEUE(wait, current);
567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569 if (!event)
Patrick Mocheld550d982006-06-27 00:41:40 -0400570 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572 if (list_empty(&acpi_bus_event_list)) {
573
574 set_current_state(TASK_INTERRUPTIBLE);
575 add_wait_queue(&acpi_bus_event_queue, &wait);
576
577 if (list_empty(&acpi_bus_event_list))
578 schedule();
579
580 remove_wait_queue(&acpi_bus_event_queue, &wait);
581 set_current_state(TASK_RUNNING);
582
583 if (signal_pending(current))
Patrick Mocheld550d982006-06-27 00:41:40 -0400584 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 }
586
587 spin_lock_irqsave(&acpi_bus_event_lock, flags);
Chuck Ebbertf0a37e02008-04-15 14:34:47 -0700588 if (!list_empty(&acpi_bus_event_list)) {
589 entry = list_entry(acpi_bus_event_list.next,
590 struct acpi_bus_event, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 list_del(&entry->node);
Chuck Ebbertf0a37e02008-04-15 14:34:47 -0700592 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 spin_unlock_irqrestore(&acpi_bus_event_lock, flags);
594
595 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400596 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
598 memcpy(event, entry, sizeof(struct acpi_bus_event));
599
600 kfree(entry);
601
Patrick Mocheld550d982006-06-27 00:41:40 -0400602 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Len Brown14e04fb2007-08-23 15:20:26 -0400605#endif /* CONFIG_ACPI_PROC_EVENT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
607/* --------------------------------------------------------------------------
608 Notification Handling
609 -------------------------------------------------------------------------- */
610
Bjorn Helgaasff754e22009-05-22 11:43:56 -0600611static void acpi_bus_check_device(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
Bjorn Helgaasff754e22009-05-22 11:43:56 -0600613 struct acpi_device *device;
Bjorn Helgaascdd5b8c2009-05-22 11:43:51 -0600614 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 struct acpi_device_status old_status;
616
Bjorn Helgaasff754e22009-05-22 11:43:56 -0600617 if (acpi_bus_get_device(handle, &device))
618 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 if (!device)
Bjorn Helgaascdd5b8c2009-05-22 11:43:51 -0600620 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 old_status = device->status;
623
624 /*
625 * Make sure this device's parent is present before we go about
626 * messing with the device.
627 */
628 if (device->parent && !device->parent->status.present) {
629 device->status = device->parent->status;
Bjorn Helgaascdd5b8c2009-05-22 11:43:51 -0600630 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 }
632
633 status = acpi_bus_get_status(device);
634 if (ACPI_FAILURE(status))
Bjorn Helgaascdd5b8c2009-05-22 11:43:51 -0600635 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
637 if (STRUCT_TO_INT(old_status) == STRUCT_TO_INT(device->status))
Bjorn Helgaascdd5b8c2009-05-22 11:43:51 -0600638 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 /*
641 * Device Insertion/Removal
642 */
643 if ((device->status.present) && !(old_status.present)) {
644 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device insertion detected\n"));
645 /* TBD: Handle device insertion */
Len Brown4be44fc2005-08-05 00:44:28 -0400646 } else if (!(device->status.present) && (old_status.present)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device removal detected\n"));
648 /* TBD: Handle device removal */
649 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650}
651
Bjorn Helgaasff754e22009-05-22 11:43:56 -0600652static void acpi_bus_check_scope(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 /* Status Change? */
Bjorn Helgaasff754e22009-05-22 11:43:56 -0600655 acpi_bus_check_device(handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 /*
658 * TBD: Enumerate child devices within this device's scope and
659 * run acpi_bus_check_device()'s on them.
660 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661}
662
Shaohua Li6bd00a62008-08-28 10:04:29 +0800663static BLOCKING_NOTIFIER_HEAD(acpi_bus_notify_list);
664int register_acpi_bus_notifier(struct notifier_block *nb)
665{
666 return blocking_notifier_chain_register(&acpi_bus_notify_list, nb);
667}
668EXPORT_SYMBOL_GPL(register_acpi_bus_notifier);
669
670void unregister_acpi_bus_notifier(struct notifier_block *nb)
671{
672 blocking_notifier_chain_unregister(&acpi_bus_notify_list, nb);
673}
674EXPORT_SYMBOL_GPL(unregister_acpi_bus_notifier);
675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676/**
677 * acpi_bus_notify
678 * ---------------
679 * Callback for all 'system-level' device notifications (values 0x00-0x7F).
680 */
Len Brown4be44fc2005-08-05 00:44:28 -0400681static void acpi_bus_notify(acpi_handle handle, u32 type, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
Len Brown4be44fc2005-08-05 00:44:28 -0400683 struct acpi_device *device = NULL;
Bjorn Helgaas6d278132009-04-30 09:35:37 -0600684 struct acpi_driver *driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Bjorn Helgaas02c37bd2009-05-22 11:43:41 -0600686 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Notification %#02x to handle %p\n",
687 type, handle));
688
Shaohua Li6bd00a62008-08-28 10:04:29 +0800689 blocking_notifier_call_chain(&acpi_bus_notify_list,
690 type, (void *)handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 switch (type) {
693
694 case ACPI_NOTIFY_BUS_CHECK:
Bjorn Helgaasff754e22009-05-22 11:43:56 -0600695 acpi_bus_check_scope(handle);
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500696 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 * TBD: We'll need to outsource certain events to non-ACPI
Len Brown4be44fc2005-08-05 00:44:28 -0400698 * drivers via the device manager (device.c).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 */
700 break;
701
702 case ACPI_NOTIFY_DEVICE_CHECK:
Bjorn Helgaasff754e22009-05-22 11:43:56 -0600703 acpi_bus_check_device(handle);
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500704 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 * TBD: We'll need to outsource certain events to non-ACPI
Len Brown4be44fc2005-08-05 00:44:28 -0400706 * drivers via the device manager (device.c).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 */
708 break;
709
710 case ACPI_NOTIFY_DEVICE_WAKE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 /* TBD */
712 break;
713
714 case ACPI_NOTIFY_EJECT_REQUEST:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 /* TBD */
716 break;
717
718 case ACPI_NOTIFY_DEVICE_CHECK_LIGHT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 /* TBD: Exactly what does 'light' mean? */
720 break;
721
722 case ACPI_NOTIFY_FREQUENCY_MISMATCH:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 /* TBD */
724 break;
725
726 case ACPI_NOTIFY_BUS_MODE_MISMATCH:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 /* TBD */
728 break;
729
730 case ACPI_NOTIFY_POWER_FAULT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 /* TBD */
732 break;
733
734 default:
Len Brown4be44fc2005-08-05 00:44:28 -0400735 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
736 "Received unknown/unsupported notification [%08x]\n",
737 type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 break;
739 }
740
Bjorn Helgaasff754e22009-05-22 11:43:56 -0600741 acpi_bus_get_device(handle, &device);
742 if (device) {
743 driver = device->driver;
744 if (driver && driver->ops.notify &&
745 (driver->flags & ACPI_DRIVER_ALL_NOTIFY_EVENTS))
746 driver->ops.notify(device, type);
747 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748}
749
750/* --------------------------------------------------------------------------
751 Initialization/Cleanup
752 -------------------------------------------------------------------------- */
753
Len Brown4be44fc2005-08-05 00:44:28 -0400754static int __init acpi_bus_init_irq(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755{
Len Brown4be44fc2005-08-05 00:44:28 -0400756 acpi_status status = AE_OK;
757 union acpi_object arg = { ACPI_TYPE_INTEGER };
758 struct acpi_object_list arg_list = { 1, &arg };
759 char *message = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500762 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 * Let the system know what interrupt model we are using by
764 * evaluating the \_PIC object, if exists.
765 */
766
767 switch (acpi_irq_model) {
768 case ACPI_IRQ_MODEL_PIC:
769 message = "PIC";
770 break;
771 case ACPI_IRQ_MODEL_IOAPIC:
772 message = "IOAPIC";
773 break;
774 case ACPI_IRQ_MODEL_IOSAPIC:
775 message = "IOSAPIC";
776 break;
John Keller3948ec92006-12-22 11:50:04 -0600777 case ACPI_IRQ_MODEL_PLATFORM:
778 message = "platform specific model";
779 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 default:
781 printk(KERN_WARNING PREFIX "Unknown interrupt routing model\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400782 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 }
784
785 printk(KERN_INFO PREFIX "Using %s for interrupt routing\n", message);
786
787 arg.integer.value = acpi_irq_model;
788
789 status = acpi_evaluate_object(NULL, "\\_PIC", &arg_list, NULL);
790 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400791 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PIC"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400792 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 }
794
Patrick Mocheld550d982006-06-27 00:41:40 -0400795 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796}
797
Bob Moore67a119f2008-06-10 13:42:13 +0800798u8 acpi_gbl_permanent_mmap;
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300799
800
Len Brown4be44fc2005-08-05 00:44:28 -0400801void __init acpi_early_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802{
Len Brown4be44fc2005-08-05 00:44:28 -0400803 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
805 if (acpi_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -0400806 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Bob Moore616861242006-03-17 16:44:00 -0500808 printk(KERN_INFO PREFIX "Core revision %08x\n", ACPI_CA_VERSION);
809
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 /* enable workarounds, unless strict ACPI spec. compliance */
811 if (!acpi_strict)
812 acpi_gbl_enable_interpreter_slack = TRUE;
813
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300814 acpi_gbl_permanent_mmap = 1;
815
816 status = acpi_reallocate_root_table();
817 if (ACPI_FAILURE(status)) {
818 printk(KERN_ERR PREFIX
819 "Unable to reallocate ACPI tables\n");
820 goto error0;
821 }
822
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 status = acpi_initialize_subsystem();
824 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400825 printk(KERN_ERR PREFIX
826 "Unable to initialize the ACPI Interpreter\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 goto error0;
828 }
829
830 status = acpi_load_tables();
831 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400832 printk(KERN_ERR PREFIX
833 "Unable to load the System Description Tables\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 goto error0;
835 }
836
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837#ifdef CONFIG_X86
838 if (!acpi_ioapic) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 /* compatible (0) means level (3) */
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300840 if (!(acpi_sci_flags & ACPI_MADT_TRIGGER_MASK)) {
841 acpi_sci_flags &= ~ACPI_MADT_TRIGGER_MASK;
842 acpi_sci_flags |= ACPI_MADT_TRIGGER_LEVEL;
843 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 /* Set PIC-mode SCI trigger type */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300845 acpi_pic_sci_set_trigger(acpi_gbl_FADT.sci_interrupt,
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300846 (acpi_sci_flags & ACPI_MADT_TRIGGER_MASK) >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 /*
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300849 * now that acpi_gbl_FADT is initialized,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 * update it with result from INT_SRC_OVR parsing
851 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300852 acpi_gbl_FADT.sci_interrupt = acpi_sci_override_gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 }
854#endif
855
Len Brown4be44fc2005-08-05 00:44:28 -0400856 status =
857 acpi_enable_subsystem(~
858 (ACPI_NO_HARDWARE_INIT |
859 ACPI_NO_ACPI_ENABLE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 if (ACPI_FAILURE(status)) {
861 printk(KERN_ERR PREFIX "Unable to enable ACPI\n");
862 goto error0;
863 }
864
Patrick Mocheld550d982006-06-27 00:41:40 -0400865 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Len Brown4be44fc2005-08-05 00:44:28 -0400867 error0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 disable_acpi();
Patrick Mocheld550d982006-06-27 00:41:40 -0400869 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870}
871
Len Brown4be44fc2005-08-05 00:44:28 -0400872static int __init acpi_bus_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873{
Len Brown4be44fc2005-08-05 00:44:28 -0400874 int result = 0;
875 acpi_status status = AE_OK;
876 extern acpi_status acpi_os_initialize1(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Jiri Slaby176f9c12009-03-04 11:55:27 -0800878 acpi_os_initialize1();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
Len Brown4be44fc2005-08-05 00:44:28 -0400880 status =
881 acpi_enable_subsystem(ACPI_NO_HARDWARE_INIT | ACPI_NO_ACPI_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400883 printk(KERN_ERR PREFIX
884 "Unable to start the ACPI Interpreter\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 goto error1;
886 }
887
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 /*
889 * ACPI 2.0 requires the EC driver to be loaded and work before
890 * the EC device is found in the namespace (i.e. before acpi_initialize_objects()
891 * is called).
892 *
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500893 * This is accomplished by looking for the ECDT table, and getting
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 * the EC parameters out of that.
895 */
896 status = acpi_ec_ecdt_probe();
897 /* Ignore result. Not having an ECDT is not fatal. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
Shaohua Li3563ff92009-10-29 11:05:05 +0800899 acpi_bus_osc_support();
900
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 status = acpi_initialize_objects(ACPI_FULL_INITIALIZATION);
902 if (ACPI_FAILURE(status)) {
903 printk(KERN_ERR PREFIX "Unable to initialize ACPI objects\n");
904 goto error1;
905 }
906
Alex Chiang78f16992009-12-20 12:19:09 -0700907 acpi_early_processor_set_pdc();
908
Zhao Yakui455c8792008-10-06 10:31:36 +0800909 /*
910 * Maybe EC region is required at bus_scan/acpi_get_devices. So it
911 * is necessary to enable it as early as possible.
912 */
913 acpi_boot_ec_enable();
914
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 printk(KERN_INFO PREFIX "Interpreter enabled\n");
916
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500917 /* Initialize sleep structures */
918 acpi_sleep_init();
919
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 /*
921 * Get the system interrupt model and evaluate \_PIC.
922 */
923 result = acpi_bus_init_irq();
924 if (result)
925 goto error1;
926
927 /*
928 * Register the for all standard device notifications.
929 */
Len Brown4be44fc2005-08-05 00:44:28 -0400930 status =
931 acpi_install_notify_handler(ACPI_ROOT_OBJECT, ACPI_SYSTEM_NOTIFY,
932 &acpi_bus_notify, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400934 printk(KERN_ERR PREFIX
935 "Unable to register for device notifications\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 goto error1;
937 }
938
939 /*
940 * Create the top ACPI proc directory
941 */
942 acpi_root_dir = proc_mkdir(ACPI_BUS_FILE_ROOT, NULL);
943
Patrick Mocheld550d982006-06-27 00:41:40 -0400944 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
946 /* Mimic structured exception handling */
Len Brown4be44fc2005-08-05 00:44:28 -0400947 error1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 acpi_terminate();
Patrick Mocheld550d982006-06-27 00:41:40 -0400949 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950}
951
Greg Kroah-Hartman99e0d2f2007-11-02 16:19:59 -0700952struct kobject *acpi_kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Len Brown4be44fc2005-08-05 00:44:28 -0400954static int __init acpi_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955{
Len Brown4be44fc2005-08-05 00:44:28 -0400956 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 if (acpi_disabled) {
960 printk(KERN_INFO PREFIX "Interpreter disabled.\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400961 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 }
963
Greg Kroah-Hartmanf62ed9e2007-11-05 13:16:15 -0800964 acpi_kobj = kobject_create_and_add("acpi", firmware_kobj);
Greg Kroah-Hartman99e0d2f2007-11-02 16:19:59 -0700965 if (!acpi_kobj) {
Harvey Harrison96b2dd12008-03-05 18:24:51 -0800966 printk(KERN_WARNING "%s: kset create error\n", __func__);
Greg Kroah-Hartman99e0d2f2007-11-02 16:19:59 -0700967 acpi_kobj = NULL;
968 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Bjorn Helgaas0e465172009-03-24 16:50:09 -0600970 init_acpi_device_notify();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 result = acpi_bus_init();
972
973 if (!result) {
Robert Hancock7752d5c2008-02-15 01:27:20 -0800974 pci_mmcfg_late_init();
Len Brown9f9adec2007-12-13 17:38:03 -0500975 if (!(pm_flags & PM_APM))
976 pm_flags |= PM_ACPI;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 else {
Len Brown4be44fc2005-08-05 00:44:28 -0400978 printk(KERN_INFO PREFIX
979 "APM is already active, exiting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 disable_acpi();
981 result = -ENODEV;
982 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 } else
984 disable_acpi();
Bjorn Helgaas81d02732009-03-24 16:49:38 -0600985
986 if (acpi_disabled)
987 return result;
988
Zhao Yakui6415e122008-08-11 14:59:59 +0800989 /*
990 * If the laptop falls into the DMI check table, the power state check
991 * will be disabled in the course of device power transistion.
992 */
993 dmi_check_system(power_nocheck_dmi_table);
Bjorn Helgaase747f272009-03-24 16:49:43 -0600994
995 acpi_scan_init();
Bjorn Helgaasa5f820f2009-03-24 16:49:48 -0600996 acpi_ec_init();
Bjorn Helgaas44515372009-03-24 16:49:53 -0600997 acpi_power_init();
Bjorn Helgaas141a0af2009-03-24 16:49:58 -0600998 acpi_system_init();
Bjorn Helgaas84f810c2009-03-24 16:50:03 -0600999 acpi_debug_init();
Bjorn Helgaas9cee43e2009-03-24 16:50:14 -06001000 acpi_sleep_proc_init();
Bjorn Helgaas201b8c62009-03-24 16:50:19 -06001001 acpi_wakeup_device_init();
Patrick Mocheld550d982006-06-27 00:41:40 -04001002 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003}
1004
1005subsys_initcall(acpi_init);