]>
Commit | Line | Data |
---|---|---|
4e10d12a DSL |
1 | /* |
2 | * Link physical devices with ACPI devices support | |
3 | * | |
4 | * Copyright (c) 2005 David Shaohua Li <[email protected]> | |
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, ...) \ |
25 | do { \ | |
26 | if (0) \ | |
27 | printk(KERN_DEBUG PREFIX fmt, ##__VA_ARGS__); \ | |
28 | } while (0) | |
4e10d12a DSL |
29 | #endif |
30 | static LIST_HEAD(bus_type_list); | |
31 | static DECLARE_RWSEM(bus_type_sem); | |
32 | ||
1033f904 LT |
33 | #define PHYSICAL_NODE_STRING "physical_node" |
34 | ||
4e10d12a DSL |
35 | int register_acpi_bus_type(struct acpi_bus_type *type) |
36 | { | |
37 | if (acpi_disabled) | |
38 | return -ENODEV; | |
53540098 | 39 | if (type && type->match && type->find_device) { |
4e10d12a DSL |
40 | down_write(&bus_type_sem); |
41 | list_add_tail(&type->list, &bus_type_list); | |
42 | up_write(&bus_type_sem); | |
53540098 | 43 | printk(KERN_INFO PREFIX "bus type %s registered\n", type->name); |
4e10d12a DSL |
44 | return 0; |
45 | } | |
46 | return -ENODEV; | |
47 | } | |
91e4d5a1 | 48 | EXPORT_SYMBOL_GPL(register_acpi_bus_type); |
4e10d12a | 49 | |
4e10d12a DSL |
50 | int unregister_acpi_bus_type(struct acpi_bus_type *type) |
51 | { | |
52 | if (acpi_disabled) | |
53 | return 0; | |
54 | if (type) { | |
55 | down_write(&bus_type_sem); | |
56 | list_del_init(&type->list); | |
57 | up_write(&bus_type_sem); | |
53540098 RW |
58 | printk(KERN_INFO PREFIX "bus type %s unregistered\n", |
59 | type->name); | |
4e10d12a DSL |
60 | return 0; |
61 | } | |
62 | return -ENODEV; | |
63 | } | |
91e4d5a1 | 64 | EXPORT_SYMBOL_GPL(unregister_acpi_bus_type); |
4e10d12a | 65 | |
53540098 | 66 | static struct acpi_bus_type *acpi_get_bus_type(struct device *dev) |
4e10d12a DSL |
67 | { |
68 | struct acpi_bus_type *tmp, *ret = NULL; | |
69 | ||
70 | down_read(&bus_type_sem); | |
71 | list_for_each_entry(tmp, &bus_type_list, list) { | |
53540098 | 72 | if (tmp->match(dev)) { |
4e10d12a DSL |
73 | ret = tmp; |
74 | break; | |
75 | } | |
76 | } | |
77 | up_read(&bus_type_sem); | |
78 | return ret; | |
79 | } | |
80 | ||
33f767d7 RW |
81 | static acpi_status do_acpi_find_child(acpi_handle handle, u32 lvl_not_used, |
82 | void *addr_p, void **ret_p) | |
4e10d12a | 83 | { |
33f767d7 | 84 | unsigned long long addr; |
4e10d12a | 85 | acpi_status status; |
33f767d7 RW |
86 | |
87 | status = acpi_evaluate_integer(handle, METHOD_NAME__ADR, NULL, &addr); | |
88 | if (ACPI_SUCCESS(status) && addr == *((u64 *)addr_p)) { | |
89 | *ret_p = handle; | |
90 | return AE_CTRL_TERMINATE; | |
4e10d12a DSL |
91 | } |
92 | return AE_OK; | |
93 | } | |
94 | ||
439913ff | 95 | acpi_handle acpi_get_child(acpi_handle parent, u64 address) |
4e10d12a | 96 | { |
33f767d7 | 97 | void *ret = NULL; |
4e10d12a DSL |
98 | |
99 | if (!parent) | |
100 | return NULL; | |
4e10d12a | 101 | |
33f767d7 RW |
102 | acpi_walk_namespace(ACPI_TYPE_DEVICE, parent, 1, NULL, |
103 | do_acpi_find_child, &address, &ret); | |
104 | return (acpi_handle)ret; | |
105 | } | |
4e10d12a DSL |
106 | EXPORT_SYMBOL(acpi_get_child); |
107 | ||
4e10d12a DSL |
108 | static int acpi_bind_one(struct device *dev, acpi_handle handle) |
109 | { | |
1071695f | 110 | struct acpi_device *acpi_dev; |
4e10d12a | 111 | acpi_status status; |
f3fd0c8a | 112 | struct acpi_device_physical_node *physical_node, *pn; |
1033f904 LT |
113 | char physical_node_name[sizeof(PHYSICAL_NODE_STRING) + 2]; |
114 | int retval = -EINVAL; | |
4e10d12a | 115 | |
95f8a082 | 116 | if (ACPI_HANDLE(dev)) { |
f3fd0c8a RW |
117 | if (handle) { |
118 | dev_warn(dev, "ACPI handle is already set\n"); | |
119 | return -EINVAL; | |
120 | } else { | |
95f8a082 | 121 | handle = ACPI_HANDLE(dev); |
f3fd0c8a | 122 | } |
4e10d12a | 123 | } |
f3fd0c8a RW |
124 | if (!handle) |
125 | return -EINVAL; | |
1033f904 | 126 | |
4e10d12a | 127 | get_device(dev); |
1033f904 LT |
128 | status = acpi_bus_get_device(handle, &acpi_dev); |
129 | if (ACPI_FAILURE(status)) | |
130 | goto err; | |
131 | ||
f3fd0c8a | 132 | physical_node = kzalloc(sizeof(*physical_node), GFP_KERNEL); |
1033f904 LT |
133 | if (!physical_node) { |
134 | retval = -ENOMEM; | |
135 | goto err; | |
4e10d12a | 136 | } |
4e10d12a | 137 | |
1033f904 | 138 | mutex_lock(&acpi_dev->physical_node_lock); |
f3fd0c8a RW |
139 | |
140 | /* Sanity check. */ | |
141 | list_for_each_entry(pn, &acpi_dev->physical_node_list, node) | |
142 | if (pn->dev == dev) { | |
143 | dev_warn(dev, "Already associated with ACPI node\n"); | |
144 | goto err_free; | |
145 | } | |
146 | ||
1033f904 LT |
147 | /* allocate physical node id according to physical_node_id_bitmap */ |
148 | physical_node->node_id = | |
149 | find_first_zero_bit(acpi_dev->physical_node_id_bitmap, | |
150 | ACPI_MAX_PHYSICAL_NODE); | |
151 | if (physical_node->node_id >= ACPI_MAX_PHYSICAL_NODE) { | |
152 | retval = -ENOSPC; | |
f3fd0c8a | 153 | goto err_free; |
1071695f DB |
154 | } |
155 | ||
1033f904 LT |
156 | set_bit(physical_node->node_id, acpi_dev->physical_node_id_bitmap); |
157 | physical_node->dev = dev; | |
158 | list_add_tail(&physical_node->node, &acpi_dev->physical_node_list); | |
159 | acpi_dev->physical_node_count++; | |
f3fd0c8a | 160 | |
1033f904 LT |
161 | mutex_unlock(&acpi_dev->physical_node_lock); |
162 | ||
95f8a082 RW |
163 | if (!ACPI_HANDLE(dev)) |
164 | ACPI_HANDLE_SET(dev, acpi_dev->handle); | |
1033f904 LT |
165 | |
166 | if (!physical_node->node_id) | |
167 | strcpy(physical_node_name, PHYSICAL_NODE_STRING); | |
168 | else | |
169 | sprintf(physical_node_name, | |
170 | "physical_node%d", physical_node->node_id); | |
171 | retval = sysfs_create_link(&acpi_dev->dev.kobj, &dev->kobj, | |
172 | physical_node_name); | |
173 | retval = sysfs_create_link(&dev->kobj, &acpi_dev->dev.kobj, | |
174 | "firmware_node"); | |
175 | ||
176 | if (acpi_dev->wakeup.flags.valid) | |
177 | device_set_wakeup_capable(dev, true); | |
178 | ||
4e10d12a | 179 | return 0; |
1033f904 LT |
180 | |
181 | err: | |
95f8a082 | 182 | ACPI_HANDLE_SET(dev, NULL); |
1033f904 LT |
183 | put_device(dev); |
184 | return retval; | |
f3fd0c8a RW |
185 | |
186 | err_free: | |
187 | mutex_unlock(&acpi_dev->physical_node_lock); | |
188 | kfree(physical_node); | |
189 | goto err; | |
4e10d12a DSL |
190 | } |
191 | ||
192 | static int acpi_unbind_one(struct device *dev) | |
193 | { | |
1033f904 LT |
194 | struct acpi_device_physical_node *entry; |
195 | struct acpi_device *acpi_dev; | |
196 | acpi_status status; | |
197 | struct list_head *node, *next; | |
198 | ||
95f8a082 | 199 | if (!ACPI_HANDLE(dev)) |
4e10d12a | 200 | return 0; |
1071695f | 201 | |
95f8a082 | 202 | status = acpi_bus_get_device(ACPI_HANDLE(dev), &acpi_dev); |
1033f904 LT |
203 | if (ACPI_FAILURE(status)) |
204 | goto err; | |
1071695f | 205 | |
1033f904 LT |
206 | mutex_lock(&acpi_dev->physical_node_lock); |
207 | list_for_each_safe(node, next, &acpi_dev->physical_node_list) { | |
208 | char physical_node_name[sizeof(PHYSICAL_NODE_STRING) + 2]; | |
209 | ||
210 | entry = list_entry(node, struct acpi_device_physical_node, | |
211 | node); | |
212 | if (entry->dev != dev) | |
213 | continue; | |
214 | ||
215 | list_del(node); | |
216 | clear_bit(entry->node_id, acpi_dev->physical_node_id_bitmap); | |
1071695f | 217 | |
1033f904 LT |
218 | acpi_dev->physical_node_count--; |
219 | ||
220 | if (!entry->node_id) | |
221 | strcpy(physical_node_name, PHYSICAL_NODE_STRING); | |
222 | else | |
223 | sprintf(physical_node_name, | |
224 | "physical_node%d", entry->node_id); | |
225 | ||
226 | sysfs_remove_link(&acpi_dev->dev.kobj, physical_node_name); | |
227 | sysfs_remove_link(&dev->kobj, "firmware_node"); | |
95f8a082 | 228 | ACPI_HANDLE_SET(dev, NULL); |
4e10d12a DSL |
229 | /* acpi_bind_one increase refcnt by one */ |
230 | put_device(dev); | |
1033f904 | 231 | kfree(entry); |
4e10d12a | 232 | } |
1033f904 LT |
233 | mutex_unlock(&acpi_dev->physical_node_lock); |
234 | ||
4e10d12a | 235 | return 0; |
1033f904 LT |
236 | |
237 | err: | |
238 | dev_err(dev, "Oops, 'acpi_handle' corrupt\n"); | |
239 | return -EINVAL; | |
4e10d12a DSL |
240 | } |
241 | ||
242 | static int acpi_platform_notify(struct device *dev) | |
243 | { | |
53540098 | 244 | struct acpi_bus_type *type = acpi_get_bus_type(dev); |
4e10d12a | 245 | acpi_handle handle; |
11909ca1 | 246 | int ret; |
4e10d12a | 247 | |
f3fd0c8a | 248 | ret = acpi_bind_one(dev, NULL); |
92414481 | 249 | if (ret && type) { |
11909ca1 RW |
250 | ret = type->find_device(dev, &handle); |
251 | if (ret) { | |
252 | DBG("Unable to get handle for %s\n", dev_name(dev)); | |
253 | goto out; | |
254 | } | |
255 | ret = acpi_bind_one(dev, handle); | |
256 | if (ret) | |
257 | goto out; | |
4e10d12a | 258 | } |
11909ca1 RW |
259 | |
260 | if (type && type->setup) | |
261 | type->setup(dev); | |
4e10d12a | 262 | |
f3fd0c8a | 263 | out: |
4e10d12a DSL |
264 | #if ACPI_GLUE_DEBUG |
265 | if (!ret) { | |
266 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; | |
267 | ||
a412a11d | 268 | acpi_get_name(ACPI_HANDLE(dev), ACPI_FULL_PATHNAME, &buffer); |
db1461ad | 269 | DBG("Device %s -> %s\n", dev_name(dev), (char *)buffer.pointer); |
02438d87 | 270 | kfree(buffer.pointer); |
4e10d12a | 271 | } else |
db1461ad | 272 | DBG("Device %s -> No ACPI support\n", dev_name(dev)); |
4e10d12a DSL |
273 | #endif |
274 | ||
275 | return ret; | |
276 | } | |
277 | ||
278 | static int acpi_platform_notify_remove(struct device *dev) | |
279 | { | |
11909ca1 RW |
280 | struct acpi_bus_type *type; |
281 | ||
53540098 | 282 | type = acpi_get_bus_type(dev); |
11909ca1 RW |
283 | if (type && type->cleanup) |
284 | type->cleanup(dev); | |
285 | ||
4e10d12a DSL |
286 | acpi_unbind_one(dev); |
287 | return 0; | |
288 | } | |
289 | ||
0e46517d | 290 | int __init init_acpi_device_notify(void) |
4e10d12a | 291 | { |
4e10d12a DSL |
292 | if (platform_notify || platform_notify_remove) { |
293 | printk(KERN_ERR PREFIX "Can't use platform_notify\n"); | |
294 | return 0; | |
295 | } | |
296 | platform_notify = acpi_platform_notify; | |
297 | platform_notify_remove = acpi_platform_notify_remove; | |
298 | return 0; | |
299 | } |