blob: dfdbcfdd9defeee44e805e2cc7c30a0553ff696d [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
Toshi Kani2cbb14f2013-03-05 22:33:31 +0000262static void acpi_hotplug_unsupported(acpi_handle handle, u32 type)
263{
264 u32 ost_status;
265
266 switch (type) {
267 case ACPI_NOTIFY_BUS_CHECK:
268 acpi_handle_debug(handle,
269 "ACPI_NOTIFY_BUS_CHECK event: unsupported\n");
270 ost_status = ACPI_OST_SC_INSERT_NOT_SUPPORTED;
271 break;
272 case ACPI_NOTIFY_DEVICE_CHECK:
273 acpi_handle_debug(handle,
274 "ACPI_NOTIFY_DEVICE_CHECK event: unsupported\n");
275 ost_status = ACPI_OST_SC_INSERT_NOT_SUPPORTED;
276 break;
277 case ACPI_NOTIFY_EJECT_REQUEST:
278 acpi_handle_debug(handle,
279 "ACPI_NOTIFY_EJECT_REQUEST event: unsupported\n");
280 ost_status = ACPI_OST_SC_EJECT_NOT_SUPPORTED;
281 break;
282 default:
283 /* non-hotplug event; possibly handled by other handler */
284 return;
285 }
286
287 acpi_evaluate_hotplug_ost(handle, type, ost_status, NULL);
288}
289
290static void acpi_hotplug_notify_cb(acpi_handle handle, u32 type, void *data)
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100291{
292 acpi_osd_exec_callback callback;
Toshi Kani2cbb14f2013-03-05 22:33:31 +0000293 struct acpi_scan_handler *handler = data;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100294 acpi_status status;
295
Toshi Kani2cbb14f2013-03-05 22:33:31 +0000296 if (!handler->hotplug.enabled)
297 return acpi_hotplug_unsupported(handle, type);
298
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100299 switch (type) {
300 case ACPI_NOTIFY_BUS_CHECK:
301 acpi_handle_debug(handle, "ACPI_NOTIFY_BUS_CHECK event\n");
302 callback = acpi_scan_bus_check;
303 break;
304 case ACPI_NOTIFY_DEVICE_CHECK:
305 acpi_handle_debug(handle, "ACPI_NOTIFY_DEVICE_CHECK event\n");
306 callback = acpi_scan_device_check;
307 break;
308 case ACPI_NOTIFY_EJECT_REQUEST:
309 acpi_handle_debug(handle, "ACPI_NOTIFY_EJECT_REQUEST event\n");
310 callback = acpi_bus_device_eject;
311 break;
312 default:
313 /* non-hotplug event; possibly handled by other handler */
314 return;
315 }
316 status = acpi_os_hotplug_execute(callback, handle);
317 if (ACPI_FAILURE(status))
318 acpi_evaluate_hotplug_ost(handle, type,
319 ACPI_OST_SC_NON_SPECIFIC_FAILURE,
320 NULL);
321}
322
323/**
324 * acpi_bus_hot_remove_device: hot-remove a device and its children
325 * @context: struct acpi_eject_event pointer (freed in this func)
326 *
327 * Hot-remove a device and its children. This function frees up the
328 * memory space passed by arg context, so that the caller may call
329 * this function asynchronously through acpi_os_hotplug_execute().
330 */
331void acpi_bus_hot_remove_device(void *context)
332{
333 struct acpi_eject_event *ej_event = context;
334 struct acpi_device *device = ej_event->device;
335 acpi_handle handle = device->handle;
336 int error;
337
338 mutex_lock(&acpi_scan_lock);
339
340 error = acpi_scan_hot_remove(device);
341 if (error && handle)
342 acpi_evaluate_hotplug_ost(handle, ej_event->event,
343 ACPI_OST_SC_NON_SPECIFIC_FAILURE,
344 NULL);
345
346 mutex_unlock(&acpi_scan_lock);
347 kfree(context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348}
Toshi Kani61622ac2012-11-01 14:42:12 +0000349EXPORT_SYMBOL(acpi_bus_hot_remove_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Rafael J. Wysocki836aedb2013-01-24 12:49:59 +0100351static ssize_t real_power_state_show(struct device *dev,
352 struct device_attribute *attr, char *buf)
353{
354 struct acpi_device *adev = to_acpi_device(dev);
355 int state;
356 int ret;
357
358 ret = acpi_device_get_power(adev, &state);
359 if (ret)
360 return ret;
361
362 return sprintf(buf, "%s\n", acpi_power_state_string(state));
363}
364
365static DEVICE_ATTR(real_power_state, 0444, real_power_state_show, NULL);
366
367static ssize_t power_state_show(struct device *dev,
368 struct device_attribute *attr, char *buf)
369{
370 struct acpi_device *adev = to_acpi_device(dev);
371
372 return sprintf(buf, "%s\n", acpi_power_state_string(adev->power.state));
373}
374
375static DEVICE_ATTR(power_state, 0444, power_state_show, NULL);
376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377static ssize_t
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800378acpi_eject_store(struct device *d, struct device_attribute *attr,
379 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800381 struct acpi_device *acpi_device = to_acpi_device(d);
Toshi Kanic4753e52012-05-23 20:25:20 -0600382 struct acpi_eject_event *ej_event;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100383 acpi_object_type not_used;
384 acpi_status status;
385 u32 ost_source;
386 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100388 if (!count || buf[0] != '1')
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100391 if ((!acpi_device->handler || !acpi_device->handler->hotplug.enabled)
392 && !acpi_device->driver)
393 return -ENODEV;
394
395 status = acpi_get_type(acpi_device->handle, &not_used);
396 if (ACPI_FAILURE(status) || !acpi_device->flags.ejectable)
397 return -ENODEV;
398
399 mutex_lock(&acpi_scan_lock);
400
401 if (acpi_device->flags.eject_pending) {
402 /* ACPI eject notification event. */
403 ost_source = ACPI_NOTIFY_EJECT_REQUEST;
404 acpi_device->flags.eject_pending = 0;
405 } else {
406 /* Eject initiated by user space. */
407 ost_source = ACPI_OST_EC_OSPM_EJECT;
408 }
Toshi Kanic4753e52012-05-23 20:25:20 -0600409 ej_event = kmalloc(sizeof(*ej_event), GFP_KERNEL);
410 if (!ej_event) {
411 ret = -ENOMEM;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100412 goto err_out;
Toshi Kanic4753e52012-05-23 20:25:20 -0600413 }
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100414 acpi_evaluate_hotplug_ost(acpi_device->handle, ost_source,
415 ACPI_OST_SC_EJECT_IN_PROGRESS, NULL);
Yinghai Lu5993c462013-01-11 22:40:41 +0000416 ej_event->device = acpi_device;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100417 ej_event->event = ost_source;
418 get_device(&acpi_device->dev);
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100419 status = acpi_os_hotplug_execute(acpi_bus_hot_remove_device, ej_event);
420 if (ACPI_FAILURE(status)) {
421 put_device(&acpi_device->dev);
422 kfree(ej_event);
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100423 ret = status == AE_NO_MEMORY ? -ENOMEM : -EAGAIN;
424 goto err_out;
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100425 }
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100426 ret = count;
427
428 out:
429 mutex_unlock(&acpi_scan_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 return ret;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100431
432 err_out:
433 acpi_evaluate_hotplug_ost(acpi_device->handle, ost_source,
434 ACPI_OST_SC_NON_SPECIFIC_FAILURE, NULL);
435 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436}
437
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800438static DEVICE_ATTR(eject, 0200, NULL, acpi_eject_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800440static ssize_t
441acpi_device_hid_show(struct device *dev, struct device_attribute *attr, char *buf) {
442 struct acpi_device *acpi_dev = to_acpi_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Bjorn Helgaasea8d82f2009-09-21 13:35:09 -0600444 return sprintf(buf, "%s\n", acpi_device_hid(acpi_dev));
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800445}
446static DEVICE_ATTR(hid, 0444, acpi_device_hid_show, NULL);
447
Lv Zheng923d4a42012-10-30 14:43:26 +0100448static ssize_t acpi_device_uid_show(struct device *dev,
449 struct device_attribute *attr, char *buf)
450{
451 struct acpi_device *acpi_dev = to_acpi_device(dev);
452
453 return sprintf(buf, "%s\n", acpi_dev->pnp.unique_id);
454}
455static DEVICE_ATTR(uid, 0444, acpi_device_uid_show, NULL);
456
457static ssize_t acpi_device_adr_show(struct device *dev,
458 struct device_attribute *attr, char *buf)
459{
460 struct acpi_device *acpi_dev = to_acpi_device(dev);
461
462 return sprintf(buf, "0x%08x\n",
463 (unsigned int)(acpi_dev->pnp.bus_address));
464}
465static DEVICE_ATTR(adr, 0444, acpi_device_adr_show, NULL);
466
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800467static ssize_t
468acpi_device_path_show(struct device *dev, struct device_attribute *attr, char *buf) {
469 struct acpi_device *acpi_dev = to_acpi_device(dev);
470 struct acpi_buffer path = {ACPI_ALLOCATE_BUFFER, NULL};
471 int result;
472
473 result = acpi_get_name(acpi_dev->handle, ACPI_FULL_PATHNAME, &path);
Alex Chiang0c526d92009-05-14 08:31:37 -0600474 if (result)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800475 goto end;
476
477 result = sprintf(buf, "%s\n", (char*)path.pointer);
478 kfree(path.pointer);
Alex Chiang0c526d92009-05-14 08:31:37 -0600479end:
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800480 return result;
481}
482static DEVICE_ATTR(path, 0444, acpi_device_path_show, NULL);
483
Lance Ortizd1efe3c2012-10-02 12:43:23 -0600484/* sysfs file that shows description text from the ACPI _STR method */
485static ssize_t description_show(struct device *dev,
486 struct device_attribute *attr,
487 char *buf) {
488 struct acpi_device *acpi_dev = to_acpi_device(dev);
489 int result;
490
491 if (acpi_dev->pnp.str_obj == NULL)
492 return 0;
493
494 /*
495 * The _STR object contains a Unicode identifier for a device.
496 * We need to convert to utf-8 so it can be displayed.
497 */
498 result = utf16s_to_utf8s(
499 (wchar_t *)acpi_dev->pnp.str_obj->buffer.pointer,
500 acpi_dev->pnp.str_obj->buffer.length,
501 UTF16_LITTLE_ENDIAN, buf,
502 PAGE_SIZE);
503
504 buf[result++] = '\n';
505
506 return result;
507}
508static DEVICE_ATTR(description, 0444, description_show, NULL);
509
Yasuaki Ishimatsubb74ac22012-11-16 02:56:59 +0100510static ssize_t
511acpi_device_sun_show(struct device *dev, struct device_attribute *attr,
512 char *buf) {
513 struct acpi_device *acpi_dev = to_acpi_device(dev);
514
515 return sprintf(buf, "%lu\n", acpi_dev->pnp.sun);
516}
517static DEVICE_ATTR(sun, 0444, acpi_device_sun_show, NULL);
518
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800519static int acpi_device_setup_files(struct acpi_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520{
Lance Ortizd1efe3c2012-10-02 12:43:23 -0600521 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800522 acpi_status status;
523 acpi_handle temp;
Yasuaki Ishimatsubb74ac22012-11-16 02:56:59 +0100524 unsigned long long sun;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800525 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800527 /*
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800528 * Devices gotten from FADT don't have a "path" attribute
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800529 */
Alex Chiang0c526d92009-05-14 08:31:37 -0600530 if (dev->handle) {
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800531 result = device_create_file(&dev->dev, &dev_attr_path);
Alex Chiang0c526d92009-05-14 08:31:37 -0600532 if (result)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800533 goto end;
534 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +0200536 if (!list_empty(&dev->pnp.ids)) {
537 result = device_create_file(&dev->dev, &dev_attr_hid);
538 if (result)
539 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +0200541 result = device_create_file(&dev->dev, &dev_attr_modalias);
542 if (result)
543 goto end;
544 }
Thomas Renninger29b71a12007-07-23 14:43:51 +0200545
Lance Ortizd1efe3c2012-10-02 12:43:23 -0600546 /*
547 * If device has _STR, 'description' file is created
548 */
549 status = acpi_get_handle(dev->handle, "_STR", &temp);
550 if (ACPI_SUCCESS(status)) {
551 status = acpi_evaluate_object(dev->handle, "_STR",
552 NULL, &buffer);
553 if (ACPI_FAILURE(status))
554 buffer.pointer = NULL;
555 dev->pnp.str_obj = buffer.pointer;
556 result = device_create_file(&dev->dev, &dev_attr_description);
557 if (result)
558 goto end;
559 }
560
Toshi Kanid4e1a692013-03-04 21:30:41 +0000561 if (dev->pnp.type.bus_address)
Lv Zheng923d4a42012-10-30 14:43:26 +0100562 result = device_create_file(&dev->dev, &dev_attr_adr);
563 if (dev->pnp.unique_id)
564 result = device_create_file(&dev->dev, &dev_attr_uid);
565
Yasuaki Ishimatsubb74ac22012-11-16 02:56:59 +0100566 status = acpi_evaluate_integer(dev->handle, "_SUN", NULL, &sun);
567 if (ACPI_SUCCESS(status)) {
568 dev->pnp.sun = (unsigned long)sun;
569 result = device_create_file(&dev->dev, &dev_attr_sun);
570 if (result)
571 goto end;
572 } else {
573 dev->pnp.sun = (unsigned long)-1;
574 }
575
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800576 /*
577 * If device has _EJ0, 'eject' file is created that is used to trigger
578 * hot-removal function from userland.
579 */
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800580 status = acpi_get_handle(dev->handle, "_EJ0", &temp);
Rafael J. Wysocki836aedb2013-01-24 12:49:59 +0100581 if (ACPI_SUCCESS(status)) {
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800582 result = device_create_file(&dev->dev, &dev_attr_eject);
Rafael J. Wysocki836aedb2013-01-24 12:49:59 +0100583 if (result)
584 return result;
585 }
586
587 if (dev->flags.power_manageable) {
588 result = device_create_file(&dev->dev, &dev_attr_power_state);
589 if (result)
590 return result;
591
592 if (dev->power.flags.power_resources)
593 result = device_create_file(&dev->dev,
594 &dev_attr_real_power_state);
595 }
596
Alex Chiang0c526d92009-05-14 08:31:37 -0600597end:
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800598 return result;
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800599}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800601static void acpi_device_remove_files(struct acpi_device *dev)
602{
603 acpi_status status;
604 acpi_handle temp;
605
Rafael J. Wysocki836aedb2013-01-24 12:49:59 +0100606 if (dev->flags.power_manageable) {
607 device_remove_file(&dev->dev, &dev_attr_power_state);
608 if (dev->power.flags.power_resources)
609 device_remove_file(&dev->dev,
610 &dev_attr_real_power_state);
611 }
612
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800613 /*
Lance Ortizd1efe3c2012-10-02 12:43:23 -0600614 * If device has _STR, remove 'description' file
615 */
616 status = acpi_get_handle(dev->handle, "_STR", &temp);
617 if (ACPI_SUCCESS(status)) {
618 kfree(dev->pnp.str_obj);
619 device_remove_file(&dev->dev, &dev_attr_description);
620 }
621 /*
622 * If device has _EJ0, remove 'eject' file.
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800623 */
624 status = acpi_get_handle(dev->handle, "_EJ0", &temp);
625 if (ACPI_SUCCESS(status))
626 device_remove_file(&dev->dev, &dev_attr_eject);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800627
Yasuaki Ishimatsubb74ac22012-11-16 02:56:59 +0100628 status = acpi_get_handle(dev->handle, "_SUN", &temp);
629 if (ACPI_SUCCESS(status))
630 device_remove_file(&dev->dev, &dev_attr_sun);
631
Lv Zheng923d4a42012-10-30 14:43:26 +0100632 if (dev->pnp.unique_id)
633 device_remove_file(&dev->dev, &dev_attr_uid);
Toshi Kanid4e1a692013-03-04 21:30:41 +0000634 if (dev->pnp.type.bus_address)
Lv Zheng923d4a42012-10-30 14:43:26 +0100635 device_remove_file(&dev->dev, &dev_attr_adr);
Bjorn Helgaas1131b932009-09-21 13:35:29 -0600636 device_remove_file(&dev->dev, &dev_attr_modalias);
637 device_remove_file(&dev->dev, &dev_attr_hid);
Alex Chiang0c526d92009-05-14 08:31:37 -0600638 if (dev->handle)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800639 device_remove_file(&dev->dev, &dev_attr_path);
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800640}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641/* --------------------------------------------------------------------------
Zhang Rui9e89dde2006-12-07 20:56:16 +0800642 ACPI Bus operations
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 -------------------------------------------------------------------------- */
Thomas Renninger29b71a12007-07-23 14:43:51 +0200644
Mika Westerbergcf761af2012-10-31 22:44:41 +0100645static const struct acpi_device_id *__acpi_match_device(
646 struct acpi_device *device, const struct acpi_device_id *ids)
Thomas Renninger29b71a12007-07-23 14:43:51 +0200647{
648 const struct acpi_device_id *id;
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -0600649 struct acpi_hardware_id *hwid;
Thomas Renninger29b71a12007-07-23 14:43:51 +0200650
Zhao Yakui39a0ad82008-08-11 13:40:22 +0800651 /*
652 * If the device is not present, it is unnecessary to load device
653 * driver for it.
654 */
655 if (!device->status.present)
Mika Westerbergcf761af2012-10-31 22:44:41 +0100656 return NULL;
Zhao Yakui39a0ad82008-08-11 13:40:22 +0800657
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -0600658 for (id = ids; id->id[0]; id++)
659 list_for_each_entry(hwid, &device->pnp.ids, list)
660 if (!strcmp((char *) id->id, hwid->id))
Mika Westerbergcf761af2012-10-31 22:44:41 +0100661 return id;
Thomas Renninger29b71a12007-07-23 14:43:51 +0200662
Mika Westerbergcf761af2012-10-31 22:44:41 +0100663 return NULL;
664}
665
666/**
667 * acpi_match_device - Match a struct device against a given list of ACPI IDs
668 * @ids: Array of struct acpi_device_id object to match against.
669 * @dev: The device structure to match.
670 *
671 * Check if @dev has a valid ACPI handle and if there is a struct acpi_device
672 * object for that handle and use that object to match against a given list of
673 * device IDs.
674 *
675 * Return a pointer to the first matching ID on success or %NULL on failure.
676 */
677const struct acpi_device_id *acpi_match_device(const struct acpi_device_id *ids,
678 const struct device *dev)
679{
680 struct acpi_device *adev;
Rafael J. Wysocki0613e1f2013-01-31 20:54:05 +0100681 acpi_handle handle = ACPI_HANDLE(dev);
Mika Westerbergcf761af2012-10-31 22:44:41 +0100682
Rafael J. Wysocki0613e1f2013-01-31 20:54:05 +0100683 if (!ids || !handle || acpi_bus_get_device(handle, &adev))
Mika Westerbergcf761af2012-10-31 22:44:41 +0100684 return NULL;
685
686 return __acpi_match_device(adev, ids);
687}
688EXPORT_SYMBOL_GPL(acpi_match_device);
689
690int acpi_match_device_ids(struct acpi_device *device,
691 const struct acpi_device_id *ids)
692{
693 return __acpi_match_device(device, ids) ? 0 : -ENOENT;
Thomas Renninger29b71a12007-07-23 14:43:51 +0200694}
695EXPORT_SYMBOL(acpi_match_device_ids);
696
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100697static void acpi_free_power_resources_lists(struct acpi_device *device)
698{
699 int i;
700
Rafael J. Wysocki993cbe52013-01-17 14:11:06 +0100701 if (device->wakeup.flags.valid)
702 acpi_power_resources_list_free(&device->wakeup.resources);
703
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100704 if (!device->flags.power_manageable)
705 return;
706
707 for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3_HOT; i++) {
708 struct acpi_device_power_state *ps = &device->power.states[i];
709 acpi_power_resources_list_free(&ps->resources);
710 }
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -0600711}
712
Patrick Mochel1890a972006-12-07 20:56:31 +0800713static void acpi_device_release(struct device *dev)
714{
715 struct acpi_device *acpi_dev = to_acpi_device(dev);
716
Toshi Kanic0af4172013-03-04 21:30:42 +0000717 acpi_free_pnp_ids(&acpi_dev->pnp);
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100718 acpi_free_power_resources_lists(acpi_dev);
Patrick Mochel1890a972006-12-07 20:56:31 +0800719 kfree(acpi_dev);
720}
721
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800722static int acpi_bus_match(struct device *dev, struct device_driver *drv)
723{
724 struct acpi_device *acpi_dev = to_acpi_device(dev);
725 struct acpi_driver *acpi_drv = to_acpi_driver(drv);
726
Rafael J. Wysocki209d3b12012-12-21 00:36:48 +0100727 return acpi_dev->flags.match_driver
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +0100728 && !acpi_match_device_ids(acpi_dev, acpi_drv->ids);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800729}
730
Kay Sievers7eff2e72007-08-14 15:15:12 +0200731static int acpi_device_uevent(struct device *dev, struct kobj_uevent_env *env)
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800732{
733 struct acpi_device *acpi_dev = to_acpi_device(dev);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200734 int len;
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800735
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +0200736 if (list_empty(&acpi_dev->pnp.ids))
737 return 0;
738
Kay Sievers7eff2e72007-08-14 15:15:12 +0200739 if (add_uevent_var(env, "MODALIAS="))
740 return -ENOMEM;
741 len = create_modalias(acpi_dev, &env->buf[env->buflen - 1],
742 sizeof(env->buf) - env->buflen);
743 if (len >= (sizeof(env->buf) - env->buflen))
744 return -ENOMEM;
745 env->buflen += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 return 0;
747}
748
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000749static void acpi_device_notify(acpi_handle handle, u32 event, void *data)
750{
751 struct acpi_device *device = data;
752
753 device->driver->ops.notify(device, event);
754}
755
756static acpi_status acpi_device_notify_fixed(void *data)
757{
758 struct acpi_device *device = data;
759
Bjorn Helgaas53de5352009-08-31 22:32:20 +0000760 /* Fixed hardware devices have no handles */
761 acpi_device_notify(NULL, ACPI_FIXED_HARDWARE_EVENT, device);
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000762 return AE_OK;
763}
764
765static int acpi_device_install_notify_handler(struct acpi_device *device)
766{
767 acpi_status status;
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000768
Bjorn Helgaasccba2a32009-09-21 19:29:15 +0000769 if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000770 status =
771 acpi_install_fixed_event_handler(ACPI_EVENT_POWER_BUTTON,
772 acpi_device_notify_fixed,
773 device);
Bjorn Helgaasccba2a32009-09-21 19:29:15 +0000774 else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000775 status =
776 acpi_install_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON,
777 acpi_device_notify_fixed,
778 device);
779 else
780 status = acpi_install_notify_handler(device->handle,
781 ACPI_DEVICE_NOTIFY,
782 acpi_device_notify,
783 device);
784
785 if (ACPI_FAILURE(status))
786 return -EINVAL;
787 return 0;
788}
789
790static void acpi_device_remove_notify_handler(struct acpi_device *device)
791{
Bjorn Helgaasccba2a32009-09-21 19:29:15 +0000792 if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000793 acpi_remove_fixed_event_handler(ACPI_EVENT_POWER_BUTTON,
794 acpi_device_notify_fixed);
Bjorn Helgaasccba2a32009-09-21 19:29:15 +0000795 else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000796 acpi_remove_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON,
797 acpi_device_notify_fixed);
798 else
799 acpi_remove_notify_handler(device->handle, ACPI_DEVICE_NOTIFY,
800 acpi_device_notify);
801}
802
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800803static int acpi_bus_driver_init(struct acpi_device *, struct acpi_driver *);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800804static int acpi_device_probe(struct device * dev)
Zhang Rui9e89dde2006-12-07 20:56:16 +0800805{
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800806 struct acpi_device *acpi_dev = to_acpi_device(dev);
807 struct acpi_driver *acpi_drv = to_acpi_driver(dev->driver);
808 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800810 ret = acpi_bus_driver_init(acpi_dev, acpi_drv);
811 if (!ret) {
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000812 if (acpi_drv->ops.notify) {
813 ret = acpi_device_install_notify_handler(acpi_dev);
814 if (ret) {
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000815 if (acpi_drv->ops.remove)
Rafael J. Wysocki51fac832013-01-24 00:24:48 +0100816 acpi_drv->ops.remove(acpi_dev);
Toshi Kani5f27ee82013-02-07 21:19:13 +0000817 acpi_dev->driver = NULL;
818 acpi_dev->driver_data = NULL;
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000819 return ret;
820 }
821 }
822
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800823 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
824 "Found driver [%s] for device [%s]\n",
825 acpi_drv->name, acpi_dev->pnp.bus_id));
826 get_device(dev);
Zhang Rui9e89dde2006-12-07 20:56:16 +0800827 }
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800828 return ret;
829}
830
831static int acpi_device_remove(struct device * dev)
832{
833 struct acpi_device *acpi_dev = to_acpi_device(dev);
834 struct acpi_driver *acpi_drv = acpi_dev->driver;
835
836 if (acpi_drv) {
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000837 if (acpi_drv->ops.notify)
838 acpi_device_remove_notify_handler(acpi_dev);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800839 if (acpi_drv->ops.remove)
Rafael J. Wysocki51fac832013-01-24 00:24:48 +0100840 acpi_drv->ops.remove(acpi_dev);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800841 }
842 acpi_dev->driver = NULL;
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700843 acpi_dev->driver_data = NULL;
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800844
845 put_device(dev);
Zhang Rui9e89dde2006-12-07 20:56:16 +0800846 return 0;
847}
848
David Brownell55955aa2007-05-08 00:28:35 -0700849struct bus_type acpi_bus_type = {
Zhang Rui9e89dde2006-12-07 20:56:16 +0800850 .name = "acpi",
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800851 .match = acpi_bus_match,
852 .probe = acpi_device_probe,
853 .remove = acpi_device_remove,
854 .uevent = acpi_device_uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855};
856
Rafael J. Wysockicf860be2013-01-24 12:49:49 +0100857int acpi_device_add(struct acpi_device *device,
858 void (*release)(struct device *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859{
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800860 int result;
861 struct acpi_device_bus_id *acpi_device_bus_id, *new_bus_id;
862 int found = 0;
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +0000863
Rafael J. Wysockid43e1672013-01-17 14:11:05 +0100864 if (device->handle) {
865 acpi_status status;
866
867 status = acpi_attach_data(device->handle, acpi_bus_data_handler,
868 device);
869 if (ACPI_FAILURE(status)) {
870 acpi_handle_err(device->handle,
871 "Unable to attach device data\n");
872 return -ENODEV;
873 }
874 }
875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 /*
877 * Linkage
878 * -------
879 * Link this device to its parent and siblings.
880 */
881 INIT_LIST_HEAD(&device->children);
882 INIT_LIST_HEAD(&device->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 INIT_LIST_HEAD(&device->wakeup_list);
Lan Tianyu1033f902012-08-17 14:44:09 +0800884 INIT_LIST_HEAD(&device->physical_node_list);
885 mutex_init(&device->physical_node_lock);
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100886 INIT_LIST_HEAD(&device->power_dependent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800888 new_bus_id = kzalloc(sizeof(struct acpi_device_bus_id), GFP_KERNEL);
889 if (!new_bus_id) {
Rafael J. Wysockid43e1672013-01-17 14:11:05 +0100890 pr_err(PREFIX "Memory allocation error\n");
891 result = -ENOMEM;
892 goto err_detach;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800893 }
894
Shaohua Li90905892009-04-07 10:24:29 +0800895 mutex_lock(&acpi_device_lock);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800896 /*
897 * Find suitable bus_id and instance number in acpi_bus_id_list
898 * If failed, create one and link it into acpi_bus_id_list
899 */
900 list_for_each_entry(acpi_device_bus_id, &acpi_bus_id_list, node) {
Bjorn Helgaas1131b932009-09-21 13:35:29 -0600901 if (!strcmp(acpi_device_bus_id->bus_id,
902 acpi_device_hid(device))) {
903 acpi_device_bus_id->instance_no++;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800904 found = 1;
905 kfree(new_bus_id);
906 break;
907 }
908 }
Alex Chiang0c526d92009-05-14 08:31:37 -0600909 if (!found) {
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800910 acpi_device_bus_id = new_bus_id;
Bjorn Helgaas1131b932009-09-21 13:35:29 -0600911 strcpy(acpi_device_bus_id->bus_id, acpi_device_hid(device));
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800912 acpi_device_bus_id->instance_no = 0;
913 list_add_tail(&acpi_device_bus_id->node, &acpi_bus_id_list);
914 }
Kay Sievers07944692008-10-30 01:18:59 +0100915 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 +0800916
Len Brown33b57152008-12-15 22:09:26 -0500917 if (device->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 list_add_tail(&device->node, &device->parent->children);
Len Brown33b57152008-12-15 22:09:26 -0500919
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 if (device->wakeup.flags.valid)
921 list_add_tail(&device->wakeup_list, &acpi_wakeup_device_list);
Shaohua Li90905892009-04-07 10:24:29 +0800922 mutex_unlock(&acpi_device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Patrick Mochel1890a972006-12-07 20:56:31 +0800924 if (device->parent)
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +0000925 device->dev.parent = &device->parent->dev;
Patrick Mochel1890a972006-12-07 20:56:31 +0800926 device->dev.bus = &acpi_bus_type;
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100927 device->dev.release = release;
Rafael J. Wysockicf860be2013-01-24 12:49:49 +0100928 result = device_add(&device->dev);
Alex Chiang0c526d92009-05-14 08:31:37 -0600929 if (result) {
Alex Chiang8b12b922009-05-14 08:31:32 -0600930 dev_err(&device->dev, "Error registering device\n");
Rafael J. Wysockid43e1672013-01-17 14:11:05 +0100931 goto err;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800932 }
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800933
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800934 result = acpi_device_setup_files(device);
Alex Chiang0c526d92009-05-14 08:31:37 -0600935 if (result)
Kay Sievers07944692008-10-30 01:18:59 +0100936 printk(KERN_ERR PREFIX "Error creating sysfs interface for device %s\n",
937 dev_name(&device->dev));
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800938
Li Shaohua96333572006-12-07 20:56:46 +0800939 device->removal_type = ACPI_BUS_REMOVAL_NORMAL;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800940 return 0;
Rafael J. Wysockid43e1672013-01-17 14:11:05 +0100941
942 err:
Shaohua Li90905892009-04-07 10:24:29 +0800943 mutex_lock(&acpi_device_lock);
Len Brown33b57152008-12-15 22:09:26 -0500944 if (device->parent)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800945 list_del(&device->node);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800946 list_del(&device->wakeup_list);
Shaohua Li90905892009-04-07 10:24:29 +0800947 mutex_unlock(&acpi_device_lock);
Rafael J. Wysockid43e1672013-01-17 14:11:05 +0100948
949 err_detach:
950 acpi_detach_data(device->handle, acpi_bus_data_handler);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800951 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952}
953
Rafael J. Wysockib17b5372013-01-15 13:23:44 +0100954static void acpi_device_unregister(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955{
Shaohua Li90905892009-04-07 10:24:29 +0800956 mutex_lock(&acpi_device_lock);
Len Brown33b57152008-12-15 22:09:26 -0500957 if (device->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 list_del(&device->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
960 list_del(&device->wakeup_list);
Shaohua Li90905892009-04-07 10:24:29 +0800961 mutex_unlock(&acpi_device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
963 acpi_detach_data(device->handle, acpi_bus_data_handler);
Patrick Mochel1890a972006-12-07 20:56:31 +0800964
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100965 acpi_power_add_remove_device(device, false);
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800966 acpi_device_remove_files(device);
Rafael J. Wysockib1c0f992013-01-24 12:50:09 +0100967 if (device->remove)
968 device->remove(device);
969
Rafael J. Wysockicf860be2013-01-24 12:49:49 +0100970 device_del(&device->dev);
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100971 /*
Rafael J. Wysocki0aa120a2013-02-09 15:29:20 +0100972 * Transition the device to D3cold to drop the reference counts of all
973 * power resources the device depends on and turn off the ones that have
974 * no more references.
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100975 */
Rafael J. Wysocki0aa120a2013-02-09 15:29:20 +0100976 acpi_device_set_power(device, ACPI_STATE_D3_COLD);
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100977 device->handle = NULL;
Rafael J. Wysockicf860be2013-01-24 12:49:49 +0100978 put_device(&device->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979}
980
Zhang Rui9e89dde2006-12-07 20:56:16 +0800981/* --------------------------------------------------------------------------
982 Driver Management
983 -------------------------------------------------------------------------- */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984/**
Randy Dunlapd758a8f2006-01-06 01:31:00 -0500985 * acpi_bus_driver_init - add a device to a driver
986 * @device: the device to add and initialize
987 * @driver: driver for the device
988 *
Alex Chiang0c526d92009-05-14 08:31:37 -0600989 * Used to initialize a device via its device driver. Called whenever a
Patrick Mochel1890a972006-12-07 20:56:31 +0800990 * driver is bound to a device. Invokes the driver's add() ops.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 */
992static int
Len Brown4be44fc2005-08-05 00:44:28 -0400993acpi_bus_driver_init(struct acpi_device *device, struct acpi_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994{
Len Brown4be44fc2005-08-05 00:44:28 -0400995 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 if (!device || !driver)
Patrick Mocheld550d982006-06-27 00:41:40 -0400998 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
1000 if (!driver->ops.add)
Patrick Mocheld550d982006-06-27 00:41:40 -04001001 return -ENOSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
1003 result = driver->ops.add(device);
1004 if (result) {
1005 device->driver = NULL;
Pavel Machekdb89b4f2008-09-22 14:37:34 -07001006 device->driver_data = NULL;
Patrick Mocheld550d982006-06-27 00:41:40 -04001007 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 }
1009
1010 device->driver = driver;
1011
1012 /*
1013 * TBD - Configuration Management: Assign resources to device based
1014 * upon possible configuration and currently allocated resources.
1015 */
1016
Len Brown4be44fc2005-08-05 00:44:28 -04001017 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1018 "Driver successfully bound to device\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -04001019 return 0;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001020}
1021
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022/**
Randy Dunlapd758a8f2006-01-06 01:31:00 -05001023 * acpi_bus_register_driver - register a driver with the ACPI bus
1024 * @driver: driver being registered
1025 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 * Registers a driver with the ACPI bus. Searches the namespace for all
Bjorn Helgaas9d9f7492006-03-28 17:04:00 -05001027 * devices that match the driver's criteria and binds. Returns zero for
1028 * success or a negative error status for failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 */
Len Brown4be44fc2005-08-05 00:44:28 -04001030int acpi_bus_register_driver(struct acpi_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031{
Patrick Mochel1890a972006-12-07 20:56:31 +08001032 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
1034 if (acpi_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -04001035 return -ENODEV;
Patrick Mochel1890a972006-12-07 20:56:31 +08001036 driver->drv.name = driver->name;
1037 driver->drv.bus = &acpi_bus_type;
1038 driver->drv.owner = driver->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Patrick Mochel1890a972006-12-07 20:56:31 +08001040 ret = driver_register(&driver->drv);
1041 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
Len Brown4be44fc2005-08-05 00:44:28 -04001044EXPORT_SYMBOL(acpi_bus_register_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
1046/**
Randy Dunlapd758a8f2006-01-06 01:31:00 -05001047 * acpi_bus_unregister_driver - unregisters a driver with the APIC bus
1048 * @driver: driver to unregister
1049 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 * Unregisters a driver with the ACPI bus. Searches the namespace for all
1051 * devices that match the driver's criteria and unbinds.
1052 */
Bjorn Helgaas06ea8e082006-04-27 05:25:00 -04001053void acpi_bus_unregister_driver(struct acpi_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054{
Patrick Mochel1890a972006-12-07 20:56:31 +08001055 driver_unregister(&driver->drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056}
Len Brown4be44fc2005-08-05 00:44:28 -04001057
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058EXPORT_SYMBOL(acpi_bus_unregister_driver);
1059
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060/* --------------------------------------------------------------------------
1061 Device Enumeration
1062 -------------------------------------------------------------------------- */
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001063static struct acpi_device *acpi_bus_get_parent(acpi_handle handle)
1064{
Rafael J. Wysocki456de892013-01-31 20:57:40 +01001065 struct acpi_device *device = NULL;
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001066 acpi_status status;
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001067
1068 /*
1069 * Fixed hardware devices do not appear in the namespace and do not
1070 * have handles, but we fabricate acpi_devices for them, so we have
1071 * to deal with them specially.
1072 */
Rafael J. Wysocki456de892013-01-31 20:57:40 +01001073 if (!handle)
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001074 return acpi_root;
1075
1076 do {
1077 status = acpi_get_parent(handle, &handle);
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001078 if (ACPI_FAILURE(status))
Rafael J. Wysocki456de892013-01-31 20:57:40 +01001079 return status == AE_NULL_ENTRY ? NULL : acpi_root;
1080 } while (acpi_bus_get_device(handle, &device));
1081 return device;
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001082}
1083
Len Brownc8f7a622006-07-09 17:22:28 -04001084acpi_status
1085acpi_bus_get_ejd(acpi_handle handle, acpi_handle *ejd)
1086{
1087 acpi_status status;
1088 acpi_handle tmp;
1089 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
1090 union acpi_object *obj;
1091
1092 status = acpi_get_handle(handle, "_EJD", &tmp);
1093 if (ACPI_FAILURE(status))
1094 return status;
1095
1096 status = acpi_evaluate_object(handle, "_EJD", NULL, &buffer);
1097 if (ACPI_SUCCESS(status)) {
1098 obj = buffer.pointer;
Holger Macht3b5fee52008-02-14 13:40:34 +01001099 status = acpi_get_handle(ACPI_ROOT_OBJECT, obj->string.pointer,
1100 ejd);
Len Brownc8f7a622006-07-09 17:22:28 -04001101 kfree(buffer.pointer);
1102 }
1103 return status;
1104}
1105EXPORT_SYMBOL_GPL(acpi_bus_get_ejd);
1106
Bob Moore8e4319c2009-06-29 13:43:27 +08001107void acpi_bus_data_handler(acpi_handle handle, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108{
1109
1110 /* TBD */
1111
1112 return;
1113}
1114
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001115static int acpi_bus_extract_wakeup_device_power_package(acpi_handle handle,
1116 struct acpi_device_wakeup *wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117{
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001118 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1119 union acpi_object *package = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 union acpi_object *element = NULL;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001121 acpi_status status;
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001122 int err = -ENODATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001124 if (!wakeup)
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001125 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Rafael J. Wysocki993cbe52013-01-17 14:11:06 +01001127 INIT_LIST_HEAD(&wakeup->resources);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001129 /* _PRW */
1130 status = acpi_evaluate_object(handle, "_PRW", NULL, &buffer);
1131 if (ACPI_FAILURE(status)) {
1132 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PRW"));
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001133 return err;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001134 }
1135
1136 package = (union acpi_object *)buffer.pointer;
1137
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001138 if (!package || package->package.count < 2)
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001139 goto out;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001140
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 element = &(package->package.elements[0]);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001142 if (!element)
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001143 goto out;
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001144
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 if (element->type == ACPI_TYPE_PACKAGE) {
1146 if ((element->package.count < 2) ||
1147 (element->package.elements[0].type !=
1148 ACPI_TYPE_LOCAL_REFERENCE)
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001149 || (element->package.elements[1].type != ACPI_TYPE_INTEGER))
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001150 goto out;
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001151
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001152 wakeup->gpe_device =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 element->package.elements[0].reference.handle;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001154 wakeup->gpe_number =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 (u32) element->package.elements[1].integer.value;
1156 } else if (element->type == ACPI_TYPE_INTEGER) {
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001157 wakeup->gpe_device = NULL;
1158 wakeup->gpe_number = element->integer.value;
1159 } else {
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001160 goto out;
1161 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
1163 element = &(package->package.elements[1]);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001164 if (element->type != ACPI_TYPE_INTEGER)
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001165 goto out;
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001166
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001167 wakeup->sleep_state = element->integer.value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001169 err = acpi_extract_power_resources(package, 2, &wakeup->resources);
1170 if (err)
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001171 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
Rafael J. Wysocki0596a522013-01-17 14:11:07 +01001173 if (!list_empty(&wakeup->resources)) {
1174 int sleep_state;
1175
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +01001176 err = acpi_power_wakeup_list_init(&wakeup->resources,
1177 &sleep_state);
1178 if (err) {
1179 acpi_handle_warn(handle, "Retrieving current states "
1180 "of wakeup power resources failed\n");
1181 acpi_power_resources_list_free(&wakeup->resources);
1182 goto out;
1183 }
Rafael J. Wysocki0596a522013-01-17 14:11:07 +01001184 if (sleep_state < wakeup->sleep_state) {
1185 acpi_handle_warn(handle, "Overriding _PRW sleep state "
1186 "(S%d) by S%d from power resources\n",
1187 (int)wakeup->sleep_state, sleep_state);
1188 wakeup->sleep_state = sleep_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 }
Lin Mingbba63a22010-12-13 13:39:17 +08001191 acpi_setup_gpe_for_wake(handle, wakeup->gpe_device, wakeup->gpe_number);
Rafael J. Wysocki98746472010-07-08 00:43:36 +02001192
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001193 out:
1194 kfree(buffer.pointer);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001195 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196}
1197
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001198static void acpi_bus_set_run_wake_flags(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199{
Thomas Renninger29b71a12007-07-23 14:43:51 +02001200 struct acpi_device_id button_device_ids[] = {
Thomas Renninger29b71a12007-07-23 14:43:51 +02001201 {"PNP0C0C", 0},
Zhang Ruib7e38302012-12-04 23:23:16 +01001202 {"PNP0C0D", 0},
Thomas Renninger29b71a12007-07-23 14:43:51 +02001203 {"PNP0C0E", 0},
1204 {"", 0},
1205 };
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001206 acpi_status status;
1207 acpi_event_status event_status;
1208
Rafael J. Wysockib67ea762010-02-17 23:44:09 +01001209 device->wakeup.flags.notifier_present = 0;
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001210
1211 /* Power button, Lid switch always enable wakeup */
1212 if (!acpi_match_device_ids(device, button_device_ids)) {
1213 device->wakeup.flags.run_wake = 1;
Zhang Ruib7e38302012-12-04 23:23:16 +01001214 if (!acpi_match_device_ids(device, &button_device_ids[1])) {
1215 /* Do not use Lid/sleep button for S5 wakeup */
1216 if (device->wakeup.sleep_state == ACPI_STATE_S5)
1217 device->wakeup.sleep_state = ACPI_STATE_S4;
1218 }
Rafael J. Wysockif2b56bc2011-01-06 23:34:22 +01001219 device_set_wakeup_capable(&device->dev, true);
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001220 return;
1221 }
1222
Rafael J. Wysockie8e18c92010-07-08 00:42:51 +02001223 status = acpi_get_gpe_status(device->wakeup.gpe_device,
1224 device->wakeup.gpe_number,
1225 &event_status);
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001226 if (status == AE_OK)
1227 device->wakeup.flags.run_wake =
1228 !!(event_status & ACPI_EVENT_FLAG_HANDLE);
1229}
1230
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01001231static void acpi_bus_get_wakeup_device_flags(struct acpi_device *device)
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001232{
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01001233 acpi_handle temp;
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001234 acpi_status status = 0;
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001235 int err;
Thomas Renninger29b71a12007-07-23 14:43:51 +02001236
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01001237 /* Presence of _PRW indicates wake capable */
1238 status = acpi_get_handle(device->handle, "_PRW", &temp);
1239 if (ACPI_FAILURE(status))
1240 return;
1241
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001242 err = acpi_bus_extract_wakeup_device_power_package(device->handle,
1243 &device->wakeup);
1244 if (err) {
1245 dev_err(&device->dev, "_PRW evaluation error: %d\n", err);
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01001246 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 }
1248
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 device->wakeup.flags.valid = 1;
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +02001250 device->wakeup.prepare_count = 0;
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001251 acpi_bus_set_run_wake_flags(device);
Zhao Yakui729b2bd2008-03-19 13:26:54 +08001252 /* Call _PSW/_DSW object to disable its ability to wake the sleeping
1253 * system for the ACPI device with the _PRW object.
1254 * The _PSW object is depreciated in ACPI 3.0 and is replaced by _DSW.
1255 * So it is necessary to call _DSW object first. Only when it is not
1256 * present will the _PSW object used.
1257 */
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001258 err = acpi_device_sleep_wake(device, 0, 0, 0);
1259 if (err)
Rafael J. Wysocki77e76602008-07-07 03:33:34 +02001260 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1261 "error in _DSW or _PSW evaluation\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262}
1263
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001264static void acpi_bus_init_power_state(struct acpi_device *device, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265{
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001266 struct acpi_device_power_state *ps = &device->power.states[state];
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001267 char pathname[5] = { '_', 'P', 'R', '0' + state, '\0' };
1268 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001269 acpi_handle handle;
1270 acpi_status status;
Zhang Rui9e89dde2006-12-07 20:56:16 +08001271
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001272 INIT_LIST_HEAD(&ps->resources);
1273
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001274 /* Evaluate "_PRx" to get referenced power resources */
1275 status = acpi_evaluate_object(device->handle, pathname, NULL, &buffer);
1276 if (ACPI_SUCCESS(status)) {
1277 union acpi_object *package = buffer.pointer;
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001278
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001279 if (buffer.length && package
1280 && package->type == ACPI_TYPE_PACKAGE
1281 && package->package.count) {
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001282 int err = acpi_extract_power_resources(package, 0,
1283 &ps->resources);
1284 if (!err)
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001285 device->power.flags.power_resources = 1;
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001286 }
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001287 ACPI_FREE(buffer.pointer);
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001288 }
1289
1290 /* Evaluate "_PSx" to see if we can do explicit sets */
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001291 pathname[2] = 'S';
1292 status = acpi_get_handle(device->handle, pathname, &handle);
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001293 if (ACPI_SUCCESS(status))
1294 ps->flags.explicit_set = 1;
1295
1296 /*
1297 * State is valid if there are means to put the device into it.
1298 * D3hot is only valid if _PR3 present.
1299 */
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001300 if (!list_empty(&ps->resources)
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001301 || (ps->flags.explicit_set && state < ACPI_STATE_D3_HOT)) {
1302 ps->flags.valid = 1;
1303 ps->flags.os_accessible = 1;
1304 }
1305
1306 ps->power = -1; /* Unknown - driver assigned */
1307 ps->latency = -1; /* Unknown - driver assigned */
1308}
1309
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001310static void acpi_bus_get_power_flags(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311{
Rafael J. Wysocki8bc50532013-01-17 14:11:07 +01001312 acpi_status status;
1313 acpi_handle handle;
1314 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001316 /* Presence of _PS0|_PR0 indicates 'power manageable' */
1317 status = acpi_get_handle(device->handle, "_PS0", &handle);
1318 if (ACPI_FAILURE(status)) {
1319 status = acpi_get_handle(device->handle, "_PR0", &handle);
1320 if (ACPI_FAILURE(status))
1321 return;
1322 }
1323
1324 device->flags.power_manageable = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
1326 /*
Zhang Rui9e89dde2006-12-07 20:56:16 +08001327 * Power Management Flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 */
Zhang Rui9e89dde2006-12-07 20:56:16 +08001329 status = acpi_get_handle(device->handle, "_PSC", &handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 if (ACPI_SUCCESS(status))
Zhang Rui9e89dde2006-12-07 20:56:16 +08001331 device->power.flags.explicit_get = 1;
1332 status = acpi_get_handle(device->handle, "_IRC", &handle);
1333 if (ACPI_SUCCESS(status))
1334 device->power.flags.inrush_current = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
1336 /*
Zhang Rui9e89dde2006-12-07 20:56:16 +08001337 * Enumerate supported power management states
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 */
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001339 for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3_HOT; i++)
1340 acpi_bus_init_power_state(device, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
Rafael J. Wysocki0b224522013-01-17 14:11:06 +01001342 INIT_LIST_HEAD(&device->power.states[ACPI_STATE_D3_COLD].resources);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
Zhang Rui9e89dde2006-12-07 20:56:16 +08001344 /* Set defaults for D0 and D3 states (always valid) */
1345 device->power.states[ACPI_STATE_D0].flags.valid = 1;
1346 device->power.states[ACPI_STATE_D0].power = 100;
1347 device->power.states[ACPI_STATE_D3].flags.valid = 1;
1348 device->power.states[ACPI_STATE_D3].power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
Rafael J. Wysocki5c7dd712012-05-18 00:39:35 +02001350 /* Set D3cold's explicit_set flag if _PS3 exists. */
1351 if (device->power.states[ACPI_STATE_D3_HOT].flags.explicit_set)
1352 device->power.states[ACPI_STATE_D3_COLD].flags.explicit_set = 1;
1353
Aaron Lu1399dfc2012-11-21 23:33:40 +01001354 /* Presence of _PS3 or _PRx means we can put the device into D3 cold */
1355 if (device->power.states[ACPI_STATE_D3_HOT].flags.explicit_set ||
1356 device->power.flags.power_resources)
1357 device->power.states[ACPI_STATE_D3_COLD].flags.os_accessible = 1;
1358
Rafael J. Wysockib3785492013-02-01 23:43:02 +01001359 if (acpi_bus_init_power(device)) {
1360 acpi_free_power_resources_lists(device);
1361 device->flags.power_manageable = 0;
1362 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363}
1364
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001365static void acpi_bus_get_flags(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366{
Len Brown4be44fc2005-08-05 00:44:28 -04001367 acpi_status status = AE_OK;
1368 acpi_handle temp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 /* Presence of _STA indicates 'dynamic_status' */
1371 status = acpi_get_handle(device->handle, "_STA", &temp);
1372 if (ACPI_SUCCESS(status))
1373 device->flags.dynamic_status = 1;
1374
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 /* Presence of _RMV indicates 'removable' */
1376 status = acpi_get_handle(device->handle, "_RMV", &temp);
1377 if (ACPI_SUCCESS(status))
1378 device->flags.removable = 1;
1379
1380 /* Presence of _EJD|_EJ0 indicates 'ejectable' */
1381 status = acpi_get_handle(device->handle, "_EJD", &temp);
1382 if (ACPI_SUCCESS(status))
1383 device->flags.ejectable = 1;
1384 else {
1385 status = acpi_get_handle(device->handle, "_EJ0", &temp);
1386 if (ACPI_SUCCESS(status))
1387 device->flags.ejectable = 1;
1388 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389}
1390
Bjorn Helgaasc7bcb4e2009-09-21 19:29:25 +00001391static void acpi_device_get_busid(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392{
Len Brown4be44fc2005-08-05 00:44:28 -04001393 char bus_id[5] = { '?', 0 };
1394 struct acpi_buffer buffer = { sizeof(bus_id), bus_id };
1395 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
1397 /*
1398 * Bus ID
1399 * ------
1400 * The device's Bus ID is simply the object name.
1401 * TBD: Shouldn't this value be unique (within the ACPI namespace)?
1402 */
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +00001403 if (ACPI_IS_ROOT_DEVICE(device)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 strcpy(device->pnp.bus_id, "ACPI");
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +00001405 return;
1406 }
1407
1408 switch (device->device_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 case ACPI_BUS_TYPE_POWER_BUTTON:
1410 strcpy(device->pnp.bus_id, "PWRF");
1411 break;
1412 case ACPI_BUS_TYPE_SLEEP_BUTTON:
1413 strcpy(device->pnp.bus_id, "SLPF");
1414 break;
1415 default:
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +00001416 acpi_get_name(device->handle, ACPI_SINGLE_NAME, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 /* Clean up trailing underscores (if any) */
1418 for (i = 3; i > 1; i--) {
1419 if (bus_id[i] == '_')
1420 bus_id[i] = '\0';
1421 else
1422 break;
1423 }
1424 strcpy(device->pnp.bus_id, bus_id);
1425 break;
1426 }
1427}
1428
Zhang Rui54735262007-01-11 02:09:09 -05001429/*
Toshi Kanid4e1a692013-03-04 21:30:41 +00001430 * acpi_bay_match - see if an acpi object is an ejectable driver bay
Zhang Rui54735262007-01-11 02:09:09 -05001431 *
1432 * If an acpi object is ejectable and has one of the ACPI ATA methods defined,
1433 * then we can safely call it an ejectable drive bay
1434 */
Toshi Kanid4e1a692013-03-04 21:30:41 +00001435static int acpi_bay_match(acpi_handle handle)
1436{
Zhang Rui54735262007-01-11 02:09:09 -05001437 acpi_status status;
Zhang Rui54735262007-01-11 02:09:09 -05001438 acpi_handle tmp;
1439 acpi_handle phandle;
1440
Zhang Rui54735262007-01-11 02:09:09 -05001441 status = acpi_get_handle(handle, "_EJ0", &tmp);
1442 if (ACPI_FAILURE(status))
1443 return -ENODEV;
1444
1445 if ((ACPI_SUCCESS(acpi_get_handle(handle, "_GTF", &tmp))) ||
1446 (ACPI_SUCCESS(acpi_get_handle(handle, "_GTM", &tmp))) ||
1447 (ACPI_SUCCESS(acpi_get_handle(handle, "_STM", &tmp))) ||
1448 (ACPI_SUCCESS(acpi_get_handle(handle, "_SDD", &tmp))))
1449 return 0;
1450
1451 if (acpi_get_parent(handle, &phandle))
1452 return -ENODEV;
1453
1454 if ((ACPI_SUCCESS(acpi_get_handle(phandle, "_GTF", &tmp))) ||
1455 (ACPI_SUCCESS(acpi_get_handle(phandle, "_GTM", &tmp))) ||
1456 (ACPI_SUCCESS(acpi_get_handle(phandle, "_STM", &tmp))) ||
1457 (ACPI_SUCCESS(acpi_get_handle(phandle, "_SDD", &tmp))))
1458 return 0;
1459
1460 return -ENODEV;
1461}
1462
Frank Seidel3620f2f2007-12-07 13:20:34 +01001463/*
Toshi Kanid4e1a692013-03-04 21:30:41 +00001464 * acpi_dock_match - see if an acpi object has a _DCK method
Frank Seidel3620f2f2007-12-07 13:20:34 +01001465 */
Toshi Kanid4e1a692013-03-04 21:30:41 +00001466static int acpi_dock_match(acpi_handle handle)
Frank Seidel3620f2f2007-12-07 13:20:34 +01001467{
1468 acpi_handle tmp;
Toshi Kanid4e1a692013-03-04 21:30:41 +00001469 return acpi_get_handle(handle, "_DCK", &tmp);
Frank Seidel3620f2f2007-12-07 13:20:34 +01001470}
1471
Thomas Renninger620e1122010-10-01 10:54:00 +02001472const char *acpi_device_hid(struct acpi_device *device)
Bob Moore15b8dd52009-06-29 13:39:29 +08001473{
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001474 struct acpi_hardware_id *hid;
Bob Moore15b8dd52009-06-29 13:39:29 +08001475
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +02001476 if (list_empty(&device->pnp.ids))
1477 return dummy_hid;
1478
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001479 hid = list_first_entry(&device->pnp.ids, struct acpi_hardware_id, list);
1480 return hid->id;
1481}
1482EXPORT_SYMBOL(acpi_device_hid);
Bob Moore15b8dd52009-06-29 13:39:29 +08001483
Toshi Kanid4e1a692013-03-04 21:30:41 +00001484static void acpi_add_id(struct acpi_device_pnp *pnp, const char *dev_id)
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001485{
1486 struct acpi_hardware_id *id;
Bob Moore15b8dd52009-06-29 13:39:29 +08001487
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001488 id = kmalloc(sizeof(*id), GFP_KERNEL);
1489 if (!id)
1490 return;
Bob Moore15b8dd52009-06-29 13:39:29 +08001491
Thomas Meyer581de592011-08-06 11:32:56 +02001492 id->id = kstrdup(dev_id, GFP_KERNEL);
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001493 if (!id->id) {
1494 kfree(id);
1495 return;
Bob Moore15b8dd52009-06-29 13:39:29 +08001496 }
1497
Toshi Kanid4e1a692013-03-04 21:30:41 +00001498 list_add_tail(&id->list, &pnp->ids);
1499 pnp->type.hardware_id = 1;
Bob Moore15b8dd52009-06-29 13:39:29 +08001500}
1501
Darrick J. Wong222e82a2010-03-24 14:38:37 +01001502/*
1503 * Old IBM workstations have a DSDT bug wherein the SMBus object
1504 * lacks the SMBUS01 HID and the methods do not have the necessary "_"
1505 * prefix. Work around this.
1506 */
Toshi Kanid4e1a692013-03-04 21:30:41 +00001507static int acpi_ibm_smbus_match(acpi_handle handle)
Darrick J. Wong222e82a2010-03-24 14:38:37 +01001508{
1509 acpi_handle h_dummy;
1510 struct acpi_buffer path = {ACPI_ALLOCATE_BUFFER, NULL};
1511 int result;
1512
1513 if (!dmi_name_in_vendors("IBM"))
1514 return -ENODEV;
1515
1516 /* Look for SMBS object */
Toshi Kanid4e1a692013-03-04 21:30:41 +00001517 result = acpi_get_name(handle, ACPI_SINGLE_NAME, &path);
Darrick J. Wong222e82a2010-03-24 14:38:37 +01001518 if (result)
1519 return result;
1520
1521 if (strcmp("SMBS", path.pointer)) {
1522 result = -ENODEV;
1523 goto out;
1524 }
1525
1526 /* Does it have the necessary (but misnamed) methods? */
1527 result = -ENODEV;
Toshi Kanid4e1a692013-03-04 21:30:41 +00001528 if (ACPI_SUCCESS(acpi_get_handle(handle, "SBI", &h_dummy)) &&
1529 ACPI_SUCCESS(acpi_get_handle(handle, "SBR", &h_dummy)) &&
1530 ACPI_SUCCESS(acpi_get_handle(handle, "SBW", &h_dummy)))
Darrick J. Wong222e82a2010-03-24 14:38:37 +01001531 result = 0;
1532out:
1533 kfree(path.pointer);
1534 return result;
1535}
1536
Toshi Kanic0af4172013-03-04 21:30:42 +00001537static void acpi_set_pnp_ids(acpi_handle handle, struct acpi_device_pnp *pnp,
1538 int device_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539{
Len Brown4be44fc2005-08-05 00:44:28 -04001540 acpi_status status;
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001541 struct acpi_device_info *info;
Lv Zheng78e25fe2012-10-31 02:25:24 +00001542 struct acpi_pnp_device_id_list *cid_list;
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001543 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
Toshi Kanic0af4172013-03-04 21:30:42 +00001545 switch (device_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 case ACPI_BUS_TYPE_DEVICE:
Toshi Kanic0af4172013-03-04 21:30:42 +00001547 if (handle == ACPI_ROOT_OBJECT) {
1548 acpi_add_id(pnp, ACPI_SYSTEM_HID);
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +00001549 break;
1550 }
1551
Toshi Kanic0af4172013-03-04 21:30:42 +00001552 status = acpi_get_object_info(handle, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 if (ACPI_FAILURE(status)) {
Toshi Kanic0af4172013-03-04 21:30:42 +00001554 pr_err(PREFIX "%s: Error reading device info\n",
1555 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 return;
1557 }
1558
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 if (info->valid & ACPI_VALID_HID)
Toshi Kanic0af4172013-03-04 21:30:42 +00001560 acpi_add_id(pnp, info->hardware_id.string);
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001561 if (info->valid & ACPI_VALID_CID) {
Bob Moore15b8dd52009-06-29 13:39:29 +08001562 cid_list = &info->compatible_id_list;
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001563 for (i = 0; i < cid_list->count; i++)
Toshi Kanic0af4172013-03-04 21:30:42 +00001564 acpi_add_id(pnp, cid_list->ids[i].string);
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001565 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 if (info->valid & ACPI_VALID_ADR) {
Toshi Kanic0af4172013-03-04 21:30:42 +00001567 pnp->bus_address = info->address;
1568 pnp->type.bus_address = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 }
Lv Zhengccf78042012-10-30 14:41:07 +01001570 if (info->valid & ACPI_VALID_UID)
Toshi Kanic0af4172013-03-04 21:30:42 +00001571 pnp->unique_id = kstrdup(info->unique_id.string,
Lv Zhengccf78042012-10-30 14:41:07 +01001572 GFP_KERNEL);
Zhang Ruiae843332006-12-07 20:57:10 +08001573
Bjorn Helgaasa83893ae2009-10-02 11:03:12 -04001574 kfree(info);
1575
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001576 /*
1577 * Some devices don't reliably have _HIDs & _CIDs, so add
1578 * synthetic HIDs to make sure drivers can find them.
1579 */
Toshi Kanic0af4172013-03-04 21:30:42 +00001580 if (acpi_is_video_device(handle))
1581 acpi_add_id(pnp, ACPI_VIDEO_HID);
1582 else if (ACPI_SUCCESS(acpi_bay_match(handle)))
1583 acpi_add_id(pnp, ACPI_BAY_HID);
1584 else if (ACPI_SUCCESS(acpi_dock_match(handle)))
1585 acpi_add_id(pnp, ACPI_DOCK_HID);
1586 else if (!acpi_ibm_smbus_match(handle))
1587 acpi_add_id(pnp, ACPI_SMBUS_IBM_HID);
1588 else if (list_empty(&pnp->ids) && handle == ACPI_ROOT_OBJECT) {
1589 acpi_add_id(pnp, ACPI_BUS_HID); /* \_SB, LNXSYBUS */
1590 strcpy(pnp->device_name, ACPI_BUS_DEVICE_NAME);
1591 strcpy(pnp->device_class, ACPI_BUS_CLASS);
Bjorn Helgaasb7b30de2010-03-24 10:44:33 -06001592 }
Zhang Rui54735262007-01-11 02:09:09 -05001593
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 break;
1595 case ACPI_BUS_TYPE_POWER:
Toshi Kanic0af4172013-03-04 21:30:42 +00001596 acpi_add_id(pnp, ACPI_POWER_HID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 break;
1598 case ACPI_BUS_TYPE_PROCESSOR:
Toshi Kanic0af4172013-03-04 21:30:42 +00001599 acpi_add_id(pnp, ACPI_PROCESSOR_OBJECT_HID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 case ACPI_BUS_TYPE_THERMAL:
Toshi Kanic0af4172013-03-04 21:30:42 +00001602 acpi_add_id(pnp, ACPI_THERMAL_HID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 break;
1604 case ACPI_BUS_TYPE_POWER_BUTTON:
Toshi Kanic0af4172013-03-04 21:30:42 +00001605 acpi_add_id(pnp, ACPI_BUTTON_HID_POWERF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 break;
1607 case ACPI_BUS_TYPE_SLEEP_BUTTON:
Toshi Kanic0af4172013-03-04 21:30:42 +00001608 acpi_add_id(pnp, ACPI_BUTTON_HID_SLEEPF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 break;
1610 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611}
1612
Toshi Kanic0af4172013-03-04 21:30:42 +00001613void acpi_free_pnp_ids(struct acpi_device_pnp *pnp)
1614{
1615 struct acpi_hardware_id *id, *tmp;
1616
1617 list_for_each_entry_safe(id, tmp, &pnp->ids, list) {
1618 kfree(id->id);
1619 kfree(id);
1620 }
1621 kfree(pnp->unique_id);
1622}
1623
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +01001624void acpi_init_device_object(struct acpi_device *device, acpi_handle handle,
1625 int type, unsigned long long sta)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626{
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001627 INIT_LIST_HEAD(&device->pnp.ids);
1628 device->device_type = type;
1629 device->handle = handle;
1630 device->parent = acpi_bus_get_parent(handle);
1631 STRUCT_TO_INT(device->status) = sta;
1632 acpi_device_get_busid(device);
Toshi Kanic0af4172013-03-04 21:30:42 +00001633 acpi_set_pnp_ids(handle, &device->pnp, type);
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001634 acpi_bus_get_flags(device);
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01001635 device->flags.match_driver = false;
Rafael J. Wysockicf860be2013-01-24 12:49:49 +01001636 device_initialize(&device->dev);
1637 dev_set_uevent_suppress(&device->dev, true);
1638}
Bjorn Helgaasbc3b0772009-09-21 19:29:20 +00001639
Rafael J. Wysockicf860be2013-01-24 12:49:49 +01001640void acpi_device_add_finalize(struct acpi_device *device)
1641{
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01001642 device->flags.match_driver = true;
Rafael J. Wysockicf860be2013-01-24 12:49:49 +01001643 dev_set_uevent_suppress(&device->dev, false);
1644 kobject_uevent(&device->dev.kobj, KOBJ_ADD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645}
1646
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001647static int acpi_add_single_object(struct acpi_device **child,
1648 acpi_handle handle, int type,
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01001649 unsigned long long sta)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650{
Bjorn Helgaas77c24882009-09-21 19:29:30 +00001651 int result;
1652 struct acpi_device *device;
Bjorn Helgaas29aaefa2009-09-21 19:28:54 +00001653 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
Burman Yan36bcbec2006-12-19 12:56:11 -08001655 device = kzalloc(sizeof(struct acpi_device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 if (!device) {
Len Brown64684632006-06-26 23:41:38 -04001657 printk(KERN_ERR PREFIX "Memory allocation error\n");
Patrick Mocheld550d982006-06-27 00:41:40 -04001658 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001661 acpi_init_device_object(device, handle, type, sta);
1662 acpi_bus_get_power_flags(device);
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01001663 acpi_bus_get_wakeup_device_flags(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
Rafael J. Wysockicf860be2013-01-24 12:49:49 +01001665 result = acpi_device_add(device, acpi_device_release);
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001666 if (result) {
Hugh Dickins718fb0d2009-08-06 23:18:12 +00001667 acpi_device_release(&device->dev);
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001668 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 }
1670
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001671 acpi_power_add_remove_device(device, true);
Rafael J. Wysockicf860be2013-01-24 12:49:49 +01001672 acpi_device_add_finalize(device);
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001673 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
1674 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Added %s [%s] parent %s\n",
1675 dev_name(&device->dev), (char *) buffer.pointer,
1676 device->parent ? dev_name(&device->parent->dev) : "(null)"));
1677 kfree(buffer.pointer);
1678 *child = device;
1679 return 0;
Rafael J. Wysockibf325f92010-11-25 00:10:44 +01001680}
1681
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001682static int acpi_bus_type_and_status(acpi_handle handle, int *type,
1683 unsigned long long *sta)
1684{
1685 acpi_status status;
1686 acpi_object_type acpi_type;
1687
1688 status = acpi_get_type(handle, &acpi_type);
1689 if (ACPI_FAILURE(status))
1690 return -ENODEV;
1691
1692 switch (acpi_type) {
1693 case ACPI_TYPE_ANY: /* for ACPI_ROOT_OBJECT */
1694 case ACPI_TYPE_DEVICE:
1695 *type = ACPI_BUS_TYPE_DEVICE;
1696 status = acpi_bus_get_status_handle(handle, sta);
1697 if (ACPI_FAILURE(status))
1698 return -ENODEV;
1699 break;
1700 case ACPI_TYPE_PROCESSOR:
1701 *type = ACPI_BUS_TYPE_PROCESSOR;
1702 status = acpi_bus_get_status_handle(handle, sta);
1703 if (ACPI_FAILURE(status))
1704 return -ENODEV;
1705 break;
1706 case ACPI_TYPE_THERMAL:
1707 *type = ACPI_BUS_TYPE_THERMAL;
1708 *sta = ACPI_STA_DEFAULT;
1709 break;
1710 case ACPI_TYPE_POWER:
1711 *type = ACPI_BUS_TYPE_POWER;
1712 *sta = ACPI_STA_DEFAULT;
1713 break;
1714 default:
1715 return -ENODEV;
1716 }
1717
1718 return 0;
1719}
1720
Rafael J. Wysocki4b59cc12013-03-03 23:06:21 +01001721static bool acpi_scan_handler_matching(struct acpi_scan_handler *handler,
1722 char *idstr,
1723 const struct acpi_device_id **matchid)
1724{
1725 const struct acpi_device_id *devid;
1726
1727 for (devid = handler->ids; devid->id[0]; devid++)
1728 if (!strcmp((char *)devid->id, idstr)) {
1729 if (matchid)
1730 *matchid = devid;
1731
1732 return true;
1733 }
1734
1735 return false;
1736}
1737
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001738static struct acpi_scan_handler *acpi_scan_match_handler(char *idstr,
1739 const struct acpi_device_id **matchid)
1740{
1741 struct acpi_scan_handler *handler;
1742
1743 list_for_each_entry(handler, &acpi_scan_handlers_list, list_node)
1744 if (acpi_scan_handler_matching(handler, idstr, matchid))
1745 return handler;
1746
1747 return NULL;
1748}
1749
Rafael J. Wysocki3f8055c2013-03-03 23:08:16 +01001750void acpi_scan_hotplug_enabled(struct acpi_hotplug_profile *hotplug, bool val)
1751{
Rafael J. Wysocki3f8055c2013-03-03 23:08:16 +01001752 if (!!hotplug->enabled == !!val)
1753 return;
1754
1755 mutex_lock(&acpi_scan_lock);
1756
1757 hotplug->enabled = val;
Rafael J. Wysocki3f8055c2013-03-03 23:08:16 +01001758
1759 mutex_unlock(&acpi_scan_lock);
1760}
1761
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001762static void acpi_scan_init_hotplug(acpi_handle handle, int type)
Rafael J. Wysockic5698072013-03-03 23:05:14 +01001763{
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001764 struct acpi_device_pnp pnp = {};
1765 struct acpi_hardware_id *hwid;
Rafael J. Wysockic5698072013-03-03 23:05:14 +01001766 struct acpi_scan_handler *handler;
1767
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001768 INIT_LIST_HEAD(&pnp.ids);
1769 acpi_set_pnp_ids(handle, &pnp, type);
Rafael J. Wysockic5698072013-03-03 23:05:14 +01001770
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001771 if (!pnp.type.hardware_id)
Rafael J. Wysockia33ec392013-03-03 23:05:29 +01001772 return;
1773
Rafael J. Wysockia33ec392013-03-03 23:05:29 +01001774 /*
1775 * This relies on the fact that acpi_install_notify_handler() will not
1776 * install the same notify handler routine twice for the same handle.
1777 */
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001778 list_for_each_entry(hwid, &pnp.ids, list) {
1779 handler = acpi_scan_match_handler(hwid->id, NULL);
1780 if (handler) {
Toshi Kani2cbb14f2013-03-05 22:33:31 +00001781 acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
1782 acpi_hotplug_notify_cb, handler);
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001783 break;
1784 }
1785 }
1786
1787 acpi_free_pnp_ids(&pnp);
Rafael J. Wysockia33ec392013-03-03 23:05:29 +01001788}
1789
Rafael J. Wysockie3863092012-12-21 00:36:47 +01001790static acpi_status acpi_bus_check_add(acpi_handle handle, u32 lvl_not_used,
1791 void *not_used, void **return_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792{
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001793 struct acpi_device *device = NULL;
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001794 int type;
1795 unsigned long long sta;
Bjorn Helgaase3b87f82009-09-21 19:30:11 +00001796 acpi_status status;
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001797 int result;
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001798
Rafael J. Wysocki4002bf32012-12-21 00:36:44 +01001799 acpi_bus_get_device(handle, &device);
1800 if (device)
1801 goto out;
1802
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001803 result = acpi_bus_type_and_status(handle, &type, &sta);
1804 if (result)
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001805 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +01001807 if (type == ACPI_BUS_TYPE_POWER) {
1808 acpi_add_power_resource(handle);
1809 return AE_OK;
1810 }
1811
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001812 acpi_scan_init_hotplug(handle, type);
Rafael J. Wysockia33ec392013-03-03 23:05:29 +01001813
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001814 if (!(sta & ACPI_STA_DEVICE_PRESENT) &&
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001815 !(sta & ACPI_STA_DEVICE_FUNCTIONING)) {
Rafael J. Wysocki86e4e202011-01-06 23:40:00 +01001816 struct acpi_device_wakeup wakeup;
1817 acpi_handle temp;
1818
1819 status = acpi_get_handle(handle, "_PRW", &temp);
Rafael J. Wysocki993cbe52013-01-17 14:11:06 +01001820 if (ACPI_SUCCESS(status)) {
Rafael J. Wysocki86e4e202011-01-06 23:40:00 +01001821 acpi_bus_extract_wakeup_device_power_package(handle,
1822 &wakeup);
Rafael J. Wysocki993cbe52013-01-17 14:11:06 +01001823 acpi_power_resources_list_free(&wakeup.resources);
1824 }
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001825 return AE_CTRL_DEPTH;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001826 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01001828 acpi_add_single_object(&device, handle, type, sta);
Bjorn Helgaase3b87f82009-09-21 19:30:11 +00001829 if (!device)
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001830 return AE_CTRL_DEPTH;
1831
Rafael J. Wysocki4002bf32012-12-21 00:36:44 +01001832 out:
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001833 if (!*return_value)
1834 *return_value = device;
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001835
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001836 return AE_OK;
1837}
1838
Rafael J. Wysocki87b85b32013-02-06 13:05:22 +01001839static int acpi_scan_attach_handler(struct acpi_device *device)
1840{
1841 struct acpi_hardware_id *hwid;
1842 int ret = 0;
1843
1844 list_for_each_entry(hwid, &device->pnp.ids, list) {
Rafael J. Wysockic5698072013-03-03 23:05:14 +01001845 const struct acpi_device_id *devid;
1846 struct acpi_scan_handler *handler;
Rafael J. Wysocki87b85b32013-02-06 13:05:22 +01001847
Rafael J. Wysockic5698072013-03-03 23:05:14 +01001848 handler = acpi_scan_match_handler(hwid->id, &devid);
1849 if (handler) {
1850 ret = handler->attach(device, devid);
1851 if (ret > 0) {
1852 device->handler = handler;
1853 break;
1854 } else if (ret < 0) {
1855 break;
1856 }
1857 }
Rafael J. Wysocki87b85b32013-02-06 13:05:22 +01001858 }
Rafael J. Wysockica589f92013-01-30 14:27:29 +01001859 return ret;
1860}
1861
Rafael J. Wysocki0fc300b2012-12-21 00:36:41 +01001862static acpi_status acpi_bus_device_attach(acpi_handle handle, u32 lvl_not_used,
1863 void *not_used, void **ret_not_used)
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001864{
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001865 struct acpi_device *device;
1866 unsigned long long sta_not_used;
Rafael J. Wysockica589f92013-01-30 14:27:29 +01001867 int ret;
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001868
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001869 /*
1870 * Ignore errors ignored by acpi_bus_check_add() to avoid terminating
1871 * namespace walks prematurely.
1872 */
Rafael J. Wysockica589f92013-01-30 14:27:29 +01001873 if (acpi_bus_type_and_status(handle, &ret, &sta_not_used))
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001874 return AE_OK;
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001875
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001876 if (acpi_bus_get_device(handle, &device))
1877 return AE_CTRL_DEPTH;
Thomas Renninger77796882010-01-29 17:48:52 +01001878
Rafael J. Wysockica589f92013-01-30 14:27:29 +01001879 ret = acpi_scan_attach_handler(device);
1880 if (ret)
1881 return ret > 0 ? AE_OK : AE_CTRL_DEPTH;
1882
1883 ret = device_attach(&device->dev);
1884 return ret >= 0 ? AE_OK : AE_CTRL_DEPTH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01001887/**
1888 * acpi_bus_scan - Add ACPI device node objects in a given namespace scope.
1889 * @handle: Root of the namespace scope to scan.
Thomas Renninger77796882010-01-29 17:48:52 +01001890 *
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01001891 * Scan a given ACPI tree (probably recently hot-plugged) and create and add
1892 * found devices.
Thomas Renninger77796882010-01-29 17:48:52 +01001893 *
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01001894 * If no devices were found, -ENODEV is returned, but it does not mean that
1895 * there has been a real error. There just have been no suitable ACPI objects
1896 * in the table trunk from which the kernel could create a device and add an
1897 * appropriate driver.
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01001898 *
1899 * Must be called under acpi_scan_lock.
Thomas Renninger77796882010-01-29 17:48:52 +01001900 */
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01001901int acpi_bus_scan(acpi_handle handle)
Rajesh Shah3fb02732005-04-28 00:25:52 -07001902{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 void *device = NULL;
Rafael J. Wysockic511cc12013-01-27 21:17:29 +01001904 int error = 0;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001905
Rafael J. Wysocki0cd6ac52012-12-21 00:36:49 +01001906 if (ACPI_SUCCESS(acpi_bus_check_add(handle, 0, NULL, &device)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
Rafael J. Wysockie3863092012-12-21 00:36:47 +01001908 acpi_bus_check_add, NULL, NULL, &device);
Rajesh Shah3fb02732005-04-28 00:25:52 -07001909
Thomas Renningerd2f66502010-01-29 17:48:51 +01001910 if (!device)
Rafael J. Wysockic511cc12013-01-27 21:17:29 +01001911 error = -ENODEV;
1912 else if (ACPI_SUCCESS(acpi_bus_device_attach(handle, 0, NULL, NULL)))
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001913 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
Rafael J. Wysocki0fc300b2012-12-21 00:36:41 +01001914 acpi_bus_device_attach, NULL, NULL, NULL);
Thomas Renningerd2f66502010-01-29 17:48:51 +01001915
Rafael J. Wysockic511cc12013-01-27 21:17:29 +01001916 return error;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001917}
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01001918EXPORT_SYMBOL(acpi_bus_scan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
Rafael J. Wysocki05404d82013-01-15 13:24:13 +01001920static acpi_status acpi_bus_device_detach(acpi_handle handle, u32 lvl_not_used,
1921 void *not_used, void **ret_not_used)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922{
Rafael J. Wysocki05404d82013-01-15 13:24:13 +01001923 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924
Rafael J. Wysocki05404d82013-01-15 13:24:13 +01001925 if (!acpi_bus_get_device(handle, &device)) {
Rafael J. Wysockica589f92013-01-30 14:27:29 +01001926 struct acpi_scan_handler *dev_handler = device->handler;
1927
Rafael J. Wysocki05404d82013-01-15 13:24:13 +01001928 device->removal_type = ACPI_BUS_REMOVAL_EJECT;
Rafael J. Wysockica589f92013-01-30 14:27:29 +01001929 if (dev_handler) {
1930 if (dev_handler->detach)
1931 dev_handler->detach(device);
1932
1933 device->handler = NULL;
1934 } else {
1935 device_release_driver(&device->dev);
1936 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 }
Rafael J. Wysocki05404d82013-01-15 13:24:13 +01001938 return AE_OK;
1939}
1940
1941static acpi_status acpi_bus_remove(acpi_handle handle, u32 lvl_not_used,
1942 void *not_used, void **ret_not_used)
1943{
1944 struct acpi_device *device = NULL;
1945
1946 if (!acpi_bus_get_device(handle, &device))
1947 acpi_device_unregister(device);
1948
1949 return AE_OK;
1950}
1951
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01001952/**
1953 * acpi_bus_trim - Remove ACPI device node and all of its descendants
1954 * @start: Root of the ACPI device nodes subtree to remove.
1955 *
1956 * Must be called under acpi_scan_lock.
1957 */
Rafael J. Wysockibfee26d2013-01-26 00:27:44 +01001958void acpi_bus_trim(struct acpi_device *start)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959{
Rafael J. Wysockicecdb192013-01-15 13:24:02 +01001960 /*
Rafael J. Wysocki05404d82013-01-15 13:24:13 +01001961 * Execute acpi_bus_device_detach() as a post-order callback to detach
1962 * all ACPI drivers from the device nodes being removed.
1963 */
1964 acpi_walk_namespace(ACPI_TYPE_ANY, start->handle, ACPI_UINT32_MAX, NULL,
1965 acpi_bus_device_detach, NULL, NULL);
1966 acpi_bus_device_detach(start->handle, 0, NULL, NULL);
1967 /*
Rafael J. Wysockicecdb192013-01-15 13:24:02 +01001968 * Execute acpi_bus_remove() as a post-order callback to remove device
1969 * nodes in the given namespace scope.
1970 */
1971 acpi_walk_namespace(ACPI_TYPE_ANY, start->handle, ACPI_UINT32_MAX, NULL,
1972 acpi_bus_remove, NULL, NULL);
1973 acpi_bus_remove(start->handle, 0, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974}
Kristen Accardiceaba662006-02-23 17:56:01 -08001975EXPORT_SYMBOL_GPL(acpi_bus_trim);
1976
Bjorn Helgaase8b945c2009-09-21 19:28:59 +00001977static int acpi_bus_scan_fixed(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978{
Len Brown4be44fc2005-08-05 00:44:28 -04001979 int result = 0;
Li Shaohuac4168bf2006-12-07 20:56:41 +08001980
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 /*
1982 * Enumerate all fixed-feature devices.
1983 */
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01001984 if (!(acpi_gbl_FADT.flags & ACPI_FADT_POWER_BUTTON)) {
1985 struct acpi_device *device = NULL;
1986
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001987 result = acpi_add_single_object(&device, NULL,
Li Shaohuac4168bf2006-12-07 20:56:41 +08001988 ACPI_BUS_TYPE_POWER_BUTTON,
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01001989 ACPI_STA_DEFAULT);
1990 if (result)
1991 return result;
1992
1993 result = device_attach(&device->dev);
1994 if (result < 0)
1995 return result;
1996
Daniel Drakec10d7a12012-05-10 00:08:43 +01001997 device_init_wakeup(&device->dev, true);
Rajesh Shah3fb02732005-04-28 00:25:52 -07001998 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01002000 if (!(acpi_gbl_FADT.flags & ACPI_FADT_SLEEP_BUTTON)) {
2001 struct acpi_device *device = NULL;
2002
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00002003 result = acpi_add_single_object(&device, NULL,
Li Shaohuac4168bf2006-12-07 20:56:41 +08002004 ACPI_BUS_TYPE_SLEEP_BUTTON,
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01002005 ACPI_STA_DEFAULT);
2006 if (result)
2007 return result;
2008
2009 result = device_attach(&device->dev);
Rajesh Shah3fb02732005-04-28 00:25:52 -07002010 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01002012 return result < 0 ? result : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013}
2014
Bjorn Helgaase747f272009-03-24 16:49:43 -06002015int __init acpi_scan_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016{
2017 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
Patrick Mochel5b327262006-05-10 10:33:00 -04002019 result = bus_register(&acpi_bus_type);
2020 if (result) {
2021 /* We don't want to quit even if we failed to add suspend/resume */
2022 printk(KERN_ERR PREFIX "Could not register bus type\n");
2023 }
2024
Rafael J. Wysocki92ef2a22012-12-21 00:36:40 +01002025 acpi_pci_root_init();
Rafael J. Wysocki4daeaf62013-01-30 14:27:37 +01002026 acpi_pci_link_init();
Rafael J. Wysocki141a2972013-01-30 14:27:40 +01002027 acpi_platform_init();
Mika Westerberg13176bb2013-01-17 09:59:33 +00002028 acpi_csrt_init();
Rafael J. Wysocki737f1a92013-02-08 23:52:39 +01002029 acpi_container_init();
Jiang Liuab1a2e02013-01-19 00:07:42 +08002030 acpi_pci_slot_init();
Rafael J. Wysocki0a347642013-03-03 23:18:03 +01002031 acpi_memory_hotplug_init();
Rafael J. Wysocki97d9a9e2010-11-25 00:10:02 +01002032
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002033 mutex_lock(&acpi_scan_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 * Enumerate devices in the ACPI namespace.
2036 */
Rafael J. Wysocki0cd6ac52012-12-21 00:36:49 +01002037 result = acpi_bus_scan(ACPI_ROOT_OBJECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 if (result)
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002039 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
Rafael J. Wysocki0cd6ac52012-12-21 00:36:49 +01002041 result = acpi_bus_get_device(ACPI_ROOT_OBJECT, &acpi_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 if (result)
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002043 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01002045 result = acpi_bus_scan_fixed();
2046 if (result) {
2047 acpi_device_unregister(acpi_root);
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002048 goto out;
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01002049 }
2050
2051 acpi_update_all_gpes();
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002052
Yinghai Lu668192b2013-01-21 13:20:48 -08002053 acpi_pci_root_hp_init();
2054
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002055 out:
2056 mutex_unlock(&acpi_scan_lock);
2057 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058}