blob: bea3ab6b524fe9a6e9cbf22a346a79b8e0091458 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09007#include <linux/slab.h>
Randy Dunlap9b6d97b2006-07-12 02:08:00 -04008#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/acpi.h>
Alok N Kataria74523c92008-06-13 12:54:24 -040010#include <linux/signal.h>
11#include <linux/kthread.h>
Darrick J. Wong222e82a2010-03-24 14:38:37 +010012#include <linux/dmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
14#include <acpi/acpi_drivers.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
Bjorn Helgaase60cc7a2009-03-13 12:08:26 -060016#include "internal.h"
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#define _COMPONENT ACPI_BUS_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050019ACPI_MODULE_NAME("scan");
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#define STRUCT_TO_INT(s) (*((int*)&s))
Len Brown4be44fc2005-08-05 00:44:28 -040021extern struct acpi_device *acpi_root;
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23#define ACPI_BUS_CLASS "system_bus"
Thomas Renninger29b71a12007-07-23 14:43:51 +020024#define ACPI_BUS_HID "LNXSYBUS"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#define ACPI_BUS_DEVICE_NAME "System Bus"
26
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +000027#define ACPI_IS_ROOT_DEVICE(device) (!(device)->parent)
28
Thomas Renninger620e1122010-10-01 10:54:00 +020029static const char *dummy_hid = "device";
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +020030
Linus Torvalds1da177e2005-04-16 15:20:36 -070031static LIST_HEAD(acpi_device_list);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +080032static LIST_HEAD(acpi_bus_id_list);
Shaohua Li90905892009-04-07 10:24:29 +080033DEFINE_MUTEX(acpi_device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034LIST_HEAD(acpi_wakeup_device_list);
35
Zhang Ruie49bd2dd2006-12-08 17:23:43 +080036struct acpi_device_bus_id{
Zhang Ruibb095852007-01-04 15:03:18 +080037 char bus_id[15];
Zhang Ruie49bd2dd2006-12-08 17:23:43 +080038 unsigned int instance_no;
39 struct list_head node;
40};
Thomas Renninger29b71a12007-07-23 14:43:51 +020041
42/*
43 * Creates hid/cid(s) string needed for modalias and uevent
44 * e.g. on a device with hid:IBM0001 and cid:ACPI0001 you get:
45 * char *modalias: "acpi:IBM0001:ACPI0001"
46*/
Adrian Bunkb3e572d2007-08-14 23:22:35 +020047static int create_modalias(struct acpi_device *acpi_dev, char *modalias,
48 int size)
49{
Thomas Renninger29b71a12007-07-23 14:43:51 +020050 int len;
Zhang Rui5c9fcb52008-03-20 16:40:32 +080051 int count;
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -060052 struct acpi_hardware_id *id;
Thomas Renninger29b71a12007-07-23 14:43:51 +020053
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +020054 if (list_empty(&acpi_dev->pnp.ids))
55 return 0;
56
Zhang Rui5c9fcb52008-03-20 16:40:32 +080057 len = snprintf(modalias, size, "acpi:");
Thomas Renninger29b71a12007-07-23 14:43:51 +020058 size -= len;
59
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -060060 list_for_each_entry(id, &acpi_dev->pnp.ids, list) {
61 count = snprintf(&modalias[len], size, "%s:", id->id);
Zhang Rui5c9fcb52008-03-20 16:40:32 +080062 if (count < 0 || count >= size)
63 return -EINVAL;
64 len += count;
65 size -= count;
66 }
67
Thomas Renninger29b71a12007-07-23 14:43:51 +020068 modalias[len] = '\0';
69 return len;
70}
71
72static ssize_t
73acpi_device_modalias_show(struct device *dev, struct device_attribute *attr, char *buf) {
74 struct acpi_device *acpi_dev = to_acpi_device(dev);
75 int len;
76
77 /* Device has no HID and no CID or string is >1024 */
78 len = create_modalias(acpi_dev, buf, 1024);
79 if (len <= 0)
80 return 0;
81 buf[len++] = '\n';
82 return len;
83}
84static DEVICE_ATTR(modalias, 0444, acpi_device_modalias_show, NULL);
85
Toshi Kanic4753e52012-05-23 20:25:20 -060086/**
87 * acpi_bus_hot_remove_device: hot-remove a device and its children
88 * @context: struct acpi_eject_event pointer (freed in this func)
89 *
90 * Hot-remove a device and its children. This function frees up the
91 * memory space passed by arg context, so that the caller may call
92 * this function asynchronously through acpi_os_hotplug_execute().
93 */
94void acpi_bus_hot_remove_device(void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
Toshi Kanic4753e52012-05-23 20:25:20 -060096 struct acpi_eject_event *ej_event = (struct acpi_eject_event *) context;
Zhang Rui26d46862008-04-29 02:35:48 -040097 struct acpi_device *device;
Toshi Kanic4753e52012-05-23 20:25:20 -060098 acpi_handle handle = ej_event->handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 struct acpi_object_list arg_list;
100 union acpi_object arg;
101 acpi_status status = AE_OK;
Toshi Kanic4753e52012-05-23 20:25:20 -0600102 u32 ost_code = ACPI_OST_SC_NON_SPECIFIC_FAILURE; /* default */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Zhang Rui26d46862008-04-29 02:35:48 -0400104 if (acpi_bus_get_device(handle, &device))
Toshi Kanic4753e52012-05-23 20:25:20 -0600105 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Zhang Rui26d46862008-04-29 02:35:48 -0400107 if (!device)
Toshi Kanic4753e52012-05-23 20:25:20 -0600108 goto err_out;
Zhang Rui26d46862008-04-29 02:35:48 -0400109
110 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Kay Sievers07944692008-10-30 01:18:59 +0100111 "Hot-removing device %s...\n", dev_name(&device->dev)));
Zhang Rui26d46862008-04-29 02:35:48 -0400112
113 if (acpi_bus_trim(device, 1)) {
Lin Ming55ac9a02008-09-28 14:51:56 +0800114 printk(KERN_ERR PREFIX
115 "Removing device failed\n");
Toshi Kanic4753e52012-05-23 20:25:20 -0600116 goto err_out;
Zhang Rui26d46862008-04-29 02:35:48 -0400117 }
118
119 /* power off device */
120 status = acpi_evaluate_object(handle, "_PS3", NULL, NULL);
121 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND)
Lin Ming55ac9a02008-09-28 14:51:56 +0800122 printk(KERN_WARNING PREFIX
123 "Power-off device failed\n");
Zhang Rui26d46862008-04-29 02:35:48 -0400124
125 if (device->flags.lockable) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 arg_list.count = 1;
127 arg_list.pointer = &arg;
128 arg.type = ACPI_TYPE_INTEGER;
129 arg.integer.value = 0;
130 acpi_evaluate_object(handle, "_LCK", &arg_list, NULL);
131 }
132
133 arg_list.count = 1;
134 arg_list.pointer = &arg;
135 arg.type = ACPI_TYPE_INTEGER;
136 arg.integer.value = 1;
137
138 /*
139 * TBD: _EJD support.
140 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 status = acpi_evaluate_object(handle, "_EJ0", &arg_list, NULL);
Toshi Kanic4753e52012-05-23 20:25:20 -0600142 if (ACPI_FAILURE(status)) {
143 if (status != AE_NOT_FOUND)
144 printk(KERN_WARNING PREFIX
145 "Eject device failed\n");
146 goto err_out;
147 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Toshi Kanic4753e52012-05-23 20:25:20 -0600149 kfree(context);
150 return;
151
152err_out:
153 /* Inform firmware the hot-remove operation has completed w/ error */
154 (void) acpi_evaluate_hotplug_ost(handle,
155 ej_event->event, ost_code, NULL);
156 kfree(context);
Zhang Ruic8d72a52009-06-22 11:31:16 +0800157 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158}
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160static ssize_t
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800161acpi_eject_store(struct device *d, struct device_attribute *attr,
162 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
Len Brown4be44fc2005-08-05 00:44:28 -0400164 int ret = count;
Len Brown4be44fc2005-08-05 00:44:28 -0400165 acpi_status status;
Len Brown4be44fc2005-08-05 00:44:28 -0400166 acpi_object_type type = 0;
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800167 struct acpi_device *acpi_device = to_acpi_device(d);
Toshi Kanic4753e52012-05-23 20:25:20 -0600168 struct acpi_eject_event *ej_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170 if ((!count) || (buf[0] != '1')) {
171 return -EINVAL;
172 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173#ifndef FORCE_EJECT
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800174 if (acpi_device->driver == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 ret = -ENODEV;
176 goto err;
177 }
178#endif
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800179 status = acpi_get_type(acpi_device->handle, &type);
180 if (ACPI_FAILURE(status) || (!acpi_device->flags.ejectable)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 ret = -ENODEV;
182 goto err;
183 }
184
Toshi Kanic4753e52012-05-23 20:25:20 -0600185 ej_event = kmalloc(sizeof(*ej_event), GFP_KERNEL);
186 if (!ej_event) {
187 ret = -ENOMEM;
188 goto err;
189 }
190
191 ej_event->handle = acpi_device->handle;
192 if (acpi_device->flags.eject_pending) {
193 /* event originated from ACPI eject notification */
194 ej_event->event = ACPI_NOTIFY_EJECT_REQUEST;
195 acpi_device->flags.eject_pending = 0;
196 } else {
197 /* event originated from user */
198 ej_event->event = ACPI_OST_EC_OSPM_EJECT;
199 (void) acpi_evaluate_hotplug_ost(ej_event->handle,
200 ej_event->event, ACPI_OST_SC_EJECT_IN_PROGRESS, NULL);
201 }
202
203 acpi_os_hotplug_execute(acpi_bus_hot_remove_device, (void *)ej_event);
Alok N Kataria74523c92008-06-13 12:54:24 -0400204err:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206}
207
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800208static DEVICE_ATTR(eject, 0200, NULL, acpi_eject_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800210static ssize_t
211acpi_device_hid_show(struct device *dev, struct device_attribute *attr, char *buf) {
212 struct acpi_device *acpi_dev = to_acpi_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Bjorn Helgaasea8d82f2009-09-21 13:35:09 -0600214 return sprintf(buf, "%s\n", acpi_device_hid(acpi_dev));
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800215}
216static DEVICE_ATTR(hid, 0444, acpi_device_hid_show, NULL);
217
218static ssize_t
219acpi_device_path_show(struct device *dev, struct device_attribute *attr, char *buf) {
220 struct acpi_device *acpi_dev = to_acpi_device(dev);
221 struct acpi_buffer path = {ACPI_ALLOCATE_BUFFER, NULL};
222 int result;
223
224 result = acpi_get_name(acpi_dev->handle, ACPI_FULL_PATHNAME, &path);
Alex Chiang0c526d92009-05-14 08:31:37 -0600225 if (result)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800226 goto end;
227
228 result = sprintf(buf, "%s\n", (char*)path.pointer);
229 kfree(path.pointer);
Alex Chiang0c526d92009-05-14 08:31:37 -0600230end:
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800231 return result;
232}
233static DEVICE_ATTR(path, 0444, acpi_device_path_show, NULL);
234
235static int acpi_device_setup_files(struct acpi_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800237 acpi_status status;
238 acpi_handle temp;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800239 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800241 /*
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800242 * Devices gotten from FADT don't have a "path" attribute
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800243 */
Alex Chiang0c526d92009-05-14 08:31:37 -0600244 if (dev->handle) {
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800245 result = device_create_file(&dev->dev, &dev_attr_path);
Alex Chiang0c526d92009-05-14 08:31:37 -0600246 if (result)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800247 goto end;
248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +0200250 if (!list_empty(&dev->pnp.ids)) {
251 result = device_create_file(&dev->dev, &dev_attr_hid);
252 if (result)
253 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +0200255 result = device_create_file(&dev->dev, &dev_attr_modalias);
256 if (result)
257 goto end;
258 }
Thomas Renninger29b71a12007-07-23 14:43:51 +0200259
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800260 /*
261 * If device has _EJ0, 'eject' file is created that is used to trigger
262 * hot-removal function from userland.
263 */
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800264 status = acpi_get_handle(dev->handle, "_EJ0", &temp);
265 if (ACPI_SUCCESS(status))
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800266 result = device_create_file(&dev->dev, &dev_attr_eject);
Alex Chiang0c526d92009-05-14 08:31:37 -0600267end:
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800268 return result;
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800269}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800271static void acpi_device_remove_files(struct acpi_device *dev)
272{
273 acpi_status status;
274 acpi_handle temp;
275
276 /*
277 * If device has _EJ0, 'eject' file is created that is used to trigger
278 * hot-removal function from userland.
279 */
280 status = acpi_get_handle(dev->handle, "_EJ0", &temp);
281 if (ACPI_SUCCESS(status))
282 device_remove_file(&dev->dev, &dev_attr_eject);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800283
Bjorn Helgaas1131b932009-09-21 13:35:29 -0600284 device_remove_file(&dev->dev, &dev_attr_modalias);
285 device_remove_file(&dev->dev, &dev_attr_hid);
Alex Chiang0c526d92009-05-14 08:31:37 -0600286 if (dev->handle)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800287 device_remove_file(&dev->dev, &dev_attr_path);
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800288}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289/* --------------------------------------------------------------------------
Zhang Rui9e89dde2006-12-07 20:56:16 +0800290 ACPI Bus operations
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 -------------------------------------------------------------------------- */
Thomas Renninger29b71a12007-07-23 14:43:51 +0200292
293int acpi_match_device_ids(struct acpi_device *device,
294 const struct acpi_device_id *ids)
295{
296 const struct acpi_device_id *id;
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -0600297 struct acpi_hardware_id *hwid;
Thomas Renninger29b71a12007-07-23 14:43:51 +0200298
Zhao Yakui39a0ad82008-08-11 13:40:22 +0800299 /*
300 * If the device is not present, it is unnecessary to load device
301 * driver for it.
302 */
303 if (!device->status.present)
304 return -ENODEV;
305
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -0600306 for (id = ids; id->id[0]; id++)
307 list_for_each_entry(hwid, &device->pnp.ids, list)
308 if (!strcmp((char *) id->id, hwid->id))
Thomas Renninger29b71a12007-07-23 14:43:51 +0200309 return 0;
Thomas Renninger29b71a12007-07-23 14:43:51 +0200310
311 return -ENOENT;
312}
313EXPORT_SYMBOL(acpi_match_device_ids);
314
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -0600315static void acpi_free_ids(struct acpi_device *device)
316{
317 struct acpi_hardware_id *id, *tmp;
318
319 list_for_each_entry_safe(id, tmp, &device->pnp.ids, list) {
320 kfree(id->id);
321 kfree(id);
322 }
323}
324
Patrick Mochel1890a972006-12-07 20:56:31 +0800325static void acpi_device_release(struct device *dev)
326{
327 struct acpi_device *acpi_dev = to_acpi_device(dev);
328
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -0600329 acpi_free_ids(acpi_dev);
Patrick Mochel1890a972006-12-07 20:56:31 +0800330 kfree(acpi_dev);
331}
332
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800333static int acpi_device_suspend(struct device *dev, pm_message_t state)
Zhang Rui9e89dde2006-12-07 20:56:16 +0800334{
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800335 struct acpi_device *acpi_dev = to_acpi_device(dev);
336 struct acpi_driver *acpi_drv = acpi_dev->driver;
Zhang Rui9e89dde2006-12-07 20:56:16 +0800337
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800338 if (acpi_drv && acpi_drv->ops.suspend)
339 return acpi_drv->ops.suspend(acpi_dev, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 return 0;
341}
342
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800343static int acpi_device_resume(struct device *dev)
344{
345 struct acpi_device *acpi_dev = to_acpi_device(dev);
346 struct acpi_driver *acpi_drv = acpi_dev->driver;
347
348 if (acpi_drv && acpi_drv->ops.resume)
349 return acpi_drv->ops.resume(acpi_dev);
350 return 0;
351}
352
353static int acpi_bus_match(struct device *dev, struct device_driver *drv)
354{
355 struct acpi_device *acpi_dev = to_acpi_device(dev);
356 struct acpi_driver *acpi_drv = to_acpi_driver(drv);
357
Thomas Renninger29b71a12007-07-23 14:43:51 +0200358 return !acpi_match_device_ids(acpi_dev, acpi_drv->ids);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800359}
360
Kay Sievers7eff2e72007-08-14 15:15:12 +0200361static int acpi_device_uevent(struct device *dev, struct kobj_uevent_env *env)
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800362{
363 struct acpi_device *acpi_dev = to_acpi_device(dev);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200364 int len;
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800365
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +0200366 if (list_empty(&acpi_dev->pnp.ids))
367 return 0;
368
Kay Sievers7eff2e72007-08-14 15:15:12 +0200369 if (add_uevent_var(env, "MODALIAS="))
370 return -ENOMEM;
371 len = create_modalias(acpi_dev, &env->buf[env->buflen - 1],
372 sizeof(env->buf) - env->buflen);
373 if (len >= (sizeof(env->buf) - env->buflen))
374 return -ENOMEM;
375 env->buflen += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return 0;
377}
378
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000379static void acpi_device_notify(acpi_handle handle, u32 event, void *data)
380{
381 struct acpi_device *device = data;
382
383 device->driver->ops.notify(device, event);
384}
385
386static acpi_status acpi_device_notify_fixed(void *data)
387{
388 struct acpi_device *device = data;
389
Bjorn Helgaas53de5352009-08-31 22:32:20 +0000390 /* Fixed hardware devices have no handles */
391 acpi_device_notify(NULL, ACPI_FIXED_HARDWARE_EVENT, device);
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000392 return AE_OK;
393}
394
395static int acpi_device_install_notify_handler(struct acpi_device *device)
396{
397 acpi_status status;
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000398
Bjorn Helgaasccba2a32009-09-21 19:29:15 +0000399 if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000400 status =
401 acpi_install_fixed_event_handler(ACPI_EVENT_POWER_BUTTON,
402 acpi_device_notify_fixed,
403 device);
Bjorn Helgaasccba2a32009-09-21 19:29:15 +0000404 else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000405 status =
406 acpi_install_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON,
407 acpi_device_notify_fixed,
408 device);
409 else
410 status = acpi_install_notify_handler(device->handle,
411 ACPI_DEVICE_NOTIFY,
412 acpi_device_notify,
413 device);
414
415 if (ACPI_FAILURE(status))
416 return -EINVAL;
417 return 0;
418}
419
420static void acpi_device_remove_notify_handler(struct acpi_device *device)
421{
Bjorn Helgaasccba2a32009-09-21 19:29:15 +0000422 if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000423 acpi_remove_fixed_event_handler(ACPI_EVENT_POWER_BUTTON,
424 acpi_device_notify_fixed);
Bjorn Helgaasccba2a32009-09-21 19:29:15 +0000425 else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000426 acpi_remove_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON,
427 acpi_device_notify_fixed);
428 else
429 acpi_remove_notify_handler(device->handle, ACPI_DEVICE_NOTIFY,
430 acpi_device_notify);
431}
432
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800433static int acpi_bus_driver_init(struct acpi_device *, struct acpi_driver *);
434static int acpi_start_single_object(struct acpi_device *);
435static int acpi_device_probe(struct device * dev)
Zhang Rui9e89dde2006-12-07 20:56:16 +0800436{
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800437 struct acpi_device *acpi_dev = to_acpi_device(dev);
438 struct acpi_driver *acpi_drv = to_acpi_driver(dev->driver);
439 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800441 ret = acpi_bus_driver_init(acpi_dev, acpi_drv);
442 if (!ret) {
Li Shaohuac4168bf2006-12-07 20:56:41 +0800443 if (acpi_dev->bus_ops.acpi_op_start)
444 acpi_start_single_object(acpi_dev);
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000445
446 if (acpi_drv->ops.notify) {
447 ret = acpi_device_install_notify_handler(acpi_dev);
448 if (ret) {
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000449 if (acpi_drv->ops.remove)
450 acpi_drv->ops.remove(acpi_dev,
451 acpi_dev->removal_type);
452 return ret;
453 }
454 }
455
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800456 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
457 "Found driver [%s] for device [%s]\n",
458 acpi_drv->name, acpi_dev->pnp.bus_id));
459 get_device(dev);
Zhang Rui9e89dde2006-12-07 20:56:16 +0800460 }
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800461 return ret;
462}
463
464static int acpi_device_remove(struct device * dev)
465{
466 struct acpi_device *acpi_dev = to_acpi_device(dev);
467 struct acpi_driver *acpi_drv = acpi_dev->driver;
468
469 if (acpi_drv) {
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000470 if (acpi_drv->ops.notify)
471 acpi_device_remove_notify_handler(acpi_dev);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800472 if (acpi_drv->ops.remove)
Li Shaohua96333572006-12-07 20:56:46 +0800473 acpi_drv->ops.remove(acpi_dev, acpi_dev->removal_type);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800474 }
475 acpi_dev->driver = NULL;
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700476 acpi_dev->driver_data = NULL;
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800477
478 put_device(dev);
Zhang Rui9e89dde2006-12-07 20:56:16 +0800479 return 0;
480}
481
David Brownell55955aa2007-05-08 00:28:35 -0700482struct bus_type acpi_bus_type = {
Zhang Rui9e89dde2006-12-07 20:56:16 +0800483 .name = "acpi",
484 .suspend = acpi_device_suspend,
485 .resume = acpi_device_resume,
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800486 .match = acpi_bus_match,
487 .probe = acpi_device_probe,
488 .remove = acpi_device_remove,
489 .uevent = acpi_device_uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490};
491
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +0000492static int acpi_device_register(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800494 int result;
495 struct acpi_device_bus_id *acpi_device_bus_id, *new_bus_id;
496 int found = 0;
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +0000497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 /*
499 * Linkage
500 * -------
501 * Link this device to its parent and siblings.
502 */
503 INIT_LIST_HEAD(&device->children);
504 INIT_LIST_HEAD(&device->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 INIT_LIST_HEAD(&device->wakeup_list);
506
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800507 new_bus_id = kzalloc(sizeof(struct acpi_device_bus_id), GFP_KERNEL);
508 if (!new_bus_id) {
509 printk(KERN_ERR PREFIX "Memory allocation error\n");
510 return -ENOMEM;
511 }
512
Shaohua Li90905892009-04-07 10:24:29 +0800513 mutex_lock(&acpi_device_lock);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800514 /*
515 * Find suitable bus_id and instance number in acpi_bus_id_list
516 * If failed, create one and link it into acpi_bus_id_list
517 */
518 list_for_each_entry(acpi_device_bus_id, &acpi_bus_id_list, node) {
Bjorn Helgaas1131b932009-09-21 13:35:29 -0600519 if (!strcmp(acpi_device_bus_id->bus_id,
520 acpi_device_hid(device))) {
521 acpi_device_bus_id->instance_no++;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800522 found = 1;
523 kfree(new_bus_id);
524 break;
525 }
526 }
Alex Chiang0c526d92009-05-14 08:31:37 -0600527 if (!found) {
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800528 acpi_device_bus_id = new_bus_id;
Bjorn Helgaas1131b932009-09-21 13:35:29 -0600529 strcpy(acpi_device_bus_id->bus_id, acpi_device_hid(device));
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800530 acpi_device_bus_id->instance_no = 0;
531 list_add_tail(&acpi_device_bus_id->node, &acpi_bus_id_list);
532 }
Kay Sievers07944692008-10-30 01:18:59 +0100533 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 +0800534
Len Brown33b57152008-12-15 22:09:26 -0500535 if (device->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 list_add_tail(&device->node, &device->parent->children);
Len Brown33b57152008-12-15 22:09:26 -0500537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 if (device->wakeup.flags.valid)
539 list_add_tail(&device->wakeup_list, &acpi_wakeup_device_list);
Shaohua Li90905892009-04-07 10:24:29 +0800540 mutex_unlock(&acpi_device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Patrick Mochel1890a972006-12-07 20:56:31 +0800542 if (device->parent)
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +0000543 device->dev.parent = &device->parent->dev;
Patrick Mochel1890a972006-12-07 20:56:31 +0800544 device->dev.bus = &acpi_bus_type;
Patrick Mochel1890a972006-12-07 20:56:31 +0800545 device->dev.release = &acpi_device_release;
Alex Chiang8b12b922009-05-14 08:31:32 -0600546 result = device_register(&device->dev);
Alex Chiang0c526d92009-05-14 08:31:37 -0600547 if (result) {
Alex Chiang8b12b922009-05-14 08:31:32 -0600548 dev_err(&device->dev, "Error registering device\n");
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800549 goto end;
550 }
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800551
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800552 result = acpi_device_setup_files(device);
Alex Chiang0c526d92009-05-14 08:31:37 -0600553 if (result)
Kay Sievers07944692008-10-30 01:18:59 +0100554 printk(KERN_ERR PREFIX "Error creating sysfs interface for device %s\n",
555 dev_name(&device->dev));
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800556
Li Shaohua96333572006-12-07 20:56:46 +0800557 device->removal_type = ACPI_BUS_REMOVAL_NORMAL;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800558 return 0;
Alex Chiang0c526d92009-05-14 08:31:37 -0600559end:
Shaohua Li90905892009-04-07 10:24:29 +0800560 mutex_lock(&acpi_device_lock);
Len Brown33b57152008-12-15 22:09:26 -0500561 if (device->parent)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800562 list_del(&device->node);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800563 list_del(&device->wakeup_list);
Shaohua Li90905892009-04-07 10:24:29 +0800564 mutex_unlock(&acpi_device_lock);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800565 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566}
567
568static void acpi_device_unregister(struct acpi_device *device, int type)
569{
Shaohua Li90905892009-04-07 10:24:29 +0800570 mutex_lock(&acpi_device_lock);
Len Brown33b57152008-12-15 22:09:26 -0500571 if (device->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 list_del(&device->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
574 list_del(&device->wakeup_list);
Shaohua Li90905892009-04-07 10:24:29 +0800575 mutex_unlock(&acpi_device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
577 acpi_detach_data(device->handle, acpi_bus_data_handler);
Patrick Mochel1890a972006-12-07 20:56:31 +0800578
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800579 acpi_device_remove_files(device);
Patrick Mochel1890a972006-12-07 20:56:31 +0800580 device_unregister(&device->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581}
582
Zhang Rui9e89dde2006-12-07 20:56:16 +0800583/* --------------------------------------------------------------------------
584 Driver Management
585 -------------------------------------------------------------------------- */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586/**
Randy Dunlapd758a8f2006-01-06 01:31:00 -0500587 * acpi_bus_driver_init - add a device to a driver
588 * @device: the device to add and initialize
589 * @driver: driver for the device
590 *
Alex Chiang0c526d92009-05-14 08:31:37 -0600591 * Used to initialize a device via its device driver. Called whenever a
Patrick Mochel1890a972006-12-07 20:56:31 +0800592 * driver is bound to a device. Invokes the driver's add() ops.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 */
594static int
Len Brown4be44fc2005-08-05 00:44:28 -0400595acpi_bus_driver_init(struct acpi_device *device, struct acpi_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596{
Len Brown4be44fc2005-08-05 00:44:28 -0400597 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 if (!device || !driver)
Patrick Mocheld550d982006-06-27 00:41:40 -0400600 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602 if (!driver->ops.add)
Patrick Mocheld550d982006-06-27 00:41:40 -0400603 return -ENOSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
605 result = driver->ops.add(device);
606 if (result) {
607 device->driver = NULL;
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700608 device->driver_data = NULL;
Patrick Mocheld550d982006-06-27 00:41:40 -0400609 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 }
611
612 device->driver = driver;
613
614 /*
615 * TBD - Configuration Management: Assign resources to device based
616 * upon possible configuration and currently allocated resources.
617 */
618
Len Brown4be44fc2005-08-05 00:44:28 -0400619 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
620 "Driver successfully bound to device\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400621 return 0;
Rajesh Shah3fb02732005-04-28 00:25:52 -0700622}
623
Adrian Bunk8713cbe2005-09-02 17:16:48 -0400624static int acpi_start_single_object(struct acpi_device *device)
Rajesh Shah3fb02732005-04-28 00:25:52 -0700625{
626 int result = 0;
627 struct acpi_driver *driver;
628
Rajesh Shah3fb02732005-04-28 00:25:52 -0700629
630 if (!(driver = device->driver))
Patrick Mocheld550d982006-06-27 00:41:40 -0400631 return 0;
Rajesh Shah3fb02732005-04-28 00:25:52 -0700632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 if (driver->ops.start) {
634 result = driver->ops.start(device);
635 if (result && driver->ops.remove)
636 driver->ops.remove(device, ACPI_BUS_REMOVAL_NORMAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 }
638
Patrick Mocheld550d982006-06-27 00:41:40 -0400639 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640}
641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642/**
Randy Dunlapd758a8f2006-01-06 01:31:00 -0500643 * acpi_bus_register_driver - register a driver with the ACPI bus
644 * @driver: driver being registered
645 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 * Registers a driver with the ACPI bus. Searches the namespace for all
Bjorn Helgaas9d9f7492006-03-28 17:04:00 -0500647 * devices that match the driver's criteria and binds. Returns zero for
648 * success or a negative error status for failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 */
Len Brown4be44fc2005-08-05 00:44:28 -0400650int acpi_bus_register_driver(struct acpi_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651{
Patrick Mochel1890a972006-12-07 20:56:31 +0800652 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
654 if (acpi_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -0400655 return -ENODEV;
Patrick Mochel1890a972006-12-07 20:56:31 +0800656 driver->drv.name = driver->name;
657 driver->drv.bus = &acpi_bus_type;
658 driver->drv.owner = driver->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Patrick Mochel1890a972006-12-07 20:56:31 +0800660 ret = driver_register(&driver->drv);
661 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Len Brown4be44fc2005-08-05 00:44:28 -0400664EXPORT_SYMBOL(acpi_bus_register_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
666/**
Randy Dunlapd758a8f2006-01-06 01:31:00 -0500667 * acpi_bus_unregister_driver - unregisters a driver with the APIC bus
668 * @driver: driver to unregister
669 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 * Unregisters a driver with the ACPI bus. Searches the namespace for all
671 * devices that match the driver's criteria and unbinds.
672 */
Bjorn Helgaas06ea8e082006-04-27 05:25:00 -0400673void acpi_bus_unregister_driver(struct acpi_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
Patrick Mochel1890a972006-12-07 20:56:31 +0800675 driver_unregister(&driver->drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676}
Len Brown4be44fc2005-08-05 00:44:28 -0400677
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678EXPORT_SYMBOL(acpi_bus_unregister_driver);
679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680/* --------------------------------------------------------------------------
681 Device Enumeration
682 -------------------------------------------------------------------------- */
Bjorn Helgaas5c478f42009-09-21 19:29:35 +0000683static struct acpi_device *acpi_bus_get_parent(acpi_handle handle)
684{
685 acpi_status status;
686 int ret;
687 struct acpi_device *device;
688
689 /*
690 * Fixed hardware devices do not appear in the namespace and do not
691 * have handles, but we fabricate acpi_devices for them, so we have
692 * to deal with them specially.
693 */
694 if (handle == NULL)
695 return acpi_root;
696
697 do {
698 status = acpi_get_parent(handle, &handle);
699 if (status == AE_NULL_ENTRY)
700 return NULL;
701 if (ACPI_FAILURE(status))
702 return acpi_root;
703
704 ret = acpi_bus_get_device(handle, &device);
705 if (ret == 0)
706 return device;
707 } while (1);
708}
709
Len Brownc8f7a622006-07-09 17:22:28 -0400710acpi_status
711acpi_bus_get_ejd(acpi_handle handle, acpi_handle *ejd)
712{
713 acpi_status status;
714 acpi_handle tmp;
715 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
716 union acpi_object *obj;
717
718 status = acpi_get_handle(handle, "_EJD", &tmp);
719 if (ACPI_FAILURE(status))
720 return status;
721
722 status = acpi_evaluate_object(handle, "_EJD", NULL, &buffer);
723 if (ACPI_SUCCESS(status)) {
724 obj = buffer.pointer;
Holger Macht3b5fee52008-02-14 13:40:34 +0100725 status = acpi_get_handle(ACPI_ROOT_OBJECT, obj->string.pointer,
726 ejd);
Len Brownc8f7a622006-07-09 17:22:28 -0400727 kfree(buffer.pointer);
728 }
729 return status;
730}
731EXPORT_SYMBOL_GPL(acpi_bus_get_ejd);
732
Bob Moore8e4319c2009-06-29 13:43:27 +0800733void acpi_bus_data_handler(acpi_handle handle, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
735
736 /* TBD */
737
738 return;
739}
740
Zhang Rui9e89dde2006-12-07 20:56:16 +0800741static int acpi_bus_get_perf_flags(struct acpi_device *device)
742{
743 device->performance.state = ACPI_STATE_UNKNOWN;
744 return 0;
745}
746
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747static acpi_status
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100748acpi_bus_extract_wakeup_device_power_package(acpi_handle handle,
749 struct acpi_device_wakeup *wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750{
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100751 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
752 union acpi_object *package = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 union acpi_object *element = NULL;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100754 acpi_status status;
755 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100757 if (!wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 return AE_BAD_PARAMETER;
759
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100760 /* _PRW */
761 status = acpi_evaluate_object(handle, "_PRW", NULL, &buffer);
762 if (ACPI_FAILURE(status)) {
763 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PRW"));
764 return status;
765 }
766
767 package = (union acpi_object *)buffer.pointer;
768
769 if (!package || (package->package.count < 2)) {
770 status = AE_BAD_DATA;
771 goto out;
772 }
773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 element = &(package->package.elements[0]);
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100775 if (!element) {
776 status = AE_BAD_DATA;
777 goto out;
778 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 if (element->type == ACPI_TYPE_PACKAGE) {
780 if ((element->package.count < 2) ||
781 (element->package.elements[0].type !=
782 ACPI_TYPE_LOCAL_REFERENCE)
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100783 || (element->package.elements[1].type != ACPI_TYPE_INTEGER)) {
784 status = AE_BAD_DATA;
785 goto out;
786 }
787 wakeup->gpe_device =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 element->package.elements[0].reference.handle;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100789 wakeup->gpe_number =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 (u32) element->package.elements[1].integer.value;
791 } else if (element->type == ACPI_TYPE_INTEGER) {
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100792 wakeup->gpe_device = NULL;
793 wakeup->gpe_number = element->integer.value;
794 } else {
795 status = AE_BAD_DATA;
796 goto out;
797 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
799 element = &(package->package.elements[1]);
800 if (element->type != ACPI_TYPE_INTEGER) {
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100801 status = AE_BAD_DATA;
802 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 }
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100804 wakeup->sleep_state = element->integer.value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
806 if ((package->package.count - 2) > ACPI_MAX_HANDLES) {
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100807 status = AE_NO_MEMORY;
808 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 }
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100810 wakeup->resources.count = package->package.count - 2;
811 for (i = 0; i < wakeup->resources.count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 element = &(package->package.elements[i + 2]);
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100813 if (element->type != ACPI_TYPE_LOCAL_REFERENCE) {
814 status = AE_BAD_DATA;
815 goto out;
816 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100818 wakeup->resources.handles[i] = element->reference.handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 }
820
Lin Mingbba63a22010-12-13 13:39:17 +0800821 acpi_setup_gpe_for_wake(handle, wakeup->gpe_device, wakeup->gpe_number);
Rafael J. Wysocki98746472010-07-08 00:43:36 +0200822
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100823 out:
824 kfree(buffer.pointer);
825
826 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827}
828
Rafael J. Wysockif5177092010-02-17 23:41:49 +0100829static void acpi_bus_set_run_wake_flags(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830{
Thomas Renninger29b71a12007-07-23 14:43:51 +0200831 struct acpi_device_id button_device_ids[] = {
832 {"PNP0C0D", 0},
833 {"PNP0C0C", 0},
834 {"PNP0C0E", 0},
835 {"", 0},
836 };
Rafael J. Wysockif5177092010-02-17 23:41:49 +0100837 acpi_status status;
838 acpi_event_status event_status;
839
Rafael J. Wysockib67ea762010-02-17 23:44:09 +0100840 device->wakeup.flags.notifier_present = 0;
Rafael J. Wysockif5177092010-02-17 23:41:49 +0100841
842 /* Power button, Lid switch always enable wakeup */
843 if (!acpi_match_device_ids(device, button_device_ids)) {
844 device->wakeup.flags.run_wake = 1;
Rafael J. Wysockif2b56bc2011-01-06 23:34:22 +0100845 device_set_wakeup_capable(&device->dev, true);
Rafael J. Wysockif5177092010-02-17 23:41:49 +0100846 return;
847 }
848
Rafael J. Wysockie8e18c92010-07-08 00:42:51 +0200849 status = acpi_get_gpe_status(device->wakeup.gpe_device,
850 device->wakeup.gpe_number,
851 &event_status);
Rafael J. Wysockif5177092010-02-17 23:41:49 +0100852 if (status == AE_OK)
853 device->wakeup.flags.run_wake =
854 !!(event_status & ACPI_EVENT_FLAG_HANDLE);
855}
856
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +0100857static void acpi_bus_get_wakeup_device_flags(struct acpi_device *device)
Rafael J. Wysockif5177092010-02-17 23:41:49 +0100858{
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +0100859 acpi_handle temp;
Rafael J. Wysockif5177092010-02-17 23:41:49 +0100860 acpi_status status = 0;
Rafael J. Wysockif5177092010-02-17 23:41:49 +0100861 int psw_error;
Thomas Renninger29b71a12007-07-23 14:43:51 +0200862
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +0100863 /* Presence of _PRW indicates wake capable */
864 status = acpi_get_handle(device->handle, "_PRW", &temp);
865 if (ACPI_FAILURE(status))
866 return;
867
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100868 status = acpi_bus_extract_wakeup_device_power_package(device->handle,
869 &device->wakeup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 if (ACPI_FAILURE(status)) {
871 ACPI_EXCEPTION((AE_INFO, status, "Extracting _PRW package"));
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +0100872 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 }
874
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 device->wakeup.flags.valid = 1;
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200876 device->wakeup.prepare_count = 0;
Rafael J. Wysockif5177092010-02-17 23:41:49 +0100877 acpi_bus_set_run_wake_flags(device);
Zhao Yakui729b2bd2008-03-19 13:26:54 +0800878 /* Call _PSW/_DSW object to disable its ability to wake the sleeping
879 * system for the ACPI device with the _PRW object.
880 * The _PSW object is depreciated in ACPI 3.0 and is replaced by _DSW.
881 * So it is necessary to call _DSW object first. Only when it is not
882 * present will the _PSW object used.
883 */
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200884 psw_error = acpi_device_sleep_wake(device, 0, 0, 0);
885 if (psw_error)
886 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
887 "error in _DSW or _PSW evaluation\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888}
889
Rafael J. Wysockibf325f92010-11-25 00:10:44 +0100890static void acpi_bus_add_power_resource(acpi_handle handle);
891
Zhang Rui9e89dde2006-12-07 20:56:16 +0800892static int acpi_bus_get_power_flags(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893{
Zhang Rui9e89dde2006-12-07 20:56:16 +0800894 acpi_status status = 0;
895 acpi_handle handle = NULL;
896 u32 i = 0;
897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
899 /*
Zhang Rui9e89dde2006-12-07 20:56:16 +0800900 * Power Management Flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 */
Zhang Rui9e89dde2006-12-07 20:56:16 +0800902 status = acpi_get_handle(device->handle, "_PSC", &handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 if (ACPI_SUCCESS(status))
Zhang Rui9e89dde2006-12-07 20:56:16 +0800904 device->power.flags.explicit_get = 1;
905 status = acpi_get_handle(device->handle, "_IRC", &handle);
906 if (ACPI_SUCCESS(status))
907 device->power.flags.inrush_current = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
909 /*
Zhang Rui9e89dde2006-12-07 20:56:16 +0800910 * Enumerate supported power management states
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 */
Lin Ming1cc0c992012-04-23 09:03:49 +0800912 for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3_HOT; i++) {
Zhang Rui9e89dde2006-12-07 20:56:16 +0800913 struct acpi_device_power_state *ps = &device->power.states[i];
914 char object_name[5] = { '_', 'P', 'R', '0' + i, '\0' };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
Zhang Rui9e89dde2006-12-07 20:56:16 +0800916 /* Evaluate "_PRx" to se if power resources are referenced */
917 acpi_evaluate_reference(device->handle, object_name, NULL,
918 &ps->resources);
919 if (ps->resources.count) {
Rafael J. Wysockibf325f92010-11-25 00:10:44 +0100920 int j;
921
Zhang Rui9e89dde2006-12-07 20:56:16 +0800922 device->power.flags.power_resources = 1;
Rafael J. Wysockibf325f92010-11-25 00:10:44 +0100923 for (j = 0; j < ps->resources.count; j++)
924 acpi_bus_add_power_resource(ps->resources.handles[j]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Zhang Rui9e89dde2006-12-07 20:56:16 +0800927 /* Evaluate "_PSx" to see if we can do explicit sets */
928 object_name[2] = 'S';
929 status = acpi_get_handle(device->handle, object_name, &handle);
Alex He37239972012-02-21 16:58:10 +0800930 if (ACPI_SUCCESS(status))
Zhang Rui9e89dde2006-12-07 20:56:16 +0800931 ps->flags.explicit_set = 1;
Zhang Rui9e89dde2006-12-07 20:56:16 +0800932
Lin Ming1cc0c992012-04-23 09:03:49 +0800933 /*
934 * State is valid if there are means to put the device into it.
935 * D3hot is only valid if _PR3 present.
936 */
937 if (ps->resources.count ||
938 (ps->flags.explicit_set && i < ACPI_STATE_D3_HOT))
Zhang Rui9e89dde2006-12-07 20:56:16 +0800939 ps->flags.valid = 1;
940
941 ps->power = -1; /* Unknown - driver assigned */
942 ps->latency = -1; /* Unknown - driver assigned */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
Zhang Rui9e89dde2006-12-07 20:56:16 +0800945 /* Set defaults for D0 and D3 states (always valid) */
946 device->power.states[ACPI_STATE_D0].flags.valid = 1;
947 device->power.states[ACPI_STATE_D0].power = 100;
948 device->power.states[ACPI_STATE_D3].flags.valid = 1;
949 device->power.states[ACPI_STATE_D3].power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
Rafael J. Wysocki5c7dd712012-05-18 00:39:35 +0200951 /* Set D3cold's explicit_set flag if _PS3 exists. */
952 if (device->power.states[ACPI_STATE_D3_HOT].flags.explicit_set)
953 device->power.states[ACPI_STATE_D3_COLD].flags.explicit_set = 1;
954
Rafael J. Wysockiade3e7f2010-11-25 00:08:36 +0100955 acpi_bus_init_power(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
957 return 0;
958}
959
Len Brown4be44fc2005-08-05 00:44:28 -0400960static int acpi_bus_get_flags(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961{
Len Brown4be44fc2005-08-05 00:44:28 -0400962 acpi_status status = AE_OK;
963 acpi_handle temp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
966 /* Presence of _STA indicates 'dynamic_status' */
967 status = acpi_get_handle(device->handle, "_STA", &temp);
968 if (ACPI_SUCCESS(status))
969 device->flags.dynamic_status = 1;
970
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 /* Presence of _RMV indicates 'removable' */
972 status = acpi_get_handle(device->handle, "_RMV", &temp);
973 if (ACPI_SUCCESS(status))
974 device->flags.removable = 1;
975
976 /* Presence of _EJD|_EJ0 indicates 'ejectable' */
977 status = acpi_get_handle(device->handle, "_EJD", &temp);
978 if (ACPI_SUCCESS(status))
979 device->flags.ejectable = 1;
980 else {
981 status = acpi_get_handle(device->handle, "_EJ0", &temp);
982 if (ACPI_SUCCESS(status))
983 device->flags.ejectable = 1;
984 }
985
986 /* Presence of _LCK indicates 'lockable' */
987 status = acpi_get_handle(device->handle, "_LCK", &temp);
988 if (ACPI_SUCCESS(status))
989 device->flags.lockable = 1;
990
Rafael J. Wysocki7bed50c2011-04-26 11:33:18 +0200991 /* Power resources cannot be power manageable. */
992 if (device->device_type == ACPI_BUS_TYPE_POWER)
993 return 0;
994
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 /* Presence of _PS0|_PR0 indicates 'power manageable' */
996 status = acpi_get_handle(device->handle, "_PS0", &temp);
997 if (ACPI_FAILURE(status))
998 status = acpi_get_handle(device->handle, "_PR0", &temp);
999 if (ACPI_SUCCESS(status))
1000 device->flags.power_manageable = 1;
1001
Joe Perches3c5f9be42008-02-03 17:06:17 +02001002 /* TBD: Performance management */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Patrick Mocheld550d982006-06-27 00:41:40 -04001004 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005}
1006
Bjorn Helgaasc7bcb4e2009-09-21 19:29:25 +00001007static void acpi_device_get_busid(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008{
Len Brown4be44fc2005-08-05 00:44:28 -04001009 char bus_id[5] = { '?', 0 };
1010 struct acpi_buffer buffer = { sizeof(bus_id), bus_id };
1011 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
1013 /*
1014 * Bus ID
1015 * ------
1016 * The device's Bus ID is simply the object name.
1017 * TBD: Shouldn't this value be unique (within the ACPI namespace)?
1018 */
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +00001019 if (ACPI_IS_ROOT_DEVICE(device)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 strcpy(device->pnp.bus_id, "ACPI");
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +00001021 return;
1022 }
1023
1024 switch (device->device_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 case ACPI_BUS_TYPE_POWER_BUTTON:
1026 strcpy(device->pnp.bus_id, "PWRF");
1027 break;
1028 case ACPI_BUS_TYPE_SLEEP_BUTTON:
1029 strcpy(device->pnp.bus_id, "SLPF");
1030 break;
1031 default:
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +00001032 acpi_get_name(device->handle, ACPI_SINGLE_NAME, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 /* Clean up trailing underscores (if any) */
1034 for (i = 3; i > 1; i--) {
1035 if (bus_id[i] == '_')
1036 bus_id[i] = '\0';
1037 else
1038 break;
1039 }
1040 strcpy(device->pnp.bus_id, bus_id);
1041 break;
1042 }
1043}
1044
Zhang Rui54735262007-01-11 02:09:09 -05001045/*
1046 * acpi_bay_match - see if a device is an ejectable driver bay
1047 *
1048 * If an acpi object is ejectable and has one of the ACPI ATA methods defined,
1049 * then we can safely call it an ejectable drive bay
1050 */
1051static int acpi_bay_match(struct acpi_device *device){
1052 acpi_status status;
1053 acpi_handle handle;
1054 acpi_handle tmp;
1055 acpi_handle phandle;
1056
1057 handle = device->handle;
1058
1059 status = acpi_get_handle(handle, "_EJ0", &tmp);
1060 if (ACPI_FAILURE(status))
1061 return -ENODEV;
1062
1063 if ((ACPI_SUCCESS(acpi_get_handle(handle, "_GTF", &tmp))) ||
1064 (ACPI_SUCCESS(acpi_get_handle(handle, "_GTM", &tmp))) ||
1065 (ACPI_SUCCESS(acpi_get_handle(handle, "_STM", &tmp))) ||
1066 (ACPI_SUCCESS(acpi_get_handle(handle, "_SDD", &tmp))))
1067 return 0;
1068
1069 if (acpi_get_parent(handle, &phandle))
1070 return -ENODEV;
1071
1072 if ((ACPI_SUCCESS(acpi_get_handle(phandle, "_GTF", &tmp))) ||
1073 (ACPI_SUCCESS(acpi_get_handle(phandle, "_GTM", &tmp))) ||
1074 (ACPI_SUCCESS(acpi_get_handle(phandle, "_STM", &tmp))) ||
1075 (ACPI_SUCCESS(acpi_get_handle(phandle, "_SDD", &tmp))))
1076 return 0;
1077
1078 return -ENODEV;
1079}
1080
Frank Seidel3620f2f2007-12-07 13:20:34 +01001081/*
1082 * acpi_dock_match - see if a device has a _DCK method
1083 */
1084static int acpi_dock_match(struct acpi_device *device)
1085{
1086 acpi_handle tmp;
1087 return acpi_get_handle(device->handle, "_DCK", &tmp);
1088}
1089
Thomas Renninger620e1122010-10-01 10:54:00 +02001090const char *acpi_device_hid(struct acpi_device *device)
Bob Moore15b8dd52009-06-29 13:39:29 +08001091{
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001092 struct acpi_hardware_id *hid;
Bob Moore15b8dd52009-06-29 13:39:29 +08001093
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +02001094 if (list_empty(&device->pnp.ids))
1095 return dummy_hid;
1096
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001097 hid = list_first_entry(&device->pnp.ids, struct acpi_hardware_id, list);
1098 return hid->id;
1099}
1100EXPORT_SYMBOL(acpi_device_hid);
Bob Moore15b8dd52009-06-29 13:39:29 +08001101
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001102static void acpi_add_id(struct acpi_device *device, const char *dev_id)
1103{
1104 struct acpi_hardware_id *id;
Bob Moore15b8dd52009-06-29 13:39:29 +08001105
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001106 id = kmalloc(sizeof(*id), GFP_KERNEL);
1107 if (!id)
1108 return;
Bob Moore15b8dd52009-06-29 13:39:29 +08001109
Thomas Meyer581de592011-08-06 11:32:56 +02001110 id->id = kstrdup(dev_id, GFP_KERNEL);
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001111 if (!id->id) {
1112 kfree(id);
1113 return;
Bob Moore15b8dd52009-06-29 13:39:29 +08001114 }
1115
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001116 list_add_tail(&id->list, &device->pnp.ids);
Bob Moore15b8dd52009-06-29 13:39:29 +08001117}
1118
Darrick J. Wong222e82a2010-03-24 14:38:37 +01001119/*
1120 * Old IBM workstations have a DSDT bug wherein the SMBus object
1121 * lacks the SMBUS01 HID and the methods do not have the necessary "_"
1122 * prefix. Work around this.
1123 */
1124static int acpi_ibm_smbus_match(struct acpi_device *device)
1125{
1126 acpi_handle h_dummy;
1127 struct acpi_buffer path = {ACPI_ALLOCATE_BUFFER, NULL};
1128 int result;
1129
1130 if (!dmi_name_in_vendors("IBM"))
1131 return -ENODEV;
1132
1133 /* Look for SMBS object */
1134 result = acpi_get_name(device->handle, ACPI_SINGLE_NAME, &path);
1135 if (result)
1136 return result;
1137
1138 if (strcmp("SMBS", path.pointer)) {
1139 result = -ENODEV;
1140 goto out;
1141 }
1142
1143 /* Does it have the necessary (but misnamed) methods? */
1144 result = -ENODEV;
1145 if (ACPI_SUCCESS(acpi_get_handle(device->handle, "SBI", &h_dummy)) &&
1146 ACPI_SUCCESS(acpi_get_handle(device->handle, "SBR", &h_dummy)) &&
1147 ACPI_SUCCESS(acpi_get_handle(device->handle, "SBW", &h_dummy)))
1148 result = 0;
1149out:
1150 kfree(path.pointer);
1151 return result;
1152}
1153
Bjorn Helgaasc7bcb4e2009-09-21 19:29:25 +00001154static void acpi_device_set_id(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155{
Len Brown4be44fc2005-08-05 00:44:28 -04001156 acpi_status status;
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001157 struct acpi_device_info *info;
1158 struct acpica_device_id_list *cid_list;
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001159 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
Bjorn Helgaasc7bcb4e2009-09-21 19:29:25 +00001161 switch (device->device_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 case ACPI_BUS_TYPE_DEVICE:
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +00001163 if (ACPI_IS_ROOT_DEVICE(device)) {
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001164 acpi_add_id(device, ACPI_SYSTEM_HID);
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +00001165 break;
1166 }
1167
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +00001168 status = acpi_get_object_info(device->handle, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 if (ACPI_FAILURE(status)) {
Harvey Harrison96b2dd12008-03-05 18:24:51 -08001170 printk(KERN_ERR PREFIX "%s: Error reading device info\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 return;
1172 }
1173
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 if (info->valid & ACPI_VALID_HID)
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001175 acpi_add_id(device, info->hardware_id.string);
1176 if (info->valid & ACPI_VALID_CID) {
Bob Moore15b8dd52009-06-29 13:39:29 +08001177 cid_list = &info->compatible_id_list;
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001178 for (i = 0; i < cid_list->count; i++)
1179 acpi_add_id(device, cid_list->ids[i].string);
1180 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 if (info->valid & ACPI_VALID_ADR) {
1182 device->pnp.bus_address = info->address;
1183 device->flags.bus_address = 1;
1184 }
Zhang Ruiae843332006-12-07 20:57:10 +08001185
Bjorn Helgaasa83893ae2009-10-02 11:03:12 -04001186 kfree(info);
1187
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001188 /*
1189 * Some devices don't reliably have _HIDs & _CIDs, so add
1190 * synthetic HIDs to make sure drivers can find them.
1191 */
Thomas Renningerc3d6de62008-08-01 17:37:55 +02001192 if (acpi_is_video_device(device))
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001193 acpi_add_id(device, ACPI_VIDEO_HID);
Frank Seidel3620f2f2007-12-07 13:20:34 +01001194 else if (ACPI_SUCCESS(acpi_bay_match(device)))
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001195 acpi_add_id(device, ACPI_BAY_HID);
Frank Seidel3620f2f2007-12-07 13:20:34 +01001196 else if (ACPI_SUCCESS(acpi_dock_match(device)))
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001197 acpi_add_id(device, ACPI_DOCK_HID);
Darrick J. Wong222e82a2010-03-24 14:38:37 +01001198 else if (!acpi_ibm_smbus_match(device))
1199 acpi_add_id(device, ACPI_SMBUS_IBM_HID);
Bjorn Helgaasb7b30de2010-03-24 10:44:33 -06001200 else if (!acpi_device_hid(device) &&
1201 ACPI_IS_ROOT_DEVICE(device->parent)) {
1202 acpi_add_id(device, ACPI_BUS_HID); /* \_SB, LNXSYBUS */
1203 strcpy(device->pnp.device_name, ACPI_BUS_DEVICE_NAME);
1204 strcpy(device->pnp.device_class, ACPI_BUS_CLASS);
1205 }
Zhang Rui54735262007-01-11 02:09:09 -05001206
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 break;
1208 case ACPI_BUS_TYPE_POWER:
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001209 acpi_add_id(device, ACPI_POWER_HID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 break;
1211 case ACPI_BUS_TYPE_PROCESSOR:
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001212 acpi_add_id(device, ACPI_PROCESSOR_OBJECT_HID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 case ACPI_BUS_TYPE_THERMAL:
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001215 acpi_add_id(device, ACPI_THERMAL_HID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 break;
1217 case ACPI_BUS_TYPE_POWER_BUTTON:
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001218 acpi_add_id(device, ACPI_BUTTON_HID_POWERF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 break;
1220 case ACPI_BUS_TYPE_SLEEP_BUTTON:
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001221 acpi_add_id(device, ACPI_BUTTON_HID_SLEEPF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 break;
1223 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224}
1225
Bjorn Helgaasbc3b0772009-09-21 19:29:20 +00001226static int acpi_device_set_context(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227{
Bjorn Helgaasbc3b0772009-09-21 19:29:20 +00001228 acpi_status status;
1229
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 /*
1231 * Context
1232 * -------
1233 * Attach this 'struct acpi_device' to the ACPI object. This makes
Bjorn Helgaasbc3b0772009-09-21 19:29:20 +00001234 * resolutions from handle->device very efficient. Fixed hardware
1235 * devices have no handles, so we skip them.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 */
Bjorn Helgaasbc3b0772009-09-21 19:29:20 +00001237 if (!device->handle)
1238 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Bjorn Helgaasbc3b0772009-09-21 19:29:20 +00001240 status = acpi_attach_data(device->handle,
1241 acpi_bus_data_handler, device);
1242 if (ACPI_SUCCESS(status))
1243 return 0;
1244
1245 printk(KERN_ERR PREFIX "Error attaching device data\n");
1246 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247}
1248
Len Brown4be44fc2005-08-05 00:44:28 -04001249static int acpi_bus_remove(struct acpi_device *dev, int rmdevice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 if (!dev)
Patrick Mocheld550d982006-06-27 00:41:40 -04001252 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Li Shaohua96333572006-12-07 20:56:46 +08001254 dev->removal_type = ACPI_BUS_REMOVAL_EJECT;
Patrick Mochel1890a972006-12-07 20:56:31 +08001255 device_release_driver(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
1257 if (!rmdevice)
Patrick Mocheld550d982006-06-27 00:41:40 -04001258 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
Rui Zhang2786f6e2006-12-21 02:21:13 -05001260 /*
1261 * unbind _ADR-Based Devices when hot removal
1262 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 if (dev->flags.bus_address) {
1264 if ((dev->parent) && (dev->parent->ops.unbind))
1265 dev->parent->ops.unbind(dev);
1266 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 acpi_device_unregister(dev, ACPI_BUS_REMOVAL_EJECT);
1268
Patrick Mocheld550d982006-06-27 00:41:40 -04001269 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270}
1271
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001272static int acpi_add_single_object(struct acpi_device **child,
1273 acpi_handle handle, int type,
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001274 unsigned long long sta,
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001275 struct acpi_bus_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276{
Bjorn Helgaas77c24882009-09-21 19:29:30 +00001277 int result;
1278 struct acpi_device *device;
Bjorn Helgaas29aaefa2009-09-21 19:28:54 +00001279 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
Burman Yan36bcbec2006-12-19 12:56:11 -08001281 device = kzalloc(sizeof(struct acpi_device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 if (!device) {
Len Brown64684632006-06-26 23:41:38 -04001283 printk(KERN_ERR PREFIX "Memory allocation error\n");
Patrick Mocheld550d982006-06-27 00:41:40 -04001284 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001287 INIT_LIST_HEAD(&device->pnp.ids);
Bjorn Helgaascaaa6ef2009-09-21 19:29:10 +00001288 device->device_type = type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 device->handle = handle;
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001290 device->parent = acpi_bus_get_parent(handle);
Li Shaohuac4168bf2006-12-07 20:56:41 +08001291 device->bus_ops = *ops; /* workround for not call .start */
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001292 STRUCT_TO_INT(device->status) = sta;
Li Shaohuac4168bf2006-12-07 20:56:41 +08001293
Bjorn Helgaasc7bcb4e2009-09-21 19:29:25 +00001294 acpi_device_get_busid(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
1296 /*
1297 * Flags
1298 * -----
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001299 * Note that we only look for object handles -- cannot evaluate objects
1300 * until we know the device is present and properly initialized.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 */
1302 result = acpi_bus_get_flags(device);
1303 if (result)
1304 goto end;
1305
1306 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 * Initialize Device
1308 * -----------------
1309 * TBD: Synch with Core's enumeration/initialization process.
1310 */
Bjorn Helgaasc7bcb4e2009-09-21 19:29:25 +00001311 acpi_device_set_id(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
1313 /*
1314 * Power Management
1315 * ----------------
1316 */
1317 if (device->flags.power_manageable) {
1318 result = acpi_bus_get_power_flags(device);
1319 if (result)
1320 goto end;
1321 }
1322
Len Brown4be44fc2005-08-05 00:44:28 -04001323 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 * Wakeup device management
1325 *-----------------------
1326 */
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01001327 acpi_bus_get_wakeup_device_flags(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
1329 /*
1330 * Performance Management
1331 * ----------------------
1332 */
1333 if (device->flags.performance_manageable) {
1334 result = acpi_bus_get_perf_flags(device);
1335 if (result)
1336 goto end;
1337 }
1338
Bjorn Helgaasbc3b0772009-09-21 19:29:20 +00001339 if ((result = acpi_device_set_context(device)))
Len Brownf61f9252009-09-05 13:33:23 -04001340 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +00001342 result = acpi_device_register(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
1344 /*
Rui Zhang2786f6e2006-12-21 02:21:13 -05001345 * Bind _ADR-Based Devices when hot add
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 */
1347 if (device->flags.bus_address) {
1348 if (device->parent && device->parent->ops.bind)
1349 device->parent->ops.bind(device);
1350 }
1351
Alex Chiang0c526d92009-05-14 08:31:37 -06001352end:
Bjorn Helgaas29aaefa2009-09-21 19:28:54 +00001353 if (!result) {
1354 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
1355 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1356 "Adding %s [%s] parent %s\n", dev_name(&device->dev),
1357 (char *) buffer.pointer,
1358 device->parent ? dev_name(&device->parent->dev) :
1359 "(null)"));
1360 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 *child = device;
Bjorn Helgaas29aaefa2009-09-21 19:28:54 +00001362 } else
Hugh Dickins718fb0d2009-08-06 23:18:12 +00001363 acpi_device_release(&device->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
Patrick Mocheld550d982006-06-27 00:41:40 -04001365 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001368#define ACPI_STA_DEFAULT (ACPI_STA_DEVICE_PRESENT | ACPI_STA_DEVICE_ENABLED | \
1369 ACPI_STA_DEVICE_UI | ACPI_STA_DEVICE_FUNCTIONING)
1370
Rafael J. Wysockibf325f92010-11-25 00:10:44 +01001371static void acpi_bus_add_power_resource(acpi_handle handle)
1372{
1373 struct acpi_bus_ops ops = {
1374 .acpi_op_add = 1,
1375 .acpi_op_start = 1,
1376 };
1377 struct acpi_device *device = NULL;
1378
1379 acpi_bus_get_device(handle, &device);
1380 if (!device)
1381 acpi_add_single_object(&device, handle, ACPI_BUS_TYPE_POWER,
1382 ACPI_STA_DEFAULT, &ops);
1383}
1384
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001385static int acpi_bus_type_and_status(acpi_handle handle, int *type,
1386 unsigned long long *sta)
1387{
1388 acpi_status status;
1389 acpi_object_type acpi_type;
1390
1391 status = acpi_get_type(handle, &acpi_type);
1392 if (ACPI_FAILURE(status))
1393 return -ENODEV;
1394
1395 switch (acpi_type) {
1396 case ACPI_TYPE_ANY: /* for ACPI_ROOT_OBJECT */
1397 case ACPI_TYPE_DEVICE:
1398 *type = ACPI_BUS_TYPE_DEVICE;
1399 status = acpi_bus_get_status_handle(handle, sta);
1400 if (ACPI_FAILURE(status))
1401 return -ENODEV;
1402 break;
1403 case ACPI_TYPE_PROCESSOR:
1404 *type = ACPI_BUS_TYPE_PROCESSOR;
1405 status = acpi_bus_get_status_handle(handle, sta);
1406 if (ACPI_FAILURE(status))
1407 return -ENODEV;
1408 break;
1409 case ACPI_TYPE_THERMAL:
1410 *type = ACPI_BUS_TYPE_THERMAL;
1411 *sta = ACPI_STA_DEFAULT;
1412 break;
1413 case ACPI_TYPE_POWER:
1414 *type = ACPI_BUS_TYPE_POWER;
1415 *sta = ACPI_STA_DEFAULT;
1416 break;
1417 default:
1418 return -ENODEV;
1419 }
1420
1421 return 0;
1422}
1423
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001424static acpi_status acpi_bus_check_add(acpi_handle handle, u32 lvl,
1425 void *context, void **return_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426{
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001427 struct acpi_bus_ops *ops = context;
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001428 int type;
1429 unsigned long long sta;
Bjorn Helgaase3b87f82009-09-21 19:30:11 +00001430 struct acpi_device *device;
1431 acpi_status status;
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001432 int result;
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001433
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001434 result = acpi_bus_type_and_status(handle, &type, &sta);
1435 if (result)
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001436 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001438 if (!(sta & ACPI_STA_DEVICE_PRESENT) &&
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001439 !(sta & ACPI_STA_DEVICE_FUNCTIONING)) {
Rafael J. Wysocki86e4e202011-01-06 23:40:00 +01001440 struct acpi_device_wakeup wakeup;
1441 acpi_handle temp;
1442
1443 status = acpi_get_handle(handle, "_PRW", &temp);
1444 if (ACPI_SUCCESS(status))
1445 acpi_bus_extract_wakeup_device_power_package(handle,
1446 &wakeup);
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001447 return AE_CTRL_DEPTH;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001448 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
Bjorn Helgaase3b87f82009-09-21 19:30:11 +00001450 /*
1451 * We may already have an acpi_device from a previous enumeration. If
1452 * so, we needn't add it again, but we may still have to start it.
1453 */
1454 device = NULL;
1455 acpi_bus_get_device(handle, &device);
1456 if (ops->acpi_op_add && !device)
1457 acpi_add_single_object(&device, handle, type, sta, ops);
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001458
Bjorn Helgaase3b87f82009-09-21 19:30:11 +00001459 if (!device)
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001460 return AE_CTRL_DEPTH;
1461
1462 if (ops->acpi_op_start && !(ops->acpi_op_add)) {
1463 status = acpi_start_single_object(device);
1464 if (ACPI_FAILURE(status))
1465 return AE_CTRL_DEPTH;
1466 }
1467
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001468 if (!*return_value)
1469 *return_value = device;
1470 return AE_OK;
1471}
1472
1473static int acpi_bus_scan(acpi_handle handle, struct acpi_bus_ops *ops,
1474 struct acpi_device **child)
1475{
1476 acpi_status status;
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001477 void *device = NULL;
1478
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001479 status = acpi_bus_check_add(handle, 0, ops, &device);
1480 if (ACPI_SUCCESS(status))
1481 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
Lin Ming22635762009-11-13 10:06:08 +08001482 acpi_bus_check_add, NULL, ops, &device);
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001483
1484 if (child)
1485 *child = device;
Thomas Renninger77796882010-01-29 17:48:52 +01001486
1487 if (device)
1488 return 0;
1489 else
1490 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Thomas Renninger77796882010-01-29 17:48:52 +01001493/*
1494 * acpi_bus_add and acpi_bus_start
1495 *
1496 * scan a given ACPI tree and (probably recently hot-plugged)
1497 * create and add or starts found devices.
1498 *
1499 * If no devices were found -ENODEV is returned which does not
1500 * mean that this is a real error, there just have been no suitable
1501 * ACPI objects in the table trunk from which the kernel could create
1502 * a device and add/start an appropriate driver.
1503 */
1504
Rajesh Shah3fb02732005-04-28 00:25:52 -07001505int
Len Brown4be44fc2005-08-05 00:44:28 -04001506acpi_bus_add(struct acpi_device **child,
1507 struct acpi_device *parent, acpi_handle handle, int type)
Rajesh Shah3fb02732005-04-28 00:25:52 -07001508{
Rajesh Shah3fb02732005-04-28 00:25:52 -07001509 struct acpi_bus_ops ops;
1510
Li Shaohuac4168bf2006-12-07 20:56:41 +08001511 memset(&ops, 0, sizeof(ops));
1512 ops.acpi_op_add = 1;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001513
Thomas Renninger77796882010-01-29 17:48:52 +01001514 return acpi_bus_scan(handle, &ops, child);
Rajesh Shah3fb02732005-04-28 00:25:52 -07001515}
1516EXPORT_SYMBOL(acpi_bus_add);
1517
Len Brown4be44fc2005-08-05 00:44:28 -04001518int acpi_bus_start(struct acpi_device *device)
Rajesh Shah3fb02732005-04-28 00:25:52 -07001519{
Rajesh Shah3fb02732005-04-28 00:25:52 -07001520 struct acpi_bus_ops ops;
Rafael J. Wysockia2100802010-09-16 00:30:43 +02001521 int result;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001522
Thomas Renningerd2f66502010-01-29 17:48:51 +01001523 if (!device)
1524 return -EINVAL;
1525
Bjorn Helgaas8e029bf2009-09-21 19:29:40 +00001526 memset(&ops, 0, sizeof(ops));
1527 ops.acpi_op_start = 1;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001528
Rafael J. Wysockia2100802010-09-16 00:30:43 +02001529 result = acpi_bus_scan(device->handle, &ops, NULL);
1530
Lin Ming3a378982010-12-13 13:36:15 +08001531 acpi_update_all_gpes();
Rafael J. Wysockia2100802010-09-16 00:30:43 +02001532
1533 return result;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001534}
1535EXPORT_SYMBOL(acpi_bus_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
Kristen Accardiceaba662006-02-23 17:56:01 -08001537int acpi_bus_trim(struct acpi_device *start, int rmdevice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538{
Len Brown4be44fc2005-08-05 00:44:28 -04001539 acpi_status status;
1540 struct acpi_device *parent, *child;
1541 acpi_handle phandle, chandle;
1542 acpi_object_type type;
1543 u32 level = 1;
1544 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
Len Brown4be44fc2005-08-05 00:44:28 -04001546 parent = start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 phandle = start->handle;
1548 child = chandle = NULL;
1549
1550 while ((level > 0) && parent && (!err)) {
1551 status = acpi_get_next_object(ACPI_TYPE_ANY, phandle,
Len Brown4be44fc2005-08-05 00:44:28 -04001552 chandle, &chandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
1554 /*
1555 * If this scope is exhausted then move our way back up.
1556 */
1557 if (ACPI_FAILURE(status)) {
1558 level--;
1559 chandle = phandle;
1560 acpi_get_parent(phandle, &phandle);
1561 child = parent;
1562 parent = parent->parent;
1563
1564 if (level == 0)
1565 err = acpi_bus_remove(child, rmdevice);
1566 else
1567 err = acpi_bus_remove(child, 1);
1568
1569 continue;
1570 }
1571
1572 status = acpi_get_type(chandle, &type);
1573 if (ACPI_FAILURE(status)) {
1574 continue;
1575 }
1576 /*
1577 * If there is a device corresponding to chandle then
1578 * parse it (depth-first).
1579 */
1580 if (acpi_bus_get_device(chandle, &child) == 0) {
1581 level++;
1582 phandle = chandle;
1583 chandle = NULL;
1584 parent = child;
1585 }
1586 continue;
1587 }
1588 return err;
1589}
Kristen Accardiceaba662006-02-23 17:56:01 -08001590EXPORT_SYMBOL_GPL(acpi_bus_trim);
1591
Bjorn Helgaase8b945c2009-09-21 19:28:59 +00001592static int acpi_bus_scan_fixed(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593{
Len Brown4be44fc2005-08-05 00:44:28 -04001594 int result = 0;
1595 struct acpi_device *device = NULL;
Li Shaohuac4168bf2006-12-07 20:56:41 +08001596 struct acpi_bus_ops ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
Li Shaohuac4168bf2006-12-07 20:56:41 +08001598 memset(&ops, 0, sizeof(ops));
1599 ops.acpi_op_add = 1;
1600 ops.acpi_op_start = 1;
1601
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 /*
1603 * Enumerate all fixed-feature devices.
1604 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001605 if ((acpi_gbl_FADT.flags & ACPI_FADT_POWER_BUTTON) == 0) {
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001606 result = acpi_add_single_object(&device, NULL,
Li Shaohuac4168bf2006-12-07 20:56:41 +08001607 ACPI_BUS_TYPE_POWER_BUTTON,
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001608 ACPI_STA_DEFAULT,
Li Shaohuac4168bf2006-12-07 20:56:41 +08001609 &ops);
Rajesh Shah3fb02732005-04-28 00:25:52 -07001610 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001612 if ((acpi_gbl_FADT.flags & ACPI_FADT_SLEEP_BUTTON) == 0) {
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001613 result = acpi_add_single_object(&device, NULL,
Li Shaohuac4168bf2006-12-07 20:56:41 +08001614 ACPI_BUS_TYPE_SLEEP_BUTTON,
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001615 ACPI_STA_DEFAULT,
Li Shaohuac4168bf2006-12-07 20:56:41 +08001616 &ops);
Rajesh Shah3fb02732005-04-28 00:25:52 -07001617 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
Patrick Mocheld550d982006-06-27 00:41:40 -04001619 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620}
1621
Bjorn Helgaase747f272009-03-24 16:49:43 -06001622int __init acpi_scan_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623{
1624 int result;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001625 struct acpi_bus_ops ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
Li Shaohuac4168bf2006-12-07 20:56:41 +08001627 memset(&ops, 0, sizeof(ops));
1628 ops.acpi_op_add = 1;
1629 ops.acpi_op_start = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
Patrick Mochel5b327262006-05-10 10:33:00 -04001631 result = bus_register(&acpi_bus_type);
1632 if (result) {
1633 /* We don't want to quit even if we failed to add suspend/resume */
1634 printk(KERN_ERR PREFIX "Could not register bus type\n");
1635 }
1636
Rafael J. Wysocki97d9a9e2010-11-25 00:10:02 +01001637 acpi_power_init();
1638
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 * Enumerate devices in the ACPI namespace.
1641 */
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001642 result = acpi_bus_scan(ACPI_ROOT_OBJECT, &ops, &acpi_root);
Alexey Starikovskiyc04209a2008-01-01 14:12:55 -05001643
Li Shaohuac4168bf2006-12-07 20:56:41 +08001644 if (!result)
Bjorn Helgaasadc08e22009-09-21 19:29:45 +00001645 result = acpi_bus_scan_fixed();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
1647 if (result)
1648 acpi_device_unregister(acpi_root, ACPI_BUS_REMOVAL_NORMAL);
Rafael J. Wysockia2100802010-09-16 00:30:43 +02001649 else
Lin Ming3a378982010-12-13 13:36:15 +08001650 acpi_update_all_gpes();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
Patrick Mocheld550d982006-06-27 00:41:40 -04001652 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653}