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/kernel.h>
8 #include <linux/acpi.h>
10 #include <acpi/acpi_drivers.h>
11 #include <acpi/acinterp.h> /* for acpi_ex_eisa_id_to_string() */
13 #define _COMPONENT ACPI_BUS_COMPONENT
14 ACPI_MODULE_NAME("scan");
15 #define STRUCT_TO_INT(s) (*((int*)&s))
16 extern struct acpi_device
*acpi_root
;
18 #define ACPI_BUS_CLASS "system_bus"
19 #define ACPI_BUS_HID "LNXSYBUS"
20 #define ACPI_BUS_DEVICE_NAME "System Bus"
22 static LIST_HEAD(acpi_device_list
);
23 static LIST_HEAD(acpi_bus_id_list
);
24 DEFINE_SPINLOCK(acpi_device_lock
);
25 LIST_HEAD(acpi_wakeup_device_list
);
27 struct acpi_device_bus_id
{
29 unsigned int instance_no
;
30 struct list_head node
;
34 * Creates hid/cid(s) string needed for modalias and uevent
35 * e.g. on a device with hid:IBM0001 and cid:ACPI0001 you get:
36 * char *modalias: "acpi:IBM0001:ACPI0001"
38 static int create_modalias(struct acpi_device
*acpi_dev
, char *modalias
,
43 if (!acpi_dev
->flags
.hardware_id
)
46 len
= snprintf(modalias
, size
, "acpi:%s:",
47 acpi_dev
->pnp
.hardware_id
);
48 if (len
< 0 || len
>= size
)
52 if (acpi_dev
->flags
.compatible_ids
) {
53 struct acpi_compatible_id_list
*cid_list
;
57 cid_list
= acpi_dev
->pnp
.cid_list
;
58 for (i
= 0; i
< cid_list
->count
; i
++) {
59 count
= snprintf(&modalias
[len
], size
, "%s:",
60 cid_list
->id
[i
].value
);
61 if (count
< 0 || count
>= size
) {
62 printk(KERN_ERR
"acpi: %s cid[%i] exceeds event buffer size",
63 acpi_dev
->pnp
.device_name
, i
);
76 acpi_device_modalias_show(struct device
*dev
, struct device_attribute
*attr
, char *buf
) {
77 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
80 /* Device has no HID and no CID or string is >1024 */
81 len
= create_modalias(acpi_dev
, buf
, 1024);
87 static DEVICE_ATTR(modalias
, 0444, acpi_device_modalias_show
, NULL
);
89 static int acpi_eject_operation(acpi_handle handle
, int lockable
)
91 struct acpi_object_list arg_list
;
92 union acpi_object arg
;
93 acpi_status status
= AE_OK
;
101 arg_list
.pointer
= &arg
;
102 arg
.type
= ACPI_TYPE_INTEGER
;
103 arg
.integer
.value
= 0;
104 acpi_evaluate_object(handle
, "_LCK", &arg_list
, NULL
);
108 arg_list
.pointer
= &arg
;
109 arg
.type
= ACPI_TYPE_INTEGER
;
110 arg
.integer
.value
= 1;
116 status
= acpi_evaluate_object(handle
, "_EJ0", &arg_list
, NULL
);
117 if (ACPI_FAILURE(status
)) {
125 acpi_eject_store(struct device
*d
, struct device_attribute
*attr
,
126 const char *buf
, size_t count
)
133 acpi_object_type type
= 0;
134 struct acpi_device
*acpi_device
= to_acpi_device(d
);
136 if ((!count
) || (buf
[0] != '1')) {
140 if (acpi_device
->driver
== NULL
) {
145 status
= acpi_get_type(acpi_device
->handle
, &type
);
146 if (ACPI_FAILURE(status
) || (!acpi_device
->flags
.ejectable
)) {
151 islockable
= acpi_device
->flags
.lockable
;
152 handle
= acpi_device
->handle
;
154 result
= acpi_bus_trim(acpi_device
, 1);
157 result
= acpi_eject_operation(handle
, islockable
);
166 static DEVICE_ATTR(eject
, 0200, NULL
, acpi_eject_store
);
169 acpi_device_hid_show(struct device
*dev
, struct device_attribute
*attr
, char *buf
) {
170 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
172 return sprintf(buf
, "%s\n", acpi_dev
->pnp
.hardware_id
);
174 static DEVICE_ATTR(hid
, 0444, acpi_device_hid_show
, NULL
);
177 acpi_device_path_show(struct device
*dev
, struct device_attribute
*attr
, char *buf
) {
178 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
179 struct acpi_buffer path
= {ACPI_ALLOCATE_BUFFER
, NULL
};
182 result
= acpi_get_name(acpi_dev
->handle
, ACPI_FULL_PATHNAME
, &path
);
186 result
= sprintf(buf
, "%s\n", (char*)path
.pointer
);
191 static DEVICE_ATTR(path
, 0444, acpi_device_path_show
, NULL
);
193 static int acpi_device_setup_files(struct acpi_device
*dev
)
200 * Devices gotten from FADT don't have a "path" attribute
203 result
= device_create_file(&dev
->dev
, &dev_attr_path
);
208 if(dev
->flags
.hardware_id
) {
209 result
= device_create_file(&dev
->dev
, &dev_attr_hid
);
214 if (dev
->flags
.hardware_id
|| dev
->flags
.compatible_ids
){
215 result
= device_create_file(&dev
->dev
, &dev_attr_modalias
);
221 * If device has _EJ0, 'eject' file is created that is used to trigger
222 * hot-removal function from userland.
224 status
= acpi_get_handle(dev
->handle
, "_EJ0", &temp
);
225 if (ACPI_SUCCESS(status
))
226 result
= device_create_file(&dev
->dev
, &dev_attr_eject
);
231 static void acpi_device_remove_files(struct acpi_device
*dev
)
237 * If device has _EJ0, 'eject' file is created that is used to trigger
238 * hot-removal function from userland.
240 status
= acpi_get_handle(dev
->handle
, "_EJ0", &temp
);
241 if (ACPI_SUCCESS(status
))
242 device_remove_file(&dev
->dev
, &dev_attr_eject
);
244 if (dev
->flags
.hardware_id
|| dev
->flags
.compatible_ids
)
245 device_remove_file(&dev
->dev
, &dev_attr_modalias
);
247 if(dev
->flags
.hardware_id
)
248 device_remove_file(&dev
->dev
, &dev_attr_hid
);
250 device_remove_file(&dev
->dev
, &dev_attr_path
);
252 /* --------------------------------------------------------------------------
254 -------------------------------------------------------------------------- */
256 int acpi_match_device_ids(struct acpi_device
*device
,
257 const struct acpi_device_id
*ids
)
259 const struct acpi_device_id
*id
;
261 if (device
->flags
.hardware_id
) {
262 for (id
= ids
; id
->id
[0]; id
++) {
263 if (!strcmp((char*)id
->id
, device
->pnp
.hardware_id
))
268 if (device
->flags
.compatible_ids
) {
269 struct acpi_compatible_id_list
*cid_list
= device
->pnp
.cid_list
;
272 for (id
= ids
; id
->id
[0]; id
++) {
273 /* compare multiple _CID entries against driver ids */
274 for (i
= 0; i
< cid_list
->count
; i
++) {
275 if (!strcmp((char*)id
->id
,
276 cid_list
->id
[i
].value
))
284 EXPORT_SYMBOL(acpi_match_device_ids
);
286 static void acpi_device_release(struct device
*dev
)
288 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
290 kfree(acpi_dev
->pnp
.cid_list
);
294 static int acpi_device_suspend(struct device
*dev
, pm_message_t state
)
296 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
297 struct acpi_driver
*acpi_drv
= acpi_dev
->driver
;
299 if (acpi_drv
&& acpi_drv
->ops
.suspend
)
300 return acpi_drv
->ops
.suspend(acpi_dev
, state
);
304 static int acpi_device_resume(struct device
*dev
)
306 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
307 struct acpi_driver
*acpi_drv
= acpi_dev
->driver
;
309 if (acpi_drv
&& acpi_drv
->ops
.resume
)
310 return acpi_drv
->ops
.resume(acpi_dev
);
314 static int acpi_bus_match(struct device
*dev
, struct device_driver
*drv
)
316 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
317 struct acpi_driver
*acpi_drv
= to_acpi_driver(drv
);
319 return !acpi_match_device_ids(acpi_dev
, acpi_drv
->ids
);
322 static int acpi_device_uevent(struct device
*dev
, struct kobj_uevent_env
*env
)
324 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
327 if (add_uevent_var(env
, "MODALIAS="))
329 len
= create_modalias(acpi_dev
, &env
->buf
[env
->buflen
- 1],
330 sizeof(env
->buf
) - env
->buflen
);
331 if (len
>= (sizeof(env
->buf
) - env
->buflen
))
337 static int acpi_bus_driver_init(struct acpi_device
*, struct acpi_driver
*);
338 static int acpi_start_single_object(struct acpi_device
*);
339 static int acpi_device_probe(struct device
* dev
)
341 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
342 struct acpi_driver
*acpi_drv
= to_acpi_driver(dev
->driver
);
345 ret
= acpi_bus_driver_init(acpi_dev
, acpi_drv
);
347 if (acpi_dev
->bus_ops
.acpi_op_start
)
348 acpi_start_single_object(acpi_dev
);
349 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
350 "Found driver [%s] for device [%s]\n",
351 acpi_drv
->name
, acpi_dev
->pnp
.bus_id
));
357 static int acpi_device_remove(struct device
* dev
)
359 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
360 struct acpi_driver
*acpi_drv
= acpi_dev
->driver
;
363 if (acpi_drv
->ops
.stop
)
364 acpi_drv
->ops
.stop(acpi_dev
, acpi_dev
->removal_type
);
365 if (acpi_drv
->ops
.remove
)
366 acpi_drv
->ops
.remove(acpi_dev
, acpi_dev
->removal_type
);
368 acpi_dev
->driver
= NULL
;
369 acpi_driver_data(dev
) = NULL
;
375 static void acpi_device_shutdown(struct device
*dev
)
377 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
378 struct acpi_driver
*acpi_drv
= acpi_dev
->driver
;
380 if (acpi_drv
&& acpi_drv
->ops
.shutdown
)
381 acpi_drv
->ops
.shutdown(acpi_dev
);
386 struct bus_type acpi_bus_type
= {
388 .suspend
= acpi_device_suspend
,
389 .resume
= acpi_device_resume
,
390 .shutdown
= acpi_device_shutdown
,
391 .match
= acpi_bus_match
,
392 .probe
= acpi_device_probe
,
393 .remove
= acpi_device_remove
,
394 .uevent
= acpi_device_uevent
,
397 static int acpi_device_register(struct acpi_device
*device
,
398 struct acpi_device
*parent
)
401 struct acpi_device_bus_id
*acpi_device_bus_id
, *new_bus_id
;
406 * Link this device to its parent and siblings.
408 INIT_LIST_HEAD(&device
->children
);
409 INIT_LIST_HEAD(&device
->node
);
410 INIT_LIST_HEAD(&device
->g_list
);
411 INIT_LIST_HEAD(&device
->wakeup_list
);
413 new_bus_id
= kzalloc(sizeof(struct acpi_device_bus_id
), GFP_KERNEL
);
415 printk(KERN_ERR PREFIX
"Memory allocation error\n");
419 spin_lock(&acpi_device_lock
);
421 * Find suitable bus_id and instance number in acpi_bus_id_list
422 * If failed, create one and link it into acpi_bus_id_list
424 list_for_each_entry(acpi_device_bus_id
, &acpi_bus_id_list
, node
) {
425 if(!strcmp(acpi_device_bus_id
->bus_id
, device
->flags
.hardware_id
? device
->pnp
.hardware_id
: "device")) {
426 acpi_device_bus_id
->instance_no
++;
433 acpi_device_bus_id
= new_bus_id
;
434 strcpy(acpi_device_bus_id
->bus_id
, device
->flags
.hardware_id
? device
->pnp
.hardware_id
: "device");
435 acpi_device_bus_id
->instance_no
= 0;
436 list_add_tail(&acpi_device_bus_id
->node
, &acpi_bus_id_list
);
438 sprintf(device
->dev
.bus_id
, "%s:%02x", acpi_device_bus_id
->bus_id
, acpi_device_bus_id
->instance_no
);
440 if (device
->parent
) {
441 list_add_tail(&device
->node
, &device
->parent
->children
);
442 list_add_tail(&device
->g_list
, &device
->parent
->g_list
);
444 list_add_tail(&device
->g_list
, &acpi_device_list
);
445 if (device
->wakeup
.flags
.valid
)
446 list_add_tail(&device
->wakeup_list
, &acpi_wakeup_device_list
);
447 spin_unlock(&acpi_device_lock
);
450 device
->dev
.parent
= &parent
->dev
;
451 device
->dev
.bus
= &acpi_bus_type
;
452 device_initialize(&device
->dev
);
453 device
->dev
.release
= &acpi_device_release
;
454 result
= device_add(&device
->dev
);
456 printk("Error adding device %s", device
->dev
.bus_id
);
460 result
= acpi_device_setup_files(device
);
462 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
, "Error creating sysfs interface for device %s\n", device
->dev
.bus_id
));
464 device
->removal_type
= ACPI_BUS_REMOVAL_NORMAL
;
467 spin_lock(&acpi_device_lock
);
468 if (device
->parent
) {
469 list_del(&device
->node
);
470 list_del(&device
->g_list
);
472 list_del(&device
->g_list
);
473 list_del(&device
->wakeup_list
);
474 spin_unlock(&acpi_device_lock
);
478 static void acpi_device_unregister(struct acpi_device
*device
, int type
)
480 spin_lock(&acpi_device_lock
);
481 if (device
->parent
) {
482 list_del(&device
->node
);
483 list_del(&device
->g_list
);
485 list_del(&device
->g_list
);
487 list_del(&device
->wakeup_list
);
488 spin_unlock(&acpi_device_lock
);
490 acpi_detach_data(device
->handle
, acpi_bus_data_handler
);
492 acpi_device_remove_files(device
);
493 device_unregister(&device
->dev
);
496 /* --------------------------------------------------------------------------
498 -------------------------------------------------------------------------- */
500 * acpi_bus_driver_init - add a device to a driver
501 * @device: the device to add and initialize
502 * @driver: driver for the device
504 * Used to initialize a device via its device driver. Called whenever a
505 * driver is bound to a device. Invokes the driver's add() ops.
508 acpi_bus_driver_init(struct acpi_device
*device
, struct acpi_driver
*driver
)
513 if (!device
|| !driver
)
516 if (!driver
->ops
.add
)
519 result
= driver
->ops
.add(device
);
521 device
->driver
= NULL
;
522 acpi_driver_data(device
) = NULL
;
526 device
->driver
= driver
;
529 * TBD - Configuration Management: Assign resources to device based
530 * upon possible configuration and currently allocated resources.
533 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
534 "Driver successfully bound to device\n"));
538 static int acpi_start_single_object(struct acpi_device
*device
)
541 struct acpi_driver
*driver
;
544 if (!(driver
= device
->driver
))
547 if (driver
->ops
.start
) {
548 result
= driver
->ops
.start(device
);
549 if (result
&& driver
->ops
.remove
)
550 driver
->ops
.remove(device
, ACPI_BUS_REMOVAL_NORMAL
);
557 * acpi_bus_register_driver - register a driver with the ACPI bus
558 * @driver: driver being registered
560 * Registers a driver with the ACPI bus. Searches the namespace for all
561 * devices that match the driver's criteria and binds. Returns zero for
562 * success or a negative error status for failure.
564 int acpi_bus_register_driver(struct acpi_driver
*driver
)
570 driver
->drv
.name
= driver
->name
;
571 driver
->drv
.bus
= &acpi_bus_type
;
572 driver
->drv
.owner
= driver
->owner
;
574 ret
= driver_register(&driver
->drv
);
578 EXPORT_SYMBOL(acpi_bus_register_driver
);
581 * acpi_bus_unregister_driver - unregisters a driver with the APIC bus
582 * @driver: driver to unregister
584 * Unregisters a driver with the ACPI bus. Searches the namespace for all
585 * devices that match the driver's criteria and unbinds.
587 void acpi_bus_unregister_driver(struct acpi_driver
*driver
)
589 driver_unregister(&driver
->drv
);
592 EXPORT_SYMBOL(acpi_bus_unregister_driver
);
594 /* --------------------------------------------------------------------------
596 -------------------------------------------------------------------------- */
598 acpi_bus_get_ejd(acpi_handle handle
, acpi_handle
*ejd
)
602 struct acpi_buffer buffer
= {ACPI_ALLOCATE_BUFFER
, NULL
};
603 union acpi_object
*obj
;
605 status
= acpi_get_handle(handle
, "_EJD", &tmp
);
606 if (ACPI_FAILURE(status
))
609 status
= acpi_evaluate_object(handle
, "_EJD", NULL
, &buffer
);
610 if (ACPI_SUCCESS(status
)) {
611 obj
= buffer
.pointer
;
612 status
= acpi_get_handle(NULL
, obj
->string
.pointer
, ejd
);
613 kfree(buffer
.pointer
);
617 EXPORT_SYMBOL_GPL(acpi_bus_get_ejd
);
619 void acpi_bus_data_handler(acpi_handle handle
, u32 function
, void *context
)
627 static int acpi_bus_get_perf_flags(struct acpi_device
*device
)
629 device
->performance
.state
= ACPI_STATE_UNKNOWN
;
634 acpi_bus_extract_wakeup_device_power_package(struct acpi_device
*device
,
635 union acpi_object
*package
)
638 union acpi_object
*element
= NULL
;
640 if (!device
|| !package
|| (package
->package
.count
< 2))
641 return AE_BAD_PARAMETER
;
643 element
= &(package
->package
.elements
[0]);
645 return AE_BAD_PARAMETER
;
646 if (element
->type
== ACPI_TYPE_PACKAGE
) {
647 if ((element
->package
.count
< 2) ||
648 (element
->package
.elements
[0].type
!=
649 ACPI_TYPE_LOCAL_REFERENCE
)
650 || (element
->package
.elements
[1].type
!= ACPI_TYPE_INTEGER
))
652 device
->wakeup
.gpe_device
=
653 element
->package
.elements
[0].reference
.handle
;
654 device
->wakeup
.gpe_number
=
655 (u32
) element
->package
.elements
[1].integer
.value
;
656 } else if (element
->type
== ACPI_TYPE_INTEGER
) {
657 device
->wakeup
.gpe_number
= element
->integer
.value
;
661 element
= &(package
->package
.elements
[1]);
662 if (element
->type
!= ACPI_TYPE_INTEGER
) {
665 device
->wakeup
.sleep_state
= element
->integer
.value
;
667 if ((package
->package
.count
- 2) > ACPI_MAX_HANDLES
) {
670 device
->wakeup
.resources
.count
= package
->package
.count
- 2;
671 for (i
= 0; i
< device
->wakeup
.resources
.count
; i
++) {
672 element
= &(package
->package
.elements
[i
+ 2]);
673 if (element
->type
!= ACPI_TYPE_ANY
) {
677 device
->wakeup
.resources
.handles
[i
] = element
->reference
.handle
;
683 static int acpi_bus_get_wakeup_device_flags(struct acpi_device
*device
)
685 acpi_status status
= 0;
686 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
687 union acpi_object
*package
= NULL
;
689 struct acpi_device_id button_device_ids
[] = {
698 status
= acpi_evaluate_object(device
->handle
, "_PRW", NULL
, &buffer
);
699 if (ACPI_FAILURE(status
)) {
700 ACPI_EXCEPTION((AE_INFO
, status
, "Evaluating _PRW"));
704 package
= (union acpi_object
*)buffer
.pointer
;
705 status
= acpi_bus_extract_wakeup_device_power_package(device
, package
);
706 if (ACPI_FAILURE(status
)) {
707 ACPI_EXCEPTION((AE_INFO
, status
, "Extracting _PRW package"));
711 kfree(buffer
.pointer
);
713 device
->wakeup
.flags
.valid
= 1;
714 /* Power button, Lid switch always enable wakeup */
715 if (!acpi_match_device_ids(device
, button_device_ids
))
716 device
->wakeup
.flags
.run_wake
= 1;
719 if (ACPI_FAILURE(status
))
720 device
->flags
.wake_capable
= 0;
724 static int acpi_bus_get_power_flags(struct acpi_device
*device
)
726 acpi_status status
= 0;
727 acpi_handle handle
= NULL
;
732 * Power Management Flags
734 status
= acpi_get_handle(device
->handle
, "_PSC", &handle
);
735 if (ACPI_SUCCESS(status
))
736 device
->power
.flags
.explicit_get
= 1;
737 status
= acpi_get_handle(device
->handle
, "_IRC", &handle
);
738 if (ACPI_SUCCESS(status
))
739 device
->power
.flags
.inrush_current
= 1;
742 * Enumerate supported power management states
744 for (i
= ACPI_STATE_D0
; i
<= ACPI_STATE_D3
; i
++) {
745 struct acpi_device_power_state
*ps
= &device
->power
.states
[i
];
746 char object_name
[5] = { '_', 'P', 'R', '0' + i
, '\0' };
748 /* Evaluate "_PRx" to se if power resources are referenced */
749 acpi_evaluate_reference(device
->handle
, object_name
, NULL
,
751 if (ps
->resources
.count
) {
752 device
->power
.flags
.power_resources
= 1;
756 /* Evaluate "_PSx" to see if we can do explicit sets */
757 object_name
[2] = 'S';
758 status
= acpi_get_handle(device
->handle
, object_name
, &handle
);
759 if (ACPI_SUCCESS(status
)) {
760 ps
->flags
.explicit_set
= 1;
764 /* State is valid if we have some power control */
765 if (ps
->resources
.count
|| ps
->flags
.explicit_set
)
768 ps
->power
= -1; /* Unknown - driver assigned */
769 ps
->latency
= -1; /* Unknown - driver assigned */
772 /* Set defaults for D0 and D3 states (always valid) */
773 device
->power
.states
[ACPI_STATE_D0
].flags
.valid
= 1;
774 device
->power
.states
[ACPI_STATE_D0
].power
= 100;
775 device
->power
.states
[ACPI_STATE_D3
].flags
.valid
= 1;
776 device
->power
.states
[ACPI_STATE_D3
].power
= 0;
778 /* TBD: System wake support and resource requirements. */
780 device
->power
.state
= ACPI_STATE_UNKNOWN
;
785 static int acpi_bus_get_flags(struct acpi_device
*device
)
787 acpi_status status
= AE_OK
;
788 acpi_handle temp
= NULL
;
791 /* Presence of _STA indicates 'dynamic_status' */
792 status
= acpi_get_handle(device
->handle
, "_STA", &temp
);
793 if (ACPI_SUCCESS(status
))
794 device
->flags
.dynamic_status
= 1;
796 /* Presence of _CID indicates 'compatible_ids' */
797 status
= acpi_get_handle(device
->handle
, "_CID", &temp
);
798 if (ACPI_SUCCESS(status
))
799 device
->flags
.compatible_ids
= 1;
801 /* Presence of _RMV indicates 'removable' */
802 status
= acpi_get_handle(device
->handle
, "_RMV", &temp
);
803 if (ACPI_SUCCESS(status
))
804 device
->flags
.removable
= 1;
806 /* Presence of _EJD|_EJ0 indicates 'ejectable' */
807 status
= acpi_get_handle(device
->handle
, "_EJD", &temp
);
808 if (ACPI_SUCCESS(status
))
809 device
->flags
.ejectable
= 1;
811 status
= acpi_get_handle(device
->handle
, "_EJ0", &temp
);
812 if (ACPI_SUCCESS(status
))
813 device
->flags
.ejectable
= 1;
816 /* Presence of _LCK indicates 'lockable' */
817 status
= acpi_get_handle(device
->handle
, "_LCK", &temp
);
818 if (ACPI_SUCCESS(status
))
819 device
->flags
.lockable
= 1;
821 /* Presence of _PS0|_PR0 indicates 'power manageable' */
822 status
= acpi_get_handle(device
->handle
, "_PS0", &temp
);
823 if (ACPI_FAILURE(status
))
824 status
= acpi_get_handle(device
->handle
, "_PR0", &temp
);
825 if (ACPI_SUCCESS(status
))
826 device
->flags
.power_manageable
= 1;
828 /* Presence of _PRW indicates wake capable */
829 status
= acpi_get_handle(device
->handle
, "_PRW", &temp
);
830 if (ACPI_SUCCESS(status
))
831 device
->flags
.wake_capable
= 1;
833 /* TBD: Peformance management */
838 static void acpi_device_get_busid(struct acpi_device
*device
,
839 acpi_handle handle
, int type
)
841 char bus_id
[5] = { '?', 0 };
842 struct acpi_buffer buffer
= { sizeof(bus_id
), bus_id
};
848 * The device's Bus ID is simply the object name.
849 * TBD: Shouldn't this value be unique (within the ACPI namespace)?
852 case ACPI_BUS_TYPE_SYSTEM
:
853 strcpy(device
->pnp
.bus_id
, "ACPI");
855 case ACPI_BUS_TYPE_POWER_BUTTON
:
856 strcpy(device
->pnp
.bus_id
, "PWRF");
858 case ACPI_BUS_TYPE_SLEEP_BUTTON
:
859 strcpy(device
->pnp
.bus_id
, "SLPF");
862 acpi_get_name(handle
, ACPI_SINGLE_NAME
, &buffer
);
863 /* Clean up trailing underscores (if any) */
864 for (i
= 3; i
> 1; i
--) {
865 if (bus_id
[i
] == '_')
870 strcpy(device
->pnp
.bus_id
, bus_id
);
876 acpi_video_bus_match(struct acpi_device
*device
)
878 acpi_handle h_dummy1
;
879 acpi_handle h_dummy2
;
880 acpi_handle h_dummy3
;
886 /* Since there is no HID, CID for ACPI Video drivers, we have
887 * to check well known required nodes for each feature we support.
890 /* Does this device able to support video switching ? */
891 if (ACPI_SUCCESS(acpi_get_handle(device
->handle
, "_DOD", &h_dummy1
)) &&
892 ACPI_SUCCESS(acpi_get_handle(device
->handle
, "_DOS", &h_dummy2
)))
895 /* Does this device able to retrieve a video ROM ? */
896 if (ACPI_SUCCESS(acpi_get_handle(device
->handle
, "_ROM", &h_dummy1
)))
899 /* Does this device able to configure which video head to be POSTed ? */
900 if (ACPI_SUCCESS(acpi_get_handle(device
->handle
, "_VPO", &h_dummy1
)) &&
901 ACPI_SUCCESS(acpi_get_handle(device
->handle
, "_GPD", &h_dummy2
)) &&
902 ACPI_SUCCESS(acpi_get_handle(device
->handle
, "_SPD", &h_dummy3
)))
909 * acpi_bay_match - see if a device is an ejectable driver bay
911 * If an acpi object is ejectable and has one of the ACPI ATA methods defined,
912 * then we can safely call it an ejectable drive bay
914 static int acpi_bay_match(struct acpi_device
*device
){
920 handle
= device
->handle
;
922 status
= acpi_get_handle(handle
, "_EJ0", &tmp
);
923 if (ACPI_FAILURE(status
))
926 if ((ACPI_SUCCESS(acpi_get_handle(handle
, "_GTF", &tmp
))) ||
927 (ACPI_SUCCESS(acpi_get_handle(handle
, "_GTM", &tmp
))) ||
928 (ACPI_SUCCESS(acpi_get_handle(handle
, "_STM", &tmp
))) ||
929 (ACPI_SUCCESS(acpi_get_handle(handle
, "_SDD", &tmp
))))
932 if (acpi_get_parent(handle
, &phandle
))
935 if ((ACPI_SUCCESS(acpi_get_handle(phandle
, "_GTF", &tmp
))) ||
936 (ACPI_SUCCESS(acpi_get_handle(phandle
, "_GTM", &tmp
))) ||
937 (ACPI_SUCCESS(acpi_get_handle(phandle
, "_STM", &tmp
))) ||
938 (ACPI_SUCCESS(acpi_get_handle(phandle
, "_SDD", &tmp
))))
944 static void acpi_device_set_id(struct acpi_device
*device
,
945 struct acpi_device
*parent
, acpi_handle handle
,
948 struct acpi_device_info
*info
;
949 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
952 struct acpi_compatible_id_list
*cid_list
= NULL
;
956 case ACPI_BUS_TYPE_DEVICE
:
957 status
= acpi_get_object_info(handle
, &buffer
);
958 if (ACPI_FAILURE(status
)) {
959 printk("%s: Error reading device info\n", __FUNCTION__
);
963 info
= buffer
.pointer
;
964 if (info
->valid
& ACPI_VALID_HID
)
965 hid
= info
->hardware_id
.value
;
966 if (info
->valid
& ACPI_VALID_UID
)
967 uid
= info
->unique_id
.value
;
968 if (info
->valid
& ACPI_VALID_CID
)
969 cid_list
= &info
->compatibility_id
;
970 if (info
->valid
& ACPI_VALID_ADR
) {
971 device
->pnp
.bus_address
= info
->address
;
972 device
->flags
.bus_address
= 1;
975 if(!(info
->valid
& (ACPI_VALID_HID
| ACPI_VALID_CID
))){
976 status
= acpi_video_bus_match(device
);
977 if(ACPI_SUCCESS(status
))
978 hid
= ACPI_VIDEO_HID
;
980 status
= acpi_bay_match(device
);
981 if (ACPI_SUCCESS(status
))
985 case ACPI_BUS_TYPE_POWER
:
986 hid
= ACPI_POWER_HID
;
988 case ACPI_BUS_TYPE_PROCESSOR
:
989 hid
= ACPI_PROCESSOR_HID
;
991 case ACPI_BUS_TYPE_SYSTEM
:
992 hid
= ACPI_SYSTEM_HID
;
994 case ACPI_BUS_TYPE_THERMAL
:
995 hid
= ACPI_THERMAL_HID
;
997 case ACPI_BUS_TYPE_POWER_BUTTON
:
998 hid
= ACPI_BUTTON_HID_POWERF
;
1000 case ACPI_BUS_TYPE_SLEEP_BUTTON
:
1001 hid
= ACPI_BUTTON_HID_SLEEPF
;
1008 * Fix for the system root bus device -- the only root-level device.
1010 if (((acpi_handle
)parent
== ACPI_ROOT_OBJECT
) && (type
== ACPI_BUS_TYPE_DEVICE
)) {
1012 strcpy(device
->pnp
.device_name
, ACPI_BUS_DEVICE_NAME
);
1013 strcpy(device
->pnp
.device_class
, ACPI_BUS_CLASS
);
1017 strcpy(device
->pnp
.hardware_id
, hid
);
1018 device
->flags
.hardware_id
= 1;
1021 strcpy(device
->pnp
.unique_id
, uid
);
1022 device
->flags
.unique_id
= 1;
1025 device
->pnp
.cid_list
= kmalloc(cid_list
->size
, GFP_KERNEL
);
1026 if (device
->pnp
.cid_list
)
1027 memcpy(device
->pnp
.cid_list
, cid_list
, cid_list
->size
);
1029 printk(KERN_ERR
"Memory allocation error\n");
1032 kfree(buffer
.pointer
);
1035 static int acpi_device_set_context(struct acpi_device
*device
, int type
)
1037 acpi_status status
= AE_OK
;
1042 * Attach this 'struct acpi_device' to the ACPI object. This makes
1043 * resolutions from handle->device very efficient. Note that we need
1044 * to be careful with fixed-feature devices as they all attach to the
1047 if (type
!= ACPI_BUS_TYPE_POWER_BUTTON
&&
1048 type
!= ACPI_BUS_TYPE_SLEEP_BUTTON
) {
1049 status
= acpi_attach_data(device
->handle
,
1050 acpi_bus_data_handler
, device
);
1052 if (ACPI_FAILURE(status
)) {
1053 printk("Error attaching device data\n");
1060 static int acpi_bus_remove(struct acpi_device
*dev
, int rmdevice
)
1065 dev
->removal_type
= ACPI_BUS_REMOVAL_EJECT
;
1066 device_release_driver(&dev
->dev
);
1072 * unbind _ADR-Based Devices when hot removal
1074 if (dev
->flags
.bus_address
) {
1075 if ((dev
->parent
) && (dev
->parent
->ops
.unbind
))
1076 dev
->parent
->ops
.unbind(dev
);
1078 acpi_device_unregister(dev
, ACPI_BUS_REMOVAL_EJECT
);
1084 acpi_add_single_object(struct acpi_device
**child
,
1085 struct acpi_device
*parent
, acpi_handle handle
, int type
,
1086 struct acpi_bus_ops
*ops
)
1089 struct acpi_device
*device
= NULL
;
1095 device
= kzalloc(sizeof(struct acpi_device
), GFP_KERNEL
);
1097 printk(KERN_ERR PREFIX
"Memory allocation error\n");
1101 device
->handle
= handle
;
1102 device
->parent
= parent
;
1103 device
->bus_ops
= *ops
; /* workround for not call .start */
1106 acpi_device_get_busid(device
, handle
, type
);
1111 * Get prior to calling acpi_bus_get_status() so we know whether
1112 * or not _STA is present. Note that we only look for object
1113 * handles -- cannot evaluate objects until we know the device is
1114 * present and properly initialized.
1116 result
= acpi_bus_get_flags(device
);
1123 * See if the device is present. We always assume that non-Device
1124 * and non-Processor objects (e.g. thermal zones, power resources,
1125 * etc.) are present, functioning, etc. (at least when parent object
1126 * is present). Note that _STA has a different meaning for some
1127 * objects (e.g. power resources) so we need to be careful how we use
1131 case ACPI_BUS_TYPE_PROCESSOR
:
1132 case ACPI_BUS_TYPE_DEVICE
:
1133 result
= acpi_bus_get_status(device
);
1134 if (ACPI_FAILURE(result
) || !device
->status
.present
) {
1140 STRUCT_TO_INT(device
->status
) =
1141 ACPI_STA_DEVICE_PRESENT
| ACPI_STA_DEVICE_ENABLED
|
1142 ACPI_STA_DEVICE_UI
| ACPI_STA_DEVICE_FUNCTIONING
;
1149 * TBD: Synch with Core's enumeration/initialization process.
1153 * Hardware ID, Unique ID, & Bus Address
1154 * -------------------------------------
1156 acpi_device_set_id(device
, parent
, handle
, type
);
1162 if (device
->flags
.power_manageable
) {
1163 result
= acpi_bus_get_power_flags(device
);
1169 * Wakeup device management
1170 *-----------------------
1172 if (device
->flags
.wake_capable
) {
1173 result
= acpi_bus_get_wakeup_device_flags(device
);
1179 * Performance Management
1180 * ----------------------
1182 if (device
->flags
.performance_manageable
) {
1183 result
= acpi_bus_get_perf_flags(device
);
1188 if ((result
= acpi_device_set_context(device
, type
)))
1191 result
= acpi_device_register(device
, parent
);
1194 * Bind _ADR-Based Devices when hot add
1196 if (device
->flags
.bus_address
) {
1197 if (device
->parent
&& device
->parent
->ops
.bind
)
1198 device
->parent
->ops
.bind(device
);
1205 kfree(device
->pnp
.cid_list
);
1212 static int acpi_bus_scan(struct acpi_device
*start
, struct acpi_bus_ops
*ops
)
1214 acpi_status status
= AE_OK
;
1215 struct acpi_device
*parent
= NULL
;
1216 struct acpi_device
*child
= NULL
;
1217 acpi_handle phandle
= NULL
;
1218 acpi_handle chandle
= NULL
;
1219 acpi_object_type type
= 0;
1227 phandle
= start
->handle
;
1230 * Parse through the ACPI namespace, identify all 'devices', and
1231 * create a new 'struct acpi_device' for each.
1233 while ((level
> 0) && parent
) {
1235 status
= acpi_get_next_object(ACPI_TYPE_ANY
, phandle
,
1239 * If this scope is exhausted then move our way back up.
1241 if (ACPI_FAILURE(status
)) {
1244 acpi_get_parent(phandle
, &phandle
);
1246 parent
= parent
->parent
;
1250 status
= acpi_get_type(chandle
, &type
);
1251 if (ACPI_FAILURE(status
))
1255 * If this is a scope object then parse it (depth-first).
1257 if (type
== ACPI_TYPE_LOCAL_SCOPE
) {
1265 * We're only interested in objects that we consider 'devices'.
1268 case ACPI_TYPE_DEVICE
:
1269 type
= ACPI_BUS_TYPE_DEVICE
;
1271 case ACPI_TYPE_PROCESSOR
:
1272 type
= ACPI_BUS_TYPE_PROCESSOR
;
1274 case ACPI_TYPE_THERMAL
:
1275 type
= ACPI_BUS_TYPE_THERMAL
;
1277 case ACPI_TYPE_POWER
:
1278 type
= ACPI_BUS_TYPE_POWER
;
1284 if (ops
->acpi_op_add
)
1285 status
= acpi_add_single_object(&child
, parent
,
1286 chandle
, type
, ops
);
1288 status
= acpi_bus_get_device(chandle
, &child
);
1290 if (ACPI_FAILURE(status
))
1293 if (ops
->acpi_op_start
&& !(ops
->acpi_op_add
)) {
1294 status
= acpi_start_single_object(child
);
1295 if (ACPI_FAILURE(status
))
1300 * If the device is present, enabled, and functioning then
1301 * parse its scope (depth-first). Note that we need to
1302 * represent absent devices to facilitate PnP notifications
1303 * -- but only the subtree head (not all of its children,
1304 * which will be enumerated when the parent is inserted).
1306 * TBD: Need notifications and other detection mechanisms
1307 * in place before we can fully implement this.
1309 if (child
->status
.present
) {
1310 status
= acpi_get_next_object(ACPI_TYPE_ANY
, chandle
,
1312 if (ACPI_SUCCESS(status
)) {
1325 acpi_bus_add(struct acpi_device
**child
,
1326 struct acpi_device
*parent
, acpi_handle handle
, int type
)
1329 struct acpi_bus_ops ops
;
1331 memset(&ops
, 0, sizeof(ops
));
1332 ops
.acpi_op_add
= 1;
1334 result
= acpi_add_single_object(child
, parent
, handle
, type
, &ops
);
1336 result
= acpi_bus_scan(*child
, &ops
);
1341 EXPORT_SYMBOL(acpi_bus_add
);
1343 int acpi_bus_start(struct acpi_device
*device
)
1346 struct acpi_bus_ops ops
;
1352 result
= acpi_start_single_object(device
);
1354 memset(&ops
, 0, sizeof(ops
));
1355 ops
.acpi_op_start
= 1;
1356 result
= acpi_bus_scan(device
, &ops
);
1361 EXPORT_SYMBOL(acpi_bus_start
);
1363 int acpi_bus_trim(struct acpi_device
*start
, int rmdevice
)
1366 struct acpi_device
*parent
, *child
;
1367 acpi_handle phandle
, chandle
;
1368 acpi_object_type type
;
1373 phandle
= start
->handle
;
1374 child
= chandle
= NULL
;
1376 while ((level
> 0) && parent
&& (!err
)) {
1377 status
= acpi_get_next_object(ACPI_TYPE_ANY
, phandle
,
1381 * If this scope is exhausted then move our way back up.
1383 if (ACPI_FAILURE(status
)) {
1386 acpi_get_parent(phandle
, &phandle
);
1388 parent
= parent
->parent
;
1391 err
= acpi_bus_remove(child
, rmdevice
);
1393 err
= acpi_bus_remove(child
, 1);
1398 status
= acpi_get_type(chandle
, &type
);
1399 if (ACPI_FAILURE(status
)) {
1403 * If there is a device corresponding to chandle then
1404 * parse it (depth-first).
1406 if (acpi_bus_get_device(chandle
, &child
) == 0) {
1416 EXPORT_SYMBOL_GPL(acpi_bus_trim
);
1419 static int acpi_bus_scan_fixed(struct acpi_device
*root
)
1422 struct acpi_device
*device
= NULL
;
1423 struct acpi_bus_ops ops
;
1428 memset(&ops
, 0, sizeof(ops
));
1429 ops
.acpi_op_add
= 1;
1430 ops
.acpi_op_start
= 1;
1433 * Enumerate all fixed-feature devices.
1435 if ((acpi_gbl_FADT
.flags
& ACPI_FADT_POWER_BUTTON
) == 0) {
1436 result
= acpi_add_single_object(&device
, acpi_root
,
1438 ACPI_BUS_TYPE_POWER_BUTTON
,
1442 if ((acpi_gbl_FADT
.flags
& ACPI_FADT_SLEEP_BUTTON
) == 0) {
1443 result
= acpi_add_single_object(&device
, acpi_root
,
1445 ACPI_BUS_TYPE_SLEEP_BUTTON
,
1452 int __init
acpi_boot_ec_enable(void);
1454 static int __init
acpi_scan_init(void)
1457 struct acpi_bus_ops ops
;
1463 memset(&ops
, 0, sizeof(ops
));
1464 ops
.acpi_op_add
= 1;
1465 ops
.acpi_op_start
= 1;
1467 result
= bus_register(&acpi_bus_type
);
1469 /* We don't want to quit even if we failed to add suspend/resume */
1470 printk(KERN_ERR PREFIX
"Could not register bus type\n");
1474 * Create the root device in the bus's device tree
1476 result
= acpi_add_single_object(&acpi_root
, NULL
, ACPI_ROOT_OBJECT
,
1477 ACPI_BUS_TYPE_SYSTEM
, &ops
);
1482 * Enumerate devices in the ACPI namespace.
1484 result
= acpi_bus_scan_fixed(acpi_root
);
1486 /* EC region might be needed at bus_scan, so enable it now */
1487 acpi_boot_ec_enable();
1490 result
= acpi_bus_scan(acpi_root
, &ops
);
1493 acpi_device_unregister(acpi_root
, ACPI_BUS_REMOVAL_NORMAL
);
1499 subsys_initcall(acpi_scan_init
);