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>
14 #include <linux/dma-mapping.h>
16 #include <asm/pgtable.h>
20 #define _COMPONENT ACPI_BUS_COMPONENT
21 ACPI_MODULE_NAME("scan");
22 extern struct acpi_device
*acpi_root
;
24 #define ACPI_BUS_CLASS "system_bus"
25 #define ACPI_BUS_HID "LNXSYBUS"
26 #define ACPI_BUS_DEVICE_NAME "System Bus"
28 #define ACPI_IS_ROOT_DEVICE(device) (!(device)->parent)
30 #define INVALID_ACPI_HANDLE ((acpi_handle)empty_zero_page)
33 * If set, devices will be hot-removed even if they cannot be put offline
34 * gracefully (from the kernel's standpoint).
36 bool acpi_force_hot_remove
;
38 static const char *dummy_hid
= "device";
40 static LIST_HEAD(acpi_dep_list
);
41 static DEFINE_MUTEX(acpi_dep_list_lock
);
42 static LIST_HEAD(acpi_bus_id_list
);
43 static DEFINE_MUTEX(acpi_scan_lock
);
44 static LIST_HEAD(acpi_scan_handlers_list
);
45 DEFINE_MUTEX(acpi_device_lock
);
46 LIST_HEAD(acpi_wakeup_device_list
);
47 static DEFINE_MUTEX(acpi_hp_context_lock
);
49 struct acpi_dep_data
{
50 struct list_head node
;
55 struct acpi_device_bus_id
{
57 unsigned int instance_no
;
58 struct list_head node
;
61 void acpi_scan_lock_acquire(void)
63 mutex_lock(&acpi_scan_lock
);
65 EXPORT_SYMBOL_GPL(acpi_scan_lock_acquire
);
67 void acpi_scan_lock_release(void)
69 mutex_unlock(&acpi_scan_lock
);
71 EXPORT_SYMBOL_GPL(acpi_scan_lock_release
);
73 void acpi_lock_hp_context(void)
75 mutex_lock(&acpi_hp_context_lock
);
78 void acpi_unlock_hp_context(void)
80 mutex_unlock(&acpi_hp_context_lock
);
83 void 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
))
88 acpi_lock_hp_context();
91 acpi_set_hp_context(adev
, hp
);
92 acpi_unlock_hp_context();
94 EXPORT_SYMBOL_GPL(acpi_initialize_hp_context
);
96 int acpi_scan_add_handler(struct acpi_scan_handler
*handler
)
101 list_add_tail(&handler
->list_node
, &acpi_scan_handlers_list
);
105 int acpi_scan_add_handler_with_hotplug(struct acpi_scan_handler
*handler
,
106 const char *hotplug_profile_name
)
110 error
= acpi_scan_add_handler(handler
);
114 acpi_sysfs_add_hotplug_profile(&handler
->hotplug
, hotplug_profile_name
);
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.
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"
127 * Return: 0: no _HID and no _CID
128 * -EINVAL: output error
129 * -ENOMEM: output is truncated
131 static int create_pnp_modalias(struct acpi_device
*acpi_dev
, char *modalias
,
136 struct acpi_hardware_id
*id
;
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
144 list_for_each_entry(id
, &acpi_dev
->pnp
.ids
, list
)
145 if (strcmp(id
->id
, ACPI_DT_NAMESPACE_HID
))
151 len
= snprintf(modalias
, size
, "acpi:");
157 list_for_each_entry(id
, &acpi_dev
->pnp
.ids
, list
) {
158 if (!strcmp(id
->id
, ACPI_DT_NAMESPACE_HID
))
161 count
= snprintf(&modalias
[len
], size
, "%s:", id
->id
);
171 modalias
[len
] = '\0';
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.
181 * Expose DT compatible modalias as of:NnameTCcompatible. This function should
182 * only be called for devices having ACPI_DT_NAMESPACE_HID in their list of
185 static int create_of_modalias(struct acpi_device
*acpi_dev
, char *modalias
,
188 struct acpi_buffer buf
= { ACPI_ALLOCATE_BUFFER
};
189 const union acpi_object
*of_compatible
, *obj
;
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
++)
199 len
= snprintf(modalias
, size
, "of:N%sT", (char *)buf
.pointer
);
200 ACPI_FREE(buf
.pointer
);
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. */
213 for (i
= 0; i
< nval
; i
++, obj
++) {
214 count
= snprintf(&modalias
[len
], size
, "C%s",
215 obj
->string
.pointer
);
225 modalias
[len
] = '\0';
230 * acpi_companion_match() - Can we match via ACPI companion device
231 * @dev: Device in question
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
235 * device associated with it. Return the companion pointer if that's the case
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
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).
250 static struct acpi_device
*acpi_companion_match(const struct device
*dev
)
252 struct acpi_device
*adev
;
253 struct mutex
*physical_node_lock
;
255 adev
= ACPI_COMPANION(dev
);
259 if (list_empty(&adev
->pnp
.ids
))
262 physical_node_lock
= &adev
->physical_node_lock
;
263 mutex_lock(physical_node_lock
);
264 if (list_empty(&adev
->physical_node_list
)) {
267 const struct acpi_device_physical_node
*node
;
269 node
= list_first_entry(&adev
->physical_node_list
,
270 struct acpi_device_physical_node
, node
);
271 if (node
->dev
!= dev
)
274 mutex_unlock(physical_node_lock
);
279 static int __acpi_device_uevent_modalias(struct acpi_device
*adev
,
280 struct kobj_uevent_env
*env
)
287 if (list_empty(&adev
->pnp
.ids
))
290 if (add_uevent_var(env
, "MODALIAS="))
293 len
= create_pnp_modalias(adev
, &env
->buf
[env
->buflen
- 1],
294 sizeof(env
->buf
) - env
->buflen
);
299 if (!adev
->data
.of_compatible
)
302 if (len
> 0 && add_uevent_var(env
, "MODALIAS="))
305 len
= create_of_modalias(adev
, &env
->buf
[env
->buflen
- 1],
306 sizeof(env
->buf
) - env
->buflen
);
316 * Creates uevent modalias field for ACPI enumerated devices.
317 * Because the other buses does not support ACPI HIDs & CIDs.
318 * e.g. for a device with hid:IBM0001 and cid:ACPI0001 you get:
319 * "acpi:IBM0001:ACPI0001"
321 int acpi_device_uevent_modalias(struct device
*dev
, struct kobj_uevent_env
*env
)
323 return __acpi_device_uevent_modalias(acpi_companion_match(dev
), env
);
325 EXPORT_SYMBOL_GPL(acpi_device_uevent_modalias
);
327 static int __acpi_device_modalias(struct acpi_device
*adev
, char *buf
, int size
)
334 if (list_empty(&adev
->pnp
.ids
))
337 len
= create_pnp_modalias(adev
, buf
, size
- 1);
340 } else if (len
> 0) {
344 if (!adev
->data
.of_compatible
)
347 count
= create_of_modalias(adev
, buf
+ len
, size
- 1);
350 } else if (count
> 0) {
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"
364 int acpi_device_modalias(struct device
*dev
, char *buf
, int size
)
366 return __acpi_device_modalias(acpi_companion_match(dev
), buf
, size
);
368 EXPORT_SYMBOL_GPL(acpi_device_modalias
);
371 acpi_device_modalias_show(struct device
*dev
, struct device_attribute
*attr
, char *buf
) {
372 return __acpi_device_modalias(to_acpi_device(dev
), buf
, 1024);
374 static DEVICE_ATTR(modalias
, 0444, acpi_device_modalias_show
, NULL
);
376 bool acpi_scan_is_offline(struct acpi_device
*adev
, bool uevent
)
378 struct acpi_device_physical_node
*pn
;
382 * acpi_container_offline() calls this for all of the container's
383 * children under the container's physical_node_lock lock.
385 mutex_lock_nested(&adev
->physical_node_lock
, SINGLE_DEPTH_NESTING
);
387 list_for_each_entry(pn
, &adev
->physical_node_list
, node
)
388 if (device_supports_offline(pn
->dev
) && !pn
->dev
->offline
) {
390 kobject_uevent(&pn
->dev
->kobj
, KOBJ_CHANGE
);
396 mutex_unlock(&adev
->physical_node_lock
);
400 static acpi_status
acpi_bus_offline(acpi_handle handle
, u32 lvl
, void *data
,
403 struct acpi_device
*device
= NULL
;
404 struct acpi_device_physical_node
*pn
;
405 bool second_pass
= (bool)data
;
406 acpi_status status
= AE_OK
;
408 if (acpi_bus_get_device(handle
, &device
))
411 if (device
->handler
&& !device
->handler
->hotplug
.enabled
) {
412 *ret_p
= &device
->dev
;
416 mutex_lock(&device
->physical_node_lock
);
418 list_for_each_entry(pn
, &device
->physical_node_list
, node
) {
422 /* Skip devices offlined by the first pass. */
426 pn
->put_online
= false;
428 ret
= device_offline(pn
->dev
);
429 if (acpi_force_hot_remove
)
433 pn
->put_online
= !ret
;
443 mutex_unlock(&device
->physical_node_lock
);
448 static acpi_status
acpi_bus_online(acpi_handle handle
, u32 lvl
, void *data
,
451 struct acpi_device
*device
= NULL
;
452 struct acpi_device_physical_node
*pn
;
454 if (acpi_bus_get_device(handle
, &device
))
457 mutex_lock(&device
->physical_node_lock
);
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;
465 mutex_unlock(&device
->physical_node_lock
);
470 static int acpi_scan_try_to_offline(struct acpi_device
*device
)
472 acpi_handle handle
= device
->handle
;
473 struct device
*errdev
= NULL
;
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
483 * If the first pass is successful, the second one isn't needed, though.
485 status
= acpi_walk_namespace(ACPI_TYPE_ANY
, handle
, ACPI_UINT32_MAX
,
486 NULL
, acpi_bus_offline
, (void *)false,
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
);
494 acpi_bus_offline(handle
, 0, (void *)false, (void **)&errdev
);
497 acpi_walk_namespace(ACPI_TYPE_ANY
, handle
, ACPI_UINT32_MAX
,
498 NULL
, acpi_bus_offline
, (void *)true,
500 if (!errdev
|| acpi_force_hot_remove
)
501 acpi_bus_offline(handle
, 0, (void *)true,
504 if (errdev
&& !acpi_force_hot_remove
) {
505 dev_warn(errdev
, "Offline failed.\n");
506 acpi_bus_online(handle
, 0, NULL
, NULL
);
507 acpi_walk_namespace(ACPI_TYPE_ANY
, handle
,
508 ACPI_UINT32_MAX
, acpi_bus_online
,
516 static int acpi_scan_hot_remove(struct acpi_device
*device
)
518 acpi_handle handle
= device
->handle
;
519 unsigned long long sta
;
522 if (device
->handler
&& device
->handler
->hotplug
.demand_offline
523 && !acpi_force_hot_remove
) {
524 if (!acpi_scan_is_offline(device
, true))
527 int error
= acpi_scan_try_to_offline(device
);
532 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
533 "Hot-removing device %s...\n", dev_name(&device
->dev
)));
535 acpi_bus_trim(device
);
537 acpi_evaluate_lck(handle
, 0);
541 status
= acpi_evaluate_ej0(handle
);
542 if (status
== AE_NOT_FOUND
)
544 else if (ACPI_FAILURE(status
))
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.
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
);
563 static int acpi_scan_device_not_present(struct acpi_device
*adev
)
565 if (!acpi_device_enumerated(adev
)) {
566 dev_warn(&adev
->dev
, "Still not present\n");
573 static int acpi_scan_device_check(struct acpi_device
*adev
)
577 acpi_bus_get_status(adev
);
578 if (adev
->status
.present
|| adev
->status
.functional
) {
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
588 dev_warn(&adev
->dev
, "Already enumerated\n");
591 error
= acpi_bus_scan(adev
->handle
);
593 dev_warn(&adev
->dev
, "Namespace scan failure\n");
596 if (!adev
->handler
) {
597 dev_warn(&adev
->dev
, "Enumeration failure\n");
601 error
= acpi_scan_device_not_present(adev
);
606 static int acpi_scan_bus_check(struct acpi_device
*adev
)
608 struct acpi_scan_handler
*handler
= adev
->handler
;
609 struct acpi_device
*child
;
612 acpi_bus_get_status(adev
);
613 if (!(adev
->status
.present
|| adev
->status
.functional
)) {
614 acpi_scan_device_not_present(adev
);
617 if (handler
&& handler
->hotplug
.scan_dependent
)
618 return handler
->hotplug
.scan_dependent(adev
);
620 error
= acpi_bus_scan(adev
->handle
);
622 dev_warn(&adev
->dev
, "Namespace scan failure\n");
625 list_for_each_entry(child
, &adev
->children
, node
) {
626 error
= acpi_scan_bus_check(child
);
633 static int acpi_generic_hotplug_event(struct acpi_device
*adev
, u32 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
:
642 if (adev
->handler
&& !adev
->handler
->hotplug
.enabled
) {
643 dev_info(&adev
->dev
, "Eject disabled\n");
646 acpi_evaluate_ost(adev
->handle
, ACPI_NOTIFY_EJECT_REQUEST
,
647 ACPI_OST_SC_EJECT_IN_PROGRESS
, NULL
);
648 return acpi_scan_hot_remove(adev
);
653 void acpi_device_hotplug(struct acpi_device
*adev
, u32 src
)
655 u32 ost_code
= ACPI_OST_SC_NON_SPECIFIC_FAILURE
;
658 lock_device_hotplug();
659 mutex_lock(&acpi_scan_lock
);
662 * The device object's ACPI handle cannot become invalid as long as we
663 * are holding acpi_scan_lock, but it might have become invalid before
664 * that lock was acquired.
666 if (adev
->handle
== INVALID_ACPI_HANDLE
)
669 if (adev
->flags
.is_dock_station
) {
670 error
= dock_notify(adev
, src
);
671 } else if (adev
->flags
.hotplug_notify
) {
672 error
= acpi_generic_hotplug_event(adev
, src
);
673 if (error
== -EPERM
) {
674 ost_code
= ACPI_OST_SC_EJECT_NOT_SUPPORTED
;
678 int (*notify
)(struct acpi_device
*, u32
);
680 acpi_lock_hp_context();
681 notify
= adev
->hp
? adev
->hp
->notify
: NULL
;
682 acpi_unlock_hp_context();
684 * There may be additional notify handlers for device objects
685 * without the .event() callback, so ignore them here.
688 error
= notify(adev
, src
);
693 ost_code
= ACPI_OST_SC_SUCCESS
;
696 acpi_evaluate_ost(adev
->handle
, src
, ost_code
, NULL
);
699 acpi_bus_put_acpi_device(adev
);
700 mutex_unlock(&acpi_scan_lock
);
701 unlock_device_hotplug();
704 static ssize_t
real_power_state_show(struct device
*dev
,
705 struct device_attribute
*attr
, char *buf
)
707 struct acpi_device
*adev
= to_acpi_device(dev
);
711 ret
= acpi_device_get_power(adev
, &state
);
715 return sprintf(buf
, "%s\n", acpi_power_state_string(state
));
718 static DEVICE_ATTR(real_power_state
, 0444, real_power_state_show
, NULL
);
720 static ssize_t
power_state_show(struct device
*dev
,
721 struct device_attribute
*attr
, char *buf
)
723 struct acpi_device
*adev
= to_acpi_device(dev
);
725 return sprintf(buf
, "%s\n", acpi_power_state_string(adev
->power
.state
));
728 static DEVICE_ATTR(power_state
, 0444, power_state_show
, NULL
);
731 acpi_eject_store(struct device
*d
, struct device_attribute
*attr
,
732 const char *buf
, size_t count
)
734 struct acpi_device
*acpi_device
= to_acpi_device(d
);
735 acpi_object_type not_used
;
738 if (!count
|| buf
[0] != '1')
741 if ((!acpi_device
->handler
|| !acpi_device
->handler
->hotplug
.enabled
)
742 && !acpi_device
->driver
)
745 status
= acpi_get_type(acpi_device
->handle
, ¬_used
);
746 if (ACPI_FAILURE(status
) || !acpi_device
->flags
.ejectable
)
749 get_device(&acpi_device
->dev
);
750 status
= acpi_hotplug_schedule(acpi_device
, ACPI_OST_EC_OSPM_EJECT
);
751 if (ACPI_SUCCESS(status
))
754 put_device(&acpi_device
->dev
);
755 acpi_evaluate_ost(acpi_device
->handle
, ACPI_OST_EC_OSPM_EJECT
,
756 ACPI_OST_SC_NON_SPECIFIC_FAILURE
, NULL
);
757 return status
== AE_NO_MEMORY
? -ENOMEM
: -EAGAIN
;
760 static DEVICE_ATTR(eject
, 0200, NULL
, acpi_eject_store
);
763 acpi_device_hid_show(struct device
*dev
, struct device_attribute
*attr
, char *buf
) {
764 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
766 return sprintf(buf
, "%s\n", acpi_device_hid(acpi_dev
));
768 static DEVICE_ATTR(hid
, 0444, acpi_device_hid_show
, NULL
);
770 static ssize_t
acpi_device_uid_show(struct device
*dev
,
771 struct device_attribute
*attr
, char *buf
)
773 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
775 return sprintf(buf
, "%s\n", acpi_dev
->pnp
.unique_id
);
777 static DEVICE_ATTR(uid
, 0444, acpi_device_uid_show
, NULL
);
779 static ssize_t
acpi_device_adr_show(struct device
*dev
,
780 struct device_attribute
*attr
, char *buf
)
782 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
784 return sprintf(buf
, "0x%08x\n",
785 (unsigned int)(acpi_dev
->pnp
.bus_address
));
787 static DEVICE_ATTR(adr
, 0444, acpi_device_adr_show
, NULL
);
790 acpi_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
};
795 result
= acpi_get_name(acpi_dev
->handle
, ACPI_FULL_PATHNAME
, &path
);
799 result
= sprintf(buf
, "%s\n", (char*)path
.pointer
);
804 static DEVICE_ATTR(path
, 0444, acpi_device_path_show
, NULL
);
806 /* sysfs file that shows description text from the ACPI _STR method */
807 static ssize_t
description_show(struct device
*dev
,
808 struct device_attribute
*attr
,
810 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
813 if (acpi_dev
->pnp
.str_obj
== NULL
)
817 * The _STR object contains a Unicode identifier for a device.
818 * We need to convert to utf-8 so it can be displayed.
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
,
826 buf
[result
++] = '\n';
830 static DEVICE_ATTR(description
, 0444, description_show
, NULL
);
833 acpi_device_sun_show(struct device
*dev
, struct device_attribute
*attr
,
835 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
837 unsigned long long sun
;
839 status
= acpi_evaluate_integer(acpi_dev
->handle
, "_SUN", NULL
, &sun
);
840 if (ACPI_FAILURE(status
))
843 return sprintf(buf
, "%llu\n", sun
);
845 static DEVICE_ATTR(sun
, 0444, acpi_device_sun_show
, NULL
);
847 static ssize_t
status_show(struct device
*dev
, struct device_attribute
*attr
,
849 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
851 unsigned long long sta
;
853 status
= acpi_evaluate_integer(acpi_dev
->handle
, "_STA", NULL
, &sta
);
854 if (ACPI_FAILURE(status
))
857 return sprintf(buf
, "%llu\n", sta
);
859 static DEVICE_ATTR_RO(status
);
861 static int acpi_device_setup_files(struct acpi_device
*dev
)
863 struct acpi_buffer buffer
= {ACPI_ALLOCATE_BUFFER
, NULL
};
868 * Devices gotten from FADT don't have a "path" attribute
871 result
= device_create_file(&dev
->dev
, &dev_attr_path
);
876 if (!list_empty(&dev
->pnp
.ids
)) {
877 result
= device_create_file(&dev
->dev
, &dev_attr_hid
);
881 result
= device_create_file(&dev
->dev
, &dev_attr_modalias
);
887 * If device has _STR, 'description' file is created
889 if (acpi_has_method(dev
->handle
, "_STR")) {
890 status
= acpi_evaluate_object(dev
->handle
, "_STR",
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
);
900 if (dev
->pnp
.type
.bus_address
)
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
);
905 if (acpi_has_method(dev
->handle
, "_SUN")) {
906 result
= device_create_file(&dev
->dev
, &dev_attr_sun
);
911 if (acpi_has_method(dev
->handle
, "_STA")) {
912 result
= device_create_file(&dev
->dev
, &dev_attr_status
);
918 * If device has _EJ0, 'eject' file is created that is used to trigger
919 * hot-removal function from userland.
921 if (acpi_has_method(dev
->handle
, "_EJ0")) {
922 result
= device_create_file(&dev
->dev
, &dev_attr_eject
);
927 if (dev
->flags
.power_manageable
) {
928 result
= device_create_file(&dev
->dev
, &dev_attr_power_state
);
932 if (dev
->power
.flags
.power_resources
)
933 result
= device_create_file(&dev
->dev
,
934 &dev_attr_real_power_state
);
941 static void acpi_device_remove_files(struct acpi_device
*dev
)
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
);
951 * If device has _STR, remove 'description' file
953 if (acpi_has_method(dev
->handle
, "_STR")) {
954 kfree(dev
->pnp
.str_obj
);
955 device_remove_file(&dev
->dev
, &dev_attr_description
);
958 * If device has _EJ0, remove 'eject' file.
960 if (acpi_has_method(dev
->handle
, "_EJ0"))
961 device_remove_file(&dev
->dev
, &dev_attr_eject
);
963 if (acpi_has_method(dev
->handle
, "_SUN"))
964 device_remove_file(&dev
->dev
, &dev_attr_sun
);
966 if (dev
->pnp
.unique_id
)
967 device_remove_file(&dev
->dev
, &dev_attr_uid
);
968 if (dev
->pnp
.type
.bus_address
)
969 device_remove_file(&dev
->dev
, &dev_attr_adr
);
970 device_remove_file(&dev
->dev
, &dev_attr_modalias
);
971 device_remove_file(&dev
->dev
, &dev_attr_hid
);
972 if (acpi_has_method(dev
->handle
, "_STA"))
973 device_remove_file(&dev
->dev
, &dev_attr_status
);
975 device_remove_file(&dev
->dev
, &dev_attr_path
);
977 /* --------------------------------------------------------------------------
979 -------------------------------------------------------------------------- */
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.
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.
990 static bool acpi_of_match_device(struct acpi_device
*adev
,
991 const struct of_device_id
*of_match_table
)
993 const union acpi_object
*of_compatible
, *obj
;
999 of_compatible
= adev
->data
.of_compatible
;
1000 if (!of_match_table
|| !of_compatible
)
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. */
1008 obj
= of_compatible
;
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
;
1014 for (id
= of_match_table
; id
->compatible
[0]; id
++)
1015 if (!strcasecmp(obj
->string
.pointer
, id
->compatible
))
1022 static bool __acpi_match_device_cls(const struct acpi_device_id
*id
,
1023 struct acpi_hardware_id
*hwid
)
1025 int i
, msk
, byte_shift
;
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;
1038 sprintf(buf
, "%02x", (id
->cls
>> byte_shift
) & msk
);
1039 if (strncmp(buf
, &hwid
->id
[(i
- 1) * 2], 2))
1045 static const struct acpi_device_id
*__acpi_match_device(
1046 struct acpi_device
*device
,
1047 const struct acpi_device_id
*ids
,
1048 const struct of_device_id
*of_ids
)
1050 const struct acpi_device_id
*id
;
1051 struct acpi_hardware_id
*hwid
;
1054 * If the device is not present, it is unnecessary to load device
1057 if (!device
|| !device
->status
.present
)
1060 list_for_each_entry(hwid
, &device
->pnp
.ids
, list
) {
1061 /* First, check the ACPI/PNP IDs provided by the caller. */
1062 for (id
= ids
; id
->id
[0] || id
->cls
; id
++) {
1063 if (id
->id
[0] && !strcmp((char *) id
->id
, hwid
->id
))
1065 else if (id
->cls
&& __acpi_match_device_cls(id
, hwid
))
1070 * Next, check ACPI_DT_NAMESPACE_HID and try to match the
1071 * "compatible" property if found.
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.
1077 if (!strcmp(ACPI_DT_NAMESPACE_HID
, hwid
->id
)
1078 && acpi_of_match_device(device
, of_ids
))
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.
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
1093 * Return a pointer to the first matching ID on success or %NULL on failure.
1095 const struct acpi_device_id
*acpi_match_device(const struct acpi_device_id
*ids
,
1096 const struct device
*dev
)
1098 return __acpi_match_device(acpi_companion_match(dev
), ids
, NULL
);
1100 EXPORT_SYMBOL_GPL(acpi_match_device
);
1102 int acpi_match_device_ids(struct acpi_device
*device
,
1103 const struct acpi_device_id
*ids
)
1105 return __acpi_match_device(device
, ids
, NULL
) ? 0 : -ENOENT
;
1107 EXPORT_SYMBOL(acpi_match_device_ids
);
1109 bool acpi_driver_match_device(struct device
*dev
,
1110 const struct device_driver
*drv
)
1112 if (!drv
->acpi_match_table
)
1113 return acpi_of_match_device(ACPI_COMPANION(dev
),
1114 drv
->of_match_table
);
1116 return !!__acpi_match_device(acpi_companion_match(dev
),
1117 drv
->acpi_match_table
, drv
->of_match_table
);
1119 EXPORT_SYMBOL_GPL(acpi_driver_match_device
);
1121 static void acpi_free_power_resources_lists(struct acpi_device
*device
)
1125 if (device
->wakeup
.flags
.valid
)
1126 acpi_power_resources_list_free(&device
->wakeup
.resources
);
1128 if (!device
->power
.flags
.power_resources
)
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
);
1137 static void acpi_device_release(struct device
*dev
)
1139 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
1141 acpi_free_properties(acpi_dev
);
1142 acpi_free_pnp_ids(&acpi_dev
->pnp
);
1143 acpi_free_power_resources_lists(acpi_dev
);
1147 static int acpi_bus_match(struct device
*dev
, struct device_driver
*drv
)
1149 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
1150 struct acpi_driver
*acpi_drv
= to_acpi_driver(drv
);
1152 return acpi_dev
->flags
.match_driver
1153 && !acpi_match_device_ids(acpi_dev
, acpi_drv
->ids
);
1156 static int acpi_device_uevent(struct device
*dev
, struct kobj_uevent_env
*env
)
1158 return __acpi_device_uevent_modalias(to_acpi_device(dev
), env
);
1161 static void acpi_device_notify(acpi_handle handle
, u32 event
, void *data
)
1163 struct acpi_device
*device
= data
;
1165 device
->driver
->ops
.notify(device
, event
);
1168 static void acpi_device_notify_fixed(void *data
)
1170 struct acpi_device
*device
= data
;
1172 /* Fixed hardware devices have no handles */
1173 acpi_device_notify(NULL
, ACPI_FIXED_HARDWARE_EVENT
, device
);
1176 static u32
acpi_device_fixed_event(void *data
)
1178 acpi_os_execute(OSL_NOTIFY_HANDLER
, acpi_device_notify_fixed
, data
);
1179 return ACPI_INTERRUPT_HANDLED
;
1182 static int acpi_device_install_notify_handler(struct acpi_device
*device
)
1186 if (device
->device_type
== ACPI_BUS_TYPE_POWER_BUTTON
)
1188 acpi_install_fixed_event_handler(ACPI_EVENT_POWER_BUTTON
,
1189 acpi_device_fixed_event
,
1191 else if (device
->device_type
== ACPI_BUS_TYPE_SLEEP_BUTTON
)
1193 acpi_install_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON
,
1194 acpi_device_fixed_event
,
1197 status
= acpi_install_notify_handler(device
->handle
,
1202 if (ACPI_FAILURE(status
))
1207 static void acpi_device_remove_notify_handler(struct acpi_device
*device
)
1209 if (device
->device_type
== ACPI_BUS_TYPE_POWER_BUTTON
)
1210 acpi_remove_fixed_event_handler(ACPI_EVENT_POWER_BUTTON
,
1211 acpi_device_fixed_event
);
1212 else if (device
->device_type
== ACPI_BUS_TYPE_SLEEP_BUTTON
)
1213 acpi_remove_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON
,
1214 acpi_device_fixed_event
);
1216 acpi_remove_notify_handler(device
->handle
, ACPI_DEVICE_NOTIFY
,
1217 acpi_device_notify
);
1220 static int acpi_device_probe(struct device
*dev
)
1222 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
1223 struct acpi_driver
*acpi_drv
= to_acpi_driver(dev
->driver
);
1226 if (acpi_dev
->handler
&& !acpi_is_pnp_device(acpi_dev
))
1229 if (!acpi_drv
->ops
.add
)
1232 ret
= acpi_drv
->ops
.add(acpi_dev
);
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
));
1241 if (acpi_drv
->ops
.notify
) {
1242 ret
= acpi_device_install_notify_handler(acpi_dev
);
1244 if (acpi_drv
->ops
.remove
)
1245 acpi_drv
->ops
.remove(acpi_dev
);
1247 acpi_dev
->driver
= NULL
;
1248 acpi_dev
->driver_data
= NULL
;
1253 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Found driver [%s] for device [%s]\n",
1254 acpi_drv
->name
, acpi_dev
->pnp
.bus_id
));
1259 static int acpi_device_remove(struct device
* dev
)
1261 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
1262 struct acpi_driver
*acpi_drv
= acpi_dev
->driver
;
1265 if (acpi_drv
->ops
.notify
)
1266 acpi_device_remove_notify_handler(acpi_dev
);
1267 if (acpi_drv
->ops
.remove
)
1268 acpi_drv
->ops
.remove(acpi_dev
);
1270 acpi_dev
->driver
= NULL
;
1271 acpi_dev
->driver_data
= NULL
;
1277 struct bus_type acpi_bus_type
= {
1279 .match
= acpi_bus_match
,
1280 .probe
= acpi_device_probe
,
1281 .remove
= acpi_device_remove
,
1282 .uevent
= acpi_device_uevent
,
1285 static void acpi_device_del(struct acpi_device
*device
)
1287 mutex_lock(&acpi_device_lock
);
1289 list_del(&device
->node
);
1291 list_del(&device
->wakeup_list
);
1292 mutex_unlock(&acpi_device_lock
);
1294 acpi_power_add_remove_device(device
, false);
1295 acpi_device_remove_files(device
);
1297 device
->remove(device
);
1299 device_del(&device
->dev
);
1302 static LIST_HEAD(acpi_device_del_list
);
1303 static DEFINE_MUTEX(acpi_device_del_lock
);
1305 static void acpi_device_del_work_fn(struct work_struct
*work_not_used
)
1308 struct acpi_device
*adev
;
1310 mutex_lock(&acpi_device_del_lock
);
1312 if (list_empty(&acpi_device_del_list
)) {
1313 mutex_unlock(&acpi_device_del_lock
);
1316 adev
= list_first_entry(&acpi_device_del_list
,
1317 struct acpi_device
, del_list
);
1318 list_del(&adev
->del_list
);
1320 mutex_unlock(&acpi_device_del_lock
);
1322 acpi_device_del(adev
);
1324 * Drop references to all power resources that might have been
1325 * used by the device.
1327 acpi_power_transition(adev
, ACPI_STATE_D3_COLD
);
1328 put_device(&adev
->dev
);
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.
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.
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).
1345 static void acpi_scan_drop_device(acpi_handle handle
, void *context
)
1347 static DECLARE_WORK(work
, acpi_device_del_work_fn
);
1348 struct acpi_device
*adev
= context
;
1350 mutex_lock(&acpi_device_del_lock
);
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
1362 if (list_empty(&acpi_device_del_list
))
1363 acpi_queue_hotplug_work(&work
);
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
;
1369 mutex_unlock(&acpi_device_del_lock
);
1372 static int acpi_get_device_data(acpi_handle handle
, struct acpi_device
**device
,
1373 void (*callback
)(void *))
1380 status
= acpi_get_data_full(handle
, acpi_scan_drop_device
,
1381 (void **)device
, callback
);
1382 if (ACPI_FAILURE(status
) || !*device
) {
1383 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "No context for object [%p]\n",
1390 int acpi_bus_get_device(acpi_handle handle
, struct acpi_device
**device
)
1392 return acpi_get_device_data(handle
, device
, NULL
);
1394 EXPORT_SYMBOL(acpi_bus_get_device
);
1396 static void get_acpi_device(void *dev
)
1399 get_device(&((struct acpi_device
*)dev
)->dev
);
1402 struct acpi_device
*acpi_bus_get_acpi_device(acpi_handle handle
)
1404 struct acpi_device
*adev
= NULL
;
1406 acpi_get_device_data(handle
, &adev
, get_acpi_device
);
1410 void acpi_bus_put_acpi_device(struct acpi_device
*adev
)
1412 put_device(&adev
->dev
);
1415 int acpi_device_add(struct acpi_device
*device
,
1416 void (*release
)(struct device
*))
1419 struct acpi_device_bus_id
*acpi_device_bus_id
, *new_bus_id
;
1422 if (device
->handle
) {
1425 status
= acpi_attach_data(device
->handle
, acpi_scan_drop_device
,
1427 if (ACPI_FAILURE(status
)) {
1428 acpi_handle_err(device
->handle
,
1429 "Unable to attach device data\n");
1437 * Link this device to its parent and siblings.
1439 INIT_LIST_HEAD(&device
->children
);
1440 INIT_LIST_HEAD(&device
->node
);
1441 INIT_LIST_HEAD(&device
->wakeup_list
);
1442 INIT_LIST_HEAD(&device
->physical_node_list
);
1443 INIT_LIST_HEAD(&device
->del_list
);
1444 mutex_init(&device
->physical_node_lock
);
1446 new_bus_id
= kzalloc(sizeof(struct acpi_device_bus_id
), GFP_KERNEL
);
1448 pr_err(PREFIX
"Memory allocation error\n");
1453 mutex_lock(&acpi_device_lock
);
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
1458 list_for_each_entry(acpi_device_bus_id
, &acpi_bus_id_list
, node
) {
1459 if (!strcmp(acpi_device_bus_id
->bus_id
,
1460 acpi_device_hid(device
))) {
1461 acpi_device_bus_id
->instance_no
++;
1468 acpi_device_bus_id
= new_bus_id
;
1469 strcpy(acpi_device_bus_id
->bus_id
, acpi_device_hid(device
));
1470 acpi_device_bus_id
->instance_no
= 0;
1471 list_add_tail(&acpi_device_bus_id
->node
, &acpi_bus_id_list
);
1473 dev_set_name(&device
->dev
, "%s:%02x", acpi_device_bus_id
->bus_id
, acpi_device_bus_id
->instance_no
);
1476 list_add_tail(&device
->node
, &device
->parent
->children
);
1478 if (device
->wakeup
.flags
.valid
)
1479 list_add_tail(&device
->wakeup_list
, &acpi_wakeup_device_list
);
1480 mutex_unlock(&acpi_device_lock
);
1483 device
->dev
.parent
= &device
->parent
->dev
;
1484 device
->dev
.bus
= &acpi_bus_type
;
1485 device
->dev
.release
= release
;
1486 result
= device_add(&device
->dev
);
1488 dev_err(&device
->dev
, "Error registering device\n");
1492 result
= acpi_device_setup_files(device
);
1494 printk(KERN_ERR PREFIX
"Error creating sysfs interface for device %s\n",
1495 dev_name(&device
->dev
));
1500 mutex_lock(&acpi_device_lock
);
1502 list_del(&device
->node
);
1503 list_del(&device
->wakeup_list
);
1504 mutex_unlock(&acpi_device_lock
);
1507 acpi_detach_data(device
->handle
, acpi_scan_drop_device
);
1511 struct acpi_device
*acpi_get_next_child(struct device
*dev
,
1512 struct acpi_device
*child
)
1514 struct acpi_device
*adev
= ACPI_COMPANION(dev
);
1515 struct list_head
*head
, *next
;
1520 head
= &adev
->children
;
1521 if (list_empty(head
))
1525 return list_first_entry(head
, struct acpi_device
, node
);
1527 next
= child
->node
.next
;
1528 return next
== head
? NULL
: list_entry(next
, struct acpi_device
, node
);
1531 /* --------------------------------------------------------------------------
1533 -------------------------------------------------------------------------- */
1535 * acpi_bus_register_driver - register a driver with the ACPI bus
1536 * @driver: driver being registered
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.
1542 int acpi_bus_register_driver(struct acpi_driver
*driver
)
1548 driver
->drv
.name
= driver
->name
;
1549 driver
->drv
.bus
= &acpi_bus_type
;
1550 driver
->drv
.owner
= driver
->owner
;
1552 ret
= driver_register(&driver
->drv
);
1556 EXPORT_SYMBOL(acpi_bus_register_driver
);
1559 * acpi_bus_unregister_driver - unregisters a driver with the ACPI bus
1560 * @driver: driver to unregister
1562 * Unregisters a driver with the ACPI bus. Searches the namespace for all
1563 * devices that match the driver's criteria and unbinds.
1565 void acpi_bus_unregister_driver(struct acpi_driver
*driver
)
1567 driver_unregister(&driver
->drv
);
1570 EXPORT_SYMBOL(acpi_bus_unregister_driver
);
1572 /* --------------------------------------------------------------------------
1574 -------------------------------------------------------------------------- */
1575 static struct acpi_device
*acpi_bus_get_parent(acpi_handle handle
)
1577 struct acpi_device
*device
= NULL
;
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.
1589 status
= acpi_get_parent(handle
, &handle
);
1590 if (ACPI_FAILURE(status
))
1591 return status
== AE_NULL_ENTRY
? NULL
: acpi_root
;
1592 } while (acpi_bus_get_device(handle
, &device
));
1597 acpi_bus_get_ejd(acpi_handle handle
, acpi_handle
*ejd
)
1601 struct acpi_buffer buffer
= {ACPI_ALLOCATE_BUFFER
, NULL
};
1602 union acpi_object
*obj
;
1604 status
= acpi_get_handle(handle
, "_EJD", &tmp
);
1605 if (ACPI_FAILURE(status
))
1608 status
= acpi_evaluate_object(handle
, "_EJD", NULL
, &buffer
);
1609 if (ACPI_SUCCESS(status
)) {
1610 obj
= buffer
.pointer
;
1611 status
= acpi_get_handle(ACPI_ROOT_OBJECT
, obj
->string
.pointer
,
1613 kfree(buffer
.pointer
);
1617 EXPORT_SYMBOL_GPL(acpi_bus_get_ejd
);
1619 static int acpi_bus_extract_wakeup_device_power_package(acpi_handle handle
,
1620 struct acpi_device_wakeup
*wakeup
)
1622 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
1623 union acpi_object
*package
= NULL
;
1624 union acpi_object
*element
= NULL
;
1631 INIT_LIST_HEAD(&wakeup
->resources
);
1634 status
= acpi_evaluate_object(handle
, "_PRW", NULL
, &buffer
);
1635 if (ACPI_FAILURE(status
)) {
1636 ACPI_EXCEPTION((AE_INFO
, status
, "Evaluating _PRW"));
1640 package
= (union acpi_object
*)buffer
.pointer
;
1642 if (!package
|| package
->package
.count
< 2)
1645 element
= &(package
->package
.elements
[0]);
1649 if (element
->type
== ACPI_TYPE_PACKAGE
) {
1650 if ((element
->package
.count
< 2) ||
1651 (element
->package
.elements
[0].type
!=
1652 ACPI_TYPE_LOCAL_REFERENCE
)
1653 || (element
->package
.elements
[1].type
!= ACPI_TYPE_INTEGER
))
1656 wakeup
->gpe_device
=
1657 element
->package
.elements
[0].reference
.handle
;
1658 wakeup
->gpe_number
=
1659 (u32
) element
->package
.elements
[1].integer
.value
;
1660 } else if (element
->type
== ACPI_TYPE_INTEGER
) {
1661 wakeup
->gpe_device
= NULL
;
1662 wakeup
->gpe_number
= element
->integer
.value
;
1667 element
= &(package
->package
.elements
[1]);
1668 if (element
->type
!= ACPI_TYPE_INTEGER
)
1671 wakeup
->sleep_state
= element
->integer
.value
;
1673 err
= acpi_extract_power_resources(package
, 2, &wakeup
->resources
);
1677 if (!list_empty(&wakeup
->resources
)) {
1680 err
= acpi_power_wakeup_list_init(&wakeup
->resources
,
1683 acpi_handle_warn(handle
, "Retrieving current states "
1684 "of wakeup power resources failed\n");
1685 acpi_power_resources_list_free(&wakeup
->resources
);
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
;
1697 kfree(buffer
.pointer
);
1701 static void acpi_wakeup_gpe_init(struct acpi_device
*device
)
1703 static const struct acpi_device_id button_device_ids
[] = {
1709 struct acpi_device_wakeup
*wakeup
= &device
->wakeup
;
1711 acpi_event_status event_status
;
1713 wakeup
->flags
.notifier_present
= 0;
1715 /* Power button, Lid switch always enable wakeup */
1716 if (!acpi_match_device_ids(device
, button_device_ids
)) {
1717 wakeup
->flags
.run_wake
= 1;
1718 if (!acpi_match_device_ids(device
, &button_device_ids
[1])) {
1719 /* Do not use Lid/sleep button for S5 wakeup */
1720 if (wakeup
->sleep_state
== ACPI_STATE_S5
)
1721 wakeup
->sleep_state
= ACPI_STATE_S4
;
1723 acpi_mark_gpe_for_wake(wakeup
->gpe_device
, wakeup
->gpe_number
);
1724 device_set_wakeup_capable(&device
->dev
, true);
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
,
1732 if (ACPI_FAILURE(status
))
1735 wakeup
->flags
.run_wake
= !!(event_status
& ACPI_EVENT_FLAG_HAS_HANDLER
);
1738 static void acpi_bus_get_wakeup_device_flags(struct acpi_device
*device
)
1742 /* Presence of _PRW indicates wake capable */
1743 if (!acpi_has_method(device
->handle
, "_PRW"))
1746 err
= acpi_bus_extract_wakeup_device_power_package(device
->handle
,
1749 dev_err(&device
->dev
, "_PRW evaluation error: %d\n", err
);
1753 device
->wakeup
.flags
.valid
= 1;
1754 device
->wakeup
.prepare_count
= 0;
1755 acpi_wakeup_gpe_init(device
);
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.
1762 err
= acpi_device_sleep_wake(device
, 0, 0, 0);
1764 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
1765 "error in _DSW or _PSW evaluation\n"));
1768 static void acpi_bus_init_power_state(struct acpi_device
*device
, int state
)
1770 struct acpi_device_power_state
*ps
= &device
->power
.states
[state
];
1771 char pathname
[5] = { '_', 'P', 'R', '0' + state
, '\0' };
1772 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
1775 INIT_LIST_HEAD(&ps
->resources
);
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
;
1782 if (buffer
.length
&& package
1783 && package
->type
== ACPI_TYPE_PACKAGE
1784 && package
->package
.count
) {
1785 int err
= acpi_extract_power_resources(package
, 0,
1788 device
->power
.flags
.power_resources
= 1;
1790 ACPI_FREE(buffer
.pointer
);
1793 /* Evaluate "_PSx" to see if we can do explicit sets */
1795 if (acpi_has_method(device
->handle
, pathname
))
1796 ps
->flags
.explicit_set
= 1;
1798 /* State is valid if there are means to put the device into it. */
1799 if (!list_empty(&ps
->resources
) || ps
->flags
.explicit_set
)
1800 ps
->flags
.valid
= 1;
1802 ps
->power
= -1; /* Unknown - driver assigned */
1803 ps
->latency
= -1; /* Unknown - driver assigned */
1806 static void acpi_bus_get_power_flags(struct acpi_device
*device
)
1810 /* Presence of _PS0|_PR0 indicates 'power manageable' */
1811 if (!acpi_has_method(device
->handle
, "_PS0") &&
1812 !acpi_has_method(device
->handle
, "_PR0"))
1815 device
->flags
.power_manageable
= 1;
1818 * Power Management Flags
1820 if (acpi_has_method(device
->handle
, "_PSC"))
1821 device
->power
.flags
.explicit_get
= 1;
1823 if (acpi_has_method(device
->handle
, "_IRC"))
1824 device
->power
.flags
.inrush_current
= 1;
1826 if (acpi_has_method(device
->handle
, "_DSW"))
1827 device
->power
.flags
.dsw_present
= 1;
1830 * Enumerate supported power management states
1832 for (i
= ACPI_STATE_D0
; i
<= ACPI_STATE_D3_HOT
; i
++)
1833 acpi_bus_init_power_state(device
, i
);
1835 INIT_LIST_HEAD(&device
->power
.states
[ACPI_STATE_D3_COLD
].resources
);
1836 if (!list_empty(&device
->power
.states
[ACPI_STATE_D3_HOT
].resources
))
1837 device
->power
.states
[ACPI_STATE_D3_COLD
].flags
.valid
= 1;
1839 /* Set defaults for D0 and D3hot states (always valid) */
1840 device
->power
.states
[ACPI_STATE_D0
].flags
.valid
= 1;
1841 device
->power
.states
[ACPI_STATE_D0
].power
= 100;
1842 device
->power
.states
[ACPI_STATE_D3_HOT
].flags
.valid
= 1;
1844 if (acpi_bus_init_power(device
))
1845 device
->flags
.power_manageable
= 0;
1848 static void acpi_bus_get_flags(struct acpi_device
*device
)
1850 /* Presence of _STA indicates 'dynamic_status' */
1851 if (acpi_has_method(device
->handle
, "_STA"))
1852 device
->flags
.dynamic_status
= 1;
1854 /* Presence of _RMV indicates 'removable' */
1855 if (acpi_has_method(device
->handle
, "_RMV"))
1856 device
->flags
.removable
= 1;
1858 /* Presence of _EJD|_EJ0 indicates 'ejectable' */
1859 if (acpi_has_method(device
->handle
, "_EJD") ||
1860 acpi_has_method(device
->handle
, "_EJ0"))
1861 device
->flags
.ejectable
= 1;
1864 static void acpi_device_get_busid(struct acpi_device
*device
)
1866 char bus_id
[5] = { '?', 0 };
1867 struct acpi_buffer buffer
= { sizeof(bus_id
), bus_id
};
1873 * The device's Bus ID is simply the object name.
1874 * TBD: Shouldn't this value be unique (within the ACPI namespace)?
1876 if (ACPI_IS_ROOT_DEVICE(device
)) {
1877 strcpy(device
->pnp
.bus_id
, "ACPI");
1881 switch (device
->device_type
) {
1882 case ACPI_BUS_TYPE_POWER_BUTTON
:
1883 strcpy(device
->pnp
.bus_id
, "PWRF");
1885 case ACPI_BUS_TYPE_SLEEP_BUTTON
:
1886 strcpy(device
->pnp
.bus_id
, "SLPF");
1889 acpi_get_name(device
->handle
, ACPI_SINGLE_NAME
, &buffer
);
1890 /* Clean up trailing underscores (if any) */
1891 for (i
= 3; i
> 1; i
--) {
1892 if (bus_id
[i
] == '_')
1897 strcpy(device
->pnp
.bus_id
, bus_id
);
1903 * acpi_ata_match - see if an acpi object is an ATA device
1905 * If an acpi object has one of the ACPI ATA methods defined,
1906 * then we can safely call it an ATA device.
1908 bool acpi_ata_match(acpi_handle handle
)
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");
1917 * acpi_bay_match - see if an acpi object is an ejectable driver bay
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
1922 bool acpi_bay_match(acpi_handle handle
)
1924 acpi_handle phandle
;
1926 if (!acpi_has_method(handle
, "_EJ0"))
1928 if (acpi_ata_match(handle
))
1930 if (ACPI_FAILURE(acpi_get_parent(handle
, &phandle
)))
1933 return acpi_ata_match(phandle
);
1936 bool acpi_device_is_battery(struct acpi_device
*adev
)
1938 struct acpi_hardware_id
*hwid
;
1940 list_for_each_entry(hwid
, &adev
->pnp
.ids
, list
)
1941 if (!strcmp("PNP0C0A", hwid
->id
))
1947 static bool is_ejectable_bay(struct acpi_device
*adev
)
1949 acpi_handle handle
= adev
->handle
;
1951 if (acpi_has_method(handle
, "_EJ0") && acpi_device_is_battery(adev
))
1954 return acpi_bay_match(handle
);
1958 * acpi_dock_match - see if an acpi object has a _DCK method
1960 bool acpi_dock_match(acpi_handle handle
)
1962 return acpi_has_method(handle
, "_DCK");
1966 acpi_backlight_cap_match(acpi_handle handle
, u32 level
, void *context
,
1967 void **return_value
)
1969 long *cap
= context
;
1971 if (acpi_has_method(handle
, "_BCM") &&
1972 acpi_has_method(handle
, "_BCL")) {
1973 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Found generic backlight "
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
;
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
1993 long acpi_is_video_device(acpi_handle handle
)
1995 long video_caps
= 0;
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
;
2001 /* Is this device able to retrieve a video ROM ? */
2002 if (acpi_has_method(handle
, "_ROM"))
2003 video_caps
|= ACPI_VIDEO_ROM_AVAILABLE
;
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
;
2011 /* Only check for backlight functionality if one of the above hit. */
2013 acpi_walk_namespace(ACPI_TYPE_DEVICE
, handle
,
2014 ACPI_UINT32_MAX
, acpi_backlight_cap_match
, NULL
,
2019 EXPORT_SYMBOL(acpi_is_video_device
);
2021 const char *acpi_device_hid(struct acpi_device
*device
)
2023 struct acpi_hardware_id
*hid
;
2025 if (list_empty(&device
->pnp
.ids
))
2028 hid
= list_first_entry(&device
->pnp
.ids
, struct acpi_hardware_id
, list
);
2031 EXPORT_SYMBOL(acpi_device_hid
);
2033 static void acpi_add_id(struct acpi_device_pnp
*pnp
, const char *dev_id
)
2035 struct acpi_hardware_id
*id
;
2037 id
= kmalloc(sizeof(*id
), GFP_KERNEL
);
2041 id
->id
= kstrdup(dev_id
, GFP_KERNEL
);
2047 list_add_tail(&id
->list
, &pnp
->ids
);
2048 pnp
->type
.hardware_id
= 1;
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.
2056 static bool acpi_ibm_smbus_match(acpi_handle handle
)
2058 char node_name
[ACPI_PATH_SEGMENT_LENGTH
];
2059 struct acpi_buffer path
= { sizeof(node_name
), node_name
};
2061 if (!dmi_name_in_vendors("IBM"))
2064 /* Look for SMBS object */
2065 if (ACPI_FAILURE(acpi_get_name(handle
, ACPI_SINGLE_NAME
, &path
)) ||
2066 strcmp("SMBS", path
.pointer
))
2069 /* Does it have the necessary (but misnamed) methods? */
2070 if (acpi_has_method(handle
, "SBI") &&
2071 acpi_has_method(handle
, "SBR") &&
2072 acpi_has_method(handle
, "SBW"))
2078 static bool acpi_object_is_system_bus(acpi_handle handle
)
2082 if (ACPI_SUCCESS(acpi_get_handle(NULL
, "\\_SB", &tmp
)) &&
2085 if (ACPI_SUCCESS(acpi_get_handle(NULL
, "\\_TZ", &tmp
)) &&
2092 static void acpi_set_pnp_ids(acpi_handle handle
, struct acpi_device_pnp
*pnp
,
2096 struct acpi_device_info
*info
;
2097 struct acpi_pnp_device_id_list
*cid_list
;
2100 switch (device_type
) {
2101 case ACPI_BUS_TYPE_DEVICE
:
2102 if (handle
== ACPI_ROOT_OBJECT
) {
2103 acpi_add_id(pnp
, ACPI_SYSTEM_HID
);
2107 status
= acpi_get_object_info(handle
, &info
);
2108 if (ACPI_FAILURE(status
)) {
2109 pr_err(PREFIX
"%s: Error reading device info\n",
2114 if (info
->valid
& ACPI_VALID_HID
) {
2115 acpi_add_id(pnp
, info
->hardware_id
.string
);
2116 pnp
->type
.platform_id
= 1;
2118 if (info
->valid
& ACPI_VALID_CID
) {
2119 cid_list
= &info
->compatible_id_list
;
2120 for (i
= 0; i
< cid_list
->count
; i
++)
2121 acpi_add_id(pnp
, cid_list
->ids
[i
].string
);
2123 if (info
->valid
& ACPI_VALID_ADR
) {
2124 pnp
->bus_address
= info
->address
;
2125 pnp
->type
.bus_address
= 1;
2127 if (info
->valid
& ACPI_VALID_UID
)
2128 pnp
->unique_id
= kstrdup(info
->unique_id
.string
,
2130 if (info
->valid
& ACPI_VALID_CLS
)
2131 acpi_add_id(pnp
, info
->class_code
.string
);
2136 * Some devices don't reliably have _HIDs & _CIDs, so add
2137 * synthetic HIDs to make sure drivers can find them.
2139 if (acpi_is_video_device(handle
))
2140 acpi_add_id(pnp
, ACPI_VIDEO_HID
);
2141 else if (acpi_bay_match(handle
))
2142 acpi_add_id(pnp
, ACPI_BAY_HID
);
2143 else if (acpi_dock_match(handle
))
2144 acpi_add_id(pnp
, ACPI_DOCK_HID
);
2145 else if (acpi_ibm_smbus_match(handle
))
2146 acpi_add_id(pnp
, ACPI_SMBUS_IBM_HID
);
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
);
2151 strcpy(pnp
->device_name
, ACPI_BUS_DEVICE_NAME
);
2152 strcpy(pnp
->device_class
, ACPI_BUS_CLASS
);
2156 case ACPI_BUS_TYPE_POWER
:
2157 acpi_add_id(pnp
, ACPI_POWER_HID
);
2159 case ACPI_BUS_TYPE_PROCESSOR
:
2160 acpi_add_id(pnp
, ACPI_PROCESSOR_OBJECT_HID
);
2162 case ACPI_BUS_TYPE_THERMAL
:
2163 acpi_add_id(pnp
, ACPI_THERMAL_HID
);
2165 case ACPI_BUS_TYPE_POWER_BUTTON
:
2166 acpi_add_id(pnp
, ACPI_BUTTON_HID_POWERF
);
2168 case ACPI_BUS_TYPE_SLEEP_BUTTON
:
2169 acpi_add_id(pnp
, ACPI_BUTTON_HID_SLEEPF
);
2174 void acpi_free_pnp_ids(struct acpi_device_pnp
*pnp
)
2176 struct acpi_hardware_id
*id
, *tmp
;
2178 list_for_each_entry_safe(id
, tmp
, &pnp
->ids
, list
) {
2182 kfree(pnp
->unique_id
);
2185 static void acpi_init_coherency(struct acpi_device
*adev
)
2187 unsigned long long cca
= 0;
2189 struct acpi_device
*parent
= adev
->parent
;
2191 if (parent
&& parent
->flags
.cca_seen
) {
2193 * From ACPI spec, OSPM will ignore _CCA if an ancestor
2196 adev
->flags
.cca_seen
= 1;
2197 cca
= parent
->flags
.coherent_dma
;
2199 status
= acpi_evaluate_integer(adev
->handle
, "_CCA",
2201 if (ACPI_SUCCESS(status
))
2202 adev
->flags
.cca_seen
= 1;
2203 else if (!IS_ENABLED(CONFIG_ACPI_CCA_REQUIRED
))
2205 * If architecture does not specify that _CCA is
2206 * required for DMA-able devices (e.g. x86),
2207 * we default to _CCA=1.
2211 acpi_handle_debug(adev
->handle
,
2212 "ACPI device is missing _CCA.\n");
2215 adev
->flags
.coherent_dma
= cca
;
2218 void acpi_init_device_object(struct acpi_device
*device
, acpi_handle handle
,
2219 int type
, unsigned long long sta
)
2221 INIT_LIST_HEAD(&device
->pnp
.ids
);
2222 device
->device_type
= type
;
2223 device
->handle
= handle
;
2224 device
->parent
= acpi_bus_get_parent(handle
);
2225 device
->fwnode
.type
= FWNODE_ACPI
;
2226 acpi_set_device_status(device
, sta
);
2227 acpi_device_get_busid(device
);
2228 acpi_set_pnp_ids(handle
, &device
->pnp
, type
);
2229 acpi_init_properties(device
);
2230 acpi_bus_get_flags(device
);
2231 device
->flags
.match_driver
= false;
2232 device
->flags
.initialized
= true;
2233 device
->flags
.visited
= false;
2234 device_initialize(&device
->dev
);
2235 dev_set_uevent_suppress(&device
->dev
, true);
2236 acpi_init_coherency(device
);
2239 void acpi_device_add_finalize(struct acpi_device
*device
)
2241 dev_set_uevent_suppress(&device
->dev
, false);
2242 kobject_uevent(&device
->dev
.kobj
, KOBJ_ADD
);
2245 static int acpi_add_single_object(struct acpi_device
**child
,
2246 acpi_handle handle
, int type
,
2247 unsigned long long sta
)
2250 struct acpi_device
*device
;
2251 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
2253 device
= kzalloc(sizeof(struct acpi_device
), GFP_KERNEL
);
2255 printk(KERN_ERR PREFIX
"Memory allocation error\n");
2259 acpi_init_device_object(device
, handle
, type
, sta
);
2260 acpi_bus_get_power_flags(device
);
2261 acpi_bus_get_wakeup_device_flags(device
);
2263 result
= acpi_device_add(device
, acpi_device_release
);
2265 acpi_device_release(&device
->dev
);
2269 acpi_power_add_remove_device(device
, true);
2270 acpi_device_add_finalize(device
);
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
);
2280 static int acpi_bus_type_and_status(acpi_handle handle
, int *type
,
2281 unsigned long long *sta
)
2284 acpi_object_type acpi_type
;
2286 status
= acpi_get_type(handle
, &acpi_type
);
2287 if (ACPI_FAILURE(status
))
2290 switch (acpi_type
) {
2291 case ACPI_TYPE_ANY
: /* for ACPI_ROOT_OBJECT */
2292 case ACPI_TYPE_DEVICE
:
2293 *type
= ACPI_BUS_TYPE_DEVICE
;
2294 status
= acpi_bus_get_status_handle(handle
, sta
);
2295 if (ACPI_FAILURE(status
))
2298 case ACPI_TYPE_PROCESSOR
:
2299 *type
= ACPI_BUS_TYPE_PROCESSOR
;
2300 status
= acpi_bus_get_status_handle(handle
, sta
);
2301 if (ACPI_FAILURE(status
))
2304 case ACPI_TYPE_THERMAL
:
2305 *type
= ACPI_BUS_TYPE_THERMAL
;
2306 *sta
= ACPI_STA_DEFAULT
;
2308 case ACPI_TYPE_POWER
:
2309 *type
= ACPI_BUS_TYPE_POWER
;
2310 *sta
= ACPI_STA_DEFAULT
;
2319 bool acpi_device_is_present(struct acpi_device
*adev
)
2321 if (adev
->status
.present
|| adev
->status
.functional
)
2324 adev
->flags
.initialized
= false;
2328 static bool acpi_scan_handler_matching(struct acpi_scan_handler
*handler
,
2330 const struct acpi_device_id
**matchid
)
2332 const struct acpi_device_id
*devid
;
2335 return handler
->match(idstr
, matchid
);
2337 for (devid
= handler
->ids
; devid
->id
[0]; devid
++)
2338 if (!strcmp((char *)devid
->id
, idstr
)) {
2348 static struct acpi_scan_handler
*acpi_scan_match_handler(char *idstr
,
2349 const struct acpi_device_id
**matchid
)
2351 struct acpi_scan_handler
*handler
;
2353 list_for_each_entry(handler
, &acpi_scan_handlers_list
, list_node
)
2354 if (acpi_scan_handler_matching(handler
, idstr
, matchid
))
2360 void acpi_scan_hotplug_enabled(struct acpi_hotplug_profile
*hotplug
, bool val
)
2362 if (!!hotplug
->enabled
== !!val
)
2365 mutex_lock(&acpi_scan_lock
);
2367 hotplug
->enabled
= val
;
2369 mutex_unlock(&acpi_scan_lock
);
2372 static void acpi_scan_init_hotplug(struct acpi_device
*adev
)
2374 struct acpi_hardware_id
*hwid
;
2376 if (acpi_dock_match(adev
->handle
) || is_ejectable_bay(adev
)) {
2377 acpi_dock_add(adev
);
2380 list_for_each_entry(hwid
, &adev
->pnp
.ids
, list
) {
2381 struct acpi_scan_handler
*handler
;
2383 handler
= acpi_scan_match_handler(hwid
->id
, NULL
);
2385 adev
->flags
.hotplug_notify
= true;
2391 static void acpi_device_dep_initialize(struct acpi_device
*adev
)
2393 struct acpi_dep_data
*dep
;
2394 struct acpi_handle_list dep_devices
;
2398 if (!acpi_has_method(adev
->handle
, "_DEP"))
2401 status
= acpi_evaluate_reference(adev
->handle
, "_DEP", NULL
,
2403 if (ACPI_FAILURE(status
)) {
2404 dev_dbg(&adev
->dev
, "Failed to evaluate _DEP.\n");
2408 for (i
= 0; i
< dep_devices
.count
; i
++) {
2409 struct acpi_device_info
*info
;
2412 status
= acpi_get_object_info(dep_devices
.handles
[i
], &info
);
2413 if (ACPI_FAILURE(status
)) {
2414 dev_dbg(&adev
->dev
, "Error reading _DEP device info\n");
2419 * Skip the dependency of Windows System Power
2420 * Management Controller
2422 skip
= info
->valid
& ACPI_VALID_HID
&&
2423 !strcmp(info
->hardware_id
.string
, "INT3396");
2430 dep
= kzalloc(sizeof(struct acpi_dep_data
), GFP_KERNEL
);
2434 dep
->master
= dep_devices
.handles
[i
];
2435 dep
->slave
= adev
->handle
;
2438 mutex_lock(&acpi_dep_list_lock
);
2439 list_add_tail(&dep
->node
, &acpi_dep_list
);
2440 mutex_unlock(&acpi_dep_list_lock
);
2444 static acpi_status
acpi_bus_check_add(acpi_handle handle
, u32 lvl_not_used
,
2445 void *not_used
, void **return_value
)
2447 struct acpi_device
*device
= NULL
;
2449 unsigned long long sta
;
2452 acpi_bus_get_device(handle
, &device
);
2456 result
= acpi_bus_type_and_status(handle
, &type
, &sta
);
2460 if (type
== ACPI_BUS_TYPE_POWER
) {
2461 acpi_add_power_resource(handle
);
2465 acpi_add_single_object(&device
, handle
, type
, sta
);
2467 return AE_CTRL_DEPTH
;
2469 acpi_scan_init_hotplug(device
);
2470 acpi_device_dep_initialize(device
);
2474 *return_value
= device
;
2479 static int acpi_check_spi_i2c_slave(struct acpi_resource
*ares
, void *data
)
2481 bool *is_spi_i2c_slave_p
= data
;
2483 if (ares
->type
!= ACPI_RESOURCE_TYPE_SERIAL_BUS
)
2487 * devices that are connected to UART still need to be enumerated to
2490 if (ares
->data
.common_serial_bus
.type
!= ACPI_RESOURCE_SERIAL_TYPE_UART
)
2491 *is_spi_i2c_slave_p
= true;
2493 /* no need to do more checking */
2497 static void acpi_default_enumeration(struct acpi_device
*device
)
2499 struct list_head resource_list
;
2500 bool is_spi_i2c_slave
= false;
2503 * Do not enemerate SPI/I2C slaves as they will be enuerated by their
2504 * respective parents.
2506 INIT_LIST_HEAD(&resource_list
);
2507 acpi_dev_get_resources(device
, &resource_list
, acpi_check_spi_i2c_slave
,
2509 acpi_dev_free_resource_list(&resource_list
);
2510 if (!is_spi_i2c_slave
)
2511 acpi_create_platform_device(device
);
2514 static const struct acpi_device_id generic_device_ids
[] = {
2515 {ACPI_DT_NAMESPACE_HID
, },
2519 static int acpi_generic_device_attach(struct acpi_device
*adev
,
2520 const struct acpi_device_id
*not_used
)
2523 * Since ACPI_DT_NAMESPACE_HID is the only ID handled here, the test
2524 * below can be unconditional.
2526 if (adev
->data
.of_compatible
)
2527 acpi_default_enumeration(adev
);
2532 static struct acpi_scan_handler generic_device_handler
= {
2533 .ids
= generic_device_ids
,
2534 .attach
= acpi_generic_device_attach
,
2537 static int acpi_scan_attach_handler(struct acpi_device
*device
)
2539 struct acpi_hardware_id
*hwid
;
2542 list_for_each_entry(hwid
, &device
->pnp
.ids
, list
) {
2543 const struct acpi_device_id
*devid
;
2544 struct acpi_scan_handler
*handler
;
2546 handler
= acpi_scan_match_handler(hwid
->id
, &devid
);
2548 if (!handler
->attach
) {
2549 device
->pnp
.type
.platform_id
= 0;
2552 device
->handler
= handler
;
2553 ret
= handler
->attach(device
, devid
);
2557 device
->handler
= NULL
;
2566 static void acpi_bus_attach(struct acpi_device
*device
)
2568 struct acpi_device
*child
;
2572 if (ACPI_SUCCESS(acpi_bus_get_ejd(device
->handle
, &ejd
)))
2573 register_dock_dependent_device(device
, ejd
);
2575 acpi_bus_get_status(device
);
2576 /* Skip devices that are not present. */
2577 if (!acpi_device_is_present(device
)) {
2578 device
->flags
.visited
= false;
2579 device
->flags
.power_manageable
= 0;
2582 if (device
->handler
)
2585 if (!device
->flags
.initialized
) {
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;
2591 device
->flags
.initialized
= true;
2593 device
->flags
.visited
= false;
2594 ret
= acpi_scan_attach_handler(device
);
2598 device
->flags
.match_driver
= true;
2600 ret
= device_attach(&device
->dev
);
2604 if (!ret
&& device
->pnp
.type
.platform_id
)
2605 acpi_default_enumeration(device
);
2607 device
->flags
.visited
= true;
2610 list_for_each_entry(child
, &device
->children
, node
)
2611 acpi_bus_attach(child
);
2613 if (device
->handler
&& device
->handler
->hotplug
.notify_online
)
2614 device
->handler
->hotplug
.notify_online(device
);
2617 void acpi_walk_dep_device_list(acpi_handle handle
)
2619 struct acpi_dep_data
*dep
, *tmp
;
2620 struct acpi_device
*adev
;
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
);
2630 if (!adev
->dep_unmet
)
2631 acpi_bus_attach(adev
);
2632 list_del(&dep
->node
);
2636 mutex_unlock(&acpi_dep_list_lock
);
2638 EXPORT_SYMBOL_GPL(acpi_walk_dep_device_list
);
2641 * acpi_bus_scan - Add ACPI device node objects in a given namespace scope.
2642 * @handle: Root of the namespace scope to scan.
2644 * Scan a given ACPI tree (probably recently hot-plugged) and create and add
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.
2652 * Must be called under acpi_scan_lock.
2654 int acpi_bus_scan(acpi_handle handle
)
2656 void *device
= NULL
;
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
);
2663 acpi_bus_attach(device
);
2668 EXPORT_SYMBOL(acpi_bus_scan
);
2671 * acpi_bus_trim - Detach scan handlers and drivers from ACPI device objects.
2672 * @adev: Root of the ACPI namespace scope to walk.
2674 * Must be called under acpi_scan_lock.
2676 void acpi_bus_trim(struct acpi_device
*adev
)
2678 struct acpi_scan_handler
*handler
= adev
->handler
;
2679 struct acpi_device
*child
;
2681 list_for_each_entry_reverse(child
, &adev
->children
, node
)
2682 acpi_bus_trim(child
);
2684 adev
->flags
.match_driver
= false;
2686 if (handler
->detach
)
2687 handler
->detach(adev
);
2689 adev
->handler
= NULL
;
2691 device_release_driver(&adev
->dev
);
2694 * Most likely, the device is going away, so put it into D3cold before
2697 acpi_device_set_power(adev
, ACPI_STATE_D3_COLD
);
2698 adev
->flags
.initialized
= false;
2699 adev
->flags
.visited
= false;
2701 EXPORT_SYMBOL_GPL(acpi_bus_trim
);
2703 static int acpi_bus_scan_fixed(void)
2708 * Enumerate all fixed-feature devices.
2710 if (!(acpi_gbl_FADT
.flags
& ACPI_FADT_POWER_BUTTON
)) {
2711 struct acpi_device
*device
= NULL
;
2713 result
= acpi_add_single_object(&device
, NULL
,
2714 ACPI_BUS_TYPE_POWER_BUTTON
,
2719 device
->flags
.match_driver
= true;
2720 result
= device_attach(&device
->dev
);
2724 device_init_wakeup(&device
->dev
, true);
2727 if (!(acpi_gbl_FADT
.flags
& ACPI_FADT_SLEEP_BUTTON
)) {
2728 struct acpi_device
*device
= NULL
;
2730 result
= acpi_add_single_object(&device
, NULL
,
2731 ACPI_BUS_TYPE_SLEEP_BUTTON
,
2736 device
->flags
.match_driver
= true;
2737 result
= device_attach(&device
->dev
);
2740 return result
< 0 ? result
: 0;
2743 int __init
acpi_scan_init(void)
2747 result
= bus_register(&acpi_bus_type
);
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");
2753 acpi_pci_root_init();
2754 acpi_pci_link_init();
2755 acpi_processor_init();
2758 acpi_cmos_rtc_init();
2759 acpi_container_init();
2760 acpi_memory_hotplug_init();
2762 acpi_int340x_thermal_init();
2764 acpi_scan_add_handler(&generic_device_handler
);
2766 mutex_lock(&acpi_scan_lock
);
2768 * Enumerate devices in the ACPI namespace.
2770 result
= acpi_bus_scan(ACPI_ROOT_OBJECT
);
2774 result
= acpi_bus_get_device(ACPI_ROOT_OBJECT
, &acpi_root
);
2778 /* Fixed feature devices do not exist on HW-reduced platform */
2779 if (!acpi_gbl_reduced_hardware
) {
2780 result
= acpi_bus_scan_fixed();
2782 acpi_detach_data(acpi_root
->handle
,
2783 acpi_scan_drop_device
);
2784 acpi_device_del(acpi_root
);
2785 put_device(&acpi_root
->dev
);
2790 acpi_update_all_gpes();
2793 mutex_unlock(&acpi_scan_lock
);