blob: d1ecca2b641a97f541dfdb18f1358738025f3ba7 [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_bus_match(struct device *dev, struct device_driver *drv)
334{
335 struct acpi_device *acpi_dev = to_acpi_device(dev);
336 struct acpi_driver *acpi_drv = to_acpi_driver(drv);
337
Thomas Renninger29b71a12007-07-23 14:43:51 +0200338 return !acpi_match_device_ids(acpi_dev, acpi_drv->ids);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800339}
340
Kay Sievers7eff2e72007-08-14 15:15:12 +0200341static int acpi_device_uevent(struct device *dev, struct kobj_uevent_env *env)
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800342{
343 struct acpi_device *acpi_dev = to_acpi_device(dev);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200344 int len;
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800345
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +0200346 if (list_empty(&acpi_dev->pnp.ids))
347 return 0;
348
Kay Sievers7eff2e72007-08-14 15:15:12 +0200349 if (add_uevent_var(env, "MODALIAS="))
350 return -ENOMEM;
351 len = create_modalias(acpi_dev, &env->buf[env->buflen - 1],
352 sizeof(env->buf) - env->buflen);
353 if (len >= (sizeof(env->buf) - env->buflen))
354 return -ENOMEM;
355 env->buflen += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 return 0;
357}
358
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000359static void acpi_device_notify(acpi_handle handle, u32 event, void *data)
360{
361 struct acpi_device *device = data;
362
363 device->driver->ops.notify(device, event);
364}
365
366static acpi_status acpi_device_notify_fixed(void *data)
367{
368 struct acpi_device *device = data;
369
Bjorn Helgaas53de5352009-08-31 22:32:20 +0000370 /* Fixed hardware devices have no handles */
371 acpi_device_notify(NULL, ACPI_FIXED_HARDWARE_EVENT, device);
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000372 return AE_OK;
373}
374
375static int acpi_device_install_notify_handler(struct acpi_device *device)
376{
377 acpi_status status;
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000378
Bjorn Helgaasccba2a32009-09-21 19:29:15 +0000379 if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000380 status =
381 acpi_install_fixed_event_handler(ACPI_EVENT_POWER_BUTTON,
382 acpi_device_notify_fixed,
383 device);
Bjorn Helgaasccba2a32009-09-21 19:29:15 +0000384 else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000385 status =
386 acpi_install_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON,
387 acpi_device_notify_fixed,
388 device);
389 else
390 status = acpi_install_notify_handler(device->handle,
391 ACPI_DEVICE_NOTIFY,
392 acpi_device_notify,
393 device);
394
395 if (ACPI_FAILURE(status))
396 return -EINVAL;
397 return 0;
398}
399
400static void acpi_device_remove_notify_handler(struct acpi_device *device)
401{
Bjorn Helgaasccba2a32009-09-21 19:29:15 +0000402 if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000403 acpi_remove_fixed_event_handler(ACPI_EVENT_POWER_BUTTON,
404 acpi_device_notify_fixed);
Bjorn Helgaasccba2a32009-09-21 19:29:15 +0000405 else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000406 acpi_remove_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON,
407 acpi_device_notify_fixed);
408 else
409 acpi_remove_notify_handler(device->handle, ACPI_DEVICE_NOTIFY,
410 acpi_device_notify);
411}
412
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800413static int acpi_bus_driver_init(struct acpi_device *, struct acpi_driver *);
414static int acpi_start_single_object(struct acpi_device *);
415static int acpi_device_probe(struct device * dev)
Zhang Rui9e89dde2006-12-07 20:56:16 +0800416{
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800417 struct acpi_device *acpi_dev = to_acpi_device(dev);
418 struct acpi_driver *acpi_drv = to_acpi_driver(dev->driver);
419 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800421 ret = acpi_bus_driver_init(acpi_dev, acpi_drv);
422 if (!ret) {
Li Shaohuac4168bf2006-12-07 20:56:41 +0800423 if (acpi_dev->bus_ops.acpi_op_start)
424 acpi_start_single_object(acpi_dev);
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000425
426 if (acpi_drv->ops.notify) {
427 ret = acpi_device_install_notify_handler(acpi_dev);
428 if (ret) {
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000429 if (acpi_drv->ops.remove)
430 acpi_drv->ops.remove(acpi_dev,
431 acpi_dev->removal_type);
432 return ret;
433 }
434 }
435
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800436 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
437 "Found driver [%s] for device [%s]\n",
438 acpi_drv->name, acpi_dev->pnp.bus_id));
439 get_device(dev);
Zhang Rui9e89dde2006-12-07 20:56:16 +0800440 }
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800441 return ret;
442}
443
444static int acpi_device_remove(struct device * dev)
445{
446 struct acpi_device *acpi_dev = to_acpi_device(dev);
447 struct acpi_driver *acpi_drv = acpi_dev->driver;
448
449 if (acpi_drv) {
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000450 if (acpi_drv->ops.notify)
451 acpi_device_remove_notify_handler(acpi_dev);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800452 if (acpi_drv->ops.remove)
Li Shaohua96333572006-12-07 20:56:46 +0800453 acpi_drv->ops.remove(acpi_dev, acpi_dev->removal_type);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800454 }
455 acpi_dev->driver = NULL;
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700456 acpi_dev->driver_data = NULL;
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800457
458 put_device(dev);
Zhang Rui9e89dde2006-12-07 20:56:16 +0800459 return 0;
460}
461
David Brownell55955aa2007-05-08 00:28:35 -0700462struct bus_type acpi_bus_type = {
Zhang Rui9e89dde2006-12-07 20:56:16 +0800463 .name = "acpi",
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800464 .match = acpi_bus_match,
465 .probe = acpi_device_probe,
466 .remove = acpi_device_remove,
467 .uevent = acpi_device_uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468};
469
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +0000470static int acpi_device_register(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800472 int result;
473 struct acpi_device_bus_id *acpi_device_bus_id, *new_bus_id;
474 int found = 0;
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +0000475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 /*
477 * Linkage
478 * -------
479 * Link this device to its parent and siblings.
480 */
481 INIT_LIST_HEAD(&device->children);
482 INIT_LIST_HEAD(&device->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 INIT_LIST_HEAD(&device->wakeup_list);
484
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800485 new_bus_id = kzalloc(sizeof(struct acpi_device_bus_id), GFP_KERNEL);
486 if (!new_bus_id) {
487 printk(KERN_ERR PREFIX "Memory allocation error\n");
488 return -ENOMEM;
489 }
490
Shaohua Li90905892009-04-07 10:24:29 +0800491 mutex_lock(&acpi_device_lock);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800492 /*
493 * Find suitable bus_id and instance number in acpi_bus_id_list
494 * If failed, create one and link it into acpi_bus_id_list
495 */
496 list_for_each_entry(acpi_device_bus_id, &acpi_bus_id_list, node) {
Bjorn Helgaas1131b932009-09-21 13:35:29 -0600497 if (!strcmp(acpi_device_bus_id->bus_id,
498 acpi_device_hid(device))) {
499 acpi_device_bus_id->instance_no++;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800500 found = 1;
501 kfree(new_bus_id);
502 break;
503 }
504 }
Alex Chiang0c526d92009-05-14 08:31:37 -0600505 if (!found) {
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800506 acpi_device_bus_id = new_bus_id;
Bjorn Helgaas1131b932009-09-21 13:35:29 -0600507 strcpy(acpi_device_bus_id->bus_id, acpi_device_hid(device));
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800508 acpi_device_bus_id->instance_no = 0;
509 list_add_tail(&acpi_device_bus_id->node, &acpi_bus_id_list);
510 }
Kay Sievers07944692008-10-30 01:18:59 +0100511 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 +0800512
Len Brown33b57152008-12-15 22:09:26 -0500513 if (device->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 list_add_tail(&device->node, &device->parent->children);
Len Brown33b57152008-12-15 22:09:26 -0500515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 if (device->wakeup.flags.valid)
517 list_add_tail(&device->wakeup_list, &acpi_wakeup_device_list);
Shaohua Li90905892009-04-07 10:24:29 +0800518 mutex_unlock(&acpi_device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Patrick Mochel1890a972006-12-07 20:56:31 +0800520 if (device->parent)
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +0000521 device->dev.parent = &device->parent->dev;
Patrick Mochel1890a972006-12-07 20:56:31 +0800522 device->dev.bus = &acpi_bus_type;
Patrick Mochel1890a972006-12-07 20:56:31 +0800523 device->dev.release = &acpi_device_release;
Alex Chiang8b12b922009-05-14 08:31:32 -0600524 result = device_register(&device->dev);
Alex Chiang0c526d92009-05-14 08:31:37 -0600525 if (result) {
Alex Chiang8b12b922009-05-14 08:31:32 -0600526 dev_err(&device->dev, "Error registering device\n");
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800527 goto end;
528 }
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800529
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800530 result = acpi_device_setup_files(device);
Alex Chiang0c526d92009-05-14 08:31:37 -0600531 if (result)
Kay Sievers07944692008-10-30 01:18:59 +0100532 printk(KERN_ERR PREFIX "Error creating sysfs interface for device %s\n",
533 dev_name(&device->dev));
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800534
Li Shaohua96333572006-12-07 20:56:46 +0800535 device->removal_type = ACPI_BUS_REMOVAL_NORMAL;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800536 return 0;
Alex Chiang0c526d92009-05-14 08:31:37 -0600537end:
Shaohua Li90905892009-04-07 10:24:29 +0800538 mutex_lock(&acpi_device_lock);
Len Brown33b57152008-12-15 22:09:26 -0500539 if (device->parent)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800540 list_del(&device->node);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800541 list_del(&device->wakeup_list);
Shaohua Li90905892009-04-07 10:24:29 +0800542 mutex_unlock(&acpi_device_lock);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800543 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544}
545
546static void acpi_device_unregister(struct acpi_device *device, int type)
547{
Shaohua Li90905892009-04-07 10:24:29 +0800548 mutex_lock(&acpi_device_lock);
Len Brown33b57152008-12-15 22:09:26 -0500549 if (device->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 list_del(&device->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
552 list_del(&device->wakeup_list);
Shaohua Li90905892009-04-07 10:24:29 +0800553 mutex_unlock(&acpi_device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555 acpi_detach_data(device->handle, acpi_bus_data_handler);
Patrick Mochel1890a972006-12-07 20:56:31 +0800556
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800557 acpi_device_remove_files(device);
Patrick Mochel1890a972006-12-07 20:56:31 +0800558 device_unregister(&device->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559}
560
Zhang Rui9e89dde2006-12-07 20:56:16 +0800561/* --------------------------------------------------------------------------
562 Driver Management
563 -------------------------------------------------------------------------- */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564/**
Randy Dunlapd758a8f2006-01-06 01:31:00 -0500565 * acpi_bus_driver_init - add a device to a driver
566 * @device: the device to add and initialize
567 * @driver: driver for the device
568 *
Alex Chiang0c526d92009-05-14 08:31:37 -0600569 * Used to initialize a device via its device driver. Called whenever a
Patrick Mochel1890a972006-12-07 20:56:31 +0800570 * driver is bound to a device. Invokes the driver's add() ops.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 */
572static int
Len Brown4be44fc2005-08-05 00:44:28 -0400573acpi_bus_driver_init(struct acpi_device *device, struct acpi_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574{
Len Brown4be44fc2005-08-05 00:44:28 -0400575 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 if (!device || !driver)
Patrick Mocheld550d982006-06-27 00:41:40 -0400578 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 if (!driver->ops.add)
Patrick Mocheld550d982006-06-27 00:41:40 -0400581 return -ENOSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
583 result = driver->ops.add(device);
584 if (result) {
585 device->driver = NULL;
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700586 device->driver_data = NULL;
Patrick Mocheld550d982006-06-27 00:41:40 -0400587 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 }
589
590 device->driver = driver;
591
592 /*
593 * TBD - Configuration Management: Assign resources to device based
594 * upon possible configuration and currently allocated resources.
595 */
596
Len Brown4be44fc2005-08-05 00:44:28 -0400597 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
598 "Driver successfully bound to device\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400599 return 0;
Rajesh Shah3fb02732005-04-28 00:25:52 -0700600}
601
Adrian Bunk8713cbe2005-09-02 17:16:48 -0400602static int acpi_start_single_object(struct acpi_device *device)
Rajesh Shah3fb02732005-04-28 00:25:52 -0700603{
604 int result = 0;
605 struct acpi_driver *driver;
606
Rajesh Shah3fb02732005-04-28 00:25:52 -0700607
608 if (!(driver = device->driver))
Patrick Mocheld550d982006-06-27 00:41:40 -0400609 return 0;
Rajesh Shah3fb02732005-04-28 00:25:52 -0700610
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 if (driver->ops.start) {
612 result = driver->ops.start(device);
613 if (result && driver->ops.remove)
614 driver->ops.remove(device, ACPI_BUS_REMOVAL_NORMAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 }
616
Patrick Mocheld550d982006-06-27 00:41:40 -0400617 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618}
619
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620/**
Randy Dunlapd758a8f2006-01-06 01:31:00 -0500621 * acpi_bus_register_driver - register a driver with the ACPI bus
622 * @driver: driver being registered
623 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 * Registers a driver with the ACPI bus. Searches the namespace for all
Bjorn Helgaas9d9f7492006-03-28 17:04:00 -0500625 * devices that match the driver's criteria and binds. Returns zero for
626 * success or a negative error status for failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 */
Len Brown4be44fc2005-08-05 00:44:28 -0400628int acpi_bus_register_driver(struct acpi_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629{
Patrick Mochel1890a972006-12-07 20:56:31 +0800630 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
632 if (acpi_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -0400633 return -ENODEV;
Patrick Mochel1890a972006-12-07 20:56:31 +0800634 driver->drv.name = driver->name;
635 driver->drv.bus = &acpi_bus_type;
636 driver->drv.owner = driver->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Patrick Mochel1890a972006-12-07 20:56:31 +0800638 ret = driver_register(&driver->drv);
639 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Len Brown4be44fc2005-08-05 00:44:28 -0400642EXPORT_SYMBOL(acpi_bus_register_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
644/**
Randy Dunlapd758a8f2006-01-06 01:31:00 -0500645 * acpi_bus_unregister_driver - unregisters a driver with the APIC bus
646 * @driver: driver to unregister
647 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 * Unregisters a driver with the ACPI bus. Searches the namespace for all
649 * devices that match the driver's criteria and unbinds.
650 */
Bjorn Helgaas06ea8e082006-04-27 05:25:00 -0400651void acpi_bus_unregister_driver(struct acpi_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652{
Patrick Mochel1890a972006-12-07 20:56:31 +0800653 driver_unregister(&driver->drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654}
Len Brown4be44fc2005-08-05 00:44:28 -0400655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656EXPORT_SYMBOL(acpi_bus_unregister_driver);
657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658/* --------------------------------------------------------------------------
659 Device Enumeration
660 -------------------------------------------------------------------------- */
Bjorn Helgaas5c478f42009-09-21 19:29:35 +0000661static struct acpi_device *acpi_bus_get_parent(acpi_handle handle)
662{
663 acpi_status status;
664 int ret;
665 struct acpi_device *device;
666
667 /*
668 * Fixed hardware devices do not appear in the namespace and do not
669 * have handles, but we fabricate acpi_devices for them, so we have
670 * to deal with them specially.
671 */
672 if (handle == NULL)
673 return acpi_root;
674
675 do {
676 status = acpi_get_parent(handle, &handle);
677 if (status == AE_NULL_ENTRY)
678 return NULL;
679 if (ACPI_FAILURE(status))
680 return acpi_root;
681
682 ret = acpi_bus_get_device(handle, &device);
683 if (ret == 0)
684 return device;
685 } while (1);
686}
687
Len Brownc8f7a622006-07-09 17:22:28 -0400688acpi_status
689acpi_bus_get_ejd(acpi_handle handle, acpi_handle *ejd)
690{
691 acpi_status status;
692 acpi_handle tmp;
693 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
694 union acpi_object *obj;
695
696 status = acpi_get_handle(handle, "_EJD", &tmp);
697 if (ACPI_FAILURE(status))
698 return status;
699
700 status = acpi_evaluate_object(handle, "_EJD", NULL, &buffer);
701 if (ACPI_SUCCESS(status)) {
702 obj = buffer.pointer;
Holger Macht3b5fee52008-02-14 13:40:34 +0100703 status = acpi_get_handle(ACPI_ROOT_OBJECT, obj->string.pointer,
704 ejd);
Len Brownc8f7a622006-07-09 17:22:28 -0400705 kfree(buffer.pointer);
706 }
707 return status;
708}
709EXPORT_SYMBOL_GPL(acpi_bus_get_ejd);
710
Bob Moore8e4319c2009-06-29 13:43:27 +0800711void acpi_bus_data_handler(acpi_handle handle, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
713
714 /* TBD */
715
716 return;
717}
718
Zhang Rui9e89dde2006-12-07 20:56:16 +0800719static int acpi_bus_get_perf_flags(struct acpi_device *device)
720{
721 device->performance.state = ACPI_STATE_UNKNOWN;
722 return 0;
723}
724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725static acpi_status
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100726acpi_bus_extract_wakeup_device_power_package(acpi_handle handle,
727 struct acpi_device_wakeup *wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100729 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
730 union acpi_object *package = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 union acpi_object *element = NULL;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100732 acpi_status status;
733 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100735 if (!wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 return AE_BAD_PARAMETER;
737
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100738 /* _PRW */
739 status = acpi_evaluate_object(handle, "_PRW", NULL, &buffer);
740 if (ACPI_FAILURE(status)) {
741 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PRW"));
742 return status;
743 }
744
745 package = (union acpi_object *)buffer.pointer;
746
747 if (!package || (package->package.count < 2)) {
748 status = AE_BAD_DATA;
749 goto out;
750 }
751
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 element = &(package->package.elements[0]);
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100753 if (!element) {
754 status = AE_BAD_DATA;
755 goto out;
756 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 if (element->type == ACPI_TYPE_PACKAGE) {
758 if ((element->package.count < 2) ||
759 (element->package.elements[0].type !=
760 ACPI_TYPE_LOCAL_REFERENCE)
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100761 || (element->package.elements[1].type != ACPI_TYPE_INTEGER)) {
762 status = AE_BAD_DATA;
763 goto out;
764 }
765 wakeup->gpe_device =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 element->package.elements[0].reference.handle;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100767 wakeup->gpe_number =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 (u32) element->package.elements[1].integer.value;
769 } else if (element->type == ACPI_TYPE_INTEGER) {
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100770 wakeup->gpe_device = NULL;
771 wakeup->gpe_number = element->integer.value;
772 } else {
773 status = AE_BAD_DATA;
774 goto out;
775 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
777 element = &(package->package.elements[1]);
778 if (element->type != ACPI_TYPE_INTEGER) {
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100779 status = AE_BAD_DATA;
780 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 }
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100782 wakeup->sleep_state = element->integer.value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
784 if ((package->package.count - 2) > ACPI_MAX_HANDLES) {
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100785 status = AE_NO_MEMORY;
786 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 }
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100788 wakeup->resources.count = package->package.count - 2;
789 for (i = 0; i < wakeup->resources.count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 element = &(package->package.elements[i + 2]);
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100791 if (element->type != ACPI_TYPE_LOCAL_REFERENCE) {
792 status = AE_BAD_DATA;
793 goto out;
794 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100796 wakeup->resources.handles[i] = element->reference.handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 }
798
Lin Mingbba63a22010-12-13 13:39:17 +0800799 acpi_setup_gpe_for_wake(handle, wakeup->gpe_device, wakeup->gpe_number);
Rafael J. Wysocki98746472010-07-08 00:43:36 +0200800
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100801 out:
802 kfree(buffer.pointer);
803
804 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805}
806
Rafael J. Wysockif5177092010-02-17 23:41:49 +0100807static void acpi_bus_set_run_wake_flags(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808{
Thomas Renninger29b71a12007-07-23 14:43:51 +0200809 struct acpi_device_id button_device_ids[] = {
810 {"PNP0C0D", 0},
811 {"PNP0C0C", 0},
812 {"PNP0C0E", 0},
813 {"", 0},
814 };
Rafael J. Wysockif5177092010-02-17 23:41:49 +0100815 acpi_status status;
816 acpi_event_status event_status;
817
Rafael J. Wysockib67ea762010-02-17 23:44:09 +0100818 device->wakeup.flags.notifier_present = 0;
Rafael J. Wysockif5177092010-02-17 23:41:49 +0100819
820 /* Power button, Lid switch always enable wakeup */
821 if (!acpi_match_device_ids(device, button_device_ids)) {
822 device->wakeup.flags.run_wake = 1;
Rafael J. Wysockif2b56bc2011-01-06 23:34:22 +0100823 device_set_wakeup_capable(&device->dev, true);
Rafael J. Wysockif5177092010-02-17 23:41:49 +0100824 return;
825 }
826
Rafael J. Wysockie8e18c92010-07-08 00:42:51 +0200827 status = acpi_get_gpe_status(device->wakeup.gpe_device,
828 device->wakeup.gpe_number,
829 &event_status);
Rafael J. Wysockif5177092010-02-17 23:41:49 +0100830 if (status == AE_OK)
831 device->wakeup.flags.run_wake =
832 !!(event_status & ACPI_EVENT_FLAG_HANDLE);
833}
834
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +0100835static void acpi_bus_get_wakeup_device_flags(struct acpi_device *device)
Rafael J. Wysockif5177092010-02-17 23:41:49 +0100836{
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +0100837 acpi_handle temp;
Rafael J. Wysockif5177092010-02-17 23:41:49 +0100838 acpi_status status = 0;
Rafael J. Wysockif5177092010-02-17 23:41:49 +0100839 int psw_error;
Thomas Renninger29b71a12007-07-23 14:43:51 +0200840
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +0100841 /* Presence of _PRW indicates wake capable */
842 status = acpi_get_handle(device->handle, "_PRW", &temp);
843 if (ACPI_FAILURE(status))
844 return;
845
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100846 status = acpi_bus_extract_wakeup_device_power_package(device->handle,
847 &device->wakeup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 if (ACPI_FAILURE(status)) {
849 ACPI_EXCEPTION((AE_INFO, status, "Extracting _PRW package"));
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +0100850 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 }
852
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 device->wakeup.flags.valid = 1;
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200854 device->wakeup.prepare_count = 0;
Rafael J. Wysockif5177092010-02-17 23:41:49 +0100855 acpi_bus_set_run_wake_flags(device);
Zhao Yakui729b2bd2008-03-19 13:26:54 +0800856 /* Call _PSW/_DSW object to disable its ability to wake the sleeping
857 * system for the ACPI device with the _PRW object.
858 * The _PSW object is depreciated in ACPI 3.0 and is replaced by _DSW.
859 * So it is necessary to call _DSW object first. Only when it is not
860 * present will the _PSW object used.
861 */
Rafael J. Wysocki77e76602008-07-07 03:33:34 +0200862 psw_error = acpi_device_sleep_wake(device, 0, 0, 0);
863 if (psw_error)
864 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
865 "error in _DSW or _PSW evaluation\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866}
867
Rafael J. Wysockibf325f92010-11-25 00:10:44 +0100868static void acpi_bus_add_power_resource(acpi_handle handle);
869
Zhang Rui9e89dde2006-12-07 20:56:16 +0800870static int acpi_bus_get_power_flags(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871{
Zhang Rui9e89dde2006-12-07 20:56:16 +0800872 acpi_status status = 0;
873 acpi_handle handle = NULL;
874 u32 i = 0;
875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
877 /*
Zhang Rui9e89dde2006-12-07 20:56:16 +0800878 * Power Management Flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 */
Zhang Rui9e89dde2006-12-07 20:56:16 +0800880 status = acpi_get_handle(device->handle, "_PSC", &handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 if (ACPI_SUCCESS(status))
Zhang Rui9e89dde2006-12-07 20:56:16 +0800882 device->power.flags.explicit_get = 1;
883 status = acpi_get_handle(device->handle, "_IRC", &handle);
884 if (ACPI_SUCCESS(status))
885 device->power.flags.inrush_current = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
887 /*
Zhang Rui9e89dde2006-12-07 20:56:16 +0800888 * Enumerate supported power management states
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 */
Lin Ming1cc0c992012-04-23 09:03:49 +0800890 for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3_HOT; i++) {
Zhang Rui9e89dde2006-12-07 20:56:16 +0800891 struct acpi_device_power_state *ps = &device->power.states[i];
892 char object_name[5] = { '_', 'P', 'R', '0' + i, '\0' };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
Zhang Rui9e89dde2006-12-07 20:56:16 +0800894 /* Evaluate "_PRx" to se if power resources are referenced */
895 acpi_evaluate_reference(device->handle, object_name, NULL,
896 &ps->resources);
897 if (ps->resources.count) {
Rafael J. Wysockibf325f92010-11-25 00:10:44 +0100898 int j;
899
Zhang Rui9e89dde2006-12-07 20:56:16 +0800900 device->power.flags.power_resources = 1;
Rafael J. Wysockibf325f92010-11-25 00:10:44 +0100901 for (j = 0; j < ps->resources.count; j++)
902 acpi_bus_add_power_resource(ps->resources.handles[j]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
Zhang Rui9e89dde2006-12-07 20:56:16 +0800905 /* Evaluate "_PSx" to see if we can do explicit sets */
906 object_name[2] = 'S';
907 status = acpi_get_handle(device->handle, object_name, &handle);
Alex He37239972012-02-21 16:58:10 +0800908 if (ACPI_SUCCESS(status))
Zhang Rui9e89dde2006-12-07 20:56:16 +0800909 ps->flags.explicit_set = 1;
Zhang Rui9e89dde2006-12-07 20:56:16 +0800910
Lin Ming1cc0c992012-04-23 09:03:49 +0800911 /*
912 * State is valid if there are means to put the device into it.
913 * D3hot is only valid if _PR3 present.
914 */
915 if (ps->resources.count ||
916 (ps->flags.explicit_set && i < ACPI_STATE_D3_HOT))
Zhang Rui9e89dde2006-12-07 20:56:16 +0800917 ps->flags.valid = 1;
918
919 ps->power = -1; /* Unknown - driver assigned */
920 ps->latency = -1; /* Unknown - driver assigned */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
Zhang Rui9e89dde2006-12-07 20:56:16 +0800923 /* Set defaults for D0 and D3 states (always valid) */
924 device->power.states[ACPI_STATE_D0].flags.valid = 1;
925 device->power.states[ACPI_STATE_D0].power = 100;
926 device->power.states[ACPI_STATE_D3].flags.valid = 1;
927 device->power.states[ACPI_STATE_D3].power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
Rafael J. Wysocki5c7dd712012-05-18 00:39:35 +0200929 /* Set D3cold's explicit_set flag if _PS3 exists. */
930 if (device->power.states[ACPI_STATE_D3_HOT].flags.explicit_set)
931 device->power.states[ACPI_STATE_D3_COLD].flags.explicit_set = 1;
932
Rafael J. Wysockiade3e7f2010-11-25 00:08:36 +0100933 acpi_bus_init_power(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
935 return 0;
936}
937
Len Brown4be44fc2005-08-05 00:44:28 -0400938static int acpi_bus_get_flags(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939{
Len Brown4be44fc2005-08-05 00:44:28 -0400940 acpi_status status = AE_OK;
941 acpi_handle temp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
944 /* Presence of _STA indicates 'dynamic_status' */
945 status = acpi_get_handle(device->handle, "_STA", &temp);
946 if (ACPI_SUCCESS(status))
947 device->flags.dynamic_status = 1;
948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 /* Presence of _RMV indicates 'removable' */
950 status = acpi_get_handle(device->handle, "_RMV", &temp);
951 if (ACPI_SUCCESS(status))
952 device->flags.removable = 1;
953
954 /* Presence of _EJD|_EJ0 indicates 'ejectable' */
955 status = acpi_get_handle(device->handle, "_EJD", &temp);
956 if (ACPI_SUCCESS(status))
957 device->flags.ejectable = 1;
958 else {
959 status = acpi_get_handle(device->handle, "_EJ0", &temp);
960 if (ACPI_SUCCESS(status))
961 device->flags.ejectable = 1;
962 }
963
964 /* Presence of _LCK indicates 'lockable' */
965 status = acpi_get_handle(device->handle, "_LCK", &temp);
966 if (ACPI_SUCCESS(status))
967 device->flags.lockable = 1;
968
Rafael J. Wysocki7bed50c2011-04-26 11:33:18 +0200969 /* Power resources cannot be power manageable. */
970 if (device->device_type == ACPI_BUS_TYPE_POWER)
971 return 0;
972
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 /* Presence of _PS0|_PR0 indicates 'power manageable' */
974 status = acpi_get_handle(device->handle, "_PS0", &temp);
975 if (ACPI_FAILURE(status))
976 status = acpi_get_handle(device->handle, "_PR0", &temp);
977 if (ACPI_SUCCESS(status))
978 device->flags.power_manageable = 1;
979
Joe Perches3c5f9be42008-02-03 17:06:17 +0200980 /* TBD: Performance management */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
Patrick Mocheld550d982006-06-27 00:41:40 -0400982 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983}
984
Bjorn Helgaasc7bcb4e2009-09-21 19:29:25 +0000985static void acpi_device_get_busid(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986{
Len Brown4be44fc2005-08-05 00:44:28 -0400987 char bus_id[5] = { '?', 0 };
988 struct acpi_buffer buffer = { sizeof(bus_id), bus_id };
989 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
991 /*
992 * Bus ID
993 * ------
994 * The device's Bus ID is simply the object name.
995 * TBD: Shouldn't this value be unique (within the ACPI namespace)?
996 */
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +0000997 if (ACPI_IS_ROOT_DEVICE(device)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 strcpy(device->pnp.bus_id, "ACPI");
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +0000999 return;
1000 }
1001
1002 switch (device->device_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 case ACPI_BUS_TYPE_POWER_BUTTON:
1004 strcpy(device->pnp.bus_id, "PWRF");
1005 break;
1006 case ACPI_BUS_TYPE_SLEEP_BUTTON:
1007 strcpy(device->pnp.bus_id, "SLPF");
1008 break;
1009 default:
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +00001010 acpi_get_name(device->handle, ACPI_SINGLE_NAME, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 /* Clean up trailing underscores (if any) */
1012 for (i = 3; i > 1; i--) {
1013 if (bus_id[i] == '_')
1014 bus_id[i] = '\0';
1015 else
1016 break;
1017 }
1018 strcpy(device->pnp.bus_id, bus_id);
1019 break;
1020 }
1021}
1022
Zhang Rui54735262007-01-11 02:09:09 -05001023/*
1024 * acpi_bay_match - see if a device is an ejectable driver bay
1025 *
1026 * If an acpi object is ejectable and has one of the ACPI ATA methods defined,
1027 * then we can safely call it an ejectable drive bay
1028 */
1029static int acpi_bay_match(struct acpi_device *device){
1030 acpi_status status;
1031 acpi_handle handle;
1032 acpi_handle tmp;
1033 acpi_handle phandle;
1034
1035 handle = device->handle;
1036
1037 status = acpi_get_handle(handle, "_EJ0", &tmp);
1038 if (ACPI_FAILURE(status))
1039 return -ENODEV;
1040
1041 if ((ACPI_SUCCESS(acpi_get_handle(handle, "_GTF", &tmp))) ||
1042 (ACPI_SUCCESS(acpi_get_handle(handle, "_GTM", &tmp))) ||
1043 (ACPI_SUCCESS(acpi_get_handle(handle, "_STM", &tmp))) ||
1044 (ACPI_SUCCESS(acpi_get_handle(handle, "_SDD", &tmp))))
1045 return 0;
1046
1047 if (acpi_get_parent(handle, &phandle))
1048 return -ENODEV;
1049
1050 if ((ACPI_SUCCESS(acpi_get_handle(phandle, "_GTF", &tmp))) ||
1051 (ACPI_SUCCESS(acpi_get_handle(phandle, "_GTM", &tmp))) ||
1052 (ACPI_SUCCESS(acpi_get_handle(phandle, "_STM", &tmp))) ||
1053 (ACPI_SUCCESS(acpi_get_handle(phandle, "_SDD", &tmp))))
1054 return 0;
1055
1056 return -ENODEV;
1057}
1058
Frank Seidel3620f2f2007-12-07 13:20:34 +01001059/*
1060 * acpi_dock_match - see if a device has a _DCK method
1061 */
1062static int acpi_dock_match(struct acpi_device *device)
1063{
1064 acpi_handle tmp;
1065 return acpi_get_handle(device->handle, "_DCK", &tmp);
1066}
1067
Thomas Renninger620e1122010-10-01 10:54:00 +02001068const char *acpi_device_hid(struct acpi_device *device)
Bob Moore15b8dd52009-06-29 13:39:29 +08001069{
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001070 struct acpi_hardware_id *hid;
Bob Moore15b8dd52009-06-29 13:39:29 +08001071
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +02001072 if (list_empty(&device->pnp.ids))
1073 return dummy_hid;
1074
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001075 hid = list_first_entry(&device->pnp.ids, struct acpi_hardware_id, list);
1076 return hid->id;
1077}
1078EXPORT_SYMBOL(acpi_device_hid);
Bob Moore15b8dd52009-06-29 13:39:29 +08001079
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001080static void acpi_add_id(struct acpi_device *device, const char *dev_id)
1081{
1082 struct acpi_hardware_id *id;
Bob Moore15b8dd52009-06-29 13:39:29 +08001083
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001084 id = kmalloc(sizeof(*id), GFP_KERNEL);
1085 if (!id)
1086 return;
Bob Moore15b8dd52009-06-29 13:39:29 +08001087
Thomas Meyer581de592011-08-06 11:32:56 +02001088 id->id = kstrdup(dev_id, GFP_KERNEL);
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001089 if (!id->id) {
1090 kfree(id);
1091 return;
Bob Moore15b8dd52009-06-29 13:39:29 +08001092 }
1093
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001094 list_add_tail(&id->list, &device->pnp.ids);
Bob Moore15b8dd52009-06-29 13:39:29 +08001095}
1096
Darrick J. Wong222e82a2010-03-24 14:38:37 +01001097/*
1098 * Old IBM workstations have a DSDT bug wherein the SMBus object
1099 * lacks the SMBUS01 HID and the methods do not have the necessary "_"
1100 * prefix. Work around this.
1101 */
1102static int acpi_ibm_smbus_match(struct acpi_device *device)
1103{
1104 acpi_handle h_dummy;
1105 struct acpi_buffer path = {ACPI_ALLOCATE_BUFFER, NULL};
1106 int result;
1107
1108 if (!dmi_name_in_vendors("IBM"))
1109 return -ENODEV;
1110
1111 /* Look for SMBS object */
1112 result = acpi_get_name(device->handle, ACPI_SINGLE_NAME, &path);
1113 if (result)
1114 return result;
1115
1116 if (strcmp("SMBS", path.pointer)) {
1117 result = -ENODEV;
1118 goto out;
1119 }
1120
1121 /* Does it have the necessary (but misnamed) methods? */
1122 result = -ENODEV;
1123 if (ACPI_SUCCESS(acpi_get_handle(device->handle, "SBI", &h_dummy)) &&
1124 ACPI_SUCCESS(acpi_get_handle(device->handle, "SBR", &h_dummy)) &&
1125 ACPI_SUCCESS(acpi_get_handle(device->handle, "SBW", &h_dummy)))
1126 result = 0;
1127out:
1128 kfree(path.pointer);
1129 return result;
1130}
1131
Bjorn Helgaasc7bcb4e2009-09-21 19:29:25 +00001132static void acpi_device_set_id(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133{
Len Brown4be44fc2005-08-05 00:44:28 -04001134 acpi_status status;
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001135 struct acpi_device_info *info;
1136 struct acpica_device_id_list *cid_list;
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001137 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
Bjorn Helgaasc7bcb4e2009-09-21 19:29:25 +00001139 switch (device->device_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 case ACPI_BUS_TYPE_DEVICE:
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +00001141 if (ACPI_IS_ROOT_DEVICE(device)) {
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001142 acpi_add_id(device, ACPI_SYSTEM_HID);
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +00001143 break;
1144 }
1145
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +00001146 status = acpi_get_object_info(device->handle, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 if (ACPI_FAILURE(status)) {
Harvey Harrison96b2dd12008-03-05 18:24:51 -08001148 printk(KERN_ERR PREFIX "%s: Error reading device info\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 return;
1150 }
1151
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 if (info->valid & ACPI_VALID_HID)
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001153 acpi_add_id(device, info->hardware_id.string);
1154 if (info->valid & ACPI_VALID_CID) {
Bob Moore15b8dd52009-06-29 13:39:29 +08001155 cid_list = &info->compatible_id_list;
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001156 for (i = 0; i < cid_list->count; i++)
1157 acpi_add_id(device, cid_list->ids[i].string);
1158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 if (info->valid & ACPI_VALID_ADR) {
1160 device->pnp.bus_address = info->address;
1161 device->flags.bus_address = 1;
1162 }
Zhang Ruiae843332006-12-07 20:57:10 +08001163
Bjorn Helgaasa83893ae2009-10-02 11:03:12 -04001164 kfree(info);
1165
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001166 /*
1167 * Some devices don't reliably have _HIDs & _CIDs, so add
1168 * synthetic HIDs to make sure drivers can find them.
1169 */
Thomas Renningerc3d6de62008-08-01 17:37:55 +02001170 if (acpi_is_video_device(device))
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001171 acpi_add_id(device, ACPI_VIDEO_HID);
Frank Seidel3620f2f2007-12-07 13:20:34 +01001172 else if (ACPI_SUCCESS(acpi_bay_match(device)))
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001173 acpi_add_id(device, ACPI_BAY_HID);
Frank Seidel3620f2f2007-12-07 13:20:34 +01001174 else if (ACPI_SUCCESS(acpi_dock_match(device)))
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001175 acpi_add_id(device, ACPI_DOCK_HID);
Darrick J. Wong222e82a2010-03-24 14:38:37 +01001176 else if (!acpi_ibm_smbus_match(device))
1177 acpi_add_id(device, ACPI_SMBUS_IBM_HID);
Bjorn Helgaasb7b30de2010-03-24 10:44:33 -06001178 else if (!acpi_device_hid(device) &&
1179 ACPI_IS_ROOT_DEVICE(device->parent)) {
1180 acpi_add_id(device, ACPI_BUS_HID); /* \_SB, LNXSYBUS */
1181 strcpy(device->pnp.device_name, ACPI_BUS_DEVICE_NAME);
1182 strcpy(device->pnp.device_class, ACPI_BUS_CLASS);
1183 }
Zhang Rui54735262007-01-11 02:09:09 -05001184
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 break;
1186 case ACPI_BUS_TYPE_POWER:
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001187 acpi_add_id(device, ACPI_POWER_HID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 break;
1189 case ACPI_BUS_TYPE_PROCESSOR:
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001190 acpi_add_id(device, ACPI_PROCESSOR_OBJECT_HID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 case ACPI_BUS_TYPE_THERMAL:
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001193 acpi_add_id(device, ACPI_THERMAL_HID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 break;
1195 case ACPI_BUS_TYPE_POWER_BUTTON:
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001196 acpi_add_id(device, ACPI_BUTTON_HID_POWERF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 break;
1198 case ACPI_BUS_TYPE_SLEEP_BUTTON:
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001199 acpi_add_id(device, ACPI_BUTTON_HID_SLEEPF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 break;
1201 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202}
1203
Bjorn Helgaasbc3b0772009-09-21 19:29:20 +00001204static int acpi_device_set_context(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205{
Bjorn Helgaasbc3b0772009-09-21 19:29:20 +00001206 acpi_status status;
1207
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 /*
1209 * Context
1210 * -------
1211 * Attach this 'struct acpi_device' to the ACPI object. This makes
Bjorn Helgaasbc3b0772009-09-21 19:29:20 +00001212 * resolutions from handle->device very efficient. Fixed hardware
1213 * devices have no handles, so we skip them.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 */
Bjorn Helgaasbc3b0772009-09-21 19:29:20 +00001215 if (!device->handle)
1216 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
Bjorn Helgaasbc3b0772009-09-21 19:29:20 +00001218 status = acpi_attach_data(device->handle,
1219 acpi_bus_data_handler, device);
1220 if (ACPI_SUCCESS(status))
1221 return 0;
1222
1223 printk(KERN_ERR PREFIX "Error attaching device data\n");
1224 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225}
1226
Len Brown4be44fc2005-08-05 00:44:28 -04001227static int acpi_bus_remove(struct acpi_device *dev, int rmdevice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 if (!dev)
Patrick Mocheld550d982006-06-27 00:41:40 -04001230 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
Li Shaohua96333572006-12-07 20:56:46 +08001232 dev->removal_type = ACPI_BUS_REMOVAL_EJECT;
Patrick Mochel1890a972006-12-07 20:56:31 +08001233 device_release_driver(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
1235 if (!rmdevice)
Patrick Mocheld550d982006-06-27 00:41:40 -04001236 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Rui Zhang2786f6e2006-12-21 02:21:13 -05001238 /*
1239 * unbind _ADR-Based Devices when hot removal
1240 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 if (dev->flags.bus_address) {
1242 if ((dev->parent) && (dev->parent->ops.unbind))
1243 dev->parent->ops.unbind(dev);
1244 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 acpi_device_unregister(dev, ACPI_BUS_REMOVAL_EJECT);
1246
Patrick Mocheld550d982006-06-27 00:41:40 -04001247 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248}
1249
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001250static int acpi_add_single_object(struct acpi_device **child,
1251 acpi_handle handle, int type,
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001252 unsigned long long sta,
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001253 struct acpi_bus_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254{
Bjorn Helgaas77c24882009-09-21 19:29:30 +00001255 int result;
1256 struct acpi_device *device;
Bjorn Helgaas29aaefa2009-09-21 19:28:54 +00001257 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
Burman Yan36bcbec2006-12-19 12:56:11 -08001259 device = kzalloc(sizeof(struct acpi_device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 if (!device) {
Len Brown64684632006-06-26 23:41:38 -04001261 printk(KERN_ERR PREFIX "Memory allocation error\n");
Patrick Mocheld550d982006-06-27 00:41:40 -04001262 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001265 INIT_LIST_HEAD(&device->pnp.ids);
Bjorn Helgaascaaa6ef2009-09-21 19:29:10 +00001266 device->device_type = type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 device->handle = handle;
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001268 device->parent = acpi_bus_get_parent(handle);
Li Shaohuac4168bf2006-12-07 20:56:41 +08001269 device->bus_ops = *ops; /* workround for not call .start */
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001270 STRUCT_TO_INT(device->status) = sta;
Li Shaohuac4168bf2006-12-07 20:56:41 +08001271
Bjorn Helgaasc7bcb4e2009-09-21 19:29:25 +00001272 acpi_device_get_busid(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
1274 /*
1275 * Flags
1276 * -----
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001277 * Note that we only look for object handles -- cannot evaluate objects
1278 * until we know the device is present and properly initialized.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 */
1280 result = acpi_bus_get_flags(device);
1281 if (result)
1282 goto end;
1283
1284 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 * Initialize Device
1286 * -----------------
1287 * TBD: Synch with Core's enumeration/initialization process.
1288 */
Bjorn Helgaasc7bcb4e2009-09-21 19:29:25 +00001289 acpi_device_set_id(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
1291 /*
1292 * Power Management
1293 * ----------------
1294 */
1295 if (device->flags.power_manageable) {
1296 result = acpi_bus_get_power_flags(device);
1297 if (result)
1298 goto end;
1299 }
1300
Len Brown4be44fc2005-08-05 00:44:28 -04001301 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 * Wakeup device management
1303 *-----------------------
1304 */
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01001305 acpi_bus_get_wakeup_device_flags(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
1307 /*
1308 * Performance Management
1309 * ----------------------
1310 */
1311 if (device->flags.performance_manageable) {
1312 result = acpi_bus_get_perf_flags(device);
1313 if (result)
1314 goto end;
1315 }
1316
Bjorn Helgaasbc3b0772009-09-21 19:29:20 +00001317 if ((result = acpi_device_set_context(device)))
Len Brownf61f9252009-09-05 13:33:23 -04001318 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +00001320 result = acpi_device_register(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
1322 /*
Rui Zhang2786f6e2006-12-21 02:21:13 -05001323 * Bind _ADR-Based Devices when hot add
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 */
1325 if (device->flags.bus_address) {
1326 if (device->parent && device->parent->ops.bind)
1327 device->parent->ops.bind(device);
1328 }
1329
Alex Chiang0c526d92009-05-14 08:31:37 -06001330end:
Bjorn Helgaas29aaefa2009-09-21 19:28:54 +00001331 if (!result) {
1332 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
1333 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1334 "Adding %s [%s] parent %s\n", dev_name(&device->dev),
1335 (char *) buffer.pointer,
1336 device->parent ? dev_name(&device->parent->dev) :
1337 "(null)"));
1338 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 *child = device;
Bjorn Helgaas29aaefa2009-09-21 19:28:54 +00001340 } else
Hugh Dickins718fb0d2009-08-06 23:18:12 +00001341 acpi_device_release(&device->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
Patrick Mocheld550d982006-06-27 00:41:40 -04001343 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001346#define ACPI_STA_DEFAULT (ACPI_STA_DEVICE_PRESENT | ACPI_STA_DEVICE_ENABLED | \
1347 ACPI_STA_DEVICE_UI | ACPI_STA_DEVICE_FUNCTIONING)
1348
Rafael J. Wysockibf325f92010-11-25 00:10:44 +01001349static void acpi_bus_add_power_resource(acpi_handle handle)
1350{
1351 struct acpi_bus_ops ops = {
1352 .acpi_op_add = 1,
1353 .acpi_op_start = 1,
1354 };
1355 struct acpi_device *device = NULL;
1356
1357 acpi_bus_get_device(handle, &device);
1358 if (!device)
1359 acpi_add_single_object(&device, handle, ACPI_BUS_TYPE_POWER,
1360 ACPI_STA_DEFAULT, &ops);
1361}
1362
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001363static int acpi_bus_type_and_status(acpi_handle handle, int *type,
1364 unsigned long long *sta)
1365{
1366 acpi_status status;
1367 acpi_object_type acpi_type;
1368
1369 status = acpi_get_type(handle, &acpi_type);
1370 if (ACPI_FAILURE(status))
1371 return -ENODEV;
1372
1373 switch (acpi_type) {
1374 case ACPI_TYPE_ANY: /* for ACPI_ROOT_OBJECT */
1375 case ACPI_TYPE_DEVICE:
1376 *type = ACPI_BUS_TYPE_DEVICE;
1377 status = acpi_bus_get_status_handle(handle, sta);
1378 if (ACPI_FAILURE(status))
1379 return -ENODEV;
1380 break;
1381 case ACPI_TYPE_PROCESSOR:
1382 *type = ACPI_BUS_TYPE_PROCESSOR;
1383 status = acpi_bus_get_status_handle(handle, sta);
1384 if (ACPI_FAILURE(status))
1385 return -ENODEV;
1386 break;
1387 case ACPI_TYPE_THERMAL:
1388 *type = ACPI_BUS_TYPE_THERMAL;
1389 *sta = ACPI_STA_DEFAULT;
1390 break;
1391 case ACPI_TYPE_POWER:
1392 *type = ACPI_BUS_TYPE_POWER;
1393 *sta = ACPI_STA_DEFAULT;
1394 break;
1395 default:
1396 return -ENODEV;
1397 }
1398
1399 return 0;
1400}
1401
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001402static acpi_status acpi_bus_check_add(acpi_handle handle, u32 lvl,
1403 void *context, void **return_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404{
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001405 struct acpi_bus_ops *ops = context;
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001406 int type;
1407 unsigned long long sta;
Bjorn Helgaase3b87f82009-09-21 19:30:11 +00001408 struct acpi_device *device;
1409 acpi_status status;
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001410 int result;
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001411
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001412 result = acpi_bus_type_and_status(handle, &type, &sta);
1413 if (result)
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001414 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001416 if (!(sta & ACPI_STA_DEVICE_PRESENT) &&
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001417 !(sta & ACPI_STA_DEVICE_FUNCTIONING)) {
Rafael J. Wysocki86e4e202011-01-06 23:40:00 +01001418 struct acpi_device_wakeup wakeup;
1419 acpi_handle temp;
1420
1421 status = acpi_get_handle(handle, "_PRW", &temp);
1422 if (ACPI_SUCCESS(status))
1423 acpi_bus_extract_wakeup_device_power_package(handle,
1424 &wakeup);
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001425 return AE_CTRL_DEPTH;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001426 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
Bjorn Helgaase3b87f82009-09-21 19:30:11 +00001428 /*
1429 * We may already have an acpi_device from a previous enumeration. If
1430 * so, we needn't add it again, but we may still have to start it.
1431 */
1432 device = NULL;
1433 acpi_bus_get_device(handle, &device);
1434 if (ops->acpi_op_add && !device)
1435 acpi_add_single_object(&device, handle, type, sta, ops);
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001436
Bjorn Helgaase3b87f82009-09-21 19:30:11 +00001437 if (!device)
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001438 return AE_CTRL_DEPTH;
1439
1440 if (ops->acpi_op_start && !(ops->acpi_op_add)) {
1441 status = acpi_start_single_object(device);
1442 if (ACPI_FAILURE(status))
1443 return AE_CTRL_DEPTH;
1444 }
1445
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001446 if (!*return_value)
1447 *return_value = device;
1448 return AE_OK;
1449}
1450
1451static int acpi_bus_scan(acpi_handle handle, struct acpi_bus_ops *ops,
1452 struct acpi_device **child)
1453{
1454 acpi_status status;
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001455 void *device = NULL;
1456
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001457 status = acpi_bus_check_add(handle, 0, ops, &device);
1458 if (ACPI_SUCCESS(status))
1459 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
Lin Ming22635762009-11-13 10:06:08 +08001460 acpi_bus_check_add, NULL, ops, &device);
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001461
1462 if (child)
1463 *child = device;
Thomas Renninger77796882010-01-29 17:48:52 +01001464
1465 if (device)
1466 return 0;
1467 else
1468 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Thomas Renninger77796882010-01-29 17:48:52 +01001471/*
1472 * acpi_bus_add and acpi_bus_start
1473 *
1474 * scan a given ACPI tree and (probably recently hot-plugged)
1475 * create and add or starts found devices.
1476 *
1477 * If no devices were found -ENODEV is returned which does not
1478 * mean that this is a real error, there just have been no suitable
1479 * ACPI objects in the table trunk from which the kernel could create
1480 * a device and add/start an appropriate driver.
1481 */
1482
Rajesh Shah3fb02732005-04-28 00:25:52 -07001483int
Len Brown4be44fc2005-08-05 00:44:28 -04001484acpi_bus_add(struct acpi_device **child,
1485 struct acpi_device *parent, acpi_handle handle, int type)
Rajesh Shah3fb02732005-04-28 00:25:52 -07001486{
Rajesh Shah3fb02732005-04-28 00:25:52 -07001487 struct acpi_bus_ops ops;
1488
Li Shaohuac4168bf2006-12-07 20:56:41 +08001489 memset(&ops, 0, sizeof(ops));
1490 ops.acpi_op_add = 1;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001491
Thomas Renninger77796882010-01-29 17:48:52 +01001492 return acpi_bus_scan(handle, &ops, child);
Rajesh Shah3fb02732005-04-28 00:25:52 -07001493}
1494EXPORT_SYMBOL(acpi_bus_add);
1495
Len Brown4be44fc2005-08-05 00:44:28 -04001496int acpi_bus_start(struct acpi_device *device)
Rajesh Shah3fb02732005-04-28 00:25:52 -07001497{
Rajesh Shah3fb02732005-04-28 00:25:52 -07001498 struct acpi_bus_ops ops;
Rafael J. Wysockia2100802010-09-16 00:30:43 +02001499 int result;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001500
Thomas Renningerd2f66502010-01-29 17:48:51 +01001501 if (!device)
1502 return -EINVAL;
1503
Bjorn Helgaas8e029bf2009-09-21 19:29:40 +00001504 memset(&ops, 0, sizeof(ops));
1505 ops.acpi_op_start = 1;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001506
Rafael J. Wysockia2100802010-09-16 00:30:43 +02001507 result = acpi_bus_scan(device->handle, &ops, NULL);
1508
Lin Ming3a378982010-12-13 13:36:15 +08001509 acpi_update_all_gpes();
Rafael J. Wysockia2100802010-09-16 00:30:43 +02001510
1511 return result;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001512}
1513EXPORT_SYMBOL(acpi_bus_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
Kristen Accardiceaba662006-02-23 17:56:01 -08001515int acpi_bus_trim(struct acpi_device *start, int rmdevice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516{
Len Brown4be44fc2005-08-05 00:44:28 -04001517 acpi_status status;
1518 struct acpi_device *parent, *child;
1519 acpi_handle phandle, chandle;
1520 acpi_object_type type;
1521 u32 level = 1;
1522 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
Len Brown4be44fc2005-08-05 00:44:28 -04001524 parent = start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 phandle = start->handle;
1526 child = chandle = NULL;
1527
1528 while ((level > 0) && parent && (!err)) {
1529 status = acpi_get_next_object(ACPI_TYPE_ANY, phandle,
Len Brown4be44fc2005-08-05 00:44:28 -04001530 chandle, &chandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
1532 /*
1533 * If this scope is exhausted then move our way back up.
1534 */
1535 if (ACPI_FAILURE(status)) {
1536 level--;
1537 chandle = phandle;
1538 acpi_get_parent(phandle, &phandle);
1539 child = parent;
1540 parent = parent->parent;
1541
1542 if (level == 0)
1543 err = acpi_bus_remove(child, rmdevice);
1544 else
1545 err = acpi_bus_remove(child, 1);
1546
1547 continue;
1548 }
1549
1550 status = acpi_get_type(chandle, &type);
1551 if (ACPI_FAILURE(status)) {
1552 continue;
1553 }
1554 /*
1555 * If there is a device corresponding to chandle then
1556 * parse it (depth-first).
1557 */
1558 if (acpi_bus_get_device(chandle, &child) == 0) {
1559 level++;
1560 phandle = chandle;
1561 chandle = NULL;
1562 parent = child;
1563 }
1564 continue;
1565 }
1566 return err;
1567}
Kristen Accardiceaba662006-02-23 17:56:01 -08001568EXPORT_SYMBOL_GPL(acpi_bus_trim);
1569
Bjorn Helgaase8b945c2009-09-21 19:28:59 +00001570static int acpi_bus_scan_fixed(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571{
Len Brown4be44fc2005-08-05 00:44:28 -04001572 int result = 0;
1573 struct acpi_device *device = NULL;
Li Shaohuac4168bf2006-12-07 20:56:41 +08001574 struct acpi_bus_ops ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
Li Shaohuac4168bf2006-12-07 20:56:41 +08001576 memset(&ops, 0, sizeof(ops));
1577 ops.acpi_op_add = 1;
1578 ops.acpi_op_start = 1;
1579
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 /*
1581 * Enumerate all fixed-feature devices.
1582 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001583 if ((acpi_gbl_FADT.flags & ACPI_FADT_POWER_BUTTON) == 0) {
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001584 result = acpi_add_single_object(&device, NULL,
Li Shaohuac4168bf2006-12-07 20:56:41 +08001585 ACPI_BUS_TYPE_POWER_BUTTON,
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001586 ACPI_STA_DEFAULT,
Li Shaohuac4168bf2006-12-07 20:56:41 +08001587 &ops);
Daniel Drakec10d7a12012-05-10 00:08:43 +01001588 device_init_wakeup(&device->dev, true);
Rajesh Shah3fb02732005-04-28 00:25:52 -07001589 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001591 if ((acpi_gbl_FADT.flags & ACPI_FADT_SLEEP_BUTTON) == 0) {
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001592 result = acpi_add_single_object(&device, NULL,
Li Shaohuac4168bf2006-12-07 20:56:41 +08001593 ACPI_BUS_TYPE_SLEEP_BUTTON,
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001594 ACPI_STA_DEFAULT,
Li Shaohuac4168bf2006-12-07 20:56:41 +08001595 &ops);
Rajesh Shah3fb02732005-04-28 00:25:52 -07001596 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
Patrick Mocheld550d982006-06-27 00:41:40 -04001598 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599}
1600
Bjorn Helgaase747f272009-03-24 16:49:43 -06001601int __init acpi_scan_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602{
1603 int result;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001604 struct acpi_bus_ops ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
Li Shaohuac4168bf2006-12-07 20:56:41 +08001606 memset(&ops, 0, sizeof(ops));
1607 ops.acpi_op_add = 1;
1608 ops.acpi_op_start = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
Patrick Mochel5b327262006-05-10 10:33:00 -04001610 result = bus_register(&acpi_bus_type);
1611 if (result) {
1612 /* We don't want to quit even if we failed to add suspend/resume */
1613 printk(KERN_ERR PREFIX "Could not register bus type\n");
1614 }
1615
Rafael J. Wysocki97d9a9e2010-11-25 00:10:02 +01001616 acpi_power_init();
1617
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 * Enumerate devices in the ACPI namespace.
1620 */
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001621 result = acpi_bus_scan(ACPI_ROOT_OBJECT, &ops, &acpi_root);
Alexey Starikovskiyc04209a2008-01-01 14:12:55 -05001622
Li Shaohuac4168bf2006-12-07 20:56:41 +08001623 if (!result)
Bjorn Helgaasadc08e22009-09-21 19:29:45 +00001624 result = acpi_bus_scan_fixed();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
1626 if (result)
1627 acpi_device_unregister(acpi_root, ACPI_BUS_REMOVAL_NORMAL);
Rafael J. Wysockia2100802010-09-16 00:30:43 +02001628 else
Lin Ming3a378982010-12-13 13:36:15 +08001629 acpi_update_all_gpes();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
Patrick Mocheld550d982006-06-27 00:41:40 -04001631 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632}