blob: 29a4a5c8ee009da357b55f652c7bcb8f01a270b6 [file] [log] [blame]
David Shaohua Li4e10d122005-03-18 18:45:35 -05001/*
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 */
Paul Gortmaker214f2c92011-10-26 16:22:14 -04009#include <linux/export.h>
David Shaohua Li4e10d122005-03-18 18:45:35 -050010#include <linux/init.h>
11#include <linux/list.h>
12#include <linux/device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
David Shaohua Li4e10d122005-03-18 18:45:35 -050014#include <linux/rwsem.h>
15#include <linux/acpi.h>
16
Len Browna192a952009-07-28 16:45:54 -040017#include "internal.h"
18
David Shaohua Li4e10d122005-03-18 18:45:35 -050019#define ACPI_GLUE_DEBUG 0
20#if ACPI_GLUE_DEBUG
21#define DBG(x...) printk(PREFIX x)
22#else
Dave Jones4ebf83c2007-07-09 11:33:14 -070023#define DBG(x...) do { } while(0)
David Shaohua Li4e10d122005-03-18 18:45:35 -050024#endif
25static LIST_HEAD(bus_type_list);
26static DECLARE_RWSEM(bus_type_sem);
27
28int register_acpi_bus_type(struct acpi_bus_type *type)
29{
30 if (acpi_disabled)
31 return -ENODEV;
32 if (type && type->bus && type->find_device) {
33 down_write(&bus_type_sem);
34 list_add_tail(&type->list, &bus_type_list);
35 up_write(&bus_type_sem);
Len Brown4be44fc2005-08-05 00:44:28 -040036 printk(KERN_INFO PREFIX "bus type %s registered\n",
37 type->bus->name);
David Shaohua Li4e10d122005-03-18 18:45:35 -050038 return 0;
39 }
40 return -ENODEV;
41}
42
David Shaohua Li4e10d122005-03-18 18:45:35 -050043int unregister_acpi_bus_type(struct acpi_bus_type *type)
44{
45 if (acpi_disabled)
46 return 0;
47 if (type) {
48 down_write(&bus_type_sem);
49 list_del_init(&type->list);
50 up_write(&bus_type_sem);
Len Brown4be44fc2005-08-05 00:44:28 -040051 printk(KERN_INFO PREFIX "ACPI bus type %s unregistered\n",
52 type->bus->name);
David Shaohua Li4e10d122005-03-18 18:45:35 -050053 return 0;
54 }
55 return -ENODEV;
56}
57
David Shaohua Li4e10d122005-03-18 18:45:35 -050058static struct acpi_bus_type *acpi_get_bus_type(struct bus_type *type)
59{
60 struct acpi_bus_type *tmp, *ret = NULL;
61
62 down_read(&bus_type_sem);
63 list_for_each_entry(tmp, &bus_type_list, list) {
64 if (tmp->bus == type) {
65 ret = tmp;
66 break;
67 }
68 }
69 up_read(&bus_type_sem);
70 return ret;
71}
72
73static int acpi_find_bridge_device(struct device *dev, acpi_handle * handle)
74{
75 struct acpi_bus_type *tmp;
76 int ret = -ENODEV;
77
78 down_read(&bus_type_sem);
79 list_for_each_entry(tmp, &bus_type_list, list) {
80 if (tmp->find_bridge && !tmp->find_bridge(dev, handle)) {
81 ret = 0;
82 break;
83 }
84 }
85 up_read(&bus_type_sem);
86 return ret;
87}
88
David Shaohua Li4e10d122005-03-18 18:45:35 -050089/* Get device's handler per its address under its parent */
90struct acpi_find_child {
91 acpi_handle handle;
Lin Ming439913f2010-01-28 10:53:19 +080092 u64 address;
David Shaohua Li4e10d122005-03-18 18:45:35 -050093};
94
95static acpi_status
96do_acpi_find_child(acpi_handle handle, u32 lvl, void *context, void **rv)
97{
98 acpi_status status;
99 struct acpi_device_info *info;
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200100 struct acpi_find_child *find = context;
David Shaohua Li4e10d122005-03-18 18:45:35 -0500101
Bob Moore15b8dd52009-06-29 13:39:29 +0800102 status = acpi_get_object_info(handle, &info);
David Shaohua Li4e10d122005-03-18 18:45:35 -0500103 if (ACPI_SUCCESS(status)) {
Zhao Yakui108029f2010-07-13 03:36:08 +0000104 if ((info->address == find->address)
105 && (info->valid & ACPI_VALID_ADR))
David Shaohua Li4e10d122005-03-18 18:45:35 -0500106 find->handle = handle;
Bob Moore15b8dd52009-06-29 13:39:29 +0800107 kfree(info);
David Shaohua Li4e10d122005-03-18 18:45:35 -0500108 }
109 return AE_OK;
110}
111
Lin Ming439913f2010-01-28 10:53:19 +0800112acpi_handle acpi_get_child(acpi_handle parent, u64 address)
David Shaohua Li4e10d122005-03-18 18:45:35 -0500113{
114 struct acpi_find_child find = { NULL, address };
115
116 if (!parent)
117 return NULL;
118 acpi_walk_namespace(ACPI_TYPE_DEVICE, parent,
Lin Ming22635762009-11-13 10:06:08 +0800119 1, do_acpi_find_child, NULL, &find, NULL);
David Shaohua Li4e10d122005-03-18 18:45:35 -0500120 return find.handle;
121}
122
123EXPORT_SYMBOL(acpi_get_child);
124
125/* Link ACPI devices with physical devices */
126static void acpi_glue_data_handler(acpi_handle handle,
Bob Moore8e4319c2009-06-29 13:43:27 +0800127 void *context)
David Shaohua Li4e10d122005-03-18 18:45:35 -0500128{
129 /* we provide an empty handler */
130}
131
132/* Note: a success call will increase reference count by one */
133struct device *acpi_get_physical_device(acpi_handle handle)
134{
135 acpi_status status;
136 struct device *dev;
137
138 status = acpi_get_data(handle, acpi_glue_data_handler, (void **)&dev);
139 if (ACPI_SUCCESS(status))
140 return get_device(dev);
141 return NULL;
142}
143
144EXPORT_SYMBOL(acpi_get_physical_device);
145
146static int acpi_bind_one(struct device *dev, acpi_handle handle)
147{
David Brownell10716952008-02-22 21:54:24 -0800148 struct acpi_device *acpi_dev;
David Shaohua Li4e10d122005-03-18 18:45:35 -0500149 acpi_status status;
150
Benjamin Herrenschmidt465ae642006-11-11 17:18:42 +1100151 if (dev->archdata.acpi_handle) {
Greg Kroah-Hartmanfc3a8822008-05-02 06:02:41 +0200152 dev_warn(dev, "Drivers changed 'acpi_handle'\n");
David Shaohua Li4e10d122005-03-18 18:45:35 -0500153 return -EINVAL;
154 }
155 get_device(dev);
156 status = acpi_attach_data(handle, acpi_glue_data_handler, dev);
157 if (ACPI_FAILURE(status)) {
158 put_device(dev);
159 return -EINVAL;
160 }
Benjamin Herrenschmidt465ae642006-11-11 17:18:42 +1100161 dev->archdata.acpi_handle = handle;
David Shaohua Li4e10d122005-03-18 18:45:35 -0500162
David Brownell10716952008-02-22 21:54:24 -0800163 status = acpi_bus_get_device(handle, &acpi_dev);
164 if (!ACPI_FAILURE(status)) {
165 int ret;
166
167 ret = sysfs_create_link(&dev->kobj, &acpi_dev->dev.kobj,
168 "firmware_node");
169 ret = sysfs_create_link(&acpi_dev->dev.kobj, &dev->kobj,
170 "physical_node");
Rafael J. Wysocki7fa69ba2011-01-06 23:35:10 +0100171 if (acpi_dev->wakeup.flags.valid)
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200172 device_set_wakeup_capable(dev, true);
David Brownell10716952008-02-22 21:54:24 -0800173 }
174
David Shaohua Li4e10d122005-03-18 18:45:35 -0500175 return 0;
176}
177
178static int acpi_unbind_one(struct device *dev)
179{
Benjamin Herrenschmidt465ae642006-11-11 17:18:42 +1100180 if (!dev->archdata.acpi_handle)
David Shaohua Li4e10d122005-03-18 18:45:35 -0500181 return 0;
Benjamin Herrenschmidt465ae642006-11-11 17:18:42 +1100182 if (dev == acpi_get_physical_device(dev->archdata.acpi_handle)) {
David Brownell10716952008-02-22 21:54:24 -0800183 struct acpi_device *acpi_dev;
184
David Shaohua Li4e10d122005-03-18 18:45:35 -0500185 /* acpi_get_physical_device increase refcnt by one */
186 put_device(dev);
David Brownell10716952008-02-22 21:54:24 -0800187
188 if (!acpi_bus_get_device(dev->archdata.acpi_handle,
189 &acpi_dev)) {
190 sysfs_remove_link(&dev->kobj, "firmware_node");
191 sysfs_remove_link(&acpi_dev->dev.kobj, "physical_node");
192 }
193
Benjamin Herrenschmidt465ae642006-11-11 17:18:42 +1100194 acpi_detach_data(dev->archdata.acpi_handle,
195 acpi_glue_data_handler);
196 dev->archdata.acpi_handle = NULL;
David Shaohua Li4e10d122005-03-18 18:45:35 -0500197 /* acpi_bind_one increase refcnt by one */
198 put_device(dev);
199 } else {
Greg Kroah-Hartmanfc3a8822008-05-02 06:02:41 +0200200 dev_err(dev, "Oops, 'acpi_handle' corrupt\n");
David Shaohua Li4e10d122005-03-18 18:45:35 -0500201 }
202 return 0;
203}
204
205static int acpi_platform_notify(struct device *dev)
206{
207 struct acpi_bus_type *type;
208 acpi_handle handle;
209 int ret = -EINVAL;
210
211 if (!dev->bus || !dev->parent) {
212 /* bridge devices genernally haven't bus or parent */
213 ret = acpi_find_bridge_device(dev, &handle);
214 goto end;
215 }
216 type = acpi_get_bus_type(dev->bus);
217 if (!type) {
Kay Sieversdb1461a2009-01-25 23:40:56 +0100218 DBG("No ACPI bus support for %s\n", dev_name(dev));
David Shaohua Li4e10d122005-03-18 18:45:35 -0500219 ret = -EINVAL;
220 goto end;
221 }
222 if ((ret = type->find_device(dev, &handle)) != 0)
Kay Sieversdb1461a2009-01-25 23:40:56 +0100223 DBG("Can't get handler for %s\n", dev_name(dev));
David Shaohua Li4e10d122005-03-18 18:45:35 -0500224 end:
225 if (!ret)
226 acpi_bind_one(dev, handle);
227
228#if ACPI_GLUE_DEBUG
229 if (!ret) {
230 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
231
Benjamin Herrenschmidt465ae642006-11-11 17:18:42 +1100232 acpi_get_name(dev->archdata.acpi_handle,
233 ACPI_FULL_PATHNAME, &buffer);
Kay Sieversdb1461a2009-01-25 23:40:56 +0100234 DBG("Device %s -> %s\n", dev_name(dev), (char *)buffer.pointer);
Len Brown02438d82006-06-30 03:19:10 -0400235 kfree(buffer.pointer);
David Shaohua Li4e10d122005-03-18 18:45:35 -0500236 } else
Kay Sieversdb1461a2009-01-25 23:40:56 +0100237 DBG("Device %s -> No ACPI support\n", dev_name(dev));
David Shaohua Li4e10d122005-03-18 18:45:35 -0500238#endif
239
240 return ret;
241}
242
243static int acpi_platform_notify_remove(struct device *dev)
244{
245 acpi_unbind_one(dev);
246 return 0;
247}
248
Bjorn Helgaas0e465172009-03-24 16:50:09 -0600249int __init init_acpi_device_notify(void)
David Shaohua Li4e10d122005-03-18 18:45:35 -0500250{
David Shaohua Li4e10d122005-03-18 18:45:35 -0500251 if (platform_notify || platform_notify_remove) {
252 printk(KERN_ERR PREFIX "Can't use platform_notify\n");
253 return 0;
254 }
255 platform_notify = acpi_platform_notify;
256 platform_notify_remove = acpi_platform_notify_remove;
257 return 0;
258}