blob: e3aed481aed2724d67608c85db95cda2295a6b05 [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. Wysocki209d3b12012-12-21 00:36:48 +0100497 return acpi_dev->flags.match_driver
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 *);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800574static int acpi_device_probe(struct device * dev)
Zhang Rui9e89dde2006-12-07 20:56:16 +0800575{
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800576 struct acpi_device *acpi_dev = to_acpi_device(dev);
577 struct acpi_driver *acpi_drv = to_acpi_driver(dev->driver);
578 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800580 ret = acpi_bus_driver_init(acpi_dev, acpi_drv);
581 if (!ret) {
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000582 if (acpi_drv->ops.notify) {
583 ret = acpi_device_install_notify_handler(acpi_dev);
584 if (ret) {
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000585 if (acpi_drv->ops.remove)
586 acpi_drv->ops.remove(acpi_dev,
587 acpi_dev->removal_type);
588 return ret;
589 }
590 }
591
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800592 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
593 "Found driver [%s] for device [%s]\n",
594 acpi_drv->name, acpi_dev->pnp.bus_id));
595 get_device(dev);
Zhang Rui9e89dde2006-12-07 20:56:16 +0800596 }
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800597 return ret;
598}
599
600static int acpi_device_remove(struct device * dev)
601{
602 struct acpi_device *acpi_dev = to_acpi_device(dev);
603 struct acpi_driver *acpi_drv = acpi_dev->driver;
604
605 if (acpi_drv) {
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000606 if (acpi_drv->ops.notify)
607 acpi_device_remove_notify_handler(acpi_dev);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800608 if (acpi_drv->ops.remove)
Li Shaohua96333572006-12-07 20:56:46 +0800609 acpi_drv->ops.remove(acpi_dev, acpi_dev->removal_type);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800610 }
611 acpi_dev->driver = NULL;
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700612 acpi_dev->driver_data = NULL;
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800613
614 put_device(dev);
Zhang Rui9e89dde2006-12-07 20:56:16 +0800615 return 0;
616}
617
David Brownell55955aa2007-05-08 00:28:35 -0700618struct bus_type acpi_bus_type = {
Zhang Rui9e89dde2006-12-07 20:56:16 +0800619 .name = "acpi",
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800620 .match = acpi_bus_match,
621 .probe = acpi_device_probe,
622 .remove = acpi_device_remove,
623 .uevent = acpi_device_uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624};
625
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +0000626static int acpi_device_register(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800628 int result;
629 struct acpi_device_bus_id *acpi_device_bus_id, *new_bus_id;
630 int found = 0;
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +0000631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 /*
633 * Linkage
634 * -------
635 * Link this device to its parent and siblings.
636 */
637 INIT_LIST_HEAD(&device->children);
638 INIT_LIST_HEAD(&device->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 INIT_LIST_HEAD(&device->wakeup_list);
Lan Tianyu1033f902012-08-17 14:44:09 +0800640 INIT_LIST_HEAD(&device->physical_node_list);
641 mutex_init(&device->physical_node_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800643 new_bus_id = kzalloc(sizeof(struct acpi_device_bus_id), GFP_KERNEL);
644 if (!new_bus_id) {
645 printk(KERN_ERR PREFIX "Memory allocation error\n");
646 return -ENOMEM;
647 }
648
Shaohua Li90905892009-04-07 10:24:29 +0800649 mutex_lock(&acpi_device_lock);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800650 /*
651 * Find suitable bus_id and instance number in acpi_bus_id_list
652 * If failed, create one and link it into acpi_bus_id_list
653 */
654 list_for_each_entry(acpi_device_bus_id, &acpi_bus_id_list, node) {
Bjorn Helgaas1131b932009-09-21 13:35:29 -0600655 if (!strcmp(acpi_device_bus_id->bus_id,
656 acpi_device_hid(device))) {
657 acpi_device_bus_id->instance_no++;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800658 found = 1;
659 kfree(new_bus_id);
660 break;
661 }
662 }
Alex Chiang0c526d92009-05-14 08:31:37 -0600663 if (!found) {
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800664 acpi_device_bus_id = new_bus_id;
Bjorn Helgaas1131b932009-09-21 13:35:29 -0600665 strcpy(acpi_device_bus_id->bus_id, acpi_device_hid(device));
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800666 acpi_device_bus_id->instance_no = 0;
667 list_add_tail(&acpi_device_bus_id->node, &acpi_bus_id_list);
668 }
Kay Sievers07944692008-10-30 01:18:59 +0100669 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 +0800670
Len Brown33b57152008-12-15 22:09:26 -0500671 if (device->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 list_add_tail(&device->node, &device->parent->children);
Len Brown33b57152008-12-15 22:09:26 -0500673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 if (device->wakeup.flags.valid)
675 list_add_tail(&device->wakeup_list, &acpi_wakeup_device_list);
Shaohua Li90905892009-04-07 10:24:29 +0800676 mutex_unlock(&acpi_device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Patrick Mochel1890a972006-12-07 20:56:31 +0800678 if (device->parent)
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +0000679 device->dev.parent = &device->parent->dev;
Patrick Mochel1890a972006-12-07 20:56:31 +0800680 device->dev.bus = &acpi_bus_type;
Patrick Mochel1890a972006-12-07 20:56:31 +0800681 device->dev.release = &acpi_device_release;
Alex Chiang8b12b922009-05-14 08:31:32 -0600682 result = device_register(&device->dev);
Alex Chiang0c526d92009-05-14 08:31:37 -0600683 if (result) {
Alex Chiang8b12b922009-05-14 08:31:32 -0600684 dev_err(&device->dev, "Error registering device\n");
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800685 goto end;
686 }
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800687
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800688 result = acpi_device_setup_files(device);
Alex Chiang0c526d92009-05-14 08:31:37 -0600689 if (result)
Kay Sievers07944692008-10-30 01:18:59 +0100690 printk(KERN_ERR PREFIX "Error creating sysfs interface for device %s\n",
691 dev_name(&device->dev));
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800692
Li Shaohua96333572006-12-07 20:56:46 +0800693 device->removal_type = ACPI_BUS_REMOVAL_NORMAL;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800694 return 0;
Alex Chiang0c526d92009-05-14 08:31:37 -0600695end:
Shaohua Li90905892009-04-07 10:24:29 +0800696 mutex_lock(&acpi_device_lock);
Len Brown33b57152008-12-15 22:09:26 -0500697 if (device->parent)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800698 list_del(&device->node);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800699 list_del(&device->wakeup_list);
Shaohua Li90905892009-04-07 10:24:29 +0800700 mutex_unlock(&acpi_device_lock);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800701 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702}
703
704static void acpi_device_unregister(struct acpi_device *device, int type)
705{
Shaohua Li90905892009-04-07 10:24:29 +0800706 mutex_lock(&acpi_device_lock);
Len Brown33b57152008-12-15 22:09:26 -0500707 if (device->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 list_del(&device->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
710 list_del(&device->wakeup_list);
Shaohua Li90905892009-04-07 10:24:29 +0800711 mutex_unlock(&acpi_device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713 acpi_detach_data(device->handle, acpi_bus_data_handler);
Patrick Mochel1890a972006-12-07 20:56:31 +0800714
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800715 acpi_device_remove_files(device);
Patrick Mochel1890a972006-12-07 20:56:31 +0800716 device_unregister(&device->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717}
718
Zhang Rui9e89dde2006-12-07 20:56:16 +0800719/* --------------------------------------------------------------------------
720 Driver Management
721 -------------------------------------------------------------------------- */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722/**
Randy Dunlapd758a8f2006-01-06 01:31:00 -0500723 * acpi_bus_driver_init - add a device to a driver
724 * @device: the device to add and initialize
725 * @driver: driver for the device
726 *
Alex Chiang0c526d92009-05-14 08:31:37 -0600727 * Used to initialize a device via its device driver. Called whenever a
Patrick Mochel1890a972006-12-07 20:56:31 +0800728 * driver is bound to a device. Invokes the driver's add() ops.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 */
730static int
Len Brown4be44fc2005-08-05 00:44:28 -0400731acpi_bus_driver_init(struct acpi_device *device, struct acpi_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732{
Len Brown4be44fc2005-08-05 00:44:28 -0400733 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 if (!device || !driver)
Patrick Mocheld550d982006-06-27 00:41:40 -0400736 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
738 if (!driver->ops.add)
Patrick Mocheld550d982006-06-27 00:41:40 -0400739 return -ENOSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
741 result = driver->ops.add(device);
742 if (result) {
743 device->driver = NULL;
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700744 device->driver_data = NULL;
Patrick Mocheld550d982006-06-27 00:41:40 -0400745 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 }
747
748 device->driver = driver;
749
750 /*
751 * TBD - Configuration Management: Assign resources to device based
752 * upon possible configuration and currently allocated resources.
753 */
754
Len Brown4be44fc2005-08-05 00:44:28 -0400755 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
756 "Driver successfully bound to device\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400757 return 0;
Rajesh Shah3fb02732005-04-28 00:25:52 -0700758}
759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760/**
Randy Dunlapd758a8f2006-01-06 01:31:00 -0500761 * acpi_bus_register_driver - register a driver with the ACPI bus
762 * @driver: driver being registered
763 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 * Registers a driver with the ACPI bus. Searches the namespace for all
Bjorn Helgaas9d9f7492006-03-28 17:04:00 -0500765 * devices that match the driver's criteria and binds. Returns zero for
766 * success or a negative error status for failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 */
Len Brown4be44fc2005-08-05 00:44:28 -0400768int acpi_bus_register_driver(struct acpi_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
Patrick Mochel1890a972006-12-07 20:56:31 +0800770 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
772 if (acpi_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -0400773 return -ENODEV;
Patrick Mochel1890a972006-12-07 20:56:31 +0800774 driver->drv.name = driver->name;
775 driver->drv.bus = &acpi_bus_type;
776 driver->drv.owner = driver->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Patrick Mochel1890a972006-12-07 20:56:31 +0800778 ret = driver_register(&driver->drv);
779 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Len Brown4be44fc2005-08-05 00:44:28 -0400782EXPORT_SYMBOL(acpi_bus_register_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
784/**
Randy Dunlapd758a8f2006-01-06 01:31:00 -0500785 * acpi_bus_unregister_driver - unregisters a driver with the APIC bus
786 * @driver: driver to unregister
787 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 * Unregisters a driver with the ACPI bus. Searches the namespace for all
789 * devices that match the driver's criteria and unbinds.
790 */
Bjorn Helgaas06ea8e082006-04-27 05:25:00 -0400791void acpi_bus_unregister_driver(struct acpi_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792{
Patrick Mochel1890a972006-12-07 20:56:31 +0800793 driver_unregister(&driver->drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794}
Len Brown4be44fc2005-08-05 00:44:28 -0400795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796EXPORT_SYMBOL(acpi_bus_unregister_driver);
797
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798/* --------------------------------------------------------------------------
799 Device Enumeration
800 -------------------------------------------------------------------------- */
Bjorn Helgaas5c478f42009-09-21 19:29:35 +0000801static struct acpi_device *acpi_bus_get_parent(acpi_handle handle)
802{
803 acpi_status status;
804 int ret;
805 struct acpi_device *device;
806
807 /*
808 * Fixed hardware devices do not appear in the namespace and do not
809 * have handles, but we fabricate acpi_devices for them, so we have
810 * to deal with them specially.
811 */
812 if (handle == NULL)
813 return acpi_root;
814
815 do {
816 status = acpi_get_parent(handle, &handle);
817 if (status == AE_NULL_ENTRY)
818 return NULL;
819 if (ACPI_FAILURE(status))
820 return acpi_root;
821
822 ret = acpi_bus_get_device(handle, &device);
823 if (ret == 0)
824 return device;
825 } while (1);
826}
827
Len Brownc8f7a62c2006-07-09 17:22:28 -0400828acpi_status
829acpi_bus_get_ejd(acpi_handle handle, acpi_handle *ejd)
830{
831 acpi_status status;
832 acpi_handle tmp;
833 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
834 union acpi_object *obj;
835
836 status = acpi_get_handle(handle, "_EJD", &tmp);
837 if (ACPI_FAILURE(status))
838 return status;
839
840 status = acpi_evaluate_object(handle, "_EJD", NULL, &buffer);
841 if (ACPI_SUCCESS(status)) {
842 obj = buffer.pointer;
Holger Macht3b5fee52008-02-14 13:40:34 +0100843 status = acpi_get_handle(ACPI_ROOT_OBJECT, obj->string.pointer,
844 ejd);
Len Brownc8f7a62c2006-07-09 17:22:28 -0400845 kfree(buffer.pointer);
846 }
847 return status;
848}
849EXPORT_SYMBOL_GPL(acpi_bus_get_ejd);
850
Bob Moore8e4319c2009-06-29 13:43:27 +0800851void acpi_bus_data_handler(acpi_handle handle, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
853
854 /* TBD */
855
856 return;
857}
858
Zhang Rui9e89dde2006-12-07 20:56:16 +0800859static int acpi_bus_get_perf_flags(struct acpi_device *device)
860{
861 device->performance.state = ACPI_STATE_UNKNOWN;
862 return 0;
863}
864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865static acpi_status
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100866acpi_bus_extract_wakeup_device_power_package(acpi_handle handle,
867 struct acpi_device_wakeup *wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868{
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100869 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
870 union acpi_object *package = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 union acpi_object *element = NULL;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100872 acpi_status status;
873 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100875 if (!wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 return AE_BAD_PARAMETER;
877
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100878 /* _PRW */
879 status = acpi_evaluate_object(handle, "_PRW", NULL, &buffer);
880 if (ACPI_FAILURE(status)) {
881 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PRW"));
882 return status;
883 }
884
885 package = (union acpi_object *)buffer.pointer;
886
887 if (!package || (package->package.count < 2)) {
888 status = AE_BAD_DATA;
889 goto out;
890 }
891
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 element = &(package->package.elements[0]);
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100893 if (!element) {
894 status = AE_BAD_DATA;
895 goto out;
896 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 if (element->type == ACPI_TYPE_PACKAGE) {
898 if ((element->package.count < 2) ||
899 (element->package.elements[0].type !=
900 ACPI_TYPE_LOCAL_REFERENCE)
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100901 || (element->package.elements[1].type != ACPI_TYPE_INTEGER)) {
902 status = AE_BAD_DATA;
903 goto out;
904 }
905 wakeup->gpe_device =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 element->package.elements[0].reference.handle;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100907 wakeup->gpe_number =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 (u32) element->package.elements[1].integer.value;
909 } else if (element->type == ACPI_TYPE_INTEGER) {
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100910 wakeup->gpe_device = NULL;
911 wakeup->gpe_number = element->integer.value;
912 } else {
913 status = AE_BAD_DATA;
914 goto out;
915 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
917 element = &(package->package.elements[1]);
918 if (element->type != ACPI_TYPE_INTEGER) {
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100919 status = AE_BAD_DATA;
920 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 }
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100922 wakeup->sleep_state = element->integer.value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
924 if ((package->package.count - 2) > ACPI_MAX_HANDLES) {
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100925 status = AE_NO_MEMORY;
926 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 }
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100928 wakeup->resources.count = package->package.count - 2;
929 for (i = 0; i < wakeup->resources.count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 element = &(package->package.elements[i + 2]);
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100931 if (element->type != ACPI_TYPE_LOCAL_REFERENCE) {
932 status = AE_BAD_DATA;
933 goto out;
934 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100936 wakeup->resources.handles[i] = element->reference.handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 }
938
Lin Mingbba63a22010-12-13 13:39:17 +0800939 acpi_setup_gpe_for_wake(handle, wakeup->gpe_device, wakeup->gpe_number);
Rafael J. Wysocki98746472010-07-08 00:43:36 +0200940
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100941 out:
942 kfree(buffer.pointer);
943
944 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945}
946
Rafael J. Wysockif5177092010-02-17 23:41:49 +0100947static void acpi_bus_set_run_wake_flags(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948{
Thomas Renninger29b71a12007-07-23 14:43:51 +0200949 struct acpi_device_id button_device_ids[] = {
Thomas Renninger29b71a12007-07-23 14:43:51 +0200950 {"PNP0C0C", 0},
Zhang Ruib7e38302012-12-04 23:23:16 +0100951 {"PNP0C0D", 0},
Thomas Renninger29b71a12007-07-23 14:43:51 +0200952 {"PNP0C0E", 0},
953 {"", 0},
954 };
Rafael J. Wysockif5177092010-02-17 23:41:49 +0100955 acpi_status status;
956 acpi_event_status event_status;
957
Rafael J. Wysockib67ea762010-02-17 23:44:09 +0100958 device->wakeup.flags.notifier_present = 0;
Rafael J. Wysockif5177092010-02-17 23:41:49 +0100959
960 /* Power button, Lid switch always enable wakeup */
961 if (!acpi_match_device_ids(device, button_device_ids)) {
962 device->wakeup.flags.run_wake = 1;
Zhang Ruib7e38302012-12-04 23:23:16 +0100963 if (!acpi_match_device_ids(device, &button_device_ids[1])) {
964 /* Do not use Lid/sleep button for S5 wakeup */
965 if (device->wakeup.sleep_state == ACPI_STATE_S5)
966 device->wakeup.sleep_state = ACPI_STATE_S4;
967 }
Rafael J. Wysockif2b56bc2011-01-06 23:34:22 +0100968 device_set_wakeup_capable(&device->dev, true);
Rafael J. Wysockif5177092010-02-17 23:41:49 +0100969 return;
970 }
971
Rafael J. Wysockie8e18c92010-07-08 00:42:51 +0200972 status = acpi_get_gpe_status(device->wakeup.gpe_device,
973 device->wakeup.gpe_number,
974 &event_status);
Rafael J. Wysockif5177092010-02-17 23:41:49 +0100975 if (status == AE_OK)
976 device->wakeup.flags.run_wake =
977 !!(event_status & ACPI_EVENT_FLAG_HANDLE);
978}
979
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +0100980static void acpi_bus_get_wakeup_device_flags(struct acpi_device *device)
Rafael J. Wysockif5177092010-02-17 23:41:49 +0100981{
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +0100982 acpi_handle temp;
Rafael J. Wysockif5177092010-02-17 23:41:49 +0100983 acpi_status status = 0;
Rafael J. Wysockif5177092010-02-17 23:41:49 +0100984 int psw_error;
Thomas Renninger29b71a12007-07-23 14:43:51 +0200985
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +0100986 /* Presence of _PRW indicates wake capable */
987 status = acpi_get_handle(device->handle, "_PRW", &temp);
988 if (ACPI_FAILURE(status))
989 return;
990
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +0100991 status = acpi_bus_extract_wakeup_device_power_package(device->handle,
992 &device->wakeup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 if (ACPI_FAILURE(status)) {
994 ACPI_EXCEPTION((AE_INFO, status, "Extracting _PRW package"));
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +0100995 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 }
997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 device->wakeup.flags.valid = 1;
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +0200999 device->wakeup.prepare_count = 0;
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001000 acpi_bus_set_run_wake_flags(device);
Zhao Yakui729b2bd2008-03-19 13:26:54 +08001001 /* Call _PSW/_DSW object to disable its ability to wake the sleeping
1002 * system for the ACPI device with the _PRW object.
1003 * The _PSW object is depreciated in ACPI 3.0 and is replaced by _DSW.
1004 * So it is necessary to call _DSW object first. Only when it is not
1005 * present will the _PSW object used.
1006 */
Rafael J. Wysocki77e76602008-07-07 03:33:34 +02001007 psw_error = acpi_device_sleep_wake(device, 0, 0, 0);
1008 if (psw_error)
1009 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1010 "error in _DSW or _PSW evaluation\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011}
1012
Rafael J. Wysockibf325f92010-11-25 00:10:44 +01001013static void acpi_bus_add_power_resource(acpi_handle handle);
1014
Zhang Rui9e89dde2006-12-07 20:56:16 +08001015static int acpi_bus_get_power_flags(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016{
Zhang Rui9e89dde2006-12-07 20:56:16 +08001017 acpi_status status = 0;
1018 acpi_handle handle = NULL;
1019 u32 i = 0;
1020
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
1022 /*
Zhang Rui9e89dde2006-12-07 20:56:16 +08001023 * Power Management Flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 */
Zhang Rui9e89dde2006-12-07 20:56:16 +08001025 status = acpi_get_handle(device->handle, "_PSC", &handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 if (ACPI_SUCCESS(status))
Zhang Rui9e89dde2006-12-07 20:56:16 +08001027 device->power.flags.explicit_get = 1;
1028 status = acpi_get_handle(device->handle, "_IRC", &handle);
1029 if (ACPI_SUCCESS(status))
1030 device->power.flags.inrush_current = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
1032 /*
Zhang Rui9e89dde2006-12-07 20:56:16 +08001033 * Enumerate supported power management states
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 */
Lin Ming1cc0c992012-04-23 09:03:49 +08001035 for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3_HOT; i++) {
Zhang Rui9e89dde2006-12-07 20:56:16 +08001036 struct acpi_device_power_state *ps = &device->power.states[i];
1037 char object_name[5] = { '_', 'P', 'R', '0' + i, '\0' };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
Zhang Rui9e89dde2006-12-07 20:56:16 +08001039 /* Evaluate "_PRx" to se if power resources are referenced */
1040 acpi_evaluate_reference(device->handle, object_name, NULL,
1041 &ps->resources);
1042 if (ps->resources.count) {
Rafael J. Wysockibf325f92010-11-25 00:10:44 +01001043 int j;
1044
Zhang Rui9e89dde2006-12-07 20:56:16 +08001045 device->power.flags.power_resources = 1;
Rafael J. Wysockibf325f92010-11-25 00:10:44 +01001046 for (j = 0; j < ps->resources.count; j++)
1047 acpi_bus_add_power_resource(ps->resources.handles[j]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
Zhang Rui9e89dde2006-12-07 20:56:16 +08001050 /* Evaluate "_PSx" to see if we can do explicit sets */
1051 object_name[2] = 'S';
1052 status = acpi_get_handle(device->handle, object_name, &handle);
Alex He37239972012-02-21 16:58:10 +08001053 if (ACPI_SUCCESS(status))
Zhang Rui9e89dde2006-12-07 20:56:16 +08001054 ps->flags.explicit_set = 1;
Zhang Rui9e89dde2006-12-07 20:56:16 +08001055
Lin Ming1cc0c992012-04-23 09:03:49 +08001056 /*
1057 * State is valid if there are means to put the device into it.
1058 * D3hot is only valid if _PR3 present.
1059 */
1060 if (ps->resources.count ||
Aaron Lu1399dfc2012-11-21 23:33:40 +01001061 (ps->flags.explicit_set && i < ACPI_STATE_D3_HOT)) {
Zhang Rui9e89dde2006-12-07 20:56:16 +08001062 ps->flags.valid = 1;
Aaron Lu1399dfc2012-11-21 23:33:40 +01001063 ps->flags.os_accessible = 1;
1064 }
Zhang Rui9e89dde2006-12-07 20:56:16 +08001065
1066 ps->power = -1; /* Unknown - driver assigned */
1067 ps->latency = -1; /* Unknown - driver assigned */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
Zhang Rui9e89dde2006-12-07 20:56:16 +08001070 /* Set defaults for D0 and D3 states (always valid) */
1071 device->power.states[ACPI_STATE_D0].flags.valid = 1;
1072 device->power.states[ACPI_STATE_D0].power = 100;
1073 device->power.states[ACPI_STATE_D3].flags.valid = 1;
1074 device->power.states[ACPI_STATE_D3].power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
Rafael J. Wysocki5c7dd712012-05-18 00:39:35 +02001076 /* Set D3cold's explicit_set flag if _PS3 exists. */
1077 if (device->power.states[ACPI_STATE_D3_HOT].flags.explicit_set)
1078 device->power.states[ACPI_STATE_D3_COLD].flags.explicit_set = 1;
1079
Aaron Lu1399dfc2012-11-21 23:33:40 +01001080 /* Presence of _PS3 or _PRx means we can put the device into D3 cold */
1081 if (device->power.states[ACPI_STATE_D3_HOT].flags.explicit_set ||
1082 device->power.flags.power_resources)
1083 device->power.states[ACPI_STATE_D3_COLD].flags.os_accessible = 1;
1084
Rafael J. Wysockiade3e7f2010-11-25 00:08:36 +01001085 acpi_bus_init_power(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
1087 return 0;
1088}
1089
Len Brown4be44fc2005-08-05 00:44:28 -04001090static int acpi_bus_get_flags(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091{
Len Brown4be44fc2005-08-05 00:44:28 -04001092 acpi_status status = AE_OK;
1093 acpi_handle temp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
1096 /* Presence of _STA indicates 'dynamic_status' */
1097 status = acpi_get_handle(device->handle, "_STA", &temp);
1098 if (ACPI_SUCCESS(status))
1099 device->flags.dynamic_status = 1;
1100
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 /* Presence of _RMV indicates 'removable' */
1102 status = acpi_get_handle(device->handle, "_RMV", &temp);
1103 if (ACPI_SUCCESS(status))
1104 device->flags.removable = 1;
1105
1106 /* Presence of _EJD|_EJ0 indicates 'ejectable' */
1107 status = acpi_get_handle(device->handle, "_EJD", &temp);
1108 if (ACPI_SUCCESS(status))
1109 device->flags.ejectable = 1;
1110 else {
1111 status = acpi_get_handle(device->handle, "_EJ0", &temp);
1112 if (ACPI_SUCCESS(status))
1113 device->flags.ejectable = 1;
1114 }
1115
Rafael J. Wysocki7bed50c2011-04-26 11:33:18 +02001116 /* Power resources cannot be power manageable. */
1117 if (device->device_type == ACPI_BUS_TYPE_POWER)
1118 return 0;
1119
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 /* Presence of _PS0|_PR0 indicates 'power manageable' */
1121 status = acpi_get_handle(device->handle, "_PS0", &temp);
1122 if (ACPI_FAILURE(status))
1123 status = acpi_get_handle(device->handle, "_PR0", &temp);
1124 if (ACPI_SUCCESS(status))
1125 device->flags.power_manageable = 1;
1126
Joe Perches3c5f9be42008-02-03 17:06:17 +02001127 /* TBD: Performance management */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
Patrick Mocheld550d982006-06-27 00:41:40 -04001129 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130}
1131
Bjorn Helgaasc7bcb4e2009-09-21 19:29:25 +00001132static void acpi_device_get_busid(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133{
Len Brown4be44fc2005-08-05 00:44:28 -04001134 char bus_id[5] = { '?', 0 };
1135 struct acpi_buffer buffer = { sizeof(bus_id), bus_id };
1136 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
1138 /*
1139 * Bus ID
1140 * ------
1141 * The device's Bus ID is simply the object name.
1142 * TBD: Shouldn't this value be unique (within the ACPI namespace)?
1143 */
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +00001144 if (ACPI_IS_ROOT_DEVICE(device)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 strcpy(device->pnp.bus_id, "ACPI");
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +00001146 return;
1147 }
1148
1149 switch (device->device_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 case ACPI_BUS_TYPE_POWER_BUTTON:
1151 strcpy(device->pnp.bus_id, "PWRF");
1152 break;
1153 case ACPI_BUS_TYPE_SLEEP_BUTTON:
1154 strcpy(device->pnp.bus_id, "SLPF");
1155 break;
1156 default:
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +00001157 acpi_get_name(device->handle, ACPI_SINGLE_NAME, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 /* Clean up trailing underscores (if any) */
1159 for (i = 3; i > 1; i--) {
1160 if (bus_id[i] == '_')
1161 bus_id[i] = '\0';
1162 else
1163 break;
1164 }
1165 strcpy(device->pnp.bus_id, bus_id);
1166 break;
1167 }
1168}
1169
Zhang Rui54735262007-01-11 02:09:09 -05001170/*
1171 * acpi_bay_match - see if a device is an ejectable driver bay
1172 *
1173 * If an acpi object is ejectable and has one of the ACPI ATA methods defined,
1174 * then we can safely call it an ejectable drive bay
1175 */
1176static int acpi_bay_match(struct acpi_device *device){
1177 acpi_status status;
1178 acpi_handle handle;
1179 acpi_handle tmp;
1180 acpi_handle phandle;
1181
1182 handle = device->handle;
1183
1184 status = acpi_get_handle(handle, "_EJ0", &tmp);
1185 if (ACPI_FAILURE(status))
1186 return -ENODEV;
1187
1188 if ((ACPI_SUCCESS(acpi_get_handle(handle, "_GTF", &tmp))) ||
1189 (ACPI_SUCCESS(acpi_get_handle(handle, "_GTM", &tmp))) ||
1190 (ACPI_SUCCESS(acpi_get_handle(handle, "_STM", &tmp))) ||
1191 (ACPI_SUCCESS(acpi_get_handle(handle, "_SDD", &tmp))))
1192 return 0;
1193
1194 if (acpi_get_parent(handle, &phandle))
1195 return -ENODEV;
1196
1197 if ((ACPI_SUCCESS(acpi_get_handle(phandle, "_GTF", &tmp))) ||
1198 (ACPI_SUCCESS(acpi_get_handle(phandle, "_GTM", &tmp))) ||
1199 (ACPI_SUCCESS(acpi_get_handle(phandle, "_STM", &tmp))) ||
1200 (ACPI_SUCCESS(acpi_get_handle(phandle, "_SDD", &tmp))))
1201 return 0;
1202
1203 return -ENODEV;
1204}
1205
Frank Seidel3620f2f2007-12-07 13:20:34 +01001206/*
1207 * acpi_dock_match - see if a device has a _DCK method
1208 */
1209static int acpi_dock_match(struct acpi_device *device)
1210{
1211 acpi_handle tmp;
1212 return acpi_get_handle(device->handle, "_DCK", &tmp);
1213}
1214
Thomas Renninger620e1122010-10-01 10:54:00 +02001215const char *acpi_device_hid(struct acpi_device *device)
Bob Moore15b8dd52009-06-29 13:39:29 +08001216{
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001217 struct acpi_hardware_id *hid;
Bob Moore15b8dd52009-06-29 13:39:29 +08001218
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +02001219 if (list_empty(&device->pnp.ids))
1220 return dummy_hid;
1221
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001222 hid = list_first_entry(&device->pnp.ids, struct acpi_hardware_id, list);
1223 return hid->id;
1224}
1225EXPORT_SYMBOL(acpi_device_hid);
Bob Moore15b8dd52009-06-29 13:39:29 +08001226
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001227static void acpi_add_id(struct acpi_device *device, const char *dev_id)
1228{
1229 struct acpi_hardware_id *id;
Bob Moore15b8dd52009-06-29 13:39:29 +08001230
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001231 id = kmalloc(sizeof(*id), GFP_KERNEL);
1232 if (!id)
1233 return;
Bob Moore15b8dd52009-06-29 13:39:29 +08001234
Thomas Meyer581de592011-08-06 11:32:56 +02001235 id->id = kstrdup(dev_id, GFP_KERNEL);
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001236 if (!id->id) {
1237 kfree(id);
1238 return;
Bob Moore15b8dd52009-06-29 13:39:29 +08001239 }
1240
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001241 list_add_tail(&id->list, &device->pnp.ids);
Bob Moore15b8dd52009-06-29 13:39:29 +08001242}
1243
Darrick J. Wong222e82a2010-03-24 14:38:37 +01001244/*
1245 * Old IBM workstations have a DSDT bug wherein the SMBus object
1246 * lacks the SMBUS01 HID and the methods do not have the necessary "_"
1247 * prefix. Work around this.
1248 */
1249static int acpi_ibm_smbus_match(struct acpi_device *device)
1250{
1251 acpi_handle h_dummy;
1252 struct acpi_buffer path = {ACPI_ALLOCATE_BUFFER, NULL};
1253 int result;
1254
1255 if (!dmi_name_in_vendors("IBM"))
1256 return -ENODEV;
1257
1258 /* Look for SMBS object */
1259 result = acpi_get_name(device->handle, ACPI_SINGLE_NAME, &path);
1260 if (result)
1261 return result;
1262
1263 if (strcmp("SMBS", path.pointer)) {
1264 result = -ENODEV;
1265 goto out;
1266 }
1267
1268 /* Does it have the necessary (but misnamed) methods? */
1269 result = -ENODEV;
1270 if (ACPI_SUCCESS(acpi_get_handle(device->handle, "SBI", &h_dummy)) &&
1271 ACPI_SUCCESS(acpi_get_handle(device->handle, "SBR", &h_dummy)) &&
1272 ACPI_SUCCESS(acpi_get_handle(device->handle, "SBW", &h_dummy)))
1273 result = 0;
1274out:
1275 kfree(path.pointer);
1276 return result;
1277}
1278
Bjorn Helgaasc7bcb4e2009-09-21 19:29:25 +00001279static void acpi_device_set_id(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280{
Len Brown4be44fc2005-08-05 00:44:28 -04001281 acpi_status status;
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001282 struct acpi_device_info *info;
Lv Zheng78e25fe2012-10-31 02:25:24 +00001283 struct acpi_pnp_device_id_list *cid_list;
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001284 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Bjorn Helgaasc7bcb4e2009-09-21 19:29:25 +00001286 switch (device->device_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 case ACPI_BUS_TYPE_DEVICE:
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +00001288 if (ACPI_IS_ROOT_DEVICE(device)) {
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001289 acpi_add_id(device, ACPI_SYSTEM_HID);
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +00001290 break;
1291 }
1292
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +00001293 status = acpi_get_object_info(device->handle, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 if (ACPI_FAILURE(status)) {
Harvey Harrison96b2dd12008-03-05 18:24:51 -08001295 printk(KERN_ERR PREFIX "%s: Error reading device info\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 return;
1297 }
1298
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 if (info->valid & ACPI_VALID_HID)
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001300 acpi_add_id(device, info->hardware_id.string);
1301 if (info->valid & ACPI_VALID_CID) {
Bob Moore15b8dd52009-06-29 13:39:29 +08001302 cid_list = &info->compatible_id_list;
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001303 for (i = 0; i < cid_list->count; i++)
1304 acpi_add_id(device, cid_list->ids[i].string);
1305 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 if (info->valid & ACPI_VALID_ADR) {
1307 device->pnp.bus_address = info->address;
1308 device->flags.bus_address = 1;
1309 }
Lv Zhengccf78042012-10-30 14:41:07 +01001310 if (info->valid & ACPI_VALID_UID)
1311 device->pnp.unique_id = kstrdup(info->unique_id.string,
1312 GFP_KERNEL);
Zhang Ruiae843332006-12-07 20:57:10 +08001313
Bjorn Helgaasa83893ae2009-10-02 11:03:12 -04001314 kfree(info);
1315
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001316 /*
1317 * Some devices don't reliably have _HIDs & _CIDs, so add
1318 * synthetic HIDs to make sure drivers can find them.
1319 */
Thomas Renningerc3d6de62008-08-01 17:37:55 +02001320 if (acpi_is_video_device(device))
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001321 acpi_add_id(device, ACPI_VIDEO_HID);
Frank Seidel3620f2f2007-12-07 13:20:34 +01001322 else if (ACPI_SUCCESS(acpi_bay_match(device)))
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001323 acpi_add_id(device, ACPI_BAY_HID);
Frank Seidel3620f2f2007-12-07 13:20:34 +01001324 else if (ACPI_SUCCESS(acpi_dock_match(device)))
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001325 acpi_add_id(device, ACPI_DOCK_HID);
Darrick J. Wong222e82a2010-03-24 14:38:37 +01001326 else if (!acpi_ibm_smbus_match(device))
1327 acpi_add_id(device, ACPI_SMBUS_IBM_HID);
Bjorn Helgaasb7b30de2010-03-24 10:44:33 -06001328 else if (!acpi_device_hid(device) &&
1329 ACPI_IS_ROOT_DEVICE(device->parent)) {
1330 acpi_add_id(device, ACPI_BUS_HID); /* \_SB, LNXSYBUS */
1331 strcpy(device->pnp.device_name, ACPI_BUS_DEVICE_NAME);
1332 strcpy(device->pnp.device_class, ACPI_BUS_CLASS);
1333 }
Zhang Rui54735262007-01-11 02:09:09 -05001334
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 break;
1336 case ACPI_BUS_TYPE_POWER:
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001337 acpi_add_id(device, ACPI_POWER_HID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 break;
1339 case ACPI_BUS_TYPE_PROCESSOR:
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001340 acpi_add_id(device, ACPI_PROCESSOR_OBJECT_HID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 case ACPI_BUS_TYPE_THERMAL:
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001343 acpi_add_id(device, ACPI_THERMAL_HID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 break;
1345 case ACPI_BUS_TYPE_POWER_BUTTON:
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001346 acpi_add_id(device, ACPI_BUTTON_HID_POWERF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 break;
1348 case ACPI_BUS_TYPE_SLEEP_BUTTON:
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001349 acpi_add_id(device, ACPI_BUTTON_HID_SLEEPF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 break;
1351 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352}
1353
Bjorn Helgaasbc3b0772009-09-21 19:29:20 +00001354static int acpi_device_set_context(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355{
Bjorn Helgaasbc3b0772009-09-21 19:29:20 +00001356 acpi_status status;
1357
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 /*
1359 * Context
1360 * -------
1361 * Attach this 'struct acpi_device' to the ACPI object. This makes
Bjorn Helgaasbc3b0772009-09-21 19:29:20 +00001362 * resolutions from handle->device very efficient. Fixed hardware
1363 * devices have no handles, so we skip them.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 */
Bjorn Helgaasbc3b0772009-09-21 19:29:20 +00001365 if (!device->handle)
1366 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
Bjorn Helgaasbc3b0772009-09-21 19:29:20 +00001368 status = acpi_attach_data(device->handle,
1369 acpi_bus_data_handler, device);
1370 if (ACPI_SUCCESS(status))
1371 return 0;
1372
1373 printk(KERN_ERR PREFIX "Error attaching device data\n");
1374 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375}
1376
Len Brown4be44fc2005-08-05 00:44:28 -04001377static int acpi_bus_remove(struct acpi_device *dev, int rmdevice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 if (!dev)
Patrick Mocheld550d982006-06-27 00:41:40 -04001380 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
Li Shaohua96333572006-12-07 20:56:46 +08001382 dev->removal_type = ACPI_BUS_REMOVAL_EJECT;
Patrick Mochel1890a972006-12-07 20:56:31 +08001383 device_release_driver(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
1385 if (!rmdevice)
Patrick Mocheld550d982006-06-27 00:41:40 -04001386 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
Rui Zhang2786f6e2006-12-21 02:21:13 -05001388 /*
1389 * unbind _ADR-Based Devices when hot removal
1390 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 if (dev->flags.bus_address) {
1392 if ((dev->parent) && (dev->parent->ops.unbind))
1393 dev->parent->ops.unbind(dev);
1394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 acpi_device_unregister(dev, ACPI_BUS_REMOVAL_EJECT);
1396
Patrick Mocheld550d982006-06-27 00:41:40 -04001397 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398}
1399
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001400/*
1401 * acpi_hot_add_bind - Bind _ADR-based devices on hot-add.
1402 * @device: ACPI device node to bind.
1403 */
1404static void acpi_hot_add_bind(struct acpi_device *device)
1405{
1406 if (device->flags.bus_address
1407 && device->parent && device->parent->ops.bind)
1408 device->parent->ops.bind(device);
1409}
1410
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001411static int acpi_add_single_object(struct acpi_device **child,
1412 acpi_handle handle, int type,
Rafael J. Wysocki209d3b12012-12-21 00:36:48 +01001413 unsigned long long sta, bool match_driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414{
Bjorn Helgaas77c24882009-09-21 19:29:30 +00001415 int result;
1416 struct acpi_device *device;
Bjorn Helgaas29aaefa2009-09-21 19:28:54 +00001417 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
Burman Yan36bcbec2006-12-19 12:56:11 -08001419 device = kzalloc(sizeof(struct acpi_device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 if (!device) {
Len Brown64684632006-06-26 23:41:38 -04001421 printk(KERN_ERR PREFIX "Memory allocation error\n");
Patrick Mocheld550d982006-06-27 00:41:40 -04001422 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001425 INIT_LIST_HEAD(&device->pnp.ids);
Bjorn Helgaascaaa6ef2009-09-21 19:29:10 +00001426 device->device_type = type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 device->handle = handle;
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001428 device->parent = acpi_bus_get_parent(handle);
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001429 STRUCT_TO_INT(device->status) = sta;
Li Shaohuac4168bf2006-12-07 20:56:41 +08001430
Bjorn Helgaasc7bcb4e2009-09-21 19:29:25 +00001431 acpi_device_get_busid(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
1433 /*
1434 * Flags
1435 * -----
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001436 * Note that we only look for object handles -- cannot evaluate objects
1437 * until we know the device is present and properly initialized.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 */
1439 result = acpi_bus_get_flags(device);
1440 if (result)
1441 goto end;
1442
1443 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 * Initialize Device
1445 * -----------------
1446 * TBD: Synch with Core's enumeration/initialization process.
1447 */
Bjorn Helgaasc7bcb4e2009-09-21 19:29:25 +00001448 acpi_device_set_id(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
1450 /*
1451 * Power Management
1452 * ----------------
1453 */
1454 if (device->flags.power_manageable) {
1455 result = acpi_bus_get_power_flags(device);
1456 if (result)
1457 goto end;
1458 }
1459
Len Brown4be44fc2005-08-05 00:44:28 -04001460 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 * Wakeup device management
1462 *-----------------------
1463 */
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01001464 acpi_bus_get_wakeup_device_flags(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
1466 /*
1467 * Performance Management
1468 * ----------------------
1469 */
1470 if (device->flags.performance_manageable) {
1471 result = acpi_bus_get_perf_flags(device);
1472 if (result)
1473 goto end;
1474 }
1475
Bjorn Helgaasbc3b0772009-09-21 19:29:20 +00001476 if ((result = acpi_device_set_context(device)))
Len Brownf61f9252009-09-05 13:33:23 -04001477 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
Rafael J. Wysocki209d3b12012-12-21 00:36:48 +01001479 device->flags.match_driver = match_driver;
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +00001480 result = acpi_device_register(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
Rafael J. Wysocki209d3b12012-12-21 00:36:48 +01001482 if (device->flags.match_driver)
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001483 acpi_hot_add_bind(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
Alex Chiang0c526d92009-05-14 08:31:37 -06001485end:
Bjorn Helgaas29aaefa2009-09-21 19:28:54 +00001486 if (!result) {
1487 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
1488 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1489 "Adding %s [%s] parent %s\n", dev_name(&device->dev),
1490 (char *) buffer.pointer,
1491 device->parent ? dev_name(&device->parent->dev) :
1492 "(null)"));
1493 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 *child = device;
Bjorn Helgaas29aaefa2009-09-21 19:28:54 +00001495 } else
Hugh Dickins718fb0d2009-08-06 23:18:12 +00001496 acpi_device_release(&device->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
Patrick Mocheld550d982006-06-27 00:41:40 -04001498 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001501#define ACPI_STA_DEFAULT (ACPI_STA_DEVICE_PRESENT | ACPI_STA_DEVICE_ENABLED | \
1502 ACPI_STA_DEVICE_UI | ACPI_STA_DEVICE_FUNCTIONING)
1503
Rafael J. Wysockibf325f92010-11-25 00:10:44 +01001504static void acpi_bus_add_power_resource(acpi_handle handle)
1505{
Rafael J. Wysockibf325f92010-11-25 00:10:44 +01001506 struct acpi_device *device = NULL;
1507
1508 acpi_bus_get_device(handle, &device);
1509 if (!device)
1510 acpi_add_single_object(&device, handle, ACPI_BUS_TYPE_POWER,
Rafael J. Wysocki209d3b12012-12-21 00:36:48 +01001511 ACPI_STA_DEFAULT, true);
Rafael J. Wysockibf325f92010-11-25 00:10:44 +01001512}
1513
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001514static int acpi_bus_type_and_status(acpi_handle handle, int *type,
1515 unsigned long long *sta)
1516{
1517 acpi_status status;
1518 acpi_object_type acpi_type;
1519
1520 status = acpi_get_type(handle, &acpi_type);
1521 if (ACPI_FAILURE(status))
1522 return -ENODEV;
1523
1524 switch (acpi_type) {
1525 case ACPI_TYPE_ANY: /* for ACPI_ROOT_OBJECT */
1526 case ACPI_TYPE_DEVICE:
1527 *type = ACPI_BUS_TYPE_DEVICE;
1528 status = acpi_bus_get_status_handle(handle, sta);
1529 if (ACPI_FAILURE(status))
1530 return -ENODEV;
1531 break;
1532 case ACPI_TYPE_PROCESSOR:
1533 *type = ACPI_BUS_TYPE_PROCESSOR;
1534 status = acpi_bus_get_status_handle(handle, sta);
1535 if (ACPI_FAILURE(status))
1536 return -ENODEV;
1537 break;
1538 case ACPI_TYPE_THERMAL:
1539 *type = ACPI_BUS_TYPE_THERMAL;
1540 *sta = ACPI_STA_DEFAULT;
1541 break;
1542 case ACPI_TYPE_POWER:
1543 *type = ACPI_BUS_TYPE_POWER;
1544 *sta = ACPI_STA_DEFAULT;
1545 break;
1546 default:
1547 return -ENODEV;
1548 }
1549
1550 return 0;
1551}
1552
Rafael J. Wysockie3863092012-12-21 00:36:47 +01001553static acpi_status acpi_bus_check_add(acpi_handle handle, u32 lvl_not_used,
1554 void *not_used, void **return_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555{
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001556 struct acpi_device *device = NULL;
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001557 int type;
1558 unsigned long long sta;
Bjorn Helgaase3b87f82009-09-21 19:30:11 +00001559 acpi_status status;
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001560 int result;
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001561
Rafael J. Wysocki4002bf32012-12-21 00:36:44 +01001562 acpi_bus_get_device(handle, &device);
1563 if (device)
1564 goto out;
1565
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001566 result = acpi_bus_type_and_status(handle, &type, &sta);
1567 if (result)
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001568 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001570 if (!(sta & ACPI_STA_DEVICE_PRESENT) &&
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001571 !(sta & ACPI_STA_DEVICE_FUNCTIONING)) {
Rafael J. Wysocki86e4e202011-01-06 23:40:00 +01001572 struct acpi_device_wakeup wakeup;
1573 acpi_handle temp;
1574
1575 status = acpi_get_handle(handle, "_PRW", &temp);
1576 if (ACPI_SUCCESS(status))
1577 acpi_bus_extract_wakeup_device_power_package(handle,
1578 &wakeup);
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001579 return AE_CTRL_DEPTH;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
Rafael J. Wysocki209d3b12012-12-21 00:36:48 +01001582 acpi_add_single_object(&device, handle, type, sta, false);
Rafael J. Wysocki4002bf32012-12-21 00:36:44 +01001583 if (!device)
1584 return AE_CTRL_DEPTH;
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001585
Rafael J. Wysocki209d3b12012-12-21 00:36:48 +01001586 device->flags.match_driver = true;
Rafael J. Wysocki4002bf32012-12-21 00:36:44 +01001587 acpi_hot_add_bind(device);
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001588
Rafael J. Wysocki4002bf32012-12-21 00:36:44 +01001589 out:
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001590 if (!*return_value)
1591 *return_value = device;
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001592
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001593 return AE_OK;
1594}
1595
Rafael J. Wysocki0fc300b2012-12-21 00:36:41 +01001596static acpi_status acpi_bus_device_attach(acpi_handle handle, u32 lvl_not_used,
1597 void *not_used, void **ret_not_used)
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001598{
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001599 acpi_status status = AE_OK;
1600 struct acpi_device *device;
1601 unsigned long long sta_not_used;
1602 int type_not_used;
1603
1604 /*
1605 * Ignore errors ignored by acpi_bus_check_add() to avoid terminating
1606 * namespace walks prematurely.
1607 */
1608 if (acpi_bus_type_and_status(handle, &type_not_used, &sta_not_used))
1609 return AE_OK;
1610
1611 if (acpi_bus_get_device(handle, &device))
1612 return AE_CTRL_DEPTH;
1613
Rafael J. Wysocki0fc300b2012-12-21 00:36:41 +01001614 if (!acpi_match_device_ids(device, acpi_platform_device_ids)) {
1615 /* This is a known good platform device. */
1616 acpi_create_platform_device(device);
1617 } else if (device_attach(&device->dev)) {
1618 status = AE_CTRL_DEPTH;
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001619 }
1620 return status;
1621}
1622
Rafael J. Wysockie3863092012-12-21 00:36:47 +01001623static int acpi_bus_scan(acpi_handle handle, struct acpi_device **child)
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001624{
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001625 void *device = NULL;
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001626 acpi_status status;
1627 int ret = -ENODEV;
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001628
Rafael J. Wysockie3863092012-12-21 00:36:47 +01001629 status = acpi_bus_check_add(handle, 0, NULL, &device);
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001630 if (ACPI_SUCCESS(status))
1631 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
Rafael J. Wysockie3863092012-12-21 00:36:47 +01001632 acpi_bus_check_add, NULL, NULL, &device);
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001633
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001634 if (!device)
1635 goto out;
1636
1637 ret = 0;
Rafael J. Wysocki0fc300b2012-12-21 00:36:41 +01001638 status = acpi_bus_device_attach(handle, 0, NULL, NULL);
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001639 if (ACPI_SUCCESS(status))
1640 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
Rafael J. Wysocki0fc300b2012-12-21 00:36:41 +01001641 acpi_bus_device_attach, NULL, NULL, NULL);
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001642
1643 out:
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001644 if (child)
1645 *child = device;
Thomas Renninger77796882010-01-29 17:48:52 +01001646
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001647 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
Rafael J. Wysocki636458d2012-12-21 00:36:47 +01001650/**
1651 * acpi_bus_add - Add ACPI device node objects in a given namespace scope.
1652 * @handle: Root of the namespace scope to scan.
1653 * @ret: Location to store a return struct acpi_device pointer.
Thomas Renninger77796882010-01-29 17:48:52 +01001654 *
Rafael J. Wysocki636458d2012-12-21 00:36:47 +01001655 * Scan a given ACPI tree (probably recently hot-plugged) and create and add
1656 * found devices.
Thomas Renninger77796882010-01-29 17:48:52 +01001657 *
Rafael J. Wysocki636458d2012-12-21 00:36:47 +01001658 * If no devices were found, -ENODEV is returned, but it does not mean that
1659 * there has been a real error. There just have been no suitable ACPI objects
1660 * in the table trunk from which the kernel could create a device and add an
1661 * appropriate driver.
1662 *
1663 * If 0 is returned, the memory location pointed to by @ret will be populated
1664 * with a pointer to a struct acpi_device created while scanning the namespace.
1665 * If @handle corresponds to a device node, that will be a pointer to the struct
1666 * acpi_device object corresponding to @handle. Otherwise, it will be a pointer
1667 * to a struct acpi_device corresponding to one of its descendants.
1668 *
1669 * If an error code is returned, NULL will be stored in the memory location
1670 * pointed to by @ret.
Thomas Renninger77796882010-01-29 17:48:52 +01001671 */
Rafael J. Wysocki636458d2012-12-21 00:36:47 +01001672int acpi_bus_add(acpi_handle handle, struct acpi_device **ret)
Rajesh Shah3fb02732005-04-28 00:25:52 -07001673{
Rafael J. Wysocki02f57c62012-12-21 00:36:46 +01001674 int err;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001675
Rafael J. Wysockie3863092012-12-21 00:36:47 +01001676 err = acpi_bus_scan(handle, ret);
Rafael J. Wysocki02f57c62012-12-21 00:36:46 +01001677 if (err)
1678 return err;
Rafael J. Wysockia2100802010-09-16 00:30:43 +02001679
Lin Ming3a378982010-12-13 13:36:15 +08001680 acpi_update_all_gpes();
Rafael J. Wysocki0fc300b2012-12-21 00:36:41 +01001681 return 0;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001682}
Rafael J. Wysocki02f57c62012-12-21 00:36:46 +01001683EXPORT_SYMBOL(acpi_bus_add);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
Kristen Accardiceaba662006-02-23 17:56:01 -08001685int acpi_bus_trim(struct acpi_device *start, int rmdevice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686{
Len Brown4be44fc2005-08-05 00:44:28 -04001687 acpi_status status;
1688 struct acpi_device *parent, *child;
1689 acpi_handle phandle, chandle;
1690 acpi_object_type type;
1691 u32 level = 1;
1692 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
Len Brown4be44fc2005-08-05 00:44:28 -04001694 parent = start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 phandle = start->handle;
1696 child = chandle = NULL;
1697
1698 while ((level > 0) && parent && (!err)) {
1699 status = acpi_get_next_object(ACPI_TYPE_ANY, phandle,
Len Brown4be44fc2005-08-05 00:44:28 -04001700 chandle, &chandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
1702 /*
1703 * If this scope is exhausted then move our way back up.
1704 */
1705 if (ACPI_FAILURE(status)) {
1706 level--;
1707 chandle = phandle;
1708 acpi_get_parent(phandle, &phandle);
1709 child = parent;
1710 parent = parent->parent;
1711
1712 if (level == 0)
1713 err = acpi_bus_remove(child, rmdevice);
1714 else
1715 err = acpi_bus_remove(child, 1);
1716
1717 continue;
1718 }
1719
1720 status = acpi_get_type(chandle, &type);
1721 if (ACPI_FAILURE(status)) {
1722 continue;
1723 }
1724 /*
1725 * If there is a device corresponding to chandle then
1726 * parse it (depth-first).
1727 */
1728 if (acpi_bus_get_device(chandle, &child) == 0) {
1729 level++;
1730 phandle = chandle;
1731 chandle = NULL;
1732 parent = child;
1733 }
1734 continue;
1735 }
1736 return err;
1737}
Kristen Accardiceaba662006-02-23 17:56:01 -08001738EXPORT_SYMBOL_GPL(acpi_bus_trim);
1739
Bjorn Helgaase8b945c2009-09-21 19:28:59 +00001740static int acpi_bus_scan_fixed(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741{
Len Brown4be44fc2005-08-05 00:44:28 -04001742 int result = 0;
1743 struct acpi_device *device = NULL;
Li Shaohuac4168bf2006-12-07 20:56:41 +08001744
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 /*
1746 * Enumerate all fixed-feature devices.
1747 */
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001748 if ((acpi_gbl_FADT.flags & ACPI_FADT_POWER_BUTTON) == 0) {
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001749 result = acpi_add_single_object(&device, NULL,
Li Shaohuac4168bf2006-12-07 20:56:41 +08001750 ACPI_BUS_TYPE_POWER_BUTTON,
Rafael J. Wysocki209d3b12012-12-21 00:36:48 +01001751 ACPI_STA_DEFAULT, true);
Daniel Drakec10d7a132012-05-10 00:08:43 +01001752 device_init_wakeup(&device->dev, true);
Rajesh Shah3fb02732005-04-28 00:25:52 -07001753 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754
Alexey Starikovskiycee324b2007-02-02 19:48:22 +03001755 if ((acpi_gbl_FADT.flags & ACPI_FADT_SLEEP_BUTTON) == 0) {
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001756 result = acpi_add_single_object(&device, NULL,
Li Shaohuac4168bf2006-12-07 20:56:41 +08001757 ACPI_BUS_TYPE_SLEEP_BUTTON,
Rafael J. Wysocki209d3b12012-12-21 00:36:48 +01001758 ACPI_STA_DEFAULT, true);
Rajesh Shah3fb02732005-04-28 00:25:52 -07001759 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
Patrick Mocheld550d982006-06-27 00:41:40 -04001761 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762}
1763
Bjorn Helgaase747f272009-03-24 16:49:43 -06001764int __init acpi_scan_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765{
1766 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
Patrick Mochel5b327262006-05-10 10:33:00 -04001768 result = bus_register(&acpi_bus_type);
1769 if (result) {
1770 /* We don't want to quit even if we failed to add suspend/resume */
1771 printk(KERN_ERR PREFIX "Could not register bus type\n");
1772 }
1773
Rafael J. Wysocki97d9a9e2010-11-25 00:10:02 +01001774 acpi_power_init();
Rafael J. Wysocki92ef2a22012-12-21 00:36:40 +01001775 acpi_pci_root_init();
Rafael J. Wysocki97d9a9e2010-11-25 00:10:02 +01001776
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 * Enumerate devices in the ACPI namespace.
1779 */
Rafael J. Wysockie3863092012-12-21 00:36:47 +01001780 result = acpi_bus_scan(ACPI_ROOT_OBJECT, &acpi_root);
Alexey Starikovskiyc04209a2008-01-01 14:12:55 -05001781
Li Shaohuac4168bf2006-12-07 20:56:41 +08001782 if (!result)
Bjorn Helgaasadc08e22009-09-21 19:29:45 +00001783 result = acpi_bus_scan_fixed();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
1785 if (result)
1786 acpi_device_unregister(acpi_root, ACPI_BUS_REMOVAL_NORMAL);
Rafael J. Wysockia2100802010-09-16 00:30:43 +02001787 else
Lin Ming3a378982010-12-13 13:36:15 +08001788 acpi_update_all_gpes();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
Patrick Mocheld550d982006-06-27 00:41:40 -04001790 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791}