blob: 2c01c1da29ce39f637136a12a512f2a473333233 [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>
Lv Zheng8b484632013-12-03 08:49:16 +080035#include <linux/acpi.h>
Alexander Mezin4eee4f02014-03-12 00:58:48 +070036#include "battery.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
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;
Alexander Mezin4eee4f02014-03-12 00:58:48 +070061 struct notifier_block battery_nb;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062};
63
Phil Carmody497888c2011-07-14 15:07:13 +030064#define to_acpi_ac(x) container_of(x, struct acpi_ac, charger)
Alexey Starikovskiyd5b4a3d2007-09-26 19:44:06 +040065
Linus Torvalds1da177e2005-04-16 15:20:36 -070066/* --------------------------------------------------------------------------
67 AC Adapter Management
68 -------------------------------------------------------------------------- */
69
Len Brown4be44fc2005-08-05 00:44:28 -040070static int acpi_ac_get_state(struct acpi_ac *ac)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
Zhang Ruicc8ef522013-09-25 20:39:45 +080072 acpi_status status;
Lan Tianyu86b0cc12013-11-13 11:27:42 +080073 acpi_handle handle = ACPI_HANDLE(&ac->pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Lan Tianyu86b0cc12013-11-13 11:27:42 +080075 status = acpi_evaluate_integer(handle, "_PSR", NULL,
Zhang Ruicc8ef522013-09-25 20:39:45 +080076 &ac->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 if (ACPI_FAILURE(status)) {
Zhang Ruicc8ef522013-09-25 20:39:45 +080078 ACPI_EXCEPTION((AE_INFO, status,
79 "Error reading AC Adapter state"));
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 ac->state = ACPI_AC_STATUS_UNKNOWN;
Patrick Mocheld550d982006-06-27 00:41:40 -040081 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 }
Len Brown4be44fc2005-08-05 00:44:28 -040083
Patrick Mocheld550d982006-06-27 00:41:40 -040084 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085}
86
Zhang Rui3151dbb2010-12-08 10:40:45 +080087/* --------------------------------------------------------------------------
88 sysfs I/F
89 -------------------------------------------------------------------------- */
90static int get_ac_property(struct power_supply *psy,
91 enum power_supply_property psp,
92 union power_supply_propval *val)
93{
94 struct acpi_ac *ac = to_acpi_ac(psy);
95
96 if (!ac)
97 return -ENODEV;
98
99 if (acpi_ac_get_state(ac))
100 return -ENODEV;
101
102 switch (psp) {
103 case POWER_SUPPLY_PROP_ONLINE:
104 val->intval = ac->state;
105 break;
106 default:
107 return -EINVAL;
108 }
109 return 0;
110}
111
112static enum power_supply_property ac_props[] = {
113 POWER_SUPPLY_PROP_ONLINE,
114};
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116/* --------------------------------------------------------------------------
117 Driver Model
118 -------------------------------------------------------------------------- */
119
Zhang Ruicc8ef522013-09-25 20:39:45 +0800120static void acpi_ac_notify_handler(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
Zhang Ruicc8ef522013-09-25 20:39:45 +0800122 struct acpi_ac *ac = data;
Lan Tianyu86b0cc12013-11-13 11:27:42 +0800123 struct acpi_device *adev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 if (!ac)
Patrick Mocheld550d982006-06-27 00:41:40 -0400126 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 switch (event) {
Len Brownf163ff52008-06-14 01:26:37 -0400129 default:
130 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
131 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 case ACPI_AC_NOTIFY_STATUS:
Christian Lupien03d782522004-08-19 01:26:00 -0400133 case ACPI_NOTIFY_BUS_CHECK:
134 case ACPI_NOTIFY_DEVICE_CHECK:
Lan Tianyu0ab5bb62013-05-08 07:28:46 +0000135 /*
136 * A buggy BIOS may notify AC first and then sleep for
137 * a specific time before doing actual operations in the
138 * EC event handler (_Qxx). This will cause the AC state
139 * reported by the ACPI event to be incorrect, so wait for a
140 * specific time for the EC event handler to make progress.
141 */
142 if (ac_sleep_before_get_state_ms > 0)
143 msleep(ac_sleep_before_get_state_ms);
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 acpi_ac_get_state(ac);
Lan Tianyu86b0cc12013-11-13 11:27:42 +0800146 adev = ACPI_COMPANION(&ac->pdev->dev);
147 acpi_bus_generate_netlink_event(adev->pnp.device_class,
Zhang Ruicc8ef522013-09-25 20:39:45 +0800148 dev_name(&ac->pdev->dev),
149 event, (u32) ac->state);
Lan Tianyu86b0cc12013-11-13 11:27:42 +0800150 acpi_notifier_call_chain(adev, event, (u32) ac->state);
Alexey Starikovskiyd5b4a3d2007-09-26 19:44:06 +0400151 kobject_uevent(&ac->charger.dev->kobj, KOBJ_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 }
153
Patrick Mocheld550d982006-06-27 00:41:40 -0400154 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155}
156
Alexander Mezin4eee4f02014-03-12 00:58:48 +0700157static int acpi_ac_battery_notify(struct notifier_block *nb,
158 unsigned long action, void *data)
159{
160 struct acpi_ac *ac = container_of(nb, struct acpi_ac, battery_nb);
161 struct acpi_bus_event *event = (struct acpi_bus_event *)data;
162
163 /*
164 * On HP Pavilion dv6-6179er AC status notifications aren't triggered
165 * when adapter is plugged/unplugged. However, battery status
166 * notifcations are triggered when battery starts charging or
167 * discharging. Re-reading AC status triggers lost AC notifications,
168 * if AC status has changed.
169 */
170 if (strcmp(event->device_class, ACPI_BATTERY_CLASS) == 0 &&
171 event->type == ACPI_BATTERY_NOTIFY_STATUS)
172 acpi_ac_get_state(ac);
173
174 return NOTIFY_OK;
175}
176
Lan Tianyu0ab5bb62013-05-08 07:28:46 +0000177static int thinkpad_e530_quirk(const struct dmi_system_id *d)
178{
179 ac_sleep_before_get_state_ms = 1000;
180 return 0;
181}
182
183static struct dmi_system_id ac_dmi_table[] = {
184 {
185 .callback = thinkpad_e530_quirk,
186 .ident = "thinkpad e530",
187 .matches = {
188 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
189 DMI_MATCH(DMI_PRODUCT_NAME, "32597CG"),
190 },
191 },
192 {},
193};
194
Zhang Ruicc8ef522013-09-25 20:39:45 +0800195static int acpi_ac_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
Len Brown4be44fc2005-08-05 00:44:28 -0400197 int result = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400198 struct acpi_ac *ac = NULL;
Zhang Ruicc8ef522013-09-25 20:39:45 +0800199 struct acpi_device *adev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Zhang Ruicc8ef522013-09-25 20:39:45 +0800201 if (!pdev)
Patrick Mocheld550d982006-06-27 00:41:40 -0400202 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Lan Tianyu86b0cc12013-11-13 11:27:42 +0800204 adev = ACPI_COMPANION(&pdev->dev);
205 if (!adev)
Zhang Ruicc8ef522013-09-25 20:39:45 +0800206 return -ENODEV;
207
Burman Yan36bcbec2006-12-19 12:56:11 -0800208 ac = kzalloc(sizeof(struct acpi_ac), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 if (!ac)
Patrick Mocheld550d982006-06-27 00:41:40 -0400210 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Zhang Ruicc8ef522013-09-25 20:39:45 +0800212 strcpy(acpi_device_name(adev), ACPI_AC_DEVICE_NAME);
213 strcpy(acpi_device_class(adev), ACPI_AC_CLASS);
Zhang Ruicc8ef522013-09-25 20:39:45 +0800214 ac->pdev = pdev;
215 platform_set_drvdata(pdev, ac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 result = acpi_ac_get_state(ac);
218 if (result)
219 goto end;
220
Zhang Ruicc8ef522013-09-25 20:39:45 +0800221 ac->charger.name = acpi_device_bid(adev);
Alexey Starikovskiyd5b4a3d2007-09-26 19:44:06 +0400222 ac->charger.type = POWER_SUPPLY_TYPE_MAINS;
223 ac->charger.properties = ac_props;
224 ac->charger.num_properties = ARRAY_SIZE(ac_props);
225 ac->charger.get_property = get_ac_property;
Zhang Ruicc8ef522013-09-25 20:39:45 +0800226 result = power_supply_register(&pdev->dev, &ac->charger);
Lan Tianyuf197ac12012-07-20 13:29:16 +0800227 if (result)
228 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Zhang Ruicc8ef522013-09-25 20:39:45 +0800230 result = acpi_install_notify_handler(ACPI_HANDLE(&pdev->dev),
Alexander Mezin50a2bc52014-01-04 09:07:59 +0700231 ACPI_ALL_NOTIFY, acpi_ac_notify_handler, ac);
Zhang Ruicc8ef522013-09-25 20:39:45 +0800232 if (result) {
233 power_supply_unregister(&ac->charger);
234 goto end;
235 }
Len Brown4be44fc2005-08-05 00:44:28 -0400236 printk(KERN_INFO PREFIX "%s [%s] (%s)\n",
Zhang Ruicc8ef522013-09-25 20:39:45 +0800237 acpi_device_name(adev), acpi_device_bid(adev),
Len Brown4be44fc2005-08-05 00:44:28 -0400238 ac->state ? "on-line" : "off-line");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Alexander Mezin4eee4f02014-03-12 00:58:48 +0700240 ac->battery_nb.notifier_call = acpi_ac_battery_notify;
241 register_acpi_notifier(&ac->battery_nb);
Lan Tianyuab0fd672013-10-12 21:04:48 +0800242end:
243 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 kfree(ac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Lan Tianyu0ab5bb62013-05-08 07:28:46 +0000246 dmi_check_system(ac_dmi_table);
Patrick Mocheld550d982006-06-27 00:41:40 -0400247 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248}
249
Rafael J. Wysocki90692402012-08-09 23:00:02 +0200250#ifdef CONFIG_PM_SLEEP
Rafael J. Wysockiccda7062012-06-27 23:26:35 +0200251static int acpi_ac_resume(struct device *dev)
Alexey Starikovskiy5bfeca32007-11-14 17:00:39 -0800252{
253 struct acpi_ac *ac;
254 unsigned old_state;
Rafael J. Wysockiccda7062012-06-27 23:26:35 +0200255
256 if (!dev)
Alexey Starikovskiy5bfeca32007-11-14 17:00:39 -0800257 return -EINVAL;
Rafael J. Wysockiccda7062012-06-27 23:26:35 +0200258
Zhang Ruicc8ef522013-09-25 20:39:45 +0800259 ac = platform_get_drvdata(to_platform_device(dev));
Rafael J. Wysockiccda7062012-06-27 23:26:35 +0200260 if (!ac)
261 return -EINVAL;
262
Alexey Starikovskiy5bfeca32007-11-14 17:00:39 -0800263 old_state = ac->state;
264 if (acpi_ac_get_state(ac))
265 return 0;
266 if (old_state != ac->state)
267 kobject_uevent(&ac->charger.dev->kobj, KOBJ_CHANGE);
268 return 0;
269}
Shuah Khan06521c22014-02-12 20:19:05 -0700270#else
271#define acpi_ac_resume NULL
Rafael J. Wysocki90692402012-08-09 23:00:02 +0200272#endif
Zhang Ruicc8ef522013-09-25 20:39:45 +0800273static SIMPLE_DEV_PM_OPS(acpi_ac_pm_ops, NULL, acpi_ac_resume);
Alexey Starikovskiy5bfeca32007-11-14 17:00:39 -0800274
Zhang Ruicc8ef522013-09-25 20:39:45 +0800275static int acpi_ac_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
Zhang Ruicc8ef522013-09-25 20:39:45 +0800277 struct acpi_ac *ac;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Zhang Ruicc8ef522013-09-25 20:39:45 +0800279 if (!pdev)
Patrick Mocheld550d982006-06-27 00:41:40 -0400280 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Zhang Ruicc8ef522013-09-25 20:39:45 +0800282 acpi_remove_notify_handler(ACPI_HANDLE(&pdev->dev),
Alexander Mezin50a2bc52014-01-04 09:07:59 +0700283 ACPI_ALL_NOTIFY, acpi_ac_notify_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Zhang Ruicc8ef522013-09-25 20:39:45 +0800285 ac = platform_get_drvdata(pdev);
Alexey Starikovskiyd5b4a3d2007-09-26 19:44:06 +0400286 if (ac->charger.dev)
287 power_supply_unregister(&ac->charger);
Alexander Mezin4eee4f02014-03-12 00:58:48 +0700288 unregister_acpi_notifier(&ac->battery_nb);
Zhang Ruicc8ef522013-09-25 20:39:45 +0800289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 kfree(ac);
291
Patrick Mocheld550d982006-06-27 00:41:40 -0400292 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293}
294
Zhang Ruicc8ef522013-09-25 20:39:45 +0800295static const struct acpi_device_id acpi_ac_match[] = {
296 { "ACPI0003", 0 },
297 { }
298};
299MODULE_DEVICE_TABLE(acpi, acpi_ac_match);
300
301static struct platform_driver acpi_ac_driver = {
302 .probe = acpi_ac_probe,
303 .remove = acpi_ac_remove,
304 .driver = {
305 .name = "acpi-ac",
306 .owner = THIS_MODULE,
307 .pm = &acpi_ac_pm_ops,
308 .acpi_match_table = ACPI_PTR(acpi_ac_match),
309 },
310};
311
Len Brown4be44fc2005-08-05 00:44:28 -0400312static int __init acpi_ac_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
Rich Townsend3f86b832006-07-01 11:36:54 -0400314 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Pavel Machek4d8316d2006-08-14 22:37:22 -0700316 if (acpi_disabled)
317 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Zhang Ruicc8ef522013-09-25 20:39:45 +0800319 result = platform_driver_register(&acpi_ac_driver);
Lan Tianyuab0fd672013-10-12 21:04:48 +0800320 if (result < 0)
Patrick Mocheld550d982006-06-27 00:41:40 -0400321 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Patrick Mocheld550d982006-06-27 00:41:40 -0400323 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324}
325
Len Brown4be44fc2005-08-05 00:44:28 -0400326static void __exit acpi_ac_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327{
Zhang Ruicc8ef522013-09-25 20:39:45 +0800328 platform_driver_unregister(&acpi_ac_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330module_init(acpi_ac_init);
331module_exit(acpi_ac_exit);