blob: 69bc0d888c012523d03f15267c3ca75a1d4a10e3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * scan.c - support for transforming the ACPI namespace into individual objects
3 */
4
5#include <linux/module.h>
6#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09007#include <linux/slab.h>
Randy Dunlap9b6d97b2006-07-12 02:08:00 -04008#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/acpi.h>
Alok N Kataria74523c92008-06-13 12:54:24 -040010#include <linux/signal.h>
11#include <linux/kthread.h>
Darrick J. Wong222e82a2010-03-24 14:38:37 +010012#include <linux/dmi.h>
Lance Ortizd1efe3c2012-10-02 12:43:23 -060013#include <linux/nls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
Rafael J. Wysockid7831562013-11-22 21:52:12 +010015#include <asm/pgtable.h>
16
Bjorn Helgaase60cc7a2009-03-13 12:08:26 -060017#include "internal.h"
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#define _COMPONENT ACPI_BUS_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050020ACPI_MODULE_NAME("scan");
Len Brown4be44fc2005-08-05 00:44:28 -040021extern struct acpi_device *acpi_root;
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23#define ACPI_BUS_CLASS "system_bus"
Thomas Renninger29b71a12007-07-23 14:43:51 +020024#define ACPI_BUS_HID "LNXSYBUS"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#define ACPI_BUS_DEVICE_NAME "System Bus"
26
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +000027#define ACPI_IS_ROOT_DEVICE(device) (!(device)->parent)
28
Rafael J. Wysockid7831562013-11-22 21:52:12 +010029#define INVALID_ACPI_HANDLE ((acpi_handle)empty_zero_page)
30
Rafael J. Wysocki683058e2013-05-03 00:26:16 +020031/*
32 * If set, devices will be hot-removed even if they cannot be put offline
33 * gracefully (from the kernel's standpoint).
34 */
35bool acpi_force_hot_remove;
36
Thomas Renninger620e1122010-10-01 10:54:00 +020037static const char *dummy_hid = "device";
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +020038
Lan Tianyu40e7fcb2014-11-23 21:22:54 +080039static LIST_HEAD(acpi_dep_list);
40static DEFINE_MUTEX(acpi_dep_list_lock);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +080041static LIST_HEAD(acpi_bus_id_list);
Rafael J. Wysockic511cc12013-01-27 21:17:29 +010042static DEFINE_MUTEX(acpi_scan_lock);
Rafael J. Wysockica589f92013-01-30 14:27:29 +010043static LIST_HEAD(acpi_scan_handlers_list);
Shaohua Li90905892009-04-07 10:24:29 +080044DEFINE_MUTEX(acpi_device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045LIST_HEAD(acpi_wakeup_device_list);
Rafael J. Wysockie5255062014-02-04 00:43:17 +010046static DEFINE_MUTEX(acpi_hp_context_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Lan Tianyu40e7fcb2014-11-23 21:22:54 +080048struct acpi_dep_data {
49 struct list_head node;
50 acpi_handle master;
51 acpi_handle slave;
52};
53
Zhang Ruie49bd2dd2006-12-08 17:23:43 +080054struct acpi_device_bus_id{
Zhang Ruibb095852007-01-04 15:03:18 +080055 char bus_id[15];
Zhang Ruie49bd2dd2006-12-08 17:23:43 +080056 unsigned int instance_no;
57 struct list_head node;
58};
Thomas Renninger29b71a12007-07-23 14:43:51 +020059
Rafael J. Wysocki3757b942013-02-13 14:36:47 +010060void acpi_scan_lock_acquire(void)
61{
62 mutex_lock(&acpi_scan_lock);
63}
64EXPORT_SYMBOL_GPL(acpi_scan_lock_acquire);
65
66void acpi_scan_lock_release(void)
67{
68 mutex_unlock(&acpi_scan_lock);
69}
70EXPORT_SYMBOL_GPL(acpi_scan_lock_release);
71
Rafael J. Wysockie5255062014-02-04 00:43:17 +010072void acpi_lock_hp_context(void)
73{
74 mutex_lock(&acpi_hp_context_lock);
75}
76
77void acpi_unlock_hp_context(void)
78{
79 mutex_unlock(&acpi_hp_context_lock);
80}
81
Rafael J. Wysocki5d513202014-02-22 00:48:31 +010082void acpi_initialize_hp_context(struct acpi_device *adev,
83 struct acpi_hotplug_context *hp,
84 int (*notify)(struct acpi_device *, u32),
85 void (*uevent)(struct acpi_device *, u32))
86{
87 acpi_lock_hp_context();
Rafael J. Wysockiba574dc2014-07-15 22:03:22 +020088 hp->notify = notify;
89 hp->uevent = uevent;
90 acpi_set_hp_context(adev, hp);
Rafael J. Wysocki5d513202014-02-22 00:48:31 +010091 acpi_unlock_hp_context();
92}
93EXPORT_SYMBOL_GPL(acpi_initialize_hp_context);
94
Rafael J. Wysockica589f92013-01-30 14:27:29 +010095int acpi_scan_add_handler(struct acpi_scan_handler *handler)
96{
Rafael J. Wysockid34afa92014-05-30 04:27:31 +020097 if (!handler)
Rafael J. Wysockica589f92013-01-30 14:27:29 +010098 return -EINVAL;
99
100 list_add_tail(&handler->list_node, &acpi_scan_handlers_list);
101 return 0;
102}
103
Rafael J. Wysocki3f8055c2013-03-03 23:08:16 +0100104int acpi_scan_add_handler_with_hotplug(struct acpi_scan_handler *handler,
105 const char *hotplug_profile_name)
106{
107 int error;
108
109 error = acpi_scan_add_handler(handler);
110 if (error)
111 return error;
112
113 acpi_sysfs_add_hotplug_profile(&handler->hotplug, hotplug_profile_name);
114 return 0;
115}
116
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +0200117/**
118 * create_pnp_modalias - Create hid/cid(s) string for modalias and uevent
119 * @acpi_dev: ACPI device object.
120 * @modalias: Buffer to print into.
121 * @size: Size of the buffer.
122 *
Thomas Renninger29b71a12007-07-23 14:43:51 +0200123 * Creates hid/cid(s) string needed for modalias and uevent
124 * e.g. on a device with hid:IBM0001 and cid:ACPI0001 you get:
125 * char *modalias: "acpi:IBM0001:ACPI0001"
Zhang Rui3d8e0092014-01-14 16:46:35 +0800126 * Return: 0: no _HID and no _CID
127 * -EINVAL: output error
128 * -ENOMEM: output is truncated
Thomas Renninger29b71a12007-07-23 14:43:51 +0200129*/
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +0200130static int create_pnp_modalias(struct acpi_device *acpi_dev, char *modalias,
131 int size)
Adrian Bunkb3e572d2007-08-14 23:22:35 +0200132{
Thomas Renninger29b71a12007-07-23 14:43:51 +0200133 int len;
Zhang Rui5c9fcb52008-03-20 16:40:32 +0800134 int count;
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -0600135 struct acpi_hardware_id *id;
Thomas Renninger29b71a12007-07-23 14:43:51 +0200136
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +0200137 /*
138 * Since we skip PRP0001 from the modalias below, 0 should be returned
139 * if PRP0001 is the only ACPI/PNP ID in the device's list.
140 */
141 count = 0;
142 list_for_each_entry(id, &acpi_dev->pnp.ids, list)
143 if (strcmp(id->id, "PRP0001"))
144 count++;
145
146 if (!count)
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +0200147 return 0;
148
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +0200149 len = snprintf(modalias, size, "acpi:");
150 if (len <= 0)
151 return len;
Thomas Renninger29b71a12007-07-23 14:43:51 +0200152
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +0200153 size -= len;
Mika Westerberg733e6252014-10-21 13:33:56 +0200154
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +0200155 list_for_each_entry(id, &acpi_dev->pnp.ids, list) {
156 if (!strcmp(id->id, "PRP0001"))
157 continue;
Mika Westerberg733e6252014-10-21 13:33:56 +0200158
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +0200159 count = snprintf(&modalias[len], size, "%s:", id->id);
160 if (count < 0)
161 return -EINVAL;
Mika Westerberg733e6252014-10-21 13:33:56 +0200162
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +0200163 if (count >= size)
164 return -ENOMEM;
Mika Westerberg733e6252014-10-21 13:33:56 +0200165
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +0200166 len += count;
167 size -= count;
Zhang Rui5c9fcb52008-03-20 16:40:32 +0800168 }
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +0200169 modalias[len] = '\0';
170 return len;
171}
Zhang Rui5c9fcb52008-03-20 16:40:32 +0800172
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +0200173/**
174 * create_of_modalias - Creates DT compatible string for modalias and uevent
175 * @acpi_dev: ACPI device object.
176 * @modalias: Buffer to print into.
177 * @size: Size of the buffer.
178 *
179 * Expose DT compatible modalias as of:NnameTCcompatible. This function should
180 * only be called for devices having PRP0001 in their list of ACPI/PNP IDs.
181 */
182static int create_of_modalias(struct acpi_device *acpi_dev, char *modalias,
183 int size)
184{
185 struct acpi_buffer buf = { ACPI_ALLOCATE_BUFFER };
186 const union acpi_object *of_compatible, *obj;
187 int len, count;
188 int i, nval;
189 char *c;
190
191 acpi_get_name(acpi_dev->handle, ACPI_SINGLE_NAME, &buf);
192 /* DT strings are all in lower case */
193 for (c = buf.pointer; *c != '\0'; c++)
194 *c = tolower(*c);
195
196 len = snprintf(modalias, size, "of:N%sT", (char *)buf.pointer);
197 ACPI_FREE(buf.pointer);
198
199 if (len <= 0)
200 return len;
201
202 of_compatible = acpi_dev->data.of_compatible;
203 if (of_compatible->type == ACPI_TYPE_PACKAGE) {
204 nval = of_compatible->package.count;
205 obj = of_compatible->package.elements;
206 } else { /* Must be ACPI_TYPE_STRING. */
207 nval = 1;
208 obj = of_compatible;
209 }
210 for (i = 0; i < nval; i++, obj++) {
211 count = snprintf(&modalias[len], size, "C%s",
212 obj->string.pointer);
213 if (count < 0)
214 return -EINVAL;
215
216 if (count >= size)
217 return -ENOMEM;
218
219 len += count;
220 size -= count;
221 }
Thomas Renninger29b71a12007-07-23 14:43:51 +0200222 modalias[len] = '\0';
223 return len;
224}
225
Zhang Rui6eb24512014-01-14 16:46:36 +0800226/*
Mika Westerberg52870782014-10-24 16:40:54 +0200227 * acpi_companion_match() - Can we match via ACPI companion device
228 * @dev: Device in question
229 *
230 * Check if the given device has an ACPI companion and if that companion has
231 * a valid list of PNP IDs, and if the device is the first (primary) physical
Rafael J. Wysockie1acdeb2015-04-10 16:07:38 +0200232 * device associated with it. Return the companion pointer if that's the case
233 * or NULL otherwise.
Mika Westerberg52870782014-10-24 16:40:54 +0200234 *
235 * If multiple physical devices are attached to a single ACPI companion, we need
236 * to be careful. The usage scenario for this kind of relationship is that all
237 * of the physical devices in question use resources provided by the ACPI
238 * companion. A typical case is an MFD device where all the sub-devices share
239 * the parent's ACPI companion. In such cases we can only allow the primary
240 * (first) physical device to be matched with the help of the companion's PNP
241 * IDs.
242 *
243 * Additional physical devices sharing the ACPI companion can still use
244 * resources available from it but they will be matched normally using functions
245 * provided by their bus types (and analogously for their modalias).
246 */
Rafael J. Wysockie1acdeb2015-04-10 16:07:38 +0200247static struct acpi_device *acpi_companion_match(const struct device *dev)
Mika Westerberg52870782014-10-24 16:40:54 +0200248{
249 struct acpi_device *adev;
Rafael J. Wysocki5f2e3272015-04-13 21:35:51 +0200250 struct mutex *physical_node_lock;
Mika Westerberg52870782014-10-24 16:40:54 +0200251
252 adev = ACPI_COMPANION(dev);
253 if (!adev)
Rafael J. Wysockie1acdeb2015-04-10 16:07:38 +0200254 return NULL;
Mika Westerberg52870782014-10-24 16:40:54 +0200255
256 if (list_empty(&adev->pnp.ids))
Rafael J. Wysockie1acdeb2015-04-10 16:07:38 +0200257 return NULL;
Mika Westerberg52870782014-10-24 16:40:54 +0200258
Rafael J. Wysocki5f2e3272015-04-13 21:35:51 +0200259 physical_node_lock = &adev->physical_node_lock;
260 mutex_lock(physical_node_lock);
Mika Westerberg52870782014-10-24 16:40:54 +0200261 if (list_empty(&adev->physical_node_list)) {
Rafael J. Wysockie1acdeb2015-04-10 16:07:38 +0200262 adev = NULL;
Mika Westerberg52870782014-10-24 16:40:54 +0200263 } else {
264 const struct acpi_device_physical_node *node;
265
266 node = list_first_entry(&adev->physical_node_list,
267 struct acpi_device_physical_node, node);
Rafael J. Wysockie1acdeb2015-04-10 16:07:38 +0200268 if (node->dev != dev)
269 adev = NULL;
Mika Westerberg52870782014-10-24 16:40:54 +0200270 }
Rafael J. Wysocki5f2e3272015-04-13 21:35:51 +0200271 mutex_unlock(physical_node_lock);
Mika Westerberg52870782014-10-24 16:40:54 +0200272
Rafael J. Wysockie1acdeb2015-04-10 16:07:38 +0200273 return adev;
Mika Westerberg52870782014-10-24 16:40:54 +0200274}
275
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +0200276static int __acpi_device_uevent_modalias(struct acpi_device *adev,
277 struct kobj_uevent_env *env)
278{
279 int len;
280
281 if (!adev)
282 return -ENODEV;
283
284 if (list_empty(&adev->pnp.ids))
285 return 0;
286
287 if (add_uevent_var(env, "MODALIAS="))
288 return -ENOMEM;
289
290 len = create_pnp_modalias(adev, &env->buf[env->buflen - 1],
291 sizeof(env->buf) - env->buflen);
292 if (len < 0)
293 return len;
294
295 env->buflen += len;
296 if (!adev->data.of_compatible)
297 return 0;
298
299 if (len > 0 && add_uevent_var(env, "MODALIAS="))
300 return -ENOMEM;
301
302 len = create_of_modalias(adev, &env->buf[env->buflen - 1],
303 sizeof(env->buf) - env->buflen);
304 if (len < 0)
305 return len;
306
307 env->buflen += len;
308
309 return 0;
310}
311
Mika Westerberg52870782014-10-24 16:40:54 +0200312/*
Zhang Rui6eb24512014-01-14 16:46:36 +0800313 * Creates uevent modalias field for ACPI enumerated devices.
314 * Because the other buses does not support ACPI HIDs & CIDs.
315 * e.g. for a device with hid:IBM0001 and cid:ACPI0001 you get:
316 * "acpi:IBM0001:ACPI0001"
317 */
318int acpi_device_uevent_modalias(struct device *dev, struct kobj_uevent_env *env)
319{
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +0200320 return __acpi_device_uevent_modalias(acpi_companion_match(dev), env);
Zhang Rui6eb24512014-01-14 16:46:36 +0800321}
322EXPORT_SYMBOL_GPL(acpi_device_uevent_modalias);
323
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +0200324static int __acpi_device_modalias(struct acpi_device *adev, char *buf, int size)
325{
326 int len, count;
327
328 if (!adev)
329 return -ENODEV;
330
331 if (list_empty(&adev->pnp.ids))
332 return 0;
333
334 len = create_pnp_modalias(adev, buf, size - 1);
335 if (len < 0) {
336 return len;
337 } else if (len > 0) {
338 buf[len++] = '\n';
339 size -= len;
340 }
341 if (!adev->data.of_compatible)
342 return len;
343
344 count = create_of_modalias(adev, buf + len, size - 1);
345 if (count < 0) {
346 return count;
347 } else if (count > 0) {
348 len += count;
349 buf[len++] = '\n';
350 }
351
352 return len;
353}
354
Zhang Rui6eb24512014-01-14 16:46:36 +0800355/*
356 * Creates modalias sysfs attribute for ACPI enumerated devices.
357 * Because the other buses does not support ACPI HIDs & CIDs.
358 * e.g. for a device with hid:IBM0001 and cid:ACPI0001 you get:
359 * "acpi:IBM0001:ACPI0001"
360 */
361int acpi_device_modalias(struct device *dev, char *buf, int size)
362{
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +0200363 return __acpi_device_modalias(acpi_companion_match(dev), buf, size);
Zhang Rui6eb24512014-01-14 16:46:36 +0800364}
365EXPORT_SYMBOL_GPL(acpi_device_modalias);
366
Thomas Renninger29b71a12007-07-23 14:43:51 +0200367static ssize_t
368acpi_device_modalias_show(struct device *dev, struct device_attribute *attr, char *buf) {
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +0200369 return __acpi_device_modalias(to_acpi_device(dev), buf, 1024);
Thomas Renninger29b71a12007-07-23 14:43:51 +0200370}
371static DEVICE_ATTR(modalias, 0444, acpi_device_modalias_show, NULL);
372
Rafael J. Wysockicaa73ea2013-12-29 15:25:48 +0100373bool acpi_scan_is_offline(struct acpi_device *adev, bool uevent)
Rafael J. Wysockid22ddcb2013-12-29 15:25:35 +0100374{
375 struct acpi_device_physical_node *pn;
376 bool offline = true;
377
378 mutex_lock(&adev->physical_node_lock);
379
380 list_for_each_entry(pn, &adev->physical_node_list, node)
381 if (device_supports_offline(pn->dev) && !pn->dev->offline) {
Rafael J. Wysockicaa73ea2013-12-29 15:25:48 +0100382 if (uevent)
383 kobject_uevent(&pn->dev->kobj, KOBJ_CHANGE);
384
Rafael J. Wysockid22ddcb2013-12-29 15:25:35 +0100385 offline = false;
386 break;
387 }
388
389 mutex_unlock(&adev->physical_node_lock);
390 return offline;
391}
392
Rafael J. Wysocki7f28dde2013-11-07 01:41:14 +0100393static acpi_status acpi_bus_offline(acpi_handle handle, u32 lvl, void *data,
394 void **ret_p)
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200395{
396 struct acpi_device *device = NULL;
397 struct acpi_device_physical_node *pn;
Rafael J. Wysocki303bfdb2013-05-23 10:43:13 +0200398 bool second_pass = (bool)data;
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200399 acpi_status status = AE_OK;
400
401 if (acpi_bus_get_device(handle, &device))
402 return AE_OK;
403
Rafael J. Wysocki7f28dde2013-11-07 01:41:14 +0100404 if (device->handler && !device->handler->hotplug.enabled) {
405 *ret_p = &device->dev;
406 return AE_SUPPORT;
407 }
408
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200409 mutex_lock(&device->physical_node_lock);
410
411 list_for_each_entry(pn, &device->physical_node_list, node) {
412 int ret;
413
Rafael J. Wysocki303bfdb2013-05-23 10:43:13 +0200414 if (second_pass) {
415 /* Skip devices offlined by the first pass. */
416 if (pn->put_online)
417 continue;
418 } else {
419 pn->put_online = false;
420 }
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200421 ret = device_offline(pn->dev);
422 if (acpi_force_hot_remove)
423 continue;
424
Rafael J. Wysocki303bfdb2013-05-23 10:43:13 +0200425 if (ret >= 0) {
426 pn->put_online = !ret;
427 } else {
428 *ret_p = pn->dev;
429 if (second_pass) {
430 status = AE_ERROR;
431 break;
432 }
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200433 }
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200434 }
435
436 mutex_unlock(&device->physical_node_lock);
437
438 return status;
439}
440
Rafael J. Wysocki7f28dde2013-11-07 01:41:14 +0100441static acpi_status acpi_bus_online(acpi_handle handle, u32 lvl, void *data,
442 void **ret_p)
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200443{
444 struct acpi_device *device = NULL;
445 struct acpi_device_physical_node *pn;
446
447 if (acpi_bus_get_device(handle, &device))
448 return AE_OK;
449
450 mutex_lock(&device->physical_node_lock);
451
452 list_for_each_entry(pn, &device->physical_node_list, node)
453 if (pn->put_online) {
454 device_online(pn->dev);
455 pn->put_online = false;
456 }
457
458 mutex_unlock(&device->physical_node_lock);
459
460 return AE_OK;
461}
462
Rafael J. Wysockid22ddcb2013-12-29 15:25:35 +0100463static int acpi_scan_try_to_offline(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464{
Yinghai Lu5993c462013-01-11 22:40:41 +0000465 acpi_handle handle = device->handle;
Rafael J. Wysockid22ddcb2013-12-29 15:25:35 +0100466 struct device *errdev = NULL;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100467 acpi_status status;
Rafael J. Wysockif058cdf2013-02-09 15:29:11 +0100468
Rafael J. Wysocki303bfdb2013-05-23 10:43:13 +0200469 /*
470 * Carry out two passes here and ignore errors in the first pass,
471 * because if the devices in question are memory blocks and
472 * CONFIG_MEMCG is set, one of the blocks may hold data structures
473 * that the other blocks depend on, but it is not known in advance which
474 * block holds them.
475 *
476 * If the first pass is successful, the second one isn't needed, though.
477 */
Rafael J. Wysocki7f28dde2013-11-07 01:41:14 +0100478 status = acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
479 NULL, acpi_bus_offline, (void *)false,
480 (void **)&errdev);
481 if (status == AE_SUPPORT) {
482 dev_warn(errdev, "Offline disabled.\n");
483 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
484 acpi_bus_online, NULL, NULL, NULL);
Rafael J. Wysocki7f28dde2013-11-07 01:41:14 +0100485 return -EPERM;
486 }
487 acpi_bus_offline(handle, 0, (void *)false, (void **)&errdev);
Rafael J. Wysocki303bfdb2013-05-23 10:43:13 +0200488 if (errdev) {
489 errdev = NULL;
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200490 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
Rafael J. Wysocki7f28dde2013-11-07 01:41:14 +0100491 NULL, acpi_bus_offline, (void *)true,
492 (void **)&errdev);
Rafael J. Wysocki303bfdb2013-05-23 10:43:13 +0200493 if (!errdev || acpi_force_hot_remove)
Rafael J. Wysocki7f28dde2013-11-07 01:41:14 +0100494 acpi_bus_offline(handle, 0, (void *)true,
495 (void **)&errdev);
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200496
Rafael J. Wysocki303bfdb2013-05-23 10:43:13 +0200497 if (errdev && !acpi_force_hot_remove) {
498 dev_warn(errdev, "Offline failed.\n");
Rafael J. Wysocki7f28dde2013-11-07 01:41:14 +0100499 acpi_bus_online(handle, 0, NULL, NULL);
Rafael J. Wysocki303bfdb2013-05-23 10:43:13 +0200500 acpi_walk_namespace(ACPI_TYPE_ANY, handle,
Rafael J. Wysocki7f28dde2013-11-07 01:41:14 +0100501 ACPI_UINT32_MAX, acpi_bus_online,
502 NULL, NULL, NULL);
Rafael J. Wysocki303bfdb2013-05-23 10:43:13 +0200503 return -EBUSY;
504 }
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200505 }
Rafael J. Wysockid22ddcb2013-12-29 15:25:35 +0100506 return 0;
507}
508
509static int acpi_scan_hot_remove(struct acpi_device *device)
510{
511 acpi_handle handle = device->handle;
512 unsigned long long sta;
513 acpi_status status;
514
Tang Chendee15922014-08-08 10:30:45 +0800515 if (device->handler && device->handler->hotplug.demand_offline
516 && !acpi_force_hot_remove) {
Rafael J. Wysockicaa73ea2013-12-29 15:25:48 +0100517 if (!acpi_scan_is_offline(device, true))
Rafael J. Wysockid22ddcb2013-12-29 15:25:35 +0100518 return -EBUSY;
519 } else {
520 int error = acpi_scan_try_to_offline(device);
521 if (error)
522 return error;
523 }
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200524
Zhang Rui26d46862008-04-29 02:35:48 -0400525 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Kay Sievers07944692008-10-30 01:18:59 +0100526 "Hot-removing device %s...\n", dev_name(&device->dev)));
Zhang Rui26d46862008-04-29 02:35:48 -0400527
Rafael J. Wysockibfee26d2013-01-26 00:27:44 +0100528 acpi_bus_trim(device);
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200529
Jiang Liu7d2421f2013-06-29 00:24:40 +0800530 acpi_evaluate_lck(handle, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 /*
532 * TBD: _EJD support.
533 */
Jiang Liu7d2421f2013-06-29 00:24:40 +0800534 status = acpi_evaluate_ej0(handle);
535 if (status == AE_NOT_FOUND)
536 return -ENODEV;
537 else if (ACPI_FAILURE(status))
538 return -EIO;
Rafael J. Wysockif058cdf2013-02-09 15:29:11 +0100539
Toshi Kani882fd122013-03-13 19:29:26 +0000540 /*
541 * Verify if eject was indeed successful. If not, log an error
542 * message. No need to call _OST since _EJ0 call was made OK.
543 */
544 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
545 if (ACPI_FAILURE(status)) {
546 acpi_handle_warn(handle,
547 "Status check after eject failed (0x%x)\n", status);
548 } else if (sta & ACPI_STA_DEVICE_ENABLED) {
549 acpi_handle_warn(handle,
550 "Eject incomplete - status 0x%llx\n", sta);
551 }
552
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100553 return 0;
554}
Rafael J. Wysockif058cdf2013-02-09 15:29:11 +0100555
Rafael J. Wysocki443fc822013-11-22 21:55:43 +0100556static int acpi_scan_device_not_present(struct acpi_device *adev)
557{
558 if (!acpi_device_enumerated(adev)) {
559 dev_warn(&adev->dev, "Still not present\n");
560 return -EALREADY;
561 }
562 acpi_bus_trim(adev);
563 return 0;
564}
565
Rafael J. Wysockic27b2c32013-11-22 21:55:07 +0100566static int acpi_scan_device_check(struct acpi_device *adev)
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100567{
Rafael J. Wysockif943db42013-08-28 21:41:07 +0200568 int error;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100569
Rafael J. Wysocki443fc822013-11-22 21:55:43 +0100570 acpi_bus_get_status(adev);
571 if (adev->status.present || adev->status.functional) {
572 /*
573 * This function is only called for device objects for which
574 * matching scan handlers exist. The only situation in which
575 * the scan handler is not attached to this device object yet
576 * is when the device has just appeared (either it wasn't
577 * present at all before or it was removed and then added
578 * again).
579 */
580 if (adev->handler) {
581 dev_warn(&adev->dev, "Already enumerated\n");
582 return -EALREADY;
583 }
584 error = acpi_bus_scan(adev->handle);
585 if (error) {
586 dev_warn(&adev->dev, "Namespace scan failure\n");
587 return error;
588 }
589 if (!adev->handler) {
590 dev_warn(&adev->dev, "Enumeration failure\n");
591 error = -ENODEV;
592 }
593 } else {
594 error = acpi_scan_device_not_present(adev);
595 }
596 return error;
597}
598
599static int acpi_scan_bus_check(struct acpi_device *adev)
600{
601 struct acpi_scan_handler *handler = adev->handler;
602 struct acpi_device *child;
603 int error;
604
605 acpi_bus_get_status(adev);
606 if (!(adev->status.present || adev->status.functional)) {
607 acpi_scan_device_not_present(adev);
608 return 0;
609 }
610 if (handler && handler->hotplug.scan_dependent)
611 return handler->hotplug.scan_dependent(adev);
612
Rafael J. Wysockic27b2c32013-11-22 21:55:07 +0100613 error = acpi_bus_scan(adev->handle);
614 if (error) {
615 dev_warn(&adev->dev, "Namespace scan failure\n");
616 return error;
617 }
Rafael J. Wysocki443fc822013-11-22 21:55:43 +0100618 list_for_each_entry(child, &adev->children, node) {
619 error = acpi_scan_bus_check(child);
620 if (error)
621 return error;
Rafael J. Wysockic27b2c32013-11-22 21:55:07 +0100622 }
623 return 0;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100624}
625
Rafael J. Wysocki3c2cc7f2014-02-06 17:31:37 +0100626static int acpi_generic_hotplug_event(struct acpi_device *adev, u32 type)
627{
628 switch (type) {
629 case ACPI_NOTIFY_BUS_CHECK:
630 return acpi_scan_bus_check(adev);
631 case ACPI_NOTIFY_DEVICE_CHECK:
632 return acpi_scan_device_check(adev);
633 case ACPI_NOTIFY_EJECT_REQUEST:
634 case ACPI_OST_EC_OSPM_EJECT:
Rafael J. Wysockidd2151b2014-02-04 00:44:02 +0100635 if (adev->handler && !adev->handler->hotplug.enabled) {
636 dev_info(&adev->dev, "Eject disabled\n");
637 return -EPERM;
638 }
Rafael J. Wysocki700b8422014-02-21 01:07:17 +0100639 acpi_evaluate_ost(adev->handle, ACPI_NOTIFY_EJECT_REQUEST,
640 ACPI_OST_SC_EJECT_IN_PROGRESS, NULL);
Rafael J. Wysocki3c2cc7f2014-02-06 17:31:37 +0100641 return acpi_scan_hot_remove(adev);
642 }
643 return -EINVAL;
644}
645
Rafael J. Wysocki1e3bcb52014-03-03 00:40:38 +0100646void acpi_device_hotplug(struct acpi_device *adev, u32 src)
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100647{
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100648 u32 ost_code = ACPI_OST_SC_NON_SPECIFIC_FAILURE;
Rafael J. Wysocki3c2cc7f2014-02-06 17:31:37 +0100649 int error = -ENODEV;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100650
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200651 lock_device_hotplug();
Rafael J. Wysockie0ae8fe2013-08-30 14:19:29 +0200652 mutex_lock(&acpi_scan_lock);
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100653
Rafael J. Wysockic27b2c32013-11-22 21:55:07 +0100654 /*
655 * The device object's ACPI handle cannot become invalid as long as we
Rafael J. Wysocki3c2cc7f2014-02-06 17:31:37 +0100656 * are holding acpi_scan_lock, but it might have become invalid before
Rafael J. Wysockic27b2c32013-11-22 21:55:07 +0100657 * that lock was acquired.
658 */
659 if (adev->handle == INVALID_ACPI_HANDLE)
Rafael J. Wysocki3c2cc7f2014-02-06 17:31:37 +0100660 goto err_out;
Rafael J. Wysockic27b2c32013-11-22 21:55:07 +0100661
Rafael J. Wysocki1e2380c2014-02-16 01:51:01 +0100662 if (adev->flags.is_dock_station) {
663 error = dock_notify(adev, src);
664 } else if (adev->flags.hotplug_notify) {
Rafael J. Wysocki3c2cc7f2014-02-06 17:31:37 +0100665 error = acpi_generic_hotplug_event(adev, src);
Rafael J. Wysockidd2151b2014-02-04 00:44:02 +0100666 if (error == -EPERM) {
667 ost_code = ACPI_OST_SC_EJECT_NOT_SUPPORTED;
668 goto err_out;
669 }
Rafael J. Wysocki3c2cc7f2014-02-06 17:31:37 +0100670 } else {
Rafael J. Wysockibe27b3d2014-02-21 01:10:27 +0100671 int (*notify)(struct acpi_device *, u32);
Rafael J. Wysocki3c2cc7f2014-02-06 17:31:37 +0100672
673 acpi_lock_hp_context();
Rafael J. Wysockibe27b3d2014-02-21 01:10:27 +0100674 notify = adev->hp ? adev->hp->notify : NULL;
Rafael J. Wysocki3c2cc7f2014-02-06 17:31:37 +0100675 acpi_unlock_hp_context();
676 /*
677 * There may be additional notify handlers for device objects
678 * without the .event() callback, so ignore them here.
679 */
Rafael J. Wysockibe27b3d2014-02-21 01:10:27 +0100680 if (notify)
681 error = notify(adev, src);
Rafael J. Wysocki3c2cc7f2014-02-06 17:31:37 +0100682 else
683 goto out;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100684 }
Rafael J. Wysockic27b2c32013-11-22 21:55:07 +0100685 if (!error)
686 ost_code = ACPI_OST_SC_SUCCESS;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100687
Rafael J. Wysocki3c2cc7f2014-02-06 17:31:37 +0100688 err_out:
Rafael J. Wysocki700b8422014-02-21 01:07:17 +0100689 acpi_evaluate_ost(adev->handle, src, ost_code, NULL);
Rafael J. Wysocki3c2cc7f2014-02-06 17:31:37 +0100690
691 out:
Rafael J. Wysocki78ea4632014-02-04 00:43:05 +0100692 acpi_bus_put_acpi_device(adev);
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100693 mutex_unlock(&acpi_scan_lock);
Rafael J. Wysockie0ae8fe2013-08-30 14:19:29 +0200694 unlock_device_hotplug();
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100695}
696
Rafael J. Wysocki836aedb2013-01-24 12:49:59 +0100697static ssize_t real_power_state_show(struct device *dev,
698 struct device_attribute *attr, char *buf)
699{
700 struct acpi_device *adev = to_acpi_device(dev);
701 int state;
702 int ret;
703
704 ret = acpi_device_get_power(adev, &state);
705 if (ret)
706 return ret;
707
708 return sprintf(buf, "%s\n", acpi_power_state_string(state));
709}
710
711static DEVICE_ATTR(real_power_state, 0444, real_power_state_show, NULL);
712
713static ssize_t power_state_show(struct device *dev,
714 struct device_attribute *attr, char *buf)
715{
716 struct acpi_device *adev = to_acpi_device(dev);
717
718 return sprintf(buf, "%s\n", acpi_power_state_string(adev->power.state));
719}
720
721static DEVICE_ATTR(power_state, 0444, power_state_show, NULL);
722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723static ssize_t
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800724acpi_eject_store(struct device *d, struct device_attribute *attr,
725 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726{
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800727 struct acpi_device *acpi_device = to_acpi_device(d);
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100728 acpi_object_type not_used;
729 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100731 if (!count || buf[0] != '1')
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100734 if ((!acpi_device->handler || !acpi_device->handler->hotplug.enabled)
735 && !acpi_device->driver)
736 return -ENODEV;
737
738 status = acpi_get_type(acpi_device->handle, &not_used);
739 if (ACPI_FAILURE(status) || !acpi_device->flags.ejectable)
740 return -ENODEV;
741
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100742 get_device(&acpi_device->dev);
Rafael J. Wysocki1e3bcb52014-03-03 00:40:38 +0100743 status = acpi_hotplug_schedule(acpi_device, ACPI_OST_EC_OSPM_EJECT);
Rafael J. Wysockif943db42013-08-28 21:41:07 +0200744 if (ACPI_SUCCESS(status))
745 return count;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100746
Rafael J. Wysockif943db42013-08-28 21:41:07 +0200747 put_device(&acpi_device->dev);
Rafael J. Wysocki700b8422014-02-21 01:07:17 +0100748 acpi_evaluate_ost(acpi_device->handle, ACPI_OST_EC_OSPM_EJECT,
749 ACPI_OST_SC_NON_SPECIFIC_FAILURE, NULL);
Rafael J. Wysocki5add99c2013-11-07 01:41:39 +0100750 return status == AE_NO_MEMORY ? -ENOMEM : -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751}
752
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800753static DEVICE_ATTR(eject, 0200, NULL, acpi_eject_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800755static ssize_t
756acpi_device_hid_show(struct device *dev, struct device_attribute *attr, char *buf) {
757 struct acpi_device *acpi_dev = to_acpi_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Bjorn Helgaasea8d82f2009-09-21 13:35:09 -0600759 return sprintf(buf, "%s\n", acpi_device_hid(acpi_dev));
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800760}
761static DEVICE_ATTR(hid, 0444, acpi_device_hid_show, NULL);
762
Lv Zheng923d4a42012-10-30 14:43:26 +0100763static ssize_t acpi_device_uid_show(struct device *dev,
764 struct device_attribute *attr, char *buf)
765{
766 struct acpi_device *acpi_dev = to_acpi_device(dev);
767
768 return sprintf(buf, "%s\n", acpi_dev->pnp.unique_id);
769}
770static DEVICE_ATTR(uid, 0444, acpi_device_uid_show, NULL);
771
772static ssize_t acpi_device_adr_show(struct device *dev,
773 struct device_attribute *attr, char *buf)
774{
775 struct acpi_device *acpi_dev = to_acpi_device(dev);
776
777 return sprintf(buf, "0x%08x\n",
778 (unsigned int)(acpi_dev->pnp.bus_address));
779}
780static DEVICE_ATTR(adr, 0444, acpi_device_adr_show, NULL);
781
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800782static ssize_t
783acpi_device_path_show(struct device *dev, struct device_attribute *attr, char *buf) {
784 struct acpi_device *acpi_dev = to_acpi_device(dev);
785 struct acpi_buffer path = {ACPI_ALLOCATE_BUFFER, NULL};
786 int result;
787
788 result = acpi_get_name(acpi_dev->handle, ACPI_FULL_PATHNAME, &path);
Alex Chiang0c526d92009-05-14 08:31:37 -0600789 if (result)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800790 goto end;
791
792 result = sprintf(buf, "%s\n", (char*)path.pointer);
793 kfree(path.pointer);
Alex Chiang0c526d92009-05-14 08:31:37 -0600794end:
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800795 return result;
796}
797static DEVICE_ATTR(path, 0444, acpi_device_path_show, NULL);
798
Lance Ortizd1efe3c2012-10-02 12:43:23 -0600799/* sysfs file that shows description text from the ACPI _STR method */
800static ssize_t description_show(struct device *dev,
801 struct device_attribute *attr,
802 char *buf) {
803 struct acpi_device *acpi_dev = to_acpi_device(dev);
804 int result;
805
806 if (acpi_dev->pnp.str_obj == NULL)
807 return 0;
808
809 /*
810 * The _STR object contains a Unicode identifier for a device.
811 * We need to convert to utf-8 so it can be displayed.
812 */
813 result = utf16s_to_utf8s(
814 (wchar_t *)acpi_dev->pnp.str_obj->buffer.pointer,
815 acpi_dev->pnp.str_obj->buffer.length,
816 UTF16_LITTLE_ENDIAN, buf,
817 PAGE_SIZE);
818
819 buf[result++] = '\n';
820
821 return result;
822}
823static DEVICE_ATTR(description, 0444, description_show, NULL);
824
Yasuaki Ishimatsubb74ac22012-11-16 02:56:59 +0100825static ssize_t
826acpi_device_sun_show(struct device *dev, struct device_attribute *attr,
827 char *buf) {
828 struct acpi_device *acpi_dev = to_acpi_device(dev);
Yasuaki Ishimatsua383b682014-09-03 13:39:13 +0900829 acpi_status status;
830 unsigned long long sun;
Yasuaki Ishimatsubb74ac22012-11-16 02:56:59 +0100831
Yasuaki Ishimatsua383b682014-09-03 13:39:13 +0900832 status = acpi_evaluate_integer(acpi_dev->handle, "_SUN", NULL, &sun);
833 if (ACPI_FAILURE(status))
834 return -ENODEV;
835
836 return sprintf(buf, "%llu\n", sun);
Yasuaki Ishimatsubb74ac22012-11-16 02:56:59 +0100837}
838static DEVICE_ATTR(sun, 0444, acpi_device_sun_show, NULL);
839
Srinivas Pandruvadac713cd72014-01-10 16:00:05 -0800840static ssize_t status_show(struct device *dev, struct device_attribute *attr,
841 char *buf) {
842 struct acpi_device *acpi_dev = to_acpi_device(dev);
843 acpi_status status;
844 unsigned long long sta;
845
846 status = acpi_evaluate_integer(acpi_dev->handle, "_STA", NULL, &sta);
847 if (ACPI_FAILURE(status))
848 return -ENODEV;
849
850 return sprintf(buf, "%llu\n", sta);
851}
852static DEVICE_ATTR_RO(status);
853
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800854static int acpi_device_setup_files(struct acpi_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855{
Lance Ortizd1efe3c2012-10-02 12:43:23 -0600856 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800857 acpi_status status;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800858 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800860 /*
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800861 * Devices gotten from FADT don't have a "path" attribute
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800862 */
Alex Chiang0c526d92009-05-14 08:31:37 -0600863 if (dev->handle) {
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800864 result = device_create_file(&dev->dev, &dev_attr_path);
Alex Chiang0c526d92009-05-14 08:31:37 -0600865 if (result)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800866 goto end;
867 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +0200869 if (!list_empty(&dev->pnp.ids)) {
870 result = device_create_file(&dev->dev, &dev_attr_hid);
871 if (result)
872 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +0200874 result = device_create_file(&dev->dev, &dev_attr_modalias);
875 if (result)
876 goto end;
877 }
Thomas Renninger29b71a12007-07-23 14:43:51 +0200878
Lance Ortizd1efe3c2012-10-02 12:43:23 -0600879 /*
880 * If device has _STR, 'description' file is created
881 */
Jiang Liu952c63e2013-06-29 00:24:38 +0800882 if (acpi_has_method(dev->handle, "_STR")) {
Lance Ortizd1efe3c2012-10-02 12:43:23 -0600883 status = acpi_evaluate_object(dev->handle, "_STR",
884 NULL, &buffer);
885 if (ACPI_FAILURE(status))
886 buffer.pointer = NULL;
887 dev->pnp.str_obj = buffer.pointer;
888 result = device_create_file(&dev->dev, &dev_attr_description);
889 if (result)
890 goto end;
891 }
892
Toshi Kanid4e1a692013-03-04 21:30:41 +0000893 if (dev->pnp.type.bus_address)
Lv Zheng923d4a42012-10-30 14:43:26 +0100894 result = device_create_file(&dev->dev, &dev_attr_adr);
895 if (dev->pnp.unique_id)
896 result = device_create_file(&dev->dev, &dev_attr_uid);
897
Yasuaki Ishimatsua383b682014-09-03 13:39:13 +0900898 if (acpi_has_method(dev->handle, "_SUN")) {
Yasuaki Ishimatsubb74ac22012-11-16 02:56:59 +0100899 result = device_create_file(&dev->dev, &dev_attr_sun);
900 if (result)
901 goto end;
Yasuaki Ishimatsubb74ac22012-11-16 02:56:59 +0100902 }
903
Srinivas Pandruvadac713cd72014-01-10 16:00:05 -0800904 if (acpi_has_method(dev->handle, "_STA")) {
905 result = device_create_file(&dev->dev, &dev_attr_status);
906 if (result)
907 goto end;
908 }
909
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800910 /*
911 * If device has _EJ0, 'eject' file is created that is used to trigger
912 * hot-removal function from userland.
913 */
Jiang Liu952c63e2013-06-29 00:24:38 +0800914 if (acpi_has_method(dev->handle, "_EJ0")) {
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800915 result = device_create_file(&dev->dev, &dev_attr_eject);
Rafael J. Wysocki836aedb2013-01-24 12:49:59 +0100916 if (result)
917 return result;
918 }
919
920 if (dev->flags.power_manageable) {
921 result = device_create_file(&dev->dev, &dev_attr_power_state);
922 if (result)
923 return result;
924
925 if (dev->power.flags.power_resources)
926 result = device_create_file(&dev->dev,
927 &dev_attr_real_power_state);
928 }
929
Alex Chiang0c526d92009-05-14 08:31:37 -0600930end:
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800931 return result;
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800932}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800934static void acpi_device_remove_files(struct acpi_device *dev)
935{
Rafael J. Wysocki836aedb2013-01-24 12:49:59 +0100936 if (dev->flags.power_manageable) {
937 device_remove_file(&dev->dev, &dev_attr_power_state);
938 if (dev->power.flags.power_resources)
939 device_remove_file(&dev->dev,
940 &dev_attr_real_power_state);
941 }
942
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800943 /*
Lance Ortizd1efe3c2012-10-02 12:43:23 -0600944 * If device has _STR, remove 'description' file
945 */
Jiang Liu952c63e2013-06-29 00:24:38 +0800946 if (acpi_has_method(dev->handle, "_STR")) {
Lance Ortizd1efe3c2012-10-02 12:43:23 -0600947 kfree(dev->pnp.str_obj);
948 device_remove_file(&dev->dev, &dev_attr_description);
949 }
950 /*
951 * If device has _EJ0, remove 'eject' file.
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800952 */
Jiang Liu952c63e2013-06-29 00:24:38 +0800953 if (acpi_has_method(dev->handle, "_EJ0"))
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800954 device_remove_file(&dev->dev, &dev_attr_eject);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800955
Jiang Liu952c63e2013-06-29 00:24:38 +0800956 if (acpi_has_method(dev->handle, "_SUN"))
Yasuaki Ishimatsubb74ac22012-11-16 02:56:59 +0100957 device_remove_file(&dev->dev, &dev_attr_sun);
958
Lv Zheng923d4a42012-10-30 14:43:26 +0100959 if (dev->pnp.unique_id)
960 device_remove_file(&dev->dev, &dev_attr_uid);
Toshi Kanid4e1a692013-03-04 21:30:41 +0000961 if (dev->pnp.type.bus_address)
Lv Zheng923d4a42012-10-30 14:43:26 +0100962 device_remove_file(&dev->dev, &dev_attr_adr);
Bjorn Helgaas1131b932009-09-21 13:35:29 -0600963 device_remove_file(&dev->dev, &dev_attr_modalias);
964 device_remove_file(&dev->dev, &dev_attr_hid);
Srinivas Pandruvadac713cd72014-01-10 16:00:05 -0800965 if (acpi_has_method(dev->handle, "_STA"))
966 device_remove_file(&dev->dev, &dev_attr_status);
Alex Chiang0c526d92009-05-14 08:31:37 -0600967 if (dev->handle)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800968 device_remove_file(&dev->dev, &dev_attr_path);
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800969}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970/* --------------------------------------------------------------------------
Zhang Rui9e89dde2006-12-07 20:56:16 +0800971 ACPI Bus operations
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 -------------------------------------------------------------------------- */
Thomas Renninger29b71a12007-07-23 14:43:51 +0200973
Mika Westerbergcf761af2012-10-31 22:44:41 +0100974/**
Rafael J. Wysocki2b9c6982015-04-10 16:07:51 +0200975 * acpi_of_match_device - Match device object using the "compatible" property.
976 * @adev: ACPI device object to match.
Rafael J. Wysocki54fe9ce2015-04-10 16:07:30 +0200977 * @of_match_table: List of device IDs to match against.
978 *
979 * If @dev has an ACPI companion which has the special PRP0001 device ID in its
980 * list of identifiers and a _DSD object with the "compatible" property, use
981 * that property to match against the given list of identifiers.
982 */
Rafael J. Wysocki2b9c6982015-04-10 16:07:51 +0200983static bool acpi_of_match_device(struct acpi_device *adev,
Rafael J. Wysocki54fe9ce2015-04-10 16:07:30 +0200984 const struct of_device_id *of_match_table)
Mika Westerberg733e6252014-10-21 13:33:56 +0200985{
986 const union acpi_object *of_compatible, *obj;
Mika Westerberg733e6252014-10-21 13:33:56 +0200987 int i, nval;
988
Mika Westerberg733e6252014-10-21 13:33:56 +0200989 if (!adev)
990 return false;
991
992 of_compatible = adev->data.of_compatible;
Rafael J. Wysocki54fe9ce2015-04-10 16:07:30 +0200993 if (!of_match_table || !of_compatible)
Mika Westerberg733e6252014-10-21 13:33:56 +0200994 return false;
995
996 if (of_compatible->type == ACPI_TYPE_PACKAGE) {
997 nval = of_compatible->package.count;
998 obj = of_compatible->package.elements;
999 } else { /* Must be ACPI_TYPE_STRING. */
1000 nval = 1;
1001 obj = of_compatible;
1002 }
1003 /* Now we can look for the driver DT compatible strings */
1004 for (i = 0; i < nval; i++, obj++) {
1005 const struct of_device_id *id;
1006
Rafael J. Wysocki54fe9ce2015-04-10 16:07:30 +02001007 for (id = of_match_table; id->compatible[0]; id++)
Mika Westerberg733e6252014-10-21 13:33:56 +02001008 if (!strcasecmp(obj->string.pointer, id->compatible))
1009 return true;
1010 }
1011
1012 return false;
1013}
1014
Rafael J. Wysocki2b9c6982015-04-10 16:07:51 +02001015static const struct acpi_device_id *__acpi_match_device(
1016 struct acpi_device *device,
1017 const struct acpi_device_id *ids,
1018 const struct of_device_id *of_ids)
1019{
1020 const struct acpi_device_id *id;
1021 struct acpi_hardware_id *hwid;
1022
1023 /*
1024 * If the device is not present, it is unnecessary to load device
1025 * driver for it.
1026 */
1027 if (!device || !device->status.present)
1028 return NULL;
1029
1030 list_for_each_entry(hwid, &device->pnp.ids, list) {
1031 /* First, check the ACPI/PNP IDs provided by the caller. */
1032 for (id = ids; id->id[0]; id++)
1033 if (!strcmp((char *) id->id, hwid->id))
1034 return id;
1035
1036 /*
1037 * Next, check the special "PRP0001" ID and try to match the
1038 * "compatible" property if found.
1039 *
1040 * The id returned by the below is not valid, but the only
1041 * caller passing non-NULL of_ids here is only interested in
1042 * whether or not the return value is NULL.
1043 */
1044 if (!strcmp("PRP0001", hwid->id)
1045 && acpi_of_match_device(device, of_ids))
1046 return id;
1047 }
1048 return NULL;
1049}
1050
1051/**
1052 * acpi_match_device - Match a struct device against a given list of ACPI IDs
1053 * @ids: Array of struct acpi_device_id object to match against.
1054 * @dev: The device structure to match.
1055 *
1056 * Check if @dev has a valid ACPI handle and if there is a struct acpi_device
1057 * object for that handle and use that object to match against a given list of
1058 * device IDs.
1059 *
1060 * Return a pointer to the first matching ID on success or %NULL on failure.
1061 */
1062const struct acpi_device_id *acpi_match_device(const struct acpi_device_id *ids,
1063 const struct device *dev)
1064{
1065 return __acpi_match_device(acpi_companion_match(dev), ids, NULL);
1066}
1067EXPORT_SYMBOL_GPL(acpi_match_device);
1068
1069int acpi_match_device_ids(struct acpi_device *device,
1070 const struct acpi_device_id *ids)
1071{
1072 return __acpi_match_device(device, ids, NULL) ? 0 : -ENOENT;
1073}
1074EXPORT_SYMBOL(acpi_match_device_ids);
1075
Mika Westerberg733e6252014-10-21 13:33:56 +02001076bool acpi_driver_match_device(struct device *dev,
1077 const struct device_driver *drv)
1078{
1079 if (!drv->acpi_match_table)
Rafael J. Wysocki2b9c6982015-04-10 16:07:51 +02001080 return acpi_of_match_device(ACPI_COMPANION(dev),
1081 drv->of_match_table);
Mika Westerberg733e6252014-10-21 13:33:56 +02001082
Rafael J. Wysocki2b9c6982015-04-10 16:07:51 +02001083 return !!__acpi_match_device(acpi_companion_match(dev),
1084 drv->acpi_match_table, drv->of_match_table);
Mika Westerberg733e6252014-10-21 13:33:56 +02001085}
1086EXPORT_SYMBOL_GPL(acpi_driver_match_device);
1087
Rafael J. Wysocki0b224522013-01-17 14:11:06 +01001088static void acpi_free_power_resources_lists(struct acpi_device *device)
1089{
1090 int i;
1091
Rafael J. Wysocki993cbe52013-01-17 14:11:06 +01001092 if (device->wakeup.flags.valid)
1093 acpi_power_resources_list_free(&device->wakeup.resources);
1094
Rafael J. Wysocki1b1f3e12015-01-01 23:38:28 +01001095 if (!device->power.flags.power_resources)
Rafael J. Wysocki0b224522013-01-17 14:11:06 +01001096 return;
1097
1098 for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3_HOT; i++) {
1099 struct acpi_device_power_state *ps = &device->power.states[i];
1100 acpi_power_resources_list_free(&ps->resources);
1101 }
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001102}
1103
Patrick Mochel1890a972006-12-07 20:56:31 +08001104static void acpi_device_release(struct device *dev)
1105{
1106 struct acpi_device *acpi_dev = to_acpi_device(dev);
1107
Mika Westerbergffdcd952014-10-21 13:33:55 +02001108 acpi_free_properties(acpi_dev);
Toshi Kanic0af4172013-03-04 21:30:42 +00001109 acpi_free_pnp_ids(&acpi_dev->pnp);
Rafael J. Wysocki0b224522013-01-17 14:11:06 +01001110 acpi_free_power_resources_lists(acpi_dev);
Patrick Mochel1890a972006-12-07 20:56:31 +08001111 kfree(acpi_dev);
1112}
1113
Patrick Mochel5d9464a2006-12-07 20:56:27 +08001114static int acpi_bus_match(struct device *dev, struct device_driver *drv)
1115{
1116 struct acpi_device *acpi_dev = to_acpi_device(dev);
1117 struct acpi_driver *acpi_drv = to_acpi_driver(drv);
1118
Rafael J. Wysocki209d3b12012-12-21 00:36:48 +01001119 return acpi_dev->flags.match_driver
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001120 && !acpi_match_device_ids(acpi_dev, acpi_drv->ids);
Patrick Mochel5d9464a2006-12-07 20:56:27 +08001121}
1122
Kay Sievers7eff2e72007-08-14 15:15:12 +02001123static int acpi_device_uevent(struct device *dev, struct kobj_uevent_env *env)
Patrick Mochel5d9464a2006-12-07 20:56:27 +08001124{
Rafael J. Wysocki8765c5b2015-04-13 00:29:36 +02001125 return __acpi_device_uevent_modalias(to_acpi_device(dev), env);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126}
1127
Bjorn Helgaas46ec8592009-03-30 17:48:13 +00001128static void acpi_device_notify(acpi_handle handle, u32 event, void *data)
1129{
1130 struct acpi_device *device = data;
1131
1132 device->driver->ops.notify(device, event);
1133}
1134
Lan Tianyu236105d2014-08-26 01:29:24 +02001135static void acpi_device_notify_fixed(void *data)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +00001136{
1137 struct acpi_device *device = data;
1138
Bjorn Helgaas53de5352009-08-31 22:32:20 +00001139 /* Fixed hardware devices have no handles */
1140 acpi_device_notify(NULL, ACPI_FIXED_HARDWARE_EVENT, device);
Lan Tianyu236105d2014-08-26 01:29:24 +02001141}
1142
Aaron Lufd9caef2015-03-13 13:52:50 +08001143static u32 acpi_device_fixed_event(void *data)
Lan Tianyu236105d2014-08-26 01:29:24 +02001144{
1145 acpi_os_execute(OSL_NOTIFY_HANDLER, acpi_device_notify_fixed, data);
Aaron Lufd9caef2015-03-13 13:52:50 +08001146 return ACPI_INTERRUPT_HANDLED;
Bjorn Helgaas46ec8592009-03-30 17:48:13 +00001147}
1148
1149static int acpi_device_install_notify_handler(struct acpi_device *device)
1150{
1151 acpi_status status;
Bjorn Helgaas46ec8592009-03-30 17:48:13 +00001152
Bjorn Helgaasccba2a32009-09-21 19:29:15 +00001153 if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +00001154 status =
1155 acpi_install_fixed_event_handler(ACPI_EVENT_POWER_BUTTON,
Lan Tianyu236105d2014-08-26 01:29:24 +02001156 acpi_device_fixed_event,
Bjorn Helgaas46ec8592009-03-30 17:48:13 +00001157 device);
Bjorn Helgaasccba2a32009-09-21 19:29:15 +00001158 else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +00001159 status =
1160 acpi_install_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON,
Lan Tianyu236105d2014-08-26 01:29:24 +02001161 acpi_device_fixed_event,
Bjorn Helgaas46ec8592009-03-30 17:48:13 +00001162 device);
1163 else
1164 status = acpi_install_notify_handler(device->handle,
1165 ACPI_DEVICE_NOTIFY,
1166 acpi_device_notify,
1167 device);
1168
1169 if (ACPI_FAILURE(status))
1170 return -EINVAL;
1171 return 0;
1172}
1173
1174static void acpi_device_remove_notify_handler(struct acpi_device *device)
1175{
Bjorn Helgaasccba2a32009-09-21 19:29:15 +00001176 if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +00001177 acpi_remove_fixed_event_handler(ACPI_EVENT_POWER_BUTTON,
Lan Tianyu236105d2014-08-26 01:29:24 +02001178 acpi_device_fixed_event);
Bjorn Helgaasccba2a32009-09-21 19:29:15 +00001179 else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +00001180 acpi_remove_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON,
Lan Tianyu236105d2014-08-26 01:29:24 +02001181 acpi_device_fixed_event);
Bjorn Helgaas46ec8592009-03-30 17:48:13 +00001182 else
1183 acpi_remove_notify_handler(device->handle, ACPI_DEVICE_NOTIFY,
1184 acpi_device_notify);
1185}
1186
Rafael J. Wysockid9e455f2013-06-10 13:00:50 +02001187static int acpi_device_probe(struct device *dev)
Zhang Rui9e89dde2006-12-07 20:56:16 +08001188{
Patrick Mochel5d9464a2006-12-07 20:56:27 +08001189 struct acpi_device *acpi_dev = to_acpi_device(dev);
1190 struct acpi_driver *acpi_drv = to_acpi_driver(dev->driver);
1191 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
Rafael J. Wysockifc2e0a82014-08-26 01:29:21 +02001193 if (acpi_dev->handler && !acpi_is_pnp_device(acpi_dev))
Rafael J. Wysocki24071f42013-06-16 00:36:41 +02001194 return -EINVAL;
Bjorn Helgaas46ec8592009-03-30 17:48:13 +00001195
Rafael J. Wysockid9e455f2013-06-10 13:00:50 +02001196 if (!acpi_drv->ops.add)
1197 return -ENOSYS;
Li Shaohuac4168bf2006-12-07 20:56:41 +08001198
Rafael J. Wysockid9e455f2013-06-10 13:00:50 +02001199 ret = acpi_drv->ops.add(acpi_dev);
1200 if (ret)
1201 return ret;
1202
1203 acpi_dev->driver = acpi_drv;
1204 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1205 "Driver [%s] successfully bound to device [%s]\n",
1206 acpi_drv->name, acpi_dev->pnp.bus_id));
1207
1208 if (acpi_drv->ops.notify) {
1209 ret = acpi_device_install_notify_handler(acpi_dev);
1210 if (ret) {
1211 if (acpi_drv->ops.remove)
1212 acpi_drv->ops.remove(acpi_dev);
1213
1214 acpi_dev->driver = NULL;
1215 acpi_dev->driver_data = NULL;
1216 return ret;
1217 }
Zhang Rui9e89dde2006-12-07 20:56:16 +08001218 }
Rafael J. Wysockid9e455f2013-06-10 13:00:50 +02001219
1220 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found driver [%s] for device [%s]\n",
1221 acpi_drv->name, acpi_dev->pnp.bus_id));
1222 get_device(dev);
1223 return 0;
Patrick Mochel5d9464a2006-12-07 20:56:27 +08001224}
1225
1226static int acpi_device_remove(struct device * dev)
1227{
1228 struct acpi_device *acpi_dev = to_acpi_device(dev);
1229 struct acpi_driver *acpi_drv = acpi_dev->driver;
1230
1231 if (acpi_drv) {
Bjorn Helgaas46ec8592009-03-30 17:48:13 +00001232 if (acpi_drv->ops.notify)
1233 acpi_device_remove_notify_handler(acpi_dev);
Patrick Mochel5d9464a2006-12-07 20:56:27 +08001234 if (acpi_drv->ops.remove)
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01001235 acpi_drv->ops.remove(acpi_dev);
Patrick Mochel5d9464a2006-12-07 20:56:27 +08001236 }
1237 acpi_dev->driver = NULL;
Pavel Machekdb89b4f2008-09-22 14:37:34 -07001238 acpi_dev->driver_data = NULL;
Patrick Mochel5d9464a2006-12-07 20:56:27 +08001239
1240 put_device(dev);
Zhang Rui9e89dde2006-12-07 20:56:16 +08001241 return 0;
1242}
1243
David Brownell55955aa2007-05-08 00:28:35 -07001244struct bus_type acpi_bus_type = {
Zhang Rui9e89dde2006-12-07 20:56:16 +08001245 .name = "acpi",
Patrick Mochel5d9464a2006-12-07 20:56:27 +08001246 .match = acpi_bus_match,
1247 .probe = acpi_device_probe,
1248 .remove = acpi_device_remove,
1249 .uevent = acpi_device_uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250};
1251
Rafael J. Wysockid7831562013-11-22 21:52:12 +01001252static void acpi_device_del(struct acpi_device *device)
Rafael J. Wysockicaf5c032013-07-30 14:38:34 +02001253{
Rafael J. Wysockid7831562013-11-22 21:52:12 +01001254 mutex_lock(&acpi_device_lock);
1255 if (device->parent)
1256 list_del(&device->node);
1257
1258 list_del(&device->wakeup_list);
1259 mutex_unlock(&acpi_device_lock);
1260
1261 acpi_power_add_remove_device(device, false);
1262 acpi_device_remove_files(device);
1263 if (device->remove)
1264 device->remove(device);
1265
1266 device_del(&device->dev);
1267}
1268
1269static LIST_HEAD(acpi_device_del_list);
1270static DEFINE_MUTEX(acpi_device_del_lock);
1271
1272static void acpi_device_del_work_fn(struct work_struct *work_not_used)
1273{
1274 for (;;) {
1275 struct acpi_device *adev;
1276
1277 mutex_lock(&acpi_device_del_lock);
1278
1279 if (list_empty(&acpi_device_del_list)) {
1280 mutex_unlock(&acpi_device_del_lock);
1281 break;
1282 }
1283 adev = list_first_entry(&acpi_device_del_list,
1284 struct acpi_device, del_list);
1285 list_del(&adev->del_list);
1286
1287 mutex_unlock(&acpi_device_del_lock);
1288
1289 acpi_device_del(adev);
1290 /*
1291 * Drop references to all power resources that might have been
1292 * used by the device.
1293 */
1294 acpi_power_transition(adev, ACPI_STATE_D3_COLD);
1295 put_device(&adev->dev);
1296 }
1297}
1298
1299/**
1300 * acpi_scan_drop_device - Drop an ACPI device object.
1301 * @handle: Handle of an ACPI namespace node, not used.
1302 * @context: Address of the ACPI device object to drop.
1303 *
1304 * This is invoked by acpi_ns_delete_node() during the removal of the ACPI
1305 * namespace node the device object pointed to by @context is attached to.
1306 *
1307 * The unregistration is carried out asynchronously to avoid running
1308 * acpi_device_del() under the ACPICA's namespace mutex and the list is used to
1309 * ensure the correct ordering (the device objects must be unregistered in the
1310 * same order in which the corresponding namespace nodes are deleted).
1311 */
1312static void acpi_scan_drop_device(acpi_handle handle, void *context)
1313{
1314 static DECLARE_WORK(work, acpi_device_del_work_fn);
1315 struct acpi_device *adev = context;
1316
1317 mutex_lock(&acpi_device_del_lock);
1318
1319 /*
1320 * Use the ACPI hotplug workqueue which is ordered, so this work item
1321 * won't run after any hotplug work items submitted subsequently. That
1322 * prevents attempts to register device objects identical to those being
1323 * deleted from happening concurrently (such attempts result from
1324 * hotplug events handled via the ACPI hotplug workqueue). It also will
1325 * run after all of the work items submitted previosuly, which helps
1326 * those work items to ensure that they are not accessing stale device
1327 * objects.
1328 */
1329 if (list_empty(&acpi_device_del_list))
1330 acpi_queue_hotplug_work(&work);
1331
1332 list_add_tail(&adev->del_list, &acpi_device_del_list);
1333 /* Make acpi_ns_validate_handle() return NULL for this handle. */
1334 adev->handle = INVALID_ACPI_HANDLE;
1335
1336 mutex_unlock(&acpi_device_del_lock);
Rafael J. Wysockicaf5c032013-07-30 14:38:34 +02001337}
1338
Rafael J. Wysocki78ea4632014-02-04 00:43:05 +01001339static int acpi_get_device_data(acpi_handle handle, struct acpi_device **device,
1340 void (*callback)(void *))
Rafael J. Wysockicaf5c032013-07-30 14:38:34 +02001341{
1342 acpi_status status;
1343
1344 if (!device)
1345 return -EINVAL;
1346
Rafael J. Wysocki78ea4632014-02-04 00:43:05 +01001347 status = acpi_get_data_full(handle, acpi_scan_drop_device,
1348 (void **)device, callback);
Rafael J. Wysockicaf5c032013-07-30 14:38:34 +02001349 if (ACPI_FAILURE(status) || !*device) {
1350 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No context for object [%p]\n",
1351 handle));
1352 return -ENODEV;
1353 }
1354 return 0;
1355}
Rafael J. Wysocki78ea4632014-02-04 00:43:05 +01001356
1357int acpi_bus_get_device(acpi_handle handle, struct acpi_device **device)
1358{
1359 return acpi_get_device_data(handle, device, NULL);
1360}
Rafael J. Wysocki65859252013-10-01 23:02:43 +02001361EXPORT_SYMBOL(acpi_bus_get_device);
Rafael J. Wysockicaf5c032013-07-30 14:38:34 +02001362
Rafael J. Wysocki78ea4632014-02-04 00:43:05 +01001363static void get_acpi_device(void *dev)
1364{
1365 if (dev)
1366 get_device(&((struct acpi_device *)dev)->dev);
1367}
1368
1369struct acpi_device *acpi_bus_get_acpi_device(acpi_handle handle)
1370{
1371 struct acpi_device *adev = NULL;
1372
1373 acpi_get_device_data(handle, &adev, get_acpi_device);
1374 return adev;
1375}
1376
1377void acpi_bus_put_acpi_device(struct acpi_device *adev)
1378{
1379 put_device(&adev->dev);
1380}
1381
Rafael J. Wysockicf860be2013-01-24 12:49:49 +01001382int acpi_device_add(struct acpi_device *device,
1383 void (*release)(struct device *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384{
Zhang Ruie49bd2dd2006-12-08 17:23:43 +08001385 int result;
1386 struct acpi_device_bus_id *acpi_device_bus_id, *new_bus_id;
1387 int found = 0;
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +00001388
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001389 if (device->handle) {
1390 acpi_status status;
1391
Rafael J. Wysockid7831562013-11-22 21:52:12 +01001392 status = acpi_attach_data(device->handle, acpi_scan_drop_device,
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001393 device);
1394 if (ACPI_FAILURE(status)) {
1395 acpi_handle_err(device->handle,
1396 "Unable to attach device data\n");
1397 return -ENODEV;
1398 }
1399 }
1400
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 /*
1402 * Linkage
1403 * -------
1404 * Link this device to its parent and siblings.
1405 */
1406 INIT_LIST_HEAD(&device->children);
1407 INIT_LIST_HEAD(&device->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 INIT_LIST_HEAD(&device->wakeup_list);
Lan Tianyu1033f902012-08-17 14:44:09 +08001409 INIT_LIST_HEAD(&device->physical_node_list);
Rafael J. Wysockid7831562013-11-22 21:52:12 +01001410 INIT_LIST_HEAD(&device->del_list);
Lan Tianyu1033f902012-08-17 14:44:09 +08001411 mutex_init(&device->physical_node_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
Zhang Ruie49bd2dd2006-12-08 17:23:43 +08001413 new_bus_id = kzalloc(sizeof(struct acpi_device_bus_id), GFP_KERNEL);
1414 if (!new_bus_id) {
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001415 pr_err(PREFIX "Memory allocation error\n");
1416 result = -ENOMEM;
1417 goto err_detach;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +08001418 }
1419
Shaohua Li90905892009-04-07 10:24:29 +08001420 mutex_lock(&acpi_device_lock);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +08001421 /*
1422 * Find suitable bus_id and instance number in acpi_bus_id_list
1423 * If failed, create one and link it into acpi_bus_id_list
1424 */
1425 list_for_each_entry(acpi_device_bus_id, &acpi_bus_id_list, node) {
Bjorn Helgaas1131b932009-09-21 13:35:29 -06001426 if (!strcmp(acpi_device_bus_id->bus_id,
1427 acpi_device_hid(device))) {
1428 acpi_device_bus_id->instance_no++;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +08001429 found = 1;
1430 kfree(new_bus_id);
1431 break;
1432 }
1433 }
Alex Chiang0c526d92009-05-14 08:31:37 -06001434 if (!found) {
Zhang Ruie49bd2dd2006-12-08 17:23:43 +08001435 acpi_device_bus_id = new_bus_id;
Bjorn Helgaas1131b932009-09-21 13:35:29 -06001436 strcpy(acpi_device_bus_id->bus_id, acpi_device_hid(device));
Zhang Ruie49bd2dd2006-12-08 17:23:43 +08001437 acpi_device_bus_id->instance_no = 0;
1438 list_add_tail(&acpi_device_bus_id->node, &acpi_bus_id_list);
1439 }
Kay Sievers07944692008-10-30 01:18:59 +01001440 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 +08001441
Len Brown33b57152008-12-15 22:09:26 -05001442 if (device->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 list_add_tail(&device->node, &device->parent->children);
Len Brown33b57152008-12-15 22:09:26 -05001444
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 if (device->wakeup.flags.valid)
1446 list_add_tail(&device->wakeup_list, &acpi_wakeup_device_list);
Shaohua Li90905892009-04-07 10:24:29 +08001447 mutex_unlock(&acpi_device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
Patrick Mochel1890a972006-12-07 20:56:31 +08001449 if (device->parent)
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +00001450 device->dev.parent = &device->parent->dev;
Patrick Mochel1890a972006-12-07 20:56:31 +08001451 device->dev.bus = &acpi_bus_type;
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +01001452 device->dev.release = release;
Rafael J. Wysockicf860be2013-01-24 12:49:49 +01001453 result = device_add(&device->dev);
Alex Chiang0c526d92009-05-14 08:31:37 -06001454 if (result) {
Alex Chiang8b12b922009-05-14 08:31:32 -06001455 dev_err(&device->dev, "Error registering device\n");
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001456 goto err;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +08001457 }
Patrick Mochelf883d9d2006-12-07 20:56:38 +08001458
Zhang Ruie49bd2dd2006-12-08 17:23:43 +08001459 result = acpi_device_setup_files(device);
Alex Chiang0c526d92009-05-14 08:31:37 -06001460 if (result)
Kay Sievers07944692008-10-30 01:18:59 +01001461 printk(KERN_ERR PREFIX "Error creating sysfs interface for device %s\n",
1462 dev_name(&device->dev));
Zhang Ruie49bd2dd2006-12-08 17:23:43 +08001463
Zhang Ruie49bd2dd2006-12-08 17:23:43 +08001464 return 0;
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001465
1466 err:
Shaohua Li90905892009-04-07 10:24:29 +08001467 mutex_lock(&acpi_device_lock);
Len Brown33b57152008-12-15 22:09:26 -05001468 if (device->parent)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +08001469 list_del(&device->node);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +08001470 list_del(&device->wakeup_list);
Shaohua Li90905892009-04-07 10:24:29 +08001471 mutex_unlock(&acpi_device_lock);
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001472
1473 err_detach:
Rafael J. Wysockid7831562013-11-22 21:52:12 +01001474 acpi_detach_data(device->handle, acpi_scan_drop_device);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +08001475 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476}
1477
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +01001478struct acpi_device *acpi_get_next_child(struct device *dev,
1479 struct acpi_device *child)
1480{
1481 struct acpi_device *adev = ACPI_COMPANION(dev);
1482 struct list_head *head, *next;
1483
1484 if (!adev)
1485 return NULL;
1486
1487 head = &adev->children;
1488 if (list_empty(head))
1489 return NULL;
1490
1491 if (!child)
1492 return list_first_entry(head, struct acpi_device, node);
1493
1494 next = child->node.next;
1495 return next == head ? NULL : list_entry(next, struct acpi_device, node);
1496}
1497
Zhang Rui9e89dde2006-12-07 20:56:16 +08001498/* --------------------------------------------------------------------------
1499 Driver Management
1500 -------------------------------------------------------------------------- */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501/**
Randy Dunlapd758a8f2006-01-06 01:31:00 -05001502 * acpi_bus_register_driver - register a driver with the ACPI bus
1503 * @driver: driver being registered
1504 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 * Registers a driver with the ACPI bus. Searches the namespace for all
Bjorn Helgaas9d9f7492006-03-28 17:04:00 -05001506 * devices that match the driver's criteria and binds. Returns zero for
1507 * success or a negative error status for failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 */
Len Brown4be44fc2005-08-05 00:44:28 -04001509int acpi_bus_register_driver(struct acpi_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510{
Patrick Mochel1890a972006-12-07 20:56:31 +08001511 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
1513 if (acpi_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -04001514 return -ENODEV;
Patrick Mochel1890a972006-12-07 20:56:31 +08001515 driver->drv.name = driver->name;
1516 driver->drv.bus = &acpi_bus_type;
1517 driver->drv.owner = driver->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
Patrick Mochel1890a972006-12-07 20:56:31 +08001519 ret = driver_register(&driver->drv);
1520 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
Len Brown4be44fc2005-08-05 00:44:28 -04001523EXPORT_SYMBOL(acpi_bus_register_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
1525/**
Hanjun Guob27b14c2013-09-22 15:42:41 +08001526 * acpi_bus_unregister_driver - unregisters a driver with the ACPI bus
Randy Dunlapd758a8f2006-01-06 01:31:00 -05001527 * @driver: driver to unregister
1528 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 * Unregisters a driver with the ACPI bus. Searches the namespace for all
1530 * devices that match the driver's criteria and unbinds.
1531 */
Bjorn Helgaas06ea8e082006-04-27 05:25:00 -04001532void acpi_bus_unregister_driver(struct acpi_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533{
Patrick Mochel1890a972006-12-07 20:56:31 +08001534 driver_unregister(&driver->drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535}
Len Brown4be44fc2005-08-05 00:44:28 -04001536
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537EXPORT_SYMBOL(acpi_bus_unregister_driver);
1538
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539/* --------------------------------------------------------------------------
1540 Device Enumeration
1541 -------------------------------------------------------------------------- */
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001542static struct acpi_device *acpi_bus_get_parent(acpi_handle handle)
1543{
Rafael J. Wysocki456de892013-01-31 20:57:40 +01001544 struct acpi_device *device = NULL;
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001545 acpi_status status;
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001546
1547 /*
1548 * Fixed hardware devices do not appear in the namespace and do not
1549 * have handles, but we fabricate acpi_devices for them, so we have
1550 * to deal with them specially.
1551 */
Rafael J. Wysocki456de892013-01-31 20:57:40 +01001552 if (!handle)
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001553 return acpi_root;
1554
1555 do {
1556 status = acpi_get_parent(handle, &handle);
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001557 if (ACPI_FAILURE(status))
Rafael J. Wysocki456de892013-01-31 20:57:40 +01001558 return status == AE_NULL_ENTRY ? NULL : acpi_root;
1559 } while (acpi_bus_get_device(handle, &device));
1560 return device;
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001561}
1562
Len Brownc8f7a622006-07-09 17:22:28 -04001563acpi_status
1564acpi_bus_get_ejd(acpi_handle handle, acpi_handle *ejd)
1565{
1566 acpi_status status;
1567 acpi_handle tmp;
1568 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
1569 union acpi_object *obj;
1570
1571 status = acpi_get_handle(handle, "_EJD", &tmp);
1572 if (ACPI_FAILURE(status))
1573 return status;
1574
1575 status = acpi_evaluate_object(handle, "_EJD", NULL, &buffer);
1576 if (ACPI_SUCCESS(status)) {
1577 obj = buffer.pointer;
Holger Macht3b5fee52008-02-14 13:40:34 +01001578 status = acpi_get_handle(ACPI_ROOT_OBJECT, obj->string.pointer,
1579 ejd);
Len Brownc8f7a622006-07-09 17:22:28 -04001580 kfree(buffer.pointer);
1581 }
1582 return status;
1583}
1584EXPORT_SYMBOL_GPL(acpi_bus_get_ejd);
1585
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001586static int acpi_bus_extract_wakeup_device_power_package(acpi_handle handle,
1587 struct acpi_device_wakeup *wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588{
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001589 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1590 union acpi_object *package = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 union acpi_object *element = NULL;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001592 acpi_status status;
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001593 int err = -ENODATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001595 if (!wakeup)
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001596 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
Rafael J. Wysocki993cbe52013-01-17 14:11:06 +01001598 INIT_LIST_HEAD(&wakeup->resources);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001600 /* _PRW */
1601 status = acpi_evaluate_object(handle, "_PRW", NULL, &buffer);
1602 if (ACPI_FAILURE(status)) {
1603 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PRW"));
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001604 return err;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001605 }
1606
1607 package = (union acpi_object *)buffer.pointer;
1608
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001609 if (!package || package->package.count < 2)
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001610 goto out;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001611
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 element = &(package->package.elements[0]);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001613 if (!element)
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001614 goto out;
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001615
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 if (element->type == ACPI_TYPE_PACKAGE) {
1617 if ((element->package.count < 2) ||
1618 (element->package.elements[0].type !=
1619 ACPI_TYPE_LOCAL_REFERENCE)
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001620 || (element->package.elements[1].type != ACPI_TYPE_INTEGER))
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001621 goto out;
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001622
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001623 wakeup->gpe_device =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 element->package.elements[0].reference.handle;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001625 wakeup->gpe_number =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 (u32) element->package.elements[1].integer.value;
1627 } else if (element->type == ACPI_TYPE_INTEGER) {
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001628 wakeup->gpe_device = NULL;
1629 wakeup->gpe_number = element->integer.value;
1630 } else {
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001631 goto out;
1632 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
1634 element = &(package->package.elements[1]);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001635 if (element->type != ACPI_TYPE_INTEGER)
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001636 goto out;
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001637
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001638 wakeup->sleep_state = element->integer.value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001640 err = acpi_extract_power_resources(package, 2, &wakeup->resources);
1641 if (err)
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001642 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
Rafael J. Wysocki0596a522013-01-17 14:11:07 +01001644 if (!list_empty(&wakeup->resources)) {
1645 int sleep_state;
1646
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +01001647 err = acpi_power_wakeup_list_init(&wakeup->resources,
1648 &sleep_state);
1649 if (err) {
1650 acpi_handle_warn(handle, "Retrieving current states "
1651 "of wakeup power resources failed\n");
1652 acpi_power_resources_list_free(&wakeup->resources);
1653 goto out;
1654 }
Rafael J. Wysocki0596a522013-01-17 14:11:07 +01001655 if (sleep_state < wakeup->sleep_state) {
1656 acpi_handle_warn(handle, "Overriding _PRW sleep state "
1657 "(S%d) by S%d from power resources\n",
1658 (int)wakeup->sleep_state, sleep_state);
1659 wakeup->sleep_state = sleep_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 }
Rafael J. Wysocki98746472010-07-08 00:43:36 +02001662
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001663 out:
1664 kfree(buffer.pointer);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001665 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666}
1667
Rafael J. Wysockibd9b2f92014-07-14 22:41:41 +02001668static void acpi_wakeup_gpe_init(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669{
Thomas Renninger29b71a12007-07-23 14:43:51 +02001670 struct acpi_device_id button_device_ids[] = {
Thomas Renninger29b71a12007-07-23 14:43:51 +02001671 {"PNP0C0C", 0},
Zhang Ruib7e38302012-12-04 23:23:16 +01001672 {"PNP0C0D", 0},
Thomas Renninger29b71a12007-07-23 14:43:51 +02001673 {"PNP0C0E", 0},
1674 {"", 0},
1675 };
Rafael J. Wysockibd9b2f92014-07-14 22:41:41 +02001676 struct acpi_device_wakeup *wakeup = &device->wakeup;
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001677 acpi_status status;
1678 acpi_event_status event_status;
1679
Rafael J. Wysockibd9b2f92014-07-14 22:41:41 +02001680 wakeup->flags.notifier_present = 0;
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001681
1682 /* Power button, Lid switch always enable wakeup */
1683 if (!acpi_match_device_ids(device, button_device_ids)) {
Rafael J. Wysockibd9b2f92014-07-14 22:41:41 +02001684 wakeup->flags.run_wake = 1;
Zhang Ruib7e38302012-12-04 23:23:16 +01001685 if (!acpi_match_device_ids(device, &button_device_ids[1])) {
1686 /* Do not use Lid/sleep button for S5 wakeup */
Rafael J. Wysockibd9b2f92014-07-14 22:41:41 +02001687 if (wakeup->sleep_state == ACPI_STATE_S5)
1688 wakeup->sleep_state = ACPI_STATE_S4;
Zhang Ruib7e38302012-12-04 23:23:16 +01001689 }
Rafael J. Wysockibd9b2f92014-07-14 22:41:41 +02001690 acpi_mark_gpe_for_wake(wakeup->gpe_device, wakeup->gpe_number);
Rafael J. Wysockif2b56bc2011-01-06 23:34:22 +01001691 device_set_wakeup_capable(&device->dev, true);
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001692 return;
1693 }
1694
Rafael J. Wysockibd9b2f92014-07-14 22:41:41 +02001695 acpi_setup_gpe_for_wake(device->handle, wakeup->gpe_device,
1696 wakeup->gpe_number);
1697 status = acpi_get_gpe_status(wakeup->gpe_device, wakeup->gpe_number,
1698 &event_status);
1699 if (ACPI_FAILURE(status))
1700 return;
1701
Lv Zheng2f857232014-10-10 10:40:05 +08001702 wakeup->flags.run_wake = !!(event_status & ACPI_EVENT_FLAG_HAS_HANDLER);
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001703}
1704
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01001705static void acpi_bus_get_wakeup_device_flags(struct acpi_device *device)
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001706{
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001707 int err;
Thomas Renninger29b71a12007-07-23 14:43:51 +02001708
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01001709 /* Presence of _PRW indicates wake capable */
Jiang Liu952c63e2013-06-29 00:24:38 +08001710 if (!acpi_has_method(device->handle, "_PRW"))
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01001711 return;
1712
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001713 err = acpi_bus_extract_wakeup_device_power_package(device->handle,
1714 &device->wakeup);
1715 if (err) {
1716 dev_err(&device->dev, "_PRW evaluation error: %d\n", err);
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01001717 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 }
1719
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 device->wakeup.flags.valid = 1;
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +02001721 device->wakeup.prepare_count = 0;
Rafael J. Wysockibd9b2f92014-07-14 22:41:41 +02001722 acpi_wakeup_gpe_init(device);
Zhao Yakui729b2bd2008-03-19 13:26:54 +08001723 /* Call _PSW/_DSW object to disable its ability to wake the sleeping
1724 * system for the ACPI device with the _PRW object.
1725 * The _PSW object is depreciated in ACPI 3.0 and is replaced by _DSW.
1726 * So it is necessary to call _DSW object first. Only when it is not
1727 * present will the _PSW object used.
1728 */
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001729 err = acpi_device_sleep_wake(device, 0, 0, 0);
1730 if (err)
Rafael J. Wysocki77e76602008-07-07 03:33:34 +02001731 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1732 "error in _DSW or _PSW evaluation\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733}
1734
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001735static void acpi_bus_init_power_state(struct acpi_device *device, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736{
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001737 struct acpi_device_power_state *ps = &device->power.states[state];
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001738 char pathname[5] = { '_', 'P', 'R', '0' + state, '\0' };
1739 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001740 acpi_status status;
Zhang Rui9e89dde2006-12-07 20:56:16 +08001741
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001742 INIT_LIST_HEAD(&ps->resources);
1743
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001744 /* Evaluate "_PRx" to get referenced power resources */
1745 status = acpi_evaluate_object(device->handle, pathname, NULL, &buffer);
1746 if (ACPI_SUCCESS(status)) {
1747 union acpi_object *package = buffer.pointer;
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001748
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001749 if (buffer.length && package
1750 && package->type == ACPI_TYPE_PACKAGE
1751 && package->package.count) {
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001752 int err = acpi_extract_power_resources(package, 0,
1753 &ps->resources);
1754 if (!err)
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001755 device->power.flags.power_resources = 1;
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001756 }
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001757 ACPI_FREE(buffer.pointer);
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001758 }
1759
1760 /* Evaluate "_PSx" to see if we can do explicit sets */
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001761 pathname[2] = 'S';
Jiang Liu952c63e2013-06-29 00:24:38 +08001762 if (acpi_has_method(device->handle, pathname))
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001763 ps->flags.explicit_set = 1;
1764
1765 /*
1766 * State is valid if there are means to put the device into it.
1767 * D3hot is only valid if _PR3 present.
1768 */
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001769 if (!list_empty(&ps->resources)
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001770 || (ps->flags.explicit_set && state < ACPI_STATE_D3_HOT)) {
1771 ps->flags.valid = 1;
1772 ps->flags.os_accessible = 1;
1773 }
1774
1775 ps->power = -1; /* Unknown - driver assigned */
1776 ps->latency = -1; /* Unknown - driver assigned */
1777}
1778
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001779static void acpi_bus_get_power_flags(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780{
Rafael J. Wysocki8bc50532013-01-17 14:11:07 +01001781 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001783 /* Presence of _PS0|_PR0 indicates 'power manageable' */
Jiang Liu952c63e2013-06-29 00:24:38 +08001784 if (!acpi_has_method(device->handle, "_PS0") &&
1785 !acpi_has_method(device->handle, "_PR0"))
1786 return;
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001787
1788 device->flags.power_manageable = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
1790 /*
Zhang Rui9e89dde2006-12-07 20:56:16 +08001791 * Power Management Flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 */
Jiang Liu952c63e2013-06-29 00:24:38 +08001793 if (acpi_has_method(device->handle, "_PSC"))
Zhang Rui9e89dde2006-12-07 20:56:16 +08001794 device->power.flags.explicit_get = 1;
Rafael J. Wysockif25c0ae2014-05-17 00:18:13 +02001795
Jiang Liu952c63e2013-06-29 00:24:38 +08001796 if (acpi_has_method(device->handle, "_IRC"))
Zhang Rui9e89dde2006-12-07 20:56:16 +08001797 device->power.flags.inrush_current = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798
Rafael J. Wysockif25c0ae2014-05-17 00:18:13 +02001799 if (acpi_has_method(device->handle, "_DSW"))
1800 device->power.flags.dsw_present = 1;
1801
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 /*
Zhang Rui9e89dde2006-12-07 20:56:16 +08001803 * Enumerate supported power management states
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 */
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001805 for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3_HOT; i++)
1806 acpi_bus_init_power_state(device, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
Rafael J. Wysocki0b224522013-01-17 14:11:06 +01001808 INIT_LIST_HEAD(&device->power.states[ACPI_STATE_D3_COLD].resources);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809
Zhang Rui9e89dde2006-12-07 20:56:16 +08001810 /* Set defaults for D0 and D3 states (always valid) */
1811 device->power.states[ACPI_STATE_D0].flags.valid = 1;
1812 device->power.states[ACPI_STATE_D0].power = 100;
Rafael J. Wysocki8ad928d2013-07-30 14:36:20 +02001813 device->power.states[ACPI_STATE_D3_COLD].flags.valid = 1;
1814 device->power.states[ACPI_STATE_D3_COLD].power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815
Rafael J. Wysocki5c7dd712012-05-18 00:39:35 +02001816 /* Set D3cold's explicit_set flag if _PS3 exists. */
1817 if (device->power.states[ACPI_STATE_D3_HOT].flags.explicit_set)
1818 device->power.states[ACPI_STATE_D3_COLD].flags.explicit_set = 1;
1819
Aaron Lu1399dfc2012-11-21 23:33:40 +01001820 /* Presence of _PS3 or _PRx means we can put the device into D3 cold */
1821 if (device->power.states[ACPI_STATE_D3_HOT].flags.explicit_set ||
1822 device->power.flags.power_resources)
1823 device->power.states[ACPI_STATE_D3_COLD].flags.os_accessible = 1;
1824
Rafael J. Wysocki1b1f3e12015-01-01 23:38:28 +01001825 if (acpi_bus_init_power(device))
Rafael J. Wysockib3785492013-02-01 23:43:02 +01001826 device->flags.power_manageable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827}
1828
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001829static void acpi_bus_get_flags(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 /* Presence of _STA indicates 'dynamic_status' */
Jiang Liu952c63e2013-06-29 00:24:38 +08001832 if (acpi_has_method(device->handle, "_STA"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 device->flags.dynamic_status = 1;
1834
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 /* Presence of _RMV indicates 'removable' */
Jiang Liu952c63e2013-06-29 00:24:38 +08001836 if (acpi_has_method(device->handle, "_RMV"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 device->flags.removable = 1;
1838
1839 /* Presence of _EJD|_EJ0 indicates 'ejectable' */
Jiang Liu952c63e2013-06-29 00:24:38 +08001840 if (acpi_has_method(device->handle, "_EJD") ||
1841 acpi_has_method(device->handle, "_EJ0"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 device->flags.ejectable = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843}
1844
Bjorn Helgaasc7bcb4e2009-09-21 19:29:25 +00001845static void acpi_device_get_busid(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846{
Len Brown4be44fc2005-08-05 00:44:28 -04001847 char bus_id[5] = { '?', 0 };
1848 struct acpi_buffer buffer = { sizeof(bus_id), bus_id };
1849 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
1851 /*
1852 * Bus ID
1853 * ------
1854 * The device's Bus ID is simply the object name.
1855 * TBD: Shouldn't this value be unique (within the ACPI namespace)?
1856 */
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +00001857 if (ACPI_IS_ROOT_DEVICE(device)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 strcpy(device->pnp.bus_id, "ACPI");
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +00001859 return;
1860 }
1861
1862 switch (device->device_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 case ACPI_BUS_TYPE_POWER_BUTTON:
1864 strcpy(device->pnp.bus_id, "PWRF");
1865 break;
1866 case ACPI_BUS_TYPE_SLEEP_BUTTON:
1867 strcpy(device->pnp.bus_id, "SLPF");
1868 break;
1869 default:
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +00001870 acpi_get_name(device->handle, ACPI_SINGLE_NAME, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 /* Clean up trailing underscores (if any) */
1872 for (i = 3; i > 1; i--) {
1873 if (bus_id[i] == '_')
1874 bus_id[i] = '\0';
1875 else
1876 break;
1877 }
1878 strcpy(device->pnp.bus_id, bus_id);
1879 break;
1880 }
1881}
1882
Zhang Rui54735262007-01-11 02:09:09 -05001883/*
Jiang Liuebf4df82013-06-29 00:24:41 +08001884 * acpi_ata_match - see if an acpi object is an ATA device
1885 *
1886 * If an acpi object has one of the ACPI ATA methods defined,
1887 * then we can safely call it an ATA device.
1888 */
1889bool acpi_ata_match(acpi_handle handle)
1890{
1891 return acpi_has_method(handle, "_GTF") ||
1892 acpi_has_method(handle, "_GTM") ||
1893 acpi_has_method(handle, "_STM") ||
1894 acpi_has_method(handle, "_SDD");
1895}
1896
1897/*
Toshi Kanid4e1a692013-03-04 21:30:41 +00001898 * acpi_bay_match - see if an acpi object is an ejectable driver bay
Zhang Rui54735262007-01-11 02:09:09 -05001899 *
1900 * If an acpi object is ejectable and has one of the ACPI ATA methods defined,
1901 * then we can safely call it an ejectable drive bay
1902 */
Jiang Liuebf4df82013-06-29 00:24:41 +08001903bool acpi_bay_match(acpi_handle handle)
Toshi Kanid4e1a692013-03-04 21:30:41 +00001904{
Zhang Rui54735262007-01-11 02:09:09 -05001905 acpi_handle phandle;
1906
Jiang Liu952c63e2013-06-29 00:24:38 +08001907 if (!acpi_has_method(handle, "_EJ0"))
Jiang Liuebf4df82013-06-29 00:24:41 +08001908 return false;
1909 if (acpi_ata_match(handle))
1910 return true;
1911 if (ACPI_FAILURE(acpi_get_parent(handle, &phandle)))
1912 return false;
Zhang Rui54735262007-01-11 02:09:09 -05001913
Jiang Liuebf4df82013-06-29 00:24:41 +08001914 return acpi_ata_match(phandle);
Zhang Rui54735262007-01-11 02:09:09 -05001915}
1916
Rafael J. Wysockib43109f2014-02-16 00:09:34 +01001917bool acpi_device_is_battery(struct acpi_device *adev)
Rafael J. Wysocki1e2380c2014-02-16 01:51:01 +01001918{
Rafael J. Wysockib43109f2014-02-16 00:09:34 +01001919 struct acpi_hardware_id *hwid;
Rafael J. Wysocki1e2380c2014-02-16 01:51:01 +01001920
Rafael J. Wysockib43109f2014-02-16 00:09:34 +01001921 list_for_each_entry(hwid, &adev->pnp.ids, list)
1922 if (!strcmp("PNP0C0A", hwid->id))
1923 return true;
Rafael J. Wysocki1e2380c2014-02-16 01:51:01 +01001924
Rafael J. Wysockib43109f2014-02-16 00:09:34 +01001925 return false;
Rafael J. Wysocki1e2380c2014-02-16 01:51:01 +01001926}
1927
Rafael J. Wysockib43109f2014-02-16 00:09:34 +01001928static bool is_ejectable_bay(struct acpi_device *adev)
Rafael J. Wysocki1e2380c2014-02-16 01:51:01 +01001929{
Rafael J. Wysockib43109f2014-02-16 00:09:34 +01001930 acpi_handle handle = adev->handle;
1931
1932 if (acpi_has_method(handle, "_EJ0") && acpi_device_is_battery(adev))
Rafael J. Wysocki1e2380c2014-02-16 01:51:01 +01001933 return true;
1934
1935 return acpi_bay_match(handle);
1936}
1937
Frank Seidel3620f2f2007-12-07 13:20:34 +01001938/*
Toshi Kanid4e1a692013-03-04 21:30:41 +00001939 * acpi_dock_match - see if an acpi object has a _DCK method
Frank Seidel3620f2f2007-12-07 13:20:34 +01001940 */
Jiang Liuebf4df82013-06-29 00:24:41 +08001941bool acpi_dock_match(acpi_handle handle)
Frank Seidel3620f2f2007-12-07 13:20:34 +01001942{
Jiang Liuebf4df82013-06-29 00:24:41 +08001943 return acpi_has_method(handle, "_DCK");
Frank Seidel3620f2f2007-12-07 13:20:34 +01001944}
1945
Thomas Renninger620e1122010-10-01 10:54:00 +02001946const char *acpi_device_hid(struct acpi_device *device)
Bob Moore15b8dd52009-06-29 13:39:29 +08001947{
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001948 struct acpi_hardware_id *hid;
Bob Moore15b8dd52009-06-29 13:39:29 +08001949
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +02001950 if (list_empty(&device->pnp.ids))
1951 return dummy_hid;
1952
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001953 hid = list_first_entry(&device->pnp.ids, struct acpi_hardware_id, list);
1954 return hid->id;
1955}
1956EXPORT_SYMBOL(acpi_device_hid);
Bob Moore15b8dd52009-06-29 13:39:29 +08001957
Toshi Kanid4e1a692013-03-04 21:30:41 +00001958static void acpi_add_id(struct acpi_device_pnp *pnp, const char *dev_id)
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001959{
1960 struct acpi_hardware_id *id;
Bob Moore15b8dd52009-06-29 13:39:29 +08001961
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001962 id = kmalloc(sizeof(*id), GFP_KERNEL);
1963 if (!id)
1964 return;
Bob Moore15b8dd52009-06-29 13:39:29 +08001965
Thomas Meyer581de592011-08-06 11:32:56 +02001966 id->id = kstrdup(dev_id, GFP_KERNEL);
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001967 if (!id->id) {
1968 kfree(id);
1969 return;
Bob Moore15b8dd52009-06-29 13:39:29 +08001970 }
1971
Toshi Kanid4e1a692013-03-04 21:30:41 +00001972 list_add_tail(&id->list, &pnp->ids);
1973 pnp->type.hardware_id = 1;
Bob Moore15b8dd52009-06-29 13:39:29 +08001974}
1975
Darrick J. Wong222e82a2010-03-24 14:38:37 +01001976/*
1977 * Old IBM workstations have a DSDT bug wherein the SMBus object
1978 * lacks the SMBUS01 HID and the methods do not have the necessary "_"
1979 * prefix. Work around this.
1980 */
Jiang Liuebf4df82013-06-29 00:24:41 +08001981static bool acpi_ibm_smbus_match(acpi_handle handle)
Darrick J. Wong222e82a2010-03-24 14:38:37 +01001982{
Jiang Liuebf4df82013-06-29 00:24:41 +08001983 char node_name[ACPI_PATH_SEGMENT_LENGTH];
1984 struct acpi_buffer path = { sizeof(node_name), node_name };
Darrick J. Wong222e82a2010-03-24 14:38:37 +01001985
1986 if (!dmi_name_in_vendors("IBM"))
Jiang Liuebf4df82013-06-29 00:24:41 +08001987 return false;
Darrick J. Wong222e82a2010-03-24 14:38:37 +01001988
1989 /* Look for SMBS object */
Jiang Liuebf4df82013-06-29 00:24:41 +08001990 if (ACPI_FAILURE(acpi_get_name(handle, ACPI_SINGLE_NAME, &path)) ||
1991 strcmp("SMBS", path.pointer))
1992 return false;
Darrick J. Wong222e82a2010-03-24 14:38:37 +01001993
1994 /* Does it have the necessary (but misnamed) methods? */
Jiang Liu952c63e2013-06-29 00:24:38 +08001995 if (acpi_has_method(handle, "SBI") &&
1996 acpi_has_method(handle, "SBR") &&
1997 acpi_has_method(handle, "SBW"))
Jiang Liuebf4df82013-06-29 00:24:41 +08001998 return true;
1999
2000 return false;
Darrick J. Wong222e82a2010-03-24 14:38:37 +01002001}
2002
Jiang Liuae3caa82014-02-19 14:02:19 +08002003static bool acpi_object_is_system_bus(acpi_handle handle)
2004{
2005 acpi_handle tmp;
2006
2007 if (ACPI_SUCCESS(acpi_get_handle(NULL, "\\_SB", &tmp)) &&
2008 tmp == handle)
2009 return true;
2010 if (ACPI_SUCCESS(acpi_get_handle(NULL, "\\_TZ", &tmp)) &&
2011 tmp == handle)
2012 return true;
2013
2014 return false;
2015}
2016
Toshi Kanic0af4172013-03-04 21:30:42 +00002017static void acpi_set_pnp_ids(acpi_handle handle, struct acpi_device_pnp *pnp,
2018 int device_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019{
Len Brown4be44fc2005-08-05 00:44:28 -04002020 acpi_status status;
Bjorn Helgaas57f36742009-09-21 13:35:40 -06002021 struct acpi_device_info *info;
Lv Zheng78e25fe2012-10-31 02:25:24 +00002022 struct acpi_pnp_device_id_list *cid_list;
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06002023 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024
Toshi Kanic0af4172013-03-04 21:30:42 +00002025 switch (device_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 case ACPI_BUS_TYPE_DEVICE:
Toshi Kanic0af4172013-03-04 21:30:42 +00002027 if (handle == ACPI_ROOT_OBJECT) {
2028 acpi_add_id(pnp, ACPI_SYSTEM_HID);
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +00002029 break;
2030 }
2031
Toshi Kanic0af4172013-03-04 21:30:42 +00002032 status = acpi_get_object_info(handle, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 if (ACPI_FAILURE(status)) {
Toshi Kanic0af4172013-03-04 21:30:42 +00002034 pr_err(PREFIX "%s: Error reading device info\n",
2035 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 return;
2037 }
2038
Rafael J. Wysocki549e6842014-05-30 04:26:18 +02002039 if (info->valid & ACPI_VALID_HID) {
Toshi Kanic0af4172013-03-04 21:30:42 +00002040 acpi_add_id(pnp, info->hardware_id.string);
Rafael J. Wysocki549e6842014-05-30 04:26:18 +02002041 pnp->type.platform_id = 1;
2042 }
Bjorn Helgaas57f36742009-09-21 13:35:40 -06002043 if (info->valid & ACPI_VALID_CID) {
Bob Moore15b8dd52009-06-29 13:39:29 +08002044 cid_list = &info->compatible_id_list;
Bjorn Helgaas57f36742009-09-21 13:35:40 -06002045 for (i = 0; i < cid_list->count; i++)
Toshi Kanic0af4172013-03-04 21:30:42 +00002046 acpi_add_id(pnp, cid_list->ids[i].string);
Bjorn Helgaas57f36742009-09-21 13:35:40 -06002047 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 if (info->valid & ACPI_VALID_ADR) {
Toshi Kanic0af4172013-03-04 21:30:42 +00002049 pnp->bus_address = info->address;
2050 pnp->type.bus_address = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 }
Lv Zhengccf78042012-10-30 14:41:07 +01002052 if (info->valid & ACPI_VALID_UID)
Toshi Kanic0af4172013-03-04 21:30:42 +00002053 pnp->unique_id = kstrdup(info->unique_id.string,
Lv Zhengccf78042012-10-30 14:41:07 +01002054 GFP_KERNEL);
Zhang Ruiae843332006-12-07 20:57:10 +08002055
Bjorn Helgaasa83893ae2009-10-02 11:03:12 -04002056 kfree(info);
2057
Bjorn Helgaas57f36742009-09-21 13:35:40 -06002058 /*
2059 * Some devices don't reliably have _HIDs & _CIDs, so add
2060 * synthetic HIDs to make sure drivers can find them.
2061 */
Toshi Kanic0af4172013-03-04 21:30:42 +00002062 if (acpi_is_video_device(handle))
2063 acpi_add_id(pnp, ACPI_VIDEO_HID);
Jiang Liuebf4df82013-06-29 00:24:41 +08002064 else if (acpi_bay_match(handle))
Toshi Kanic0af4172013-03-04 21:30:42 +00002065 acpi_add_id(pnp, ACPI_BAY_HID);
Jiang Liuebf4df82013-06-29 00:24:41 +08002066 else if (acpi_dock_match(handle))
Toshi Kanic0af4172013-03-04 21:30:42 +00002067 acpi_add_id(pnp, ACPI_DOCK_HID);
Jiang Liuebf4df82013-06-29 00:24:41 +08002068 else if (acpi_ibm_smbus_match(handle))
Toshi Kanic0af4172013-03-04 21:30:42 +00002069 acpi_add_id(pnp, ACPI_SMBUS_IBM_HID);
Jiang Liuae3caa82014-02-19 14:02:19 +08002070 else if (list_empty(&pnp->ids) &&
2071 acpi_object_is_system_bus(handle)) {
2072 /* \_SB, \_TZ, LNXSYBUS */
2073 acpi_add_id(pnp, ACPI_BUS_HID);
Toshi Kanic0af4172013-03-04 21:30:42 +00002074 strcpy(pnp->device_name, ACPI_BUS_DEVICE_NAME);
2075 strcpy(pnp->device_class, ACPI_BUS_CLASS);
Bjorn Helgaasb7b30de2010-03-24 10:44:33 -06002076 }
Zhang Rui54735262007-01-11 02:09:09 -05002077
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 break;
2079 case ACPI_BUS_TYPE_POWER:
Toshi Kanic0af4172013-03-04 21:30:42 +00002080 acpi_add_id(pnp, ACPI_POWER_HID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 break;
2082 case ACPI_BUS_TYPE_PROCESSOR:
Toshi Kanic0af4172013-03-04 21:30:42 +00002083 acpi_add_id(pnp, ACPI_PROCESSOR_OBJECT_HID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 case ACPI_BUS_TYPE_THERMAL:
Toshi Kanic0af4172013-03-04 21:30:42 +00002086 acpi_add_id(pnp, ACPI_THERMAL_HID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 break;
2088 case ACPI_BUS_TYPE_POWER_BUTTON:
Toshi Kanic0af4172013-03-04 21:30:42 +00002089 acpi_add_id(pnp, ACPI_BUTTON_HID_POWERF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 break;
2091 case ACPI_BUS_TYPE_SLEEP_BUTTON:
Toshi Kanic0af4172013-03-04 21:30:42 +00002092 acpi_add_id(pnp, ACPI_BUTTON_HID_SLEEPF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 break;
2094 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095}
2096
Toshi Kanic0af4172013-03-04 21:30:42 +00002097void acpi_free_pnp_ids(struct acpi_device_pnp *pnp)
2098{
2099 struct acpi_hardware_id *id, *tmp;
2100
2101 list_for_each_entry_safe(id, tmp, &pnp->ids, list) {
2102 kfree(id->id);
2103 kfree(id);
2104 }
2105 kfree(pnp->unique_id);
2106}
2107
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +01002108void acpi_init_device_object(struct acpi_device *device, acpi_handle handle,
2109 int type, unsigned long long sta)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110{
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01002111 INIT_LIST_HEAD(&device->pnp.ids);
2112 device->device_type = type;
2113 device->handle = handle;
2114 device->parent = acpi_bus_get_parent(handle);
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +01002115 device->fwnode.type = FWNODE_ACPI;
Rafael J. Wysocki25db1152013-11-22 21:56:06 +01002116 acpi_set_device_status(device, sta);
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01002117 acpi_device_get_busid(device);
Toshi Kanic0af4172013-03-04 21:30:42 +00002118 acpi_set_pnp_ids(handle, &device->pnp, type);
Mika Westerbergffdcd952014-10-21 13:33:55 +02002119 acpi_init_properties(device);
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01002120 acpi_bus_get_flags(device);
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01002121 device->flags.match_driver = false;
Rafael J. Wysocki202317a2013-11-22 21:54:37 +01002122 device->flags.initialized = true;
2123 device->flags.visited = false;
Rafael J. Wysockicf860be2013-01-24 12:49:49 +01002124 device_initialize(&device->dev);
2125 dev_set_uevent_suppress(&device->dev, true);
2126}
Bjorn Helgaasbc3b0772009-09-21 19:29:20 +00002127
Rafael J. Wysockicf860be2013-01-24 12:49:49 +01002128void acpi_device_add_finalize(struct acpi_device *device)
2129{
2130 dev_set_uevent_suppress(&device->dev, false);
2131 kobject_uevent(&device->dev.kobj, KOBJ_ADD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132}
2133
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00002134static int acpi_add_single_object(struct acpi_device **child,
2135 acpi_handle handle, int type,
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01002136 unsigned long long sta)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137{
Bjorn Helgaas77c24882009-09-21 19:29:30 +00002138 int result;
2139 struct acpi_device *device;
Bjorn Helgaas29aaefa2009-09-21 19:28:54 +00002140 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141
Burman Yan36bcbec2006-12-19 12:56:11 -08002142 device = kzalloc(sizeof(struct acpi_device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 if (!device) {
Len Brown64684632006-06-26 23:41:38 -04002144 printk(KERN_ERR PREFIX "Memory allocation error\n");
Patrick Mocheld550d982006-06-27 00:41:40 -04002145 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01002148 acpi_init_device_object(device, handle, type, sta);
2149 acpi_bus_get_power_flags(device);
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01002150 acpi_bus_get_wakeup_device_flags(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
Rafael J. Wysockicf860be2013-01-24 12:49:49 +01002152 result = acpi_device_add(device, acpi_device_release);
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01002153 if (result) {
Hugh Dickins718fb0d2009-08-06 23:18:12 +00002154 acpi_device_release(&device->dev);
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01002155 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 }
2157
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01002158 acpi_power_add_remove_device(device, true);
Rafael J. Wysockicf860be2013-01-24 12:49:49 +01002159 acpi_device_add_finalize(device);
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01002160 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
2161 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Added %s [%s] parent %s\n",
2162 dev_name(&device->dev), (char *) buffer.pointer,
2163 device->parent ? dev_name(&device->parent->dev) : "(null)"));
2164 kfree(buffer.pointer);
2165 *child = device;
2166 return 0;
Rafael J. Wysockibf325f92010-11-25 00:10:44 +01002167}
2168
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00002169static int acpi_bus_type_and_status(acpi_handle handle, int *type,
2170 unsigned long long *sta)
2171{
2172 acpi_status status;
2173 acpi_object_type acpi_type;
2174
2175 status = acpi_get_type(handle, &acpi_type);
2176 if (ACPI_FAILURE(status))
2177 return -ENODEV;
2178
2179 switch (acpi_type) {
2180 case ACPI_TYPE_ANY: /* for ACPI_ROOT_OBJECT */
2181 case ACPI_TYPE_DEVICE:
2182 *type = ACPI_BUS_TYPE_DEVICE;
2183 status = acpi_bus_get_status_handle(handle, sta);
2184 if (ACPI_FAILURE(status))
2185 return -ENODEV;
2186 break;
2187 case ACPI_TYPE_PROCESSOR:
2188 *type = ACPI_BUS_TYPE_PROCESSOR;
2189 status = acpi_bus_get_status_handle(handle, sta);
2190 if (ACPI_FAILURE(status))
2191 return -ENODEV;
2192 break;
2193 case ACPI_TYPE_THERMAL:
2194 *type = ACPI_BUS_TYPE_THERMAL;
2195 *sta = ACPI_STA_DEFAULT;
2196 break;
2197 case ACPI_TYPE_POWER:
2198 *type = ACPI_BUS_TYPE_POWER;
2199 *sta = ACPI_STA_DEFAULT;
2200 break;
2201 default:
2202 return -ENODEV;
2203 }
2204
2205 return 0;
2206}
2207
Rafael J. Wysocki202317a2013-11-22 21:54:37 +01002208bool acpi_device_is_present(struct acpi_device *adev)
2209{
2210 if (adev->status.present || adev->status.functional)
2211 return true;
2212
2213 adev->flags.initialized = false;
2214 return false;
2215}
2216
Rafael J. Wysocki4b59cc12013-03-03 23:06:21 +01002217static bool acpi_scan_handler_matching(struct acpi_scan_handler *handler,
2218 char *idstr,
2219 const struct acpi_device_id **matchid)
2220{
2221 const struct acpi_device_id *devid;
2222
Rafael J. Wysockiaca0a4e2014-05-30 04:21:52 +02002223 if (handler->match)
2224 return handler->match(idstr, matchid);
2225
Rafael J. Wysocki4b59cc12013-03-03 23:06:21 +01002226 for (devid = handler->ids; devid->id[0]; devid++)
2227 if (!strcmp((char *)devid->id, idstr)) {
2228 if (matchid)
2229 *matchid = devid;
2230
2231 return true;
2232 }
2233
2234 return false;
2235}
2236
Toshi Kani6b772e8f2013-03-04 21:30:43 +00002237static struct acpi_scan_handler *acpi_scan_match_handler(char *idstr,
2238 const struct acpi_device_id **matchid)
2239{
2240 struct acpi_scan_handler *handler;
2241
2242 list_for_each_entry(handler, &acpi_scan_handlers_list, list_node)
2243 if (acpi_scan_handler_matching(handler, idstr, matchid))
2244 return handler;
2245
2246 return NULL;
2247}
2248
Rafael J. Wysocki3f8055c2013-03-03 23:08:16 +01002249void acpi_scan_hotplug_enabled(struct acpi_hotplug_profile *hotplug, bool val)
2250{
Rafael J. Wysocki3f8055c2013-03-03 23:08:16 +01002251 if (!!hotplug->enabled == !!val)
2252 return;
2253
2254 mutex_lock(&acpi_scan_lock);
2255
2256 hotplug->enabled = val;
Rafael J. Wysocki3f8055c2013-03-03 23:08:16 +01002257
2258 mutex_unlock(&acpi_scan_lock);
2259}
2260
Rafael J. Wysocki3c2cc7f2014-02-06 17:31:37 +01002261static void acpi_scan_init_hotplug(struct acpi_device *adev)
Rafael J. Wysockic5698072013-03-03 23:05:14 +01002262{
Toshi Kani6b772e8f2013-03-04 21:30:43 +00002263 struct acpi_hardware_id *hwid;
Rafael J. Wysockic5698072013-03-03 23:05:14 +01002264
Rafael J. Wysockib43109f2014-02-16 00:09:34 +01002265 if (acpi_dock_match(adev->handle) || is_ejectable_bay(adev)) {
Rafael J. Wysocki1e2380c2014-02-16 01:51:01 +01002266 acpi_dock_add(adev);
2267 return;
2268 }
Rafael J. Wysocki3c2cc7f2014-02-06 17:31:37 +01002269 list_for_each_entry(hwid, &adev->pnp.ids, list) {
2270 struct acpi_scan_handler *handler;
Rafael J. Wysockic5698072013-03-03 23:05:14 +01002271
Toshi Kani6b772e8f2013-03-04 21:30:43 +00002272 handler = acpi_scan_match_handler(hwid->id, NULL);
Rafael J. Wysocki1a699472014-02-06 13:58:13 +01002273 if (handler) {
2274 adev->flags.hotplug_notify = true;
2275 break;
2276 }
Rafael J. Wysocki3c2cc7f2014-02-06 17:31:37 +01002277 }
Rafael J. Wysockia33ec392013-03-03 23:05:29 +01002278}
2279
Lan Tianyu40e7fcb2014-11-23 21:22:54 +08002280static void acpi_device_dep_initialize(struct acpi_device *adev)
2281{
2282 struct acpi_dep_data *dep;
2283 struct acpi_handle_list dep_devices;
2284 acpi_status status;
2285 int i;
2286
2287 if (!acpi_has_method(adev->handle, "_DEP"))
2288 return;
2289
2290 status = acpi_evaluate_reference(adev->handle, "_DEP", NULL,
2291 &dep_devices);
2292 if (ACPI_FAILURE(status)) {
Rafael J. Wysocki80167a22014-12-12 22:48:44 +01002293 dev_dbg(&adev->dev, "Failed to evaluate _DEP.\n");
Lan Tianyu40e7fcb2014-11-23 21:22:54 +08002294 return;
2295 }
2296
2297 for (i = 0; i < dep_devices.count; i++) {
2298 struct acpi_device_info *info;
2299 int skip;
2300
2301 status = acpi_get_object_info(dep_devices.handles[i], &info);
2302 if (ACPI_FAILURE(status)) {
Rafael J. Wysocki80167a22014-12-12 22:48:44 +01002303 dev_dbg(&adev->dev, "Error reading _DEP device info\n");
Lan Tianyu40e7fcb2014-11-23 21:22:54 +08002304 continue;
2305 }
2306
2307 /*
2308 * Skip the dependency of Windows System Power
2309 * Management Controller
2310 */
2311 skip = info->valid & ACPI_VALID_HID &&
2312 !strcmp(info->hardware_id.string, "INT3396");
2313
2314 kfree(info);
2315
2316 if (skip)
2317 continue;
2318
2319 dep = kzalloc(sizeof(struct acpi_dep_data), GFP_KERNEL);
2320 if (!dep)
2321 return;
2322
2323 dep->master = dep_devices.handles[i];
2324 dep->slave = adev->handle;
2325 adev->dep_unmet++;
2326
2327 mutex_lock(&acpi_dep_list_lock);
2328 list_add_tail(&dep->node , &acpi_dep_list);
2329 mutex_unlock(&acpi_dep_list_lock);
2330 }
2331}
2332
Rafael J. Wysockie3863092012-12-21 00:36:47 +01002333static acpi_status acpi_bus_check_add(acpi_handle handle, u32 lvl_not_used,
2334 void *not_used, void **return_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335{
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01002336 struct acpi_device *device = NULL;
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00002337 int type;
2338 unsigned long long sta;
2339 int result;
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00002340
Rafael J. Wysocki4002bf32012-12-21 00:36:44 +01002341 acpi_bus_get_device(handle, &device);
2342 if (device)
2343 goto out;
2344
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00002345 result = acpi_bus_type_and_status(handle, &type, &sta);
2346 if (result)
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00002347 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +01002349 if (type == ACPI_BUS_TYPE_POWER) {
2350 acpi_add_power_resource(handle);
2351 return AE_OK;
2352 }
2353
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01002354 acpi_add_single_object(&device, handle, type, sta);
Bjorn Helgaase3b87f82009-09-21 19:30:11 +00002355 if (!device)
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00002356 return AE_CTRL_DEPTH;
2357
Rafael J. Wysocki3c2cc7f2014-02-06 17:31:37 +01002358 acpi_scan_init_hotplug(device);
Lan Tianyu40e7fcb2014-11-23 21:22:54 +08002359 acpi_device_dep_initialize(device);
Rafael J. Wysocki3c2cc7f2014-02-06 17:31:37 +01002360
Rafael J. Wysocki4002bf32012-12-21 00:36:44 +01002361 out:
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00002362 if (!*return_value)
2363 *return_value = device;
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01002364
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00002365 return AE_OK;
2366}
2367
Zhang Rui48459342014-05-30 14:35:34 +02002368static int acpi_check_spi_i2c_slave(struct acpi_resource *ares, void *data)
2369{
2370 bool *is_spi_i2c_slave_p = data;
2371
2372 if (ares->type != ACPI_RESOURCE_TYPE_SERIAL_BUS)
2373 return 1;
2374
2375 /*
2376 * devices that are connected to UART still need to be enumerated to
2377 * platform bus
2378 */
2379 if (ares->data.common_serial_bus.type != ACPI_RESOURCE_SERIAL_TYPE_UART)
2380 *is_spi_i2c_slave_p = true;
2381
2382 /* no need to do more checking */
2383 return -1;
2384}
2385
2386static void acpi_default_enumeration(struct acpi_device *device)
2387{
2388 struct list_head resource_list;
2389 bool is_spi_i2c_slave = false;
2390
2391 if (!device->pnp.type.platform_id || device->handler)
2392 return;
2393
2394 /*
2395 * Do not enemerate SPI/I2C slaves as they will be enuerated by their
2396 * respective parents.
2397 */
2398 INIT_LIST_HEAD(&resource_list);
2399 acpi_dev_get_resources(device, &resource_list, acpi_check_spi_i2c_slave,
2400 &is_spi_i2c_slave);
2401 acpi_dev_free_resource_list(&resource_list);
2402 if (!is_spi_i2c_slave)
2403 acpi_create_platform_device(device);
2404}
2405
Rafael J. Wysocki87b85b32013-02-06 13:05:22 +01002406static int acpi_scan_attach_handler(struct acpi_device *device)
2407{
2408 struct acpi_hardware_id *hwid;
2409 int ret = 0;
2410
2411 list_for_each_entry(hwid, &device->pnp.ids, list) {
Rafael J. Wysockic5698072013-03-03 23:05:14 +01002412 const struct acpi_device_id *devid;
2413 struct acpi_scan_handler *handler;
Rafael J. Wysocki87b85b32013-02-06 13:05:22 +01002414
Rafael J. Wysockic5698072013-03-03 23:05:14 +01002415 handler = acpi_scan_match_handler(hwid->id, &devid);
2416 if (handler) {
Rafael J. Wysockid34afa92014-05-30 04:27:31 +02002417 if (!handler->attach) {
2418 device->pnp.type.platform_id = 0;
2419 continue;
2420 }
Rafael J. Wysocki9cb32ac2014-02-11 00:35:46 +01002421 device->handler = handler;
Rafael J. Wysockic5698072013-03-03 23:05:14 +01002422 ret = handler->attach(device, devid);
Rafael J. Wysocki9cb32ac2014-02-11 00:35:46 +01002423 if (ret > 0)
Rafael J. Wysockic5698072013-03-03 23:05:14 +01002424 break;
Rafael J. Wysocki9cb32ac2014-02-11 00:35:46 +01002425
2426 device->handler = NULL;
2427 if (ret < 0)
Rafael J. Wysockic5698072013-03-03 23:05:14 +01002428 break;
Rafael J. Wysockic5698072013-03-03 23:05:14 +01002429 }
Rafael J. Wysocki87b85b32013-02-06 13:05:22 +01002430 }
Zhang Rui48459342014-05-30 14:35:34 +02002431 if (!ret)
2432 acpi_default_enumeration(device);
2433
Rafael J. Wysockica589f92013-01-30 14:27:29 +01002434 return ret;
2435}
2436
Rafael J. Wysocki2c22e652013-11-25 00:52:21 +01002437static void acpi_bus_attach(struct acpi_device *device)
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00002438{
Rafael J. Wysocki2c22e652013-11-25 00:52:21 +01002439 struct acpi_device *child;
Rafael J. Wysocki1e2380c2014-02-16 01:51:01 +01002440 acpi_handle ejd;
Rafael J. Wysockica589f92013-01-30 14:27:29 +01002441 int ret;
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00002442
Rafael J. Wysocki1e2380c2014-02-16 01:51:01 +01002443 if (ACPI_SUCCESS(acpi_bus_get_ejd(device->handle, &ejd)))
2444 register_dock_dependent_device(device, ejd);
2445
Rafael J. Wysocki2c22e652013-11-25 00:52:21 +01002446 acpi_bus_get_status(device);
Rafael J. Wysocki202317a2013-11-22 21:54:37 +01002447 /* Skip devices that are not present. */
Rafael J. Wysocki2c22e652013-11-25 00:52:21 +01002448 if (!acpi_device_is_present(device)) {
2449 device->flags.visited = false;
Rafael J. Wysocki1b1f3e12015-01-01 23:38:28 +01002450 device->flags.power_manageable = 0;
Rafael J. Wysocki2c22e652013-11-25 00:52:21 +01002451 return;
2452 }
Rafael J. Wysocki3a391a32013-07-12 13:45:59 +02002453 if (device->handler)
Rafael J. Wysocki2c22e652013-11-25 00:52:21 +01002454 goto ok;
Rafael J. Wysocki3a391a32013-07-12 13:45:59 +02002455
Rafael J. Wysocki202317a2013-11-22 21:54:37 +01002456 if (!device->flags.initialized) {
Rafael J. Wysocki1b1f3e12015-01-01 23:38:28 +01002457 device->flags.power_manageable =
2458 device->power.states[ACPI_STATE_D0].flags.valid;
2459 if (acpi_bus_init_power(device))
2460 device->flags.power_manageable = 0;
2461
Rafael J. Wysocki202317a2013-11-22 21:54:37 +01002462 device->flags.initialized = true;
2463 }
Rafael J. Wysocki2c22e652013-11-25 00:52:21 +01002464 device->flags.visited = false;
Rafael J. Wysockica589f92013-01-30 14:27:29 +01002465 ret = acpi_scan_attach_handler(device);
Rafael J. Wysocki69310072013-11-07 01:41:01 +01002466 if (ret < 0)
Rafael J. Wysocki2c22e652013-11-25 00:52:21 +01002467 return;
Rafael J. Wysocki69310072013-11-07 01:41:01 +01002468
2469 device->flags.match_driver = true;
Rafael J. Wysocki2c22e652013-11-25 00:52:21 +01002470 if (!ret) {
2471 ret = device_attach(&device->dev);
2472 if (ret < 0)
2473 return;
2474 }
2475 device->flags.visited = true;
Rafael J. Wysocki202317a2013-11-22 21:54:37 +01002476
2477 ok:
Rafael J. Wysocki2c22e652013-11-25 00:52:21 +01002478 list_for_each_entry(child, &device->children, node)
2479 acpi_bus_attach(child);
Rafael J. Wysocki8ab17fc2014-09-21 02:58:18 +02002480
2481 if (device->handler && device->handler->hotplug.notify_online)
2482 device->handler->hotplug.notify_online(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484
Lan Tianyu40e7fcb2014-11-23 21:22:54 +08002485void acpi_walk_dep_device_list(acpi_handle handle)
2486{
2487 struct acpi_dep_data *dep, *tmp;
2488 struct acpi_device *adev;
2489
2490 mutex_lock(&acpi_dep_list_lock);
2491 list_for_each_entry_safe(dep, tmp, &acpi_dep_list, node) {
2492 if (dep->master == handle) {
2493 acpi_bus_get_device(dep->slave, &adev);
2494 if (!adev)
2495 continue;
2496
2497 adev->dep_unmet--;
2498 if (!adev->dep_unmet)
2499 acpi_bus_attach(adev);
2500 list_del(&dep->node);
2501 kfree(dep);
2502 }
2503 }
2504 mutex_unlock(&acpi_dep_list_lock);
2505}
2506EXPORT_SYMBOL_GPL(acpi_walk_dep_device_list);
2507
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01002508/**
2509 * acpi_bus_scan - Add ACPI device node objects in a given namespace scope.
2510 * @handle: Root of the namespace scope to scan.
Thomas Renninger77796882010-01-29 17:48:52 +01002511 *
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01002512 * Scan a given ACPI tree (probably recently hot-plugged) and create and add
2513 * found devices.
Thomas Renninger77796882010-01-29 17:48:52 +01002514 *
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01002515 * If no devices were found, -ENODEV is returned, but it does not mean that
2516 * there has been a real error. There just have been no suitable ACPI objects
2517 * in the table trunk from which the kernel could create a device and add an
2518 * appropriate driver.
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002519 *
2520 * Must be called under acpi_scan_lock.
Thomas Renninger77796882010-01-29 17:48:52 +01002521 */
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01002522int acpi_bus_scan(acpi_handle handle)
Rajesh Shah3fb02732005-04-28 00:25:52 -07002523{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 void *device = NULL;
Rajesh Shah3fb02732005-04-28 00:25:52 -07002525
Rafael J. Wysocki0cd6ac52012-12-21 00:36:49 +01002526 if (ACPI_SUCCESS(acpi_bus_check_add(handle, 0, NULL, &device)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
Rafael J. Wysockie3863092012-12-21 00:36:47 +01002528 acpi_bus_check_add, NULL, NULL, &device);
Rajesh Shah3fb02732005-04-28 00:25:52 -07002529
Rafael J. Wysocki2c22e652013-11-25 00:52:21 +01002530 if (device) {
2531 acpi_bus_attach(device);
2532 return 0;
2533 }
2534 return -ENODEV;
Rajesh Shah3fb02732005-04-28 00:25:52 -07002535}
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01002536EXPORT_SYMBOL(acpi_bus_scan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002538/**
Rafael J. Wysocki2c22e652013-11-25 00:52:21 +01002539 * acpi_bus_trim - Detach scan handlers and drivers from ACPI device objects.
2540 * @adev: Root of the ACPI namespace scope to walk.
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002541 *
2542 * Must be called under acpi_scan_lock.
2543 */
Rafael J. Wysocki2c22e652013-11-25 00:52:21 +01002544void acpi_bus_trim(struct acpi_device *adev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545{
Rafael J. Wysocki2c22e652013-11-25 00:52:21 +01002546 struct acpi_scan_handler *handler = adev->handler;
2547 struct acpi_device *child;
2548
2549 list_for_each_entry_reverse(child, &adev->children, node)
2550 acpi_bus_trim(child);
2551
Rafael J. Wysockia951c772014-01-27 23:08:09 +01002552 adev->flags.match_driver = false;
Rafael J. Wysocki2c22e652013-11-25 00:52:21 +01002553 if (handler) {
2554 if (handler->detach)
2555 handler->detach(adev);
2556
2557 adev->handler = NULL;
2558 } else {
2559 device_release_driver(&adev->dev);
2560 }
Rafael J. Wysockicecdb192013-01-15 13:24:02 +01002561 /*
Rafael J. Wysocki2c22e652013-11-25 00:52:21 +01002562 * Most likely, the device is going away, so put it into D3cold before
2563 * that.
Rafael J. Wysocki05404d82013-01-15 13:24:13 +01002564 */
Rafael J. Wysocki2c22e652013-11-25 00:52:21 +01002565 acpi_device_set_power(adev, ACPI_STATE_D3_COLD);
2566 adev->flags.initialized = false;
2567 adev->flags.visited = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568}
Kristen Accardiceaba662006-02-23 17:56:01 -08002569EXPORT_SYMBOL_GPL(acpi_bus_trim);
2570
Bjorn Helgaase8b945c2009-09-21 19:28:59 +00002571static int acpi_bus_scan_fixed(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572{
Len Brown4be44fc2005-08-05 00:44:28 -04002573 int result = 0;
Li Shaohuac4168bf2006-12-07 20:56:41 +08002574
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 /*
2576 * Enumerate all fixed-feature devices.
2577 */
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01002578 if (!(acpi_gbl_FADT.flags & ACPI_FADT_POWER_BUTTON)) {
2579 struct acpi_device *device = NULL;
2580
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00002581 result = acpi_add_single_object(&device, NULL,
Li Shaohuac4168bf2006-12-07 20:56:41 +08002582 ACPI_BUS_TYPE_POWER_BUTTON,
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01002583 ACPI_STA_DEFAULT);
2584 if (result)
2585 return result;
2586
Rafael J. Wysocki88346162013-11-18 14:18:47 +01002587 device->flags.match_driver = true;
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01002588 result = device_attach(&device->dev);
2589 if (result < 0)
2590 return result;
2591
Daniel Drakec10d7a12012-05-10 00:08:43 +01002592 device_init_wakeup(&device->dev, true);
Rajesh Shah3fb02732005-04-28 00:25:52 -07002593 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01002595 if (!(acpi_gbl_FADT.flags & ACPI_FADT_SLEEP_BUTTON)) {
2596 struct acpi_device *device = NULL;
2597
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00002598 result = acpi_add_single_object(&device, NULL,
Li Shaohuac4168bf2006-12-07 20:56:41 +08002599 ACPI_BUS_TYPE_SLEEP_BUTTON,
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01002600 ACPI_STA_DEFAULT);
2601 if (result)
2602 return result;
2603
Rafael J. Wysocki88346162013-11-18 14:18:47 +01002604 device->flags.match_driver = true;
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01002605 result = device_attach(&device->dev);
Rajesh Shah3fb02732005-04-28 00:25:52 -07002606 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01002608 return result < 0 ? result : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609}
2610
Bjorn Helgaase747f272009-03-24 16:49:43 -06002611int __init acpi_scan_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612{
2613 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614
Patrick Mochel5b327262006-05-10 10:33:00 -04002615 result = bus_register(&acpi_bus_type);
2616 if (result) {
2617 /* We don't want to quit even if we failed to add suspend/resume */
2618 printk(KERN_ERR PREFIX "Could not register bus type\n");
2619 }
2620
Rafael J. Wysocki92ef2a22012-12-21 00:36:40 +01002621 acpi_pci_root_init();
Rafael J. Wysocki4daeaf62013-01-30 14:27:37 +01002622 acpi_pci_link_init();
Rafael J. Wysockiac212b62013-05-03 00:26:22 +02002623 acpi_processor_init();
Rafael J. Wysockif58b0822013-03-06 23:46:20 +01002624 acpi_lpss_init();
Ken Xue92082a82015-02-06 08:27:51 +08002625 acpi_apd_init();
Lan Tianyu2fa97fe2013-06-05 02:27:50 +00002626 acpi_cmos_rtc_init();
Rafael J. Wysocki737f1a92013-02-08 23:52:39 +01002627 acpi_container_init();
Rafael J. Wysocki0a347642013-03-03 23:18:03 +01002628 acpi_memory_hotplug_init();
Zhang Ruieec15ed2014-05-30 04:23:01 +02002629 acpi_pnp_init();
Zhang Rui3230bbf2014-03-14 00:34:05 +08002630 acpi_int340x_thermal_init();
Rafael J. Wysocki97d9a9e2010-11-25 00:10:02 +01002631
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002632 mutex_lock(&acpi_scan_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 * Enumerate devices in the ACPI namespace.
2635 */
Rafael J. Wysocki0cd6ac52012-12-21 00:36:49 +01002636 result = acpi_bus_scan(ACPI_ROOT_OBJECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 if (result)
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002638 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639
Rafael J. Wysocki0cd6ac52012-12-21 00:36:49 +01002640 result = acpi_bus_get_device(ACPI_ROOT_OBJECT, &acpi_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 if (result)
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002642 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643
Aaron Lu2650ef42014-04-28 10:38:04 +08002644 /* Fixed feature devices do not exist on HW-reduced platform */
2645 if (!acpi_gbl_reduced_hardware) {
2646 result = acpi_bus_scan_fixed();
2647 if (result) {
2648 acpi_detach_data(acpi_root->handle,
2649 acpi_scan_drop_device);
2650 acpi_device_del(acpi_root);
2651 put_device(&acpi_root->dev);
2652 goto out;
2653 }
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01002654 }
2655
2656 acpi_update_all_gpes();
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002657
2658 out:
2659 mutex_unlock(&acpi_scan_lock);
2660 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661}