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_bus_id_list);
40 static DEFINE_MUTEX(acpi_scan_lock);
41 static LIST_HEAD(acpi_scan_handlers_list);
42 DEFINE_MUTEX(acpi_device_lock);
43 LIST_HEAD(acpi_wakeup_device_list);
45 struct acpi_device_bus_id{
47 unsigned int instance_no;
48 struct list_head node;
51 void acpi_scan_lock_acquire(void)
53 mutex_lock(&acpi_scan_lock);
55 EXPORT_SYMBOL_GPL(acpi_scan_lock_acquire);
57 void acpi_scan_lock_release(void)
59 mutex_unlock(&acpi_scan_lock);
61 EXPORT_SYMBOL_GPL(acpi_scan_lock_release);
63 int acpi_scan_add_handler(struct acpi_scan_handler *handler)
65 if (!handler || !handler->attach)
68 list_add_tail(&handler->list_node, &acpi_scan_handlers_list);
72 int acpi_scan_add_handler_with_hotplug(struct acpi_scan_handler *handler,
73 const char *hotplug_profile_name)
77 error = acpi_scan_add_handler(handler);
81 acpi_sysfs_add_hotplug_profile(&handler->hotplug, hotplug_profile_name);
86 * Creates hid/cid(s) string needed for modalias and uevent
87 * e.g. on a device with hid:IBM0001 and cid:ACPI0001 you get:
88 * char *modalias: "acpi:IBM0001:ACPI0001"
89 * Return: 0: no _HID and no _CID
90 * -EINVAL: output error
91 * -ENOMEM: output is truncated
93 static int create_modalias(struct acpi_device *acpi_dev, char *modalias,
98 struct acpi_hardware_id *id;
100 if (list_empty(&acpi_dev->pnp.ids))
103 len = snprintf(modalias, size, "acpi:");
106 list_for_each_entry(id, &acpi_dev->pnp.ids, list) {
107 count = snprintf(&modalias[len], size, "%s:", id->id);
116 modalias[len] = '\0';
121 * Creates uevent modalias field for ACPI enumerated devices.
122 * Because the other buses does not support ACPI HIDs & CIDs.
123 * e.g. for a device with hid:IBM0001 and cid:ACPI0001 you get:
124 * "acpi:IBM0001:ACPI0001"
126 int acpi_device_uevent_modalias(struct device *dev, struct kobj_uevent_env *env)
128 struct acpi_device *acpi_dev;
131 acpi_dev = ACPI_COMPANION(dev);
135 /* Fall back to bus specific way of modalias exporting */
136 if (list_empty(&acpi_dev->pnp.ids))
139 if (add_uevent_var(env, "MODALIAS="))
141 len = create_modalias(acpi_dev, &env->buf[env->buflen - 1],
142 sizeof(env->buf) - env->buflen);
148 EXPORT_SYMBOL_GPL(acpi_device_uevent_modalias);
151 * Creates modalias sysfs attribute for ACPI enumerated devices.
152 * Because the other buses does not support ACPI HIDs & CIDs.
153 * e.g. for a device with hid:IBM0001 and cid:ACPI0001 you get:
154 * "acpi:IBM0001:ACPI0001"
156 int acpi_device_modalias(struct device *dev, char *buf, int size)
158 struct acpi_device *acpi_dev;
161 acpi_dev = ACPI_COMPANION(dev);
165 /* Fall back to bus specific way of modalias exporting */
166 if (list_empty(&acpi_dev->pnp.ids))
169 len = create_modalias(acpi_dev, buf, size -1);
175 EXPORT_SYMBOL_GPL(acpi_device_modalias);
178 acpi_device_modalias_show(struct device *dev, struct device_attribute *attr, char *buf) {
179 struct acpi_device *acpi_dev = to_acpi_device(dev);
182 len = create_modalias(acpi_dev, buf, 1024);
188 static DEVICE_ATTR(modalias, 0444, acpi_device_modalias_show, NULL);
190 bool acpi_scan_is_offline(struct acpi_device *adev, bool uevent)
192 struct acpi_device_physical_node *pn;
195 mutex_lock(&adev->physical_node_lock);
197 list_for_each_entry(pn, &adev->physical_node_list, node)
198 if (device_supports_offline(pn->dev) && !pn->dev->offline) {
200 kobject_uevent(&pn->dev->kobj, KOBJ_CHANGE);
206 mutex_unlock(&adev->physical_node_lock);
210 static acpi_status acpi_bus_offline(acpi_handle handle, u32 lvl, void *data,
213 struct acpi_device *device = NULL;
214 struct acpi_device_physical_node *pn;
215 bool second_pass = (bool)data;
216 acpi_status status = AE_OK;
218 if (acpi_bus_get_device(handle, &device))
221 if (device->handler && !device->handler->hotplug.enabled) {
222 *ret_p = &device->dev;
226 mutex_lock(&device->physical_node_lock);
228 list_for_each_entry(pn, &device->physical_node_list, node) {
232 /* Skip devices offlined by the first pass. */
236 pn->put_online = false;
238 ret = device_offline(pn->dev);
239 if (acpi_force_hot_remove)
243 pn->put_online = !ret;
253 mutex_unlock(&device->physical_node_lock);
258 static acpi_status acpi_bus_online(acpi_handle handle, u32 lvl, void *data,
261 struct acpi_device *device = NULL;
262 struct acpi_device_physical_node *pn;
264 if (acpi_bus_get_device(handle, &device))
267 mutex_lock(&device->physical_node_lock);
269 list_for_each_entry(pn, &device->physical_node_list, node)
270 if (pn->put_online) {
271 device_online(pn->dev);
272 pn->put_online = false;
275 mutex_unlock(&device->physical_node_lock);
280 static int acpi_scan_try_to_offline(struct acpi_device *device)
282 acpi_handle handle = device->handle;
283 struct device *errdev = NULL;
287 * Carry out two passes here and ignore errors in the first pass,
288 * because if the devices in question are memory blocks and
289 * CONFIG_MEMCG is set, one of the blocks may hold data structures
290 * that the other blocks depend on, but it is not known in advance which
293 * If the first pass is successful, the second one isn't needed, though.
295 status = acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
296 NULL, acpi_bus_offline, (void *)false,
298 if (status == AE_SUPPORT) {
299 dev_warn(errdev, "Offline disabled.\n");
300 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
301 acpi_bus_online, NULL, NULL, NULL);
304 acpi_bus_offline(handle, 0, (void *)false, (void **)&errdev);
307 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
308 NULL, acpi_bus_offline, (void *)true,
310 if (!errdev || acpi_force_hot_remove)
311 acpi_bus_offline(handle, 0, (void *)true,
314 if (errdev && !acpi_force_hot_remove) {
315 dev_warn(errdev, "Offline failed.\n");
316 acpi_bus_online(handle, 0, NULL, NULL);
317 acpi_walk_namespace(ACPI_TYPE_ANY, handle,
318 ACPI_UINT32_MAX, acpi_bus_online,
326 static int acpi_scan_hot_remove(struct acpi_device *device)
328 acpi_handle handle = device->handle;
329 unsigned long long sta;
332 if (device->handler && device->handler->hotplug.demand_offline
333 && !acpi_force_hot_remove) {
334 if (!acpi_scan_is_offline(device, true))
337 int error = acpi_scan_try_to_offline(device);
342 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
343 "Hot-removing device %s...\n", dev_name(&device->dev)));
345 acpi_bus_trim(device);
347 acpi_evaluate_lck(handle, 0);
351 status = acpi_evaluate_ej0(handle);
352 if (status == AE_NOT_FOUND)
354 else if (ACPI_FAILURE(status))
358 * Verify if eject was indeed successful. If not, log an error
359 * message. No need to call _OST since _EJ0 call was made OK.
361 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
362 if (ACPI_FAILURE(status)) {
363 acpi_handle_warn(handle,
364 "Status check after eject failed (0x%x)\n", status);
365 } else if (sta & ACPI_STA_DEVICE_ENABLED) {
366 acpi_handle_warn(handle,
367 "Eject incomplete - status 0x%llx\n", sta);
373 static int acpi_scan_device_not_present(struct acpi_device *adev)
375 if (!acpi_device_enumerated(adev)) {
376 dev_warn(&adev->dev, "Still not present\n");
383 static int acpi_scan_device_check(struct acpi_device *adev)
387 acpi_bus_get_status(adev);
388 if (adev->status.present || adev->status.functional) {
390 * This function is only called for device objects for which
391 * matching scan handlers exist. The only situation in which
392 * the scan handler is not attached to this device object yet
393 * is when the device has just appeared (either it wasn't
394 * present at all before or it was removed and then added
398 dev_warn(&adev->dev, "Already enumerated\n");
401 error = acpi_bus_scan(adev->handle);
403 dev_warn(&adev->dev, "Namespace scan failure\n");
406 if (!adev->handler) {
407 dev_warn(&adev->dev, "Enumeration failure\n");
411 error = acpi_scan_device_not_present(adev);
416 static int acpi_scan_bus_check(struct acpi_device *adev)
418 struct acpi_scan_handler *handler = adev->handler;
419 struct acpi_device *child;
422 acpi_bus_get_status(adev);
423 if (!(adev->status.present || adev->status.functional)) {
424 acpi_scan_device_not_present(adev);
427 if (handler && handler->hotplug.scan_dependent)
428 return handler->hotplug.scan_dependent(adev);
430 error = acpi_bus_scan(adev->handle);
432 dev_warn(&adev->dev, "Namespace scan failure\n");
435 list_for_each_entry(child, &adev->children, node) {
436 error = acpi_scan_bus_check(child);
443 static void acpi_device_hotplug(void *data, u32 src)
445 u32 ost_code = ACPI_OST_SC_NON_SPECIFIC_FAILURE;
446 struct acpi_device *adev = data;
449 lock_device_hotplug();
450 mutex_lock(&acpi_scan_lock);
453 * The device object's ACPI handle cannot become invalid as long as we
454 * are holding acpi_scan_lock, but it may have become invalid before
455 * that lock was acquired.
457 if (adev->handle == INVALID_ACPI_HANDLE)
461 case ACPI_NOTIFY_BUS_CHECK:
462 error = acpi_scan_bus_check(adev);
464 case ACPI_NOTIFY_DEVICE_CHECK:
465 error = acpi_scan_device_check(adev);
467 case ACPI_NOTIFY_EJECT_REQUEST:
468 case ACPI_OST_EC_OSPM_EJECT:
469 error = acpi_scan_hot_remove(adev);
476 ost_code = ACPI_OST_SC_SUCCESS;
479 acpi_evaluate_hotplug_ost(adev->handle, src, ost_code, NULL);
480 put_device(&adev->dev);
481 mutex_unlock(&acpi_scan_lock);
482 unlock_device_hotplug();
485 static void acpi_hotplug_notify_cb(acpi_handle handle, u32 type, void *data)
487 u32 ost_code = ACPI_OST_SC_NON_SPECIFIC_FAILURE;
488 struct acpi_device *adev;
491 if (acpi_bus_get_device(handle, &adev))
495 case ACPI_NOTIFY_BUS_CHECK:
496 acpi_handle_debug(handle, "ACPI_NOTIFY_BUS_CHECK event\n");
498 case ACPI_NOTIFY_DEVICE_CHECK:
499 acpi_handle_debug(handle, "ACPI_NOTIFY_DEVICE_CHECK event\n");
501 case ACPI_NOTIFY_EJECT_REQUEST:
502 acpi_handle_debug(handle, "ACPI_NOTIFY_EJECT_REQUEST event\n");
506 if (!adev->handler->hotplug.enabled) {
507 acpi_handle_err(handle, "Eject disabled\n");
508 ost_code = ACPI_OST_SC_EJECT_NOT_SUPPORTED;
511 acpi_evaluate_hotplug_ost(handle, ACPI_NOTIFY_EJECT_REQUEST,
512 ACPI_OST_SC_EJECT_IN_PROGRESS, NULL);
515 /* non-hotplug event; possibly handled by other handler */
518 get_device(&adev->dev);
519 status = acpi_hotplug_execute(acpi_device_hotplug, adev, type);
520 if (ACPI_SUCCESS(status))
523 put_device(&adev->dev);
526 acpi_evaluate_hotplug_ost(handle, type, ost_code, NULL);
529 static ssize_t real_power_state_show(struct device *dev,
530 struct device_attribute *attr, char *buf)
532 struct acpi_device *adev = to_acpi_device(dev);
536 ret = acpi_device_get_power(adev, &state);
540 return sprintf(buf, "%s\n", acpi_power_state_string(state));
543 static DEVICE_ATTR(real_power_state, 0444, real_power_state_show, NULL);
545 static ssize_t power_state_show(struct device *dev,
546 struct device_attribute *attr, char *buf)
548 struct acpi_device *adev = to_acpi_device(dev);
550 return sprintf(buf, "%s\n", acpi_power_state_string(adev->power.state));
553 static DEVICE_ATTR(power_state, 0444, power_state_show, NULL);
556 acpi_eject_store(struct device *d, struct device_attribute *attr,
557 const char *buf, size_t count)
559 struct acpi_device *acpi_device = to_acpi_device(d);
560 acpi_object_type not_used;
563 if (!count || buf[0] != '1')
566 if ((!acpi_device->handler || !acpi_device->handler->hotplug.enabled)
567 && !acpi_device->driver)
570 status = acpi_get_type(acpi_device->handle, ¬_used);
571 if (ACPI_FAILURE(status) || !acpi_device->flags.ejectable)
574 acpi_evaluate_hotplug_ost(acpi_device->handle, ACPI_OST_EC_OSPM_EJECT,
575 ACPI_OST_SC_EJECT_IN_PROGRESS, NULL);
576 get_device(&acpi_device->dev);
577 status = acpi_hotplug_execute(acpi_device_hotplug, acpi_device,
578 ACPI_OST_EC_OSPM_EJECT);
579 if (ACPI_SUCCESS(status))
582 put_device(&acpi_device->dev);
583 acpi_evaluate_hotplug_ost(acpi_device->handle, ACPI_OST_EC_OSPM_EJECT,
584 ACPI_OST_SC_NON_SPECIFIC_FAILURE, NULL);
585 return status == AE_NO_MEMORY ? -ENOMEM : -EAGAIN;
588 static DEVICE_ATTR(eject, 0200, NULL, acpi_eject_store);
591 acpi_device_hid_show(struct device *dev, struct device_attribute *attr, char *buf) {
592 struct acpi_device *acpi_dev = to_acpi_device(dev);
594 return sprintf(buf, "%s\n", acpi_device_hid(acpi_dev));
596 static DEVICE_ATTR(hid, 0444, acpi_device_hid_show, NULL);
598 static ssize_t acpi_device_uid_show(struct device *dev,
599 struct device_attribute *attr, char *buf)
601 struct acpi_device *acpi_dev = to_acpi_device(dev);
603 return sprintf(buf, "%s\n", acpi_dev->pnp.unique_id);
605 static DEVICE_ATTR(uid, 0444, acpi_device_uid_show, NULL);
607 static ssize_t acpi_device_adr_show(struct device *dev,
608 struct device_attribute *attr, char *buf)
610 struct acpi_device *acpi_dev = to_acpi_device(dev);
612 return sprintf(buf, "0x%08x\n",
613 (unsigned int)(acpi_dev->pnp.bus_address));
615 static DEVICE_ATTR(adr, 0444, acpi_device_adr_show, NULL);
618 acpi_device_path_show(struct device *dev, struct device_attribute *attr, char *buf) {
619 struct acpi_device *acpi_dev = to_acpi_device(dev);
620 struct acpi_buffer path = {ACPI_ALLOCATE_BUFFER, NULL};
623 result = acpi_get_name(acpi_dev->handle, ACPI_FULL_PATHNAME, &path);
627 result = sprintf(buf, "%s\n", (char*)path.pointer);
632 static DEVICE_ATTR(path, 0444, acpi_device_path_show, NULL);
634 /* sysfs file that shows description text from the ACPI _STR method */
635 static ssize_t description_show(struct device *dev,
636 struct device_attribute *attr,
638 struct acpi_device *acpi_dev = to_acpi_device(dev);
641 if (acpi_dev->pnp.str_obj == NULL)
645 * The _STR object contains a Unicode identifier for a device.
646 * We need to convert to utf-8 so it can be displayed.
648 result = utf16s_to_utf8s(
649 (wchar_t *)acpi_dev->pnp.str_obj->buffer.pointer,
650 acpi_dev->pnp.str_obj->buffer.length,
651 UTF16_LITTLE_ENDIAN, buf,
654 buf[result++] = '\n';
658 static DEVICE_ATTR(description, 0444, description_show, NULL);
661 acpi_device_sun_show(struct device *dev, struct device_attribute *attr,
663 struct acpi_device *acpi_dev = to_acpi_device(dev);
665 unsigned long long sun;
667 status = acpi_evaluate_integer(acpi_dev->handle, "_SUN", NULL, &sun);
668 if (ACPI_FAILURE(status))
671 return sprintf(buf, "%llu\n", sun);
673 static DEVICE_ATTR(sun, 0444, acpi_device_sun_show, NULL);
675 static ssize_t status_show(struct device *dev, struct device_attribute *attr,
677 struct acpi_device *acpi_dev = to_acpi_device(dev);
679 unsigned long long sta;
681 status = acpi_evaluate_integer(acpi_dev->handle, "_STA", NULL, &sta);
682 if (ACPI_FAILURE(status))
685 return sprintf(buf, "%llu\n", sta);
687 static DEVICE_ATTR_RO(status);
689 static int acpi_device_setup_files(struct acpi_device *dev)
691 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
696 * Devices gotten from FADT don't have a "path" attribute
699 result = device_create_file(&dev->dev, &dev_attr_path);
704 if (!list_empty(&dev->pnp.ids)) {
705 result = device_create_file(&dev->dev, &dev_attr_hid);
709 result = device_create_file(&dev->dev, &dev_attr_modalias);
715 * If device has _STR, 'description' file is created
717 if (acpi_has_method(dev->handle, "_STR")) {
718 status = acpi_evaluate_object(dev->handle, "_STR",
720 if (ACPI_FAILURE(status))
721 buffer.pointer = NULL;
722 dev->pnp.str_obj = buffer.pointer;
723 result = device_create_file(&dev->dev, &dev_attr_description);
728 if (dev->pnp.type.bus_address)
729 result = device_create_file(&dev->dev, &dev_attr_adr);
730 if (dev->pnp.unique_id)
731 result = device_create_file(&dev->dev, &dev_attr_uid);
733 if (acpi_has_method(dev->handle, "_SUN")) {
734 result = device_create_file(&dev->dev, &dev_attr_sun);
739 if (acpi_has_method(dev->handle, "_STA")) {
740 result = device_create_file(&dev->dev, &dev_attr_status);
746 * If device has _EJ0, 'eject' file is created that is used to trigger
747 * hot-removal function from userland.
749 if (acpi_has_method(dev->handle, "_EJ0")) {
750 result = device_create_file(&dev->dev, &dev_attr_eject);
755 if (dev->flags.power_manageable) {
756 result = device_create_file(&dev->dev, &dev_attr_power_state);
760 if (dev->power.flags.power_resources)
761 result = device_create_file(&dev->dev,
762 &dev_attr_real_power_state);
769 static void acpi_device_remove_files(struct acpi_device *dev)
771 if (dev->flags.power_manageable) {
772 device_remove_file(&dev->dev, &dev_attr_power_state);
773 if (dev->power.flags.power_resources)
774 device_remove_file(&dev->dev,
775 &dev_attr_real_power_state);
779 * If device has _STR, remove 'description' file
781 if (acpi_has_method(dev->handle, "_STR")) {
782 kfree(dev->pnp.str_obj);
783 device_remove_file(&dev->dev, &dev_attr_description);
786 * If device has _EJ0, remove 'eject' file.
788 if (acpi_has_method(dev->handle, "_EJ0"))
789 device_remove_file(&dev->dev, &dev_attr_eject);
791 if (acpi_has_method(dev->handle, "_SUN"))
792 device_remove_file(&dev->dev, &dev_attr_sun);
794 if (dev->pnp.unique_id)
795 device_remove_file(&dev->dev, &dev_attr_uid);
796 if (dev->pnp.type.bus_address)
797 device_remove_file(&dev->dev, &dev_attr_adr);
798 device_remove_file(&dev->dev, &dev_attr_modalias);
799 device_remove_file(&dev->dev, &dev_attr_hid);
800 if (acpi_has_method(dev->handle, "_STA"))
801 device_remove_file(&dev->dev, &dev_attr_status);
803 device_remove_file(&dev->dev, &dev_attr_path);
805 /* --------------------------------------------------------------------------
807 -------------------------------------------------------------------------- */
809 static const struct acpi_device_id *__acpi_match_device(
810 struct acpi_device *device, const struct acpi_device_id *ids)
812 const struct acpi_device_id *id;
813 struct acpi_hardware_id *hwid;
816 * If the device is not present, it is unnecessary to load device
819 if (!device->status.present)
822 for (id = ids; id->id[0]; id++)
823 list_for_each_entry(hwid, &device->pnp.ids, list)
824 if (!strcmp((char *) id->id, hwid->id))
831 * acpi_match_device - Match a struct device against a given list of ACPI IDs
832 * @ids: Array of struct acpi_device_id object to match against.
833 * @dev: The device structure to match.
835 * Check if @dev has a valid ACPI handle and if there is a struct acpi_device
836 * object for that handle and use that object to match against a given list of
839 * Return a pointer to the first matching ID on success or %NULL on failure.
841 const struct acpi_device_id *acpi_match_device(const struct acpi_device_id *ids,
842 const struct device *dev)
844 struct acpi_device *adev;
845 acpi_handle handle = ACPI_HANDLE(dev);
847 if (!ids || !handle || acpi_bus_get_device(handle, &adev))
850 return __acpi_match_device(adev, ids);
852 EXPORT_SYMBOL_GPL(acpi_match_device);
854 int acpi_match_device_ids(struct acpi_device *device,
855 const struct acpi_device_id *ids)
857 return __acpi_match_device(device, ids) ? 0 : -ENOENT;
859 EXPORT_SYMBOL(acpi_match_device_ids);
861 static void acpi_free_power_resources_lists(struct acpi_device *device)
865 if (device->wakeup.flags.valid)
866 acpi_power_resources_list_free(&device->wakeup.resources);
868 if (!device->flags.power_manageable)
871 for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3_HOT; i++) {
872 struct acpi_device_power_state *ps = &device->power.states[i];
873 acpi_power_resources_list_free(&ps->resources);
877 static void acpi_device_release(struct device *dev)
879 struct acpi_device *acpi_dev = to_acpi_device(dev);
881 acpi_free_pnp_ids(&acpi_dev->pnp);
882 acpi_free_power_resources_lists(acpi_dev);
886 static int acpi_bus_match(struct device *dev, struct device_driver *drv)
888 struct acpi_device *acpi_dev = to_acpi_device(dev);
889 struct acpi_driver *acpi_drv = to_acpi_driver(drv);
891 return acpi_dev->flags.match_driver
892 && !acpi_match_device_ids(acpi_dev, acpi_drv->ids);
895 static int acpi_device_uevent(struct device *dev, struct kobj_uevent_env *env)
897 struct acpi_device *acpi_dev = to_acpi_device(dev);
900 if (list_empty(&acpi_dev->pnp.ids))
903 if (add_uevent_var(env, "MODALIAS="))
905 len = create_modalias(acpi_dev, &env->buf[env->buflen - 1],
906 sizeof(env->buf) - env->buflen);
913 static void acpi_device_notify(acpi_handle handle, u32 event, void *data)
915 struct acpi_device *device = data;
917 device->driver->ops.notify(device, event);
920 static void acpi_device_notify_fixed(void *data)
922 struct acpi_device *device = data;
924 /* Fixed hardware devices have no handles */
925 acpi_device_notify(NULL, ACPI_FIXED_HARDWARE_EVENT, device);
928 static acpi_status acpi_device_fixed_event(void *data)
930 acpi_os_execute(OSL_NOTIFY_HANDLER, acpi_device_notify_fixed, data);
934 static int acpi_device_install_notify_handler(struct acpi_device *device)
938 if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON)
940 acpi_install_fixed_event_handler(ACPI_EVENT_POWER_BUTTON,
941 acpi_device_fixed_event,
943 else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON)
945 acpi_install_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON,
946 acpi_device_fixed_event,
949 status = acpi_install_notify_handler(device->handle,
954 if (ACPI_FAILURE(status))
959 static void acpi_device_remove_notify_handler(struct acpi_device *device)
961 if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON)
962 acpi_remove_fixed_event_handler(ACPI_EVENT_POWER_BUTTON,
963 acpi_device_fixed_event);
964 else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON)
965 acpi_remove_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON,
966 acpi_device_fixed_event);
968 acpi_remove_notify_handler(device->handle, ACPI_DEVICE_NOTIFY,
972 static int acpi_device_probe(struct device *dev)
974 struct acpi_device *acpi_dev = to_acpi_device(dev);
975 struct acpi_driver *acpi_drv = to_acpi_driver(dev->driver);
978 if (acpi_dev->handler)
981 if (!acpi_drv->ops.add)
984 ret = acpi_drv->ops.add(acpi_dev);
988 acpi_dev->driver = acpi_drv;
989 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
990 "Driver [%s] successfully bound to device [%s]\n",
991 acpi_drv->name, acpi_dev->pnp.bus_id));
993 if (acpi_drv->ops.notify) {
994 ret = acpi_device_install_notify_handler(acpi_dev);
996 if (acpi_drv->ops.remove)
997 acpi_drv->ops.remove(acpi_dev);
999 acpi_dev->driver = NULL;
1000 acpi_dev->driver_data = NULL;
1005 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found driver [%s] for device [%s]\n",
1006 acpi_drv->name, acpi_dev->pnp.bus_id));
1011 static int acpi_device_remove(struct device * dev)
1013 struct acpi_device *acpi_dev = to_acpi_device(dev);
1014 struct acpi_driver *acpi_drv = acpi_dev->driver;
1017 if (acpi_drv->ops.notify)
1018 acpi_device_remove_notify_handler(acpi_dev);
1019 if (acpi_drv->ops.remove)
1020 acpi_drv->ops.remove(acpi_dev);
1022 acpi_dev->driver = NULL;
1023 acpi_dev->driver_data = NULL;
1029 struct bus_type acpi_bus_type = {
1031 .match = acpi_bus_match,
1032 .probe = acpi_device_probe,
1033 .remove = acpi_device_remove,
1034 .uevent = acpi_device_uevent,
1037 static void acpi_device_del(struct acpi_device *device)
1039 mutex_lock(&acpi_device_lock);
1041 list_del(&device->node);
1043 list_del(&device->wakeup_list);
1044 mutex_unlock(&acpi_device_lock);
1046 acpi_power_add_remove_device(device, false);
1047 acpi_device_remove_files(device);
1049 device->remove(device);
1051 device_del(&device->dev);
1054 static LIST_HEAD(acpi_device_del_list);
1055 static DEFINE_MUTEX(acpi_device_del_lock);
1057 static void acpi_device_del_work_fn(struct work_struct *work_not_used)
1060 struct acpi_device *adev;
1062 mutex_lock(&acpi_device_del_lock);
1064 if (list_empty(&acpi_device_del_list)) {
1065 mutex_unlock(&acpi_device_del_lock);
1068 adev = list_first_entry(&acpi_device_del_list,
1069 struct acpi_device, del_list);
1070 list_del(&adev->del_list);
1072 mutex_unlock(&acpi_device_del_lock);
1074 acpi_device_del(adev);
1076 * Drop references to all power resources that might have been
1077 * used by the device.
1079 acpi_power_transition(adev, ACPI_STATE_D3_COLD);
1080 put_device(&adev->dev);
1085 * acpi_scan_drop_device - Drop an ACPI device object.
1086 * @handle: Handle of an ACPI namespace node, not used.
1087 * @context: Address of the ACPI device object to drop.
1089 * This is invoked by acpi_ns_delete_node() during the removal of the ACPI
1090 * namespace node the device object pointed to by @context is attached to.
1092 * The unregistration is carried out asynchronously to avoid running
1093 * acpi_device_del() under the ACPICA's namespace mutex and the list is used to
1094 * ensure the correct ordering (the device objects must be unregistered in the
1095 * same order in which the corresponding namespace nodes are deleted).
1097 static void acpi_scan_drop_device(acpi_handle handle, void *context)
1099 static DECLARE_WORK(work, acpi_device_del_work_fn);
1100 struct acpi_device *adev = context;
1102 mutex_lock(&acpi_device_del_lock);
1105 * Use the ACPI hotplug workqueue which is ordered, so this work item
1106 * won't run after any hotplug work items submitted subsequently. That
1107 * prevents attempts to register device objects identical to those being
1108 * deleted from happening concurrently (such attempts result from
1109 * hotplug events handled via the ACPI hotplug workqueue). It also will
1110 * run after all of the work items submitted previosuly, which helps
1111 * those work items to ensure that they are not accessing stale device
1114 if (list_empty(&acpi_device_del_list))
1115 acpi_queue_hotplug_work(&work);
1117 list_add_tail(&adev->del_list, &acpi_device_del_list);
1118 /* Make acpi_ns_validate_handle() return NULL for this handle. */
1119 adev->handle = INVALID_ACPI_HANDLE;
1121 mutex_unlock(&acpi_device_del_lock);
1124 int acpi_bus_get_device(acpi_handle handle, struct acpi_device **device)
1131 status = acpi_get_data(handle, acpi_scan_drop_device, (void **)device);
1132 if (ACPI_FAILURE(status) || !*device) {
1133 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No context for object [%p]\n",
1139 EXPORT_SYMBOL(acpi_bus_get_device);
1141 int acpi_device_add(struct acpi_device *device,
1142 void (*release)(struct device *))
1145 struct acpi_device_bus_id *acpi_device_bus_id, *new_bus_id;
1148 if (device->handle) {
1151 status = acpi_attach_data(device->handle, acpi_scan_drop_device,
1153 if (ACPI_FAILURE(status)) {
1154 acpi_handle_err(device->handle,
1155 "Unable to attach device data\n");
1163 * Link this device to its parent and siblings.
1165 INIT_LIST_HEAD(&device->children);
1166 INIT_LIST_HEAD(&device->node);
1167 INIT_LIST_HEAD(&device->wakeup_list);
1168 INIT_LIST_HEAD(&device->physical_node_list);
1169 INIT_LIST_HEAD(&device->del_list);
1170 mutex_init(&device->physical_node_lock);
1172 new_bus_id = kzalloc(sizeof(struct acpi_device_bus_id), GFP_KERNEL);
1174 pr_err(PREFIX "Memory allocation error\n");
1179 mutex_lock(&acpi_device_lock);
1181 * Find suitable bus_id and instance number in acpi_bus_id_list
1182 * If failed, create one and link it into acpi_bus_id_list
1184 list_for_each_entry(acpi_device_bus_id, &acpi_bus_id_list, node) {
1185 if (!strcmp(acpi_device_bus_id->bus_id,
1186 acpi_device_hid(device))) {
1187 acpi_device_bus_id->instance_no++;
1194 acpi_device_bus_id = new_bus_id;
1195 strcpy(acpi_device_bus_id->bus_id, acpi_device_hid(device));
1196 acpi_device_bus_id->instance_no = 0;
1197 list_add_tail(&acpi_device_bus_id->node, &acpi_bus_id_list);
1199 dev_set_name(&device->dev, "%s:%02x", acpi_device_bus_id->bus_id, acpi_device_bus_id->instance_no);
1202 list_add_tail(&device->node, &device->parent->children);
1204 if (device->wakeup.flags.valid)
1205 list_add_tail(&device->wakeup_list, &acpi_wakeup_device_list);
1206 mutex_unlock(&acpi_device_lock);
1209 device->dev.parent = &device->parent->dev;
1210 device->dev.bus = &acpi_bus_type;
1211 device->dev.release = release;
1212 result = device_add(&device->dev);
1214 dev_err(&device->dev, "Error registering device\n");
1218 result = acpi_device_setup_files(device);
1220 printk(KERN_ERR PREFIX "Error creating sysfs interface for device %s\n",
1221 dev_name(&device->dev));
1226 mutex_lock(&acpi_device_lock);
1228 list_del(&device->node);
1229 list_del(&device->wakeup_list);
1230 mutex_unlock(&acpi_device_lock);
1233 acpi_detach_data(device->handle, acpi_scan_drop_device);
1237 /* --------------------------------------------------------------------------
1239 -------------------------------------------------------------------------- */
1241 * acpi_bus_register_driver - register a driver with the ACPI bus
1242 * @driver: driver being registered
1244 * Registers a driver with the ACPI bus. Searches the namespace for all
1245 * devices that match the driver's criteria and binds. Returns zero for
1246 * success or a negative error status for failure.
1248 int acpi_bus_register_driver(struct acpi_driver *driver)
1254 driver->drv.name = driver->name;
1255 driver->drv.bus = &acpi_bus_type;
1256 driver->drv.owner = driver->owner;
1258 ret = driver_register(&driver->drv);
1262 EXPORT_SYMBOL(acpi_bus_register_driver);
1265 * acpi_bus_unregister_driver - unregisters a driver with the ACPI bus
1266 * @driver: driver to unregister
1268 * Unregisters a driver with the ACPI bus. Searches the namespace for all
1269 * devices that match the driver's criteria and unbinds.
1271 void acpi_bus_unregister_driver(struct acpi_driver *driver)
1273 driver_unregister(&driver->drv);
1276 EXPORT_SYMBOL(acpi_bus_unregister_driver);
1278 /* --------------------------------------------------------------------------
1280 -------------------------------------------------------------------------- */
1281 static struct acpi_device *acpi_bus_get_parent(acpi_handle handle)
1283 struct acpi_device *device = NULL;
1287 * Fixed hardware devices do not appear in the namespace and do not
1288 * have handles, but we fabricate acpi_devices for them, so we have
1289 * to deal with them specially.
1295 status = acpi_get_parent(handle, &handle);
1296 if (ACPI_FAILURE(status))
1297 return status == AE_NULL_ENTRY ? NULL : acpi_root;
1298 } while (acpi_bus_get_device(handle, &device));
1303 acpi_bus_get_ejd(acpi_handle handle, acpi_handle *ejd)
1307 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
1308 union acpi_object *obj;
1310 status = acpi_get_handle(handle, "_EJD", &tmp);
1311 if (ACPI_FAILURE(status))
1314 status = acpi_evaluate_object(handle, "_EJD", NULL, &buffer);
1315 if (ACPI_SUCCESS(status)) {
1316 obj = buffer.pointer;
1317 status = acpi_get_handle(ACPI_ROOT_OBJECT, obj->string.pointer,
1319 kfree(buffer.pointer);
1323 EXPORT_SYMBOL_GPL(acpi_bus_get_ejd);
1325 static int acpi_bus_extract_wakeup_device_power_package(acpi_handle handle,
1326 struct acpi_device_wakeup *wakeup)
1328 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1329 union acpi_object *package = NULL;
1330 union acpi_object *element = NULL;
1337 INIT_LIST_HEAD(&wakeup->resources);
1340 status = acpi_evaluate_object(handle, "_PRW", NULL, &buffer);
1341 if (ACPI_FAILURE(status)) {
1342 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PRW"));
1346 package = (union acpi_object *)buffer.pointer;
1348 if (!package || package->package.count < 2)
1351 element = &(package->package.elements[0]);
1355 if (element->type == ACPI_TYPE_PACKAGE) {
1356 if ((element->package.count < 2) ||
1357 (element->package.elements[0].type !=
1358 ACPI_TYPE_LOCAL_REFERENCE)
1359 || (element->package.elements[1].type != ACPI_TYPE_INTEGER))
1362 wakeup->gpe_device =
1363 element->package.elements[0].reference.handle;
1364 wakeup->gpe_number =
1365 (u32) element->package.elements[1].integer.value;
1366 } else if (element->type == ACPI_TYPE_INTEGER) {
1367 wakeup->gpe_device = NULL;
1368 wakeup->gpe_number = element->integer.value;
1373 element = &(package->package.elements[1]);
1374 if (element->type != ACPI_TYPE_INTEGER)
1377 wakeup->sleep_state = element->integer.value;
1379 err = acpi_extract_power_resources(package, 2, &wakeup->resources);
1383 if (!list_empty(&wakeup->resources)) {
1386 err = acpi_power_wakeup_list_init(&wakeup->resources,
1389 acpi_handle_warn(handle, "Retrieving current states "
1390 "of wakeup power resources failed\n");
1391 acpi_power_resources_list_free(&wakeup->resources);
1394 if (sleep_state < wakeup->sleep_state) {
1395 acpi_handle_warn(handle, "Overriding _PRW sleep state "
1396 "(S%d) by S%d from power resources\n",
1397 (int)wakeup->sleep_state, sleep_state);
1398 wakeup->sleep_state = sleep_state;
1401 acpi_setup_gpe_for_wake(handle, wakeup->gpe_device, wakeup->gpe_number);
1404 kfree(buffer.pointer);
1408 static void acpi_bus_set_run_wake_flags(struct acpi_device *device)
1410 struct acpi_device_id button_device_ids[] = {
1417 acpi_event_status event_status;
1419 device->wakeup.flags.notifier_present = 0;
1421 /* Power button, Lid switch always enable wakeup */
1422 if (!acpi_match_device_ids(device, button_device_ids)) {
1423 device->wakeup.flags.run_wake = 1;
1424 if (!acpi_match_device_ids(device, &button_device_ids[1])) {
1425 /* Do not use Lid/sleep button for S5 wakeup */
1426 if (device->wakeup.sleep_state == ACPI_STATE_S5)
1427 device->wakeup.sleep_state = ACPI_STATE_S4;
1429 device_set_wakeup_capable(&device->dev, true);
1433 status = acpi_get_gpe_status(device->wakeup.gpe_device,
1434 device->wakeup.gpe_number,
1436 if (status == AE_OK)
1437 device->wakeup.flags.run_wake =
1438 !!(event_status & ACPI_EVENT_FLAG_HANDLE);
1441 static void acpi_bus_get_wakeup_device_flags(struct acpi_device *device)
1445 /* Presence of _PRW indicates wake capable */
1446 if (!acpi_has_method(device->handle, "_PRW"))
1449 err = acpi_bus_extract_wakeup_device_power_package(device->handle,
1452 dev_err(&device->dev, "_PRW evaluation error: %d\n", err);
1456 device->wakeup.flags.valid = 1;
1457 device->wakeup.prepare_count = 0;
1458 acpi_bus_set_run_wake_flags(device);
1459 /* Call _PSW/_DSW object to disable its ability to wake the sleeping
1460 * system for the ACPI device with the _PRW object.
1461 * The _PSW object is depreciated in ACPI 3.0 and is replaced by _DSW.
1462 * So it is necessary to call _DSW object first. Only when it is not
1463 * present will the _PSW object used.
1465 err = acpi_device_sleep_wake(device, 0, 0, 0);
1467 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1468 "error in _DSW or _PSW evaluation\n"));
1471 static void acpi_bus_init_power_state(struct acpi_device *device, int state)
1473 struct acpi_device_power_state *ps = &device->power.states[state];
1474 char pathname[5] = { '_', 'P', 'R', '0' + state, '\0' };
1475 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1478 INIT_LIST_HEAD(&ps->resources);
1480 /* Evaluate "_PRx" to get referenced power resources */
1481 status = acpi_evaluate_object(device->handle, pathname, NULL, &buffer);
1482 if (ACPI_SUCCESS(status)) {
1483 union acpi_object *package = buffer.pointer;
1485 if (buffer.length && package
1486 && package->type == ACPI_TYPE_PACKAGE
1487 && package->package.count) {
1488 int err = acpi_extract_power_resources(package, 0,
1491 device->power.flags.power_resources = 1;
1493 ACPI_FREE(buffer.pointer);
1496 /* Evaluate "_PSx" to see if we can do explicit sets */
1498 if (acpi_has_method(device->handle, pathname))
1499 ps->flags.explicit_set = 1;
1502 * State is valid if there are means to put the device into it.
1503 * D3hot is only valid if _PR3 present.
1505 if (!list_empty(&ps->resources)
1506 || (ps->flags.explicit_set && state < ACPI_STATE_D3_HOT)) {
1507 ps->flags.valid = 1;
1508 ps->flags.os_accessible = 1;
1511 ps->power = -1; /* Unknown - driver assigned */
1512 ps->latency = -1; /* Unknown - driver assigned */
1515 static void acpi_bus_get_power_flags(struct acpi_device *device)
1519 /* Presence of _PS0|_PR0 indicates 'power manageable' */
1520 if (!acpi_has_method(device->handle, "_PS0") &&
1521 !acpi_has_method(device->handle, "_PR0"))
1524 device->flags.power_manageable = 1;
1527 * Power Management Flags
1529 if (acpi_has_method(device->handle, "_PSC"))
1530 device->power.flags.explicit_get = 1;
1531 if (acpi_has_method(device->handle, "_IRC"))
1532 device->power.flags.inrush_current = 1;
1535 * Enumerate supported power management states
1537 for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3_HOT; i++)
1538 acpi_bus_init_power_state(device, i);
1540 INIT_LIST_HEAD(&device->power.states[ACPI_STATE_D3_COLD].resources);
1542 /* Set defaults for D0 and D3 states (always valid) */
1543 device->power.states[ACPI_STATE_D0].flags.valid = 1;
1544 device->power.states[ACPI_STATE_D0].power = 100;
1545 device->power.states[ACPI_STATE_D3_COLD].flags.valid = 1;
1546 device->power.states[ACPI_STATE_D3_COLD].power = 0;
1548 /* Set D3cold's explicit_set flag if _PS3 exists. */
1549 if (device->power.states[ACPI_STATE_D3_HOT].flags.explicit_set)
1550 device->power.states[ACPI_STATE_D3_COLD].flags.explicit_set = 1;
1552 /* Presence of _PS3 or _PRx means we can put the device into D3 cold */
1553 if (device->power.states[ACPI_STATE_D3_HOT].flags.explicit_set ||
1554 device->power.flags.power_resources)
1555 device->power.states[ACPI_STATE_D3_COLD].flags.os_accessible = 1;
1557 if (acpi_bus_init_power(device)) {
1558 acpi_free_power_resources_lists(device);
1559 device->flags.power_manageable = 0;
1563 static void acpi_bus_get_flags(struct acpi_device *device)
1565 /* Presence of _STA indicates 'dynamic_status' */
1566 if (acpi_has_method(device->handle, "_STA"))
1567 device->flags.dynamic_status = 1;
1569 /* Presence of _RMV indicates 'removable' */
1570 if (acpi_has_method(device->handle, "_RMV"))
1571 device->flags.removable = 1;
1573 /* Presence of _EJD|_EJ0 indicates 'ejectable' */
1574 if (acpi_has_method(device->handle, "_EJD") ||
1575 acpi_has_method(device->handle, "_EJ0"))
1576 device->flags.ejectable = 1;
1579 static void acpi_device_get_busid(struct acpi_device *device)
1581 char bus_id[5] = { '?', 0 };
1582 struct acpi_buffer buffer = { sizeof(bus_id), bus_id };
1588 * The device's Bus ID is simply the object name.
1589 * TBD: Shouldn't this value be unique (within the ACPI namespace)?
1591 if (ACPI_IS_ROOT_DEVICE(device)) {
1592 strcpy(device->pnp.bus_id, "ACPI");
1596 switch (device->device_type) {
1597 case ACPI_BUS_TYPE_POWER_BUTTON:
1598 strcpy(device->pnp.bus_id, "PWRF");
1600 case ACPI_BUS_TYPE_SLEEP_BUTTON:
1601 strcpy(device->pnp.bus_id, "SLPF");
1604 acpi_get_name(device->handle, ACPI_SINGLE_NAME, &buffer);
1605 /* Clean up trailing underscores (if any) */
1606 for (i = 3; i > 1; i--) {
1607 if (bus_id[i] == '_')
1612 strcpy(device->pnp.bus_id, bus_id);
1618 * acpi_ata_match - see if an acpi object is an ATA device
1620 * If an acpi object has one of the ACPI ATA methods defined,
1621 * then we can safely call it an ATA device.
1623 bool acpi_ata_match(acpi_handle handle)
1625 return acpi_has_method(handle, "_GTF") ||
1626 acpi_has_method(handle, "_GTM") ||
1627 acpi_has_method(handle, "_STM") ||
1628 acpi_has_method(handle, "_SDD");
1632 * acpi_bay_match - see if an acpi object is an ejectable driver bay
1634 * If an acpi object is ejectable and has one of the ACPI ATA methods defined,
1635 * then we can safely call it an ejectable drive bay
1637 bool acpi_bay_match(acpi_handle handle)
1639 acpi_handle phandle;
1641 if (!acpi_has_method(handle, "_EJ0"))
1643 if (acpi_ata_match(handle))
1645 if (ACPI_FAILURE(acpi_get_parent(handle, &phandle)))
1648 return acpi_ata_match(phandle);
1652 * acpi_dock_match - see if an acpi object has a _DCK method
1654 bool acpi_dock_match(acpi_handle handle)
1656 return acpi_has_method(handle, "_DCK");
1659 const char *acpi_device_hid(struct acpi_device *device)
1661 struct acpi_hardware_id *hid;
1663 if (list_empty(&device->pnp.ids))
1666 hid = list_first_entry(&device->pnp.ids, struct acpi_hardware_id, list);
1669 EXPORT_SYMBOL(acpi_device_hid);
1671 static void acpi_add_id(struct acpi_device_pnp *pnp, const char *dev_id)
1673 struct acpi_hardware_id *id;
1675 id = kmalloc(sizeof(*id), GFP_KERNEL);
1679 id->id = kstrdup(dev_id, GFP_KERNEL);
1685 list_add_tail(&id->list, &pnp->ids);
1686 pnp->type.hardware_id = 1;
1690 * Old IBM workstations have a DSDT bug wherein the SMBus object
1691 * lacks the SMBUS01 HID and the methods do not have the necessary "_"
1692 * prefix. Work around this.
1694 static bool acpi_ibm_smbus_match(acpi_handle handle)
1696 char node_name[ACPI_PATH_SEGMENT_LENGTH];
1697 struct acpi_buffer path = { sizeof(node_name), node_name };
1699 if (!dmi_name_in_vendors("IBM"))
1702 /* Look for SMBS object */
1703 if (ACPI_FAILURE(acpi_get_name(handle, ACPI_SINGLE_NAME, &path)) ||
1704 strcmp("SMBS", path.pointer))
1707 /* Does it have the necessary (but misnamed) methods? */
1708 if (acpi_has_method(handle, "SBI") &&
1709 acpi_has_method(handle, "SBR") &&
1710 acpi_has_method(handle, "SBW"))
1716 static void acpi_set_pnp_ids(acpi_handle handle, struct acpi_device_pnp *pnp,
1720 struct acpi_device_info *info;
1721 struct acpi_pnp_device_id_list *cid_list;
1724 switch (device_type) {
1725 case ACPI_BUS_TYPE_DEVICE:
1726 if (handle == ACPI_ROOT_OBJECT) {
1727 acpi_add_id(pnp, ACPI_SYSTEM_HID);
1731 status = acpi_get_object_info(handle, &info);
1732 if (ACPI_FAILURE(status)) {
1733 pr_err(PREFIX "%s: Error reading device info\n",
1738 if (info->valid & ACPI_VALID_HID)
1739 acpi_add_id(pnp, info->hardware_id.string);
1740 if (info->valid & ACPI_VALID_CID) {
1741 cid_list = &info->compatible_id_list;
1742 for (i = 0; i < cid_list->count; i++)
1743 acpi_add_id(pnp, cid_list->ids[i].string);
1745 if (info->valid & ACPI_VALID_ADR) {
1746 pnp->bus_address = info->address;
1747 pnp->type.bus_address = 1;
1749 if (info->valid & ACPI_VALID_UID)
1750 pnp->unique_id = kstrdup(info->unique_id.string,
1756 * Some devices don't reliably have _HIDs & _CIDs, so add
1757 * synthetic HIDs to make sure drivers can find them.
1759 if (acpi_is_video_device(handle))
1760 acpi_add_id(pnp, ACPI_VIDEO_HID);
1761 else if (acpi_bay_match(handle))
1762 acpi_add_id(pnp, ACPI_BAY_HID);
1763 else if (acpi_dock_match(handle))
1764 acpi_add_id(pnp, ACPI_DOCK_HID);
1765 else if (acpi_ibm_smbus_match(handle))
1766 acpi_add_id(pnp, ACPI_SMBUS_IBM_HID);
1767 else if (list_empty(&pnp->ids) && handle == ACPI_ROOT_OBJECT) {
1768 acpi_add_id(pnp, ACPI_BUS_HID); /* \_SB, LNXSYBUS */
1769 strcpy(pnp->device_name, ACPI_BUS_DEVICE_NAME);
1770 strcpy(pnp->device_class, ACPI_BUS_CLASS);
1774 case ACPI_BUS_TYPE_POWER:
1775 acpi_add_id(pnp, ACPI_POWER_HID);
1777 case ACPI_BUS_TYPE_PROCESSOR:
1778 acpi_add_id(pnp, ACPI_PROCESSOR_OBJECT_HID);
1780 case ACPI_BUS_TYPE_THERMAL:
1781 acpi_add_id(pnp, ACPI_THERMAL_HID);
1783 case ACPI_BUS_TYPE_POWER_BUTTON:
1784 acpi_add_id(pnp, ACPI_BUTTON_HID_POWERF);
1786 case ACPI_BUS_TYPE_SLEEP_BUTTON:
1787 acpi_add_id(pnp, ACPI_BUTTON_HID_SLEEPF);
1792 void acpi_free_pnp_ids(struct acpi_device_pnp *pnp)
1794 struct acpi_hardware_id *id, *tmp;
1796 list_for_each_entry_safe(id, tmp, &pnp->ids, list) {
1800 kfree(pnp->unique_id);
1803 void acpi_init_device_object(struct acpi_device *device, acpi_handle handle,
1804 int type, unsigned long long sta)
1806 INIT_LIST_HEAD(&device->pnp.ids);
1807 device->device_type = type;
1808 device->handle = handle;
1809 device->parent = acpi_bus_get_parent(handle);
1810 acpi_set_device_status(device, sta);
1811 acpi_device_get_busid(device);
1812 acpi_set_pnp_ids(handle, &device->pnp, type);
1813 acpi_bus_get_flags(device);
1814 device->flags.match_driver = false;
1815 device->flags.initialized = true;
1816 device->flags.visited = false;
1817 device_initialize(&device->dev);
1818 dev_set_uevent_suppress(&device->dev, true);
1821 void acpi_device_add_finalize(struct acpi_device *device)
1823 dev_set_uevent_suppress(&device->dev, false);
1824 kobject_uevent(&device->dev.kobj, KOBJ_ADD);
1827 static int acpi_add_single_object(struct acpi_device **child,
1828 acpi_handle handle, int type,
1829 unsigned long long sta)
1832 struct acpi_device *device;
1833 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1835 device = kzalloc(sizeof(struct acpi_device), GFP_KERNEL);
1837 printk(KERN_ERR PREFIX "Memory allocation error\n");
1841 acpi_init_device_object(device, handle, type, sta);
1842 acpi_bus_get_power_flags(device);
1843 acpi_bus_get_wakeup_device_flags(device);
1845 result = acpi_device_add(device, acpi_device_release);
1847 acpi_device_release(&device->dev);
1851 acpi_power_add_remove_device(device, true);
1852 acpi_device_add_finalize(device);
1853 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
1854 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Added %s [%s] parent %s\n",
1855 dev_name(&device->dev), (char *) buffer.pointer,
1856 device->parent ? dev_name(&device->parent->dev) : "(null)"));
1857 kfree(buffer.pointer);
1862 static int acpi_bus_type_and_status(acpi_handle handle, int *type,
1863 unsigned long long *sta)
1866 acpi_object_type acpi_type;
1868 status = acpi_get_type(handle, &acpi_type);
1869 if (ACPI_FAILURE(status))
1872 switch (acpi_type) {
1873 case ACPI_TYPE_ANY: /* for ACPI_ROOT_OBJECT */
1874 case ACPI_TYPE_DEVICE:
1875 *type = ACPI_BUS_TYPE_DEVICE;
1876 status = acpi_bus_get_status_handle(handle, sta);
1877 if (ACPI_FAILURE(status))
1880 case ACPI_TYPE_PROCESSOR:
1881 *type = ACPI_BUS_TYPE_PROCESSOR;
1882 status = acpi_bus_get_status_handle(handle, sta);
1883 if (ACPI_FAILURE(status))
1886 case ACPI_TYPE_THERMAL:
1887 *type = ACPI_BUS_TYPE_THERMAL;
1888 *sta = ACPI_STA_DEFAULT;
1890 case ACPI_TYPE_POWER:
1891 *type = ACPI_BUS_TYPE_POWER;
1892 *sta = ACPI_STA_DEFAULT;
1901 bool acpi_device_is_present(struct acpi_device *adev)
1903 if (adev->status.present || adev->status.functional)
1906 adev->flags.initialized = false;
1910 static bool acpi_scan_handler_matching(struct acpi_scan_handler *handler,
1912 const struct acpi_device_id **matchid)
1914 const struct acpi_device_id *devid;
1916 for (devid = handler->ids; devid->id[0]; devid++)
1917 if (!strcmp((char *)devid->id, idstr)) {
1927 static struct acpi_scan_handler *acpi_scan_match_handler(char *idstr,
1928 const struct acpi_device_id **matchid)
1930 struct acpi_scan_handler *handler;
1932 list_for_each_entry(handler, &acpi_scan_handlers_list, list_node)
1933 if (acpi_scan_handler_matching(handler, idstr, matchid))
1939 void acpi_scan_hotplug_enabled(struct acpi_hotplug_profile *hotplug, bool val)
1941 if (!!hotplug->enabled == !!val)
1944 mutex_lock(&acpi_scan_lock);
1946 hotplug->enabled = val;
1948 mutex_unlock(&acpi_scan_lock);
1951 static void acpi_scan_init_hotplug(acpi_handle handle, int type)
1953 struct acpi_device_pnp pnp = {};
1954 struct acpi_hardware_id *hwid;
1955 struct acpi_scan_handler *handler;
1957 INIT_LIST_HEAD(&pnp.ids);
1958 acpi_set_pnp_ids(handle, &pnp, type);
1960 if (!pnp.type.hardware_id)
1964 * This relies on the fact that acpi_install_notify_handler() will not
1965 * install the same notify handler routine twice for the same handle.
1967 list_for_each_entry(hwid, &pnp.ids, list) {
1968 handler = acpi_scan_match_handler(hwid->id, NULL);
1970 acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
1971 acpi_hotplug_notify_cb, handler);
1977 acpi_free_pnp_ids(&pnp);
1980 static acpi_status acpi_bus_check_add(acpi_handle handle, u32 lvl_not_used,
1981 void *not_used, void **return_value)
1983 struct acpi_device *device = NULL;
1985 unsigned long long sta;
1988 acpi_bus_get_device(handle, &device);
1992 result = acpi_bus_type_and_status(handle, &type, &sta);
1996 if (type == ACPI_BUS_TYPE_POWER) {
1997 acpi_add_power_resource(handle);
2001 acpi_scan_init_hotplug(handle, type);
2003 acpi_add_single_object(&device, handle, type, sta);
2005 return AE_CTRL_DEPTH;
2009 *return_value = device;
2014 static int acpi_scan_attach_handler(struct acpi_device *device)
2016 struct acpi_hardware_id *hwid;
2019 list_for_each_entry(hwid, &device->pnp.ids, list) {
2020 const struct acpi_device_id *devid;
2021 struct acpi_scan_handler *handler;
2023 handler = acpi_scan_match_handler(hwid->id, &devid);
2025 ret = handler->attach(device, devid);
2027 device->handler = handler;
2029 } else if (ret < 0) {
2037 static void acpi_bus_attach(struct acpi_device *device)
2039 struct acpi_device *child;
2042 acpi_bus_get_status(device);
2043 /* Skip devices that are not present. */
2044 if (!acpi_device_is_present(device)) {
2045 device->flags.visited = false;
2048 if (device->handler)
2051 if (!device->flags.initialized) {
2052 acpi_bus_update_power(device, NULL);
2053 device->flags.initialized = true;
2055 device->flags.visited = false;
2056 ret = acpi_scan_attach_handler(device);
2060 device->flags.match_driver = true;
2062 ret = device_attach(&device->dev);
2066 device->flags.visited = true;
2069 list_for_each_entry(child, &device->children, node)
2070 acpi_bus_attach(child);
2072 if (device->handler && device->handler->hotplug.notify_online)
2073 device->handler->hotplug.notify_online(device);
2077 * acpi_bus_scan - Add ACPI device node objects in a given namespace scope.
2078 * @handle: Root of the namespace scope to scan.
2080 * Scan a given ACPI tree (probably recently hot-plugged) and create and add
2083 * If no devices were found, -ENODEV is returned, but it does not mean that
2084 * there has been a real error. There just have been no suitable ACPI objects
2085 * in the table trunk from which the kernel could create a device and add an
2086 * appropriate driver.
2088 * Must be called under acpi_scan_lock.
2090 int acpi_bus_scan(acpi_handle handle)
2092 void *device = NULL;
2094 if (ACPI_SUCCESS(acpi_bus_check_add(handle, 0, NULL, &device)))
2095 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
2096 acpi_bus_check_add, NULL, NULL, &device);
2099 acpi_bus_attach(device);
2104 EXPORT_SYMBOL(acpi_bus_scan);
2107 * acpi_bus_trim - Detach scan handlers and drivers from ACPI device objects.
2108 * @adev: Root of the ACPI namespace scope to walk.
2110 * Must be called under acpi_scan_lock.
2112 void acpi_bus_trim(struct acpi_device *adev)
2114 struct acpi_scan_handler *handler = adev->handler;
2115 struct acpi_device *child;
2117 list_for_each_entry_reverse(child, &adev->children, node)
2118 acpi_bus_trim(child);
2120 adev->flags.match_driver = false;
2122 if (handler->detach)
2123 handler->detach(adev);
2125 adev->handler = NULL;
2127 device_release_driver(&adev->dev);
2130 * Most likely, the device is going away, so put it into D3cold before
2133 acpi_device_set_power(adev, ACPI_STATE_D3_COLD);
2134 adev->flags.initialized = false;
2135 adev->flags.visited = false;
2137 EXPORT_SYMBOL_GPL(acpi_bus_trim);
2139 static int acpi_bus_scan_fixed(void)
2144 * Enumerate all fixed-feature devices.
2146 if (!(acpi_gbl_FADT.flags & ACPI_FADT_POWER_BUTTON)) {
2147 struct acpi_device *device = NULL;
2149 result = acpi_add_single_object(&device, NULL,
2150 ACPI_BUS_TYPE_POWER_BUTTON,
2155 device->flags.match_driver = true;
2156 result = device_attach(&device->dev);
2160 device_init_wakeup(&device->dev, true);
2163 if (!(acpi_gbl_FADT.flags & ACPI_FADT_SLEEP_BUTTON)) {
2164 struct acpi_device *device = NULL;
2166 result = acpi_add_single_object(&device, NULL,
2167 ACPI_BUS_TYPE_SLEEP_BUTTON,
2172 device->flags.match_driver = true;
2173 result = device_attach(&device->dev);
2176 return result < 0 ? result : 0;
2179 int __init acpi_scan_init(void)
2183 result = bus_register(&acpi_bus_type);
2185 /* We don't want to quit even if we failed to add suspend/resume */
2186 printk(KERN_ERR PREFIX "Could not register bus type\n");
2189 acpi_pci_root_init();
2190 acpi_pci_link_init();
2191 acpi_processor_init();
2192 acpi_platform_init();
2194 acpi_cmos_rtc_init();
2195 acpi_container_init();
2196 acpi_memory_hotplug_init();
2199 mutex_lock(&acpi_scan_lock);
2201 * Enumerate devices in the ACPI namespace.
2203 result = acpi_bus_scan(ACPI_ROOT_OBJECT);
2207 result = acpi_bus_get_device(ACPI_ROOT_OBJECT, &acpi_root);
2211 result = acpi_bus_scan_fixed();
2213 acpi_detach_data(acpi_root->handle, acpi_scan_drop_device);
2214 acpi_device_del(acpi_root);
2215 put_device(&acpi_root->dev);
2219 acpi_update_all_gpes();
2222 mutex_unlock(&acpi_scan_lock);