blob: 8dd3336efd7e242209240010b7fa9710bb2ae6e8 [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 */
9#include <linux/init.h>
10#include <linux/list.h>
11#include <linux/device.h>
12#include <linux/rwsem.h>
13#include <linux/acpi.h>
14
15#define ACPI_GLUE_DEBUG 0
16#if ACPI_GLUE_DEBUG
17#define DBG(x...) printk(PREFIX x)
18#else
Dave Jones4ebf83c2007-07-09 11:33:14 -070019#define DBG(x...) do { } while(0)
David Shaohua Li4e10d122005-03-18 18:45:35 -050020#endif
21static LIST_HEAD(bus_type_list);
22static DECLARE_RWSEM(bus_type_sem);
23
24int register_acpi_bus_type(struct acpi_bus_type *type)
25{
26 if (acpi_disabled)
27 return -ENODEV;
28 if (type && type->bus && type->find_device) {
29 down_write(&bus_type_sem);
30 list_add_tail(&type->list, &bus_type_list);
31 up_write(&bus_type_sem);
Len Brown4be44fc2005-08-05 00:44:28 -040032 printk(KERN_INFO PREFIX "bus type %s registered\n",
33 type->bus->name);
David Shaohua Li4e10d122005-03-18 18:45:35 -050034 return 0;
35 }
36 return -ENODEV;
37}
38
David Shaohua Li4e10d122005-03-18 18:45:35 -050039int unregister_acpi_bus_type(struct acpi_bus_type *type)
40{
41 if (acpi_disabled)
42 return 0;
43 if (type) {
44 down_write(&bus_type_sem);
45 list_del_init(&type->list);
46 up_write(&bus_type_sem);
Len Brown4be44fc2005-08-05 00:44:28 -040047 printk(KERN_INFO PREFIX "ACPI bus type %s unregistered\n",
48 type->bus->name);
David Shaohua Li4e10d122005-03-18 18:45:35 -050049 return 0;
50 }
51 return -ENODEV;
52}
53
David Shaohua Li4e10d122005-03-18 18:45:35 -050054static struct acpi_bus_type *acpi_get_bus_type(struct bus_type *type)
55{
56 struct acpi_bus_type *tmp, *ret = NULL;
57
58 down_read(&bus_type_sem);
59 list_for_each_entry(tmp, &bus_type_list, list) {
60 if (tmp->bus == type) {
61 ret = tmp;
62 break;
63 }
64 }
65 up_read(&bus_type_sem);
66 return ret;
67}
68
69static int acpi_find_bridge_device(struct device *dev, acpi_handle * handle)
70{
71 struct acpi_bus_type *tmp;
72 int ret = -ENODEV;
73
74 down_read(&bus_type_sem);
75 list_for_each_entry(tmp, &bus_type_list, list) {
76 if (tmp->find_bridge && !tmp->find_bridge(dev, handle)) {
77 ret = 0;
78 break;
79 }
80 }
81 up_read(&bus_type_sem);
82 return ret;
83}
84
David Shaohua Li4e10d122005-03-18 18:45:35 -050085/* Get device's handler per its address under its parent */
86struct acpi_find_child {
87 acpi_handle handle;
88 acpi_integer address;
89};
90
91static acpi_status
92do_acpi_find_child(acpi_handle handle, u32 lvl, void *context, void **rv)
93{
94 acpi_status status;
95 struct acpi_device_info *info;
96 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Jan Engelhardt50dd0962006-10-01 00:28:50 +020097 struct acpi_find_child *find = context;
David Shaohua Li4e10d122005-03-18 18:45:35 -050098
99 status = acpi_get_object_info(handle, &buffer);
100 if (ACPI_SUCCESS(status)) {
101 info = buffer.pointer;
102 if (info->address == find->address)
103 find->handle = handle;
Len Brown02438d82006-06-30 03:19:10 -0400104 kfree(buffer.pointer);
David Shaohua Li4e10d122005-03-18 18:45:35 -0500105 }
106 return AE_OK;
107}
108
109acpi_handle acpi_get_child(acpi_handle parent, acpi_integer address)
110{
111 struct acpi_find_child find = { NULL, address };
112
113 if (!parent)
114 return NULL;
115 acpi_walk_namespace(ACPI_TYPE_DEVICE, parent,
116 1, do_acpi_find_child, &find, NULL);
117 return find.handle;
118}
119
120EXPORT_SYMBOL(acpi_get_child);
121
122/* Link ACPI devices with physical devices */
123static void acpi_glue_data_handler(acpi_handle handle,
124 u32 function, void *context)
125{
126 /* we provide an empty handler */
127}
128
129/* Note: a success call will increase reference count by one */
130struct device *acpi_get_physical_device(acpi_handle handle)
131{
132 acpi_status status;
133 struct device *dev;
134
135 status = acpi_get_data(handle, acpi_glue_data_handler, (void **)&dev);
136 if (ACPI_SUCCESS(status))
137 return get_device(dev);
138 return NULL;
139}
140
141EXPORT_SYMBOL(acpi_get_physical_device);
142
143static int acpi_bind_one(struct device *dev, acpi_handle handle)
144{
David Brownell10716952008-02-22 21:54:24 -0800145 struct acpi_device *acpi_dev;
David Shaohua Li4e10d122005-03-18 18:45:35 -0500146 acpi_status status;
147
Benjamin Herrenschmidt465ae642006-11-11 17:18:42 +1100148 if (dev->archdata.acpi_handle) {
Greg Kroah-Hartmanfc3a8822008-05-02 06:02:41 +0200149 dev_warn(dev, "Drivers changed 'acpi_handle'\n");
David Shaohua Li4e10d122005-03-18 18:45:35 -0500150 return -EINVAL;
151 }
152 get_device(dev);
153 status = acpi_attach_data(handle, acpi_glue_data_handler, dev);
154 if (ACPI_FAILURE(status)) {
155 put_device(dev);
156 return -EINVAL;
157 }
Benjamin Herrenschmidt465ae642006-11-11 17:18:42 +1100158 dev->archdata.acpi_handle = handle;
David Shaohua Li4e10d122005-03-18 18:45:35 -0500159
David Brownell10716952008-02-22 21:54:24 -0800160 status = acpi_bus_get_device(handle, &acpi_dev);
161 if (!ACPI_FAILURE(status)) {
162 int ret;
163
164 ret = sysfs_create_link(&dev->kobj, &acpi_dev->dev.kobj,
165 "firmware_node");
166 ret = sysfs_create_link(&acpi_dev->dev.kobj, &dev->kobj,
167 "physical_node");
Rafael J. Wysocki76acae02008-10-03 15:23:49 -0700168 if (acpi_dev->wakeup.flags.valid) {
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200169 device_set_wakeup_capable(dev, true);
Rafael J. Wysocki76acae02008-10-03 15:23:49 -0700170 device_set_wakeup_enable(dev,
171 acpi_dev->wakeup.state.enabled);
172 }
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) {
David Shaohua Lief7b06c2005-04-18 22:59:23 -0400218 DBG("No ACPI bus support for %s\n", dev->bus_id);
David Shaohua Li4e10d122005-03-18 18:45:35 -0500219 ret = -EINVAL;
220 goto end;
221 }
222 if ((ret = type->find_device(dev, &handle)) != 0)
David Shaohua Lief7b06c2005-04-18 22:59:23 -0400223 DBG("Can't get handler for %s\n", dev->bus_id);
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);
David Shaohua Li4e10d122005-03-18 18:45:35 -0500234 DBG("Device %s -> %s\n", dev->bus_id, (char *)buffer.pointer);
Len Brown02438d82006-06-30 03:19:10 -0400235 kfree(buffer.pointer);
David Shaohua Li4e10d122005-03-18 18:45:35 -0500236 } else
237 DBG("Device %s -> No ACPI support\n", dev->bus_id);
238#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
249static int __init init_acpi_device_notify(void)
250{
251 if (acpi_disabled)
252 return 0;
253 if (platform_notify || platform_notify_remove) {
254 printk(KERN_ERR PREFIX "Can't use platform_notify\n");
255 return 0;
256 }
257 platform_notify = acpi_platform_notify;
258 platform_notify_remove = acpi_platform_notify_remove;
259 return 0;
260}
261
262arch_initcall(init_acpi_device_notify);
David Brownella74388e2007-02-05 16:09:11 -0800263
264
265#if defined(CONFIG_RTC_DRV_CMOS) || defined(CONFIG_RTC_DRV_CMOS_MODULE)
266
David Brownellf5f72b42007-05-08 00:34:02 -0700267#ifdef CONFIG_PM
268static u32 rtc_handler(void *context)
269{
270 acpi_clear_event(ACPI_EVENT_RTC);
271 acpi_disable_event(ACPI_EVENT_RTC, 0);
272 return ACPI_INTERRUPT_HANDLED;
273}
274
275static inline void rtc_wake_setup(void)
276{
277 acpi_install_fixed_event_handler(ACPI_EVENT_RTC, rtc_handler, NULL);
Zhao Yakuie1094bf2008-05-14 11:32:59 +0800278 /*
279 * After the RTC handler is installed, the Fixed_RTC event should
280 * be disabled. Only when the RTC alarm is set will it be enabled.
281 */
282 acpi_clear_event(ACPI_EVENT_RTC);
283 acpi_disable_event(ACPI_EVENT_RTC, 0);
David Brownellf5f72b42007-05-08 00:34:02 -0700284}
285
286static void rtc_wake_on(struct device *dev)
287{
288 acpi_clear_event(ACPI_EVENT_RTC);
289 acpi_enable_event(ACPI_EVENT_RTC, 0);
290}
291
292static void rtc_wake_off(struct device *dev)
293{
294 acpi_disable_event(ACPI_EVENT_RTC, 0);
295}
296#else
297#define rtc_wake_setup() do{}while(0)
298#define rtc_wake_on NULL
299#define rtc_wake_off NULL
300#endif
301
David Brownella74388e2007-02-05 16:09:11 -0800302/* Every ACPI platform has a mc146818 compatible "cmos rtc". Here we find
303 * its device node and pass extra config data. This helps its driver use
304 * capabilities that the now-obsolete mc146818 didn't have, and informs it
305 * that this board's RTC is wakeup-capable (per ACPI spec).
306 */
307#include <linux/mc146818rtc.h>
308
309static struct cmos_rtc_board_info rtc_info;
310
311
David Brownella74388e2007-02-05 16:09:11 -0800312/* PNP devices are registered in a subsys_initcall();
313 * ACPI specifies the PNP IDs to use.
314 */
315#include <linux/pnp.h>
316
317static int __init pnp_match(struct device *dev, void *data)
318{
319 static const char *ids[] = { "PNP0b00", "PNP0b01", "PNP0b02", };
320 struct pnp_dev *pnp = to_pnp_dev(dev);
321 int i;
322
323 for (i = 0; i < ARRAY_SIZE(ids); i++) {
324 if (compare_pnp_id(pnp->id, ids[i]) != 0)
325 return 1;
326 }
327 return 0;
328}
329
330static struct device *__init get_rtc_dev(void)
331{
332 return bus_find_device(&pnp_bus_type, NULL, NULL, pnp_match);
333}
334
David Brownella74388e2007-02-05 16:09:11 -0800335static int __init acpi_rtc_init(void)
336{
337 struct device *dev = get_rtc_dev();
338
Vegard Nossum4389ed22008-06-20 15:39:09 +0200339 if (acpi_disabled)
340 return 0;
341
David Brownella74388e2007-02-05 16:09:11 -0800342 if (dev) {
David Brownellf5f72b42007-05-08 00:34:02 -0700343 rtc_wake_setup();
344 rtc_info.wake_on = rtc_wake_on;
345 rtc_info.wake_off = rtc_wake_off;
346
David Brownell19bfe372007-05-08 00:34:03 -0700347 /* workaround bug in some ACPI tables */
348 if (acpi_gbl_FADT.month_alarm && !acpi_gbl_FADT.day_alarm) {
349 DBG("bogus FADT month_alarm\n");
350 acpi_gbl_FADT.month_alarm = 0;
351 }
352
David Brownella74388e2007-02-05 16:09:11 -0800353 rtc_info.rtc_day_alarm = acpi_gbl_FADT.day_alarm;
354 rtc_info.rtc_mon_alarm = acpi_gbl_FADT.month_alarm;
355 rtc_info.rtc_century = acpi_gbl_FADT.century;
356
David Brownellf5f72b42007-05-08 00:34:02 -0700357 /* NOTE: S4_RTC_WAKE is NOT currently useful to Linux */
358 if (acpi_gbl_FADT.flags & ACPI_FADT_S4_RTC_WAKE)
David Brownell19bfe372007-05-08 00:34:03 -0700359 printk(PREFIX "RTC can wake from S4\n");
360
David Brownella74388e2007-02-05 16:09:11 -0800361
362 dev->platform_data = &rtc_info;
363
364 /* RTC always wakes from S1/S2/S3, and often S4/STD */
365 device_init_wakeup(dev, 1);
366
367 put_device(dev);
368 } else
David Brownell19bfe372007-05-08 00:34:03 -0700369 DBG("RTC unavailable?\n");
David Brownella74388e2007-02-05 16:09:11 -0800370 return 0;
371}
372/* do this between RTC subsys_initcall() and rtc_cmos driver_initcall() */
373fs_initcall(acpi_rtc_init);
374
375#endif