blob: 8711e3797165fa73fd0c401cedbb54c61eb68e4a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/init.h>
30#include <linux/types.h>
Lan Tianyu0ab5bb62013-05-08 07:28:46 +000031#include <linux/dmi.h>
32#include <linux/delay.h>
Zhang Ruicc8ef522013-09-25 20:39:45 +080033#include <linux/platform_device.h>
Alexey Starikovskiyd5b4a3d2007-09-26 19:44:06 +040034#include <linux/power_supply.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <acpi/acpi_bus.h>
36#include <acpi/acpi_drivers.h>
37
Len Browna192a952009-07-28 16:45:54 -040038#define PREFIX "ACPI: "
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#define ACPI_AC_CLASS "ac_adapter"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#define ACPI_AC_DEVICE_NAME "AC Adapter"
42#define ACPI_AC_FILE_STATE "state"
43#define ACPI_AC_NOTIFY_STATUS 0x80
44#define ACPI_AC_STATUS_OFFLINE 0x00
45#define ACPI_AC_STATUS_ONLINE 0x01
46#define ACPI_AC_STATUS_UNKNOWN 0xFF
47
48#define _COMPONENT ACPI_AC_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050049ACPI_MODULE_NAME("ac");
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Len Brownf52fd662007-02-12 22:42:12 -050051MODULE_AUTHOR("Paul Diefenbaugh");
Len Brown7cda93e2007-02-12 23:50:02 -050052MODULE_DESCRIPTION("ACPI AC Adapter Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070053MODULE_LICENSE("GPL");
54
Lan Tianyu0ab5bb62013-05-08 07:28:46 +000055static int ac_sleep_before_get_state_ms;
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057struct acpi_ac {
Alexey Starikovskiyd5b4a3d2007-09-26 19:44:06 +040058 struct power_supply charger;
Zhang Ruicc8ef522013-09-25 20:39:45 +080059 struct platform_device *pdev;
Matthew Wilcox27663c52008-10-10 02:22:59 -040060 unsigned long long state;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061};
62
Phil Carmody497888c2011-07-14 15:07:13 +030063#define to_acpi_ac(x) container_of(x, struct acpi_ac, charger)
Alexey Starikovskiyd5b4a3d2007-09-26 19:44:06 +040064
Linus Torvalds1da177e2005-04-16 15:20:36 -070065/* --------------------------------------------------------------------------
66 AC Adapter Management
67 -------------------------------------------------------------------------- */
68
Len Brown4be44fc2005-08-05 00:44:28 -040069static int acpi_ac_get_state(struct acpi_ac *ac)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
Zhang Ruicc8ef522013-09-25 20:39:45 +080071 acpi_status status;
Lan Tianyu86b0cc12013-11-13 11:27:42 +080072 acpi_handle handle = ACPI_HANDLE(&ac->pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Lan Tianyu86b0cc12013-11-13 11:27:42 +080074 status = acpi_evaluate_integer(handle, "_PSR", NULL,
Zhang Ruicc8ef522013-09-25 20:39:45 +080075 &ac->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 if (ACPI_FAILURE(status)) {
Zhang Ruicc8ef522013-09-25 20:39:45 +080077 ACPI_EXCEPTION((AE_INFO, status,
78 "Error reading AC Adapter state"));
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 ac->state = ACPI_AC_STATUS_UNKNOWN;
Patrick Mocheld550d982006-06-27 00:41:40 -040080 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 }
Len Brown4be44fc2005-08-05 00:44:28 -040082
Patrick Mocheld550d982006-06-27 00:41:40 -040083 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084}
85
Zhang Rui3151dbb2010-12-08 10:40:45 +080086/* --------------------------------------------------------------------------
87 sysfs I/F
88 -------------------------------------------------------------------------- */
89static int get_ac_property(struct power_supply *psy,
90 enum power_supply_property psp,
91 union power_supply_propval *val)
92{
93 struct acpi_ac *ac = to_acpi_ac(psy);
94
95 if (!ac)
96 return -ENODEV;
97
98 if (acpi_ac_get_state(ac))
99 return -ENODEV;
100
101 switch (psp) {
102 case POWER_SUPPLY_PROP_ONLINE:
103 val->intval = ac->state;
104 break;
105 default:
106 return -EINVAL;
107 }
108 return 0;
109}
110
111static enum power_supply_property ac_props[] = {
112 POWER_SUPPLY_PROP_ONLINE,
113};
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115/* --------------------------------------------------------------------------
116 Driver Model
117 -------------------------------------------------------------------------- */
118
Zhang Ruicc8ef522013-09-25 20:39:45 +0800119static void acpi_ac_notify_handler(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
Zhang Ruicc8ef522013-09-25 20:39:45 +0800121 struct acpi_ac *ac = data;
Lan Tianyu86b0cc12013-11-13 11:27:42 +0800122 struct acpi_device *adev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124 if (!ac)
Patrick Mocheld550d982006-06-27 00:41:40 -0400125 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 switch (event) {
Len Brownf163ff52008-06-14 01:26:37 -0400128 default:
129 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
130 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 case ACPI_AC_NOTIFY_STATUS:
Christian Lupien03d782522004-08-19 01:26:00 -0400132 case ACPI_NOTIFY_BUS_CHECK:
133 case ACPI_NOTIFY_DEVICE_CHECK:
Lan Tianyu0ab5bb62013-05-08 07:28:46 +0000134 /*
135 * A buggy BIOS may notify AC first and then sleep for
136 * a specific time before doing actual operations in the
137 * EC event handler (_Qxx). This will cause the AC state
138 * reported by the ACPI event to be incorrect, so wait for a
139 * specific time for the EC event handler to make progress.
140 */
141 if (ac_sleep_before_get_state_ms > 0)
142 msleep(ac_sleep_before_get_state_ms);
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 acpi_ac_get_state(ac);
Lan Tianyu86b0cc12013-11-13 11:27:42 +0800145 adev = ACPI_COMPANION(&ac->pdev->dev);
146 acpi_bus_generate_netlink_event(adev->pnp.device_class,
Zhang Ruicc8ef522013-09-25 20:39:45 +0800147 dev_name(&ac->pdev->dev),
148 event, (u32) ac->state);
Lan Tianyu86b0cc12013-11-13 11:27:42 +0800149 acpi_notifier_call_chain(adev, event, (u32) ac->state);
Alexey Starikovskiyd5b4a3d2007-09-26 19:44:06 +0400150 kobject_uevent(&ac->charger.dev->kobj, KOBJ_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 }
152
Patrick Mocheld550d982006-06-27 00:41:40 -0400153 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
155
Lan Tianyu0ab5bb62013-05-08 07:28:46 +0000156static int thinkpad_e530_quirk(const struct dmi_system_id *d)
157{
158 ac_sleep_before_get_state_ms = 1000;
159 return 0;
160}
161
162static struct dmi_system_id ac_dmi_table[] = {
163 {
164 .callback = thinkpad_e530_quirk,
165 .ident = "thinkpad e530",
166 .matches = {
167 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
168 DMI_MATCH(DMI_PRODUCT_NAME, "32597CG"),
169 },
170 },
171 {},
172};
173
Zhang Ruicc8ef522013-09-25 20:39:45 +0800174static int acpi_ac_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
Len Brown4be44fc2005-08-05 00:44:28 -0400176 int result = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400177 struct acpi_ac *ac = NULL;
Zhang Ruicc8ef522013-09-25 20:39:45 +0800178 struct acpi_device *adev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Zhang Ruicc8ef522013-09-25 20:39:45 +0800180 if (!pdev)
Patrick Mocheld550d982006-06-27 00:41:40 -0400181 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Lan Tianyu86b0cc12013-11-13 11:27:42 +0800183 adev = ACPI_COMPANION(&pdev->dev);
184 if (!adev)
Zhang Ruicc8ef522013-09-25 20:39:45 +0800185 return -ENODEV;
186
Burman Yan36bcbec2006-12-19 12:56:11 -0800187 ac = kzalloc(sizeof(struct acpi_ac), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 if (!ac)
Patrick Mocheld550d982006-06-27 00:41:40 -0400189 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Zhang Ruicc8ef522013-09-25 20:39:45 +0800191 strcpy(acpi_device_name(adev), ACPI_AC_DEVICE_NAME);
192 strcpy(acpi_device_class(adev), ACPI_AC_CLASS);
Zhang Ruicc8ef522013-09-25 20:39:45 +0800193 ac->pdev = pdev;
194 platform_set_drvdata(pdev, ac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196 result = acpi_ac_get_state(ac);
197 if (result)
198 goto end;
199
Zhang Ruicc8ef522013-09-25 20:39:45 +0800200 ac->charger.name = acpi_device_bid(adev);
Alexey Starikovskiyd5b4a3d2007-09-26 19:44:06 +0400201 ac->charger.type = POWER_SUPPLY_TYPE_MAINS;
202 ac->charger.properties = ac_props;
203 ac->charger.num_properties = ARRAY_SIZE(ac_props);
204 ac->charger.get_property = get_ac_property;
Zhang Ruicc8ef522013-09-25 20:39:45 +0800205 result = power_supply_register(&pdev->dev, &ac->charger);
Lan Tianyuf197ac12012-07-20 13:29:16 +0800206 if (result)
207 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Zhang Ruicc8ef522013-09-25 20:39:45 +0800209 result = acpi_install_notify_handler(ACPI_HANDLE(&pdev->dev),
210 ACPI_DEVICE_NOTIFY, acpi_ac_notify_handler, ac);
211 if (result) {
212 power_supply_unregister(&ac->charger);
213 goto end;
214 }
Len Brown4be44fc2005-08-05 00:44:28 -0400215 printk(KERN_INFO PREFIX "%s [%s] (%s)\n",
Zhang Ruicc8ef522013-09-25 20:39:45 +0800216 acpi_device_name(adev), acpi_device_bid(adev),
Len Brown4be44fc2005-08-05 00:44:28 -0400217 ac->state ? "on-line" : "off-line");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Lan Tianyuab0fd672013-10-12 21:04:48 +0800219end:
220 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 kfree(ac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Lan Tianyu0ab5bb62013-05-08 07:28:46 +0000223 dmi_check_system(ac_dmi_table);
Patrick Mocheld550d982006-06-27 00:41:40 -0400224 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225}
226
Rafael J. Wysocki90692402012-08-09 23:00:02 +0200227#ifdef CONFIG_PM_SLEEP
Rafael J. Wysockiccda7062012-06-27 23:26:35 +0200228static int acpi_ac_resume(struct device *dev)
Alexey Starikovskiy5bfeca32007-11-14 17:00:39 -0800229{
230 struct acpi_ac *ac;
231 unsigned old_state;
Rafael J. Wysockiccda7062012-06-27 23:26:35 +0200232
233 if (!dev)
Alexey Starikovskiy5bfeca32007-11-14 17:00:39 -0800234 return -EINVAL;
Rafael J. Wysockiccda7062012-06-27 23:26:35 +0200235
Zhang Ruicc8ef522013-09-25 20:39:45 +0800236 ac = platform_get_drvdata(to_platform_device(dev));
Rafael J. Wysockiccda7062012-06-27 23:26:35 +0200237 if (!ac)
238 return -EINVAL;
239
Alexey Starikovskiy5bfeca32007-11-14 17:00:39 -0800240 old_state = ac->state;
241 if (acpi_ac_get_state(ac))
242 return 0;
243 if (old_state != ac->state)
244 kobject_uevent(&ac->charger.dev->kobj, KOBJ_CHANGE);
245 return 0;
246}
Rafael J. Wysocki90692402012-08-09 23:00:02 +0200247#endif
Zhang Ruicc8ef522013-09-25 20:39:45 +0800248static SIMPLE_DEV_PM_OPS(acpi_ac_pm_ops, NULL, acpi_ac_resume);
Alexey Starikovskiy5bfeca32007-11-14 17:00:39 -0800249
Zhang Ruicc8ef522013-09-25 20:39:45 +0800250static int acpi_ac_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
Zhang Ruicc8ef522013-09-25 20:39:45 +0800252 struct acpi_ac *ac;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Zhang Ruicc8ef522013-09-25 20:39:45 +0800254 if (!pdev)
Patrick Mocheld550d982006-06-27 00:41:40 -0400255 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Zhang Ruicc8ef522013-09-25 20:39:45 +0800257 acpi_remove_notify_handler(ACPI_HANDLE(&pdev->dev),
258 ACPI_DEVICE_NOTIFY, acpi_ac_notify_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Zhang Ruicc8ef522013-09-25 20:39:45 +0800260 ac = platform_get_drvdata(pdev);
Alexey Starikovskiyd5b4a3d2007-09-26 19:44:06 +0400261 if (ac->charger.dev)
262 power_supply_unregister(&ac->charger);
Zhang Ruicc8ef522013-09-25 20:39:45 +0800263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 kfree(ac);
265
Patrick Mocheld550d982006-06-27 00:41:40 -0400266 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
Zhang Ruicc8ef522013-09-25 20:39:45 +0800269static const struct acpi_device_id acpi_ac_match[] = {
270 { "ACPI0003", 0 },
271 { }
272};
273MODULE_DEVICE_TABLE(acpi, acpi_ac_match);
274
275static struct platform_driver acpi_ac_driver = {
276 .probe = acpi_ac_probe,
277 .remove = acpi_ac_remove,
278 .driver = {
279 .name = "acpi-ac",
280 .owner = THIS_MODULE,
281 .pm = &acpi_ac_pm_ops,
282 .acpi_match_table = ACPI_PTR(acpi_ac_match),
283 },
284};
285
Len Brown4be44fc2005-08-05 00:44:28 -0400286static int __init acpi_ac_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
Rich Townsend3f86b832006-07-01 11:36:54 -0400288 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Pavel Machek4d8316d2006-08-14 22:37:22 -0700290 if (acpi_disabled)
291 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Zhang Ruicc8ef522013-09-25 20:39:45 +0800293 result = platform_driver_register(&acpi_ac_driver);
Lan Tianyuab0fd672013-10-12 21:04:48 +0800294 if (result < 0)
Patrick Mocheld550d982006-06-27 00:41:40 -0400295 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Patrick Mocheld550d982006-06-27 00:41:40 -0400297 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298}
299
Len Brown4be44fc2005-08-05 00:44:28 -0400300static void __exit acpi_ac_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301{
Zhang Ruicc8ef522013-09-25 20:39:45 +0800302 platform_driver_unregister(&acpi_ac_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304module_init(acpi_ac_init);
305module_exit(acpi_ac_exit);