2 * scan.c - support for transforming the ACPI namespace into individual objects
5 #include <linux/module.h>
6 #include <linux/init.h>
7 #include <linux/slab.h>
8 #include <linux/kernel.h>
9 #include <linux/acpi.h>
10 #include <linux/signal.h>
11 #include <linux/kthread.h>
12 #include <linux/dmi.h>
13 #include <linux/nls.h>
15 #include <asm/pgtable.h>
19 #define _COMPONENT ACPI_BUS_COMPONENT
20 ACPI_MODULE_NAME("scan");
21 extern struct acpi_device
*acpi_root
;
23 #define ACPI_BUS_CLASS "system_bus"
24 #define ACPI_BUS_HID "LNXSYBUS"
25 #define ACPI_BUS_DEVICE_NAME "System Bus"
27 #define ACPI_IS_ROOT_DEVICE(device) (!(device)->parent)
29 #define INVALID_ACPI_HANDLE ((acpi_handle)empty_zero_page)
32 * If set, devices will be hot-removed even if they cannot be put offline
33 * gracefully (from the kernel's standpoint).
35 bool acpi_force_hot_remove
;
37 static const char *dummy_hid
= "device";
39 static LIST_HEAD(acpi_dep_list
);
40 static DEFINE_MUTEX(acpi_dep_list_lock
);
41 static LIST_HEAD(acpi_bus_id_list
);
42 static DEFINE_MUTEX(acpi_scan_lock
);
43 static LIST_HEAD(acpi_scan_handlers_list
);
44 DEFINE_MUTEX(acpi_device_lock
);
45 LIST_HEAD(acpi_wakeup_device_list
);
46 static DEFINE_MUTEX(acpi_hp_context_lock
);
48 struct acpi_dep_data
{
49 struct list_head node
;
54 struct acpi_device_bus_id
{
56 unsigned int instance_no
;
57 struct list_head node
;
60 void acpi_scan_lock_acquire(void)
62 mutex_lock(&acpi_scan_lock
);
64 EXPORT_SYMBOL_GPL(acpi_scan_lock_acquire
);
66 void acpi_scan_lock_release(void)
68 mutex_unlock(&acpi_scan_lock
);
70 EXPORT_SYMBOL_GPL(acpi_scan_lock_release
);
72 void acpi_lock_hp_context(void)
74 mutex_lock(&acpi_hp_context_lock
);
77 void acpi_unlock_hp_context(void)
79 mutex_unlock(&acpi_hp_context_lock
);
82 void 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
))
87 acpi_lock_hp_context();
90 acpi_set_hp_context(adev
, hp
);
91 acpi_unlock_hp_context();
93 EXPORT_SYMBOL_GPL(acpi_initialize_hp_context
);
95 int acpi_scan_add_handler(struct acpi_scan_handler
*handler
)
100 list_add_tail(&handler
->list_node
, &acpi_scan_handlers_list
);
104 int acpi_scan_add_handler_with_hotplug(struct acpi_scan_handler
*handler
,
105 const char *hotplug_profile_name
)
109 error
= acpi_scan_add_handler(handler
);
113 acpi_sysfs_add_hotplug_profile(&handler
->hotplug
, hotplug_profile_name
);
118 * Creates hid/cid(s) string needed for modalias and uevent
119 * e.g. on a device with hid:IBM0001 and cid:ACPI0001 you get:
120 * char *modalias: "acpi:IBM0001:ACPI0001"
121 * Return: 0: no _HID and no _CID
122 * -EINVAL: output error
123 * -ENOMEM: output is truncated
125 static int create_modalias(struct acpi_device
*acpi_dev
, char *modalias
,
130 struct acpi_hardware_id
*id
;
132 if (list_empty(&acpi_dev
->pnp
.ids
))
136 * If the device has PRP0001 we expose DT compatible modalias
137 * instead in form of of:NnameTCcompatible.
139 if (acpi_dev
->data
.of_compatible
) {
140 struct acpi_buffer buf
= { ACPI_ALLOCATE_BUFFER
};
141 const union acpi_object
*of_compatible
, *obj
;
145 acpi_get_name(acpi_dev
->handle
, ACPI_SINGLE_NAME
, &buf
);
146 /* DT strings are all in lower case */
147 for (c
= buf
.pointer
; *c
!= '\0'; c
++)
150 len
= snprintf(modalias
, size
, "of:N%sT", (char *)buf
.pointer
);
151 ACPI_FREE(buf
.pointer
);
153 of_compatible
= acpi_dev
->data
.of_compatible
;
154 if (of_compatible
->type
== ACPI_TYPE_PACKAGE
) {
155 nval
= of_compatible
->package
.count
;
156 obj
= of_compatible
->package
.elements
;
157 } else { /* Must be ACPI_TYPE_STRING. */
161 for (i
= 0; i
< nval
; i
++, obj
++) {
162 count
= snprintf(&modalias
[len
], size
, "C%s",
163 obj
->string
.pointer
);
173 len
= snprintf(modalias
, size
, "acpi:");
176 list_for_each_entry(id
, &acpi_dev
->pnp
.ids
, list
) {
177 count
= snprintf(&modalias
[len
], size
, "%s:", id
->id
);
187 modalias
[len
] = '\0';
192 * acpi_companion_match() - Can we match via ACPI companion device
193 * @dev: Device in question
195 * Check if the given device has an ACPI companion and if that companion has
196 * a valid list of PNP IDs, and if the device is the first (primary) physical
197 * device associated with it.
199 * If multiple physical devices are attached to a single ACPI companion, we need
200 * to be careful. The usage scenario for this kind of relationship is that all
201 * of the physical devices in question use resources provided by the ACPI
202 * companion. A typical case is an MFD device where all the sub-devices share
203 * the parent's ACPI companion. In such cases we can only allow the primary
204 * (first) physical device to be matched with the help of the companion's PNP
207 * Additional physical devices sharing the ACPI companion can still use
208 * resources available from it but they will be matched normally using functions
209 * provided by their bus types (and analogously for their modalias).
211 static bool acpi_companion_match(const struct device
*dev
)
213 struct acpi_device
*adev
;
216 adev
= ACPI_COMPANION(dev
);
220 if (list_empty(&adev
->pnp
.ids
))
223 mutex_lock(&adev
->physical_node_lock
);
224 if (list_empty(&adev
->physical_node_list
)) {
227 const struct acpi_device_physical_node
*node
;
229 node
= list_first_entry(&adev
->physical_node_list
,
230 struct acpi_device_physical_node
, node
);
231 ret
= node
->dev
== dev
;
233 mutex_unlock(&adev
->physical_node_lock
);
239 * Creates uevent modalias field for ACPI enumerated devices.
240 * Because the other buses does not support ACPI HIDs & CIDs.
241 * e.g. for a device with hid:IBM0001 and cid:ACPI0001 you get:
242 * "acpi:IBM0001:ACPI0001"
244 int acpi_device_uevent_modalias(struct device
*dev
, struct kobj_uevent_env
*env
)
248 if (!acpi_companion_match(dev
))
251 if (add_uevent_var(env
, "MODALIAS="))
253 len
= create_modalias(ACPI_COMPANION(dev
), &env
->buf
[env
->buflen
- 1],
254 sizeof(env
->buf
) - env
->buflen
);
260 EXPORT_SYMBOL_GPL(acpi_device_uevent_modalias
);
263 * Creates modalias sysfs attribute for ACPI enumerated devices.
264 * Because the other buses does not support ACPI HIDs & CIDs.
265 * e.g. for a device with hid:IBM0001 and cid:ACPI0001 you get:
266 * "acpi:IBM0001:ACPI0001"
268 int acpi_device_modalias(struct device
*dev
, char *buf
, int size
)
272 if (!acpi_companion_match(dev
))
275 len
= create_modalias(ACPI_COMPANION(dev
), buf
, size
-1);
281 EXPORT_SYMBOL_GPL(acpi_device_modalias
);
284 acpi_device_modalias_show(struct device
*dev
, struct device_attribute
*attr
, char *buf
) {
285 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
288 len
= create_modalias(acpi_dev
, buf
, 1024);
294 static DEVICE_ATTR(modalias
, 0444, acpi_device_modalias_show
, NULL
);
296 bool acpi_scan_is_offline(struct acpi_device
*adev
, bool uevent
)
298 struct acpi_device_physical_node
*pn
;
301 mutex_lock(&adev
->physical_node_lock
);
303 list_for_each_entry(pn
, &adev
->physical_node_list
, node
)
304 if (device_supports_offline(pn
->dev
) && !pn
->dev
->offline
) {
306 kobject_uevent(&pn
->dev
->kobj
, KOBJ_CHANGE
);
312 mutex_unlock(&adev
->physical_node_lock
);
316 static acpi_status
acpi_bus_offline(acpi_handle handle
, u32 lvl
, void *data
,
319 struct acpi_device
*device
= NULL
;
320 struct acpi_device_physical_node
*pn
;
321 bool second_pass
= (bool)data
;
322 acpi_status status
= AE_OK
;
324 if (acpi_bus_get_device(handle
, &device
))
327 if (device
->handler
&& !device
->handler
->hotplug
.enabled
) {
328 *ret_p
= &device
->dev
;
332 mutex_lock(&device
->physical_node_lock
);
334 list_for_each_entry(pn
, &device
->physical_node_list
, node
) {
338 /* Skip devices offlined by the first pass. */
342 pn
->put_online
= false;
344 ret
= device_offline(pn
->dev
);
345 if (acpi_force_hot_remove
)
349 pn
->put_online
= !ret
;
359 mutex_unlock(&device
->physical_node_lock
);
364 static acpi_status
acpi_bus_online(acpi_handle handle
, u32 lvl
, void *data
,
367 struct acpi_device
*device
= NULL
;
368 struct acpi_device_physical_node
*pn
;
370 if (acpi_bus_get_device(handle
, &device
))
373 mutex_lock(&device
->physical_node_lock
);
375 list_for_each_entry(pn
, &device
->physical_node_list
, node
)
376 if (pn
->put_online
) {
377 device_online(pn
->dev
);
378 pn
->put_online
= false;
381 mutex_unlock(&device
->physical_node_lock
);
386 static int acpi_scan_try_to_offline(struct acpi_device
*device
)
388 acpi_handle handle
= device
->handle
;
389 struct device
*errdev
= NULL
;
393 * Carry out two passes here and ignore errors in the first pass,
394 * because if the devices in question are memory blocks and
395 * CONFIG_MEMCG is set, one of the blocks may hold data structures
396 * that the other blocks depend on, but it is not known in advance which
399 * If the first pass is successful, the second one isn't needed, though.
401 status
= acpi_walk_namespace(ACPI_TYPE_ANY
, handle
, ACPI_UINT32_MAX
,
402 NULL
, acpi_bus_offline
, (void *)false,
404 if (status
== AE_SUPPORT
) {
405 dev_warn(errdev
, "Offline disabled.\n");
406 acpi_walk_namespace(ACPI_TYPE_ANY
, handle
, ACPI_UINT32_MAX
,
407 acpi_bus_online
, NULL
, NULL
, NULL
);
410 acpi_bus_offline(handle
, 0, (void *)false, (void **)&errdev
);
413 acpi_walk_namespace(ACPI_TYPE_ANY
, handle
, ACPI_UINT32_MAX
,
414 NULL
, acpi_bus_offline
, (void *)true,
416 if (!errdev
|| acpi_force_hot_remove
)
417 acpi_bus_offline(handle
, 0, (void *)true,
420 if (errdev
&& !acpi_force_hot_remove
) {
421 dev_warn(errdev
, "Offline failed.\n");
422 acpi_bus_online(handle
, 0, NULL
, NULL
);
423 acpi_walk_namespace(ACPI_TYPE_ANY
, handle
,
424 ACPI_UINT32_MAX
, acpi_bus_online
,
432 static int acpi_scan_hot_remove(struct acpi_device
*device
)
434 acpi_handle handle
= device
->handle
;
435 unsigned long long sta
;
438 if (device
->handler
&& device
->handler
->hotplug
.demand_offline
439 && !acpi_force_hot_remove
) {
440 if (!acpi_scan_is_offline(device
, true))
443 int error
= acpi_scan_try_to_offline(device
);
448 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
449 "Hot-removing device %s...\n", dev_name(&device
->dev
)));
451 acpi_bus_trim(device
);
453 acpi_evaluate_lck(handle
, 0);
457 status
= acpi_evaluate_ej0(handle
);
458 if (status
== AE_NOT_FOUND
)
460 else if (ACPI_FAILURE(status
))
464 * Verify if eject was indeed successful. If not, log an error
465 * message. No need to call _OST since _EJ0 call was made OK.
467 status
= acpi_evaluate_integer(handle
, "_STA", NULL
, &sta
);
468 if (ACPI_FAILURE(status
)) {
469 acpi_handle_warn(handle
,
470 "Status check after eject failed (0x%x)\n", status
);
471 } else if (sta
& ACPI_STA_DEVICE_ENABLED
) {
472 acpi_handle_warn(handle
,
473 "Eject incomplete - status 0x%llx\n", sta
);
479 static int acpi_scan_device_not_present(struct acpi_device
*adev
)
481 if (!acpi_device_enumerated(adev
)) {
482 dev_warn(&adev
->dev
, "Still not present\n");
489 static int acpi_scan_device_check(struct acpi_device
*adev
)
493 acpi_bus_get_status(adev
);
494 if (adev
->status
.present
|| adev
->status
.functional
) {
496 * This function is only called for device objects for which
497 * matching scan handlers exist. The only situation in which
498 * the scan handler is not attached to this device object yet
499 * is when the device has just appeared (either it wasn't
500 * present at all before or it was removed and then added
504 dev_warn(&adev
->dev
, "Already enumerated\n");
507 error
= acpi_bus_scan(adev
->handle
);
509 dev_warn(&adev
->dev
, "Namespace scan failure\n");
512 if (!adev
->handler
) {
513 dev_warn(&adev
->dev
, "Enumeration failure\n");
517 error
= acpi_scan_device_not_present(adev
);
522 static int acpi_scan_bus_check(struct acpi_device
*adev
)
524 struct acpi_scan_handler
*handler
= adev
->handler
;
525 struct acpi_device
*child
;
528 acpi_bus_get_status(adev
);
529 if (!(adev
->status
.present
|| adev
->status
.functional
)) {
530 acpi_scan_device_not_present(adev
);
533 if (handler
&& handler
->hotplug
.scan_dependent
)
534 return handler
->hotplug
.scan_dependent(adev
);
536 error
= acpi_bus_scan(adev
->handle
);
538 dev_warn(&adev
->dev
, "Namespace scan failure\n");
541 list_for_each_entry(child
, &adev
->children
, node
) {
542 error
= acpi_scan_bus_check(child
);
549 static int acpi_generic_hotplug_event(struct acpi_device
*adev
, u32 type
)
552 case ACPI_NOTIFY_BUS_CHECK
:
553 return acpi_scan_bus_check(adev
);
554 case ACPI_NOTIFY_DEVICE_CHECK
:
555 return acpi_scan_device_check(adev
);
556 case ACPI_NOTIFY_EJECT_REQUEST
:
557 case ACPI_OST_EC_OSPM_EJECT
:
558 if (adev
->handler
&& !adev
->handler
->hotplug
.enabled
) {
559 dev_info(&adev
->dev
, "Eject disabled\n");
562 acpi_evaluate_ost(adev
->handle
, ACPI_NOTIFY_EJECT_REQUEST
,
563 ACPI_OST_SC_EJECT_IN_PROGRESS
, NULL
);
564 return acpi_scan_hot_remove(adev
);
569 void acpi_device_hotplug(struct acpi_device
*adev
, u32 src
)
571 u32 ost_code
= ACPI_OST_SC_NON_SPECIFIC_FAILURE
;
574 lock_device_hotplug();
575 mutex_lock(&acpi_scan_lock
);
578 * The device object's ACPI handle cannot become invalid as long as we
579 * are holding acpi_scan_lock, but it might have become invalid before
580 * that lock was acquired.
582 if (adev
->handle
== INVALID_ACPI_HANDLE
)
585 if (adev
->flags
.is_dock_station
) {
586 error
= dock_notify(adev
, src
);
587 } else if (adev
->flags
.hotplug_notify
) {
588 error
= acpi_generic_hotplug_event(adev
, src
);
589 if (error
== -EPERM
) {
590 ost_code
= ACPI_OST_SC_EJECT_NOT_SUPPORTED
;
594 int (*notify
)(struct acpi_device
*, u32
);
596 acpi_lock_hp_context();
597 notify
= adev
->hp
? adev
->hp
->notify
: NULL
;
598 acpi_unlock_hp_context();
600 * There may be additional notify handlers for device objects
601 * without the .event() callback, so ignore them here.
604 error
= notify(adev
, src
);
609 ost_code
= ACPI_OST_SC_SUCCESS
;
612 acpi_evaluate_ost(adev
->handle
, src
, ost_code
, NULL
);
615 acpi_bus_put_acpi_device(adev
);
616 mutex_unlock(&acpi_scan_lock
);
617 unlock_device_hotplug();
620 static ssize_t
real_power_state_show(struct device
*dev
,
621 struct device_attribute
*attr
, char *buf
)
623 struct acpi_device
*adev
= to_acpi_device(dev
);
627 ret
= acpi_device_get_power(adev
, &state
);
631 return sprintf(buf
, "%s\n", acpi_power_state_string(state
));
634 static DEVICE_ATTR(real_power_state
, 0444, real_power_state_show
, NULL
);
636 static ssize_t
power_state_show(struct device
*dev
,
637 struct device_attribute
*attr
, char *buf
)
639 struct acpi_device
*adev
= to_acpi_device(dev
);
641 return sprintf(buf
, "%s\n", acpi_power_state_string(adev
->power
.state
));
644 static DEVICE_ATTR(power_state
, 0444, power_state_show
, NULL
);
647 acpi_eject_store(struct device
*d
, struct device_attribute
*attr
,
648 const char *buf
, size_t count
)
650 struct acpi_device
*acpi_device
= to_acpi_device(d
);
651 acpi_object_type not_used
;
654 if (!count
|| buf
[0] != '1')
657 if ((!acpi_device
->handler
|| !acpi_device
->handler
->hotplug
.enabled
)
658 && !acpi_device
->driver
)
661 status
= acpi_get_type(acpi_device
->handle
, ¬_used
);
662 if (ACPI_FAILURE(status
) || !acpi_device
->flags
.ejectable
)
665 get_device(&acpi_device
->dev
);
666 status
= acpi_hotplug_schedule(acpi_device
, ACPI_OST_EC_OSPM_EJECT
);
667 if (ACPI_SUCCESS(status
))
670 put_device(&acpi_device
->dev
);
671 acpi_evaluate_ost(acpi_device
->handle
, ACPI_OST_EC_OSPM_EJECT
,
672 ACPI_OST_SC_NON_SPECIFIC_FAILURE
, NULL
);
673 return status
== AE_NO_MEMORY
? -ENOMEM
: -EAGAIN
;
676 static DEVICE_ATTR(eject
, 0200, NULL
, acpi_eject_store
);
679 acpi_device_hid_show(struct device
*dev
, struct device_attribute
*attr
, char *buf
) {
680 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
682 return sprintf(buf
, "%s\n", acpi_device_hid(acpi_dev
));
684 static DEVICE_ATTR(hid
, 0444, acpi_device_hid_show
, NULL
);
686 static ssize_t
acpi_device_uid_show(struct device
*dev
,
687 struct device_attribute
*attr
, char *buf
)
689 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
691 return sprintf(buf
, "%s\n", acpi_dev
->pnp
.unique_id
);
693 static DEVICE_ATTR(uid
, 0444, acpi_device_uid_show
, NULL
);
695 static ssize_t
acpi_device_adr_show(struct device
*dev
,
696 struct device_attribute
*attr
, char *buf
)
698 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
700 return sprintf(buf
, "0x%08x\n",
701 (unsigned int)(acpi_dev
->pnp
.bus_address
));
703 static DEVICE_ATTR(adr
, 0444, acpi_device_adr_show
, NULL
);
706 acpi_device_path_show(struct device
*dev
, struct device_attribute
*attr
, char *buf
) {
707 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
708 struct acpi_buffer path
= {ACPI_ALLOCATE_BUFFER
, NULL
};
711 result
= acpi_get_name(acpi_dev
->handle
, ACPI_FULL_PATHNAME
, &path
);
715 result
= sprintf(buf
, "%s\n", (char*)path
.pointer
);
720 static DEVICE_ATTR(path
, 0444, acpi_device_path_show
, NULL
);
722 /* sysfs file that shows description text from the ACPI _STR method */
723 static ssize_t
description_show(struct device
*dev
,
724 struct device_attribute
*attr
,
726 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
729 if (acpi_dev
->pnp
.str_obj
== NULL
)
733 * The _STR object contains a Unicode identifier for a device.
734 * We need to convert to utf-8 so it can be displayed.
736 result
= utf16s_to_utf8s(
737 (wchar_t *)acpi_dev
->pnp
.str_obj
->buffer
.pointer
,
738 acpi_dev
->pnp
.str_obj
->buffer
.length
,
739 UTF16_LITTLE_ENDIAN
, buf
,
742 buf
[result
++] = '\n';
746 static DEVICE_ATTR(description
, 0444, description_show
, NULL
);
749 acpi_device_sun_show(struct device
*dev
, struct device_attribute
*attr
,
751 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
753 unsigned long long sun
;
755 status
= acpi_evaluate_integer(acpi_dev
->handle
, "_SUN", NULL
, &sun
);
756 if (ACPI_FAILURE(status
))
759 return sprintf(buf
, "%llu\n", sun
);
761 static DEVICE_ATTR(sun
, 0444, acpi_device_sun_show
, NULL
);
763 static ssize_t
status_show(struct device
*dev
, struct device_attribute
*attr
,
765 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
767 unsigned long long sta
;
769 status
= acpi_evaluate_integer(acpi_dev
->handle
, "_STA", NULL
, &sta
);
770 if (ACPI_FAILURE(status
))
773 return sprintf(buf
, "%llu\n", sta
);
775 static DEVICE_ATTR_RO(status
);
777 static int acpi_device_setup_files(struct acpi_device
*dev
)
779 struct acpi_buffer buffer
= {ACPI_ALLOCATE_BUFFER
, NULL
};
784 * Devices gotten from FADT don't have a "path" attribute
787 result
= device_create_file(&dev
->dev
, &dev_attr_path
);
792 if (!list_empty(&dev
->pnp
.ids
)) {
793 result
= device_create_file(&dev
->dev
, &dev_attr_hid
);
797 result
= device_create_file(&dev
->dev
, &dev_attr_modalias
);
803 * If device has _STR, 'description' file is created
805 if (acpi_has_method(dev
->handle
, "_STR")) {
806 status
= acpi_evaluate_object(dev
->handle
, "_STR",
808 if (ACPI_FAILURE(status
))
809 buffer
.pointer
= NULL
;
810 dev
->pnp
.str_obj
= buffer
.pointer
;
811 result
= device_create_file(&dev
->dev
, &dev_attr_description
);
816 if (dev
->pnp
.type
.bus_address
)
817 result
= device_create_file(&dev
->dev
, &dev_attr_adr
);
818 if (dev
->pnp
.unique_id
)
819 result
= device_create_file(&dev
->dev
, &dev_attr_uid
);
821 if (acpi_has_method(dev
->handle
, "_SUN")) {
822 result
= device_create_file(&dev
->dev
, &dev_attr_sun
);
827 if (acpi_has_method(dev
->handle
, "_STA")) {
828 result
= device_create_file(&dev
->dev
, &dev_attr_status
);
834 * If device has _EJ0, 'eject' file is created that is used to trigger
835 * hot-removal function from userland.
837 if (acpi_has_method(dev
->handle
, "_EJ0")) {
838 result
= device_create_file(&dev
->dev
, &dev_attr_eject
);
843 if (dev
->flags
.power_manageable
) {
844 result
= device_create_file(&dev
->dev
, &dev_attr_power_state
);
848 if (dev
->power
.flags
.power_resources
)
849 result
= device_create_file(&dev
->dev
,
850 &dev_attr_real_power_state
);
857 static void acpi_device_remove_files(struct acpi_device
*dev
)
859 if (dev
->flags
.power_manageable
) {
860 device_remove_file(&dev
->dev
, &dev_attr_power_state
);
861 if (dev
->power
.flags
.power_resources
)
862 device_remove_file(&dev
->dev
,
863 &dev_attr_real_power_state
);
867 * If device has _STR, remove 'description' file
869 if (acpi_has_method(dev
->handle
, "_STR")) {
870 kfree(dev
->pnp
.str_obj
);
871 device_remove_file(&dev
->dev
, &dev_attr_description
);
874 * If device has _EJ0, remove 'eject' file.
876 if (acpi_has_method(dev
->handle
, "_EJ0"))
877 device_remove_file(&dev
->dev
, &dev_attr_eject
);
879 if (acpi_has_method(dev
->handle
, "_SUN"))
880 device_remove_file(&dev
->dev
, &dev_attr_sun
);
882 if (dev
->pnp
.unique_id
)
883 device_remove_file(&dev
->dev
, &dev_attr_uid
);
884 if (dev
->pnp
.type
.bus_address
)
885 device_remove_file(&dev
->dev
, &dev_attr_adr
);
886 device_remove_file(&dev
->dev
, &dev_attr_modalias
);
887 device_remove_file(&dev
->dev
, &dev_attr_hid
);
888 if (acpi_has_method(dev
->handle
, "_STA"))
889 device_remove_file(&dev
->dev
, &dev_attr_status
);
891 device_remove_file(&dev
->dev
, &dev_attr_path
);
893 /* --------------------------------------------------------------------------
895 -------------------------------------------------------------------------- */
897 static const struct acpi_device_id
*__acpi_match_device(
898 struct acpi_device
*device
, const struct acpi_device_id
*ids
)
900 const struct acpi_device_id
*id
;
901 struct acpi_hardware_id
*hwid
;
904 * If the device is not present, it is unnecessary to load device
907 if (!device
->status
.present
)
910 for (id
= ids
; id
->id
[0]; id
++)
911 list_for_each_entry(hwid
, &device
->pnp
.ids
, list
)
912 if (!strcmp((char *) id
->id
, hwid
->id
))
919 * acpi_match_device - Match a struct device against a given list of ACPI IDs
920 * @ids: Array of struct acpi_device_id object to match against.
921 * @dev: The device structure to match.
923 * Check if @dev has a valid ACPI handle and if there is a struct acpi_device
924 * object for that handle and use that object to match against a given list of
927 * Return a pointer to the first matching ID on success or %NULL on failure.
929 const struct acpi_device_id
*acpi_match_device(const struct acpi_device_id
*ids
,
930 const struct device
*dev
)
932 struct acpi_device
*adev
;
933 acpi_handle handle
= ACPI_HANDLE(dev
);
935 if (!ids
|| !handle
|| acpi_bus_get_device(handle
, &adev
))
938 if (!acpi_companion_match(dev
))
941 return __acpi_match_device(adev
, ids
);
943 EXPORT_SYMBOL_GPL(acpi_match_device
);
945 int acpi_match_device_ids(struct acpi_device
*device
,
946 const struct acpi_device_id
*ids
)
948 return __acpi_match_device(device
, ids
) ? 0 : -ENOENT
;
950 EXPORT_SYMBOL(acpi_match_device_ids
);
952 /* Performs match against special "PRP0001" shoehorn ACPI ID */
953 static bool acpi_of_driver_match_device(struct device
*dev
,
954 const struct device_driver
*drv
)
956 const union acpi_object
*of_compatible
, *obj
;
957 struct acpi_device
*adev
;
960 adev
= ACPI_COMPANION(dev
);
964 of_compatible
= adev
->data
.of_compatible
;
965 if (!drv
->of_match_table
|| !of_compatible
)
968 if (of_compatible
->type
== ACPI_TYPE_PACKAGE
) {
969 nval
= of_compatible
->package
.count
;
970 obj
= of_compatible
->package
.elements
;
971 } else { /* Must be ACPI_TYPE_STRING. */
975 /* Now we can look for the driver DT compatible strings */
976 for (i
= 0; i
< nval
; i
++, obj
++) {
977 const struct of_device_id
*id
;
979 for (id
= drv
->of_match_table
; id
->compatible
[0]; id
++)
980 if (!strcasecmp(obj
->string
.pointer
, id
->compatible
))
987 bool acpi_driver_match_device(struct device
*dev
,
988 const struct device_driver
*drv
)
990 if (!drv
->acpi_match_table
)
991 return acpi_of_driver_match_device(dev
, drv
);
993 return !!acpi_match_device(drv
->acpi_match_table
, dev
);
995 EXPORT_SYMBOL_GPL(acpi_driver_match_device
);
997 static void acpi_free_power_resources_lists(struct acpi_device
*device
)
1001 if (device
->wakeup
.flags
.valid
)
1002 acpi_power_resources_list_free(&device
->wakeup
.resources
);
1004 if (!device
->flags
.power_manageable
)
1007 for (i
= ACPI_STATE_D0
; i
<= ACPI_STATE_D3_HOT
; i
++) {
1008 struct acpi_device_power_state
*ps
= &device
->power
.states
[i
];
1009 acpi_power_resources_list_free(&ps
->resources
);
1013 static void acpi_device_release(struct device
*dev
)
1015 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
1017 acpi_free_properties(acpi_dev
);
1018 acpi_free_pnp_ids(&acpi_dev
->pnp
);
1019 acpi_free_power_resources_lists(acpi_dev
);
1023 static int acpi_bus_match(struct device
*dev
, struct device_driver
*drv
)
1025 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
1026 struct acpi_driver
*acpi_drv
= to_acpi_driver(drv
);
1028 return acpi_dev
->flags
.match_driver
1029 && !acpi_match_device_ids(acpi_dev
, acpi_drv
->ids
);
1032 static int acpi_device_uevent(struct device
*dev
, struct kobj_uevent_env
*env
)
1034 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
1037 if (list_empty(&acpi_dev
->pnp
.ids
))
1040 if (add_uevent_var(env
, "MODALIAS="))
1042 len
= create_modalias(acpi_dev
, &env
->buf
[env
->buflen
- 1],
1043 sizeof(env
->buf
) - env
->buflen
);
1050 static void acpi_device_notify(acpi_handle handle
, u32 event
, void *data
)
1052 struct acpi_device
*device
= data
;
1054 device
->driver
->ops
.notify(device
, event
);
1057 static void acpi_device_notify_fixed(void *data
)
1059 struct acpi_device
*device
= data
;
1061 /* Fixed hardware devices have no handles */
1062 acpi_device_notify(NULL
, ACPI_FIXED_HARDWARE_EVENT
, device
);
1065 static acpi_status
acpi_device_fixed_event(void *data
)
1067 acpi_os_execute(OSL_NOTIFY_HANDLER
, acpi_device_notify_fixed
, data
);
1071 static int acpi_device_install_notify_handler(struct acpi_device
*device
)
1075 if (device
->device_type
== ACPI_BUS_TYPE_POWER_BUTTON
)
1077 acpi_install_fixed_event_handler(ACPI_EVENT_POWER_BUTTON
,
1078 acpi_device_fixed_event
,
1080 else if (device
->device_type
== ACPI_BUS_TYPE_SLEEP_BUTTON
)
1082 acpi_install_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON
,
1083 acpi_device_fixed_event
,
1086 status
= acpi_install_notify_handler(device
->handle
,
1091 if (ACPI_FAILURE(status
))
1096 static void acpi_device_remove_notify_handler(struct acpi_device
*device
)
1098 if (device
->device_type
== ACPI_BUS_TYPE_POWER_BUTTON
)
1099 acpi_remove_fixed_event_handler(ACPI_EVENT_POWER_BUTTON
,
1100 acpi_device_fixed_event
);
1101 else if (device
->device_type
== ACPI_BUS_TYPE_SLEEP_BUTTON
)
1102 acpi_remove_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON
,
1103 acpi_device_fixed_event
);
1105 acpi_remove_notify_handler(device
->handle
, ACPI_DEVICE_NOTIFY
,
1106 acpi_device_notify
);
1109 static int acpi_device_probe(struct device
*dev
)
1111 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
1112 struct acpi_driver
*acpi_drv
= to_acpi_driver(dev
->driver
);
1115 if (acpi_dev
->handler
&& !acpi_is_pnp_device(acpi_dev
))
1118 if (!acpi_drv
->ops
.add
)
1121 ret
= acpi_drv
->ops
.add(acpi_dev
);
1125 acpi_dev
->driver
= acpi_drv
;
1126 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
1127 "Driver [%s] successfully bound to device [%s]\n",
1128 acpi_drv
->name
, acpi_dev
->pnp
.bus_id
));
1130 if (acpi_drv
->ops
.notify
) {
1131 ret
= acpi_device_install_notify_handler(acpi_dev
);
1133 if (acpi_drv
->ops
.remove
)
1134 acpi_drv
->ops
.remove(acpi_dev
);
1136 acpi_dev
->driver
= NULL
;
1137 acpi_dev
->driver_data
= NULL
;
1142 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Found driver [%s] for device [%s]\n",
1143 acpi_drv
->name
, acpi_dev
->pnp
.bus_id
));
1148 static int acpi_device_remove(struct device
* dev
)
1150 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
1151 struct acpi_driver
*acpi_drv
= acpi_dev
->driver
;
1154 if (acpi_drv
->ops
.notify
)
1155 acpi_device_remove_notify_handler(acpi_dev
);
1156 if (acpi_drv
->ops
.remove
)
1157 acpi_drv
->ops
.remove(acpi_dev
);
1159 acpi_dev
->driver
= NULL
;
1160 acpi_dev
->driver_data
= NULL
;
1166 struct bus_type acpi_bus_type
= {
1168 .match
= acpi_bus_match
,
1169 .probe
= acpi_device_probe
,
1170 .remove
= acpi_device_remove
,
1171 .uevent
= acpi_device_uevent
,
1174 static void acpi_device_del(struct acpi_device
*device
)
1176 mutex_lock(&acpi_device_lock
);
1178 list_del(&device
->node
);
1180 list_del(&device
->wakeup_list
);
1181 mutex_unlock(&acpi_device_lock
);
1183 acpi_power_add_remove_device(device
, false);
1184 acpi_device_remove_files(device
);
1186 device
->remove(device
);
1188 device_del(&device
->dev
);
1191 static LIST_HEAD(acpi_device_del_list
);
1192 static DEFINE_MUTEX(acpi_device_del_lock
);
1194 static void acpi_device_del_work_fn(struct work_struct
*work_not_used
)
1197 struct acpi_device
*adev
;
1199 mutex_lock(&acpi_device_del_lock
);
1201 if (list_empty(&acpi_device_del_list
)) {
1202 mutex_unlock(&acpi_device_del_lock
);
1205 adev
= list_first_entry(&acpi_device_del_list
,
1206 struct acpi_device
, del_list
);
1207 list_del(&adev
->del_list
);
1209 mutex_unlock(&acpi_device_del_lock
);
1211 acpi_device_del(adev
);
1213 * Drop references to all power resources that might have been
1214 * used by the device.
1216 acpi_power_transition(adev
, ACPI_STATE_D3_COLD
);
1217 put_device(&adev
->dev
);
1222 * acpi_scan_drop_device - Drop an ACPI device object.
1223 * @handle: Handle of an ACPI namespace node, not used.
1224 * @context: Address of the ACPI device object to drop.
1226 * This is invoked by acpi_ns_delete_node() during the removal of the ACPI
1227 * namespace node the device object pointed to by @context is attached to.
1229 * The unregistration is carried out asynchronously to avoid running
1230 * acpi_device_del() under the ACPICA's namespace mutex and the list is used to
1231 * ensure the correct ordering (the device objects must be unregistered in the
1232 * same order in which the corresponding namespace nodes are deleted).
1234 static void acpi_scan_drop_device(acpi_handle handle
, void *context
)
1236 static DECLARE_WORK(work
, acpi_device_del_work_fn
);
1237 struct acpi_device
*adev
= context
;
1239 mutex_lock(&acpi_device_del_lock
);
1242 * Use the ACPI hotplug workqueue which is ordered, so this work item
1243 * won't run after any hotplug work items submitted subsequently. That
1244 * prevents attempts to register device objects identical to those being
1245 * deleted from happening concurrently (such attempts result from
1246 * hotplug events handled via the ACPI hotplug workqueue). It also will
1247 * run after all of the work items submitted previosuly, which helps
1248 * those work items to ensure that they are not accessing stale device
1251 if (list_empty(&acpi_device_del_list
))
1252 acpi_queue_hotplug_work(&work
);
1254 list_add_tail(&adev
->del_list
, &acpi_device_del_list
);
1255 /* Make acpi_ns_validate_handle() return NULL for this handle. */
1256 adev
->handle
= INVALID_ACPI_HANDLE
;
1258 mutex_unlock(&acpi_device_del_lock
);
1261 static int acpi_get_device_data(acpi_handle handle
, struct acpi_device
**device
,
1262 void (*callback
)(void *))
1269 status
= acpi_get_data_full(handle
, acpi_scan_drop_device
,
1270 (void **)device
, callback
);
1271 if (ACPI_FAILURE(status
) || !*device
) {
1272 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "No context for object [%p]\n",
1279 int acpi_bus_get_device(acpi_handle handle
, struct acpi_device
**device
)
1281 return acpi_get_device_data(handle
, device
, NULL
);
1283 EXPORT_SYMBOL(acpi_bus_get_device
);
1285 static void get_acpi_device(void *dev
)
1288 get_device(&((struct acpi_device
*)dev
)->dev
);
1291 struct acpi_device
*acpi_bus_get_acpi_device(acpi_handle handle
)
1293 struct acpi_device
*adev
= NULL
;
1295 acpi_get_device_data(handle
, &adev
, get_acpi_device
);
1299 void acpi_bus_put_acpi_device(struct acpi_device
*adev
)
1301 put_device(&adev
->dev
);
1304 int acpi_device_add(struct acpi_device
*device
,
1305 void (*release
)(struct device
*))
1308 struct acpi_device_bus_id
*acpi_device_bus_id
, *new_bus_id
;
1311 if (device
->handle
) {
1314 status
= acpi_attach_data(device
->handle
, acpi_scan_drop_device
,
1316 if (ACPI_FAILURE(status
)) {
1317 acpi_handle_err(device
->handle
,
1318 "Unable to attach device data\n");
1326 * Link this device to its parent and siblings.
1328 INIT_LIST_HEAD(&device
->children
);
1329 INIT_LIST_HEAD(&device
->node
);
1330 INIT_LIST_HEAD(&device
->wakeup_list
);
1331 INIT_LIST_HEAD(&device
->physical_node_list
);
1332 INIT_LIST_HEAD(&device
->del_list
);
1333 mutex_init(&device
->physical_node_lock
);
1335 new_bus_id
= kzalloc(sizeof(struct acpi_device_bus_id
), GFP_KERNEL
);
1337 pr_err(PREFIX
"Memory allocation error\n");
1342 mutex_lock(&acpi_device_lock
);
1344 * Find suitable bus_id and instance number in acpi_bus_id_list
1345 * If failed, create one and link it into acpi_bus_id_list
1347 list_for_each_entry(acpi_device_bus_id
, &acpi_bus_id_list
, node
) {
1348 if (!strcmp(acpi_device_bus_id
->bus_id
,
1349 acpi_device_hid(device
))) {
1350 acpi_device_bus_id
->instance_no
++;
1357 acpi_device_bus_id
= new_bus_id
;
1358 strcpy(acpi_device_bus_id
->bus_id
, acpi_device_hid(device
));
1359 acpi_device_bus_id
->instance_no
= 0;
1360 list_add_tail(&acpi_device_bus_id
->node
, &acpi_bus_id_list
);
1362 dev_set_name(&device
->dev
, "%s:%02x", acpi_device_bus_id
->bus_id
, acpi_device_bus_id
->instance_no
);
1365 list_add_tail(&device
->node
, &device
->parent
->children
);
1367 if (device
->wakeup
.flags
.valid
)
1368 list_add_tail(&device
->wakeup_list
, &acpi_wakeup_device_list
);
1369 mutex_unlock(&acpi_device_lock
);
1372 device
->dev
.parent
= &device
->parent
->dev
;
1373 device
->dev
.bus
= &acpi_bus_type
;
1374 device
->dev
.release
= release
;
1375 result
= device_add(&device
->dev
);
1377 dev_err(&device
->dev
, "Error registering device\n");
1381 result
= acpi_device_setup_files(device
);
1383 printk(KERN_ERR PREFIX
"Error creating sysfs interface for device %s\n",
1384 dev_name(&device
->dev
));
1389 mutex_lock(&acpi_device_lock
);
1391 list_del(&device
->node
);
1392 list_del(&device
->wakeup_list
);
1393 mutex_unlock(&acpi_device_lock
);
1396 acpi_detach_data(device
->handle
, acpi_scan_drop_device
);
1400 struct acpi_device
*acpi_get_next_child(struct device
*dev
,
1401 struct acpi_device
*child
)
1403 struct acpi_device
*adev
= ACPI_COMPANION(dev
);
1404 struct list_head
*head
, *next
;
1409 head
= &adev
->children
;
1410 if (list_empty(head
))
1414 return list_first_entry(head
, struct acpi_device
, node
);
1416 next
= child
->node
.next
;
1417 return next
== head
? NULL
: list_entry(next
, struct acpi_device
, node
);
1420 /* --------------------------------------------------------------------------
1422 -------------------------------------------------------------------------- */
1424 * acpi_bus_register_driver - register a driver with the ACPI bus
1425 * @driver: driver being registered
1427 * Registers a driver with the ACPI bus. Searches the namespace for all
1428 * devices that match the driver's criteria and binds. Returns zero for
1429 * success or a negative error status for failure.
1431 int acpi_bus_register_driver(struct acpi_driver
*driver
)
1437 driver
->drv
.name
= driver
->name
;
1438 driver
->drv
.bus
= &acpi_bus_type
;
1439 driver
->drv
.owner
= driver
->owner
;
1441 ret
= driver_register(&driver
->drv
);
1445 EXPORT_SYMBOL(acpi_bus_register_driver
);
1448 * acpi_bus_unregister_driver - unregisters a driver with the ACPI bus
1449 * @driver: driver to unregister
1451 * Unregisters a driver with the ACPI bus. Searches the namespace for all
1452 * devices that match the driver's criteria and unbinds.
1454 void acpi_bus_unregister_driver(struct acpi_driver
*driver
)
1456 driver_unregister(&driver
->drv
);
1459 EXPORT_SYMBOL(acpi_bus_unregister_driver
);
1461 /* --------------------------------------------------------------------------
1463 -------------------------------------------------------------------------- */
1464 static struct acpi_device
*acpi_bus_get_parent(acpi_handle handle
)
1466 struct acpi_device
*device
= NULL
;
1470 * Fixed hardware devices do not appear in the namespace and do not
1471 * have handles, but we fabricate acpi_devices for them, so we have
1472 * to deal with them specially.
1478 status
= acpi_get_parent(handle
, &handle
);
1479 if (ACPI_FAILURE(status
))
1480 return status
== AE_NULL_ENTRY
? NULL
: acpi_root
;
1481 } while (acpi_bus_get_device(handle
, &device
));
1486 acpi_bus_get_ejd(acpi_handle handle
, acpi_handle
*ejd
)
1490 struct acpi_buffer buffer
= {ACPI_ALLOCATE_BUFFER
, NULL
};
1491 union acpi_object
*obj
;
1493 status
= acpi_get_handle(handle
, "_EJD", &tmp
);
1494 if (ACPI_FAILURE(status
))
1497 status
= acpi_evaluate_object(handle
, "_EJD", NULL
, &buffer
);
1498 if (ACPI_SUCCESS(status
)) {
1499 obj
= buffer
.pointer
;
1500 status
= acpi_get_handle(ACPI_ROOT_OBJECT
, obj
->string
.pointer
,
1502 kfree(buffer
.pointer
);
1506 EXPORT_SYMBOL_GPL(acpi_bus_get_ejd
);
1508 static int acpi_bus_extract_wakeup_device_power_package(acpi_handle handle
,
1509 struct acpi_device_wakeup
*wakeup
)
1511 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
1512 union acpi_object
*package
= NULL
;
1513 union acpi_object
*element
= NULL
;
1520 INIT_LIST_HEAD(&wakeup
->resources
);
1523 status
= acpi_evaluate_object(handle
, "_PRW", NULL
, &buffer
);
1524 if (ACPI_FAILURE(status
)) {
1525 ACPI_EXCEPTION((AE_INFO
, status
, "Evaluating _PRW"));
1529 package
= (union acpi_object
*)buffer
.pointer
;
1531 if (!package
|| package
->package
.count
< 2)
1534 element
= &(package
->package
.elements
[0]);
1538 if (element
->type
== ACPI_TYPE_PACKAGE
) {
1539 if ((element
->package
.count
< 2) ||
1540 (element
->package
.elements
[0].type
!=
1541 ACPI_TYPE_LOCAL_REFERENCE
)
1542 || (element
->package
.elements
[1].type
!= ACPI_TYPE_INTEGER
))
1545 wakeup
->gpe_device
=
1546 element
->package
.elements
[0].reference
.handle
;
1547 wakeup
->gpe_number
=
1548 (u32
) element
->package
.elements
[1].integer
.value
;
1549 } else if (element
->type
== ACPI_TYPE_INTEGER
) {
1550 wakeup
->gpe_device
= NULL
;
1551 wakeup
->gpe_number
= element
->integer
.value
;
1556 element
= &(package
->package
.elements
[1]);
1557 if (element
->type
!= ACPI_TYPE_INTEGER
)
1560 wakeup
->sleep_state
= element
->integer
.value
;
1562 err
= acpi_extract_power_resources(package
, 2, &wakeup
->resources
);
1566 if (!list_empty(&wakeup
->resources
)) {
1569 err
= acpi_power_wakeup_list_init(&wakeup
->resources
,
1572 acpi_handle_warn(handle
, "Retrieving current states "
1573 "of wakeup power resources failed\n");
1574 acpi_power_resources_list_free(&wakeup
->resources
);
1577 if (sleep_state
< wakeup
->sleep_state
) {
1578 acpi_handle_warn(handle
, "Overriding _PRW sleep state "
1579 "(S%d) by S%d from power resources\n",
1580 (int)wakeup
->sleep_state
, sleep_state
);
1581 wakeup
->sleep_state
= sleep_state
;
1586 kfree(buffer
.pointer
);
1590 static void acpi_wakeup_gpe_init(struct acpi_device
*device
)
1592 struct acpi_device_id button_device_ids
[] = {
1598 struct acpi_device_wakeup
*wakeup
= &device
->wakeup
;
1600 acpi_event_status event_status
;
1602 wakeup
->flags
.notifier_present
= 0;
1604 /* Power button, Lid switch always enable wakeup */
1605 if (!acpi_match_device_ids(device
, button_device_ids
)) {
1606 wakeup
->flags
.run_wake
= 1;
1607 if (!acpi_match_device_ids(device
, &button_device_ids
[1])) {
1608 /* Do not use Lid/sleep button for S5 wakeup */
1609 if (wakeup
->sleep_state
== ACPI_STATE_S5
)
1610 wakeup
->sleep_state
= ACPI_STATE_S4
;
1612 acpi_mark_gpe_for_wake(wakeup
->gpe_device
, wakeup
->gpe_number
);
1613 device_set_wakeup_capable(&device
->dev
, true);
1617 acpi_setup_gpe_for_wake(device
->handle
, wakeup
->gpe_device
,
1618 wakeup
->gpe_number
);
1619 status
= acpi_get_gpe_status(wakeup
->gpe_device
, wakeup
->gpe_number
,
1621 if (ACPI_FAILURE(status
))
1624 wakeup
->flags
.run_wake
= !!(event_status
& ACPI_EVENT_FLAG_HAS_HANDLER
);
1627 static void acpi_bus_get_wakeup_device_flags(struct acpi_device
*device
)
1631 /* Presence of _PRW indicates wake capable */
1632 if (!acpi_has_method(device
->handle
, "_PRW"))
1635 err
= acpi_bus_extract_wakeup_device_power_package(device
->handle
,
1638 dev_err(&device
->dev
, "_PRW evaluation error: %d\n", err
);
1642 device
->wakeup
.flags
.valid
= 1;
1643 device
->wakeup
.prepare_count
= 0;
1644 acpi_wakeup_gpe_init(device
);
1645 /* Call _PSW/_DSW object to disable its ability to wake the sleeping
1646 * system for the ACPI device with the _PRW object.
1647 * The _PSW object is depreciated in ACPI 3.0 and is replaced by _DSW.
1648 * So it is necessary to call _DSW object first. Only when it is not
1649 * present will the _PSW object used.
1651 err
= acpi_device_sleep_wake(device
, 0, 0, 0);
1653 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
1654 "error in _DSW or _PSW evaluation\n"));
1657 static void acpi_bus_init_power_state(struct acpi_device
*device
, int state
)
1659 struct acpi_device_power_state
*ps
= &device
->power
.states
[state
];
1660 char pathname
[5] = { '_', 'P', 'R', '0' + state
, '\0' };
1661 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
1664 INIT_LIST_HEAD(&ps
->resources
);
1666 /* Evaluate "_PRx" to get referenced power resources */
1667 status
= acpi_evaluate_object(device
->handle
, pathname
, NULL
, &buffer
);
1668 if (ACPI_SUCCESS(status
)) {
1669 union acpi_object
*package
= buffer
.pointer
;
1671 if (buffer
.length
&& package
1672 && package
->type
== ACPI_TYPE_PACKAGE
1673 && package
->package
.count
) {
1674 int err
= acpi_extract_power_resources(package
, 0,
1677 device
->power
.flags
.power_resources
= 1;
1679 ACPI_FREE(buffer
.pointer
);
1682 /* Evaluate "_PSx" to see if we can do explicit sets */
1684 if (acpi_has_method(device
->handle
, pathname
))
1685 ps
->flags
.explicit_set
= 1;
1688 * State is valid if there are means to put the device into it.
1689 * D3hot is only valid if _PR3 present.
1691 if (!list_empty(&ps
->resources
)
1692 || (ps
->flags
.explicit_set
&& state
< ACPI_STATE_D3_HOT
)) {
1693 ps
->flags
.valid
= 1;
1694 ps
->flags
.os_accessible
= 1;
1697 ps
->power
= -1; /* Unknown - driver assigned */
1698 ps
->latency
= -1; /* Unknown - driver assigned */
1701 static void acpi_bus_get_power_flags(struct acpi_device
*device
)
1705 /* Presence of _PS0|_PR0 indicates 'power manageable' */
1706 if (!acpi_has_method(device
->handle
, "_PS0") &&
1707 !acpi_has_method(device
->handle
, "_PR0"))
1710 device
->flags
.power_manageable
= 1;
1713 * Power Management Flags
1715 if (acpi_has_method(device
->handle
, "_PSC"))
1716 device
->power
.flags
.explicit_get
= 1;
1718 if (acpi_has_method(device
->handle
, "_IRC"))
1719 device
->power
.flags
.inrush_current
= 1;
1721 if (acpi_has_method(device
->handle
, "_DSW"))
1722 device
->power
.flags
.dsw_present
= 1;
1725 * Enumerate supported power management states
1727 for (i
= ACPI_STATE_D0
; i
<= ACPI_STATE_D3_HOT
; i
++)
1728 acpi_bus_init_power_state(device
, i
);
1730 INIT_LIST_HEAD(&device
->power
.states
[ACPI_STATE_D3_COLD
].resources
);
1732 /* Set defaults for D0 and D3 states (always valid) */
1733 device
->power
.states
[ACPI_STATE_D0
].flags
.valid
= 1;
1734 device
->power
.states
[ACPI_STATE_D0
].power
= 100;
1735 device
->power
.states
[ACPI_STATE_D3_COLD
].flags
.valid
= 1;
1736 device
->power
.states
[ACPI_STATE_D3_COLD
].power
= 0;
1738 /* Set D3cold's explicit_set flag if _PS3 exists. */
1739 if (device
->power
.states
[ACPI_STATE_D3_HOT
].flags
.explicit_set
)
1740 device
->power
.states
[ACPI_STATE_D3_COLD
].flags
.explicit_set
= 1;
1742 /* Presence of _PS3 or _PRx means we can put the device into D3 cold */
1743 if (device
->power
.states
[ACPI_STATE_D3_HOT
].flags
.explicit_set
||
1744 device
->power
.flags
.power_resources
)
1745 device
->power
.states
[ACPI_STATE_D3_COLD
].flags
.os_accessible
= 1;
1747 if (acpi_bus_init_power(device
)) {
1748 acpi_free_power_resources_lists(device
);
1749 device
->flags
.power_manageable
= 0;
1753 static void acpi_bus_get_flags(struct acpi_device
*device
)
1755 /* Presence of _STA indicates 'dynamic_status' */
1756 if (acpi_has_method(device
->handle
, "_STA"))
1757 device
->flags
.dynamic_status
= 1;
1759 /* Presence of _RMV indicates 'removable' */
1760 if (acpi_has_method(device
->handle
, "_RMV"))
1761 device
->flags
.removable
= 1;
1763 /* Presence of _EJD|_EJ0 indicates 'ejectable' */
1764 if (acpi_has_method(device
->handle
, "_EJD") ||
1765 acpi_has_method(device
->handle
, "_EJ0"))
1766 device
->flags
.ejectable
= 1;
1769 static void acpi_device_get_busid(struct acpi_device
*device
)
1771 char bus_id
[5] = { '?', 0 };
1772 struct acpi_buffer buffer
= { sizeof(bus_id
), bus_id
};
1778 * The device's Bus ID is simply the object name.
1779 * TBD: Shouldn't this value be unique (within the ACPI namespace)?
1781 if (ACPI_IS_ROOT_DEVICE(device
)) {
1782 strcpy(device
->pnp
.bus_id
, "ACPI");
1786 switch (device
->device_type
) {
1787 case ACPI_BUS_TYPE_POWER_BUTTON
:
1788 strcpy(device
->pnp
.bus_id
, "PWRF");
1790 case ACPI_BUS_TYPE_SLEEP_BUTTON
:
1791 strcpy(device
->pnp
.bus_id
, "SLPF");
1794 acpi_get_name(device
->handle
, ACPI_SINGLE_NAME
, &buffer
);
1795 /* Clean up trailing underscores (if any) */
1796 for (i
= 3; i
> 1; i
--) {
1797 if (bus_id
[i
] == '_')
1802 strcpy(device
->pnp
.bus_id
, bus_id
);
1808 * acpi_ata_match - see if an acpi object is an ATA device
1810 * If an acpi object has one of the ACPI ATA methods defined,
1811 * then we can safely call it an ATA device.
1813 bool acpi_ata_match(acpi_handle handle
)
1815 return acpi_has_method(handle
, "_GTF") ||
1816 acpi_has_method(handle
, "_GTM") ||
1817 acpi_has_method(handle
, "_STM") ||
1818 acpi_has_method(handle
, "_SDD");
1822 * acpi_bay_match - see if an acpi object is an ejectable driver bay
1824 * If an acpi object is ejectable and has one of the ACPI ATA methods defined,
1825 * then we can safely call it an ejectable drive bay
1827 bool acpi_bay_match(acpi_handle handle
)
1829 acpi_handle phandle
;
1831 if (!acpi_has_method(handle
, "_EJ0"))
1833 if (acpi_ata_match(handle
))
1835 if (ACPI_FAILURE(acpi_get_parent(handle
, &phandle
)))
1838 return acpi_ata_match(phandle
);
1841 bool acpi_device_is_battery(struct acpi_device
*adev
)
1843 struct acpi_hardware_id
*hwid
;
1845 list_for_each_entry(hwid
, &adev
->pnp
.ids
, list
)
1846 if (!strcmp("PNP0C0A", hwid
->id
))
1852 static bool is_ejectable_bay(struct acpi_device
*adev
)
1854 acpi_handle handle
= adev
->handle
;
1856 if (acpi_has_method(handle
, "_EJ0") && acpi_device_is_battery(adev
))
1859 return acpi_bay_match(handle
);
1863 * acpi_dock_match - see if an acpi object has a _DCK method
1865 bool acpi_dock_match(acpi_handle handle
)
1867 return acpi_has_method(handle
, "_DCK");
1870 const char *acpi_device_hid(struct acpi_device
*device
)
1872 struct acpi_hardware_id
*hid
;
1874 if (list_empty(&device
->pnp
.ids
))
1877 hid
= list_first_entry(&device
->pnp
.ids
, struct acpi_hardware_id
, list
);
1880 EXPORT_SYMBOL(acpi_device_hid
);
1882 static void acpi_add_id(struct acpi_device_pnp
*pnp
, const char *dev_id
)
1884 struct acpi_hardware_id
*id
;
1886 id
= kmalloc(sizeof(*id
), GFP_KERNEL
);
1890 id
->id
= kstrdup(dev_id
, GFP_KERNEL
);
1896 list_add_tail(&id
->list
, &pnp
->ids
);
1897 pnp
->type
.hardware_id
= 1;
1901 * Old IBM workstations have a DSDT bug wherein the SMBus object
1902 * lacks the SMBUS01 HID and the methods do not have the necessary "_"
1903 * prefix. Work around this.
1905 static bool acpi_ibm_smbus_match(acpi_handle handle
)
1907 char node_name
[ACPI_PATH_SEGMENT_LENGTH
];
1908 struct acpi_buffer path
= { sizeof(node_name
), node_name
};
1910 if (!dmi_name_in_vendors("IBM"))
1913 /* Look for SMBS object */
1914 if (ACPI_FAILURE(acpi_get_name(handle
, ACPI_SINGLE_NAME
, &path
)) ||
1915 strcmp("SMBS", path
.pointer
))
1918 /* Does it have the necessary (but misnamed) methods? */
1919 if (acpi_has_method(handle
, "SBI") &&
1920 acpi_has_method(handle
, "SBR") &&
1921 acpi_has_method(handle
, "SBW"))
1927 static bool acpi_object_is_system_bus(acpi_handle handle
)
1931 if (ACPI_SUCCESS(acpi_get_handle(NULL
, "\\_SB", &tmp
)) &&
1934 if (ACPI_SUCCESS(acpi_get_handle(NULL
, "\\_TZ", &tmp
)) &&
1941 static void acpi_set_pnp_ids(acpi_handle handle
, struct acpi_device_pnp
*pnp
,
1945 struct acpi_device_info
*info
;
1946 struct acpi_pnp_device_id_list
*cid_list
;
1949 switch (device_type
) {
1950 case ACPI_BUS_TYPE_DEVICE
:
1951 if (handle
== ACPI_ROOT_OBJECT
) {
1952 acpi_add_id(pnp
, ACPI_SYSTEM_HID
);
1956 status
= acpi_get_object_info(handle
, &info
);
1957 if (ACPI_FAILURE(status
)) {
1958 pr_err(PREFIX
"%s: Error reading device info\n",
1963 if (info
->valid
& ACPI_VALID_HID
) {
1964 acpi_add_id(pnp
, info
->hardware_id
.string
);
1965 pnp
->type
.platform_id
= 1;
1967 if (info
->valid
& ACPI_VALID_CID
) {
1968 cid_list
= &info
->compatible_id_list
;
1969 for (i
= 0; i
< cid_list
->count
; i
++)
1970 acpi_add_id(pnp
, cid_list
->ids
[i
].string
);
1972 if (info
->valid
& ACPI_VALID_ADR
) {
1973 pnp
->bus_address
= info
->address
;
1974 pnp
->type
.bus_address
= 1;
1976 if (info
->valid
& ACPI_VALID_UID
)
1977 pnp
->unique_id
= kstrdup(info
->unique_id
.string
,
1983 * Some devices don't reliably have _HIDs & _CIDs, so add
1984 * synthetic HIDs to make sure drivers can find them.
1986 if (acpi_is_video_device(handle
))
1987 acpi_add_id(pnp
, ACPI_VIDEO_HID
);
1988 else if (acpi_bay_match(handle
))
1989 acpi_add_id(pnp
, ACPI_BAY_HID
);
1990 else if (acpi_dock_match(handle
))
1991 acpi_add_id(pnp
, ACPI_DOCK_HID
);
1992 else if (acpi_ibm_smbus_match(handle
))
1993 acpi_add_id(pnp
, ACPI_SMBUS_IBM_HID
);
1994 else if (list_empty(&pnp
->ids
) &&
1995 acpi_object_is_system_bus(handle
)) {
1996 /* \_SB, \_TZ, LNXSYBUS */
1997 acpi_add_id(pnp
, ACPI_BUS_HID
);
1998 strcpy(pnp
->device_name
, ACPI_BUS_DEVICE_NAME
);
1999 strcpy(pnp
->device_class
, ACPI_BUS_CLASS
);
2003 case ACPI_BUS_TYPE_POWER
:
2004 acpi_add_id(pnp
, ACPI_POWER_HID
);
2006 case ACPI_BUS_TYPE_PROCESSOR
:
2007 acpi_add_id(pnp
, ACPI_PROCESSOR_OBJECT_HID
);
2009 case ACPI_BUS_TYPE_THERMAL
:
2010 acpi_add_id(pnp
, ACPI_THERMAL_HID
);
2012 case ACPI_BUS_TYPE_POWER_BUTTON
:
2013 acpi_add_id(pnp
, ACPI_BUTTON_HID_POWERF
);
2015 case ACPI_BUS_TYPE_SLEEP_BUTTON
:
2016 acpi_add_id(pnp
, ACPI_BUTTON_HID_SLEEPF
);
2021 void acpi_free_pnp_ids(struct acpi_device_pnp
*pnp
)
2023 struct acpi_hardware_id
*id
, *tmp
;
2025 list_for_each_entry_safe(id
, tmp
, &pnp
->ids
, list
) {
2029 kfree(pnp
->unique_id
);
2032 void acpi_init_device_object(struct acpi_device
*device
, acpi_handle handle
,
2033 int type
, unsigned long long sta
)
2035 INIT_LIST_HEAD(&device
->pnp
.ids
);
2036 device
->device_type
= type
;
2037 device
->handle
= handle
;
2038 device
->parent
= acpi_bus_get_parent(handle
);
2039 device
->fwnode
.type
= FWNODE_ACPI
;
2040 acpi_set_device_status(device
, sta
);
2041 acpi_device_get_busid(device
);
2042 acpi_set_pnp_ids(handle
, &device
->pnp
, type
);
2043 acpi_init_properties(device
);
2044 acpi_bus_get_flags(device
);
2045 device
->flags
.match_driver
= false;
2046 device
->flags
.initialized
= true;
2047 device
->flags
.visited
= false;
2048 device_initialize(&device
->dev
);
2049 dev_set_uevent_suppress(&device
->dev
, true);
2052 void acpi_device_add_finalize(struct acpi_device
*device
)
2054 dev_set_uevent_suppress(&device
->dev
, false);
2055 kobject_uevent(&device
->dev
.kobj
, KOBJ_ADD
);
2058 static int acpi_add_single_object(struct acpi_device
**child
,
2059 acpi_handle handle
, int type
,
2060 unsigned long long sta
)
2063 struct acpi_device
*device
;
2064 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
2066 device
= kzalloc(sizeof(struct acpi_device
), GFP_KERNEL
);
2068 printk(KERN_ERR PREFIX
"Memory allocation error\n");
2072 acpi_init_device_object(device
, handle
, type
, sta
);
2073 acpi_bus_get_power_flags(device
);
2074 acpi_bus_get_wakeup_device_flags(device
);
2076 result
= acpi_device_add(device
, acpi_device_release
);
2078 acpi_device_release(&device
->dev
);
2082 acpi_power_add_remove_device(device
, true);
2083 acpi_device_add_finalize(device
);
2084 acpi_get_name(handle
, ACPI_FULL_PATHNAME
, &buffer
);
2085 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Added %s [%s] parent %s\n",
2086 dev_name(&device
->dev
), (char *) buffer
.pointer
,
2087 device
->parent
? dev_name(&device
->parent
->dev
) : "(null)"));
2088 kfree(buffer
.pointer
);
2093 static int acpi_bus_type_and_status(acpi_handle handle
, int *type
,
2094 unsigned long long *sta
)
2097 acpi_object_type acpi_type
;
2099 status
= acpi_get_type(handle
, &acpi_type
);
2100 if (ACPI_FAILURE(status
))
2103 switch (acpi_type
) {
2104 case ACPI_TYPE_ANY
: /* for ACPI_ROOT_OBJECT */
2105 case ACPI_TYPE_DEVICE
:
2106 *type
= ACPI_BUS_TYPE_DEVICE
;
2107 status
= acpi_bus_get_status_handle(handle
, sta
);
2108 if (ACPI_FAILURE(status
))
2111 case ACPI_TYPE_PROCESSOR
:
2112 *type
= ACPI_BUS_TYPE_PROCESSOR
;
2113 status
= acpi_bus_get_status_handle(handle
, sta
);
2114 if (ACPI_FAILURE(status
))
2117 case ACPI_TYPE_THERMAL
:
2118 *type
= ACPI_BUS_TYPE_THERMAL
;
2119 *sta
= ACPI_STA_DEFAULT
;
2121 case ACPI_TYPE_POWER
:
2122 *type
= ACPI_BUS_TYPE_POWER
;
2123 *sta
= ACPI_STA_DEFAULT
;
2132 bool acpi_device_is_present(struct acpi_device
*adev
)
2134 if (adev
->status
.present
|| adev
->status
.functional
)
2137 adev
->flags
.initialized
= false;
2141 static bool acpi_scan_handler_matching(struct acpi_scan_handler
*handler
,
2143 const struct acpi_device_id
**matchid
)
2145 const struct acpi_device_id
*devid
;
2148 return handler
->match(idstr
, matchid
);
2150 for (devid
= handler
->ids
; devid
->id
[0]; devid
++)
2151 if (!strcmp((char *)devid
->id
, idstr
)) {
2161 static struct acpi_scan_handler
*acpi_scan_match_handler(char *idstr
,
2162 const struct acpi_device_id
**matchid
)
2164 struct acpi_scan_handler
*handler
;
2166 list_for_each_entry(handler
, &acpi_scan_handlers_list
, list_node
)
2167 if (acpi_scan_handler_matching(handler
, idstr
, matchid
))
2173 void acpi_scan_hotplug_enabled(struct acpi_hotplug_profile
*hotplug
, bool val
)
2175 if (!!hotplug
->enabled
== !!val
)
2178 mutex_lock(&acpi_scan_lock
);
2180 hotplug
->enabled
= val
;
2182 mutex_unlock(&acpi_scan_lock
);
2185 static void acpi_scan_init_hotplug(struct acpi_device
*adev
)
2187 struct acpi_hardware_id
*hwid
;
2189 if (acpi_dock_match(adev
->handle
) || is_ejectable_bay(adev
)) {
2190 acpi_dock_add(adev
);
2193 list_for_each_entry(hwid
, &adev
->pnp
.ids
, list
) {
2194 struct acpi_scan_handler
*handler
;
2196 handler
= acpi_scan_match_handler(hwid
->id
, NULL
);
2198 adev
->flags
.hotplug_notify
= true;
2204 static void acpi_device_dep_initialize(struct acpi_device
*adev
)
2206 struct acpi_dep_data
*dep
;
2207 struct acpi_handle_list dep_devices
;
2211 if (!acpi_has_method(adev
->handle
, "_DEP"))
2214 status
= acpi_evaluate_reference(adev
->handle
, "_DEP", NULL
,
2216 if (ACPI_FAILURE(status
)) {
2217 dev_err(&adev
->dev
, "Failed to evaluate _DEP.\n");
2221 for (i
= 0; i
< dep_devices
.count
; i
++) {
2222 struct acpi_device_info
*info
;
2225 status
= acpi_get_object_info(dep_devices
.handles
[i
], &info
);
2226 if (ACPI_FAILURE(status
)) {
2227 dev_err(&adev
->dev
, "Error reading device info\n");
2232 * Skip the dependency of Windows System Power
2233 * Management Controller
2235 skip
= info
->valid
& ACPI_VALID_HID
&&
2236 !strcmp(info
->hardware_id
.string
, "INT3396");
2243 dep
= kzalloc(sizeof(struct acpi_dep_data
), GFP_KERNEL
);
2247 dep
->master
= dep_devices
.handles
[i
];
2248 dep
->slave
= adev
->handle
;
2251 mutex_lock(&acpi_dep_list_lock
);
2252 list_add_tail(&dep
->node
, &acpi_dep_list
);
2253 mutex_unlock(&acpi_dep_list_lock
);
2257 static acpi_status
acpi_bus_check_add(acpi_handle handle
, u32 lvl_not_used
,
2258 void *not_used
, void **return_value
)
2260 struct acpi_device
*device
= NULL
;
2262 unsigned long long sta
;
2265 acpi_bus_get_device(handle
, &device
);
2269 result
= acpi_bus_type_and_status(handle
, &type
, &sta
);
2273 if (type
== ACPI_BUS_TYPE_POWER
) {
2274 acpi_add_power_resource(handle
);
2278 acpi_add_single_object(&device
, handle
, type
, sta
);
2280 return AE_CTRL_DEPTH
;
2282 acpi_scan_init_hotplug(device
);
2283 acpi_device_dep_initialize(device
);
2287 *return_value
= device
;
2292 static int acpi_check_spi_i2c_slave(struct acpi_resource
*ares
, void *data
)
2294 bool *is_spi_i2c_slave_p
= data
;
2296 if (ares
->type
!= ACPI_RESOURCE_TYPE_SERIAL_BUS
)
2300 * devices that are connected to UART still need to be enumerated to
2303 if (ares
->data
.common_serial_bus
.type
!= ACPI_RESOURCE_SERIAL_TYPE_UART
)
2304 *is_spi_i2c_slave_p
= true;
2306 /* no need to do more checking */
2310 static void acpi_default_enumeration(struct acpi_device
*device
)
2312 struct list_head resource_list
;
2313 bool is_spi_i2c_slave
= false;
2315 if (!device
->pnp
.type
.platform_id
|| device
->handler
)
2319 * Do not enemerate SPI/I2C slaves as they will be enuerated by their
2320 * respective parents.
2322 INIT_LIST_HEAD(&resource_list
);
2323 acpi_dev_get_resources(device
, &resource_list
, acpi_check_spi_i2c_slave
,
2325 acpi_dev_free_resource_list(&resource_list
);
2326 if (!is_spi_i2c_slave
)
2327 acpi_create_platform_device(device
);
2330 static int acpi_scan_attach_handler(struct acpi_device
*device
)
2332 struct acpi_hardware_id
*hwid
;
2335 list_for_each_entry(hwid
, &device
->pnp
.ids
, list
) {
2336 const struct acpi_device_id
*devid
;
2337 struct acpi_scan_handler
*handler
;
2339 handler
= acpi_scan_match_handler(hwid
->id
, &devid
);
2341 if (!handler
->attach
) {
2342 device
->pnp
.type
.platform_id
= 0;
2345 device
->handler
= handler
;
2346 ret
= handler
->attach(device
, devid
);
2350 device
->handler
= NULL
;
2356 acpi_default_enumeration(device
);
2361 static void acpi_bus_attach(struct acpi_device
*device
)
2363 struct acpi_device
*child
;
2367 if (ACPI_SUCCESS(acpi_bus_get_ejd(device
->handle
, &ejd
)))
2368 register_dock_dependent_device(device
, ejd
);
2370 acpi_bus_get_status(device
);
2371 /* Skip devices that are not present. */
2372 if (!acpi_device_is_present(device
)) {
2373 device
->flags
.visited
= false;
2376 if (device
->handler
)
2379 if (!device
->flags
.initialized
) {
2380 acpi_bus_update_power(device
, NULL
);
2381 device
->flags
.initialized
= true;
2383 device
->flags
.visited
= false;
2384 ret
= acpi_scan_attach_handler(device
);
2388 device
->flags
.match_driver
= true;
2390 ret
= device_attach(&device
->dev
);
2394 device
->flags
.visited
= true;
2397 list_for_each_entry(child
, &device
->children
, node
)
2398 acpi_bus_attach(child
);
2400 if (device
->handler
&& device
->handler
->hotplug
.notify_online
)
2401 device
->handler
->hotplug
.notify_online(device
);
2404 void acpi_walk_dep_device_list(acpi_handle handle
)
2406 struct acpi_dep_data
*dep
, *tmp
;
2407 struct acpi_device
*adev
;
2409 mutex_lock(&acpi_dep_list_lock
);
2410 list_for_each_entry_safe(dep
, tmp
, &acpi_dep_list
, node
) {
2411 if (dep
->master
== handle
) {
2412 acpi_bus_get_device(dep
->slave
, &adev
);
2417 if (!adev
->dep_unmet
)
2418 acpi_bus_attach(adev
);
2419 list_del(&dep
->node
);
2423 mutex_unlock(&acpi_dep_list_lock
);
2425 EXPORT_SYMBOL_GPL(acpi_walk_dep_device_list
);
2428 * acpi_bus_scan - Add ACPI device node objects in a given namespace scope.
2429 * @handle: Root of the namespace scope to scan.
2431 * Scan a given ACPI tree (probably recently hot-plugged) and create and add
2434 * If no devices were found, -ENODEV is returned, but it does not mean that
2435 * there has been a real error. There just have been no suitable ACPI objects
2436 * in the table trunk from which the kernel could create a device and add an
2437 * appropriate driver.
2439 * Must be called under acpi_scan_lock.
2441 int acpi_bus_scan(acpi_handle handle
)
2443 void *device
= NULL
;
2445 if (ACPI_SUCCESS(acpi_bus_check_add(handle
, 0, NULL
, &device
)))
2446 acpi_walk_namespace(ACPI_TYPE_ANY
, handle
, ACPI_UINT32_MAX
,
2447 acpi_bus_check_add
, NULL
, NULL
, &device
);
2450 acpi_bus_attach(device
);
2455 EXPORT_SYMBOL(acpi_bus_scan
);
2458 * acpi_bus_trim - Detach scan handlers and drivers from ACPI device objects.
2459 * @adev: Root of the ACPI namespace scope to walk.
2461 * Must be called under acpi_scan_lock.
2463 void acpi_bus_trim(struct acpi_device
*adev
)
2465 struct acpi_scan_handler
*handler
= adev
->handler
;
2466 struct acpi_device
*child
;
2468 list_for_each_entry_reverse(child
, &adev
->children
, node
)
2469 acpi_bus_trim(child
);
2471 adev
->flags
.match_driver
= false;
2473 if (handler
->detach
)
2474 handler
->detach(adev
);
2476 adev
->handler
= NULL
;
2478 device_release_driver(&adev
->dev
);
2481 * Most likely, the device is going away, so put it into D3cold before
2484 acpi_device_set_power(adev
, ACPI_STATE_D3_COLD
);
2485 adev
->flags
.initialized
= false;
2486 adev
->flags
.visited
= false;
2488 EXPORT_SYMBOL_GPL(acpi_bus_trim
);
2490 static int acpi_bus_scan_fixed(void)
2495 * Enumerate all fixed-feature devices.
2497 if (!(acpi_gbl_FADT
.flags
& ACPI_FADT_POWER_BUTTON
)) {
2498 struct acpi_device
*device
= NULL
;
2500 result
= acpi_add_single_object(&device
, NULL
,
2501 ACPI_BUS_TYPE_POWER_BUTTON
,
2506 device
->flags
.match_driver
= true;
2507 result
= device_attach(&device
->dev
);
2511 device_init_wakeup(&device
->dev
, true);
2514 if (!(acpi_gbl_FADT
.flags
& ACPI_FADT_SLEEP_BUTTON
)) {
2515 struct acpi_device
*device
= NULL
;
2517 result
= acpi_add_single_object(&device
, NULL
,
2518 ACPI_BUS_TYPE_SLEEP_BUTTON
,
2523 device
->flags
.match_driver
= true;
2524 result
= device_attach(&device
->dev
);
2527 return result
< 0 ? result
: 0;
2530 int __init
acpi_scan_init(void)
2534 result
= bus_register(&acpi_bus_type
);
2536 /* We don't want to quit even if we failed to add suspend/resume */
2537 printk(KERN_ERR PREFIX
"Could not register bus type\n");
2540 acpi_pci_root_init();
2541 acpi_pci_link_init();
2542 acpi_processor_init();
2544 acpi_cmos_rtc_init();
2545 acpi_container_init();
2546 acpi_memory_hotplug_init();
2548 acpi_int340x_thermal_init();
2550 mutex_lock(&acpi_scan_lock
);
2552 * Enumerate devices in the ACPI namespace.
2554 result
= acpi_bus_scan(ACPI_ROOT_OBJECT
);
2558 result
= acpi_bus_get_device(ACPI_ROOT_OBJECT
, &acpi_root
);
2562 /* Fixed feature devices do not exist on HW-reduced platform */
2563 if (!acpi_gbl_reduced_hardware
) {
2564 result
= acpi_bus_scan_fixed();
2566 acpi_detach_data(acpi_root
->handle
,
2567 acpi_scan_drop_device
);
2568 acpi_device_del(acpi_root
);
2569 put_device(&acpi_root
->dev
);
2574 acpi_update_all_gpes();
2577 mutex_unlock(&acpi_scan_lock
);