blob: 8095943e6e112da4b0dd3e77b92e331270624020 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Len Browna192a952009-07-28 16:45:54 -040037#define PREFIX "ACPI: "
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#define ACPI_AC_CLASS "ac_adapter"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#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
Len Brownf52fd662007-02-12 22:42:12 -050048ACPI_MODULE_NAME("ac");
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Len Brownf52fd662007-02-12 22:42:12 -050050MODULE_AUTHOR("Paul Diefenbaugh");
Len Brown7cda93e2007-02-12 23:50:02 -050051MODULE_DESCRIPTION("ACPI AC Adapter Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070052MODULE_LICENSE("GPL");
53
Lan Tianyu0ab5bb62013-05-08 07:28:46 +000054static int ac_sleep_before_get_state_ms;
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056struct acpi_ac {
Alexey Starikovskiyd5b4a3d2007-09-26 19:44:06 +040057 struct power_supply charger;
Zhang Ruicc8ef522013-09-25 20:39:45 +080058 struct platform_device *pdev;
Matthew Wilcox27663c52008-10-10 02:22:59 -040059 unsigned long long state;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060};
61
Phil Carmody497888c2011-07-14 15:07:13 +030062#define to_acpi_ac(x) container_of(x, struct acpi_ac, charger)
Alexey Starikovskiyd5b4a3d2007-09-26 19:44:06 +040063
Linus Torvalds1da177e2005-04-16 15:20:36 -070064/* --------------------------------------------------------------------------
65 AC Adapter Management
66 -------------------------------------------------------------------------- */
67
Len Brown4be44fc2005-08-05 00:44:28 -040068static int acpi_ac_get_state(struct acpi_ac *ac)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
Zhang Ruicc8ef522013-09-25 20:39:45 +080070 acpi_status status;
Lan Tianyu86b0cc12013-11-13 11:27:42 +080071 acpi_handle handle = ACPI_HANDLE(&ac->pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Lan Tianyu86b0cc12013-11-13 11:27:42 +080073 status = acpi_evaluate_integer(handle, "_PSR", NULL,
Zhang Ruicc8ef522013-09-25 20:39:45 +080074 &ac->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 if (ACPI_FAILURE(status)) {
Zhang Ruicc8ef522013-09-25 20:39:45 +080076 ACPI_EXCEPTION((AE_INFO, status,
77 "Error reading AC Adapter state"));
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 ac->state = ACPI_AC_STATUS_UNKNOWN;
Patrick Mocheld550d982006-06-27 00:41:40 -040079 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 }
Len Brown4be44fc2005-08-05 00:44:28 -040081
Patrick Mocheld550d982006-06-27 00:41:40 -040082 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083}
84
Zhang Rui3151dbb2010-12-08 10:40:45 +080085/* --------------------------------------------------------------------------
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114/* --------------------------------------------------------------------------
115 Driver Model
116 -------------------------------------------------------------------------- */
117
Zhang Ruicc8ef522013-09-25 20:39:45 +0800118static void acpi_ac_notify_handler(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
Zhang Ruicc8ef522013-09-25 20:39:45 +0800120 struct acpi_ac *ac = data;
Lan Tianyu86b0cc12013-11-13 11:27:42 +0800121 struct acpi_device *adev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123 if (!ac)
Patrick Mocheld550d982006-06-27 00:41:40 -0400124 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 switch (event) {
Len Brownf163ff52008-06-14 01:26:37 -0400127 default:
128 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
129 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 case ACPI_AC_NOTIFY_STATUS:
Christian Lupien03d782522004-08-19 01:26:00 -0400131 case ACPI_NOTIFY_BUS_CHECK:
132 case ACPI_NOTIFY_DEVICE_CHECK:
Lan Tianyu0ab5bb62013-05-08 07:28:46 +0000133 /*
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 acpi_ac_get_state(ac);
Lan Tianyu86b0cc12013-11-13 11:27:42 +0800144 adev = ACPI_COMPANION(&ac->pdev->dev);
145 acpi_bus_generate_netlink_event(adev->pnp.device_class,
Zhang Ruicc8ef522013-09-25 20:39:45 +0800146 dev_name(&ac->pdev->dev),
147 event, (u32) ac->state);
Lan Tianyu86b0cc12013-11-13 11:27:42 +0800148 acpi_notifier_call_chain(adev, event, (u32) ac->state);
Alexey Starikovskiyd5b4a3d2007-09-26 19:44:06 +0400149 kobject_uevent(&ac->charger.dev->kobj, KOBJ_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 }
151
Patrick Mocheld550d982006-06-27 00:41:40 -0400152 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153}
154
Lan Tianyu0ab5bb62013-05-08 07:28:46 +0000155static 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
Zhang Ruicc8ef522013-09-25 20:39:45 +0800173static int acpi_ac_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
Len Brown4be44fc2005-08-05 00:44:28 -0400175 int result = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400176 struct acpi_ac *ac = NULL;
Zhang Ruicc8ef522013-09-25 20:39:45 +0800177 struct acpi_device *adev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Zhang Ruicc8ef522013-09-25 20:39:45 +0800179 if (!pdev)
Patrick Mocheld550d982006-06-27 00:41:40 -0400180 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Lan Tianyu86b0cc12013-11-13 11:27:42 +0800182 adev = ACPI_COMPANION(&pdev->dev);
183 if (!adev)
Zhang Ruicc8ef522013-09-25 20:39:45 +0800184 return -ENODEV;
185
Burman Yan36bcbec2006-12-19 12:56:11 -0800186 ac = kzalloc(sizeof(struct acpi_ac), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 if (!ac)
Patrick Mocheld550d982006-06-27 00:41:40 -0400188 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Zhang Ruicc8ef522013-09-25 20:39:45 +0800190 strcpy(acpi_device_name(adev), ACPI_AC_DEVICE_NAME);
191 strcpy(acpi_device_class(adev), ACPI_AC_CLASS);
Zhang Ruicc8ef522013-09-25 20:39:45 +0800192 ac->pdev = pdev;
193 platform_set_drvdata(pdev, ac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
195 result = acpi_ac_get_state(ac);
196 if (result)
197 goto end;
198
Zhang Ruicc8ef522013-09-25 20:39:45 +0800199 ac->charger.name = acpi_device_bid(adev);
Alexey Starikovskiyd5b4a3d2007-09-26 19:44:06 +0400200 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;
Zhang Ruicc8ef522013-09-25 20:39:45 +0800204 result = power_supply_register(&pdev->dev, &ac->charger);
Lan Tianyuf197ac12012-07-20 13:29:16 +0800205 if (result)
206 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Zhang Ruicc8ef522013-09-25 20:39:45 +0800208 result = acpi_install_notify_handler(ACPI_HANDLE(&pdev->dev),
209 ACPI_DEVICE_NOTIFY, acpi_ac_notify_handler, ac);
210 if (result) {
211 power_supply_unregister(&ac->charger);
212 goto end;
213 }
Len Brown4be44fc2005-08-05 00:44:28 -0400214 printk(KERN_INFO PREFIX "%s [%s] (%s)\n",
Zhang Ruicc8ef522013-09-25 20:39:45 +0800215 acpi_device_name(adev), acpi_device_bid(adev),
Len Brown4be44fc2005-08-05 00:44:28 -0400216 ac->state ? "on-line" : "off-line");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Lan Tianyuab0fd672013-10-12 21:04:48 +0800218end:
219 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 kfree(ac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Lan Tianyu0ab5bb62013-05-08 07:28:46 +0000222 dmi_check_system(ac_dmi_table);
Patrick Mocheld550d982006-06-27 00:41:40 -0400223 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
225
Rafael J. Wysocki90692402012-08-09 23:00:02 +0200226#ifdef CONFIG_PM_SLEEP
Rafael J. Wysockiccda7062012-06-27 23:26:35 +0200227static int acpi_ac_resume(struct device *dev)
Alexey Starikovskiy5bfeca32007-11-14 17:00:39 -0800228{
229 struct acpi_ac *ac;
230 unsigned old_state;
Rafael J. Wysockiccda7062012-06-27 23:26:35 +0200231
232 if (!dev)
Alexey Starikovskiy5bfeca32007-11-14 17:00:39 -0800233 return -EINVAL;
Rafael J. Wysockiccda7062012-06-27 23:26:35 +0200234
Zhang Ruicc8ef522013-09-25 20:39:45 +0800235 ac = platform_get_drvdata(to_platform_device(dev));
Rafael J. Wysockiccda7062012-06-27 23:26:35 +0200236 if (!ac)
237 return -EINVAL;
238
Alexey Starikovskiy5bfeca32007-11-14 17:00:39 -0800239 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}
Rafael J. Wysocki90692402012-08-09 23:00:02 +0200246#endif
Zhang Ruicc8ef522013-09-25 20:39:45 +0800247static SIMPLE_DEV_PM_OPS(acpi_ac_pm_ops, NULL, acpi_ac_resume);
Alexey Starikovskiy5bfeca32007-11-14 17:00:39 -0800248
Zhang Ruicc8ef522013-09-25 20:39:45 +0800249static int acpi_ac_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
Zhang Ruicc8ef522013-09-25 20:39:45 +0800251 struct acpi_ac *ac;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Zhang Ruicc8ef522013-09-25 20:39:45 +0800253 if (!pdev)
Patrick Mocheld550d982006-06-27 00:41:40 -0400254 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Zhang Ruicc8ef522013-09-25 20:39:45 +0800256 acpi_remove_notify_handler(ACPI_HANDLE(&pdev->dev),
257 ACPI_DEVICE_NOTIFY, acpi_ac_notify_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Zhang Ruicc8ef522013-09-25 20:39:45 +0800259 ac = platform_get_drvdata(pdev);
Alexey Starikovskiyd5b4a3d2007-09-26 19:44:06 +0400260 if (ac->charger.dev)
261 power_supply_unregister(&ac->charger);
Zhang Ruicc8ef522013-09-25 20:39:45 +0800262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 kfree(ac);
264
Patrick Mocheld550d982006-06-27 00:41:40 -0400265 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
267
Zhang Ruicc8ef522013-09-25 20:39:45 +0800268static const struct acpi_device_id acpi_ac_match[] = {
269 { "ACPI0003", 0 },
270 { }
271};
272MODULE_DEVICE_TABLE(acpi, acpi_ac_match);
273
274static struct platform_driver acpi_ac_driver = {
275 .probe = acpi_ac_probe,
276 .remove = acpi_ac_remove,
277 .driver = {
278 .name = "acpi-ac",
279 .owner = THIS_MODULE,
280 .pm = &acpi_ac_pm_ops,
281 .acpi_match_table = ACPI_PTR(acpi_ac_match),
282 },
283};
284
Len Brown4be44fc2005-08-05 00:44:28 -0400285static int __init acpi_ac_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
Rich Townsend3f86b832006-07-01 11:36:54 -0400287 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Pavel Machek4d8316d2006-08-14 22:37:22 -0700289 if (acpi_disabled)
290 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Zhang Ruicc8ef522013-09-25 20:39:45 +0800292 result = platform_driver_register(&acpi_ac_driver);
Lan Tianyuab0fd672013-10-12 21:04:48 +0800293 if (result < 0)
Patrick Mocheld550d982006-06-27 00:41:40 -0400294 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Patrick Mocheld550d982006-06-27 00:41:40 -0400296 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297}
298
Len Brown4be44fc2005-08-05 00:44:28 -0400299static void __exit acpi_ac_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
Zhang Ruicc8ef522013-09-25 20:39:45 +0800301 platform_driver_unregister(&acpi_ac_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303module_init(acpi_ac_init);
304module_exit(acpi_ac_exit);