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