ALSA: ice1712: Fix build errors
[linux/fpc-iii.git] / drivers / acpi / glue.c
blobd1a2d74033e945237afdef3fac02aea87cdebbdd
1 /*
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.
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>
17 #include "internal.h"
19 #define ACPI_GLUE_DEBUG 0
20 #if ACPI_GLUE_DEBUG
21 #define DBG(x...) printk(PREFIX x)
22 #else
23 #define DBG(x...) do { } while(0)
24 #endif
25 static LIST_HEAD(bus_type_list);
26 static DECLARE_RWSEM(bus_type_sem);
28 #define PHYSICAL_NODE_STRING "physical_node"
30 int register_acpi_bus_type(struct acpi_bus_type *type)
32 if (acpi_disabled)
33 return -ENODEV;
34 if (type && type->bus && type->find_device) {
35 down_write(&bus_type_sem);
36 list_add_tail(&type->list, &bus_type_list);
37 up_write(&bus_type_sem);
38 printk(KERN_INFO PREFIX "bus type %s registered\n",
39 type->bus->name);
40 return 0;
42 return -ENODEV;
44 EXPORT_SYMBOL_GPL(register_acpi_bus_type);
46 int unregister_acpi_bus_type(struct acpi_bus_type *type)
48 if (acpi_disabled)
49 return 0;
50 if (type) {
51 down_write(&bus_type_sem);
52 list_del_init(&type->list);
53 up_write(&bus_type_sem);
54 printk(KERN_INFO PREFIX "ACPI bus type %s unregistered\n",
55 type->bus->name);
56 return 0;
58 return -ENODEV;
60 EXPORT_SYMBOL_GPL(unregister_acpi_bus_type);
62 static struct acpi_bus_type *acpi_get_bus_type(struct bus_type *type)
64 struct acpi_bus_type *tmp, *ret = NULL;
66 down_read(&bus_type_sem);
67 list_for_each_entry(tmp, &bus_type_list, list) {
68 if (tmp->bus == type) {
69 ret = tmp;
70 break;
73 up_read(&bus_type_sem);
74 return ret;
77 static int acpi_find_bridge_device(struct device *dev, acpi_handle * handle)
79 struct acpi_bus_type *tmp;
80 int ret = -ENODEV;
82 down_read(&bus_type_sem);
83 list_for_each_entry(tmp, &bus_type_list, list) {
84 if (tmp->find_bridge && !tmp->find_bridge(dev, handle)) {
85 ret = 0;
86 break;
89 up_read(&bus_type_sem);
90 return ret;
93 /* Get device's handler per its address under its parent */
94 struct acpi_find_child {
95 acpi_handle handle;
96 u64 address;
99 static acpi_status
100 do_acpi_find_child(acpi_handle handle, u32 lvl, void *context, void **rv)
102 acpi_status status;
103 struct acpi_device_info *info;
104 struct acpi_find_child *find = context;
106 status = acpi_get_object_info(handle, &info);
107 if (ACPI_SUCCESS(status)) {
108 if ((info->address == find->address)
109 && (info->valid & ACPI_VALID_ADR))
110 find->handle = handle;
111 kfree(info);
113 return AE_OK;
116 acpi_handle acpi_get_child(acpi_handle parent, u64 address)
118 struct acpi_find_child find = { NULL, address };
120 if (!parent)
121 return NULL;
122 acpi_walk_namespace(ACPI_TYPE_DEVICE, parent,
123 1, do_acpi_find_child, NULL, &find, NULL);
124 return find.handle;
127 EXPORT_SYMBOL(acpi_get_child);
129 static int acpi_bind_one(struct device *dev, acpi_handle handle)
131 struct acpi_device *acpi_dev;
132 acpi_status status;
133 struct acpi_device_physical_node *physical_node;
134 char physical_node_name[sizeof(PHYSICAL_NODE_STRING) + 2];
135 int retval = -EINVAL;
137 if (dev->archdata.acpi_handle) {
138 dev_warn(dev, "Drivers changed 'acpi_handle'\n");
139 return -EINVAL;
142 get_device(dev);
143 status = acpi_bus_get_device(handle, &acpi_dev);
144 if (ACPI_FAILURE(status))
145 goto err;
147 physical_node = kzalloc(sizeof(struct acpi_device_physical_node),
148 GFP_KERNEL);
149 if (!physical_node) {
150 retval = -ENOMEM;
151 goto err;
154 mutex_lock(&acpi_dev->physical_node_lock);
155 /* allocate physical node id according to physical_node_id_bitmap */
156 physical_node->node_id =
157 find_first_zero_bit(acpi_dev->physical_node_id_bitmap,
158 ACPI_MAX_PHYSICAL_NODE);
159 if (physical_node->node_id >= ACPI_MAX_PHYSICAL_NODE) {
160 retval = -ENOSPC;
161 mutex_unlock(&acpi_dev->physical_node_lock);
162 goto err;
165 set_bit(physical_node->node_id, acpi_dev->physical_node_id_bitmap);
166 physical_node->dev = dev;
167 list_add_tail(&physical_node->node, &acpi_dev->physical_node_list);
168 acpi_dev->physical_node_count++;
169 mutex_unlock(&acpi_dev->physical_node_lock);
171 dev->archdata.acpi_handle = handle;
173 if (!physical_node->node_id)
174 strcpy(physical_node_name, PHYSICAL_NODE_STRING);
175 else
176 sprintf(physical_node_name,
177 "physical_node%d", physical_node->node_id);
178 retval = sysfs_create_link(&acpi_dev->dev.kobj, &dev->kobj,
179 physical_node_name);
180 retval = sysfs_create_link(&dev->kobj, &acpi_dev->dev.kobj,
181 "firmware_node");
183 if (acpi_dev->wakeup.flags.valid)
184 device_set_wakeup_capable(dev, true);
186 return 0;
188 err:
189 put_device(dev);
190 return retval;
193 static int acpi_unbind_one(struct device *dev)
195 struct acpi_device_physical_node *entry;
196 struct acpi_device *acpi_dev;
197 acpi_status status;
198 struct list_head *node, *next;
200 if (!dev->archdata.acpi_handle)
201 return 0;
203 status = acpi_bus_get_device(dev->archdata.acpi_handle,
204 &acpi_dev);
205 if (ACPI_FAILURE(status))
206 goto err;
208 mutex_lock(&acpi_dev->physical_node_lock);
209 list_for_each_safe(node, next, &acpi_dev->physical_node_list) {
210 char physical_node_name[sizeof(PHYSICAL_NODE_STRING) + 2];
212 entry = list_entry(node, struct acpi_device_physical_node,
213 node);
214 if (entry->dev != dev)
215 continue;
217 list_del(node);
218 clear_bit(entry->node_id, acpi_dev->physical_node_id_bitmap);
220 acpi_dev->physical_node_count--;
222 if (!entry->node_id)
223 strcpy(physical_node_name, PHYSICAL_NODE_STRING);
224 else
225 sprintf(physical_node_name,
226 "physical_node%d", entry->node_id);
228 sysfs_remove_link(&acpi_dev->dev.kobj, physical_node_name);
229 sysfs_remove_link(&dev->kobj, "firmware_node");
230 dev->archdata.acpi_handle = NULL;
231 /* acpi_bind_one increase refcnt by one */
232 put_device(dev);
233 kfree(entry);
235 mutex_unlock(&acpi_dev->physical_node_lock);
237 return 0;
239 err:
240 dev_err(dev, "Oops, 'acpi_handle' corrupt\n");
241 return -EINVAL;
244 static int acpi_platform_notify(struct device *dev)
246 struct acpi_bus_type *type;
247 acpi_handle handle;
248 int ret = -EINVAL;
250 if (!dev->bus || !dev->parent) {
251 /* bridge devices genernally haven't bus or parent */
252 ret = acpi_find_bridge_device(dev, &handle);
253 goto end;
255 type = acpi_get_bus_type(dev->bus);
256 if (!type) {
257 DBG("No ACPI bus support for %s\n", dev_name(dev));
258 ret = -EINVAL;
259 goto end;
261 if ((ret = type->find_device(dev, &handle)) != 0)
262 DBG("Can't get handler for %s\n", dev_name(dev));
263 end:
264 if (!ret)
265 acpi_bind_one(dev, handle);
267 #if ACPI_GLUE_DEBUG
268 if (!ret) {
269 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
271 acpi_get_name(dev->archdata.acpi_handle,
272 ACPI_FULL_PATHNAME, &buffer);
273 DBG("Device %s -> %s\n", dev_name(dev), (char *)buffer.pointer);
274 kfree(buffer.pointer);
275 } else
276 DBG("Device %s -> No ACPI support\n", dev_name(dev));
277 #endif
279 return ret;
282 static int acpi_platform_notify_remove(struct device *dev)
284 acpi_unbind_one(dev);
285 return 0;
288 int __init init_acpi_device_notify(void)
290 if (platform_notify || platform_notify_remove) {
291 printk(KERN_ERR PREFIX "Can't use platform_notify\n");
292 return 0;
294 platform_notify = acpi_platform_notify;
295 platform_notify_remove = acpi_platform_notify_remove;
296 return 0;