blob: b8f5c005fbb50ae0e98c105e5f3235872aecc797 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * scan.c - support for transforming the ACPI namespace into individual objects
3 */
4
5#include <linux/module.h>
6#include <linux/init.h>
Randy Dunlap9b6d97b2006-07-12 02:08:00 -04007#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/acpi.h>
Alok N Kataria74523c92008-06-13 12:54:24 -04009#include <linux/signal.h>
10#include <linux/kthread.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
12#include <acpi/acpi_drivers.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
Bjorn Helgaase60cc7a2009-03-13 12:08:26 -060014#include "internal.h"
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#define _COMPONENT ACPI_BUS_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050017ACPI_MODULE_NAME("scan");
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#define STRUCT_TO_INT(s) (*((int*)&s))
Len Brown4be44fc2005-08-05 00:44:28 -040019extern struct acpi_device *acpi_root;
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#define ACPI_BUS_CLASS "system_bus"
Thomas Renninger29b71a12007-07-23 14:43:51 +020022#define ACPI_BUS_HID "LNXSYBUS"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#define ACPI_BUS_DEVICE_NAME "System Bus"
24
25static LIST_HEAD(acpi_device_list);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +080026static LIST_HEAD(acpi_bus_id_list);
Shaohua Li90905892009-04-07 10:24:29 +080027DEFINE_MUTEX(acpi_device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070028LIST_HEAD(acpi_wakeup_device_list);
29
Zhang Ruie49bd2dd2006-12-08 17:23:43 +080030struct acpi_device_bus_id{
Zhang Ruibb095852007-01-04 15:03:18 +080031 char bus_id[15];
Zhang Ruie49bd2dd2006-12-08 17:23:43 +080032 unsigned int instance_no;
33 struct list_head node;
34};
Thomas Renninger29b71a12007-07-23 14:43:51 +020035
36/*
37 * Creates hid/cid(s) string needed for modalias and uevent
38 * e.g. on a device with hid:IBM0001 and cid:ACPI0001 you get:
39 * char *modalias: "acpi:IBM0001:ACPI0001"
40*/
Adrian Bunkb3e572d2007-08-14 23:22:35 +020041static int create_modalias(struct acpi_device *acpi_dev, char *modalias,
42 int size)
43{
Thomas Renninger29b71a12007-07-23 14:43:51 +020044 int len;
Zhang Rui5c9fcb52008-03-20 16:40:32 +080045 int count;
Thomas Renninger29b71a12007-07-23 14:43:51 +020046
Zhang Rui5c9fcb52008-03-20 16:40:32 +080047 if (!acpi_dev->flags.hardware_id && !acpi_dev->flags.compatible_ids)
Thomas Renninger29b71a12007-07-23 14:43:51 +020048 return -ENODEV;
49
Zhang Rui5c9fcb52008-03-20 16:40:32 +080050 len = snprintf(modalias, size, "acpi:");
Thomas Renninger29b71a12007-07-23 14:43:51 +020051 size -= len;
52
Zhang Rui5c9fcb52008-03-20 16:40:32 +080053 if (acpi_dev->flags.hardware_id) {
54 count = snprintf(&modalias[len], size, "%s:",
55 acpi_dev->pnp.hardware_id);
56 if (count < 0 || count >= size)
57 return -EINVAL;
58 len += count;
59 size -= count;
60 }
61
Thomas Renninger29b71a12007-07-23 14:43:51 +020062 if (acpi_dev->flags.compatible_ids) {
63 struct acpi_compatible_id_list *cid_list;
64 int i;
Thomas Renninger29b71a12007-07-23 14:43:51 +020065
66 cid_list = acpi_dev->pnp.cid_list;
67 for (i = 0; i < cid_list->count; i++) {
68 count = snprintf(&modalias[len], size, "%s:",
69 cid_list->id[i].value);
70 if (count < 0 || count >= size) {
Len Brown87ecd5c2008-01-01 14:00:00 -050071 printk(KERN_ERR PREFIX "%s cid[%i] exceeds event buffer size",
Thomas Renninger29b71a12007-07-23 14:43:51 +020072 acpi_dev->pnp.device_name, i);
73 break;
74 }
75 len += count;
76 size -= count;
77 }
78 }
79
80 modalias[len] = '\0';
81 return len;
82}
83
84static ssize_t
85acpi_device_modalias_show(struct device *dev, struct device_attribute *attr, char *buf) {
86 struct acpi_device *acpi_dev = to_acpi_device(dev);
87 int len;
88
89 /* Device has no HID and no CID or string is >1024 */
90 len = create_modalias(acpi_dev, buf, 1024);
91 if (len <= 0)
92 return 0;
93 buf[len++] = '\n';
94 return len;
95}
96static DEVICE_ATTR(modalias, 0444, acpi_device_modalias_show, NULL);
97
Zhang Rui26d46862008-04-29 02:35:48 -040098static int acpi_bus_hot_remove_device(void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
Zhang Rui26d46862008-04-29 02:35:48 -0400100 struct acpi_device *device;
101 acpi_handle handle = context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 struct acpi_object_list arg_list;
103 union acpi_object arg;
104 acpi_status status = AE_OK;
105
Zhang Rui26d46862008-04-29 02:35:48 -0400106 if (acpi_bus_get_device(handle, &device))
107 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Zhang Rui26d46862008-04-29 02:35:48 -0400109 if (!device)
110 return 0;
111
112 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Kay Sievers07944692008-10-30 01:18:59 +0100113 "Hot-removing device %s...\n", dev_name(&device->dev)));
Zhang Rui26d46862008-04-29 02:35:48 -0400114
115 if (acpi_bus_trim(device, 1)) {
Lin Ming55ac9a02008-09-28 14:51:56 +0800116 printk(KERN_ERR PREFIX
117 "Removing device failed\n");
Zhang Rui26d46862008-04-29 02:35:48 -0400118 return -1;
119 }
120
121 /* power off device */
122 status = acpi_evaluate_object(handle, "_PS3", NULL, NULL);
123 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND)
Lin Ming55ac9a02008-09-28 14:51:56 +0800124 printk(KERN_WARNING PREFIX
125 "Power-off device failed\n");
Zhang Rui26d46862008-04-29 02:35:48 -0400126
127 if (device->flags.lockable) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 arg_list.count = 1;
129 arg_list.pointer = &arg;
130 arg.type = ACPI_TYPE_INTEGER;
131 arg.integer.value = 0;
132 acpi_evaluate_object(handle, "_LCK", &arg_list, NULL);
133 }
134
135 arg_list.count = 1;
136 arg_list.pointer = &arg;
137 arg.type = ACPI_TYPE_INTEGER;
138 arg.integer.value = 1;
139
140 /*
141 * TBD: _EJD support.
142 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 status = acpi_evaluate_object(handle, "_EJ0", &arg_list, NULL);
Zhang Rui26d46862008-04-29 02:35:48 -0400144 if (ACPI_FAILURE(status))
145 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Zhang Rui26d46862008-04-29 02:35:48 -0400147 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150static ssize_t
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800151acpi_eject_store(struct device *d, struct device_attribute *attr,
152 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
Len Brown4be44fc2005-08-05 00:44:28 -0400154 int ret = count;
Len Brown4be44fc2005-08-05 00:44:28 -0400155 acpi_status status;
Len Brown4be44fc2005-08-05 00:44:28 -0400156 acpi_object_type type = 0;
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800157 struct acpi_device *acpi_device = to_acpi_device(d);
Alok N Kataria74523c92008-06-13 12:54:24 -0400158 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160 if ((!count) || (buf[0] != '1')) {
161 return -EINVAL;
162 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163#ifndef FORCE_EJECT
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800164 if (acpi_device->driver == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 ret = -ENODEV;
166 goto err;
167 }
168#endif
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800169 status = acpi_get_type(acpi_device->handle, &type);
170 if (ACPI_FAILURE(status) || (!acpi_device->flags.ejectable)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 ret = -ENODEV;
172 goto err;
173 }
174
Zhang Rui26d46862008-04-29 02:35:48 -0400175 /* remove the device in another thread to fix the deadlock issue */
Alok N Kataria74523c92008-06-13 12:54:24 -0400176 task = kthread_run(acpi_bus_hot_remove_device,
177 acpi_device->handle, "acpi_hot_remove_device");
178 if (IS_ERR(task))
179 ret = PTR_ERR(task);
180err:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182}
183
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800184static DEVICE_ATTR(eject, 0200, NULL, acpi_eject_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800186static ssize_t
187acpi_device_hid_show(struct device *dev, struct device_attribute *attr, char *buf) {
188 struct acpi_device *acpi_dev = to_acpi_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800190 return sprintf(buf, "%s\n", acpi_dev->pnp.hardware_id);
191}
192static DEVICE_ATTR(hid, 0444, acpi_device_hid_show, NULL);
193
194static ssize_t
195acpi_device_path_show(struct device *dev, struct device_attribute *attr, char *buf) {
196 struct acpi_device *acpi_dev = to_acpi_device(dev);
197 struct acpi_buffer path = {ACPI_ALLOCATE_BUFFER, NULL};
198 int result;
199
200 result = acpi_get_name(acpi_dev->handle, ACPI_FULL_PATHNAME, &path);
201 if(result)
202 goto end;
203
204 result = sprintf(buf, "%s\n", (char*)path.pointer);
205 kfree(path.pointer);
206 end:
207 return result;
208}
209static DEVICE_ATTR(path, 0444, acpi_device_path_show, NULL);
210
211static int acpi_device_setup_files(struct acpi_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800213 acpi_status status;
214 acpi_handle temp;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800215 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800217 /*
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800218 * Devices gotten from FADT don't have a "path" attribute
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800219 */
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800220 if(dev->handle) {
221 result = device_create_file(&dev->dev, &dev_attr_path);
222 if(result)
223 goto end;
224 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800226 if(dev->flags.hardware_id) {
227 result = device_create_file(&dev->dev, &dev_attr_hid);
228 if(result)
229 goto end;
230 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Thomas Renninger29b71a12007-07-23 14:43:51 +0200232 if (dev->flags.hardware_id || dev->flags.compatible_ids){
233 result = device_create_file(&dev->dev, &dev_attr_modalias);
234 if(result)
235 goto end;
236 }
237
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800238 /*
239 * If device has _EJ0, 'eject' file is created that is used to trigger
240 * hot-removal function from userland.
241 */
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800242 status = acpi_get_handle(dev->handle, "_EJ0", &temp);
243 if (ACPI_SUCCESS(status))
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800244 result = device_create_file(&dev->dev, &dev_attr_eject);
245 end:
246 return result;
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800247}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800249static void acpi_device_remove_files(struct acpi_device *dev)
250{
251 acpi_status status;
252 acpi_handle temp;
253
254 /*
255 * If device has _EJ0, 'eject' file is created that is used to trigger
256 * hot-removal function from userland.
257 */
258 status = acpi_get_handle(dev->handle, "_EJ0", &temp);
259 if (ACPI_SUCCESS(status))
260 device_remove_file(&dev->dev, &dev_attr_eject);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800261
Thomas Renninger29b71a12007-07-23 14:43:51 +0200262 if (dev->flags.hardware_id || dev->flags.compatible_ids)
263 device_remove_file(&dev->dev, &dev_attr_modalias);
264
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800265 if(dev->flags.hardware_id)
266 device_remove_file(&dev->dev, &dev_attr_hid);
267 if(dev->handle)
268 device_remove_file(&dev->dev, &dev_attr_path);
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800269}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270/* --------------------------------------------------------------------------
Zhang Rui9e89dde2006-12-07 20:56:16 +0800271 ACPI Bus operations
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 -------------------------------------------------------------------------- */
Thomas Renninger29b71a12007-07-23 14:43:51 +0200273
274int acpi_match_device_ids(struct acpi_device *device,
275 const struct acpi_device_id *ids)
276{
277 const struct acpi_device_id *id;
278
Zhao Yakui39a0ad82008-08-11 13:40:22 +0800279 /*
280 * If the device is not present, it is unnecessary to load device
281 * driver for it.
282 */
283 if (!device->status.present)
284 return -ENODEV;
285
Thomas Renninger29b71a12007-07-23 14:43:51 +0200286 if (device->flags.hardware_id) {
287 for (id = ids; id->id[0]; id++) {
288 if (!strcmp((char*)id->id, device->pnp.hardware_id))
289 return 0;
290 }
291 }
292
293 if (device->flags.compatible_ids) {
294 struct acpi_compatible_id_list *cid_list = device->pnp.cid_list;
295 int i;
296
297 for (id = ids; id->id[0]; id++) {
298 /* compare multiple _CID entries against driver ids */
299 for (i = 0; i < cid_list->count; i++) {
300 if (!strcmp((char*)id->id,
301 cid_list->id[i].value))
302 return 0;
303 }
304 }
305 }
306
307 return -ENOENT;
308}
309EXPORT_SYMBOL(acpi_match_device_ids);
310
Patrick Mochel1890a972006-12-07 20:56:31 +0800311static void acpi_device_release(struct device *dev)
312{
313 struct acpi_device *acpi_dev = to_acpi_device(dev);
314
315 kfree(acpi_dev->pnp.cid_list);
316 kfree(acpi_dev);
317}
318
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800319static int acpi_device_suspend(struct device *dev, pm_message_t state)
Zhang Rui9e89dde2006-12-07 20:56:16 +0800320{
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800321 struct acpi_device *acpi_dev = to_acpi_device(dev);
322 struct acpi_driver *acpi_drv = acpi_dev->driver;
Zhang Rui9e89dde2006-12-07 20:56:16 +0800323
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800324 if (acpi_drv && acpi_drv->ops.suspend)
325 return acpi_drv->ops.suspend(acpi_dev, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 return 0;
327}
328
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800329static int acpi_device_resume(struct device *dev)
330{
331 struct acpi_device *acpi_dev = to_acpi_device(dev);
332 struct acpi_driver *acpi_drv = acpi_dev->driver;
333
334 if (acpi_drv && acpi_drv->ops.resume)
335 return acpi_drv->ops.resume(acpi_dev);
336 return 0;
337}
338
339static int acpi_bus_match(struct device *dev, struct device_driver *drv)
340{
341 struct acpi_device *acpi_dev = to_acpi_device(dev);
342 struct acpi_driver *acpi_drv = to_acpi_driver(drv);
343
Thomas Renninger29b71a12007-07-23 14:43:51 +0200344 return !acpi_match_device_ids(acpi_dev, acpi_drv->ids);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800345}
346
Kay Sievers7eff2e72007-08-14 15:15:12 +0200347static int acpi_device_uevent(struct device *dev, struct kobj_uevent_env *env)
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800348{
349 struct acpi_device *acpi_dev = to_acpi_device(dev);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200350 int len;
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800351
Kay Sievers7eff2e72007-08-14 15:15:12 +0200352 if (add_uevent_var(env, "MODALIAS="))
353 return -ENOMEM;
354 len = create_modalias(acpi_dev, &env->buf[env->buflen - 1],
355 sizeof(env->buf) - env->buflen);
356 if (len >= (sizeof(env->buf) - env->buflen))
357 return -ENOMEM;
358 env->buflen += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 return 0;
360}
361
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000362static void acpi_device_notify(acpi_handle handle, u32 event, void *data)
363{
364 struct acpi_device *device = data;
365
366 device->driver->ops.notify(device, event);
367}
368
369static acpi_status acpi_device_notify_fixed(void *data)
370{
371 struct acpi_device *device = data;
372
373 acpi_device_notify(device->handle, ACPI_FIXED_HARDWARE_EVENT, device);
374 return AE_OK;
375}
376
377static int acpi_device_install_notify_handler(struct acpi_device *device)
378{
379 acpi_status status;
380 char *hid;
381
382 hid = acpi_device_hid(device);
383 if (!strcmp(hid, ACPI_BUTTON_HID_POWERF))
384 status =
385 acpi_install_fixed_event_handler(ACPI_EVENT_POWER_BUTTON,
386 acpi_device_notify_fixed,
387 device);
388 else if (!strcmp(hid, ACPI_BUTTON_HID_SLEEPF))
389 status =
390 acpi_install_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON,
391 acpi_device_notify_fixed,
392 device);
393 else
394 status = acpi_install_notify_handler(device->handle,
395 ACPI_DEVICE_NOTIFY,
396 acpi_device_notify,
397 device);
398
399 if (ACPI_FAILURE(status))
400 return -EINVAL;
401 return 0;
402}
403
404static void acpi_device_remove_notify_handler(struct acpi_device *device)
405{
406 if (!strcmp(acpi_device_hid(device), ACPI_BUTTON_HID_POWERF))
407 acpi_remove_fixed_event_handler(ACPI_EVENT_POWER_BUTTON,
408 acpi_device_notify_fixed);
409 else if (!strcmp(acpi_device_hid(device), ACPI_BUTTON_HID_SLEEPF))
410 acpi_remove_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON,
411 acpi_device_notify_fixed);
412 else
413 acpi_remove_notify_handler(device->handle, ACPI_DEVICE_NOTIFY,
414 acpi_device_notify);
415}
416
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800417static int acpi_bus_driver_init(struct acpi_device *, struct acpi_driver *);
418static int acpi_start_single_object(struct acpi_device *);
419static int acpi_device_probe(struct device * dev)
Zhang Rui9e89dde2006-12-07 20:56:16 +0800420{
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800421 struct acpi_device *acpi_dev = to_acpi_device(dev);
422 struct acpi_driver *acpi_drv = to_acpi_driver(dev->driver);
423 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800425 ret = acpi_bus_driver_init(acpi_dev, acpi_drv);
426 if (!ret) {
Li Shaohuac4168bf2006-12-07 20:56:41 +0800427 if (acpi_dev->bus_ops.acpi_op_start)
428 acpi_start_single_object(acpi_dev);
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000429
430 if (acpi_drv->ops.notify) {
431 ret = acpi_device_install_notify_handler(acpi_dev);
432 if (ret) {
433 if (acpi_drv->ops.stop)
434 acpi_drv->ops.stop(acpi_dev,
435 acpi_dev->removal_type);
436 if (acpi_drv->ops.remove)
437 acpi_drv->ops.remove(acpi_dev,
438 acpi_dev->removal_type);
439 return ret;
440 }
441 }
442
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800443 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
444 "Found driver [%s] for device [%s]\n",
445 acpi_drv->name, acpi_dev->pnp.bus_id));
446 get_device(dev);
Zhang Rui9e89dde2006-12-07 20:56:16 +0800447 }
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800448 return ret;
449}
450
451static int acpi_device_remove(struct device * dev)
452{
453 struct acpi_device *acpi_dev = to_acpi_device(dev);
454 struct acpi_driver *acpi_drv = acpi_dev->driver;
455
456 if (acpi_drv) {
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000457 if (acpi_drv->ops.notify)
458 acpi_device_remove_notify_handler(acpi_dev);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800459 if (acpi_drv->ops.stop)
Li Shaohua96333572006-12-07 20:56:46 +0800460 acpi_drv->ops.stop(acpi_dev, acpi_dev->removal_type);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800461 if (acpi_drv->ops.remove)
Li Shaohua96333572006-12-07 20:56:46 +0800462 acpi_drv->ops.remove(acpi_dev, acpi_dev->removal_type);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800463 }
464 acpi_dev->driver = NULL;
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700465 acpi_dev->driver_data = NULL;
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800466
467 put_device(dev);
Zhang Rui9e89dde2006-12-07 20:56:16 +0800468 return 0;
469}
470
David Brownell55955aa2007-05-08 00:28:35 -0700471struct bus_type acpi_bus_type = {
Zhang Rui9e89dde2006-12-07 20:56:16 +0800472 .name = "acpi",
473 .suspend = acpi_device_suspend,
474 .resume = acpi_device_resume,
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800475 .match = acpi_bus_match,
476 .probe = acpi_device_probe,
477 .remove = acpi_device_remove,
478 .uevent = acpi_device_uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479};
480
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800481static int acpi_device_register(struct acpi_device *device,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 struct acpi_device *parent)
483{
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800484 int result;
485 struct acpi_device_bus_id *acpi_device_bus_id, *new_bus_id;
486 int found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 /*
488 * Linkage
489 * -------
490 * Link this device to its parent and siblings.
491 */
492 INIT_LIST_HEAD(&device->children);
493 INIT_LIST_HEAD(&device->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 INIT_LIST_HEAD(&device->wakeup_list);
495
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800496 new_bus_id = kzalloc(sizeof(struct acpi_device_bus_id), GFP_KERNEL);
497 if (!new_bus_id) {
498 printk(KERN_ERR PREFIX "Memory allocation error\n");
499 return -ENOMEM;
500 }
501
Shaohua Li90905892009-04-07 10:24:29 +0800502 mutex_lock(&acpi_device_lock);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800503 /*
504 * Find suitable bus_id and instance number in acpi_bus_id_list
505 * If failed, create one and link it into acpi_bus_id_list
506 */
507 list_for_each_entry(acpi_device_bus_id, &acpi_bus_id_list, node) {
Zhang Ruibb095852007-01-04 15:03:18 +0800508 if(!strcmp(acpi_device_bus_id->bus_id, device->flags.hardware_id? device->pnp.hardware_id : "device")) {
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800509 acpi_device_bus_id->instance_no ++;
510 found = 1;
511 kfree(new_bus_id);
512 break;
513 }
514 }
515 if(!found) {
516 acpi_device_bus_id = new_bus_id;
Zhang Ruibb095852007-01-04 15:03:18 +0800517 strcpy(acpi_device_bus_id->bus_id, device->flags.hardware_id ? device->pnp.hardware_id : "device");
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800518 acpi_device_bus_id->instance_no = 0;
519 list_add_tail(&acpi_device_bus_id->node, &acpi_bus_id_list);
520 }
Kay Sievers07944692008-10-30 01:18:59 +0100521 dev_set_name(&device->dev, "%s:%02x", acpi_device_bus_id->bus_id, acpi_device_bus_id->instance_no);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800522
Len Brown33b57152008-12-15 22:09:26 -0500523 if (device->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 list_add_tail(&device->node, &device->parent->children);
Len Brown33b57152008-12-15 22:09:26 -0500525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 if (device->wakeup.flags.valid)
527 list_add_tail(&device->wakeup_list, &acpi_wakeup_device_list);
Shaohua Li90905892009-04-07 10:24:29 +0800528 mutex_unlock(&acpi_device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Patrick Mochel1890a972006-12-07 20:56:31 +0800530 if (device->parent)
531 device->dev.parent = &parent->dev;
532 device->dev.bus = &acpi_bus_type;
Patrick Mochel1890a972006-12-07 20:56:31 +0800533 device->dev.release = &acpi_device_release;
Alex Chiang8b12b922009-05-14 08:31:32 -0600534 result = device_register(&device->dev);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800535 if(result) {
Alex Chiang8b12b922009-05-14 08:31:32 -0600536 dev_err(&device->dev, "Error registering device\n");
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800537 goto end;
538 }
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800539
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800540 result = acpi_device_setup_files(device);
541 if(result)
Kay Sievers07944692008-10-30 01:18:59 +0100542 printk(KERN_ERR PREFIX "Error creating sysfs interface for device %s\n",
543 dev_name(&device->dev));
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800544
Li Shaohua96333572006-12-07 20:56:46 +0800545 device->removal_type = ACPI_BUS_REMOVAL_NORMAL;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800546 return 0;
547 end:
Shaohua Li90905892009-04-07 10:24:29 +0800548 mutex_lock(&acpi_device_lock);
Len Brown33b57152008-12-15 22:09:26 -0500549 if (device->parent)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800550 list_del(&device->node);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800551 list_del(&device->wakeup_list);
Shaohua Li90905892009-04-07 10:24:29 +0800552 mutex_unlock(&acpi_device_lock);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800553 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554}
555
556static void acpi_device_unregister(struct acpi_device *device, int type)
557{
Shaohua Li90905892009-04-07 10:24:29 +0800558 mutex_lock(&acpi_device_lock);
Len Brown33b57152008-12-15 22:09:26 -0500559 if (device->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 list_del(&device->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
562 list_del(&device->wakeup_list);
Shaohua Li90905892009-04-07 10:24:29 +0800563 mutex_unlock(&acpi_device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565 acpi_detach_data(device->handle, acpi_bus_data_handler);
Patrick Mochel1890a972006-12-07 20:56:31 +0800566
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800567 acpi_device_remove_files(device);
Patrick Mochel1890a972006-12-07 20:56:31 +0800568 device_unregister(&device->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569}
570
Zhang Rui9e89dde2006-12-07 20:56:16 +0800571/* --------------------------------------------------------------------------
572 Driver Management
573 -------------------------------------------------------------------------- */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574/**
Randy Dunlapd758a8f2006-01-06 01:31:00 -0500575 * acpi_bus_driver_init - add a device to a driver
576 * @device: the device to add and initialize
577 * @driver: driver for the device
578 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 * Used to initialize a device via its device driver. Called whenever a
Patrick Mochel1890a972006-12-07 20:56:31 +0800580 * driver is bound to a device. Invokes the driver's add() ops.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 */
582static int
Len Brown4be44fc2005-08-05 00:44:28 -0400583acpi_bus_driver_init(struct acpi_device *device, struct acpi_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
Len Brown4be44fc2005-08-05 00:44:28 -0400585 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
588 if (!device || !driver)
Patrick Mocheld550d982006-06-27 00:41:40 -0400589 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
591 if (!driver->ops.add)
Patrick Mocheld550d982006-06-27 00:41:40 -0400592 return -ENOSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
594 result = driver->ops.add(device);
595 if (result) {
596 device->driver = NULL;
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700597 device->driver_data = NULL;
Patrick Mocheld550d982006-06-27 00:41:40 -0400598 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 }
600
601 device->driver = driver;
602
603 /*
604 * TBD - Configuration Management: Assign resources to device based
605 * upon possible configuration and currently allocated resources.
606 */
607
Len Brown4be44fc2005-08-05 00:44:28 -0400608 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
609 "Driver successfully bound to device\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400610 return 0;
Rajesh Shah3fb02732005-04-28 00:25:52 -0700611}
612
Adrian Bunk8713cbe2005-09-02 17:16:48 -0400613static int acpi_start_single_object(struct acpi_device *device)
Rajesh Shah3fb02732005-04-28 00:25:52 -0700614{
615 int result = 0;
616 struct acpi_driver *driver;
617
Rajesh Shah3fb02732005-04-28 00:25:52 -0700618
619 if (!(driver = device->driver))
Patrick Mocheld550d982006-06-27 00:41:40 -0400620 return 0;
Rajesh Shah3fb02732005-04-28 00:25:52 -0700621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 if (driver->ops.start) {
623 result = driver->ops.start(device);
624 if (result && driver->ops.remove)
625 driver->ops.remove(device, ACPI_BUS_REMOVAL_NORMAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 }
627
Patrick Mocheld550d982006-06-27 00:41:40 -0400628 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631/**
Randy Dunlapd758a8f2006-01-06 01:31:00 -0500632 * acpi_bus_register_driver - register a driver with the ACPI bus
633 * @driver: driver being registered
634 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 * Registers a driver with the ACPI bus. Searches the namespace for all
Bjorn Helgaas9d9f7492006-03-28 17:04:00 -0500636 * devices that match the driver's criteria and binds. Returns zero for
637 * success or a negative error status for failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 */
Len Brown4be44fc2005-08-05 00:44:28 -0400639int acpi_bus_register_driver(struct acpi_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640{
Patrick Mochel1890a972006-12-07 20:56:31 +0800641 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
643 if (acpi_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -0400644 return -ENODEV;
Patrick Mochel1890a972006-12-07 20:56:31 +0800645 driver->drv.name = driver->name;
646 driver->drv.bus = &acpi_bus_type;
647 driver->drv.owner = driver->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Patrick Mochel1890a972006-12-07 20:56:31 +0800649 ret = driver_register(&driver->drv);
650 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Len Brown4be44fc2005-08-05 00:44:28 -0400653EXPORT_SYMBOL(acpi_bus_register_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
655/**
Randy Dunlapd758a8f2006-01-06 01:31:00 -0500656 * acpi_bus_unregister_driver - unregisters a driver with the APIC bus
657 * @driver: driver to unregister
658 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 * Unregisters a driver with the ACPI bus. Searches the namespace for all
660 * devices that match the driver's criteria and unbinds.
661 */
Bjorn Helgaas06ea8e082006-04-27 05:25:00 -0400662void acpi_bus_unregister_driver(struct acpi_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663{
Patrick Mochel1890a972006-12-07 20:56:31 +0800664 driver_unregister(&driver->drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665}
Len Brown4be44fc2005-08-05 00:44:28 -0400666
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667EXPORT_SYMBOL(acpi_bus_unregister_driver);
668
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669/* --------------------------------------------------------------------------
670 Device Enumeration
671 -------------------------------------------------------------------------- */
Len Brownc8f7a622006-07-09 17:22:28 -0400672acpi_status
673acpi_bus_get_ejd(acpi_handle handle, acpi_handle *ejd)
674{
675 acpi_status status;
676 acpi_handle tmp;
677 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
678 union acpi_object *obj;
679
680 status = acpi_get_handle(handle, "_EJD", &tmp);
681 if (ACPI_FAILURE(status))
682 return status;
683
684 status = acpi_evaluate_object(handle, "_EJD", NULL, &buffer);
685 if (ACPI_SUCCESS(status)) {
686 obj = buffer.pointer;
Holger Macht3b5fee52008-02-14 13:40:34 +0100687 status = acpi_get_handle(ACPI_ROOT_OBJECT, obj->string.pointer,
688 ejd);
Len Brownc8f7a622006-07-09 17:22:28 -0400689 kfree(buffer.pointer);
690 }
691 return status;
692}
693EXPORT_SYMBOL_GPL(acpi_bus_get_ejd);
694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695void acpi_bus_data_handler(acpi_handle handle, u32 function, void *context)
696{
697
698 /* TBD */
699
700 return;
701}
702
Zhang Rui9e89dde2006-12-07 20:56:16 +0800703static int acpi_bus_get_perf_flags(struct acpi_device *device)
704{
705 device->performance.state = ACPI_STATE_UNKNOWN;
706 return 0;
707}
708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709static acpi_status
710acpi_bus_extract_wakeup_device_power_package(struct acpi_device *device,
711 union acpi_object *package)
712{
713 int i = 0;
714 union acpi_object *element = NULL;
715
716 if (!device || !package || (package->package.count < 2))
717 return AE_BAD_PARAMETER;
718
719 element = &(package->package.elements[0]);
720 if (!element)
721 return AE_BAD_PARAMETER;
722 if (element->type == ACPI_TYPE_PACKAGE) {
723 if ((element->package.count < 2) ||
724 (element->package.elements[0].type !=
725 ACPI_TYPE_LOCAL_REFERENCE)
726 || (element->package.elements[1].type != ACPI_TYPE_INTEGER))
727 return AE_BAD_DATA;
728 device->wakeup.gpe_device =
729 element->package.elements[0].reference.handle;
730 device->wakeup.gpe_number =
731 (u32) element->package.elements[1].integer.value;
732 } else if (element->type == ACPI_TYPE_INTEGER) {
733 device->wakeup.gpe_number = element->integer.value;
734 } else
735 return AE_BAD_DATA;
736
737 element = &(package->package.elements[1]);
738 if (element->type != ACPI_TYPE_INTEGER) {
739 return AE_BAD_DATA;
740 }
741 device->wakeup.sleep_state = element->integer.value;
742
743 if ((package->package.count - 2) > ACPI_MAX_HANDLES) {
744 return AE_NO_MEMORY;
745 }
746 device->wakeup.resources.count = package->package.count - 2;
747 for (i = 0; i < device->wakeup.resources.count; i++) {
748 element = &(package->package.elements[i + 2]);
Bob Moorecd0b2242008-04-10 19:06:43 +0400749 if (element->type != ACPI_TYPE_LOCAL_REFERENCE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 return AE_BAD_DATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
752 device->wakeup.resources.handles[i] = element->reference.handle;
753 }
754
755 return AE_OK;
756}
757
758static int acpi_bus_get_wakeup_device_flags(struct acpi_device *device)
759{
760 acpi_status status = 0;
761 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
762 union acpi_object *package = NULL;
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200763 int psw_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
Thomas Renninger29b71a12007-07-23 14:43:51 +0200765 struct acpi_device_id button_device_ids[] = {
766 {"PNP0C0D", 0},
767 {"PNP0C0C", 0},
768 {"PNP0C0E", 0},
769 {"", 0},
770 };
771
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 /* _PRW */
773 status = acpi_evaluate_object(device->handle, "_PRW", NULL, &buffer);
774 if (ACPI_FAILURE(status)) {
775 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PRW"));
776 goto end;
777 }
778
779 package = (union acpi_object *)buffer.pointer;
780 status = acpi_bus_extract_wakeup_device_power_package(device, package);
781 if (ACPI_FAILURE(status)) {
782 ACPI_EXCEPTION((AE_INFO, status, "Extracting _PRW package"));
783 goto end;
784 }
785
786 kfree(buffer.pointer);
787
788 device->wakeup.flags.valid = 1;
Zhao Yakui729b2bd2008-03-19 13:26:54 +0800789 /* Call _PSW/_DSW object to disable its ability to wake the sleeping
790 * system for the ACPI device with the _PRW object.
791 * The _PSW object is depreciated in ACPI 3.0 and is replaced by _DSW.
792 * So it is necessary to call _DSW object first. Only when it is not
793 * present will the _PSW object used.
794 */
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200795 psw_error = acpi_device_sleep_wake(device, 0, 0, 0);
796 if (psw_error)
797 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
798 "error in _DSW or _PSW evaluation\n"));
799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 /* Power button, Lid switch always enable wakeup */
Thomas Renninger29b71a12007-07-23 14:43:51 +0200801 if (!acpi_match_device_ids(device, button_device_ids))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 device->wakeup.flags.run_wake = 1;
803
804 end:
805 if (ACPI_FAILURE(status))
806 device->flags.wake_capable = 0;
807 return 0;
808}
809
Zhang Rui9e89dde2006-12-07 20:56:16 +0800810static int acpi_bus_get_power_flags(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
Zhang Rui9e89dde2006-12-07 20:56:16 +0800812 acpi_status status = 0;
813 acpi_handle handle = NULL;
814 u32 i = 0;
815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817 /*
Zhang Rui9e89dde2006-12-07 20:56:16 +0800818 * Power Management Flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 */
Zhang Rui9e89dde2006-12-07 20:56:16 +0800820 status = acpi_get_handle(device->handle, "_PSC", &handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 if (ACPI_SUCCESS(status))
Zhang Rui9e89dde2006-12-07 20:56:16 +0800822 device->power.flags.explicit_get = 1;
823 status = acpi_get_handle(device->handle, "_IRC", &handle);
824 if (ACPI_SUCCESS(status))
825 device->power.flags.inrush_current = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
827 /*
Zhang Rui9e89dde2006-12-07 20:56:16 +0800828 * Enumerate supported power management states
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 */
Zhang Rui9e89dde2006-12-07 20:56:16 +0800830 for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3; i++) {
831 struct acpi_device_power_state *ps = &device->power.states[i];
832 char object_name[5] = { '_', 'P', 'R', '0' + i, '\0' };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Zhang Rui9e89dde2006-12-07 20:56:16 +0800834 /* Evaluate "_PRx" to se if power resources are referenced */
835 acpi_evaluate_reference(device->handle, object_name, NULL,
836 &ps->resources);
837 if (ps->resources.count) {
838 device->power.flags.power_resources = 1;
839 ps->flags.valid = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
Zhang Rui9e89dde2006-12-07 20:56:16 +0800842 /* Evaluate "_PSx" to see if we can do explicit sets */
843 object_name[2] = 'S';
844 status = acpi_get_handle(device->handle, object_name, &handle);
845 if (ACPI_SUCCESS(status)) {
846 ps->flags.explicit_set = 1;
847 ps->flags.valid = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 }
Zhang Rui9e89dde2006-12-07 20:56:16 +0800849
850 /* State is valid if we have some power control */
851 if (ps->resources.count || ps->flags.explicit_set)
852 ps->flags.valid = 1;
853
854 ps->power = -1; /* Unknown - driver assigned */
855 ps->latency = -1; /* Unknown - driver assigned */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Zhang Rui9e89dde2006-12-07 20:56:16 +0800858 /* Set defaults for D0 and D3 states (always valid) */
859 device->power.states[ACPI_STATE_D0].flags.valid = 1;
860 device->power.states[ACPI_STATE_D0].power = 100;
861 device->power.states[ACPI_STATE_D3].flags.valid = 1;
862 device->power.states[ACPI_STATE_D3].power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
Zhang Rui9e89dde2006-12-07 20:56:16 +0800864 /* TBD: System wake support and resource requirements. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Zhang Rui9e89dde2006-12-07 20:56:16 +0800866 device->power.state = ACPI_STATE_UNKNOWN;
Zhao Yakuia51e1452008-08-11 14:55:05 +0800867 acpi_bus_get_power(device->handle, &(device->power.state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
869 return 0;
870}
871
Len Brown4be44fc2005-08-05 00:44:28 -0400872static int acpi_bus_get_flags(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873{
Len Brown4be44fc2005-08-05 00:44:28 -0400874 acpi_status status = AE_OK;
875 acpi_handle temp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
878 /* Presence of _STA indicates 'dynamic_status' */
879 status = acpi_get_handle(device->handle, "_STA", &temp);
880 if (ACPI_SUCCESS(status))
881 device->flags.dynamic_status = 1;
882
883 /* Presence of _CID indicates 'compatible_ids' */
884 status = acpi_get_handle(device->handle, "_CID", &temp);
885 if (ACPI_SUCCESS(status))
886 device->flags.compatible_ids = 1;
887
888 /* Presence of _RMV indicates 'removable' */
889 status = acpi_get_handle(device->handle, "_RMV", &temp);
890 if (ACPI_SUCCESS(status))
891 device->flags.removable = 1;
892
893 /* Presence of _EJD|_EJ0 indicates 'ejectable' */
894 status = acpi_get_handle(device->handle, "_EJD", &temp);
895 if (ACPI_SUCCESS(status))
896 device->flags.ejectable = 1;
897 else {
898 status = acpi_get_handle(device->handle, "_EJ0", &temp);
899 if (ACPI_SUCCESS(status))
900 device->flags.ejectable = 1;
901 }
902
903 /* Presence of _LCK indicates 'lockable' */
904 status = acpi_get_handle(device->handle, "_LCK", &temp);
905 if (ACPI_SUCCESS(status))
906 device->flags.lockable = 1;
907
908 /* Presence of _PS0|_PR0 indicates 'power manageable' */
909 status = acpi_get_handle(device->handle, "_PS0", &temp);
910 if (ACPI_FAILURE(status))
911 status = acpi_get_handle(device->handle, "_PR0", &temp);
912 if (ACPI_SUCCESS(status))
913 device->flags.power_manageable = 1;
914
915 /* Presence of _PRW indicates wake capable */
916 status = acpi_get_handle(device->handle, "_PRW", &temp);
917 if (ACPI_SUCCESS(status))
918 device->flags.wake_capable = 1;
919
Joe Perches3c5f9be42008-02-03 17:06:17 +0200920 /* TBD: Performance management */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Patrick Mocheld550d982006-06-27 00:41:40 -0400922 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923}
924
Len Brown4be44fc2005-08-05 00:44:28 -0400925static void acpi_device_get_busid(struct acpi_device *device,
926 acpi_handle handle, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927{
Len Brown4be44fc2005-08-05 00:44:28 -0400928 char bus_id[5] = { '?', 0 };
929 struct acpi_buffer buffer = { sizeof(bus_id), bus_id };
930 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
932 /*
933 * Bus ID
934 * ------
935 * The device's Bus ID is simply the object name.
936 * TBD: Shouldn't this value be unique (within the ACPI namespace)?
937 */
938 switch (type) {
939 case ACPI_BUS_TYPE_SYSTEM:
940 strcpy(device->pnp.bus_id, "ACPI");
941 break;
942 case ACPI_BUS_TYPE_POWER_BUTTON:
943 strcpy(device->pnp.bus_id, "PWRF");
944 break;
945 case ACPI_BUS_TYPE_SLEEP_BUTTON:
946 strcpy(device->pnp.bus_id, "SLPF");
947 break;
948 default:
949 acpi_get_name(handle, ACPI_SINGLE_NAME, &buffer);
950 /* Clean up trailing underscores (if any) */
951 for (i = 3; i > 1; i--) {
952 if (bus_id[i] == '_')
953 bus_id[i] = '\0';
954 else
955 break;
956 }
957 strcpy(device->pnp.bus_id, bus_id);
958 break;
959 }
960}
961
Zhang Rui54735262007-01-11 02:09:09 -0500962/*
963 * acpi_bay_match - see if a device is an ejectable driver bay
964 *
965 * If an acpi object is ejectable and has one of the ACPI ATA methods defined,
966 * then we can safely call it an ejectable drive bay
967 */
968static int acpi_bay_match(struct acpi_device *device){
969 acpi_status status;
970 acpi_handle handle;
971 acpi_handle tmp;
972 acpi_handle phandle;
973
974 handle = device->handle;
975
976 status = acpi_get_handle(handle, "_EJ0", &tmp);
977 if (ACPI_FAILURE(status))
978 return -ENODEV;
979
980 if ((ACPI_SUCCESS(acpi_get_handle(handle, "_GTF", &tmp))) ||
981 (ACPI_SUCCESS(acpi_get_handle(handle, "_GTM", &tmp))) ||
982 (ACPI_SUCCESS(acpi_get_handle(handle, "_STM", &tmp))) ||
983 (ACPI_SUCCESS(acpi_get_handle(handle, "_SDD", &tmp))))
984 return 0;
985
986 if (acpi_get_parent(handle, &phandle))
987 return -ENODEV;
988
989 if ((ACPI_SUCCESS(acpi_get_handle(phandle, "_GTF", &tmp))) ||
990 (ACPI_SUCCESS(acpi_get_handle(phandle, "_GTM", &tmp))) ||
991 (ACPI_SUCCESS(acpi_get_handle(phandle, "_STM", &tmp))) ||
992 (ACPI_SUCCESS(acpi_get_handle(phandle, "_SDD", &tmp))))
993 return 0;
994
995 return -ENODEV;
996}
997
Frank Seidel3620f2f2007-12-07 13:20:34 +0100998/*
999 * acpi_dock_match - see if a device has a _DCK method
1000 */
1001static int acpi_dock_match(struct acpi_device *device)
1002{
1003 acpi_handle tmp;
1004 return acpi_get_handle(device->handle, "_DCK", &tmp);
1005}
1006
Len Brown4be44fc2005-08-05 00:44:28 -04001007static void acpi_device_set_id(struct acpi_device *device,
1008 struct acpi_device *parent, acpi_handle handle,
1009 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010{
Len Brown4be44fc2005-08-05 00:44:28 -04001011 struct acpi_device_info *info;
1012 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1013 char *hid = NULL;
1014 char *uid = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 struct acpi_compatible_id_list *cid_list = NULL;
Frank Seidel3620f2f2007-12-07 13:20:34 +01001016 const char *cid_add = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -04001017 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
1019 switch (type) {
1020 case ACPI_BUS_TYPE_DEVICE:
1021 status = acpi_get_object_info(handle, &buffer);
1022 if (ACPI_FAILURE(status)) {
Harvey Harrison96b2dd12008-03-05 18:24:51 -08001023 printk(KERN_ERR PREFIX "%s: Error reading device info\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 return;
1025 }
1026
1027 info = buffer.pointer;
1028 if (info->valid & ACPI_VALID_HID)
1029 hid = info->hardware_id.value;
1030 if (info->valid & ACPI_VALID_UID)
1031 uid = info->unique_id.value;
1032 if (info->valid & ACPI_VALID_CID)
1033 cid_list = &info->compatibility_id;
1034 if (info->valid & ACPI_VALID_ADR) {
1035 device->pnp.bus_address = info->address;
1036 device->flags.bus_address = 1;
1037 }
Zhang Ruiae843332006-12-07 20:57:10 +08001038
Frank Seidel3620f2f2007-12-07 13:20:34 +01001039 /* If we have a video/bay/dock device, add our selfdefined
1040 HID to the CID list. Like that the video/bay/dock drivers
1041 will get autoloaded and the device might still match
1042 against another driver.
1043 */
Thomas Renningerc3d6de62008-08-01 17:37:55 +02001044 if (acpi_is_video_device(device))
Frank Seidel3620f2f2007-12-07 13:20:34 +01001045 cid_add = ACPI_VIDEO_HID;
1046 else if (ACPI_SUCCESS(acpi_bay_match(device)))
1047 cid_add = ACPI_BAY_HID;
1048 else if (ACPI_SUCCESS(acpi_dock_match(device)))
1049 cid_add = ACPI_DOCK_HID;
Zhang Rui54735262007-01-11 02:09:09 -05001050
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 break;
1052 case ACPI_BUS_TYPE_POWER:
1053 hid = ACPI_POWER_HID;
1054 break;
1055 case ACPI_BUS_TYPE_PROCESSOR:
Myron Stowead93a762008-11-04 14:52:55 -07001056 hid = ACPI_PROCESSOR_OBJECT_HID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 break;
1058 case ACPI_BUS_TYPE_SYSTEM:
1059 hid = ACPI_SYSTEM_HID;
1060 break;
1061 case ACPI_BUS_TYPE_THERMAL:
1062 hid = ACPI_THERMAL_HID;
1063 break;
1064 case ACPI_BUS_TYPE_POWER_BUTTON:
1065 hid = ACPI_BUTTON_HID_POWERF;
1066 break;
1067 case ACPI_BUS_TYPE_SLEEP_BUTTON:
1068 hid = ACPI_BUTTON_HID_SLEEPF;
1069 break;
1070 }
1071
1072 /*
1073 * \_SB
1074 * ----
1075 * Fix for the system root bus device -- the only root-level device.
1076 */
Bob Moorec51a4de2005-11-17 13:07:00 -05001077 if (((acpi_handle)parent == ACPI_ROOT_OBJECT) && (type == ACPI_BUS_TYPE_DEVICE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 hid = ACPI_BUS_HID;
1079 strcpy(device->pnp.device_name, ACPI_BUS_DEVICE_NAME);
1080 strcpy(device->pnp.device_class, ACPI_BUS_CLASS);
1081 }
1082
1083 if (hid) {
1084 strcpy(device->pnp.hardware_id, hid);
1085 device->flags.hardware_id = 1;
1086 }
1087 if (uid) {
1088 strcpy(device->pnp.unique_id, uid);
1089 device->flags.unique_id = 1;
1090 }
Frank Seidel3620f2f2007-12-07 13:20:34 +01001091 if (cid_list || cid_add) {
1092 struct acpi_compatible_id_list *list;
1093 int size = 0;
1094 int count = 0;
1095
1096 if (cid_list) {
1097 size = cid_list->size;
1098 } else if (cid_add) {
1099 size = sizeof(struct acpi_compatible_id_list);
1100 cid_list = ACPI_ALLOCATE_ZEROED((acpi_size) size);
1101 if (!cid_list) {
1102 printk(KERN_ERR "Memory allocation error\n");
1103 kfree(buffer.pointer);
1104 return;
1105 } else {
1106 cid_list->count = 0;
1107 cid_list->size = size;
1108 }
1109 }
1110 if (cid_add)
1111 size += sizeof(struct acpi_compatible_id);
1112 list = kmalloc(size, GFP_KERNEL);
1113
1114 if (list) {
1115 if (cid_list) {
1116 memcpy(list, cid_list, cid_list->size);
1117 count = cid_list->count;
1118 }
1119 if (cid_add) {
1120 strncpy(list->id[count].value, cid_add,
1121 ACPI_MAX_CID_LENGTH);
1122 count++;
1123 device->flags.compatible_ids = 1;
1124 }
1125 list->size = size;
1126 list->count = count;
1127 device->pnp.cid_list = list;
1128 } else
Len Brown87ecd5c2008-01-01 14:00:00 -05001129 printk(KERN_ERR PREFIX "Memory allocation error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 }
1131
Len Brown02438d82006-06-30 03:19:10 -04001132 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133}
1134
Len Brown4be44fc2005-08-05 00:44:28 -04001135static int acpi_device_set_context(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136{
1137 acpi_status status = AE_OK;
1138 int result = 0;
1139 /*
1140 * Context
1141 * -------
1142 * Attach this 'struct acpi_device' to the ACPI object. This makes
1143 * resolutions from handle->device very efficient. Note that we need
1144 * to be careful with fixed-feature devices as they all attach to the
1145 * root object.
1146 */
Len Brown4be44fc2005-08-05 00:44:28 -04001147 if (type != ACPI_BUS_TYPE_POWER_BUTTON &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 type != ACPI_BUS_TYPE_SLEEP_BUTTON) {
1149 status = acpi_attach_data(device->handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001150 acpi_bus_data_handler, device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
1152 if (ACPI_FAILURE(status)) {
Len Brown87ecd5c2008-01-01 14:00:00 -05001153 printk(KERN_ERR PREFIX "Error attaching device data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 result = -ENODEV;
1155 }
1156 }
1157 return result;
1158}
1159
Len Brown4be44fc2005-08-05 00:44:28 -04001160static int acpi_bus_remove(struct acpi_device *dev, int rmdevice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 if (!dev)
Patrick Mocheld550d982006-06-27 00:41:40 -04001163 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
Li Shaohua96333572006-12-07 20:56:46 +08001165 dev->removal_type = ACPI_BUS_REMOVAL_EJECT;
Patrick Mochel1890a972006-12-07 20:56:31 +08001166 device_release_driver(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
1168 if (!rmdevice)
Patrick Mocheld550d982006-06-27 00:41:40 -04001169 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
Rui Zhang2786f6e2006-12-21 02:21:13 -05001171 /*
1172 * unbind _ADR-Based Devices when hot removal
1173 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 if (dev->flags.bus_address) {
1175 if ((dev->parent) && (dev->parent->ops.unbind))
1176 dev->parent->ops.unbind(dev);
1177 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 acpi_device_unregister(dev, ACPI_BUS_REMOVAL_EJECT);
1179
Patrick Mocheld550d982006-06-27 00:41:40 -04001180 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181}
1182
Rajesh Shah3fb02732005-04-28 00:25:52 -07001183static int
Len Brown4be44fc2005-08-05 00:44:28 -04001184acpi_add_single_object(struct acpi_device **child,
Li Shaohuac4168bf2006-12-07 20:56:41 +08001185 struct acpi_device *parent, acpi_handle handle, int type,
1186 struct acpi_bus_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187{
Len Brown4be44fc2005-08-05 00:44:28 -04001188 int result = 0;
1189 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
1192 if (!child)
Patrick Mocheld550d982006-06-27 00:41:40 -04001193 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
Burman Yan36bcbec2006-12-19 12:56:11 -08001195 device = kzalloc(sizeof(struct acpi_device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 if (!device) {
Len Brown64684632006-06-26 23:41:38 -04001197 printk(KERN_ERR PREFIX "Memory allocation error\n");
Patrick Mocheld550d982006-06-27 00:41:40 -04001198 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
1201 device->handle = handle;
1202 device->parent = parent;
Li Shaohuac4168bf2006-12-07 20:56:41 +08001203 device->bus_ops = *ops; /* workround for not call .start */
1204
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
Len Brown4be44fc2005-08-05 00:44:28 -04001206 acpi_device_get_busid(device, handle, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
1208 /*
1209 * Flags
1210 * -----
1211 * Get prior to calling acpi_bus_get_status() so we know whether
1212 * or not _STA is present. Note that we only look for object
1213 * handles -- cannot evaluate objects until we know the device is
1214 * present and properly initialized.
1215 */
1216 result = acpi_bus_get_flags(device);
1217 if (result)
1218 goto end;
1219
1220 /*
1221 * Status
1222 * ------
Keiichiro Tokunaga6940fab2005-03-30 23:15:47 -05001223 * See if the device is present. We always assume that non-Device
1224 * and non-Processor objects (e.g. thermal zones, power resources,
1225 * etc.) are present, functioning, etc. (at least when parent object
1226 * is present). Note that _STA has a different meaning for some
1227 * objects (e.g. power resources) so we need to be careful how we use
1228 * it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 */
1230 switch (type) {
Keiichiro Tokunaga6940fab2005-03-30 23:15:47 -05001231 case ACPI_BUS_TYPE_PROCESSOR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 case ACPI_BUS_TYPE_DEVICE:
1233 result = acpi_bus_get_status(device);
Frank Seidel3620f2f2007-12-07 13:20:34 +01001234 if (ACPI_FAILURE(result)) {
1235 result = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 goto end;
1237 }
Zhao Yakui39a0ad82008-08-11 13:40:22 +08001238 /*
1239 * When the device is neither present nor functional, the
1240 * device should not be added to Linux ACPI device tree.
1241 * When the status of the device is not present but functinal,
1242 * it should be added to Linux ACPI tree. For example : bay
1243 * device , dock device.
1244 * In such conditions it is unncessary to check whether it is
1245 * bay device or dock device.
1246 */
1247 if (!device->status.present && !device->status.functional) {
1248 result = -ENODEV;
1249 goto end;
Frank Seidel3620f2f2007-12-07 13:20:34 +01001250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 break;
1252 default:
Bjorn Helgaas0c0e8922007-04-25 14:20:58 -04001253 STRUCT_TO_INT(device->status) =
1254 ACPI_STA_DEVICE_PRESENT | ACPI_STA_DEVICE_ENABLED |
1255 ACPI_STA_DEVICE_UI | ACPI_STA_DEVICE_FUNCTIONING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 break;
1257 }
1258
1259 /*
1260 * Initialize Device
1261 * -----------------
1262 * TBD: Synch with Core's enumeration/initialization process.
1263 */
1264
1265 /*
1266 * Hardware ID, Unique ID, & Bus Address
1267 * -------------------------------------
1268 */
Len Brown4be44fc2005-08-05 00:44:28 -04001269 acpi_device_set_id(device, parent, handle, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
1271 /*
Zhao Yakuieab4b642008-08-11 14:54:16 +08001272 * The ACPI device is attached to acpi handle before getting
1273 * the power/wakeup/peformance flags. Otherwise OS can't get
1274 * the corresponding ACPI device by the acpi handle in the course
1275 * of getting the power/wakeup/performance flags.
1276 */
1277 result = acpi_device_set_context(device, type);
1278 if (result)
1279 goto end;
1280
1281 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 * Power Management
1283 * ----------------
1284 */
1285 if (device->flags.power_manageable) {
1286 result = acpi_bus_get_power_flags(device);
1287 if (result)
1288 goto end;
1289 }
1290
Len Brown4be44fc2005-08-05 00:44:28 -04001291 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 * Wakeup device management
1293 *-----------------------
1294 */
1295 if (device->flags.wake_capable) {
1296 result = acpi_bus_get_wakeup_device_flags(device);
1297 if (result)
1298 goto end;
1299 }
1300
1301 /*
1302 * Performance Management
1303 * ----------------------
1304 */
1305 if (device->flags.performance_manageable) {
1306 result = acpi_bus_get_perf_flags(device);
1307 if (result)
1308 goto end;
1309 }
1310
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
Zhang Ruie49bd2dd2006-12-08 17:23:43 +08001312 result = acpi_device_register(device, parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
1314 /*
Rui Zhang2786f6e2006-12-21 02:21:13 -05001315 * Bind _ADR-Based Devices when hot add
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 */
1317 if (device->flags.bus_address) {
1318 if (device->parent && device->parent->ops.bind)
1319 device->parent->ops.bind(device);
1320 }
1321
Len Brown4be44fc2005-08-05 00:44:28 -04001322 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 if (!result)
1324 *child = device;
1325 else {
Jesper Juhl6044ec82005-11-07 01:01:32 -08001326 kfree(device->pnp.cid_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 kfree(device);
1328 }
1329
Patrick Mocheld550d982006-06-27 00:41:40 -04001330 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Len Brown4be44fc2005-08-05 00:44:28 -04001333static int acpi_bus_scan(struct acpi_device *start, struct acpi_bus_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334{
Len Brown4be44fc2005-08-05 00:44:28 -04001335 acpi_status status = AE_OK;
1336 struct acpi_device *parent = NULL;
1337 struct acpi_device *child = NULL;
1338 acpi_handle phandle = NULL;
1339 acpi_handle chandle = NULL;
1340 acpi_object_type type = 0;
1341 u32 level = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
1344 if (!start)
Patrick Mocheld550d982006-06-27 00:41:40 -04001345 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
1347 parent = start;
1348 phandle = start->handle;
Len Brown4be44fc2005-08-05 00:44:28 -04001349
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 /*
1351 * Parse through the ACPI namespace, identify all 'devices', and
1352 * create a new 'struct acpi_device' for each.
1353 */
1354 while ((level > 0) && parent) {
1355
1356 status = acpi_get_next_object(ACPI_TYPE_ANY, phandle,
Len Brown4be44fc2005-08-05 00:44:28 -04001357 chandle, &chandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
1359 /*
1360 * If this scope is exhausted then move our way back up.
1361 */
1362 if (ACPI_FAILURE(status)) {
1363 level--;
1364 chandle = phandle;
1365 acpi_get_parent(phandle, &phandle);
1366 if (parent->parent)
1367 parent = parent->parent;
1368 continue;
1369 }
1370
1371 status = acpi_get_type(chandle, &type);
1372 if (ACPI_FAILURE(status))
1373 continue;
1374
1375 /*
1376 * If this is a scope object then parse it (depth-first).
1377 */
1378 if (type == ACPI_TYPE_LOCAL_SCOPE) {
1379 level++;
1380 phandle = chandle;
1381 chandle = NULL;
1382 continue;
1383 }
1384
1385 /*
1386 * We're only interested in objects that we consider 'devices'.
1387 */
1388 switch (type) {
1389 case ACPI_TYPE_DEVICE:
1390 type = ACPI_BUS_TYPE_DEVICE;
1391 break;
1392 case ACPI_TYPE_PROCESSOR:
1393 type = ACPI_BUS_TYPE_PROCESSOR;
1394 break;
1395 case ACPI_TYPE_THERMAL:
1396 type = ACPI_BUS_TYPE_THERMAL;
1397 break;
1398 case ACPI_TYPE_POWER:
1399 type = ACPI_BUS_TYPE_POWER;
1400 break;
1401 default:
1402 continue;
1403 }
1404
Rajesh Shah3fb02732005-04-28 00:25:52 -07001405 if (ops->acpi_op_add)
1406 status = acpi_add_single_object(&child, parent,
Li Shaohuac4168bf2006-12-07 20:56:41 +08001407 chandle, type, ops);
Len Brown4be44fc2005-08-05 00:44:28 -04001408 else
Rajesh Shah3fb02732005-04-28 00:25:52 -07001409 status = acpi_bus_get_device(chandle, &child);
1410
Len Brown4be44fc2005-08-05 00:44:28 -04001411 if (ACPI_FAILURE(status))
1412 continue;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001413
Li Shaohuac4168bf2006-12-07 20:56:41 +08001414 if (ops->acpi_op_start && !(ops->acpi_op_add)) {
Rajesh Shah3fb02732005-04-28 00:25:52 -07001415 status = acpi_start_single_object(child);
1416 if (ACPI_FAILURE(status))
1417 continue;
1418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
1420 /*
1421 * If the device is present, enabled, and functioning then
1422 * parse its scope (depth-first). Note that we need to
1423 * represent absent devices to facilitate PnP notifications
1424 * -- but only the subtree head (not all of its children,
1425 * which will be enumerated when the parent is inserted).
1426 *
1427 * TBD: Need notifications and other detection mechanisms
Len Brown4be44fc2005-08-05 00:44:28 -04001428 * in place before we can fully implement this.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 */
Zhao Yakui39a0ad82008-08-11 13:40:22 +08001430 /*
1431 * When the device is not present but functional, it is also
1432 * necessary to scan the children of this device.
1433 */
1434 if (child->status.present || (!child->status.present &&
1435 child->status.functional)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 status = acpi_get_next_object(ACPI_TYPE_ANY, chandle,
1437 NULL, NULL);
1438 if (ACPI_SUCCESS(status)) {
1439 level++;
1440 phandle = chandle;
1441 chandle = NULL;
1442 parent = child;
1443 }
1444 }
1445 }
1446
Patrick Mocheld550d982006-06-27 00:41:40 -04001447 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
Rajesh Shah3fb02732005-04-28 00:25:52 -07001450int
Len Brown4be44fc2005-08-05 00:44:28 -04001451acpi_bus_add(struct acpi_device **child,
1452 struct acpi_device *parent, acpi_handle handle, int type)
Rajesh Shah3fb02732005-04-28 00:25:52 -07001453{
1454 int result;
1455 struct acpi_bus_ops ops;
1456
Li Shaohuac4168bf2006-12-07 20:56:41 +08001457 memset(&ops, 0, sizeof(ops));
1458 ops.acpi_op_add = 1;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001459
Li Shaohuac4168bf2006-12-07 20:56:41 +08001460 result = acpi_add_single_object(child, parent, handle, type, &ops);
1461 if (!result)
Rajesh Shah3fb02732005-04-28 00:25:52 -07001462 result = acpi_bus_scan(*child, &ops);
Li Shaohuac4168bf2006-12-07 20:56:41 +08001463
Patrick Mocheld550d982006-06-27 00:41:40 -04001464 return result;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001465}
Len Brown4be44fc2005-08-05 00:44:28 -04001466
Rajesh Shah3fb02732005-04-28 00:25:52 -07001467EXPORT_SYMBOL(acpi_bus_add);
1468
Len Brown4be44fc2005-08-05 00:44:28 -04001469int acpi_bus_start(struct acpi_device *device)
Rajesh Shah3fb02732005-04-28 00:25:52 -07001470{
1471 int result;
1472 struct acpi_bus_ops ops;
1473
Rajesh Shah3fb02732005-04-28 00:25:52 -07001474
1475 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -04001476 return -EINVAL;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001477
1478 result = acpi_start_single_object(device);
1479 if (!result) {
1480 memset(&ops, 0, sizeof(ops));
1481 ops.acpi_op_start = 1;
1482 result = acpi_bus_scan(device, &ops);
1483 }
Patrick Mocheld550d982006-06-27 00:41:40 -04001484 return result;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001485}
Len Brown4be44fc2005-08-05 00:44:28 -04001486
Rajesh Shah3fb02732005-04-28 00:25:52 -07001487EXPORT_SYMBOL(acpi_bus_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
Kristen Accardiceaba662006-02-23 17:56:01 -08001489int acpi_bus_trim(struct acpi_device *start, int rmdevice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490{
Len Brown4be44fc2005-08-05 00:44:28 -04001491 acpi_status status;
1492 struct acpi_device *parent, *child;
1493 acpi_handle phandle, chandle;
1494 acpi_object_type type;
1495 u32 level = 1;
1496 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
Len Brown4be44fc2005-08-05 00:44:28 -04001498 parent = start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 phandle = start->handle;
1500 child = chandle = NULL;
1501
1502 while ((level > 0) && parent && (!err)) {
1503 status = acpi_get_next_object(ACPI_TYPE_ANY, phandle,
Len Brown4be44fc2005-08-05 00:44:28 -04001504 chandle, &chandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
1506 /*
1507 * If this scope is exhausted then move our way back up.
1508 */
1509 if (ACPI_FAILURE(status)) {
1510 level--;
1511 chandle = phandle;
1512 acpi_get_parent(phandle, &phandle);
1513 child = parent;
1514 parent = parent->parent;
1515
1516 if (level == 0)
1517 err = acpi_bus_remove(child, rmdevice);
1518 else
1519 err = acpi_bus_remove(child, 1);
1520
1521 continue;
1522 }
1523
1524 status = acpi_get_type(chandle, &type);
1525 if (ACPI_FAILURE(status)) {
1526 continue;
1527 }
1528 /*
1529 * If there is a device corresponding to chandle then
1530 * parse it (depth-first).
1531 */
1532 if (acpi_bus_get_device(chandle, &child) == 0) {
1533 level++;
1534 phandle = chandle;
1535 chandle = NULL;
1536 parent = child;
1537 }
1538 continue;
1539 }
1540 return err;
1541}
Kristen Accardiceaba662006-02-23 17:56:01 -08001542EXPORT_SYMBOL_GPL(acpi_bus_trim);
1543
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
Len Brown4be44fc2005-08-05 00:44:28 -04001545static int acpi_bus_scan_fixed(struct acpi_device *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546{
Len Brown4be44fc2005-08-05 00:44:28 -04001547 int result = 0;
1548 struct acpi_device *device = NULL;
Li Shaohuac4168bf2006-12-07 20:56:41 +08001549 struct acpi_bus_ops ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
1551 if (!root)
Patrick Mocheld550d982006-06-27 00:41:40 -04001552 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
Li Shaohuac4168bf2006-12-07 20:56:41 +08001554 memset(&ops, 0, sizeof(ops));
1555 ops.acpi_op_add = 1;
1556 ops.acpi_op_start = 1;
1557
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 /*
1559 * Enumerate all fixed-feature devices.
1560 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001561 if ((acpi_gbl_FADT.flags & ACPI_FADT_POWER_BUTTON) == 0) {
Rajesh Shah3fb02732005-04-28 00:25:52 -07001562 result = acpi_add_single_object(&device, acpi_root,
Len Brown4be44fc2005-08-05 00:44:28 -04001563 NULL,
Li Shaohuac4168bf2006-12-07 20:56:41 +08001564 ACPI_BUS_TYPE_POWER_BUTTON,
1565 &ops);
Rajesh Shah3fb02732005-04-28 00:25:52 -07001566 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001568 if ((acpi_gbl_FADT.flags & ACPI_FADT_SLEEP_BUTTON) == 0) {
Rajesh Shah3fb02732005-04-28 00:25:52 -07001569 result = acpi_add_single_object(&device, acpi_root,
Len Brown4be44fc2005-08-05 00:44:28 -04001570 NULL,
Li Shaohuac4168bf2006-12-07 20:56:41 +08001571 ACPI_BUS_TYPE_SLEEP_BUTTON,
1572 &ops);
Rajesh Shah3fb02732005-04-28 00:25:52 -07001573 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
Patrick Mocheld550d982006-06-27 00:41:40 -04001575 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576}
1577
Bjorn Helgaase747f272009-03-24 16:49:43 -06001578int __init acpi_scan_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579{
1580 int result;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001581 struct acpi_bus_ops ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
Li Shaohuac4168bf2006-12-07 20:56:41 +08001583 memset(&ops, 0, sizeof(ops));
1584 ops.acpi_op_add = 1;
1585 ops.acpi_op_start = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
Patrick Mochel5b327262006-05-10 10:33:00 -04001587 result = bus_register(&acpi_bus_type);
1588 if (result) {
1589 /* We don't want to quit even if we failed to add suspend/resume */
1590 printk(KERN_ERR PREFIX "Could not register bus type\n");
1591 }
1592
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 /*
1594 * Create the root device in the bus's device tree
1595 */
Rajesh Shah3fb02732005-04-28 00:25:52 -07001596 result = acpi_add_single_object(&acpi_root, NULL, ACPI_ROOT_OBJECT,
Li Shaohuac4168bf2006-12-07 20:56:41 +08001597 ACPI_BUS_TYPE_SYSTEM, &ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 if (result)
1599 goto Done;
1600
1601 /*
1602 * Enumerate devices in the ACPI namespace.
1603 */
1604 result = acpi_bus_scan_fixed(acpi_root);
Alexey Starikovskiyc04209a2008-01-01 14:12:55 -05001605
Li Shaohuac4168bf2006-12-07 20:56:41 +08001606 if (!result)
Rajesh Shah3fb02732005-04-28 00:25:52 -07001607 result = acpi_bus_scan(acpi_root, &ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
1609 if (result)
1610 acpi_device_unregister(acpi_root, ACPI_BUS_REMOVAL_NORMAL);
1611
Len Brown4be44fc2005-08-05 00:44:28 -04001612 Done:
Patrick Mocheld550d982006-06-27 00:41:40 -04001613 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614}