2 * Link physical devices with ACPI devices support
4 * Copyright (c) 2005 David Shaohua Li <shaohua.li@intel.com>
5 * Copyright (c) 2005 Intel Corp.
7 * This file is released under the GPLv2.
9 #include <linux/export.h>
10 #include <linux/init.h>
11 #include <linux/list.h>
12 #include <linux/device.h>
13 #include <linux/slab.h>
14 #include <linux/rwsem.h>
15 #include <linux/acpi.h>
19 #define ACPI_GLUE_DEBUG 0
21 #define DBG(fmt, ...) \
22 printk(KERN_DEBUG PREFIX fmt, ##__VA_ARGS__)
24 #define DBG(fmt, ...) \
27 printk(KERN_DEBUG PREFIX fmt, ##__VA_ARGS__); \
30 static LIST_HEAD(bus_type_list
);
31 static DECLARE_RWSEM(bus_type_sem
);
33 #define PHYSICAL_NODE_STRING "physical_node"
34 #define PHYSICAL_NODE_NAME_SIZE (sizeof(PHYSICAL_NODE_STRING) + 10)
36 int register_acpi_bus_type(struct acpi_bus_type
*type
)
40 if (type
&& type
->match
&& type
->find_companion
) {
41 down_write(&bus_type_sem
);
42 list_add_tail(&type
->list
, &bus_type_list
);
43 up_write(&bus_type_sem
);
44 printk(KERN_INFO PREFIX
"bus type %s registered\n", type
->name
);
49 EXPORT_SYMBOL_GPL(register_acpi_bus_type
);
51 int unregister_acpi_bus_type(struct acpi_bus_type
*type
)
56 down_write(&bus_type_sem
);
57 list_del_init(&type
->list
);
58 up_write(&bus_type_sem
);
59 printk(KERN_INFO PREFIX
"bus type %s unregistered\n",
65 EXPORT_SYMBOL_GPL(unregister_acpi_bus_type
);
67 static struct acpi_bus_type
*acpi_get_bus_type(struct device
*dev
)
69 struct acpi_bus_type
*tmp
, *ret
= NULL
;
71 down_read(&bus_type_sem
);
72 list_for_each_entry(tmp
, &bus_type_list
, list
) {
73 if (tmp
->match(dev
)) {
78 up_read(&bus_type_sem
);
82 #define FIND_CHILD_MIN_SCORE 1
83 #define FIND_CHILD_MAX_SCORE 2
85 static int find_child_checks(struct acpi_device
*adev
, bool check_children
)
87 bool sta_present
= true;
88 unsigned long long sta
;
91 status
= acpi_evaluate_integer(adev
->handle
, "_STA", NULL
, &sta
);
92 if (status
== AE_NOT_FOUND
)
94 else if (ACPI_FAILURE(status
) || !(sta
& ACPI_STA_DEVICE_ENABLED
))
97 if (check_children
&& list_empty(&adev
->children
))
100 return sta_present
? FIND_CHILD_MAX_SCORE
: FIND_CHILD_MIN_SCORE
;
103 struct acpi_device
*acpi_find_child_device(struct acpi_device
*parent
,
104 u64 address
, bool check_children
)
106 struct acpi_device
*adev
, *ret
= NULL
;
112 list_for_each_entry(adev
, &parent
->children
, node
) {
113 unsigned long long addr
;
117 status
= acpi_evaluate_integer(adev
->handle
, METHOD_NAME__ADR
,
119 if (ACPI_FAILURE(status
) || addr
!= address
)
123 /* This is the first matching object. Save it. */
128 * There is more than one matching device object with the same
129 * _ADR value. That really is unexpected, so we are kind of
130 * beyond the scope of the spec here. We have to choose which
131 * one to return, though.
133 * First, check if the previously found object is good enough
134 * and return it if so. Second, do the same for the object that
138 ret_score
= find_child_checks(ret
, check_children
);
139 if (ret_score
== FIND_CHILD_MAX_SCORE
)
142 score
= find_child_checks(adev
, check_children
);
143 if (score
== FIND_CHILD_MAX_SCORE
) {
145 } else if (score
> ret_score
) {
152 EXPORT_SYMBOL_GPL(acpi_find_child_device
);
154 static void acpi_physnode_link_name(char *buf
, unsigned int node_id
)
157 snprintf(buf
, PHYSICAL_NODE_NAME_SIZE
,
158 PHYSICAL_NODE_STRING
"%u", node_id
);
160 strcpy(buf
, PHYSICAL_NODE_STRING
);
163 int acpi_bind_one(struct device
*dev
, struct acpi_device
*acpi_dev
)
165 struct acpi_device_physical_node
*physical_node
, *pn
;
166 char physical_node_name
[PHYSICAL_NODE_NAME_SIZE
];
167 struct list_head
*physnode_list
;
168 unsigned int node_id
;
169 int retval
= -EINVAL
;
171 if (ACPI_COMPANION(dev
)) {
173 dev_warn(dev
, "ACPI companion already set\n");
176 acpi_dev
= ACPI_COMPANION(dev
);
182 get_device(&acpi_dev
->dev
);
184 physical_node
= kzalloc(sizeof(*physical_node
), GFP_KERNEL
);
185 if (!physical_node
) {
190 mutex_lock(&acpi_dev
->physical_node_lock
);
193 * Keep the list sorted by node_id so that the IDs of removed nodes can
194 * be recycled easily.
196 physnode_list
= &acpi_dev
->physical_node_list
;
198 list_for_each_entry(pn
, &acpi_dev
->physical_node_list
, node
) {
200 if (pn
->dev
== dev
) {
201 mutex_unlock(&acpi_dev
->physical_node_lock
);
203 dev_warn(dev
, "Already associated with ACPI node\n");
204 kfree(physical_node
);
205 if (ACPI_COMPANION(dev
) != acpi_dev
)
209 put_device(&acpi_dev
->dev
);
212 if (pn
->node_id
== node_id
) {
213 physnode_list
= &pn
->node
;
218 physical_node
->node_id
= node_id
;
219 physical_node
->dev
= dev
;
220 list_add(&physical_node
->node
, physnode_list
);
221 acpi_dev
->physical_node_count
++;
223 if (!ACPI_COMPANION(dev
))
224 ACPI_COMPANION_SET(dev
, acpi_dev
);
226 acpi_physnode_link_name(physical_node_name
, node_id
);
227 retval
= sysfs_create_link(&acpi_dev
->dev
.kobj
, &dev
->kobj
,
230 dev_err(&acpi_dev
->dev
, "Failed to create link %s (%d)\n",
231 physical_node_name
, retval
);
233 retval
= sysfs_create_link(&dev
->kobj
, &acpi_dev
->dev
.kobj
,
236 dev_err(dev
, "Failed to create link firmware_node (%d)\n",
239 mutex_unlock(&acpi_dev
->physical_node_lock
);
241 if (acpi_dev
->wakeup
.flags
.valid
)
242 device_set_wakeup_capable(dev
, true);
247 ACPI_COMPANION_SET(dev
, NULL
);
249 put_device(&acpi_dev
->dev
);
252 EXPORT_SYMBOL_GPL(acpi_bind_one
);
254 int acpi_unbind_one(struct device
*dev
)
256 struct acpi_device
*acpi_dev
= ACPI_COMPANION(dev
);
257 struct acpi_device_physical_node
*entry
;
262 mutex_lock(&acpi_dev
->physical_node_lock
);
264 list_for_each_entry(entry
, &acpi_dev
->physical_node_list
, node
)
265 if (entry
->dev
== dev
) {
266 char physnode_name
[PHYSICAL_NODE_NAME_SIZE
];
268 list_del(&entry
->node
);
269 acpi_dev
->physical_node_count
--;
271 acpi_physnode_link_name(physnode_name
, entry
->node_id
);
272 sysfs_remove_link(&acpi_dev
->dev
.kobj
, physnode_name
);
273 sysfs_remove_link(&dev
->kobj
, "firmware_node");
274 ACPI_COMPANION_SET(dev
, NULL
);
275 /* Drop references taken by acpi_bind_one(). */
277 put_device(&acpi_dev
->dev
);
282 mutex_unlock(&acpi_dev
->physical_node_lock
);
285 EXPORT_SYMBOL_GPL(acpi_unbind_one
);
287 static int acpi_platform_notify(struct device
*dev
)
289 struct acpi_bus_type
*type
= acpi_get_bus_type(dev
);
290 struct acpi_device
*adev
;
293 ret
= acpi_bind_one(dev
, NULL
);
295 struct acpi_device
*adev
;
297 adev
= type
->find_companion(dev
);
299 DBG("Unable to get handle for %s\n", dev_name(dev
));
303 ret
= acpi_bind_one(dev
, adev
);
307 adev
= ACPI_COMPANION(dev
);
311 if (type
&& type
->setup
)
313 else if (adev
->handler
&& adev
->handler
->bind
)
314 adev
->handler
->bind(dev
);
319 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
321 acpi_get_name(ACPI_HANDLE(dev
), ACPI_FULL_PATHNAME
, &buffer
);
322 DBG("Device %s -> %s\n", dev_name(dev
), (char *)buffer
.pointer
);
323 kfree(buffer
.pointer
);
325 DBG("Device %s -> No ACPI support\n", dev_name(dev
));
331 static int acpi_platform_notify_remove(struct device
*dev
)
333 struct acpi_device
*adev
= ACPI_COMPANION(dev
);
334 struct acpi_bus_type
*type
;
339 type
= acpi_get_bus_type(dev
);
340 if (type
&& type
->cleanup
)
342 else if (adev
->handler
&& adev
->handler
->unbind
)
343 adev
->handler
->unbind(dev
);
345 acpi_unbind_one(dev
);
349 int __init
init_acpi_device_notify(void)
351 if (platform_notify
|| platform_notify_remove
) {
352 printk(KERN_ERR PREFIX
"Can't use platform_notify\n");
355 platform_notify
= acpi_platform_notify
;
356 platform_notify_remove
= acpi_platform_notify_remove
;