blob: 954bd01f295a06d090604f19414e14e9dcd78499 [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
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +000025#define ACPI_IS_ROOT_DEVICE(device) (!(device)->parent)
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027static LIST_HEAD(acpi_device_list);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +080028static LIST_HEAD(acpi_bus_id_list);
Shaohua Li90905892009-04-07 10:24:29 +080029DEFINE_MUTEX(acpi_device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070030LIST_HEAD(acpi_wakeup_device_list);
31
Zhang Ruie49bd2dd2006-12-08 17:23:43 +080032struct acpi_device_bus_id{
Zhang Ruibb095852007-01-04 15:03:18 +080033 char bus_id[15];
Zhang Ruie49bd2dd2006-12-08 17:23:43 +080034 unsigned int instance_no;
35 struct list_head node;
36};
Thomas Renninger29b71a12007-07-23 14:43:51 +020037
38/*
39 * Creates hid/cid(s) string needed for modalias and uevent
40 * e.g. on a device with hid:IBM0001 and cid:ACPI0001 you get:
41 * char *modalias: "acpi:IBM0001:ACPI0001"
42*/
Adrian Bunkb3e572d2007-08-14 23:22:35 +020043static int create_modalias(struct acpi_device *acpi_dev, char *modalias,
44 int size)
45{
Thomas Renninger29b71a12007-07-23 14:43:51 +020046 int len;
Zhang Rui5c9fcb52008-03-20 16:40:32 +080047 int count;
Thomas Renninger29b71a12007-07-23 14:43:51 +020048
Zhang Rui5c9fcb52008-03-20 16:40:32 +080049 if (!acpi_dev->flags.hardware_id && !acpi_dev->flags.compatible_ids)
Thomas Renninger29b71a12007-07-23 14:43:51 +020050 return -ENODEV;
51
Zhang Rui5c9fcb52008-03-20 16:40:32 +080052 len = snprintf(modalias, size, "acpi:");
Thomas Renninger29b71a12007-07-23 14:43:51 +020053 size -= len;
54
Zhang Rui5c9fcb52008-03-20 16:40:32 +080055 if (acpi_dev->flags.hardware_id) {
56 count = snprintf(&modalias[len], size, "%s:",
57 acpi_dev->pnp.hardware_id);
58 if (count < 0 || count >= size)
59 return -EINVAL;
60 len += count;
61 size -= count;
62 }
63
Thomas Renninger29b71a12007-07-23 14:43:51 +020064 if (acpi_dev->flags.compatible_ids) {
Bob Moore15b8dd52009-06-29 13:39:29 +080065 struct acpica_device_id_list *cid_list;
Thomas Renninger29b71a12007-07-23 14:43:51 +020066 int i;
Thomas Renninger29b71a12007-07-23 14:43:51 +020067
68 cid_list = acpi_dev->pnp.cid_list;
69 for (i = 0; i < cid_list->count; i++) {
70 count = snprintf(&modalias[len], size, "%s:",
Bob Moore15b8dd52009-06-29 13:39:29 +080071 cid_list->ids[i].string);
Thomas Renninger29b71a12007-07-23 14:43:51 +020072 if (count < 0 || count >= size) {
Len Brown87ecd5c2008-01-01 14:00:00 -050073 printk(KERN_ERR PREFIX "%s cid[%i] exceeds event buffer size",
Thomas Renninger29b71a12007-07-23 14:43:51 +020074 acpi_dev->pnp.device_name, i);
75 break;
76 }
77 len += count;
78 size -= count;
79 }
80 }
81
82 modalias[len] = '\0';
83 return len;
84}
85
86static ssize_t
87acpi_device_modalias_show(struct device *dev, struct device_attribute *attr, char *buf) {
88 struct acpi_device *acpi_dev = to_acpi_device(dev);
89 int len;
90
91 /* Device has no HID and no CID or string is >1024 */
92 len = create_modalias(acpi_dev, buf, 1024);
93 if (len <= 0)
94 return 0;
95 buf[len++] = '\n';
96 return len;
97}
98static DEVICE_ATTR(modalias, 0444, acpi_device_modalias_show, NULL);
99
Zhang Ruic8d72a52009-06-22 11:31:16 +0800100static void acpi_bus_hot_remove_device(void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
Zhang Rui26d46862008-04-29 02:35:48 -0400102 struct acpi_device *device;
103 acpi_handle handle = context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 struct acpi_object_list arg_list;
105 union acpi_object arg;
106 acpi_status status = AE_OK;
107
Zhang Rui26d46862008-04-29 02:35:48 -0400108 if (acpi_bus_get_device(handle, &device))
Zhang Ruic8d72a52009-06-22 11:31:16 +0800109 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Zhang Rui26d46862008-04-29 02:35:48 -0400111 if (!device)
Zhang Ruic8d72a52009-06-22 11:31:16 +0800112 return;
Zhang Rui26d46862008-04-29 02:35:48 -0400113
114 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Kay Sievers07944692008-10-30 01:18:59 +0100115 "Hot-removing device %s...\n", dev_name(&device->dev)));
Zhang Rui26d46862008-04-29 02:35:48 -0400116
117 if (acpi_bus_trim(device, 1)) {
Lin Ming55ac9a02008-09-28 14:51:56 +0800118 printk(KERN_ERR PREFIX
119 "Removing device failed\n");
Zhang Ruic8d72a52009-06-22 11:31:16 +0800120 return;
Zhang Rui26d46862008-04-29 02:35:48 -0400121 }
122
123 /* power off device */
124 status = acpi_evaluate_object(handle, "_PS3", NULL, NULL);
125 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND)
Lin Ming55ac9a02008-09-28 14:51:56 +0800126 printk(KERN_WARNING PREFIX
127 "Power-off device failed\n");
Zhang Rui26d46862008-04-29 02:35:48 -0400128
129 if (device->flags.lockable) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 arg_list.count = 1;
131 arg_list.pointer = &arg;
132 arg.type = ACPI_TYPE_INTEGER;
133 arg.integer.value = 0;
134 acpi_evaluate_object(handle, "_LCK", &arg_list, NULL);
135 }
136
137 arg_list.count = 1;
138 arg_list.pointer = &arg;
139 arg.type = ACPI_TYPE_INTEGER;
140 arg.integer.value = 1;
141
142 /*
143 * TBD: _EJD support.
144 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 status = acpi_evaluate_object(handle, "_EJ0", &arg_list, NULL);
Zhang Rui26d46862008-04-29 02:35:48 -0400146 if (ACPI_FAILURE(status))
Zhang Ruic8d72a52009-06-22 11:31:16 +0800147 printk(KERN_WARNING PREFIX
148 "Eject device failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Zhang Ruic8d72a52009-06-22 11:31:16 +0800150 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151}
152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153static ssize_t
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800154acpi_eject_store(struct device *d, struct device_attribute *attr,
155 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
Len Brown4be44fc2005-08-05 00:44:28 -0400157 int ret = count;
Len Brown4be44fc2005-08-05 00:44:28 -0400158 acpi_status status;
Len Brown4be44fc2005-08-05 00:44:28 -0400159 acpi_object_type type = 0;
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800160 struct acpi_device *acpi_device = to_acpi_device(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162 if ((!count) || (buf[0] != '1')) {
163 return -EINVAL;
164 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165#ifndef FORCE_EJECT
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800166 if (acpi_device->driver == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 ret = -ENODEV;
168 goto err;
169 }
170#endif
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800171 status = acpi_get_type(acpi_device->handle, &type);
172 if (ACPI_FAILURE(status) || (!acpi_device->flags.ejectable)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 ret = -ENODEV;
174 goto err;
175 }
176
Zhang Ruic8d72a52009-06-22 11:31:16 +0800177 acpi_os_hotplug_execute(acpi_bus_hot_remove_device, acpi_device->handle);
Alok N Kataria74523c92008-06-13 12:54:24 -0400178err:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180}
181
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800182static DEVICE_ATTR(eject, 0200, NULL, acpi_eject_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800184static 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800188 return sprintf(buf, "%s\n", acpi_dev->pnp.hardware_id);
189}
190static DEVICE_ATTR(hid, 0444, acpi_device_hid_show, NULL);
191
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;
197
198 result = acpi_get_name(acpi_dev->handle, ACPI_FULL_PATHNAME, &path);
Alex Chiang0c526d92009-05-14 08:31:37 -0600199 if (result)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800200 goto end;
201
202 result = sprintf(buf, "%s\n", (char*)path.pointer);
203 kfree(path.pointer);
Alex Chiang0c526d92009-05-14 08:31:37 -0600204end:
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800205 return result;
206}
207static DEVICE_ATTR(path, 0444, acpi_device_path_show, NULL);
208
209static int acpi_device_setup_files(struct acpi_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800211 acpi_status status;
212 acpi_handle temp;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800213 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800215 /*
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800216 * Devices gotten from FADT don't have a "path" attribute
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800217 */
Alex Chiang0c526d92009-05-14 08:31:37 -0600218 if (dev->handle) {
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800219 result = device_create_file(&dev->dev, &dev_attr_path);
Alex Chiang0c526d92009-05-14 08:31:37 -0600220 if (result)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800221 goto end;
222 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Alex Chiang0c526d92009-05-14 08:31:37 -0600224 if (dev->flags.hardware_id) {
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800225 result = device_create_file(&dev->dev, &dev_attr_hid);
Alex Chiang0c526d92009-05-14 08:31:37 -0600226 if (result)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800227 goto end;
228 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Alex Chiang0c526d92009-05-14 08:31:37 -0600230 if (dev->flags.hardware_id || dev->flags.compatible_ids) {
Thomas Renninger29b71a12007-07-23 14:43:51 +0200231 result = device_create_file(&dev->dev, &dev_attr_modalias);
Alex Chiang0c526d92009-05-14 08:31:37 -0600232 if (result)
Thomas Renninger29b71a12007-07-23 14:43:51 +0200233 goto end;
234 }
235
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800236 /*
237 * If device has _EJ0, 'eject' file is created that is used to trigger
238 * hot-removal function from userland.
239 */
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800240 status = acpi_get_handle(dev->handle, "_EJ0", &temp);
241 if (ACPI_SUCCESS(status))
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800242 result = device_create_file(&dev->dev, &dev_attr_eject);
Alex Chiang0c526d92009-05-14 08:31:37 -0600243end:
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800244 return result;
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800245}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800247static void acpi_device_remove_files(struct acpi_device *dev)
248{
249 acpi_status status;
250 acpi_handle temp;
251
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);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800259
Thomas Renninger29b71a12007-07-23 14:43:51 +0200260 if (dev->flags.hardware_id || dev->flags.compatible_ids)
261 device_remove_file(&dev->dev, &dev_attr_modalias);
262
Alex Chiang0c526d92009-05-14 08:31:37 -0600263 if (dev->flags.hardware_id)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800264 device_remove_file(&dev->dev, &dev_attr_hid);
Alex Chiang0c526d92009-05-14 08:31:37 -0600265 if (dev->handle)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800266 device_remove_file(&dev->dev, &dev_attr_path);
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800267}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268/* --------------------------------------------------------------------------
Zhang Rui9e89dde2006-12-07 20:56:16 +0800269 ACPI Bus operations
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 -------------------------------------------------------------------------- */
Thomas Renninger29b71a12007-07-23 14:43:51 +0200271
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
Zhao Yakui39a0ad82008-08-11 13:40:22 +0800277 /*
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
Thomas Renninger29b71a12007-07-23 14:43:51 +0200284 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) {
Bob Moore15b8dd52009-06-29 13:39:29 +0800292 struct acpica_device_id_list *cid_list = device->pnp.cid_list;
Thomas Renninger29b71a12007-07-23 14:43:51 +0200293 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,
Bob Moore15b8dd52009-06-29 13:39:29 +0800299 cid_list->ids[i].string))
Thomas Renninger29b71a12007-07-23 14:43:51 +0200300 return 0;
301 }
302 }
303 }
304
305 return -ENOENT;
306}
307EXPORT_SYMBOL(acpi_match_device_ids);
308
Patrick Mochel1890a972006-12-07 20:56:31 +0800309static void acpi_device_release(struct device *dev)
310{
311 struct acpi_device *acpi_dev = to_acpi_device(dev);
312
313 kfree(acpi_dev->pnp.cid_list);
Hugh Dickins718fb0d2009-08-06 23:18:12 +0000314 if (acpi_dev->flags.hardware_id)
315 kfree(acpi_dev->pnp.hardware_id);
316 if (acpi_dev->flags.unique_id)
317 kfree(acpi_dev->pnp.unique_id);
Patrick Mochel1890a972006-12-07 20:56:31 +0800318 kfree(acpi_dev);
319}
320
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800321static int acpi_device_suspend(struct device *dev, pm_message_t state)
Zhang Rui9e89dde2006-12-07 20:56:16 +0800322{
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800323 struct acpi_device *acpi_dev = to_acpi_device(dev);
324 struct acpi_driver *acpi_drv = acpi_dev->driver;
Zhang Rui9e89dde2006-12-07 20:56:16 +0800325
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800326 if (acpi_drv && acpi_drv->ops.suspend)
327 return acpi_drv->ops.suspend(acpi_dev, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 return 0;
329}
330
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800331static int acpi_device_resume(struct device *dev)
332{
333 struct acpi_device *acpi_dev = to_acpi_device(dev);
334 struct acpi_driver *acpi_drv = acpi_dev->driver;
335
336 if (acpi_drv && acpi_drv->ops.resume)
337 return acpi_drv->ops.resume(acpi_dev);
338 return 0;
339}
340
341static int acpi_bus_match(struct device *dev, struct device_driver *drv)
342{
343 struct acpi_device *acpi_dev = to_acpi_device(dev);
344 struct acpi_driver *acpi_drv = to_acpi_driver(drv);
345
Thomas Renninger29b71a12007-07-23 14:43:51 +0200346 return !acpi_match_device_ids(acpi_dev, acpi_drv->ids);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800347}
348
Kay Sievers7eff2e72007-08-14 15:15:12 +0200349static int acpi_device_uevent(struct device *dev, struct kobj_uevent_env *env)
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800350{
351 struct acpi_device *acpi_dev = to_acpi_device(dev);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200352 int len;
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800353
Kay Sievers7eff2e72007-08-14 15:15:12 +0200354 if (add_uevent_var(env, "MODALIAS="))
355 return -ENOMEM;
356 len = create_modalias(acpi_dev, &env->buf[env->buflen - 1],
357 sizeof(env->buf) - env->buflen);
358 if (len >= (sizeof(env->buf) - env->buflen))
359 return -ENOMEM;
360 env->buflen += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 return 0;
362}
363
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000364static void acpi_device_notify(acpi_handle handle, u32 event, void *data)
365{
366 struct acpi_device *device = data;
367
368 device->driver->ops.notify(device, event);
369}
370
371static acpi_status acpi_device_notify_fixed(void *data)
372{
373 struct acpi_device *device = data;
374
Bjorn Helgaas53de5352009-08-31 22:32:20 +0000375 /* Fixed hardware devices have no handles */
376 acpi_device_notify(NULL, ACPI_FIXED_HARDWARE_EVENT, device);
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000377 return AE_OK;
378}
379
380static int acpi_device_install_notify_handler(struct acpi_device *device)
381{
382 acpi_status status;
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000383
Bjorn Helgaasccba2a32009-09-21 19:29:15 +0000384 if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000385 status =
386 acpi_install_fixed_event_handler(ACPI_EVENT_POWER_BUTTON,
387 acpi_device_notify_fixed,
388 device);
Bjorn Helgaasccba2a32009-09-21 19:29:15 +0000389 else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000390 status =
391 acpi_install_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON,
392 acpi_device_notify_fixed,
393 device);
394 else
395 status = acpi_install_notify_handler(device->handle,
396 ACPI_DEVICE_NOTIFY,
397 acpi_device_notify,
398 device);
399
400 if (ACPI_FAILURE(status))
401 return -EINVAL;
402 return 0;
403}
404
405static void acpi_device_remove_notify_handler(struct acpi_device *device)
406{
Bjorn Helgaasccba2a32009-09-21 19:29:15 +0000407 if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000408 acpi_remove_fixed_event_handler(ACPI_EVENT_POWER_BUTTON,
409 acpi_device_notify_fixed);
Bjorn Helgaasccba2a32009-09-21 19:29:15 +0000410 else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000411 acpi_remove_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON,
412 acpi_device_notify_fixed);
413 else
414 acpi_remove_notify_handler(device->handle, ACPI_DEVICE_NOTIFY,
415 acpi_device_notify);
416}
417
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800418static int acpi_bus_driver_init(struct acpi_device *, struct acpi_driver *);
419static int acpi_start_single_object(struct acpi_device *);
420static int acpi_device_probe(struct device * dev)
Zhang Rui9e89dde2006-12-07 20:56:16 +0800421{
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800422 struct acpi_device *acpi_dev = to_acpi_device(dev);
423 struct acpi_driver *acpi_drv = to_acpi_driver(dev->driver);
424 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800426 ret = acpi_bus_driver_init(acpi_dev, acpi_drv);
427 if (!ret) {
Li Shaohuac4168bf2006-12-07 20:56:41 +0800428 if (acpi_dev->bus_ops.acpi_op_start)
429 acpi_start_single_object(acpi_dev);
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000430
431 if (acpi_drv->ops.notify) {
432 ret = acpi_device_install_notify_handler(acpi_dev);
433 if (ret) {
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000434 if (acpi_drv->ops.remove)
435 acpi_drv->ops.remove(acpi_dev,
436 acpi_dev->removal_type);
437 return ret;
438 }
439 }
440
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800441 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
442 "Found driver [%s] for device [%s]\n",
443 acpi_drv->name, acpi_dev->pnp.bus_id));
444 get_device(dev);
Zhang Rui9e89dde2006-12-07 20:56:16 +0800445 }
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800446 return ret;
447}
448
449static int acpi_device_remove(struct device * dev)
450{
451 struct acpi_device *acpi_dev = to_acpi_device(dev);
452 struct acpi_driver *acpi_drv = acpi_dev->driver;
453
454 if (acpi_drv) {
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000455 if (acpi_drv->ops.notify)
456 acpi_device_remove_notify_handler(acpi_dev);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800457 if (acpi_drv->ops.remove)
Li Shaohua96333572006-12-07 20:56:46 +0800458 acpi_drv->ops.remove(acpi_dev, acpi_dev->removal_type);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800459 }
460 acpi_dev->driver = NULL;
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700461 acpi_dev->driver_data = NULL;
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800462
463 put_device(dev);
Zhang Rui9e89dde2006-12-07 20:56:16 +0800464 return 0;
465}
466
David Brownell55955aa2007-05-08 00:28:35 -0700467struct bus_type acpi_bus_type = {
Zhang Rui9e89dde2006-12-07 20:56:16 +0800468 .name = "acpi",
469 .suspend = acpi_device_suspend,
470 .resume = acpi_device_resume,
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800471 .match = acpi_bus_match,
472 .probe = acpi_device_probe,
473 .remove = acpi_device_remove,
474 .uevent = acpi_device_uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475};
476
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +0000477static int acpi_device_register(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800479 int result;
480 struct acpi_device_bus_id *acpi_device_bus_id, *new_bus_id;
481 int found = 0;
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +0000482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 /*
484 * Linkage
485 * -------
486 * Link this device to its parent and siblings.
487 */
488 INIT_LIST_HEAD(&device->children);
489 INIT_LIST_HEAD(&device->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 INIT_LIST_HEAD(&device->wakeup_list);
491
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800492 new_bus_id = kzalloc(sizeof(struct acpi_device_bus_id), GFP_KERNEL);
493 if (!new_bus_id) {
494 printk(KERN_ERR PREFIX "Memory allocation error\n");
495 return -ENOMEM;
496 }
497
Shaohua Li90905892009-04-07 10:24:29 +0800498 mutex_lock(&acpi_device_lock);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800499 /*
500 * Find suitable bus_id and instance number in acpi_bus_id_list
501 * If failed, create one and link it into acpi_bus_id_list
502 */
503 list_for_each_entry(acpi_device_bus_id, &acpi_bus_id_list, node) {
Zhang Ruibb095852007-01-04 15:03:18 +0800504 if(!strcmp(acpi_device_bus_id->bus_id, device->flags.hardware_id? device->pnp.hardware_id : "device")) {
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800505 acpi_device_bus_id->instance_no ++;
506 found = 1;
507 kfree(new_bus_id);
508 break;
509 }
510 }
Alex Chiang0c526d92009-05-14 08:31:37 -0600511 if (!found) {
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800512 acpi_device_bus_id = new_bus_id;
Zhang Ruibb095852007-01-04 15:03:18 +0800513 strcpy(acpi_device_bus_id->bus_id, device->flags.hardware_id ? device->pnp.hardware_id : "device");
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800514 acpi_device_bus_id->instance_no = 0;
515 list_add_tail(&acpi_device_bus_id->node, &acpi_bus_id_list);
516 }
Kay Sievers07944692008-10-30 01:18:59 +0100517 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 +0800518
Len Brown33b57152008-12-15 22:09:26 -0500519 if (device->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 list_add_tail(&device->node, &device->parent->children);
Len Brown33b57152008-12-15 22:09:26 -0500521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 if (device->wakeup.flags.valid)
523 list_add_tail(&device->wakeup_list, &acpi_wakeup_device_list);
Shaohua Li90905892009-04-07 10:24:29 +0800524 mutex_unlock(&acpi_device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Patrick Mochel1890a972006-12-07 20:56:31 +0800526 if (device->parent)
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +0000527 device->dev.parent = &device->parent->dev;
Patrick Mochel1890a972006-12-07 20:56:31 +0800528 device->dev.bus = &acpi_bus_type;
Patrick Mochel1890a972006-12-07 20:56:31 +0800529 device->dev.release = &acpi_device_release;
Alex Chiang8b12b922009-05-14 08:31:32 -0600530 result = device_register(&device->dev);
Alex Chiang0c526d92009-05-14 08:31:37 -0600531 if (result) {
Alex Chiang8b12b922009-05-14 08:31:32 -0600532 dev_err(&device->dev, "Error registering device\n");
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800533 goto end;
534 }
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800535
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800536 result = acpi_device_setup_files(device);
Alex Chiang0c526d92009-05-14 08:31:37 -0600537 if (result)
Kay Sievers07944692008-10-30 01:18:59 +0100538 printk(KERN_ERR PREFIX "Error creating sysfs interface for device %s\n",
539 dev_name(&device->dev));
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800540
Li Shaohua96333572006-12-07 20:56:46 +0800541 device->removal_type = ACPI_BUS_REMOVAL_NORMAL;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800542 return 0;
Alex Chiang0c526d92009-05-14 08:31:37 -0600543end:
Shaohua Li90905892009-04-07 10:24:29 +0800544 mutex_lock(&acpi_device_lock);
Len Brown33b57152008-12-15 22:09:26 -0500545 if (device->parent)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800546 list_del(&device->node);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800547 list_del(&device->wakeup_list);
Shaohua Li90905892009-04-07 10:24:29 +0800548 mutex_unlock(&acpi_device_lock);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800549 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550}
551
552static void acpi_device_unregister(struct acpi_device *device, int type)
553{
Shaohua Li90905892009-04-07 10:24:29 +0800554 mutex_lock(&acpi_device_lock);
Len Brown33b57152008-12-15 22:09:26 -0500555 if (device->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 list_del(&device->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
558 list_del(&device->wakeup_list);
Shaohua Li90905892009-04-07 10:24:29 +0800559 mutex_unlock(&acpi_device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
561 acpi_detach_data(device->handle, acpi_bus_data_handler);
Patrick Mochel1890a972006-12-07 20:56:31 +0800562
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800563 acpi_device_remove_files(device);
Patrick Mochel1890a972006-12-07 20:56:31 +0800564 device_unregister(&device->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565}
566
Zhang Rui9e89dde2006-12-07 20:56:16 +0800567/* --------------------------------------------------------------------------
568 Driver Management
569 -------------------------------------------------------------------------- */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570/**
Randy Dunlapd758a8f2006-01-06 01:31:00 -0500571 * acpi_bus_driver_init - add a device to a driver
572 * @device: the device to add and initialize
573 * @driver: driver for the device
574 *
Alex Chiang0c526d92009-05-14 08:31:37 -0600575 * Used to initialize a device via its device driver. Called whenever a
Patrick Mochel1890a972006-12-07 20:56:31 +0800576 * driver is bound to a device. Invokes the driver's add() ops.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 */
578static int
Len Brown4be44fc2005-08-05 00:44:28 -0400579acpi_bus_driver_init(struct acpi_device *device, struct acpi_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580{
Len Brown4be44fc2005-08-05 00:44:28 -0400581 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 if (!device || !driver)
Patrick Mocheld550d982006-06-27 00:41:40 -0400584 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586 if (!driver->ops.add)
Patrick Mocheld550d982006-06-27 00:41:40 -0400587 return -ENOSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
589 result = driver->ops.add(device);
590 if (result) {
591 device->driver = NULL;
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700592 device->driver_data = NULL;
Patrick Mocheld550d982006-06-27 00:41:40 -0400593 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 }
595
596 device->driver = driver;
597
598 /*
599 * TBD - Configuration Management: Assign resources to device based
600 * upon possible configuration and currently allocated resources.
601 */
602
Len Brown4be44fc2005-08-05 00:44:28 -0400603 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
604 "Driver successfully bound to device\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400605 return 0;
Rajesh Shah3fb02732005-04-28 00:25:52 -0700606}
607
Adrian Bunk8713cbe2005-09-02 17:16:48 -0400608static int acpi_start_single_object(struct acpi_device *device)
Rajesh Shah3fb02732005-04-28 00:25:52 -0700609{
610 int result = 0;
611 struct acpi_driver *driver;
612
Rajesh Shah3fb02732005-04-28 00:25:52 -0700613
614 if (!(driver = device->driver))
Patrick Mocheld550d982006-06-27 00:41:40 -0400615 return 0;
Rajesh Shah3fb02732005-04-28 00:25:52 -0700616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 if (driver->ops.start) {
618 result = driver->ops.start(device);
619 if (result && driver->ops.remove)
620 driver->ops.remove(device, ACPI_BUS_REMOVAL_NORMAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 }
622
Patrick Mocheld550d982006-06-27 00:41:40 -0400623 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624}
625
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626/**
Randy Dunlapd758a8f2006-01-06 01:31:00 -0500627 * acpi_bus_register_driver - register a driver with the ACPI bus
628 * @driver: driver being registered
629 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 * Registers a driver with the ACPI bus. Searches the namespace for all
Bjorn Helgaas9d9f7492006-03-28 17:04:00 -0500631 * devices that match the driver's criteria and binds. Returns zero for
632 * success or a negative error status for failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 */
Len Brown4be44fc2005-08-05 00:44:28 -0400634int acpi_bus_register_driver(struct acpi_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
Patrick Mochel1890a972006-12-07 20:56:31 +0800636 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
638 if (acpi_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -0400639 return -ENODEV;
Patrick Mochel1890a972006-12-07 20:56:31 +0800640 driver->drv.name = driver->name;
641 driver->drv.bus = &acpi_bus_type;
642 driver->drv.owner = driver->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Patrick Mochel1890a972006-12-07 20:56:31 +0800644 ret = driver_register(&driver->drv);
645 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
Len Brown4be44fc2005-08-05 00:44:28 -0400648EXPORT_SYMBOL(acpi_bus_register_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650/**
Randy Dunlapd758a8f2006-01-06 01:31:00 -0500651 * acpi_bus_unregister_driver - unregisters a driver with the APIC bus
652 * @driver: driver to unregister
653 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 * Unregisters a driver with the ACPI bus. Searches the namespace for all
655 * devices that match the driver's criteria and unbinds.
656 */
Bjorn Helgaas06ea8e082006-04-27 05:25:00 -0400657void acpi_bus_unregister_driver(struct acpi_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658{
Patrick Mochel1890a972006-12-07 20:56:31 +0800659 driver_unregister(&driver->drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660}
Len Brown4be44fc2005-08-05 00:44:28 -0400661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662EXPORT_SYMBOL(acpi_bus_unregister_driver);
663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664/* --------------------------------------------------------------------------
665 Device Enumeration
666 -------------------------------------------------------------------------- */
Bjorn Helgaas5c478f42009-09-21 19:29:35 +0000667static struct acpi_device *acpi_bus_get_parent(acpi_handle handle)
668{
669 acpi_status status;
670 int ret;
671 struct acpi_device *device;
672
673 /*
674 * Fixed hardware devices do not appear in the namespace and do not
675 * have handles, but we fabricate acpi_devices for them, so we have
676 * to deal with them specially.
677 */
678 if (handle == NULL)
679 return acpi_root;
680
681 do {
682 status = acpi_get_parent(handle, &handle);
683 if (status == AE_NULL_ENTRY)
684 return NULL;
685 if (ACPI_FAILURE(status))
686 return acpi_root;
687
688 ret = acpi_bus_get_device(handle, &device);
689 if (ret == 0)
690 return device;
691 } while (1);
692}
693
Len Brownc8f7a622006-07-09 17:22:28 -0400694acpi_status
695acpi_bus_get_ejd(acpi_handle handle, acpi_handle *ejd)
696{
697 acpi_status status;
698 acpi_handle tmp;
699 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
700 union acpi_object *obj;
701
702 status = acpi_get_handle(handle, "_EJD", &tmp);
703 if (ACPI_FAILURE(status))
704 return status;
705
706 status = acpi_evaluate_object(handle, "_EJD", NULL, &buffer);
707 if (ACPI_SUCCESS(status)) {
708 obj = buffer.pointer;
Holger Macht3b5fee52008-02-14 13:40:34 +0100709 status = acpi_get_handle(ACPI_ROOT_OBJECT, obj->string.pointer,
710 ejd);
Len Brownc8f7a622006-07-09 17:22:28 -0400711 kfree(buffer.pointer);
712 }
713 return status;
714}
715EXPORT_SYMBOL_GPL(acpi_bus_get_ejd);
716
Bob Moore8e4319c2009-06-29 13:43:27 +0800717void acpi_bus_data_handler(acpi_handle handle, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718{
719
720 /* TBD */
721
722 return;
723}
724
Zhang Rui9e89dde2006-12-07 20:56:16 +0800725static int acpi_bus_get_perf_flags(struct acpi_device *device)
726{
727 device->performance.state = ACPI_STATE_UNKNOWN;
728 return 0;
729}
730
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731static acpi_status
732acpi_bus_extract_wakeup_device_power_package(struct acpi_device *device,
733 union acpi_object *package)
734{
735 int i = 0;
736 union acpi_object *element = NULL;
737
738 if (!device || !package || (package->package.count < 2))
739 return AE_BAD_PARAMETER;
740
741 element = &(package->package.elements[0]);
742 if (!element)
743 return AE_BAD_PARAMETER;
744 if (element->type == ACPI_TYPE_PACKAGE) {
745 if ((element->package.count < 2) ||
746 (element->package.elements[0].type !=
747 ACPI_TYPE_LOCAL_REFERENCE)
748 || (element->package.elements[1].type != ACPI_TYPE_INTEGER))
749 return AE_BAD_DATA;
750 device->wakeup.gpe_device =
751 element->package.elements[0].reference.handle;
752 device->wakeup.gpe_number =
753 (u32) element->package.elements[1].integer.value;
754 } else if (element->type == ACPI_TYPE_INTEGER) {
755 device->wakeup.gpe_number = element->integer.value;
756 } else
757 return AE_BAD_DATA;
758
759 element = &(package->package.elements[1]);
760 if (element->type != ACPI_TYPE_INTEGER) {
761 return AE_BAD_DATA;
762 }
763 device->wakeup.sleep_state = element->integer.value;
764
765 if ((package->package.count - 2) > ACPI_MAX_HANDLES) {
766 return AE_NO_MEMORY;
767 }
768 device->wakeup.resources.count = package->package.count - 2;
769 for (i = 0; i < device->wakeup.resources.count; i++) {
770 element = &(package->package.elements[i + 2]);
Bob Moorecd0b2242008-04-10 19:06:43 +0400771 if (element->type != ACPI_TYPE_LOCAL_REFERENCE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 return AE_BAD_DATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
774 device->wakeup.resources.handles[i] = element->reference.handle;
775 }
776
777 return AE_OK;
778}
779
780static int acpi_bus_get_wakeup_device_flags(struct acpi_device *device)
781{
782 acpi_status status = 0;
783 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
784 union acpi_object *package = NULL;
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200785 int psw_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
Thomas Renninger29b71a12007-07-23 14:43:51 +0200787 struct acpi_device_id button_device_ids[] = {
788 {"PNP0C0D", 0},
789 {"PNP0C0C", 0},
790 {"PNP0C0E", 0},
791 {"", 0},
792 };
793
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 /* _PRW */
795 status = acpi_evaluate_object(device->handle, "_PRW", NULL, &buffer);
796 if (ACPI_FAILURE(status)) {
797 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PRW"));
798 goto end;
799 }
800
801 package = (union acpi_object *)buffer.pointer;
802 status = acpi_bus_extract_wakeup_device_power_package(device, package);
803 if (ACPI_FAILURE(status)) {
804 ACPI_EXCEPTION((AE_INFO, status, "Extracting _PRW package"));
805 goto end;
806 }
807
808 kfree(buffer.pointer);
809
810 device->wakeup.flags.valid = 1;
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200811 device->wakeup.prepare_count = 0;
Zhao Yakui729b2bd2008-03-19 13:26:54 +0800812 /* Call _PSW/_DSW object to disable its ability to wake the sleeping
813 * system for the ACPI device with the _PRW object.
814 * The _PSW object is depreciated in ACPI 3.0 and is replaced by _DSW.
815 * So it is necessary to call _DSW object first. Only when it is not
816 * present will the _PSW object used.
817 */
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200818 psw_error = acpi_device_sleep_wake(device, 0, 0, 0);
819 if (psw_error)
820 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
821 "error in _DSW or _PSW evaluation\n"));
822
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 /* Power button, Lid switch always enable wakeup */
Thomas Renninger29b71a12007-07-23 14:43:51 +0200824 if (!acpi_match_device_ids(device, button_device_ids))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 device->wakeup.flags.run_wake = 1;
826
Alex Chiang0c526d92009-05-14 08:31:37 -0600827end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 if (ACPI_FAILURE(status))
829 device->flags.wake_capable = 0;
830 return 0;
831}
832
Zhang Rui9e89dde2006-12-07 20:56:16 +0800833static int acpi_bus_get_power_flags(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834{
Zhang Rui9e89dde2006-12-07 20:56:16 +0800835 acpi_status status = 0;
836 acpi_handle handle = NULL;
837 u32 i = 0;
838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840 /*
Zhang Rui9e89dde2006-12-07 20:56:16 +0800841 * Power Management Flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 */
Zhang Rui9e89dde2006-12-07 20:56:16 +0800843 status = acpi_get_handle(device->handle, "_PSC", &handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 if (ACPI_SUCCESS(status))
Zhang Rui9e89dde2006-12-07 20:56:16 +0800845 device->power.flags.explicit_get = 1;
846 status = acpi_get_handle(device->handle, "_IRC", &handle);
847 if (ACPI_SUCCESS(status))
848 device->power.flags.inrush_current = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
850 /*
Zhang Rui9e89dde2006-12-07 20:56:16 +0800851 * Enumerate supported power management states
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 */
Zhang Rui9e89dde2006-12-07 20:56:16 +0800853 for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3; i++) {
854 struct acpi_device_power_state *ps = &device->power.states[i];
855 char object_name[5] = { '_', 'P', 'R', '0' + i, '\0' };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Zhang Rui9e89dde2006-12-07 20:56:16 +0800857 /* Evaluate "_PRx" to se if power resources are referenced */
858 acpi_evaluate_reference(device->handle, object_name, NULL,
859 &ps->resources);
860 if (ps->resources.count) {
861 device->power.flags.power_resources = 1;
862 ps->flags.valid = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Zhang Rui9e89dde2006-12-07 20:56:16 +0800865 /* Evaluate "_PSx" to see if we can do explicit sets */
866 object_name[2] = 'S';
867 status = acpi_get_handle(device->handle, object_name, &handle);
868 if (ACPI_SUCCESS(status)) {
869 ps->flags.explicit_set = 1;
870 ps->flags.valid = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 }
Zhang Rui9e89dde2006-12-07 20:56:16 +0800872
873 /* State is valid if we have some power control */
874 if (ps->resources.count || ps->flags.explicit_set)
875 ps->flags.valid = 1;
876
877 ps->power = -1; /* Unknown - driver assigned */
878 ps->latency = -1; /* Unknown - driver assigned */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Zhang Rui9e89dde2006-12-07 20:56:16 +0800881 /* Set defaults for D0 and D3 states (always valid) */
882 device->power.states[ACPI_STATE_D0].flags.valid = 1;
883 device->power.states[ACPI_STATE_D0].power = 100;
884 device->power.states[ACPI_STATE_D3].flags.valid = 1;
885 device->power.states[ACPI_STATE_D3].power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Zhang Rui9e89dde2006-12-07 20:56:16 +0800887 /* TBD: System wake support and resource requirements. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Zhang Rui9e89dde2006-12-07 20:56:16 +0800889 device->power.state = ACPI_STATE_UNKNOWN;
Zhao Yakuia51e1452008-08-11 14:55:05 +0800890 acpi_bus_get_power(device->handle, &(device->power.state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
892 return 0;
893}
894
Len Brown4be44fc2005-08-05 00:44:28 -0400895static int acpi_bus_get_flags(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896{
Len Brown4be44fc2005-08-05 00:44:28 -0400897 acpi_status status = AE_OK;
898 acpi_handle temp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
901 /* Presence of _STA indicates 'dynamic_status' */
902 status = acpi_get_handle(device->handle, "_STA", &temp);
903 if (ACPI_SUCCESS(status))
904 device->flags.dynamic_status = 1;
905
906 /* Presence of _CID indicates 'compatible_ids' */
907 status = acpi_get_handle(device->handle, "_CID", &temp);
908 if (ACPI_SUCCESS(status))
909 device->flags.compatible_ids = 1;
910
911 /* Presence of _RMV indicates 'removable' */
912 status = acpi_get_handle(device->handle, "_RMV", &temp);
913 if (ACPI_SUCCESS(status))
914 device->flags.removable = 1;
915
916 /* Presence of _EJD|_EJ0 indicates 'ejectable' */
917 status = acpi_get_handle(device->handle, "_EJD", &temp);
918 if (ACPI_SUCCESS(status))
919 device->flags.ejectable = 1;
920 else {
921 status = acpi_get_handle(device->handle, "_EJ0", &temp);
922 if (ACPI_SUCCESS(status))
923 device->flags.ejectable = 1;
924 }
925
926 /* Presence of _LCK indicates 'lockable' */
927 status = acpi_get_handle(device->handle, "_LCK", &temp);
928 if (ACPI_SUCCESS(status))
929 device->flags.lockable = 1;
930
931 /* Presence of _PS0|_PR0 indicates 'power manageable' */
932 status = acpi_get_handle(device->handle, "_PS0", &temp);
933 if (ACPI_FAILURE(status))
934 status = acpi_get_handle(device->handle, "_PR0", &temp);
935 if (ACPI_SUCCESS(status))
936 device->flags.power_manageable = 1;
937
938 /* Presence of _PRW indicates wake capable */
939 status = acpi_get_handle(device->handle, "_PRW", &temp);
940 if (ACPI_SUCCESS(status))
941 device->flags.wake_capable = 1;
942
Joe Perches3c5f9be42008-02-03 17:06:17 +0200943 /* TBD: Performance management */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
Patrick Mocheld550d982006-06-27 00:41:40 -0400945 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946}
947
Bjorn Helgaasc7bcb4e2009-09-21 19:29:25 +0000948static void acpi_device_get_busid(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949{
Len Brown4be44fc2005-08-05 00:44:28 -0400950 char bus_id[5] = { '?', 0 };
951 struct acpi_buffer buffer = { sizeof(bus_id), bus_id };
952 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
954 /*
955 * Bus ID
956 * ------
957 * The device's Bus ID is simply the object name.
958 * TBD: Shouldn't this value be unique (within the ACPI namespace)?
959 */
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +0000960 if (ACPI_IS_ROOT_DEVICE(device)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 strcpy(device->pnp.bus_id, "ACPI");
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +0000962 return;
963 }
964
965 switch (device->device_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 case ACPI_BUS_TYPE_POWER_BUTTON:
967 strcpy(device->pnp.bus_id, "PWRF");
968 break;
969 case ACPI_BUS_TYPE_SLEEP_BUTTON:
970 strcpy(device->pnp.bus_id, "SLPF");
971 break;
972 default:
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +0000973 acpi_get_name(device->handle, ACPI_SINGLE_NAME, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 /* Clean up trailing underscores (if any) */
975 for (i = 3; i > 1; i--) {
976 if (bus_id[i] == '_')
977 bus_id[i] = '\0';
978 else
979 break;
980 }
981 strcpy(device->pnp.bus_id, bus_id);
982 break;
983 }
984}
985
Zhang Rui54735262007-01-11 02:09:09 -0500986/*
987 * acpi_bay_match - see if a device is an ejectable driver bay
988 *
989 * If an acpi object is ejectable and has one of the ACPI ATA methods defined,
990 * then we can safely call it an ejectable drive bay
991 */
992static int acpi_bay_match(struct acpi_device *device){
993 acpi_status status;
994 acpi_handle handle;
995 acpi_handle tmp;
996 acpi_handle phandle;
997
998 handle = device->handle;
999
1000 status = acpi_get_handle(handle, "_EJ0", &tmp);
1001 if (ACPI_FAILURE(status))
1002 return -ENODEV;
1003
1004 if ((ACPI_SUCCESS(acpi_get_handle(handle, "_GTF", &tmp))) ||
1005 (ACPI_SUCCESS(acpi_get_handle(handle, "_GTM", &tmp))) ||
1006 (ACPI_SUCCESS(acpi_get_handle(handle, "_STM", &tmp))) ||
1007 (ACPI_SUCCESS(acpi_get_handle(handle, "_SDD", &tmp))))
1008 return 0;
1009
1010 if (acpi_get_parent(handle, &phandle))
1011 return -ENODEV;
1012
1013 if ((ACPI_SUCCESS(acpi_get_handle(phandle, "_GTF", &tmp))) ||
1014 (ACPI_SUCCESS(acpi_get_handle(phandle, "_GTM", &tmp))) ||
1015 (ACPI_SUCCESS(acpi_get_handle(phandle, "_STM", &tmp))) ||
1016 (ACPI_SUCCESS(acpi_get_handle(phandle, "_SDD", &tmp))))
1017 return 0;
1018
1019 return -ENODEV;
1020}
1021
Frank Seidel3620f2f2007-12-07 13:20:34 +01001022/*
1023 * acpi_dock_match - see if a device has a _DCK method
1024 */
1025static int acpi_dock_match(struct acpi_device *device)
1026{
1027 acpi_handle tmp;
1028 return acpi_get_handle(device->handle, "_DCK", &tmp);
1029}
1030
Bob Moore15b8dd52009-06-29 13:39:29 +08001031static struct acpica_device_id_list*
1032acpi_add_cid(
1033 struct acpi_device_info *info,
1034 struct acpica_device_id *new_cid)
1035{
1036 struct acpica_device_id_list *cid;
1037 char *next_id_string;
1038 acpi_size cid_length;
1039 acpi_size new_cid_length;
1040 u32 i;
1041
1042
1043 /* Allocate new CID list with room for the new CID */
1044
1045 if (!new_cid)
1046 new_cid_length = info->compatible_id_list.list_size;
1047 else if (info->compatible_id_list.list_size)
1048 new_cid_length = info->compatible_id_list.list_size +
1049 new_cid->length + sizeof(struct acpica_device_id);
1050 else
1051 new_cid_length = sizeof(struct acpica_device_id_list) + new_cid->length;
1052
1053 cid = ACPI_ALLOCATE_ZEROED(new_cid_length);
1054 if (!cid) {
1055 return NULL;
1056 }
1057
1058 cid->list_size = new_cid_length;
1059 cid->count = info->compatible_id_list.count;
1060 if (new_cid)
1061 cid->count++;
1062 next_id_string = (char *) cid->ids + (cid->count * sizeof(struct acpica_device_id));
1063
1064 /* Copy all existing CIDs */
1065
1066 for (i = 0; i < info->compatible_id_list.count; i++) {
1067 cid_length = info->compatible_id_list.ids[i].length;
1068 cid->ids[i].string = next_id_string;
1069 cid->ids[i].length = cid_length;
1070
1071 ACPI_MEMCPY(next_id_string, info->compatible_id_list.ids[i].string,
1072 cid_length);
1073
1074 next_id_string += cid_length;
1075 }
1076
1077 /* Append the new CID */
1078
1079 if (new_cid) {
1080 cid->ids[i].string = next_id_string;
1081 cid->ids[i].length = new_cid->length;
1082
1083 ACPI_MEMCPY(next_id_string, new_cid->string, new_cid->length);
1084 }
1085
1086 return cid;
1087}
1088
Bjorn Helgaasc7bcb4e2009-09-21 19:29:25 +00001089static void acpi_device_set_id(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090{
Bob Moore15b8dd52009-06-29 13:39:29 +08001091 struct acpi_device_info *info = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -04001092 char *hid = NULL;
1093 char *uid = NULL;
Bob Moore15b8dd52009-06-29 13:39:29 +08001094 struct acpica_device_id_list *cid_list = NULL;
1095 char *cid_add = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -04001096 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
Bjorn Helgaasc7bcb4e2009-09-21 19:29:25 +00001098 switch (device->device_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 case ACPI_BUS_TYPE_DEVICE:
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +00001100 if (ACPI_IS_ROOT_DEVICE(device)) {
1101 hid = ACPI_SYSTEM_HID;
1102 break;
1103 }
1104
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +00001105 status = acpi_get_object_info(device->handle, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 if (ACPI_FAILURE(status)) {
Harvey Harrison96b2dd12008-03-05 18:24:51 -08001107 printk(KERN_ERR PREFIX "%s: Error reading device info\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 return;
1109 }
1110
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 if (info->valid & ACPI_VALID_HID)
Bob Moore15b8dd52009-06-29 13:39:29 +08001112 hid = info->hardware_id.string;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 if (info->valid & ACPI_VALID_UID)
Bob Moore15b8dd52009-06-29 13:39:29 +08001114 uid = info->unique_id.string;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 if (info->valid & ACPI_VALID_CID)
Bob Moore15b8dd52009-06-29 13:39:29 +08001116 cid_list = &info->compatible_id_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 if (info->valid & ACPI_VALID_ADR) {
1118 device->pnp.bus_address = info->address;
1119 device->flags.bus_address = 1;
1120 }
Zhang Ruiae843332006-12-07 20:57:10 +08001121
Frank Seidel3620f2f2007-12-07 13:20:34 +01001122 /* If we have a video/bay/dock device, add our selfdefined
1123 HID to the CID list. Like that the video/bay/dock drivers
1124 will get autoloaded and the device might still match
1125 against another driver.
1126 */
Thomas Renningerc3d6de62008-08-01 17:37:55 +02001127 if (acpi_is_video_device(device))
Frank Seidel3620f2f2007-12-07 13:20:34 +01001128 cid_add = ACPI_VIDEO_HID;
1129 else if (ACPI_SUCCESS(acpi_bay_match(device)))
1130 cid_add = ACPI_BAY_HID;
1131 else if (ACPI_SUCCESS(acpi_dock_match(device)))
1132 cid_add = ACPI_DOCK_HID;
Zhang Rui54735262007-01-11 02:09:09 -05001133
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 break;
1135 case ACPI_BUS_TYPE_POWER:
1136 hid = ACPI_POWER_HID;
1137 break;
1138 case ACPI_BUS_TYPE_PROCESSOR:
Myron Stowead93a762008-11-04 14:52:55 -07001139 hid = ACPI_PROCESSOR_OBJECT_HID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 case ACPI_BUS_TYPE_THERMAL:
1142 hid = ACPI_THERMAL_HID;
1143 break;
1144 case ACPI_BUS_TYPE_POWER_BUTTON:
1145 hid = ACPI_BUTTON_HID_POWERF;
1146 break;
1147 case ACPI_BUS_TYPE_SLEEP_BUTTON:
1148 hid = ACPI_BUTTON_HID_SLEEPF;
1149 break;
1150 }
1151
Alex Chiang0c526d92009-05-14 08:31:37 -06001152 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 * \_SB
1154 * ----
1155 * Fix for the system root bus device -- the only root-level device.
1156 */
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +00001157 if (((acpi_handle)device->parent == ACPI_ROOT_OBJECT) &&
Bjorn Helgaasc7bcb4e2009-09-21 19:29:25 +00001158 (device->device_type == ACPI_BUS_TYPE_DEVICE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 hid = ACPI_BUS_HID;
1160 strcpy(device->pnp.device_name, ACPI_BUS_DEVICE_NAME);
1161 strcpy(device->pnp.device_class, ACPI_BUS_CLASS);
1162 }
1163
1164 if (hid) {
Bob Moore15b8dd52009-06-29 13:39:29 +08001165 device->pnp.hardware_id = ACPI_ALLOCATE_ZEROED(strlen (hid) + 1);
1166 if (device->pnp.hardware_id) {
1167 strcpy(device->pnp.hardware_id, hid);
1168 device->flags.hardware_id = 1;
Frank Seidel3620f2f2007-12-07 13:20:34 +01001169 }
Hugh Dickins718fb0d2009-08-06 23:18:12 +00001170 }
1171 if (!device->flags.hardware_id)
1172 device->pnp.hardware_id = "";
Bob Moore15b8dd52009-06-29 13:39:29 +08001173
1174 if (uid) {
1175 device->pnp.unique_id = ACPI_ALLOCATE_ZEROED(strlen (uid) + 1);
1176 if (device->pnp.unique_id) {
1177 strcpy(device->pnp.unique_id, uid);
1178 device->flags.unique_id = 1;
1179 }
Hugh Dickins718fb0d2009-08-06 23:18:12 +00001180 }
1181 if (!device->flags.unique_id)
1182 device->pnp.unique_id = "";
Bob Moore15b8dd52009-06-29 13:39:29 +08001183
1184 if (cid_list || cid_add) {
1185 struct acpica_device_id_list *list;
1186
1187 if (cid_add) {
1188 struct acpica_device_id cid;
1189 cid.length = strlen (cid_add) + 1;
1190 cid.string = cid_add;
1191
1192 list = acpi_add_cid(info, &cid);
1193 } else {
1194 list = acpi_add_cid(info, NULL);
1195 }
Frank Seidel3620f2f2007-12-07 13:20:34 +01001196
1197 if (list) {
Frank Seidel3620f2f2007-12-07 13:20:34 +01001198 device->pnp.cid_list = list;
Bob Moore15b8dd52009-06-29 13:39:29 +08001199 if (cid_add)
1200 device->flags.compatible_ids = 1;
1201 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 }
1203
Bob Moore15b8dd52009-06-29 13:39:29 +08001204 kfree(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205}
1206
Bjorn Helgaasbc3b0772009-09-21 19:29:20 +00001207static int acpi_device_set_context(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208{
Bjorn Helgaasbc3b0772009-09-21 19:29:20 +00001209 acpi_status status;
1210
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 /*
1212 * Context
1213 * -------
1214 * Attach this 'struct acpi_device' to the ACPI object. This makes
Bjorn Helgaasbc3b0772009-09-21 19:29:20 +00001215 * resolutions from handle->device very efficient. Fixed hardware
1216 * devices have no handles, so we skip them.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 */
Bjorn Helgaasbc3b0772009-09-21 19:29:20 +00001218 if (!device->handle)
1219 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
Bjorn Helgaasbc3b0772009-09-21 19:29:20 +00001221 status = acpi_attach_data(device->handle,
1222 acpi_bus_data_handler, device);
1223 if (ACPI_SUCCESS(status))
1224 return 0;
1225
1226 printk(KERN_ERR PREFIX "Error attaching device data\n");
1227 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228}
1229
Len Brown4be44fc2005-08-05 00:44:28 -04001230static int acpi_bus_remove(struct acpi_device *dev, int rmdevice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 if (!dev)
Patrick Mocheld550d982006-06-27 00:41:40 -04001233 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
Li Shaohua96333572006-12-07 20:56:46 +08001235 dev->removal_type = ACPI_BUS_REMOVAL_EJECT;
Patrick Mochel1890a972006-12-07 20:56:31 +08001236 device_release_driver(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
1238 if (!rmdevice)
Patrick Mocheld550d982006-06-27 00:41:40 -04001239 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
Rui Zhang2786f6e2006-12-21 02:21:13 -05001241 /*
1242 * unbind _ADR-Based Devices when hot removal
1243 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 if (dev->flags.bus_address) {
1245 if ((dev->parent) && (dev->parent->ops.unbind))
1246 dev->parent->ops.unbind(dev);
1247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 acpi_device_unregister(dev, ACPI_BUS_REMOVAL_EJECT);
1249
Patrick Mocheld550d982006-06-27 00:41:40 -04001250 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251}
1252
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001253static int acpi_add_single_object(struct acpi_device **child,
1254 acpi_handle handle, int type,
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001255 unsigned long long sta,
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001256 struct acpi_bus_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257{
Bjorn Helgaas77c24882009-09-21 19:29:30 +00001258 int result;
1259 struct acpi_device *device;
Bjorn Helgaas29aaefa2009-09-21 19:28:54 +00001260 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Burman Yan36bcbec2006-12-19 12:56:11 -08001262 device = kzalloc(sizeof(struct acpi_device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 if (!device) {
Len Brown64684632006-06-26 23:41:38 -04001264 printk(KERN_ERR PREFIX "Memory allocation error\n");
Patrick Mocheld550d982006-06-27 00:41:40 -04001265 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
Bjorn Helgaascaaa6ef2009-09-21 19:29:10 +00001268 device->device_type = type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 device->handle = handle;
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001270 device->parent = acpi_bus_get_parent(handle);
Li Shaohuac4168bf2006-12-07 20:56:41 +08001271 device->bus_ops = *ops; /* workround for not call .start */
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001272 STRUCT_TO_INT(device->status) = sta;
Li Shaohuac4168bf2006-12-07 20:56:41 +08001273
Bjorn Helgaasc7bcb4e2009-09-21 19:29:25 +00001274 acpi_device_get_busid(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
1276 /*
1277 * Flags
1278 * -----
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001279 * Note that we only look for object handles -- cannot evaluate objects
1280 * until we know the device is present and properly initialized.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 */
1282 result = acpi_bus_get_flags(device);
1283 if (result)
1284 goto end;
1285
1286 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 * Initialize Device
1288 * -----------------
1289 * TBD: Synch with Core's enumeration/initialization process.
1290 */
1291
1292 /*
1293 * Hardware ID, Unique ID, & Bus Address
1294 * -------------------------------------
1295 */
Bjorn Helgaasc7bcb4e2009-09-21 19:29:25 +00001296 acpi_device_set_id(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
1298 /*
1299 * Power Management
1300 * ----------------
1301 */
1302 if (device->flags.power_manageable) {
1303 result = acpi_bus_get_power_flags(device);
1304 if (result)
1305 goto end;
1306 }
1307
Len Brown4be44fc2005-08-05 00:44:28 -04001308 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 * Wakeup device management
1310 *-----------------------
1311 */
1312 if (device->flags.wake_capable) {
1313 result = acpi_bus_get_wakeup_device_flags(device);
1314 if (result)
1315 goto end;
1316 }
1317
1318 /*
1319 * Performance Management
1320 * ----------------------
1321 */
1322 if (device->flags.performance_manageable) {
1323 result = acpi_bus_get_perf_flags(device);
1324 if (result)
1325 goto end;
1326 }
1327
Bjorn Helgaasbc3b0772009-09-21 19:29:20 +00001328 if ((result = acpi_device_set_context(device)))
Len Brownf61f9252009-09-05 13:33:23 -04001329 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +00001331 result = acpi_device_register(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
1333 /*
Rui Zhang2786f6e2006-12-21 02:21:13 -05001334 * Bind _ADR-Based Devices when hot add
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 */
1336 if (device->flags.bus_address) {
1337 if (device->parent && device->parent->ops.bind)
1338 device->parent->ops.bind(device);
1339 }
1340
Alex Chiang0c526d92009-05-14 08:31:37 -06001341end:
Bjorn Helgaas29aaefa2009-09-21 19:28:54 +00001342 if (!result) {
1343 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
1344 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1345 "Adding %s [%s] parent %s\n", dev_name(&device->dev),
1346 (char *) buffer.pointer,
1347 device->parent ? dev_name(&device->parent->dev) :
1348 "(null)"));
1349 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 *child = device;
Bjorn Helgaas29aaefa2009-09-21 19:28:54 +00001351 } else
Hugh Dickins718fb0d2009-08-06 23:18:12 +00001352 acpi_device_release(&device->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
Patrick Mocheld550d982006-06-27 00:41:40 -04001354 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001357#define ACPI_STA_DEFAULT (ACPI_STA_DEVICE_PRESENT | ACPI_STA_DEVICE_ENABLED | \
1358 ACPI_STA_DEVICE_UI | ACPI_STA_DEVICE_FUNCTIONING)
1359
1360static int acpi_bus_type_and_status(acpi_handle handle, int *type,
1361 unsigned long long *sta)
1362{
1363 acpi_status status;
1364 acpi_object_type acpi_type;
1365
1366 status = acpi_get_type(handle, &acpi_type);
1367 if (ACPI_FAILURE(status))
1368 return -ENODEV;
1369
1370 switch (acpi_type) {
1371 case ACPI_TYPE_ANY: /* for ACPI_ROOT_OBJECT */
1372 case ACPI_TYPE_DEVICE:
1373 *type = ACPI_BUS_TYPE_DEVICE;
1374 status = acpi_bus_get_status_handle(handle, sta);
1375 if (ACPI_FAILURE(status))
1376 return -ENODEV;
1377 break;
1378 case ACPI_TYPE_PROCESSOR:
1379 *type = ACPI_BUS_TYPE_PROCESSOR;
1380 status = acpi_bus_get_status_handle(handle, sta);
1381 if (ACPI_FAILURE(status))
1382 return -ENODEV;
1383 break;
1384 case ACPI_TYPE_THERMAL:
1385 *type = ACPI_BUS_TYPE_THERMAL;
1386 *sta = ACPI_STA_DEFAULT;
1387 break;
1388 case ACPI_TYPE_POWER:
1389 *type = ACPI_BUS_TYPE_POWER;
1390 *sta = ACPI_STA_DEFAULT;
1391 break;
1392 default:
1393 return -ENODEV;
1394 }
1395
1396 return 0;
1397}
1398
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001399static acpi_status acpi_bus_check_add(acpi_handle handle, u32 lvl,
1400 void *context, void **return_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401{
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001402 struct acpi_bus_ops *ops = context;
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001403 struct acpi_device *device = NULL;
1404 acpi_status status;
1405 int type;
1406 unsigned long long sta;
1407 int result;
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001408
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001409 result = acpi_bus_type_and_status(handle, &type, &sta);
1410 if (result)
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001411 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001413 if (!(sta & ACPI_STA_DEVICE_PRESENT) &&
1414 !(sta & ACPI_STA_DEVICE_FUNCTIONING))
1415 return AE_CTRL_DEPTH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001417 if (ops->acpi_op_add)
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001418 status = acpi_add_single_object(&device, handle, type, sta,
1419 ops);
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001420 else
1421 status = acpi_bus_get_device(handle, &device);
1422
1423 if (ACPI_FAILURE(status))
1424 return AE_CTRL_DEPTH;
1425
1426 if (ops->acpi_op_start && !(ops->acpi_op_add)) {
1427 status = acpi_start_single_object(device);
1428 if (ACPI_FAILURE(status))
1429 return AE_CTRL_DEPTH;
1430 }
1431
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001432 if (!*return_value)
1433 *return_value = device;
1434 return AE_OK;
1435}
1436
1437static int acpi_bus_scan(acpi_handle handle, struct acpi_bus_ops *ops,
1438 struct acpi_device **child)
1439{
1440 acpi_status status;
1441 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1442 void *device = NULL;
1443
1444 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
1445 printk(KERN_INFO PREFIX "Enumerating devices from [%s]\n",
1446 (char *) buffer.pointer);
1447
1448 status = acpi_bus_check_add(handle, 0, ops, &device);
1449 if (ACPI_SUCCESS(status))
1450 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
1451 acpi_bus_check_add, ops, &device);
1452
1453 if (child)
1454 *child = device;
Patrick Mocheld550d982006-06-27 00:41:40 -04001455 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
Rajesh Shah3fb02732005-04-28 00:25:52 -07001458int
Len Brown4be44fc2005-08-05 00:44:28 -04001459acpi_bus_add(struct acpi_device **child,
1460 struct acpi_device *parent, acpi_handle handle, int type)
Rajesh Shah3fb02732005-04-28 00:25:52 -07001461{
Rajesh Shah3fb02732005-04-28 00:25:52 -07001462 struct acpi_bus_ops ops;
1463
Li Shaohuac4168bf2006-12-07 20:56:41 +08001464 memset(&ops, 0, sizeof(ops));
1465 ops.acpi_op_add = 1;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001466
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001467 acpi_bus_scan(handle, &ops, child);
1468 return 0;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001469}
1470EXPORT_SYMBOL(acpi_bus_add);
1471
Len Brown4be44fc2005-08-05 00:44:28 -04001472int acpi_bus_start(struct acpi_device *device)
Rajesh Shah3fb02732005-04-28 00:25:52 -07001473{
Rajesh Shah3fb02732005-04-28 00:25:52 -07001474 struct acpi_bus_ops ops;
1475
Bjorn Helgaas8e029bf2009-09-21 19:29:40 +00001476 memset(&ops, 0, sizeof(ops));
1477 ops.acpi_op_start = 1;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001478
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001479 acpi_bus_scan(device->handle, &ops, NULL);
1480 return 0;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001481}
1482EXPORT_SYMBOL(acpi_bus_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
Kristen Accardiceaba662006-02-23 17:56:01 -08001484int acpi_bus_trim(struct acpi_device *start, int rmdevice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485{
Len Brown4be44fc2005-08-05 00:44:28 -04001486 acpi_status status;
1487 struct acpi_device *parent, *child;
1488 acpi_handle phandle, chandle;
1489 acpi_object_type type;
1490 u32 level = 1;
1491 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Len Brown4be44fc2005-08-05 00:44:28 -04001493 parent = start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 phandle = start->handle;
1495 child = chandle = NULL;
1496
1497 while ((level > 0) && parent && (!err)) {
1498 status = acpi_get_next_object(ACPI_TYPE_ANY, phandle,
Len Brown4be44fc2005-08-05 00:44:28 -04001499 chandle, &chandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
1501 /*
1502 * If this scope is exhausted then move our way back up.
1503 */
1504 if (ACPI_FAILURE(status)) {
1505 level--;
1506 chandle = phandle;
1507 acpi_get_parent(phandle, &phandle);
1508 child = parent;
1509 parent = parent->parent;
1510
1511 if (level == 0)
1512 err = acpi_bus_remove(child, rmdevice);
1513 else
1514 err = acpi_bus_remove(child, 1);
1515
1516 continue;
1517 }
1518
1519 status = acpi_get_type(chandle, &type);
1520 if (ACPI_FAILURE(status)) {
1521 continue;
1522 }
1523 /*
1524 * If there is a device corresponding to chandle then
1525 * parse it (depth-first).
1526 */
1527 if (acpi_bus_get_device(chandle, &child) == 0) {
1528 level++;
1529 phandle = chandle;
1530 chandle = NULL;
1531 parent = child;
1532 }
1533 continue;
1534 }
1535 return err;
1536}
Kristen Accardiceaba662006-02-23 17:56:01 -08001537EXPORT_SYMBOL_GPL(acpi_bus_trim);
1538
Bjorn Helgaase8b945c2009-09-21 19:28:59 +00001539static int acpi_bus_scan_fixed(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540{
Len Brown4be44fc2005-08-05 00:44:28 -04001541 int result = 0;
1542 struct acpi_device *device = NULL;
Li Shaohuac4168bf2006-12-07 20:56:41 +08001543 struct acpi_bus_ops ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
Li Shaohuac4168bf2006-12-07 20:56:41 +08001545 memset(&ops, 0, sizeof(ops));
1546 ops.acpi_op_add = 1;
1547 ops.acpi_op_start = 1;
1548
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 /*
1550 * Enumerate all fixed-feature devices.
1551 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001552 if ((acpi_gbl_FADT.flags & ACPI_FADT_POWER_BUTTON) == 0) {
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001553 result = acpi_add_single_object(&device, NULL,
Li Shaohuac4168bf2006-12-07 20:56:41 +08001554 ACPI_BUS_TYPE_POWER_BUTTON,
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001555 ACPI_STA_DEFAULT,
Li Shaohuac4168bf2006-12-07 20:56:41 +08001556 &ops);
Rajesh Shah3fb02732005-04-28 00:25:52 -07001557 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001559 if ((acpi_gbl_FADT.flags & ACPI_FADT_SLEEP_BUTTON) == 0) {
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001560 result = acpi_add_single_object(&device, NULL,
Li Shaohuac4168bf2006-12-07 20:56:41 +08001561 ACPI_BUS_TYPE_SLEEP_BUTTON,
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001562 ACPI_STA_DEFAULT,
Li Shaohuac4168bf2006-12-07 20:56:41 +08001563 &ops);
Rajesh Shah3fb02732005-04-28 00:25:52 -07001564 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
Patrick Mocheld550d982006-06-27 00:41:40 -04001566 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567}
1568
Bjorn Helgaase747f272009-03-24 16:49:43 -06001569int __init acpi_scan_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570{
1571 int result;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001572 struct acpi_bus_ops ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
Li Shaohuac4168bf2006-12-07 20:56:41 +08001574 memset(&ops, 0, sizeof(ops));
1575 ops.acpi_op_add = 1;
1576 ops.acpi_op_start = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
Patrick Mochel5b327262006-05-10 10:33:00 -04001578 result = bus_register(&acpi_bus_type);
1579 if (result) {
1580 /* We don't want to quit even if we failed to add suspend/resume */
1581 printk(KERN_ERR PREFIX "Could not register bus type\n");
1582 }
1583
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 * Enumerate devices in the ACPI namespace.
1586 */
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001587 result = acpi_bus_scan(ACPI_ROOT_OBJECT, &ops, &acpi_root);
Alexey Starikovskiyc04209a2008-01-01 14:12:55 -05001588
Li Shaohuac4168bf2006-12-07 20:56:41 +08001589 if (!result)
Bjorn Helgaasadc08e22009-09-21 19:29:45 +00001590 result = acpi_bus_scan_fixed();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
1592 if (result)
1593 acpi_device_unregister(acpi_root, ACPI_BUS_REMOVAL_NORMAL);
1594
Patrick Mocheld550d982006-06-27 00:41:40 -04001595 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596}