blob: ec256352f42367375bd3375ca7cad62cbd50bab7 [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>
Suthikulpanit, Suraveed0562672015-06-10 11:08:52 -050014#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
Rafael J. Wysockid7831562013-11-22 21:52:12 +010016#include <asm/pgtable.h>
17
Bjorn Helgaase60cc7a2009-03-13 12:08:26 -060018#include "internal.h"
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#define _COMPONENT ACPI_BUS_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050021ACPI_MODULE_NAME("scan");
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
Rafael J. Wysockid7831562013-11-22 21:52:12 +010030#define INVALID_ACPI_HANDLE ((acpi_handle)empty_zero_page)
31
Rafael J. Wysocki683058e2013-05-03 00:26:16 +020032/*
33 * If set, devices will be hot-removed even if they cannot be put offline
34 * gracefully (from the kernel's standpoint).
35 */
36bool acpi_force_hot_remove;
37
Thomas Renninger620e1122010-10-01 10:54:00 +020038static const char *dummy_hid = "device";
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +020039
Lan Tianyu40e7fcb2014-11-23 21:22:54 +080040static LIST_HEAD(acpi_dep_list);
41static DEFINE_MUTEX(acpi_dep_list_lock);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +080042static LIST_HEAD(acpi_bus_id_list);
Rafael J. Wysockic511cc12013-01-27 21:17:29 +010043static DEFINE_MUTEX(acpi_scan_lock);
Rafael J. Wysockica589f92013-01-30 14:27:29 +010044static LIST_HEAD(acpi_scan_handlers_list);
Shaohua Li90905892009-04-07 10:24:29 +080045DEFINE_MUTEX(acpi_device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046LIST_HEAD(acpi_wakeup_device_list);
Rafael J. Wysockie5255062014-02-04 00:43:17 +010047static DEFINE_MUTEX(acpi_hp_context_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Lan Tianyu40e7fcb2014-11-23 21:22:54 +080049struct acpi_dep_data {
50 struct list_head node;
51 acpi_handle master;
52 acpi_handle slave;
53};
54
Zhang Ruie49bd2dd2006-12-08 17:23:43 +080055struct acpi_device_bus_id{
Zhang Ruibb095852007-01-04 15:03:18 +080056 char bus_id[15];
Zhang Ruie49bd2dd2006-12-08 17:23:43 +080057 unsigned int instance_no;
58 struct list_head node;
59};
Thomas Renninger29b71a12007-07-23 14:43:51 +020060
Rafael J. Wysocki3757b942013-02-13 14:36:47 +010061void acpi_scan_lock_acquire(void)
62{
63 mutex_lock(&acpi_scan_lock);
64}
65EXPORT_SYMBOL_GPL(acpi_scan_lock_acquire);
66
67void acpi_scan_lock_release(void)
68{
69 mutex_unlock(&acpi_scan_lock);
70}
71EXPORT_SYMBOL_GPL(acpi_scan_lock_release);
72
Rafael J. Wysockie5255062014-02-04 00:43:17 +010073void acpi_lock_hp_context(void)
74{
75 mutex_lock(&acpi_hp_context_lock);
76}
77
78void acpi_unlock_hp_context(void)
79{
80 mutex_unlock(&acpi_hp_context_lock);
81}
82
Rafael J. Wysocki5d513202014-02-22 00:48:31 +010083void acpi_initialize_hp_context(struct acpi_device *adev,
84 struct acpi_hotplug_context *hp,
85 int (*notify)(struct acpi_device *, u32),
86 void (*uevent)(struct acpi_device *, u32))
87{
88 acpi_lock_hp_context();
Rafael J. Wysockiba574dc2014-07-15 22:03:22 +020089 hp->notify = notify;
90 hp->uevent = uevent;
91 acpi_set_hp_context(adev, hp);
Rafael J. Wysocki5d513202014-02-22 00:48:31 +010092 acpi_unlock_hp_context();
93}
94EXPORT_SYMBOL_GPL(acpi_initialize_hp_context);
95
Rafael J. Wysockica589f92013-01-30 14:27:29 +010096int acpi_scan_add_handler(struct acpi_scan_handler *handler)
97{
Rafael J. Wysockid34afa92014-05-30 04:27:31 +020098 if (!handler)
Rafael J. Wysockica589f92013-01-30 14:27:29 +010099 return -EINVAL;
100
101 list_add_tail(&handler->list_node, &acpi_scan_handlers_list);
102 return 0;
103}
104
Rafael J. Wysocki3f8055c2013-03-03 23:08:16 +0100105int acpi_scan_add_handler_with_hotplug(struct acpi_scan_handler *handler,
106 const char *hotplug_profile_name)
107{
108 int error;
109
110 error = acpi_scan_add_handler(handler);
111 if (error)
112 return error;
113
114 acpi_sysfs_add_hotplug_profile(&handler->hotplug, hotplug_profile_name);
115 return 0;
116}
117
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +0200118/**
119 * create_pnp_modalias - Create hid/cid(s) string for modalias and uevent
120 * @acpi_dev: ACPI device object.
121 * @modalias: Buffer to print into.
122 * @size: Size of the buffer.
123 *
Thomas Renninger29b71a12007-07-23 14:43:51 +0200124 * Creates hid/cid(s) string needed for modalias and uevent
125 * e.g. on a device with hid:IBM0001 and cid:ACPI0001 you get:
126 * char *modalias: "acpi:IBM0001:ACPI0001"
Zhang Rui3d8e0092014-01-14 16:46:35 +0800127 * Return: 0: no _HID and no _CID
128 * -EINVAL: output error
129 * -ENOMEM: output is truncated
Thomas Renninger29b71a12007-07-23 14:43:51 +0200130*/
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +0200131static int create_pnp_modalias(struct acpi_device *acpi_dev, char *modalias,
132 int size)
Adrian Bunkb3e572d2007-08-14 23:22:35 +0200133{
Thomas Renninger29b71a12007-07-23 14:43:51 +0200134 int len;
Zhang Rui5c9fcb52008-03-20 16:40:32 +0800135 int count;
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -0600136 struct acpi_hardware_id *id;
Thomas Renninger29b71a12007-07-23 14:43:51 +0200137
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +0200138 /*
Rafael J. Wysockiee892092015-05-22 04:24:34 +0200139 * Since we skip ACPI_DT_NAMESPACE_HID from the modalias below, 0 should
140 * be returned if ACPI_DT_NAMESPACE_HID is the only ACPI/PNP ID in the
141 * device's list.
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +0200142 */
143 count = 0;
144 list_for_each_entry(id, &acpi_dev->pnp.ids, list)
Rafael J. Wysockiee892092015-05-22 04:24:34 +0200145 if (strcmp(id->id, ACPI_DT_NAMESPACE_HID))
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +0200146 count++;
147
148 if (!count)
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +0200149 return 0;
150
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +0200151 len = snprintf(modalias, size, "acpi:");
152 if (len <= 0)
153 return len;
Thomas Renninger29b71a12007-07-23 14:43:51 +0200154
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +0200155 size -= len;
Mika Westerberg733e6252014-10-21 13:33:56 +0200156
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +0200157 list_for_each_entry(id, &acpi_dev->pnp.ids, list) {
Rafael J. Wysockiee892092015-05-22 04:24:34 +0200158 if (!strcmp(id->id, ACPI_DT_NAMESPACE_HID))
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +0200159 continue;
Mika Westerberg733e6252014-10-21 13:33:56 +0200160
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +0200161 count = snprintf(&modalias[len], size, "%s:", id->id);
162 if (count < 0)
163 return -EINVAL;
Mika Westerberg733e6252014-10-21 13:33:56 +0200164
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +0200165 if (count >= size)
166 return -ENOMEM;
Mika Westerberg733e6252014-10-21 13:33:56 +0200167
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +0200168 len += count;
169 size -= count;
Zhang Rui5c9fcb52008-03-20 16:40:32 +0800170 }
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +0200171 modalias[len] = '\0';
172 return len;
173}
Zhang Rui5c9fcb52008-03-20 16:40:32 +0800174
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +0200175/**
176 * create_of_modalias - Creates DT compatible string for modalias and uevent
177 * @acpi_dev: ACPI device object.
178 * @modalias: Buffer to print into.
179 * @size: Size of the buffer.
180 *
181 * Expose DT compatible modalias as of:NnameTCcompatible. This function should
Rafael J. Wysockiee892092015-05-22 04:24:34 +0200182 * only be called for devices having ACPI_DT_NAMESPACE_HID in their list of
183 * ACPI/PNP IDs.
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +0200184 */
185static int create_of_modalias(struct acpi_device *acpi_dev, char *modalias,
186 int size)
187{
188 struct acpi_buffer buf = { ACPI_ALLOCATE_BUFFER };
189 const union acpi_object *of_compatible, *obj;
190 int len, count;
191 int i, nval;
192 char *c;
193
194 acpi_get_name(acpi_dev->handle, ACPI_SINGLE_NAME, &buf);
195 /* DT strings are all in lower case */
196 for (c = buf.pointer; *c != '\0'; c++)
197 *c = tolower(*c);
198
199 len = snprintf(modalias, size, "of:N%sT", (char *)buf.pointer);
200 ACPI_FREE(buf.pointer);
201
202 if (len <= 0)
203 return len;
204
205 of_compatible = acpi_dev->data.of_compatible;
206 if (of_compatible->type == ACPI_TYPE_PACKAGE) {
207 nval = of_compatible->package.count;
208 obj = of_compatible->package.elements;
209 } else { /* Must be ACPI_TYPE_STRING. */
210 nval = 1;
211 obj = of_compatible;
212 }
213 for (i = 0; i < nval; i++, obj++) {
214 count = snprintf(&modalias[len], size, "C%s",
215 obj->string.pointer);
216 if (count < 0)
217 return -EINVAL;
218
219 if (count >= size)
220 return -ENOMEM;
221
222 len += count;
223 size -= count;
224 }
Thomas Renninger29b71a12007-07-23 14:43:51 +0200225 modalias[len] = '\0';
226 return len;
227}
228
Zhang Rui6eb24512014-01-14 16:46:36 +0800229/*
Mika Westerberg52870782014-10-24 16:40:54 +0200230 * acpi_companion_match() - Can we match via ACPI companion device
231 * @dev: Device in question
232 *
233 * Check if the given device has an ACPI companion and if that companion has
234 * a valid list of PNP IDs, and if the device is the first (primary) physical
Rafael J. Wysockie1acdeb2015-04-10 16:07:38 +0200235 * device associated with it. Return the companion pointer if that's the case
236 * or NULL otherwise.
Mika Westerberg52870782014-10-24 16:40:54 +0200237 *
238 * If multiple physical devices are attached to a single ACPI companion, we need
239 * to be careful. The usage scenario for this kind of relationship is that all
240 * of the physical devices in question use resources provided by the ACPI
241 * companion. A typical case is an MFD device where all the sub-devices share
242 * the parent's ACPI companion. In such cases we can only allow the primary
243 * (first) physical device to be matched with the help of the companion's PNP
244 * IDs.
245 *
246 * Additional physical devices sharing the ACPI companion can still use
247 * resources available from it but they will be matched normally using functions
248 * provided by their bus types (and analogously for their modalias).
249 */
Rafael J. Wysockie1acdeb2015-04-10 16:07:38 +0200250static struct acpi_device *acpi_companion_match(const struct device *dev)
Mika Westerberg52870782014-10-24 16:40:54 +0200251{
252 struct acpi_device *adev;
Rafael J. Wysocki5f2e3272015-04-13 21:35:51 +0200253 struct mutex *physical_node_lock;
Mika Westerberg52870782014-10-24 16:40:54 +0200254
255 adev = ACPI_COMPANION(dev);
256 if (!adev)
Rafael J. Wysockie1acdeb2015-04-10 16:07:38 +0200257 return NULL;
Mika Westerberg52870782014-10-24 16:40:54 +0200258
259 if (list_empty(&adev->pnp.ids))
Rafael J. Wysockie1acdeb2015-04-10 16:07:38 +0200260 return NULL;
Mika Westerberg52870782014-10-24 16:40:54 +0200261
Rafael J. Wysocki5f2e3272015-04-13 21:35:51 +0200262 physical_node_lock = &adev->physical_node_lock;
263 mutex_lock(physical_node_lock);
Mika Westerberg52870782014-10-24 16:40:54 +0200264 if (list_empty(&adev->physical_node_list)) {
Rafael J. Wysockie1acdeb2015-04-10 16:07:38 +0200265 adev = NULL;
Mika Westerberg52870782014-10-24 16:40:54 +0200266 } else {
267 const struct acpi_device_physical_node *node;
268
269 node = list_first_entry(&adev->physical_node_list,
270 struct acpi_device_physical_node, node);
Rafael J. Wysockie1acdeb2015-04-10 16:07:38 +0200271 if (node->dev != dev)
272 adev = NULL;
Mika Westerberg52870782014-10-24 16:40:54 +0200273 }
Rafael J. Wysocki5f2e3272015-04-13 21:35:51 +0200274 mutex_unlock(physical_node_lock);
Mika Westerberg52870782014-10-24 16:40:54 +0200275
Rafael J. Wysockie1acdeb2015-04-10 16:07:38 +0200276 return adev;
Mika Westerberg52870782014-10-24 16:40:54 +0200277}
278
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +0200279static int __acpi_device_uevent_modalias(struct acpi_device *adev,
280 struct kobj_uevent_env *env)
281{
282 int len;
283
284 if (!adev)
285 return -ENODEV;
286
287 if (list_empty(&adev->pnp.ids))
288 return 0;
289
290 if (add_uevent_var(env, "MODALIAS="))
291 return -ENOMEM;
292
293 len = create_pnp_modalias(adev, &env->buf[env->buflen - 1],
294 sizeof(env->buf) - env->buflen);
295 if (len < 0)
296 return len;
297
298 env->buflen += len;
299 if (!adev->data.of_compatible)
300 return 0;
301
302 if (len > 0 && add_uevent_var(env, "MODALIAS="))
303 return -ENOMEM;
304
305 len = create_of_modalias(adev, &env->buf[env->buflen - 1],
306 sizeof(env->buf) - env->buflen);
307 if (len < 0)
308 return len;
309
310 env->buflen += len;
311
312 return 0;
313}
314
Mika Westerberg52870782014-10-24 16:40:54 +0200315/*
Zhang Rui6eb24512014-01-14 16:46:36 +0800316 * Creates uevent modalias field for ACPI enumerated devices.
317 * Because the other buses does not support ACPI HIDs & CIDs.
318 * e.g. for a device with hid:IBM0001 and cid:ACPI0001 you get:
319 * "acpi:IBM0001:ACPI0001"
320 */
321int acpi_device_uevent_modalias(struct device *dev, struct kobj_uevent_env *env)
322{
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +0200323 return __acpi_device_uevent_modalias(acpi_companion_match(dev), env);
Zhang Rui6eb24512014-01-14 16:46:36 +0800324}
325EXPORT_SYMBOL_GPL(acpi_device_uevent_modalias);
326
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +0200327static int __acpi_device_modalias(struct acpi_device *adev, char *buf, int size)
328{
329 int len, count;
330
331 if (!adev)
332 return -ENODEV;
333
334 if (list_empty(&adev->pnp.ids))
335 return 0;
336
337 len = create_pnp_modalias(adev, buf, size - 1);
338 if (len < 0) {
339 return len;
340 } else if (len > 0) {
341 buf[len++] = '\n';
342 size -= len;
343 }
344 if (!adev->data.of_compatible)
345 return len;
346
347 count = create_of_modalias(adev, buf + len, size - 1);
348 if (count < 0) {
349 return count;
350 } else if (count > 0) {
351 len += count;
352 buf[len++] = '\n';
353 }
354
355 return len;
356}
357
Zhang Rui6eb24512014-01-14 16:46:36 +0800358/*
359 * Creates modalias sysfs attribute for ACPI enumerated devices.
360 * Because the other buses does not support ACPI HIDs & CIDs.
361 * e.g. for a device with hid:IBM0001 and cid:ACPI0001 you get:
362 * "acpi:IBM0001:ACPI0001"
363 */
364int acpi_device_modalias(struct device *dev, char *buf, int size)
365{
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +0200366 return __acpi_device_modalias(acpi_companion_match(dev), buf, size);
Zhang Rui6eb24512014-01-14 16:46:36 +0800367}
368EXPORT_SYMBOL_GPL(acpi_device_modalias);
369
Thomas Renninger29b71a12007-07-23 14:43:51 +0200370static ssize_t
371acpi_device_modalias_show(struct device *dev, struct device_attribute *attr, char *buf) {
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +0200372 return __acpi_device_modalias(to_acpi_device(dev), buf, 1024);
Thomas Renninger29b71a12007-07-23 14:43:51 +0200373}
374static DEVICE_ATTR(modalias, 0444, acpi_device_modalias_show, NULL);
375
Rafael J. Wysockicaa73ea2013-12-29 15:25:48 +0100376bool acpi_scan_is_offline(struct acpi_device *adev, bool uevent)
Rafael J. Wysockid22ddcb2013-12-29 15:25:35 +0100377{
378 struct acpi_device_physical_node *pn;
379 bool offline = true;
380
Rafael J. Wysocki4c533c82015-04-18 01:25:46 +0200381 /*
382 * acpi_container_offline() calls this for all of the container's
383 * children under the container's physical_node_lock lock.
384 */
385 mutex_lock_nested(&adev->physical_node_lock, SINGLE_DEPTH_NESTING);
Rafael J. Wysockid22ddcb2013-12-29 15:25:35 +0100386
387 list_for_each_entry(pn, &adev->physical_node_list, node)
388 if (device_supports_offline(pn->dev) && !pn->dev->offline) {
Rafael J. Wysockicaa73ea2013-12-29 15:25:48 +0100389 if (uevent)
390 kobject_uevent(&pn->dev->kobj, KOBJ_CHANGE);
391
Rafael J. Wysockid22ddcb2013-12-29 15:25:35 +0100392 offline = false;
393 break;
394 }
395
396 mutex_unlock(&adev->physical_node_lock);
397 return offline;
398}
399
Rafael J. Wysocki7f28dde2013-11-07 01:41:14 +0100400static acpi_status acpi_bus_offline(acpi_handle handle, u32 lvl, void *data,
401 void **ret_p)
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200402{
403 struct acpi_device *device = NULL;
404 struct acpi_device_physical_node *pn;
Rafael J. Wysocki303bfdb2013-05-23 10:43:13 +0200405 bool second_pass = (bool)data;
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200406 acpi_status status = AE_OK;
407
408 if (acpi_bus_get_device(handle, &device))
409 return AE_OK;
410
Rafael J. Wysocki7f28dde2013-11-07 01:41:14 +0100411 if (device->handler && !device->handler->hotplug.enabled) {
412 *ret_p = &device->dev;
413 return AE_SUPPORT;
414 }
415
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200416 mutex_lock(&device->physical_node_lock);
417
418 list_for_each_entry(pn, &device->physical_node_list, node) {
419 int ret;
420
Rafael J. Wysocki303bfdb2013-05-23 10:43:13 +0200421 if (second_pass) {
422 /* Skip devices offlined by the first pass. */
423 if (pn->put_online)
424 continue;
425 } else {
426 pn->put_online = false;
427 }
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200428 ret = device_offline(pn->dev);
429 if (acpi_force_hot_remove)
430 continue;
431
Rafael J. Wysocki303bfdb2013-05-23 10:43:13 +0200432 if (ret >= 0) {
433 pn->put_online = !ret;
434 } else {
435 *ret_p = pn->dev;
436 if (second_pass) {
437 status = AE_ERROR;
438 break;
439 }
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200440 }
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200441 }
442
443 mutex_unlock(&device->physical_node_lock);
444
445 return status;
446}
447
Rafael J. Wysocki7f28dde2013-11-07 01:41:14 +0100448static acpi_status acpi_bus_online(acpi_handle handle, u32 lvl, void *data,
449 void **ret_p)
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200450{
451 struct acpi_device *device = NULL;
452 struct acpi_device_physical_node *pn;
453
454 if (acpi_bus_get_device(handle, &device))
455 return AE_OK;
456
457 mutex_lock(&device->physical_node_lock);
458
459 list_for_each_entry(pn, &device->physical_node_list, node)
460 if (pn->put_online) {
461 device_online(pn->dev);
462 pn->put_online = false;
463 }
464
465 mutex_unlock(&device->physical_node_lock);
466
467 return AE_OK;
468}
469
Rafael J. Wysockid22ddcb2013-12-29 15:25:35 +0100470static int acpi_scan_try_to_offline(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
Yinghai Lu5993c462013-01-11 22:40:41 +0000472 acpi_handle handle = device->handle;
Rafael J. Wysockid22ddcb2013-12-29 15:25:35 +0100473 struct device *errdev = NULL;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100474 acpi_status status;
Rafael J. Wysockif058cdf2013-02-09 15:29:11 +0100475
Rafael J. Wysocki303bfdb2013-05-23 10:43:13 +0200476 /*
477 * Carry out two passes here and ignore errors in the first pass,
478 * because if the devices in question are memory blocks and
479 * CONFIG_MEMCG is set, one of the blocks may hold data structures
480 * that the other blocks depend on, but it is not known in advance which
481 * block holds them.
482 *
483 * If the first pass is successful, the second one isn't needed, though.
484 */
Rafael J. Wysocki7f28dde2013-11-07 01:41:14 +0100485 status = acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
486 NULL, acpi_bus_offline, (void *)false,
487 (void **)&errdev);
488 if (status == AE_SUPPORT) {
489 dev_warn(errdev, "Offline disabled.\n");
490 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
491 acpi_bus_online, NULL, NULL, NULL);
Rafael J. Wysocki7f28dde2013-11-07 01:41:14 +0100492 return -EPERM;
493 }
494 acpi_bus_offline(handle, 0, (void *)false, (void **)&errdev);
Rafael J. Wysocki303bfdb2013-05-23 10:43:13 +0200495 if (errdev) {
496 errdev = NULL;
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200497 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
Rafael J. Wysocki7f28dde2013-11-07 01:41:14 +0100498 NULL, acpi_bus_offline, (void *)true,
499 (void **)&errdev);
Rafael J. Wysocki303bfdb2013-05-23 10:43:13 +0200500 if (!errdev || acpi_force_hot_remove)
Rafael J. Wysocki7f28dde2013-11-07 01:41:14 +0100501 acpi_bus_offline(handle, 0, (void *)true,
502 (void **)&errdev);
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200503
Rafael J. Wysocki303bfdb2013-05-23 10:43:13 +0200504 if (errdev && !acpi_force_hot_remove) {
505 dev_warn(errdev, "Offline failed.\n");
Rafael J. Wysocki7f28dde2013-11-07 01:41:14 +0100506 acpi_bus_online(handle, 0, NULL, NULL);
Rafael J. Wysocki303bfdb2013-05-23 10:43:13 +0200507 acpi_walk_namespace(ACPI_TYPE_ANY, handle,
Rafael J. Wysocki7f28dde2013-11-07 01:41:14 +0100508 ACPI_UINT32_MAX, acpi_bus_online,
509 NULL, NULL, NULL);
Rafael J. Wysocki303bfdb2013-05-23 10:43:13 +0200510 return -EBUSY;
511 }
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200512 }
Rafael J. Wysockid22ddcb2013-12-29 15:25:35 +0100513 return 0;
514}
515
516static int acpi_scan_hot_remove(struct acpi_device *device)
517{
518 acpi_handle handle = device->handle;
519 unsigned long long sta;
520 acpi_status status;
521
Tang Chendee15922014-08-08 10:30:45 +0800522 if (device->handler && device->handler->hotplug.demand_offline
523 && !acpi_force_hot_remove) {
Rafael J. Wysockicaa73ea2013-12-29 15:25:48 +0100524 if (!acpi_scan_is_offline(device, true))
Rafael J. Wysockid22ddcb2013-12-29 15:25:35 +0100525 return -EBUSY;
526 } else {
527 int error = acpi_scan_try_to_offline(device);
528 if (error)
529 return error;
530 }
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200531
Zhang Rui26d46862008-04-29 02:35:48 -0400532 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Kay Sievers07944692008-10-30 01:18:59 +0100533 "Hot-removing device %s...\n", dev_name(&device->dev)));
Zhang Rui26d46862008-04-29 02:35:48 -0400534
Rafael J. Wysockibfee26d2013-01-26 00:27:44 +0100535 acpi_bus_trim(device);
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200536
Jiang Liu7d2421f2013-06-29 00:24:40 +0800537 acpi_evaluate_lck(handle, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 /*
539 * TBD: _EJD support.
540 */
Jiang Liu7d2421f2013-06-29 00:24:40 +0800541 status = acpi_evaluate_ej0(handle);
542 if (status == AE_NOT_FOUND)
543 return -ENODEV;
544 else if (ACPI_FAILURE(status))
545 return -EIO;
Rafael J. Wysockif058cdf2013-02-09 15:29:11 +0100546
Toshi Kani882fd122013-03-13 19:29:26 +0000547 /*
548 * Verify if eject was indeed successful. If not, log an error
549 * message. No need to call _OST since _EJ0 call was made OK.
550 */
551 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
552 if (ACPI_FAILURE(status)) {
553 acpi_handle_warn(handle,
554 "Status check after eject failed (0x%x)\n", status);
555 } else if (sta & ACPI_STA_DEVICE_ENABLED) {
556 acpi_handle_warn(handle,
557 "Eject incomplete - status 0x%llx\n", sta);
558 }
559
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100560 return 0;
561}
Rafael J. Wysockif058cdf2013-02-09 15:29:11 +0100562
Rafael J. Wysocki443fc822013-11-22 21:55:43 +0100563static int acpi_scan_device_not_present(struct acpi_device *adev)
564{
565 if (!acpi_device_enumerated(adev)) {
566 dev_warn(&adev->dev, "Still not present\n");
567 return -EALREADY;
568 }
569 acpi_bus_trim(adev);
570 return 0;
571}
572
Rafael J. Wysockic27b2c32013-11-22 21:55:07 +0100573static int acpi_scan_device_check(struct acpi_device *adev)
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100574{
Rafael J. Wysockif943db42013-08-28 21:41:07 +0200575 int error;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100576
Rafael J. Wysocki443fc822013-11-22 21:55:43 +0100577 acpi_bus_get_status(adev);
578 if (adev->status.present || adev->status.functional) {
579 /*
580 * This function is only called for device objects for which
581 * matching scan handlers exist. The only situation in which
582 * the scan handler is not attached to this device object yet
583 * is when the device has just appeared (either it wasn't
584 * present at all before or it was removed and then added
585 * again).
586 */
587 if (adev->handler) {
588 dev_warn(&adev->dev, "Already enumerated\n");
589 return -EALREADY;
590 }
591 error = acpi_bus_scan(adev->handle);
592 if (error) {
593 dev_warn(&adev->dev, "Namespace scan failure\n");
594 return error;
595 }
596 if (!adev->handler) {
597 dev_warn(&adev->dev, "Enumeration failure\n");
598 error = -ENODEV;
599 }
600 } else {
601 error = acpi_scan_device_not_present(adev);
602 }
603 return error;
604}
605
606static int acpi_scan_bus_check(struct acpi_device *adev)
607{
608 struct acpi_scan_handler *handler = adev->handler;
609 struct acpi_device *child;
610 int error;
611
612 acpi_bus_get_status(adev);
613 if (!(adev->status.present || adev->status.functional)) {
614 acpi_scan_device_not_present(adev);
615 return 0;
616 }
617 if (handler && handler->hotplug.scan_dependent)
618 return handler->hotplug.scan_dependent(adev);
619
Rafael J. Wysockic27b2c32013-11-22 21:55:07 +0100620 error = acpi_bus_scan(adev->handle);
621 if (error) {
622 dev_warn(&adev->dev, "Namespace scan failure\n");
623 return error;
624 }
Rafael J. Wysocki443fc822013-11-22 21:55:43 +0100625 list_for_each_entry(child, &adev->children, node) {
626 error = acpi_scan_bus_check(child);
627 if (error)
628 return error;
Rafael J. Wysockic27b2c32013-11-22 21:55:07 +0100629 }
630 return 0;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100631}
632
Rafael J. Wysocki3c2cc7f2014-02-06 17:31:37 +0100633static int acpi_generic_hotplug_event(struct acpi_device *adev, u32 type)
634{
635 switch (type) {
636 case ACPI_NOTIFY_BUS_CHECK:
637 return acpi_scan_bus_check(adev);
638 case ACPI_NOTIFY_DEVICE_CHECK:
639 return acpi_scan_device_check(adev);
640 case ACPI_NOTIFY_EJECT_REQUEST:
641 case ACPI_OST_EC_OSPM_EJECT:
Rafael J. Wysockidd2151b2014-02-04 00:44:02 +0100642 if (adev->handler && !adev->handler->hotplug.enabled) {
643 dev_info(&adev->dev, "Eject disabled\n");
644 return -EPERM;
645 }
Rafael J. Wysocki700b8422014-02-21 01:07:17 +0100646 acpi_evaluate_ost(adev->handle, ACPI_NOTIFY_EJECT_REQUEST,
647 ACPI_OST_SC_EJECT_IN_PROGRESS, NULL);
Rafael J. Wysocki3c2cc7f2014-02-06 17:31:37 +0100648 return acpi_scan_hot_remove(adev);
649 }
650 return -EINVAL;
651}
652
Rafael J. Wysocki1e3bcb52014-03-03 00:40:38 +0100653void acpi_device_hotplug(struct acpi_device *adev, u32 src)
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100654{
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100655 u32 ost_code = ACPI_OST_SC_NON_SPECIFIC_FAILURE;
Rafael J. Wysocki3c2cc7f2014-02-06 17:31:37 +0100656 int error = -ENODEV;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100657
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200658 lock_device_hotplug();
Rafael J. Wysockie0ae8fe2013-08-30 14:19:29 +0200659 mutex_lock(&acpi_scan_lock);
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100660
Rafael J. Wysockic27b2c32013-11-22 21:55:07 +0100661 /*
662 * The device object's ACPI handle cannot become invalid as long as we
Rafael J. Wysocki3c2cc7f2014-02-06 17:31:37 +0100663 * are holding acpi_scan_lock, but it might have become invalid before
Rafael J. Wysockic27b2c32013-11-22 21:55:07 +0100664 * that lock was acquired.
665 */
666 if (adev->handle == INVALID_ACPI_HANDLE)
Rafael J. Wysocki3c2cc7f2014-02-06 17:31:37 +0100667 goto err_out;
Rafael J. Wysockic27b2c32013-11-22 21:55:07 +0100668
Rafael J. Wysocki1e2380c2014-02-16 01:51:01 +0100669 if (adev->flags.is_dock_station) {
670 error = dock_notify(adev, src);
671 } else if (adev->flags.hotplug_notify) {
Rafael J. Wysocki3c2cc7f2014-02-06 17:31:37 +0100672 error = acpi_generic_hotplug_event(adev, src);
Rafael J. Wysockidd2151b2014-02-04 00:44:02 +0100673 if (error == -EPERM) {
674 ost_code = ACPI_OST_SC_EJECT_NOT_SUPPORTED;
675 goto err_out;
676 }
Rafael J. Wysocki3c2cc7f2014-02-06 17:31:37 +0100677 } else {
Rafael J. Wysockibe27b3d2014-02-21 01:10:27 +0100678 int (*notify)(struct acpi_device *, u32);
Rafael J. Wysocki3c2cc7f2014-02-06 17:31:37 +0100679
680 acpi_lock_hp_context();
Rafael J. Wysockibe27b3d2014-02-21 01:10:27 +0100681 notify = adev->hp ? adev->hp->notify : NULL;
Rafael J. Wysocki3c2cc7f2014-02-06 17:31:37 +0100682 acpi_unlock_hp_context();
683 /*
684 * There may be additional notify handlers for device objects
685 * without the .event() callback, so ignore them here.
686 */
Rafael J. Wysockibe27b3d2014-02-21 01:10:27 +0100687 if (notify)
688 error = notify(adev, src);
Rafael J. Wysocki3c2cc7f2014-02-06 17:31:37 +0100689 else
690 goto out;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100691 }
Rafael J. Wysockic27b2c32013-11-22 21:55:07 +0100692 if (!error)
693 ost_code = ACPI_OST_SC_SUCCESS;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100694
Rafael J. Wysocki3c2cc7f2014-02-06 17:31:37 +0100695 err_out:
Rafael J. Wysocki700b8422014-02-21 01:07:17 +0100696 acpi_evaluate_ost(adev->handle, src, ost_code, NULL);
Rafael J. Wysocki3c2cc7f2014-02-06 17:31:37 +0100697
698 out:
Rafael J. Wysocki78ea4632014-02-04 00:43:05 +0100699 acpi_bus_put_acpi_device(adev);
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100700 mutex_unlock(&acpi_scan_lock);
Rafael J. Wysockie0ae8fe2013-08-30 14:19:29 +0200701 unlock_device_hotplug();
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100702}
703
Rafael J. Wysocki836aedb2013-01-24 12:49:59 +0100704static ssize_t real_power_state_show(struct device *dev,
705 struct device_attribute *attr, char *buf)
706{
707 struct acpi_device *adev = to_acpi_device(dev);
708 int state;
709 int ret;
710
711 ret = acpi_device_get_power(adev, &state);
712 if (ret)
713 return ret;
714
715 return sprintf(buf, "%s\n", acpi_power_state_string(state));
716}
717
718static DEVICE_ATTR(real_power_state, 0444, real_power_state_show, NULL);
719
720static ssize_t power_state_show(struct device *dev,
721 struct device_attribute *attr, char *buf)
722{
723 struct acpi_device *adev = to_acpi_device(dev);
724
725 return sprintf(buf, "%s\n", acpi_power_state_string(adev->power.state));
726}
727
728static DEVICE_ATTR(power_state, 0444, power_state_show, NULL);
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730static ssize_t
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800731acpi_eject_store(struct device *d, struct device_attribute *attr,
732 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800734 struct acpi_device *acpi_device = to_acpi_device(d);
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100735 acpi_object_type not_used;
736 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100738 if (!count || buf[0] != '1')
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100741 if ((!acpi_device->handler || !acpi_device->handler->hotplug.enabled)
742 && !acpi_device->driver)
743 return -ENODEV;
744
745 status = acpi_get_type(acpi_device->handle, &not_used);
746 if (ACPI_FAILURE(status) || !acpi_device->flags.ejectable)
747 return -ENODEV;
748
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100749 get_device(&acpi_device->dev);
Rafael J. Wysocki1e3bcb52014-03-03 00:40:38 +0100750 status = acpi_hotplug_schedule(acpi_device, ACPI_OST_EC_OSPM_EJECT);
Rafael J. Wysockif943db42013-08-28 21:41:07 +0200751 if (ACPI_SUCCESS(status))
752 return count;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100753
Rafael J. Wysockif943db42013-08-28 21:41:07 +0200754 put_device(&acpi_device->dev);
Rafael J. Wysocki700b8422014-02-21 01:07:17 +0100755 acpi_evaluate_ost(acpi_device->handle, ACPI_OST_EC_OSPM_EJECT,
756 ACPI_OST_SC_NON_SPECIFIC_FAILURE, NULL);
Rafael J. Wysocki5add99c2013-11-07 01:41:39 +0100757 return status == AE_NO_MEMORY ? -ENOMEM : -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758}
759
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800760static DEVICE_ATTR(eject, 0200, NULL, acpi_eject_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800762static ssize_t
763acpi_device_hid_show(struct device *dev, struct device_attribute *attr, char *buf) {
764 struct acpi_device *acpi_dev = to_acpi_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Bjorn Helgaasea8d82f2009-09-21 13:35:09 -0600766 return sprintf(buf, "%s\n", acpi_device_hid(acpi_dev));
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800767}
768static DEVICE_ATTR(hid, 0444, acpi_device_hid_show, NULL);
769
Lv Zheng923d4a42012-10-30 14:43:26 +0100770static ssize_t acpi_device_uid_show(struct device *dev,
771 struct device_attribute *attr, char *buf)
772{
773 struct acpi_device *acpi_dev = to_acpi_device(dev);
774
775 return sprintf(buf, "%s\n", acpi_dev->pnp.unique_id);
776}
777static DEVICE_ATTR(uid, 0444, acpi_device_uid_show, NULL);
778
779static ssize_t acpi_device_adr_show(struct device *dev,
780 struct device_attribute *attr, char *buf)
781{
782 struct acpi_device *acpi_dev = to_acpi_device(dev);
783
784 return sprintf(buf, "0x%08x\n",
785 (unsigned int)(acpi_dev->pnp.bus_address));
786}
787static DEVICE_ATTR(adr, 0444, acpi_device_adr_show, NULL);
788
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800789static ssize_t
790acpi_device_path_show(struct device *dev, struct device_attribute *attr, char *buf) {
791 struct acpi_device *acpi_dev = to_acpi_device(dev);
792 struct acpi_buffer path = {ACPI_ALLOCATE_BUFFER, NULL};
793 int result;
794
795 result = acpi_get_name(acpi_dev->handle, ACPI_FULL_PATHNAME, &path);
Alex Chiang0c526d92009-05-14 08:31:37 -0600796 if (result)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800797 goto end;
798
799 result = sprintf(buf, "%s\n", (char*)path.pointer);
800 kfree(path.pointer);
Alex Chiang0c526d92009-05-14 08:31:37 -0600801end:
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800802 return result;
803}
804static DEVICE_ATTR(path, 0444, acpi_device_path_show, NULL);
805
Lance Ortizd1efe3c2012-10-02 12:43:23 -0600806/* sysfs file that shows description text from the ACPI _STR method */
807static ssize_t description_show(struct device *dev,
808 struct device_attribute *attr,
809 char *buf) {
810 struct acpi_device *acpi_dev = to_acpi_device(dev);
811 int result;
812
813 if (acpi_dev->pnp.str_obj == NULL)
814 return 0;
815
816 /*
817 * The _STR object contains a Unicode identifier for a device.
818 * We need to convert to utf-8 so it can be displayed.
819 */
820 result = utf16s_to_utf8s(
821 (wchar_t *)acpi_dev->pnp.str_obj->buffer.pointer,
822 acpi_dev->pnp.str_obj->buffer.length,
823 UTF16_LITTLE_ENDIAN, buf,
824 PAGE_SIZE);
825
826 buf[result++] = '\n';
827
828 return result;
829}
830static DEVICE_ATTR(description, 0444, description_show, NULL);
831
Yasuaki Ishimatsubb74ac22012-11-16 02:56:59 +0100832static ssize_t
833acpi_device_sun_show(struct device *dev, struct device_attribute *attr,
834 char *buf) {
835 struct acpi_device *acpi_dev = to_acpi_device(dev);
Yasuaki Ishimatsua383b682014-09-03 13:39:13 +0900836 acpi_status status;
837 unsigned long long sun;
Yasuaki Ishimatsubb74ac22012-11-16 02:56:59 +0100838
Yasuaki Ishimatsua383b682014-09-03 13:39:13 +0900839 status = acpi_evaluate_integer(acpi_dev->handle, "_SUN", NULL, &sun);
840 if (ACPI_FAILURE(status))
841 return -ENODEV;
842
843 return sprintf(buf, "%llu\n", sun);
Yasuaki Ishimatsubb74ac22012-11-16 02:56:59 +0100844}
845static DEVICE_ATTR(sun, 0444, acpi_device_sun_show, NULL);
846
Srinivas Pandruvadac713cd72014-01-10 16:00:05 -0800847static ssize_t status_show(struct device *dev, struct device_attribute *attr,
848 char *buf) {
849 struct acpi_device *acpi_dev = to_acpi_device(dev);
850 acpi_status status;
851 unsigned long long sta;
852
853 status = acpi_evaluate_integer(acpi_dev->handle, "_STA", NULL, &sta);
854 if (ACPI_FAILURE(status))
855 return -ENODEV;
856
857 return sprintf(buf, "%llu\n", sta);
858}
859static DEVICE_ATTR_RO(status);
860
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800861static int acpi_device_setup_files(struct acpi_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
Lance Ortizd1efe3c2012-10-02 12:43:23 -0600863 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800864 acpi_status status;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800865 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800867 /*
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800868 * Devices gotten from FADT don't have a "path" attribute
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800869 */
Alex Chiang0c526d92009-05-14 08:31:37 -0600870 if (dev->handle) {
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800871 result = device_create_file(&dev->dev, &dev_attr_path);
Alex Chiang0c526d92009-05-14 08:31:37 -0600872 if (result)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800873 goto end;
874 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +0200876 if (!list_empty(&dev->pnp.ids)) {
877 result = device_create_file(&dev->dev, &dev_attr_hid);
878 if (result)
879 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +0200881 result = device_create_file(&dev->dev, &dev_attr_modalias);
882 if (result)
883 goto end;
884 }
Thomas Renninger29b71a12007-07-23 14:43:51 +0200885
Lance Ortizd1efe3c2012-10-02 12:43:23 -0600886 /*
887 * If device has _STR, 'description' file is created
888 */
Jiang Liu952c63e2013-06-29 00:24:38 +0800889 if (acpi_has_method(dev->handle, "_STR")) {
Lance Ortizd1efe3c2012-10-02 12:43:23 -0600890 status = acpi_evaluate_object(dev->handle, "_STR",
891 NULL, &buffer);
892 if (ACPI_FAILURE(status))
893 buffer.pointer = NULL;
894 dev->pnp.str_obj = buffer.pointer;
895 result = device_create_file(&dev->dev, &dev_attr_description);
896 if (result)
897 goto end;
898 }
899
Toshi Kanid4e1a692013-03-04 21:30:41 +0000900 if (dev->pnp.type.bus_address)
Lv Zheng923d4a42012-10-30 14:43:26 +0100901 result = device_create_file(&dev->dev, &dev_attr_adr);
902 if (dev->pnp.unique_id)
903 result = device_create_file(&dev->dev, &dev_attr_uid);
904
Yasuaki Ishimatsua383b682014-09-03 13:39:13 +0900905 if (acpi_has_method(dev->handle, "_SUN")) {
Yasuaki Ishimatsubb74ac22012-11-16 02:56:59 +0100906 result = device_create_file(&dev->dev, &dev_attr_sun);
907 if (result)
908 goto end;
Yasuaki Ishimatsubb74ac22012-11-16 02:56:59 +0100909 }
910
Srinivas Pandruvadac713cd72014-01-10 16:00:05 -0800911 if (acpi_has_method(dev->handle, "_STA")) {
912 result = device_create_file(&dev->dev, &dev_attr_status);
913 if (result)
914 goto end;
915 }
916
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800917 /*
918 * If device has _EJ0, 'eject' file is created that is used to trigger
919 * hot-removal function from userland.
920 */
Jiang Liu952c63e2013-06-29 00:24:38 +0800921 if (acpi_has_method(dev->handle, "_EJ0")) {
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800922 result = device_create_file(&dev->dev, &dev_attr_eject);
Rafael J. Wysocki836aedb2013-01-24 12:49:59 +0100923 if (result)
924 return result;
925 }
926
927 if (dev->flags.power_manageable) {
928 result = device_create_file(&dev->dev, &dev_attr_power_state);
929 if (result)
930 return result;
931
932 if (dev->power.flags.power_resources)
933 result = device_create_file(&dev->dev,
934 &dev_attr_real_power_state);
935 }
936
Alex Chiang0c526d92009-05-14 08:31:37 -0600937end:
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800938 return result;
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800939}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800941static void acpi_device_remove_files(struct acpi_device *dev)
942{
Rafael J. Wysocki836aedb2013-01-24 12:49:59 +0100943 if (dev->flags.power_manageable) {
944 device_remove_file(&dev->dev, &dev_attr_power_state);
945 if (dev->power.flags.power_resources)
946 device_remove_file(&dev->dev,
947 &dev_attr_real_power_state);
948 }
949
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800950 /*
Lance Ortizd1efe3c2012-10-02 12:43:23 -0600951 * If device has _STR, remove 'description' file
952 */
Jiang Liu952c63e2013-06-29 00:24:38 +0800953 if (acpi_has_method(dev->handle, "_STR")) {
Lance Ortizd1efe3c2012-10-02 12:43:23 -0600954 kfree(dev->pnp.str_obj);
955 device_remove_file(&dev->dev, &dev_attr_description);
956 }
957 /*
958 * If device has _EJ0, remove 'eject' file.
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800959 */
Jiang Liu952c63e2013-06-29 00:24:38 +0800960 if (acpi_has_method(dev->handle, "_EJ0"))
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800961 device_remove_file(&dev->dev, &dev_attr_eject);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800962
Jiang Liu952c63e2013-06-29 00:24:38 +0800963 if (acpi_has_method(dev->handle, "_SUN"))
Yasuaki Ishimatsubb74ac22012-11-16 02:56:59 +0100964 device_remove_file(&dev->dev, &dev_attr_sun);
965
Lv Zheng923d4a42012-10-30 14:43:26 +0100966 if (dev->pnp.unique_id)
967 device_remove_file(&dev->dev, &dev_attr_uid);
Toshi Kanid4e1a692013-03-04 21:30:41 +0000968 if (dev->pnp.type.bus_address)
Lv Zheng923d4a42012-10-30 14:43:26 +0100969 device_remove_file(&dev->dev, &dev_attr_adr);
Bjorn Helgaas1131b932009-09-21 13:35:29 -0600970 device_remove_file(&dev->dev, &dev_attr_modalias);
971 device_remove_file(&dev->dev, &dev_attr_hid);
Srinivas Pandruvadac713cd72014-01-10 16:00:05 -0800972 if (acpi_has_method(dev->handle, "_STA"))
973 device_remove_file(&dev->dev, &dev_attr_status);
Alex Chiang0c526d92009-05-14 08:31:37 -0600974 if (dev->handle)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800975 device_remove_file(&dev->dev, &dev_attr_path);
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800976}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977/* --------------------------------------------------------------------------
Zhang Rui9e89dde2006-12-07 20:56:16 +0800978 ACPI Bus operations
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 -------------------------------------------------------------------------- */
Thomas Renninger29b71a12007-07-23 14:43:51 +0200980
Mika Westerbergcf761af2012-10-31 22:44:41 +0100981/**
Rafael J. Wysocki2b9c6982015-04-10 16:07:51 +0200982 * acpi_of_match_device - Match device object using the "compatible" property.
983 * @adev: ACPI device object to match.
Rafael J. Wysocki54fe9ce2015-04-10 16:07:30 +0200984 * @of_match_table: List of device IDs to match against.
985 *
Rafael J. Wysockiee892092015-05-22 04:24:34 +0200986 * If @dev has an ACPI companion which has ACPI_DT_NAMESPACE_HID in its list of
987 * identifiers and a _DSD object with the "compatible" property, use that
988 * property to match against the given list of identifiers.
Rafael J. Wysocki54fe9ce2015-04-10 16:07:30 +0200989 */
Rafael J. Wysocki2b9c6982015-04-10 16:07:51 +0200990static bool acpi_of_match_device(struct acpi_device *adev,
Rafael J. Wysocki54fe9ce2015-04-10 16:07:30 +0200991 const struct of_device_id *of_match_table)
Mika Westerberg733e6252014-10-21 13:33:56 +0200992{
993 const union acpi_object *of_compatible, *obj;
Mika Westerberg733e6252014-10-21 13:33:56 +0200994 int i, nval;
995
Mika Westerberg733e6252014-10-21 13:33:56 +0200996 if (!adev)
997 return false;
998
999 of_compatible = adev->data.of_compatible;
Rafael J. Wysocki54fe9ce2015-04-10 16:07:30 +02001000 if (!of_match_table || !of_compatible)
Mika Westerberg733e6252014-10-21 13:33:56 +02001001 return false;
1002
1003 if (of_compatible->type == ACPI_TYPE_PACKAGE) {
1004 nval = of_compatible->package.count;
1005 obj = of_compatible->package.elements;
1006 } else { /* Must be ACPI_TYPE_STRING. */
1007 nval = 1;
1008 obj = of_compatible;
1009 }
1010 /* Now we can look for the driver DT compatible strings */
1011 for (i = 0; i < nval; i++, obj++) {
1012 const struct of_device_id *id;
1013
Rafael J. Wysocki54fe9ce2015-04-10 16:07:30 +02001014 for (id = of_match_table; id->compatible[0]; id++)
Mika Westerberg733e6252014-10-21 13:33:56 +02001015 if (!strcasecmp(obj->string.pointer, id->compatible))
1016 return true;
1017 }
1018
1019 return false;
1020}
1021
Suthikulpanit, Suravee26095a02015-07-07 01:55:20 +02001022static bool __acpi_match_device_cls(const struct acpi_device_id *id,
1023 struct acpi_hardware_id *hwid)
1024{
1025 int i, msk, byte_shift;
1026 char buf[3];
1027
1028 if (!id->cls)
1029 return false;
1030
1031 /* Apply class-code bitmask, before checking each class-code byte */
1032 for (i = 1; i <= 3; i++) {
1033 byte_shift = 8 * (3 - i);
1034 msk = (id->cls_msk >> byte_shift) & 0xFF;
1035 if (!msk)
1036 continue;
1037
1038 sprintf(buf, "%02x", (id->cls >> byte_shift) & msk);
1039 if (strncmp(buf, &hwid->id[(i - 1) * 2], 2))
1040 return false;
1041 }
1042 return true;
1043}
1044
Rafael J. Wysocki2b9c6982015-04-10 16:07:51 +02001045static const struct acpi_device_id *__acpi_match_device(
1046 struct acpi_device *device,
1047 const struct acpi_device_id *ids,
1048 const struct of_device_id *of_ids)
1049{
1050 const struct acpi_device_id *id;
1051 struct acpi_hardware_id *hwid;
1052
1053 /*
1054 * If the device is not present, it is unnecessary to load device
1055 * driver for it.
1056 */
1057 if (!device || !device->status.present)
1058 return NULL;
1059
1060 list_for_each_entry(hwid, &device->pnp.ids, list) {
1061 /* First, check the ACPI/PNP IDs provided by the caller. */
Suthikulpanit, Suravee26095a02015-07-07 01:55:20 +02001062 for (id = ids; id->id[0] || id->cls; id++) {
1063 if (id->id[0] && !strcmp((char *) id->id, hwid->id))
Rafael J. Wysocki2b9c6982015-04-10 16:07:51 +02001064 return id;
Suthikulpanit, Suravee26095a02015-07-07 01:55:20 +02001065 else if (id->cls && __acpi_match_device_cls(id, hwid))
1066 return id;
1067 }
Rafael J. Wysocki2b9c6982015-04-10 16:07:51 +02001068
1069 /*
Rafael J. Wysockiee892092015-05-22 04:24:34 +02001070 * Next, check ACPI_DT_NAMESPACE_HID and try to match the
Rafael J. Wysocki2b9c6982015-04-10 16:07:51 +02001071 * "compatible" property if found.
1072 *
1073 * The id returned by the below is not valid, but the only
1074 * caller passing non-NULL of_ids here is only interested in
1075 * whether or not the return value is NULL.
1076 */
Rafael J. Wysockiee892092015-05-22 04:24:34 +02001077 if (!strcmp(ACPI_DT_NAMESPACE_HID, hwid->id)
Rafael J. Wysocki2b9c6982015-04-10 16:07:51 +02001078 && acpi_of_match_device(device, of_ids))
1079 return id;
1080 }
1081 return NULL;
1082}
1083
1084/**
1085 * acpi_match_device - Match a struct device against a given list of ACPI IDs
1086 * @ids: Array of struct acpi_device_id object to match against.
1087 * @dev: The device structure to match.
1088 *
1089 * Check if @dev has a valid ACPI handle and if there is a struct acpi_device
1090 * object for that handle and use that object to match against a given list of
1091 * device IDs.
1092 *
1093 * Return a pointer to the first matching ID on success or %NULL on failure.
1094 */
1095const struct acpi_device_id *acpi_match_device(const struct acpi_device_id *ids,
1096 const struct device *dev)
1097{
1098 return __acpi_match_device(acpi_companion_match(dev), ids, NULL);
1099}
1100EXPORT_SYMBOL_GPL(acpi_match_device);
1101
1102int acpi_match_device_ids(struct acpi_device *device,
1103 const struct acpi_device_id *ids)
1104{
1105 return __acpi_match_device(device, ids, NULL) ? 0 : -ENOENT;
1106}
1107EXPORT_SYMBOL(acpi_match_device_ids);
1108
Mika Westerberg733e6252014-10-21 13:33:56 +02001109bool acpi_driver_match_device(struct device *dev,
1110 const struct device_driver *drv)
1111{
1112 if (!drv->acpi_match_table)
Rafael J. Wysocki2b9c6982015-04-10 16:07:51 +02001113 return acpi_of_match_device(ACPI_COMPANION(dev),
1114 drv->of_match_table);
Mika Westerberg733e6252014-10-21 13:33:56 +02001115
Rafael J. Wysocki2b9c6982015-04-10 16:07:51 +02001116 return !!__acpi_match_device(acpi_companion_match(dev),
1117 drv->acpi_match_table, drv->of_match_table);
Mika Westerberg733e6252014-10-21 13:33:56 +02001118}
1119EXPORT_SYMBOL_GPL(acpi_driver_match_device);
1120
Rafael J. Wysocki0b224522013-01-17 14:11:06 +01001121static void acpi_free_power_resources_lists(struct acpi_device *device)
1122{
1123 int i;
1124
Rafael J. Wysocki993cbe52013-01-17 14:11:06 +01001125 if (device->wakeup.flags.valid)
1126 acpi_power_resources_list_free(&device->wakeup.resources);
1127
Rafael J. Wysocki1b1f3e12015-01-01 23:38:28 +01001128 if (!device->power.flags.power_resources)
Rafael J. Wysocki0b224522013-01-17 14:11:06 +01001129 return;
1130
1131 for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3_HOT; i++) {
1132 struct acpi_device_power_state *ps = &device->power.states[i];
1133 acpi_power_resources_list_free(&ps->resources);
1134 }
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001135}
1136
Patrick Mochel1890a972006-12-07 20:56:31 +08001137static void acpi_device_release(struct device *dev)
1138{
1139 struct acpi_device *acpi_dev = to_acpi_device(dev);
1140
Mika Westerbergffdcd952014-10-21 13:33:55 +02001141 acpi_free_properties(acpi_dev);
Toshi Kanic0af4172013-03-04 21:30:42 +00001142 acpi_free_pnp_ids(&acpi_dev->pnp);
Rafael J. Wysocki0b224522013-01-17 14:11:06 +01001143 acpi_free_power_resources_lists(acpi_dev);
Patrick Mochel1890a972006-12-07 20:56:31 +08001144 kfree(acpi_dev);
1145}
1146
Patrick Mochel5d9464a2006-12-07 20:56:27 +08001147static int acpi_bus_match(struct device *dev, struct device_driver *drv)
1148{
1149 struct acpi_device *acpi_dev = to_acpi_device(dev);
1150 struct acpi_driver *acpi_drv = to_acpi_driver(drv);
1151
Rafael J. Wysocki209d3b12012-12-21 00:36:48 +01001152 return acpi_dev->flags.match_driver
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001153 && !acpi_match_device_ids(acpi_dev, acpi_drv->ids);
Patrick Mochel5d9464a2006-12-07 20:56:27 +08001154}
1155
Kay Sievers7eff2e72007-08-14 15:15:12 +02001156static int acpi_device_uevent(struct device *dev, struct kobj_uevent_env *env)
Patrick Mochel5d9464a2006-12-07 20:56:27 +08001157{
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +02001158 return __acpi_device_uevent_modalias(to_acpi_device(dev), env);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159}
1160
Bjorn Helgaas46ec8592009-03-30 17:48:13 +00001161static void acpi_device_notify(acpi_handle handle, u32 event, void *data)
1162{
1163 struct acpi_device *device = data;
1164
1165 device->driver->ops.notify(device, event);
1166}
1167
Lan Tianyu236105d2014-08-26 01:29:24 +02001168static void acpi_device_notify_fixed(void *data)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +00001169{
1170 struct acpi_device *device = data;
1171
Bjorn Helgaas53de5352009-08-31 22:32:20 +00001172 /* Fixed hardware devices have no handles */
1173 acpi_device_notify(NULL, ACPI_FIXED_HARDWARE_EVENT, device);
Lan Tianyu236105d2014-08-26 01:29:24 +02001174}
1175
Aaron Lufd9caef2015-03-13 13:52:50 +08001176static u32 acpi_device_fixed_event(void *data)
Lan Tianyu236105d2014-08-26 01:29:24 +02001177{
1178 acpi_os_execute(OSL_NOTIFY_HANDLER, acpi_device_notify_fixed, data);
Aaron Lufd9caef2015-03-13 13:52:50 +08001179 return ACPI_INTERRUPT_HANDLED;
Bjorn Helgaas46ec8592009-03-30 17:48:13 +00001180}
1181
1182static int acpi_device_install_notify_handler(struct acpi_device *device)
1183{
1184 acpi_status status;
Bjorn Helgaas46ec8592009-03-30 17:48:13 +00001185
Bjorn Helgaasccba2a32009-09-21 19:29:15 +00001186 if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +00001187 status =
1188 acpi_install_fixed_event_handler(ACPI_EVENT_POWER_BUTTON,
Lan Tianyu236105d2014-08-26 01:29:24 +02001189 acpi_device_fixed_event,
Bjorn Helgaas46ec8592009-03-30 17:48:13 +00001190 device);
Bjorn Helgaasccba2a32009-09-21 19:29:15 +00001191 else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +00001192 status =
1193 acpi_install_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON,
Lan Tianyu236105d2014-08-26 01:29:24 +02001194 acpi_device_fixed_event,
Bjorn Helgaas46ec8592009-03-30 17:48:13 +00001195 device);
1196 else
1197 status = acpi_install_notify_handler(device->handle,
1198 ACPI_DEVICE_NOTIFY,
1199 acpi_device_notify,
1200 device);
1201
1202 if (ACPI_FAILURE(status))
1203 return -EINVAL;
1204 return 0;
1205}
1206
1207static void acpi_device_remove_notify_handler(struct acpi_device *device)
1208{
Bjorn Helgaasccba2a32009-09-21 19:29:15 +00001209 if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +00001210 acpi_remove_fixed_event_handler(ACPI_EVENT_POWER_BUTTON,
Lan Tianyu236105d2014-08-26 01:29:24 +02001211 acpi_device_fixed_event);
Bjorn Helgaasccba2a32009-09-21 19:29:15 +00001212 else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +00001213 acpi_remove_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON,
Lan Tianyu236105d2014-08-26 01:29:24 +02001214 acpi_device_fixed_event);
Bjorn Helgaas46ec8592009-03-30 17:48:13 +00001215 else
1216 acpi_remove_notify_handler(device->handle, ACPI_DEVICE_NOTIFY,
1217 acpi_device_notify);
1218}
1219
Rafael J. Wysockid9e455f2013-06-10 13:00:50 +02001220static int acpi_device_probe(struct device *dev)
Zhang Rui9e89dde2006-12-07 20:56:16 +08001221{
Patrick Mochel5d9464a2006-12-07 20:56:27 +08001222 struct acpi_device *acpi_dev = to_acpi_device(dev);
1223 struct acpi_driver *acpi_drv = to_acpi_driver(dev->driver);
1224 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
Rafael J. Wysockifc2e0a82014-08-26 01:29:21 +02001226 if (acpi_dev->handler && !acpi_is_pnp_device(acpi_dev))
Rafael J. Wysocki24071f42013-06-16 00:36:41 +02001227 return -EINVAL;
Bjorn Helgaas46ec8592009-03-30 17:48:13 +00001228
Rafael J. Wysockid9e455f2013-06-10 13:00:50 +02001229 if (!acpi_drv->ops.add)
1230 return -ENOSYS;
Li Shaohuac4168bf2006-12-07 20:56:41 +08001231
Rafael J. Wysockid9e455f2013-06-10 13:00:50 +02001232 ret = acpi_drv->ops.add(acpi_dev);
1233 if (ret)
1234 return ret;
1235
1236 acpi_dev->driver = acpi_drv;
1237 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1238 "Driver [%s] successfully bound to device [%s]\n",
1239 acpi_drv->name, acpi_dev->pnp.bus_id));
1240
1241 if (acpi_drv->ops.notify) {
1242 ret = acpi_device_install_notify_handler(acpi_dev);
1243 if (ret) {
1244 if (acpi_drv->ops.remove)
1245 acpi_drv->ops.remove(acpi_dev);
1246
1247 acpi_dev->driver = NULL;
1248 acpi_dev->driver_data = NULL;
1249 return ret;
1250 }
Zhang Rui9e89dde2006-12-07 20:56:16 +08001251 }
Rafael J. Wysockid9e455f2013-06-10 13:00:50 +02001252
1253 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found driver [%s] for device [%s]\n",
1254 acpi_drv->name, acpi_dev->pnp.bus_id));
1255 get_device(dev);
1256 return 0;
Patrick Mochel5d9464a2006-12-07 20:56:27 +08001257}
1258
1259static int acpi_device_remove(struct device * dev)
1260{
1261 struct acpi_device *acpi_dev = to_acpi_device(dev);
1262 struct acpi_driver *acpi_drv = acpi_dev->driver;
1263
1264 if (acpi_drv) {
Bjorn Helgaas46ec8592009-03-30 17:48:13 +00001265 if (acpi_drv->ops.notify)
1266 acpi_device_remove_notify_handler(acpi_dev);
Patrick Mochel5d9464a2006-12-07 20:56:27 +08001267 if (acpi_drv->ops.remove)
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01001268 acpi_drv->ops.remove(acpi_dev);
Patrick Mochel5d9464a2006-12-07 20:56:27 +08001269 }
1270 acpi_dev->driver = NULL;
Pavel Machekdb89b4f2008-09-22 14:37:34 -07001271 acpi_dev->driver_data = NULL;
Patrick Mochel5d9464a2006-12-07 20:56:27 +08001272
1273 put_device(dev);
Zhang Rui9e89dde2006-12-07 20:56:16 +08001274 return 0;
1275}
1276
David Brownell55955aa2007-05-08 00:28:35 -07001277struct bus_type acpi_bus_type = {
Zhang Rui9e89dde2006-12-07 20:56:16 +08001278 .name = "acpi",
Patrick Mochel5d9464a2006-12-07 20:56:27 +08001279 .match = acpi_bus_match,
1280 .probe = acpi_device_probe,
1281 .remove = acpi_device_remove,
1282 .uevent = acpi_device_uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283};
1284
Rafael J. Wysockid7831562013-11-22 21:52:12 +01001285static void acpi_device_del(struct acpi_device *device)
Rafael J. Wysockicaf5c032013-07-30 14:38:34 +02001286{
Rafael J. Wysockid7831562013-11-22 21:52:12 +01001287 mutex_lock(&acpi_device_lock);
1288 if (device->parent)
1289 list_del(&device->node);
1290
1291 list_del(&device->wakeup_list);
1292 mutex_unlock(&acpi_device_lock);
1293
1294 acpi_power_add_remove_device(device, false);
1295 acpi_device_remove_files(device);
1296 if (device->remove)
1297 device->remove(device);
1298
1299 device_del(&device->dev);
1300}
1301
1302static LIST_HEAD(acpi_device_del_list);
1303static DEFINE_MUTEX(acpi_device_del_lock);
1304
1305static void acpi_device_del_work_fn(struct work_struct *work_not_used)
1306{
1307 for (;;) {
1308 struct acpi_device *adev;
1309
1310 mutex_lock(&acpi_device_del_lock);
1311
1312 if (list_empty(&acpi_device_del_list)) {
1313 mutex_unlock(&acpi_device_del_lock);
1314 break;
1315 }
1316 adev = list_first_entry(&acpi_device_del_list,
1317 struct acpi_device, del_list);
1318 list_del(&adev->del_list);
1319
1320 mutex_unlock(&acpi_device_del_lock);
1321
1322 acpi_device_del(adev);
1323 /*
1324 * Drop references to all power resources that might have been
1325 * used by the device.
1326 */
1327 acpi_power_transition(adev, ACPI_STATE_D3_COLD);
1328 put_device(&adev->dev);
1329 }
1330}
1331
1332/**
1333 * acpi_scan_drop_device - Drop an ACPI device object.
1334 * @handle: Handle of an ACPI namespace node, not used.
1335 * @context: Address of the ACPI device object to drop.
1336 *
1337 * This is invoked by acpi_ns_delete_node() during the removal of the ACPI
1338 * namespace node the device object pointed to by @context is attached to.
1339 *
1340 * The unregistration is carried out asynchronously to avoid running
1341 * acpi_device_del() under the ACPICA's namespace mutex and the list is used to
1342 * ensure the correct ordering (the device objects must be unregistered in the
1343 * same order in which the corresponding namespace nodes are deleted).
1344 */
1345static void acpi_scan_drop_device(acpi_handle handle, void *context)
1346{
1347 static DECLARE_WORK(work, acpi_device_del_work_fn);
1348 struct acpi_device *adev = context;
1349
1350 mutex_lock(&acpi_device_del_lock);
1351
1352 /*
1353 * Use the ACPI hotplug workqueue which is ordered, so this work item
1354 * won't run after any hotplug work items submitted subsequently. That
1355 * prevents attempts to register device objects identical to those being
1356 * deleted from happening concurrently (such attempts result from
1357 * hotplug events handled via the ACPI hotplug workqueue). It also will
1358 * run after all of the work items submitted previosuly, which helps
1359 * those work items to ensure that they are not accessing stale device
1360 * objects.
1361 */
1362 if (list_empty(&acpi_device_del_list))
1363 acpi_queue_hotplug_work(&work);
1364
1365 list_add_tail(&adev->del_list, &acpi_device_del_list);
1366 /* Make acpi_ns_validate_handle() return NULL for this handle. */
1367 adev->handle = INVALID_ACPI_HANDLE;
1368
1369 mutex_unlock(&acpi_device_del_lock);
Rafael J. Wysockicaf5c032013-07-30 14:38:34 +02001370}
1371
Rafael J. Wysocki78ea4632014-02-04 00:43:05 +01001372static int acpi_get_device_data(acpi_handle handle, struct acpi_device **device,
1373 void (*callback)(void *))
Rafael J. Wysockicaf5c032013-07-30 14:38:34 +02001374{
1375 acpi_status status;
1376
1377 if (!device)
1378 return -EINVAL;
1379
Rafael J. Wysocki78ea4632014-02-04 00:43:05 +01001380 status = acpi_get_data_full(handle, acpi_scan_drop_device,
1381 (void **)device, callback);
Rafael J. Wysockicaf5c032013-07-30 14:38:34 +02001382 if (ACPI_FAILURE(status) || !*device) {
1383 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No context for object [%p]\n",
1384 handle));
1385 return -ENODEV;
1386 }
1387 return 0;
1388}
Rafael J. Wysocki78ea4632014-02-04 00:43:05 +01001389
1390int acpi_bus_get_device(acpi_handle handle, struct acpi_device **device)
1391{
1392 return acpi_get_device_data(handle, device, NULL);
1393}
Rafael J. Wysocki65859252013-10-01 23:02:43 +02001394EXPORT_SYMBOL(acpi_bus_get_device);
Rafael J. Wysockicaf5c032013-07-30 14:38:34 +02001395
Rafael J. Wysocki78ea4632014-02-04 00:43:05 +01001396static void get_acpi_device(void *dev)
1397{
1398 if (dev)
1399 get_device(&((struct acpi_device *)dev)->dev);
1400}
1401
1402struct acpi_device *acpi_bus_get_acpi_device(acpi_handle handle)
1403{
1404 struct acpi_device *adev = NULL;
1405
1406 acpi_get_device_data(handle, &adev, get_acpi_device);
1407 return adev;
1408}
1409
1410void acpi_bus_put_acpi_device(struct acpi_device *adev)
1411{
1412 put_device(&adev->dev);
1413}
1414
Rafael J. Wysockicf860be2013-01-24 12:49:49 +01001415int acpi_device_add(struct acpi_device *device,
1416 void (*release)(struct device *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417{
Zhang Ruie49bd2dd2006-12-08 17:23:43 +08001418 int result;
1419 struct acpi_device_bus_id *acpi_device_bus_id, *new_bus_id;
1420 int found = 0;
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +00001421
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001422 if (device->handle) {
1423 acpi_status status;
1424
Rafael J. Wysockid7831562013-11-22 21:52:12 +01001425 status = acpi_attach_data(device->handle, acpi_scan_drop_device,
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001426 device);
1427 if (ACPI_FAILURE(status)) {
1428 acpi_handle_err(device->handle,
1429 "Unable to attach device data\n");
1430 return -ENODEV;
1431 }
1432 }
1433
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 /*
1435 * Linkage
1436 * -------
1437 * Link this device to its parent and siblings.
1438 */
1439 INIT_LIST_HEAD(&device->children);
1440 INIT_LIST_HEAD(&device->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 INIT_LIST_HEAD(&device->wakeup_list);
Lan Tianyu1033f902012-08-17 14:44:09 +08001442 INIT_LIST_HEAD(&device->physical_node_list);
Rafael J. Wysockid7831562013-11-22 21:52:12 +01001443 INIT_LIST_HEAD(&device->del_list);
Lan Tianyu1033f902012-08-17 14:44:09 +08001444 mutex_init(&device->physical_node_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
Zhang Ruie49bd2dd2006-12-08 17:23:43 +08001446 new_bus_id = kzalloc(sizeof(struct acpi_device_bus_id), GFP_KERNEL);
1447 if (!new_bus_id) {
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001448 pr_err(PREFIX "Memory allocation error\n");
1449 result = -ENOMEM;
1450 goto err_detach;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +08001451 }
1452
Shaohua Li90905892009-04-07 10:24:29 +08001453 mutex_lock(&acpi_device_lock);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +08001454 /*
1455 * Find suitable bus_id and instance number in acpi_bus_id_list
1456 * If failed, create one and link it into acpi_bus_id_list
1457 */
1458 list_for_each_entry(acpi_device_bus_id, &acpi_bus_id_list, node) {
Bjorn Helgaas1131b932009-09-21 13:35:29 -06001459 if (!strcmp(acpi_device_bus_id->bus_id,
1460 acpi_device_hid(device))) {
1461 acpi_device_bus_id->instance_no++;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +08001462 found = 1;
1463 kfree(new_bus_id);
1464 break;
1465 }
1466 }
Alex Chiang0c526d92009-05-14 08:31:37 -06001467 if (!found) {
Zhang Ruie49bd2dd2006-12-08 17:23:43 +08001468 acpi_device_bus_id = new_bus_id;
Bjorn Helgaas1131b932009-09-21 13:35:29 -06001469 strcpy(acpi_device_bus_id->bus_id, acpi_device_hid(device));
Zhang Ruie49bd2dd2006-12-08 17:23:43 +08001470 acpi_device_bus_id->instance_no = 0;
1471 list_add_tail(&acpi_device_bus_id->node, &acpi_bus_id_list);
1472 }
Kay Sievers07944692008-10-30 01:18:59 +01001473 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 +08001474
Len Brown33b57152008-12-15 22:09:26 -05001475 if (device->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 list_add_tail(&device->node, &device->parent->children);
Len Brown33b57152008-12-15 22:09:26 -05001477
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 if (device->wakeup.flags.valid)
1479 list_add_tail(&device->wakeup_list, &acpi_wakeup_device_list);
Shaohua Li90905892009-04-07 10:24:29 +08001480 mutex_unlock(&acpi_device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
Patrick Mochel1890a972006-12-07 20:56:31 +08001482 if (device->parent)
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +00001483 device->dev.parent = &device->parent->dev;
Patrick Mochel1890a972006-12-07 20:56:31 +08001484 device->dev.bus = &acpi_bus_type;
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +01001485 device->dev.release = release;
Rafael J. Wysockicf860be2013-01-24 12:49:49 +01001486 result = device_add(&device->dev);
Alex Chiang0c526d92009-05-14 08:31:37 -06001487 if (result) {
Alex Chiang8b12b922009-05-14 08:31:32 -06001488 dev_err(&device->dev, "Error registering device\n");
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001489 goto err;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +08001490 }
Patrick Mochelf883d9d2006-12-07 20:56:38 +08001491
Zhang Ruie49bd2dd2006-12-08 17:23:43 +08001492 result = acpi_device_setup_files(device);
Alex Chiang0c526d92009-05-14 08:31:37 -06001493 if (result)
Kay Sievers07944692008-10-30 01:18:59 +01001494 printk(KERN_ERR PREFIX "Error creating sysfs interface for device %s\n",
1495 dev_name(&device->dev));
Zhang Ruie49bd2dd2006-12-08 17:23:43 +08001496
Zhang Ruie49bd2dd2006-12-08 17:23:43 +08001497 return 0;
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001498
1499 err:
Shaohua Li90905892009-04-07 10:24:29 +08001500 mutex_lock(&acpi_device_lock);
Len Brown33b57152008-12-15 22:09:26 -05001501 if (device->parent)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +08001502 list_del(&device->node);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +08001503 list_del(&device->wakeup_list);
Shaohua Li90905892009-04-07 10:24:29 +08001504 mutex_unlock(&acpi_device_lock);
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001505
1506 err_detach:
Rafael J. Wysockid7831562013-11-22 21:52:12 +01001507 acpi_detach_data(device->handle, acpi_scan_drop_device);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +08001508 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509}
1510
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +01001511struct acpi_device *acpi_get_next_child(struct device *dev,
1512 struct acpi_device *child)
1513{
1514 struct acpi_device *adev = ACPI_COMPANION(dev);
1515 struct list_head *head, *next;
1516
1517 if (!adev)
1518 return NULL;
1519
1520 head = &adev->children;
1521 if (list_empty(head))
1522 return NULL;
1523
1524 if (!child)
1525 return list_first_entry(head, struct acpi_device, node);
1526
1527 next = child->node.next;
1528 return next == head ? NULL : list_entry(next, struct acpi_device, node);
1529}
1530
Zhang Rui9e89dde2006-12-07 20:56:16 +08001531/* --------------------------------------------------------------------------
1532 Driver Management
1533 -------------------------------------------------------------------------- */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534/**
Randy Dunlapd758a8f2006-01-06 01:31:00 -05001535 * acpi_bus_register_driver - register a driver with the ACPI bus
1536 * @driver: driver being registered
1537 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 * Registers a driver with the ACPI bus. Searches the namespace for all
Bjorn Helgaas9d9f7492006-03-28 17:04:00 -05001539 * devices that match the driver's criteria and binds. Returns zero for
1540 * success or a negative error status for failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 */
Len Brown4be44fc2005-08-05 00:44:28 -04001542int acpi_bus_register_driver(struct acpi_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543{
Patrick Mochel1890a972006-12-07 20:56:31 +08001544 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
1546 if (acpi_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -04001547 return -ENODEV;
Patrick Mochel1890a972006-12-07 20:56:31 +08001548 driver->drv.name = driver->name;
1549 driver->drv.bus = &acpi_bus_type;
1550 driver->drv.owner = driver->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
Patrick Mochel1890a972006-12-07 20:56:31 +08001552 ret = driver_register(&driver->drv);
1553 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
Len Brown4be44fc2005-08-05 00:44:28 -04001556EXPORT_SYMBOL(acpi_bus_register_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
1558/**
Hanjun Guob27b14c2013-09-22 15:42:41 +08001559 * acpi_bus_unregister_driver - unregisters a driver with the ACPI bus
Randy Dunlapd758a8f2006-01-06 01:31:00 -05001560 * @driver: driver to unregister
1561 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 * Unregisters a driver with the ACPI bus. Searches the namespace for all
1563 * devices that match the driver's criteria and unbinds.
1564 */
Bjorn Helgaas06ea8e082006-04-27 05:25:00 -04001565void acpi_bus_unregister_driver(struct acpi_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566{
Patrick Mochel1890a972006-12-07 20:56:31 +08001567 driver_unregister(&driver->drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568}
Len Brown4be44fc2005-08-05 00:44:28 -04001569
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570EXPORT_SYMBOL(acpi_bus_unregister_driver);
1571
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572/* --------------------------------------------------------------------------
1573 Device Enumeration
1574 -------------------------------------------------------------------------- */
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001575static struct acpi_device *acpi_bus_get_parent(acpi_handle handle)
1576{
Rafael J. Wysocki456de892013-01-31 20:57:40 +01001577 struct acpi_device *device = NULL;
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001578 acpi_status status;
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001579
1580 /*
1581 * Fixed hardware devices do not appear in the namespace and do not
1582 * have handles, but we fabricate acpi_devices for them, so we have
1583 * to deal with them specially.
1584 */
Rafael J. Wysocki456de892013-01-31 20:57:40 +01001585 if (!handle)
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001586 return acpi_root;
1587
1588 do {
1589 status = acpi_get_parent(handle, &handle);
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001590 if (ACPI_FAILURE(status))
Rafael J. Wysocki456de892013-01-31 20:57:40 +01001591 return status == AE_NULL_ENTRY ? NULL : acpi_root;
1592 } while (acpi_bus_get_device(handle, &device));
1593 return device;
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001594}
1595
Len Brownc8f7a622006-07-09 17:22:28 -04001596acpi_status
1597acpi_bus_get_ejd(acpi_handle handle, acpi_handle *ejd)
1598{
1599 acpi_status status;
1600 acpi_handle tmp;
1601 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
1602 union acpi_object *obj;
1603
1604 status = acpi_get_handle(handle, "_EJD", &tmp);
1605 if (ACPI_FAILURE(status))
1606 return status;
1607
1608 status = acpi_evaluate_object(handle, "_EJD", NULL, &buffer);
1609 if (ACPI_SUCCESS(status)) {
1610 obj = buffer.pointer;
Holger Macht3b5fee52008-02-14 13:40:34 +01001611 status = acpi_get_handle(ACPI_ROOT_OBJECT, obj->string.pointer,
1612 ejd);
Len Brownc8f7a622006-07-09 17:22:28 -04001613 kfree(buffer.pointer);
1614 }
1615 return status;
1616}
1617EXPORT_SYMBOL_GPL(acpi_bus_get_ejd);
1618
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001619static int acpi_bus_extract_wakeup_device_power_package(acpi_handle handle,
1620 struct acpi_device_wakeup *wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621{
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001622 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1623 union acpi_object *package = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 union acpi_object *element = NULL;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001625 acpi_status status;
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001626 int err = -ENODATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001628 if (!wakeup)
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001629 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
Rafael J. Wysocki993cbe52013-01-17 14:11:06 +01001631 INIT_LIST_HEAD(&wakeup->resources);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001633 /* _PRW */
1634 status = acpi_evaluate_object(handle, "_PRW", NULL, &buffer);
1635 if (ACPI_FAILURE(status)) {
1636 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PRW"));
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001637 return err;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001638 }
1639
1640 package = (union acpi_object *)buffer.pointer;
1641
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001642 if (!package || package->package.count < 2)
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001643 goto out;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001644
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 element = &(package->package.elements[0]);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001646 if (!element)
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001647 goto out;
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001648
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 if (element->type == ACPI_TYPE_PACKAGE) {
1650 if ((element->package.count < 2) ||
1651 (element->package.elements[0].type !=
1652 ACPI_TYPE_LOCAL_REFERENCE)
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001653 || (element->package.elements[1].type != ACPI_TYPE_INTEGER))
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001654 goto out;
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001655
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001656 wakeup->gpe_device =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 element->package.elements[0].reference.handle;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001658 wakeup->gpe_number =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 (u32) element->package.elements[1].integer.value;
1660 } else if (element->type == ACPI_TYPE_INTEGER) {
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001661 wakeup->gpe_device = NULL;
1662 wakeup->gpe_number = element->integer.value;
1663 } else {
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001664 goto out;
1665 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
1667 element = &(package->package.elements[1]);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001668 if (element->type != ACPI_TYPE_INTEGER)
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001669 goto out;
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001670
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001671 wakeup->sleep_state = element->integer.value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001673 err = acpi_extract_power_resources(package, 2, &wakeup->resources);
1674 if (err)
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001675 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676
Rafael J. Wysocki0596a522013-01-17 14:11:07 +01001677 if (!list_empty(&wakeup->resources)) {
1678 int sleep_state;
1679
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +01001680 err = acpi_power_wakeup_list_init(&wakeup->resources,
1681 &sleep_state);
1682 if (err) {
1683 acpi_handle_warn(handle, "Retrieving current states "
1684 "of wakeup power resources failed\n");
1685 acpi_power_resources_list_free(&wakeup->resources);
1686 goto out;
1687 }
Rafael J. Wysocki0596a522013-01-17 14:11:07 +01001688 if (sleep_state < wakeup->sleep_state) {
1689 acpi_handle_warn(handle, "Overriding _PRW sleep state "
1690 "(S%d) by S%d from power resources\n",
1691 (int)wakeup->sleep_state, sleep_state);
1692 wakeup->sleep_state = sleep_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 }
Rafael J. Wysocki98746472010-07-08 00:43:36 +02001695
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001696 out:
1697 kfree(buffer.pointer);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001698 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699}
1700
Rafael J. Wysockibd9b2f92014-07-14 22:41:41 +02001701static void acpi_wakeup_gpe_init(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702{
Mathias Krause0519ade2015-06-13 14:26:58 +02001703 static const struct acpi_device_id button_device_ids[] = {
Thomas Renninger29b71a12007-07-23 14:43:51 +02001704 {"PNP0C0C", 0},
Zhang Ruib7e38302012-12-04 23:23:16 +01001705 {"PNP0C0D", 0},
Thomas Renninger29b71a12007-07-23 14:43:51 +02001706 {"PNP0C0E", 0},
1707 {"", 0},
1708 };
Rafael J. Wysockibd9b2f92014-07-14 22:41:41 +02001709 struct acpi_device_wakeup *wakeup = &device->wakeup;
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001710 acpi_status status;
1711 acpi_event_status event_status;
1712
Rafael J. Wysockibd9b2f92014-07-14 22:41:41 +02001713 wakeup->flags.notifier_present = 0;
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001714
1715 /* Power button, Lid switch always enable wakeup */
1716 if (!acpi_match_device_ids(device, button_device_ids)) {
Rafael J. Wysockibd9b2f92014-07-14 22:41:41 +02001717 wakeup->flags.run_wake = 1;
Zhang Ruib7e38302012-12-04 23:23:16 +01001718 if (!acpi_match_device_ids(device, &button_device_ids[1])) {
1719 /* Do not use Lid/sleep button for S5 wakeup */
Rafael J. Wysockibd9b2f92014-07-14 22:41:41 +02001720 if (wakeup->sleep_state == ACPI_STATE_S5)
1721 wakeup->sleep_state = ACPI_STATE_S4;
Zhang Ruib7e38302012-12-04 23:23:16 +01001722 }
Rafael J. Wysockibd9b2f92014-07-14 22:41:41 +02001723 acpi_mark_gpe_for_wake(wakeup->gpe_device, wakeup->gpe_number);
Rafael J. Wysockif2b56bc2011-01-06 23:34:22 +01001724 device_set_wakeup_capable(&device->dev, true);
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001725 return;
1726 }
1727
Rafael J. Wysockibd9b2f92014-07-14 22:41:41 +02001728 acpi_setup_gpe_for_wake(device->handle, wakeup->gpe_device,
1729 wakeup->gpe_number);
1730 status = acpi_get_gpe_status(wakeup->gpe_device, wakeup->gpe_number,
1731 &event_status);
1732 if (ACPI_FAILURE(status))
1733 return;
1734
Lv Zheng2f857232014-10-10 10:40:05 +08001735 wakeup->flags.run_wake = !!(event_status & ACPI_EVENT_FLAG_HAS_HANDLER);
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001736}
1737
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01001738static void acpi_bus_get_wakeup_device_flags(struct acpi_device *device)
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001739{
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001740 int err;
Thomas Renninger29b71a12007-07-23 14:43:51 +02001741
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01001742 /* Presence of _PRW indicates wake capable */
Jiang Liu952c63e2013-06-29 00:24:38 +08001743 if (!acpi_has_method(device->handle, "_PRW"))
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01001744 return;
1745
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001746 err = acpi_bus_extract_wakeup_device_power_package(device->handle,
1747 &device->wakeup);
1748 if (err) {
1749 dev_err(&device->dev, "_PRW evaluation error: %d\n", err);
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01001750 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 }
1752
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 device->wakeup.flags.valid = 1;
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +02001754 device->wakeup.prepare_count = 0;
Rafael J. Wysockibd9b2f92014-07-14 22:41:41 +02001755 acpi_wakeup_gpe_init(device);
Zhao Yakui729b2bd2008-03-19 13:26:54 +08001756 /* Call _PSW/_DSW object to disable its ability to wake the sleeping
1757 * system for the ACPI device with the _PRW object.
1758 * The _PSW object is depreciated in ACPI 3.0 and is replaced by _DSW.
1759 * So it is necessary to call _DSW object first. Only when it is not
1760 * present will the _PSW object used.
1761 */
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001762 err = acpi_device_sleep_wake(device, 0, 0, 0);
1763 if (err)
Rafael J. Wysocki77e76602008-07-07 03:33:34 +02001764 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1765 "error in _DSW or _PSW evaluation\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766}
1767
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001768static void acpi_bus_init_power_state(struct acpi_device *device, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769{
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001770 struct acpi_device_power_state *ps = &device->power.states[state];
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001771 char pathname[5] = { '_', 'P', 'R', '0' + state, '\0' };
1772 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001773 acpi_status status;
Zhang Rui9e89dde2006-12-07 20:56:16 +08001774
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001775 INIT_LIST_HEAD(&ps->resources);
1776
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001777 /* Evaluate "_PRx" to get referenced power resources */
1778 status = acpi_evaluate_object(device->handle, pathname, NULL, &buffer);
1779 if (ACPI_SUCCESS(status)) {
1780 union acpi_object *package = buffer.pointer;
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001781
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001782 if (buffer.length && package
1783 && package->type == ACPI_TYPE_PACKAGE
1784 && package->package.count) {
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001785 int err = acpi_extract_power_resources(package, 0,
1786 &ps->resources);
1787 if (!err)
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001788 device->power.flags.power_resources = 1;
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001789 }
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001790 ACPI_FREE(buffer.pointer);
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001791 }
1792
1793 /* Evaluate "_PSx" to see if we can do explicit sets */
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001794 pathname[2] = 'S';
Jiang Liu952c63e2013-06-29 00:24:38 +08001795 if (acpi_has_method(device->handle, pathname))
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001796 ps->flags.explicit_set = 1;
1797
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +02001798 /* State is valid if there are means to put the device into it. */
1799 if (!list_empty(&ps->resources) || ps->flags.explicit_set)
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001800 ps->flags.valid = 1;
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001801
1802 ps->power = -1; /* Unknown - driver assigned */
1803 ps->latency = -1; /* Unknown - driver assigned */
1804}
1805
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001806static void acpi_bus_get_power_flags(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807{
Rafael J. Wysocki8bc50532013-01-17 14:11:07 +01001808 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001810 /* Presence of _PS0|_PR0 indicates 'power manageable' */
Jiang Liu952c63e2013-06-29 00:24:38 +08001811 if (!acpi_has_method(device->handle, "_PS0") &&
1812 !acpi_has_method(device->handle, "_PR0"))
1813 return;
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001814
1815 device->flags.power_manageable = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816
1817 /*
Zhang Rui9e89dde2006-12-07 20:56:16 +08001818 * Power Management Flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 */
Jiang Liu952c63e2013-06-29 00:24:38 +08001820 if (acpi_has_method(device->handle, "_PSC"))
Zhang Rui9e89dde2006-12-07 20:56:16 +08001821 device->power.flags.explicit_get = 1;
Rafael J. Wysockif25c0ae2014-05-17 00:18:13 +02001822
Jiang Liu952c63e2013-06-29 00:24:38 +08001823 if (acpi_has_method(device->handle, "_IRC"))
Zhang Rui9e89dde2006-12-07 20:56:16 +08001824 device->power.flags.inrush_current = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825
Rafael J. Wysockif25c0ae2014-05-17 00:18:13 +02001826 if (acpi_has_method(device->handle, "_DSW"))
1827 device->power.flags.dsw_present = 1;
1828
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 /*
Zhang Rui9e89dde2006-12-07 20:56:16 +08001830 * Enumerate supported power management states
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 */
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001832 for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3_HOT; i++)
1833 acpi_bus_init_power_state(device, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
Rafael J. Wysocki0b224522013-01-17 14:11:06 +01001835 INIT_LIST_HEAD(&device->power.states[ACPI_STATE_D3_COLD].resources);
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +02001836 if (!list_empty(&device->power.states[ACPI_STATE_D3_HOT].resources))
1837 device->power.states[ACPI_STATE_D3_COLD].flags.valid = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +02001839 /* Set defaults for D0 and D3hot states (always valid) */
Zhang Rui9e89dde2006-12-07 20:56:16 +08001840 device->power.states[ACPI_STATE_D0].flags.valid = 1;
1841 device->power.states[ACPI_STATE_D0].power = 100;
Rafael J. Wysocki20dacb72015-05-16 01:55:35 +02001842 device->power.states[ACPI_STATE_D3_HOT].flags.valid = 1;
Aaron Lu1399dfc2012-11-21 23:33:40 +01001843
Rafael J. Wysocki1b1f3e12015-01-01 23:38:28 +01001844 if (acpi_bus_init_power(device))
Rafael J. Wysockib3785492013-02-01 23:43:02 +01001845 device->flags.power_manageable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846}
1847
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001848static void acpi_bus_get_flags(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 /* Presence of _STA indicates 'dynamic_status' */
Jiang Liu952c63e2013-06-29 00:24:38 +08001851 if (acpi_has_method(device->handle, "_STA"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 device->flags.dynamic_status = 1;
1853
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 /* Presence of _RMV indicates 'removable' */
Jiang Liu952c63e2013-06-29 00:24:38 +08001855 if (acpi_has_method(device->handle, "_RMV"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 device->flags.removable = 1;
1857
1858 /* Presence of _EJD|_EJ0 indicates 'ejectable' */
Jiang Liu952c63e2013-06-29 00:24:38 +08001859 if (acpi_has_method(device->handle, "_EJD") ||
1860 acpi_has_method(device->handle, "_EJ0"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 device->flags.ejectable = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862}
1863
Bjorn Helgaasc7bcb4e2009-09-21 19:29:25 +00001864static void acpi_device_get_busid(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865{
Len Brown4be44fc2005-08-05 00:44:28 -04001866 char bus_id[5] = { '?', 0 };
1867 struct acpi_buffer buffer = { sizeof(bus_id), bus_id };
1868 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
1870 /*
1871 * Bus ID
1872 * ------
1873 * The device's Bus ID is simply the object name.
1874 * TBD: Shouldn't this value be unique (within the ACPI namespace)?
1875 */
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +00001876 if (ACPI_IS_ROOT_DEVICE(device)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 strcpy(device->pnp.bus_id, "ACPI");
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +00001878 return;
1879 }
1880
1881 switch (device->device_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 case ACPI_BUS_TYPE_POWER_BUTTON:
1883 strcpy(device->pnp.bus_id, "PWRF");
1884 break;
1885 case ACPI_BUS_TYPE_SLEEP_BUTTON:
1886 strcpy(device->pnp.bus_id, "SLPF");
1887 break;
1888 default:
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +00001889 acpi_get_name(device->handle, ACPI_SINGLE_NAME, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 /* Clean up trailing underscores (if any) */
1891 for (i = 3; i > 1; i--) {
1892 if (bus_id[i] == '_')
1893 bus_id[i] = '\0';
1894 else
1895 break;
1896 }
1897 strcpy(device->pnp.bus_id, bus_id);
1898 break;
1899 }
1900}
1901
Zhang Rui54735262007-01-11 02:09:09 -05001902/*
Jiang Liuebf4df82013-06-29 00:24:41 +08001903 * acpi_ata_match - see if an acpi object is an ATA device
1904 *
1905 * If an acpi object has one of the ACPI ATA methods defined,
1906 * then we can safely call it an ATA device.
1907 */
1908bool acpi_ata_match(acpi_handle handle)
1909{
1910 return acpi_has_method(handle, "_GTF") ||
1911 acpi_has_method(handle, "_GTM") ||
1912 acpi_has_method(handle, "_STM") ||
1913 acpi_has_method(handle, "_SDD");
1914}
1915
1916/*
Toshi Kanid4e1a692013-03-04 21:30:41 +00001917 * acpi_bay_match - see if an acpi object is an ejectable driver bay
Zhang Rui54735262007-01-11 02:09:09 -05001918 *
1919 * If an acpi object is ejectable and has one of the ACPI ATA methods defined,
1920 * then we can safely call it an ejectable drive bay
1921 */
Jiang Liuebf4df82013-06-29 00:24:41 +08001922bool acpi_bay_match(acpi_handle handle)
Toshi Kanid4e1a692013-03-04 21:30:41 +00001923{
Zhang Rui54735262007-01-11 02:09:09 -05001924 acpi_handle phandle;
1925
Jiang Liu952c63e2013-06-29 00:24:38 +08001926 if (!acpi_has_method(handle, "_EJ0"))
Jiang Liuebf4df82013-06-29 00:24:41 +08001927 return false;
1928 if (acpi_ata_match(handle))
1929 return true;
1930 if (ACPI_FAILURE(acpi_get_parent(handle, &phandle)))
1931 return false;
Zhang Rui54735262007-01-11 02:09:09 -05001932
Jiang Liuebf4df82013-06-29 00:24:41 +08001933 return acpi_ata_match(phandle);
Zhang Rui54735262007-01-11 02:09:09 -05001934}
1935
Rafael J. Wysockib43109f2014-02-16 00:09:34 +01001936bool acpi_device_is_battery(struct acpi_device *adev)
Rafael J. Wysocki1e2380c2014-02-16 01:51:01 +01001937{
Rafael J. Wysockib43109f2014-02-16 00:09:34 +01001938 struct acpi_hardware_id *hwid;
Rafael J. Wysocki1e2380c2014-02-16 01:51:01 +01001939
Rafael J. Wysockib43109f2014-02-16 00:09:34 +01001940 list_for_each_entry(hwid, &adev->pnp.ids, list)
1941 if (!strcmp("PNP0C0A", hwid->id))
1942 return true;
Rafael J. Wysocki1e2380c2014-02-16 01:51:01 +01001943
Rafael J. Wysockib43109f2014-02-16 00:09:34 +01001944 return false;
Rafael J. Wysocki1e2380c2014-02-16 01:51:01 +01001945}
1946
Rafael J. Wysockib43109f2014-02-16 00:09:34 +01001947static bool is_ejectable_bay(struct acpi_device *adev)
Rafael J. Wysocki1e2380c2014-02-16 01:51:01 +01001948{
Rafael J. Wysockib43109f2014-02-16 00:09:34 +01001949 acpi_handle handle = adev->handle;
1950
1951 if (acpi_has_method(handle, "_EJ0") && acpi_device_is_battery(adev))
Rafael J. Wysocki1e2380c2014-02-16 01:51:01 +01001952 return true;
1953
1954 return acpi_bay_match(handle);
1955}
1956
Frank Seidel3620f2f2007-12-07 13:20:34 +01001957/*
Toshi Kanid4e1a692013-03-04 21:30:41 +00001958 * acpi_dock_match - see if an acpi object has a _DCK method
Frank Seidel3620f2f2007-12-07 13:20:34 +01001959 */
Jiang Liuebf4df82013-06-29 00:24:41 +08001960bool acpi_dock_match(acpi_handle handle)
Frank Seidel3620f2f2007-12-07 13:20:34 +01001961{
Jiang Liuebf4df82013-06-29 00:24:41 +08001962 return acpi_has_method(handle, "_DCK");
Frank Seidel3620f2f2007-12-07 13:20:34 +01001963}
1964
Hans de Goedeadc8bb82015-06-16 16:27:45 +02001965static acpi_status
1966acpi_backlight_cap_match(acpi_handle handle, u32 level, void *context,
1967 void **return_value)
1968{
1969 long *cap = context;
1970
1971 if (acpi_has_method(handle, "_BCM") &&
1972 acpi_has_method(handle, "_BCL")) {
1973 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found generic backlight "
1974 "support\n"));
1975 *cap |= ACPI_VIDEO_BACKLIGHT;
1976 if (!acpi_has_method(handle, "_BQC"))
1977 printk(KERN_WARNING FW_BUG PREFIX "No _BQC method, "
1978 "cannot determine initial brightness\n");
1979 /* We have backlight support, no need to scan further */
1980 return AE_CTRL_TERMINATE;
1981 }
1982 return 0;
1983}
1984
1985/* Returns true if the ACPI object is a video device which can be
1986 * handled by video.ko.
1987 * The device will get a Linux specific CID added in scan.c to
1988 * identify the device as an ACPI graphics device
1989 * Be aware that the graphics device may not be physically present
1990 * Use acpi_video_get_capabilities() to detect general ACPI video
1991 * capabilities of present cards
1992 */
1993long acpi_is_video_device(acpi_handle handle)
1994{
1995 long video_caps = 0;
1996
1997 /* Is this device able to support video switching ? */
1998 if (acpi_has_method(handle, "_DOD") || acpi_has_method(handle, "_DOS"))
1999 video_caps |= ACPI_VIDEO_OUTPUT_SWITCHING;
2000
2001 /* Is this device able to retrieve a video ROM ? */
2002 if (acpi_has_method(handle, "_ROM"))
2003 video_caps |= ACPI_VIDEO_ROM_AVAILABLE;
2004
2005 /* Is this device able to configure which video head to be POSTed ? */
2006 if (acpi_has_method(handle, "_VPO") &&
2007 acpi_has_method(handle, "_GPD") &&
2008 acpi_has_method(handle, "_SPD"))
2009 video_caps |= ACPI_VIDEO_DEVICE_POSTING;
2010
2011 /* Only check for backlight functionality if one of the above hit. */
2012 if (video_caps)
2013 acpi_walk_namespace(ACPI_TYPE_DEVICE, handle,
2014 ACPI_UINT32_MAX, acpi_backlight_cap_match, NULL,
2015 &video_caps, NULL);
2016
2017 return video_caps;
2018}
2019EXPORT_SYMBOL(acpi_is_video_device);
2020
Thomas Renninger620e1122010-10-01 10:54:00 +02002021const char *acpi_device_hid(struct acpi_device *device)
Bob Moore15b8dd52009-06-29 13:39:29 +08002022{
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06002023 struct acpi_hardware_id *hid;
Bob Moore15b8dd52009-06-29 13:39:29 +08002024
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +02002025 if (list_empty(&device->pnp.ids))
2026 return dummy_hid;
2027
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06002028 hid = list_first_entry(&device->pnp.ids, struct acpi_hardware_id, list);
2029 return hid->id;
2030}
2031EXPORT_SYMBOL(acpi_device_hid);
Bob Moore15b8dd52009-06-29 13:39:29 +08002032
Toshi Kanid4e1a692013-03-04 21:30:41 +00002033static void acpi_add_id(struct acpi_device_pnp *pnp, const char *dev_id)
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06002034{
2035 struct acpi_hardware_id *id;
Bob Moore15b8dd52009-06-29 13:39:29 +08002036
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06002037 id = kmalloc(sizeof(*id), GFP_KERNEL);
2038 if (!id)
2039 return;
Bob Moore15b8dd52009-06-29 13:39:29 +08002040
Thomas Meyer581de592011-08-06 11:32:56 +02002041 id->id = kstrdup(dev_id, GFP_KERNEL);
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06002042 if (!id->id) {
2043 kfree(id);
2044 return;
Bob Moore15b8dd52009-06-29 13:39:29 +08002045 }
2046
Toshi Kanid4e1a692013-03-04 21:30:41 +00002047 list_add_tail(&id->list, &pnp->ids);
2048 pnp->type.hardware_id = 1;
Bob Moore15b8dd52009-06-29 13:39:29 +08002049}
2050
Darrick J. Wong222e82a2010-03-24 14:38:37 +01002051/*
2052 * Old IBM workstations have a DSDT bug wherein the SMBus object
2053 * lacks the SMBUS01 HID and the methods do not have the necessary "_"
2054 * prefix. Work around this.
2055 */
Jiang Liuebf4df82013-06-29 00:24:41 +08002056static bool acpi_ibm_smbus_match(acpi_handle handle)
Darrick J. Wong222e82a2010-03-24 14:38:37 +01002057{
Jiang Liuebf4df82013-06-29 00:24:41 +08002058 char node_name[ACPI_PATH_SEGMENT_LENGTH];
2059 struct acpi_buffer path = { sizeof(node_name), node_name };
Darrick J. Wong222e82a2010-03-24 14:38:37 +01002060
2061 if (!dmi_name_in_vendors("IBM"))
Jiang Liuebf4df82013-06-29 00:24:41 +08002062 return false;
Darrick J. Wong222e82a2010-03-24 14:38:37 +01002063
2064 /* Look for SMBS object */
Jiang Liuebf4df82013-06-29 00:24:41 +08002065 if (ACPI_FAILURE(acpi_get_name(handle, ACPI_SINGLE_NAME, &path)) ||
2066 strcmp("SMBS", path.pointer))
2067 return false;
Darrick J. Wong222e82a2010-03-24 14:38:37 +01002068
2069 /* Does it have the necessary (but misnamed) methods? */
Jiang Liu952c63e2013-06-29 00:24:38 +08002070 if (acpi_has_method(handle, "SBI") &&
2071 acpi_has_method(handle, "SBR") &&
2072 acpi_has_method(handle, "SBW"))
Jiang Liuebf4df82013-06-29 00:24:41 +08002073 return true;
2074
2075 return false;
Darrick J. Wong222e82a2010-03-24 14:38:37 +01002076}
2077
Jiang Liuae3caa82014-02-19 14:02:19 +08002078static bool acpi_object_is_system_bus(acpi_handle handle)
2079{
2080 acpi_handle tmp;
2081
2082 if (ACPI_SUCCESS(acpi_get_handle(NULL, "\\_SB", &tmp)) &&
2083 tmp == handle)
2084 return true;
2085 if (ACPI_SUCCESS(acpi_get_handle(NULL, "\\_TZ", &tmp)) &&
2086 tmp == handle)
2087 return true;
2088
2089 return false;
2090}
2091
Toshi Kanic0af4172013-03-04 21:30:42 +00002092static void acpi_set_pnp_ids(acpi_handle handle, struct acpi_device_pnp *pnp,
2093 int device_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094{
Len Brown4be44fc2005-08-05 00:44:28 -04002095 acpi_status status;
Bjorn Helgaas57f36742009-09-21 13:35:40 -06002096 struct acpi_device_info *info;
Lv Zheng78e25fe2012-10-31 02:25:24 +00002097 struct acpi_pnp_device_id_list *cid_list;
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06002098 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
Toshi Kanic0af4172013-03-04 21:30:42 +00002100 switch (device_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 case ACPI_BUS_TYPE_DEVICE:
Toshi Kanic0af4172013-03-04 21:30:42 +00002102 if (handle == ACPI_ROOT_OBJECT) {
2103 acpi_add_id(pnp, ACPI_SYSTEM_HID);
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +00002104 break;
2105 }
2106
Toshi Kanic0af4172013-03-04 21:30:42 +00002107 status = acpi_get_object_info(handle, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 if (ACPI_FAILURE(status)) {
Toshi Kanic0af4172013-03-04 21:30:42 +00002109 pr_err(PREFIX "%s: Error reading device info\n",
2110 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 return;
2112 }
2113
Rafael J. Wysocki549e6842014-05-30 04:26:18 +02002114 if (info->valid & ACPI_VALID_HID) {
Toshi Kanic0af4172013-03-04 21:30:42 +00002115 acpi_add_id(pnp, info->hardware_id.string);
Rafael J. Wysocki549e6842014-05-30 04:26:18 +02002116 pnp->type.platform_id = 1;
2117 }
Bjorn Helgaas57f36742009-09-21 13:35:40 -06002118 if (info->valid & ACPI_VALID_CID) {
Bob Moore15b8dd52009-06-29 13:39:29 +08002119 cid_list = &info->compatible_id_list;
Bjorn Helgaas57f36742009-09-21 13:35:40 -06002120 for (i = 0; i < cid_list->count; i++)
Toshi Kanic0af4172013-03-04 21:30:42 +00002121 acpi_add_id(pnp, cid_list->ids[i].string);
Bjorn Helgaas57f36742009-09-21 13:35:40 -06002122 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 if (info->valid & ACPI_VALID_ADR) {
Toshi Kanic0af4172013-03-04 21:30:42 +00002124 pnp->bus_address = info->address;
2125 pnp->type.bus_address = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 }
Lv Zhengccf78042012-10-30 14:41:07 +01002127 if (info->valid & ACPI_VALID_UID)
Toshi Kanic0af4172013-03-04 21:30:42 +00002128 pnp->unique_id = kstrdup(info->unique_id.string,
Lv Zhengccf78042012-10-30 14:41:07 +01002129 GFP_KERNEL);
Suthikulpanit, Suravee26095a02015-07-07 01:55:20 +02002130 if (info->valid & ACPI_VALID_CLS)
2131 acpi_add_id(pnp, info->class_code.string);
Zhang Ruiae843332006-12-07 20:57:10 +08002132
Bjorn Helgaasa83893ae2009-10-02 11:03:12 -04002133 kfree(info);
2134
Bjorn Helgaas57f36742009-09-21 13:35:40 -06002135 /*
2136 * Some devices don't reliably have _HIDs & _CIDs, so add
2137 * synthetic HIDs to make sure drivers can find them.
2138 */
Toshi Kanic0af4172013-03-04 21:30:42 +00002139 if (acpi_is_video_device(handle))
2140 acpi_add_id(pnp, ACPI_VIDEO_HID);
Jiang Liuebf4df82013-06-29 00:24:41 +08002141 else if (acpi_bay_match(handle))
Toshi Kanic0af4172013-03-04 21:30:42 +00002142 acpi_add_id(pnp, ACPI_BAY_HID);
Jiang Liuebf4df82013-06-29 00:24:41 +08002143 else if (acpi_dock_match(handle))
Toshi Kanic0af4172013-03-04 21:30:42 +00002144 acpi_add_id(pnp, ACPI_DOCK_HID);
Jiang Liuebf4df82013-06-29 00:24:41 +08002145 else if (acpi_ibm_smbus_match(handle))
Toshi Kanic0af4172013-03-04 21:30:42 +00002146 acpi_add_id(pnp, ACPI_SMBUS_IBM_HID);
Jiang Liuae3caa82014-02-19 14:02:19 +08002147 else if (list_empty(&pnp->ids) &&
2148 acpi_object_is_system_bus(handle)) {
2149 /* \_SB, \_TZ, LNXSYBUS */
2150 acpi_add_id(pnp, ACPI_BUS_HID);
Toshi Kanic0af4172013-03-04 21:30:42 +00002151 strcpy(pnp->device_name, ACPI_BUS_DEVICE_NAME);
2152 strcpy(pnp->device_class, ACPI_BUS_CLASS);
Bjorn Helgaasb7b30de2010-03-24 10:44:33 -06002153 }
Zhang Rui54735262007-01-11 02:09:09 -05002154
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 break;
2156 case ACPI_BUS_TYPE_POWER:
Toshi Kanic0af4172013-03-04 21:30:42 +00002157 acpi_add_id(pnp, ACPI_POWER_HID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 break;
2159 case ACPI_BUS_TYPE_PROCESSOR:
Toshi Kanic0af4172013-03-04 21:30:42 +00002160 acpi_add_id(pnp, ACPI_PROCESSOR_OBJECT_HID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 case ACPI_BUS_TYPE_THERMAL:
Toshi Kanic0af4172013-03-04 21:30:42 +00002163 acpi_add_id(pnp, ACPI_THERMAL_HID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 break;
2165 case ACPI_BUS_TYPE_POWER_BUTTON:
Toshi Kanic0af4172013-03-04 21:30:42 +00002166 acpi_add_id(pnp, ACPI_BUTTON_HID_POWERF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 break;
2168 case ACPI_BUS_TYPE_SLEEP_BUTTON:
Toshi Kanic0af4172013-03-04 21:30:42 +00002169 acpi_add_id(pnp, ACPI_BUTTON_HID_SLEEPF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 break;
2171 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172}
2173
Toshi Kanic0af4172013-03-04 21:30:42 +00002174void acpi_free_pnp_ids(struct acpi_device_pnp *pnp)
2175{
2176 struct acpi_hardware_id *id, *tmp;
2177
2178 list_for_each_entry_safe(id, tmp, &pnp->ids, list) {
2179 kfree(id->id);
2180 kfree(id);
2181 }
2182 kfree(pnp->unique_id);
2183}
2184
Suthikulpanit, Suraveed0562672015-06-10 11:08:52 -05002185static void acpi_init_coherency(struct acpi_device *adev)
2186{
2187 unsigned long long cca = 0;
2188 acpi_status status;
2189 struct acpi_device *parent = adev->parent;
2190
2191 if (parent && parent->flags.cca_seen) {
2192 /*
2193 * From ACPI spec, OSPM will ignore _CCA if an ancestor
2194 * already saw one.
2195 */
2196 adev->flags.cca_seen = 1;
2197 cca = parent->flags.coherent_dma;
2198 } else {
2199 status = acpi_evaluate_integer(adev->handle, "_CCA",
2200 NULL, &cca);
2201 if (ACPI_SUCCESS(status))
2202 adev->flags.cca_seen = 1;
2203 else if (!IS_ENABLED(CONFIG_ACPI_CCA_REQUIRED))
2204 /*
2205 * If architecture does not specify that _CCA is
2206 * required for DMA-able devices (e.g. x86),
2207 * we default to _CCA=1.
2208 */
2209 cca = 1;
2210 else
2211 acpi_handle_debug(adev->handle,
2212 "ACPI device is missing _CCA.\n");
2213 }
2214
2215 adev->flags.coherent_dma = cca;
2216}
2217
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +01002218void acpi_init_device_object(struct acpi_device *device, acpi_handle handle,
2219 int type, unsigned long long sta)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220{
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01002221 INIT_LIST_HEAD(&device->pnp.ids);
2222 device->device_type = type;
2223 device->handle = handle;
2224 device->parent = acpi_bus_get_parent(handle);
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +01002225 device->fwnode.type = FWNODE_ACPI;
Rafael J. Wysocki25db1152013-11-22 21:56:06 +01002226 acpi_set_device_status(device, sta);
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01002227 acpi_device_get_busid(device);
Toshi Kanic0af4172013-03-04 21:30:42 +00002228 acpi_set_pnp_ids(handle, &device->pnp, type);
Mika Westerbergffdcd952014-10-21 13:33:55 +02002229 acpi_init_properties(device);
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01002230 acpi_bus_get_flags(device);
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01002231 device->flags.match_driver = false;
Rafael J. Wysocki202317a2013-11-22 21:54:37 +01002232 device->flags.initialized = true;
2233 device->flags.visited = false;
Rafael J. Wysockicf860be2013-01-24 12:49:49 +01002234 device_initialize(&device->dev);
2235 dev_set_uevent_suppress(&device->dev, true);
Suthikulpanit, Suraveed0562672015-06-10 11:08:52 -05002236 acpi_init_coherency(device);
Rafael J. Wysockicf860be2013-01-24 12:49:49 +01002237}
Bjorn Helgaasbc3b0772009-09-21 19:29:20 +00002238
Rafael J. Wysockicf860be2013-01-24 12:49:49 +01002239void acpi_device_add_finalize(struct acpi_device *device)
2240{
2241 dev_set_uevent_suppress(&device->dev, false);
2242 kobject_uevent(&device->dev.kobj, KOBJ_ADD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243}
2244
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00002245static int acpi_add_single_object(struct acpi_device **child,
2246 acpi_handle handle, int type,
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01002247 unsigned long long sta)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248{
Bjorn Helgaas77c24882009-09-21 19:29:30 +00002249 int result;
2250 struct acpi_device *device;
Bjorn Helgaas29aaefa2009-09-21 19:28:54 +00002251 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252
Burman Yan36bcbec2006-12-19 12:56:11 -08002253 device = kzalloc(sizeof(struct acpi_device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 if (!device) {
Len Brown64684632006-06-26 23:41:38 -04002255 printk(KERN_ERR PREFIX "Memory allocation error\n");
Patrick Mocheld550d982006-06-27 00:41:40 -04002256 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01002259 acpi_init_device_object(device, handle, type, sta);
2260 acpi_bus_get_power_flags(device);
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01002261 acpi_bus_get_wakeup_device_flags(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262
Rafael J. Wysockicf860be2013-01-24 12:49:49 +01002263 result = acpi_device_add(device, acpi_device_release);
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01002264 if (result) {
Hugh Dickins718fb0d2009-08-06 23:18:12 +00002265 acpi_device_release(&device->dev);
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01002266 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 }
2268
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01002269 acpi_power_add_remove_device(device, true);
Rafael J. Wysockicf860be2013-01-24 12:49:49 +01002270 acpi_device_add_finalize(device);
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01002271 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
2272 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Added %s [%s] parent %s\n",
2273 dev_name(&device->dev), (char *) buffer.pointer,
2274 device->parent ? dev_name(&device->parent->dev) : "(null)"));
2275 kfree(buffer.pointer);
2276 *child = device;
2277 return 0;
Rafael J. Wysockibf325f92010-11-25 00:10:44 +01002278}
2279
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00002280static int acpi_bus_type_and_status(acpi_handle handle, int *type,
2281 unsigned long long *sta)
2282{
2283 acpi_status status;
2284 acpi_object_type acpi_type;
2285
2286 status = acpi_get_type(handle, &acpi_type);
2287 if (ACPI_FAILURE(status))
2288 return -ENODEV;
2289
2290 switch (acpi_type) {
2291 case ACPI_TYPE_ANY: /* for ACPI_ROOT_OBJECT */
2292 case ACPI_TYPE_DEVICE:
2293 *type = ACPI_BUS_TYPE_DEVICE;
2294 status = acpi_bus_get_status_handle(handle, sta);
2295 if (ACPI_FAILURE(status))
2296 return -ENODEV;
2297 break;
2298 case ACPI_TYPE_PROCESSOR:
2299 *type = ACPI_BUS_TYPE_PROCESSOR;
2300 status = acpi_bus_get_status_handle(handle, sta);
2301 if (ACPI_FAILURE(status))
2302 return -ENODEV;
2303 break;
2304 case ACPI_TYPE_THERMAL:
2305 *type = ACPI_BUS_TYPE_THERMAL;
2306 *sta = ACPI_STA_DEFAULT;
2307 break;
2308 case ACPI_TYPE_POWER:
2309 *type = ACPI_BUS_TYPE_POWER;
2310 *sta = ACPI_STA_DEFAULT;
2311 break;
2312 default:
2313 return -ENODEV;
2314 }
2315
2316 return 0;
2317}
2318
Rafael J. Wysocki202317a2013-11-22 21:54:37 +01002319bool acpi_device_is_present(struct acpi_device *adev)
2320{
2321 if (adev->status.present || adev->status.functional)
2322 return true;
2323
2324 adev->flags.initialized = false;
2325 return false;
2326}
2327
Rafael J. Wysocki4b59cc12013-03-03 23:06:21 +01002328static bool acpi_scan_handler_matching(struct acpi_scan_handler *handler,
2329 char *idstr,
2330 const struct acpi_device_id **matchid)
2331{
2332 const struct acpi_device_id *devid;
2333
Rafael J. Wysockiaca0a4e2014-05-30 04:21:52 +02002334 if (handler->match)
2335 return handler->match(idstr, matchid);
2336
Rafael J. Wysocki4b59cc12013-03-03 23:06:21 +01002337 for (devid = handler->ids; devid->id[0]; devid++)
2338 if (!strcmp((char *)devid->id, idstr)) {
2339 if (matchid)
2340 *matchid = devid;
2341
2342 return true;
2343 }
2344
2345 return false;
2346}
2347
Toshi Kani6b772e8f2013-03-04 21:30:43 +00002348static struct acpi_scan_handler *acpi_scan_match_handler(char *idstr,
2349 const struct acpi_device_id **matchid)
2350{
2351 struct acpi_scan_handler *handler;
2352
2353 list_for_each_entry(handler, &acpi_scan_handlers_list, list_node)
2354 if (acpi_scan_handler_matching(handler, idstr, matchid))
2355 return handler;
2356
2357 return NULL;
2358}
2359
Rafael J. Wysocki3f8055c2013-03-03 23:08:16 +01002360void acpi_scan_hotplug_enabled(struct acpi_hotplug_profile *hotplug, bool val)
2361{
Rafael J. Wysocki3f8055c2013-03-03 23:08:16 +01002362 if (!!hotplug->enabled == !!val)
2363 return;
2364
2365 mutex_lock(&acpi_scan_lock);
2366
2367 hotplug->enabled = val;
Rafael J. Wysocki3f8055c2013-03-03 23:08:16 +01002368
2369 mutex_unlock(&acpi_scan_lock);
2370}
2371
Rafael J. Wysocki3c2cc7f2014-02-06 17:31:37 +01002372static void acpi_scan_init_hotplug(struct acpi_device *adev)
Rafael J. Wysockic5698072013-03-03 23:05:14 +01002373{
Toshi Kani6b772e8f2013-03-04 21:30:43 +00002374 struct acpi_hardware_id *hwid;
Rafael J. Wysockic5698072013-03-03 23:05:14 +01002375
Rafael J. Wysockib43109f2014-02-16 00:09:34 +01002376 if (acpi_dock_match(adev->handle) || is_ejectable_bay(adev)) {
Rafael J. Wysocki1e2380c2014-02-16 01:51:01 +01002377 acpi_dock_add(adev);
2378 return;
2379 }
Rafael J. Wysocki3c2cc7f2014-02-06 17:31:37 +01002380 list_for_each_entry(hwid, &adev->pnp.ids, list) {
2381 struct acpi_scan_handler *handler;
Rafael J. Wysockic5698072013-03-03 23:05:14 +01002382
Toshi Kani6b772e8f2013-03-04 21:30:43 +00002383 handler = acpi_scan_match_handler(hwid->id, NULL);
Rafael J. Wysocki1a699472014-02-06 13:58:13 +01002384 if (handler) {
2385 adev->flags.hotplug_notify = true;
2386 break;
2387 }
Rafael J. Wysocki3c2cc7f2014-02-06 17:31:37 +01002388 }
Rafael J. Wysockia33ec392013-03-03 23:05:29 +01002389}
2390
Lan Tianyu40e7fcb2014-11-23 21:22:54 +08002391static void acpi_device_dep_initialize(struct acpi_device *adev)
2392{
2393 struct acpi_dep_data *dep;
2394 struct acpi_handle_list dep_devices;
2395 acpi_status status;
2396 int i;
2397
2398 if (!acpi_has_method(adev->handle, "_DEP"))
2399 return;
2400
2401 status = acpi_evaluate_reference(adev->handle, "_DEP", NULL,
2402 &dep_devices);
2403 if (ACPI_FAILURE(status)) {
Rafael J. Wysocki80167a22014-12-12 22:48:44 +01002404 dev_dbg(&adev->dev, "Failed to evaluate _DEP.\n");
Lan Tianyu40e7fcb2014-11-23 21:22:54 +08002405 return;
2406 }
2407
2408 for (i = 0; i < dep_devices.count; i++) {
2409 struct acpi_device_info *info;
2410 int skip;
2411
2412 status = acpi_get_object_info(dep_devices.handles[i], &info);
2413 if (ACPI_FAILURE(status)) {
Rafael J. Wysocki80167a22014-12-12 22:48:44 +01002414 dev_dbg(&adev->dev, "Error reading _DEP device info\n");
Lan Tianyu40e7fcb2014-11-23 21:22:54 +08002415 continue;
2416 }
2417
2418 /*
2419 * Skip the dependency of Windows System Power
2420 * Management Controller
2421 */
2422 skip = info->valid & ACPI_VALID_HID &&
2423 !strcmp(info->hardware_id.string, "INT3396");
2424
2425 kfree(info);
2426
2427 if (skip)
2428 continue;
2429
2430 dep = kzalloc(sizeof(struct acpi_dep_data), GFP_KERNEL);
2431 if (!dep)
2432 return;
2433
2434 dep->master = dep_devices.handles[i];
2435 dep->slave = adev->handle;
2436 adev->dep_unmet++;
2437
2438 mutex_lock(&acpi_dep_list_lock);
2439 list_add_tail(&dep->node , &acpi_dep_list);
2440 mutex_unlock(&acpi_dep_list_lock);
2441 }
2442}
2443
Rafael J. Wysockie3863092012-12-21 00:36:47 +01002444static acpi_status acpi_bus_check_add(acpi_handle handle, u32 lvl_not_used,
2445 void *not_used, void **return_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446{
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01002447 struct acpi_device *device = NULL;
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00002448 int type;
2449 unsigned long long sta;
2450 int result;
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00002451
Rafael J. Wysocki4002bf32012-12-21 00:36:44 +01002452 acpi_bus_get_device(handle, &device);
2453 if (device)
2454 goto out;
2455
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00002456 result = acpi_bus_type_and_status(handle, &type, &sta);
2457 if (result)
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00002458 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +01002460 if (type == ACPI_BUS_TYPE_POWER) {
2461 acpi_add_power_resource(handle);
2462 return AE_OK;
2463 }
2464
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01002465 acpi_add_single_object(&device, handle, type, sta);
Bjorn Helgaase3b87f82009-09-21 19:30:11 +00002466 if (!device)
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00002467 return AE_CTRL_DEPTH;
2468
Rafael J. Wysocki3c2cc7f2014-02-06 17:31:37 +01002469 acpi_scan_init_hotplug(device);
Lan Tianyu40e7fcb2014-11-23 21:22:54 +08002470 acpi_device_dep_initialize(device);
Rafael J. Wysocki3c2cc7f2014-02-06 17:31:37 +01002471
Rafael J. Wysocki4002bf32012-12-21 00:36:44 +01002472 out:
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00002473 if (!*return_value)
2474 *return_value = device;
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01002475
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00002476 return AE_OK;
2477}
2478
Zhang Rui48459342014-05-30 14:35:34 +02002479static int acpi_check_spi_i2c_slave(struct acpi_resource *ares, void *data)
2480{
2481 bool *is_spi_i2c_slave_p = data;
2482
2483 if (ares->type != ACPI_RESOURCE_TYPE_SERIAL_BUS)
2484 return 1;
2485
2486 /*
2487 * devices that are connected to UART still need to be enumerated to
2488 * platform bus
2489 */
2490 if (ares->data.common_serial_bus.type != ACPI_RESOURCE_SERIAL_TYPE_UART)
2491 *is_spi_i2c_slave_p = true;
2492
2493 /* no need to do more checking */
2494 return -1;
2495}
2496
2497static void acpi_default_enumeration(struct acpi_device *device)
2498{
2499 struct list_head resource_list;
2500 bool is_spi_i2c_slave = false;
2501
Zhang Rui48459342014-05-30 14:35:34 +02002502 /*
2503 * Do not enemerate SPI/I2C slaves as they will be enuerated by their
2504 * respective parents.
2505 */
2506 INIT_LIST_HEAD(&resource_list);
2507 acpi_dev_get_resources(device, &resource_list, acpi_check_spi_i2c_slave,
2508 &is_spi_i2c_slave);
2509 acpi_dev_free_resource_list(&resource_list);
2510 if (!is_spi_i2c_slave)
2511 acpi_create_platform_device(device);
2512}
2513
Rafael J. Wysocki7d284352015-04-24 02:18:01 +02002514static const struct acpi_device_id generic_device_ids[] = {
Rafael J. Wysockiee892092015-05-22 04:24:34 +02002515 {ACPI_DT_NAMESPACE_HID, },
Rafael J. Wysocki7d284352015-04-24 02:18:01 +02002516 {"", },
2517};
2518
2519static int acpi_generic_device_attach(struct acpi_device *adev,
2520 const struct acpi_device_id *not_used)
2521{
2522 /*
Rafael J. Wysockiee892092015-05-22 04:24:34 +02002523 * Since ACPI_DT_NAMESPACE_HID is the only ID handled here, the test
2524 * below can be unconditional.
Rafael J. Wysocki7d284352015-04-24 02:18:01 +02002525 */
2526 if (adev->data.of_compatible)
2527 acpi_default_enumeration(adev);
2528
2529 return 1;
2530}
2531
2532static struct acpi_scan_handler generic_device_handler = {
2533 .ids = generic_device_ids,
2534 .attach = acpi_generic_device_attach,
2535};
2536
Rafael J. Wysocki87b85b32013-02-06 13:05:22 +01002537static int acpi_scan_attach_handler(struct acpi_device *device)
2538{
2539 struct acpi_hardware_id *hwid;
2540 int ret = 0;
2541
2542 list_for_each_entry(hwid, &device->pnp.ids, list) {
Rafael J. Wysockic5698072013-03-03 23:05:14 +01002543 const struct acpi_device_id *devid;
2544 struct acpi_scan_handler *handler;
Rafael J. Wysocki87b85b32013-02-06 13:05:22 +01002545
Rafael J. Wysockic5698072013-03-03 23:05:14 +01002546 handler = acpi_scan_match_handler(hwid->id, &devid);
2547 if (handler) {
Rafael J. Wysockid34afa92014-05-30 04:27:31 +02002548 if (!handler->attach) {
2549 device->pnp.type.platform_id = 0;
2550 continue;
2551 }
Rafael J. Wysocki9cb32ac2014-02-11 00:35:46 +01002552 device->handler = handler;
Rafael J. Wysockic5698072013-03-03 23:05:14 +01002553 ret = handler->attach(device, devid);
Rafael J. Wysocki9cb32ac2014-02-11 00:35:46 +01002554 if (ret > 0)
Rafael J. Wysockic5698072013-03-03 23:05:14 +01002555 break;
Rafael J. Wysocki9cb32ac2014-02-11 00:35:46 +01002556
2557 device->handler = NULL;
2558 if (ret < 0)
Rafael J. Wysockic5698072013-03-03 23:05:14 +01002559 break;
Rafael J. Wysockic5698072013-03-03 23:05:14 +01002560 }
Rafael J. Wysocki87b85b32013-02-06 13:05:22 +01002561 }
Zhang Rui48459342014-05-30 14:35:34 +02002562
Rafael J. Wysockica589f92013-01-30 14:27:29 +01002563 return ret;
2564}
2565
Rafael J. Wysocki2c22e652013-11-25 00:52:21 +01002566static void acpi_bus_attach(struct acpi_device *device)
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00002567{
Rafael J. Wysocki2c22e652013-11-25 00:52:21 +01002568 struct acpi_device *child;
Rafael J. Wysocki1e2380c2014-02-16 01:51:01 +01002569 acpi_handle ejd;
Rafael J. Wysockica589f92013-01-30 14:27:29 +01002570 int ret;
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00002571
Rafael J. Wysocki1e2380c2014-02-16 01:51:01 +01002572 if (ACPI_SUCCESS(acpi_bus_get_ejd(device->handle, &ejd)))
2573 register_dock_dependent_device(device, ejd);
2574
Rafael J. Wysocki2c22e652013-11-25 00:52:21 +01002575 acpi_bus_get_status(device);
Rafael J. Wysocki202317a2013-11-22 21:54:37 +01002576 /* Skip devices that are not present. */
Rafael J. Wysocki2c22e652013-11-25 00:52:21 +01002577 if (!acpi_device_is_present(device)) {
2578 device->flags.visited = false;
Rafael J. Wysocki1b1f3e12015-01-01 23:38:28 +01002579 device->flags.power_manageable = 0;
Rafael J. Wysocki2c22e652013-11-25 00:52:21 +01002580 return;
2581 }
Rafael J. Wysocki3a391a32013-07-12 13:45:59 +02002582 if (device->handler)
Rafael J. Wysocki2c22e652013-11-25 00:52:21 +01002583 goto ok;
Rafael J. Wysocki3a391a32013-07-12 13:45:59 +02002584
Rafael J. Wysocki202317a2013-11-22 21:54:37 +01002585 if (!device->flags.initialized) {
Rafael J. Wysocki1b1f3e12015-01-01 23:38:28 +01002586 device->flags.power_manageable =
2587 device->power.states[ACPI_STATE_D0].flags.valid;
2588 if (acpi_bus_init_power(device))
2589 device->flags.power_manageable = 0;
2590
Rafael J. Wysocki202317a2013-11-22 21:54:37 +01002591 device->flags.initialized = true;
2592 }
Rafael J. Wysocki2c22e652013-11-25 00:52:21 +01002593 device->flags.visited = false;
Rafael J. Wysockica589f92013-01-30 14:27:29 +01002594 ret = acpi_scan_attach_handler(device);
Rafael J. Wysocki69310072013-11-07 01:41:01 +01002595 if (ret < 0)
Rafael J. Wysocki2c22e652013-11-25 00:52:21 +01002596 return;
Rafael J. Wysocki69310072013-11-07 01:41:01 +01002597
2598 device->flags.match_driver = true;
Rafael J. Wysocki2c22e652013-11-25 00:52:21 +01002599 if (!ret) {
2600 ret = device_attach(&device->dev);
2601 if (ret < 0)
2602 return;
Rafael J. Wysocki7d284352015-04-24 02:18:01 +02002603
2604 if (!ret && device->pnp.type.platform_id)
2605 acpi_default_enumeration(device);
Rafael J. Wysocki2c22e652013-11-25 00:52:21 +01002606 }
2607 device->flags.visited = true;
Rafael J. Wysocki202317a2013-11-22 21:54:37 +01002608
2609 ok:
Rafael J. Wysocki2c22e652013-11-25 00:52:21 +01002610 list_for_each_entry(child, &device->children, node)
2611 acpi_bus_attach(child);
Rafael J. Wysocki8ab17fc2014-09-21 02:58:18 +02002612
2613 if (device->handler && device->handler->hotplug.notify_online)
2614 device->handler->hotplug.notify_online(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616
Lan Tianyu40e7fcb2014-11-23 21:22:54 +08002617void acpi_walk_dep_device_list(acpi_handle handle)
2618{
2619 struct acpi_dep_data *dep, *tmp;
2620 struct acpi_device *adev;
2621
2622 mutex_lock(&acpi_dep_list_lock);
2623 list_for_each_entry_safe(dep, tmp, &acpi_dep_list, node) {
2624 if (dep->master == handle) {
2625 acpi_bus_get_device(dep->slave, &adev);
2626 if (!adev)
2627 continue;
2628
2629 adev->dep_unmet--;
2630 if (!adev->dep_unmet)
2631 acpi_bus_attach(adev);
2632 list_del(&dep->node);
2633 kfree(dep);
2634 }
2635 }
2636 mutex_unlock(&acpi_dep_list_lock);
2637}
2638EXPORT_SYMBOL_GPL(acpi_walk_dep_device_list);
2639
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01002640/**
2641 * acpi_bus_scan - Add ACPI device node objects in a given namespace scope.
2642 * @handle: Root of the namespace scope to scan.
Thomas Renninger77796882010-01-29 17:48:52 +01002643 *
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01002644 * Scan a given ACPI tree (probably recently hot-plugged) and create and add
2645 * found devices.
Thomas Renninger77796882010-01-29 17:48:52 +01002646 *
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01002647 * If no devices were found, -ENODEV is returned, but it does not mean that
2648 * there has been a real error. There just have been no suitable ACPI objects
2649 * in the table trunk from which the kernel could create a device and add an
2650 * appropriate driver.
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002651 *
2652 * Must be called under acpi_scan_lock.
Thomas Renninger77796882010-01-29 17:48:52 +01002653 */
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01002654int acpi_bus_scan(acpi_handle handle)
Rajesh Shah3fb02732005-04-28 00:25:52 -07002655{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 void *device = NULL;
Rajesh Shah3fb02732005-04-28 00:25:52 -07002657
Rafael J. Wysocki0cd6ac52012-12-21 00:36:49 +01002658 if (ACPI_SUCCESS(acpi_bus_check_add(handle, 0, NULL, &device)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
Rafael J. Wysockie3863092012-12-21 00:36:47 +01002660 acpi_bus_check_add, NULL, NULL, &device);
Rajesh Shah3fb02732005-04-28 00:25:52 -07002661
Rafael J. Wysocki2c22e652013-11-25 00:52:21 +01002662 if (device) {
2663 acpi_bus_attach(device);
2664 return 0;
2665 }
2666 return -ENODEV;
Rajesh Shah3fb02732005-04-28 00:25:52 -07002667}
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01002668EXPORT_SYMBOL(acpi_bus_scan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002670/**
Rafael J. Wysocki2c22e652013-11-25 00:52:21 +01002671 * acpi_bus_trim - Detach scan handlers and drivers from ACPI device objects.
2672 * @adev: Root of the ACPI namespace scope to walk.
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002673 *
2674 * Must be called under acpi_scan_lock.
2675 */
Rafael J. Wysocki2c22e652013-11-25 00:52:21 +01002676void acpi_bus_trim(struct acpi_device *adev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677{
Rafael J. Wysocki2c22e652013-11-25 00:52:21 +01002678 struct acpi_scan_handler *handler = adev->handler;
2679 struct acpi_device *child;
2680
2681 list_for_each_entry_reverse(child, &adev->children, node)
2682 acpi_bus_trim(child);
2683
Rafael J. Wysockia951c772014-01-27 23:08:09 +01002684 adev->flags.match_driver = false;
Rafael J. Wysocki2c22e652013-11-25 00:52:21 +01002685 if (handler) {
2686 if (handler->detach)
2687 handler->detach(adev);
2688
2689 adev->handler = NULL;
2690 } else {
2691 device_release_driver(&adev->dev);
2692 }
Rafael J. Wysockicecdb192013-01-15 13:24:02 +01002693 /*
Rafael J. Wysocki2c22e652013-11-25 00:52:21 +01002694 * Most likely, the device is going away, so put it into D3cold before
2695 * that.
Rafael J. Wysocki05404d82013-01-15 13:24:13 +01002696 */
Rafael J. Wysocki2c22e652013-11-25 00:52:21 +01002697 acpi_device_set_power(adev, ACPI_STATE_D3_COLD);
2698 adev->flags.initialized = false;
2699 adev->flags.visited = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700}
Kristen Accardiceaba662006-02-23 17:56:01 -08002701EXPORT_SYMBOL_GPL(acpi_bus_trim);
2702
Bjorn Helgaase8b945c2009-09-21 19:28:59 +00002703static int acpi_bus_scan_fixed(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704{
Len Brown4be44fc2005-08-05 00:44:28 -04002705 int result = 0;
Li Shaohuac4168bf2006-12-07 20:56:41 +08002706
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 /*
2708 * Enumerate all fixed-feature devices.
2709 */
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01002710 if (!(acpi_gbl_FADT.flags & ACPI_FADT_POWER_BUTTON)) {
2711 struct acpi_device *device = NULL;
2712
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00002713 result = acpi_add_single_object(&device, NULL,
Li Shaohuac4168bf2006-12-07 20:56:41 +08002714 ACPI_BUS_TYPE_POWER_BUTTON,
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01002715 ACPI_STA_DEFAULT);
2716 if (result)
2717 return result;
2718
Rafael J. Wysocki88346162013-11-18 14:18:47 +01002719 device->flags.match_driver = true;
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01002720 result = device_attach(&device->dev);
2721 if (result < 0)
2722 return result;
2723
Daniel Drakec10d7a12012-05-10 00:08:43 +01002724 device_init_wakeup(&device->dev, true);
Rajesh Shah3fb02732005-04-28 00:25:52 -07002725 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01002727 if (!(acpi_gbl_FADT.flags & ACPI_FADT_SLEEP_BUTTON)) {
2728 struct acpi_device *device = NULL;
2729
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00002730 result = acpi_add_single_object(&device, NULL,
Li Shaohuac4168bf2006-12-07 20:56:41 +08002731 ACPI_BUS_TYPE_SLEEP_BUTTON,
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01002732 ACPI_STA_DEFAULT);
2733 if (result)
2734 return result;
2735
Rafael J. Wysocki88346162013-11-18 14:18:47 +01002736 device->flags.match_driver = true;
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01002737 result = device_attach(&device->dev);
Rajesh Shah3fb02732005-04-28 00:25:52 -07002738 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01002740 return result < 0 ? result : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741}
2742
Bjorn Helgaase747f272009-03-24 16:49:43 -06002743int __init acpi_scan_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744{
2745 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746
Patrick Mochel5b327262006-05-10 10:33:00 -04002747 result = bus_register(&acpi_bus_type);
2748 if (result) {
2749 /* We don't want to quit even if we failed to add suspend/resume */
2750 printk(KERN_ERR PREFIX "Could not register bus type\n");
2751 }
2752
Rafael J. Wysocki92ef2a22012-12-21 00:36:40 +01002753 acpi_pci_root_init();
Rafael J. Wysocki4daeaf62013-01-30 14:27:37 +01002754 acpi_pci_link_init();
Rafael J. Wysockiac212b62013-05-03 00:26:22 +02002755 acpi_processor_init();
Rafael J. Wysockif58b0822013-03-06 23:46:20 +01002756 acpi_lpss_init();
Ken Xue92082a82015-02-06 08:27:51 +08002757 acpi_apd_init();
Lan Tianyu2fa97fe2013-06-05 02:27:50 +00002758 acpi_cmos_rtc_init();
Rafael J. Wysocki737f1a92013-02-08 23:52:39 +01002759 acpi_container_init();
Rafael J. Wysocki0a347642013-03-03 23:18:03 +01002760 acpi_memory_hotplug_init();
Zhang Ruieec15ed2014-05-30 04:23:01 +02002761 acpi_pnp_init();
Zhang Rui3230bbf2014-03-14 00:34:05 +08002762 acpi_int340x_thermal_init();
Rafael J. Wysocki97d9a9e2010-11-25 00:10:02 +01002763
Rafael J. Wysocki7d284352015-04-24 02:18:01 +02002764 acpi_scan_add_handler(&generic_device_handler);
2765
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002766 mutex_lock(&acpi_scan_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 * Enumerate devices in the ACPI namespace.
2769 */
Rafael J. Wysocki0cd6ac52012-12-21 00:36:49 +01002770 result = acpi_bus_scan(ACPI_ROOT_OBJECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 if (result)
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002772 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773
Rafael J. Wysocki0cd6ac52012-12-21 00:36:49 +01002774 result = acpi_bus_get_device(ACPI_ROOT_OBJECT, &acpi_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 if (result)
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002776 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777
Aaron Lu2650ef42014-04-28 10:38:04 +08002778 /* Fixed feature devices do not exist on HW-reduced platform */
2779 if (!acpi_gbl_reduced_hardware) {
2780 result = acpi_bus_scan_fixed();
2781 if (result) {
2782 acpi_detach_data(acpi_root->handle,
2783 acpi_scan_drop_device);
2784 acpi_device_del(acpi_root);
2785 put_device(&acpi_root->dev);
2786 goto out;
2787 }
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01002788 }
2789
2790 acpi_update_all_gpes();
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002791
2792 out:
2793 mutex_unlock(&acpi_scan_lock);
2794 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795}