blob: eb7ecb1f20324588721316875990b6f8aaf18e6b [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>
Lance Ortizd1efe3c2012-10-02 12:43:23 -060013#include <linux/nls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
15#include <acpi/acpi_drivers.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
Bjorn Helgaase60cc7a2009-03-13 12:08:26 -060017#include "internal.h"
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#define _COMPONENT ACPI_BUS_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050020ACPI_MODULE_NAME("scan");
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#define STRUCT_TO_INT(s) (*((int*)&s))
Len Brown4be44fc2005-08-05 00:44:28 -040022extern struct acpi_device *acpi_root;
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24#define ACPI_BUS_CLASS "system_bus"
Thomas Renninger29b71a12007-07-23 14:43:51 +020025#define ACPI_BUS_HID "LNXSYBUS"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#define ACPI_BUS_DEVICE_NAME "System Bus"
27
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +000028#define ACPI_IS_ROOT_DEVICE(device) (!(device)->parent)
29
Thomas Renninger620e1122010-10-01 10:54:00 +020030static const char *dummy_hid = "device";
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +020031
Mika Westerberg91e56872012-10-31 22:45:02 +010032/*
33 * The following ACPI IDs are known to be suitable for representing as
34 * platform devices.
35 */
36static const struct acpi_device_id acpi_platform_device_ids[] = {
37
Adrian Hunter142b0072012-11-23 21:11:47 +010038 { "PNP0D40" },
39
Mika Westerberg5e7779f2012-12-07 23:12:01 +010040 /* Haswell LPSS devices */
41 { "INT33C0", 0 },
42 { "INT33C1", 0 },
43 { "INT33C2", 0 },
44 { "INT33C3", 0 },
45 { "INT33C4", 0 },
46 { "INT33C5", 0 },
47 { "INT33C6", 0 },
48 { "INT33C7", 0 },
49
Mika Westerberg91e56872012-10-31 22:45:02 +010050 { }
51};
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053static LIST_HEAD(acpi_device_list);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +080054static LIST_HEAD(acpi_bus_id_list);
Shaohua Li90905892009-04-07 10:24:29 +080055DEFINE_MUTEX(acpi_device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056LIST_HEAD(acpi_wakeup_device_list);
57
Zhang Ruie49bd2dd2006-12-08 17:23:43 +080058struct acpi_device_bus_id{
Zhang Ruibb095852007-01-04 15:03:18 +080059 char bus_id[15];
Zhang Ruie49bd2dd2006-12-08 17:23:43 +080060 unsigned int instance_no;
61 struct list_head node;
62};
Thomas Renninger29b71a12007-07-23 14:43:51 +020063
64/*
65 * Creates hid/cid(s) string needed for modalias and uevent
66 * e.g. on a device with hid:IBM0001 and cid:ACPI0001 you get:
67 * char *modalias: "acpi:IBM0001:ACPI0001"
68*/
Adrian Bunkb3e572d2007-08-14 23:22:35 +020069static int create_modalias(struct acpi_device *acpi_dev, char *modalias,
70 int size)
71{
Thomas Renninger29b71a12007-07-23 14:43:51 +020072 int len;
Zhang Rui5c9fcb52008-03-20 16:40:32 +080073 int count;
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -060074 struct acpi_hardware_id *id;
Thomas Renninger29b71a12007-07-23 14:43:51 +020075
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +020076 if (list_empty(&acpi_dev->pnp.ids))
77 return 0;
78
Zhang Rui5c9fcb52008-03-20 16:40:32 +080079 len = snprintf(modalias, size, "acpi:");
Thomas Renninger29b71a12007-07-23 14:43:51 +020080 size -= len;
81
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -060082 list_for_each_entry(id, &acpi_dev->pnp.ids, list) {
83 count = snprintf(&modalias[len], size, "%s:", id->id);
Zhang Rui5c9fcb52008-03-20 16:40:32 +080084 if (count < 0 || count >= size)
85 return -EINVAL;
86 len += count;
87 size -= count;
88 }
89
Thomas Renninger29b71a12007-07-23 14:43:51 +020090 modalias[len] = '\0';
91 return len;
92}
93
94static ssize_t
95acpi_device_modalias_show(struct device *dev, struct device_attribute *attr, char *buf) {
96 struct acpi_device *acpi_dev = to_acpi_device(dev);
97 int len;
98
99 /* Device has no HID and no CID or string is >1024 */
100 len = create_modalias(acpi_dev, buf, 1024);
101 if (len <= 0)
102 return 0;
103 buf[len++] = '\n';
104 return len;
105}
106static DEVICE_ATTR(modalias, 0444, acpi_device_modalias_show, NULL);
107
Toshi Kanic4753e52012-05-23 20:25:20 -0600108/**
109 * acpi_bus_hot_remove_device: hot-remove a device and its children
110 * @context: struct acpi_eject_event pointer (freed in this func)
111 *
112 * Hot-remove a device and its children. This function frees up the
113 * memory space passed by arg context, so that the caller may call
114 * this function asynchronously through acpi_os_hotplug_execute().
115 */
116void acpi_bus_hot_remove_device(void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
Toshi Kanic4753e52012-05-23 20:25:20 -0600118 struct acpi_eject_event *ej_event = (struct acpi_eject_event *) context;
Zhang Rui26d46862008-04-29 02:35:48 -0400119 struct acpi_device *device;
Toshi Kanic4753e52012-05-23 20:25:20 -0600120 acpi_handle handle = ej_event->handle;
Toshi Kanib3c450c2012-10-26 13:38:57 +0200121 acpi_handle temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 struct acpi_object_list arg_list;
123 union acpi_object arg;
124 acpi_status status = AE_OK;
Toshi Kanic4753e52012-05-23 20:25:20 -0600125 u32 ost_code = ACPI_OST_SC_NON_SPECIFIC_FAILURE; /* default */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Zhang Rui26d46862008-04-29 02:35:48 -0400127 if (acpi_bus_get_device(handle, &device))
Toshi Kanic4753e52012-05-23 20:25:20 -0600128 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Zhang Rui26d46862008-04-29 02:35:48 -0400130 if (!device)
Toshi Kanic4753e52012-05-23 20:25:20 -0600131 goto err_out;
Zhang Rui26d46862008-04-29 02:35:48 -0400132
133 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Kay Sievers07944692008-10-30 01:18:59 +0100134 "Hot-removing device %s...\n", dev_name(&device->dev)));
Zhang Rui26d46862008-04-29 02:35:48 -0400135
136 if (acpi_bus_trim(device, 1)) {
Lin Ming55ac9a02008-09-28 14:51:56 +0800137 printk(KERN_ERR PREFIX
138 "Removing device failed\n");
Toshi Kanic4753e52012-05-23 20:25:20 -0600139 goto err_out;
Zhang Rui26d46862008-04-29 02:35:48 -0400140 }
141
Toshi Kanib3c450c2012-10-26 13:38:57 +0200142 /* device has been freed */
143 device = NULL;
144
Zhang Rui26d46862008-04-29 02:35:48 -0400145 /* power off device */
146 status = acpi_evaluate_object(handle, "_PS3", NULL, NULL);
147 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND)
Lin Ming55ac9a02008-09-28 14:51:56 +0800148 printk(KERN_WARNING PREFIX
149 "Power-off device failed\n");
Zhang Rui26d46862008-04-29 02:35:48 -0400150
Toshi Kanib3c450c2012-10-26 13:38:57 +0200151 if (ACPI_SUCCESS(acpi_get_handle(handle, "_LCK", &temp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 arg_list.count = 1;
153 arg_list.pointer = &arg;
154 arg.type = ACPI_TYPE_INTEGER;
155 arg.integer.value = 0;
156 acpi_evaluate_object(handle, "_LCK", &arg_list, NULL);
157 }
158
159 arg_list.count = 1;
160 arg_list.pointer = &arg;
161 arg.type = ACPI_TYPE_INTEGER;
162 arg.integer.value = 1;
163
164 /*
165 * TBD: _EJD support.
166 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 status = acpi_evaluate_object(handle, "_EJ0", &arg_list, NULL);
Toshi Kanic4753e52012-05-23 20:25:20 -0600168 if (ACPI_FAILURE(status)) {
169 if (status != AE_NOT_FOUND)
170 printk(KERN_WARNING PREFIX
171 "Eject device failed\n");
172 goto err_out;
173 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Toshi Kanic4753e52012-05-23 20:25:20 -0600175 kfree(context);
176 return;
177
178err_out:
179 /* Inform firmware the hot-remove operation has completed w/ error */
180 (void) acpi_evaluate_hotplug_ost(handle,
181 ej_event->event, ost_code, NULL);
182 kfree(context);
Zhang Ruic8d72a52009-06-22 11:31:16 +0800183 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184}
Toshi Kani61622ac2012-11-01 14:42:12 +0000185EXPORT_SYMBOL(acpi_bus_hot_remove_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187static ssize_t
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800188acpi_eject_store(struct device *d, struct device_attribute *attr,
189 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
Len Brown4be44fc2005-08-05 00:44:28 -0400191 int ret = count;
Len Brown4be44fc2005-08-05 00:44:28 -0400192 acpi_status status;
Len Brown4be44fc2005-08-05 00:44:28 -0400193 acpi_object_type type = 0;
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800194 struct acpi_device *acpi_device = to_acpi_device(d);
Toshi Kanic4753e52012-05-23 20:25:20 -0600195 struct acpi_eject_event *ej_event;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197 if ((!count) || (buf[0] != '1')) {
198 return -EINVAL;
199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200#ifndef FORCE_EJECT
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800201 if (acpi_device->driver == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 ret = -ENODEV;
203 goto err;
204 }
205#endif
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800206 status = acpi_get_type(acpi_device->handle, &type);
207 if (ACPI_FAILURE(status) || (!acpi_device->flags.ejectable)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 ret = -ENODEV;
209 goto err;
210 }
211
Toshi Kanic4753e52012-05-23 20:25:20 -0600212 ej_event = kmalloc(sizeof(*ej_event), GFP_KERNEL);
213 if (!ej_event) {
214 ret = -ENOMEM;
215 goto err;
216 }
217
218 ej_event->handle = acpi_device->handle;
219 if (acpi_device->flags.eject_pending) {
220 /* event originated from ACPI eject notification */
221 ej_event->event = ACPI_NOTIFY_EJECT_REQUEST;
222 acpi_device->flags.eject_pending = 0;
223 } else {
224 /* event originated from user */
225 ej_event->event = ACPI_OST_EC_OSPM_EJECT;
226 (void) acpi_evaluate_hotplug_ost(ej_event->handle,
227 ej_event->event, ACPI_OST_SC_EJECT_IN_PROGRESS, NULL);
228 }
229
230 acpi_os_hotplug_execute(acpi_bus_hot_remove_device, (void *)ej_event);
Alok N Kataria74523c92008-06-13 12:54:24 -0400231err:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
234
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800235static DEVICE_ATTR(eject, 0200, NULL, acpi_eject_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800237static ssize_t
238acpi_device_hid_show(struct device *dev, struct device_attribute *attr, char *buf) {
239 struct acpi_device *acpi_dev = to_acpi_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Bjorn Helgaasea8d82f2009-09-21 13:35:09 -0600241 return sprintf(buf, "%s\n", acpi_device_hid(acpi_dev));
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800242}
243static DEVICE_ATTR(hid, 0444, acpi_device_hid_show, NULL);
244
Lv Zheng923d4a42012-10-30 14:43:26 +0100245static ssize_t acpi_device_uid_show(struct device *dev,
246 struct device_attribute *attr, char *buf)
247{
248 struct acpi_device *acpi_dev = to_acpi_device(dev);
249
250 return sprintf(buf, "%s\n", acpi_dev->pnp.unique_id);
251}
252static DEVICE_ATTR(uid, 0444, acpi_device_uid_show, NULL);
253
254static ssize_t acpi_device_adr_show(struct device *dev,
255 struct device_attribute *attr, char *buf)
256{
257 struct acpi_device *acpi_dev = to_acpi_device(dev);
258
259 return sprintf(buf, "0x%08x\n",
260 (unsigned int)(acpi_dev->pnp.bus_address));
261}
262static DEVICE_ATTR(adr, 0444, acpi_device_adr_show, NULL);
263
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800264static ssize_t
265acpi_device_path_show(struct device *dev, struct device_attribute *attr, char *buf) {
266 struct acpi_device *acpi_dev = to_acpi_device(dev);
267 struct acpi_buffer path = {ACPI_ALLOCATE_BUFFER, NULL};
268 int result;
269
270 result = acpi_get_name(acpi_dev->handle, ACPI_FULL_PATHNAME, &path);
Alex Chiang0c526d92009-05-14 08:31:37 -0600271 if (result)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800272 goto end;
273
274 result = sprintf(buf, "%s\n", (char*)path.pointer);
275 kfree(path.pointer);
Alex Chiang0c526d92009-05-14 08:31:37 -0600276end:
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800277 return result;
278}
279static DEVICE_ATTR(path, 0444, acpi_device_path_show, NULL);
280
Lance Ortizd1efe3c2012-10-02 12:43:23 -0600281/* sysfs file that shows description text from the ACPI _STR method */
282static ssize_t description_show(struct device *dev,
283 struct device_attribute *attr,
284 char *buf) {
285 struct acpi_device *acpi_dev = to_acpi_device(dev);
286 int result;
287
288 if (acpi_dev->pnp.str_obj == NULL)
289 return 0;
290
291 /*
292 * The _STR object contains a Unicode identifier for a device.
293 * We need to convert to utf-8 so it can be displayed.
294 */
295 result = utf16s_to_utf8s(
296 (wchar_t *)acpi_dev->pnp.str_obj->buffer.pointer,
297 acpi_dev->pnp.str_obj->buffer.length,
298 UTF16_LITTLE_ENDIAN, buf,
299 PAGE_SIZE);
300
301 buf[result++] = '\n';
302
303 return result;
304}
305static DEVICE_ATTR(description, 0444, description_show, NULL);
306
Yasuaki Ishimatsubb74ac22012-11-16 02:56:59 +0100307static ssize_t
308acpi_device_sun_show(struct device *dev, struct device_attribute *attr,
309 char *buf) {
310 struct acpi_device *acpi_dev = to_acpi_device(dev);
311
312 return sprintf(buf, "%lu\n", acpi_dev->pnp.sun);
313}
314static DEVICE_ATTR(sun, 0444, acpi_device_sun_show, NULL);
315
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800316static int acpi_device_setup_files(struct acpi_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
Lance Ortizd1efe3c2012-10-02 12:43:23 -0600318 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800319 acpi_status status;
320 acpi_handle temp;
Yasuaki Ishimatsubb74ac22012-11-16 02:56:59 +0100321 unsigned long long sun;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800322 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800324 /*
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800325 * Devices gotten from FADT don't have a "path" attribute
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800326 */
Alex Chiang0c526d92009-05-14 08:31:37 -0600327 if (dev->handle) {
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800328 result = device_create_file(&dev->dev, &dev_attr_path);
Alex Chiang0c526d92009-05-14 08:31:37 -0600329 if (result)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800330 goto end;
331 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +0200333 if (!list_empty(&dev->pnp.ids)) {
334 result = device_create_file(&dev->dev, &dev_attr_hid);
335 if (result)
336 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +0200338 result = device_create_file(&dev->dev, &dev_attr_modalias);
339 if (result)
340 goto end;
341 }
Thomas Renninger29b71a12007-07-23 14:43:51 +0200342
Lance Ortizd1efe3c2012-10-02 12:43:23 -0600343 /*
344 * If device has _STR, 'description' file is created
345 */
346 status = acpi_get_handle(dev->handle, "_STR", &temp);
347 if (ACPI_SUCCESS(status)) {
348 status = acpi_evaluate_object(dev->handle, "_STR",
349 NULL, &buffer);
350 if (ACPI_FAILURE(status))
351 buffer.pointer = NULL;
352 dev->pnp.str_obj = buffer.pointer;
353 result = device_create_file(&dev->dev, &dev_attr_description);
354 if (result)
355 goto end;
356 }
357
Lv Zheng923d4a42012-10-30 14:43:26 +0100358 if (dev->flags.bus_address)
359 result = device_create_file(&dev->dev, &dev_attr_adr);
360 if (dev->pnp.unique_id)
361 result = device_create_file(&dev->dev, &dev_attr_uid);
362
Yasuaki Ishimatsubb74ac22012-11-16 02:56:59 +0100363 status = acpi_evaluate_integer(dev->handle, "_SUN", NULL, &sun);
364 if (ACPI_SUCCESS(status)) {
365 dev->pnp.sun = (unsigned long)sun;
366 result = device_create_file(&dev->dev, &dev_attr_sun);
367 if (result)
368 goto end;
369 } else {
370 dev->pnp.sun = (unsigned long)-1;
371 }
372
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800373 /*
374 * If device has _EJ0, 'eject' file is created that is used to trigger
375 * hot-removal function from userland.
376 */
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800377 status = acpi_get_handle(dev->handle, "_EJ0", &temp);
378 if (ACPI_SUCCESS(status))
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800379 result = device_create_file(&dev->dev, &dev_attr_eject);
Alex Chiang0c526d92009-05-14 08:31:37 -0600380end:
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800381 return result;
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800382}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800384static void acpi_device_remove_files(struct acpi_device *dev)
385{
386 acpi_status status;
387 acpi_handle temp;
388
389 /*
Lance Ortizd1efe3c2012-10-02 12:43:23 -0600390 * If device has _STR, remove 'description' file
391 */
392 status = acpi_get_handle(dev->handle, "_STR", &temp);
393 if (ACPI_SUCCESS(status)) {
394 kfree(dev->pnp.str_obj);
395 device_remove_file(&dev->dev, &dev_attr_description);
396 }
397 /*
398 * If device has _EJ0, remove 'eject' file.
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800399 */
400 status = acpi_get_handle(dev->handle, "_EJ0", &temp);
401 if (ACPI_SUCCESS(status))
402 device_remove_file(&dev->dev, &dev_attr_eject);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800403
Yasuaki Ishimatsubb74ac22012-11-16 02:56:59 +0100404 status = acpi_get_handle(dev->handle, "_SUN", &temp);
405 if (ACPI_SUCCESS(status))
406 device_remove_file(&dev->dev, &dev_attr_sun);
407
Lv Zheng923d4a42012-10-30 14:43:26 +0100408 if (dev->pnp.unique_id)
409 device_remove_file(&dev->dev, &dev_attr_uid);
410 if (dev->flags.bus_address)
411 device_remove_file(&dev->dev, &dev_attr_adr);
Bjorn Helgaas1131b932009-09-21 13:35:29 -0600412 device_remove_file(&dev->dev, &dev_attr_modalias);
413 device_remove_file(&dev->dev, &dev_attr_hid);
Alex Chiang0c526d92009-05-14 08:31:37 -0600414 if (dev->handle)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800415 device_remove_file(&dev->dev, &dev_attr_path);
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800416}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417/* --------------------------------------------------------------------------
Zhang Rui9e89dde2006-12-07 20:56:16 +0800418 ACPI Bus operations
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 -------------------------------------------------------------------------- */
Thomas Renninger29b71a12007-07-23 14:43:51 +0200420
Mika Westerbergcf761af2012-10-31 22:44:41 +0100421static const struct acpi_device_id *__acpi_match_device(
422 struct acpi_device *device, const struct acpi_device_id *ids)
Thomas Renninger29b71a12007-07-23 14:43:51 +0200423{
424 const struct acpi_device_id *id;
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -0600425 struct acpi_hardware_id *hwid;
Thomas Renninger29b71a12007-07-23 14:43:51 +0200426
Zhao Yakui39a0ad82008-08-11 13:40:22 +0800427 /*
428 * If the device is not present, it is unnecessary to load device
429 * driver for it.
430 */
431 if (!device->status.present)
Mika Westerbergcf761af2012-10-31 22:44:41 +0100432 return NULL;
Zhao Yakui39a0ad82008-08-11 13:40:22 +0800433
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -0600434 for (id = ids; id->id[0]; id++)
435 list_for_each_entry(hwid, &device->pnp.ids, list)
436 if (!strcmp((char *) id->id, hwid->id))
Mika Westerbergcf761af2012-10-31 22:44:41 +0100437 return id;
Thomas Renninger29b71a12007-07-23 14:43:51 +0200438
Mika Westerbergcf761af2012-10-31 22:44:41 +0100439 return NULL;
440}
441
442/**
443 * acpi_match_device - Match a struct device against a given list of ACPI IDs
444 * @ids: Array of struct acpi_device_id object to match against.
445 * @dev: The device structure to match.
446 *
447 * Check if @dev has a valid ACPI handle and if there is a struct acpi_device
448 * object for that handle and use that object to match against a given list of
449 * device IDs.
450 *
451 * Return a pointer to the first matching ID on success or %NULL on failure.
452 */
453const struct acpi_device_id *acpi_match_device(const struct acpi_device_id *ids,
454 const struct device *dev)
455{
456 struct acpi_device *adev;
457
Rafael J. Wysocki95f8a082012-11-21 00:21:50 +0100458 if (!ids || !ACPI_HANDLE(dev)
459 || ACPI_FAILURE(acpi_bus_get_device(ACPI_HANDLE(dev), &adev)))
Mika Westerbergcf761af2012-10-31 22:44:41 +0100460 return NULL;
461
462 return __acpi_match_device(adev, ids);
463}
464EXPORT_SYMBOL_GPL(acpi_match_device);
465
466int acpi_match_device_ids(struct acpi_device *device,
467 const struct acpi_device_id *ids)
468{
469 return __acpi_match_device(device, ids) ? 0 : -ENOENT;
Thomas Renninger29b71a12007-07-23 14:43:51 +0200470}
471EXPORT_SYMBOL(acpi_match_device_ids);
472
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -0600473static void acpi_free_ids(struct acpi_device *device)
474{
475 struct acpi_hardware_id *id, *tmp;
476
477 list_for_each_entry_safe(id, tmp, &device->pnp.ids, list) {
478 kfree(id->id);
479 kfree(id);
480 }
481}
482
Patrick Mochel1890a972006-12-07 20:56:31 +0800483static void acpi_device_release(struct device *dev)
484{
485 struct acpi_device *acpi_dev = to_acpi_device(dev);
486
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -0600487 acpi_free_ids(acpi_dev);
Lv Zhengccf78042012-10-30 14:41:07 +0100488 kfree(acpi_dev->pnp.unique_id);
Patrick Mochel1890a972006-12-07 20:56:31 +0800489 kfree(acpi_dev);
490}
491
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800492static int acpi_bus_match(struct device *dev, struct device_driver *drv)
493{
494 struct acpi_device *acpi_dev = to_acpi_device(dev);
495 struct acpi_driver *acpi_drv = to_acpi_driver(drv);
496
Rafael J. Wysockia2d06a12012-12-21 00:36:43 +0100497 return acpi_dev->add_type >= ACPI_BUS_ADD_MATCH
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +0100498 && !acpi_match_device_ids(acpi_dev, acpi_drv->ids);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800499}
500
Kay Sievers7eff2e72007-08-14 15:15:12 +0200501static int acpi_device_uevent(struct device *dev, struct kobj_uevent_env *env)
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800502{
503 struct acpi_device *acpi_dev = to_acpi_device(dev);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200504 int len;
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800505
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +0200506 if (list_empty(&acpi_dev->pnp.ids))
507 return 0;
508
Kay Sievers7eff2e72007-08-14 15:15:12 +0200509 if (add_uevent_var(env, "MODALIAS="))
510 return -ENOMEM;
511 len = create_modalias(acpi_dev, &env->buf[env->buflen - 1],
512 sizeof(env->buf) - env->buflen);
513 if (len >= (sizeof(env->buf) - env->buflen))
514 return -ENOMEM;
515 env->buflen += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 return 0;
517}
518
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000519static void acpi_device_notify(acpi_handle handle, u32 event, void *data)
520{
521 struct acpi_device *device = data;
522
523 device->driver->ops.notify(device, event);
524}
525
526static acpi_status acpi_device_notify_fixed(void *data)
527{
528 struct acpi_device *device = data;
529
Bjorn Helgaas53de5352009-08-31 22:32:20 +0000530 /* Fixed hardware devices have no handles */
531 acpi_device_notify(NULL, ACPI_FIXED_HARDWARE_EVENT, device);
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000532 return AE_OK;
533}
534
535static int acpi_device_install_notify_handler(struct acpi_device *device)
536{
537 acpi_status status;
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000538
Bjorn Helgaasccba2a32009-09-21 19:29:15 +0000539 if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000540 status =
541 acpi_install_fixed_event_handler(ACPI_EVENT_POWER_BUTTON,
542 acpi_device_notify_fixed,
543 device);
Bjorn Helgaasccba2a32009-09-21 19:29:15 +0000544 else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000545 status =
546 acpi_install_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON,
547 acpi_device_notify_fixed,
548 device);
549 else
550 status = acpi_install_notify_handler(device->handle,
551 ACPI_DEVICE_NOTIFY,
552 acpi_device_notify,
553 device);
554
555 if (ACPI_FAILURE(status))
556 return -EINVAL;
557 return 0;
558}
559
560static void acpi_device_remove_notify_handler(struct acpi_device *device)
561{
Bjorn Helgaasccba2a32009-09-21 19:29:15 +0000562 if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000563 acpi_remove_fixed_event_handler(ACPI_EVENT_POWER_BUTTON,
564 acpi_device_notify_fixed);
Bjorn Helgaasccba2a32009-09-21 19:29:15 +0000565 else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000566 acpi_remove_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON,
567 acpi_device_notify_fixed);
568 else
569 acpi_remove_notify_handler(device->handle, ACPI_DEVICE_NOTIFY,
570 acpi_device_notify);
571}
572
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800573static int acpi_bus_driver_init(struct acpi_device *, struct acpi_driver *);
574static int acpi_start_single_object(struct acpi_device *);
575static int acpi_device_probe(struct device * dev)
Zhang Rui9e89dde2006-12-07 20:56:16 +0800576{
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800577 struct acpi_device *acpi_dev = to_acpi_device(dev);
578 struct acpi_driver *acpi_drv = to_acpi_driver(dev->driver);
579 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800581 ret = acpi_bus_driver_init(acpi_dev, acpi_drv);
582 if (!ret) {
Rafael J. Wysockia2d06a12012-12-21 00:36:43 +0100583 if (acpi_dev->add_type == ACPI_BUS_ADD_START)
Li Shaohuac4168bf2006-12-07 20:56:41 +0800584 acpi_start_single_object(acpi_dev);
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000585
586 if (acpi_drv->ops.notify) {
587 ret = acpi_device_install_notify_handler(acpi_dev);
588 if (ret) {
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000589 if (acpi_drv->ops.remove)
590 acpi_drv->ops.remove(acpi_dev,
591 acpi_dev->removal_type);
592 return ret;
593 }
594 }
595
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800596 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
597 "Found driver [%s] for device [%s]\n",
598 acpi_drv->name, acpi_dev->pnp.bus_id));
599 get_device(dev);
Zhang Rui9e89dde2006-12-07 20:56:16 +0800600 }
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800601 return ret;
602}
603
604static int acpi_device_remove(struct device * dev)
605{
606 struct acpi_device *acpi_dev = to_acpi_device(dev);
607 struct acpi_driver *acpi_drv = acpi_dev->driver;
608
609 if (acpi_drv) {
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000610 if (acpi_drv->ops.notify)
611 acpi_device_remove_notify_handler(acpi_dev);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800612 if (acpi_drv->ops.remove)
Li Shaohua96333572006-12-07 20:56:46 +0800613 acpi_drv->ops.remove(acpi_dev, acpi_dev->removal_type);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800614 }
615 acpi_dev->driver = NULL;
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700616 acpi_dev->driver_data = NULL;
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800617
618 put_device(dev);
Zhang Rui9e89dde2006-12-07 20:56:16 +0800619 return 0;
620}
621
David Brownell55955aa2007-05-08 00:28:35 -0700622struct bus_type acpi_bus_type = {
Zhang Rui9e89dde2006-12-07 20:56:16 +0800623 .name = "acpi",
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800624 .match = acpi_bus_match,
625 .probe = acpi_device_probe,
626 .remove = acpi_device_remove,
627 .uevent = acpi_device_uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628};
629
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +0000630static int acpi_device_register(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800632 int result;
633 struct acpi_device_bus_id *acpi_device_bus_id, *new_bus_id;
634 int found = 0;
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +0000635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 /*
637 * Linkage
638 * -------
639 * Link this device to its parent and siblings.
640 */
641 INIT_LIST_HEAD(&device->children);
642 INIT_LIST_HEAD(&device->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 INIT_LIST_HEAD(&device->wakeup_list);
Lan Tianyu1033f902012-08-17 14:44:09 +0800644 INIT_LIST_HEAD(&device->physical_node_list);
645 mutex_init(&device->physical_node_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800647 new_bus_id = kzalloc(sizeof(struct acpi_device_bus_id), GFP_KERNEL);
648 if (!new_bus_id) {
649 printk(KERN_ERR PREFIX "Memory allocation error\n");
650 return -ENOMEM;
651 }
652
Shaohua Li90905892009-04-07 10:24:29 +0800653 mutex_lock(&acpi_device_lock);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800654 /*
655 * Find suitable bus_id and instance number in acpi_bus_id_list
656 * If failed, create one and link it into acpi_bus_id_list
657 */
658 list_for_each_entry(acpi_device_bus_id, &acpi_bus_id_list, node) {
Bjorn Helgaas1131b932009-09-21 13:35:29 -0600659 if (!strcmp(acpi_device_bus_id->bus_id,
660 acpi_device_hid(device))) {
661 acpi_device_bus_id->instance_no++;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800662 found = 1;
663 kfree(new_bus_id);
664 break;
665 }
666 }
Alex Chiang0c526d92009-05-14 08:31:37 -0600667 if (!found) {
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800668 acpi_device_bus_id = new_bus_id;
Bjorn Helgaas1131b932009-09-21 13:35:29 -0600669 strcpy(acpi_device_bus_id->bus_id, acpi_device_hid(device));
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800670 acpi_device_bus_id->instance_no = 0;
671 list_add_tail(&acpi_device_bus_id->node, &acpi_bus_id_list);
672 }
Kay Sievers07944692008-10-30 01:18:59 +0100673 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 +0800674
Len Brown33b57152008-12-15 22:09:26 -0500675 if (device->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 list_add_tail(&device->node, &device->parent->children);
Len Brown33b57152008-12-15 22:09:26 -0500677
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 if (device->wakeup.flags.valid)
679 list_add_tail(&device->wakeup_list, &acpi_wakeup_device_list);
Shaohua Li90905892009-04-07 10:24:29 +0800680 mutex_unlock(&acpi_device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Patrick Mochel1890a972006-12-07 20:56:31 +0800682 if (device->parent)
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +0000683 device->dev.parent = &device->parent->dev;
Patrick Mochel1890a972006-12-07 20:56:31 +0800684 device->dev.bus = &acpi_bus_type;
Patrick Mochel1890a972006-12-07 20:56:31 +0800685 device->dev.release = &acpi_device_release;
Alex Chiang8b12b922009-05-14 08:31:32 -0600686 result = device_register(&device->dev);
Alex Chiang0c526d92009-05-14 08:31:37 -0600687 if (result) {
Alex Chiang8b12b922009-05-14 08:31:32 -0600688 dev_err(&device->dev, "Error registering device\n");
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800689 goto end;
690 }
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800691
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800692 result = acpi_device_setup_files(device);
Alex Chiang0c526d92009-05-14 08:31:37 -0600693 if (result)
Kay Sievers07944692008-10-30 01:18:59 +0100694 printk(KERN_ERR PREFIX "Error creating sysfs interface for device %s\n",
695 dev_name(&device->dev));
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800696
Li Shaohua96333572006-12-07 20:56:46 +0800697 device->removal_type = ACPI_BUS_REMOVAL_NORMAL;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800698 return 0;
Alex Chiang0c526d92009-05-14 08:31:37 -0600699end:
Shaohua Li90905892009-04-07 10:24:29 +0800700 mutex_lock(&acpi_device_lock);
Len Brown33b57152008-12-15 22:09:26 -0500701 if (device->parent)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800702 list_del(&device->node);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800703 list_del(&device->wakeup_list);
Shaohua Li90905892009-04-07 10:24:29 +0800704 mutex_unlock(&acpi_device_lock);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800705 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706}
707
708static void acpi_device_unregister(struct acpi_device *device, int type)
709{
Shaohua Li90905892009-04-07 10:24:29 +0800710 mutex_lock(&acpi_device_lock);
Len Brown33b57152008-12-15 22:09:26 -0500711 if (device->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 list_del(&device->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
714 list_del(&device->wakeup_list);
Shaohua Li90905892009-04-07 10:24:29 +0800715 mutex_unlock(&acpi_device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
717 acpi_detach_data(device->handle, acpi_bus_data_handler);
Patrick Mochel1890a972006-12-07 20:56:31 +0800718
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800719 acpi_device_remove_files(device);
Patrick Mochel1890a972006-12-07 20:56:31 +0800720 device_unregister(&device->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721}
722
Zhang Rui9e89dde2006-12-07 20:56:16 +0800723/* --------------------------------------------------------------------------
724 Driver Management
725 -------------------------------------------------------------------------- */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726/**
Randy Dunlapd758a8f2006-01-06 01:31:00 -0500727 * acpi_bus_driver_init - add a device to a driver
728 * @device: the device to add and initialize
729 * @driver: driver for the device
730 *
Alex Chiang0c526d92009-05-14 08:31:37 -0600731 * Used to initialize a device via its device driver. Called whenever a
Patrick Mochel1890a972006-12-07 20:56:31 +0800732 * driver is bound to a device. Invokes the driver's add() ops.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 */
734static int
Len Brown4be44fc2005-08-05 00:44:28 -0400735acpi_bus_driver_init(struct acpi_device *device, struct acpi_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736{
Len Brown4be44fc2005-08-05 00:44:28 -0400737 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 if (!device || !driver)
Patrick Mocheld550d982006-06-27 00:41:40 -0400740 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
742 if (!driver->ops.add)
Patrick Mocheld550d982006-06-27 00:41:40 -0400743 return -ENOSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
745 result = driver->ops.add(device);
746 if (result) {
747 device->driver = NULL;
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700748 device->driver_data = NULL;
Patrick Mocheld550d982006-06-27 00:41:40 -0400749 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 }
751
752 device->driver = driver;
753
754 /*
755 * TBD - Configuration Management: Assign resources to device based
756 * upon possible configuration and currently allocated resources.
757 */
758
Len Brown4be44fc2005-08-05 00:44:28 -0400759 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
760 "Driver successfully bound to device\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400761 return 0;
Rajesh Shah3fb02732005-04-28 00:25:52 -0700762}
763
Adrian Bunk8713cbe2005-09-02 17:16:48 -0400764static int acpi_start_single_object(struct acpi_device *device)
Rajesh Shah3fb02732005-04-28 00:25:52 -0700765{
766 int result = 0;
767 struct acpi_driver *driver;
768
Rajesh Shah3fb02732005-04-28 00:25:52 -0700769
770 if (!(driver = device->driver))
Patrick Mocheld550d982006-06-27 00:41:40 -0400771 return 0;
Rajesh Shah3fb02732005-04-28 00:25:52 -0700772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 if (driver->ops.start) {
774 result = driver->ops.start(device);
775 if (result && driver->ops.remove)
776 driver->ops.remove(device, ACPI_BUS_REMOVAL_NORMAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 }
778
Patrick Mocheld550d982006-06-27 00:41:40 -0400779 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780}
781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782/**
Randy Dunlapd758a8f2006-01-06 01:31:00 -0500783 * acpi_bus_register_driver - register a driver with the ACPI bus
784 * @driver: driver being registered
785 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 * Registers a driver with the ACPI bus. Searches the namespace for all
Bjorn Helgaas9d9f7492006-03-28 17:04:00 -0500787 * devices that match the driver's criteria and binds. Returns zero for
788 * success or a negative error status for failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 */
Len Brown4be44fc2005-08-05 00:44:28 -0400790int acpi_bus_register_driver(struct acpi_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{
Patrick Mochel1890a972006-12-07 20:56:31 +0800792 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
794 if (acpi_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -0400795 return -ENODEV;
Patrick Mochel1890a972006-12-07 20:56:31 +0800796 driver->drv.name = driver->name;
797 driver->drv.bus = &acpi_bus_type;
798 driver->drv.owner = driver->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
Patrick Mochel1890a972006-12-07 20:56:31 +0800800 ret = driver_register(&driver->drv);
801 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Len Brown4be44fc2005-08-05 00:44:28 -0400804EXPORT_SYMBOL(acpi_bus_register_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
806/**
Randy Dunlapd758a8f2006-01-06 01:31:00 -0500807 * acpi_bus_unregister_driver - unregisters a driver with the APIC bus
808 * @driver: driver to unregister
809 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 * Unregisters a driver with the ACPI bus. Searches the namespace for all
811 * devices that match the driver's criteria and unbinds.
812 */
Bjorn Helgaas06ea8e082006-04-27 05:25:00 -0400813void acpi_bus_unregister_driver(struct acpi_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
Patrick Mochel1890a972006-12-07 20:56:31 +0800815 driver_unregister(&driver->drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816}
Len Brown4be44fc2005-08-05 00:44:28 -0400817
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818EXPORT_SYMBOL(acpi_bus_unregister_driver);
819
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820/* --------------------------------------------------------------------------
821 Device Enumeration
822 -------------------------------------------------------------------------- */
Bjorn Helgaas5c478f42009-09-21 19:29:35 +0000823static struct acpi_device *acpi_bus_get_parent(acpi_handle handle)
824{
825 acpi_status status;
826 int ret;
827 struct acpi_device *device;
828
829 /*
830 * Fixed hardware devices do not appear in the namespace and do not
831 * have handles, but we fabricate acpi_devices for them, so we have
832 * to deal with them specially.
833 */
834 if (handle == NULL)
835 return acpi_root;
836
837 do {
838 status = acpi_get_parent(handle, &handle);
839 if (status == AE_NULL_ENTRY)
840 return NULL;
841 if (ACPI_FAILURE(status))
842 return acpi_root;
843
844 ret = acpi_bus_get_device(handle, &device);
845 if (ret == 0)
846 return device;
847 } while (1);
848}
849
Len Brownc8f7a622006-07-09 17:22:28 -0400850acpi_status
851acpi_bus_get_ejd(acpi_handle handle, acpi_handle *ejd)
852{
853 acpi_status status;
854 acpi_handle tmp;
855 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
856 union acpi_object *obj;
857
858 status = acpi_get_handle(handle, "_EJD", &tmp);
859 if (ACPI_FAILURE(status))
860 return status;
861
862 status = acpi_evaluate_object(handle, "_EJD", NULL, &buffer);
863 if (ACPI_SUCCESS(status)) {
864 obj = buffer.pointer;
Holger Macht3b5fee52008-02-14 13:40:34 +0100865 status = acpi_get_handle(ACPI_ROOT_OBJECT, obj->string.pointer,
866 ejd);
Len Brownc8f7a622006-07-09 17:22:28 -0400867 kfree(buffer.pointer);
868 }
869 return status;
870}
871EXPORT_SYMBOL_GPL(acpi_bus_get_ejd);
872
Bob Moore8e4319c2009-06-29 13:43:27 +0800873void acpi_bus_data_handler(acpi_handle handle, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874{
875
876 /* TBD */
877
878 return;
879}
880
Zhang Rui9e89dde2006-12-07 20:56:16 +0800881static int acpi_bus_get_perf_flags(struct acpi_device *device)
882{
883 device->performance.state = ACPI_STATE_UNKNOWN;
884 return 0;
885}
886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887static acpi_status
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100888acpi_bus_extract_wakeup_device_power_package(acpi_handle handle,
889 struct acpi_device_wakeup *wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890{
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100891 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
892 union acpi_object *package = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 union acpi_object *element = NULL;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100894 acpi_status status;
895 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100897 if (!wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 return AE_BAD_PARAMETER;
899
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100900 /* _PRW */
901 status = acpi_evaluate_object(handle, "_PRW", NULL, &buffer);
902 if (ACPI_FAILURE(status)) {
903 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PRW"));
904 return status;
905 }
906
907 package = (union acpi_object *)buffer.pointer;
908
909 if (!package || (package->package.count < 2)) {
910 status = AE_BAD_DATA;
911 goto out;
912 }
913
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 element = &(package->package.elements[0]);
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100915 if (!element) {
916 status = AE_BAD_DATA;
917 goto out;
918 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 if (element->type == ACPI_TYPE_PACKAGE) {
920 if ((element->package.count < 2) ||
921 (element->package.elements[0].type !=
922 ACPI_TYPE_LOCAL_REFERENCE)
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100923 || (element->package.elements[1].type != ACPI_TYPE_INTEGER)) {
924 status = AE_BAD_DATA;
925 goto out;
926 }
927 wakeup->gpe_device =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 element->package.elements[0].reference.handle;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100929 wakeup->gpe_number =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 (u32) element->package.elements[1].integer.value;
931 } else if (element->type == ACPI_TYPE_INTEGER) {
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100932 wakeup->gpe_device = NULL;
933 wakeup->gpe_number = element->integer.value;
934 } else {
935 status = AE_BAD_DATA;
936 goto out;
937 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
939 element = &(package->package.elements[1]);
940 if (element->type != ACPI_TYPE_INTEGER) {
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100941 status = AE_BAD_DATA;
942 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 }
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100944 wakeup->sleep_state = element->integer.value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
946 if ((package->package.count - 2) > ACPI_MAX_HANDLES) {
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100947 status = AE_NO_MEMORY;
948 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 }
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100950 wakeup->resources.count = package->package.count - 2;
951 for (i = 0; i < wakeup->resources.count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 element = &(package->package.elements[i + 2]);
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100953 if (element->type != ACPI_TYPE_LOCAL_REFERENCE) {
954 status = AE_BAD_DATA;
955 goto out;
956 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100958 wakeup->resources.handles[i] = element->reference.handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 }
960
Lin Mingbba63a22010-12-13 13:39:17 +0800961 acpi_setup_gpe_for_wake(handle, wakeup->gpe_device, wakeup->gpe_number);
Rafael J. Wysocki98746472010-07-08 00:43:36 +0200962
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100963 out:
964 kfree(buffer.pointer);
965
966 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967}
968
Rafael J. Wysockif5177092010-02-17 23:41:49 +0100969static void acpi_bus_set_run_wake_flags(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970{
Thomas Renninger29b71a12007-07-23 14:43:51 +0200971 struct acpi_device_id button_device_ids[] = {
Thomas Renninger29b71a12007-07-23 14:43:51 +0200972 {"PNP0C0C", 0},
Zhang Ruib7e38302012-12-04 23:23:16 +0100973 {"PNP0C0D", 0},
Thomas Renninger29b71a12007-07-23 14:43:51 +0200974 {"PNP0C0E", 0},
975 {"", 0},
976 };
Rafael J. Wysockif5177092010-02-17 23:41:49 +0100977 acpi_status status;
978 acpi_event_status event_status;
979
Rafael J. Wysockib67ea762010-02-17 23:44:09 +0100980 device->wakeup.flags.notifier_present = 0;
Rafael J. Wysockif5177092010-02-17 23:41:49 +0100981
982 /* Power button, Lid switch always enable wakeup */
983 if (!acpi_match_device_ids(device, button_device_ids)) {
984 device->wakeup.flags.run_wake = 1;
Zhang Ruib7e38302012-12-04 23:23:16 +0100985 if (!acpi_match_device_ids(device, &button_device_ids[1])) {
986 /* Do not use Lid/sleep button for S5 wakeup */
987 if (device->wakeup.sleep_state == ACPI_STATE_S5)
988 device->wakeup.sleep_state = ACPI_STATE_S4;
989 }
Rafael J. Wysockif2b56bc2011-01-06 23:34:22 +0100990 device_set_wakeup_capable(&device->dev, true);
Rafael J. Wysockif5177092010-02-17 23:41:49 +0100991 return;
992 }
993
Rafael J. Wysockie8e18c92010-07-08 00:42:51 +0200994 status = acpi_get_gpe_status(device->wakeup.gpe_device,
995 device->wakeup.gpe_number,
996 &event_status);
Rafael J. Wysockif5177092010-02-17 23:41:49 +0100997 if (status == AE_OK)
998 device->wakeup.flags.run_wake =
999 !!(event_status & ACPI_EVENT_FLAG_HANDLE);
1000}
1001
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01001002static void acpi_bus_get_wakeup_device_flags(struct acpi_device *device)
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001003{
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01001004 acpi_handle temp;
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001005 acpi_status status = 0;
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001006 int psw_error;
Thomas Renninger29b71a12007-07-23 14:43:51 +02001007
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01001008 /* Presence of _PRW indicates wake capable */
1009 status = acpi_get_handle(device->handle, "_PRW", &temp);
1010 if (ACPI_FAILURE(status))
1011 return;
1012
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001013 status = acpi_bus_extract_wakeup_device_power_package(device->handle,
1014 &device->wakeup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 if (ACPI_FAILURE(status)) {
1016 ACPI_EXCEPTION((AE_INFO, status, "Extracting _PRW package"));
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01001017 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 }
1019
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 device->wakeup.flags.valid = 1;
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +02001021 device->wakeup.prepare_count = 0;
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001022 acpi_bus_set_run_wake_flags(device);
Zhao Yakui729b2bd2008-03-19 13:26:54 +08001023 /* Call _PSW/_DSW object to disable its ability to wake the sleeping
1024 * system for the ACPI device with the _PRW object.
1025 * The _PSW object is depreciated in ACPI 3.0 and is replaced by _DSW.
1026 * So it is necessary to call _DSW object first. Only when it is not
1027 * present will the _PSW object used.
1028 */
Rafael J. Wysocki77e76602008-07-07 03:33:34 +02001029 psw_error = acpi_device_sleep_wake(device, 0, 0, 0);
1030 if (psw_error)
1031 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1032 "error in _DSW or _PSW evaluation\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033}
1034
Rafael J. Wysockibf325f92010-11-25 00:10:44 +01001035static void acpi_bus_add_power_resource(acpi_handle handle);
1036
Zhang Rui9e89dde2006-12-07 20:56:16 +08001037static int acpi_bus_get_power_flags(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038{
Zhang Rui9e89dde2006-12-07 20:56:16 +08001039 acpi_status status = 0;
1040 acpi_handle handle = NULL;
1041 u32 i = 0;
1042
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
1044 /*
Zhang Rui9e89dde2006-12-07 20:56:16 +08001045 * Power Management Flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 */
Zhang Rui9e89dde2006-12-07 20:56:16 +08001047 status = acpi_get_handle(device->handle, "_PSC", &handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 if (ACPI_SUCCESS(status))
Zhang Rui9e89dde2006-12-07 20:56:16 +08001049 device->power.flags.explicit_get = 1;
1050 status = acpi_get_handle(device->handle, "_IRC", &handle);
1051 if (ACPI_SUCCESS(status))
1052 device->power.flags.inrush_current = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
1054 /*
Zhang Rui9e89dde2006-12-07 20:56:16 +08001055 * Enumerate supported power management states
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 */
Lin Ming1cc0c992012-04-23 09:03:49 +08001057 for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3_HOT; i++) {
Zhang Rui9e89dde2006-12-07 20:56:16 +08001058 struct acpi_device_power_state *ps = &device->power.states[i];
1059 char object_name[5] = { '_', 'P', 'R', '0' + i, '\0' };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
Zhang Rui9e89dde2006-12-07 20:56:16 +08001061 /* Evaluate "_PRx" to se if power resources are referenced */
1062 acpi_evaluate_reference(device->handle, object_name, NULL,
1063 &ps->resources);
1064 if (ps->resources.count) {
Rafael J. Wysockibf325f92010-11-25 00:10:44 +01001065 int j;
1066
Zhang Rui9e89dde2006-12-07 20:56:16 +08001067 device->power.flags.power_resources = 1;
Rafael J. Wysockibf325f92010-11-25 00:10:44 +01001068 for (j = 0; j < ps->resources.count; j++)
1069 acpi_bus_add_power_resource(ps->resources.handles[j]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
Zhang Rui9e89dde2006-12-07 20:56:16 +08001072 /* Evaluate "_PSx" to see if we can do explicit sets */
1073 object_name[2] = 'S';
1074 status = acpi_get_handle(device->handle, object_name, &handle);
Alex He37239972012-02-21 16:58:10 +08001075 if (ACPI_SUCCESS(status))
Zhang Rui9e89dde2006-12-07 20:56:16 +08001076 ps->flags.explicit_set = 1;
Zhang Rui9e89dde2006-12-07 20:56:16 +08001077
Lin Ming1cc0c992012-04-23 09:03:49 +08001078 /*
1079 * State is valid if there are means to put the device into it.
1080 * D3hot is only valid if _PR3 present.
1081 */
1082 if (ps->resources.count ||
Aaron Lu1399dfc2012-11-21 23:33:40 +01001083 (ps->flags.explicit_set && i < ACPI_STATE_D3_HOT)) {
Zhang Rui9e89dde2006-12-07 20:56:16 +08001084 ps->flags.valid = 1;
Aaron Lu1399dfc2012-11-21 23:33:40 +01001085 ps->flags.os_accessible = 1;
1086 }
Zhang Rui9e89dde2006-12-07 20:56:16 +08001087
1088 ps->power = -1; /* Unknown - driver assigned */
1089 ps->latency = -1; /* Unknown - driver assigned */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
Zhang Rui9e89dde2006-12-07 20:56:16 +08001092 /* Set defaults for D0 and D3 states (always valid) */
1093 device->power.states[ACPI_STATE_D0].flags.valid = 1;
1094 device->power.states[ACPI_STATE_D0].power = 100;
1095 device->power.states[ACPI_STATE_D3].flags.valid = 1;
1096 device->power.states[ACPI_STATE_D3].power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
Rafael J. Wysocki5c7dd712012-05-18 00:39:35 +02001098 /* Set D3cold's explicit_set flag if _PS3 exists. */
1099 if (device->power.states[ACPI_STATE_D3_HOT].flags.explicit_set)
1100 device->power.states[ACPI_STATE_D3_COLD].flags.explicit_set = 1;
1101
Aaron Lu1399dfc2012-11-21 23:33:40 +01001102 /* Presence of _PS3 or _PRx means we can put the device into D3 cold */
1103 if (device->power.states[ACPI_STATE_D3_HOT].flags.explicit_set ||
1104 device->power.flags.power_resources)
1105 device->power.states[ACPI_STATE_D3_COLD].flags.os_accessible = 1;
1106
Rafael J. Wysockiade3e7f2010-11-25 00:08:36 +01001107 acpi_bus_init_power(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
1109 return 0;
1110}
1111
Len Brown4be44fc2005-08-05 00:44:28 -04001112static int acpi_bus_get_flags(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113{
Len Brown4be44fc2005-08-05 00:44:28 -04001114 acpi_status status = AE_OK;
1115 acpi_handle temp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
1118 /* Presence of _STA indicates 'dynamic_status' */
1119 status = acpi_get_handle(device->handle, "_STA", &temp);
1120 if (ACPI_SUCCESS(status))
1121 device->flags.dynamic_status = 1;
1122
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 /* Presence of _RMV indicates 'removable' */
1124 status = acpi_get_handle(device->handle, "_RMV", &temp);
1125 if (ACPI_SUCCESS(status))
1126 device->flags.removable = 1;
1127
1128 /* Presence of _EJD|_EJ0 indicates 'ejectable' */
1129 status = acpi_get_handle(device->handle, "_EJD", &temp);
1130 if (ACPI_SUCCESS(status))
1131 device->flags.ejectable = 1;
1132 else {
1133 status = acpi_get_handle(device->handle, "_EJ0", &temp);
1134 if (ACPI_SUCCESS(status))
1135 device->flags.ejectable = 1;
1136 }
1137
Rafael J. Wysocki7bed50c2011-04-26 11:33:18 +02001138 /* Power resources cannot be power manageable. */
1139 if (device->device_type == ACPI_BUS_TYPE_POWER)
1140 return 0;
1141
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 /* Presence of _PS0|_PR0 indicates 'power manageable' */
1143 status = acpi_get_handle(device->handle, "_PS0", &temp);
1144 if (ACPI_FAILURE(status))
1145 status = acpi_get_handle(device->handle, "_PR0", &temp);
1146 if (ACPI_SUCCESS(status))
1147 device->flags.power_manageable = 1;
1148
Joe Perches3c5f9be42008-02-03 17:06:17 +02001149 /* TBD: Performance management */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
Patrick Mocheld550d982006-06-27 00:41:40 -04001151 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152}
1153
Bjorn Helgaasc7bcb4e2009-09-21 19:29:25 +00001154static void acpi_device_get_busid(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155{
Len Brown4be44fc2005-08-05 00:44:28 -04001156 char bus_id[5] = { '?', 0 };
1157 struct acpi_buffer buffer = { sizeof(bus_id), bus_id };
1158 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
1160 /*
1161 * Bus ID
1162 * ------
1163 * The device's Bus ID is simply the object name.
1164 * TBD: Shouldn't this value be unique (within the ACPI namespace)?
1165 */
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +00001166 if (ACPI_IS_ROOT_DEVICE(device)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 strcpy(device->pnp.bus_id, "ACPI");
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +00001168 return;
1169 }
1170
1171 switch (device->device_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 case ACPI_BUS_TYPE_POWER_BUTTON:
1173 strcpy(device->pnp.bus_id, "PWRF");
1174 break;
1175 case ACPI_BUS_TYPE_SLEEP_BUTTON:
1176 strcpy(device->pnp.bus_id, "SLPF");
1177 break;
1178 default:
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +00001179 acpi_get_name(device->handle, ACPI_SINGLE_NAME, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 /* Clean up trailing underscores (if any) */
1181 for (i = 3; i > 1; i--) {
1182 if (bus_id[i] == '_')
1183 bus_id[i] = '\0';
1184 else
1185 break;
1186 }
1187 strcpy(device->pnp.bus_id, bus_id);
1188 break;
1189 }
1190}
1191
Zhang Rui54735262007-01-11 02:09:09 -05001192/*
1193 * acpi_bay_match - see if a device is an ejectable driver bay
1194 *
1195 * If an acpi object is ejectable and has one of the ACPI ATA methods defined,
1196 * then we can safely call it an ejectable drive bay
1197 */
1198static int acpi_bay_match(struct acpi_device *device){
1199 acpi_status status;
1200 acpi_handle handle;
1201 acpi_handle tmp;
1202 acpi_handle phandle;
1203
1204 handle = device->handle;
1205
1206 status = acpi_get_handle(handle, "_EJ0", &tmp);
1207 if (ACPI_FAILURE(status))
1208 return -ENODEV;
1209
1210 if ((ACPI_SUCCESS(acpi_get_handle(handle, "_GTF", &tmp))) ||
1211 (ACPI_SUCCESS(acpi_get_handle(handle, "_GTM", &tmp))) ||
1212 (ACPI_SUCCESS(acpi_get_handle(handle, "_STM", &tmp))) ||
1213 (ACPI_SUCCESS(acpi_get_handle(handle, "_SDD", &tmp))))
1214 return 0;
1215
1216 if (acpi_get_parent(handle, &phandle))
1217 return -ENODEV;
1218
1219 if ((ACPI_SUCCESS(acpi_get_handle(phandle, "_GTF", &tmp))) ||
1220 (ACPI_SUCCESS(acpi_get_handle(phandle, "_GTM", &tmp))) ||
1221 (ACPI_SUCCESS(acpi_get_handle(phandle, "_STM", &tmp))) ||
1222 (ACPI_SUCCESS(acpi_get_handle(phandle, "_SDD", &tmp))))
1223 return 0;
1224
1225 return -ENODEV;
1226}
1227
Frank Seidel3620f2f2007-12-07 13:20:34 +01001228/*
1229 * acpi_dock_match - see if a device has a _DCK method
1230 */
1231static int acpi_dock_match(struct acpi_device *device)
1232{
1233 acpi_handle tmp;
1234 return acpi_get_handle(device->handle, "_DCK", &tmp);
1235}
1236
Thomas Renninger620e1122010-10-01 10:54:00 +02001237const char *acpi_device_hid(struct acpi_device *device)
Bob Moore15b8dd52009-06-29 13:39:29 +08001238{
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001239 struct acpi_hardware_id *hid;
Bob Moore15b8dd52009-06-29 13:39:29 +08001240
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +02001241 if (list_empty(&device->pnp.ids))
1242 return dummy_hid;
1243
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001244 hid = list_first_entry(&device->pnp.ids, struct acpi_hardware_id, list);
1245 return hid->id;
1246}
1247EXPORT_SYMBOL(acpi_device_hid);
Bob Moore15b8dd52009-06-29 13:39:29 +08001248
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001249static void acpi_add_id(struct acpi_device *device, const char *dev_id)
1250{
1251 struct acpi_hardware_id *id;
Bob Moore15b8dd52009-06-29 13:39:29 +08001252
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001253 id = kmalloc(sizeof(*id), GFP_KERNEL);
1254 if (!id)
1255 return;
Bob Moore15b8dd52009-06-29 13:39:29 +08001256
Thomas Meyer581de592011-08-06 11:32:56 +02001257 id->id = kstrdup(dev_id, GFP_KERNEL);
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001258 if (!id->id) {
1259 kfree(id);
1260 return;
Bob Moore15b8dd52009-06-29 13:39:29 +08001261 }
1262
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001263 list_add_tail(&id->list, &device->pnp.ids);
Bob Moore15b8dd52009-06-29 13:39:29 +08001264}
1265
Darrick J. Wong222e82a2010-03-24 14:38:37 +01001266/*
1267 * Old IBM workstations have a DSDT bug wherein the SMBus object
1268 * lacks the SMBUS01 HID and the methods do not have the necessary "_"
1269 * prefix. Work around this.
1270 */
1271static int acpi_ibm_smbus_match(struct acpi_device *device)
1272{
1273 acpi_handle h_dummy;
1274 struct acpi_buffer path = {ACPI_ALLOCATE_BUFFER, NULL};
1275 int result;
1276
1277 if (!dmi_name_in_vendors("IBM"))
1278 return -ENODEV;
1279
1280 /* Look for SMBS object */
1281 result = acpi_get_name(device->handle, ACPI_SINGLE_NAME, &path);
1282 if (result)
1283 return result;
1284
1285 if (strcmp("SMBS", path.pointer)) {
1286 result = -ENODEV;
1287 goto out;
1288 }
1289
1290 /* Does it have the necessary (but misnamed) methods? */
1291 result = -ENODEV;
1292 if (ACPI_SUCCESS(acpi_get_handle(device->handle, "SBI", &h_dummy)) &&
1293 ACPI_SUCCESS(acpi_get_handle(device->handle, "SBR", &h_dummy)) &&
1294 ACPI_SUCCESS(acpi_get_handle(device->handle, "SBW", &h_dummy)))
1295 result = 0;
1296out:
1297 kfree(path.pointer);
1298 return result;
1299}
1300
Bjorn Helgaasc7bcb4e2009-09-21 19:29:25 +00001301static void acpi_device_set_id(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302{
Len Brown4be44fc2005-08-05 00:44:28 -04001303 acpi_status status;
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001304 struct acpi_device_info *info;
Lv Zheng78e25fe2012-10-31 02:25:24 +00001305 struct acpi_pnp_device_id_list *cid_list;
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001306 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
Bjorn Helgaasc7bcb4e2009-09-21 19:29:25 +00001308 switch (device->device_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 case ACPI_BUS_TYPE_DEVICE:
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +00001310 if (ACPI_IS_ROOT_DEVICE(device)) {
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001311 acpi_add_id(device, ACPI_SYSTEM_HID);
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +00001312 break;
1313 }
1314
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +00001315 status = acpi_get_object_info(device->handle, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 if (ACPI_FAILURE(status)) {
Harvey Harrison96b2dd12008-03-05 18:24:51 -08001317 printk(KERN_ERR PREFIX "%s: Error reading device info\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 return;
1319 }
1320
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 if (info->valid & ACPI_VALID_HID)
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001322 acpi_add_id(device, info->hardware_id.string);
1323 if (info->valid & ACPI_VALID_CID) {
Bob Moore15b8dd52009-06-29 13:39:29 +08001324 cid_list = &info->compatible_id_list;
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001325 for (i = 0; i < cid_list->count; i++)
1326 acpi_add_id(device, cid_list->ids[i].string);
1327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 if (info->valid & ACPI_VALID_ADR) {
1329 device->pnp.bus_address = info->address;
1330 device->flags.bus_address = 1;
1331 }
Lv Zhengccf78042012-10-30 14:41:07 +01001332 if (info->valid & ACPI_VALID_UID)
1333 device->pnp.unique_id = kstrdup(info->unique_id.string,
1334 GFP_KERNEL);
Zhang Ruiae843332006-12-07 20:57:10 +08001335
Bjorn Helgaasa83893ae2009-10-02 11:03:12 -04001336 kfree(info);
1337
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001338 /*
1339 * Some devices don't reliably have _HIDs & _CIDs, so add
1340 * synthetic HIDs to make sure drivers can find them.
1341 */
Thomas Renningerc3d6de62008-08-01 17:37:55 +02001342 if (acpi_is_video_device(device))
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001343 acpi_add_id(device, ACPI_VIDEO_HID);
Frank Seidel3620f2f2007-12-07 13:20:34 +01001344 else if (ACPI_SUCCESS(acpi_bay_match(device)))
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001345 acpi_add_id(device, ACPI_BAY_HID);
Frank Seidel3620f2f2007-12-07 13:20:34 +01001346 else if (ACPI_SUCCESS(acpi_dock_match(device)))
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001347 acpi_add_id(device, ACPI_DOCK_HID);
Darrick J. Wong222e82a2010-03-24 14:38:37 +01001348 else if (!acpi_ibm_smbus_match(device))
1349 acpi_add_id(device, ACPI_SMBUS_IBM_HID);
Bjorn Helgaasb7b30de2010-03-24 10:44:33 -06001350 else if (!acpi_device_hid(device) &&
1351 ACPI_IS_ROOT_DEVICE(device->parent)) {
1352 acpi_add_id(device, ACPI_BUS_HID); /* \_SB, LNXSYBUS */
1353 strcpy(device->pnp.device_name, ACPI_BUS_DEVICE_NAME);
1354 strcpy(device->pnp.device_class, ACPI_BUS_CLASS);
1355 }
Zhang Rui54735262007-01-11 02:09:09 -05001356
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 break;
1358 case ACPI_BUS_TYPE_POWER:
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001359 acpi_add_id(device, ACPI_POWER_HID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 break;
1361 case ACPI_BUS_TYPE_PROCESSOR:
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001362 acpi_add_id(device, ACPI_PROCESSOR_OBJECT_HID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 case ACPI_BUS_TYPE_THERMAL:
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001365 acpi_add_id(device, ACPI_THERMAL_HID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 break;
1367 case ACPI_BUS_TYPE_POWER_BUTTON:
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001368 acpi_add_id(device, ACPI_BUTTON_HID_POWERF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 break;
1370 case ACPI_BUS_TYPE_SLEEP_BUTTON:
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001371 acpi_add_id(device, ACPI_BUTTON_HID_SLEEPF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 break;
1373 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374}
1375
Bjorn Helgaasbc3b0772009-09-21 19:29:20 +00001376static int acpi_device_set_context(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377{
Bjorn Helgaasbc3b0772009-09-21 19:29:20 +00001378 acpi_status status;
1379
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 /*
1381 * Context
1382 * -------
1383 * Attach this 'struct acpi_device' to the ACPI object. This makes
Bjorn Helgaasbc3b0772009-09-21 19:29:20 +00001384 * resolutions from handle->device very efficient. Fixed hardware
1385 * devices have no handles, so we skip them.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 */
Bjorn Helgaasbc3b0772009-09-21 19:29:20 +00001387 if (!device->handle)
1388 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
Bjorn Helgaasbc3b0772009-09-21 19:29:20 +00001390 status = acpi_attach_data(device->handle,
1391 acpi_bus_data_handler, device);
1392 if (ACPI_SUCCESS(status))
1393 return 0;
1394
1395 printk(KERN_ERR PREFIX "Error attaching device data\n");
1396 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397}
1398
Len Brown4be44fc2005-08-05 00:44:28 -04001399static int acpi_bus_remove(struct acpi_device *dev, int rmdevice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 if (!dev)
Patrick Mocheld550d982006-06-27 00:41:40 -04001402 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
Li Shaohua96333572006-12-07 20:56:46 +08001404 dev->removal_type = ACPI_BUS_REMOVAL_EJECT;
Patrick Mochel1890a972006-12-07 20:56:31 +08001405 device_release_driver(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
1407 if (!rmdevice)
Patrick Mocheld550d982006-06-27 00:41:40 -04001408 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
Rui Zhang2786f6e2006-12-21 02:21:13 -05001410 /*
1411 * unbind _ADR-Based Devices when hot removal
1412 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 if (dev->flags.bus_address) {
1414 if ((dev->parent) && (dev->parent->ops.unbind))
1415 dev->parent->ops.unbind(dev);
1416 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 acpi_device_unregister(dev, ACPI_BUS_REMOVAL_EJECT);
1418
Patrick Mocheld550d982006-06-27 00:41:40 -04001419 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420}
1421
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001422/*
1423 * acpi_hot_add_bind - Bind _ADR-based devices on hot-add.
1424 * @device: ACPI device node to bind.
1425 */
1426static void acpi_hot_add_bind(struct acpi_device *device)
1427{
1428 if (device->flags.bus_address
1429 && device->parent && device->parent->ops.bind)
1430 device->parent->ops.bind(device);
1431}
1432
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001433static int acpi_add_single_object(struct acpi_device **child,
1434 acpi_handle handle, int type,
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001435 unsigned long long sta,
Rafael J. Wysockia2d06a12012-12-21 00:36:43 +01001436 enum acpi_bus_add_type add_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437{
Bjorn Helgaas77c24882009-09-21 19:29:30 +00001438 int result;
1439 struct acpi_device *device;
Bjorn Helgaas29aaefa2009-09-21 19:28:54 +00001440 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
Burman Yan36bcbec2006-12-19 12:56:11 -08001442 device = kzalloc(sizeof(struct acpi_device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 if (!device) {
Len Brown64684632006-06-26 23:41:38 -04001444 printk(KERN_ERR PREFIX "Memory allocation error\n");
Patrick Mocheld550d982006-06-27 00:41:40 -04001445 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001448 INIT_LIST_HEAD(&device->pnp.ids);
Bjorn Helgaascaaa6ef2009-09-21 19:29:10 +00001449 device->device_type = type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 device->handle = handle;
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001451 device->parent = acpi_bus_get_parent(handle);
Rafael J. Wysockia2d06a12012-12-21 00:36:43 +01001452 device->add_type = add_type;
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001453 STRUCT_TO_INT(device->status) = sta;
Li Shaohuac4168bf2006-12-07 20:56:41 +08001454
Bjorn Helgaasc7bcb4e2009-09-21 19:29:25 +00001455 acpi_device_get_busid(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
1457 /*
1458 * Flags
1459 * -----
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001460 * Note that we only look for object handles -- cannot evaluate objects
1461 * until we know the device is present and properly initialized.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 */
1463 result = acpi_bus_get_flags(device);
1464 if (result)
1465 goto end;
1466
1467 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 * Initialize Device
1469 * -----------------
1470 * TBD: Synch with Core's enumeration/initialization process.
1471 */
Bjorn Helgaasc7bcb4e2009-09-21 19:29:25 +00001472 acpi_device_set_id(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
1474 /*
1475 * Power Management
1476 * ----------------
1477 */
1478 if (device->flags.power_manageable) {
1479 result = acpi_bus_get_power_flags(device);
1480 if (result)
1481 goto end;
1482 }
1483
Len Brown4be44fc2005-08-05 00:44:28 -04001484 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 * Wakeup device management
1486 *-----------------------
1487 */
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01001488 acpi_bus_get_wakeup_device_flags(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
1490 /*
1491 * Performance Management
1492 * ----------------------
1493 */
1494 if (device->flags.performance_manageable) {
1495 result = acpi_bus_get_perf_flags(device);
1496 if (result)
1497 goto end;
1498 }
1499
Bjorn Helgaasbc3b0772009-09-21 19:29:20 +00001500 if ((result = acpi_device_set_context(device)))
Len Brownf61f9252009-09-05 13:33:23 -04001501 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +00001503 result = acpi_device_register(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
Rafael J. Wysockia2d06a12012-12-21 00:36:43 +01001505 if (device->add_type >= ACPI_BUS_ADD_MATCH)
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001506 acpi_hot_add_bind(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
Alex Chiang0c526d92009-05-14 08:31:37 -06001508end:
Bjorn Helgaas29aaefa2009-09-21 19:28:54 +00001509 if (!result) {
1510 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
1511 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1512 "Adding %s [%s] parent %s\n", dev_name(&device->dev),
1513 (char *) buffer.pointer,
1514 device->parent ? dev_name(&device->parent->dev) :
1515 "(null)"));
1516 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 *child = device;
Bjorn Helgaas29aaefa2009-09-21 19:28:54 +00001518 } else
Hugh Dickins718fb0d2009-08-06 23:18:12 +00001519 acpi_device_release(&device->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Patrick Mocheld550d982006-06-27 00:41:40 -04001521 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001524#define ACPI_STA_DEFAULT (ACPI_STA_DEVICE_PRESENT | ACPI_STA_DEVICE_ENABLED | \
1525 ACPI_STA_DEVICE_UI | ACPI_STA_DEVICE_FUNCTIONING)
1526
Rafael J. Wysockibf325f92010-11-25 00:10:44 +01001527static void acpi_bus_add_power_resource(acpi_handle handle)
1528{
Rafael J. Wysockibf325f92010-11-25 00:10:44 +01001529 struct acpi_device *device = NULL;
1530
1531 acpi_bus_get_device(handle, &device);
1532 if (!device)
1533 acpi_add_single_object(&device, handle, ACPI_BUS_TYPE_POWER,
Rafael J. Wysockia2d06a12012-12-21 00:36:43 +01001534 ACPI_STA_DEFAULT, ACPI_BUS_ADD_START);
Rafael J. Wysockibf325f92010-11-25 00:10:44 +01001535}
1536
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001537static int acpi_bus_type_and_status(acpi_handle handle, int *type,
1538 unsigned long long *sta)
1539{
1540 acpi_status status;
1541 acpi_object_type acpi_type;
1542
1543 status = acpi_get_type(handle, &acpi_type);
1544 if (ACPI_FAILURE(status))
1545 return -ENODEV;
1546
1547 switch (acpi_type) {
1548 case ACPI_TYPE_ANY: /* for ACPI_ROOT_OBJECT */
1549 case ACPI_TYPE_DEVICE:
1550 *type = ACPI_BUS_TYPE_DEVICE;
1551 status = acpi_bus_get_status_handle(handle, sta);
1552 if (ACPI_FAILURE(status))
1553 return -ENODEV;
1554 break;
1555 case ACPI_TYPE_PROCESSOR:
1556 *type = ACPI_BUS_TYPE_PROCESSOR;
1557 status = acpi_bus_get_status_handle(handle, sta);
1558 if (ACPI_FAILURE(status))
1559 return -ENODEV;
1560 break;
1561 case ACPI_TYPE_THERMAL:
1562 *type = ACPI_BUS_TYPE_THERMAL;
1563 *sta = ACPI_STA_DEFAULT;
1564 break;
1565 case ACPI_TYPE_POWER:
1566 *type = ACPI_BUS_TYPE_POWER;
1567 *sta = ACPI_STA_DEFAULT;
1568 break;
1569 default:
1570 return -ENODEV;
1571 }
1572
1573 return 0;
1574}
1575
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001576static acpi_status acpi_bus_check_add(acpi_handle handle, u32 lvl,
1577 void *context, void **return_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578{
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001579 struct acpi_device *device = NULL;
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001580 int type;
1581 unsigned long long sta;
Bjorn Helgaase3b87f82009-09-21 19:30:11 +00001582 acpi_status status;
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001583 int result;
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001584
Rafael J. Wysocki4002bf32012-12-21 00:36:44 +01001585 acpi_bus_get_device(handle, &device);
1586 if (device)
1587 goto out;
1588
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001589 result = acpi_bus_type_and_status(handle, &type, &sta);
1590 if (result)
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001591 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001593 if (!(sta & ACPI_STA_DEVICE_PRESENT) &&
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001594 !(sta & ACPI_STA_DEVICE_FUNCTIONING)) {
Rafael J. Wysocki86e4e202011-01-06 23:40:00 +01001595 struct acpi_device_wakeup wakeup;
1596 acpi_handle temp;
1597
1598 status = acpi_get_handle(handle, "_PRW", &temp);
1599 if (ACPI_SUCCESS(status))
1600 acpi_bus_extract_wakeup_device_power_package(handle,
1601 &wakeup);
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001602 return AE_CTRL_DEPTH;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001603 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
Rafael J. Wysocki4002bf32012-12-21 00:36:44 +01001605 acpi_add_single_object(&device, handle, type, sta, ACPI_BUS_ADD_BASIC);
1606 if (!device)
1607 return AE_CTRL_DEPTH;
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001608
Rafael J. Wysocki4002bf32012-12-21 00:36:44 +01001609 device->add_type = context ? ACPI_BUS_ADD_START : ACPI_BUS_ADD_MATCH;
1610 acpi_hot_add_bind(device);
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001611
Rafael J. Wysocki4002bf32012-12-21 00:36:44 +01001612 out:
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001613 if (!*return_value)
1614 *return_value = device;
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001615
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001616 return AE_OK;
1617}
1618
Rafael J. Wysocki0fc300b2012-12-21 00:36:41 +01001619static acpi_status acpi_bus_device_attach(acpi_handle handle, u32 lvl_not_used,
1620 void *not_used, void **ret_not_used)
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001621{
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001622 acpi_status status = AE_OK;
1623 struct acpi_device *device;
1624 unsigned long long sta_not_used;
1625 int type_not_used;
1626
1627 /*
1628 * Ignore errors ignored by acpi_bus_check_add() to avoid terminating
1629 * namespace walks prematurely.
1630 */
1631 if (acpi_bus_type_and_status(handle, &type_not_used, &sta_not_used))
1632 return AE_OK;
1633
1634 if (acpi_bus_get_device(handle, &device))
1635 return AE_CTRL_DEPTH;
1636
Rafael J. Wysocki0fc300b2012-12-21 00:36:41 +01001637 if (!acpi_match_device_ids(device, acpi_platform_device_ids)) {
1638 /* This is a known good platform device. */
1639 acpi_create_platform_device(device);
1640 } else if (device_attach(&device->dev)) {
1641 status = AE_CTRL_DEPTH;
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001642 }
1643 return status;
1644}
1645
Rafael J. Wysockica7b3c42012-12-21 00:36:42 +01001646static int acpi_bus_scan(acpi_handle handle, bool start,
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001647 struct acpi_device **child)
1648{
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001649 void *device = NULL;
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001650 acpi_status status;
1651 int ret = -ENODEV;
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001652
Rafael J. Wysockica7b3c42012-12-21 00:36:42 +01001653 status = acpi_bus_check_add(handle, 0, (void *)start, &device);
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001654 if (ACPI_SUCCESS(status))
1655 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
Rafael J. Wysockica7b3c42012-12-21 00:36:42 +01001656 acpi_bus_check_add, NULL, (void *)start,
1657 &device);
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001658
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001659 if (!device)
1660 goto out;
1661
1662 ret = 0;
Rafael J. Wysocki0fc300b2012-12-21 00:36:41 +01001663 status = acpi_bus_device_attach(handle, 0, NULL, NULL);
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001664 if (ACPI_SUCCESS(status))
1665 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
Rafael J. Wysocki0fc300b2012-12-21 00:36:41 +01001666 acpi_bus_device_attach, NULL, NULL, NULL);
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001667
1668 out:
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001669 if (child)
1670 *child = device;
Thomas Renninger77796882010-01-29 17:48:52 +01001671
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001672 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
Thomas Renninger77796882010-01-29 17:48:52 +01001675/*
1676 * acpi_bus_add and acpi_bus_start
1677 *
1678 * scan a given ACPI tree and (probably recently hot-plugged)
1679 * create and add or starts found devices.
1680 *
1681 * If no devices were found -ENODEV is returned which does not
1682 * mean that this is a real error, there just have been no suitable
1683 * ACPI objects in the table trunk from which the kernel could create
1684 * a device and add/start an appropriate driver.
1685 */
1686
Rajesh Shah3fb02732005-04-28 00:25:52 -07001687int
Len Brown4be44fc2005-08-05 00:44:28 -04001688acpi_bus_add(struct acpi_device **child,
1689 struct acpi_device *parent, acpi_handle handle, int type)
Rajesh Shah3fb02732005-04-28 00:25:52 -07001690{
Rafael J. Wysockica7b3c42012-12-21 00:36:42 +01001691 return acpi_bus_scan(handle, false, child);
Rajesh Shah3fb02732005-04-28 00:25:52 -07001692}
1693EXPORT_SYMBOL(acpi_bus_add);
1694
Rafael J. Wysocki0fc300b2012-12-21 00:36:41 +01001695static acpi_status acpi_bus_start_device(acpi_handle handle, u32 lvl,
1696 void *not_used, void **ret_not_used)
1697{
1698 struct acpi_device *device;
1699 unsigned long long sta_not_used;
1700 int type_not_used;
1701
1702 /*
1703 * Ignore errors ignored by acpi_bus_check_add() to avoid terminating
1704 * namespace walks prematurely.
1705 */
1706 if (acpi_bus_type_and_status(handle, &type_not_used, &sta_not_used))
1707 return AE_OK;
1708
1709 if (acpi_bus_get_device(handle, &device))
1710 return AE_CTRL_DEPTH;
1711
1712 return acpi_start_single_object(device);
1713}
1714
Len Brown4be44fc2005-08-05 00:44:28 -04001715int acpi_bus_start(struct acpi_device *device)
Rajesh Shah3fb02732005-04-28 00:25:52 -07001716{
Thomas Renningerd2f66502010-01-29 17:48:51 +01001717 if (!device)
1718 return -EINVAL;
1719
Rafael J. Wysocki0fc300b2012-12-21 00:36:41 +01001720 if (ACPI_SUCCESS(acpi_start_single_object(device)))
1721 acpi_walk_namespace(ACPI_TYPE_ANY, device->handle,
1722 ACPI_UINT32_MAX, acpi_bus_start_device,
1723 NULL, NULL, NULL);
Rafael J. Wysockia2100802010-09-16 00:30:43 +02001724
Lin Ming3a378982010-12-13 13:36:15 +08001725 acpi_update_all_gpes();
Rafael J. Wysocki0fc300b2012-12-21 00:36:41 +01001726 return 0;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001727}
1728EXPORT_SYMBOL(acpi_bus_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
Kristen Accardiceaba662006-02-23 17:56:01 -08001730int acpi_bus_trim(struct acpi_device *start, int rmdevice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731{
Len Brown4be44fc2005-08-05 00:44:28 -04001732 acpi_status status;
1733 struct acpi_device *parent, *child;
1734 acpi_handle phandle, chandle;
1735 acpi_object_type type;
1736 u32 level = 1;
1737 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
Len Brown4be44fc2005-08-05 00:44:28 -04001739 parent = start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 phandle = start->handle;
1741 child = chandle = NULL;
1742
1743 while ((level > 0) && parent && (!err)) {
1744 status = acpi_get_next_object(ACPI_TYPE_ANY, phandle,
Len Brown4be44fc2005-08-05 00:44:28 -04001745 chandle, &chandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746
1747 /*
1748 * If this scope is exhausted then move our way back up.
1749 */
1750 if (ACPI_FAILURE(status)) {
1751 level--;
1752 chandle = phandle;
1753 acpi_get_parent(phandle, &phandle);
1754 child = parent;
1755 parent = parent->parent;
1756
1757 if (level == 0)
1758 err = acpi_bus_remove(child, rmdevice);
1759 else
1760 err = acpi_bus_remove(child, 1);
1761
1762 continue;
1763 }
1764
1765 status = acpi_get_type(chandle, &type);
1766 if (ACPI_FAILURE(status)) {
1767 continue;
1768 }
1769 /*
1770 * If there is a device corresponding to chandle then
1771 * parse it (depth-first).
1772 */
1773 if (acpi_bus_get_device(chandle, &child) == 0) {
1774 level++;
1775 phandle = chandle;
1776 chandle = NULL;
1777 parent = child;
1778 }
1779 continue;
1780 }
1781 return err;
1782}
Kristen Accardiceaba662006-02-23 17:56:01 -08001783EXPORT_SYMBOL_GPL(acpi_bus_trim);
1784
Bjorn Helgaase8b945c2009-09-21 19:28:59 +00001785static int acpi_bus_scan_fixed(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786{
Len Brown4be44fc2005-08-05 00:44:28 -04001787 int result = 0;
1788 struct acpi_device *device = NULL;
Li Shaohuac4168bf2006-12-07 20:56:41 +08001789
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 /*
1791 * Enumerate all fixed-feature devices.
1792 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001793 if ((acpi_gbl_FADT.flags & ACPI_FADT_POWER_BUTTON) == 0) {
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001794 result = acpi_add_single_object(&device, NULL,
Li Shaohuac4168bf2006-12-07 20:56:41 +08001795 ACPI_BUS_TYPE_POWER_BUTTON,
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001796 ACPI_STA_DEFAULT,
Rafael J. Wysockia2d06a12012-12-21 00:36:43 +01001797 ACPI_BUS_ADD_START);
Daniel Drakec10d7a12012-05-10 00:08:43 +01001798 device_init_wakeup(&device->dev, true);
Rajesh Shah3fb02732005-04-28 00:25:52 -07001799 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001801 if ((acpi_gbl_FADT.flags & ACPI_FADT_SLEEP_BUTTON) == 0) {
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001802 result = acpi_add_single_object(&device, NULL,
Li Shaohuac4168bf2006-12-07 20:56:41 +08001803 ACPI_BUS_TYPE_SLEEP_BUTTON,
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001804 ACPI_STA_DEFAULT,
Rafael J. Wysockia2d06a12012-12-21 00:36:43 +01001805 ACPI_BUS_ADD_START);
Rajesh Shah3fb02732005-04-28 00:25:52 -07001806 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
Patrick Mocheld550d982006-06-27 00:41:40 -04001808 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809}
1810
Bjorn Helgaase747f272009-03-24 16:49:43 -06001811int __init acpi_scan_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812{
1813 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814
Patrick Mochel5b327262006-05-10 10:33:00 -04001815 result = bus_register(&acpi_bus_type);
1816 if (result) {
1817 /* We don't want to quit even if we failed to add suspend/resume */
1818 printk(KERN_ERR PREFIX "Could not register bus type\n");
1819 }
1820
Rafael J. Wysocki97d9a9e2010-11-25 00:10:02 +01001821 acpi_power_init();
Rafael J. Wysocki92ef2a22012-12-21 00:36:40 +01001822 acpi_pci_root_init();
Rafael J. Wysocki97d9a9e2010-11-25 00:10:02 +01001823
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 * Enumerate devices in the ACPI namespace.
1826 */
Rafael J. Wysockica7b3c42012-12-21 00:36:42 +01001827 result = acpi_bus_scan(ACPI_ROOT_OBJECT, true, &acpi_root);
Alexey Starikovskiyc04209a2008-01-01 14:12:55 -05001828
Li Shaohuac4168bf2006-12-07 20:56:41 +08001829 if (!result)
Bjorn Helgaasadc08e22009-09-21 19:29:45 +00001830 result = acpi_bus_scan_fixed();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831
1832 if (result)
1833 acpi_device_unregister(acpi_root, ACPI_BUS_REMOVAL_NORMAL);
Rafael J. Wysockia2100802010-09-16 00:30:43 +02001834 else
Lin Ming3a378982010-12-13 13:36:15 +08001835 acpi_update_all_gpes();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
Patrick Mocheld550d982006-06-27 00:41:40 -04001837 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838}