Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wirel...
[linux-2.6-block.git] / drivers / acpi / ac.c
CommitLineData
1da177e4
LT
1/*
2 * acpi_ac.c - ACPI AC Adapter Driver ($Revision: 27 $)
3 *
4 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
5 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
6 *
7 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or (at
12 * your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
22 *
23 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
24 */
25
26#include <linux/kernel.h>
27#include <linux/module.h>
5a0e3ad6 28#include <linux/slab.h>
1da177e4
LT
29#include <linux/init.h>
30#include <linux/types.h>
0ab5bb64
LT
31#include <linux/dmi.h>
32#include <linux/delay.h>
cc8ef527 33#include <linux/platform_device.h>
d5b4a3d0 34#include <linux/power_supply.h>
8b48463f 35#include <linux/acpi.h>
1da177e4 36
a192a958
LB
37#define PREFIX "ACPI: "
38
1da177e4 39#define ACPI_AC_CLASS "ac_adapter"
1da177e4
LT
40#define ACPI_AC_DEVICE_NAME "AC Adapter"
41#define ACPI_AC_FILE_STATE "state"
42#define ACPI_AC_NOTIFY_STATUS 0x80
43#define ACPI_AC_STATUS_OFFLINE 0x00
44#define ACPI_AC_STATUS_ONLINE 0x01
45#define ACPI_AC_STATUS_UNKNOWN 0xFF
46
47#define _COMPONENT ACPI_AC_COMPONENT
f52fd66d 48ACPI_MODULE_NAME("ac");
1da177e4 49
f52fd66d 50MODULE_AUTHOR("Paul Diefenbaugh");
7cda93e0 51MODULE_DESCRIPTION("ACPI AC Adapter Driver");
1da177e4
LT
52MODULE_LICENSE("GPL");
53
0ab5bb64
LT
54static int ac_sleep_before_get_state_ms;
55
1da177e4 56struct acpi_ac {
d5b4a3d0 57 struct power_supply charger;
cc8ef527 58 struct platform_device *pdev;
27663c58 59 unsigned long long state;
1da177e4
LT
60};
61
497888cf 62#define to_acpi_ac(x) container_of(x, struct acpi_ac, charger)
d5b4a3d0 63
1da177e4
LT
64/* --------------------------------------------------------------------------
65 AC Adapter Management
66 -------------------------------------------------------------------------- */
67
4be44fcd 68static int acpi_ac_get_state(struct acpi_ac *ac)
1da177e4 69{
cc8ef527 70 acpi_status status;
86b0cc12 71 acpi_handle handle = ACPI_HANDLE(&ac->pdev->dev);
1da177e4 72
86b0cc12 73 status = acpi_evaluate_integer(handle, "_PSR", NULL,
cc8ef527 74 &ac->state);
1da177e4 75 if (ACPI_FAILURE(status)) {
cc8ef527
ZR
76 ACPI_EXCEPTION((AE_INFO, status,
77 "Error reading AC Adapter state"));
1da177e4 78 ac->state = ACPI_AC_STATUS_UNKNOWN;
d550d98d 79 return -ENODEV;
1da177e4 80 }
4be44fcd 81
d550d98d 82 return 0;
1da177e4
LT
83}
84
3151dbb0
ZR
85/* --------------------------------------------------------------------------
86 sysfs I/F
87 -------------------------------------------------------------------------- */
88static int get_ac_property(struct power_supply *psy,
89 enum power_supply_property psp,
90 union power_supply_propval *val)
91{
92 struct acpi_ac *ac = to_acpi_ac(psy);
93
94 if (!ac)
95 return -ENODEV;
96
97 if (acpi_ac_get_state(ac))
98 return -ENODEV;
99
100 switch (psp) {
101 case POWER_SUPPLY_PROP_ONLINE:
102 val->intval = ac->state;
103 break;
104 default:
105 return -EINVAL;
106 }
107 return 0;
108}
109
110static enum power_supply_property ac_props[] = {
111 POWER_SUPPLY_PROP_ONLINE,
112};
113
1da177e4
LT
114/* --------------------------------------------------------------------------
115 Driver Model
116 -------------------------------------------------------------------------- */
117
cc8ef527 118static void acpi_ac_notify_handler(acpi_handle handle, u32 event, void *data)
1da177e4 119{
cc8ef527 120 struct acpi_ac *ac = data;
86b0cc12 121 struct acpi_device *adev;
1da177e4
LT
122
123 if (!ac)
d550d98d 124 return;
1da177e4 125
1da177e4 126 switch (event) {
f163ff51
LB
127 default:
128 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
129 "Unsupported event [0x%x]\n", event));
1da177e4 130 case ACPI_AC_NOTIFY_STATUS:
03d78252
CL
131 case ACPI_NOTIFY_BUS_CHECK:
132 case ACPI_NOTIFY_DEVICE_CHECK:
0ab5bb64
LT
133 /*
134 * A buggy BIOS may notify AC first and then sleep for
135 * a specific time before doing actual operations in the
136 * EC event handler (_Qxx). This will cause the AC state
137 * reported by the ACPI event to be incorrect, so wait for a
138 * specific time for the EC event handler to make progress.
139 */
140 if (ac_sleep_before_get_state_ms > 0)
141 msleep(ac_sleep_before_get_state_ms);
142
1da177e4 143 acpi_ac_get_state(ac);
86b0cc12
LT
144 adev = ACPI_COMPANION(&ac->pdev->dev);
145 acpi_bus_generate_netlink_event(adev->pnp.device_class,
cc8ef527
ZR
146 dev_name(&ac->pdev->dev),
147 event, (u32) ac->state);
86b0cc12 148 acpi_notifier_call_chain(adev, event, (u32) ac->state);
d5b4a3d0 149 kobject_uevent(&ac->charger.dev->kobj, KOBJ_CHANGE);
1da177e4
LT
150 }
151
d550d98d 152 return;
1da177e4
LT
153}
154
0ab5bb64
LT
155static int thinkpad_e530_quirk(const struct dmi_system_id *d)
156{
157 ac_sleep_before_get_state_ms = 1000;
158 return 0;
159}
160
161static struct dmi_system_id ac_dmi_table[] = {
162 {
163 .callback = thinkpad_e530_quirk,
164 .ident = "thinkpad e530",
165 .matches = {
166 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
167 DMI_MATCH(DMI_PRODUCT_NAME, "32597CG"),
168 },
169 },
170 {},
171};
172
cc8ef527 173static int acpi_ac_probe(struct platform_device *pdev)
1da177e4 174{
4be44fcd 175 int result = 0;
4be44fcd 176 struct acpi_ac *ac = NULL;
cc8ef527 177 struct acpi_device *adev;
1da177e4 178
cc8ef527 179 if (!pdev)
d550d98d 180 return -EINVAL;
1da177e4 181
86b0cc12
LT
182 adev = ACPI_COMPANION(&pdev->dev);
183 if (!adev)
cc8ef527
ZR
184 return -ENODEV;
185
36bcbec7 186 ac = kzalloc(sizeof(struct acpi_ac), GFP_KERNEL);
1da177e4 187 if (!ac)
d550d98d 188 return -ENOMEM;
1da177e4 189
cc8ef527
ZR
190 strcpy(acpi_device_name(adev), ACPI_AC_DEVICE_NAME);
191 strcpy(acpi_device_class(adev), ACPI_AC_CLASS);
cc8ef527
ZR
192 ac->pdev = pdev;
193 platform_set_drvdata(pdev, ac);
1da177e4
LT
194
195 result = acpi_ac_get_state(ac);
196 if (result)
197 goto end;
198
cc8ef527 199 ac->charger.name = acpi_device_bid(adev);
d5b4a3d0
AS
200 ac->charger.type = POWER_SUPPLY_TYPE_MAINS;
201 ac->charger.properties = ac_props;
202 ac->charger.num_properties = ARRAY_SIZE(ac_props);
203 ac->charger.get_property = get_ac_property;
cc8ef527 204 result = power_supply_register(&pdev->dev, &ac->charger);
f197ac13
LT
205 if (result)
206 goto end;
1da177e4 207
cc8ef527 208 result = acpi_install_notify_handler(ACPI_HANDLE(&pdev->dev),
50a2bc54 209 ACPI_ALL_NOTIFY, acpi_ac_notify_handler, ac);
cc8ef527
ZR
210 if (result) {
211 power_supply_unregister(&ac->charger);
212 goto end;
213 }
4be44fcd 214 printk(KERN_INFO PREFIX "%s [%s] (%s)\n",
cc8ef527 215 acpi_device_name(adev), acpi_device_bid(adev),
4be44fcd 216 ac->state ? "on-line" : "off-line");
1da177e4 217
ab0fd674
LT
218end:
219 if (result)
1da177e4 220 kfree(ac);
1da177e4 221
0ab5bb64 222 dmi_check_system(ac_dmi_table);
d550d98d 223 return result;
1da177e4
LT
224}
225
90692404 226#ifdef CONFIG_PM_SLEEP
ccda7069 227static int acpi_ac_resume(struct device *dev)
5bfeca31
AS
228{
229 struct acpi_ac *ac;
230 unsigned old_state;
ccda7069
RW
231
232 if (!dev)
233 return -EINVAL;
234
cc8ef527 235 ac = platform_get_drvdata(to_platform_device(dev));
ccda7069 236 if (!ac)
5bfeca31 237 return -EINVAL;
ccda7069 238
5bfeca31
AS
239 old_state = ac->state;
240 if (acpi_ac_get_state(ac))
241 return 0;
242 if (old_state != ac->state)
243 kobject_uevent(&ac->charger.dev->kobj, KOBJ_CHANGE);
244 return 0;
245}
06521c2e
SK
246#else
247#define acpi_ac_resume NULL
90692404 248#endif
cc8ef527 249static SIMPLE_DEV_PM_OPS(acpi_ac_pm_ops, NULL, acpi_ac_resume);
5bfeca31 250
cc8ef527 251static int acpi_ac_remove(struct platform_device *pdev)
1da177e4 252{
cc8ef527 253 struct acpi_ac *ac;
1da177e4 254
cc8ef527 255 if (!pdev)
d550d98d 256 return -EINVAL;
1da177e4 257
cc8ef527 258 acpi_remove_notify_handler(ACPI_HANDLE(&pdev->dev),
50a2bc54 259 ACPI_ALL_NOTIFY, acpi_ac_notify_handler);
1da177e4 260
cc8ef527 261 ac = platform_get_drvdata(pdev);
d5b4a3d0
AS
262 if (ac->charger.dev)
263 power_supply_unregister(&ac->charger);
cc8ef527 264
1da177e4
LT
265 kfree(ac);
266
d550d98d 267 return 0;
1da177e4
LT
268}
269
cc8ef527
ZR
270static const struct acpi_device_id acpi_ac_match[] = {
271 { "ACPI0003", 0 },
272 { }
273};
274MODULE_DEVICE_TABLE(acpi, acpi_ac_match);
275
276static struct platform_driver acpi_ac_driver = {
277 .probe = acpi_ac_probe,
278 .remove = acpi_ac_remove,
279 .driver = {
280 .name = "acpi-ac",
281 .owner = THIS_MODULE,
282 .pm = &acpi_ac_pm_ops,
283 .acpi_match_table = ACPI_PTR(acpi_ac_match),
284 },
285};
286
4be44fcd 287static int __init acpi_ac_init(void)
1da177e4 288{
3f86b832 289 int result;
1da177e4 290
4d8316d5
PM
291 if (acpi_disabled)
292 return -ENODEV;
1da177e4 293
cc8ef527 294 result = platform_driver_register(&acpi_ac_driver);
ab0fd674 295 if (result < 0)
d550d98d 296 return -ENODEV;
1da177e4 297
d550d98d 298 return 0;
1da177e4
LT
299}
300
4be44fcd 301static void __exit acpi_ac_exit(void)
1da177e4 302{
cc8ef527 303 platform_driver_unregister(&acpi_ac_driver);
1da177e4 304}
1da177e4
LT
305module_init(acpi_ac_init);
306module_exit(acpi_ac_exit);