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/acpi.h>
9 #include <acpi/acpi_drivers.h>
10 #include <acpi/acinterp.h> /* for acpi_ex_eisa_id_to_string() */
12 #define _COMPONENT ACPI_BUS_COMPONENT
13 ACPI_MODULE_NAME("scan")
14 #define STRUCT_TO_INT(s) (*((int*)&s))
15 extern struct acpi_device *acpi_root;
17 #define ACPI_BUS_CLASS "system_bus"
18 #define ACPI_BUS_HID "ACPI_BUS"
19 #define ACPI_BUS_DRIVER_NAME "ACPI Bus Driver"
20 #define ACPI_BUS_DEVICE_NAME "System Bus"
22 static LIST_HEAD(acpi_device_list);
23 DEFINE_SPINLOCK(acpi_device_lock);
24 LIST_HEAD(acpi_wakeup_device_list);
27 static void acpi_device_release(struct kobject *kobj)
29 struct acpi_device *dev = container_of(kobj, struct acpi_device, kobj);
30 kfree(dev->pnp.cid_list);
34 struct acpi_device_attribute {
35 struct attribute attr;
36 ssize_t(*show) (struct acpi_device *, char *);
37 ssize_t(*store) (struct acpi_device *, const char *, size_t);
40 typedef void acpi_device_sysfs_files(struct kobject *,
41 const struct attribute *);
43 static void setup_sys_fs_device_files(struct acpi_device *dev,
44 acpi_device_sysfs_files * func);
46 #define create_sysfs_device_files(dev) \
47 setup_sys_fs_device_files(dev, (acpi_device_sysfs_files *)&sysfs_create_file)
48 #define remove_sysfs_device_files(dev) \
49 setup_sys_fs_device_files(dev, (acpi_device_sysfs_files *)&sysfs_remove_file)
51 #define to_acpi_device(n) container_of(n, struct acpi_device, kobj)
52 #define to_handle_attr(n) container_of(n, struct acpi_device_attribute, attr);
54 static ssize_t acpi_device_attr_show(struct kobject *kobj,
55 struct attribute *attr, char *buf)
57 struct acpi_device *device = to_acpi_device(kobj);
58 struct acpi_device_attribute *attribute = to_handle_attr(attr);
59 return attribute->show ? attribute->show(device, buf) : -EIO;
61 static ssize_t acpi_device_attr_store(struct kobject *kobj,
62 struct attribute *attr, const char *buf,
65 struct acpi_device *device = to_acpi_device(kobj);
66 struct acpi_device_attribute *attribute = to_handle_attr(attr);
67 return attribute->store ? attribute->store(device, buf, len) : -EIO;
70 static struct sysfs_ops acpi_device_sysfs_ops = {
71 .show = acpi_device_attr_show,
72 .store = acpi_device_attr_store,
75 static struct kobj_type ktype_acpi_ns = {
76 .sysfs_ops = &acpi_device_sysfs_ops,
77 .release = acpi_device_release,
80 static int namespace_uevent(struct kset *kset, struct kobject *kobj,
81 char **envp, int num_envp, char *buffer,
84 struct acpi_device *dev = to_acpi_device(kobj);
91 if (add_uevent_var(envp, num_envp, &i, buffer, buffer_size, &len,
92 "PHYSDEVDRIVER=%s", dev->driver->name))
100 static struct kset_uevent_ops namespace_uevent_ops = {
101 .uevent = &namespace_uevent,
104 static struct kset acpi_namespace_kset = {
108 .subsys = &acpi_subsys,
109 .ktype = &ktype_acpi_ns,
110 .uevent_ops = &namespace_uevent_ops,
113 static void acpi_device_register(struct acpi_device *device,
114 struct acpi_device *parent)
119 * Link this device to its parent and siblings.
121 INIT_LIST_HEAD(&device->children);
122 INIT_LIST_HEAD(&device->node);
123 INIT_LIST_HEAD(&device->g_list);
124 INIT_LIST_HEAD(&device->wakeup_list);
126 spin_lock(&acpi_device_lock);
127 if (device->parent) {
128 list_add_tail(&device->node, &device->parent->children);
129 list_add_tail(&device->g_list, &device->parent->g_list);
131 list_add_tail(&device->g_list, &acpi_device_list);
132 if (device->wakeup.flags.valid)
133 list_add_tail(&device->wakeup_list, &acpi_wakeup_device_list);
134 spin_unlock(&acpi_device_lock);
136 strlcpy(device->kobj.name, device->pnp.bus_id, KOBJ_NAME_LEN);
138 device->kobj.parent = &parent->kobj;
139 device->kobj.ktype = &ktype_acpi_ns;
140 device->kobj.kset = &acpi_namespace_kset;
141 kobject_register(&device->kobj);
142 create_sysfs_device_files(device);
145 static int acpi_device_unregister(struct acpi_device *device, int type)
147 spin_lock(&acpi_device_lock);
148 if (device->parent) {
149 list_del(&device->node);
150 list_del(&device->g_list);
152 list_del(&device->g_list);
154 list_del(&device->wakeup_list);
156 spin_unlock(&acpi_device_lock);
158 acpi_detach_data(device->handle, acpi_bus_data_handler);
159 remove_sysfs_device_files(device);
160 kobject_unregister(&device->kobj);
164 void acpi_bus_data_handler(acpi_handle handle, u32 function, void *context)
166 ACPI_FUNCTION_TRACE("acpi_bus_data_handler");
173 static int acpi_bus_get_power_flags(struct acpi_device *device)
175 acpi_status status = 0;
176 acpi_handle handle = NULL;
179 ACPI_FUNCTION_TRACE("acpi_bus_get_power_flags");
182 * Power Management Flags
184 status = acpi_get_handle(device->handle, "_PSC", &handle);
185 if (ACPI_SUCCESS(status))
186 device->power.flags.explicit_get = 1;
187 status = acpi_get_handle(device->handle, "_IRC", &handle);
188 if (ACPI_SUCCESS(status))
189 device->power.flags.inrush_current = 1;
192 * Enumerate supported power management states
194 for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3; i++) {
195 struct acpi_device_power_state *ps = &device->power.states[i];
196 char object_name[5] = { '_', 'P', 'R', '0' + i, '\0' };
198 /* Evaluate "_PRx" to se if power resources are referenced */
199 acpi_evaluate_reference(device->handle, object_name, NULL,
201 if (ps->resources.count) {
202 device->power.flags.power_resources = 1;
206 /* Evaluate "_PSx" to see if we can do explicit sets */
207 object_name[2] = 'S';
208 status = acpi_get_handle(device->handle, object_name, &handle);
209 if (ACPI_SUCCESS(status)) {
210 ps->flags.explicit_set = 1;
214 /* State is valid if we have some power control */
215 if (ps->resources.count || ps->flags.explicit_set)
218 ps->power = -1; /* Unknown - driver assigned */
219 ps->latency = -1; /* Unknown - driver assigned */
222 /* Set defaults for D0 and D3 states (always valid) */
223 device->power.states[ACPI_STATE_D0].flags.valid = 1;
224 device->power.states[ACPI_STATE_D0].power = 100;
225 device->power.states[ACPI_STATE_D3].flags.valid = 1;
226 device->power.states[ACPI_STATE_D3].power = 0;
228 /* TBD: System wake support and resource requirements. */
230 device->power.state = ACPI_STATE_UNKNOWN;
235 int acpi_match_ids(struct acpi_device *device, char *ids)
237 if (device->flags.hardware_id)
238 if (strstr(ids, device->pnp.hardware_id))
241 if (device->flags.compatible_ids) {
242 struct acpi_compatible_id_list *cid_list = device->pnp.cid_list;
245 /* compare multiple _CID entries against driver ids */
246 for (i = 0; i < cid_list->count; i++) {
247 if (strstr(ids, cid_list->id[i].value))
255 acpi_bus_extract_wakeup_device_power_package(struct acpi_device *device,
256 union acpi_object *package)
259 union acpi_object *element = NULL;
261 if (!device || !package || (package->package.count < 2))
262 return AE_BAD_PARAMETER;
264 element = &(package->package.elements[0]);
266 return AE_BAD_PARAMETER;
267 if (element->type == ACPI_TYPE_PACKAGE) {
268 if ((element->package.count < 2) ||
269 (element->package.elements[0].type !=
270 ACPI_TYPE_LOCAL_REFERENCE)
271 || (element->package.elements[1].type != ACPI_TYPE_INTEGER))
273 device->wakeup.gpe_device =
274 element->package.elements[0].reference.handle;
275 device->wakeup.gpe_number =
276 (u32) element->package.elements[1].integer.value;
277 } else if (element->type == ACPI_TYPE_INTEGER) {
278 device->wakeup.gpe_number = element->integer.value;
282 element = &(package->package.elements[1]);
283 if (element->type != ACPI_TYPE_INTEGER) {
286 device->wakeup.sleep_state = element->integer.value;
288 if ((package->package.count - 2) > ACPI_MAX_HANDLES) {
291 device->wakeup.resources.count = package->package.count - 2;
292 for (i = 0; i < device->wakeup.resources.count; i++) {
293 element = &(package->package.elements[i + 2]);
294 if (element->type != ACPI_TYPE_ANY) {
298 device->wakeup.resources.handles[i] = element->reference.handle;
304 static int acpi_bus_get_wakeup_device_flags(struct acpi_device *device)
306 acpi_status status = 0;
307 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
308 union acpi_object *package = NULL;
310 ACPI_FUNCTION_TRACE("acpi_bus_get_wakeup_flags");
313 status = acpi_evaluate_object(device->handle, "_PRW", NULL, &buffer);
314 if (ACPI_FAILURE(status)) {
315 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Error evaluating _PRW\n"));
319 package = (union acpi_object *)buffer.pointer;
320 status = acpi_bus_extract_wakeup_device_power_package(device, package);
321 if (ACPI_FAILURE(status)) {
322 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
323 "Error extracting _PRW package\n"));
327 acpi_os_free(buffer.pointer);
329 device->wakeup.flags.valid = 1;
330 /* Power button, Lid switch always enable wakeup */
331 if (!acpi_match_ids(device, "PNP0C0D,PNP0C0C,PNP0C0E"))
332 device->wakeup.flags.run_wake = 1;
335 if (ACPI_FAILURE(status))
336 device->flags.wake_capable = 0;
340 /* --------------------------------------------------------------------------
341 ACPI sysfs device file support
342 -------------------------------------------------------------------------- */
343 static ssize_t acpi_eject_store(struct acpi_device *device,
344 const char *buf, size_t count);
346 #define ACPI_DEVICE_ATTR(_name,_mode,_show,_store) \
347 static struct acpi_device_attribute acpi_device_attr_##_name = \
348 __ATTR(_name, _mode, _show, _store)
350 ACPI_DEVICE_ATTR(eject, 0200, NULL, acpi_eject_store);
353 * setup_sys_fs_device_files - sets up the device files under device namespace
354 * @dev: acpi_device object
355 * @func: function pointer to create or destroy the device file
358 setup_sys_fs_device_files(struct acpi_device *dev,
359 acpi_device_sysfs_files * func)
362 acpi_handle temp = NULL;
365 * If device has _EJ0, 'eject' file is created that is used to trigger
366 * hot-removal function from userland.
368 status = acpi_get_handle(dev->handle, "_EJ0", &temp);
369 if (ACPI_SUCCESS(status))
370 (*(func)) (&dev->kobj, &acpi_device_attr_eject.attr);
373 static int acpi_eject_operation(acpi_handle handle, int lockable)
375 struct acpi_object_list arg_list;
376 union acpi_object arg;
377 acpi_status status = AE_OK;
380 * TBD: evaluate _PS3?
385 arg_list.pointer = &arg;
386 arg.type = ACPI_TYPE_INTEGER;
387 arg.integer.value = 0;
388 acpi_evaluate_object(handle, "_LCK", &arg_list, NULL);
392 arg_list.pointer = &arg;
393 arg.type = ACPI_TYPE_INTEGER;
394 arg.integer.value = 1;
400 status = acpi_evaluate_object(handle, "_EJ0", &arg_list, NULL);
401 if (ACPI_FAILURE(status)) {
409 acpi_eject_store(struct acpi_device *device, const char *buf, size_t count)
416 acpi_object_type type = 0;
418 if ((!count) || (buf[0] != '1')) {
422 if (device->driver == NULL) {
427 status = acpi_get_type(device->handle, &type);
428 if (ACPI_FAILURE(status) || (!device->flags.ejectable)) {
433 islockable = device->flags.lockable;
434 handle = device->handle;
436 result = acpi_bus_trim(device, 1);
439 result = acpi_eject_operation(handle, islockable);
448 /* --------------------------------------------------------------------------
449 Performance Management
450 -------------------------------------------------------------------------- */
452 static int acpi_bus_get_perf_flags(struct acpi_device *device)
454 device->performance.state = ACPI_STATE_UNKNOWN;
458 /* --------------------------------------------------------------------------
460 -------------------------------------------------------------------------- */
462 static LIST_HEAD(acpi_bus_drivers);
463 static DECLARE_MUTEX(acpi_bus_drivers_lock);
466 * acpi_bus_match - match device IDs to driver's supported IDs
467 * @device: the device that we are trying to match to a driver
468 * @driver: driver whose device id table is being checked
470 * Checks the device's hardware (_HID) or compatible (_CID) ids to see if it
471 * matches the specified driver's criteria.
474 acpi_bus_match(struct acpi_device *device, struct acpi_driver *driver)
476 if (driver && driver->ops.match)
477 return driver->ops.match(device, driver);
478 return acpi_match_ids(device, driver->ids);
482 * acpi_bus_driver_init - add a device to a driver
483 * @device: the device to add and initialize
484 * @driver: driver for the device
486 * Used to initialize a device via its device driver. Called whenever a
487 * driver is bound to a device. Invokes the driver's add() and start() ops.
490 acpi_bus_driver_init(struct acpi_device *device, struct acpi_driver *driver)
494 ACPI_FUNCTION_TRACE("acpi_bus_driver_init");
496 if (!device || !driver)
497 return_VALUE(-EINVAL);
499 if (!driver->ops.add)
500 return_VALUE(-ENOSYS);
502 result = driver->ops.add(device);
504 device->driver = NULL;
505 acpi_driver_data(device) = NULL;
506 return_VALUE(result);
509 device->driver = driver;
512 * TBD - Configuration Management: Assign resources to device based
513 * upon possible configuration and currently allocated resources.
516 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
517 "Driver successfully bound to device\n"));
521 static int acpi_start_single_object(struct acpi_device *device)
524 struct acpi_driver *driver;
526 ACPI_FUNCTION_TRACE("acpi_start_single_object");
528 if (!(driver = device->driver))
531 if (driver->ops.start) {
532 result = driver->ops.start(device);
533 if (result && driver->ops.remove)
534 driver->ops.remove(device, ACPI_BUS_REMOVAL_NORMAL);
537 return_VALUE(result);
540 static int acpi_driver_attach(struct acpi_driver *drv)
542 struct list_head *node, *next;
545 ACPI_FUNCTION_TRACE("acpi_driver_attach");
547 spin_lock(&acpi_device_lock);
548 list_for_each_safe(node, next, &acpi_device_list) {
549 struct acpi_device *dev =
550 container_of(node, struct acpi_device, g_list);
552 if (dev->driver || !dev->status.present)
554 spin_unlock(&acpi_device_lock);
556 if (!acpi_bus_match(dev, drv)) {
557 if (!acpi_bus_driver_init(dev, drv)) {
558 acpi_start_single_object(dev);
559 atomic_inc(&drv->references);
561 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
562 "Found driver [%s] for device [%s]\n",
563 drv->name, dev->pnp.bus_id));
566 spin_lock(&acpi_device_lock);
568 spin_unlock(&acpi_device_lock);
572 static int acpi_driver_detach(struct acpi_driver *drv)
574 struct list_head *node, *next;
576 ACPI_FUNCTION_TRACE("acpi_driver_detach");
578 spin_lock(&acpi_device_lock);
579 list_for_each_safe(node, next, &acpi_device_list) {
580 struct acpi_device *dev =
581 container_of(node, struct acpi_device, g_list);
583 if (dev->driver == drv) {
584 spin_unlock(&acpi_device_lock);
586 drv->ops.remove(dev, ACPI_BUS_REMOVAL_NORMAL);
587 spin_lock(&acpi_device_lock);
589 dev->driver_data = NULL;
590 atomic_dec(&drv->references);
593 spin_unlock(&acpi_device_lock);
598 * acpi_bus_register_driver - register a driver with the ACPI bus
599 * @driver: driver being registered
601 * Registers a driver with the ACPI bus. Searches the namespace for all
602 * devices that match the driver's criteria and binds. Returns the
603 * number of devices that were claimed by the driver, or a negative
604 * error status for failure.
606 int acpi_bus_register_driver(struct acpi_driver *driver)
610 ACPI_FUNCTION_TRACE("acpi_bus_register_driver");
613 return_VALUE(-ENODEV);
616 return_VALUE(-EINVAL);
618 spin_lock(&acpi_device_lock);
619 list_add_tail(&driver->node, &acpi_bus_drivers);
620 spin_unlock(&acpi_device_lock);
621 count = acpi_driver_attach(driver);
626 EXPORT_SYMBOL(acpi_bus_register_driver);
629 * acpi_bus_unregister_driver - unregisters a driver with the APIC bus
630 * @driver: driver to unregister
632 * Unregisters a driver with the ACPI bus. Searches the namespace for all
633 * devices that match the driver's criteria and unbinds.
635 int acpi_bus_unregister_driver(struct acpi_driver *driver)
637 ACPI_FUNCTION_TRACE("acpi_bus_unregister_driver");
640 return_VALUE(-EINVAL);
642 acpi_driver_detach(driver);
644 if (!atomic_read(&driver->references)) {
645 spin_lock(&acpi_device_lock);
646 list_del_init(&driver->node);
647 spin_unlock(&acpi_device_lock);
652 EXPORT_SYMBOL(acpi_bus_unregister_driver);
655 * acpi_bus_find_driver - check if there is a driver installed for the device
656 * @device: device that we are trying to find a supporting driver for
658 * Parses the list of registered drivers looking for a driver applicable for
659 * the specified device.
661 static int acpi_bus_find_driver(struct acpi_device *device)
664 struct list_head *node, *next;
666 ACPI_FUNCTION_TRACE("acpi_bus_find_driver");
668 spin_lock(&acpi_device_lock);
669 list_for_each_safe(node, next, &acpi_bus_drivers) {
670 struct acpi_driver *driver =
671 container_of(node, struct acpi_driver, node);
673 atomic_inc(&driver->references);
674 spin_unlock(&acpi_device_lock);
675 if (!acpi_bus_match(device, driver)) {
676 result = acpi_bus_driver_init(device, driver);
680 atomic_dec(&driver->references);
681 spin_lock(&acpi_device_lock);
683 spin_unlock(&acpi_device_lock);
686 return_VALUE(result);
689 /* --------------------------------------------------------------------------
691 -------------------------------------------------------------------------- */
693 static int acpi_bus_get_flags(struct acpi_device *device)
695 acpi_status status = AE_OK;
696 acpi_handle temp = NULL;
698 ACPI_FUNCTION_TRACE("acpi_bus_get_flags");
700 /* Presence of _STA indicates 'dynamic_status' */
701 status = acpi_get_handle(device->handle, "_STA", &temp);
702 if (ACPI_SUCCESS(status))
703 device->flags.dynamic_status = 1;
705 /* Presence of _CID indicates 'compatible_ids' */
706 status = acpi_get_handle(device->handle, "_CID", &temp);
707 if (ACPI_SUCCESS(status))
708 device->flags.compatible_ids = 1;
710 /* Presence of _RMV indicates 'removable' */
711 status = acpi_get_handle(device->handle, "_RMV", &temp);
712 if (ACPI_SUCCESS(status))
713 device->flags.removable = 1;
715 /* Presence of _EJD|_EJ0 indicates 'ejectable' */
716 status = acpi_get_handle(device->handle, "_EJD", &temp);
717 if (ACPI_SUCCESS(status))
718 device->flags.ejectable = 1;
720 status = acpi_get_handle(device->handle, "_EJ0", &temp);
721 if (ACPI_SUCCESS(status))
722 device->flags.ejectable = 1;
725 /* Presence of _LCK indicates 'lockable' */
726 status = acpi_get_handle(device->handle, "_LCK", &temp);
727 if (ACPI_SUCCESS(status))
728 device->flags.lockable = 1;
730 /* Presence of _PS0|_PR0 indicates 'power manageable' */
731 status = acpi_get_handle(device->handle, "_PS0", &temp);
732 if (ACPI_FAILURE(status))
733 status = acpi_get_handle(device->handle, "_PR0", &temp);
734 if (ACPI_SUCCESS(status))
735 device->flags.power_manageable = 1;
737 /* Presence of _PRW indicates wake capable */
738 status = acpi_get_handle(device->handle, "_PRW", &temp);
739 if (ACPI_SUCCESS(status))
740 device->flags.wake_capable = 1;
742 /* TBD: Peformance management */
747 static void acpi_device_get_busid(struct acpi_device *device,
748 acpi_handle handle, int type)
750 char bus_id[5] = { '?', 0 };
751 struct acpi_buffer buffer = { sizeof(bus_id), bus_id };
757 * The device's Bus ID is simply the object name.
758 * TBD: Shouldn't this value be unique (within the ACPI namespace)?
761 case ACPI_BUS_TYPE_SYSTEM:
762 strcpy(device->pnp.bus_id, "ACPI");
764 case ACPI_BUS_TYPE_POWER_BUTTON:
765 strcpy(device->pnp.bus_id, "PWRF");
767 case ACPI_BUS_TYPE_SLEEP_BUTTON:
768 strcpy(device->pnp.bus_id, "SLPF");
771 acpi_get_name(handle, ACPI_SINGLE_NAME, &buffer);
772 /* Clean up trailing underscores (if any) */
773 for (i = 3; i > 1; i--) {
774 if (bus_id[i] == '_')
779 strcpy(device->pnp.bus_id, bus_id);
784 static void acpi_device_set_id(struct acpi_device *device,
785 struct acpi_device *parent, acpi_handle handle,
788 struct acpi_device_info *info;
789 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
792 struct acpi_compatible_id_list *cid_list = NULL;
796 case ACPI_BUS_TYPE_DEVICE:
797 status = acpi_get_object_info(handle, &buffer);
798 if (ACPI_FAILURE(status)) {
799 printk("%s: Error reading device info\n", __FUNCTION__);
803 info = buffer.pointer;
804 if (info->valid & ACPI_VALID_HID)
805 hid = info->hardware_id.value;
806 if (info->valid & ACPI_VALID_UID)
807 uid = info->unique_id.value;
808 if (info->valid & ACPI_VALID_CID)
809 cid_list = &info->compatibility_id;
810 if (info->valid & ACPI_VALID_ADR) {
811 device->pnp.bus_address = info->address;
812 device->flags.bus_address = 1;
815 case ACPI_BUS_TYPE_POWER:
816 hid = ACPI_POWER_HID;
818 case ACPI_BUS_TYPE_PROCESSOR:
819 hid = ACPI_PROCESSOR_HID;
821 case ACPI_BUS_TYPE_SYSTEM:
822 hid = ACPI_SYSTEM_HID;
824 case ACPI_BUS_TYPE_THERMAL:
825 hid = ACPI_THERMAL_HID;
827 case ACPI_BUS_TYPE_POWER_BUTTON:
828 hid = ACPI_BUTTON_HID_POWERF;
830 case ACPI_BUS_TYPE_SLEEP_BUTTON:
831 hid = ACPI_BUTTON_HID_SLEEPF;
838 * Fix for the system root bus device -- the only root-level device.
840 if (((acpi_handle)parent == ACPI_ROOT_OBJECT) && (type == ACPI_BUS_TYPE_DEVICE)) {
842 strcpy(device->pnp.device_name, ACPI_BUS_DEVICE_NAME);
843 strcpy(device->pnp.device_class, ACPI_BUS_CLASS);
847 strcpy(device->pnp.hardware_id, hid);
848 device->flags.hardware_id = 1;
851 strcpy(device->pnp.unique_id, uid);
852 device->flags.unique_id = 1;
855 device->pnp.cid_list = kmalloc(cid_list->size, GFP_KERNEL);
856 if (device->pnp.cid_list)
857 memcpy(device->pnp.cid_list, cid_list, cid_list->size);
859 printk(KERN_ERR "Memory allocation error\n");
862 acpi_os_free(buffer.pointer);
865 static int acpi_device_set_context(struct acpi_device *device, int type)
867 acpi_status status = AE_OK;
872 * Attach this 'struct acpi_device' to the ACPI object. This makes
873 * resolutions from handle->device very efficient. Note that we need
874 * to be careful with fixed-feature devices as they all attach to the
877 if (type != ACPI_BUS_TYPE_POWER_BUTTON &&
878 type != ACPI_BUS_TYPE_SLEEP_BUTTON) {
879 status = acpi_attach_data(device->handle,
880 acpi_bus_data_handler, device);
882 if (ACPI_FAILURE(status)) {
883 printk("Error attaching device data\n");
890 static void acpi_device_get_debug_info(struct acpi_device *device,
891 acpi_handle handle, int type)
893 #ifdef CONFIG_ACPI_DEBUG_OUTPUT
894 char *type_string = NULL;
895 char name[80] = { '?', '\0' };
896 struct acpi_buffer buffer = { sizeof(name), name };
899 case ACPI_BUS_TYPE_DEVICE:
900 type_string = "Device";
901 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
903 case ACPI_BUS_TYPE_POWER:
904 type_string = "Power Resource";
905 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
907 case ACPI_BUS_TYPE_PROCESSOR:
908 type_string = "Processor";
909 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
911 case ACPI_BUS_TYPE_SYSTEM:
912 type_string = "System";
913 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
915 case ACPI_BUS_TYPE_THERMAL:
916 type_string = "Thermal Zone";
917 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
919 case ACPI_BUS_TYPE_POWER_BUTTON:
920 type_string = "Power Button";
921 sprintf(name, "PWRB");
923 case ACPI_BUS_TYPE_SLEEP_BUTTON:
924 type_string = "Sleep Button";
925 sprintf(name, "SLPB");
929 printk(KERN_DEBUG "Found %s %s [%p]\n", type_string, name, handle);
930 #endif /*CONFIG_ACPI_DEBUG_OUTPUT */
933 static int acpi_bus_remove(struct acpi_device *dev, int rmdevice)
936 struct acpi_driver *driver;
938 ACPI_FUNCTION_TRACE("acpi_bus_remove");
941 return_VALUE(-EINVAL);
943 driver = dev->driver;
945 if ((driver) && (driver->ops.remove)) {
947 if (driver->ops.stop) {
948 result = driver->ops.stop(dev, ACPI_BUS_REMOVAL_EJECT);
950 return_VALUE(result);
953 result = dev->driver->ops.remove(dev, ACPI_BUS_REMOVAL_EJECT);
955 return_VALUE(result);
958 atomic_dec(&dev->driver->references);
960 acpi_driver_data(dev) = NULL;
966 if (dev->flags.bus_address) {
967 if ((dev->parent) && (dev->parent->ops.unbind))
968 dev->parent->ops.unbind(dev);
971 acpi_device_unregister(dev, ACPI_BUS_REMOVAL_EJECT);
977 acpi_add_single_object(struct acpi_device **child,
978 struct acpi_device *parent, acpi_handle handle, int type)
981 struct acpi_device *device = NULL;
983 ACPI_FUNCTION_TRACE("acpi_add_single_object");
986 return_VALUE(-EINVAL);
988 device = kmalloc(sizeof(struct acpi_device), GFP_KERNEL);
990 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Memory allocation error\n"));
991 return_VALUE(-ENOMEM);
993 memset(device, 0, sizeof(struct acpi_device));
995 device->handle = handle;
996 device->parent = parent;
998 acpi_device_get_busid(device, handle, type);
1003 * Get prior to calling acpi_bus_get_status() so we know whether
1004 * or not _STA is present. Note that we only look for object
1005 * handles -- cannot evaluate objects until we know the device is
1006 * present and properly initialized.
1008 result = acpi_bus_get_flags(device);
1015 * See if the device is present. We always assume that non-Device
1016 * and non-Processor objects (e.g. thermal zones, power resources,
1017 * etc.) are present, functioning, etc. (at least when parent object
1018 * is present). Note that _STA has a different meaning for some
1019 * objects (e.g. power resources) so we need to be careful how we use
1023 case ACPI_BUS_TYPE_PROCESSOR:
1024 case ACPI_BUS_TYPE_DEVICE:
1025 result = acpi_bus_get_status(device);
1026 if (ACPI_FAILURE(result) || !device->status.present) {
1032 STRUCT_TO_INT(device->status) = 0x0F;
1039 * TBD: Synch with Core's enumeration/initialization process.
1043 * Hardware ID, Unique ID, & Bus Address
1044 * -------------------------------------
1046 acpi_device_set_id(device, parent, handle, type);
1052 if (device->flags.power_manageable) {
1053 result = acpi_bus_get_power_flags(device);
1059 * Wakeup device management
1060 *-----------------------
1062 if (device->flags.wake_capable) {
1063 result = acpi_bus_get_wakeup_device_flags(device);
1069 * Performance Management
1070 * ----------------------
1072 if (device->flags.performance_manageable) {
1073 result = acpi_bus_get_perf_flags(device);
1078 if ((result = acpi_device_set_context(device, type)))
1081 acpi_device_get_debug_info(device, handle, type);
1083 acpi_device_register(device, parent);
1086 * Bind _ADR-Based Devices
1087 * -----------------------
1088 * If there's a a bus address (_ADR) then we utilize the parent's
1089 * 'bind' function (if exists) to bind the ACPI- and natively-
1090 * enumerated device representations.
1092 if (device->flags.bus_address) {
1093 if (device->parent && device->parent->ops.bind)
1094 device->parent->ops.bind(device);
1098 * Locate & Attach Driver
1099 * ----------------------
1100 * If there's a hardware id (_HID) or compatible ids (_CID) we check
1101 * to see if there's a driver installed for this kind of device. Note
1102 * that drivers can install before or after a device is enumerated.
1104 * TBD: Assumes LDM provides driver hot-plug capability.
1106 acpi_bus_find_driver(device);
1112 kfree(device->pnp.cid_list);
1116 return_VALUE(result);
1119 static int acpi_bus_scan(struct acpi_device *start, struct acpi_bus_ops *ops)
1121 acpi_status status = AE_OK;
1122 struct acpi_device *parent = NULL;
1123 struct acpi_device *child = NULL;
1124 acpi_handle phandle = NULL;
1125 acpi_handle chandle = NULL;
1126 acpi_object_type type = 0;
1129 ACPI_FUNCTION_TRACE("acpi_bus_scan");
1132 return_VALUE(-EINVAL);
1135 phandle = start->handle;
1138 * Parse through the ACPI namespace, identify all 'devices', and
1139 * create a new 'struct acpi_device' for each.
1141 while ((level > 0) && parent) {
1143 status = acpi_get_next_object(ACPI_TYPE_ANY, phandle,
1147 * If this scope is exhausted then move our way back up.
1149 if (ACPI_FAILURE(status)) {
1152 acpi_get_parent(phandle, &phandle);
1154 parent = parent->parent;
1158 status = acpi_get_type(chandle, &type);
1159 if (ACPI_FAILURE(status))
1163 * If this is a scope object then parse it (depth-first).
1165 if (type == ACPI_TYPE_LOCAL_SCOPE) {
1173 * We're only interested in objects that we consider 'devices'.
1176 case ACPI_TYPE_DEVICE:
1177 type = ACPI_BUS_TYPE_DEVICE;
1179 case ACPI_TYPE_PROCESSOR:
1180 type = ACPI_BUS_TYPE_PROCESSOR;
1182 case ACPI_TYPE_THERMAL:
1183 type = ACPI_BUS_TYPE_THERMAL;
1185 case ACPI_TYPE_POWER:
1186 type = ACPI_BUS_TYPE_POWER;
1192 if (ops->acpi_op_add)
1193 status = acpi_add_single_object(&child, parent,
1196 status = acpi_bus_get_device(chandle, &child);
1198 if (ACPI_FAILURE(status))
1201 if (ops->acpi_op_start) {
1202 status = acpi_start_single_object(child);
1203 if (ACPI_FAILURE(status))
1208 * If the device is present, enabled, and functioning then
1209 * parse its scope (depth-first). Note that we need to
1210 * represent absent devices to facilitate PnP notifications
1211 * -- but only the subtree head (not all of its children,
1212 * which will be enumerated when the parent is inserted).
1214 * TBD: Need notifications and other detection mechanisms
1215 * in place before we can fully implement this.
1217 if (child->status.present) {
1218 status = acpi_get_next_object(ACPI_TYPE_ANY, chandle,
1220 if (ACPI_SUCCESS(status)) {
1233 acpi_bus_add(struct acpi_device **child,
1234 struct acpi_device *parent, acpi_handle handle, int type)
1237 struct acpi_bus_ops ops;
1239 ACPI_FUNCTION_TRACE("acpi_bus_add");
1241 result = acpi_add_single_object(child, parent, handle, type);
1243 memset(&ops, 0, sizeof(ops));
1244 ops.acpi_op_add = 1;
1245 result = acpi_bus_scan(*child, &ops);
1247 return_VALUE(result);
1250 EXPORT_SYMBOL(acpi_bus_add);
1252 int acpi_bus_start(struct acpi_device *device)
1255 struct acpi_bus_ops ops;
1257 ACPI_FUNCTION_TRACE("acpi_bus_start");
1260 return_VALUE(-EINVAL);
1262 result = acpi_start_single_object(device);
1264 memset(&ops, 0, sizeof(ops));
1265 ops.acpi_op_start = 1;
1266 result = acpi_bus_scan(device, &ops);
1268 return_VALUE(result);
1271 EXPORT_SYMBOL(acpi_bus_start);
1273 int acpi_bus_trim(struct acpi_device *start, int rmdevice)
1276 struct acpi_device *parent, *child;
1277 acpi_handle phandle, chandle;
1278 acpi_object_type type;
1283 phandle = start->handle;
1284 child = chandle = NULL;
1286 while ((level > 0) && parent && (!err)) {
1287 status = acpi_get_next_object(ACPI_TYPE_ANY, phandle,
1291 * If this scope is exhausted then move our way back up.
1293 if (ACPI_FAILURE(status)) {
1296 acpi_get_parent(phandle, &phandle);
1298 parent = parent->parent;
1301 err = acpi_bus_remove(child, rmdevice);
1303 err = acpi_bus_remove(child, 1);
1308 status = acpi_get_type(chandle, &type);
1309 if (ACPI_FAILURE(status)) {
1313 * If there is a device corresponding to chandle then
1314 * parse it (depth-first).
1316 if (acpi_bus_get_device(chandle, &child) == 0) {
1326 EXPORT_SYMBOL_GPL(acpi_bus_trim);
1329 static int acpi_bus_scan_fixed(struct acpi_device *root)
1332 struct acpi_device *device = NULL;
1334 ACPI_FUNCTION_TRACE("acpi_bus_scan_fixed");
1337 return_VALUE(-ENODEV);
1340 * Enumerate all fixed-feature devices.
1342 if (acpi_fadt.pwr_button == 0) {
1343 result = acpi_add_single_object(&device, acpi_root,
1345 ACPI_BUS_TYPE_POWER_BUTTON);
1347 result = acpi_start_single_object(device);
1350 if (acpi_fadt.sleep_button == 0) {
1351 result = acpi_add_single_object(&device, acpi_root,
1353 ACPI_BUS_TYPE_SLEEP_BUTTON);
1355 result = acpi_start_single_object(device);
1358 return_VALUE(result);
1361 static int __init acpi_scan_init(void)
1364 struct acpi_bus_ops ops;
1366 ACPI_FUNCTION_TRACE("acpi_scan_init");
1371 kset_register(&acpi_namespace_kset);
1374 * Create the root device in the bus's device tree
1376 result = acpi_add_single_object(&acpi_root, NULL, ACPI_ROOT_OBJECT,
1377 ACPI_BUS_TYPE_SYSTEM);
1381 result = acpi_start_single_object(acpi_root);
1384 * Enumerate devices in the ACPI namespace.
1386 result = acpi_bus_scan_fixed(acpi_root);
1388 memset(&ops, 0, sizeof(ops));
1389 ops.acpi_op_add = 1;
1390 ops.acpi_op_start = 1;
1391 result = acpi_bus_scan(acpi_root, &ops);
1395 acpi_device_unregister(acpi_root, ACPI_BUS_REMOVAL_NORMAL);
1398 return_VALUE(result);
1401 subsys_initcall(acpi_scan_init);