blob: 3f6ec0dd4fb6821c4bb8be0ece2cbc88531cc465 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070032static LIST_HEAD(acpi_device_list);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +080033static LIST_HEAD(acpi_bus_id_list);
Rafael J. Wysockic511cc12013-01-27 21:17:29 +010034static DEFINE_MUTEX(acpi_scan_lock);
Rafael J. Wysockica589f92013-01-30 14:27:29 +010035static LIST_HEAD(acpi_scan_handlers_list);
Shaohua Li90905892009-04-07 10:24:29 +080036DEFINE_MUTEX(acpi_device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070037LIST_HEAD(acpi_wakeup_device_list);
38
Zhang Ruie49bd2dd2006-12-08 17:23:43 +080039struct acpi_device_bus_id{
Zhang Ruibb095852007-01-04 15:03:18 +080040 char bus_id[15];
Zhang Ruie49bd2dd2006-12-08 17:23:43 +080041 unsigned int instance_no;
42 struct list_head node;
43};
Thomas Renninger29b71a12007-07-23 14:43:51 +020044
Rafael J. Wysocki3757b942013-02-13 14:36:47 +010045void acpi_scan_lock_acquire(void)
46{
47 mutex_lock(&acpi_scan_lock);
48}
49EXPORT_SYMBOL_GPL(acpi_scan_lock_acquire);
50
51void acpi_scan_lock_release(void)
52{
53 mutex_unlock(&acpi_scan_lock);
54}
55EXPORT_SYMBOL_GPL(acpi_scan_lock_release);
56
Rafael J. Wysockica589f92013-01-30 14:27:29 +010057int acpi_scan_add_handler(struct acpi_scan_handler *handler)
58{
59 if (!handler || !handler->attach)
60 return -EINVAL;
61
62 list_add_tail(&handler->list_node, &acpi_scan_handlers_list);
63 return 0;
64}
65
Rafael J. Wysocki3f8055c2013-03-03 23:08:16 +010066int acpi_scan_add_handler_with_hotplug(struct acpi_scan_handler *handler,
67 const char *hotplug_profile_name)
68{
69 int error;
70
71 error = acpi_scan_add_handler(handler);
72 if (error)
73 return error;
74
75 acpi_sysfs_add_hotplug_profile(&handler->hotplug, hotplug_profile_name);
76 return 0;
77}
78
Thomas Renninger29b71a12007-07-23 14:43:51 +020079/*
80 * Creates hid/cid(s) string needed for modalias and uevent
81 * e.g. on a device with hid:IBM0001 and cid:ACPI0001 you get:
82 * char *modalias: "acpi:IBM0001:ACPI0001"
83*/
Adrian Bunkb3e572d2007-08-14 23:22:35 +020084static int create_modalias(struct acpi_device *acpi_dev, char *modalias,
85 int size)
86{
Thomas Renninger29b71a12007-07-23 14:43:51 +020087 int len;
Zhang Rui5c9fcb52008-03-20 16:40:32 +080088 int count;
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -060089 struct acpi_hardware_id *id;
Thomas Renninger29b71a12007-07-23 14:43:51 +020090
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +020091 if (list_empty(&acpi_dev->pnp.ids))
92 return 0;
93
Zhang Rui5c9fcb52008-03-20 16:40:32 +080094 len = snprintf(modalias, size, "acpi:");
Thomas Renninger29b71a12007-07-23 14:43:51 +020095 size -= len;
96
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -060097 list_for_each_entry(id, &acpi_dev->pnp.ids, list) {
98 count = snprintf(&modalias[len], size, "%s:", id->id);
Zhang Rui5c9fcb52008-03-20 16:40:32 +080099 if (count < 0 || count >= size)
100 return -EINVAL;
101 len += count;
102 size -= count;
103 }
104
Thomas Renninger29b71a12007-07-23 14:43:51 +0200105 modalias[len] = '\0';
106 return len;
107}
108
109static ssize_t
110acpi_device_modalias_show(struct device *dev, struct device_attribute *attr, char *buf) {
111 struct acpi_device *acpi_dev = to_acpi_device(dev);
112 int len;
113
114 /* Device has no HID and no CID or string is >1024 */
115 len = create_modalias(acpi_dev, buf, 1024);
116 if (len <= 0)
117 return 0;
118 buf[len++] = '\n';
119 return len;
120}
121static DEVICE_ATTR(modalias, 0444, acpi_device_modalias_show, NULL);
122
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100123static int acpi_scan_hot_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
Yinghai Lu5993c462013-01-11 22:40:41 +0000125 acpi_handle handle = device->handle;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100126 acpi_handle not_used;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 struct acpi_object_list arg_list;
128 union acpi_object arg;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100129 acpi_status status;
Rafael J. Wysockif058cdf2013-02-09 15:29:11 +0100130
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100131 /* If there is no handle, the device node has been unregistered. */
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100132 if (!handle) {
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100133 dev_dbg(&device->dev, "ACPI handle missing\n");
134 put_device(&device->dev);
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100135 return -EINVAL;
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100136 }
137
Zhang Rui26d46862008-04-29 02:35:48 -0400138 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Kay Sievers07944692008-10-30 01:18:59 +0100139 "Hot-removing device %s...\n", dev_name(&device->dev)));
Zhang Rui26d46862008-04-29 02:35:48 -0400140
Rafael J. Wysockibfee26d2013-01-26 00:27:44 +0100141 acpi_bus_trim(device);
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100142 /* Device node has been unregistered. */
143 put_device(&device->dev);
Toshi Kanib3c450c2012-10-26 13:38:57 +0200144 device = NULL;
145
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100146 if (ACPI_SUCCESS(acpi_get_handle(handle, "_LCK", &not_used))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 arg_list.count = 1;
148 arg_list.pointer = &arg;
149 arg.type = ACPI_TYPE_INTEGER;
150 arg.integer.value = 0;
151 acpi_evaluate_object(handle, "_LCK", &arg_list, NULL);
152 }
153
154 arg_list.count = 1;
155 arg_list.pointer = &arg;
156 arg.type = ACPI_TYPE_INTEGER;
157 arg.integer.value = 1;
158
159 /*
160 * TBD: _EJD support.
161 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 status = acpi_evaluate_object(handle, "_EJ0", &arg_list, NULL);
Toshi Kanic4753e52012-05-23 20:25:20 -0600163 if (ACPI_FAILURE(status)) {
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100164 if (status == AE_NOT_FOUND) {
165 return -ENODEV;
166 } else {
Rafael J. Wysockif058cdf2013-02-09 15:29:11 +0100167 acpi_handle_warn(handle, "Eject failed\n");
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100168 return -EIO;
169 }
170 }
171 return 0;
172}
Rafael J. Wysockif058cdf2013-02-09 15:29:11 +0100173
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100174static void acpi_bus_device_eject(void *context)
175{
176 acpi_handle handle = context;
177 struct acpi_device *device = NULL;
178 struct acpi_scan_handler *handler;
179 u32 ost_code = ACPI_OST_SC_NON_SPECIFIC_FAILURE;
180
181 mutex_lock(&acpi_scan_lock);
182
183 acpi_bus_get_device(handle, &device);
184 if (!device)
185 goto err_out;
186
187 handler = device->handler;
188 if (!handler || !handler->hotplug.enabled) {
189 ost_code = ACPI_OST_SC_EJECT_NOT_SUPPORTED;
190 goto err_out;
191 }
192 acpi_evaluate_hotplug_ost(handle, ACPI_NOTIFY_EJECT_REQUEST,
193 ACPI_OST_SC_EJECT_IN_PROGRESS, NULL);
194 if (handler->hotplug.mode == AHM_CONTAINER) {
195 device->flags.eject_pending = true;
196 kobject_uevent(&device->dev.kobj, KOBJ_OFFLINE);
197 } else {
198 int error;
199
200 get_device(&device->dev);
201 error = acpi_scan_hot_remove(device);
202 if (error)
203 goto err_out;
Toshi Kanic4753e52012-05-23 20:25:20 -0600204 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100206 out:
Rafael J. Wysockif058cdf2013-02-09 15:29:11 +0100207 mutex_unlock(&acpi_scan_lock);
Zhang Ruic8d72a52009-06-22 11:31:16 +0800208 return;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100209
210 err_out:
211 acpi_evaluate_hotplug_ost(handle, ACPI_NOTIFY_EJECT_REQUEST, ost_code,
212 NULL);
213 goto out;
214}
215
216static void acpi_scan_bus_device_check(acpi_handle handle, u32 ost_source)
217{
218 struct acpi_device *device = NULL;
219 u32 ost_code = ACPI_OST_SC_NON_SPECIFIC_FAILURE;
220 int error;
221
222 mutex_lock(&acpi_scan_lock);
223
224 acpi_bus_get_device(handle, &device);
225 if (device) {
226 dev_warn(&device->dev, "Attempt to re-insert\n");
227 goto out;
228 }
229 acpi_evaluate_hotplug_ost(handle, ost_source,
230 ACPI_OST_SC_INSERT_IN_PROGRESS, NULL);
231 error = acpi_bus_scan(handle);
232 if (error) {
233 acpi_handle_warn(handle, "Namespace scan failure\n");
234 goto out;
235 }
236 error = acpi_bus_get_device(handle, &device);
237 if (error) {
238 acpi_handle_warn(handle, "Missing device node object\n");
239 goto out;
240 }
241 ost_code = ACPI_OST_SC_SUCCESS;
242 if (device->handler && device->handler->hotplug.mode == AHM_CONTAINER)
243 kobject_uevent(&device->dev.kobj, KOBJ_ONLINE);
244
245 out:
246 acpi_evaluate_hotplug_ost(handle, ost_source, ost_code, NULL);
247 mutex_unlock(&acpi_scan_lock);
248}
249
250static void acpi_scan_bus_check(void *context)
251{
252 acpi_scan_bus_device_check((acpi_handle)context,
253 ACPI_NOTIFY_BUS_CHECK);
254}
255
256static void acpi_scan_device_check(void *context)
257{
258 acpi_scan_bus_device_check((acpi_handle)context,
259 ACPI_NOTIFY_DEVICE_CHECK);
260}
261
262static void acpi_hotplug_notify_cb(acpi_handle handle, u32 type, void *not_used)
263{
264 acpi_osd_exec_callback callback;
265 acpi_status status;
266
267 switch (type) {
268 case ACPI_NOTIFY_BUS_CHECK:
269 acpi_handle_debug(handle, "ACPI_NOTIFY_BUS_CHECK event\n");
270 callback = acpi_scan_bus_check;
271 break;
272 case ACPI_NOTIFY_DEVICE_CHECK:
273 acpi_handle_debug(handle, "ACPI_NOTIFY_DEVICE_CHECK event\n");
274 callback = acpi_scan_device_check;
275 break;
276 case ACPI_NOTIFY_EJECT_REQUEST:
277 acpi_handle_debug(handle, "ACPI_NOTIFY_EJECT_REQUEST event\n");
278 callback = acpi_bus_device_eject;
279 break;
280 default:
281 /* non-hotplug event; possibly handled by other handler */
282 return;
283 }
284 status = acpi_os_hotplug_execute(callback, handle);
285 if (ACPI_FAILURE(status))
286 acpi_evaluate_hotplug_ost(handle, type,
287 ACPI_OST_SC_NON_SPECIFIC_FAILURE,
288 NULL);
289}
290
291/**
292 * acpi_bus_hot_remove_device: hot-remove a device and its children
293 * @context: struct acpi_eject_event pointer (freed in this func)
294 *
295 * Hot-remove a device and its children. This function frees up the
296 * memory space passed by arg context, so that the caller may call
297 * this function asynchronously through acpi_os_hotplug_execute().
298 */
299void acpi_bus_hot_remove_device(void *context)
300{
301 struct acpi_eject_event *ej_event = context;
302 struct acpi_device *device = ej_event->device;
303 acpi_handle handle = device->handle;
304 int error;
305
306 mutex_lock(&acpi_scan_lock);
307
308 error = acpi_scan_hot_remove(device);
309 if (error && handle)
310 acpi_evaluate_hotplug_ost(handle, ej_event->event,
311 ACPI_OST_SC_NON_SPECIFIC_FAILURE,
312 NULL);
313
314 mutex_unlock(&acpi_scan_lock);
315 kfree(context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
Toshi Kani61622ac2012-11-01 14:42:12 +0000317EXPORT_SYMBOL(acpi_bus_hot_remove_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Rafael J. Wysocki836aedb2013-01-24 12:49:59 +0100319static ssize_t real_power_state_show(struct device *dev,
320 struct device_attribute *attr, char *buf)
321{
322 struct acpi_device *adev = to_acpi_device(dev);
323 int state;
324 int ret;
325
326 ret = acpi_device_get_power(adev, &state);
327 if (ret)
328 return ret;
329
330 return sprintf(buf, "%s\n", acpi_power_state_string(state));
331}
332
333static DEVICE_ATTR(real_power_state, 0444, real_power_state_show, NULL);
334
335static ssize_t power_state_show(struct device *dev,
336 struct device_attribute *attr, char *buf)
337{
338 struct acpi_device *adev = to_acpi_device(dev);
339
340 return sprintf(buf, "%s\n", acpi_power_state_string(adev->power.state));
341}
342
343static DEVICE_ATTR(power_state, 0444, power_state_show, NULL);
344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345static ssize_t
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800346acpi_eject_store(struct device *d, struct device_attribute *attr,
347 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800349 struct acpi_device *acpi_device = to_acpi_device(d);
Toshi Kanic4753e52012-05-23 20:25:20 -0600350 struct acpi_eject_event *ej_event;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100351 acpi_object_type not_used;
352 acpi_status status;
353 u32 ost_source;
354 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100356 if (!count || buf[0] != '1')
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100359 if ((!acpi_device->handler || !acpi_device->handler->hotplug.enabled)
360 && !acpi_device->driver)
361 return -ENODEV;
362
363 status = acpi_get_type(acpi_device->handle, &not_used);
364 if (ACPI_FAILURE(status) || !acpi_device->flags.ejectable)
365 return -ENODEV;
366
367 mutex_lock(&acpi_scan_lock);
368
369 if (acpi_device->flags.eject_pending) {
370 /* ACPI eject notification event. */
371 ost_source = ACPI_NOTIFY_EJECT_REQUEST;
372 acpi_device->flags.eject_pending = 0;
373 } else {
374 /* Eject initiated by user space. */
375 ost_source = ACPI_OST_EC_OSPM_EJECT;
376 }
Toshi Kanic4753e52012-05-23 20:25:20 -0600377 ej_event = kmalloc(sizeof(*ej_event), GFP_KERNEL);
378 if (!ej_event) {
379 ret = -ENOMEM;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100380 goto err_out;
Toshi Kanic4753e52012-05-23 20:25:20 -0600381 }
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100382 acpi_evaluate_hotplug_ost(acpi_device->handle, ost_source,
383 ACPI_OST_SC_EJECT_IN_PROGRESS, NULL);
Yinghai Lu5993c462013-01-11 22:40:41 +0000384 ej_event->device = acpi_device;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100385 ej_event->event = ost_source;
386 get_device(&acpi_device->dev);
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100387 status = acpi_os_hotplug_execute(acpi_bus_hot_remove_device, ej_event);
388 if (ACPI_FAILURE(status)) {
389 put_device(&acpi_device->dev);
390 kfree(ej_event);
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100391 ret = status == AE_NO_MEMORY ? -ENOMEM : -EAGAIN;
392 goto err_out;
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100393 }
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100394 ret = count;
395
396 out:
397 mutex_unlock(&acpi_scan_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 return ret;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100399
400 err_out:
401 acpi_evaluate_hotplug_ost(acpi_device->handle, ost_source,
402 ACPI_OST_SC_NON_SPECIFIC_FAILURE, NULL);
403 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404}
405
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800406static DEVICE_ATTR(eject, 0200, NULL, acpi_eject_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800408static ssize_t
409acpi_device_hid_show(struct device *dev, struct device_attribute *attr, char *buf) {
410 struct acpi_device *acpi_dev = to_acpi_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Bjorn Helgaasea8d82f2009-09-21 13:35:09 -0600412 return sprintf(buf, "%s\n", acpi_device_hid(acpi_dev));
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800413}
414static DEVICE_ATTR(hid, 0444, acpi_device_hid_show, NULL);
415
Lv Zheng923d4a42012-10-30 14:43:26 +0100416static ssize_t acpi_device_uid_show(struct device *dev,
417 struct device_attribute *attr, char *buf)
418{
419 struct acpi_device *acpi_dev = to_acpi_device(dev);
420
421 return sprintf(buf, "%s\n", acpi_dev->pnp.unique_id);
422}
423static DEVICE_ATTR(uid, 0444, acpi_device_uid_show, NULL);
424
425static ssize_t acpi_device_adr_show(struct device *dev,
426 struct device_attribute *attr, char *buf)
427{
428 struct acpi_device *acpi_dev = to_acpi_device(dev);
429
430 return sprintf(buf, "0x%08x\n",
431 (unsigned int)(acpi_dev->pnp.bus_address));
432}
433static DEVICE_ATTR(adr, 0444, acpi_device_adr_show, NULL);
434
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800435static ssize_t
436acpi_device_path_show(struct device *dev, struct device_attribute *attr, char *buf) {
437 struct acpi_device *acpi_dev = to_acpi_device(dev);
438 struct acpi_buffer path = {ACPI_ALLOCATE_BUFFER, NULL};
439 int result;
440
441 result = acpi_get_name(acpi_dev->handle, ACPI_FULL_PATHNAME, &path);
Alex Chiang0c526d92009-05-14 08:31:37 -0600442 if (result)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800443 goto end;
444
445 result = sprintf(buf, "%s\n", (char*)path.pointer);
446 kfree(path.pointer);
Alex Chiang0c526d92009-05-14 08:31:37 -0600447end:
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800448 return result;
449}
450static DEVICE_ATTR(path, 0444, acpi_device_path_show, NULL);
451
Lance Ortizd1efe3c2012-10-02 12:43:23 -0600452/* sysfs file that shows description text from the ACPI _STR method */
453static ssize_t description_show(struct device *dev,
454 struct device_attribute *attr,
455 char *buf) {
456 struct acpi_device *acpi_dev = to_acpi_device(dev);
457 int result;
458
459 if (acpi_dev->pnp.str_obj == NULL)
460 return 0;
461
462 /*
463 * The _STR object contains a Unicode identifier for a device.
464 * We need to convert to utf-8 so it can be displayed.
465 */
466 result = utf16s_to_utf8s(
467 (wchar_t *)acpi_dev->pnp.str_obj->buffer.pointer,
468 acpi_dev->pnp.str_obj->buffer.length,
469 UTF16_LITTLE_ENDIAN, buf,
470 PAGE_SIZE);
471
472 buf[result++] = '\n';
473
474 return result;
475}
476static DEVICE_ATTR(description, 0444, description_show, NULL);
477
Yasuaki Ishimatsubb74ac22012-11-16 02:56:59 +0100478static ssize_t
479acpi_device_sun_show(struct device *dev, struct device_attribute *attr,
480 char *buf) {
481 struct acpi_device *acpi_dev = to_acpi_device(dev);
482
483 return sprintf(buf, "%lu\n", acpi_dev->pnp.sun);
484}
485static DEVICE_ATTR(sun, 0444, acpi_device_sun_show, NULL);
486
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800487static int acpi_device_setup_files(struct acpi_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488{
Lance Ortizd1efe3c2012-10-02 12:43:23 -0600489 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800490 acpi_status status;
491 acpi_handle temp;
Yasuaki Ishimatsubb74ac22012-11-16 02:56:59 +0100492 unsigned long long sun;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800493 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800495 /*
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800496 * Devices gotten from FADT don't have a "path" attribute
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800497 */
Alex Chiang0c526d92009-05-14 08:31:37 -0600498 if (dev->handle) {
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800499 result = device_create_file(&dev->dev, &dev_attr_path);
Alex Chiang0c526d92009-05-14 08:31:37 -0600500 if (result)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800501 goto end;
502 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +0200504 if (!list_empty(&dev->pnp.ids)) {
505 result = device_create_file(&dev->dev, &dev_attr_hid);
506 if (result)
507 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +0200509 result = device_create_file(&dev->dev, &dev_attr_modalias);
510 if (result)
511 goto end;
512 }
Thomas Renninger29b71a12007-07-23 14:43:51 +0200513
Lance Ortizd1efe3c2012-10-02 12:43:23 -0600514 /*
515 * If device has _STR, 'description' file is created
516 */
517 status = acpi_get_handle(dev->handle, "_STR", &temp);
518 if (ACPI_SUCCESS(status)) {
519 status = acpi_evaluate_object(dev->handle, "_STR",
520 NULL, &buffer);
521 if (ACPI_FAILURE(status))
522 buffer.pointer = NULL;
523 dev->pnp.str_obj = buffer.pointer;
524 result = device_create_file(&dev->dev, &dev_attr_description);
525 if (result)
526 goto end;
527 }
528
Toshi Kanid4e1a692013-03-04 21:30:41 +0000529 if (dev->pnp.type.bus_address)
Lv Zheng923d4a42012-10-30 14:43:26 +0100530 result = device_create_file(&dev->dev, &dev_attr_adr);
531 if (dev->pnp.unique_id)
532 result = device_create_file(&dev->dev, &dev_attr_uid);
533
Yasuaki Ishimatsubb74ac22012-11-16 02:56:59 +0100534 status = acpi_evaluate_integer(dev->handle, "_SUN", NULL, &sun);
535 if (ACPI_SUCCESS(status)) {
536 dev->pnp.sun = (unsigned long)sun;
537 result = device_create_file(&dev->dev, &dev_attr_sun);
538 if (result)
539 goto end;
540 } else {
541 dev->pnp.sun = (unsigned long)-1;
542 }
543
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800544 /*
545 * If device has _EJ0, 'eject' file is created that is used to trigger
546 * hot-removal function from userland.
547 */
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800548 status = acpi_get_handle(dev->handle, "_EJ0", &temp);
Rafael J. Wysocki836aedb2013-01-24 12:49:59 +0100549 if (ACPI_SUCCESS(status)) {
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800550 result = device_create_file(&dev->dev, &dev_attr_eject);
Rafael J. Wysocki836aedb2013-01-24 12:49:59 +0100551 if (result)
552 return result;
553 }
554
555 if (dev->flags.power_manageable) {
556 result = device_create_file(&dev->dev, &dev_attr_power_state);
557 if (result)
558 return result;
559
560 if (dev->power.flags.power_resources)
561 result = device_create_file(&dev->dev,
562 &dev_attr_real_power_state);
563 }
564
Alex Chiang0c526d92009-05-14 08:31:37 -0600565end:
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800566 return result;
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800567}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800569static void acpi_device_remove_files(struct acpi_device *dev)
570{
571 acpi_status status;
572 acpi_handle temp;
573
Rafael J. Wysocki836aedb2013-01-24 12:49:59 +0100574 if (dev->flags.power_manageable) {
575 device_remove_file(&dev->dev, &dev_attr_power_state);
576 if (dev->power.flags.power_resources)
577 device_remove_file(&dev->dev,
578 &dev_attr_real_power_state);
579 }
580
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800581 /*
Lance Ortizd1efe3c2012-10-02 12:43:23 -0600582 * If device has _STR, remove 'description' file
583 */
584 status = acpi_get_handle(dev->handle, "_STR", &temp);
585 if (ACPI_SUCCESS(status)) {
586 kfree(dev->pnp.str_obj);
587 device_remove_file(&dev->dev, &dev_attr_description);
588 }
589 /*
590 * If device has _EJ0, remove 'eject' file.
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800591 */
592 status = acpi_get_handle(dev->handle, "_EJ0", &temp);
593 if (ACPI_SUCCESS(status))
594 device_remove_file(&dev->dev, &dev_attr_eject);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800595
Yasuaki Ishimatsubb74ac22012-11-16 02:56:59 +0100596 status = acpi_get_handle(dev->handle, "_SUN", &temp);
597 if (ACPI_SUCCESS(status))
598 device_remove_file(&dev->dev, &dev_attr_sun);
599
Lv Zheng923d4a42012-10-30 14:43:26 +0100600 if (dev->pnp.unique_id)
601 device_remove_file(&dev->dev, &dev_attr_uid);
Toshi Kanid4e1a692013-03-04 21:30:41 +0000602 if (dev->pnp.type.bus_address)
Lv Zheng923d4a42012-10-30 14:43:26 +0100603 device_remove_file(&dev->dev, &dev_attr_adr);
Bjorn Helgaas1131b932009-09-21 13:35:29 -0600604 device_remove_file(&dev->dev, &dev_attr_modalias);
605 device_remove_file(&dev->dev, &dev_attr_hid);
Alex Chiang0c526d92009-05-14 08:31:37 -0600606 if (dev->handle)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800607 device_remove_file(&dev->dev, &dev_attr_path);
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800608}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609/* --------------------------------------------------------------------------
Zhang Rui9e89dde2006-12-07 20:56:16 +0800610 ACPI Bus operations
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 -------------------------------------------------------------------------- */
Thomas Renninger29b71a12007-07-23 14:43:51 +0200612
Mika Westerbergcf761af2012-10-31 22:44:41 +0100613static const struct acpi_device_id *__acpi_match_device(
614 struct acpi_device *device, const struct acpi_device_id *ids)
Thomas Renninger29b71a12007-07-23 14:43:51 +0200615{
616 const struct acpi_device_id *id;
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -0600617 struct acpi_hardware_id *hwid;
Thomas Renninger29b71a12007-07-23 14:43:51 +0200618
Zhao Yakui39a0ad82008-08-11 13:40:22 +0800619 /*
620 * If the device is not present, it is unnecessary to load device
621 * driver for it.
622 */
623 if (!device->status.present)
Mika Westerbergcf761af2012-10-31 22:44:41 +0100624 return NULL;
Zhao Yakui39a0ad82008-08-11 13:40:22 +0800625
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -0600626 for (id = ids; id->id[0]; id++)
627 list_for_each_entry(hwid, &device->pnp.ids, list)
628 if (!strcmp((char *) id->id, hwid->id))
Mika Westerbergcf761af2012-10-31 22:44:41 +0100629 return id;
Thomas Renninger29b71a12007-07-23 14:43:51 +0200630
Mika Westerbergcf761af2012-10-31 22:44:41 +0100631 return NULL;
632}
633
634/**
635 * acpi_match_device - Match a struct device against a given list of ACPI IDs
636 * @ids: Array of struct acpi_device_id object to match against.
637 * @dev: The device structure to match.
638 *
639 * Check if @dev has a valid ACPI handle and if there is a struct acpi_device
640 * object for that handle and use that object to match against a given list of
641 * device IDs.
642 *
643 * Return a pointer to the first matching ID on success or %NULL on failure.
644 */
645const struct acpi_device_id *acpi_match_device(const struct acpi_device_id *ids,
646 const struct device *dev)
647{
648 struct acpi_device *adev;
Rafael J. Wysocki0613e1f2013-01-31 20:54:05 +0100649 acpi_handle handle = ACPI_HANDLE(dev);
Mika Westerbergcf761af2012-10-31 22:44:41 +0100650
Rafael J. Wysocki0613e1f2013-01-31 20:54:05 +0100651 if (!ids || !handle || acpi_bus_get_device(handle, &adev))
Mika Westerbergcf761af2012-10-31 22:44:41 +0100652 return NULL;
653
654 return __acpi_match_device(adev, ids);
655}
656EXPORT_SYMBOL_GPL(acpi_match_device);
657
658int acpi_match_device_ids(struct acpi_device *device,
659 const struct acpi_device_id *ids)
660{
661 return __acpi_match_device(device, ids) ? 0 : -ENOENT;
Thomas Renninger29b71a12007-07-23 14:43:51 +0200662}
663EXPORT_SYMBOL(acpi_match_device_ids);
664
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100665static void acpi_free_power_resources_lists(struct acpi_device *device)
666{
667 int i;
668
Rafael J. Wysocki993cbe52013-01-17 14:11:06 +0100669 if (device->wakeup.flags.valid)
670 acpi_power_resources_list_free(&device->wakeup.resources);
671
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100672 if (!device->flags.power_manageable)
673 return;
674
675 for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3_HOT; i++) {
676 struct acpi_device_power_state *ps = &device->power.states[i];
677 acpi_power_resources_list_free(&ps->resources);
678 }
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -0600679}
680
Patrick Mochel1890a972006-12-07 20:56:31 +0800681static void acpi_device_release(struct device *dev)
682{
683 struct acpi_device *acpi_dev = to_acpi_device(dev);
684
Toshi Kanic0af4172013-03-04 21:30:42 +0000685 acpi_free_pnp_ids(&acpi_dev->pnp);
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100686 acpi_free_power_resources_lists(acpi_dev);
Patrick Mochel1890a972006-12-07 20:56:31 +0800687 kfree(acpi_dev);
688}
689
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800690static int acpi_bus_match(struct device *dev, struct device_driver *drv)
691{
692 struct acpi_device *acpi_dev = to_acpi_device(dev);
693 struct acpi_driver *acpi_drv = to_acpi_driver(drv);
694
Rafael J. Wysocki209d3b12012-12-21 00:36:48 +0100695 return acpi_dev->flags.match_driver
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +0100696 && !acpi_match_device_ids(acpi_dev, acpi_drv->ids);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800697}
698
Kay Sievers7eff2e72007-08-14 15:15:12 +0200699static int acpi_device_uevent(struct device *dev, struct kobj_uevent_env *env)
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800700{
701 struct acpi_device *acpi_dev = to_acpi_device(dev);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200702 int len;
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800703
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +0200704 if (list_empty(&acpi_dev->pnp.ids))
705 return 0;
706
Kay Sievers7eff2e72007-08-14 15:15:12 +0200707 if (add_uevent_var(env, "MODALIAS="))
708 return -ENOMEM;
709 len = create_modalias(acpi_dev, &env->buf[env->buflen - 1],
710 sizeof(env->buf) - env->buflen);
711 if (len >= (sizeof(env->buf) - env->buflen))
712 return -ENOMEM;
713 env->buflen += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 return 0;
715}
716
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000717static void acpi_device_notify(acpi_handle handle, u32 event, void *data)
718{
719 struct acpi_device *device = data;
720
721 device->driver->ops.notify(device, event);
722}
723
724static acpi_status acpi_device_notify_fixed(void *data)
725{
726 struct acpi_device *device = data;
727
Bjorn Helgaas53de5352009-08-31 22:32:20 +0000728 /* Fixed hardware devices have no handles */
729 acpi_device_notify(NULL, ACPI_FIXED_HARDWARE_EVENT, device);
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000730 return AE_OK;
731}
732
733static int acpi_device_install_notify_handler(struct acpi_device *device)
734{
735 acpi_status status;
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000736
Bjorn Helgaasccba2a32009-09-21 19:29:15 +0000737 if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000738 status =
739 acpi_install_fixed_event_handler(ACPI_EVENT_POWER_BUTTON,
740 acpi_device_notify_fixed,
741 device);
Bjorn Helgaasccba2a32009-09-21 19:29:15 +0000742 else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000743 status =
744 acpi_install_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON,
745 acpi_device_notify_fixed,
746 device);
747 else
748 status = acpi_install_notify_handler(device->handle,
749 ACPI_DEVICE_NOTIFY,
750 acpi_device_notify,
751 device);
752
753 if (ACPI_FAILURE(status))
754 return -EINVAL;
755 return 0;
756}
757
758static void acpi_device_remove_notify_handler(struct acpi_device *device)
759{
Bjorn Helgaasccba2a32009-09-21 19:29:15 +0000760 if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000761 acpi_remove_fixed_event_handler(ACPI_EVENT_POWER_BUTTON,
762 acpi_device_notify_fixed);
Bjorn Helgaasccba2a32009-09-21 19:29:15 +0000763 else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000764 acpi_remove_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON,
765 acpi_device_notify_fixed);
766 else
767 acpi_remove_notify_handler(device->handle, ACPI_DEVICE_NOTIFY,
768 acpi_device_notify);
769}
770
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800771static int acpi_bus_driver_init(struct acpi_device *, struct acpi_driver *);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800772static int acpi_device_probe(struct device * dev)
Zhang Rui9e89dde2006-12-07 20:56:16 +0800773{
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800774 struct acpi_device *acpi_dev = to_acpi_device(dev);
775 struct acpi_driver *acpi_drv = to_acpi_driver(dev->driver);
776 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800778 ret = acpi_bus_driver_init(acpi_dev, acpi_drv);
779 if (!ret) {
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000780 if (acpi_drv->ops.notify) {
781 ret = acpi_device_install_notify_handler(acpi_dev);
782 if (ret) {
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000783 if (acpi_drv->ops.remove)
Rafael J. Wysocki51fac832013-01-24 00:24:48 +0100784 acpi_drv->ops.remove(acpi_dev);
Toshi Kani5f27ee82013-02-07 21:19:13 +0000785 acpi_dev->driver = NULL;
786 acpi_dev->driver_data = NULL;
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000787 return ret;
788 }
789 }
790
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800791 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
792 "Found driver [%s] for device [%s]\n",
793 acpi_drv->name, acpi_dev->pnp.bus_id));
794 get_device(dev);
Zhang Rui9e89dde2006-12-07 20:56:16 +0800795 }
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800796 return ret;
797}
798
799static int acpi_device_remove(struct device * dev)
800{
801 struct acpi_device *acpi_dev = to_acpi_device(dev);
802 struct acpi_driver *acpi_drv = acpi_dev->driver;
803
804 if (acpi_drv) {
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000805 if (acpi_drv->ops.notify)
806 acpi_device_remove_notify_handler(acpi_dev);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800807 if (acpi_drv->ops.remove)
Rafael J. Wysocki51fac832013-01-24 00:24:48 +0100808 acpi_drv->ops.remove(acpi_dev);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800809 }
810 acpi_dev->driver = NULL;
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700811 acpi_dev->driver_data = NULL;
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800812
813 put_device(dev);
Zhang Rui9e89dde2006-12-07 20:56:16 +0800814 return 0;
815}
816
David Brownell55955aa2007-05-08 00:28:35 -0700817struct bus_type acpi_bus_type = {
Zhang Rui9e89dde2006-12-07 20:56:16 +0800818 .name = "acpi",
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800819 .match = acpi_bus_match,
820 .probe = acpi_device_probe,
821 .remove = acpi_device_remove,
822 .uevent = acpi_device_uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823};
824
Rafael J. Wysockicf860be2013-01-24 12:49:49 +0100825int acpi_device_add(struct acpi_device *device,
826 void (*release)(struct device *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827{
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800828 int result;
829 struct acpi_device_bus_id *acpi_device_bus_id, *new_bus_id;
830 int found = 0;
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +0000831
Rafael J. Wysockid43e1672013-01-17 14:11:05 +0100832 if (device->handle) {
833 acpi_status status;
834
835 status = acpi_attach_data(device->handle, acpi_bus_data_handler,
836 device);
837 if (ACPI_FAILURE(status)) {
838 acpi_handle_err(device->handle,
839 "Unable to attach device data\n");
840 return -ENODEV;
841 }
842 }
843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 /*
845 * Linkage
846 * -------
847 * Link this device to its parent and siblings.
848 */
849 INIT_LIST_HEAD(&device->children);
850 INIT_LIST_HEAD(&device->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 INIT_LIST_HEAD(&device->wakeup_list);
Lan Tianyu1033f902012-08-17 14:44:09 +0800852 INIT_LIST_HEAD(&device->physical_node_list);
853 mutex_init(&device->physical_node_lock);
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100854 INIT_LIST_HEAD(&device->power_dependent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800856 new_bus_id = kzalloc(sizeof(struct acpi_device_bus_id), GFP_KERNEL);
857 if (!new_bus_id) {
Rafael J. Wysockid43e1672013-01-17 14:11:05 +0100858 pr_err(PREFIX "Memory allocation error\n");
859 result = -ENOMEM;
860 goto err_detach;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800861 }
862
Shaohua Li90905892009-04-07 10:24:29 +0800863 mutex_lock(&acpi_device_lock);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800864 /*
865 * Find suitable bus_id and instance number in acpi_bus_id_list
866 * If failed, create one and link it into acpi_bus_id_list
867 */
868 list_for_each_entry(acpi_device_bus_id, &acpi_bus_id_list, node) {
Bjorn Helgaas1131b932009-09-21 13:35:29 -0600869 if (!strcmp(acpi_device_bus_id->bus_id,
870 acpi_device_hid(device))) {
871 acpi_device_bus_id->instance_no++;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800872 found = 1;
873 kfree(new_bus_id);
874 break;
875 }
876 }
Alex Chiang0c526d92009-05-14 08:31:37 -0600877 if (!found) {
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800878 acpi_device_bus_id = new_bus_id;
Bjorn Helgaas1131b932009-09-21 13:35:29 -0600879 strcpy(acpi_device_bus_id->bus_id, acpi_device_hid(device));
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800880 acpi_device_bus_id->instance_no = 0;
881 list_add_tail(&acpi_device_bus_id->node, &acpi_bus_id_list);
882 }
Kay Sievers07944692008-10-30 01:18:59 +0100883 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 +0800884
Len Brown33b57152008-12-15 22:09:26 -0500885 if (device->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 list_add_tail(&device->node, &device->parent->children);
Len Brown33b57152008-12-15 22:09:26 -0500887
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 if (device->wakeup.flags.valid)
889 list_add_tail(&device->wakeup_list, &acpi_wakeup_device_list);
Shaohua Li90905892009-04-07 10:24:29 +0800890 mutex_unlock(&acpi_device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Patrick Mochel1890a972006-12-07 20:56:31 +0800892 if (device->parent)
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +0000893 device->dev.parent = &device->parent->dev;
Patrick Mochel1890a972006-12-07 20:56:31 +0800894 device->dev.bus = &acpi_bus_type;
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100895 device->dev.release = release;
Rafael J. Wysockicf860be2013-01-24 12:49:49 +0100896 result = device_add(&device->dev);
Alex Chiang0c526d92009-05-14 08:31:37 -0600897 if (result) {
Alex Chiang8b12b922009-05-14 08:31:32 -0600898 dev_err(&device->dev, "Error registering device\n");
Rafael J. Wysockid43e1672013-01-17 14:11:05 +0100899 goto err;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800900 }
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800901
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800902 result = acpi_device_setup_files(device);
Alex Chiang0c526d92009-05-14 08:31:37 -0600903 if (result)
Kay Sievers07944692008-10-30 01:18:59 +0100904 printk(KERN_ERR PREFIX "Error creating sysfs interface for device %s\n",
905 dev_name(&device->dev));
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800906
Li Shaohua96333572006-12-07 20:56:46 +0800907 device->removal_type = ACPI_BUS_REMOVAL_NORMAL;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800908 return 0;
Rafael J. Wysockid43e1672013-01-17 14:11:05 +0100909
910 err:
Shaohua Li90905892009-04-07 10:24:29 +0800911 mutex_lock(&acpi_device_lock);
Len Brown33b57152008-12-15 22:09:26 -0500912 if (device->parent)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800913 list_del(&device->node);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800914 list_del(&device->wakeup_list);
Shaohua Li90905892009-04-07 10:24:29 +0800915 mutex_unlock(&acpi_device_lock);
Rafael J. Wysockid43e1672013-01-17 14:11:05 +0100916
917 err_detach:
918 acpi_detach_data(device->handle, acpi_bus_data_handler);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800919 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920}
921
Rafael J. Wysockib17b5372013-01-15 13:23:44 +0100922static void acpi_device_unregister(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923{
Shaohua Li90905892009-04-07 10:24:29 +0800924 mutex_lock(&acpi_device_lock);
Len Brown33b57152008-12-15 22:09:26 -0500925 if (device->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 list_del(&device->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
928 list_del(&device->wakeup_list);
Shaohua Li90905892009-04-07 10:24:29 +0800929 mutex_unlock(&acpi_device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
931 acpi_detach_data(device->handle, acpi_bus_data_handler);
Patrick Mochel1890a972006-12-07 20:56:31 +0800932
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100933 acpi_power_add_remove_device(device, false);
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800934 acpi_device_remove_files(device);
Rafael J. Wysockib1c0f992013-01-24 12:50:09 +0100935 if (device->remove)
936 device->remove(device);
937
Rafael J. Wysockicf860be2013-01-24 12:49:49 +0100938 device_del(&device->dev);
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100939 /*
Rafael J. Wysocki0aa120a2013-02-09 15:29:20 +0100940 * Transition the device to D3cold to drop the reference counts of all
941 * power resources the device depends on and turn off the ones that have
942 * no more references.
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100943 */
Rafael J. Wysocki0aa120a2013-02-09 15:29:20 +0100944 acpi_device_set_power(device, ACPI_STATE_D3_COLD);
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100945 device->handle = NULL;
Rafael J. Wysockicf860be2013-01-24 12:49:49 +0100946 put_device(&device->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947}
948
Zhang Rui9e89dde2006-12-07 20:56:16 +0800949/* --------------------------------------------------------------------------
950 Driver Management
951 -------------------------------------------------------------------------- */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952/**
Randy Dunlapd758a8f2006-01-06 01:31:00 -0500953 * acpi_bus_driver_init - add a device to a driver
954 * @device: the device to add and initialize
955 * @driver: driver for the device
956 *
Alex Chiang0c526d92009-05-14 08:31:37 -0600957 * Used to initialize a device via its device driver. Called whenever a
Patrick Mochel1890a972006-12-07 20:56:31 +0800958 * driver is bound to a device. Invokes the driver's add() ops.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 */
960static int
Len Brown4be44fc2005-08-05 00:44:28 -0400961acpi_bus_driver_init(struct acpi_device *device, struct acpi_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962{
Len Brown4be44fc2005-08-05 00:44:28 -0400963 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 if (!device || !driver)
Patrick Mocheld550d982006-06-27 00:41:40 -0400966 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
968 if (!driver->ops.add)
Patrick Mocheld550d982006-06-27 00:41:40 -0400969 return -ENOSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
971 result = driver->ops.add(device);
972 if (result) {
973 device->driver = NULL;
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700974 device->driver_data = NULL;
Patrick Mocheld550d982006-06-27 00:41:40 -0400975 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 }
977
978 device->driver = driver;
979
980 /*
981 * TBD - Configuration Management: Assign resources to device based
982 * upon possible configuration and currently allocated resources.
983 */
984
Len Brown4be44fc2005-08-05 00:44:28 -0400985 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
986 "Driver successfully bound to device\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400987 return 0;
Rajesh Shah3fb02732005-04-28 00:25:52 -0700988}
989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990/**
Randy Dunlapd758a8f2006-01-06 01:31:00 -0500991 * acpi_bus_register_driver - register a driver with the ACPI bus
992 * @driver: driver being registered
993 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 * Registers a driver with the ACPI bus. Searches the namespace for all
Bjorn Helgaas9d9f7492006-03-28 17:04:00 -0500995 * devices that match the driver's criteria and binds. Returns zero for
996 * success or a negative error status for failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 */
Len Brown4be44fc2005-08-05 00:44:28 -0400998int acpi_bus_register_driver(struct acpi_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999{
Patrick Mochel1890a972006-12-07 20:56:31 +08001000 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
1002 if (acpi_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -04001003 return -ENODEV;
Patrick Mochel1890a972006-12-07 20:56:31 +08001004 driver->drv.name = driver->name;
1005 driver->drv.bus = &acpi_bus_type;
1006 driver->drv.owner = driver->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
Patrick Mochel1890a972006-12-07 20:56:31 +08001008 ret = driver_register(&driver->drv);
1009 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
Len Brown4be44fc2005-08-05 00:44:28 -04001012EXPORT_SYMBOL(acpi_bus_register_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
1014/**
Randy Dunlapd758a8f2006-01-06 01:31:00 -05001015 * acpi_bus_unregister_driver - unregisters a driver with the APIC bus
1016 * @driver: driver to unregister
1017 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 * Unregisters a driver with the ACPI bus. Searches the namespace for all
1019 * devices that match the driver's criteria and unbinds.
1020 */
Bjorn Helgaas06ea8e082006-04-27 05:25:00 -04001021void acpi_bus_unregister_driver(struct acpi_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022{
Patrick Mochel1890a972006-12-07 20:56:31 +08001023 driver_unregister(&driver->drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024}
Len Brown4be44fc2005-08-05 00:44:28 -04001025
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026EXPORT_SYMBOL(acpi_bus_unregister_driver);
1027
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028/* --------------------------------------------------------------------------
1029 Device Enumeration
1030 -------------------------------------------------------------------------- */
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001031static struct acpi_device *acpi_bus_get_parent(acpi_handle handle)
1032{
Rafael J. Wysocki456de892013-01-31 20:57:40 +01001033 struct acpi_device *device = NULL;
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001034 acpi_status status;
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001035
1036 /*
1037 * Fixed hardware devices do not appear in the namespace and do not
1038 * have handles, but we fabricate acpi_devices for them, so we have
1039 * to deal with them specially.
1040 */
Rafael J. Wysocki456de892013-01-31 20:57:40 +01001041 if (!handle)
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001042 return acpi_root;
1043
1044 do {
1045 status = acpi_get_parent(handle, &handle);
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001046 if (ACPI_FAILURE(status))
Rafael J. Wysocki456de892013-01-31 20:57:40 +01001047 return status == AE_NULL_ENTRY ? NULL : acpi_root;
1048 } while (acpi_bus_get_device(handle, &device));
1049 return device;
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001050}
1051
Len Brownc8f7a622006-07-09 17:22:28 -04001052acpi_status
1053acpi_bus_get_ejd(acpi_handle handle, acpi_handle *ejd)
1054{
1055 acpi_status status;
1056 acpi_handle tmp;
1057 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
1058 union acpi_object *obj;
1059
1060 status = acpi_get_handle(handle, "_EJD", &tmp);
1061 if (ACPI_FAILURE(status))
1062 return status;
1063
1064 status = acpi_evaluate_object(handle, "_EJD", NULL, &buffer);
1065 if (ACPI_SUCCESS(status)) {
1066 obj = buffer.pointer;
Holger Macht3b5fee52008-02-14 13:40:34 +01001067 status = acpi_get_handle(ACPI_ROOT_OBJECT, obj->string.pointer,
1068 ejd);
Len Brownc8f7a622006-07-09 17:22:28 -04001069 kfree(buffer.pointer);
1070 }
1071 return status;
1072}
1073EXPORT_SYMBOL_GPL(acpi_bus_get_ejd);
1074
Bob Moore8e4319c2009-06-29 13:43:27 +08001075void acpi_bus_data_handler(acpi_handle handle, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076{
1077
1078 /* TBD */
1079
1080 return;
1081}
1082
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001083static int acpi_bus_extract_wakeup_device_power_package(acpi_handle handle,
1084 struct acpi_device_wakeup *wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085{
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001086 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1087 union acpi_object *package = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 union acpi_object *element = NULL;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001089 acpi_status status;
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001090 int err = -ENODATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001092 if (!wakeup)
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001093 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
Rafael J. Wysocki993cbe52013-01-17 14:11:06 +01001095 INIT_LIST_HEAD(&wakeup->resources);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001097 /* _PRW */
1098 status = acpi_evaluate_object(handle, "_PRW", NULL, &buffer);
1099 if (ACPI_FAILURE(status)) {
1100 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PRW"));
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001101 return err;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001102 }
1103
1104 package = (union acpi_object *)buffer.pointer;
1105
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001106 if (!package || package->package.count < 2)
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001107 goto out;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001108
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 element = &(package->package.elements[0]);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001110 if (!element)
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001111 goto out;
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001112
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 if (element->type == ACPI_TYPE_PACKAGE) {
1114 if ((element->package.count < 2) ||
1115 (element->package.elements[0].type !=
1116 ACPI_TYPE_LOCAL_REFERENCE)
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001117 || (element->package.elements[1].type != ACPI_TYPE_INTEGER))
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001118 goto out;
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001119
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001120 wakeup->gpe_device =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 element->package.elements[0].reference.handle;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001122 wakeup->gpe_number =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 (u32) element->package.elements[1].integer.value;
1124 } else if (element->type == ACPI_TYPE_INTEGER) {
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001125 wakeup->gpe_device = NULL;
1126 wakeup->gpe_number = element->integer.value;
1127 } else {
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001128 goto out;
1129 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
1131 element = &(package->package.elements[1]);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001132 if (element->type != ACPI_TYPE_INTEGER)
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001133 goto out;
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001134
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001135 wakeup->sleep_state = element->integer.value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001137 err = acpi_extract_power_resources(package, 2, &wakeup->resources);
1138 if (err)
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001139 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Rafael J. Wysocki0596a522013-01-17 14:11:07 +01001141 if (!list_empty(&wakeup->resources)) {
1142 int sleep_state;
1143
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +01001144 err = acpi_power_wakeup_list_init(&wakeup->resources,
1145 &sleep_state);
1146 if (err) {
1147 acpi_handle_warn(handle, "Retrieving current states "
1148 "of wakeup power resources failed\n");
1149 acpi_power_resources_list_free(&wakeup->resources);
1150 goto out;
1151 }
Rafael J. Wysocki0596a522013-01-17 14:11:07 +01001152 if (sleep_state < wakeup->sleep_state) {
1153 acpi_handle_warn(handle, "Overriding _PRW sleep state "
1154 "(S%d) by S%d from power resources\n",
1155 (int)wakeup->sleep_state, sleep_state);
1156 wakeup->sleep_state = sleep_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 }
Lin Mingbba63a22010-12-13 13:39:17 +08001159 acpi_setup_gpe_for_wake(handle, wakeup->gpe_device, wakeup->gpe_number);
Rafael J. Wysocki98746472010-07-08 00:43:36 +02001160
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001161 out:
1162 kfree(buffer.pointer);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001163 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164}
1165
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001166static void acpi_bus_set_run_wake_flags(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167{
Thomas Renninger29b71a12007-07-23 14:43:51 +02001168 struct acpi_device_id button_device_ids[] = {
Thomas Renninger29b71a12007-07-23 14:43:51 +02001169 {"PNP0C0C", 0},
Zhang Ruib7e38302012-12-04 23:23:16 +01001170 {"PNP0C0D", 0},
Thomas Renninger29b71a12007-07-23 14:43:51 +02001171 {"PNP0C0E", 0},
1172 {"", 0},
1173 };
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001174 acpi_status status;
1175 acpi_event_status event_status;
1176
Rafael J. Wysockib67ea762010-02-17 23:44:09 +01001177 device->wakeup.flags.notifier_present = 0;
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001178
1179 /* Power button, Lid switch always enable wakeup */
1180 if (!acpi_match_device_ids(device, button_device_ids)) {
1181 device->wakeup.flags.run_wake = 1;
Zhang Ruib7e38302012-12-04 23:23:16 +01001182 if (!acpi_match_device_ids(device, &button_device_ids[1])) {
1183 /* Do not use Lid/sleep button for S5 wakeup */
1184 if (device->wakeup.sleep_state == ACPI_STATE_S5)
1185 device->wakeup.sleep_state = ACPI_STATE_S4;
1186 }
Rafael J. Wysockif2b56bc2011-01-06 23:34:22 +01001187 device_set_wakeup_capable(&device->dev, true);
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001188 return;
1189 }
1190
Rafael J. Wysockie8e18c92010-07-08 00:42:51 +02001191 status = acpi_get_gpe_status(device->wakeup.gpe_device,
1192 device->wakeup.gpe_number,
1193 &event_status);
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001194 if (status == AE_OK)
1195 device->wakeup.flags.run_wake =
1196 !!(event_status & ACPI_EVENT_FLAG_HANDLE);
1197}
1198
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01001199static void acpi_bus_get_wakeup_device_flags(struct acpi_device *device)
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001200{
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01001201 acpi_handle temp;
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001202 acpi_status status = 0;
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001203 int err;
Thomas Renninger29b71a12007-07-23 14:43:51 +02001204
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01001205 /* Presence of _PRW indicates wake capable */
1206 status = acpi_get_handle(device->handle, "_PRW", &temp);
1207 if (ACPI_FAILURE(status))
1208 return;
1209
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001210 err = acpi_bus_extract_wakeup_device_power_package(device->handle,
1211 &device->wakeup);
1212 if (err) {
1213 dev_err(&device->dev, "_PRW evaluation error: %d\n", err);
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01001214 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 }
1216
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 device->wakeup.flags.valid = 1;
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +02001218 device->wakeup.prepare_count = 0;
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001219 acpi_bus_set_run_wake_flags(device);
Zhao Yakui729b2bd2008-03-19 13:26:54 +08001220 /* Call _PSW/_DSW object to disable its ability to wake the sleeping
1221 * system for the ACPI device with the _PRW object.
1222 * The _PSW object is depreciated in ACPI 3.0 and is replaced by _DSW.
1223 * So it is necessary to call _DSW object first. Only when it is not
1224 * present will the _PSW object used.
1225 */
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001226 err = acpi_device_sleep_wake(device, 0, 0, 0);
1227 if (err)
Rafael J. Wysocki77e76602008-07-07 03:33:34 +02001228 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1229 "error in _DSW or _PSW evaluation\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230}
1231
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001232static void acpi_bus_init_power_state(struct acpi_device *device, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233{
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001234 struct acpi_device_power_state *ps = &device->power.states[state];
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001235 char pathname[5] = { '_', 'P', 'R', '0' + state, '\0' };
1236 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001237 acpi_handle handle;
1238 acpi_status status;
Zhang Rui9e89dde2006-12-07 20:56:16 +08001239
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001240 INIT_LIST_HEAD(&ps->resources);
1241
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001242 /* Evaluate "_PRx" to get referenced power resources */
1243 status = acpi_evaluate_object(device->handle, pathname, NULL, &buffer);
1244 if (ACPI_SUCCESS(status)) {
1245 union acpi_object *package = buffer.pointer;
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001246
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001247 if (buffer.length && package
1248 && package->type == ACPI_TYPE_PACKAGE
1249 && package->package.count) {
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001250 int err = acpi_extract_power_resources(package, 0,
1251 &ps->resources);
1252 if (!err)
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001253 device->power.flags.power_resources = 1;
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001254 }
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001255 ACPI_FREE(buffer.pointer);
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001256 }
1257
1258 /* Evaluate "_PSx" to see if we can do explicit sets */
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001259 pathname[2] = 'S';
1260 status = acpi_get_handle(device->handle, pathname, &handle);
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001261 if (ACPI_SUCCESS(status))
1262 ps->flags.explicit_set = 1;
1263
1264 /*
1265 * State is valid if there are means to put the device into it.
1266 * D3hot is only valid if _PR3 present.
1267 */
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001268 if (!list_empty(&ps->resources)
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001269 || (ps->flags.explicit_set && state < ACPI_STATE_D3_HOT)) {
1270 ps->flags.valid = 1;
1271 ps->flags.os_accessible = 1;
1272 }
1273
1274 ps->power = -1; /* Unknown - driver assigned */
1275 ps->latency = -1; /* Unknown - driver assigned */
1276}
1277
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001278static void acpi_bus_get_power_flags(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279{
Rafael J. Wysocki8bc50532013-01-17 14:11:07 +01001280 acpi_status status;
1281 acpi_handle handle;
1282 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001284 /* Presence of _PS0|_PR0 indicates 'power manageable' */
1285 status = acpi_get_handle(device->handle, "_PS0", &handle);
1286 if (ACPI_FAILURE(status)) {
1287 status = acpi_get_handle(device->handle, "_PR0", &handle);
1288 if (ACPI_FAILURE(status))
1289 return;
1290 }
1291
1292 device->flags.power_manageable = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
1294 /*
Zhang Rui9e89dde2006-12-07 20:56:16 +08001295 * Power Management Flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 */
Zhang Rui9e89dde2006-12-07 20:56:16 +08001297 status = acpi_get_handle(device->handle, "_PSC", &handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 if (ACPI_SUCCESS(status))
Zhang Rui9e89dde2006-12-07 20:56:16 +08001299 device->power.flags.explicit_get = 1;
1300 status = acpi_get_handle(device->handle, "_IRC", &handle);
1301 if (ACPI_SUCCESS(status))
1302 device->power.flags.inrush_current = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
1304 /*
Zhang Rui9e89dde2006-12-07 20:56:16 +08001305 * Enumerate supported power management states
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 */
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001307 for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3_HOT; i++)
1308 acpi_bus_init_power_state(device, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
Rafael J. Wysocki0b224522013-01-17 14:11:06 +01001310 INIT_LIST_HEAD(&device->power.states[ACPI_STATE_D3_COLD].resources);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
Zhang Rui9e89dde2006-12-07 20:56:16 +08001312 /* Set defaults for D0 and D3 states (always valid) */
1313 device->power.states[ACPI_STATE_D0].flags.valid = 1;
1314 device->power.states[ACPI_STATE_D0].power = 100;
1315 device->power.states[ACPI_STATE_D3].flags.valid = 1;
1316 device->power.states[ACPI_STATE_D3].power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
Rafael J. Wysocki5c7dd712012-05-18 00:39:35 +02001318 /* Set D3cold's explicit_set flag if _PS3 exists. */
1319 if (device->power.states[ACPI_STATE_D3_HOT].flags.explicit_set)
1320 device->power.states[ACPI_STATE_D3_COLD].flags.explicit_set = 1;
1321
Aaron Lu1399dfc2012-11-21 23:33:40 +01001322 /* Presence of _PS3 or _PRx means we can put the device into D3 cold */
1323 if (device->power.states[ACPI_STATE_D3_HOT].flags.explicit_set ||
1324 device->power.flags.power_resources)
1325 device->power.states[ACPI_STATE_D3_COLD].flags.os_accessible = 1;
1326
Rafael J. Wysockib3785492013-02-01 23:43:02 +01001327 if (acpi_bus_init_power(device)) {
1328 acpi_free_power_resources_lists(device);
1329 device->flags.power_manageable = 0;
1330 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331}
1332
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001333static void acpi_bus_get_flags(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334{
Len Brown4be44fc2005-08-05 00:44:28 -04001335 acpi_status status = AE_OK;
1336 acpi_handle temp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 /* Presence of _STA indicates 'dynamic_status' */
1339 status = acpi_get_handle(device->handle, "_STA", &temp);
1340 if (ACPI_SUCCESS(status))
1341 device->flags.dynamic_status = 1;
1342
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 /* Presence of _RMV indicates 'removable' */
1344 status = acpi_get_handle(device->handle, "_RMV", &temp);
1345 if (ACPI_SUCCESS(status))
1346 device->flags.removable = 1;
1347
1348 /* Presence of _EJD|_EJ0 indicates 'ejectable' */
1349 status = acpi_get_handle(device->handle, "_EJD", &temp);
1350 if (ACPI_SUCCESS(status))
1351 device->flags.ejectable = 1;
1352 else {
1353 status = acpi_get_handle(device->handle, "_EJ0", &temp);
1354 if (ACPI_SUCCESS(status))
1355 device->flags.ejectable = 1;
1356 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357}
1358
Bjorn Helgaasc7bcb4e2009-09-21 19:29:25 +00001359static void acpi_device_get_busid(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360{
Len Brown4be44fc2005-08-05 00:44:28 -04001361 char bus_id[5] = { '?', 0 };
1362 struct acpi_buffer buffer = { sizeof(bus_id), bus_id };
1363 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
1365 /*
1366 * Bus ID
1367 * ------
1368 * The device's Bus ID is simply the object name.
1369 * TBD: Shouldn't this value be unique (within the ACPI namespace)?
1370 */
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +00001371 if (ACPI_IS_ROOT_DEVICE(device)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 strcpy(device->pnp.bus_id, "ACPI");
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +00001373 return;
1374 }
1375
1376 switch (device->device_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 case ACPI_BUS_TYPE_POWER_BUTTON:
1378 strcpy(device->pnp.bus_id, "PWRF");
1379 break;
1380 case ACPI_BUS_TYPE_SLEEP_BUTTON:
1381 strcpy(device->pnp.bus_id, "SLPF");
1382 break;
1383 default:
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +00001384 acpi_get_name(device->handle, ACPI_SINGLE_NAME, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 /* Clean up trailing underscores (if any) */
1386 for (i = 3; i > 1; i--) {
1387 if (bus_id[i] == '_')
1388 bus_id[i] = '\0';
1389 else
1390 break;
1391 }
1392 strcpy(device->pnp.bus_id, bus_id);
1393 break;
1394 }
1395}
1396
Zhang Rui54735262007-01-11 02:09:09 -05001397/*
Toshi Kanid4e1a692013-03-04 21:30:41 +00001398 * acpi_bay_match - see if an acpi object is an ejectable driver bay
Zhang Rui54735262007-01-11 02:09:09 -05001399 *
1400 * If an acpi object is ejectable and has one of the ACPI ATA methods defined,
1401 * then we can safely call it an ejectable drive bay
1402 */
Toshi Kanid4e1a692013-03-04 21:30:41 +00001403static int acpi_bay_match(acpi_handle handle)
1404{
Zhang Rui54735262007-01-11 02:09:09 -05001405 acpi_status status;
Zhang Rui54735262007-01-11 02:09:09 -05001406 acpi_handle tmp;
1407 acpi_handle phandle;
1408
Zhang Rui54735262007-01-11 02:09:09 -05001409 status = acpi_get_handle(handle, "_EJ0", &tmp);
1410 if (ACPI_FAILURE(status))
1411 return -ENODEV;
1412
1413 if ((ACPI_SUCCESS(acpi_get_handle(handle, "_GTF", &tmp))) ||
1414 (ACPI_SUCCESS(acpi_get_handle(handle, "_GTM", &tmp))) ||
1415 (ACPI_SUCCESS(acpi_get_handle(handle, "_STM", &tmp))) ||
1416 (ACPI_SUCCESS(acpi_get_handle(handle, "_SDD", &tmp))))
1417 return 0;
1418
1419 if (acpi_get_parent(handle, &phandle))
1420 return -ENODEV;
1421
1422 if ((ACPI_SUCCESS(acpi_get_handle(phandle, "_GTF", &tmp))) ||
1423 (ACPI_SUCCESS(acpi_get_handle(phandle, "_GTM", &tmp))) ||
1424 (ACPI_SUCCESS(acpi_get_handle(phandle, "_STM", &tmp))) ||
1425 (ACPI_SUCCESS(acpi_get_handle(phandle, "_SDD", &tmp))))
1426 return 0;
1427
1428 return -ENODEV;
1429}
1430
Frank Seidel3620f2f2007-12-07 13:20:34 +01001431/*
Toshi Kanid4e1a692013-03-04 21:30:41 +00001432 * acpi_dock_match - see if an acpi object has a _DCK method
Frank Seidel3620f2f2007-12-07 13:20:34 +01001433 */
Toshi Kanid4e1a692013-03-04 21:30:41 +00001434static int acpi_dock_match(acpi_handle handle)
Frank Seidel3620f2f2007-12-07 13:20:34 +01001435{
1436 acpi_handle tmp;
Toshi Kanid4e1a692013-03-04 21:30:41 +00001437 return acpi_get_handle(handle, "_DCK", &tmp);
Frank Seidel3620f2f2007-12-07 13:20:34 +01001438}
1439
Thomas Renninger620e1122010-10-01 10:54:00 +02001440const char *acpi_device_hid(struct acpi_device *device)
Bob Moore15b8dd52009-06-29 13:39:29 +08001441{
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001442 struct acpi_hardware_id *hid;
Bob Moore15b8dd52009-06-29 13:39:29 +08001443
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +02001444 if (list_empty(&device->pnp.ids))
1445 return dummy_hid;
1446
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001447 hid = list_first_entry(&device->pnp.ids, struct acpi_hardware_id, list);
1448 return hid->id;
1449}
1450EXPORT_SYMBOL(acpi_device_hid);
Bob Moore15b8dd52009-06-29 13:39:29 +08001451
Toshi Kanid4e1a692013-03-04 21:30:41 +00001452static void acpi_add_id(struct acpi_device_pnp *pnp, const char *dev_id)
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001453{
1454 struct acpi_hardware_id *id;
Bob Moore15b8dd52009-06-29 13:39:29 +08001455
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001456 id = kmalloc(sizeof(*id), GFP_KERNEL);
1457 if (!id)
1458 return;
Bob Moore15b8dd52009-06-29 13:39:29 +08001459
Thomas Meyer581de592011-08-06 11:32:56 +02001460 id->id = kstrdup(dev_id, GFP_KERNEL);
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001461 if (!id->id) {
1462 kfree(id);
1463 return;
Bob Moore15b8dd52009-06-29 13:39:29 +08001464 }
1465
Toshi Kanid4e1a692013-03-04 21:30:41 +00001466 list_add_tail(&id->list, &pnp->ids);
1467 pnp->type.hardware_id = 1;
Bob Moore15b8dd52009-06-29 13:39:29 +08001468}
1469
Darrick J. Wong222e82a2010-03-24 14:38:37 +01001470/*
1471 * Old IBM workstations have a DSDT bug wherein the SMBus object
1472 * lacks the SMBUS01 HID and the methods do not have the necessary "_"
1473 * prefix. Work around this.
1474 */
Toshi Kanid4e1a692013-03-04 21:30:41 +00001475static int acpi_ibm_smbus_match(acpi_handle handle)
Darrick J. Wong222e82a2010-03-24 14:38:37 +01001476{
1477 acpi_handle h_dummy;
1478 struct acpi_buffer path = {ACPI_ALLOCATE_BUFFER, NULL};
1479 int result;
1480
1481 if (!dmi_name_in_vendors("IBM"))
1482 return -ENODEV;
1483
1484 /* Look for SMBS object */
Toshi Kanid4e1a692013-03-04 21:30:41 +00001485 result = acpi_get_name(handle, ACPI_SINGLE_NAME, &path);
Darrick J. Wong222e82a2010-03-24 14:38:37 +01001486 if (result)
1487 return result;
1488
1489 if (strcmp("SMBS", path.pointer)) {
1490 result = -ENODEV;
1491 goto out;
1492 }
1493
1494 /* Does it have the necessary (but misnamed) methods? */
1495 result = -ENODEV;
Toshi Kanid4e1a692013-03-04 21:30:41 +00001496 if (ACPI_SUCCESS(acpi_get_handle(handle, "SBI", &h_dummy)) &&
1497 ACPI_SUCCESS(acpi_get_handle(handle, "SBR", &h_dummy)) &&
1498 ACPI_SUCCESS(acpi_get_handle(handle, "SBW", &h_dummy)))
Darrick J. Wong222e82a2010-03-24 14:38:37 +01001499 result = 0;
1500out:
1501 kfree(path.pointer);
1502 return result;
1503}
1504
Toshi Kanic0af4172013-03-04 21:30:42 +00001505static void acpi_set_pnp_ids(acpi_handle handle, struct acpi_device_pnp *pnp,
1506 int device_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507{
Len Brown4be44fc2005-08-05 00:44:28 -04001508 acpi_status status;
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001509 struct acpi_device_info *info;
Lv Zheng78e25fe2012-10-31 02:25:24 +00001510 struct acpi_pnp_device_id_list *cid_list;
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001511 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
Toshi Kanic0af4172013-03-04 21:30:42 +00001513 switch (device_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 case ACPI_BUS_TYPE_DEVICE:
Toshi Kanic0af4172013-03-04 21:30:42 +00001515 if (handle == ACPI_ROOT_OBJECT) {
1516 acpi_add_id(pnp, ACPI_SYSTEM_HID);
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +00001517 break;
1518 }
1519
Toshi Kanic0af4172013-03-04 21:30:42 +00001520 status = acpi_get_object_info(handle, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 if (ACPI_FAILURE(status)) {
Toshi Kanic0af4172013-03-04 21:30:42 +00001522 pr_err(PREFIX "%s: Error reading device info\n",
1523 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 return;
1525 }
1526
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 if (info->valid & ACPI_VALID_HID)
Toshi Kanic0af4172013-03-04 21:30:42 +00001528 acpi_add_id(pnp, info->hardware_id.string);
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001529 if (info->valid & ACPI_VALID_CID) {
Bob Moore15b8dd52009-06-29 13:39:29 +08001530 cid_list = &info->compatible_id_list;
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001531 for (i = 0; i < cid_list->count; i++)
Toshi Kanic0af4172013-03-04 21:30:42 +00001532 acpi_add_id(pnp, cid_list->ids[i].string);
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 if (info->valid & ACPI_VALID_ADR) {
Toshi Kanic0af4172013-03-04 21:30:42 +00001535 pnp->bus_address = info->address;
1536 pnp->type.bus_address = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 }
Lv Zhengccf78042012-10-30 14:41:07 +01001538 if (info->valid & ACPI_VALID_UID)
Toshi Kanic0af4172013-03-04 21:30:42 +00001539 pnp->unique_id = kstrdup(info->unique_id.string,
Lv Zhengccf78042012-10-30 14:41:07 +01001540 GFP_KERNEL);
Zhang Ruiae843332006-12-07 20:57:10 +08001541
Bjorn Helgaasa83893ae2009-10-02 11:03:12 -04001542 kfree(info);
1543
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001544 /*
1545 * Some devices don't reliably have _HIDs & _CIDs, so add
1546 * synthetic HIDs to make sure drivers can find them.
1547 */
Toshi Kanic0af4172013-03-04 21:30:42 +00001548 if (acpi_is_video_device(handle))
1549 acpi_add_id(pnp, ACPI_VIDEO_HID);
1550 else if (ACPI_SUCCESS(acpi_bay_match(handle)))
1551 acpi_add_id(pnp, ACPI_BAY_HID);
1552 else if (ACPI_SUCCESS(acpi_dock_match(handle)))
1553 acpi_add_id(pnp, ACPI_DOCK_HID);
1554 else if (!acpi_ibm_smbus_match(handle))
1555 acpi_add_id(pnp, ACPI_SMBUS_IBM_HID);
1556 else if (list_empty(&pnp->ids) && handle == ACPI_ROOT_OBJECT) {
1557 acpi_add_id(pnp, ACPI_BUS_HID); /* \_SB, LNXSYBUS */
1558 strcpy(pnp->device_name, ACPI_BUS_DEVICE_NAME);
1559 strcpy(pnp->device_class, ACPI_BUS_CLASS);
Bjorn Helgaasb7b30de2010-03-24 10:44:33 -06001560 }
Zhang Rui54735262007-01-11 02:09:09 -05001561
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 break;
1563 case ACPI_BUS_TYPE_POWER:
Toshi Kanic0af4172013-03-04 21:30:42 +00001564 acpi_add_id(pnp, ACPI_POWER_HID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 break;
1566 case ACPI_BUS_TYPE_PROCESSOR:
Toshi Kanic0af4172013-03-04 21:30:42 +00001567 acpi_add_id(pnp, ACPI_PROCESSOR_OBJECT_HID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 case ACPI_BUS_TYPE_THERMAL:
Toshi Kanic0af4172013-03-04 21:30:42 +00001570 acpi_add_id(pnp, ACPI_THERMAL_HID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 break;
1572 case ACPI_BUS_TYPE_POWER_BUTTON:
Toshi Kanic0af4172013-03-04 21:30:42 +00001573 acpi_add_id(pnp, ACPI_BUTTON_HID_POWERF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 break;
1575 case ACPI_BUS_TYPE_SLEEP_BUTTON:
Toshi Kanic0af4172013-03-04 21:30:42 +00001576 acpi_add_id(pnp, ACPI_BUTTON_HID_SLEEPF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 break;
1578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579}
1580
Toshi Kanic0af4172013-03-04 21:30:42 +00001581void acpi_free_pnp_ids(struct acpi_device_pnp *pnp)
1582{
1583 struct acpi_hardware_id *id, *tmp;
1584
1585 list_for_each_entry_safe(id, tmp, &pnp->ids, list) {
1586 kfree(id->id);
1587 kfree(id);
1588 }
1589 kfree(pnp->unique_id);
1590}
1591
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +01001592void acpi_init_device_object(struct acpi_device *device, acpi_handle handle,
1593 int type, unsigned long long sta)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594{
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001595 INIT_LIST_HEAD(&device->pnp.ids);
1596 device->device_type = type;
1597 device->handle = handle;
1598 device->parent = acpi_bus_get_parent(handle);
1599 STRUCT_TO_INT(device->status) = sta;
1600 acpi_device_get_busid(device);
Toshi Kanic0af4172013-03-04 21:30:42 +00001601 acpi_set_pnp_ids(handle, &device->pnp, type);
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001602 acpi_bus_get_flags(device);
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01001603 device->flags.match_driver = false;
Rafael J. Wysockicf860be2013-01-24 12:49:49 +01001604 device_initialize(&device->dev);
1605 dev_set_uevent_suppress(&device->dev, true);
1606}
Bjorn Helgaasbc3b0772009-09-21 19:29:20 +00001607
Rafael J. Wysockicf860be2013-01-24 12:49:49 +01001608void acpi_device_add_finalize(struct acpi_device *device)
1609{
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01001610 device->flags.match_driver = true;
Rafael J. Wysockicf860be2013-01-24 12:49:49 +01001611 dev_set_uevent_suppress(&device->dev, false);
1612 kobject_uevent(&device->dev.kobj, KOBJ_ADD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613}
1614
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001615static int acpi_add_single_object(struct acpi_device **child,
1616 acpi_handle handle, int type,
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01001617 unsigned long long sta)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618{
Bjorn Helgaas77c24882009-09-21 19:29:30 +00001619 int result;
1620 struct acpi_device *device;
Bjorn Helgaas29aaefa2009-09-21 19:28:54 +00001621 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
Burman Yan36bcbec2006-12-19 12:56:11 -08001623 device = kzalloc(sizeof(struct acpi_device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 if (!device) {
Len Brown64684632006-06-26 23:41:38 -04001625 printk(KERN_ERR PREFIX "Memory allocation error\n");
Patrick Mocheld550d982006-06-27 00:41:40 -04001626 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001629 acpi_init_device_object(device, handle, type, sta);
1630 acpi_bus_get_power_flags(device);
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01001631 acpi_bus_get_wakeup_device_flags(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
Rafael J. Wysockicf860be2013-01-24 12:49:49 +01001633 result = acpi_device_add(device, acpi_device_release);
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001634 if (result) {
Hugh Dickins718fb0d2009-08-06 23:18:12 +00001635 acpi_device_release(&device->dev);
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001636 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 }
1638
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001639 acpi_power_add_remove_device(device, true);
Rafael J. Wysockicf860be2013-01-24 12:49:49 +01001640 acpi_device_add_finalize(device);
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001641 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
1642 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Added %s [%s] parent %s\n",
1643 dev_name(&device->dev), (char *) buffer.pointer,
1644 device->parent ? dev_name(&device->parent->dev) : "(null)"));
1645 kfree(buffer.pointer);
1646 *child = device;
1647 return 0;
Rafael J. Wysockibf325f92010-11-25 00:10:44 +01001648}
1649
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001650static int acpi_bus_type_and_status(acpi_handle handle, int *type,
1651 unsigned long long *sta)
1652{
1653 acpi_status status;
1654 acpi_object_type acpi_type;
1655
1656 status = acpi_get_type(handle, &acpi_type);
1657 if (ACPI_FAILURE(status))
1658 return -ENODEV;
1659
1660 switch (acpi_type) {
1661 case ACPI_TYPE_ANY: /* for ACPI_ROOT_OBJECT */
1662 case ACPI_TYPE_DEVICE:
1663 *type = ACPI_BUS_TYPE_DEVICE;
1664 status = acpi_bus_get_status_handle(handle, sta);
1665 if (ACPI_FAILURE(status))
1666 return -ENODEV;
1667 break;
1668 case ACPI_TYPE_PROCESSOR:
1669 *type = ACPI_BUS_TYPE_PROCESSOR;
1670 status = acpi_bus_get_status_handle(handle, sta);
1671 if (ACPI_FAILURE(status))
1672 return -ENODEV;
1673 break;
1674 case ACPI_TYPE_THERMAL:
1675 *type = ACPI_BUS_TYPE_THERMAL;
1676 *sta = ACPI_STA_DEFAULT;
1677 break;
1678 case ACPI_TYPE_POWER:
1679 *type = ACPI_BUS_TYPE_POWER;
1680 *sta = ACPI_STA_DEFAULT;
1681 break;
1682 default:
1683 return -ENODEV;
1684 }
1685
1686 return 0;
1687}
1688
Rafael J. Wysocki4b59cc12013-03-03 23:06:21 +01001689static bool acpi_scan_handler_matching(struct acpi_scan_handler *handler,
1690 char *idstr,
1691 const struct acpi_device_id **matchid)
1692{
1693 const struct acpi_device_id *devid;
1694
1695 for (devid = handler->ids; devid->id[0]; devid++)
1696 if (!strcmp((char *)devid->id, idstr)) {
1697 if (matchid)
1698 *matchid = devid;
1699
1700 return true;
1701 }
1702
1703 return false;
1704}
1705
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001706static struct acpi_scan_handler *acpi_scan_match_handler(char *idstr,
1707 const struct acpi_device_id **matchid)
1708{
1709 struct acpi_scan_handler *handler;
1710
1711 list_for_each_entry(handler, &acpi_scan_handlers_list, list_node)
1712 if (acpi_scan_handler_matching(handler, idstr, matchid))
1713 return handler;
1714
1715 return NULL;
1716}
1717
Rafael J. Wysocki3f8055c2013-03-03 23:08:16 +01001718static acpi_status acpi_scan_hotplug_modify(acpi_handle handle,
1719 u32 lvl_not_used, void *data,
1720 void **ret_not_used)
1721{
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001722 struct acpi_device_pnp pnp = {};
1723 struct acpi_scan_handler *tgt_handler = data, *handler;
1724 struct acpi_hardware_id *hwid;
1725 unsigned long long sta_not_used;
1726 int type;
Rafael J. Wysocki3f8055c2013-03-03 23:08:16 +01001727 bool match = false;
1728
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001729 if (acpi_bus_type_and_status(handle, &type, &sta_not_used))
Rafael J. Wysocki3f8055c2013-03-03 23:08:16 +01001730 return AE_OK;
1731
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001732 INIT_LIST_HEAD(&pnp.ids);
1733 acpi_set_pnp_ids(handle, &pnp, type);
1734
1735 if (!pnp.type.hardware_id)
Rafael J. Wysocki3f8055c2013-03-03 23:08:16 +01001736 return AE_OK;
1737
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001738 list_for_each_entry(hwid, &pnp.ids, list) {
1739 handler = acpi_scan_match_handler(hwid->id, NULL);
1740 if (handler && handler == tgt_handler) {
1741 match = true;
1742 break;
1743 }
1744 }
1745 if (!match)
1746 goto out;
1747
Rafael J. Wysocki3f8055c2013-03-03 23:08:16 +01001748 if (handler->hotplug.enabled)
1749 acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
1750 acpi_hotplug_notify_cb, NULL);
1751 else
1752 acpi_remove_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
1753 acpi_hotplug_notify_cb);
1754
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001755out:
1756 acpi_free_pnp_ids(&pnp);
Rafael J. Wysocki3f8055c2013-03-03 23:08:16 +01001757 return AE_OK;
1758}
1759
1760void acpi_scan_hotplug_enabled(struct acpi_hotplug_profile *hotplug, bool val)
1761{
1762 struct acpi_scan_handler *handler;
1763
1764 if (!!hotplug->enabled == !!val)
1765 return;
1766
1767 mutex_lock(&acpi_scan_lock);
1768
1769 hotplug->enabled = val;
1770 handler = container_of(hotplug, struct acpi_scan_handler, hotplug);
1771 acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT, ACPI_UINT32_MAX,
1772 acpi_scan_hotplug_modify, NULL, handler, NULL);
1773
1774 mutex_unlock(&acpi_scan_lock);
1775}
1776
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001777static void acpi_scan_init_hotplug(acpi_handle handle, int type)
Rafael J. Wysockic5698072013-03-03 23:05:14 +01001778{
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001779 struct acpi_device_pnp pnp = {};
1780 struct acpi_hardware_id *hwid;
Rafael J. Wysockic5698072013-03-03 23:05:14 +01001781 struct acpi_scan_handler *handler;
1782
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001783 INIT_LIST_HEAD(&pnp.ids);
1784 acpi_set_pnp_ids(handle, &pnp, type);
Rafael J. Wysockic5698072013-03-03 23:05:14 +01001785
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001786 if (!pnp.type.hardware_id)
Rafael J. Wysockia33ec392013-03-03 23:05:29 +01001787 return;
1788
Rafael J. Wysockia33ec392013-03-03 23:05:29 +01001789 /*
1790 * This relies on the fact that acpi_install_notify_handler() will not
1791 * install the same notify handler routine twice for the same handle.
1792 */
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001793 list_for_each_entry(hwid, &pnp.ids, list) {
1794 handler = acpi_scan_match_handler(hwid->id, NULL);
1795 if (handler) {
1796 if (handler->hotplug.enabled)
1797 acpi_install_notify_handler(handle,
1798 ACPI_SYSTEM_NOTIFY,
1799 acpi_hotplug_notify_cb, NULL);
1800 break;
1801 }
1802 }
1803
1804 acpi_free_pnp_ids(&pnp);
Rafael J. Wysockia33ec392013-03-03 23:05:29 +01001805}
1806
Rafael J. Wysockie3863092012-12-21 00:36:47 +01001807static acpi_status acpi_bus_check_add(acpi_handle handle, u32 lvl_not_used,
1808 void *not_used, void **return_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809{
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001810 struct acpi_device *device = NULL;
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001811 int type;
1812 unsigned long long sta;
Bjorn Helgaase3b87f82009-09-21 19:30:11 +00001813 acpi_status status;
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001814 int result;
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001815
Rafael J. Wysocki4002bf32012-12-21 00:36:44 +01001816 acpi_bus_get_device(handle, &device);
1817 if (device)
1818 goto out;
1819
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001820 result = acpi_bus_type_and_status(handle, &type, &sta);
1821 if (result)
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001822 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +01001824 if (type == ACPI_BUS_TYPE_POWER) {
1825 acpi_add_power_resource(handle);
1826 return AE_OK;
1827 }
1828
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001829 acpi_scan_init_hotplug(handle, type);
Rafael J. Wysockia33ec392013-03-03 23:05:29 +01001830
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001831 if (!(sta & ACPI_STA_DEVICE_PRESENT) &&
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001832 !(sta & ACPI_STA_DEVICE_FUNCTIONING)) {
Rafael J. Wysocki86e4e202011-01-06 23:40:00 +01001833 struct acpi_device_wakeup wakeup;
1834 acpi_handle temp;
1835
1836 status = acpi_get_handle(handle, "_PRW", &temp);
Rafael J. Wysocki993cbe52013-01-17 14:11:06 +01001837 if (ACPI_SUCCESS(status)) {
Rafael J. Wysocki86e4e202011-01-06 23:40:00 +01001838 acpi_bus_extract_wakeup_device_power_package(handle,
1839 &wakeup);
Rafael J. Wysocki993cbe52013-01-17 14:11:06 +01001840 acpi_power_resources_list_free(&wakeup.resources);
1841 }
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001842 return AE_CTRL_DEPTH;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001843 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01001845 acpi_add_single_object(&device, handle, type, sta);
Bjorn Helgaase3b87f82009-09-21 19:30:11 +00001846 if (!device)
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001847 return AE_CTRL_DEPTH;
1848
Rafael J. Wysocki4002bf32012-12-21 00:36:44 +01001849 out:
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001850 if (!*return_value)
1851 *return_value = device;
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001852
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001853 return AE_OK;
1854}
1855
Rafael J. Wysocki87b85b32013-02-06 13:05:22 +01001856static int acpi_scan_attach_handler(struct acpi_device *device)
1857{
1858 struct acpi_hardware_id *hwid;
1859 int ret = 0;
1860
1861 list_for_each_entry(hwid, &device->pnp.ids, list) {
Rafael J. Wysockic5698072013-03-03 23:05:14 +01001862 const struct acpi_device_id *devid;
1863 struct acpi_scan_handler *handler;
Rafael J. Wysocki87b85b32013-02-06 13:05:22 +01001864
Rafael J. Wysockic5698072013-03-03 23:05:14 +01001865 handler = acpi_scan_match_handler(hwid->id, &devid);
1866 if (handler) {
1867 ret = handler->attach(device, devid);
1868 if (ret > 0) {
1869 device->handler = handler;
1870 break;
1871 } else if (ret < 0) {
1872 break;
1873 }
1874 }
Rafael J. Wysocki87b85b32013-02-06 13:05:22 +01001875 }
Rafael J. Wysockica589f92013-01-30 14:27:29 +01001876 return ret;
1877}
1878
Rafael J. Wysocki0fc300b2012-12-21 00:36:41 +01001879static acpi_status acpi_bus_device_attach(acpi_handle handle, u32 lvl_not_used,
1880 void *not_used, void **ret_not_used)
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001881{
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001882 struct acpi_device *device;
1883 unsigned long long sta_not_used;
Rafael J. Wysockica589f92013-01-30 14:27:29 +01001884 int ret;
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001885
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001886 /*
1887 * Ignore errors ignored by acpi_bus_check_add() to avoid terminating
1888 * namespace walks prematurely.
1889 */
Rafael J. Wysockica589f92013-01-30 14:27:29 +01001890 if (acpi_bus_type_and_status(handle, &ret, &sta_not_used))
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001891 return AE_OK;
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001892
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001893 if (acpi_bus_get_device(handle, &device))
1894 return AE_CTRL_DEPTH;
Thomas Renninger77796882010-01-29 17:48:52 +01001895
Rafael J. Wysockica589f92013-01-30 14:27:29 +01001896 ret = acpi_scan_attach_handler(device);
1897 if (ret)
1898 return ret > 0 ? AE_OK : AE_CTRL_DEPTH;
1899
1900 ret = device_attach(&device->dev);
1901 return ret >= 0 ? AE_OK : AE_CTRL_DEPTH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01001904/**
1905 * acpi_bus_scan - Add ACPI device node objects in a given namespace scope.
1906 * @handle: Root of the namespace scope to scan.
Thomas Renninger77796882010-01-29 17:48:52 +01001907 *
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01001908 * Scan a given ACPI tree (probably recently hot-plugged) and create and add
1909 * found devices.
Thomas Renninger77796882010-01-29 17:48:52 +01001910 *
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01001911 * If no devices were found, -ENODEV is returned, but it does not mean that
1912 * there has been a real error. There just have been no suitable ACPI objects
1913 * in the table trunk from which the kernel could create a device and add an
1914 * appropriate driver.
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01001915 *
1916 * Must be called under acpi_scan_lock.
Thomas Renninger77796882010-01-29 17:48:52 +01001917 */
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01001918int acpi_bus_scan(acpi_handle handle)
Rajesh Shah3fb02732005-04-28 00:25:52 -07001919{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 void *device = NULL;
Rafael J. Wysockic511cc12013-01-27 21:17:29 +01001921 int error = 0;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001922
Rafael J. Wysocki0cd6ac52012-12-21 00:36:49 +01001923 if (ACPI_SUCCESS(acpi_bus_check_add(handle, 0, NULL, &device)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
Rafael J. Wysockie3863092012-12-21 00:36:47 +01001925 acpi_bus_check_add, NULL, NULL, &device);
Rajesh Shah3fb02732005-04-28 00:25:52 -07001926
Thomas Renningerd2f66502010-01-29 17:48:51 +01001927 if (!device)
Rafael J. Wysockic511cc12013-01-27 21:17:29 +01001928 error = -ENODEV;
1929 else if (ACPI_SUCCESS(acpi_bus_device_attach(handle, 0, NULL, NULL)))
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001930 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
Rafael J. Wysocki0fc300b2012-12-21 00:36:41 +01001931 acpi_bus_device_attach, NULL, NULL, NULL);
Thomas Renningerd2f66502010-01-29 17:48:51 +01001932
Rafael J. Wysockic511cc12013-01-27 21:17:29 +01001933 return error;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001934}
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01001935EXPORT_SYMBOL(acpi_bus_scan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936
Rafael J. Wysocki05404d82013-01-15 13:24:13 +01001937static acpi_status acpi_bus_device_detach(acpi_handle handle, u32 lvl_not_used,
1938 void *not_used, void **ret_not_used)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939{
Rafael J. Wysocki05404d82013-01-15 13:24:13 +01001940 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941
Rafael J. Wysocki05404d82013-01-15 13:24:13 +01001942 if (!acpi_bus_get_device(handle, &device)) {
Rafael J. Wysockica589f92013-01-30 14:27:29 +01001943 struct acpi_scan_handler *dev_handler = device->handler;
1944
Rafael J. Wysocki05404d82013-01-15 13:24:13 +01001945 device->removal_type = ACPI_BUS_REMOVAL_EJECT;
Rafael J. Wysockica589f92013-01-30 14:27:29 +01001946 if (dev_handler) {
1947 if (dev_handler->detach)
1948 dev_handler->detach(device);
1949
1950 device->handler = NULL;
1951 } else {
1952 device_release_driver(&device->dev);
1953 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 }
Rafael J. Wysocki05404d82013-01-15 13:24:13 +01001955 return AE_OK;
1956}
1957
1958static acpi_status acpi_bus_remove(acpi_handle handle, u32 lvl_not_used,
1959 void *not_used, void **ret_not_used)
1960{
1961 struct acpi_device *device = NULL;
1962
1963 if (!acpi_bus_get_device(handle, &device))
1964 acpi_device_unregister(device);
1965
1966 return AE_OK;
1967}
1968
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01001969/**
1970 * acpi_bus_trim - Remove ACPI device node and all of its descendants
1971 * @start: Root of the ACPI device nodes subtree to remove.
1972 *
1973 * Must be called under acpi_scan_lock.
1974 */
Rafael J. Wysockibfee26d2013-01-26 00:27:44 +01001975void acpi_bus_trim(struct acpi_device *start)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976{
Rafael J. Wysockicecdb192013-01-15 13:24:02 +01001977 /*
Rafael J. Wysocki05404d82013-01-15 13:24:13 +01001978 * Execute acpi_bus_device_detach() as a post-order callback to detach
1979 * all ACPI drivers from the device nodes being removed.
1980 */
1981 acpi_walk_namespace(ACPI_TYPE_ANY, start->handle, ACPI_UINT32_MAX, NULL,
1982 acpi_bus_device_detach, NULL, NULL);
1983 acpi_bus_device_detach(start->handle, 0, NULL, NULL);
1984 /*
Rafael J. Wysockicecdb192013-01-15 13:24:02 +01001985 * Execute acpi_bus_remove() as a post-order callback to remove device
1986 * nodes in the given namespace scope.
1987 */
1988 acpi_walk_namespace(ACPI_TYPE_ANY, start->handle, ACPI_UINT32_MAX, NULL,
1989 acpi_bus_remove, NULL, NULL);
1990 acpi_bus_remove(start->handle, 0, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991}
Kristen Accardiceaba662006-02-23 17:56:01 -08001992EXPORT_SYMBOL_GPL(acpi_bus_trim);
1993
Bjorn Helgaase8b945c2009-09-21 19:28:59 +00001994static int acpi_bus_scan_fixed(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995{
Len Brown4be44fc2005-08-05 00:44:28 -04001996 int result = 0;
Li Shaohuac4168bf2006-12-07 20:56:41 +08001997
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 /*
1999 * Enumerate all fixed-feature devices.
2000 */
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01002001 if (!(acpi_gbl_FADT.flags & ACPI_FADT_POWER_BUTTON)) {
2002 struct acpi_device *device = NULL;
2003
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00002004 result = acpi_add_single_object(&device, NULL,
Li Shaohuac4168bf2006-12-07 20:56:41 +08002005 ACPI_BUS_TYPE_POWER_BUTTON,
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01002006 ACPI_STA_DEFAULT);
2007 if (result)
2008 return result;
2009
2010 result = device_attach(&device->dev);
2011 if (result < 0)
2012 return result;
2013
Daniel Drakec10d7a12012-05-10 00:08:43 +01002014 device_init_wakeup(&device->dev, true);
Rajesh Shah3fb02732005-04-28 00:25:52 -07002015 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01002017 if (!(acpi_gbl_FADT.flags & ACPI_FADT_SLEEP_BUTTON)) {
2018 struct acpi_device *device = NULL;
2019
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00002020 result = acpi_add_single_object(&device, NULL,
Li Shaohuac4168bf2006-12-07 20:56:41 +08002021 ACPI_BUS_TYPE_SLEEP_BUTTON,
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01002022 ACPI_STA_DEFAULT);
2023 if (result)
2024 return result;
2025
2026 result = device_attach(&device->dev);
Rajesh Shah3fb02732005-04-28 00:25:52 -07002027 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01002029 return result < 0 ? result : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030}
2031
Bjorn Helgaase747f272009-03-24 16:49:43 -06002032int __init acpi_scan_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033{
2034 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035
Patrick Mochel5b327262006-05-10 10:33:00 -04002036 result = bus_register(&acpi_bus_type);
2037 if (result) {
2038 /* We don't want to quit even if we failed to add suspend/resume */
2039 printk(KERN_ERR PREFIX "Could not register bus type\n");
2040 }
2041
Rafael J. Wysocki92ef2a22012-12-21 00:36:40 +01002042 acpi_pci_root_init();
Rafael J. Wysocki4daeaf62013-01-30 14:27:37 +01002043 acpi_pci_link_init();
Rafael J. Wysocki141a2972013-01-30 14:27:40 +01002044 acpi_platform_init();
Mika Westerberg13176bb2013-01-17 09:59:33 +00002045 acpi_csrt_init();
Rafael J. Wysocki737f1a92013-02-08 23:52:39 +01002046 acpi_container_init();
Jiang Liuab1a2e02013-01-19 00:07:42 +08002047 acpi_pci_slot_init();
Rafael J. Wysocki0a347642013-03-03 23:18:03 +01002048 acpi_memory_hotplug_init();
Rafael J. Wysocki97d9a9e2010-11-25 00:10:02 +01002049
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002050 mutex_lock(&acpi_scan_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 * Enumerate devices in the ACPI namespace.
2053 */
Rafael J. Wysocki0cd6ac52012-12-21 00:36:49 +01002054 result = acpi_bus_scan(ACPI_ROOT_OBJECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 if (result)
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002056 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057
Rafael J. Wysocki0cd6ac52012-12-21 00:36:49 +01002058 result = acpi_bus_get_device(ACPI_ROOT_OBJECT, &acpi_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 if (result)
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002060 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01002062 result = acpi_bus_scan_fixed();
2063 if (result) {
2064 acpi_device_unregister(acpi_root);
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002065 goto out;
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01002066 }
2067
2068 acpi_update_all_gpes();
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002069
Yinghai Lu668192b2013-01-21 13:20:48 -08002070 acpi_pci_root_hp_init();
2071
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002072 out:
2073 mutex_unlock(&acpi_scan_lock);
2074 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075}