]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/acpi/bus.c
ACPI: Disable explicit power state retrieval on fans
[net-next-2.6.git] / drivers / acpi / bus.c
CommitLineData
1da177e4
LT
1/*
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>
d568df84 28#include <linux/kernel.h>
1da177e4
LT
29#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>
6697c052 34#include <linux/acpi.h>
1da177e4
LT
35#ifdef CONFIG_X86
36#include <asm/mpspec.h>
37#endif
7752d5cf 38#include <linux/pci.h>
1da177e4
LT
39#include <acpi/acpi_bus.h>
40#include <acpi/acpi_drivers.h>
eb27cae8 41#include <linux/dmi.h>
1da177e4 42
e60cc7a6
BH
43#include "internal.h"
44
1da177e4 45#define _COMPONENT ACPI_BUS_COMPONENT
f52fd66d 46ACPI_MODULE_NAME("bus");
1da177e4 47
4be44fcd
LB
48struct acpi_device *acpi_root;
49struct proc_dir_entry *acpi_root_dir;
1da177e4
LT
50EXPORT_SYMBOL(acpi_root_dir);
51
52#define STRUCT_TO_INT(s) (*((int*)&s))
53
6415e12b
ZY
54static int set_power_nocheck(const struct dmi_system_id *id)
55{
56 printk(KERN_NOTICE PREFIX "%s detected - "
57 "disable power check in power transistion\n", id->ident);
58 acpi_power_nocheck = 1;
59 return 0;
60}
61static struct dmi_system_id __cpuinitdata power_nocheck_dmi_table[] = {
62 {
63 set_power_nocheck, "HP Pavilion 05", {
64 DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies LTD"),
65 DMI_MATCH(DMI_SYS_VENDOR, "HP Pavilion 05"),
66 DMI_MATCH(DMI_PRODUCT_VERSION, "2001211RE101GLEND") }, NULL},
67 {},
68};
69
70
1da177e4
LT
71/* --------------------------------------------------------------------------
72 Device Management
73 -------------------------------------------------------------------------- */
74
4be44fcd 75int acpi_bus_get_device(acpi_handle handle, struct acpi_device **device)
1da177e4 76{
4be44fcd 77 acpi_status status = AE_OK;
1da177e4 78
1da177e4
LT
79
80 if (!device)
d550d98d 81 return -EINVAL;
1da177e4
LT
82
83 /* TBD: Support fixed-feature devices */
84
4be44fcd 85 status = acpi_get_data(handle, acpi_bus_data_handler, (void **)device);
1da177e4 86 if (ACPI_FAILURE(status) || !*device) {
9805cb76
LB
87 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No context for object [%p]\n",
88 handle));
d550d98d 89 return -ENODEV;
1da177e4
LT
90 }
91
d550d98d 92 return 0;
1da177e4 93}
4be44fcd 94
1da177e4
LT
95EXPORT_SYMBOL(acpi_bus_get_device);
96
402ac536
BH
97acpi_status acpi_bus_get_status_handle(acpi_handle handle,
98 unsigned long long *sta)
1da177e4 99{
402ac536 100 acpi_status status;
4be44fcd 101
402ac536
BH
102 status = acpi_evaluate_integer(handle, "_STA", NULL, sta);
103 if (ACPI_SUCCESS(status))
104 return AE_OK;
1da177e4 105
402ac536
BH
106 if (status == AE_NOT_FOUND) {
107 *sta = ACPI_STA_DEVICE_PRESENT | ACPI_STA_DEVICE_ENABLED |
108 ACPI_STA_DEVICE_UI | ACPI_STA_DEVICE_FUNCTIONING;
109 return AE_OK;
1da177e4 110 }
402ac536
BH
111 return status;
112}
1da177e4 113
402ac536
BH
114int acpi_bus_get_status(struct acpi_device *device)
115{
116 acpi_status status;
117 unsigned long long sta;
118
119 status = acpi_bus_get_status_handle(device->handle, &sta);
120 if (ACPI_FAILURE(status))
121 return -ENODEV;
122
123 STRUCT_TO_INT(device->status) = (int) sta;
1da177e4
LT
124
125 if (device->status.functional && !device->status.present) {
39a0ad87
ZY
126 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)));
1da177e4
LT
130 }
131
4be44fcd
LB
132 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] status [%08x]\n",
133 device->pnp.bus_id,
134 (u32) STRUCT_TO_INT(device->status)));
d550d98d 135 return 0;
1da177e4 136}
4be44fcd 137EXPORT_SYMBOL(acpi_bus_get_status);
1da177e4 138
20733939 139void acpi_bus_private_data_handler(acpi_handle handle,
8e4319c4 140 void *context)
20733939
ZR
141{
142 return;
143}
144EXPORT_SYMBOL(acpi_bus_private_data_handler);
145
146int acpi_bus_get_private_data(acpi_handle handle, void **data)
147{
148 acpi_status status = AE_OK;
149
150 if (!*data)
151 return -EINVAL;
152
153 status = acpi_get_data(handle, acpi_bus_private_data_handler, data);
154 if (ACPI_FAILURE(status) || !*data) {
155 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No context for object [%p]\n",
156 handle));
157 return -ENODEV;
158 }
159
160 return 0;
161}
162EXPORT_SYMBOL(acpi_bus_get_private_data);
163
1da177e4
LT
164/* --------------------------------------------------------------------------
165 Power Management
166 -------------------------------------------------------------------------- */
167
4be44fcd 168int acpi_bus_get_power(acpi_handle handle, int *state)
1da177e4 169{
4be44fcd
LB
170 int result = 0;
171 acpi_status status = 0;
172 struct acpi_device *device = NULL;
27663c58 173 unsigned long long psc = 0;
1da177e4 174
1da177e4
LT
175
176 result = acpi_bus_get_device(handle, &device);
177 if (result)
d550d98d 178 return result;
1da177e4
LT
179
180 *state = ACPI_STATE_UNKNOWN;
181
182 if (!device->flags.power_manageable) {
183 /* TBD: Non-recursive algorithm for walking up hierarchy */
184 if (device->parent)
185 *state = device->parent->power.state;
186 else
187 *state = ACPI_STATE_D0;
4be44fcd 188 } else {
1da177e4 189 /*
aafbcd16 190 * Get the device's power state either directly (via _PSC) or
1da177e4
LT
191 * indirectly (via power resources).
192 */
0c99c528
ZR
193 if (device->power.flags.power_resources) {
194 result = acpi_power_get_inferred_state(device);
195 if (result)
196 return result;
197 } else if (device->power.flags.explicit_get) {
4be44fcd
LB
198 status = acpi_evaluate_integer(device->handle, "_PSC",
199 NULL, &psc);
1da177e4 200 if (ACPI_FAILURE(status))
d550d98d 201 return -ENODEV;
4be44fcd 202 device->power.state = (int)psc;
1da177e4
LT
203 }
204
205 *state = device->power.state;
206 }
207
208 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] power state is D%d\n",
4be44fcd 209 device->pnp.bus_id, device->power.state));
1da177e4 210
d550d98d 211 return 0;
1da177e4 212}
1da177e4 213
4be44fcd 214EXPORT_SYMBOL(acpi_bus_get_power);
1da177e4 215
4be44fcd 216int acpi_bus_set_power(acpi_handle handle, int state)
1da177e4 217{
4be44fcd
LB
218 int result = 0;
219 acpi_status status = AE_OK;
220 struct acpi_device *device = NULL;
221 char object_name[5] = { '_', 'P', 'S', '0' + state, '\0' };
1da177e4 222
1da177e4
LT
223
224 result = acpi_bus_get_device(handle, &device);
225 if (result)
d550d98d 226 return result;
1da177e4
LT
227
228 if ((state < ACPI_STATE_D0) || (state > ACPI_STATE_D3))
d550d98d 229 return -EINVAL;
1da177e4
LT
230
231 /* Make sure this is a valid target state */
232
233 if (!device->flags.power_manageable) {
9805cb76 234 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device `[%s]' is not power manageable\n",
19c38de8 235 kobject_name(&device->dev.kobj)));
d550d98d 236 return -ENODEV;
1da177e4 237 }
b913100d 238 /*
c35923bc 239 * Get device's current power state
b913100d 240 */
f5adfaa3
ZY
241 if (!acpi_power_nocheck) {
242 /*
243 * Maybe the incorrect power state is returned on the bogus
244 * bios, which is different with the real power state.
245 * For example: the bios returns D0 state and the real power
246 * state is D3. OS expects to set the device to D0 state. In
247 * such case if OS uses the power state returned by the BIOS,
248 * the device can't be transisted to the correct power state.
249 * So if the acpi_power_nocheck is set, it is unnecessary to
250 * get the power state by calling acpi_bus_get_power.
251 */
252 acpi_bus_get_power(device->handle, &device->power.state);
253 }
ec68373c 254 if ((state == device->power.state) && !device->flags.force_power_state) {
b1028c54
KK
255 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device is already at D%d\n",
256 state));
257 return 0;
1da177e4 258 }
b1028c54 259
1da177e4 260 if (!device->power.states[state].flags.valid) {
cece9296 261 printk(KERN_WARNING PREFIX "Device does not support D%d\n", state);
d550d98d 262 return -ENODEV;
1da177e4
LT
263 }
264 if (device->parent && (state < device->parent->power.state)) {
cece9296 265 printk(KERN_WARNING PREFIX
a6fc6720 266 "Cannot set device to a higher-powered"
cece9296 267 " state than parent\n");
d550d98d 268 return -ENODEV;
1da177e4
LT
269 }
270
271 /*
272 * Transition Power
273 * ----------------
274 * On transitions to a high-powered state we first apply power (via
275 * power resources) then evalute _PSx. Conversly for transitions to
276 * a lower-powered state.
b913100d 277 */
1da177e4
LT
278 if (state < device->power.state) {
279 if (device->power.flags.power_resources) {
280 result = acpi_power_transition(device, state);
281 if (result)
282 goto end;
283 }
284 if (device->power.states[state].flags.explicit_set) {
4be44fcd
LB
285 status = acpi_evaluate_object(device->handle,
286 object_name, NULL, NULL);
1da177e4
LT
287 if (ACPI_FAILURE(status)) {
288 result = -ENODEV;
289 goto end;
290 }
291 }
4be44fcd 292 } else {
1da177e4 293 if (device->power.states[state].flags.explicit_set) {
4be44fcd
LB
294 status = acpi_evaluate_object(device->handle,
295 object_name, NULL, NULL);
1da177e4
LT
296 if (ACPI_FAILURE(status)) {
297 result = -ENODEV;
298 goto end;
299 }
300 }
301 if (device->power.flags.power_resources) {
302 result = acpi_power_transition(device, state);
303 if (result)
304 goto end;
305 }
306 }
307
4be44fcd 308 end:
1da177e4 309 if (result)
cece9296 310 printk(KERN_WARNING PREFIX
ddc50b6a 311 "Device [%s] failed to transition to D%d\n",
cece9296 312 device->pnp.bus_id, state);
5e32132b
SL
313 else {
314 device->power.state = state;
4be44fcd
LB
315 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
316 "Device [%s] transitioned to D%d\n",
317 device->pnp.bus_id, state));
5e32132b 318 }
1da177e4 319
d550d98d 320 return result;
1da177e4 321}
1da177e4 322
4be44fcd 323EXPORT_SYMBOL(acpi_bus_set_power);
1da177e4 324
3737b2b1
RW
325bool acpi_bus_power_manageable(acpi_handle handle)
326{
327 struct acpi_device *device;
328 int result;
329
330 result = acpi_bus_get_device(handle, &device);
331 return result ? false : device->flags.power_manageable;
332}
333
334EXPORT_SYMBOL(acpi_bus_power_manageable);
335
eb9d0fe4
RW
336bool acpi_bus_can_wakeup(acpi_handle handle)
337{
338 struct acpi_device *device;
339 int result;
340
341 result = acpi_bus_get_device(handle, &device);
342 return result ? false : device->wakeup.flags.valid;
343}
344
345EXPORT_SYMBOL(acpi_bus_can_wakeup);
346
70023de8
SL
347static void acpi_print_osc_error(acpi_handle handle,
348 struct acpi_osc_context *context, char *error)
349{
350 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER};
351 int i;
352
353 if (ACPI_FAILURE(acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer)))
354 printk(KERN_DEBUG "%s\n", error);
355 else {
356 printk(KERN_DEBUG "%s:%s\n", (char *)buffer.pointer, error);
357 kfree(buffer.pointer);
358 }
359 printk(KERN_DEBUG"_OSC request data:");
360 for (i = 0; i < context->cap.length; i += sizeof(u32))
361 printk("%x ", *((u32 *)(context->cap.pointer + i)));
362 printk("\n");
363}
364
365static u8 hex_val(unsigned char c)
366{
367 return isdigit(c) ? c - '0' : toupper(c) - 'A' + 10;
368}
369
370static acpi_status acpi_str_to_uuid(char *str, u8 *uuid)
371{
372 int i;
373 static int opc_map_to_uuid[16] = {6, 4, 2, 0, 11, 9, 16, 14, 19, 21,
374 24, 26, 28, 30, 32, 34};
375
376 if (strlen(str) != 36)
377 return AE_BAD_PARAMETER;
378 for (i = 0; i < 36; i++) {
379 if (i == 8 || i == 13 || i == 18 || i == 23) {
380 if (str[i] != '-')
381 return AE_BAD_PARAMETER;
382 } else if (!isxdigit(str[i]))
383 return AE_BAD_PARAMETER;
384 }
385 for (i = 0; i < 16; i++) {
386 uuid[i] = hex_val(str[opc_map_to_uuid[i]]) << 4;
387 uuid[i] |= hex_val(str[opc_map_to_uuid[i] + 1]);
388 }
389 return AE_OK;
390}
391
392acpi_status acpi_run_osc(acpi_handle handle, struct acpi_osc_context *context)
393{
394 acpi_status status;
395 struct acpi_object_list input;
396 union acpi_object in_params[4];
397 union acpi_object *out_obj;
398 u8 uuid[16];
399 u32 errors;
9dc130fc 400 struct acpi_buffer output = {ACPI_ALLOCATE_BUFFER, NULL};
70023de8
SL
401
402 if (!context)
403 return AE_ERROR;
404 if (ACPI_FAILURE(acpi_str_to_uuid(context->uuid_str, uuid)))
405 return AE_ERROR;
406 context->ret.length = ACPI_ALLOCATE_BUFFER;
407 context->ret.pointer = NULL;
408
409 /* Setting up input parameters */
410 input.count = 4;
411 input.pointer = in_params;
412 in_params[0].type = ACPI_TYPE_BUFFER;
413 in_params[0].buffer.length = 16;
414 in_params[0].buffer.pointer = uuid;
415 in_params[1].type = ACPI_TYPE_INTEGER;
416 in_params[1].integer.value = context->rev;
417 in_params[2].type = ACPI_TYPE_INTEGER;
418 in_params[2].integer.value = context->cap.length/sizeof(u32);
419 in_params[3].type = ACPI_TYPE_BUFFER;
420 in_params[3].buffer.length = context->cap.length;
421 in_params[3].buffer.pointer = context->cap.pointer;
422
9dc130fc 423 status = acpi_evaluate_object(handle, "_OSC", &input, &output);
70023de8
SL
424 if (ACPI_FAILURE(status))
425 return status;
426
9dc130fc 427 if (!output.length)
70023de8
SL
428 return AE_NULL_OBJECT;
429
9dc130fc
SL
430 out_obj = output.pointer;
431 if (out_obj->type != ACPI_TYPE_BUFFER
432 || out_obj->buffer.length != context->cap.length) {
70023de8
SL
433 acpi_print_osc_error(handle, context,
434 "_OSC evaluation returned wrong type");
435 status = AE_TYPE;
436 goto out_kfree;
437 }
438 /* Need to ignore the bit0 in result code */
439 errors = *((u32 *)out_obj->buffer.pointer) & ~(1 << 0);
440 if (errors) {
441 if (errors & OSC_REQUEST_ERROR)
442 acpi_print_osc_error(handle, context,
443 "_OSC request failed");
444 if (errors & OSC_INVALID_UUID_ERROR)
445 acpi_print_osc_error(handle, context,
446 "_OSC invalid UUID");
447 if (errors & OSC_INVALID_REVISION_ERROR)
448 acpi_print_osc_error(handle, context,
449 "_OSC invalid revision");
450 if (errors & OSC_CAPABILITIES_MASK_ERROR) {
451 if (((u32 *)context->cap.pointer)[OSC_QUERY_TYPE]
452 & OSC_QUERY_ENABLE)
453 goto out_success;
454 status = AE_SUPPORT;
455 goto out_kfree;
456 }
457 status = AE_ERROR;
458 goto out_kfree;
459 }
460out_success:
9dc130fc
SL
461 context->ret.length = out_obj->buffer.length;
462 context->ret.pointer = kmalloc(context->ret.length, GFP_KERNEL);
463 if (!context->ret.pointer) {
464 status = AE_NO_MEMORY;
465 goto out_kfree;
466 }
467 memcpy(context->ret.pointer, out_obj->buffer.pointer,
468 context->ret.length);
469 status = AE_OK;
70023de8
SL
470
471out_kfree:
9dc130fc
SL
472 kfree(output.pointer);
473 if (status != AE_OK)
474 context->ret.pointer = NULL;
70023de8
SL
475 return status;
476}
477EXPORT_SYMBOL(acpi_run_osc);
478
3563ff96
SL
479static u8 sb_uuid_str[] = "0811B06E-4A27-44F9-8D60-3CBBC22E7B48";
480static void acpi_bus_osc_support(void)
481{
482 u32 capbuf[2];
483 struct acpi_osc_context context = {
484 .uuid_str = sb_uuid_str,
485 .rev = 1,
486 .cap.length = 8,
487 .cap.pointer = capbuf,
488 };
489 acpi_handle handle;
490
491 capbuf[OSC_QUERY_TYPE] = OSC_QUERY_ENABLE;
492 capbuf[OSC_SUPPORT_TYPE] = OSC_SB_PR3_SUPPORT; /* _PR3 is in use */
493#ifdef CONFIG_ACPI_PROCESSOR_AGGREGATOR
494 capbuf[OSC_SUPPORT_TYPE] |= OSC_SB_PAD_SUPPORT;
495#endif
496 if (ACPI_FAILURE(acpi_get_handle(NULL, "\\_SB", &handle)))
497 return;
498 if (ACPI_SUCCESS(acpi_run_osc(handle, &context)))
499 kfree(context.ret.pointer);
500 /* do we need to check the returned cap? Sounds no */
501}
502
1da177e4
LT
503/* --------------------------------------------------------------------------
504 Event Management
505 -------------------------------------------------------------------------- */
506
14e04fb3 507#ifdef CONFIG_ACPI_PROC_EVENT
1da177e4
LT
508static DEFINE_SPINLOCK(acpi_bus_event_lock);
509
510LIST_HEAD(acpi_bus_event_list);
511DECLARE_WAIT_QUEUE_HEAD(acpi_bus_event_queue);
512
4be44fcd 513extern int event_is_open;
1da177e4 514
8db85d4c 515int acpi_bus_generate_proc_event4(const char *device_class, const char *bus_id, u8 type, int data)
1da177e4 516{
8db85d4c 517 struct acpi_bus_event *event;
4be44fcd 518 unsigned long flags = 0;
1da177e4 519
1da177e4
LT
520 /* drop event on the floor if no one's listening */
521 if (!event_is_open)
d550d98d 522 return 0;
1da177e4
LT
523
524 event = kmalloc(sizeof(struct acpi_bus_event), GFP_ATOMIC);
525 if (!event)
d550d98d 526 return -ENOMEM;
1da177e4 527
8db85d4c
AS
528 strcpy(event->device_class, device_class);
529 strcpy(event->bus_id, bus_id);
1da177e4
LT
530 event->type = type;
531 event->data = data;
532
533 spin_lock_irqsave(&acpi_bus_event_lock, flags);
534 list_add_tail(&event->node, &acpi_bus_event_list);
535 spin_unlock_irqrestore(&acpi_bus_event_lock, flags);
536
537 wake_up_interruptible(&acpi_bus_event_queue);
538
d550d98d 539 return 0;
8db85d4c
AS
540
541}
542
543EXPORT_SYMBOL_GPL(acpi_bus_generate_proc_event4);
544
545int acpi_bus_generate_proc_event(struct acpi_device *device, u8 type, int data)
546{
547 if (!device)
548 return -EINVAL;
549 return acpi_bus_generate_proc_event4(device->pnp.device_class,
550 device->pnp.bus_id, type, data);
1da177e4 551}
4be44fcd 552
14e04fb3 553EXPORT_SYMBOL(acpi_bus_generate_proc_event);
1da177e4 554
4be44fcd 555int acpi_bus_receive_event(struct acpi_bus_event *event)
1da177e4 556{
4be44fcd
LB
557 unsigned long flags = 0;
558 struct acpi_bus_event *entry = NULL;
1da177e4
LT
559
560 DECLARE_WAITQUEUE(wait, current);
561
1da177e4
LT
562
563 if (!event)
d550d98d 564 return -EINVAL;
1da177e4
LT
565
566 if (list_empty(&acpi_bus_event_list)) {
567
568 set_current_state(TASK_INTERRUPTIBLE);
569 add_wait_queue(&acpi_bus_event_queue, &wait);
570
571 if (list_empty(&acpi_bus_event_list))
572 schedule();
573
574 remove_wait_queue(&acpi_bus_event_queue, &wait);
575 set_current_state(TASK_RUNNING);
576
577 if (signal_pending(current))
d550d98d 578 return -ERESTARTSYS;
1da177e4
LT
579 }
580
581 spin_lock_irqsave(&acpi_bus_event_lock, flags);
f0a37e00
CE
582 if (!list_empty(&acpi_bus_event_list)) {
583 entry = list_entry(acpi_bus_event_list.next,
584 struct acpi_bus_event, node);
1da177e4 585 list_del(&entry->node);
f0a37e00 586 }
1da177e4
LT
587 spin_unlock_irqrestore(&acpi_bus_event_lock, flags);
588
589 if (!entry)
d550d98d 590 return -ENODEV;
1da177e4
LT
591
592 memcpy(event, entry, sizeof(struct acpi_bus_event));
593
594 kfree(entry);
595
d550d98d 596 return 0;
1da177e4 597}
1da177e4 598
14e04fb3 599#endif /* CONFIG_ACPI_PROC_EVENT */
1da177e4
LT
600
601/* --------------------------------------------------------------------------
602 Notification Handling
603 -------------------------------------------------------------------------- */
604
ff754e2e 605static void acpi_bus_check_device(acpi_handle handle)
1da177e4 606{
ff754e2e 607 struct acpi_device *device;
cdd5b8ca 608 acpi_status status;
1da177e4
LT
609 struct acpi_device_status old_status;
610
ff754e2e
BH
611 if (acpi_bus_get_device(handle, &device))
612 return;
1da177e4 613 if (!device)
cdd5b8ca 614 return;
1da177e4 615
1da177e4
LT
616 old_status = device->status;
617
618 /*
619 * Make sure this device's parent is present before we go about
620 * messing with the device.
621 */
622 if (device->parent && !device->parent->status.present) {
623 device->status = device->parent->status;
cdd5b8ca 624 return;
1da177e4
LT
625 }
626
627 status = acpi_bus_get_status(device);
628 if (ACPI_FAILURE(status))
cdd5b8ca 629 return;
1da177e4
LT
630
631 if (STRUCT_TO_INT(old_status) == STRUCT_TO_INT(device->status))
cdd5b8ca 632 return;
1da177e4 633
1da177e4
LT
634 /*
635 * Device Insertion/Removal
636 */
637 if ((device->status.present) && !(old_status.present)) {
638 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device insertion detected\n"));
639 /* TBD: Handle device insertion */
4be44fcd 640 } else if (!(device->status.present) && (old_status.present)) {
1da177e4
LT
641 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device removal detected\n"));
642 /* TBD: Handle device removal */
643 }
1da177e4
LT
644}
645
ff754e2e 646static void acpi_bus_check_scope(acpi_handle handle)
1da177e4 647{
1da177e4 648 /* Status Change? */
ff754e2e 649 acpi_bus_check_device(handle);
1da177e4 650
1da177e4
LT
651 /*
652 * TBD: Enumerate child devices within this device's scope and
653 * run acpi_bus_check_device()'s on them.
654 */
1da177e4
LT
655}
656
6bd00a61
SL
657static BLOCKING_NOTIFIER_HEAD(acpi_bus_notify_list);
658int register_acpi_bus_notifier(struct notifier_block *nb)
659{
660 return blocking_notifier_chain_register(&acpi_bus_notify_list, nb);
661}
662EXPORT_SYMBOL_GPL(register_acpi_bus_notifier);
663
664void unregister_acpi_bus_notifier(struct notifier_block *nb)
665{
666 blocking_notifier_chain_unregister(&acpi_bus_notify_list, nb);
667}
668EXPORT_SYMBOL_GPL(unregister_acpi_bus_notifier);
669
1da177e4
LT
670/**
671 * acpi_bus_notify
672 * ---------------
673 * Callback for all 'system-level' device notifications (values 0x00-0x7F).
674 */
4be44fcd 675static void acpi_bus_notify(acpi_handle handle, u32 type, void *data)
1da177e4 676{
4be44fcd 677 struct acpi_device *device = NULL;
6d278131 678 struct acpi_driver *driver;
1da177e4 679
02c37bd8
BH
680 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Notification %#02x to handle %p\n",
681 type, handle));
682
6bd00a61
SL
683 blocking_notifier_call_chain(&acpi_bus_notify_list,
684 type, (void *)handle);
1da177e4 685
1da177e4
LT
686 switch (type) {
687
688 case ACPI_NOTIFY_BUS_CHECK:
ff754e2e 689 acpi_bus_check_scope(handle);
aafbcd16 690 /*
1da177e4 691 * TBD: We'll need to outsource certain events to non-ACPI
4be44fcd 692 * drivers via the device manager (device.c).
1da177e4
LT
693 */
694 break;
695
696 case ACPI_NOTIFY_DEVICE_CHECK:
ff754e2e 697 acpi_bus_check_device(handle);
aafbcd16 698 /*
1da177e4 699 * TBD: We'll need to outsource certain events to non-ACPI
4be44fcd 700 * drivers via the device manager (device.c).
1da177e4
LT
701 */
702 break;
703
704 case ACPI_NOTIFY_DEVICE_WAKE:
1da177e4
LT
705 /* TBD */
706 break;
707
708 case ACPI_NOTIFY_EJECT_REQUEST:
1da177e4
LT
709 /* TBD */
710 break;
711
712 case ACPI_NOTIFY_DEVICE_CHECK_LIGHT:
1da177e4
LT
713 /* TBD: Exactly what does 'light' mean? */
714 break;
715
716 case ACPI_NOTIFY_FREQUENCY_MISMATCH:
1da177e4
LT
717 /* TBD */
718 break;
719
720 case ACPI_NOTIFY_BUS_MODE_MISMATCH:
1da177e4
LT
721 /* TBD */
722 break;
723
724 case ACPI_NOTIFY_POWER_FAULT:
1da177e4
LT
725 /* TBD */
726 break;
727
728 default:
4be44fcd
LB
729 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
730 "Received unknown/unsupported notification [%08x]\n",
731 type));
1da177e4
LT
732 break;
733 }
734
ff754e2e
BH
735 acpi_bus_get_device(handle, &device);
736 if (device) {
737 driver = device->driver;
738 if (driver && driver->ops.notify &&
739 (driver->flags & ACPI_DRIVER_ALL_NOTIFY_EVENTS))
740 driver->ops.notify(device, type);
741 }
1da177e4
LT
742}
743
744/* --------------------------------------------------------------------------
745 Initialization/Cleanup
746 -------------------------------------------------------------------------- */
747
4be44fcd 748static int __init acpi_bus_init_irq(void)
1da177e4 749{
4be44fcd
LB
750 acpi_status status = AE_OK;
751 union acpi_object arg = { ACPI_TYPE_INTEGER };
752 struct acpi_object_list arg_list = { 1, &arg };
753 char *message = NULL;
1da177e4 754
1da177e4 755
aafbcd16 756 /*
1da177e4
LT
757 * Let the system know what interrupt model we are using by
758 * evaluating the \_PIC object, if exists.
759 */
760
761 switch (acpi_irq_model) {
762 case ACPI_IRQ_MODEL_PIC:
763 message = "PIC";
764 break;
765 case ACPI_IRQ_MODEL_IOAPIC:
766 message = "IOAPIC";
767 break;
768 case ACPI_IRQ_MODEL_IOSAPIC:
769 message = "IOSAPIC";
770 break;
3948ec94
JK
771 case ACPI_IRQ_MODEL_PLATFORM:
772 message = "platform specific model";
773 break;
1da177e4
LT
774 default:
775 printk(KERN_WARNING PREFIX "Unknown interrupt routing model\n");
d550d98d 776 return -ENODEV;
1da177e4
LT
777 }
778
779 printk(KERN_INFO PREFIX "Using %s for interrupt routing\n", message);
780
781 arg.integer.value = acpi_irq_model;
782
783 status = acpi_evaluate_object(NULL, "\\_PIC", &arg_list, NULL);
784 if (ACPI_FAILURE(status) && (status != AE_NOT_FOUND)) {
a6fc6720 785 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PIC"));
d550d98d 786 return -ENODEV;
1da177e4
LT
787 }
788
d550d98d 789 return 0;
1da177e4
LT
790}
791
67a119f9 792u8 acpi_gbl_permanent_mmap;
ad71860a
AS
793
794
4be44fcd 795void __init acpi_early_init(void)
1da177e4 796{
4be44fcd 797 acpi_status status = AE_OK;
1da177e4
LT
798
799 if (acpi_disabled)
d550d98d 800 return;
1da177e4 801
61686124
BM
802 printk(KERN_INFO PREFIX "Core revision %08x\n", ACPI_CA_VERSION);
803
1da177e4
LT
804 /* enable workarounds, unless strict ACPI spec. compliance */
805 if (!acpi_strict)
806 acpi_gbl_enable_interpreter_slack = TRUE;
807
ad71860a
AS
808 acpi_gbl_permanent_mmap = 1;
809
810 status = acpi_reallocate_root_table();
811 if (ACPI_FAILURE(status)) {
812 printk(KERN_ERR PREFIX
813 "Unable to reallocate ACPI tables\n");
814 goto error0;
815 }
816
1da177e4
LT
817 status = acpi_initialize_subsystem();
818 if (ACPI_FAILURE(status)) {
4be44fcd
LB
819 printk(KERN_ERR PREFIX
820 "Unable to initialize the ACPI Interpreter\n");
1da177e4
LT
821 goto error0;
822 }
823
824 status = acpi_load_tables();
825 if (ACPI_FAILURE(status)) {
4be44fcd
LB
826 printk(KERN_ERR PREFIX
827 "Unable to load the System Description Tables\n");
1da177e4
LT
828 goto error0;
829 }
830
1da177e4
LT
831#ifdef CONFIG_X86
832 if (!acpi_ioapic) {
1da177e4 833 /* compatible (0) means level (3) */
5f3b1a8b
AS
834 if (!(acpi_sci_flags & ACPI_MADT_TRIGGER_MASK)) {
835 acpi_sci_flags &= ~ACPI_MADT_TRIGGER_MASK;
836 acpi_sci_flags |= ACPI_MADT_TRIGGER_LEVEL;
837 }
1da177e4 838 /* Set PIC-mode SCI trigger type */
cee324b1 839 acpi_pic_sci_set_trigger(acpi_gbl_FADT.sci_interrupt,
5f3b1a8b 840 (acpi_sci_flags & ACPI_MADT_TRIGGER_MASK) >> 2);
1da177e4 841 } else {
1da177e4 842 /*
cee324b1 843 * now that acpi_gbl_FADT is initialized,
1da177e4
LT
844 * update it with result from INT_SRC_OVR parsing
845 */
cee324b1 846 acpi_gbl_FADT.sci_interrupt = acpi_sci_override_gsi;
1da177e4
LT
847 }
848#endif
849
4be44fcd
LB
850 status =
851 acpi_enable_subsystem(~
852 (ACPI_NO_HARDWARE_INIT |
853 ACPI_NO_ACPI_ENABLE));
1da177e4
LT
854 if (ACPI_FAILURE(status)) {
855 printk(KERN_ERR PREFIX "Unable to enable ACPI\n");
856 goto error0;
857 }
858
d550d98d 859 return;
1da177e4 860
4be44fcd 861 error0:
1da177e4 862 disable_acpi();
d550d98d 863 return;
1da177e4
LT
864}
865
4be44fcd 866static int __init acpi_bus_init(void)
1da177e4 867{
4be44fcd
LB
868 int result = 0;
869 acpi_status status = AE_OK;
870 extern acpi_status acpi_os_initialize1(void);
1da177e4 871
176f9c18 872 acpi_os_initialize1();
1da177e4 873
4be44fcd
LB
874 status =
875 acpi_enable_subsystem(ACPI_NO_HARDWARE_INIT | ACPI_NO_ACPI_ENABLE);
1da177e4 876 if (ACPI_FAILURE(status)) {
4be44fcd
LB
877 printk(KERN_ERR PREFIX
878 "Unable to start the ACPI Interpreter\n");
1da177e4
LT
879 goto error1;
880 }
881
1da177e4
LT
882 /*
883 * ACPI 2.0 requires the EC driver to be loaded and work before
884 * the EC device is found in the namespace (i.e. before acpi_initialize_objects()
885 * is called).
886 *
aafbcd16 887 * This is accomplished by looking for the ECDT table, and getting
1da177e4
LT
888 * the EC parameters out of that.
889 */
890 status = acpi_ec_ecdt_probe();
891 /* Ignore result. Not having an ECDT is not fatal. */
1da177e4 892
3563ff96
SL
893 acpi_bus_osc_support();
894
1da177e4
LT
895 status = acpi_initialize_objects(ACPI_FULL_INITIALIZATION);
896 if (ACPI_FAILURE(status)) {
897 printk(KERN_ERR PREFIX "Unable to initialize ACPI objects\n");
898 goto error1;
899 }
900
78f16996
AC
901 acpi_early_processor_set_pdc();
902
455c8793
ZY
903 /*
904 * Maybe EC region is required at bus_scan/acpi_get_devices. So it
905 * is necessary to enable it as early as possible.
906 */
907 acpi_boot_ec_enable();
908
1da177e4
LT
909 printk(KERN_INFO PREFIX "Interpreter enabled\n");
910
aafbcd16
AS
911 /* Initialize sleep structures */
912 acpi_sleep_init();
913
1da177e4
LT
914 /*
915 * Get the system interrupt model and evaluate \_PIC.
916 */
917 result = acpi_bus_init_irq();
918 if (result)
919 goto error1;
920
921 /*
922 * Register the for all standard device notifications.
923 */
4be44fcd
LB
924 status =
925 acpi_install_notify_handler(ACPI_ROOT_OBJECT, ACPI_SYSTEM_NOTIFY,
926 &acpi_bus_notify, NULL);
1da177e4 927 if (ACPI_FAILURE(status)) {
4be44fcd
LB
928 printk(KERN_ERR PREFIX
929 "Unable to register for device notifications\n");
1da177e4
LT
930 goto error1;
931 }
932
933 /*
934 * Create the top ACPI proc directory
935 */
936 acpi_root_dir = proc_mkdir(ACPI_BUS_FILE_ROOT, NULL);
937
d550d98d 938 return 0;
1da177e4
LT
939
940 /* Mimic structured exception handling */
4be44fcd 941 error1:
1da177e4 942 acpi_terminate();
d550d98d 943 return -ENODEV;
1da177e4
LT
944}
945
99e0d2fc 946struct kobject *acpi_kobj;
1da177e4 947
4be44fcd 948static int __init acpi_init(void)
1da177e4 949{
4be44fcd 950 int result = 0;
1da177e4 951
1da177e4 952
1da177e4
LT
953 if (acpi_disabled) {
954 printk(KERN_INFO PREFIX "Interpreter disabled.\n");
d550d98d 955 return -ENODEV;
1da177e4
LT
956 }
957
f62ed9e3 958 acpi_kobj = kobject_create_and_add("acpi", firmware_kobj);
99e0d2fc 959 if (!acpi_kobj) {
96b2dd1f 960 printk(KERN_WARNING "%s: kset create error\n", __func__);
99e0d2fc
GKH
961 acpi_kobj = NULL;
962 }
1da177e4 963
0e46517d 964 init_acpi_device_notify();
1da177e4
LT
965 result = acpi_bus_init();
966
967 if (!result) {
7752d5cf 968 pci_mmcfg_late_init();
9f9adecd
LB
969 if (!(pm_flags & PM_APM))
970 pm_flags |= PM_ACPI;
1da177e4 971 else {
4be44fcd
LB
972 printk(KERN_INFO PREFIX
973 "APM is already active, exiting\n");
1da177e4
LT
974 disable_acpi();
975 result = -ENODEV;
976 }
1da177e4
LT
977 } else
978 disable_acpi();
81d0273d
BH
979
980 if (acpi_disabled)
981 return result;
982
6415e12b
ZY
983 /*
984 * If the laptop falls into the DMI check table, the power state check
985 * will be disabled in the course of device power transistion.
986 */
987 dmi_check_system(power_nocheck_dmi_table);
e747f274
BH
988
989 acpi_scan_init();
a5f820fe 990 acpi_ec_init();
44515374 991 acpi_power_init();
141a0af3 992 acpi_system_init();
84f810c3 993 acpi_debug_init();
9cee43e0 994 acpi_sleep_proc_init();
201b8c65 995 acpi_wakeup_device_init();
d550d98d 996 return result;
1da177e4
LT
997}
998
999subsys_initcall(acpi_init);