]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - drivers/acpi/glue.c
ACPI / processor: Use common hotplug infrastructure
[mirror_ubuntu-artful-kernel.git] / drivers / acpi / glue.c
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 */
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>
16
17 #include "internal.h"
18
19 #define ACPI_GLUE_DEBUG 0
20 #if ACPI_GLUE_DEBUG
21 #define DBG(fmt, ...) \
22 printk(KERN_DEBUG PREFIX fmt, ##__VA_ARGS__)
23 #else
24 #define DBG(fmt, ...) \
25 do { \
26 if (0) \
27 printk(KERN_DEBUG PREFIX fmt, ##__VA_ARGS__); \
28 } while (0)
29 #endif
30 static LIST_HEAD(bus_type_list);
31 static DECLARE_RWSEM(bus_type_sem);
32
33 #define PHYSICAL_NODE_STRING "physical_node"
34
35 int register_acpi_bus_type(struct acpi_bus_type *type)
36 {
37 if (acpi_disabled)
38 return -ENODEV;
39 if (type && type->match && type->find_device) {
40 down_write(&bus_type_sem);
41 list_add_tail(&type->list, &bus_type_list);
42 up_write(&bus_type_sem);
43 printk(KERN_INFO PREFIX "bus type %s registered\n", type->name);
44 return 0;
45 }
46 return -ENODEV;
47 }
48 EXPORT_SYMBOL_GPL(register_acpi_bus_type);
49
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);
58 printk(KERN_INFO PREFIX "bus type %s unregistered\n",
59 type->name);
60 return 0;
61 }
62 return -ENODEV;
63 }
64 EXPORT_SYMBOL_GPL(unregister_acpi_bus_type);
65
66 static struct acpi_bus_type *acpi_get_bus_type(struct device *dev)
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) {
72 if (tmp->match(dev)) {
73 ret = tmp;
74 break;
75 }
76 }
77 up_read(&bus_type_sem);
78 return ret;
79 }
80
81 static acpi_status do_acpi_find_child(acpi_handle handle, u32 lvl_not_used,
82 void *addr_p, void **ret_p)
83 {
84 unsigned long long addr;
85 acpi_status status;
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;
91 }
92 return AE_OK;
93 }
94
95 acpi_handle acpi_get_child(acpi_handle parent, u64 address)
96 {
97 void *ret = NULL;
98
99 if (!parent)
100 return NULL;
101
102 acpi_walk_namespace(ACPI_TYPE_DEVICE, parent, 1, NULL,
103 do_acpi_find_child, &address, &ret);
104 return (acpi_handle)ret;
105 }
106 EXPORT_SYMBOL(acpi_get_child);
107
108 int acpi_bind_one(struct device *dev, acpi_handle handle)
109 {
110 struct acpi_device *acpi_dev;
111 acpi_status status;
112 struct acpi_device_physical_node *physical_node, *pn;
113 char physical_node_name[sizeof(PHYSICAL_NODE_STRING) + 2];
114 int retval = -EINVAL;
115
116 if (ACPI_HANDLE(dev)) {
117 if (handle) {
118 dev_warn(dev, "ACPI handle is already set\n");
119 return -EINVAL;
120 } else {
121 handle = ACPI_HANDLE(dev);
122 }
123 }
124 if (!handle)
125 return -EINVAL;
126
127 get_device(dev);
128 status = acpi_bus_get_device(handle, &acpi_dev);
129 if (ACPI_FAILURE(status))
130 goto err;
131
132 physical_node = kzalloc(sizeof(*physical_node), GFP_KERNEL);
133 if (!physical_node) {
134 retval = -ENOMEM;
135 goto err;
136 }
137
138 mutex_lock(&acpi_dev->physical_node_lock);
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
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;
153 goto err_free;
154 }
155
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++;
160
161 mutex_unlock(&acpi_dev->physical_node_lock);
162
163 if (!ACPI_HANDLE(dev))
164 ACPI_HANDLE_SET(dev, acpi_dev->handle);
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
179 return 0;
180
181 err:
182 ACPI_HANDLE_SET(dev, NULL);
183 put_device(dev);
184 return retval;
185
186 err_free:
187 mutex_unlock(&acpi_dev->physical_node_lock);
188 kfree(physical_node);
189 goto err;
190 }
191 EXPORT_SYMBOL_GPL(acpi_bind_one);
192
193 int acpi_unbind_one(struct device *dev)
194 {
195 struct acpi_device_physical_node *entry;
196 struct acpi_device *acpi_dev;
197 acpi_status status;
198 struct list_head *node, *next;
199
200 if (!ACPI_HANDLE(dev))
201 return 0;
202
203 status = acpi_bus_get_device(ACPI_HANDLE(dev), &acpi_dev);
204 if (ACPI_FAILURE(status))
205 goto err;
206
207 mutex_lock(&acpi_dev->physical_node_lock);
208 list_for_each_safe(node, next, &acpi_dev->physical_node_list) {
209 char physical_node_name[sizeof(PHYSICAL_NODE_STRING) + 2];
210
211 entry = list_entry(node, struct acpi_device_physical_node,
212 node);
213 if (entry->dev != dev)
214 continue;
215
216 list_del(node);
217 clear_bit(entry->node_id, acpi_dev->physical_node_id_bitmap);
218
219 acpi_dev->physical_node_count--;
220
221 if (!entry->node_id)
222 strcpy(physical_node_name, PHYSICAL_NODE_STRING);
223 else
224 sprintf(physical_node_name,
225 "physical_node%d", entry->node_id);
226
227 sysfs_remove_link(&acpi_dev->dev.kobj, physical_node_name);
228 sysfs_remove_link(&dev->kobj, "firmware_node");
229 ACPI_HANDLE_SET(dev, NULL);
230 /* acpi_bind_one increase refcnt by one */
231 put_device(dev);
232 kfree(entry);
233 }
234 mutex_unlock(&acpi_dev->physical_node_lock);
235
236 return 0;
237
238 err:
239 dev_err(dev, "Oops, 'acpi_handle' corrupt\n");
240 return -EINVAL;
241 }
242 EXPORT_SYMBOL_GPL(acpi_unbind_one);
243
244 static int acpi_platform_notify(struct device *dev)
245 {
246 struct acpi_bus_type *type = acpi_get_bus_type(dev);
247 acpi_handle handle;
248 int ret;
249
250 ret = acpi_bind_one(dev, NULL);
251 if (ret && type) {
252 ret = type->find_device(dev, &handle);
253 if (ret) {
254 DBG("Unable to get handle for %s\n", dev_name(dev));
255 goto out;
256 }
257 ret = acpi_bind_one(dev, handle);
258 if (ret)
259 goto out;
260 }
261
262 if (type && type->setup)
263 type->setup(dev);
264
265 out:
266 #if ACPI_GLUE_DEBUG
267 if (!ret) {
268 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
269
270 acpi_get_name(ACPI_HANDLE(dev), ACPI_FULL_PATHNAME, &buffer);
271 DBG("Device %s -> %s\n", dev_name(dev), (char *)buffer.pointer);
272 kfree(buffer.pointer);
273 } else
274 DBG("Device %s -> No ACPI support\n", dev_name(dev));
275 #endif
276
277 return ret;
278 }
279
280 static int acpi_platform_notify_remove(struct device *dev)
281 {
282 struct acpi_bus_type *type;
283
284 type = acpi_get_bus_type(dev);
285 if (type && type->cleanup)
286 type->cleanup(dev);
287
288 acpi_unbind_one(dev);
289 return 0;
290 }
291
292 int __init init_acpi_device_notify(void)
293 {
294 if (platform_notify || platform_notify_remove) {
295 printk(KERN_ERR PREFIX "Can't use platform_notify\n");
296 return 0;
297 }
298 platform_notify = acpi_platform_notify;
299 platform_notify_remove = acpi_platform_notify_remove;
300 return 0;
301 }