ACPI / scan: Add second pass to acpi_bus_trim()
[deliverable/linux.git] / drivers / acpi / scan.c
CommitLineData
1da177e4
LT
1/*
2 * scan.c - support for transforming the ACPI namespace into individual objects
3 */
4
5#include <linux/module.h>
6#include <linux/init.h>
5a0e3ad6 7#include <linux/slab.h>
9b6d97b6 8#include <linux/kernel.h>
1da177e4 9#include <linux/acpi.h>
74523c90
AK
10#include <linux/signal.h>
11#include <linux/kthread.h>
222e82ac 12#include <linux/dmi.h>
d1efe3c3 13#include <linux/nls.h>
1da177e4
LT
14
15#include <acpi/acpi_drivers.h>
1da177e4 16
e60cc7a6
BH
17#include "internal.h"
18
1da177e4 19#define _COMPONENT ACPI_BUS_COMPONENT
f52fd66d 20ACPI_MODULE_NAME("scan");
1da177e4 21#define STRUCT_TO_INT(s) (*((int*)&s))
4be44fcd 22extern struct acpi_device *acpi_root;
1da177e4
LT
23
24#define ACPI_BUS_CLASS "system_bus"
29b71a1c 25#define ACPI_BUS_HID "LNXSYBUS"
1da177e4
LT
26#define ACPI_BUS_DEVICE_NAME "System Bus"
27
859ac9a4
BH
28#define ACPI_IS_ROOT_DEVICE(device) (!(device)->parent)
29
620e112c 30static const char *dummy_hid = "device";
2b2ae7c7 31
91e56878
MW
32/*
33 * The following ACPI IDs are known to be suitable for representing as
34 * platform devices.
35 */
36static const struct acpi_device_id acpi_platform_device_ids[] = {
37
142b007b
AH
38 { "PNP0D40" },
39
5e7779f0
MW
40 /* Haswell LPSS devices */
41 { "INT33C0", 0 },
42 { "INT33C1", 0 },
43 { "INT33C2", 0 },
44 { "INT33C3", 0 },
45 { "INT33C4", 0 },
46 { "INT33C5", 0 },
47 { "INT33C6", 0 },
48 { "INT33C7", 0 },
49
91e56878
MW
50 { }
51};
52
1da177e4 53static LIST_HEAD(acpi_device_list);
e49bd2dd 54static LIST_HEAD(acpi_bus_id_list);
9090589d 55DEFINE_MUTEX(acpi_device_lock);
1da177e4
LT
56LIST_HEAD(acpi_wakeup_device_list);
57
e49bd2dd 58struct acpi_device_bus_id{
bb095854 59 char bus_id[15];
e49bd2dd
ZR
60 unsigned int instance_no;
61 struct list_head node;
1da177e4 62};
29b71a1c
TR
63
64/*
65 * Creates hid/cid(s) string needed for modalias and uevent
66 * e.g. on a device with hid:IBM0001 and cid:ACPI0001 you get:
67 * char *modalias: "acpi:IBM0001:ACPI0001"
68*/
b3e572d2
AB
69static int create_modalias(struct acpi_device *acpi_dev, char *modalias,
70 int size)
71{
29b71a1c 72 int len;
5c9fcb5d 73 int count;
7f47fa6c 74 struct acpi_hardware_id *id;
29b71a1c 75
2b2ae7c7
TR
76 if (list_empty(&acpi_dev->pnp.ids))
77 return 0;
78
5c9fcb5d 79 len = snprintf(modalias, size, "acpi:");
29b71a1c
TR
80 size -= len;
81
7f47fa6c
BH
82 list_for_each_entry(id, &acpi_dev->pnp.ids, list) {
83 count = snprintf(&modalias[len], size, "%s:", id->id);
5c9fcb5d
ZR
84 if (count < 0 || count >= size)
85 return -EINVAL;
86 len += count;
87 size -= count;
88 }
89
29b71a1c
TR
90 modalias[len] = '\0';
91 return len;
92}
93
94static ssize_t
95acpi_device_modalias_show(struct device *dev, struct device_attribute *attr, char *buf) {
96 struct acpi_device *acpi_dev = to_acpi_device(dev);
97 int len;
98
99 /* Device has no HID and no CID or string is >1024 */
100 len = create_modalias(acpi_dev, buf, 1024);
101 if (len <= 0)
102 return 0;
103 buf[len++] = '\n';
104 return len;
105}
106static DEVICE_ATTR(modalias, 0444, acpi_device_modalias_show, NULL);
107
c4753e57
TK
108/**
109 * acpi_bus_hot_remove_device: hot-remove a device and its children
110 * @context: struct acpi_eject_event pointer (freed in this func)
111 *
112 * Hot-remove a device and its children. This function frees up the
113 * memory space passed by arg context, so that the caller may call
114 * this function asynchronously through acpi_os_hotplug_execute().
115 */
116void acpi_bus_hot_remove_device(void *context)
1da177e4 117{
c4753e57 118 struct acpi_eject_event *ej_event = (struct acpi_eject_event *) context;
26d46867 119 struct acpi_device *device;
c4753e57 120 acpi_handle handle = ej_event->handle;
b3c450c3 121 acpi_handle temp;
1da177e4
LT
122 struct acpi_object_list arg_list;
123 union acpi_object arg;
124 acpi_status status = AE_OK;
c4753e57 125 u32 ost_code = ACPI_OST_SC_NON_SPECIFIC_FAILURE; /* default */
1da177e4 126
26d46867 127 if (acpi_bus_get_device(handle, &device))
c4753e57 128 goto err_out;
26d46867
ZR
129
130 if (!device)
c4753e57 131 goto err_out;
26d46867
ZR
132
133 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
0794469d 134 "Hot-removing device %s...\n", dev_name(&device->dev)));
26d46867 135
ae281795 136 if (acpi_bus_trim(device)) {
55ac9a01
LM
137 printk(KERN_ERR PREFIX
138 "Removing device failed\n");
c4753e57 139 goto err_out;
26d46867 140 }
1da177e4 141
b3c450c3
TK
142 /* device has been freed */
143 device = NULL;
144
26d46867
ZR
145 /* power off device */
146 status = acpi_evaluate_object(handle, "_PS3", NULL, NULL);
147 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND)
55ac9a01
LM
148 printk(KERN_WARNING PREFIX
149 "Power-off device failed\n");
26d46867 150
b3c450c3 151 if (ACPI_SUCCESS(acpi_get_handle(handle, "_LCK", &temp))) {
1da177e4
LT
152 arg_list.count = 1;
153 arg_list.pointer = &arg;
154 arg.type = ACPI_TYPE_INTEGER;
155 arg.integer.value = 0;
156 acpi_evaluate_object(handle, "_LCK", &arg_list, NULL);
157 }
1da177e4 158
1da177e4
LT
159 arg_list.count = 1;
160 arg_list.pointer = &arg;
161 arg.type = ACPI_TYPE_INTEGER;
162 arg.integer.value = 1;
1da177e4 163
1da177e4
LT
164 /*
165 * TBD: _EJD support.
166 */
1da177e4 167 status = acpi_evaluate_object(handle, "_EJ0", &arg_list, NULL);
c4753e57
TK
168 if (ACPI_FAILURE(status)) {
169 if (status != AE_NOT_FOUND)
170 printk(KERN_WARNING PREFIX
171 "Eject device failed\n");
172 goto err_out;
173 }
1da177e4 174
c4753e57
TK
175 kfree(context);
176 return;
1da177e4 177
c4753e57
TK
178err_out:
179 /* Inform firmware the hot-remove operation has completed w/ error */
180 (void) acpi_evaluate_hotplug_ost(handle,
181 ej_event->event, ost_code, NULL);
182 kfree(context);
c8d72a5e 183 return;
1da177e4 184}
61622acc 185EXPORT_SYMBOL(acpi_bus_hot_remove_device);
1da177e4 186
1da177e4 187static ssize_t
f883d9db
PM
188acpi_eject_store(struct device *d, struct device_attribute *attr,
189 const char *buf, size_t count)
1da177e4 190{
4be44fcd 191 int ret = count;
4be44fcd 192 acpi_status status;
4be44fcd 193 acpi_object_type type = 0;
f883d9db 194 struct acpi_device *acpi_device = to_acpi_device(d);
c4753e57 195 struct acpi_eject_event *ej_event;
1da177e4 196
1da177e4
LT
197 if ((!count) || (buf[0] != '1')) {
198 return -EINVAL;
199 }
1da177e4 200#ifndef FORCE_EJECT
f883d9db 201 if (acpi_device->driver == NULL) {
1da177e4
LT
202 ret = -ENODEV;
203 goto err;
204 }
205#endif
f883d9db
PM
206 status = acpi_get_type(acpi_device->handle, &type);
207 if (ACPI_FAILURE(status) || (!acpi_device->flags.ejectable)) {
1da177e4
LT
208 ret = -ENODEV;
209 goto err;
210 }
1da177e4 211
c4753e57
TK
212 ej_event = kmalloc(sizeof(*ej_event), GFP_KERNEL);
213 if (!ej_event) {
214 ret = -ENOMEM;
215 goto err;
216 }
217
218 ej_event->handle = acpi_device->handle;
219 if (acpi_device->flags.eject_pending) {
220 /* event originated from ACPI eject notification */
221 ej_event->event = ACPI_NOTIFY_EJECT_REQUEST;
222 acpi_device->flags.eject_pending = 0;
223 } else {
224 /* event originated from user */
225 ej_event->event = ACPI_OST_EC_OSPM_EJECT;
226 (void) acpi_evaluate_hotplug_ost(ej_event->handle,
227 ej_event->event, ACPI_OST_SC_EJECT_IN_PROGRESS, NULL);
228 }
229
230 acpi_os_hotplug_execute(acpi_bus_hot_remove_device, (void *)ej_event);
74523c90 231err:
1da177e4 232 return ret;
1da177e4
LT
233}
234
f883d9db 235static DEVICE_ATTR(eject, 0200, NULL, acpi_eject_store);
1da177e4 236
e49bd2dd
ZR
237static ssize_t
238acpi_device_hid_show(struct device *dev, struct device_attribute *attr, char *buf) {
239 struct acpi_device *acpi_dev = to_acpi_device(dev);
1da177e4 240
ea8d82fd 241 return sprintf(buf, "%s\n", acpi_device_hid(acpi_dev));
1da177e4 242}
e49bd2dd 243static DEVICE_ATTR(hid, 0444, acpi_device_hid_show, NULL);
1da177e4 244
923d4a45
LZ
245static ssize_t acpi_device_uid_show(struct device *dev,
246 struct device_attribute *attr, char *buf)
247{
248 struct acpi_device *acpi_dev = to_acpi_device(dev);
249
250 return sprintf(buf, "%s\n", acpi_dev->pnp.unique_id);
251}
252static DEVICE_ATTR(uid, 0444, acpi_device_uid_show, NULL);
253
254static ssize_t acpi_device_adr_show(struct device *dev,
255 struct device_attribute *attr, char *buf)
256{
257 struct acpi_device *acpi_dev = to_acpi_device(dev);
258
259 return sprintf(buf, "0x%08x\n",
260 (unsigned int)(acpi_dev->pnp.bus_address));
261}
262static DEVICE_ATTR(adr, 0444, acpi_device_adr_show, NULL);
263
e49bd2dd
ZR
264static ssize_t
265acpi_device_path_show(struct device *dev, struct device_attribute *attr, char *buf) {
266 struct acpi_device *acpi_dev = to_acpi_device(dev);
267 struct acpi_buffer path = {ACPI_ALLOCATE_BUFFER, NULL};
268 int result;
1da177e4 269
e49bd2dd 270 result = acpi_get_name(acpi_dev->handle, ACPI_FULL_PATHNAME, &path);
0c526d96 271 if (result)
e49bd2dd 272 goto end;
1da177e4 273
e49bd2dd
ZR
274 result = sprintf(buf, "%s\n", (char*)path.pointer);
275 kfree(path.pointer);
0c526d96 276end:
e49bd2dd 277 return result;
1da177e4 278}
e49bd2dd 279static DEVICE_ATTR(path, 0444, acpi_device_path_show, NULL);
1da177e4 280
d1efe3c3
LO
281/* sysfs file that shows description text from the ACPI _STR method */
282static ssize_t description_show(struct device *dev,
283 struct device_attribute *attr,
284 char *buf) {
285 struct acpi_device *acpi_dev = to_acpi_device(dev);
286 int result;
287
288 if (acpi_dev->pnp.str_obj == NULL)
289 return 0;
290
291 /*
292 * The _STR object contains a Unicode identifier for a device.
293 * We need to convert to utf-8 so it can be displayed.
294 */
295 result = utf16s_to_utf8s(
296 (wchar_t *)acpi_dev->pnp.str_obj->buffer.pointer,
297 acpi_dev->pnp.str_obj->buffer.length,
298 UTF16_LITTLE_ENDIAN, buf,
299 PAGE_SIZE);
300
301 buf[result++] = '\n';
302
303 return result;
304}
305static DEVICE_ATTR(description, 0444, description_show, NULL);
306
bb74ac23
YI
307static ssize_t
308acpi_device_sun_show(struct device *dev, struct device_attribute *attr,
309 char *buf) {
310 struct acpi_device *acpi_dev = to_acpi_device(dev);
311
312 return sprintf(buf, "%lu\n", acpi_dev->pnp.sun);
313}
314static DEVICE_ATTR(sun, 0444, acpi_device_sun_show, NULL);
315
e49bd2dd 316static int acpi_device_setup_files(struct acpi_device *dev)
1da177e4 317{
d1efe3c3 318 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
f883d9db
PM
319 acpi_status status;
320 acpi_handle temp;
bb74ac23 321 unsigned long long sun;
e49bd2dd 322 int result = 0;
1da177e4
LT
323
324 /*
e49bd2dd 325 * Devices gotten from FADT don't have a "path" attribute
1da177e4 326 */
0c526d96 327 if (dev->handle) {
e49bd2dd 328 result = device_create_file(&dev->dev, &dev_attr_path);
0c526d96 329 if (result)
e49bd2dd 330 goto end;
1da177e4
LT
331 }
332
2b2ae7c7
TR
333 if (!list_empty(&dev->pnp.ids)) {
334 result = device_create_file(&dev->dev, &dev_attr_hid);
335 if (result)
336 goto end;
1da177e4 337
2b2ae7c7
TR
338 result = device_create_file(&dev->dev, &dev_attr_modalias);
339 if (result)
340 goto end;
341 }
29b71a1c 342
d1efe3c3
LO
343 /*
344 * If device has _STR, 'description' file is created
345 */
346 status = acpi_get_handle(dev->handle, "_STR", &temp);
347 if (ACPI_SUCCESS(status)) {
348 status = acpi_evaluate_object(dev->handle, "_STR",
349 NULL, &buffer);
350 if (ACPI_FAILURE(status))
351 buffer.pointer = NULL;
352 dev->pnp.str_obj = buffer.pointer;
353 result = device_create_file(&dev->dev, &dev_attr_description);
354 if (result)
355 goto end;
356 }
357
923d4a45
LZ
358 if (dev->flags.bus_address)
359 result = device_create_file(&dev->dev, &dev_attr_adr);
360 if (dev->pnp.unique_id)
361 result = device_create_file(&dev->dev, &dev_attr_uid);
362
bb74ac23
YI
363 status = acpi_evaluate_integer(dev->handle, "_SUN", NULL, &sun);
364 if (ACPI_SUCCESS(status)) {
365 dev->pnp.sun = (unsigned long)sun;
366 result = device_create_file(&dev->dev, &dev_attr_sun);
367 if (result)
368 goto end;
369 } else {
370 dev->pnp.sun = (unsigned long)-1;
371 }
372
e49bd2dd
ZR
373 /*
374 * If device has _EJ0, 'eject' file is created that is used to trigger
375 * hot-removal function from userland.
376 */
f883d9db
PM
377 status = acpi_get_handle(dev->handle, "_EJ0", &temp);
378 if (ACPI_SUCCESS(status))
e49bd2dd 379 result = device_create_file(&dev->dev, &dev_attr_eject);
0c526d96 380end:
e49bd2dd 381 return result;
1da177e4
LT
382}
383
f883d9db 384static void acpi_device_remove_files(struct acpi_device *dev)
1da177e4 385{
f883d9db
PM
386 acpi_status status;
387 acpi_handle temp;
1da177e4 388
f883d9db 389 /*
d1efe3c3
LO
390 * If device has _STR, remove 'description' file
391 */
392 status = acpi_get_handle(dev->handle, "_STR", &temp);
393 if (ACPI_SUCCESS(status)) {
394 kfree(dev->pnp.str_obj);
395 device_remove_file(&dev->dev, &dev_attr_description);
396 }
397 /*
398 * If device has _EJ0, remove 'eject' file.
f883d9db
PM
399 */
400 status = acpi_get_handle(dev->handle, "_EJ0", &temp);
401 if (ACPI_SUCCESS(status))
402 device_remove_file(&dev->dev, &dev_attr_eject);
1da177e4 403
bb74ac23
YI
404 status = acpi_get_handle(dev->handle, "_SUN", &temp);
405 if (ACPI_SUCCESS(status))
406 device_remove_file(&dev->dev, &dev_attr_sun);
407
923d4a45
LZ
408 if (dev->pnp.unique_id)
409 device_remove_file(&dev->dev, &dev_attr_uid);
410 if (dev->flags.bus_address)
411 device_remove_file(&dev->dev, &dev_attr_adr);
1131b938
BH
412 device_remove_file(&dev->dev, &dev_attr_modalias);
413 device_remove_file(&dev->dev, &dev_attr_hid);
0c526d96 414 if (dev->handle)
e49bd2dd 415 device_remove_file(&dev->dev, &dev_attr_path);
1da177e4 416}
1da177e4 417/* --------------------------------------------------------------------------
9e89dde2 418 ACPI Bus operations
1da177e4 419 -------------------------------------------------------------------------- */
29b71a1c 420
cf761af9
MW
421static const struct acpi_device_id *__acpi_match_device(
422 struct acpi_device *device, const struct acpi_device_id *ids)
29b71a1c
TR
423{
424 const struct acpi_device_id *id;
7f47fa6c 425 struct acpi_hardware_id *hwid;
29b71a1c 426
39a0ad87
ZY
427 /*
428 * If the device is not present, it is unnecessary to load device
429 * driver for it.
430 */
431 if (!device->status.present)
cf761af9 432 return NULL;
39a0ad87 433
7f47fa6c
BH
434 for (id = ids; id->id[0]; id++)
435 list_for_each_entry(hwid, &device->pnp.ids, list)
436 if (!strcmp((char *) id->id, hwid->id))
cf761af9
MW
437 return id;
438
439 return NULL;
440}
441
442/**
443 * acpi_match_device - Match a struct device against a given list of ACPI IDs
444 * @ids: Array of struct acpi_device_id object to match against.
445 * @dev: The device structure to match.
446 *
447 * Check if @dev has a valid ACPI handle and if there is a struct acpi_device
448 * object for that handle and use that object to match against a given list of
449 * device IDs.
450 *
451 * Return a pointer to the first matching ID on success or %NULL on failure.
452 */
453const struct acpi_device_id *acpi_match_device(const struct acpi_device_id *ids,
454 const struct device *dev)
455{
456 struct acpi_device *adev;
457
95f8a082
RW
458 if (!ids || !ACPI_HANDLE(dev)
459 || ACPI_FAILURE(acpi_bus_get_device(ACPI_HANDLE(dev), &adev)))
cf761af9
MW
460 return NULL;
461
462 return __acpi_match_device(adev, ids);
463}
464EXPORT_SYMBOL_GPL(acpi_match_device);
29b71a1c 465
cf761af9
MW
466int acpi_match_device_ids(struct acpi_device *device,
467 const struct acpi_device_id *ids)
468{
469 return __acpi_match_device(device, ids) ? 0 : -ENOENT;
29b71a1c
TR
470}
471EXPORT_SYMBOL(acpi_match_device_ids);
472
7f47fa6c
BH
473static void acpi_free_ids(struct acpi_device *device)
474{
475 struct acpi_hardware_id *id, *tmp;
476
477 list_for_each_entry_safe(id, tmp, &device->pnp.ids, list) {
478 kfree(id->id);
479 kfree(id);
480 }
481}
482
1890a97a 483static void acpi_device_release(struct device *dev)
1da177e4 484{
1890a97a 485 struct acpi_device *acpi_dev = to_acpi_device(dev);
1da177e4 486
7f47fa6c 487 acpi_free_ids(acpi_dev);
ccf78040 488 kfree(acpi_dev->pnp.unique_id);
1890a97a 489 kfree(acpi_dev);
1da177e4
LT
490}
491
5d9464a4 492static int acpi_bus_match(struct device *dev, struct device_driver *drv)
9e89dde2 493{
5d9464a4
PM
494 struct acpi_device *acpi_dev = to_acpi_device(dev);
495 struct acpi_driver *acpi_drv = to_acpi_driver(drv);
1da177e4 496
209d3b17 497 return acpi_dev->flags.match_driver
805d410f 498 && !acpi_match_device_ids(acpi_dev, acpi_drv->ids);
5d9464a4 499}
1da177e4 500
7eff2e7a 501static int acpi_device_uevent(struct device *dev, struct kobj_uevent_env *env)
1da177e4 502{
5d9464a4 503 struct acpi_device *acpi_dev = to_acpi_device(dev);
7eff2e7a 504 int len;
5d9464a4 505
2b2ae7c7
TR
506 if (list_empty(&acpi_dev->pnp.ids))
507 return 0;
508
7eff2e7a
KS
509 if (add_uevent_var(env, "MODALIAS="))
510 return -ENOMEM;
511 len = create_modalias(acpi_dev, &env->buf[env->buflen - 1],
512 sizeof(env->buf) - env->buflen);
513 if (len >= (sizeof(env->buf) - env->buflen))
514 return -ENOMEM;
515 env->buflen += len;
9e89dde2 516 return 0;
1da177e4
LT
517}
518
46ec8598
BH
519static void acpi_device_notify(acpi_handle handle, u32 event, void *data)
520{
521 struct acpi_device *device = data;
522
523 device->driver->ops.notify(device, event);
524}
525
526static acpi_status acpi_device_notify_fixed(void *data)
527{
528 struct acpi_device *device = data;
529
53de5356
BH
530 /* Fixed hardware devices have no handles */
531 acpi_device_notify(NULL, ACPI_FIXED_HARDWARE_EVENT, device);
46ec8598
BH
532 return AE_OK;
533}
534
535static int acpi_device_install_notify_handler(struct acpi_device *device)
536{
537 acpi_status status;
46ec8598 538
ccba2a36 539 if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON)
46ec8598
BH
540 status =
541 acpi_install_fixed_event_handler(ACPI_EVENT_POWER_BUTTON,
542 acpi_device_notify_fixed,
543 device);
ccba2a36 544 else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON)
46ec8598
BH
545 status =
546 acpi_install_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON,
547 acpi_device_notify_fixed,
548 device);
549 else
550 status = acpi_install_notify_handler(device->handle,
551 ACPI_DEVICE_NOTIFY,
552 acpi_device_notify,
553 device);
554
555 if (ACPI_FAILURE(status))
556 return -EINVAL;
557 return 0;
558}
559
560static void acpi_device_remove_notify_handler(struct acpi_device *device)
561{
ccba2a36 562 if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON)
46ec8598
BH
563 acpi_remove_fixed_event_handler(ACPI_EVENT_POWER_BUTTON,
564 acpi_device_notify_fixed);
ccba2a36 565 else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON)
46ec8598
BH
566 acpi_remove_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON,
567 acpi_device_notify_fixed);
568 else
569 acpi_remove_notify_handler(device->handle, ACPI_DEVICE_NOTIFY,
570 acpi_device_notify);
571}
572
5d9464a4 573static int acpi_bus_driver_init(struct acpi_device *, struct acpi_driver *);
5d9464a4 574static int acpi_device_probe(struct device * dev)
1da177e4 575{
5d9464a4
PM
576 struct acpi_device *acpi_dev = to_acpi_device(dev);
577 struct acpi_driver *acpi_drv = to_acpi_driver(dev->driver);
578 int ret;
579
580 ret = acpi_bus_driver_init(acpi_dev, acpi_drv);
581 if (!ret) {
46ec8598
BH
582 if (acpi_drv->ops.notify) {
583 ret = acpi_device_install_notify_handler(acpi_dev);
584 if (ret) {
46ec8598
BH
585 if (acpi_drv->ops.remove)
586 acpi_drv->ops.remove(acpi_dev,
587 acpi_dev->removal_type);
588 return ret;
589 }
590 }
591
5d9464a4
PM
592 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
593 "Found driver [%s] for device [%s]\n",
594 acpi_drv->name, acpi_dev->pnp.bus_id));
595 get_device(dev);
596 }
597 return ret;
598}
1da177e4 599
5d9464a4
PM
600static int acpi_device_remove(struct device * dev)
601{
602 struct acpi_device *acpi_dev = to_acpi_device(dev);
603 struct acpi_driver *acpi_drv = acpi_dev->driver;
604
605 if (acpi_drv) {
46ec8598
BH
606 if (acpi_drv->ops.notify)
607 acpi_device_remove_notify_handler(acpi_dev);
5d9464a4 608 if (acpi_drv->ops.remove)
96333578 609 acpi_drv->ops.remove(acpi_dev, acpi_dev->removal_type);
1da177e4 610 }
5d9464a4 611 acpi_dev->driver = NULL;
db89b4f0 612 acpi_dev->driver_data = NULL;
1da177e4 613
5d9464a4 614 put_device(dev);
9e89dde2
ZR
615 return 0;
616}
1da177e4 617
55955aad 618struct bus_type acpi_bus_type = {
9e89dde2 619 .name = "acpi",
5d9464a4
PM
620 .match = acpi_bus_match,
621 .probe = acpi_device_probe,
622 .remove = acpi_device_remove,
623 .uevent = acpi_device_uevent,
9e89dde2
ZR
624};
625
66b7ed40 626static int acpi_device_register(struct acpi_device *device)
1da177e4 627{
4be44fcd 628 int result;
e49bd2dd
ZR
629 struct acpi_device_bus_id *acpi_device_bus_id, *new_bus_id;
630 int found = 0;
66b7ed40 631
9e89dde2
ZR
632 /*
633 * Linkage
634 * -------
635 * Link this device to its parent and siblings.
636 */
637 INIT_LIST_HEAD(&device->children);
638 INIT_LIST_HEAD(&device->node);
9e89dde2 639 INIT_LIST_HEAD(&device->wakeup_list);
1033f904
LT
640 INIT_LIST_HEAD(&device->physical_node_list);
641 mutex_init(&device->physical_node_lock);
1da177e4 642
e49bd2dd
ZR
643 new_bus_id = kzalloc(sizeof(struct acpi_device_bus_id), GFP_KERNEL);
644 if (!new_bus_id) {
645 printk(KERN_ERR PREFIX "Memory allocation error\n");
646 return -ENOMEM;
1da177e4 647 }
e49bd2dd 648
9090589d 649 mutex_lock(&acpi_device_lock);
e49bd2dd
ZR
650 /*
651 * Find suitable bus_id and instance number in acpi_bus_id_list
652 * If failed, create one and link it into acpi_bus_id_list
653 */
654 list_for_each_entry(acpi_device_bus_id, &acpi_bus_id_list, node) {
1131b938
BH
655 if (!strcmp(acpi_device_bus_id->bus_id,
656 acpi_device_hid(device))) {
657 acpi_device_bus_id->instance_no++;
e49bd2dd
ZR
658 found = 1;
659 kfree(new_bus_id);
660 break;
661 }
1da177e4 662 }
0c526d96 663 if (!found) {
e49bd2dd 664 acpi_device_bus_id = new_bus_id;
1131b938 665 strcpy(acpi_device_bus_id->bus_id, acpi_device_hid(device));
e49bd2dd
ZR
666 acpi_device_bus_id->instance_no = 0;
667 list_add_tail(&acpi_device_bus_id->node, &acpi_bus_id_list);
1da177e4 668 }
0794469d 669 dev_set_name(&device->dev, "%s:%02x", acpi_device_bus_id->bus_id, acpi_device_bus_id->instance_no);
1da177e4 670
33b57150 671 if (device->parent)
9e89dde2 672 list_add_tail(&device->node, &device->parent->children);
33b57150 673
9e89dde2
ZR
674 if (device->wakeup.flags.valid)
675 list_add_tail(&device->wakeup_list, &acpi_wakeup_device_list);
9090589d 676 mutex_unlock(&acpi_device_lock);
1da177e4 677
1890a97a 678 if (device->parent)
66b7ed40 679 device->dev.parent = &device->parent->dev;
1890a97a 680 device->dev.bus = &acpi_bus_type;
1890a97a 681 device->dev.release = &acpi_device_release;
8b12b922 682 result = device_register(&device->dev);
0c526d96 683 if (result) {
8b12b922 684 dev_err(&device->dev, "Error registering device\n");
e49bd2dd 685 goto end;
1da177e4 686 }
1da177e4 687
e49bd2dd 688 result = acpi_device_setup_files(device);
0c526d96 689 if (result)
0794469d
KS
690 printk(KERN_ERR PREFIX "Error creating sysfs interface for device %s\n",
691 dev_name(&device->dev));
1da177e4 692
96333578 693 device->removal_type = ACPI_BUS_REMOVAL_NORMAL;
1da177e4 694 return 0;
0c526d96 695end:
9090589d 696 mutex_lock(&acpi_device_lock);
33b57150 697 if (device->parent)
e49bd2dd 698 list_del(&device->node);
e49bd2dd 699 list_del(&device->wakeup_list);
9090589d 700 mutex_unlock(&acpi_device_lock);
e49bd2dd 701 return result;
1da177e4
LT
702}
703
b17b537a 704static void acpi_device_unregister(struct acpi_device *device)
9e89dde2 705{
9090589d 706 mutex_lock(&acpi_device_lock);
33b57150 707 if (device->parent)
9e89dde2 708 list_del(&device->node);
1da177e4 709
9e89dde2 710 list_del(&device->wakeup_list);
9090589d 711 mutex_unlock(&acpi_device_lock);
1da177e4 712
9e89dde2 713 acpi_detach_data(device->handle, acpi_bus_data_handler);
1890a97a 714
f883d9db 715 acpi_device_remove_files(device);
1890a97a 716 device_unregister(&device->dev);
1da177e4
LT
717}
718
9e89dde2
ZR
719/* --------------------------------------------------------------------------
720 Driver Management
721 -------------------------------------------------------------------------- */
1da177e4 722/**
d758a8fa
RD
723 * acpi_bus_driver_init - add a device to a driver
724 * @device: the device to add and initialize
725 * @driver: driver for the device
726 *
0c526d96 727 * Used to initialize a device via its device driver. Called whenever a
1890a97a 728 * driver is bound to a device. Invokes the driver's add() ops.
1da177e4
LT
729 */
730static int
4be44fcd 731acpi_bus_driver_init(struct acpi_device *device, struct acpi_driver *driver)
1da177e4 732{
4be44fcd 733 int result = 0;
1da177e4 734
1da177e4 735 if (!device || !driver)
d550d98d 736 return -EINVAL;
1da177e4
LT
737
738 if (!driver->ops.add)
d550d98d 739 return -ENOSYS;
1da177e4
LT
740
741 result = driver->ops.add(device);
742 if (result) {
743 device->driver = NULL;
db89b4f0 744 device->driver_data = NULL;
d550d98d 745 return result;
1da177e4
LT
746 }
747
748 device->driver = driver;
749
750 /*
751 * TBD - Configuration Management: Assign resources to device based
752 * upon possible configuration and currently allocated resources.
753 */
754
4be44fcd
LB
755 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
756 "Driver successfully bound to device\n"));
d550d98d 757 return 0;
3fb02738
RS
758}
759
9e89dde2
ZR
760/**
761 * acpi_bus_register_driver - register a driver with the ACPI bus
762 * @driver: driver being registered
763 *
764 * Registers a driver with the ACPI bus. Searches the namespace for all
765 * devices that match the driver's criteria and binds. Returns zero for
766 * success or a negative error status for failure.
767 */
768int acpi_bus_register_driver(struct acpi_driver *driver)
1da177e4 769{
1890a97a 770 int ret;
1da177e4 771
9e89dde2
ZR
772 if (acpi_disabled)
773 return -ENODEV;
1890a97a
PM
774 driver->drv.name = driver->name;
775 driver->drv.bus = &acpi_bus_type;
776 driver->drv.owner = driver->owner;
1da177e4 777
1890a97a
PM
778 ret = driver_register(&driver->drv);
779 return ret;
9e89dde2 780}
1da177e4 781
9e89dde2
ZR
782EXPORT_SYMBOL(acpi_bus_register_driver);
783
784/**
785 * acpi_bus_unregister_driver - unregisters a driver with the APIC bus
786 * @driver: driver to unregister
787 *
788 * Unregisters a driver with the ACPI bus. Searches the namespace for all
789 * devices that match the driver's criteria and unbinds.
790 */
791void acpi_bus_unregister_driver(struct acpi_driver *driver)
792{
1890a97a 793 driver_unregister(&driver->drv);
9e89dde2
ZR
794}
795
796EXPORT_SYMBOL(acpi_bus_unregister_driver);
797
9e89dde2
ZR
798/* --------------------------------------------------------------------------
799 Device Enumeration
800 -------------------------------------------------------------------------- */
5c478f49
BH
801static struct acpi_device *acpi_bus_get_parent(acpi_handle handle)
802{
803 acpi_status status;
804 int ret;
805 struct acpi_device *device;
806
807 /*
808 * Fixed hardware devices do not appear in the namespace and do not
809 * have handles, but we fabricate acpi_devices for them, so we have
810 * to deal with them specially.
811 */
812 if (handle == NULL)
813 return acpi_root;
814
815 do {
816 status = acpi_get_parent(handle, &handle);
817 if (status == AE_NULL_ENTRY)
818 return NULL;
819 if (ACPI_FAILURE(status))
820 return acpi_root;
821
822 ret = acpi_bus_get_device(handle, &device);
823 if (ret == 0)
824 return device;
825 } while (1);
826}
827
9e89dde2
ZR
828acpi_status
829acpi_bus_get_ejd(acpi_handle handle, acpi_handle *ejd)
830{
831 acpi_status status;
832 acpi_handle tmp;
833 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
834 union acpi_object *obj;
835
836 status = acpi_get_handle(handle, "_EJD", &tmp);
837 if (ACPI_FAILURE(status))
838 return status;
839
840 status = acpi_evaluate_object(handle, "_EJD", NULL, &buffer);
841 if (ACPI_SUCCESS(status)) {
842 obj = buffer.pointer;
3b5fee59
HM
843 status = acpi_get_handle(ACPI_ROOT_OBJECT, obj->string.pointer,
844 ejd);
9e89dde2
ZR
845 kfree(buffer.pointer);
846 }
847 return status;
848}
849EXPORT_SYMBOL_GPL(acpi_bus_get_ejd);
850
8e4319c4 851void acpi_bus_data_handler(acpi_handle handle, void *context)
9e89dde2
ZR
852{
853
854 /* TBD */
855
856 return;
857}
858
9e89dde2
ZR
859static int acpi_bus_get_perf_flags(struct acpi_device *device)
860{
861 device->performance.state = ACPI_STATE_UNKNOWN;
862 return 0;
863}
864
865static acpi_status
b581a7f9
RW
866acpi_bus_extract_wakeup_device_power_package(acpi_handle handle,
867 struct acpi_device_wakeup *wakeup)
9e89dde2 868{
b581a7f9
RW
869 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
870 union acpi_object *package = NULL;
9e89dde2 871 union acpi_object *element = NULL;
b581a7f9
RW
872 acpi_status status;
873 int i = 0;
9e89dde2 874
b581a7f9 875 if (!wakeup)
9e89dde2
ZR
876 return AE_BAD_PARAMETER;
877
b581a7f9
RW
878 /* _PRW */
879 status = acpi_evaluate_object(handle, "_PRW", NULL, &buffer);
880 if (ACPI_FAILURE(status)) {
881 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PRW"));
882 return status;
883 }
884
885 package = (union acpi_object *)buffer.pointer;
886
887 if (!package || (package->package.count < 2)) {
888 status = AE_BAD_DATA;
889 goto out;
890 }
891
9e89dde2 892 element = &(package->package.elements[0]);
b581a7f9
RW
893 if (!element) {
894 status = AE_BAD_DATA;
895 goto out;
896 }
9e89dde2
ZR
897 if (element->type == ACPI_TYPE_PACKAGE) {
898 if ((element->package.count < 2) ||
899 (element->package.elements[0].type !=
900 ACPI_TYPE_LOCAL_REFERENCE)
b581a7f9
RW
901 || (element->package.elements[1].type != ACPI_TYPE_INTEGER)) {
902 status = AE_BAD_DATA;
903 goto out;
904 }
905 wakeup->gpe_device =
9e89dde2 906 element->package.elements[0].reference.handle;
b581a7f9 907 wakeup->gpe_number =
9e89dde2
ZR
908 (u32) element->package.elements[1].integer.value;
909 } else if (element->type == ACPI_TYPE_INTEGER) {
b581a7f9
RW
910 wakeup->gpe_device = NULL;
911 wakeup->gpe_number = element->integer.value;
912 } else {
913 status = AE_BAD_DATA;
914 goto out;
915 }
9e89dde2
ZR
916
917 element = &(package->package.elements[1]);
918 if (element->type != ACPI_TYPE_INTEGER) {
b581a7f9
RW
919 status = AE_BAD_DATA;
920 goto out;
9e89dde2 921 }
b581a7f9 922 wakeup->sleep_state = element->integer.value;
9e89dde2
ZR
923
924 if ((package->package.count - 2) > ACPI_MAX_HANDLES) {
b581a7f9
RW
925 status = AE_NO_MEMORY;
926 goto out;
9e89dde2 927 }
b581a7f9
RW
928 wakeup->resources.count = package->package.count - 2;
929 for (i = 0; i < wakeup->resources.count; i++) {
9e89dde2 930 element = &(package->package.elements[i + 2]);
b581a7f9
RW
931 if (element->type != ACPI_TYPE_LOCAL_REFERENCE) {
932 status = AE_BAD_DATA;
933 goto out;
934 }
9e89dde2 935
b581a7f9 936 wakeup->resources.handles[i] = element->reference.handle;
1da177e4 937 }
9e89dde2 938
bba63a29 939 acpi_setup_gpe_for_wake(handle, wakeup->gpe_device, wakeup->gpe_number);
9874647b 940
b581a7f9
RW
941 out:
942 kfree(buffer.pointer);
943
944 return status;
1da177e4
LT
945}
946
f517709d 947static void acpi_bus_set_run_wake_flags(struct acpi_device *device)
1da177e4 948{
29b71a1c 949 struct acpi_device_id button_device_ids[] = {
29b71a1c 950 {"PNP0C0C", 0},
b7e38304 951 {"PNP0C0D", 0},
29b71a1c
TR
952 {"PNP0C0E", 0},
953 {"", 0},
954 };
f517709d
RW
955 acpi_status status;
956 acpi_event_status event_status;
957
b67ea761 958 device->wakeup.flags.notifier_present = 0;
f517709d
RW
959
960 /* Power button, Lid switch always enable wakeup */
961 if (!acpi_match_device_ids(device, button_device_ids)) {
962 device->wakeup.flags.run_wake = 1;
b7e38304
ZR
963 if (!acpi_match_device_ids(device, &button_device_ids[1])) {
964 /* Do not use Lid/sleep button for S5 wakeup */
965 if (device->wakeup.sleep_state == ACPI_STATE_S5)
966 device->wakeup.sleep_state = ACPI_STATE_S4;
967 }
f2b56bc8 968 device_set_wakeup_capable(&device->dev, true);
f517709d
RW
969 return;
970 }
971
e8e18c95
RW
972 status = acpi_get_gpe_status(device->wakeup.gpe_device,
973 device->wakeup.gpe_number,
974 &event_status);
f517709d
RW
975 if (status == AE_OK)
976 device->wakeup.flags.run_wake =
977 !!(event_status & ACPI_EVENT_FLAG_HANDLE);
978}
979
d57d09a4 980static void acpi_bus_get_wakeup_device_flags(struct acpi_device *device)
f517709d 981{
d57d09a4 982 acpi_handle temp;
f517709d 983 acpi_status status = 0;
f517709d 984 int psw_error;
29b71a1c 985
d57d09a4
RW
986 /* Presence of _PRW indicates wake capable */
987 status = acpi_get_handle(device->handle, "_PRW", &temp);
988 if (ACPI_FAILURE(status))
989 return;
990
b581a7f9
RW
991 status = acpi_bus_extract_wakeup_device_power_package(device->handle,
992 &device->wakeup);
9e89dde2
ZR
993 if (ACPI_FAILURE(status)) {
994 ACPI_EXCEPTION((AE_INFO, status, "Extracting _PRW package"));
d57d09a4 995 return;
9e89dde2 996 }
1da177e4 997
9e89dde2 998 device->wakeup.flags.valid = 1;
9b83ccd2 999 device->wakeup.prepare_count = 0;
f517709d 1000 acpi_bus_set_run_wake_flags(device);
729b2bdb
ZY
1001 /* Call _PSW/_DSW object to disable its ability to wake the sleeping
1002 * system for the ACPI device with the _PRW object.
1003 * The _PSW object is depreciated in ACPI 3.0 and is replaced by _DSW.
1004 * So it is necessary to call _DSW object first. Only when it is not
1005 * present will the _PSW object used.
1006 */
77e76609
RW
1007 psw_error = acpi_device_sleep_wake(device, 0, 0, 0);
1008 if (psw_error)
1009 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1010 "error in _DSW or _PSW evaluation\n"));
1da177e4 1011}
1da177e4 1012
bf325f95
RW
1013static void acpi_bus_add_power_resource(acpi_handle handle);
1014
9e89dde2 1015static int acpi_bus_get_power_flags(struct acpi_device *device)
1da177e4 1016{
9e89dde2
ZR
1017 acpi_status status = 0;
1018 acpi_handle handle = NULL;
1019 u32 i = 0;
1a365616 1020
4be44fcd 1021
9e89dde2
ZR
1022 /*
1023 * Power Management Flags
1024 */
1025 status = acpi_get_handle(device->handle, "_PSC", &handle);
1026 if (ACPI_SUCCESS(status))
1027 device->power.flags.explicit_get = 1;
1028 status = acpi_get_handle(device->handle, "_IRC", &handle);
1029 if (ACPI_SUCCESS(status))
1030 device->power.flags.inrush_current = 1;
1da177e4 1031
9e89dde2
ZR
1032 /*
1033 * Enumerate supported power management states
1034 */
1cc0c998 1035 for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3_HOT; i++) {
9e89dde2
ZR
1036 struct acpi_device_power_state *ps = &device->power.states[i];
1037 char object_name[5] = { '_', 'P', 'R', '0' + i, '\0' };
1da177e4 1038
9e89dde2
ZR
1039 /* Evaluate "_PRx" to se if power resources are referenced */
1040 acpi_evaluate_reference(device->handle, object_name, NULL,
1041 &ps->resources);
1042 if (ps->resources.count) {
bf325f95
RW
1043 int j;
1044
9e89dde2 1045 device->power.flags.power_resources = 1;
bf325f95
RW
1046 for (j = 0; j < ps->resources.count; j++)
1047 acpi_bus_add_power_resource(ps->resources.handles[j]);
1da177e4 1048 }
1da177e4 1049
9e89dde2
ZR
1050 /* Evaluate "_PSx" to see if we can do explicit sets */
1051 object_name[2] = 'S';
1052 status = acpi_get_handle(device->handle, object_name, &handle);
37239978 1053 if (ACPI_SUCCESS(status))
9e89dde2 1054 ps->flags.explicit_set = 1;
1da177e4 1055
1cc0c998
LM
1056 /*
1057 * State is valid if there are means to put the device into it.
1058 * D3hot is only valid if _PR3 present.
1059 */
1060 if (ps->resources.count ||
1399dfcd 1061 (ps->flags.explicit_set && i < ACPI_STATE_D3_HOT)) {
9e89dde2 1062 ps->flags.valid = 1;
1399dfcd
AL
1063 ps->flags.os_accessible = 1;
1064 }
1da177e4 1065
9e89dde2
ZR
1066 ps->power = -1; /* Unknown - driver assigned */
1067 ps->latency = -1; /* Unknown - driver assigned */
1068 }
1da177e4 1069
9e89dde2
ZR
1070 /* Set defaults for D0 and D3 states (always valid) */
1071 device->power.states[ACPI_STATE_D0].flags.valid = 1;
1072 device->power.states[ACPI_STATE_D0].power = 100;
1073 device->power.states[ACPI_STATE_D3].flags.valid = 1;
1074 device->power.states[ACPI_STATE_D3].power = 0;
c8f7a62c 1075
5c7dd710
RW
1076 /* Set D3cold's explicit_set flag if _PS3 exists. */
1077 if (device->power.states[ACPI_STATE_D3_HOT].flags.explicit_set)
1078 device->power.states[ACPI_STATE_D3_COLD].flags.explicit_set = 1;
1079
1399dfcd
AL
1080 /* Presence of _PS3 or _PRx means we can put the device into D3 cold */
1081 if (device->power.states[ACPI_STATE_D3_HOT].flags.explicit_set ||
1082 device->power.flags.power_resources)
1083 device->power.states[ACPI_STATE_D3_COLD].flags.os_accessible = 1;
1084
ade3e7fe 1085 acpi_bus_init_power(device);
c8f7a62c 1086
9e89dde2
ZR
1087 return 0;
1088}
c8f7a62c 1089
4be44fcd 1090static int acpi_bus_get_flags(struct acpi_device *device)
1da177e4 1091{
4be44fcd
LB
1092 acpi_status status = AE_OK;
1093 acpi_handle temp = NULL;
1da177e4 1094
1da177e4
LT
1095
1096 /* Presence of _STA indicates 'dynamic_status' */
1097 status = acpi_get_handle(device->handle, "_STA", &temp);
1098 if (ACPI_SUCCESS(status))
1099 device->flags.dynamic_status = 1;
1100
1da177e4
LT
1101 /* Presence of _RMV indicates 'removable' */
1102 status = acpi_get_handle(device->handle, "_RMV", &temp);
1103 if (ACPI_SUCCESS(status))
1104 device->flags.removable = 1;
1105
1106 /* Presence of _EJD|_EJ0 indicates 'ejectable' */
1107 status = acpi_get_handle(device->handle, "_EJD", &temp);
1108 if (ACPI_SUCCESS(status))
1109 device->flags.ejectable = 1;
1110 else {
1111 status = acpi_get_handle(device->handle, "_EJ0", &temp);
1112 if (ACPI_SUCCESS(status))
1113 device->flags.ejectable = 1;
1114 }
1115
7bed50c5
RW
1116 /* Power resources cannot be power manageable. */
1117 if (device->device_type == ACPI_BUS_TYPE_POWER)
1118 return 0;
1119
1da177e4
LT
1120 /* Presence of _PS0|_PR0 indicates 'power manageable' */
1121 status = acpi_get_handle(device->handle, "_PS0", &temp);
1122 if (ACPI_FAILURE(status))
1123 status = acpi_get_handle(device->handle, "_PR0", &temp);
1124 if (ACPI_SUCCESS(status))
1125 device->flags.power_manageable = 1;
1126
3c5f9be4 1127 /* TBD: Performance management */
1da177e4 1128
d550d98d 1129 return 0;
1da177e4
LT
1130}
1131
c7bcb4e9 1132static void acpi_device_get_busid(struct acpi_device *device)
1da177e4 1133{
4be44fcd
LB
1134 char bus_id[5] = { '?', 0 };
1135 struct acpi_buffer buffer = { sizeof(bus_id), bus_id };
1136 int i = 0;
1da177e4
LT
1137
1138 /*
1139 * Bus ID
1140 * ------
1141 * The device's Bus ID is simply the object name.
1142 * TBD: Shouldn't this value be unique (within the ACPI namespace)?
1143 */
859ac9a4 1144 if (ACPI_IS_ROOT_DEVICE(device)) {
1da177e4 1145 strcpy(device->pnp.bus_id, "ACPI");
859ac9a4
BH
1146 return;
1147 }
1148
1149 switch (device->device_type) {
1da177e4
LT
1150 case ACPI_BUS_TYPE_POWER_BUTTON:
1151 strcpy(device->pnp.bus_id, "PWRF");
1152 break;
1153 case ACPI_BUS_TYPE_SLEEP_BUTTON:
1154 strcpy(device->pnp.bus_id, "SLPF");
1155 break;
1156 default:
66b7ed40 1157 acpi_get_name(device->handle, ACPI_SINGLE_NAME, &buffer);
1da177e4
LT
1158 /* Clean up trailing underscores (if any) */
1159 for (i = 3; i > 1; i--) {
1160 if (bus_id[i] == '_')
1161 bus_id[i] = '\0';
1162 else
1163 break;
1164 }
1165 strcpy(device->pnp.bus_id, bus_id);
1166 break;
1167 }
1168}
1169
54735266
ZR
1170/*
1171 * acpi_bay_match - see if a device is an ejectable driver bay
1172 *
1173 * If an acpi object is ejectable and has one of the ACPI ATA methods defined,
1174 * then we can safely call it an ejectable drive bay
1175 */
1176static int acpi_bay_match(struct acpi_device *device){
1177 acpi_status status;
1178 acpi_handle handle;
1179 acpi_handle tmp;
1180 acpi_handle phandle;
1181
1182 handle = device->handle;
1183
1184 status = acpi_get_handle(handle, "_EJ0", &tmp);
1185 if (ACPI_FAILURE(status))
1186 return -ENODEV;
1187
1188 if ((ACPI_SUCCESS(acpi_get_handle(handle, "_GTF", &tmp))) ||
1189 (ACPI_SUCCESS(acpi_get_handle(handle, "_GTM", &tmp))) ||
1190 (ACPI_SUCCESS(acpi_get_handle(handle, "_STM", &tmp))) ||
1191 (ACPI_SUCCESS(acpi_get_handle(handle, "_SDD", &tmp))))
1192 return 0;
1193
1194 if (acpi_get_parent(handle, &phandle))
1195 return -ENODEV;
1196
1197 if ((ACPI_SUCCESS(acpi_get_handle(phandle, "_GTF", &tmp))) ||
1198 (ACPI_SUCCESS(acpi_get_handle(phandle, "_GTM", &tmp))) ||
1199 (ACPI_SUCCESS(acpi_get_handle(phandle, "_STM", &tmp))) ||
1200 (ACPI_SUCCESS(acpi_get_handle(phandle, "_SDD", &tmp))))
1201 return 0;
1202
1203 return -ENODEV;
1204}
1205
3620f2f2
FS
1206/*
1207 * acpi_dock_match - see if a device has a _DCK method
1208 */
1209static int acpi_dock_match(struct acpi_device *device)
1210{
1211 acpi_handle tmp;
1212 return acpi_get_handle(device->handle, "_DCK", &tmp);
1213}
1214
620e112c 1215const char *acpi_device_hid(struct acpi_device *device)
15b8dd53 1216{
7f47fa6c 1217 struct acpi_hardware_id *hid;
15b8dd53 1218
2b2ae7c7
TR
1219 if (list_empty(&device->pnp.ids))
1220 return dummy_hid;
1221
7f47fa6c
BH
1222 hid = list_first_entry(&device->pnp.ids, struct acpi_hardware_id, list);
1223 return hid->id;
1224}
1225EXPORT_SYMBOL(acpi_device_hid);
15b8dd53 1226
7f47fa6c
BH
1227static void acpi_add_id(struct acpi_device *device, const char *dev_id)
1228{
1229 struct acpi_hardware_id *id;
15b8dd53 1230
7f47fa6c
BH
1231 id = kmalloc(sizeof(*id), GFP_KERNEL);
1232 if (!id)
1233 return;
15b8dd53 1234
581de59e 1235 id->id = kstrdup(dev_id, GFP_KERNEL);
7f47fa6c
BH
1236 if (!id->id) {
1237 kfree(id);
1238 return;
15b8dd53
BM
1239 }
1240
7f47fa6c 1241 list_add_tail(&id->list, &device->pnp.ids);
15b8dd53
BM
1242}
1243
222e82ac
DW
1244/*
1245 * Old IBM workstations have a DSDT bug wherein the SMBus object
1246 * lacks the SMBUS01 HID and the methods do not have the necessary "_"
1247 * prefix. Work around this.
1248 */
1249static int acpi_ibm_smbus_match(struct acpi_device *device)
1250{
1251 acpi_handle h_dummy;
1252 struct acpi_buffer path = {ACPI_ALLOCATE_BUFFER, NULL};
1253 int result;
1254
1255 if (!dmi_name_in_vendors("IBM"))
1256 return -ENODEV;
1257
1258 /* Look for SMBS object */
1259 result = acpi_get_name(device->handle, ACPI_SINGLE_NAME, &path);
1260 if (result)
1261 return result;
1262
1263 if (strcmp("SMBS", path.pointer)) {
1264 result = -ENODEV;
1265 goto out;
1266 }
1267
1268 /* Does it have the necessary (but misnamed) methods? */
1269 result = -ENODEV;
1270 if (ACPI_SUCCESS(acpi_get_handle(device->handle, "SBI", &h_dummy)) &&
1271 ACPI_SUCCESS(acpi_get_handle(device->handle, "SBR", &h_dummy)) &&
1272 ACPI_SUCCESS(acpi_get_handle(device->handle, "SBW", &h_dummy)))
1273 result = 0;
1274out:
1275 kfree(path.pointer);
1276 return result;
1277}
1278
c7bcb4e9 1279static void acpi_device_set_id(struct acpi_device *device)
1da177e4 1280{
4be44fcd 1281 acpi_status status;
57f3674f 1282 struct acpi_device_info *info;
78e25fef 1283 struct acpi_pnp_device_id_list *cid_list;
7f47fa6c 1284 int i;
1da177e4 1285
c7bcb4e9 1286 switch (device->device_type) {
1da177e4 1287 case ACPI_BUS_TYPE_DEVICE:
859ac9a4 1288 if (ACPI_IS_ROOT_DEVICE(device)) {
57f3674f 1289 acpi_add_id(device, ACPI_SYSTEM_HID);
859ac9a4
BH
1290 break;
1291 }
1292
66b7ed40 1293 status = acpi_get_object_info(device->handle, &info);
1da177e4 1294 if (ACPI_FAILURE(status)) {
96b2dd1f 1295 printk(KERN_ERR PREFIX "%s: Error reading device info\n", __func__);
1da177e4
LT
1296 return;
1297 }
1298
1da177e4 1299 if (info->valid & ACPI_VALID_HID)
57f3674f
BH
1300 acpi_add_id(device, info->hardware_id.string);
1301 if (info->valid & ACPI_VALID_CID) {
15b8dd53 1302 cid_list = &info->compatible_id_list;
57f3674f
BH
1303 for (i = 0; i < cid_list->count; i++)
1304 acpi_add_id(device, cid_list->ids[i].string);
1305 }
1da177e4
LT
1306 if (info->valid & ACPI_VALID_ADR) {
1307 device->pnp.bus_address = info->address;
1308 device->flags.bus_address = 1;
1309 }
ccf78040
LZ
1310 if (info->valid & ACPI_VALID_UID)
1311 device->pnp.unique_id = kstrdup(info->unique_id.string,
1312 GFP_KERNEL);
ae843332 1313
a83893ae
BH
1314 kfree(info);
1315
57f3674f
BH
1316 /*
1317 * Some devices don't reliably have _HIDs & _CIDs, so add
1318 * synthetic HIDs to make sure drivers can find them.
1319 */
c3d6de69 1320 if (acpi_is_video_device(device))
57f3674f 1321 acpi_add_id(device, ACPI_VIDEO_HID);
3620f2f2 1322 else if (ACPI_SUCCESS(acpi_bay_match(device)))
57f3674f 1323 acpi_add_id(device, ACPI_BAY_HID);
3620f2f2 1324 else if (ACPI_SUCCESS(acpi_dock_match(device)))
57f3674f 1325 acpi_add_id(device, ACPI_DOCK_HID);
222e82ac
DW
1326 else if (!acpi_ibm_smbus_match(device))
1327 acpi_add_id(device, ACPI_SMBUS_IBM_HID);
b7b30de5
BH
1328 else if (!acpi_device_hid(device) &&
1329 ACPI_IS_ROOT_DEVICE(device->parent)) {
1330 acpi_add_id(device, ACPI_BUS_HID); /* \_SB, LNXSYBUS */
1331 strcpy(device->pnp.device_name, ACPI_BUS_DEVICE_NAME);
1332 strcpy(device->pnp.device_class, ACPI_BUS_CLASS);
1333 }
54735266 1334
1da177e4
LT
1335 break;
1336 case ACPI_BUS_TYPE_POWER:
57f3674f 1337 acpi_add_id(device, ACPI_POWER_HID);
1da177e4
LT
1338 break;
1339 case ACPI_BUS_TYPE_PROCESSOR:
57f3674f 1340 acpi_add_id(device, ACPI_PROCESSOR_OBJECT_HID);
1da177e4 1341 break;
1da177e4 1342 case ACPI_BUS_TYPE_THERMAL:
57f3674f 1343 acpi_add_id(device, ACPI_THERMAL_HID);
1da177e4
LT
1344 break;
1345 case ACPI_BUS_TYPE_POWER_BUTTON:
57f3674f 1346 acpi_add_id(device, ACPI_BUTTON_HID_POWERF);
1da177e4
LT
1347 break;
1348 case ACPI_BUS_TYPE_SLEEP_BUTTON:
57f3674f 1349 acpi_add_id(device, ACPI_BUTTON_HID_SLEEPF);
1da177e4
LT
1350 break;
1351 }
1da177e4
LT
1352}
1353
bc3b0772 1354static int acpi_device_set_context(struct acpi_device *device)
1da177e4 1355{
bc3b0772
BH
1356 acpi_status status;
1357
1da177e4
LT
1358 /*
1359 * Context
1360 * -------
1361 * Attach this 'struct acpi_device' to the ACPI object. This makes
bc3b0772
BH
1362 * resolutions from handle->device very efficient. Fixed hardware
1363 * devices have no handles, so we skip them.
1da177e4 1364 */
bc3b0772
BH
1365 if (!device->handle)
1366 return 0;
1da177e4 1367
bc3b0772
BH
1368 status = acpi_attach_data(device->handle,
1369 acpi_bus_data_handler, device);
1370 if (ACPI_SUCCESS(status))
1371 return 0;
1372
1373 printk(KERN_ERR PREFIX "Error attaching device data\n");
1374 return -ENODEV;
1da177e4
LT
1375}
1376
5c478f49
BH
1377static int acpi_add_single_object(struct acpi_device **child,
1378 acpi_handle handle, int type,
209d3b17 1379 unsigned long long sta, bool match_driver)
1da177e4 1380{
77c24888
BH
1381 int result;
1382 struct acpi_device *device;
29aaefa6 1383 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1da177e4 1384
36bcbec7 1385 device = kzalloc(sizeof(struct acpi_device), GFP_KERNEL);
1da177e4 1386 if (!device) {
6468463a 1387 printk(KERN_ERR PREFIX "Memory allocation error\n");
d550d98d 1388 return -ENOMEM;
1da177e4 1389 }
1da177e4 1390
7f47fa6c 1391 INIT_LIST_HEAD(&device->pnp.ids);
caaa6efb 1392 device->device_type = type;
1da177e4 1393 device->handle = handle;
5c478f49 1394 device->parent = acpi_bus_get_parent(handle);
778cbc1d 1395 STRUCT_TO_INT(device->status) = sta;
c4168bff 1396
c7bcb4e9 1397 acpi_device_get_busid(device);
1da177e4
LT
1398
1399 /*
1400 * Flags
1401 * -----
778cbc1d
BH
1402 * Note that we only look for object handles -- cannot evaluate objects
1403 * until we know the device is present and properly initialized.
1da177e4
LT
1404 */
1405 result = acpi_bus_get_flags(device);
1406 if (result)
1407 goto end;
1408
1da177e4
LT
1409 /*
1410 * Initialize Device
1411 * -----------------
1412 * TBD: Synch with Core's enumeration/initialization process.
1413 */
c7bcb4e9 1414 acpi_device_set_id(device);
1da177e4
LT
1415
1416 /*
1417 * Power Management
1418 * ----------------
1419 */
1420 if (device->flags.power_manageable) {
1421 result = acpi_bus_get_power_flags(device);
1422 if (result)
1423 goto end;
1424 }
1425
4be44fcd 1426 /*
1da177e4
LT
1427 * Wakeup device management
1428 *-----------------------
1429 */
d57d09a4 1430 acpi_bus_get_wakeup_device_flags(device);
1da177e4
LT
1431
1432 /*
1433 * Performance Management
1434 * ----------------------
1435 */
1436 if (device->flags.performance_manageable) {
1437 result = acpi_bus_get_perf_flags(device);
1438 if (result)
1439 goto end;
1440 }
1441
bc3b0772 1442 if ((result = acpi_device_set_context(device)))
f61f9258 1443 goto end;
1da177e4 1444
209d3b17 1445 device->flags.match_driver = match_driver;
66b7ed40 1446 result = acpi_device_register(device);
1da177e4 1447
0c526d96 1448end:
29aaefa6
BH
1449 if (!result) {
1450 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
1451 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1452 "Adding %s [%s] parent %s\n", dev_name(&device->dev),
1453 (char *) buffer.pointer,
1454 device->parent ? dev_name(&device->parent->dev) :
1455 "(null)"));
1456 kfree(buffer.pointer);
1da177e4 1457 *child = device;
29aaefa6 1458 } else
718fb0de 1459 acpi_device_release(&device->dev);
1da177e4 1460
d550d98d 1461 return result;
1da177e4 1462}
1da177e4 1463
778cbc1d
BH
1464#define ACPI_STA_DEFAULT (ACPI_STA_DEVICE_PRESENT | ACPI_STA_DEVICE_ENABLED | \
1465 ACPI_STA_DEVICE_UI | ACPI_STA_DEVICE_FUNCTIONING)
1466
bf325f95
RW
1467static void acpi_bus_add_power_resource(acpi_handle handle)
1468{
bf325f95
RW
1469 struct acpi_device *device = NULL;
1470
1471 acpi_bus_get_device(handle, &device);
1472 if (!device)
1473 acpi_add_single_object(&device, handle, ACPI_BUS_TYPE_POWER,
209d3b17 1474 ACPI_STA_DEFAULT, true);
bf325f95
RW
1475}
1476
778cbc1d
BH
1477static int acpi_bus_type_and_status(acpi_handle handle, int *type,
1478 unsigned long long *sta)
1da177e4 1479{
778cbc1d
BH
1480 acpi_status status;
1481 acpi_object_type acpi_type;
1da177e4 1482
778cbc1d 1483 status = acpi_get_type(handle, &acpi_type);
51a85faf 1484 if (ACPI_FAILURE(status))
778cbc1d 1485 return -ENODEV;
4be44fcd 1486
778cbc1d 1487 switch (acpi_type) {
51a85faf
BH
1488 case ACPI_TYPE_ANY: /* for ACPI_ROOT_OBJECT */
1489 case ACPI_TYPE_DEVICE:
778cbc1d
BH
1490 *type = ACPI_BUS_TYPE_DEVICE;
1491 status = acpi_bus_get_status_handle(handle, sta);
1492 if (ACPI_FAILURE(status))
1493 return -ENODEV;
51a85faf
BH
1494 break;
1495 case ACPI_TYPE_PROCESSOR:
778cbc1d
BH
1496 *type = ACPI_BUS_TYPE_PROCESSOR;
1497 status = acpi_bus_get_status_handle(handle, sta);
1498 if (ACPI_FAILURE(status))
1499 return -ENODEV;
51a85faf
BH
1500 break;
1501 case ACPI_TYPE_THERMAL:
778cbc1d
BH
1502 *type = ACPI_BUS_TYPE_THERMAL;
1503 *sta = ACPI_STA_DEFAULT;
51a85faf
BH
1504 break;
1505 case ACPI_TYPE_POWER:
778cbc1d
BH
1506 *type = ACPI_BUS_TYPE_POWER;
1507 *sta = ACPI_STA_DEFAULT;
51a85faf
BH
1508 break;
1509 default:
778cbc1d 1510 return -ENODEV;
51a85faf 1511 }
1da177e4 1512
778cbc1d
BH
1513 return 0;
1514}
1515
e3863094
RW
1516static acpi_status acpi_bus_check_add(acpi_handle handle, u32 lvl_not_used,
1517 void *not_used, void **return_value)
778cbc1d 1518{
805d410f 1519 struct acpi_device *device = NULL;
778cbc1d
BH
1520 int type;
1521 unsigned long long sta;
e3b87f8a 1522 acpi_status status;
778cbc1d
BH
1523 int result;
1524
4002bf38
RW
1525 acpi_bus_get_device(handle, &device);
1526 if (device)
1527 goto out;
1528
778cbc1d
BH
1529 result = acpi_bus_type_and_status(handle, &type, &sta);
1530 if (result)
1531 return AE_OK;
1532
1533 if (!(sta & ACPI_STA_DEVICE_PRESENT) &&
b581a7f9 1534 !(sta & ACPI_STA_DEVICE_FUNCTIONING)) {
86e4e20e
RW
1535 struct acpi_device_wakeup wakeup;
1536 acpi_handle temp;
1537
1538 status = acpi_get_handle(handle, "_PRW", &temp);
1539 if (ACPI_SUCCESS(status))
1540 acpi_bus_extract_wakeup_device_power_package(handle,
1541 &wakeup);
778cbc1d 1542 return AE_CTRL_DEPTH;
b581a7f9 1543 }
778cbc1d 1544
f95988de
RW
1545 acpi_add_single_object(&device, handle, type, sta,
1546 type == ACPI_BUS_TYPE_POWER);
4002bf38
RW
1547 if (!device)
1548 return AE_CTRL_DEPTH;
805d410f 1549
209d3b17 1550 device->flags.match_driver = true;
1da177e4 1551
4002bf38 1552 out:
51a85faf
BH
1553 if (!*return_value)
1554 *return_value = device;
805d410f 1555
51a85faf
BH
1556 return AE_OK;
1557}
3fb02738 1558
0fc300b0
RW
1559static acpi_status acpi_bus_device_attach(acpi_handle handle, u32 lvl_not_used,
1560 void *not_used, void **ret_not_used)
805d410f 1561{
805d410f
RW
1562 acpi_status status = AE_OK;
1563 struct acpi_device *device;
1564 unsigned long long sta_not_used;
1565 int type_not_used;
1566
1567 /*
1568 * Ignore errors ignored by acpi_bus_check_add() to avoid terminating
1569 * namespace walks prematurely.
1570 */
1571 if (acpi_bus_type_and_status(handle, &type_not_used, &sta_not_used))
1572 return AE_OK;
1573
1574 if (acpi_bus_get_device(handle, &device))
1575 return AE_CTRL_DEPTH;
1576
0fc300b0
RW
1577 if (!acpi_match_device_ids(device, acpi_platform_device_ids)) {
1578 /* This is a known good platform device. */
1579 acpi_create_platform_device(device);
abe99210 1580 } else if (device_attach(&device->dev) < 0) {
0fc300b0 1581 status = AE_CTRL_DEPTH;
805d410f
RW
1582 }
1583 return status;
1584}
1585
0cd6ac52 1586static int acpi_bus_scan(acpi_handle handle)
51a85faf 1587{
51a85faf 1588 void *device = NULL;
3fb02738 1589
0cd6ac52 1590 if (ACPI_SUCCESS(acpi_bus_check_add(handle, 0, NULL, &device)))
51a85faf 1591 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
e3863094 1592 acpi_bus_check_add, NULL, NULL, &device);
1da177e4 1593
805d410f 1594 if (!device)
0cd6ac52 1595 return -ENODEV;
805d410f 1596
0cd6ac52 1597 if (ACPI_SUCCESS(acpi_bus_device_attach(handle, 0, NULL, NULL)))
805d410f 1598 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
0fc300b0 1599 acpi_bus_device_attach, NULL, NULL, NULL);
805d410f 1600
0cd6ac52 1601 return 0;
1da177e4 1602}
1da177e4 1603
636458de
RW
1604/**
1605 * acpi_bus_add - Add ACPI device node objects in a given namespace scope.
1606 * @handle: Root of the namespace scope to scan.
636458de
RW
1607 *
1608 * Scan a given ACPI tree (probably recently hot-plugged) and create and add
1609 * found devices.
7779688f 1610 *
636458de
RW
1611 * If no devices were found, -ENODEV is returned, but it does not mean that
1612 * there has been a real error. There just have been no suitable ACPI objects
1613 * in the table trunk from which the kernel could create a device and add an
1614 * appropriate driver.
7779688f 1615 */
0cd6ac52 1616int acpi_bus_add(acpi_handle handle)
3fb02738 1617{
02f57c67 1618 int err;
d2f6650a 1619
0cd6ac52 1620 err = acpi_bus_scan(handle);
02f57c67
RW
1621 if (err)
1622 return err;
a2100801 1623
3a37898d 1624 acpi_update_all_gpes();
0fc300b0 1625 return 0;
3fb02738 1626}
02f57c67 1627EXPORT_SYMBOL(acpi_bus_add);
1da177e4 1628
05404d8f
RW
1629static acpi_status acpi_bus_device_detach(acpi_handle handle, u32 lvl_not_used,
1630 void *not_used, void **ret_not_used)
1631{
1632 struct acpi_device *device = NULL;
1633
1634 if (!acpi_bus_get_device(handle, &device)) {
1635 device->removal_type = ACPI_BUS_REMOVAL_EJECT;
1636 device_release_driver(&device->dev);
1637 }
1638 return AE_OK;
1639}
1640
1641static acpi_status acpi_bus_remove(acpi_handle handle, u32 lvl_not_used,
1642 void *not_used, void **ret_not_used)
1643{
1644 struct acpi_device *device = NULL;
1645
1646 if (!acpi_bus_get_device(handle, &device))
1647 acpi_device_unregister(device);
1648
1649 return AE_OK;
1650}
1651
ae281795 1652int acpi_bus_trim(struct acpi_device *start)
1da177e4 1653{
05404d8f
RW
1654 /*
1655 * Execute acpi_bus_device_detach() as a post-order callback to detach
1656 * all ACPI drivers from the device nodes being removed.
1657 */
1658 acpi_walk_namespace(ACPI_TYPE_ANY, start->handle, ACPI_UINT32_MAX, NULL,
1659 acpi_bus_device_detach, NULL, NULL);
1660 acpi_bus_device_detach(start->handle, 0, NULL, NULL);
cecdb193
RW
1661 /*
1662 * Execute acpi_bus_remove() as a post-order callback to remove device
1663 * nodes in the given namespace scope.
1664 */
1665 acpi_walk_namespace(ACPI_TYPE_ANY, start->handle, ACPI_UINT32_MAX, NULL,
1666 acpi_bus_remove, NULL, NULL);
1667 acpi_bus_remove(start->handle, 0, NULL, NULL);
1668 return 0;
1da177e4 1669}
ceaba663
KA
1670EXPORT_SYMBOL_GPL(acpi_bus_trim);
1671
e8b945c9 1672static int acpi_bus_scan_fixed(void)
1da177e4 1673{
4be44fcd
LB
1674 int result = 0;
1675 struct acpi_device *device = NULL;
c4168bff 1676
1da177e4
LT
1677 /*
1678 * Enumerate all fixed-feature devices.
1679 */
cee324b1 1680 if ((acpi_gbl_FADT.flags & ACPI_FADT_POWER_BUTTON) == 0) {
5c478f49 1681 result = acpi_add_single_object(&device, NULL,
c4168bff 1682 ACPI_BUS_TYPE_POWER_BUTTON,
209d3b17 1683 ACPI_STA_DEFAULT, true);
c10d7a13 1684 device_init_wakeup(&device->dev, true);
3fb02738 1685 }
1da177e4 1686
cee324b1 1687 if ((acpi_gbl_FADT.flags & ACPI_FADT_SLEEP_BUTTON) == 0) {
5c478f49 1688 result = acpi_add_single_object(&device, NULL,
c4168bff 1689 ACPI_BUS_TYPE_SLEEP_BUTTON,
209d3b17 1690 ACPI_STA_DEFAULT, true);
3fb02738 1691 }
1da177e4 1692
d550d98d 1693 return result;
1da177e4
LT
1694}
1695
e747f274 1696int __init acpi_scan_init(void)
1da177e4
LT
1697{
1698 int result;
1da177e4 1699
5b327265
PM
1700 result = bus_register(&acpi_bus_type);
1701 if (result) {
1702 /* We don't want to quit even if we failed to add suspend/resume */
1703 printk(KERN_ERR PREFIX "Could not register bus type\n");
1704 }
1705
97d9a9e9 1706 acpi_power_init();
92ef2a25 1707 acpi_pci_root_init();
97d9a9e9 1708
1da177e4
LT
1709 /*
1710 * Enumerate devices in the ACPI namespace.
1711 */
0cd6ac52
RW
1712 result = acpi_bus_scan(ACPI_ROOT_OBJECT);
1713 if (result)
1714 return result;
c04209a7 1715
0cd6ac52 1716 result = acpi_bus_get_device(ACPI_ROOT_OBJECT, &acpi_root);
c4168bff 1717 if (!result)
adc08e20 1718 result = acpi_bus_scan_fixed();
1da177e4
LT
1719
1720 if (result)
b17b537a 1721 acpi_device_unregister(acpi_root);
a2100801 1722 else
3a37898d 1723 acpi_update_all_gpes();
1da177e4 1724
d550d98d 1725 return result;
1da177e4 1726}
This page took 0.981672 seconds and 5 git commands to generate.