blob: 49af19bb8c9bda0400d4dd4cdae01ab98c612fc4 [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
Lin Mingaa2110c2010-04-08 14:34:27 +080072static int set_copy_dsdt(const struct dmi_system_id *id)
73{
74 printk(KERN_NOTICE "%s detected - "
75 "force copy of DSDT to local memory\n", id->ident);
76 acpi_gbl_copy_dsdt_locally = 1;
77 return 0;
78}
79
80static struct dmi_system_id dsdt_dmi_table[] __initdata = {
81 /*
82 * Insyde BIOS on some TOSHIBA machines corrupt the DSDT.
83 * https://bugzilla.kernel.org/show_bug.cgi?id=14679
84 */
85 {
86 .callback = set_copy_dsdt,
87 .ident = "TOSHIBA Satellite A505",
88 .matches = {
89 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
90 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite A505"),
91 },
92 },
93 {
94 .callback = set_copy_dsdt,
95 .ident = "TOSHIBA Satellite L505D",
96 .matches = {
97 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
98 DMI_MATCH(DMI_PRODUCT_NAME, "Satellite L505D"),
99 },
100 }
101};
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103/* --------------------------------------------------------------------------
104 Device Management
105 -------------------------------------------------------------------------- */
106
Len Brown4be44fc2005-08-05 00:44:28 -0400107int acpi_bus_get_device(acpi_handle handle, struct acpi_device **device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108{
Len Brown4be44fc2005-08-05 00:44:28 -0400109 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400113 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115 /* TBD: Support fixed-feature devices */
116
Len Brown4be44fc2005-08-05 00:44:28 -0400117 status = acpi_get_data(handle, acpi_bus_data_handler, (void **)device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 if (ACPI_FAILURE(status) || !*device) {
Len Brown9805cb72006-07-25 13:30:57 -0400119 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No context for object [%p]\n",
120 handle));
Patrick Mocheld550d982006-06-27 00:41:40 -0400121 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 }
123
Patrick Mocheld550d982006-06-27 00:41:40 -0400124 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125}
Len Brown4be44fc2005-08-05 00:44:28 -0400126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127EXPORT_SYMBOL(acpi_bus_get_device);
128
Bjorn Helgaas402ac532009-09-21 19:30:01 +0000129acpi_status acpi_bus_get_status_handle(acpi_handle handle,
130 unsigned long long *sta)
131{
132 acpi_status status;
133
134 status = acpi_evaluate_integer(handle, "_STA", NULL, sta);
135 if (ACPI_SUCCESS(status))
136 return AE_OK;
137
138 if (status == AE_NOT_FOUND) {
139 *sta = ACPI_STA_DEVICE_PRESENT | ACPI_STA_DEVICE_ENABLED |
140 ACPI_STA_DEVICE_UI | ACPI_STA_DEVICE_FUNCTIONING;
141 return AE_OK;
142 }
143 return status;
144}
145
Len Brown4be44fc2005-08-05 00:44:28 -0400146int acpi_bus_get_status(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
Bjorn Helgaas402ac532009-09-21 19:30:01 +0000148 acpi_status status;
149 unsigned long long sta;
Len Brown4be44fc2005-08-05 00:44:28 -0400150
Bjorn Helgaas402ac532009-09-21 19:30:01 +0000151 status = acpi_bus_get_status_handle(device->handle, &sta);
152 if (ACPI_FAILURE(status))
153 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Bjorn Helgaas402ac532009-09-21 19:30:01 +0000155 STRUCT_TO_INT(device->status) = (int) sta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157 if (device->status.functional && !device->status.present) {
Zhao Yakui39a0ad82008-08-11 13:40:22 +0800158 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] status [%08x]: "
159 "functional but not present;\n",
160 device->pnp.bus_id,
161 (u32) STRUCT_TO_INT(device->status)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 }
163
Len Brown4be44fc2005-08-05 00:44:28 -0400164 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] status [%08x]\n",
165 device->pnp.bus_id,
166 (u32) STRUCT_TO_INT(device->status)));
Patrick Mocheld550d982006-06-27 00:41:40 -0400167 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168}
Len Brown4be44fc2005-08-05 00:44:28 -0400169EXPORT_SYMBOL(acpi_bus_get_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Zhang Rui20733932008-01-17 15:51:21 +0800171void acpi_bus_private_data_handler(acpi_handle handle,
Bob Moore8e4319c2009-06-29 13:43:27 +0800172 void *context)
Zhang Rui20733932008-01-17 15:51:21 +0800173{
174 return;
175}
176EXPORT_SYMBOL(acpi_bus_private_data_handler);
177
178int acpi_bus_get_private_data(acpi_handle handle, void **data)
179{
180 acpi_status status = AE_OK;
181
182 if (!*data)
183 return -EINVAL;
184
185 status = acpi_get_data(handle, acpi_bus_private_data_handler, data);
186 if (ACPI_FAILURE(status) || !*data) {
187 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No context for object [%p]\n",
188 handle));
189 return -ENODEV;
190 }
191
192 return 0;
193}
194EXPORT_SYMBOL(acpi_bus_get_private_data);
195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196/* --------------------------------------------------------------------------
197 Power Management
198 -------------------------------------------------------------------------- */
199
Len Brown4be44fc2005-08-05 00:44:28 -0400200int acpi_bus_get_power(acpi_handle handle, int *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
Len Brown4be44fc2005-08-05 00:44:28 -0400202 int result = 0;
203 acpi_status status = 0;
204 struct acpi_device *device = NULL;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400205 unsigned long long psc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208 result = acpi_bus_get_device(handle, &device);
209 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400210 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212 *state = ACPI_STATE_UNKNOWN;
213
214 if (!device->flags.power_manageable) {
215 /* TBD: Non-recursive algorithm for walking up hierarchy */
216 if (device->parent)
217 *state = device->parent->power.state;
218 else
219 *state = ACPI_STATE_D0;
Len Brown4be44fc2005-08-05 00:44:28 -0400220 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 /*
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500222 * Get the device's power state either directly (via _PSC) or
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 * indirectly (via power resources).
224 */
Zhang Rui0c99c522009-12-17 16:02:08 +0800225 if (device->power.flags.power_resources) {
226 result = acpi_power_get_inferred_state(device);
227 if (result)
228 return result;
229 } else if (device->power.flags.explicit_get) {
Len Brown4be44fc2005-08-05 00:44:28 -0400230 status = acpi_evaluate_integer(device->handle, "_PSC",
231 NULL, &psc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400233 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400234 device->power.state = (int)psc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 }
236
237 *state = device->power.state;
238 }
239
240 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] power state is D%d\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400241 device->pnp.bus_id, device->power.state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Patrick Mocheld550d982006-06-27 00:41:40 -0400243 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244}
Len Brown4be44fc2005-08-05 00:44:28 -0400245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246EXPORT_SYMBOL(acpi_bus_get_power);
247
Len Brown4be44fc2005-08-05 00:44:28 -0400248int acpi_bus_set_power(acpi_handle handle, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
Len Brown4be44fc2005-08-05 00:44:28 -0400250 int result = 0;
251 acpi_status status = AE_OK;
252 struct acpi_device *device = NULL;
253 char object_name[5] = { '_', 'P', 'S', '0' + state, '\0' };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256 result = acpi_bus_get_device(handle, &device);
257 if (result)
Patrick Mocheld550d982006-06-27 00:41:40 -0400258 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260 if ((state < ACPI_STATE_D0) || (state > ACPI_STATE_D3))
Patrick Mocheld550d982006-06-27 00:41:40 -0400261 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263 /* Make sure this is a valid target state */
264
265 if (!device->flags.power_manageable) {
Len Brown9805cb72006-07-25 13:30:57 -0400266 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device `[%s]' is not power manageable\n",
Greg Kroah-Hartman19c38de2007-09-12 15:06:57 -0700267 kobject_name(&device->dev.kobj)));
Patrick Mocheld550d982006-06-27 00:41:40 -0400268 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 }
David Shaohua Lib9131002005-03-19 00:16:18 -0500270 /*
Alexey Starikovskiyc35923b2007-10-22 14:19:09 +0400271 * Get device's current power state
David Shaohua Lib9131002005-03-19 00:16:18 -0500272 */
Zhao Yakuif5adfaa2008-08-11 14:57:50 +0800273 if (!acpi_power_nocheck) {
274 /*
275 * Maybe the incorrect power state is returned on the bogus
276 * bios, which is different with the real power state.
277 * For example: the bios returns D0 state and the real power
278 * state is D3. OS expects to set the device to D0 state. In
279 * such case if OS uses the power state returned by the BIOS,
280 * the device can't be transisted to the correct power state.
281 * So if the acpi_power_nocheck is set, it is unnecessary to
282 * get the power state by calling acpi_bus_get_power.
283 */
284 acpi_bus_get_power(device->handle, &device->power.state);
285 }
Len Brownec683732008-01-23 22:41:20 -0500286 if ((state == device->power.state) && !device->flags.force_power_state) {
Konstantin Karasyovb1028c52007-02-16 02:23:07 -0500287 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device is already at D%d\n",
288 state));
289 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 }
Konstantin Karasyovb1028c52007-02-16 02:23:07 -0500291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 if (!device->power.states[state].flags.valid) {
Len Browncece9292006-06-26 23:04:31 -0400293 printk(KERN_WARNING PREFIX "Device does not support D%d\n", state);
Patrick Mocheld550d982006-06-27 00:41:40 -0400294 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 }
296 if (device->parent && (state < device->parent->power.state)) {
Len Browncece9292006-06-26 23:04:31 -0400297 printk(KERN_WARNING PREFIX
Thomas Renningera6fc6722006-06-26 23:58:43 -0400298 "Cannot set device to a higher-powered"
Len Browncece9292006-06-26 23:04:31 -0400299 " state than parent\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400300 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 }
302
303 /*
304 * Transition Power
305 * ----------------
306 * On transitions to a high-powered state we first apply power (via
307 * power resources) then evalute _PSx. Conversly for transitions to
308 * a lower-powered state.
David Shaohua Lib9131002005-03-19 00:16:18 -0500309 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 if (state < device->power.state) {
311 if (device->power.flags.power_resources) {
312 result = acpi_power_transition(device, state);
313 if (result)
314 goto end;
315 }
316 if (device->power.states[state].flags.explicit_set) {
Len Brown4be44fc2005-08-05 00:44:28 -0400317 status = acpi_evaluate_object(device->handle,
318 object_name, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 if (ACPI_FAILURE(status)) {
320 result = -ENODEV;
321 goto end;
322 }
323 }
Len Brown4be44fc2005-08-05 00:44:28 -0400324 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 if (device->power.states[state].flags.explicit_set) {
Len Brown4be44fc2005-08-05 00:44:28 -0400326 status = acpi_evaluate_object(device->handle,
327 object_name, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 if (ACPI_FAILURE(status)) {
329 result = -ENODEV;
330 goto end;
331 }
332 }
333 if (device->power.flags.power_resources) {
334 result = acpi_power_transition(device, state);
335 if (result)
336 goto end;
337 }
338 }
339
Len Brown4be44fc2005-08-05 00:44:28 -0400340 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 if (result)
Len Browncece9292006-06-26 23:04:31 -0400342 printk(KERN_WARNING PREFIX
Len Brownddc50b62009-05-08 00:07:30 -0400343 "Device [%s] failed to transition to D%d\n",
Len Browncece9292006-06-26 23:04:31 -0400344 device->pnp.bus_id, state);
Shaohua Li5e321322007-10-11 23:53:58 +0200345 else {
346 device->power.state = state;
Len Brown4be44fc2005-08-05 00:44:28 -0400347 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
348 "Device [%s] transitioned to D%d\n",
349 device->pnp.bus_id, state));
Shaohua Li5e321322007-10-11 23:53:58 +0200350 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Patrick Mocheld550d982006-06-27 00:41:40 -0400352 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353}
Len Brown4be44fc2005-08-05 00:44:28 -0400354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355EXPORT_SYMBOL(acpi_bus_set_power);
356
Rafael J. Wysocki3737b2b2008-07-07 03:30:55 +0200357bool acpi_bus_power_manageable(acpi_handle handle)
358{
359 struct acpi_device *device;
360 int result;
361
362 result = acpi_bus_get_device(handle, &device);
363 return result ? false : device->flags.power_manageable;
364}
365
366EXPORT_SYMBOL(acpi_bus_power_manageable);
367
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200368bool acpi_bus_can_wakeup(acpi_handle handle)
369{
370 struct acpi_device *device;
371 int result;
372
373 result = acpi_bus_get_device(handle, &device);
374 return result ? false : device->wakeup.flags.valid;
375}
376
377EXPORT_SYMBOL(acpi_bus_can_wakeup);
378
Shaohua Li70023de2009-10-29 11:04:28 +0800379static void acpi_print_osc_error(acpi_handle handle,
380 struct acpi_osc_context *context, char *error)
381{
382 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER};
383 int i;
384
385 if (ACPI_FAILURE(acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer)))
386 printk(KERN_DEBUG "%s\n", error);
387 else {
388 printk(KERN_DEBUG "%s:%s\n", (char *)buffer.pointer, error);
389 kfree(buffer.pointer);
390 }
391 printk(KERN_DEBUG"_OSC request data:");
392 for (i = 0; i < context->cap.length; i += sizeof(u32))
393 printk("%x ", *((u32 *)(context->cap.pointer + i)));
394 printk("\n");
395}
396
397static u8 hex_val(unsigned char c)
398{
399 return isdigit(c) ? c - '0' : toupper(c) - 'A' + 10;
400}
401
402static acpi_status acpi_str_to_uuid(char *str, u8 *uuid)
403{
404 int i;
405 static int opc_map_to_uuid[16] = {6, 4, 2, 0, 11, 9, 16, 14, 19, 21,
406 24, 26, 28, 30, 32, 34};
407
408 if (strlen(str) != 36)
409 return AE_BAD_PARAMETER;
410 for (i = 0; i < 36; i++) {
411 if (i == 8 || i == 13 || i == 18 || i == 23) {
412 if (str[i] != '-')
413 return AE_BAD_PARAMETER;
414 } else if (!isxdigit(str[i]))
415 return AE_BAD_PARAMETER;
416 }
417 for (i = 0; i < 16; i++) {
418 uuid[i] = hex_val(str[opc_map_to_uuid[i]]) << 4;
419 uuid[i] |= hex_val(str[opc_map_to_uuid[i] + 1]);
420 }
421 return AE_OK;
422}
423
424acpi_status acpi_run_osc(acpi_handle handle, struct acpi_osc_context *context)
425{
426 acpi_status status;
427 struct acpi_object_list input;
428 union acpi_object in_params[4];
429 union acpi_object *out_obj;
430 u8 uuid[16];
431 u32 errors;
Shaohua Li9dc130f2009-12-23 17:04:11 +0800432 struct acpi_buffer output = {ACPI_ALLOCATE_BUFFER, NULL};
Shaohua Li70023de2009-10-29 11:04:28 +0800433
434 if (!context)
435 return AE_ERROR;
436 if (ACPI_FAILURE(acpi_str_to_uuid(context->uuid_str, uuid)))
437 return AE_ERROR;
438 context->ret.length = ACPI_ALLOCATE_BUFFER;
439 context->ret.pointer = NULL;
440
441 /* Setting up input parameters */
442 input.count = 4;
443 input.pointer = in_params;
444 in_params[0].type = ACPI_TYPE_BUFFER;
445 in_params[0].buffer.length = 16;
446 in_params[0].buffer.pointer = uuid;
447 in_params[1].type = ACPI_TYPE_INTEGER;
448 in_params[1].integer.value = context->rev;
449 in_params[2].type = ACPI_TYPE_INTEGER;
450 in_params[2].integer.value = context->cap.length/sizeof(u32);
451 in_params[3].type = ACPI_TYPE_BUFFER;
452 in_params[3].buffer.length = context->cap.length;
453 in_params[3].buffer.pointer = context->cap.pointer;
454
Shaohua Li9dc130f2009-12-23 17:04:11 +0800455 status = acpi_evaluate_object(handle, "_OSC", &input, &output);
Shaohua Li70023de2009-10-29 11:04:28 +0800456 if (ACPI_FAILURE(status))
457 return status;
458
Shaohua Li9dc130f2009-12-23 17:04:11 +0800459 if (!output.length)
Shaohua Li70023de2009-10-29 11:04:28 +0800460 return AE_NULL_OBJECT;
461
Shaohua Li9dc130f2009-12-23 17:04:11 +0800462 out_obj = output.pointer;
463 if (out_obj->type != ACPI_TYPE_BUFFER
464 || out_obj->buffer.length != context->cap.length) {
Shaohua Li70023de2009-10-29 11:04:28 +0800465 acpi_print_osc_error(handle, context,
466 "_OSC evaluation returned wrong type");
467 status = AE_TYPE;
468 goto out_kfree;
469 }
470 /* Need to ignore the bit0 in result code */
471 errors = *((u32 *)out_obj->buffer.pointer) & ~(1 << 0);
472 if (errors) {
473 if (errors & OSC_REQUEST_ERROR)
474 acpi_print_osc_error(handle, context,
475 "_OSC request failed");
476 if (errors & OSC_INVALID_UUID_ERROR)
477 acpi_print_osc_error(handle, context,
478 "_OSC invalid UUID");
479 if (errors & OSC_INVALID_REVISION_ERROR)
480 acpi_print_osc_error(handle, context,
481 "_OSC invalid revision");
482 if (errors & OSC_CAPABILITIES_MASK_ERROR) {
483 if (((u32 *)context->cap.pointer)[OSC_QUERY_TYPE]
484 & OSC_QUERY_ENABLE)
485 goto out_success;
486 status = AE_SUPPORT;
487 goto out_kfree;
488 }
489 status = AE_ERROR;
490 goto out_kfree;
491 }
492out_success:
Shaohua Li9dc130f2009-12-23 17:04:11 +0800493 context->ret.length = out_obj->buffer.length;
494 context->ret.pointer = kmalloc(context->ret.length, GFP_KERNEL);
495 if (!context->ret.pointer) {
496 status = AE_NO_MEMORY;
497 goto out_kfree;
498 }
499 memcpy(context->ret.pointer, out_obj->buffer.pointer,
500 context->ret.length);
501 status = AE_OK;
Shaohua Li70023de2009-10-29 11:04:28 +0800502
503out_kfree:
Shaohua Li9dc130f2009-12-23 17:04:11 +0800504 kfree(output.pointer);
505 if (status != AE_OK)
506 context->ret.pointer = NULL;
Shaohua Li70023de2009-10-29 11:04:28 +0800507 return status;
508}
509EXPORT_SYMBOL(acpi_run_osc);
510
Shaohua Li3563ff92009-10-29 11:05:05 +0800511static u8 sb_uuid_str[] = "0811B06E-4A27-44F9-8D60-3CBBC22E7B48";
512static void acpi_bus_osc_support(void)
513{
514 u32 capbuf[2];
515 struct acpi_osc_context context = {
516 .uuid_str = sb_uuid_str,
517 .rev = 1,
518 .cap.length = 8,
519 .cap.pointer = capbuf,
520 };
521 acpi_handle handle;
522
523 capbuf[OSC_QUERY_TYPE] = OSC_QUERY_ENABLE;
524 capbuf[OSC_SUPPORT_TYPE] = OSC_SB_PR3_SUPPORT; /* _PR3 is in use */
Zhao Yakui6a4e2b72010-01-08 21:29:58 +0800525#if defined(CONFIG_ACPI_PROCESSOR_AGGREGATOR) ||\
526 defined(CONFIG_ACPI_PROCESSOR_AGGREGATOR_MODULE)
Shaohua Li3563ff92009-10-29 11:05:05 +0800527 capbuf[OSC_SUPPORT_TYPE] |= OSC_SB_PAD_SUPPORT;
528#endif
Zhao Yakui6a4e2b72010-01-08 21:29:58 +0800529
530#if defined(CONFIG_ACPI_PROCESSOR) || defined(CONFIG_ACPI_PROCESSOR_MODULE)
531 capbuf[OSC_SUPPORT_TYPE] |= OSC_SB_PPC_OST_SUPPORT;
532#endif
Shaohua Li3563ff92009-10-29 11:05:05 +0800533 if (ACPI_FAILURE(acpi_get_handle(NULL, "\\_SB", &handle)))
534 return;
535 if (ACPI_SUCCESS(acpi_run_osc(handle, &context)))
536 kfree(context.ret.pointer);
537 /* do we need to check the returned cap? Sounds no */
538}
539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540/* --------------------------------------------------------------------------
541 Event Management
542 -------------------------------------------------------------------------- */
543
Len Brown14e04fb2007-08-23 15:20:26 -0400544#ifdef CONFIG_ACPI_PROC_EVENT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545static DEFINE_SPINLOCK(acpi_bus_event_lock);
546
547LIST_HEAD(acpi_bus_event_list);
548DECLARE_WAIT_QUEUE_HEAD(acpi_bus_event_queue);
549
Len Brown4be44fc2005-08-05 00:44:28 -0400550extern int event_is_open;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Alexey Starikovskiy8db85d42007-09-26 19:43:16 +0400552int acpi_bus_generate_proc_event4(const char *device_class, const char *bus_id, u8 type, int data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
Alexey Starikovskiy8db85d42007-09-26 19:43:16 +0400554 struct acpi_bus_event *event;
Len Brown4be44fc2005-08-05 00:44:28 -0400555 unsigned long flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 /* drop event on the floor if no one's listening */
558 if (!event_is_open)
Patrick Mocheld550d982006-06-27 00:41:40 -0400559 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
561 event = kmalloc(sizeof(struct acpi_bus_event), GFP_ATOMIC);
562 if (!event)
Patrick Mocheld550d982006-06-27 00:41:40 -0400563 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Alexey Starikovskiy8db85d42007-09-26 19:43:16 +0400565 strcpy(event->device_class, device_class);
566 strcpy(event->bus_id, bus_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 event->type = type;
568 event->data = data;
569
570 spin_lock_irqsave(&acpi_bus_event_lock, flags);
571 list_add_tail(&event->node, &acpi_bus_event_list);
572 spin_unlock_irqrestore(&acpi_bus_event_lock, flags);
573
574 wake_up_interruptible(&acpi_bus_event_queue);
575
Patrick Mocheld550d982006-06-27 00:41:40 -0400576 return 0;
Alexey Starikovskiy8db85d42007-09-26 19:43:16 +0400577
578}
579
580EXPORT_SYMBOL_GPL(acpi_bus_generate_proc_event4);
581
582int acpi_bus_generate_proc_event(struct acpi_device *device, u8 type, int data)
583{
584 if (!device)
585 return -EINVAL;
586 return acpi_bus_generate_proc_event4(device->pnp.device_class,
587 device->pnp.bus_id, type, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588}
Len Brown4be44fc2005-08-05 00:44:28 -0400589
Len Brown14e04fb2007-08-23 15:20:26 -0400590EXPORT_SYMBOL(acpi_bus_generate_proc_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Len Brown4be44fc2005-08-05 00:44:28 -0400592int acpi_bus_receive_event(struct acpi_bus_event *event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
Len Brown4be44fc2005-08-05 00:44:28 -0400594 unsigned long flags = 0;
595 struct acpi_bus_event *entry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
597 DECLARE_WAITQUEUE(wait, current);
598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600 if (!event)
Patrick Mocheld550d982006-06-27 00:41:40 -0400601 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
603 if (list_empty(&acpi_bus_event_list)) {
604
605 set_current_state(TASK_INTERRUPTIBLE);
606 add_wait_queue(&acpi_bus_event_queue, &wait);
607
608 if (list_empty(&acpi_bus_event_list))
609 schedule();
610
611 remove_wait_queue(&acpi_bus_event_queue, &wait);
612 set_current_state(TASK_RUNNING);
613
614 if (signal_pending(current))
Patrick Mocheld550d982006-06-27 00:41:40 -0400615 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 }
617
618 spin_lock_irqsave(&acpi_bus_event_lock, flags);
Chuck Ebbertf0a37e02008-04-15 14:34:47 -0700619 if (!list_empty(&acpi_bus_event_list)) {
620 entry = list_entry(acpi_bus_event_list.next,
621 struct acpi_bus_event, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 list_del(&entry->node);
Chuck Ebbertf0a37e02008-04-15 14:34:47 -0700623 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 spin_unlock_irqrestore(&acpi_bus_event_lock, flags);
625
626 if (!entry)
Patrick Mocheld550d982006-06-27 00:41:40 -0400627 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
629 memcpy(event, entry, sizeof(struct acpi_bus_event));
630
631 kfree(entry);
632
Patrick Mocheld550d982006-06-27 00:41:40 -0400633 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Len Brown14e04fb2007-08-23 15:20:26 -0400636#endif /* CONFIG_ACPI_PROC_EVENT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
638/* --------------------------------------------------------------------------
639 Notification Handling
640 -------------------------------------------------------------------------- */
641
Bjorn Helgaasff754e22009-05-22 11:43:56 -0600642static void acpi_bus_check_device(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643{
Bjorn Helgaasff754e22009-05-22 11:43:56 -0600644 struct acpi_device *device;
Bjorn Helgaascdd5b8c2009-05-22 11:43:51 -0600645 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 struct acpi_device_status old_status;
647
Bjorn Helgaasff754e22009-05-22 11:43:56 -0600648 if (acpi_bus_get_device(handle, &device))
649 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 if (!device)
Bjorn Helgaascdd5b8c2009-05-22 11:43:51 -0600651 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 old_status = device->status;
654
655 /*
656 * Make sure this device's parent is present before we go about
657 * messing with the device.
658 */
659 if (device->parent && !device->parent->status.present) {
660 device->status = device->parent->status;
Bjorn Helgaascdd5b8c2009-05-22 11:43:51 -0600661 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 }
663
664 status = acpi_bus_get_status(device);
665 if (ACPI_FAILURE(status))
Bjorn Helgaascdd5b8c2009-05-22 11:43:51 -0600666 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
668 if (STRUCT_TO_INT(old_status) == STRUCT_TO_INT(device->status))
Bjorn Helgaascdd5b8c2009-05-22 11:43:51 -0600669 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 /*
672 * Device Insertion/Removal
673 */
674 if ((device->status.present) && !(old_status.present)) {
675 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device insertion detected\n"));
676 /* TBD: Handle device insertion */
Len Brown4be44fc2005-08-05 00:44:28 -0400677 } else if (!(device->status.present) && (old_status.present)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device removal detected\n"));
679 /* TBD: Handle device removal */
680 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681}
682
Bjorn Helgaasff754e22009-05-22 11:43:56 -0600683static void acpi_bus_check_scope(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 /* Status Change? */
Bjorn Helgaasff754e22009-05-22 11:43:56 -0600686 acpi_bus_check_device(handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 /*
689 * TBD: Enumerate child devices within this device's scope and
690 * run acpi_bus_check_device()'s on them.
691 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692}
693
Shaohua Li6bd00a62008-08-28 10:04:29 +0800694static BLOCKING_NOTIFIER_HEAD(acpi_bus_notify_list);
695int register_acpi_bus_notifier(struct notifier_block *nb)
696{
697 return blocking_notifier_chain_register(&acpi_bus_notify_list, nb);
698}
699EXPORT_SYMBOL_GPL(register_acpi_bus_notifier);
700
701void unregister_acpi_bus_notifier(struct notifier_block *nb)
702{
703 blocking_notifier_chain_unregister(&acpi_bus_notify_list, nb);
704}
705EXPORT_SYMBOL_GPL(unregister_acpi_bus_notifier);
706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707/**
708 * acpi_bus_notify
709 * ---------------
710 * Callback for all 'system-level' device notifications (values 0x00-0x7F).
711 */
Len Brown4be44fc2005-08-05 00:44:28 -0400712static void acpi_bus_notify(acpi_handle handle, u32 type, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713{
Len Brown4be44fc2005-08-05 00:44:28 -0400714 struct acpi_device *device = NULL;
Bjorn Helgaas6d278132009-04-30 09:35:37 -0600715 struct acpi_driver *driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
Bjorn Helgaas02c37bd2009-05-22 11:43:41 -0600717 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Notification %#02x to handle %p\n",
718 type, handle));
719
Shaohua Li6bd00a62008-08-28 10:04:29 +0800720 blocking_notifier_call_chain(&acpi_bus_notify_list,
721 type, (void *)handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 switch (type) {
724
725 case ACPI_NOTIFY_BUS_CHECK:
Bjorn Helgaasff754e22009-05-22 11:43:56 -0600726 acpi_bus_check_scope(handle);
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500727 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 * TBD: We'll need to outsource certain events to non-ACPI
Len Brown4be44fc2005-08-05 00:44:28 -0400729 * drivers via the device manager (device.c).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 */
731 break;
732
733 case ACPI_NOTIFY_DEVICE_CHECK:
Bjorn Helgaasff754e22009-05-22 11:43:56 -0600734 acpi_bus_check_device(handle);
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500735 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 * TBD: We'll need to outsource certain events to non-ACPI
Len Brown4be44fc2005-08-05 00:44:28 -0400737 * drivers via the device manager (device.c).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 */
739 break;
740
741 case ACPI_NOTIFY_DEVICE_WAKE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 /* TBD */
743 break;
744
745 case ACPI_NOTIFY_EJECT_REQUEST:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 /* TBD */
747 break;
748
749 case ACPI_NOTIFY_DEVICE_CHECK_LIGHT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 /* TBD: Exactly what does 'light' mean? */
751 break;
752
753 case ACPI_NOTIFY_FREQUENCY_MISMATCH:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 /* TBD */
755 break;
756
757 case ACPI_NOTIFY_BUS_MODE_MISMATCH:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 /* TBD */
759 break;
760
761 case ACPI_NOTIFY_POWER_FAULT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 /* TBD */
763 break;
764
765 default:
Len Brown4be44fc2005-08-05 00:44:28 -0400766 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
767 "Received unknown/unsupported notification [%08x]\n",
768 type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 break;
770 }
771
Bjorn Helgaasff754e22009-05-22 11:43:56 -0600772 acpi_bus_get_device(handle, &device);
773 if (device) {
774 driver = device->driver;
775 if (driver && driver->ops.notify &&
776 (driver->flags & ACPI_DRIVER_ALL_NOTIFY_EVENTS))
777 driver->ops.notify(device, type);
778 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779}
780
781/* --------------------------------------------------------------------------
782 Initialization/Cleanup
783 -------------------------------------------------------------------------- */
784
Len Brown4be44fc2005-08-05 00:44:28 -0400785static int __init acpi_bus_init_irq(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786{
Len Brown4be44fc2005-08-05 00:44:28 -0400787 acpi_status status = AE_OK;
788 union acpi_object arg = { ACPI_TYPE_INTEGER };
789 struct acpi_object_list arg_list = { 1, &arg };
790 char *message = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500793 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 * Let the system know what interrupt model we are using by
795 * evaluating the \_PIC object, if exists.
796 */
797
798 switch (acpi_irq_model) {
799 case ACPI_IRQ_MODEL_PIC:
800 message = "PIC";
801 break;
802 case ACPI_IRQ_MODEL_IOAPIC:
803 message = "IOAPIC";
804 break;
805 case ACPI_IRQ_MODEL_IOSAPIC:
806 message = "IOSAPIC";
807 break;
John Keller3948ec92006-12-22 11:50:04 -0600808 case ACPI_IRQ_MODEL_PLATFORM:
809 message = "platform specific model";
810 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 default:
812 printk(KERN_WARNING PREFIX "Unknown interrupt routing model\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400813 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 }
815
816 printk(KERN_INFO PREFIX "Using %s for interrupt routing\n", message);
817
818 arg.integer.value = acpi_irq_model;
819
820 status = acpi_evaluate_object(NULL, "\\_PIC", &arg_list, NULL);
821 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400822 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PIC"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400823 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 }
825
Patrick Mocheld550d982006-06-27 00:41:40 -0400826 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827}
828
Bob Moore67a119f2008-06-10 13:42:13 +0800829u8 acpi_gbl_permanent_mmap;
Alexey Starikovskiyad718602007-02-02 19:48:19 +0300830
831
Len Brown4be44fc2005-08-05 00:44:28 -0400832void __init acpi_early_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833{
Len Brown4be44fc2005-08-05 00:44:28 -0400834 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
836 if (acpi_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -0400837 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Bob Moore61686122006-03-17 16:44:00 -0500839 printk(KERN_INFO PREFIX "Core revision %08x\n", ACPI_CA_VERSION);
840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 /* enable workarounds, unless strict ACPI spec. compliance */
842 if (!acpi_strict)
843 acpi_gbl_enable_interpreter_slack = TRUE;
844
Alexey Starikovskiyad718602007-02-02 19:48:19 +0300845 acpi_gbl_permanent_mmap = 1;
846
Lin Mingaa2110c2010-04-08 14:34:27 +0800847 /*
848 * If the machine falls into the DMI check table,
849 * DSDT will be copied to memory
850 */
851 dmi_check_system(dsdt_dmi_table);
852
Alexey Starikovskiyad718602007-02-02 19:48:19 +0300853 status = acpi_reallocate_root_table();
854 if (ACPI_FAILURE(status)) {
855 printk(KERN_ERR PREFIX
856 "Unable to reallocate ACPI tables\n");
857 goto error0;
858 }
859
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 status = acpi_initialize_subsystem();
861 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400862 printk(KERN_ERR PREFIX
863 "Unable to initialize the ACPI Interpreter\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 goto error0;
865 }
866
867 status = acpi_load_tables();
868 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400869 printk(KERN_ERR PREFIX
870 "Unable to load the System Description Tables\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 goto error0;
872 }
873
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874#ifdef CONFIG_X86
875 if (!acpi_ioapic) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 /* compatible (0) means level (3) */
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300877 if (!(acpi_sci_flags & ACPI_MADT_TRIGGER_MASK)) {
878 acpi_sci_flags &= ~ACPI_MADT_TRIGGER_MASK;
879 acpi_sci_flags |= ACPI_MADT_TRIGGER_LEVEL;
880 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 /* Set PIC-mode SCI trigger type */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300882 acpi_pic_sci_set_trigger(acpi_gbl_FADT.sci_interrupt,
Alexey Starikovskiy5f3b1a82007-02-02 19:48:22 +0300883 (acpi_sci_flags & ACPI_MADT_TRIGGER_MASK) >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 /*
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300886 * now that acpi_gbl_FADT is initialized,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 * update it with result from INT_SRC_OVR parsing
888 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +0300889 acpi_gbl_FADT.sci_interrupt = acpi_sci_override_gsi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 }
891#endif
892
Len Brown4be44fc2005-08-05 00:44:28 -0400893 status =
894 acpi_enable_subsystem(~
895 (ACPI_NO_HARDWARE_INIT |
896 ACPI_NO_ACPI_ENABLE));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 if (ACPI_FAILURE(status)) {
898 printk(KERN_ERR PREFIX "Unable to enable ACPI\n");
899 goto error0;
900 }
901
Patrick Mocheld550d982006-06-27 00:41:40 -0400902 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Len Brown4be44fc2005-08-05 00:44:28 -0400904 error0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 disable_acpi();
Patrick Mocheld550d982006-06-27 00:41:40 -0400906 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907}
908
Len Brown4be44fc2005-08-05 00:44:28 -0400909static int __init acpi_bus_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910{
Len Brown4be44fc2005-08-05 00:44:28 -0400911 int result = 0;
912 acpi_status status = AE_OK;
913 extern acpi_status acpi_os_initialize1(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
Jiri Slaby176f9c12009-03-04 11:55:27 -0800915 acpi_os_initialize1();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
Len Brown4be44fc2005-08-05 00:44:28 -0400917 status =
918 acpi_enable_subsystem(ACPI_NO_HARDWARE_INIT | ACPI_NO_ACPI_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400920 printk(KERN_ERR PREFIX
921 "Unable to start the ACPI Interpreter\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 goto error1;
923 }
924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 /*
926 * ACPI 2.0 requires the EC driver to be loaded and work before
927 * the EC device is found in the namespace (i.e. before acpi_initialize_objects()
928 * is called).
929 *
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500930 * This is accomplished by looking for the ECDT table, and getting
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 * the EC parameters out of that.
932 */
933 status = acpi_ec_ecdt_probe();
934 /* Ignore result. Not having an ECDT is not fatal. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
Shaohua Li3563ff92009-10-29 11:05:05 +0800936 acpi_bus_osc_support();
937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 status = acpi_initialize_objects(ACPI_FULL_INITIALIZATION);
939 if (ACPI_FAILURE(status)) {
940 printk(KERN_ERR PREFIX "Unable to initialize ACPI objects\n");
941 goto error1;
942 }
943
Alex Chiang78f16992009-12-20 12:19:09 -0700944 acpi_early_processor_set_pdc();
945
Zhao Yakui455c8792008-10-06 10:31:36 +0800946 /*
947 * Maybe EC region is required at bus_scan/acpi_get_devices. So it
948 * is necessary to enable it as early as possible.
949 */
950 acpi_boot_ec_enable();
951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 printk(KERN_INFO PREFIX "Interpreter enabled\n");
953
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500954 /* Initialize sleep structures */
955 acpi_sleep_init();
956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 /*
958 * Get the system interrupt model and evaluate \_PIC.
959 */
960 result = acpi_bus_init_irq();
961 if (result)
962 goto error1;
963
964 /*
965 * Register the for all standard device notifications.
966 */
Len Brown4be44fc2005-08-05 00:44:28 -0400967 status =
968 acpi_install_notify_handler(ACPI_ROOT_OBJECT, ACPI_SYSTEM_NOTIFY,
969 &acpi_bus_notify, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400971 printk(KERN_ERR PREFIX
972 "Unable to register for device notifications\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 goto error1;
974 }
975
976 /*
977 * Create the top ACPI proc directory
978 */
979 acpi_root_dir = proc_mkdir(ACPI_BUS_FILE_ROOT, NULL);
980
Patrick Mocheld550d982006-06-27 00:41:40 -0400981 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
983 /* Mimic structured exception handling */
Len Brown4be44fc2005-08-05 00:44:28 -0400984 error1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 acpi_terminate();
Patrick Mocheld550d982006-06-27 00:41:40 -0400986 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987}
988
Greg Kroah-Hartman99e0d2f2007-11-02 16:19:59 -0700989struct kobject *acpi_kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
Len Brown4be44fc2005-08-05 00:44:28 -0400991static int __init acpi_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992{
Len Brown4be44fc2005-08-05 00:44:28 -0400993 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 if (acpi_disabled) {
997 printk(KERN_INFO PREFIX "Interpreter disabled.\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400998 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 }
1000
Greg Kroah-Hartmanf62ed9e2007-11-05 13:16:15 -08001001 acpi_kobj = kobject_create_and_add("acpi", firmware_kobj);
Greg Kroah-Hartman99e0d2f2007-11-02 16:19:59 -07001002 if (!acpi_kobj) {
Harvey Harrison96b2dd12008-03-05 18:24:51 -08001003 printk(KERN_WARNING "%s: kset create error\n", __func__);
Greg Kroah-Hartman99e0d2f2007-11-02 16:19:59 -07001004 acpi_kobj = NULL;
1005 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
Bjorn Helgaas0e465172009-03-24 16:50:09 -06001007 init_acpi_device_notify();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 result = acpi_bus_init();
1009
1010 if (!result) {
Robert Hancock7752d5c2008-02-15 01:27:20 -08001011 pci_mmcfg_late_init();
Len Brown9f9adec2007-12-13 17:38:03 -05001012 if (!(pm_flags & PM_APM))
1013 pm_flags |= PM_ACPI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 else {
Len Brown4be44fc2005-08-05 00:44:28 -04001015 printk(KERN_INFO PREFIX
1016 "APM is already active, exiting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 disable_acpi();
1018 result = -ENODEV;
1019 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 } else
1021 disable_acpi();
Bjorn Helgaas81d02732009-03-24 16:49:38 -06001022
1023 if (acpi_disabled)
1024 return result;
1025
Zhao Yakui6415e122008-08-11 14:59:59 +08001026 /*
1027 * If the laptop falls into the DMI check table, the power state check
1028 * will be disabled in the course of device power transistion.
1029 */
1030 dmi_check_system(power_nocheck_dmi_table);
Bjorn Helgaase747f272009-03-24 16:49:43 -06001031
1032 acpi_scan_init();
Bjorn Helgaasa5f820f2009-03-24 16:49:48 -06001033 acpi_ec_init();
Bjorn Helgaas44515372009-03-24 16:49:53 -06001034 acpi_power_init();
Bjorn Helgaas141a0af2009-03-24 16:49:58 -06001035 acpi_system_init();
Bjorn Helgaas84f810c2009-03-24 16:50:03 -06001036 acpi_debug_init();
Bjorn Helgaas9cee43e2009-03-24 16:50:14 -06001037 acpi_sleep_proc_init();
Bjorn Helgaas201b8c62009-03-24 16:50:19 -06001038 acpi_wakeup_device_init();
Patrick Mocheld550d982006-06-27 00:41:40 -04001039 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040}
1041
1042subsys_initcall(acpi_init);