Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
[linux-2.6-block.git] / drivers / acpi / scan.c
CommitLineData
1da177e4
LT
1/*
2 * scan.c - support for transforming the ACPI namespace into individual objects
3 */
4
5#include <linux/module.h>
6#include <linux/init.h>
5a0e3ad6 7#include <linux/slab.h>
9b6d97b6 8#include <linux/kernel.h>
1da177e4 9#include <linux/acpi.h>
74523c90
AK
10#include <linux/signal.h>
11#include <linux/kthread.h>
222e82ac 12#include <linux/dmi.h>
d1efe3c3 13#include <linux/nls.h>
d0562674 14#include <linux/dma-mapping.h>
1da177e4 15
d783156e
RW
16#include <asm/pgtable.h>
17
e60cc7a6
BH
18#include "internal.h"
19
1da177e4 20#define _COMPONENT ACPI_BUS_COMPONENT
f52fd66d 21ACPI_MODULE_NAME("scan");
4be44fcd 22extern struct acpi_device *acpi_root;
1da177e4
LT
23
24#define ACPI_BUS_CLASS "system_bus"
29b71a1c 25#define ACPI_BUS_HID "LNXSYBUS"
1da177e4
LT
26#define ACPI_BUS_DEVICE_NAME "System Bus"
27
859ac9a4
BH
28#define ACPI_IS_ROOT_DEVICE(device) (!(device)->parent)
29
d783156e
RW
30#define INVALID_ACPI_HANDLE ((acpi_handle)empty_zero_page)
31
683058e3
RW
32/*
33 * If set, devices will be hot-removed even if they cannot be put offline
34 * gracefully (from the kernel's standpoint).
35 */
36bool acpi_force_hot_remove;
37
620e112c 38static const char *dummy_hid = "device";
2b2ae7c7 39
40e7fcb1
LT
40static LIST_HEAD(acpi_dep_list);
41static DEFINE_MUTEX(acpi_dep_list_lock);
e49bd2dd 42static LIST_HEAD(acpi_bus_id_list);
c511cc19 43static DEFINE_MUTEX(acpi_scan_lock);
ca589f94 44static LIST_HEAD(acpi_scan_handlers_list);
9090589d 45DEFINE_MUTEX(acpi_device_lock);
1da177e4 46LIST_HEAD(acpi_wakeup_device_list);
e525506f 47static DEFINE_MUTEX(acpi_hp_context_lock);
1da177e4 48
40e7fcb1
LT
49struct acpi_dep_data {
50 struct list_head node;
51 acpi_handle master;
52 acpi_handle slave;
53};
54
e49bd2dd 55struct acpi_device_bus_id{
bb095854 56 char bus_id[15];
e49bd2dd
ZR
57 unsigned int instance_no;
58 struct list_head node;
1da177e4 59};
29b71a1c 60
3757b948
RW
61void acpi_scan_lock_acquire(void)
62{
63 mutex_lock(&acpi_scan_lock);
64}
65EXPORT_SYMBOL_GPL(acpi_scan_lock_acquire);
66
67void acpi_scan_lock_release(void)
68{
69 mutex_unlock(&acpi_scan_lock);
70}
71EXPORT_SYMBOL_GPL(acpi_scan_lock_release);
72
e525506f
RW
73void acpi_lock_hp_context(void)
74{
75 mutex_lock(&acpi_hp_context_lock);
76}
77
78void acpi_unlock_hp_context(void)
79{
80 mutex_unlock(&acpi_hp_context_lock);
81}
82
5d513205
RW
83void acpi_initialize_hp_context(struct acpi_device *adev,
84 struct acpi_hotplug_context *hp,
85 int (*notify)(struct acpi_device *, u32),
86 void (*uevent)(struct acpi_device *, u32))
87{
88 acpi_lock_hp_context();
ba574dc8
RW
89 hp->notify = notify;
90 hp->uevent = uevent;
91 acpi_set_hp_context(adev, hp);
5d513205
RW
92 acpi_unlock_hp_context();
93}
94EXPORT_SYMBOL_GPL(acpi_initialize_hp_context);
95
ca589f94
RW
96int acpi_scan_add_handler(struct acpi_scan_handler *handler)
97{
d34afa9d 98 if (!handler)
ca589f94
RW
99 return -EINVAL;
100
101 list_add_tail(&handler->list_node, &acpi_scan_handlers_list);
102 return 0;
103}
104
3f8055c3
RW
105int acpi_scan_add_handler_with_hotplug(struct acpi_scan_handler *handler,
106 const char *hotplug_profile_name)
107{
108 int error;
109
110 error = acpi_scan_add_handler(handler);
111 if (error)
112 return error;
113
114 acpi_sysfs_add_hotplug_profile(&handler->hotplug, hotplug_profile_name);
115 return 0;
116}
117
8765c5ba
RW
118/**
119 * create_pnp_modalias - Create hid/cid(s) string for modalias and uevent
120 * @acpi_dev: ACPI device object.
121 * @modalias: Buffer to print into.
122 * @size: Size of the buffer.
123 *
29b71a1c
TR
124 * Creates hid/cid(s) string needed for modalias and uevent
125 * e.g. on a device with hid:IBM0001 and cid:ACPI0001 you get:
126 * char *modalias: "acpi:IBM0001:ACPI0001"
3d8e0090
ZR
127 * Return: 0: no _HID and no _CID
128 * -EINVAL: output error
129 * -ENOMEM: output is truncated
29b71a1c 130*/
8765c5ba
RW
131static int create_pnp_modalias(struct acpi_device *acpi_dev, char *modalias,
132 int size)
b3e572d2 133{
29b71a1c 134 int len;
5c9fcb5d 135 int count;
7f47fa6c 136 struct acpi_hardware_id *id;
29b71a1c 137
733e6251 138 /*
ee892094
RW
139 * Since we skip ACPI_DT_NAMESPACE_HID from the modalias below, 0 should
140 * be returned if ACPI_DT_NAMESPACE_HID is the only ACPI/PNP ID in the
141 * device's list.
733e6251 142 */
8765c5ba
RW
143 count = 0;
144 list_for_each_entry(id, &acpi_dev->pnp.ids, list)
ee892094 145 if (strcmp(id->id, ACPI_DT_NAMESPACE_HID))
8765c5ba 146 count++;
733e6251 147
8765c5ba
RW
148 if (!count)
149 return 0;
150
151 len = snprintf(modalias, size, "acpi:");
152 if (len <= 0)
153 return len;
154
155 size -= len;
156
157 list_for_each_entry(id, &acpi_dev->pnp.ids, list) {
ee892094 158 if (!strcmp(id->id, ACPI_DT_NAMESPACE_HID))
8765c5ba
RW
159 continue;
160
161 count = snprintf(&modalias[len], size, "%s:", id->id);
162 if (count < 0)
163 return -EINVAL;
164
165 if (count >= size)
166 return -ENOMEM;
167
168 len += count;
169 size -= count;
5c9fcb5d 170 }
8765c5ba
RW
171 modalias[len] = '\0';
172 return len;
173}
174
175/**
176 * create_of_modalias - Creates DT compatible string for modalias and uevent
177 * @acpi_dev: ACPI device object.
178 * @modalias: Buffer to print into.
179 * @size: Size of the buffer.
180 *
181 * Expose DT compatible modalias as of:NnameTCcompatible. This function should
ee892094
RW
182 * only be called for devices having ACPI_DT_NAMESPACE_HID in their list of
183 * ACPI/PNP IDs.
8765c5ba
RW
184 */
185static int create_of_modalias(struct acpi_device *acpi_dev, char *modalias,
186 int size)
187{
188 struct acpi_buffer buf = { ACPI_ALLOCATE_BUFFER };
189 const union acpi_object *of_compatible, *obj;
190 int len, count;
191 int i, nval;
192 char *c;
5c9fcb5d 193
8765c5ba
RW
194 acpi_get_name(acpi_dev->handle, ACPI_SINGLE_NAME, &buf);
195 /* DT strings are all in lower case */
196 for (c = buf.pointer; *c != '\0'; c++)
197 *c = tolower(*c);
198
199 len = snprintf(modalias, size, "of:N%sT", (char *)buf.pointer);
200 ACPI_FREE(buf.pointer);
201
202 if (len <= 0)
203 return len;
204
205 of_compatible = acpi_dev->data.of_compatible;
206 if (of_compatible->type == ACPI_TYPE_PACKAGE) {
207 nval = of_compatible->package.count;
208 obj = of_compatible->package.elements;
209 } else { /* Must be ACPI_TYPE_STRING. */
210 nval = 1;
211 obj = of_compatible;
212 }
213 for (i = 0; i < nval; i++, obj++) {
214 count = snprintf(&modalias[len], size, "C%s",
215 obj->string.pointer);
216 if (count < 0)
217 return -EINVAL;
218
219 if (count >= size)
220 return -ENOMEM;
221
222 len += count;
223 size -= count;
224 }
29b71a1c
TR
225 modalias[len] = '\0';
226 return len;
227}
228
52870786
MW
229/*
230 * acpi_companion_match() - Can we match via ACPI companion device
231 * @dev: Device in question
232 *
233 * Check if the given device has an ACPI companion and if that companion has
234 * a valid list of PNP IDs, and if the device is the first (primary) physical
e1acdeb0
RW
235 * device associated with it. Return the companion pointer if that's the case
236 * or NULL otherwise.
52870786
MW
237 *
238 * If multiple physical devices are attached to a single ACPI companion, we need
239 * to be careful. The usage scenario for this kind of relationship is that all
240 * of the physical devices in question use resources provided by the ACPI
241 * companion. A typical case is an MFD device where all the sub-devices share
242 * the parent's ACPI companion. In such cases we can only allow the primary
243 * (first) physical device to be matched with the help of the companion's PNP
244 * IDs.
245 *
246 * Additional physical devices sharing the ACPI companion can still use
247 * resources available from it but they will be matched normally using functions
248 * provided by their bus types (and analogously for their modalias).
249 */
e1acdeb0 250static struct acpi_device *acpi_companion_match(const struct device *dev)
52870786
MW
251{
252 struct acpi_device *adev;
5f2e3274 253 struct mutex *physical_node_lock;
52870786
MW
254
255 adev = ACPI_COMPANION(dev);
256 if (!adev)
e1acdeb0 257 return NULL;
52870786
MW
258
259 if (list_empty(&adev->pnp.ids))
e1acdeb0 260 return NULL;
52870786 261
5f2e3274
RW
262 physical_node_lock = &adev->physical_node_lock;
263 mutex_lock(physical_node_lock);
52870786 264 if (list_empty(&adev->physical_node_list)) {
e1acdeb0 265 adev = NULL;
52870786
MW
266 } else {
267 const struct acpi_device_physical_node *node;
268
269 node = list_first_entry(&adev->physical_node_list,
270 struct acpi_device_physical_node, node);
e1acdeb0
RW
271 if (node->dev != dev)
272 adev = NULL;
52870786 273 }
5f2e3274 274 mutex_unlock(physical_node_lock);
52870786 275
e1acdeb0 276 return adev;
52870786
MW
277}
278
8765c5ba
RW
279static int __acpi_device_uevent_modalias(struct acpi_device *adev,
280 struct kobj_uevent_env *env)
6eb2451f 281{
6eb2451f
ZR
282 int len;
283
8765c5ba 284 if (!adev)
6eb2451f
ZR
285 return -ENODEV;
286
8765c5ba
RW
287 if (list_empty(&adev->pnp.ids))
288 return 0;
289
6eb2451f
ZR
290 if (add_uevent_var(env, "MODALIAS="))
291 return -ENOMEM;
8765c5ba
RW
292
293 len = create_pnp_modalias(adev, &env->buf[env->buflen - 1],
294 sizeof(env->buf) - env->buflen);
295 if (len < 0)
6eb2451f 296 return len;
8765c5ba
RW
297
298 env->buflen += len;
299 if (!adev->data.of_compatible)
300 return 0;
301
302 if (len > 0 && add_uevent_var(env, "MODALIAS="))
303 return -ENOMEM;
304
305 len = create_of_modalias(adev, &env->buf[env->buflen - 1],
306 sizeof(env->buf) - env->buflen);
307 if (len < 0)
308 return len;
309
6eb2451f 310 env->buflen += len;
8765c5ba 311
6eb2451f
ZR
312 return 0;
313}
6eb2451f
ZR
314
315/*
8765c5ba 316 * Creates uevent modalias field for ACPI enumerated devices.
6eb2451f
ZR
317 * Because the other buses does not support ACPI HIDs & CIDs.
318 * e.g. for a device with hid:IBM0001 and cid:ACPI0001 you get:
319 * "acpi:IBM0001:ACPI0001"
320 */
8765c5ba 321int acpi_device_uevent_modalias(struct device *dev, struct kobj_uevent_env *env)
6eb2451f 322{
8765c5ba
RW
323 return __acpi_device_uevent_modalias(acpi_companion_match(dev), env);
324}
325EXPORT_SYMBOL_GPL(acpi_device_uevent_modalias);
326
327static int __acpi_device_modalias(struct acpi_device *adev, char *buf, int size)
328{
329 int len, count;
6eb2451f 330
8765c5ba 331 if (!adev)
6eb2451f
ZR
332 return -ENODEV;
333
8765c5ba
RW
334 if (list_empty(&adev->pnp.ids))
335 return 0;
336
337 len = create_pnp_modalias(adev, buf, size - 1);
338 if (len < 0) {
6eb2451f 339 return len;
8765c5ba
RW
340 } else if (len > 0) {
341 buf[len++] = '\n';
342 size -= len;
343 }
344 if (!adev->data.of_compatible)
345 return len;
346
347 count = create_of_modalias(adev, buf + len, size - 1);
348 if (count < 0) {
349 return count;
350 } else if (count > 0) {
351 len += count;
352 buf[len++] = '\n';
353 }
354
6eb2451f
ZR
355 return len;
356}
8765c5ba
RW
357
358/*
359 * Creates modalias sysfs attribute for ACPI enumerated devices.
360 * Because the other buses does not support ACPI HIDs & CIDs.
361 * e.g. for a device with hid:IBM0001 and cid:ACPI0001 you get:
362 * "acpi:IBM0001:ACPI0001"
363 */
364int acpi_device_modalias(struct device *dev, char *buf, int size)
365{
366 return __acpi_device_modalias(acpi_companion_match(dev), buf, size);
367}
6eb2451f
ZR
368EXPORT_SYMBOL_GPL(acpi_device_modalias);
369
29b71a1c
TR
370static ssize_t
371acpi_device_modalias_show(struct device *dev, struct device_attribute *attr, char *buf) {
8765c5ba 372 return __acpi_device_modalias(to_acpi_device(dev), buf, 1024);
29b71a1c
TR
373}
374static DEVICE_ATTR(modalias, 0444, acpi_device_modalias_show, NULL);
375
caa73ea1 376bool acpi_scan_is_offline(struct acpi_device *adev, bool uevent)
d22ddcbc
RW
377{
378 struct acpi_device_physical_node *pn;
379 bool offline = true;
380
4c533c80
RW
381 /*
382 * acpi_container_offline() calls this for all of the container's
383 * children under the container's physical_node_lock lock.
384 */
385 mutex_lock_nested(&adev->physical_node_lock, SINGLE_DEPTH_NESTING);
d22ddcbc
RW
386
387 list_for_each_entry(pn, &adev->physical_node_list, node)
388 if (device_supports_offline(pn->dev) && !pn->dev->offline) {
caa73ea1
RW
389 if (uevent)
390 kobject_uevent(&pn->dev->kobj, KOBJ_CHANGE);
391
d22ddcbc
RW
392 offline = false;
393 break;
394 }
395
396 mutex_unlock(&adev->physical_node_lock);
397 return offline;
398}
399
7f28ddec
RW
400static acpi_status acpi_bus_offline(acpi_handle handle, u32 lvl, void *data,
401 void **ret_p)
683058e3
RW
402{
403 struct acpi_device *device = NULL;
404 struct acpi_device_physical_node *pn;
303bfdb1 405 bool second_pass = (bool)data;
683058e3
RW
406 acpi_status status = AE_OK;
407
408 if (acpi_bus_get_device(handle, &device))
409 return AE_OK;
410
7f28ddec
RW
411 if (device->handler && !device->handler->hotplug.enabled) {
412 *ret_p = &device->dev;
413 return AE_SUPPORT;
414 }
415
683058e3
RW
416 mutex_lock(&device->physical_node_lock);
417
418 list_for_each_entry(pn, &device->physical_node_list, node) {
419 int ret;
420
303bfdb1
RW
421 if (second_pass) {
422 /* Skip devices offlined by the first pass. */
423 if (pn->put_online)
424 continue;
425 } else {
426 pn->put_online = false;
427 }
683058e3
RW
428 ret = device_offline(pn->dev);
429 if (acpi_force_hot_remove)
430 continue;
431
303bfdb1
RW
432 if (ret >= 0) {
433 pn->put_online = !ret;
434 } else {
435 *ret_p = pn->dev;
436 if (second_pass) {
437 status = AE_ERROR;
438 break;
439 }
683058e3 440 }
683058e3
RW
441 }
442
443 mutex_unlock(&device->physical_node_lock);
444
445 return status;
446}
447
7f28ddec
RW
448static acpi_status acpi_bus_online(acpi_handle handle, u32 lvl, void *data,
449 void **ret_p)
683058e3
RW
450{
451 struct acpi_device *device = NULL;
452 struct acpi_device_physical_node *pn;
453
454 if (acpi_bus_get_device(handle, &device))
455 return AE_OK;
456
457 mutex_lock(&device->physical_node_lock);
458
459 list_for_each_entry(pn, &device->physical_node_list, node)
460 if (pn->put_online) {
461 device_online(pn->dev);
462 pn->put_online = false;
463 }
464
465 mutex_unlock(&device->physical_node_lock);
466
467 return AE_OK;
468}
469
d22ddcbc 470static int acpi_scan_try_to_offline(struct acpi_device *device)
1da177e4 471{
5993c467 472 acpi_handle handle = device->handle;
d22ddcbc 473 struct device *errdev = NULL;
a33ec399 474 acpi_status status;
f058cdf4 475
303bfdb1
RW
476 /*
477 * Carry out two passes here and ignore errors in the first pass,
478 * because if the devices in question are memory blocks and
479 * CONFIG_MEMCG is set, one of the blocks may hold data structures
480 * that the other blocks depend on, but it is not known in advance which
481 * block holds them.
482 *
483 * If the first pass is successful, the second one isn't needed, though.
484 */
7f28ddec
RW
485 status = acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
486 NULL, acpi_bus_offline, (void *)false,
487 (void **)&errdev);
488 if (status == AE_SUPPORT) {
489 dev_warn(errdev, "Offline disabled.\n");
490 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
491 acpi_bus_online, NULL, NULL, NULL);
7f28ddec
RW
492 return -EPERM;
493 }
494 acpi_bus_offline(handle, 0, (void *)false, (void **)&errdev);
303bfdb1
RW
495 if (errdev) {
496 errdev = NULL;
683058e3 497 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
7f28ddec
RW
498 NULL, acpi_bus_offline, (void *)true,
499 (void **)&errdev);
303bfdb1 500 if (!errdev || acpi_force_hot_remove)
7f28ddec
RW
501 acpi_bus_offline(handle, 0, (void *)true,
502 (void **)&errdev);
303bfdb1
RW
503
504 if (errdev && !acpi_force_hot_remove) {
505 dev_warn(errdev, "Offline failed.\n");
7f28ddec 506 acpi_bus_online(handle, 0, NULL, NULL);
303bfdb1 507 acpi_walk_namespace(ACPI_TYPE_ANY, handle,
7f28ddec
RW
508 ACPI_UINT32_MAX, acpi_bus_online,
509 NULL, NULL, NULL);
303bfdb1
RW
510 return -EBUSY;
511 }
683058e3 512 }
d22ddcbc
RW
513 return 0;
514}
515
516static int acpi_scan_hot_remove(struct acpi_device *device)
517{
518 acpi_handle handle = device->handle;
519 unsigned long long sta;
520 acpi_status status;
521
dee15926
TC
522 if (device->handler && device->handler->hotplug.demand_offline
523 && !acpi_force_hot_remove) {
caa73ea1 524 if (!acpi_scan_is_offline(device, true))
d22ddcbc
RW
525 return -EBUSY;
526 } else {
527 int error = acpi_scan_try_to_offline(device);
528 if (error)
529 return error;
530 }
683058e3 531
26d46867 532 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
0794469d 533 "Hot-removing device %s...\n", dev_name(&device->dev)));
26d46867 534
bfee26db 535 acpi_bus_trim(device);
683058e3 536
7d2421f8 537 acpi_evaluate_lck(handle, 0);
1da177e4
LT
538 /*
539 * TBD: _EJD support.
540 */
7d2421f8
JL
541 status = acpi_evaluate_ej0(handle);
542 if (status == AE_NOT_FOUND)
543 return -ENODEV;
544 else if (ACPI_FAILURE(status))
545 return -EIO;
1da177e4 546
882fd12e
TK
547 /*
548 * Verify if eject was indeed successful. If not, log an error
549 * message. No need to call _OST since _EJ0 call was made OK.
550 */
551 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
552 if (ACPI_FAILURE(status)) {
553 acpi_handle_warn(handle,
554 "Status check after eject failed (0x%x)\n", status);
555 } else if (sta & ACPI_STA_DEVICE_ENABLED) {
556 acpi_handle_warn(handle,
557 "Eject incomplete - status 0x%llx\n", sta);
558 }
559
a33ec399
RW
560 return 0;
561}
1da177e4 562
443fc820
RW
563static int acpi_scan_device_not_present(struct acpi_device *adev)
564{
565 if (!acpi_device_enumerated(adev)) {
566 dev_warn(&adev->dev, "Still not present\n");
567 return -EALREADY;
568 }
569 acpi_bus_trim(adev);
570 return 0;
571}
572
c27b2c33 573static int acpi_scan_device_check(struct acpi_device *adev)
a33ec399 574{
f943db40 575 int error;
a33ec399 576
443fc820
RW
577 acpi_bus_get_status(adev);
578 if (adev->status.present || adev->status.functional) {
579 /*
580 * This function is only called for device objects for which
581 * matching scan handlers exist. The only situation in which
582 * the scan handler is not attached to this device object yet
583 * is when the device has just appeared (either it wasn't
584 * present at all before or it was removed and then added
585 * again).
586 */
587 if (adev->handler) {
588 dev_warn(&adev->dev, "Already enumerated\n");
589 return -EALREADY;
590 }
591 error = acpi_bus_scan(adev->handle);
592 if (error) {
593 dev_warn(&adev->dev, "Namespace scan failure\n");
594 return error;
595 }
596 if (!adev->handler) {
597 dev_warn(&adev->dev, "Enumeration failure\n");
598 error = -ENODEV;
599 }
600 } else {
601 error = acpi_scan_device_not_present(adev);
602 }
603 return error;
604}
605
606static int acpi_scan_bus_check(struct acpi_device *adev)
607{
608 struct acpi_scan_handler *handler = adev->handler;
609 struct acpi_device *child;
610 int error;
611
612 acpi_bus_get_status(adev);
613 if (!(adev->status.present || adev->status.functional)) {
614 acpi_scan_device_not_present(adev);
615 return 0;
616 }
617 if (handler && handler->hotplug.scan_dependent)
618 return handler->hotplug.scan_dependent(adev);
619
c27b2c33
RW
620 error = acpi_bus_scan(adev->handle);
621 if (error) {
622 dev_warn(&adev->dev, "Namespace scan failure\n");
623 return error;
624 }
443fc820
RW
625 list_for_each_entry(child, &adev->children, node) {
626 error = acpi_scan_bus_check(child);
627 if (error)
628 return error;
c27b2c33
RW
629 }
630 return 0;
a33ec399
RW
631}
632
3c2cc7ff
RW
633static int acpi_generic_hotplug_event(struct acpi_device *adev, u32 type)
634{
635 switch (type) {
636 case ACPI_NOTIFY_BUS_CHECK:
637 return acpi_scan_bus_check(adev);
638 case ACPI_NOTIFY_DEVICE_CHECK:
639 return acpi_scan_device_check(adev);
640 case ACPI_NOTIFY_EJECT_REQUEST:
641 case ACPI_OST_EC_OSPM_EJECT:
dd2151be
RW
642 if (adev->handler && !adev->handler->hotplug.enabled) {
643 dev_info(&adev->dev, "Eject disabled\n");
644 return -EPERM;
645 }
700b8422
RW
646 acpi_evaluate_ost(adev->handle, ACPI_NOTIFY_EJECT_REQUEST,
647 ACPI_OST_SC_EJECT_IN_PROGRESS, NULL);
3c2cc7ff
RW
648 return acpi_scan_hot_remove(adev);
649 }
650 return -EINVAL;
651}
652
1e3bcb59 653void acpi_device_hotplug(struct acpi_device *adev, u32 src)
a33ec399 654{
a33ec399 655 u32 ost_code = ACPI_OST_SC_NON_SPECIFIC_FAILURE;
3c2cc7ff 656 int error = -ENODEV;
a33ec399 657
683058e3 658 lock_device_hotplug();
e0ae8fee 659 mutex_lock(&acpi_scan_lock);
a33ec399 660
c27b2c33
RW
661 /*
662 * The device object's ACPI handle cannot become invalid as long as we
3c2cc7ff 663 * are holding acpi_scan_lock, but it might have become invalid before
c27b2c33
RW
664 * that lock was acquired.
665 */
666 if (adev->handle == INVALID_ACPI_HANDLE)
3c2cc7ff 667 goto err_out;
c27b2c33 668
1e2380cd
RW
669 if (adev->flags.is_dock_station) {
670 error = dock_notify(adev, src);
671 } else if (adev->flags.hotplug_notify) {
3c2cc7ff 672 error = acpi_generic_hotplug_event(adev, src);
dd2151be
RW
673 if (error == -EPERM) {
674 ost_code = ACPI_OST_SC_EJECT_NOT_SUPPORTED;
675 goto err_out;
676 }
3c2cc7ff 677 } else {
be27b3dc 678 int (*notify)(struct acpi_device *, u32);
3c2cc7ff
RW
679
680 acpi_lock_hp_context();
be27b3dc 681 notify = adev->hp ? adev->hp->notify : NULL;
3c2cc7ff
RW
682 acpi_unlock_hp_context();
683 /*
684 * There may be additional notify handlers for device objects
685 * without the .event() callback, so ignore them here.
686 */
be27b3dc
RW
687 if (notify)
688 error = notify(adev, src);
3c2cc7ff
RW
689 else
690 goto out;
a33ec399 691 }
c27b2c33
RW
692 if (!error)
693 ost_code = ACPI_OST_SC_SUCCESS;
a33ec399 694
3c2cc7ff 695 err_out:
700b8422 696 acpi_evaluate_ost(adev->handle, src, ost_code, NULL);
3c2cc7ff
RW
697
698 out:
78ea4639 699 acpi_bus_put_acpi_device(adev);
a33ec399 700 mutex_unlock(&acpi_scan_lock);
e0ae8fee 701 unlock_device_hotplug();
a33ec399
RW
702}
703
836aedb1
RW
704static ssize_t real_power_state_show(struct device *dev,
705 struct device_attribute *attr, char *buf)
706{
707 struct acpi_device *adev = to_acpi_device(dev);
708 int state;
709 int ret;
710
711 ret = acpi_device_get_power(adev, &state);
712 if (ret)
713 return ret;
714
715 return sprintf(buf, "%s\n", acpi_power_state_string(state));
716}
717
718static DEVICE_ATTR(real_power_state, 0444, real_power_state_show, NULL);
719
720static ssize_t power_state_show(struct device *dev,
721 struct device_attribute *attr, char *buf)
722{
723 struct acpi_device *adev = to_acpi_device(dev);
724
725 return sprintf(buf, "%s\n", acpi_power_state_string(adev->power.state));
726}
727
728static DEVICE_ATTR(power_state, 0444, power_state_show, NULL);
729
1da177e4 730static ssize_t
f883d9db
PM
731acpi_eject_store(struct device *d, struct device_attribute *attr,
732 const char *buf, size_t count)
1da177e4 733{
f883d9db 734 struct acpi_device *acpi_device = to_acpi_device(d);
a33ec399
RW
735 acpi_object_type not_used;
736 acpi_status status;
1da177e4 737
a33ec399 738 if (!count || buf[0] != '1')
1da177e4 739 return -EINVAL;
1da177e4 740
a33ec399
RW
741 if ((!acpi_device->handler || !acpi_device->handler->hotplug.enabled)
742 && !acpi_device->driver)
743 return -ENODEV;
744
745 status = acpi_get_type(acpi_device->handle, &not_used);
746 if (ACPI_FAILURE(status) || !acpi_device->flags.ejectable)
747 return -ENODEV;
748
a33ec399 749 get_device(&acpi_device->dev);
1e3bcb59 750 status = acpi_hotplug_schedule(acpi_device, ACPI_OST_EC_OSPM_EJECT);
f943db40
RW
751 if (ACPI_SUCCESS(status))
752 return count;
a33ec399 753
f943db40 754 put_device(&acpi_device->dev);
700b8422
RW
755 acpi_evaluate_ost(acpi_device->handle, ACPI_OST_EC_OSPM_EJECT,
756 ACPI_OST_SC_NON_SPECIFIC_FAILURE, NULL);
5add99cf 757 return status == AE_NO_MEMORY ? -ENOMEM : -EAGAIN;
1da177e4
LT
758}
759
f883d9db 760static DEVICE_ATTR(eject, 0200, NULL, acpi_eject_store);
1da177e4 761
e49bd2dd
ZR
762static ssize_t
763acpi_device_hid_show(struct device *dev, struct device_attribute *attr, char *buf) {
764 struct acpi_device *acpi_dev = to_acpi_device(dev);
1da177e4 765
ea8d82fd 766 return sprintf(buf, "%s\n", acpi_device_hid(acpi_dev));
1da177e4 767}
e49bd2dd 768static DEVICE_ATTR(hid, 0444, acpi_device_hid_show, NULL);
1da177e4 769
923d4a45
LZ
770static ssize_t acpi_device_uid_show(struct device *dev,
771 struct device_attribute *attr, char *buf)
772{
773 struct acpi_device *acpi_dev = to_acpi_device(dev);
774
775 return sprintf(buf, "%s\n", acpi_dev->pnp.unique_id);
776}
777static DEVICE_ATTR(uid, 0444, acpi_device_uid_show, NULL);
778
779static ssize_t acpi_device_adr_show(struct device *dev,
780 struct device_attribute *attr, char *buf)
781{
782 struct acpi_device *acpi_dev = to_acpi_device(dev);
783
784 return sprintf(buf, "0x%08x\n",
785 (unsigned int)(acpi_dev->pnp.bus_address));
786}
787static DEVICE_ATTR(adr, 0444, acpi_device_adr_show, NULL);
788
e49bd2dd
ZR
789static ssize_t
790acpi_device_path_show(struct device *dev, struct device_attribute *attr, char *buf) {
791 struct acpi_device *acpi_dev = to_acpi_device(dev);
792 struct acpi_buffer path = {ACPI_ALLOCATE_BUFFER, NULL};
793 int result;
1da177e4 794
e49bd2dd 795 result = acpi_get_name(acpi_dev->handle, ACPI_FULL_PATHNAME, &path);
0c526d96 796 if (result)
e49bd2dd 797 goto end;
1da177e4 798
e49bd2dd
ZR
799 result = sprintf(buf, "%s\n", (char*)path.pointer);
800 kfree(path.pointer);
0c526d96 801end:
e49bd2dd 802 return result;
1da177e4 803}
e49bd2dd 804static DEVICE_ATTR(path, 0444, acpi_device_path_show, NULL);
1da177e4 805
d1efe3c3
LO
806/* sysfs file that shows description text from the ACPI _STR method */
807static ssize_t description_show(struct device *dev,
808 struct device_attribute *attr,
809 char *buf) {
810 struct acpi_device *acpi_dev = to_acpi_device(dev);
811 int result;
812
813 if (acpi_dev->pnp.str_obj == NULL)
814 return 0;
815
816 /*
817 * The _STR object contains a Unicode identifier for a device.
818 * We need to convert to utf-8 so it can be displayed.
819 */
820 result = utf16s_to_utf8s(
821 (wchar_t *)acpi_dev->pnp.str_obj->buffer.pointer,
822 acpi_dev->pnp.str_obj->buffer.length,
823 UTF16_LITTLE_ENDIAN, buf,
824 PAGE_SIZE);
825
826 buf[result++] = '\n';
827
828 return result;
829}
830static DEVICE_ATTR(description, 0444, description_show, NULL);
831
bb74ac23
YI
832static ssize_t
833acpi_device_sun_show(struct device *dev, struct device_attribute *attr,
834 char *buf) {
835 struct acpi_device *acpi_dev = to_acpi_device(dev);
a383b68d
YI
836 acpi_status status;
837 unsigned long long sun;
bb74ac23 838
a383b68d
YI
839 status = acpi_evaluate_integer(acpi_dev->handle, "_SUN", NULL, &sun);
840 if (ACPI_FAILURE(status))
841 return -ENODEV;
842
843 return sprintf(buf, "%llu\n", sun);
bb74ac23
YI
844}
845static DEVICE_ATTR(sun, 0444, acpi_device_sun_show, NULL);
846
c713cd7f
SP
847static ssize_t status_show(struct device *dev, struct device_attribute *attr,
848 char *buf) {
849 struct acpi_device *acpi_dev = to_acpi_device(dev);
850 acpi_status status;
851 unsigned long long sta;
852
853 status = acpi_evaluate_integer(acpi_dev->handle, "_STA", NULL, &sta);
854 if (ACPI_FAILURE(status))
855 return -ENODEV;
856
857 return sprintf(buf, "%llu\n", sta);
858}
859static DEVICE_ATTR_RO(status);
860
e49bd2dd 861static int acpi_device_setup_files(struct acpi_device *dev)
1da177e4 862{
d1efe3c3 863 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
f883d9db 864 acpi_status status;
e49bd2dd 865 int result = 0;
1da177e4
LT
866
867 /*
e49bd2dd 868 * Devices gotten from FADT don't have a "path" attribute
1da177e4 869 */
0c526d96 870 if (dev->handle) {
e49bd2dd 871 result = device_create_file(&dev->dev, &dev_attr_path);
0c526d96 872 if (result)
e49bd2dd 873 goto end;
1da177e4
LT
874 }
875
2b2ae7c7
TR
876 if (!list_empty(&dev->pnp.ids)) {
877 result = device_create_file(&dev->dev, &dev_attr_hid);
878 if (result)
879 goto end;
1da177e4 880
2b2ae7c7
TR
881 result = device_create_file(&dev->dev, &dev_attr_modalias);
882 if (result)
883 goto end;
884 }
29b71a1c 885
d1efe3c3
LO
886 /*
887 * If device has _STR, 'description' file is created
888 */
952c63e9 889 if (acpi_has_method(dev->handle, "_STR")) {
d1efe3c3
LO
890 status = acpi_evaluate_object(dev->handle, "_STR",
891 NULL, &buffer);
892 if (ACPI_FAILURE(status))
893 buffer.pointer = NULL;
894 dev->pnp.str_obj = buffer.pointer;
895 result = device_create_file(&dev->dev, &dev_attr_description);
896 if (result)
897 goto end;
898 }
899
d4e1a692 900 if (dev->pnp.type.bus_address)
923d4a45
LZ
901 result = device_create_file(&dev->dev, &dev_attr_adr);
902 if (dev->pnp.unique_id)
903 result = device_create_file(&dev->dev, &dev_attr_uid);
904
a383b68d 905 if (acpi_has_method(dev->handle, "_SUN")) {
bb74ac23
YI
906 result = device_create_file(&dev->dev, &dev_attr_sun);
907 if (result)
908 goto end;
bb74ac23
YI
909 }
910
c713cd7f
SP
911 if (acpi_has_method(dev->handle, "_STA")) {
912 result = device_create_file(&dev->dev, &dev_attr_status);
913 if (result)
914 goto end;
915 }
916
e49bd2dd
ZR
917 /*
918 * If device has _EJ0, 'eject' file is created that is used to trigger
919 * hot-removal function from userland.
920 */
952c63e9 921 if (acpi_has_method(dev->handle, "_EJ0")) {
e49bd2dd 922 result = device_create_file(&dev->dev, &dev_attr_eject);
836aedb1
RW
923 if (result)
924 return result;
925 }
926
927 if (dev->flags.power_manageable) {
928 result = device_create_file(&dev->dev, &dev_attr_power_state);
929 if (result)
930 return result;
931
932 if (dev->power.flags.power_resources)
933 result = device_create_file(&dev->dev,
934 &dev_attr_real_power_state);
935 }
936
0c526d96 937end:
e49bd2dd 938 return result;
1da177e4
LT
939}
940
f883d9db 941static void acpi_device_remove_files(struct acpi_device *dev)
1da177e4 942{
836aedb1
RW
943 if (dev->flags.power_manageable) {
944 device_remove_file(&dev->dev, &dev_attr_power_state);
945 if (dev->power.flags.power_resources)
946 device_remove_file(&dev->dev,
947 &dev_attr_real_power_state);
948 }
949
f883d9db 950 /*
d1efe3c3
LO
951 * If device has _STR, remove 'description' file
952 */
952c63e9 953 if (acpi_has_method(dev->handle, "_STR")) {
d1efe3c3
LO
954 kfree(dev->pnp.str_obj);
955 device_remove_file(&dev->dev, &dev_attr_description);
956 }
957 /*
958 * If device has _EJ0, remove 'eject' file.
f883d9db 959 */
952c63e9 960 if (acpi_has_method(dev->handle, "_EJ0"))
f883d9db 961 device_remove_file(&dev->dev, &dev_attr_eject);
1da177e4 962
952c63e9 963 if (acpi_has_method(dev->handle, "_SUN"))
bb74ac23
YI
964 device_remove_file(&dev->dev, &dev_attr_sun);
965
923d4a45
LZ
966 if (dev->pnp.unique_id)
967 device_remove_file(&dev->dev, &dev_attr_uid);
d4e1a692 968 if (dev->pnp.type.bus_address)
923d4a45 969 device_remove_file(&dev->dev, &dev_attr_adr);
1131b938
BH
970 device_remove_file(&dev->dev, &dev_attr_modalias);
971 device_remove_file(&dev->dev, &dev_attr_hid);
c713cd7f
SP
972 if (acpi_has_method(dev->handle, "_STA"))
973 device_remove_file(&dev->dev, &dev_attr_status);
0c526d96 974 if (dev->handle)
e49bd2dd 975 device_remove_file(&dev->dev, &dev_attr_path);
1da177e4 976}
1da177e4 977/* --------------------------------------------------------------------------
9e89dde2 978 ACPI Bus operations
1da177e4 979 -------------------------------------------------------------------------- */
29b71a1c 980
2b9c698e
RW
981/**
982 * acpi_of_match_device - Match device object using the "compatible" property.
983 * @adev: ACPI device object to match.
984 * @of_match_table: List of device IDs to match against.
985 *
ee892094
RW
986 * If @dev has an ACPI companion which has ACPI_DT_NAMESPACE_HID in its list of
987 * identifiers and a _DSD object with the "compatible" property, use that
988 * property to match against the given list of identifiers.
2b9c698e
RW
989 */
990static bool acpi_of_match_device(struct acpi_device *adev,
991 const struct of_device_id *of_match_table)
992{
993 const union acpi_object *of_compatible, *obj;
994 int i, nval;
995
996 if (!adev)
997 return false;
998
999 of_compatible = adev->data.of_compatible;
1000 if (!of_match_table || !of_compatible)
1001 return false;
1002
1003 if (of_compatible->type == ACPI_TYPE_PACKAGE) {
1004 nval = of_compatible->package.count;
1005 obj = of_compatible->package.elements;
1006 } else { /* Must be ACPI_TYPE_STRING. */
1007 nval = 1;
1008 obj = of_compatible;
1009 }
1010 /* Now we can look for the driver DT compatible strings */
1011 for (i = 0; i < nval; i++, obj++) {
1012 const struct of_device_id *id;
1013
1014 for (id = of_match_table; id->compatible[0]; id++)
1015 if (!strcasecmp(obj->string.pointer, id->compatible))
1016 return true;
1017 }
1018
1019 return false;
1020}
1021
26095a01
SS
1022static bool __acpi_match_device_cls(const struct acpi_device_id *id,
1023 struct acpi_hardware_id *hwid)
1024{
1025 int i, msk, byte_shift;
1026 char buf[3];
1027
1028 if (!id->cls)
1029 return false;
1030
1031 /* Apply class-code bitmask, before checking each class-code byte */
1032 for (i = 1; i <= 3; i++) {
1033 byte_shift = 8 * (3 - i);
1034 msk = (id->cls_msk >> byte_shift) & 0xFF;
1035 if (!msk)
1036 continue;
1037
1038 sprintf(buf, "%02x", (id->cls >> byte_shift) & msk);
1039 if (strncmp(buf, &hwid->id[(i - 1) * 2], 2))
1040 return false;
1041 }
1042 return true;
1043}
1044
cf761af9 1045static const struct acpi_device_id *__acpi_match_device(
2b9c698e
RW
1046 struct acpi_device *device,
1047 const struct acpi_device_id *ids,
1048 const struct of_device_id *of_ids)
29b71a1c
TR
1049{
1050 const struct acpi_device_id *id;
7f47fa6c 1051 struct acpi_hardware_id *hwid;
29b71a1c 1052
39a0ad87
ZY
1053 /*
1054 * If the device is not present, it is unnecessary to load device
1055 * driver for it.
1056 */
e1acdeb0 1057 if (!device || !device->status.present)
cf761af9 1058 return NULL;
39a0ad87 1059
2b9c698e
RW
1060 list_for_each_entry(hwid, &device->pnp.ids, list) {
1061 /* First, check the ACPI/PNP IDs provided by the caller. */
26095a01
SS
1062 for (id = ids; id->id[0] || id->cls; id++) {
1063 if (id->id[0] && !strcmp((char *) id->id, hwid->id))
cf761af9 1064 return id;
26095a01
SS
1065 else if (id->cls && __acpi_match_device_cls(id, hwid))
1066 return id;
1067 }
cf761af9 1068
2b9c698e 1069 /*
ee892094 1070 * Next, check ACPI_DT_NAMESPACE_HID and try to match the
2b9c698e
RW
1071 * "compatible" property if found.
1072 *
1073 * The id returned by the below is not valid, but the only
1074 * caller passing non-NULL of_ids here is only interested in
1075 * whether or not the return value is NULL.
1076 */
ee892094 1077 if (!strcmp(ACPI_DT_NAMESPACE_HID, hwid->id)
2b9c698e
RW
1078 && acpi_of_match_device(device, of_ids))
1079 return id;
1080 }
cf761af9
MW
1081 return NULL;
1082}
1083
1084/**
1085 * acpi_match_device - Match a struct device against a given list of ACPI IDs
1086 * @ids: Array of struct acpi_device_id object to match against.
1087 * @dev: The device structure to match.
1088 *
1089 * Check if @dev has a valid ACPI handle and if there is a struct acpi_device
1090 * object for that handle and use that object to match against a given list of
1091 * device IDs.
1092 *
1093 * Return a pointer to the first matching ID on success or %NULL on failure.
1094 */
1095const struct acpi_device_id *acpi_match_device(const struct acpi_device_id *ids,
1096 const struct device *dev)
1097{
2b9c698e 1098 return __acpi_match_device(acpi_companion_match(dev), ids, NULL);
cf761af9
MW
1099}
1100EXPORT_SYMBOL_GPL(acpi_match_device);
29b71a1c 1101
cf761af9
MW
1102int acpi_match_device_ids(struct acpi_device *device,
1103 const struct acpi_device_id *ids)
1104{
2b9c698e 1105 return __acpi_match_device(device, ids, NULL) ? 0 : -ENOENT;
29b71a1c
TR
1106}
1107EXPORT_SYMBOL(acpi_match_device_ids);
1108
733e6251
MW
1109bool acpi_driver_match_device(struct device *dev,
1110 const struct device_driver *drv)
1111{
1112 if (!drv->acpi_match_table)
2b9c698e
RW
1113 return acpi_of_match_device(ACPI_COMPANION(dev),
1114 drv->of_match_table);
733e6251 1115
2b9c698e
RW
1116 return !!__acpi_match_device(acpi_companion_match(dev),
1117 drv->acpi_match_table, drv->of_match_table);
733e6251
MW
1118}
1119EXPORT_SYMBOL_GPL(acpi_driver_match_device);
1120
0b224527
RW
1121static void acpi_free_power_resources_lists(struct acpi_device *device)
1122{
1123 int i;
1124
993cbe59
RW
1125 if (device->wakeup.flags.valid)
1126 acpi_power_resources_list_free(&device->wakeup.resources);
1127
1b1f3e16 1128 if (!device->power.flags.power_resources)
0b224527
RW
1129 return;
1130
1131 for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3_HOT; i++) {
1132 struct acpi_device_power_state *ps = &device->power.states[i];
1133 acpi_power_resources_list_free(&ps->resources);
1134 }
7f47fa6c
BH
1135}
1136
1890a97a 1137static void acpi_device_release(struct device *dev)
1da177e4 1138{
1890a97a 1139 struct acpi_device *acpi_dev = to_acpi_device(dev);
1da177e4 1140
ffdcd955 1141 acpi_free_properties(acpi_dev);
c0af4175 1142 acpi_free_pnp_ids(&acpi_dev->pnp);
0b224527 1143 acpi_free_power_resources_lists(acpi_dev);
1890a97a 1144 kfree(acpi_dev);
1da177e4
LT
1145}
1146
5d9464a4 1147static int acpi_bus_match(struct device *dev, struct device_driver *drv)
9e89dde2 1148{
5d9464a4
PM
1149 struct acpi_device *acpi_dev = to_acpi_device(dev);
1150 struct acpi_driver *acpi_drv = to_acpi_driver(drv);
1da177e4 1151
209d3b17 1152 return acpi_dev->flags.match_driver
805d410f 1153 && !acpi_match_device_ids(acpi_dev, acpi_drv->ids);
5d9464a4 1154}
1da177e4 1155
7eff2e7a 1156static int acpi_device_uevent(struct device *dev, struct kobj_uevent_env *env)
1da177e4 1157{
8765c5ba 1158 return __acpi_device_uevent_modalias(to_acpi_device(dev), env);
1da177e4
LT
1159}
1160
46ec8598
BH
1161static void acpi_device_notify(acpi_handle handle, u32 event, void *data)
1162{
1163 struct acpi_device *device = data;
1164
1165 device->driver->ops.notify(device, event);
1166}
1167
236105db 1168static void acpi_device_notify_fixed(void *data)
46ec8598
BH
1169{
1170 struct acpi_device *device = data;
1171
53de5356
BH
1172 /* Fixed hardware devices have no handles */
1173 acpi_device_notify(NULL, ACPI_FIXED_HARDWARE_EVENT, device);
236105db
LT
1174}
1175
fd9caef4 1176static u32 acpi_device_fixed_event(void *data)
236105db
LT
1177{
1178 acpi_os_execute(OSL_NOTIFY_HANDLER, acpi_device_notify_fixed, data);
fd9caef4 1179 return ACPI_INTERRUPT_HANDLED;
46ec8598
BH
1180}
1181
1182static int acpi_device_install_notify_handler(struct acpi_device *device)
1183{
1184 acpi_status status;
46ec8598 1185
ccba2a36 1186 if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON)
46ec8598
BH
1187 status =
1188 acpi_install_fixed_event_handler(ACPI_EVENT_POWER_BUTTON,
236105db 1189 acpi_device_fixed_event,
46ec8598 1190 device);
ccba2a36 1191 else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON)
46ec8598
BH
1192 status =
1193 acpi_install_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON,
236105db 1194 acpi_device_fixed_event,
46ec8598
BH
1195 device);
1196 else
1197 status = acpi_install_notify_handler(device->handle,
1198 ACPI_DEVICE_NOTIFY,
1199 acpi_device_notify,
1200 device);
1201
1202 if (ACPI_FAILURE(status))
1203 return -EINVAL;
1204 return 0;
1205}
1206
1207static void acpi_device_remove_notify_handler(struct acpi_device *device)
1208{
ccba2a36 1209 if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON)
46ec8598 1210 acpi_remove_fixed_event_handler(ACPI_EVENT_POWER_BUTTON,
236105db 1211 acpi_device_fixed_event);
ccba2a36 1212 else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON)
46ec8598 1213 acpi_remove_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON,
236105db 1214 acpi_device_fixed_event);
46ec8598
BH
1215 else
1216 acpi_remove_notify_handler(device->handle, ACPI_DEVICE_NOTIFY,
1217 acpi_device_notify);
1218}
1219
d9e455f5 1220static int acpi_device_probe(struct device *dev)
1da177e4 1221{
5d9464a4
PM
1222 struct acpi_device *acpi_dev = to_acpi_device(dev);
1223 struct acpi_driver *acpi_drv = to_acpi_driver(dev->driver);
1224 int ret;
1225
fc2e0a83 1226 if (acpi_dev->handler && !acpi_is_pnp_device(acpi_dev))
24071f47
RW
1227 return -EINVAL;
1228
d9e455f5
RW
1229 if (!acpi_drv->ops.add)
1230 return -ENOSYS;
46ec8598 1231
d9e455f5
RW
1232 ret = acpi_drv->ops.add(acpi_dev);
1233 if (ret)
1234 return ret;
46ec8598 1235
d9e455f5
RW
1236 acpi_dev->driver = acpi_drv;
1237 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1238 "Driver [%s] successfully bound to device [%s]\n",
1239 acpi_drv->name, acpi_dev->pnp.bus_id));
1240
1241 if (acpi_drv->ops.notify) {
1242 ret = acpi_device_install_notify_handler(acpi_dev);
1243 if (ret) {
1244 if (acpi_drv->ops.remove)
1245 acpi_drv->ops.remove(acpi_dev);
1246
1247 acpi_dev->driver = NULL;
1248 acpi_dev->driver_data = NULL;
1249 return ret;
1250 }
5d9464a4 1251 }
d9e455f5
RW
1252
1253 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found driver [%s] for device [%s]\n",
1254 acpi_drv->name, acpi_dev->pnp.bus_id));
1255 get_device(dev);
1256 return 0;
5d9464a4 1257}
1da177e4 1258
5d9464a4
PM
1259static int acpi_device_remove(struct device * dev)
1260{
1261 struct acpi_device *acpi_dev = to_acpi_device(dev);
1262 struct acpi_driver *acpi_drv = acpi_dev->driver;
1263
1264 if (acpi_drv) {
46ec8598
BH
1265 if (acpi_drv->ops.notify)
1266 acpi_device_remove_notify_handler(acpi_dev);
5d9464a4 1267 if (acpi_drv->ops.remove)
51fac838 1268 acpi_drv->ops.remove(acpi_dev);
1da177e4 1269 }
5d9464a4 1270 acpi_dev->driver = NULL;
db89b4f0 1271 acpi_dev->driver_data = NULL;
1da177e4 1272
5d9464a4 1273 put_device(dev);
9e89dde2
ZR
1274 return 0;
1275}
1da177e4 1276
55955aad 1277struct bus_type acpi_bus_type = {
9e89dde2 1278 .name = "acpi",
5d9464a4
PM
1279 .match = acpi_bus_match,
1280 .probe = acpi_device_probe,
1281 .remove = acpi_device_remove,
1282 .uevent = acpi_device_uevent,
9e89dde2
ZR
1283};
1284
d783156e
RW
1285static void acpi_device_del(struct acpi_device *device)
1286{
1287 mutex_lock(&acpi_device_lock);
1288 if (device->parent)
1289 list_del(&device->node);
1290
1291 list_del(&device->wakeup_list);
1292 mutex_unlock(&acpi_device_lock);
1293
1294 acpi_power_add_remove_device(device, false);
1295 acpi_device_remove_files(device);
1296 if (device->remove)
1297 device->remove(device);
1298
1299 device_del(&device->dev);
1300}
1301
1302static LIST_HEAD(acpi_device_del_list);
1303static DEFINE_MUTEX(acpi_device_del_lock);
1304
1305static void acpi_device_del_work_fn(struct work_struct *work_not_used)
1306{
1307 for (;;) {
1308 struct acpi_device *adev;
1309
1310 mutex_lock(&acpi_device_del_lock);
1311
1312 if (list_empty(&acpi_device_del_list)) {
1313 mutex_unlock(&acpi_device_del_lock);
1314 break;
1315 }
1316 adev = list_first_entry(&acpi_device_del_list,
1317 struct acpi_device, del_list);
1318 list_del(&adev->del_list);
1319
1320 mutex_unlock(&acpi_device_del_lock);
1321
1322 acpi_device_del(adev);
1323 /*
1324 * Drop references to all power resources that might have been
1325 * used by the device.
1326 */
1327 acpi_power_transition(adev, ACPI_STATE_D3_COLD);
1328 put_device(&adev->dev);
1329 }
1330}
1331
1332/**
1333 * acpi_scan_drop_device - Drop an ACPI device object.
1334 * @handle: Handle of an ACPI namespace node, not used.
1335 * @context: Address of the ACPI device object to drop.
1336 *
1337 * This is invoked by acpi_ns_delete_node() during the removal of the ACPI
1338 * namespace node the device object pointed to by @context is attached to.
1339 *
1340 * The unregistration is carried out asynchronously to avoid running
1341 * acpi_device_del() under the ACPICA's namespace mutex and the list is used to
1342 * ensure the correct ordering (the device objects must be unregistered in the
1343 * same order in which the corresponding namespace nodes are deleted).
1344 */
1345static void acpi_scan_drop_device(acpi_handle handle, void *context)
caf5c03f 1346{
d783156e
RW
1347 static DECLARE_WORK(work, acpi_device_del_work_fn);
1348 struct acpi_device *adev = context;
1349
1350 mutex_lock(&acpi_device_del_lock);
1351
1352 /*
1353 * Use the ACPI hotplug workqueue which is ordered, so this work item
1354 * won't run after any hotplug work items submitted subsequently. That
1355 * prevents attempts to register device objects identical to those being
1356 * deleted from happening concurrently (such attempts result from
1357 * hotplug events handled via the ACPI hotplug workqueue). It also will
1358 * run after all of the work items submitted previosuly, which helps
1359 * those work items to ensure that they are not accessing stale device
1360 * objects.
1361 */
1362 if (list_empty(&acpi_device_del_list))
1363 acpi_queue_hotplug_work(&work);
1364
1365 list_add_tail(&adev->del_list, &acpi_device_del_list);
1366 /* Make acpi_ns_validate_handle() return NULL for this handle. */
1367 adev->handle = INVALID_ACPI_HANDLE;
1368
1369 mutex_unlock(&acpi_device_del_lock);
caf5c03f
RW
1370}
1371
78ea4639
RW
1372static int acpi_get_device_data(acpi_handle handle, struct acpi_device **device,
1373 void (*callback)(void *))
caf5c03f
RW
1374{
1375 acpi_status status;
1376
1377 if (!device)
1378 return -EINVAL;
1379
78ea4639
RW
1380 status = acpi_get_data_full(handle, acpi_scan_drop_device,
1381 (void **)device, callback);
caf5c03f
RW
1382 if (ACPI_FAILURE(status) || !*device) {
1383 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No context for object [%p]\n",
1384 handle));
1385 return -ENODEV;
1386 }
1387 return 0;
1388}
78ea4639
RW
1389
1390int acpi_bus_get_device(acpi_handle handle, struct acpi_device **device)
1391{
1392 return acpi_get_device_data(handle, device, NULL);
1393}
6585925b 1394EXPORT_SYMBOL(acpi_bus_get_device);
caf5c03f 1395
78ea4639
RW
1396static void get_acpi_device(void *dev)
1397{
1398 if (dev)
1399 get_device(&((struct acpi_device *)dev)->dev);
1400}
1401
1402struct acpi_device *acpi_bus_get_acpi_device(acpi_handle handle)
1403{
1404 struct acpi_device *adev = NULL;
1405
1406 acpi_get_device_data(handle, &adev, get_acpi_device);
1407 return adev;
1408}
1409
1410void acpi_bus_put_acpi_device(struct acpi_device *adev)
1411{
1412 put_device(&adev->dev);
1413}
1414
cf860be6
RW
1415int acpi_device_add(struct acpi_device *device,
1416 void (*release)(struct device *))
1da177e4 1417{
4be44fcd 1418 int result;
e49bd2dd
ZR
1419 struct acpi_device_bus_id *acpi_device_bus_id, *new_bus_id;
1420 int found = 0;
66b7ed40 1421
d43e167d
RW
1422 if (device->handle) {
1423 acpi_status status;
1424
d783156e 1425 status = acpi_attach_data(device->handle, acpi_scan_drop_device,
d43e167d
RW
1426 device);
1427 if (ACPI_FAILURE(status)) {
1428 acpi_handle_err(device->handle,
1429 "Unable to attach device data\n");
1430 return -ENODEV;
1431 }
1432 }
1433
9e89dde2
ZR
1434 /*
1435 * Linkage
1436 * -------
1437 * Link this device to its parent and siblings.
1438 */
1439 INIT_LIST_HEAD(&device->children);
1440 INIT_LIST_HEAD(&device->node);
9e89dde2 1441 INIT_LIST_HEAD(&device->wakeup_list);
1033f904 1442 INIT_LIST_HEAD(&device->physical_node_list);
d783156e 1443 INIT_LIST_HEAD(&device->del_list);
1033f904 1444 mutex_init(&device->physical_node_lock);
1da177e4 1445
e49bd2dd
ZR
1446 new_bus_id = kzalloc(sizeof(struct acpi_device_bus_id), GFP_KERNEL);
1447 if (!new_bus_id) {
d43e167d
RW
1448 pr_err(PREFIX "Memory allocation error\n");
1449 result = -ENOMEM;
1450 goto err_detach;
1da177e4 1451 }
e49bd2dd 1452
9090589d 1453 mutex_lock(&acpi_device_lock);
e49bd2dd
ZR
1454 /*
1455 * Find suitable bus_id and instance number in acpi_bus_id_list
1456 * If failed, create one and link it into acpi_bus_id_list
1457 */
1458 list_for_each_entry(acpi_device_bus_id, &acpi_bus_id_list, node) {
1131b938
BH
1459 if (!strcmp(acpi_device_bus_id->bus_id,
1460 acpi_device_hid(device))) {
1461 acpi_device_bus_id->instance_no++;
e49bd2dd
ZR
1462 found = 1;
1463 kfree(new_bus_id);
1464 break;
1465 }
1da177e4 1466 }
0c526d96 1467 if (!found) {
e49bd2dd 1468 acpi_device_bus_id = new_bus_id;
1131b938 1469 strcpy(acpi_device_bus_id->bus_id, acpi_device_hid(device));
e49bd2dd
ZR
1470 acpi_device_bus_id->instance_no = 0;
1471 list_add_tail(&acpi_device_bus_id->node, &acpi_bus_id_list);
1da177e4 1472 }
0794469d 1473 dev_set_name(&device->dev, "%s:%02x", acpi_device_bus_id->bus_id, acpi_device_bus_id->instance_no);
1da177e4 1474
33b57150 1475 if (device->parent)
9e89dde2 1476 list_add_tail(&device->node, &device->parent->children);
33b57150 1477
9e89dde2
ZR
1478 if (device->wakeup.flags.valid)
1479 list_add_tail(&device->wakeup_list, &acpi_wakeup_device_list);
9090589d 1480 mutex_unlock(&acpi_device_lock);
1da177e4 1481
1890a97a 1482 if (device->parent)
66b7ed40 1483 device->dev.parent = &device->parent->dev;
1890a97a 1484 device->dev.bus = &acpi_bus_type;
82c7d5ef 1485 device->dev.release = release;
cf860be6 1486 result = device_add(&device->dev);
0c526d96 1487 if (result) {
8b12b922 1488 dev_err(&device->dev, "Error registering device\n");
d43e167d 1489 goto err;
1da177e4 1490 }
1da177e4 1491
e49bd2dd 1492 result = acpi_device_setup_files(device);
0c526d96 1493 if (result)
0794469d
KS
1494 printk(KERN_ERR PREFIX "Error creating sysfs interface for device %s\n",
1495 dev_name(&device->dev));
1da177e4 1496
1da177e4 1497 return 0;
d43e167d
RW
1498
1499 err:
9090589d 1500 mutex_lock(&acpi_device_lock);
33b57150 1501 if (device->parent)
e49bd2dd 1502 list_del(&device->node);
e49bd2dd 1503 list_del(&device->wakeup_list);
9090589d 1504 mutex_unlock(&acpi_device_lock);
d43e167d
RW
1505
1506 err_detach:
d783156e 1507 acpi_detach_data(device->handle, acpi_scan_drop_device);
e49bd2dd 1508 return result;
1da177e4
LT
1509}
1510
8a0662d9
RW
1511struct acpi_device *acpi_get_next_child(struct device *dev,
1512 struct acpi_device *child)
1513{
1514 struct acpi_device *adev = ACPI_COMPANION(dev);
1515 struct list_head *head, *next;
1516
1517 if (!adev)
1518 return NULL;
1519
1520 head = &adev->children;
1521 if (list_empty(head))
1522 return NULL;
1523
1524 if (!child)
1525 return list_first_entry(head, struct acpi_device, node);
1526
1527 next = child->node.next;
1528 return next == head ? NULL : list_entry(next, struct acpi_device, node);
1529}
1530
9e89dde2
ZR
1531/* --------------------------------------------------------------------------
1532 Driver Management
1533 -------------------------------------------------------------------------- */
9e89dde2
ZR
1534/**
1535 * acpi_bus_register_driver - register a driver with the ACPI bus
1536 * @driver: driver being registered
1537 *
1538 * Registers a driver with the ACPI bus. Searches the namespace for all
1539 * devices that match the driver's criteria and binds. Returns zero for
1540 * success or a negative error status for failure.
1541 */
1542int acpi_bus_register_driver(struct acpi_driver *driver)
1da177e4 1543{
1890a97a 1544 int ret;
1da177e4 1545
9e89dde2
ZR
1546 if (acpi_disabled)
1547 return -ENODEV;
1890a97a
PM
1548 driver->drv.name = driver->name;
1549 driver->drv.bus = &acpi_bus_type;
1550 driver->drv.owner = driver->owner;
1da177e4 1551
1890a97a
PM
1552 ret = driver_register(&driver->drv);
1553 return ret;
9e89dde2 1554}
1da177e4 1555
9e89dde2
ZR
1556EXPORT_SYMBOL(acpi_bus_register_driver);
1557
1558/**
b27b14ce 1559 * acpi_bus_unregister_driver - unregisters a driver with the ACPI bus
9e89dde2
ZR
1560 * @driver: driver to unregister
1561 *
1562 * Unregisters a driver with the ACPI bus. Searches the namespace for all
1563 * devices that match the driver's criteria and unbinds.
1564 */
1565void acpi_bus_unregister_driver(struct acpi_driver *driver)
1566{
1890a97a 1567 driver_unregister(&driver->drv);
9e89dde2
ZR
1568}
1569
1570EXPORT_SYMBOL(acpi_bus_unregister_driver);
1571
9e89dde2
ZR
1572/* --------------------------------------------------------------------------
1573 Device Enumeration
1574 -------------------------------------------------------------------------- */
5c478f49
BH
1575static struct acpi_device *acpi_bus_get_parent(acpi_handle handle)
1576{
456de893 1577 struct acpi_device *device = NULL;
5c478f49 1578 acpi_status status;
5c478f49
BH
1579
1580 /*
1581 * Fixed hardware devices do not appear in the namespace and do not
1582 * have handles, but we fabricate acpi_devices for them, so we have
1583 * to deal with them specially.
1584 */
456de893 1585 if (!handle)
5c478f49
BH
1586 return acpi_root;
1587
1588 do {
1589 status = acpi_get_parent(handle, &handle);
5c478f49 1590 if (ACPI_FAILURE(status))
456de893
RW
1591 return status == AE_NULL_ENTRY ? NULL : acpi_root;
1592 } while (acpi_bus_get_device(handle, &device));
1593 return device;
5c478f49
BH
1594}
1595
9e89dde2
ZR
1596acpi_status
1597acpi_bus_get_ejd(acpi_handle handle, acpi_handle *ejd)
1598{
1599 acpi_status status;
1600 acpi_handle tmp;
1601 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
1602 union acpi_object *obj;
1603
1604 status = acpi_get_handle(handle, "_EJD", &tmp);
1605 if (ACPI_FAILURE(status))
1606 return status;
1607
1608 status = acpi_evaluate_object(handle, "_EJD", NULL, &buffer);
1609 if (ACPI_SUCCESS(status)) {
1610 obj = buffer.pointer;
3b5fee59
HM
1611 status = acpi_get_handle(ACPI_ROOT_OBJECT, obj->string.pointer,
1612 ejd);
9e89dde2
ZR
1613 kfree(buffer.pointer);
1614 }
1615 return status;
1616}
1617EXPORT_SYMBOL_GPL(acpi_bus_get_ejd);
1618
e88c9c60
RW
1619static int acpi_bus_extract_wakeup_device_power_package(acpi_handle handle,
1620 struct acpi_device_wakeup *wakeup)
9e89dde2 1621{
b581a7f9
RW
1622 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1623 union acpi_object *package = NULL;
9e89dde2 1624 union acpi_object *element = NULL;
b581a7f9 1625 acpi_status status;
e88c9c60 1626 int err = -ENODATA;
9e89dde2 1627
b581a7f9 1628 if (!wakeup)
e88c9c60 1629 return -EINVAL;
9e89dde2 1630
993cbe59 1631 INIT_LIST_HEAD(&wakeup->resources);
9e89dde2 1632
b581a7f9
RW
1633 /* _PRW */
1634 status = acpi_evaluate_object(handle, "_PRW", NULL, &buffer);
1635 if (ACPI_FAILURE(status)) {
1636 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PRW"));
e88c9c60 1637 return err;
b581a7f9
RW
1638 }
1639
1640 package = (union acpi_object *)buffer.pointer;
1641
e88c9c60 1642 if (!package || package->package.count < 2)
b581a7f9 1643 goto out;
b581a7f9 1644
9e89dde2 1645 element = &(package->package.elements[0]);
e88c9c60 1646 if (!element)
b581a7f9 1647 goto out;
e88c9c60 1648
9e89dde2
ZR
1649 if (element->type == ACPI_TYPE_PACKAGE) {
1650 if ((element->package.count < 2) ||
1651 (element->package.elements[0].type !=
1652 ACPI_TYPE_LOCAL_REFERENCE)
e88c9c60 1653 || (element->package.elements[1].type != ACPI_TYPE_INTEGER))
b581a7f9 1654 goto out;
e88c9c60 1655
b581a7f9 1656 wakeup->gpe_device =
9e89dde2 1657 element->package.elements[0].reference.handle;
b581a7f9 1658 wakeup->gpe_number =
9e89dde2
ZR
1659 (u32) element->package.elements[1].integer.value;
1660 } else if (element->type == ACPI_TYPE_INTEGER) {
b581a7f9
RW
1661 wakeup->gpe_device = NULL;
1662 wakeup->gpe_number = element->integer.value;
1663 } else {
b581a7f9
RW
1664 goto out;
1665 }
9e89dde2
ZR
1666
1667 element = &(package->package.elements[1]);
e88c9c60 1668 if (element->type != ACPI_TYPE_INTEGER)
b581a7f9 1669 goto out;
e88c9c60 1670
b581a7f9 1671 wakeup->sleep_state = element->integer.value;
9e89dde2 1672
e88c9c60
RW
1673 err = acpi_extract_power_resources(package, 2, &wakeup->resources);
1674 if (err)
b581a7f9 1675 goto out;
9e89dde2 1676
0596a52b
RW
1677 if (!list_empty(&wakeup->resources)) {
1678 int sleep_state;
9e89dde2 1679
b5d667eb
RW
1680 err = acpi_power_wakeup_list_init(&wakeup->resources,
1681 &sleep_state);
1682 if (err) {
1683 acpi_handle_warn(handle, "Retrieving current states "
1684 "of wakeup power resources failed\n");
1685 acpi_power_resources_list_free(&wakeup->resources);
1686 goto out;
1687 }
0596a52b
RW
1688 if (sleep_state < wakeup->sleep_state) {
1689 acpi_handle_warn(handle, "Overriding _PRW sleep state "
1690 "(S%d) by S%d from power resources\n",
1691 (int)wakeup->sleep_state, sleep_state);
1692 wakeup->sleep_state = sleep_state;
1693 }
1694 }
9874647b 1695
b581a7f9
RW
1696 out:
1697 kfree(buffer.pointer);
e88c9c60 1698 return err;
1da177e4
LT
1699}
1700
bd9b2f9a 1701static void acpi_wakeup_gpe_init(struct acpi_device *device)
1da177e4 1702{
0519ade7 1703 static const struct acpi_device_id button_device_ids[] = {
29b71a1c 1704 {"PNP0C0C", 0},
b7e38304 1705 {"PNP0C0D", 0},
29b71a1c
TR
1706 {"PNP0C0E", 0},
1707 {"", 0},
1708 };
bd9b2f9a 1709 struct acpi_device_wakeup *wakeup = &device->wakeup;
f517709d
RW
1710 acpi_status status;
1711 acpi_event_status event_status;
1712
bd9b2f9a 1713 wakeup->flags.notifier_present = 0;
f517709d
RW
1714
1715 /* Power button, Lid switch always enable wakeup */
1716 if (!acpi_match_device_ids(device, button_device_ids)) {
bd9b2f9a 1717 wakeup->flags.run_wake = 1;
b7e38304
ZR
1718 if (!acpi_match_device_ids(device, &button_device_ids[1])) {
1719 /* Do not use Lid/sleep button for S5 wakeup */
bd9b2f9a
RW
1720 if (wakeup->sleep_state == ACPI_STATE_S5)
1721 wakeup->sleep_state = ACPI_STATE_S4;
b7e38304 1722 }
bd9b2f9a 1723 acpi_mark_gpe_for_wake(wakeup->gpe_device, wakeup->gpe_number);
f2b56bc8 1724 device_set_wakeup_capable(&device->dev, true);
f517709d
RW
1725 return;
1726 }
1727
bd9b2f9a
RW
1728 acpi_setup_gpe_for_wake(device->handle, wakeup->gpe_device,
1729 wakeup->gpe_number);
1730 status = acpi_get_gpe_status(wakeup->gpe_device, wakeup->gpe_number,
1731 &event_status);
1732 if (ACPI_FAILURE(status))
1733 return;
1734
2f857234 1735 wakeup->flags.run_wake = !!(event_status & ACPI_EVENT_FLAG_HAS_HANDLER);
f517709d
RW
1736}
1737
d57d09a4 1738static void acpi_bus_get_wakeup_device_flags(struct acpi_device *device)
f517709d 1739{
e88c9c60 1740 int err;
29b71a1c 1741
d57d09a4 1742 /* Presence of _PRW indicates wake capable */
952c63e9 1743 if (!acpi_has_method(device->handle, "_PRW"))
d57d09a4
RW
1744 return;
1745
e88c9c60
RW
1746 err = acpi_bus_extract_wakeup_device_power_package(device->handle,
1747 &device->wakeup);
1748 if (err) {
1749 dev_err(&device->dev, "_PRW evaluation error: %d\n", err);
d57d09a4 1750 return;
9e89dde2 1751 }
1da177e4 1752
9e89dde2 1753 device->wakeup.flags.valid = 1;
9b83ccd2 1754 device->wakeup.prepare_count = 0;
bd9b2f9a 1755 acpi_wakeup_gpe_init(device);
729b2bdb
ZY
1756 /* Call _PSW/_DSW object to disable its ability to wake the sleeping
1757 * system for the ACPI device with the _PRW object.
1758 * The _PSW object is depreciated in ACPI 3.0 and is replaced by _DSW.
1759 * So it is necessary to call _DSW object first. Only when it is not
1760 * present will the _PSW object used.
1761 */
e88c9c60
RW
1762 err = acpi_device_sleep_wake(device, 0, 0, 0);
1763 if (err)
77e76609
RW
1764 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1765 "error in _DSW or _PSW evaluation\n"));
1da177e4 1766}
1da177e4 1767
f33ce568
RW
1768static void acpi_bus_init_power_state(struct acpi_device *device, int state)
1769{
1770 struct acpi_device_power_state *ps = &device->power.states[state];
ef85bdbe
RW
1771 char pathname[5] = { '_', 'P', 'R', '0' + state, '\0' };
1772 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
f33ce568 1773 acpi_status status;
bf325f95 1774
f33ce568
RW
1775 INIT_LIST_HEAD(&ps->resources);
1776
ef85bdbe
RW
1777 /* Evaluate "_PRx" to get referenced power resources */
1778 status = acpi_evaluate_object(device->handle, pathname, NULL, &buffer);
1779 if (ACPI_SUCCESS(status)) {
1780 union acpi_object *package = buffer.pointer;
1781
1782 if (buffer.length && package
1783 && package->type == ACPI_TYPE_PACKAGE
1784 && package->package.count) {
e88c9c60
RW
1785 int err = acpi_extract_power_resources(package, 0,
1786 &ps->resources);
1787 if (!err)
ef85bdbe 1788 device->power.flags.power_resources = 1;
f33ce568 1789 }
ef85bdbe 1790 ACPI_FREE(buffer.pointer);
f33ce568
RW
1791 }
1792
1793 /* Evaluate "_PSx" to see if we can do explicit sets */
ef85bdbe 1794 pathname[2] = 'S';
952c63e9 1795 if (acpi_has_method(device->handle, pathname))
f33ce568
RW
1796 ps->flags.explicit_set = 1;
1797
20dacb71
RW
1798 /* State is valid if there are means to put the device into it. */
1799 if (!list_empty(&ps->resources) || ps->flags.explicit_set)
f33ce568 1800 ps->flags.valid = 1;
f33ce568
RW
1801
1802 ps->power = -1; /* Unknown - driver assigned */
1803 ps->latency = -1; /* Unknown - driver assigned */
1804}
1805
d43e167d 1806static void acpi_bus_get_power_flags(struct acpi_device *device)
1da177e4 1807{
8bc5053b 1808 u32 i;
1a365616 1809
d43e167d 1810 /* Presence of _PS0|_PR0 indicates 'power manageable' */
952c63e9
JL
1811 if (!acpi_has_method(device->handle, "_PS0") &&
1812 !acpi_has_method(device->handle, "_PR0"))
1813 return;
1a365616 1814
d43e167d 1815 device->flags.power_manageable = 1;
4be44fcd 1816
9e89dde2
ZR
1817 /*
1818 * Power Management Flags
1819 */
952c63e9 1820 if (acpi_has_method(device->handle, "_PSC"))
9e89dde2 1821 device->power.flags.explicit_get = 1;
f25c0ae2 1822
952c63e9 1823 if (acpi_has_method(device->handle, "_IRC"))
9e89dde2 1824 device->power.flags.inrush_current = 1;
1da177e4 1825
f25c0ae2
RW
1826 if (acpi_has_method(device->handle, "_DSW"))
1827 device->power.flags.dsw_present = 1;
1828
9e89dde2
ZR
1829 /*
1830 * Enumerate supported power management states
1831 */
f33ce568
RW
1832 for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3_HOT; i++)
1833 acpi_bus_init_power_state(device, i);
bf325f95 1834
0b224527 1835 INIT_LIST_HEAD(&device->power.states[ACPI_STATE_D3_COLD].resources);
20dacb71
RW
1836 if (!list_empty(&device->power.states[ACPI_STATE_D3_HOT].resources))
1837 device->power.states[ACPI_STATE_D3_COLD].flags.valid = 1;
1da177e4 1838
20dacb71 1839 /* Set defaults for D0 and D3hot states (always valid) */
9e89dde2
ZR
1840 device->power.states[ACPI_STATE_D0].flags.valid = 1;
1841 device->power.states[ACPI_STATE_D0].power = 100;
20dacb71 1842 device->power.states[ACPI_STATE_D3_HOT].flags.valid = 1;
1399dfcd 1843
1b1f3e16 1844 if (acpi_bus_init_power(device))
b3785492 1845 device->flags.power_manageable = 0;
9e89dde2 1846}
c8f7a62c 1847
d43e167d 1848static void acpi_bus_get_flags(struct acpi_device *device)
1da177e4 1849{
1da177e4 1850 /* Presence of _STA indicates 'dynamic_status' */
952c63e9 1851 if (acpi_has_method(device->handle, "_STA"))
1da177e4
LT
1852 device->flags.dynamic_status = 1;
1853
1da177e4 1854 /* Presence of _RMV indicates 'removable' */
952c63e9 1855 if (acpi_has_method(device->handle, "_RMV"))
1da177e4
LT
1856 device->flags.removable = 1;
1857
1858 /* Presence of _EJD|_EJ0 indicates 'ejectable' */
952c63e9
JL
1859 if (acpi_has_method(device->handle, "_EJD") ||
1860 acpi_has_method(device->handle, "_EJ0"))
1da177e4 1861 device->flags.ejectable = 1;
1da177e4
LT
1862}
1863
c7bcb4e9 1864static void acpi_device_get_busid(struct acpi_device *device)
1da177e4 1865{
4be44fcd
LB
1866 char bus_id[5] = { '?', 0 };
1867 struct acpi_buffer buffer = { sizeof(bus_id), bus_id };
1868 int i = 0;
1da177e4
LT
1869
1870 /*
1871 * Bus ID
1872 * ------
1873 * The device's Bus ID is simply the object name.
1874 * TBD: Shouldn't this value be unique (within the ACPI namespace)?
1875 */
859ac9a4 1876 if (ACPI_IS_ROOT_DEVICE(device)) {
1da177e4 1877 strcpy(device->pnp.bus_id, "ACPI");
859ac9a4
BH
1878 return;
1879 }
1880
1881 switch (device->device_type) {
1da177e4
LT
1882 case ACPI_BUS_TYPE_POWER_BUTTON:
1883 strcpy(device->pnp.bus_id, "PWRF");
1884 break;
1885 case ACPI_BUS_TYPE_SLEEP_BUTTON:
1886 strcpy(device->pnp.bus_id, "SLPF");
1887 break;
1888 default:
66b7ed40 1889 acpi_get_name(device->handle, ACPI_SINGLE_NAME, &buffer);
1da177e4
LT
1890 /* Clean up trailing underscores (if any) */
1891 for (i = 3; i > 1; i--) {
1892 if (bus_id[i] == '_')
1893 bus_id[i] = '\0';
1894 else
1895 break;
1896 }
1897 strcpy(device->pnp.bus_id, bus_id);
1898 break;
1899 }
1900}
1901
ebf4df8d
JL
1902/*
1903 * acpi_ata_match - see if an acpi object is an ATA device
1904 *
1905 * If an acpi object has one of the ACPI ATA methods defined,
1906 * then we can safely call it an ATA device.
1907 */
1908bool acpi_ata_match(acpi_handle handle)
1909{
1910 return acpi_has_method(handle, "_GTF") ||
1911 acpi_has_method(handle, "_GTM") ||
1912 acpi_has_method(handle, "_STM") ||
1913 acpi_has_method(handle, "_SDD");
1914}
1915
54735266 1916/*
d4e1a692 1917 * acpi_bay_match - see if an acpi object is an ejectable driver bay
54735266
ZR
1918 *
1919 * If an acpi object is ejectable and has one of the ACPI ATA methods defined,
1920 * then we can safely call it an ejectable drive bay
1921 */
ebf4df8d 1922bool acpi_bay_match(acpi_handle handle)
d4e1a692 1923{
54735266
ZR
1924 acpi_handle phandle;
1925
952c63e9 1926 if (!acpi_has_method(handle, "_EJ0"))
ebf4df8d
JL
1927 return false;
1928 if (acpi_ata_match(handle))
1929 return true;
1930 if (ACPI_FAILURE(acpi_get_parent(handle, &phandle)))
1931 return false;
54735266 1932
ebf4df8d 1933 return acpi_ata_match(phandle);
54735266
ZR
1934}
1935
b43109fa 1936bool acpi_device_is_battery(struct acpi_device *adev)
1e2380cd 1937{
b43109fa 1938 struct acpi_hardware_id *hwid;
1e2380cd 1939
b43109fa
RW
1940 list_for_each_entry(hwid, &adev->pnp.ids, list)
1941 if (!strcmp("PNP0C0A", hwid->id))
1942 return true;
1e2380cd 1943
b43109fa 1944 return false;
1e2380cd
RW
1945}
1946
b43109fa 1947static bool is_ejectable_bay(struct acpi_device *adev)
1e2380cd 1948{
b43109fa
RW
1949 acpi_handle handle = adev->handle;
1950
1951 if (acpi_has_method(handle, "_EJ0") && acpi_device_is_battery(adev))
1e2380cd
RW
1952 return true;
1953
1954 return acpi_bay_match(handle);
1955}
1956
3620f2f2 1957/*
d4e1a692 1958 * acpi_dock_match - see if an acpi object has a _DCK method
3620f2f2 1959 */
ebf4df8d 1960bool acpi_dock_match(acpi_handle handle)
3620f2f2 1961{
ebf4df8d 1962 return acpi_has_method(handle, "_DCK");
3620f2f2
FS
1963}
1964
adc8bb8e
HG
1965static acpi_status
1966acpi_backlight_cap_match(acpi_handle handle, u32 level, void *context,
1967 void **return_value)
1968{
1969 long *cap = context;
1970
1971 if (acpi_has_method(handle, "_BCM") &&
1972 acpi_has_method(handle, "_BCL")) {
1973 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found generic backlight "
1974 "support\n"));
1975 *cap |= ACPI_VIDEO_BACKLIGHT;
1976 if (!acpi_has_method(handle, "_BQC"))
1977 printk(KERN_WARNING FW_BUG PREFIX "No _BQC method, "
1978 "cannot determine initial brightness\n");
1979 /* We have backlight support, no need to scan further */
1980 return AE_CTRL_TERMINATE;
1981 }
1982 return 0;
1983}
1984
1985/* Returns true if the ACPI object is a video device which can be
1986 * handled by video.ko.
1987 * The device will get a Linux specific CID added in scan.c to
1988 * identify the device as an ACPI graphics device
1989 * Be aware that the graphics device may not be physically present
1990 * Use acpi_video_get_capabilities() to detect general ACPI video
1991 * capabilities of present cards
1992 */
1993long acpi_is_video_device(acpi_handle handle)
1994{
1995 long video_caps = 0;
1996
1997 /* Is this device able to support video switching ? */
1998 if (acpi_has_method(handle, "_DOD") || acpi_has_method(handle, "_DOS"))
1999 video_caps |= ACPI_VIDEO_OUTPUT_SWITCHING;
2000
2001 /* Is this device able to retrieve a video ROM ? */
2002 if (acpi_has_method(handle, "_ROM"))
2003 video_caps |= ACPI_VIDEO_ROM_AVAILABLE;
2004
2005 /* Is this device able to configure which video head to be POSTed ? */
2006 if (acpi_has_method(handle, "_VPO") &&
2007 acpi_has_method(handle, "_GPD") &&
2008 acpi_has_method(handle, "_SPD"))
2009 video_caps |= ACPI_VIDEO_DEVICE_POSTING;
2010
2011 /* Only check for backlight functionality if one of the above hit. */
2012 if (video_caps)
2013 acpi_walk_namespace(ACPI_TYPE_DEVICE, handle,
2014 ACPI_UINT32_MAX, acpi_backlight_cap_match, NULL,
2015 &video_caps, NULL);
2016
2017 return video_caps;
2018}
2019EXPORT_SYMBOL(acpi_is_video_device);
2020
620e112c 2021const char *acpi_device_hid(struct acpi_device *device)
15b8dd53 2022{
7f47fa6c 2023 struct acpi_hardware_id *hid;
15b8dd53 2024
2b2ae7c7
TR
2025 if (list_empty(&device->pnp.ids))
2026 return dummy_hid;
2027
7f47fa6c
BH
2028 hid = list_first_entry(&device->pnp.ids, struct acpi_hardware_id, list);
2029 return hid->id;
2030}
2031EXPORT_SYMBOL(acpi_device_hid);
15b8dd53 2032
d4e1a692 2033static void acpi_add_id(struct acpi_device_pnp *pnp, const char *dev_id)
7f47fa6c
BH
2034{
2035 struct acpi_hardware_id *id;
15b8dd53 2036
7f47fa6c
BH
2037 id = kmalloc(sizeof(*id), GFP_KERNEL);
2038 if (!id)
2039 return;
15b8dd53 2040
581de59e 2041 id->id = kstrdup(dev_id, GFP_KERNEL);
7f47fa6c
BH
2042 if (!id->id) {
2043 kfree(id);
2044 return;
15b8dd53
BM
2045 }
2046
d4e1a692
TK
2047 list_add_tail(&id->list, &pnp->ids);
2048 pnp->type.hardware_id = 1;
15b8dd53
BM
2049}
2050
222e82ac
DW
2051/*
2052 * Old IBM workstations have a DSDT bug wherein the SMBus object
2053 * lacks the SMBUS01 HID and the methods do not have the necessary "_"
2054 * prefix. Work around this.
2055 */
ebf4df8d 2056static bool acpi_ibm_smbus_match(acpi_handle handle)
222e82ac 2057{
ebf4df8d
JL
2058 char node_name[ACPI_PATH_SEGMENT_LENGTH];
2059 struct acpi_buffer path = { sizeof(node_name), node_name };
222e82ac
DW
2060
2061 if (!dmi_name_in_vendors("IBM"))
ebf4df8d 2062 return false;
222e82ac
DW
2063
2064 /* Look for SMBS object */
ebf4df8d
JL
2065 if (ACPI_FAILURE(acpi_get_name(handle, ACPI_SINGLE_NAME, &path)) ||
2066 strcmp("SMBS", path.pointer))
2067 return false;
222e82ac
DW
2068
2069 /* Does it have the necessary (but misnamed) methods? */
952c63e9
JL
2070 if (acpi_has_method(handle, "SBI") &&
2071 acpi_has_method(handle, "SBR") &&
2072 acpi_has_method(handle, "SBW"))
ebf4df8d
JL
2073 return true;
2074
2075 return false;
222e82ac
DW
2076}
2077
ae3caa80
JL
2078static bool acpi_object_is_system_bus(acpi_handle handle)
2079{
2080 acpi_handle tmp;
2081
2082 if (ACPI_SUCCESS(acpi_get_handle(NULL, "\\_SB", &tmp)) &&
2083 tmp == handle)
2084 return true;
2085 if (ACPI_SUCCESS(acpi_get_handle(NULL, "\\_TZ", &tmp)) &&
2086 tmp == handle)
2087 return true;
2088
2089 return false;
2090}
2091
c0af4175
TK
2092static void acpi_set_pnp_ids(acpi_handle handle, struct acpi_device_pnp *pnp,
2093 int device_type)
1da177e4 2094{
4be44fcd 2095 acpi_status status;
57f3674f 2096 struct acpi_device_info *info;
78e25fef 2097 struct acpi_pnp_device_id_list *cid_list;
7f47fa6c 2098 int i;
1da177e4 2099
c0af4175 2100 switch (device_type) {
1da177e4 2101 case ACPI_BUS_TYPE_DEVICE:
c0af4175
TK
2102 if (handle == ACPI_ROOT_OBJECT) {
2103 acpi_add_id(pnp, ACPI_SYSTEM_HID);
859ac9a4
BH
2104 break;
2105 }
2106
c0af4175 2107 status = acpi_get_object_info(handle, &info);
1da177e4 2108 if (ACPI_FAILURE(status)) {
c0af4175
TK
2109 pr_err(PREFIX "%s: Error reading device info\n",
2110 __func__);
1da177e4
LT
2111 return;
2112 }
2113
549e6845 2114 if (info->valid & ACPI_VALID_HID) {
c0af4175 2115 acpi_add_id(pnp, info->hardware_id.string);
549e6845
RW
2116 pnp->type.platform_id = 1;
2117 }
57f3674f 2118 if (info->valid & ACPI_VALID_CID) {
15b8dd53 2119 cid_list = &info->compatible_id_list;
57f3674f 2120 for (i = 0; i < cid_list->count; i++)
c0af4175 2121 acpi_add_id(pnp, cid_list->ids[i].string);
57f3674f 2122 }
1da177e4 2123 if (info->valid & ACPI_VALID_ADR) {
c0af4175
TK
2124 pnp->bus_address = info->address;
2125 pnp->type.bus_address = 1;
1da177e4 2126 }
ccf78040 2127 if (info->valid & ACPI_VALID_UID)
c0af4175 2128 pnp->unique_id = kstrdup(info->unique_id.string,
ccf78040 2129 GFP_KERNEL);
26095a01
SS
2130 if (info->valid & ACPI_VALID_CLS)
2131 acpi_add_id(pnp, info->class_code.string);
ae843332 2132
a83893ae
BH
2133 kfree(info);
2134
57f3674f
BH
2135 /*
2136 * Some devices don't reliably have _HIDs & _CIDs, so add
2137 * synthetic HIDs to make sure drivers can find them.
2138 */
c0af4175
TK
2139 if (acpi_is_video_device(handle))
2140 acpi_add_id(pnp, ACPI_VIDEO_HID);
ebf4df8d 2141 else if (acpi_bay_match(handle))
c0af4175 2142 acpi_add_id(pnp, ACPI_BAY_HID);
ebf4df8d 2143 else if (acpi_dock_match(handle))
c0af4175 2144 acpi_add_id(pnp, ACPI_DOCK_HID);
ebf4df8d 2145 else if (acpi_ibm_smbus_match(handle))
c0af4175 2146 acpi_add_id(pnp, ACPI_SMBUS_IBM_HID);
ae3caa80
JL
2147 else if (list_empty(&pnp->ids) &&
2148 acpi_object_is_system_bus(handle)) {
2149 /* \_SB, \_TZ, LNXSYBUS */
2150 acpi_add_id(pnp, ACPI_BUS_HID);
c0af4175
TK
2151 strcpy(pnp->device_name, ACPI_BUS_DEVICE_NAME);
2152 strcpy(pnp->device_class, ACPI_BUS_CLASS);
b7b30de5 2153 }
54735266 2154
1da177e4
LT
2155 break;
2156 case ACPI_BUS_TYPE_POWER:
c0af4175 2157 acpi_add_id(pnp, ACPI_POWER_HID);
1da177e4
LT
2158 break;
2159 case ACPI_BUS_TYPE_PROCESSOR:
c0af4175 2160 acpi_add_id(pnp, ACPI_PROCESSOR_OBJECT_HID);
1da177e4 2161 break;
1da177e4 2162 case ACPI_BUS_TYPE_THERMAL:
c0af4175 2163 acpi_add_id(pnp, ACPI_THERMAL_HID);
1da177e4
LT
2164 break;
2165 case ACPI_BUS_TYPE_POWER_BUTTON:
c0af4175 2166 acpi_add_id(pnp, ACPI_BUTTON_HID_POWERF);
1da177e4
LT
2167 break;
2168 case ACPI_BUS_TYPE_SLEEP_BUTTON:
c0af4175 2169 acpi_add_id(pnp, ACPI_BUTTON_HID_SLEEPF);
1da177e4
LT
2170 break;
2171 }
1da177e4
LT
2172}
2173
c0af4175
TK
2174void acpi_free_pnp_ids(struct acpi_device_pnp *pnp)
2175{
2176 struct acpi_hardware_id *id, *tmp;
2177
2178 list_for_each_entry_safe(id, tmp, &pnp->ids, list) {
2179 kfree(id->id);
2180 kfree(id);
2181 }
2182 kfree(pnp->unique_id);
2183}
2184
d0562674
SS
2185static void acpi_init_coherency(struct acpi_device *adev)
2186{
2187 unsigned long long cca = 0;
2188 acpi_status status;
2189 struct acpi_device *parent = adev->parent;
2190
2191 if (parent && parent->flags.cca_seen) {
2192 /*
2193 * From ACPI spec, OSPM will ignore _CCA if an ancestor
2194 * already saw one.
2195 */
2196 adev->flags.cca_seen = 1;
2197 cca = parent->flags.coherent_dma;
2198 } else {
2199 status = acpi_evaluate_integer(adev->handle, "_CCA",
2200 NULL, &cca);
2201 if (ACPI_SUCCESS(status))
2202 adev->flags.cca_seen = 1;
2203 else if (!IS_ENABLED(CONFIG_ACPI_CCA_REQUIRED))
2204 /*
2205 * If architecture does not specify that _CCA is
2206 * required for DMA-able devices (e.g. x86),
2207 * we default to _CCA=1.
2208 */
2209 cca = 1;
2210 else
2211 acpi_handle_debug(adev->handle,
2212 "ACPI device is missing _CCA.\n");
2213 }
2214
2215 adev->flags.coherent_dma = cca;
2216}
2217
82c7d5ef
RW
2218void acpi_init_device_object(struct acpi_device *device, acpi_handle handle,
2219 int type, unsigned long long sta)
1da177e4 2220{
d43e167d
RW
2221 INIT_LIST_HEAD(&device->pnp.ids);
2222 device->device_type = type;
2223 device->handle = handle;
2224 device->parent = acpi_bus_get_parent(handle);
8a0662d9 2225 device->fwnode.type = FWNODE_ACPI;
25db115b 2226 acpi_set_device_status(device, sta);
d43e167d 2227 acpi_device_get_busid(device);
c0af4175 2228 acpi_set_pnp_ids(handle, &device->pnp, type);
ffdcd955 2229 acpi_init_properties(device);
d43e167d 2230 acpi_bus_get_flags(device);
2c0d4fe0 2231 device->flags.match_driver = false;
202317a5
RW
2232 device->flags.initialized = true;
2233 device->flags.visited = false;
cf860be6
RW
2234 device_initialize(&device->dev);
2235 dev_set_uevent_suppress(&device->dev, true);
d0562674 2236 acpi_init_coherency(device);
cf860be6 2237}
bc3b0772 2238
cf860be6
RW
2239void acpi_device_add_finalize(struct acpi_device *device)
2240{
2241 dev_set_uevent_suppress(&device->dev, false);
2242 kobject_uevent(&device->dev.kobj, KOBJ_ADD);
1da177e4
LT
2243}
2244
5c478f49
BH
2245static int acpi_add_single_object(struct acpi_device **child,
2246 acpi_handle handle, int type,
2c0d4fe0 2247 unsigned long long sta)
1da177e4 2248{
77c24888
BH
2249 int result;
2250 struct acpi_device *device;
29aaefa6 2251 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1da177e4 2252
36bcbec7 2253 device = kzalloc(sizeof(struct acpi_device), GFP_KERNEL);
1da177e4 2254 if (!device) {
6468463a 2255 printk(KERN_ERR PREFIX "Memory allocation error\n");
d550d98d 2256 return -ENOMEM;
1da177e4 2257 }
1da177e4 2258
d43e167d
RW
2259 acpi_init_device_object(device, handle, type, sta);
2260 acpi_bus_get_power_flags(device);
d57d09a4 2261 acpi_bus_get_wakeup_device_flags(device);
1da177e4 2262
cf860be6 2263 result = acpi_device_add(device, acpi_device_release);
d43e167d 2264 if (result) {
718fb0de 2265 acpi_device_release(&device->dev);
d43e167d
RW
2266 return result;
2267 }
1da177e4 2268
d43e167d 2269 acpi_power_add_remove_device(device, true);
cf860be6 2270 acpi_device_add_finalize(device);
d43e167d
RW
2271 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
2272 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Added %s [%s] parent %s\n",
2273 dev_name(&device->dev), (char *) buffer.pointer,
2274 device->parent ? dev_name(&device->parent->dev) : "(null)"));
2275 kfree(buffer.pointer);
2276 *child = device;
2277 return 0;
bf325f95
RW
2278}
2279
778cbc1d
BH
2280static int acpi_bus_type_and_status(acpi_handle handle, int *type,
2281 unsigned long long *sta)
1da177e4 2282{
778cbc1d
BH
2283 acpi_status status;
2284 acpi_object_type acpi_type;
1da177e4 2285
778cbc1d 2286 status = acpi_get_type(handle, &acpi_type);
51a85faf 2287 if (ACPI_FAILURE(status))
778cbc1d 2288 return -ENODEV;
4be44fcd 2289
778cbc1d 2290 switch (acpi_type) {
51a85faf
BH
2291 case ACPI_TYPE_ANY: /* for ACPI_ROOT_OBJECT */
2292 case ACPI_TYPE_DEVICE:
778cbc1d
BH
2293 *type = ACPI_BUS_TYPE_DEVICE;
2294 status = acpi_bus_get_status_handle(handle, sta);
2295 if (ACPI_FAILURE(status))
2296 return -ENODEV;
51a85faf
BH
2297 break;
2298 case ACPI_TYPE_PROCESSOR:
778cbc1d
BH
2299 *type = ACPI_BUS_TYPE_PROCESSOR;
2300 status = acpi_bus_get_status_handle(handle, sta);
2301 if (ACPI_FAILURE(status))
2302 return -ENODEV;
51a85faf
BH
2303 break;
2304 case ACPI_TYPE_THERMAL:
778cbc1d
BH
2305 *type = ACPI_BUS_TYPE_THERMAL;
2306 *sta = ACPI_STA_DEFAULT;
51a85faf
BH
2307 break;
2308 case ACPI_TYPE_POWER:
778cbc1d
BH
2309 *type = ACPI_BUS_TYPE_POWER;
2310 *sta = ACPI_STA_DEFAULT;
51a85faf
BH
2311 break;
2312 default:
778cbc1d 2313 return -ENODEV;
51a85faf 2314 }
1da177e4 2315
778cbc1d
BH
2316 return 0;
2317}
2318
202317a5
RW
2319bool acpi_device_is_present(struct acpi_device *adev)
2320{
2321 if (adev->status.present || adev->status.functional)
2322 return true;
2323
2324 adev->flags.initialized = false;
2325 return false;
2326}
2327
4b59cc1f
RW
2328static bool acpi_scan_handler_matching(struct acpi_scan_handler *handler,
2329 char *idstr,
2330 const struct acpi_device_id **matchid)
2331{
2332 const struct acpi_device_id *devid;
2333
aca0a4eb
RW
2334 if (handler->match)
2335 return handler->match(idstr, matchid);
2336
4b59cc1f
RW
2337 for (devid = handler->ids; devid->id[0]; devid++)
2338 if (!strcmp((char *)devid->id, idstr)) {
2339 if (matchid)
2340 *matchid = devid;
2341
2342 return true;
2343 }
2344
2345 return false;
2346}
2347
6b772e8f
TK
2348static struct acpi_scan_handler *acpi_scan_match_handler(char *idstr,
2349 const struct acpi_device_id **matchid)
2350{
2351 struct acpi_scan_handler *handler;
2352
2353 list_for_each_entry(handler, &acpi_scan_handlers_list, list_node)
2354 if (acpi_scan_handler_matching(handler, idstr, matchid))
2355 return handler;
2356
2357 return NULL;
2358}
2359
3f8055c3
RW
2360void acpi_scan_hotplug_enabled(struct acpi_hotplug_profile *hotplug, bool val)
2361{
3f8055c3
RW
2362 if (!!hotplug->enabled == !!val)
2363 return;
2364
2365 mutex_lock(&acpi_scan_lock);
2366
2367 hotplug->enabled = val;
3f8055c3
RW
2368
2369 mutex_unlock(&acpi_scan_lock);
2370}
2371
3c2cc7ff 2372static void acpi_scan_init_hotplug(struct acpi_device *adev)
a33ec399 2373{
6b772e8f 2374 struct acpi_hardware_id *hwid;
a33ec399 2375
b43109fa 2376 if (acpi_dock_match(adev->handle) || is_ejectable_bay(adev)) {
1e2380cd
RW
2377 acpi_dock_add(adev);
2378 return;
2379 }
3c2cc7ff
RW
2380 list_for_each_entry(hwid, &adev->pnp.ids, list) {
2381 struct acpi_scan_handler *handler;
a33ec399 2382
6b772e8f 2383 handler = acpi_scan_match_handler(hwid->id, NULL);
1a699476
RW
2384 if (handler) {
2385 adev->flags.hotplug_notify = true;
2386 break;
2387 }
3c2cc7ff 2388 }
a33ec399
RW
2389}
2390
40e7fcb1
LT
2391static void acpi_device_dep_initialize(struct acpi_device *adev)
2392{
2393 struct acpi_dep_data *dep;
2394 struct acpi_handle_list dep_devices;
2395 acpi_status status;
2396 int i;
2397
2398 if (!acpi_has_method(adev->handle, "_DEP"))
2399 return;
2400
2401 status = acpi_evaluate_reference(adev->handle, "_DEP", NULL,
2402 &dep_devices);
2403 if (ACPI_FAILURE(status)) {
80167a24 2404 dev_dbg(&adev->dev, "Failed to evaluate _DEP.\n");
40e7fcb1
LT
2405 return;
2406 }
2407
2408 for (i = 0; i < dep_devices.count; i++) {
2409 struct acpi_device_info *info;
2410 int skip;
2411
2412 status = acpi_get_object_info(dep_devices.handles[i], &info);
2413 if (ACPI_FAILURE(status)) {
80167a24 2414 dev_dbg(&adev->dev, "Error reading _DEP device info\n");
40e7fcb1
LT
2415 continue;
2416 }
2417
2418 /*
2419 * Skip the dependency of Windows System Power
2420 * Management Controller
2421 */
2422 skip = info->valid & ACPI_VALID_HID &&
2423 !strcmp(info->hardware_id.string, "INT3396");
2424
2425 kfree(info);
2426
2427 if (skip)
2428 continue;
2429
2430 dep = kzalloc(sizeof(struct acpi_dep_data), GFP_KERNEL);
2431 if (!dep)
2432 return;
2433
2434 dep->master = dep_devices.handles[i];
2435 dep->slave = adev->handle;
2436 adev->dep_unmet++;
2437
2438 mutex_lock(&acpi_dep_list_lock);
2439 list_add_tail(&dep->node , &acpi_dep_list);
2440 mutex_unlock(&acpi_dep_list_lock);
2441 }
2442}
2443
e3863094
RW
2444static acpi_status acpi_bus_check_add(acpi_handle handle, u32 lvl_not_used,
2445 void *not_used, void **return_value)
778cbc1d 2446{
805d410f 2447 struct acpi_device *device = NULL;
778cbc1d
BH
2448 int type;
2449 unsigned long long sta;
2450 int result;
2451
4002bf38
RW
2452 acpi_bus_get_device(handle, &device);
2453 if (device)
2454 goto out;
2455
778cbc1d
BH
2456 result = acpi_bus_type_and_status(handle, &type, &sta);
2457 if (result)
2458 return AE_OK;
2459
82c7d5ef
RW
2460 if (type == ACPI_BUS_TYPE_POWER) {
2461 acpi_add_power_resource(handle);
2462 return AE_OK;
2463 }
2464
2c0d4fe0 2465 acpi_add_single_object(&device, handle, type, sta);
e3b87f8a 2466 if (!device)
51a85faf 2467 return AE_CTRL_DEPTH;
1da177e4 2468
3c2cc7ff 2469 acpi_scan_init_hotplug(device);
40e7fcb1 2470 acpi_device_dep_initialize(device);
3c2cc7ff 2471
4002bf38 2472 out:
51a85faf
BH
2473 if (!*return_value)
2474 *return_value = device;
805d410f 2475
51a85faf
BH
2476 return AE_OK;
2477}
3fb02738 2478
48459340
ZR
2479static int acpi_check_spi_i2c_slave(struct acpi_resource *ares, void *data)
2480{
2481 bool *is_spi_i2c_slave_p = data;
2482
2483 if (ares->type != ACPI_RESOURCE_TYPE_SERIAL_BUS)
2484 return 1;
2485
2486 /*
2487 * devices that are connected to UART still need to be enumerated to
2488 * platform bus
2489 */
2490 if (ares->data.common_serial_bus.type != ACPI_RESOURCE_SERIAL_TYPE_UART)
2491 *is_spi_i2c_slave_p = true;
2492
2493 /* no need to do more checking */
2494 return -1;
2495}
2496
2497static void acpi_default_enumeration(struct acpi_device *device)
2498{
2499 struct list_head resource_list;
2500 bool is_spi_i2c_slave = false;
2501
48459340
ZR
2502 /*
2503 * Do not enemerate SPI/I2C slaves as they will be enuerated by their
2504 * respective parents.
2505 */
2506 INIT_LIST_HEAD(&resource_list);
2507 acpi_dev_get_resources(device, &resource_list, acpi_check_spi_i2c_slave,
2508 &is_spi_i2c_slave);
2509 acpi_dev_free_resource_list(&resource_list);
2510 if (!is_spi_i2c_slave)
2511 acpi_create_platform_device(device);
2512}
2513
7d284352 2514static const struct acpi_device_id generic_device_ids[] = {
ee892094 2515 {ACPI_DT_NAMESPACE_HID, },
7d284352
RW
2516 {"", },
2517};
2518
2519static int acpi_generic_device_attach(struct acpi_device *adev,
2520 const struct acpi_device_id *not_used)
2521{
2522 /*
ee892094
RW
2523 * Since ACPI_DT_NAMESPACE_HID is the only ID handled here, the test
2524 * below can be unconditional.
7d284352
RW
2525 */
2526 if (adev->data.of_compatible)
2527 acpi_default_enumeration(adev);
2528
2529 return 1;
2530}
2531
2532static struct acpi_scan_handler generic_device_handler = {
2533 .ids = generic_device_ids,
2534 .attach = acpi_generic_device_attach,
2535};
2536
c5698074 2537static int acpi_scan_attach_handler(struct acpi_device *device)
ca589f94 2538{
c5698074
RW
2539 struct acpi_hardware_id *hwid;
2540 int ret = 0;
ca589f94 2541
c5698074 2542 list_for_each_entry(hwid, &device->pnp.ids, list) {
87b85b3c 2543 const struct acpi_device_id *devid;
c5698074 2544 struct acpi_scan_handler *handler;
ca589f94 2545
c5698074
RW
2546 handler = acpi_scan_match_handler(hwid->id, &devid);
2547 if (handler) {
d34afa9d
RW
2548 if (!handler->attach) {
2549 device->pnp.type.platform_id = 0;
2550 continue;
2551 }
9cb32acf 2552 device->handler = handler;
87b85b3c 2553 ret = handler->attach(device, devid);
9cb32acf 2554 if (ret > 0)
c5698074 2555 break;
9cb32acf
RW
2556
2557 device->handler = NULL;
2558 if (ret < 0)
c5698074 2559 break;
ca589f94
RW
2560 }
2561 }
48459340 2562
ca589f94
RW
2563 return ret;
2564}
2565
2c22e652 2566static void acpi_bus_attach(struct acpi_device *device)
51a85faf 2567{
2c22e652 2568 struct acpi_device *child;
1e2380cd 2569 acpi_handle ejd;
ca589f94 2570 int ret;
3fb02738 2571
1e2380cd
RW
2572 if (ACPI_SUCCESS(acpi_bus_get_ejd(device->handle, &ejd)))
2573 register_dock_dependent_device(device, ejd);
2574
2c22e652 2575 acpi_bus_get_status(device);
202317a5 2576 /* Skip devices that are not present. */
2c22e652
RW
2577 if (!acpi_device_is_present(device)) {
2578 device->flags.visited = false;
1b1f3e16 2579 device->flags.power_manageable = 0;
2c22e652
RW
2580 return;
2581 }
3a391a39 2582 if (device->handler)
2c22e652 2583 goto ok;
3a391a39 2584
202317a5 2585 if (!device->flags.initialized) {
1b1f3e16
RW
2586 device->flags.power_manageable =
2587 device->power.states[ACPI_STATE_D0].flags.valid;
2588 if (acpi_bus_init_power(device))
2589 device->flags.power_manageable = 0;
2590
202317a5
RW
2591 device->flags.initialized = true;
2592 }
2c22e652 2593 device->flags.visited = false;
ca589f94 2594 ret = acpi_scan_attach_handler(device);
6931007c 2595 if (ret < 0)
2c22e652 2596 return;
6931007c
RW
2597
2598 device->flags.match_driver = true;
2c22e652
RW
2599 if (!ret) {
2600 ret = device_attach(&device->dev);
2601 if (ret < 0)
2602 return;
7d284352
RW
2603
2604 if (!ret && device->pnp.type.platform_id)
2605 acpi_default_enumeration(device);
2c22e652 2606 }
202317a5 2607 device->flags.visited = true;
202317a5 2608
2c22e652
RW
2609 ok:
2610 list_for_each_entry(child, &device->children, node)
2611 acpi_bus_attach(child);
8ab17fc9
RW
2612
2613 if (device->handler && device->handler->hotplug.notify_online)
2614 device->handler->hotplug.notify_online(device);
1da177e4 2615}
1da177e4 2616
40e7fcb1
LT
2617void acpi_walk_dep_device_list(acpi_handle handle)
2618{
2619 struct acpi_dep_data *dep, *tmp;
2620 struct acpi_device *adev;
2621
2622 mutex_lock(&acpi_dep_list_lock);
2623 list_for_each_entry_safe(dep, tmp, &acpi_dep_list, node) {
2624 if (dep->master == handle) {
2625 acpi_bus_get_device(dep->slave, &adev);
2626 if (!adev)
2627 continue;
2628
2629 adev->dep_unmet--;
2630 if (!adev->dep_unmet)
2631 acpi_bus_attach(adev);
2632 list_del(&dep->node);
2633 kfree(dep);
2634 }
2635 }
2636 mutex_unlock(&acpi_dep_list_lock);
2637}
2638EXPORT_SYMBOL_GPL(acpi_walk_dep_device_list);
2639
636458de 2640/**
b8bd759a 2641 * acpi_bus_scan - Add ACPI device node objects in a given namespace scope.
636458de 2642 * @handle: Root of the namespace scope to scan.
7779688f 2643 *
636458de
RW
2644 * Scan a given ACPI tree (probably recently hot-plugged) and create and add
2645 * found devices.
7779688f 2646 *
636458de
RW
2647 * If no devices were found, -ENODEV is returned, but it does not mean that
2648 * there has been a real error. There just have been no suitable ACPI objects
2649 * in the table trunk from which the kernel could create a device and add an
2650 * appropriate driver.
3757b948
RW
2651 *
2652 * Must be called under acpi_scan_lock.
7779688f 2653 */
b8bd759a 2654int acpi_bus_scan(acpi_handle handle)
3fb02738 2655{
b8bd759a 2656 void *device = NULL;
3fb02738 2657
b8bd759a
RW
2658 if (ACPI_SUCCESS(acpi_bus_check_add(handle, 0, NULL, &device)))
2659 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
2660 acpi_bus_check_add, NULL, NULL, &device);
3fb02738 2661
2c22e652
RW
2662 if (device) {
2663 acpi_bus_attach(device);
2664 return 0;
05404d8f 2665 }
2c22e652 2666 return -ENODEV;
3fb02738 2667}
2c22e652 2668EXPORT_SYMBOL(acpi_bus_scan);
1da177e4 2669
3757b948 2670/**
2c22e652
RW
2671 * acpi_bus_trim - Detach scan handlers and drivers from ACPI device objects.
2672 * @adev: Root of the ACPI namespace scope to walk.
3757b948
RW
2673 *
2674 * Must be called under acpi_scan_lock.
2675 */
2c22e652 2676void acpi_bus_trim(struct acpi_device *adev)
1da177e4 2677{
2c22e652
RW
2678 struct acpi_scan_handler *handler = adev->handler;
2679 struct acpi_device *child;
2680
2681 list_for_each_entry_reverse(child, &adev->children, node)
2682 acpi_bus_trim(child);
2683
a951c773 2684 adev->flags.match_driver = false;
2c22e652
RW
2685 if (handler) {
2686 if (handler->detach)
2687 handler->detach(adev);
2688
2689 adev->handler = NULL;
2690 } else {
2691 device_release_driver(&adev->dev);
2692 }
05404d8f 2693 /*
2c22e652
RW
2694 * Most likely, the device is going away, so put it into D3cold before
2695 * that.
05404d8f 2696 */
2c22e652
RW
2697 acpi_device_set_power(adev, ACPI_STATE_D3_COLD);
2698 adev->flags.initialized = false;
2699 adev->flags.visited = false;
1da177e4 2700}
ceaba663
KA
2701EXPORT_SYMBOL_GPL(acpi_bus_trim);
2702
e8b945c9 2703static int acpi_bus_scan_fixed(void)
1da177e4 2704{
4be44fcd 2705 int result = 0;
c4168bff 2706
1da177e4
LT
2707 /*
2708 * Enumerate all fixed-feature devices.
2709 */
2c0d4fe0
RW
2710 if (!(acpi_gbl_FADT.flags & ACPI_FADT_POWER_BUTTON)) {
2711 struct acpi_device *device = NULL;
2712
5c478f49 2713 result = acpi_add_single_object(&device, NULL,
c4168bff 2714 ACPI_BUS_TYPE_POWER_BUTTON,
2c0d4fe0
RW
2715 ACPI_STA_DEFAULT);
2716 if (result)
2717 return result;
2718
88346167 2719 device->flags.match_driver = true;
2c0d4fe0
RW
2720 result = device_attach(&device->dev);
2721 if (result < 0)
2722 return result;
2723
c10d7a13 2724 device_init_wakeup(&device->dev, true);
3fb02738 2725 }
1da177e4 2726
2c0d4fe0
RW
2727 if (!(acpi_gbl_FADT.flags & ACPI_FADT_SLEEP_BUTTON)) {
2728 struct acpi_device *device = NULL;
2729
5c478f49 2730 result = acpi_add_single_object(&device, NULL,
c4168bff 2731 ACPI_BUS_TYPE_SLEEP_BUTTON,
2c0d4fe0
RW
2732 ACPI_STA_DEFAULT);
2733 if (result)
2734 return result;
2735
88346167 2736 device->flags.match_driver = true;
2c0d4fe0 2737 result = device_attach(&device->dev);
3fb02738 2738 }
1da177e4 2739
2c0d4fe0 2740 return result < 0 ? result : 0;
1da177e4
LT
2741}
2742
e747f274 2743int __init acpi_scan_init(void)
1da177e4
LT
2744{
2745 int result;
1da177e4 2746
5b327265
PM
2747 result = bus_register(&acpi_bus_type);
2748 if (result) {
2749 /* We don't want to quit even if we failed to add suspend/resume */
2750 printk(KERN_ERR PREFIX "Could not register bus type\n");
2751 }
2752
92ef2a25 2753 acpi_pci_root_init();
4daeaf68 2754 acpi_pci_link_init();
ac212b69 2755 acpi_processor_init();
f58b082a 2756 acpi_lpss_init();
92082a88 2757 acpi_apd_init();
2fa97feb 2758 acpi_cmos_rtc_init();
737f1a9f 2759 acpi_container_init();
0a347644 2760 acpi_memory_hotplug_init();
eec15edb 2761 acpi_pnp_init();
3230bbfc 2762 acpi_int340x_thermal_init();
97d9a9e9 2763
7d284352
RW
2764 acpi_scan_add_handler(&generic_device_handler);
2765
3757b948 2766 mutex_lock(&acpi_scan_lock);
1da177e4
LT
2767 /*
2768 * Enumerate devices in the ACPI namespace.
2769 */
0cd6ac52
RW
2770 result = acpi_bus_scan(ACPI_ROOT_OBJECT);
2771 if (result)
3757b948 2772 goto out;
1da177e4 2773
0cd6ac52 2774 result = acpi_bus_get_device(ACPI_ROOT_OBJECT, &acpi_root);
1da177e4 2775 if (result)
3757b948 2776 goto out;
1da177e4 2777
2650ef42
AL
2778 /* Fixed feature devices do not exist on HW-reduced platform */
2779 if (!acpi_gbl_reduced_hardware) {
2780 result = acpi_bus_scan_fixed();
2781 if (result) {
2782 acpi_detach_data(acpi_root->handle,
2783 acpi_scan_drop_device);
2784 acpi_device_del(acpi_root);
2785 put_device(&acpi_root->dev);
2786 goto out;
2787 }
b8bd759a 2788 }
1da177e4 2789
b8bd759a 2790 acpi_update_all_gpes();
3757b948
RW
2791
2792 out:
2793 mutex_unlock(&acpi_scan_lock);
2794 return result;
1da177e4 2795}