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