blob: 46a64e9fa7165bb5361ac0815987fefe78767842 [file] [log] [blame]
Thomas Gleixnerc942fdd2019-05-27 08:55:06 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * acpi_ac.c - ACPI AC Adapter Driver ($Revision: 27 $)
4 *
5 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
6 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
8
9#include <linux/kernel.h>
10#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090011#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/init.h>
13#include <linux/types.h>
Lan Tianyu0ab5bb62013-05-08 07:28:46 +000014#include <linux/dmi.h>
15#include <linux/delay.h>
Zhang Ruicc8ef522013-09-25 20:39:45 +080016#include <linux/platform_device.h>
Alexey Starikovskiyd5b4a3d2007-09-26 19:44:06 +040017#include <linux/power_supply.h>
Lv Zheng8b484632013-12-03 08:49:16 +080018#include <linux/acpi.h>
Ognjen Galicfa938542018-02-07 15:58:13 +010019#include <acpi/battery.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Len Browna192a952009-07-28 16:45:54 -040021#define PREFIX "ACPI: "
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#define ACPI_AC_CLASS "ac_adapter"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#define ACPI_AC_DEVICE_NAME "AC Adapter"
25#define ACPI_AC_FILE_STATE "state"
26#define ACPI_AC_NOTIFY_STATUS 0x80
27#define ACPI_AC_STATUS_OFFLINE 0x00
28#define ACPI_AC_STATUS_ONLINE 0x01
29#define ACPI_AC_STATUS_UNKNOWN 0xFF
30
31#define _COMPONENT ACPI_AC_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050032ACPI_MODULE_NAME("ac");
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Len Brownf52fd662007-02-12 22:42:12 -050034MODULE_AUTHOR("Paul Diefenbaugh");
Len Brown7cda93e2007-02-12 23:50:02 -050035MODULE_DESCRIPTION("ACPI AC Adapter Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070036MODULE_LICENSE("GPL");
37
Lan Tianyue63f6e22014-07-07 01:13:46 +020038
Guenter Roeck98012842014-05-06 19:18:28 -070039static int acpi_ac_add(struct acpi_device *device);
40static int acpi_ac_remove(struct acpi_device *device);
41static void acpi_ac_notify(struct acpi_device *device, u32 event);
42
Hans de Goedeaf3ec832017-04-19 14:02:11 +020043struct acpi_ac_bl {
44 const char *hid;
45 int hrv;
46};
47
Guenter Roeck98012842014-05-06 19:18:28 -070048static const struct acpi_device_id ac_device_ids[] = {
49 {"ACPI0003", 0},
50 {"", 0},
51};
52MODULE_DEVICE_TABLE(acpi, ac_device_ids);
53
Hans de Goedeaf3ec832017-04-19 14:02:11 +020054/* Lists of PMIC ACPI HIDs with an (often better) native charger driver */
55static const struct acpi_ac_bl acpi_ac_blacklist[] = {
56 { "INT33F4", -1 }, /* X-Powers AXP288 PMIC */
57 { "INT34D3", 3 }, /* Intel Cherrytrail Whiskey Cove PMIC */
58};
59
Guenter Roeck98012842014-05-06 19:18:28 -070060#ifdef CONFIG_PM_SLEEP
61static int acpi_ac_resume(struct device *dev);
62#endif
63static SIMPLE_DEV_PM_OPS(acpi_ac_pm, NULL, acpi_ac_resume);
64
Lan Tianyu0ab5bb62013-05-08 07:28:46 +000065static int ac_sleep_before_get_state_ms;
Carlo Caione91ea5b12018-04-18 14:04:40 +020066static int ac_check_pmic = 1;
Lan Tianyu0ab5bb62013-05-08 07:28:46 +000067
Guenter Roeck98012842014-05-06 19:18:28 -070068static struct acpi_driver acpi_ac_driver = {
69 .name = "ac",
70 .class = ACPI_AC_CLASS,
71 .ids = ac_device_ids,
72 .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS,
73 .ops = {
74 .add = acpi_ac_add,
75 .remove = acpi_ac_remove,
76 .notify = acpi_ac_notify,
77 },
78 .drv.pm = &acpi_ac_pm,
79};
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081struct acpi_ac {
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +010082 struct power_supply *charger;
83 struct power_supply_desc charger_desc;
Guenter Roeck98012842014-05-06 19:18:28 -070084 struct acpi_device * device;
Matthew Wilcox27663c52008-10-10 02:22:59 -040085 unsigned long long state;
Alexander Mezin4eee4f02014-03-12 00:58:48 +070086 struct notifier_block battery_nb;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087};
88
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +010089#define to_acpi_ac(x) power_supply_get_drvdata(x)
Alexey Starikovskiyd5b4a3d2007-09-26 19:44:06 +040090
Linus Torvalds1da177e2005-04-16 15:20:36 -070091/* --------------------------------------------------------------------------
92 AC Adapter Management
93 -------------------------------------------------------------------------- */
94
Len Brown4be44fc2005-08-05 00:44:28 -040095static int acpi_ac_get_state(struct acpi_ac *ac)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
Guenter Roeck98012842014-05-06 19:18:28 -070097 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Guenter Roeck98012842014-05-06 19:18:28 -070099 if (!ac)
100 return -EINVAL;
101
102 status = acpi_evaluate_integer(ac->device->handle, "_PSR", NULL,
Zhang Ruicc8ef522013-09-25 20:39:45 +0800103 &ac->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 if (ACPI_FAILURE(status)) {
Zhang Ruicc8ef522013-09-25 20:39:45 +0800105 ACPI_EXCEPTION((AE_INFO, status,
106 "Error reading AC Adapter state"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 ac->state = ACPI_AC_STATUS_UNKNOWN;
Patrick Mocheld550d982006-06-27 00:41:40 -0400108 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 }
Len Brown4be44fc2005-08-05 00:44:28 -0400110
Patrick Mocheld550d982006-06-27 00:41:40 -0400111 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112}
113
Zhang Rui3151dbb2010-12-08 10:40:45 +0800114/* --------------------------------------------------------------------------
115 sysfs I/F
116 -------------------------------------------------------------------------- */
117static int get_ac_property(struct power_supply *psy,
118 enum power_supply_property psp,
119 union power_supply_propval *val)
120{
121 struct acpi_ac *ac = to_acpi_ac(psy);
122
123 if (!ac)
124 return -ENODEV;
125
126 if (acpi_ac_get_state(ac))
127 return -ENODEV;
128
129 switch (psp) {
130 case POWER_SUPPLY_PROP_ONLINE:
131 val->intval = ac->state;
132 break;
133 default:
134 return -EINVAL;
135 }
136 return 0;
137}
138
139static enum power_supply_property ac_props[] = {
140 POWER_SUPPLY_PROP_ONLINE,
141};
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143/* --------------------------------------------------------------------------
144 Driver Model
145 -------------------------------------------------------------------------- */
146
Guenter Roeck98012842014-05-06 19:18:28 -0700147static void acpi_ac_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
Guenter Roeck98012842014-05-06 19:18:28 -0700149 struct acpi_ac *ac = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151 if (!ac)
Patrick Mocheld550d982006-06-27 00:41:40 -0400152 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 switch (event) {
Len Brownf163ff52008-06-14 01:26:37 -0400155 default:
156 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
157 "Unsupported event [0x%x]\n", event));
Gustavo A. R. Silva57d2dd42020-07-07 15:09:37 -0500158 fallthrough;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 case ACPI_AC_NOTIFY_STATUS:
Christian Lupien03d78252004-08-19 01:26:00 -0400160 case ACPI_NOTIFY_BUS_CHECK:
161 case ACPI_NOTIFY_DEVICE_CHECK:
Lan Tianyu0ab5bb62013-05-08 07:28:46 +0000162 /*
163 * A buggy BIOS may notify AC first and then sleep for
164 * a specific time before doing actual operations in the
165 * EC event handler (_Qxx). This will cause the AC state
166 * reported by the ACPI event to be incorrect, so wait for a
167 * specific time for the EC event handler to make progress.
168 */
169 if (ac_sleep_before_get_state_ms > 0)
170 msleep(ac_sleep_before_get_state_ms);
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 acpi_ac_get_state(ac);
Guenter Roeck98012842014-05-06 19:18:28 -0700173 acpi_bus_generate_netlink_event(device->pnp.device_class,
174 dev_name(&device->dev), event,
175 (u32) ac->state);
176 acpi_notifier_call_chain(device, event, (u32) ac->state);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100177 kobject_uevent(&ac->charger->dev.kobj, KOBJ_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 }
179
Patrick Mocheld550d982006-06-27 00:41:40 -0400180 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181}
182
Alexander Mezin4eee4f02014-03-12 00:58:48 +0700183static int acpi_ac_battery_notify(struct notifier_block *nb,
184 unsigned long action, void *data)
185{
186 struct acpi_ac *ac = container_of(nb, struct acpi_ac, battery_nb);
187 struct acpi_bus_event *event = (struct acpi_bus_event *)data;
188
189 /*
190 * On HP Pavilion dv6-6179er AC status notifications aren't triggered
191 * when adapter is plugged/unplugged. However, battery status
192 * notifcations are triggered when battery starts charging or
193 * discharging. Re-reading AC status triggers lost AC notifications,
194 * if AC status has changed.
195 */
196 if (strcmp(event->device_class, ACPI_BATTERY_CLASS) == 0 &&
197 event->type == ACPI_BATTERY_NOTIFY_STATUS)
198 acpi_ac_get_state(ac);
199
200 return NOTIFY_OK;
201}
202
Carlo Caione91ea5b12018-04-18 14:04:40 +0200203static int __init thinkpad_e530_quirk(const struct dmi_system_id *d)
Lan Tianyu0ab5bb62013-05-08 07:28:46 +0000204{
205 ac_sleep_before_get_state_ms = 1000;
206 return 0;
207}
208
Carlo Caione91ea5b12018-04-18 14:04:40 +0200209static int __init ac_do_not_check_pmic_quirk(const struct dmi_system_id *d)
210{
211 ac_check_pmic = 0;
212 return 0;
213}
214
Hans de Goede04900fa2020-02-23 15:29:40 +0100215/* Please keep this list alphabetically sorted */
Carlo Caione91ea5b12018-04-18 14:04:40 +0200216static const struct dmi_system_id ac_dmi_table[] __initconst = {
Lan Tianyu0ab5bb62013-05-08 07:28:46 +0000217 {
Hans de Goede04900fa2020-02-23 15:29:40 +0100218 /* ECS EF20EA, AXP288 PMIC but uses separate fuel-gauge */
Carlo Caione91ea5b12018-04-18 14:04:40 +0200219 .callback = ac_do_not_check_pmic_quirk,
220 .matches = {
221 DMI_MATCH(DMI_PRODUCT_NAME, "EF20EA"),
222 },
223 },
224 {
Hans de Goede04900fa2020-02-23 15:29:40 +0100225 /* Lenovo Ideapad Miix 320, AXP288 PMIC, separate fuel-gauge */
Carlo Caione91ea5b12018-04-18 14:04:40 +0200226 .callback = ac_do_not_check_pmic_quirk,
227 .matches = {
Hans de Goede04900fa2020-02-23 15:29:40 +0100228 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
229 DMI_MATCH(DMI_PRODUCT_NAME, "80XF"),
230 DMI_MATCH(DMI_PRODUCT_VERSION, "Lenovo MIIX 320-10ICR"),
231 },
232 },
233 {
234 /* Lenovo Thinkpad e530, see comment in acpi_ac_notify() */
235 .callback = thinkpad_e530_quirk,
236 .matches = {
237 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
238 DMI_MATCH(DMI_PRODUCT_NAME, "32597CG"),
Carlo Caione91ea5b12018-04-18 14:04:40 +0200239 },
240 },
Lan Tianyu0ab5bb62013-05-08 07:28:46 +0000241 {},
242};
243
Guenter Roeck98012842014-05-06 19:18:28 -0700244static int acpi_ac_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100246 struct power_supply_config psy_cfg = {};
Len Brown4be44fc2005-08-05 00:44:28 -0400247 int result = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400248 struct acpi_ac *ac = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Guenter Roeck98012842014-05-06 19:18:28 -0700250
251 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400252 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Burman Yan36bcbec2006-12-19 12:56:11 -0800254 ac = kzalloc(sizeof(struct acpi_ac), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 if (!ac)
Patrick Mocheld550d982006-06-27 00:41:40 -0400256 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Guenter Roeck98012842014-05-06 19:18:28 -0700258 ac->device = device;
259 strcpy(acpi_device_name(device), ACPI_AC_DEVICE_NAME);
260 strcpy(acpi_device_class(device), ACPI_AC_CLASS);
261 device->driver_data = ac;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263 result = acpi_ac_get_state(ac);
264 if (result)
265 goto end;
266
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100267 psy_cfg.drv_data = ac;
268
269 ac->charger_desc.name = acpi_device_bid(device);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100270 ac->charger_desc.type = POWER_SUPPLY_TYPE_MAINS;
271 ac->charger_desc.properties = ac_props;
272 ac->charger_desc.num_properties = ARRAY_SIZE(ac_props);
273 ac->charger_desc.get_property = get_ac_property;
274 ac->charger = power_supply_register(&ac->device->dev,
275 &ac->charger_desc, &psy_cfg);
276 if (IS_ERR(ac->charger)) {
277 result = PTR_ERR(ac->charger);
Lan Tianyuf197ac12012-07-20 13:29:16 +0800278 goto end;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100279 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Len Brown4be44fc2005-08-05 00:44:28 -0400281 printk(KERN_INFO PREFIX "%s [%s] (%s)\n",
Guenter Roeck98012842014-05-06 19:18:28 -0700282 acpi_device_name(device), acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400283 ac->state ? "on-line" : "off-line");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Alexander Mezin4eee4f02014-03-12 00:58:48 +0700285 ac->battery_nb.notifier_call = acpi_ac_battery_notify;
286 register_acpi_notifier(&ac->battery_nb);
Lan Tianyuab0fd672013-10-12 21:04:48 +0800287end:
Lan Tianyue63f6e22014-07-07 01:13:46 +0200288 if (result) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 kfree(ac);
Lan Tianyue63f6e22014-07-07 01:13:46 +0200290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Patrick Mocheld550d982006-06-27 00:41:40 -0400292 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293}
294
Rafael J. Wysocki90692402012-08-09 23:00:02 +0200295#ifdef CONFIG_PM_SLEEP
Rafael J. Wysockiccda7062012-06-27 23:26:35 +0200296static int acpi_ac_resume(struct device *dev)
Alexey Starikovskiy5bfeca32007-11-14 17:00:39 -0800297{
298 struct acpi_ac *ac;
299 unsigned old_state;
Rafael J. Wysockiccda7062012-06-27 23:26:35 +0200300
301 if (!dev)
Alexey Starikovskiy5bfeca32007-11-14 17:00:39 -0800302 return -EINVAL;
Rafael J. Wysockiccda7062012-06-27 23:26:35 +0200303
Guenter Roeck98012842014-05-06 19:18:28 -0700304 ac = acpi_driver_data(to_acpi_device(dev));
Rafael J. Wysockiccda7062012-06-27 23:26:35 +0200305 if (!ac)
306 return -EINVAL;
307
Alexey Starikovskiy5bfeca32007-11-14 17:00:39 -0800308 old_state = ac->state;
309 if (acpi_ac_get_state(ac))
310 return 0;
311 if (old_state != ac->state)
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100312 kobject_uevent(&ac->charger->dev.kobj, KOBJ_CHANGE);
Alexey Starikovskiy5bfeca32007-11-14 17:00:39 -0800313 return 0;
314}
Shuah Khan06521c22014-02-12 20:19:05 -0700315#else
316#define acpi_ac_resume NULL
Rafael J. Wysocki90692402012-08-09 23:00:02 +0200317#endif
Alexey Starikovskiy5bfeca32007-11-14 17:00:39 -0800318
Guenter Roeck98012842014-05-06 19:18:28 -0700319static int acpi_ac_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320{
Guenter Roeck98012842014-05-06 19:18:28 -0700321 struct acpi_ac *ac = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Guenter Roeck98012842014-05-06 19:18:28 -0700323
324 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400325 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Guenter Roeck98012842014-05-06 19:18:28 -0700327 ac = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100329 power_supply_unregister(ac->charger);
Alexander Mezin4eee4f02014-03-12 00:58:48 +0700330 unregister_acpi_notifier(&ac->battery_nb);
Zhang Ruicc8ef522013-09-25 20:39:45 +0800331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 kfree(ac);
333
Patrick Mocheld550d982006-06-27 00:41:40 -0400334 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
Len Brown4be44fc2005-08-05 00:44:28 -0400337static int __init acpi_ac_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
Hans de Goedeaf3ec832017-04-19 14:02:11 +0200339 unsigned int i;
Rich Townsend3f86b832006-07-01 11:36:54 -0400340 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Pavel Machek4d8316d2006-08-14 22:37:22 -0700342 if (acpi_disabled)
343 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Carlo Caione91ea5b12018-04-18 14:04:40 +0200345 dmi_check_system(ac_dmi_table);
346
347 if (ac_check_pmic) {
348 for (i = 0; i < ARRAY_SIZE(acpi_ac_blacklist); i++)
349 if (acpi_dev_present(acpi_ac_blacklist[i].hid, "1",
350 acpi_ac_blacklist[i].hrv)) {
351 pr_info(PREFIX "AC: found native %s PMIC, not loading\n",
352 acpi_ac_blacklist[i].hid);
353 return -ENODEV;
354 }
355 }
Hans de Goedeaf3ec832017-04-19 14:02:11 +0200356
Lan Tianyue63f6e22014-07-07 01:13:46 +0200357 result = acpi_bus_register_driver(&acpi_ac_driver);
358 if (result < 0) {
Lan Tianyue63f6e22014-07-07 01:13:46 +0200359 return -ENODEV;
360 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Patrick Mocheld550d982006-06-27 00:41:40 -0400362 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363}
364
Len Brown4be44fc2005-08-05 00:44:28 -0400365static void __exit acpi_ac_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
Guenter Roeck98012842014-05-06 19:18:28 -0700367 acpi_bus_unregister_driver(&acpi_ac_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369module_init(acpi_ac_init);
370module_exit(acpi_ac_exit);