ACPI: Create symlinks in acpi_bind_one() under physical_node_lock
[deliverable/linux.git] / drivers / acpi / glue.c
CommitLineData
4e10d12a
DSL
1/*
2 * Link physical devices with ACPI devices support
3 *
4 * Copyright (c) 2005 David Shaohua Li <shaohua.li@intel.com>
5 * Copyright (c) 2005 Intel Corp.
6 *
7 * This file is released under the GPLv2.
8 */
214f2c90 9#include <linux/export.h>
4e10d12a
DSL
10#include <linux/init.h>
11#include <linux/list.h>
12#include <linux/device.h>
5a0e3ad6 13#include <linux/slab.h>
4e10d12a
DSL
14#include <linux/rwsem.h>
15#include <linux/acpi.h>
16
a192a958
LB
17#include "internal.h"
18
4e10d12a
DSL
19#define ACPI_GLUE_DEBUG 0
20#if ACPI_GLUE_DEBUG
23415eb5
JP
21#define DBG(fmt, ...) \
22 printk(KERN_DEBUG PREFIX fmt, ##__VA_ARGS__)
4e10d12a 23#else
23415eb5
JP
24#define DBG(fmt, ...) \
25do { \
26 if (0) \
27 printk(KERN_DEBUG PREFIX fmt, ##__VA_ARGS__); \
28} while (0)
4e10d12a
DSL
29#endif
30static LIST_HEAD(bus_type_list);
31static DECLARE_RWSEM(bus_type_sem);
32
1033f904 33#define PHYSICAL_NODE_STRING "physical_node"
007ccfcf 34#define PHYSICAL_NODE_NAME_SIZE (sizeof(PHYSICAL_NODE_STRING) + 10)
1033f904 35
4e10d12a
DSL
36int register_acpi_bus_type(struct acpi_bus_type *type)
37{
38 if (acpi_disabled)
39 return -ENODEV;
53540098 40 if (type && type->match && type->find_device) {
4e10d12a
DSL
41 down_write(&bus_type_sem);
42 list_add_tail(&type->list, &bus_type_list);
43 up_write(&bus_type_sem);
53540098 44 printk(KERN_INFO PREFIX "bus type %s registered\n", type->name);
4e10d12a
DSL
45 return 0;
46 }
47 return -ENODEV;
48}
91e4d5a1 49EXPORT_SYMBOL_GPL(register_acpi_bus_type);
4e10d12a 50
4e10d12a
DSL
51int unregister_acpi_bus_type(struct acpi_bus_type *type)
52{
53 if (acpi_disabled)
54 return 0;
55 if (type) {
56 down_write(&bus_type_sem);
57 list_del_init(&type->list);
58 up_write(&bus_type_sem);
53540098
RW
59 printk(KERN_INFO PREFIX "bus type %s unregistered\n",
60 type->name);
4e10d12a
DSL
61 return 0;
62 }
63 return -ENODEV;
64}
91e4d5a1 65EXPORT_SYMBOL_GPL(unregister_acpi_bus_type);
4e10d12a 66
53540098 67static struct acpi_bus_type *acpi_get_bus_type(struct device *dev)
4e10d12a
DSL
68{
69 struct acpi_bus_type *tmp, *ret = NULL;
70
71 down_read(&bus_type_sem);
72 list_for_each_entry(tmp, &bus_type_list, list) {
53540098 73 if (tmp->match(dev)) {
4e10d12a
DSL
74 ret = tmp;
75 break;
76 }
77 }
78 up_read(&bus_type_sem);
79 return ret;
80}
81
60f75b8e
RW
82static acpi_status acpi_dev_present(acpi_handle handle, u32 lvl_not_used,
83 void *not_used, void **ret_p)
4e10d12a 84{
60f75b8e
RW
85 struct acpi_device *adev = NULL;
86
87 acpi_bus_get_device(handle, &adev);
88 if (adev) {
89 *ret_p = handle;
90 return AE_CTRL_TERMINATE;
91 }
92 return AE_OK;
93}
94
95static bool acpi_extra_checks_passed(acpi_handle handle, bool is_bridge)
96{
97 unsigned long long sta;
98 acpi_status status;
99
100 status = acpi_bus_get_status_handle(handle, &sta);
101 if (ACPI_FAILURE(status) || !(sta & ACPI_STA_DEVICE_ENABLED))
102 return false;
103
104 if (is_bridge) {
105 void *test = NULL;
106
107 /* Check if this object has at least one child device. */
108 acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, 1,
109 acpi_dev_present, NULL, NULL, &test);
110 return !!test;
111 }
112 return true;
113}
114
115struct find_child_context {
116 u64 addr;
117 bool is_bridge;
118 acpi_handle ret;
119 bool ret_checked;
120};
121
122static acpi_status do_find_child(acpi_handle handle, u32 lvl_not_used,
123 void *data, void **not_used)
124{
125 struct find_child_context *context = data;
126 unsigned long long addr;
4e10d12a 127 acpi_status status;
33f767d7
RW
128
129 status = acpi_evaluate_integer(handle, METHOD_NAME__ADR, NULL, &addr);
60f75b8e
RW
130 if (ACPI_FAILURE(status) || addr != context->addr)
131 return AE_OK;
132
133 if (!context->ret) {
134 /* This is the first matching object. Save its handle. */
135 context->ret = handle;
136 return AE_OK;
137 }
138 /*
139 * There is more than one matching object with the same _ADR value.
140 * That really is unexpected, so we are kind of beyond the scope of the
141 * spec here. We have to choose which one to return, though.
142 *
143 * First, check if the previously found object is good enough and return
144 * its handle if so. Second, check the same for the object that we've
145 * just found.
146 */
147 if (!context->ret_checked) {
148 if (acpi_extra_checks_passed(context->ret, context->is_bridge))
c7d9ca90 149 return AE_CTRL_TERMINATE;
60f75b8e
RW
150 else
151 context->ret_checked = true;
152 }
153 if (acpi_extra_checks_passed(handle, context->is_bridge)) {
154 context->ret = handle;
155 return AE_CTRL_TERMINATE;
4e10d12a
DSL
156 }
157 return AE_OK;
158}
159
60f75b8e 160acpi_handle acpi_find_child(acpi_handle parent, u64 addr, bool is_bridge)
4e10d12a 161{
60f75b8e
RW
162 if (parent) {
163 struct find_child_context context = {
164 .addr = addr,
165 .is_bridge = is_bridge,
166 };
4e10d12a 167
60f75b8e
RW
168 acpi_walk_namespace(ACPI_TYPE_DEVICE, parent, 1, do_find_child,
169 NULL, &context, NULL);
170 return context.ret;
171 }
172 return NULL;
33f767d7 173}
60f75b8e 174EXPORT_SYMBOL_GPL(acpi_find_child);
4e10d12a 175
bdbdbf91
RW
176static void acpi_physnode_link_name(char *buf, unsigned int node_id)
177{
178 if (node_id > 0)
179 snprintf(buf, PHYSICAL_NODE_NAME_SIZE,
180 PHYSICAL_NODE_STRING "%u", node_id);
181 else
182 strcpy(buf, PHYSICAL_NODE_STRING);
183}
184
ac212b69 185int acpi_bind_one(struct device *dev, acpi_handle handle)
4e10d12a 186{
1071695f 187 struct acpi_device *acpi_dev;
4e10d12a 188 acpi_status status;
f3fd0c8a 189 struct acpi_device_physical_node *physical_node, *pn;
007ccfcf
RW
190 char physical_node_name[PHYSICAL_NODE_NAME_SIZE];
191 struct list_head *physnode_list;
192 unsigned int node_id;
1033f904 193 int retval = -EINVAL;
4e10d12a 194
95f8a082 195 if (ACPI_HANDLE(dev)) {
f3fd0c8a
RW
196 if (handle) {
197 dev_warn(dev, "ACPI handle is already set\n");
198 return -EINVAL;
199 } else {
95f8a082 200 handle = ACPI_HANDLE(dev);
f3fd0c8a 201 }
4e10d12a 202 }
f3fd0c8a
RW
203 if (!handle)
204 return -EINVAL;
1033f904 205
4e10d12a 206 get_device(dev);
1033f904
LT
207 status = acpi_bus_get_device(handle, &acpi_dev);
208 if (ACPI_FAILURE(status))
209 goto err;
210
f3fd0c8a 211 physical_node = kzalloc(sizeof(*physical_node), GFP_KERNEL);
1033f904
LT
212 if (!physical_node) {
213 retval = -ENOMEM;
214 goto err;
4e10d12a 215 }
4e10d12a 216
1033f904 217 mutex_lock(&acpi_dev->physical_node_lock);
f3fd0c8a 218
007ccfcf
RW
219 /*
220 * Keep the list sorted by node_id so that the IDs of removed nodes can
221 * be recycled easily.
222 */
223 physnode_list = &acpi_dev->physical_node_list;
224 node_id = 0;
225 list_for_each_entry(pn, &acpi_dev->physical_node_list, node) {
226 /* Sanity check. */
f3fd0c8a
RW
227 if (pn->dev == dev) {
228 dev_warn(dev, "Already associated with ACPI node\n");
3fe444ad
RW
229 if (ACPI_HANDLE(dev) == handle)
230 retval = 0;
231
232 goto out_free;
f3fd0c8a 233 }
007ccfcf
RW
234 if (pn->node_id == node_id) {
235 physnode_list = &pn->node;
236 node_id++;
237 }
1071695f
DB
238 }
239
007ccfcf 240 physical_node->node_id = node_id;
1033f904 241 physical_node->dev = dev;
007ccfcf 242 list_add(&physical_node->node, physnode_list);
1033f904 243 acpi_dev->physical_node_count++;
f3fd0c8a 244
95f8a082
RW
245 if (!ACPI_HANDLE(dev))
246 ACPI_HANDLE_SET(dev, acpi_dev->handle);
1033f904 247
bdbdbf91 248 acpi_physnode_link_name(physical_node_name, node_id);
1033f904
LT
249 retval = sysfs_create_link(&acpi_dev->dev.kobj, &dev->kobj,
250 physical_node_name);
251 retval = sysfs_create_link(&dev->kobj, &acpi_dev->dev.kobj,
252 "firmware_node");
253
40055206
RW
254 mutex_unlock(&acpi_dev->physical_node_lock);
255
1033f904
LT
256 if (acpi_dev->wakeup.flags.valid)
257 device_set_wakeup_capable(dev, true);
258
4e10d12a 259 return 0;
1033f904
LT
260
261 err:
95f8a082 262 ACPI_HANDLE_SET(dev, NULL);
1033f904
LT
263 put_device(dev);
264 return retval;
f3fd0c8a 265
3fe444ad 266 out_free:
f3fd0c8a
RW
267 mutex_unlock(&acpi_dev->physical_node_lock);
268 kfree(physical_node);
3fe444ad
RW
269 if (retval)
270 goto err;
271
272 put_device(dev);
273 return 0;
4e10d12a 274}
ac212b69 275EXPORT_SYMBOL_GPL(acpi_bind_one);
4e10d12a 276
ac212b69 277int acpi_unbind_one(struct device *dev)
4e10d12a 278{
1033f904
LT
279 struct acpi_device_physical_node *entry;
280 struct acpi_device *acpi_dev;
281 acpi_status status;
282 struct list_head *node, *next;
283
95f8a082 284 if (!ACPI_HANDLE(dev))
4e10d12a 285 return 0;
1071695f 286
95f8a082 287 status = acpi_bus_get_device(ACPI_HANDLE(dev), &acpi_dev);
1033f904
LT
288 if (ACPI_FAILURE(status))
289 goto err;
1071695f 290
1033f904
LT
291 mutex_lock(&acpi_dev->physical_node_lock);
292 list_for_each_safe(node, next, &acpi_dev->physical_node_list) {
007ccfcf 293 char physical_node_name[PHYSICAL_NODE_NAME_SIZE];
1033f904
LT
294
295 entry = list_entry(node, struct acpi_device_physical_node,
296 node);
297 if (entry->dev != dev)
298 continue;
299
300 list_del(node);
1071695f 301
1033f904
LT
302 acpi_dev->physical_node_count--;
303
bdbdbf91 304 acpi_physnode_link_name(physical_node_name, entry->node_id);
1033f904
LT
305 sysfs_remove_link(&acpi_dev->dev.kobj, physical_node_name);
306 sysfs_remove_link(&dev->kobj, "firmware_node");
95f8a082 307 ACPI_HANDLE_SET(dev, NULL);
4e10d12a
DSL
308 /* acpi_bind_one increase refcnt by one */
309 put_device(dev);
1033f904 310 kfree(entry);
4e10d12a 311 }
1033f904
LT
312 mutex_unlock(&acpi_dev->physical_node_lock);
313
4e10d12a 314 return 0;
1033f904
LT
315
316err:
317 dev_err(dev, "Oops, 'acpi_handle' corrupt\n");
318 return -EINVAL;
4e10d12a 319}
ac212b69 320EXPORT_SYMBOL_GPL(acpi_unbind_one);
4e10d12a
DSL
321
322static int acpi_platform_notify(struct device *dev)
323{
53540098 324 struct acpi_bus_type *type = acpi_get_bus_type(dev);
4e10d12a 325 acpi_handle handle;
11909ca1 326 int ret;
4e10d12a 327
f3fd0c8a 328 ret = acpi_bind_one(dev, NULL);
92414481 329 if (ret && type) {
11909ca1
RW
330 ret = type->find_device(dev, &handle);
331 if (ret) {
332 DBG("Unable to get handle for %s\n", dev_name(dev));
333 goto out;
334 }
335 ret = acpi_bind_one(dev, handle);
336 if (ret)
337 goto out;
4e10d12a 338 }
11909ca1
RW
339
340 if (type && type->setup)
341 type->setup(dev);
4e10d12a 342
f3fd0c8a 343 out:
4e10d12a
DSL
344#if ACPI_GLUE_DEBUG
345 if (!ret) {
346 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
347
a412a11d 348 acpi_get_name(ACPI_HANDLE(dev), ACPI_FULL_PATHNAME, &buffer);
db1461ad 349 DBG("Device %s -> %s\n", dev_name(dev), (char *)buffer.pointer);
02438d87 350 kfree(buffer.pointer);
4e10d12a 351 } else
db1461ad 352 DBG("Device %s -> No ACPI support\n", dev_name(dev));
4e10d12a
DSL
353#endif
354
355 return ret;
356}
357
358static int acpi_platform_notify_remove(struct device *dev)
359{
11909ca1
RW
360 struct acpi_bus_type *type;
361
53540098 362 type = acpi_get_bus_type(dev);
11909ca1
RW
363 if (type && type->cleanup)
364 type->cleanup(dev);
365
4e10d12a
DSL
366 acpi_unbind_one(dev);
367 return 0;
368}
369
0e46517d 370int __init init_acpi_device_notify(void)
4e10d12a 371{
4e10d12a
DSL
372 if (platform_notify || platform_notify_remove) {
373 printk(KERN_ERR PREFIX "Can't use platform_notify\n");
374 return 0;
375 }
376 platform_notify = acpi_platform_notify;
377 platform_notify_remove = acpi_platform_notify_remove;
378 return 0;
379}
This page took 0.52845 seconds and 5 git commands to generate.