blob: 54529424a0a5f05f2c054691a73f62090537cab8 [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;
Toshi Kani882fd122013-03-13 19:29:26 +0000130 unsigned long long sta;
Rafael J. Wysockif058cdf2013-02-09 15:29:11 +0100131
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100132 /* If there is no handle, the device node has been unregistered. */
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100133 if (!handle) {
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100134 dev_dbg(&device->dev, "ACPI handle missing\n");
135 put_device(&device->dev);
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100136 return -EINVAL;
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100137 }
138
Zhang Rui26d46862008-04-29 02:35:48 -0400139 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Kay Sievers07944692008-10-30 01:18:59 +0100140 "Hot-removing device %s...\n", dev_name(&device->dev)));
Zhang Rui26d46862008-04-29 02:35:48 -0400141
Rafael J. Wysockibfee26d2013-01-26 00:27:44 +0100142 acpi_bus_trim(device);
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100143 /* Device node has been unregistered. */
144 put_device(&device->dev);
Toshi Kanib3c450c2012-10-26 13:38:57 +0200145 device = NULL;
146
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100147 if (ACPI_SUCCESS(acpi_get_handle(handle, "_LCK", &not_used))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 arg_list.count = 1;
149 arg_list.pointer = &arg;
150 arg.type = ACPI_TYPE_INTEGER;
151 arg.integer.value = 0;
152 acpi_evaluate_object(handle, "_LCK", &arg_list, NULL);
153 }
154
155 arg_list.count = 1;
156 arg_list.pointer = &arg;
157 arg.type = ACPI_TYPE_INTEGER;
158 arg.integer.value = 1;
159
160 /*
161 * TBD: _EJD support.
162 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 status = acpi_evaluate_object(handle, "_EJ0", &arg_list, NULL);
Toshi Kanic4753e52012-05-23 20:25:20 -0600164 if (ACPI_FAILURE(status)) {
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100165 if (status == AE_NOT_FOUND) {
166 return -ENODEV;
167 } else {
Toshi Kani882fd122013-03-13 19:29:26 +0000168 acpi_handle_warn(handle, "Eject failed (0x%x)\n",
169 status);
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100170 return -EIO;
171 }
172 }
Rafael J. Wysockif058cdf2013-02-09 15:29:11 +0100173
Toshi Kani882fd122013-03-13 19:29:26 +0000174 /*
175 * Verify if eject was indeed successful. If not, log an error
176 * message. No need to call _OST since _EJ0 call was made OK.
177 */
178 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
179 if (ACPI_FAILURE(status)) {
180 acpi_handle_warn(handle,
181 "Status check after eject failed (0x%x)\n", status);
182 } else if (sta & ACPI_STA_DEVICE_ENABLED) {
183 acpi_handle_warn(handle,
184 "Eject incomplete - status 0x%llx\n", sta);
185 }
186
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100187 return 0;
188}
Rafael J. Wysockif058cdf2013-02-09 15:29:11 +0100189
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100190static void acpi_bus_device_eject(void *context)
191{
192 acpi_handle handle = context;
193 struct acpi_device *device = NULL;
194 struct acpi_scan_handler *handler;
195 u32 ost_code = ACPI_OST_SC_NON_SPECIFIC_FAILURE;
196
197 mutex_lock(&acpi_scan_lock);
198
199 acpi_bus_get_device(handle, &device);
200 if (!device)
201 goto err_out;
202
203 handler = device->handler;
204 if (!handler || !handler->hotplug.enabled) {
205 ost_code = ACPI_OST_SC_EJECT_NOT_SUPPORTED;
206 goto err_out;
207 }
208 acpi_evaluate_hotplug_ost(handle, ACPI_NOTIFY_EJECT_REQUEST,
209 ACPI_OST_SC_EJECT_IN_PROGRESS, NULL);
210 if (handler->hotplug.mode == AHM_CONTAINER) {
211 device->flags.eject_pending = true;
212 kobject_uevent(&device->dev.kobj, KOBJ_OFFLINE);
213 } else {
214 int error;
215
216 get_device(&device->dev);
217 error = acpi_scan_hot_remove(device);
218 if (error)
219 goto err_out;
Toshi Kanic4753e52012-05-23 20:25:20 -0600220 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100222 out:
Rafael J. Wysockif058cdf2013-02-09 15:29:11 +0100223 mutex_unlock(&acpi_scan_lock);
Zhang Ruic8d72a52009-06-22 11:31:16 +0800224 return;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100225
226 err_out:
227 acpi_evaluate_hotplug_ost(handle, ACPI_NOTIFY_EJECT_REQUEST, ost_code,
228 NULL);
229 goto out;
230}
231
232static void acpi_scan_bus_device_check(acpi_handle handle, u32 ost_source)
233{
234 struct acpi_device *device = NULL;
235 u32 ost_code = ACPI_OST_SC_NON_SPECIFIC_FAILURE;
236 int error;
237
238 mutex_lock(&acpi_scan_lock);
239
240 acpi_bus_get_device(handle, &device);
241 if (device) {
242 dev_warn(&device->dev, "Attempt to re-insert\n");
243 goto out;
244 }
245 acpi_evaluate_hotplug_ost(handle, ost_source,
246 ACPI_OST_SC_INSERT_IN_PROGRESS, NULL);
247 error = acpi_bus_scan(handle);
248 if (error) {
249 acpi_handle_warn(handle, "Namespace scan failure\n");
250 goto out;
251 }
252 error = acpi_bus_get_device(handle, &device);
253 if (error) {
254 acpi_handle_warn(handle, "Missing device node object\n");
255 goto out;
256 }
257 ost_code = ACPI_OST_SC_SUCCESS;
258 if (device->handler && device->handler->hotplug.mode == AHM_CONTAINER)
259 kobject_uevent(&device->dev.kobj, KOBJ_ONLINE);
260
261 out:
262 acpi_evaluate_hotplug_ost(handle, ost_source, ost_code, NULL);
263 mutex_unlock(&acpi_scan_lock);
264}
265
266static void acpi_scan_bus_check(void *context)
267{
268 acpi_scan_bus_device_check((acpi_handle)context,
269 ACPI_NOTIFY_BUS_CHECK);
270}
271
272static void acpi_scan_device_check(void *context)
273{
274 acpi_scan_bus_device_check((acpi_handle)context,
275 ACPI_NOTIFY_DEVICE_CHECK);
276}
277
Toshi Kani2cbb14f2013-03-05 22:33:31 +0000278static void acpi_hotplug_unsupported(acpi_handle handle, u32 type)
279{
280 u32 ost_status;
281
282 switch (type) {
283 case ACPI_NOTIFY_BUS_CHECK:
284 acpi_handle_debug(handle,
285 "ACPI_NOTIFY_BUS_CHECK event: unsupported\n");
286 ost_status = ACPI_OST_SC_INSERT_NOT_SUPPORTED;
287 break;
288 case ACPI_NOTIFY_DEVICE_CHECK:
289 acpi_handle_debug(handle,
290 "ACPI_NOTIFY_DEVICE_CHECK event: unsupported\n");
291 ost_status = ACPI_OST_SC_INSERT_NOT_SUPPORTED;
292 break;
293 case ACPI_NOTIFY_EJECT_REQUEST:
294 acpi_handle_debug(handle,
295 "ACPI_NOTIFY_EJECT_REQUEST event: unsupported\n");
296 ost_status = ACPI_OST_SC_EJECT_NOT_SUPPORTED;
297 break;
298 default:
299 /* non-hotplug event; possibly handled by other handler */
300 return;
301 }
302
303 acpi_evaluate_hotplug_ost(handle, type, ost_status, NULL);
304}
305
306static void acpi_hotplug_notify_cb(acpi_handle handle, u32 type, void *data)
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100307{
308 acpi_osd_exec_callback callback;
Toshi Kani2cbb14f2013-03-05 22:33:31 +0000309 struct acpi_scan_handler *handler = data;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100310 acpi_status status;
311
Toshi Kani2cbb14f2013-03-05 22:33:31 +0000312 if (!handler->hotplug.enabled)
313 return acpi_hotplug_unsupported(handle, type);
314
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100315 switch (type) {
316 case ACPI_NOTIFY_BUS_CHECK:
317 acpi_handle_debug(handle, "ACPI_NOTIFY_BUS_CHECK event\n");
318 callback = acpi_scan_bus_check;
319 break;
320 case ACPI_NOTIFY_DEVICE_CHECK:
321 acpi_handle_debug(handle, "ACPI_NOTIFY_DEVICE_CHECK event\n");
322 callback = acpi_scan_device_check;
323 break;
324 case ACPI_NOTIFY_EJECT_REQUEST:
325 acpi_handle_debug(handle, "ACPI_NOTIFY_EJECT_REQUEST event\n");
326 callback = acpi_bus_device_eject;
327 break;
328 default:
329 /* non-hotplug event; possibly handled by other handler */
330 return;
331 }
332 status = acpi_os_hotplug_execute(callback, handle);
333 if (ACPI_FAILURE(status))
334 acpi_evaluate_hotplug_ost(handle, type,
335 ACPI_OST_SC_NON_SPECIFIC_FAILURE,
336 NULL);
337}
338
339/**
340 * acpi_bus_hot_remove_device: hot-remove a device and its children
341 * @context: struct acpi_eject_event pointer (freed in this func)
342 *
343 * Hot-remove a device and its children. This function frees up the
344 * memory space passed by arg context, so that the caller may call
345 * this function asynchronously through acpi_os_hotplug_execute().
346 */
347void acpi_bus_hot_remove_device(void *context)
348{
349 struct acpi_eject_event *ej_event = context;
350 struct acpi_device *device = ej_event->device;
351 acpi_handle handle = device->handle;
352 int error;
353
354 mutex_lock(&acpi_scan_lock);
355
356 error = acpi_scan_hot_remove(device);
357 if (error && handle)
358 acpi_evaluate_hotplug_ost(handle, ej_event->event,
359 ACPI_OST_SC_NON_SPECIFIC_FAILURE,
360 NULL);
361
362 mutex_unlock(&acpi_scan_lock);
363 kfree(context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364}
Toshi Kani61622ac2012-11-01 14:42:12 +0000365EXPORT_SYMBOL(acpi_bus_hot_remove_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Rafael J. Wysocki836aedb2013-01-24 12:49:59 +0100367static ssize_t real_power_state_show(struct device *dev,
368 struct device_attribute *attr, char *buf)
369{
370 struct acpi_device *adev = to_acpi_device(dev);
371 int state;
372 int ret;
373
374 ret = acpi_device_get_power(adev, &state);
375 if (ret)
376 return ret;
377
378 return sprintf(buf, "%s\n", acpi_power_state_string(state));
379}
380
381static DEVICE_ATTR(real_power_state, 0444, real_power_state_show, NULL);
382
383static ssize_t power_state_show(struct device *dev,
384 struct device_attribute *attr, char *buf)
385{
386 struct acpi_device *adev = to_acpi_device(dev);
387
388 return sprintf(buf, "%s\n", acpi_power_state_string(adev->power.state));
389}
390
391static DEVICE_ATTR(power_state, 0444, power_state_show, NULL);
392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393static ssize_t
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800394acpi_eject_store(struct device *d, struct device_attribute *attr,
395 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800397 struct acpi_device *acpi_device = to_acpi_device(d);
Toshi Kanic4753e52012-05-23 20:25:20 -0600398 struct acpi_eject_event *ej_event;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100399 acpi_object_type not_used;
400 acpi_status status;
401 u32 ost_source;
402 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100404 if (!count || buf[0] != '1')
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100407 if ((!acpi_device->handler || !acpi_device->handler->hotplug.enabled)
408 && !acpi_device->driver)
409 return -ENODEV;
410
411 status = acpi_get_type(acpi_device->handle, &not_used);
412 if (ACPI_FAILURE(status) || !acpi_device->flags.ejectable)
413 return -ENODEV;
414
415 mutex_lock(&acpi_scan_lock);
416
417 if (acpi_device->flags.eject_pending) {
418 /* ACPI eject notification event. */
419 ost_source = ACPI_NOTIFY_EJECT_REQUEST;
420 acpi_device->flags.eject_pending = 0;
421 } else {
422 /* Eject initiated by user space. */
423 ost_source = ACPI_OST_EC_OSPM_EJECT;
424 }
Toshi Kanic4753e52012-05-23 20:25:20 -0600425 ej_event = kmalloc(sizeof(*ej_event), GFP_KERNEL);
426 if (!ej_event) {
427 ret = -ENOMEM;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100428 goto err_out;
Toshi Kanic4753e52012-05-23 20:25:20 -0600429 }
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100430 acpi_evaluate_hotplug_ost(acpi_device->handle, ost_source,
431 ACPI_OST_SC_EJECT_IN_PROGRESS, NULL);
Yinghai Lu5993c462013-01-11 22:40:41 +0000432 ej_event->device = acpi_device;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100433 ej_event->event = ost_source;
434 get_device(&acpi_device->dev);
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100435 status = acpi_os_hotplug_execute(acpi_bus_hot_remove_device, ej_event);
436 if (ACPI_FAILURE(status)) {
437 put_device(&acpi_device->dev);
438 kfree(ej_event);
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100439 ret = status == AE_NO_MEMORY ? -ENOMEM : -EAGAIN;
440 goto err_out;
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100441 }
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100442 ret = count;
443
444 out:
445 mutex_unlock(&acpi_scan_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 return ret;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100447
448 err_out:
449 acpi_evaluate_hotplug_ost(acpi_device->handle, ost_source,
450 ACPI_OST_SC_NON_SPECIFIC_FAILURE, NULL);
451 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452}
453
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800454static DEVICE_ATTR(eject, 0200, NULL, acpi_eject_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800456static ssize_t
457acpi_device_hid_show(struct device *dev, struct device_attribute *attr, char *buf) {
458 struct acpi_device *acpi_dev = to_acpi_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Bjorn Helgaasea8d82f2009-09-21 13:35:09 -0600460 return sprintf(buf, "%s\n", acpi_device_hid(acpi_dev));
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800461}
462static DEVICE_ATTR(hid, 0444, acpi_device_hid_show, NULL);
463
Lv Zheng923d4a42012-10-30 14:43:26 +0100464static ssize_t acpi_device_uid_show(struct device *dev,
465 struct device_attribute *attr, char *buf)
466{
467 struct acpi_device *acpi_dev = to_acpi_device(dev);
468
469 return sprintf(buf, "%s\n", acpi_dev->pnp.unique_id);
470}
471static DEVICE_ATTR(uid, 0444, acpi_device_uid_show, NULL);
472
473static ssize_t acpi_device_adr_show(struct device *dev,
474 struct device_attribute *attr, char *buf)
475{
476 struct acpi_device *acpi_dev = to_acpi_device(dev);
477
478 return sprintf(buf, "0x%08x\n",
479 (unsigned int)(acpi_dev->pnp.bus_address));
480}
481static DEVICE_ATTR(adr, 0444, acpi_device_adr_show, NULL);
482
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800483static ssize_t
484acpi_device_path_show(struct device *dev, struct device_attribute *attr, char *buf) {
485 struct acpi_device *acpi_dev = to_acpi_device(dev);
486 struct acpi_buffer path = {ACPI_ALLOCATE_BUFFER, NULL};
487 int result;
488
489 result = acpi_get_name(acpi_dev->handle, ACPI_FULL_PATHNAME, &path);
Alex Chiang0c526d92009-05-14 08:31:37 -0600490 if (result)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800491 goto end;
492
493 result = sprintf(buf, "%s\n", (char*)path.pointer);
494 kfree(path.pointer);
Alex Chiang0c526d92009-05-14 08:31:37 -0600495end:
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800496 return result;
497}
498static DEVICE_ATTR(path, 0444, acpi_device_path_show, NULL);
499
Lance Ortizd1efe3c2012-10-02 12:43:23 -0600500/* sysfs file that shows description text from the ACPI _STR method */
501static ssize_t description_show(struct device *dev,
502 struct device_attribute *attr,
503 char *buf) {
504 struct acpi_device *acpi_dev = to_acpi_device(dev);
505 int result;
506
507 if (acpi_dev->pnp.str_obj == NULL)
508 return 0;
509
510 /*
511 * The _STR object contains a Unicode identifier for a device.
512 * We need to convert to utf-8 so it can be displayed.
513 */
514 result = utf16s_to_utf8s(
515 (wchar_t *)acpi_dev->pnp.str_obj->buffer.pointer,
516 acpi_dev->pnp.str_obj->buffer.length,
517 UTF16_LITTLE_ENDIAN, buf,
518 PAGE_SIZE);
519
520 buf[result++] = '\n';
521
522 return result;
523}
524static DEVICE_ATTR(description, 0444, description_show, NULL);
525
Yasuaki Ishimatsubb74ac22012-11-16 02:56:59 +0100526static ssize_t
527acpi_device_sun_show(struct device *dev, struct device_attribute *attr,
528 char *buf) {
529 struct acpi_device *acpi_dev = to_acpi_device(dev);
530
531 return sprintf(buf, "%lu\n", acpi_dev->pnp.sun);
532}
533static DEVICE_ATTR(sun, 0444, acpi_device_sun_show, NULL);
534
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800535static int acpi_device_setup_files(struct acpi_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
Lance Ortizd1efe3c2012-10-02 12:43:23 -0600537 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800538 acpi_status status;
539 acpi_handle temp;
Yasuaki Ishimatsubb74ac22012-11-16 02:56:59 +0100540 unsigned long long sun;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800541 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800543 /*
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800544 * Devices gotten from FADT don't have a "path" attribute
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800545 */
Alex Chiang0c526d92009-05-14 08:31:37 -0600546 if (dev->handle) {
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800547 result = device_create_file(&dev->dev, &dev_attr_path);
Alex Chiang0c526d92009-05-14 08:31:37 -0600548 if (result)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800549 goto end;
550 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +0200552 if (!list_empty(&dev->pnp.ids)) {
553 result = device_create_file(&dev->dev, &dev_attr_hid);
554 if (result)
555 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +0200557 result = device_create_file(&dev->dev, &dev_attr_modalias);
558 if (result)
559 goto end;
560 }
Thomas Renninger29b71a12007-07-23 14:43:51 +0200561
Lance Ortizd1efe3c2012-10-02 12:43:23 -0600562 /*
563 * If device has _STR, 'description' file is created
564 */
565 status = acpi_get_handle(dev->handle, "_STR", &temp);
566 if (ACPI_SUCCESS(status)) {
567 status = acpi_evaluate_object(dev->handle, "_STR",
568 NULL, &buffer);
569 if (ACPI_FAILURE(status))
570 buffer.pointer = NULL;
571 dev->pnp.str_obj = buffer.pointer;
572 result = device_create_file(&dev->dev, &dev_attr_description);
573 if (result)
574 goto end;
575 }
576
Toshi Kanid4e1a692013-03-04 21:30:41 +0000577 if (dev->pnp.type.bus_address)
Lv Zheng923d4a42012-10-30 14:43:26 +0100578 result = device_create_file(&dev->dev, &dev_attr_adr);
579 if (dev->pnp.unique_id)
580 result = device_create_file(&dev->dev, &dev_attr_uid);
581
Yasuaki Ishimatsubb74ac22012-11-16 02:56:59 +0100582 status = acpi_evaluate_integer(dev->handle, "_SUN", NULL, &sun);
583 if (ACPI_SUCCESS(status)) {
584 dev->pnp.sun = (unsigned long)sun;
585 result = device_create_file(&dev->dev, &dev_attr_sun);
586 if (result)
587 goto end;
588 } else {
589 dev->pnp.sun = (unsigned long)-1;
590 }
591
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800592 /*
593 * If device has _EJ0, 'eject' file is created that is used to trigger
594 * hot-removal function from userland.
595 */
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800596 status = acpi_get_handle(dev->handle, "_EJ0", &temp);
Rafael J. Wysocki836aedb2013-01-24 12:49:59 +0100597 if (ACPI_SUCCESS(status)) {
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800598 result = device_create_file(&dev->dev, &dev_attr_eject);
Rafael J. Wysocki836aedb2013-01-24 12:49:59 +0100599 if (result)
600 return result;
601 }
602
603 if (dev->flags.power_manageable) {
604 result = device_create_file(&dev->dev, &dev_attr_power_state);
605 if (result)
606 return result;
607
608 if (dev->power.flags.power_resources)
609 result = device_create_file(&dev->dev,
610 &dev_attr_real_power_state);
611 }
612
Alex Chiang0c526d92009-05-14 08:31:37 -0600613end:
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800614 return result;
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800615}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800617static void acpi_device_remove_files(struct acpi_device *dev)
618{
619 acpi_status status;
620 acpi_handle temp;
621
Rafael J. Wysocki836aedb2013-01-24 12:49:59 +0100622 if (dev->flags.power_manageable) {
623 device_remove_file(&dev->dev, &dev_attr_power_state);
624 if (dev->power.flags.power_resources)
625 device_remove_file(&dev->dev,
626 &dev_attr_real_power_state);
627 }
628
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800629 /*
Lance Ortizd1efe3c2012-10-02 12:43:23 -0600630 * If device has _STR, remove 'description' file
631 */
632 status = acpi_get_handle(dev->handle, "_STR", &temp);
633 if (ACPI_SUCCESS(status)) {
634 kfree(dev->pnp.str_obj);
635 device_remove_file(&dev->dev, &dev_attr_description);
636 }
637 /*
638 * If device has _EJ0, remove 'eject' file.
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800639 */
640 status = acpi_get_handle(dev->handle, "_EJ0", &temp);
641 if (ACPI_SUCCESS(status))
642 device_remove_file(&dev->dev, &dev_attr_eject);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800643
Yasuaki Ishimatsubb74ac22012-11-16 02:56:59 +0100644 status = acpi_get_handle(dev->handle, "_SUN", &temp);
645 if (ACPI_SUCCESS(status))
646 device_remove_file(&dev->dev, &dev_attr_sun);
647
Lv Zheng923d4a42012-10-30 14:43:26 +0100648 if (dev->pnp.unique_id)
649 device_remove_file(&dev->dev, &dev_attr_uid);
Toshi Kanid4e1a692013-03-04 21:30:41 +0000650 if (dev->pnp.type.bus_address)
Lv Zheng923d4a42012-10-30 14:43:26 +0100651 device_remove_file(&dev->dev, &dev_attr_adr);
Bjorn Helgaas1131b932009-09-21 13:35:29 -0600652 device_remove_file(&dev->dev, &dev_attr_modalias);
653 device_remove_file(&dev->dev, &dev_attr_hid);
Alex Chiang0c526d92009-05-14 08:31:37 -0600654 if (dev->handle)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800655 device_remove_file(&dev->dev, &dev_attr_path);
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800656}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657/* --------------------------------------------------------------------------
Zhang Rui9e89dde2006-12-07 20:56:16 +0800658 ACPI Bus operations
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 -------------------------------------------------------------------------- */
Thomas Renninger29b71a12007-07-23 14:43:51 +0200660
Mika Westerbergcf761af2012-10-31 22:44:41 +0100661static const struct acpi_device_id *__acpi_match_device(
662 struct acpi_device *device, const struct acpi_device_id *ids)
Thomas Renninger29b71a12007-07-23 14:43:51 +0200663{
664 const struct acpi_device_id *id;
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -0600665 struct acpi_hardware_id *hwid;
Thomas Renninger29b71a12007-07-23 14:43:51 +0200666
Zhao Yakui39a0ad82008-08-11 13:40:22 +0800667 /*
668 * If the device is not present, it is unnecessary to load device
669 * driver for it.
670 */
671 if (!device->status.present)
Mika Westerbergcf761af2012-10-31 22:44:41 +0100672 return NULL;
Zhao Yakui39a0ad82008-08-11 13:40:22 +0800673
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -0600674 for (id = ids; id->id[0]; id++)
675 list_for_each_entry(hwid, &device->pnp.ids, list)
676 if (!strcmp((char *) id->id, hwid->id))
Mika Westerbergcf761af2012-10-31 22:44:41 +0100677 return id;
Thomas Renninger29b71a12007-07-23 14:43:51 +0200678
Mika Westerbergcf761af2012-10-31 22:44:41 +0100679 return NULL;
680}
681
682/**
683 * acpi_match_device - Match a struct device against a given list of ACPI IDs
684 * @ids: Array of struct acpi_device_id object to match against.
685 * @dev: The device structure to match.
686 *
687 * Check if @dev has a valid ACPI handle and if there is a struct acpi_device
688 * object for that handle and use that object to match against a given list of
689 * device IDs.
690 *
691 * Return a pointer to the first matching ID on success or %NULL on failure.
692 */
693const struct acpi_device_id *acpi_match_device(const struct acpi_device_id *ids,
694 const struct device *dev)
695{
696 struct acpi_device *adev;
Rafael J. Wysocki0613e1f2013-01-31 20:54:05 +0100697 acpi_handle handle = ACPI_HANDLE(dev);
Mika Westerbergcf761af2012-10-31 22:44:41 +0100698
Rafael J. Wysocki0613e1f2013-01-31 20:54:05 +0100699 if (!ids || !handle || acpi_bus_get_device(handle, &adev))
Mika Westerbergcf761af2012-10-31 22:44:41 +0100700 return NULL;
701
702 return __acpi_match_device(adev, ids);
703}
704EXPORT_SYMBOL_GPL(acpi_match_device);
705
706int acpi_match_device_ids(struct acpi_device *device,
707 const struct acpi_device_id *ids)
708{
709 return __acpi_match_device(device, ids) ? 0 : -ENOENT;
Thomas Renninger29b71a12007-07-23 14:43:51 +0200710}
711EXPORT_SYMBOL(acpi_match_device_ids);
712
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100713static void acpi_free_power_resources_lists(struct acpi_device *device)
714{
715 int i;
716
Rafael J. Wysocki993cbe52013-01-17 14:11:06 +0100717 if (device->wakeup.flags.valid)
718 acpi_power_resources_list_free(&device->wakeup.resources);
719
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100720 if (!device->flags.power_manageable)
721 return;
722
723 for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3_HOT; i++) {
724 struct acpi_device_power_state *ps = &device->power.states[i];
725 acpi_power_resources_list_free(&ps->resources);
726 }
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -0600727}
728
Patrick Mochel1890a972006-12-07 20:56:31 +0800729static void acpi_device_release(struct device *dev)
730{
731 struct acpi_device *acpi_dev = to_acpi_device(dev);
732
Toshi Kanic0af4172013-03-04 21:30:42 +0000733 acpi_free_pnp_ids(&acpi_dev->pnp);
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100734 acpi_free_power_resources_lists(acpi_dev);
Patrick Mochel1890a972006-12-07 20:56:31 +0800735 kfree(acpi_dev);
736}
737
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800738static int acpi_bus_match(struct device *dev, struct device_driver *drv)
739{
740 struct acpi_device *acpi_dev = to_acpi_device(dev);
741 struct acpi_driver *acpi_drv = to_acpi_driver(drv);
742
Rafael J. Wysocki209d3b12012-12-21 00:36:48 +0100743 return acpi_dev->flags.match_driver
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +0100744 && !acpi_match_device_ids(acpi_dev, acpi_drv->ids);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800745}
746
Kay Sievers7eff2e72007-08-14 15:15:12 +0200747static int acpi_device_uevent(struct device *dev, struct kobj_uevent_env *env)
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800748{
749 struct acpi_device *acpi_dev = to_acpi_device(dev);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200750 int len;
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800751
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +0200752 if (list_empty(&acpi_dev->pnp.ids))
753 return 0;
754
Kay Sievers7eff2e72007-08-14 15:15:12 +0200755 if (add_uevent_var(env, "MODALIAS="))
756 return -ENOMEM;
757 len = create_modalias(acpi_dev, &env->buf[env->buflen - 1],
758 sizeof(env->buf) - env->buflen);
759 if (len >= (sizeof(env->buf) - env->buflen))
760 return -ENOMEM;
761 env->buflen += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 return 0;
763}
764
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000765static void acpi_device_notify(acpi_handle handle, u32 event, void *data)
766{
767 struct acpi_device *device = data;
768
769 device->driver->ops.notify(device, event);
770}
771
772static acpi_status acpi_device_notify_fixed(void *data)
773{
774 struct acpi_device *device = data;
775
Bjorn Helgaas53de5352009-08-31 22:32:20 +0000776 /* Fixed hardware devices have no handles */
777 acpi_device_notify(NULL, ACPI_FIXED_HARDWARE_EVENT, device);
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000778 return AE_OK;
779}
780
781static int acpi_device_install_notify_handler(struct acpi_device *device)
782{
783 acpi_status status;
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000784
Bjorn Helgaasccba2a32009-09-21 19:29:15 +0000785 if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000786 status =
787 acpi_install_fixed_event_handler(ACPI_EVENT_POWER_BUTTON,
788 acpi_device_notify_fixed,
789 device);
Bjorn Helgaasccba2a32009-09-21 19:29:15 +0000790 else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000791 status =
792 acpi_install_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON,
793 acpi_device_notify_fixed,
794 device);
795 else
796 status = acpi_install_notify_handler(device->handle,
797 ACPI_DEVICE_NOTIFY,
798 acpi_device_notify,
799 device);
800
801 if (ACPI_FAILURE(status))
802 return -EINVAL;
803 return 0;
804}
805
806static void acpi_device_remove_notify_handler(struct acpi_device *device)
807{
Bjorn Helgaasccba2a32009-09-21 19:29:15 +0000808 if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000809 acpi_remove_fixed_event_handler(ACPI_EVENT_POWER_BUTTON,
810 acpi_device_notify_fixed);
Bjorn Helgaasccba2a32009-09-21 19:29:15 +0000811 else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000812 acpi_remove_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON,
813 acpi_device_notify_fixed);
814 else
815 acpi_remove_notify_handler(device->handle, ACPI_DEVICE_NOTIFY,
816 acpi_device_notify);
817}
818
Rafael J. Wysockid9e455f2013-06-10 13:00:50 +0200819static int acpi_device_probe(struct device *dev)
Zhang Rui9e89dde2006-12-07 20:56:16 +0800820{
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800821 struct acpi_device *acpi_dev = to_acpi_device(dev);
822 struct acpi_driver *acpi_drv = to_acpi_driver(dev->driver);
823 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
Rafael J. Wysocki24071f42013-06-16 00:36:41 +0200825 if (acpi_dev->handler)
826 return -EINVAL;
827
Rafael J. Wysockid9e455f2013-06-10 13:00:50 +0200828 if (!acpi_drv->ops.add)
829 return -ENOSYS;
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000830
Rafael J. Wysockid9e455f2013-06-10 13:00:50 +0200831 ret = acpi_drv->ops.add(acpi_dev);
832 if (ret)
833 return ret;
834
835 acpi_dev->driver = acpi_drv;
836 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
837 "Driver [%s] successfully bound to device [%s]\n",
838 acpi_drv->name, acpi_dev->pnp.bus_id));
839
840 if (acpi_drv->ops.notify) {
841 ret = acpi_device_install_notify_handler(acpi_dev);
842 if (ret) {
843 if (acpi_drv->ops.remove)
844 acpi_drv->ops.remove(acpi_dev);
845
846 acpi_dev->driver = NULL;
847 acpi_dev->driver_data = NULL;
848 return ret;
849 }
Zhang Rui9e89dde2006-12-07 20:56:16 +0800850 }
Rafael J. Wysockid9e455f2013-06-10 13:00:50 +0200851
852 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found driver [%s] for device [%s]\n",
853 acpi_drv->name, acpi_dev->pnp.bus_id));
854 get_device(dev);
855 return 0;
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800856}
857
858static int acpi_device_remove(struct device * dev)
859{
860 struct acpi_device *acpi_dev = to_acpi_device(dev);
861 struct acpi_driver *acpi_drv = acpi_dev->driver;
862
863 if (acpi_drv) {
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000864 if (acpi_drv->ops.notify)
865 acpi_device_remove_notify_handler(acpi_dev);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800866 if (acpi_drv->ops.remove)
Rafael J. Wysocki51fac832013-01-24 00:24:48 +0100867 acpi_drv->ops.remove(acpi_dev);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800868 }
869 acpi_dev->driver = NULL;
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700870 acpi_dev->driver_data = NULL;
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800871
872 put_device(dev);
Zhang Rui9e89dde2006-12-07 20:56:16 +0800873 return 0;
874}
875
David Brownell55955aa2007-05-08 00:28:35 -0700876struct bus_type acpi_bus_type = {
Zhang Rui9e89dde2006-12-07 20:56:16 +0800877 .name = "acpi",
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800878 .match = acpi_bus_match,
879 .probe = acpi_device_probe,
880 .remove = acpi_device_remove,
881 .uevent = acpi_device_uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882};
883
Rafael J. Wysockicf860be2013-01-24 12:49:49 +0100884int acpi_device_add(struct acpi_device *device,
885 void (*release)(struct device *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886{
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800887 int result;
888 struct acpi_device_bus_id *acpi_device_bus_id, *new_bus_id;
889 int found = 0;
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +0000890
Rafael J. Wysockid43e1672013-01-17 14:11:05 +0100891 if (device->handle) {
892 acpi_status status;
893
894 status = acpi_attach_data(device->handle, acpi_bus_data_handler,
895 device);
896 if (ACPI_FAILURE(status)) {
897 acpi_handle_err(device->handle,
898 "Unable to attach device data\n");
899 return -ENODEV;
900 }
901 }
902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 /*
904 * Linkage
905 * -------
906 * Link this device to its parent and siblings.
907 */
908 INIT_LIST_HEAD(&device->children);
909 INIT_LIST_HEAD(&device->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 INIT_LIST_HEAD(&device->wakeup_list);
Lan Tianyu1033f902012-08-17 14:44:09 +0800911 INIT_LIST_HEAD(&device->physical_node_list);
912 mutex_init(&device->physical_node_lock);
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100913 INIT_LIST_HEAD(&device->power_dependent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800915 new_bus_id = kzalloc(sizeof(struct acpi_device_bus_id), GFP_KERNEL);
916 if (!new_bus_id) {
Rafael J. Wysockid43e1672013-01-17 14:11:05 +0100917 pr_err(PREFIX "Memory allocation error\n");
918 result = -ENOMEM;
919 goto err_detach;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800920 }
921
Shaohua Li90905892009-04-07 10:24:29 +0800922 mutex_lock(&acpi_device_lock);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800923 /*
924 * Find suitable bus_id and instance number in acpi_bus_id_list
925 * If failed, create one and link it into acpi_bus_id_list
926 */
927 list_for_each_entry(acpi_device_bus_id, &acpi_bus_id_list, node) {
Bjorn Helgaas1131b932009-09-21 13:35:29 -0600928 if (!strcmp(acpi_device_bus_id->bus_id,
929 acpi_device_hid(device))) {
930 acpi_device_bus_id->instance_no++;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800931 found = 1;
932 kfree(new_bus_id);
933 break;
934 }
935 }
Alex Chiang0c526d92009-05-14 08:31:37 -0600936 if (!found) {
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800937 acpi_device_bus_id = new_bus_id;
Bjorn Helgaas1131b932009-09-21 13:35:29 -0600938 strcpy(acpi_device_bus_id->bus_id, acpi_device_hid(device));
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800939 acpi_device_bus_id->instance_no = 0;
940 list_add_tail(&acpi_device_bus_id->node, &acpi_bus_id_list);
941 }
Kay Sievers07944692008-10-30 01:18:59 +0100942 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 +0800943
Len Brown33b57152008-12-15 22:09:26 -0500944 if (device->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 list_add_tail(&device->node, &device->parent->children);
Len Brown33b57152008-12-15 22:09:26 -0500946
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 if (device->wakeup.flags.valid)
948 list_add_tail(&device->wakeup_list, &acpi_wakeup_device_list);
Shaohua Li90905892009-04-07 10:24:29 +0800949 mutex_unlock(&acpi_device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
Patrick Mochel1890a972006-12-07 20:56:31 +0800951 if (device->parent)
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +0000952 device->dev.parent = &device->parent->dev;
Patrick Mochel1890a972006-12-07 20:56:31 +0800953 device->dev.bus = &acpi_bus_type;
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100954 device->dev.release = release;
Rafael J. Wysockicf860be2013-01-24 12:49:49 +0100955 result = device_add(&device->dev);
Alex Chiang0c526d92009-05-14 08:31:37 -0600956 if (result) {
Alex Chiang8b12b922009-05-14 08:31:32 -0600957 dev_err(&device->dev, "Error registering device\n");
Rafael J. Wysockid43e1672013-01-17 14:11:05 +0100958 goto err;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800959 }
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800960
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800961 result = acpi_device_setup_files(device);
Alex Chiang0c526d92009-05-14 08:31:37 -0600962 if (result)
Kay Sievers07944692008-10-30 01:18:59 +0100963 printk(KERN_ERR PREFIX "Error creating sysfs interface for device %s\n",
964 dev_name(&device->dev));
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800965
Li Shaohua96333572006-12-07 20:56:46 +0800966 device->removal_type = ACPI_BUS_REMOVAL_NORMAL;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800967 return 0;
Rafael J. Wysockid43e1672013-01-17 14:11:05 +0100968
969 err:
Shaohua Li90905892009-04-07 10:24:29 +0800970 mutex_lock(&acpi_device_lock);
Len Brown33b57152008-12-15 22:09:26 -0500971 if (device->parent)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800972 list_del(&device->node);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800973 list_del(&device->wakeup_list);
Shaohua Li90905892009-04-07 10:24:29 +0800974 mutex_unlock(&acpi_device_lock);
Rafael J. Wysockid43e1672013-01-17 14:11:05 +0100975
976 err_detach:
977 acpi_detach_data(device->handle, acpi_bus_data_handler);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800978 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979}
980
Rafael J. Wysockib17b5372013-01-15 13:23:44 +0100981static void acpi_device_unregister(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982{
Shaohua Li90905892009-04-07 10:24:29 +0800983 mutex_lock(&acpi_device_lock);
Len Brown33b57152008-12-15 22:09:26 -0500984 if (device->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 list_del(&device->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
987 list_del(&device->wakeup_list);
Shaohua Li90905892009-04-07 10:24:29 +0800988 mutex_unlock(&acpi_device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
990 acpi_detach_data(device->handle, acpi_bus_data_handler);
Patrick Mochel1890a972006-12-07 20:56:31 +0800991
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100992 acpi_power_add_remove_device(device, false);
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800993 acpi_device_remove_files(device);
Rafael J. Wysockib1c0f992013-01-24 12:50:09 +0100994 if (device->remove)
995 device->remove(device);
996
Rafael J. Wysockicf860be2013-01-24 12:49:49 +0100997 device_del(&device->dev);
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +0100998 /*
Rafael J. Wysocki0aa120a2013-02-09 15:29:20 +0100999 * Transition the device to D3cold to drop the reference counts of all
1000 * power resources the device depends on and turn off the ones that have
1001 * no more references.
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +01001002 */
Rafael J. Wysocki0aa120a2013-02-09 15:29:20 +01001003 acpi_device_set_power(device, ACPI_STATE_D3_COLD);
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01001004 device->handle = NULL;
Rafael J. Wysockicf860be2013-01-24 12:49:49 +01001005 put_device(&device->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006}
1007
Zhang Rui9e89dde2006-12-07 20:56:16 +08001008/* --------------------------------------------------------------------------
1009 Driver Management
1010 -------------------------------------------------------------------------- */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011/**
Randy Dunlapd758a8f2006-01-06 01:31:00 -05001012 * acpi_bus_register_driver - register a driver with the ACPI bus
1013 * @driver: driver being registered
1014 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 * Registers a driver with the ACPI bus. Searches the namespace for all
Bjorn Helgaas9d9f7492006-03-28 17:04:00 -05001016 * devices that match the driver's criteria and binds. Returns zero for
1017 * success or a negative error status for failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 */
Len Brown4be44fc2005-08-05 00:44:28 -04001019int acpi_bus_register_driver(struct acpi_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020{
Patrick Mochel1890a972006-12-07 20:56:31 +08001021 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
1023 if (acpi_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -04001024 return -ENODEV;
Patrick Mochel1890a972006-12-07 20:56:31 +08001025 driver->drv.name = driver->name;
1026 driver->drv.bus = &acpi_bus_type;
1027 driver->drv.owner = driver->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
Patrick Mochel1890a972006-12-07 20:56:31 +08001029 ret = driver_register(&driver->drv);
1030 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
Len Brown4be44fc2005-08-05 00:44:28 -04001033EXPORT_SYMBOL(acpi_bus_register_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
1035/**
Randy Dunlapd758a8f2006-01-06 01:31:00 -05001036 * acpi_bus_unregister_driver - unregisters a driver with the APIC bus
1037 * @driver: driver to unregister
1038 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 * Unregisters a driver with the ACPI bus. Searches the namespace for all
1040 * devices that match the driver's criteria and unbinds.
1041 */
Bjorn Helgaas06ea8e082006-04-27 05:25:00 -04001042void acpi_bus_unregister_driver(struct acpi_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043{
Patrick Mochel1890a972006-12-07 20:56:31 +08001044 driver_unregister(&driver->drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045}
Len Brown4be44fc2005-08-05 00:44:28 -04001046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047EXPORT_SYMBOL(acpi_bus_unregister_driver);
1048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049/* --------------------------------------------------------------------------
1050 Device Enumeration
1051 -------------------------------------------------------------------------- */
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001052static struct acpi_device *acpi_bus_get_parent(acpi_handle handle)
1053{
Rafael J. Wysocki456de892013-01-31 20:57:40 +01001054 struct acpi_device *device = NULL;
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001055 acpi_status status;
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001056
1057 /*
1058 * Fixed hardware devices do not appear in the namespace and do not
1059 * have handles, but we fabricate acpi_devices for them, so we have
1060 * to deal with them specially.
1061 */
Rafael J. Wysocki456de892013-01-31 20:57:40 +01001062 if (!handle)
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001063 return acpi_root;
1064
1065 do {
1066 status = acpi_get_parent(handle, &handle);
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001067 if (ACPI_FAILURE(status))
Rafael J. Wysocki456de892013-01-31 20:57:40 +01001068 return status == AE_NULL_ENTRY ? NULL : acpi_root;
1069 } while (acpi_bus_get_device(handle, &device));
1070 return device;
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001071}
1072
Len Brownc8f7a622006-07-09 17:22:28 -04001073acpi_status
1074acpi_bus_get_ejd(acpi_handle handle, acpi_handle *ejd)
1075{
1076 acpi_status status;
1077 acpi_handle tmp;
1078 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
1079 union acpi_object *obj;
1080
1081 status = acpi_get_handle(handle, "_EJD", &tmp);
1082 if (ACPI_FAILURE(status))
1083 return status;
1084
1085 status = acpi_evaluate_object(handle, "_EJD", NULL, &buffer);
1086 if (ACPI_SUCCESS(status)) {
1087 obj = buffer.pointer;
Holger Macht3b5fee52008-02-14 13:40:34 +01001088 status = acpi_get_handle(ACPI_ROOT_OBJECT, obj->string.pointer,
1089 ejd);
Len Brownc8f7a622006-07-09 17:22:28 -04001090 kfree(buffer.pointer);
1091 }
1092 return status;
1093}
1094EXPORT_SYMBOL_GPL(acpi_bus_get_ejd);
1095
Bob Moore8e4319c2009-06-29 13:43:27 +08001096void acpi_bus_data_handler(acpi_handle handle, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097{
1098
1099 /* TBD */
1100
1101 return;
1102}
1103
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001104static int acpi_bus_extract_wakeup_device_power_package(acpi_handle handle,
1105 struct acpi_device_wakeup *wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106{
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001107 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1108 union acpi_object *package = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 union acpi_object *element = NULL;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001110 acpi_status status;
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001111 int err = -ENODATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001113 if (!wakeup)
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001114 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
Rafael J. Wysocki993cbe52013-01-17 14:11:06 +01001116 INIT_LIST_HEAD(&wakeup->resources);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001118 /* _PRW */
1119 status = acpi_evaluate_object(handle, "_PRW", NULL, &buffer);
1120 if (ACPI_FAILURE(status)) {
1121 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PRW"));
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001122 return err;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001123 }
1124
1125 package = (union acpi_object *)buffer.pointer;
1126
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001127 if (!package || package->package.count < 2)
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001128 goto out;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001129
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 element = &(package->package.elements[0]);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001131 if (!element)
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001132 goto out;
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001133
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 if (element->type == ACPI_TYPE_PACKAGE) {
1135 if ((element->package.count < 2) ||
1136 (element->package.elements[0].type !=
1137 ACPI_TYPE_LOCAL_REFERENCE)
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001138 || (element->package.elements[1].type != ACPI_TYPE_INTEGER))
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001139 goto out;
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001140
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001141 wakeup->gpe_device =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 element->package.elements[0].reference.handle;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001143 wakeup->gpe_number =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 (u32) element->package.elements[1].integer.value;
1145 } else if (element->type == ACPI_TYPE_INTEGER) {
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001146 wakeup->gpe_device = NULL;
1147 wakeup->gpe_number = element->integer.value;
1148 } else {
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001149 goto out;
1150 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
1152 element = &(package->package.elements[1]);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001153 if (element->type != ACPI_TYPE_INTEGER)
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001154 goto out;
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001155
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001156 wakeup->sleep_state = element->integer.value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001158 err = acpi_extract_power_resources(package, 2, &wakeup->resources);
1159 if (err)
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001160 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
Rafael J. Wysocki0596a522013-01-17 14:11:07 +01001162 if (!list_empty(&wakeup->resources)) {
1163 int sleep_state;
1164
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +01001165 err = acpi_power_wakeup_list_init(&wakeup->resources,
1166 &sleep_state);
1167 if (err) {
1168 acpi_handle_warn(handle, "Retrieving current states "
1169 "of wakeup power resources failed\n");
1170 acpi_power_resources_list_free(&wakeup->resources);
1171 goto out;
1172 }
Rafael J. Wysocki0596a522013-01-17 14:11:07 +01001173 if (sleep_state < wakeup->sleep_state) {
1174 acpi_handle_warn(handle, "Overriding _PRW sleep state "
1175 "(S%d) by S%d from power resources\n",
1176 (int)wakeup->sleep_state, sleep_state);
1177 wakeup->sleep_state = sleep_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 }
Lin Mingbba63a22010-12-13 13:39:17 +08001180 acpi_setup_gpe_for_wake(handle, wakeup->gpe_device, wakeup->gpe_number);
Rafael J. Wysocki98746472010-07-08 00:43:36 +02001181
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001182 out:
1183 kfree(buffer.pointer);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001184 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185}
1186
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001187static void acpi_bus_set_run_wake_flags(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188{
Thomas Renninger29b71a12007-07-23 14:43:51 +02001189 struct acpi_device_id button_device_ids[] = {
Thomas Renninger29b71a12007-07-23 14:43:51 +02001190 {"PNP0C0C", 0},
Zhang Ruib7e38302012-12-04 23:23:16 +01001191 {"PNP0C0D", 0},
Thomas Renninger29b71a12007-07-23 14:43:51 +02001192 {"PNP0C0E", 0},
1193 {"", 0},
1194 };
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001195 acpi_status status;
1196 acpi_event_status event_status;
1197
Rafael J. Wysockib67ea762010-02-17 23:44:09 +01001198 device->wakeup.flags.notifier_present = 0;
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001199
1200 /* Power button, Lid switch always enable wakeup */
1201 if (!acpi_match_device_ids(device, button_device_ids)) {
1202 device->wakeup.flags.run_wake = 1;
Zhang Ruib7e38302012-12-04 23:23:16 +01001203 if (!acpi_match_device_ids(device, &button_device_ids[1])) {
1204 /* Do not use Lid/sleep button for S5 wakeup */
1205 if (device->wakeup.sleep_state == ACPI_STATE_S5)
1206 device->wakeup.sleep_state = ACPI_STATE_S4;
1207 }
Rafael J. Wysockif2b56bc2011-01-06 23:34:22 +01001208 device_set_wakeup_capable(&device->dev, true);
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001209 return;
1210 }
1211
Rafael J. Wysockie8e18c92010-07-08 00:42:51 +02001212 status = acpi_get_gpe_status(device->wakeup.gpe_device,
1213 device->wakeup.gpe_number,
1214 &event_status);
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001215 if (status == AE_OK)
1216 device->wakeup.flags.run_wake =
1217 !!(event_status & ACPI_EVENT_FLAG_HANDLE);
1218}
1219
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01001220static void acpi_bus_get_wakeup_device_flags(struct acpi_device *device)
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001221{
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01001222 acpi_handle temp;
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001223 acpi_status status = 0;
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001224 int err;
Thomas Renninger29b71a12007-07-23 14:43:51 +02001225
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01001226 /* Presence of _PRW indicates wake capable */
1227 status = acpi_get_handle(device->handle, "_PRW", &temp);
1228 if (ACPI_FAILURE(status))
1229 return;
1230
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001231 err = acpi_bus_extract_wakeup_device_power_package(device->handle,
1232 &device->wakeup);
1233 if (err) {
1234 dev_err(&device->dev, "_PRW evaluation error: %d\n", err);
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01001235 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 }
1237
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 device->wakeup.flags.valid = 1;
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +02001239 device->wakeup.prepare_count = 0;
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001240 acpi_bus_set_run_wake_flags(device);
Zhao Yakui729b2bd2008-03-19 13:26:54 +08001241 /* Call _PSW/_DSW object to disable its ability to wake the sleeping
1242 * system for the ACPI device with the _PRW object.
1243 * The _PSW object is depreciated in ACPI 3.0 and is replaced by _DSW.
1244 * So it is necessary to call _DSW object first. Only when it is not
1245 * present will the _PSW object used.
1246 */
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001247 err = acpi_device_sleep_wake(device, 0, 0, 0);
1248 if (err)
Rafael J. Wysocki77e76602008-07-07 03:33:34 +02001249 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1250 "error in _DSW or _PSW evaluation\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251}
1252
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001253static void acpi_bus_init_power_state(struct acpi_device *device, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254{
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001255 struct acpi_device_power_state *ps = &device->power.states[state];
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001256 char pathname[5] = { '_', 'P', 'R', '0' + state, '\0' };
1257 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001258 acpi_handle handle;
1259 acpi_status status;
Zhang Rui9e89dde2006-12-07 20:56:16 +08001260
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001261 INIT_LIST_HEAD(&ps->resources);
1262
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001263 /* Evaluate "_PRx" to get referenced power resources */
1264 status = acpi_evaluate_object(device->handle, pathname, NULL, &buffer);
1265 if (ACPI_SUCCESS(status)) {
1266 union acpi_object *package = buffer.pointer;
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001267
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001268 if (buffer.length && package
1269 && package->type == ACPI_TYPE_PACKAGE
1270 && package->package.count) {
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001271 int err = acpi_extract_power_resources(package, 0,
1272 &ps->resources);
1273 if (!err)
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001274 device->power.flags.power_resources = 1;
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001275 }
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001276 ACPI_FREE(buffer.pointer);
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001277 }
1278
1279 /* Evaluate "_PSx" to see if we can do explicit sets */
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001280 pathname[2] = 'S';
1281 status = acpi_get_handle(device->handle, pathname, &handle);
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001282 if (ACPI_SUCCESS(status))
1283 ps->flags.explicit_set = 1;
1284
1285 /*
1286 * State is valid if there are means to put the device into it.
1287 * D3hot is only valid if _PR3 present.
1288 */
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001289 if (!list_empty(&ps->resources)
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001290 || (ps->flags.explicit_set && state < ACPI_STATE_D3_HOT)) {
1291 ps->flags.valid = 1;
1292 ps->flags.os_accessible = 1;
1293 }
1294
1295 ps->power = -1; /* Unknown - driver assigned */
1296 ps->latency = -1; /* Unknown - driver assigned */
1297}
1298
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001299static void acpi_bus_get_power_flags(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300{
Rafael J. Wysocki8bc50532013-01-17 14:11:07 +01001301 acpi_status status;
1302 acpi_handle handle;
1303 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001305 /* Presence of _PS0|_PR0 indicates 'power manageable' */
1306 status = acpi_get_handle(device->handle, "_PS0", &handle);
1307 if (ACPI_FAILURE(status)) {
1308 status = acpi_get_handle(device->handle, "_PR0", &handle);
1309 if (ACPI_FAILURE(status))
1310 return;
1311 }
1312
1313 device->flags.power_manageable = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
1315 /*
Zhang Rui9e89dde2006-12-07 20:56:16 +08001316 * Power Management Flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 */
Zhang Rui9e89dde2006-12-07 20:56:16 +08001318 status = acpi_get_handle(device->handle, "_PSC", &handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 if (ACPI_SUCCESS(status))
Zhang Rui9e89dde2006-12-07 20:56:16 +08001320 device->power.flags.explicit_get = 1;
1321 status = acpi_get_handle(device->handle, "_IRC", &handle);
1322 if (ACPI_SUCCESS(status))
1323 device->power.flags.inrush_current = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
1325 /*
Zhang Rui9e89dde2006-12-07 20:56:16 +08001326 * Enumerate supported power management states
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 */
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001328 for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3_HOT; i++)
1329 acpi_bus_init_power_state(device, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
Rafael J. Wysocki0b224522013-01-17 14:11:06 +01001331 INIT_LIST_HEAD(&device->power.states[ACPI_STATE_D3_COLD].resources);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Zhang Rui9e89dde2006-12-07 20:56:16 +08001333 /* Set defaults for D0 and D3 states (always valid) */
1334 device->power.states[ACPI_STATE_D0].flags.valid = 1;
1335 device->power.states[ACPI_STATE_D0].power = 100;
1336 device->power.states[ACPI_STATE_D3].flags.valid = 1;
1337 device->power.states[ACPI_STATE_D3].power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
Rafael J. Wysocki5c7dd712012-05-18 00:39:35 +02001339 /* Set D3cold's explicit_set flag if _PS3 exists. */
1340 if (device->power.states[ACPI_STATE_D3_HOT].flags.explicit_set)
1341 device->power.states[ACPI_STATE_D3_COLD].flags.explicit_set = 1;
1342
Aaron Lu1399dfc2012-11-21 23:33:40 +01001343 /* Presence of _PS3 or _PRx means we can put the device into D3 cold */
1344 if (device->power.states[ACPI_STATE_D3_HOT].flags.explicit_set ||
1345 device->power.flags.power_resources)
1346 device->power.states[ACPI_STATE_D3_COLD].flags.os_accessible = 1;
1347
Rafael J. Wysockib3785492013-02-01 23:43:02 +01001348 if (acpi_bus_init_power(device)) {
1349 acpi_free_power_resources_lists(device);
1350 device->flags.power_manageable = 0;
1351 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352}
1353
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001354static void acpi_bus_get_flags(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355{
Len Brown4be44fc2005-08-05 00:44:28 -04001356 acpi_status status = AE_OK;
1357 acpi_handle temp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 /* Presence of _STA indicates 'dynamic_status' */
1360 status = acpi_get_handle(device->handle, "_STA", &temp);
1361 if (ACPI_SUCCESS(status))
1362 device->flags.dynamic_status = 1;
1363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 /* Presence of _RMV indicates 'removable' */
1365 status = acpi_get_handle(device->handle, "_RMV", &temp);
1366 if (ACPI_SUCCESS(status))
1367 device->flags.removable = 1;
1368
1369 /* Presence of _EJD|_EJ0 indicates 'ejectable' */
1370 status = acpi_get_handle(device->handle, "_EJD", &temp);
1371 if (ACPI_SUCCESS(status))
1372 device->flags.ejectable = 1;
1373 else {
1374 status = acpi_get_handle(device->handle, "_EJ0", &temp);
1375 if (ACPI_SUCCESS(status))
1376 device->flags.ejectable = 1;
1377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378}
1379
Bjorn Helgaasc7bcb4e2009-09-21 19:29:25 +00001380static void acpi_device_get_busid(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381{
Len Brown4be44fc2005-08-05 00:44:28 -04001382 char bus_id[5] = { '?', 0 };
1383 struct acpi_buffer buffer = { sizeof(bus_id), bus_id };
1384 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
1386 /*
1387 * Bus ID
1388 * ------
1389 * The device's Bus ID is simply the object name.
1390 * TBD: Shouldn't this value be unique (within the ACPI namespace)?
1391 */
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +00001392 if (ACPI_IS_ROOT_DEVICE(device)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 strcpy(device->pnp.bus_id, "ACPI");
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +00001394 return;
1395 }
1396
1397 switch (device->device_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 case ACPI_BUS_TYPE_POWER_BUTTON:
1399 strcpy(device->pnp.bus_id, "PWRF");
1400 break;
1401 case ACPI_BUS_TYPE_SLEEP_BUTTON:
1402 strcpy(device->pnp.bus_id, "SLPF");
1403 break;
1404 default:
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +00001405 acpi_get_name(device->handle, ACPI_SINGLE_NAME, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 /* Clean up trailing underscores (if any) */
1407 for (i = 3; i > 1; i--) {
1408 if (bus_id[i] == '_')
1409 bus_id[i] = '\0';
1410 else
1411 break;
1412 }
1413 strcpy(device->pnp.bus_id, bus_id);
1414 break;
1415 }
1416}
1417
Zhang Rui54735262007-01-11 02:09:09 -05001418/*
Toshi Kanid4e1a692013-03-04 21:30:41 +00001419 * acpi_bay_match - see if an acpi object is an ejectable driver bay
Zhang Rui54735262007-01-11 02:09:09 -05001420 *
1421 * If an acpi object is ejectable and has one of the ACPI ATA methods defined,
1422 * then we can safely call it an ejectable drive bay
1423 */
Toshi Kanid4e1a692013-03-04 21:30:41 +00001424static int acpi_bay_match(acpi_handle handle)
1425{
Zhang Rui54735262007-01-11 02:09:09 -05001426 acpi_status status;
Zhang Rui54735262007-01-11 02:09:09 -05001427 acpi_handle tmp;
1428 acpi_handle phandle;
1429
Zhang Rui54735262007-01-11 02:09:09 -05001430 status = acpi_get_handle(handle, "_EJ0", &tmp);
1431 if (ACPI_FAILURE(status))
1432 return -ENODEV;
1433
1434 if ((ACPI_SUCCESS(acpi_get_handle(handle, "_GTF", &tmp))) ||
1435 (ACPI_SUCCESS(acpi_get_handle(handle, "_GTM", &tmp))) ||
1436 (ACPI_SUCCESS(acpi_get_handle(handle, "_STM", &tmp))) ||
1437 (ACPI_SUCCESS(acpi_get_handle(handle, "_SDD", &tmp))))
1438 return 0;
1439
1440 if (acpi_get_parent(handle, &phandle))
1441 return -ENODEV;
1442
1443 if ((ACPI_SUCCESS(acpi_get_handle(phandle, "_GTF", &tmp))) ||
1444 (ACPI_SUCCESS(acpi_get_handle(phandle, "_GTM", &tmp))) ||
1445 (ACPI_SUCCESS(acpi_get_handle(phandle, "_STM", &tmp))) ||
1446 (ACPI_SUCCESS(acpi_get_handle(phandle, "_SDD", &tmp))))
1447 return 0;
1448
1449 return -ENODEV;
1450}
1451
Frank Seidel3620f2f2007-12-07 13:20:34 +01001452/*
Toshi Kanid4e1a692013-03-04 21:30:41 +00001453 * acpi_dock_match - see if an acpi object has a _DCK method
Frank Seidel3620f2f2007-12-07 13:20:34 +01001454 */
Toshi Kanid4e1a692013-03-04 21:30:41 +00001455static int acpi_dock_match(acpi_handle handle)
Frank Seidel3620f2f2007-12-07 13:20:34 +01001456{
1457 acpi_handle tmp;
Toshi Kanid4e1a692013-03-04 21:30:41 +00001458 return acpi_get_handle(handle, "_DCK", &tmp);
Frank Seidel3620f2f2007-12-07 13:20:34 +01001459}
1460
Thomas Renninger620e1122010-10-01 10:54:00 +02001461const char *acpi_device_hid(struct acpi_device *device)
Bob Moore15b8dd52009-06-29 13:39:29 +08001462{
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001463 struct acpi_hardware_id *hid;
Bob Moore15b8dd52009-06-29 13:39:29 +08001464
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +02001465 if (list_empty(&device->pnp.ids))
1466 return dummy_hid;
1467
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001468 hid = list_first_entry(&device->pnp.ids, struct acpi_hardware_id, list);
1469 return hid->id;
1470}
1471EXPORT_SYMBOL(acpi_device_hid);
Bob Moore15b8dd52009-06-29 13:39:29 +08001472
Toshi Kanid4e1a692013-03-04 21:30:41 +00001473static void acpi_add_id(struct acpi_device_pnp *pnp, const char *dev_id)
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001474{
1475 struct acpi_hardware_id *id;
Bob Moore15b8dd52009-06-29 13:39:29 +08001476
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001477 id = kmalloc(sizeof(*id), GFP_KERNEL);
1478 if (!id)
1479 return;
Bob Moore15b8dd52009-06-29 13:39:29 +08001480
Thomas Meyer581de592011-08-06 11:32:56 +02001481 id->id = kstrdup(dev_id, GFP_KERNEL);
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001482 if (!id->id) {
1483 kfree(id);
1484 return;
Bob Moore15b8dd52009-06-29 13:39:29 +08001485 }
1486
Toshi Kanid4e1a692013-03-04 21:30:41 +00001487 list_add_tail(&id->list, &pnp->ids);
1488 pnp->type.hardware_id = 1;
Bob Moore15b8dd52009-06-29 13:39:29 +08001489}
1490
Darrick J. Wong222e82a2010-03-24 14:38:37 +01001491/*
1492 * Old IBM workstations have a DSDT bug wherein the SMBus object
1493 * lacks the SMBUS01 HID and the methods do not have the necessary "_"
1494 * prefix. Work around this.
1495 */
Toshi Kanid4e1a692013-03-04 21:30:41 +00001496static int acpi_ibm_smbus_match(acpi_handle handle)
Darrick J. Wong222e82a2010-03-24 14:38:37 +01001497{
1498 acpi_handle h_dummy;
1499 struct acpi_buffer path = {ACPI_ALLOCATE_BUFFER, NULL};
1500 int result;
1501
1502 if (!dmi_name_in_vendors("IBM"))
1503 return -ENODEV;
1504
1505 /* Look for SMBS object */
Toshi Kanid4e1a692013-03-04 21:30:41 +00001506 result = acpi_get_name(handle, ACPI_SINGLE_NAME, &path);
Darrick J. Wong222e82a2010-03-24 14:38:37 +01001507 if (result)
1508 return result;
1509
1510 if (strcmp("SMBS", path.pointer)) {
1511 result = -ENODEV;
1512 goto out;
1513 }
1514
1515 /* Does it have the necessary (but misnamed) methods? */
1516 result = -ENODEV;
Toshi Kanid4e1a692013-03-04 21:30:41 +00001517 if (ACPI_SUCCESS(acpi_get_handle(handle, "SBI", &h_dummy)) &&
1518 ACPI_SUCCESS(acpi_get_handle(handle, "SBR", &h_dummy)) &&
1519 ACPI_SUCCESS(acpi_get_handle(handle, "SBW", &h_dummy)))
Darrick J. Wong222e82a2010-03-24 14:38:37 +01001520 result = 0;
1521out:
1522 kfree(path.pointer);
1523 return result;
1524}
1525
Toshi Kanic0af4172013-03-04 21:30:42 +00001526static void acpi_set_pnp_ids(acpi_handle handle, struct acpi_device_pnp *pnp,
1527 int device_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528{
Len Brown4be44fc2005-08-05 00:44:28 -04001529 acpi_status status;
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001530 struct acpi_device_info *info;
Lv Zheng78e25fe2012-10-31 02:25:24 +00001531 struct acpi_pnp_device_id_list *cid_list;
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001532 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
Toshi Kanic0af4172013-03-04 21:30:42 +00001534 switch (device_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 case ACPI_BUS_TYPE_DEVICE:
Toshi Kanic0af4172013-03-04 21:30:42 +00001536 if (handle == ACPI_ROOT_OBJECT) {
1537 acpi_add_id(pnp, ACPI_SYSTEM_HID);
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +00001538 break;
1539 }
1540
Toshi Kanic0af4172013-03-04 21:30:42 +00001541 status = acpi_get_object_info(handle, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 if (ACPI_FAILURE(status)) {
Toshi Kanic0af4172013-03-04 21:30:42 +00001543 pr_err(PREFIX "%s: Error reading device info\n",
1544 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 return;
1546 }
1547
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 if (info->valid & ACPI_VALID_HID)
Toshi Kanic0af4172013-03-04 21:30:42 +00001549 acpi_add_id(pnp, info->hardware_id.string);
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001550 if (info->valid & ACPI_VALID_CID) {
Bob Moore15b8dd52009-06-29 13:39:29 +08001551 cid_list = &info->compatible_id_list;
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001552 for (i = 0; i < cid_list->count; i++)
Toshi Kanic0af4172013-03-04 21:30:42 +00001553 acpi_add_id(pnp, cid_list->ids[i].string);
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001554 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 if (info->valid & ACPI_VALID_ADR) {
Toshi Kanic0af4172013-03-04 21:30:42 +00001556 pnp->bus_address = info->address;
1557 pnp->type.bus_address = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 }
Lv Zhengccf78042012-10-30 14:41:07 +01001559 if (info->valid & ACPI_VALID_UID)
Toshi Kanic0af4172013-03-04 21:30:42 +00001560 pnp->unique_id = kstrdup(info->unique_id.string,
Lv Zhengccf78042012-10-30 14:41:07 +01001561 GFP_KERNEL);
Zhang Ruiae843332006-12-07 20:57:10 +08001562
Bjorn Helgaasa83893ae2009-10-02 11:03:12 -04001563 kfree(info);
1564
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001565 /*
1566 * Some devices don't reliably have _HIDs & _CIDs, so add
1567 * synthetic HIDs to make sure drivers can find them.
1568 */
Toshi Kanic0af4172013-03-04 21:30:42 +00001569 if (acpi_is_video_device(handle))
1570 acpi_add_id(pnp, ACPI_VIDEO_HID);
1571 else if (ACPI_SUCCESS(acpi_bay_match(handle)))
1572 acpi_add_id(pnp, ACPI_BAY_HID);
1573 else if (ACPI_SUCCESS(acpi_dock_match(handle)))
1574 acpi_add_id(pnp, ACPI_DOCK_HID);
1575 else if (!acpi_ibm_smbus_match(handle))
1576 acpi_add_id(pnp, ACPI_SMBUS_IBM_HID);
1577 else if (list_empty(&pnp->ids) && handle == ACPI_ROOT_OBJECT) {
1578 acpi_add_id(pnp, ACPI_BUS_HID); /* \_SB, LNXSYBUS */
1579 strcpy(pnp->device_name, ACPI_BUS_DEVICE_NAME);
1580 strcpy(pnp->device_class, ACPI_BUS_CLASS);
Bjorn Helgaasb7b30de2010-03-24 10:44:33 -06001581 }
Zhang Rui54735262007-01-11 02:09:09 -05001582
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 break;
1584 case ACPI_BUS_TYPE_POWER:
Toshi Kanic0af4172013-03-04 21:30:42 +00001585 acpi_add_id(pnp, ACPI_POWER_HID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 break;
1587 case ACPI_BUS_TYPE_PROCESSOR:
Toshi Kanic0af4172013-03-04 21:30:42 +00001588 acpi_add_id(pnp, ACPI_PROCESSOR_OBJECT_HID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 case ACPI_BUS_TYPE_THERMAL:
Toshi Kanic0af4172013-03-04 21:30:42 +00001591 acpi_add_id(pnp, ACPI_THERMAL_HID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 break;
1593 case ACPI_BUS_TYPE_POWER_BUTTON:
Toshi Kanic0af4172013-03-04 21:30:42 +00001594 acpi_add_id(pnp, ACPI_BUTTON_HID_POWERF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 break;
1596 case ACPI_BUS_TYPE_SLEEP_BUTTON:
Toshi Kanic0af4172013-03-04 21:30:42 +00001597 acpi_add_id(pnp, ACPI_BUTTON_HID_SLEEPF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 break;
1599 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600}
1601
Toshi Kanic0af4172013-03-04 21:30:42 +00001602void acpi_free_pnp_ids(struct acpi_device_pnp *pnp)
1603{
1604 struct acpi_hardware_id *id, *tmp;
1605
1606 list_for_each_entry_safe(id, tmp, &pnp->ids, list) {
1607 kfree(id->id);
1608 kfree(id);
1609 }
1610 kfree(pnp->unique_id);
1611}
1612
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +01001613void acpi_init_device_object(struct acpi_device *device, acpi_handle handle,
1614 int type, unsigned long long sta)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615{
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001616 INIT_LIST_HEAD(&device->pnp.ids);
1617 device->device_type = type;
1618 device->handle = handle;
1619 device->parent = acpi_bus_get_parent(handle);
1620 STRUCT_TO_INT(device->status) = sta;
1621 acpi_device_get_busid(device);
Toshi Kanic0af4172013-03-04 21:30:42 +00001622 acpi_set_pnp_ids(handle, &device->pnp, type);
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001623 acpi_bus_get_flags(device);
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01001624 device->flags.match_driver = false;
Rafael J. Wysockicf860be2013-01-24 12:49:49 +01001625 device_initialize(&device->dev);
1626 dev_set_uevent_suppress(&device->dev, true);
1627}
Bjorn Helgaasbc3b0772009-09-21 19:29:20 +00001628
Rafael J. Wysockicf860be2013-01-24 12:49:49 +01001629void acpi_device_add_finalize(struct acpi_device *device)
1630{
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01001631 device->flags.match_driver = true;
Rafael J. Wysockicf860be2013-01-24 12:49:49 +01001632 dev_set_uevent_suppress(&device->dev, false);
1633 kobject_uevent(&device->dev.kobj, KOBJ_ADD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634}
1635
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001636static int acpi_add_single_object(struct acpi_device **child,
1637 acpi_handle handle, int type,
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01001638 unsigned long long sta)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639{
Bjorn Helgaas77c24882009-09-21 19:29:30 +00001640 int result;
1641 struct acpi_device *device;
Bjorn Helgaas29aaefa2009-09-21 19:28:54 +00001642 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
Burman Yan36bcbec2006-12-19 12:56:11 -08001644 device = kzalloc(sizeof(struct acpi_device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 if (!device) {
Len Brown64684632006-06-26 23:41:38 -04001646 printk(KERN_ERR PREFIX "Memory allocation error\n");
Patrick Mocheld550d982006-06-27 00:41:40 -04001647 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001650 acpi_init_device_object(device, handle, type, sta);
1651 acpi_bus_get_power_flags(device);
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01001652 acpi_bus_get_wakeup_device_flags(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
Rafael J. Wysockicf860be2013-01-24 12:49:49 +01001654 result = acpi_device_add(device, acpi_device_release);
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001655 if (result) {
Hugh Dickins718fb0d2009-08-06 23:18:12 +00001656 acpi_device_release(&device->dev);
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001657 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 }
1659
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001660 acpi_power_add_remove_device(device, true);
Rafael J. Wysockicf860be2013-01-24 12:49:49 +01001661 acpi_device_add_finalize(device);
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001662 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
1663 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Added %s [%s] parent %s\n",
1664 dev_name(&device->dev), (char *) buffer.pointer,
1665 device->parent ? dev_name(&device->parent->dev) : "(null)"));
1666 kfree(buffer.pointer);
1667 *child = device;
1668 return 0;
Rafael J. Wysockibf325f92010-11-25 00:10:44 +01001669}
1670
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001671static int acpi_bus_type_and_status(acpi_handle handle, int *type,
1672 unsigned long long *sta)
1673{
1674 acpi_status status;
1675 acpi_object_type acpi_type;
1676
1677 status = acpi_get_type(handle, &acpi_type);
1678 if (ACPI_FAILURE(status))
1679 return -ENODEV;
1680
1681 switch (acpi_type) {
1682 case ACPI_TYPE_ANY: /* for ACPI_ROOT_OBJECT */
1683 case ACPI_TYPE_DEVICE:
1684 *type = ACPI_BUS_TYPE_DEVICE;
1685 status = acpi_bus_get_status_handle(handle, sta);
1686 if (ACPI_FAILURE(status))
1687 return -ENODEV;
1688 break;
1689 case ACPI_TYPE_PROCESSOR:
1690 *type = ACPI_BUS_TYPE_PROCESSOR;
1691 status = acpi_bus_get_status_handle(handle, sta);
1692 if (ACPI_FAILURE(status))
1693 return -ENODEV;
1694 break;
1695 case ACPI_TYPE_THERMAL:
1696 *type = ACPI_BUS_TYPE_THERMAL;
1697 *sta = ACPI_STA_DEFAULT;
1698 break;
1699 case ACPI_TYPE_POWER:
1700 *type = ACPI_BUS_TYPE_POWER;
1701 *sta = ACPI_STA_DEFAULT;
1702 break;
1703 default:
1704 return -ENODEV;
1705 }
1706
1707 return 0;
1708}
1709
Rafael J. Wysocki4b59cc12013-03-03 23:06:21 +01001710static bool acpi_scan_handler_matching(struct acpi_scan_handler *handler,
1711 char *idstr,
1712 const struct acpi_device_id **matchid)
1713{
1714 const struct acpi_device_id *devid;
1715
1716 for (devid = handler->ids; devid->id[0]; devid++)
1717 if (!strcmp((char *)devid->id, idstr)) {
1718 if (matchid)
1719 *matchid = devid;
1720
1721 return true;
1722 }
1723
1724 return false;
1725}
1726
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001727static struct acpi_scan_handler *acpi_scan_match_handler(char *idstr,
1728 const struct acpi_device_id **matchid)
1729{
1730 struct acpi_scan_handler *handler;
1731
1732 list_for_each_entry(handler, &acpi_scan_handlers_list, list_node)
1733 if (acpi_scan_handler_matching(handler, idstr, matchid))
1734 return handler;
1735
1736 return NULL;
1737}
1738
Rafael J. Wysocki3f8055c2013-03-03 23:08:16 +01001739void acpi_scan_hotplug_enabled(struct acpi_hotplug_profile *hotplug, bool val)
1740{
Rafael J. Wysocki3f8055c2013-03-03 23:08:16 +01001741 if (!!hotplug->enabled == !!val)
1742 return;
1743
1744 mutex_lock(&acpi_scan_lock);
1745
1746 hotplug->enabled = val;
Rafael J. Wysocki3f8055c2013-03-03 23:08:16 +01001747
1748 mutex_unlock(&acpi_scan_lock);
1749}
1750
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001751static void acpi_scan_init_hotplug(acpi_handle handle, int type)
Rafael J. Wysockic5698072013-03-03 23:05:14 +01001752{
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001753 struct acpi_device_pnp pnp = {};
1754 struct acpi_hardware_id *hwid;
Rafael J. Wysockic5698072013-03-03 23:05:14 +01001755 struct acpi_scan_handler *handler;
1756
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001757 INIT_LIST_HEAD(&pnp.ids);
1758 acpi_set_pnp_ids(handle, &pnp, type);
Rafael J. Wysockic5698072013-03-03 23:05:14 +01001759
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001760 if (!pnp.type.hardware_id)
Catalin Marinas7a26b532013-05-15 16:49:35 +00001761 goto out;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +01001762
Rafael J. Wysockia33ec392013-03-03 23:05:29 +01001763 /*
1764 * This relies on the fact that acpi_install_notify_handler() will not
1765 * install the same notify handler routine twice for the same handle.
1766 */
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001767 list_for_each_entry(hwid, &pnp.ids, list) {
1768 handler = acpi_scan_match_handler(hwid->id, NULL);
1769 if (handler) {
Toshi Kani2cbb14f2013-03-05 22:33:31 +00001770 acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
1771 acpi_hotplug_notify_cb, handler);
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001772 break;
1773 }
1774 }
1775
Catalin Marinas7a26b532013-05-15 16:49:35 +00001776out:
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001777 acpi_free_pnp_ids(&pnp);
Rafael J. Wysockia33ec392013-03-03 23:05:29 +01001778}
1779
Rafael J. Wysockie3863092012-12-21 00:36:47 +01001780static acpi_status acpi_bus_check_add(acpi_handle handle, u32 lvl_not_used,
1781 void *not_used, void **return_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782{
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001783 struct acpi_device *device = NULL;
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001784 int type;
1785 unsigned long long sta;
Bjorn Helgaase3b87f82009-09-21 19:30:11 +00001786 acpi_status status;
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001787 int result;
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001788
Rafael J. Wysocki4002bf32012-12-21 00:36:44 +01001789 acpi_bus_get_device(handle, &device);
1790 if (device)
1791 goto out;
1792
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001793 result = acpi_bus_type_and_status(handle, &type, &sta);
1794 if (result)
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001795 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +01001797 if (type == ACPI_BUS_TYPE_POWER) {
1798 acpi_add_power_resource(handle);
1799 return AE_OK;
1800 }
1801
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001802 acpi_scan_init_hotplug(handle, type);
Rafael J. Wysockia33ec392013-03-03 23:05:29 +01001803
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001804 if (!(sta & ACPI_STA_DEVICE_PRESENT) &&
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001805 !(sta & ACPI_STA_DEVICE_FUNCTIONING)) {
Rafael J. Wysocki86e4e202011-01-06 23:40:00 +01001806 struct acpi_device_wakeup wakeup;
1807 acpi_handle temp;
1808
1809 status = acpi_get_handle(handle, "_PRW", &temp);
Rafael J. Wysocki993cbe52013-01-17 14:11:06 +01001810 if (ACPI_SUCCESS(status)) {
Rafael J. Wysocki86e4e202011-01-06 23:40:00 +01001811 acpi_bus_extract_wakeup_device_power_package(handle,
1812 &wakeup);
Rafael J. Wysocki993cbe52013-01-17 14:11:06 +01001813 acpi_power_resources_list_free(&wakeup.resources);
1814 }
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001815 return AE_CTRL_DEPTH;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001816 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01001818 acpi_add_single_object(&device, handle, type, sta);
Bjorn Helgaase3b87f82009-09-21 19:30:11 +00001819 if (!device)
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001820 return AE_CTRL_DEPTH;
1821
Rafael J. Wysocki4002bf32012-12-21 00:36:44 +01001822 out:
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001823 if (!*return_value)
1824 *return_value = device;
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001825
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001826 return AE_OK;
1827}
1828
Rafael J. Wysocki87b85b32013-02-06 13:05:22 +01001829static int acpi_scan_attach_handler(struct acpi_device *device)
1830{
1831 struct acpi_hardware_id *hwid;
1832 int ret = 0;
1833
1834 list_for_each_entry(hwid, &device->pnp.ids, list) {
Rafael J. Wysockic5698072013-03-03 23:05:14 +01001835 const struct acpi_device_id *devid;
1836 struct acpi_scan_handler *handler;
Rafael J. Wysocki87b85b32013-02-06 13:05:22 +01001837
Rafael J. Wysockic5698072013-03-03 23:05:14 +01001838 handler = acpi_scan_match_handler(hwid->id, &devid);
1839 if (handler) {
1840 ret = handler->attach(device, devid);
1841 if (ret > 0) {
1842 device->handler = handler;
1843 break;
1844 } else if (ret < 0) {
1845 break;
1846 }
1847 }
Rafael J. Wysocki87b85b32013-02-06 13:05:22 +01001848 }
Rafael J. Wysockica589f92013-01-30 14:27:29 +01001849 return ret;
1850}
1851
Rafael J. Wysocki0fc300b2012-12-21 00:36:41 +01001852static acpi_status acpi_bus_device_attach(acpi_handle handle, u32 lvl_not_used,
1853 void *not_used, void **ret_not_used)
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001854{
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001855 struct acpi_device *device;
1856 unsigned long long sta_not_used;
Rafael J. Wysockica589f92013-01-30 14:27:29 +01001857 int ret;
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001858
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001859 /*
1860 * Ignore errors ignored by acpi_bus_check_add() to avoid terminating
1861 * namespace walks prematurely.
1862 */
Rafael J. Wysockica589f92013-01-30 14:27:29 +01001863 if (acpi_bus_type_and_status(handle, &ret, &sta_not_used))
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001864 return AE_OK;
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001865
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001866 if (acpi_bus_get_device(handle, &device))
1867 return AE_CTRL_DEPTH;
Thomas Renninger77796882010-01-29 17:48:52 +01001868
Rafael J. Wysockica589f92013-01-30 14:27:29 +01001869 ret = acpi_scan_attach_handler(device);
1870 if (ret)
1871 return ret > 0 ? AE_OK : AE_CTRL_DEPTH;
1872
1873 ret = device_attach(&device->dev);
1874 return ret >= 0 ? AE_OK : AE_CTRL_DEPTH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01001877/**
1878 * acpi_bus_scan - Add ACPI device node objects in a given namespace scope.
1879 * @handle: Root of the namespace scope to scan.
Thomas Renninger77796882010-01-29 17:48:52 +01001880 *
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01001881 * Scan a given ACPI tree (probably recently hot-plugged) and create and add
1882 * found devices.
Thomas Renninger77796882010-01-29 17:48:52 +01001883 *
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01001884 * If no devices were found, -ENODEV is returned, but it does not mean that
1885 * there has been a real error. There just have been no suitable ACPI objects
1886 * in the table trunk from which the kernel could create a device and add an
1887 * appropriate driver.
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01001888 *
1889 * Must be called under acpi_scan_lock.
Thomas Renninger77796882010-01-29 17:48:52 +01001890 */
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01001891int acpi_bus_scan(acpi_handle handle)
Rajesh Shah3fb02732005-04-28 00:25:52 -07001892{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 void *device = NULL;
Rafael J. Wysockic511cc12013-01-27 21:17:29 +01001894 int error = 0;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001895
Rafael J. Wysocki0cd6ac52012-12-21 00:36:49 +01001896 if (ACPI_SUCCESS(acpi_bus_check_add(handle, 0, NULL, &device)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
Rafael J. Wysockie3863092012-12-21 00:36:47 +01001898 acpi_bus_check_add, NULL, NULL, &device);
Rajesh Shah3fb02732005-04-28 00:25:52 -07001899
Thomas Renningerd2f66502010-01-29 17:48:51 +01001900 if (!device)
Rafael J. Wysockic511cc12013-01-27 21:17:29 +01001901 error = -ENODEV;
1902 else if (ACPI_SUCCESS(acpi_bus_device_attach(handle, 0, NULL, NULL)))
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001903 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
Rafael J. Wysocki0fc300b2012-12-21 00:36:41 +01001904 acpi_bus_device_attach, NULL, NULL, NULL);
Thomas Renningerd2f66502010-01-29 17:48:51 +01001905
Rafael J. Wysockic511cc12013-01-27 21:17:29 +01001906 return error;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001907}
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01001908EXPORT_SYMBOL(acpi_bus_scan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
Rafael J. Wysocki05404d82013-01-15 13:24:13 +01001910static acpi_status acpi_bus_device_detach(acpi_handle handle, u32 lvl_not_used,
1911 void *not_used, void **ret_not_used)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912{
Rafael J. Wysocki05404d82013-01-15 13:24:13 +01001913 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
Rafael J. Wysocki05404d82013-01-15 13:24:13 +01001915 if (!acpi_bus_get_device(handle, &device)) {
Rafael J. Wysockica589f92013-01-30 14:27:29 +01001916 struct acpi_scan_handler *dev_handler = device->handler;
1917
Rafael J. Wysocki05404d82013-01-15 13:24:13 +01001918 device->removal_type = ACPI_BUS_REMOVAL_EJECT;
Rafael J. Wysockica589f92013-01-30 14:27:29 +01001919 if (dev_handler) {
1920 if (dev_handler->detach)
1921 dev_handler->detach(device);
1922
1923 device->handler = NULL;
1924 } else {
1925 device_release_driver(&device->dev);
1926 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 }
Rafael J. Wysocki05404d82013-01-15 13:24:13 +01001928 return AE_OK;
1929}
1930
1931static acpi_status acpi_bus_remove(acpi_handle handle, u32 lvl_not_used,
1932 void *not_used, void **ret_not_used)
1933{
1934 struct acpi_device *device = NULL;
1935
1936 if (!acpi_bus_get_device(handle, &device))
1937 acpi_device_unregister(device);
1938
1939 return AE_OK;
1940}
1941
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01001942/**
1943 * acpi_bus_trim - Remove ACPI device node and all of its descendants
1944 * @start: Root of the ACPI device nodes subtree to remove.
1945 *
1946 * Must be called under acpi_scan_lock.
1947 */
Rafael J. Wysockibfee26d2013-01-26 00:27:44 +01001948void acpi_bus_trim(struct acpi_device *start)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949{
Rafael J. Wysockicecdb192013-01-15 13:24:02 +01001950 /*
Rafael J. Wysocki05404d82013-01-15 13:24:13 +01001951 * Execute acpi_bus_device_detach() as a post-order callback to detach
1952 * all ACPI drivers from the device nodes being removed.
1953 */
1954 acpi_walk_namespace(ACPI_TYPE_ANY, start->handle, ACPI_UINT32_MAX, NULL,
1955 acpi_bus_device_detach, NULL, NULL);
1956 acpi_bus_device_detach(start->handle, 0, NULL, NULL);
1957 /*
Rafael J. Wysockicecdb192013-01-15 13:24:02 +01001958 * Execute acpi_bus_remove() as a post-order callback to remove device
1959 * nodes in the given namespace scope.
1960 */
1961 acpi_walk_namespace(ACPI_TYPE_ANY, start->handle, ACPI_UINT32_MAX, NULL,
1962 acpi_bus_remove, NULL, NULL);
1963 acpi_bus_remove(start->handle, 0, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964}
Kristen Accardiceaba662006-02-23 17:56:01 -08001965EXPORT_SYMBOL_GPL(acpi_bus_trim);
1966
Bjorn Helgaase8b945c2009-09-21 19:28:59 +00001967static int acpi_bus_scan_fixed(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968{
Len Brown4be44fc2005-08-05 00:44:28 -04001969 int result = 0;
Li Shaohuac4168bf2006-12-07 20:56:41 +08001970
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 /*
1972 * Enumerate all fixed-feature devices.
1973 */
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01001974 if (!(acpi_gbl_FADT.flags & ACPI_FADT_POWER_BUTTON)) {
1975 struct acpi_device *device = NULL;
1976
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001977 result = acpi_add_single_object(&device, NULL,
Li Shaohuac4168bf2006-12-07 20:56:41 +08001978 ACPI_BUS_TYPE_POWER_BUTTON,
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01001979 ACPI_STA_DEFAULT);
1980 if (result)
1981 return result;
1982
1983 result = device_attach(&device->dev);
1984 if (result < 0)
1985 return result;
1986
Daniel Drakec10d7a12012-05-10 00:08:43 +01001987 device_init_wakeup(&device->dev, true);
Rajesh Shah3fb02732005-04-28 00:25:52 -07001988 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01001990 if (!(acpi_gbl_FADT.flags & ACPI_FADT_SLEEP_BUTTON)) {
1991 struct acpi_device *device = NULL;
1992
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001993 result = acpi_add_single_object(&device, NULL,
Li Shaohuac4168bf2006-12-07 20:56:41 +08001994 ACPI_BUS_TYPE_SLEEP_BUTTON,
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01001995 ACPI_STA_DEFAULT);
1996 if (result)
1997 return result;
1998
1999 result = device_attach(&device->dev);
Rajesh Shah3fb02732005-04-28 00:25:52 -07002000 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01002002 return result < 0 ? result : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003}
2004
Bjorn Helgaase747f272009-03-24 16:49:43 -06002005int __init acpi_scan_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006{
2007 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
Patrick Mochel5b327262006-05-10 10:33:00 -04002009 result = bus_register(&acpi_bus_type);
2010 if (result) {
2011 /* We don't want to quit even if we failed to add suspend/resume */
2012 printk(KERN_ERR PREFIX "Could not register bus type\n");
2013 }
2014
Rafael J. Wysocki92ef2a22012-12-21 00:36:40 +01002015 acpi_pci_root_init();
Rafael J. Wysocki4daeaf62013-01-30 14:27:37 +01002016 acpi_pci_link_init();
Rafael J. Wysocki141a2972013-01-30 14:27:40 +01002017 acpi_platform_init();
Rafael J. Wysockif58b0822013-03-06 23:46:20 +01002018 acpi_lpss_init();
Rafael J. Wysocki737f1a92013-02-08 23:52:39 +01002019 acpi_container_init();
Rafael J. Wysocki0a347642013-03-03 23:18:03 +01002020 acpi_memory_hotplug_init();
Rafael J. Wysocki97d9a9e2010-11-25 00:10:02 +01002021
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002022 mutex_lock(&acpi_scan_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 * Enumerate devices in the ACPI namespace.
2025 */
Rafael J. Wysocki0cd6ac52012-12-21 00:36:49 +01002026 result = acpi_bus_scan(ACPI_ROOT_OBJECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 if (result)
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002028 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
Rafael J. Wysocki0cd6ac52012-12-21 00:36:49 +01002030 result = acpi_bus_get_device(ACPI_ROOT_OBJECT, &acpi_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 if (result)
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002032 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01002034 result = acpi_bus_scan_fixed();
2035 if (result) {
2036 acpi_device_unregister(acpi_root);
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002037 goto out;
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01002038 }
2039
2040 acpi_update_all_gpes();
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002041
Yinghai Lu668192b2013-01-21 13:20:48 -08002042 acpi_pci_root_hp_init();
2043
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002044 out:
2045 mutex_unlock(&acpi_scan_lock);
2046 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047}