blob: ea31ae01458b411c774a770e25a5f58d805d1710 [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/*
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04003 * battery.c - ACPI Battery Driver (Revision: 2.0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04005 * Copyright (C) 2007 Alexey Starikovskiy <astarikovskiy@suse.de>
6 * Copyright (C) 2004-2007 Vladimir Lebedev <vladimir.p.lebedev@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
8 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
Rafael J. Wysockibd8c5d12021-02-03 19:44:57 +010011#define pr_fmt(fmt) "ACPI: battery: " fmt
Ognjen Galicfa938542018-02-07 15:58:13 +010012
Dmitry Rozhkov53dd2002018-07-24 14:27:32 +030013#include <linux/async.h>
14#include <linux/delay.h>
15#include <linux/dmi.h>
16#include <linux/jiffies.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/kernel.h>
Ognjen Galicfa938542018-02-07 15:58:13 +010018#include <linux/list.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/module.h>
Ognjen Galicfa938542018-02-07 15:58:13 +010020#include <linux/mutex.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Kyle McMartin25be5822011-03-22 16:19:50 -040022#include <linux/suspend.h>
Dmitry Rozhkov53dd2002018-07-24 14:27:32 +030023#include <linux/types.h>
24
Kamil Iskra4000e6262012-11-16 22:28:58 +010025#include <asm/unaligned.h>
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040026
Lv Zheng8b484632013-12-03 08:49:16 +080027#include <linux/acpi.h>
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040028#include <linux/power_supply.h>
29
Ognjen Galicfa938542018-02-07 15:58:13 +010030#include <acpi/battery.h>
Alexander Mezinf03be352014-03-12 00:58:46 +070031
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#define ACPI_BATTERY_VALUE_UNKNOWN 0xFFFFFFFF
Hans de Goedecc99f0a2019-12-10 10:57:50 +010033#define ACPI_BATTERY_CAPACITY_VALID(capacity) \
34 ((capacity) != 0 && (capacity) != ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#define ACPI_BATTERY_DEVICE_NAME "Battery"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Lan Tianyuae6f6182011-06-30 11:32:40 +080038/* Battery power unit: 0 means mW, 1 means mA */
39#define ACPI_BATTERY_POWER_UNIT_MA 1
40
Zhang Rui1ac5aaa2014-05-28 15:23:36 +080041#define ACPI_BATTERY_STATE_DISCHARGING 0x1
42#define ACPI_BATTERY_STATE_CHARGING 0x2
43#define ACPI_BATTERY_STATE_CRITICAL 0x4
44
Len Brownf52fd662007-02-12 22:42:12 -050045MODULE_AUTHOR("Paul Diefenbaugh");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +040046MODULE_AUTHOR("Alexey Starikovskiy <astarikovskiy@suse.de>");
Len Brown7cda93e2007-02-12 23:50:02 -050047MODULE_DESCRIPTION("ACPI Battery Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070048MODULE_LICENSE("GPL");
49
Luis Henriqueseca21d912015-05-11 22:49:05 +010050static async_cookie_t async_cookie;
Hans de Goedebc39fbc2017-04-19 14:02:09 +020051static bool battery_driver_registered;
Lan Tianyua90b4032014-01-06 22:50:37 +080052static int battery_bix_broken_package;
Alexander Mezinf43691c2014-06-04 02:01:23 +070053static int battery_notification_delay_ms;
Hans de Goede1b799c52018-04-12 12:02:00 +020054static int battery_ac_is_broken;
Thomas Weißschuhe96c1192021-12-22 22:20:14 +010055static int battery_quirk_notcharging;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +040056static unsigned int cache_time = 1000;
57module_param(cache_time, uint, 0644);
58MODULE_PARM_DESC(cache_time, "cache time in milliseconds");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +030059
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040060static const struct acpi_device_id battery_device_ids[] = {
61 {"PNP0C0A", 0},
62 {"", 0},
63};
64
65MODULE_DEVICE_TABLE(acpi, battery_device_ids);
66
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +040067enum {
68 ACPI_BATTERY_ALARM_PRESENT,
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +040069 ACPI_BATTERY_XINFO_PRESENT,
Zhang Rui557d5862010-10-22 10:02:06 +080070 ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY,
Kamil Iskra4000e6262012-11-16 22:28:58 +010071 /* On Lenovo Thinkpad models from 2010 and 2011, the power unit
Xiaofei Tan65545ab2021-03-27 20:08:18 +080072 * switches between mWh and mAh depending on whether the system
73 * is running on battery or not. When mAh is the unit, most
74 * reported values are incorrect and need to be adjusted by
75 * 10000/design_voltage. Verified on x201, t410, t410s, and x220.
76 * Pre-2010 and 2012 models appear to always report in mWh and
77 * are thus unaffected (tested with t42, t61, t500, x200, x300,
78 * and x230). Also, in mid-2012 Lenovo issued a BIOS update for
79 * the 2011 models that fixes the issue (tested on x220 with a
80 * post-1.29 BIOS), but as of Nov. 2012, no such update is
81 * available for the 2010 models.
82 */
Kamil Iskra4000e6262012-11-16 22:28:58 +010083 ACPI_BATTERY_QUIRK_THINKPAD_MAH,
Laszlo Totha20136a2018-02-24 10:20:15 +010084 /* for batteries reporting current capacity with design capacity
85 * on a full charge, but showing degradation in full charge cap.
86 */
87 ACPI_BATTERY_QUIRK_DEGRADED_FULL_CHARGE,
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +040088};
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040089
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040090struct acpi_battery {
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040091 struct mutex lock;
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +030092 struct mutex sysfs_lock;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +010093 struct power_supply *bat;
94 struct power_supply_desc bat_desc;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +040095 struct acpi_device *device;
Kyle McMartin25be5822011-03-22 16:19:50 -040096 struct notifier_block pm_nb;
Ognjen Galicfa938542018-02-07 15:58:13 +010097 struct list_head list;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +040098 unsigned long update_time;
Lan Tianyu016d5ba2013-07-30 14:00:42 +020099 int revision;
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400100 int rate_now;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400101 int capacity_now;
102 int voltage_now;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400103 int design_capacity;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400104 int full_charge_capacity;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400105 int technology;
106 int design_voltage;
107 int design_capacity_warning;
108 int design_capacity_low;
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400109 int cycle_count;
110 int measurement_accuracy;
111 int max_sampling_time;
112 int min_sampling_time;
113 int max_averaging_interval;
114 int min_averaging_interval;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400115 int capacity_granularity_1;
116 int capacity_granularity_2;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400117 int alarm;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400118 char model_number[32];
119 char serial_number[32];
120 char type[32];
121 char oem_info[32];
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400122 int state;
123 int power_unit;
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400124 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125};
126
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100127#define to_acpi_battery(x) power_supply_get_drvdata(x)
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400128
Andy Shevchenkoefd941f2013-03-11 09:17:06 +0000129static inline int acpi_battery_present(struct acpi_battery *battery)
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400130{
131 return battery->device->status.battery_present;
132}
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400133
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400134static int acpi_battery_technology(struct acpi_battery *battery)
135{
136 if (!strcasecmp("NiCd", battery->type))
137 return POWER_SUPPLY_TECHNOLOGY_NiCd;
138 if (!strcasecmp("NiMH", battery->type))
139 return POWER_SUPPLY_TECHNOLOGY_NiMH;
140 if (!strcasecmp("LION", battery->type))
141 return POWER_SUPPLY_TECHNOLOGY_LION;
Andrey Borzenkovad40e682007-11-10 20:02:49 +0300142 if (!strncasecmp("LI-ION", battery->type, 6))
Alexey Starikovskiy0bde7ee2007-10-28 15:33:10 +0300143 return POWER_SUPPLY_TECHNOLOGY_LION;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400144 if (!strcasecmp("LiP", battery->type))
145 return POWER_SUPPLY_TECHNOLOGY_LIPO;
146 return POWER_SUPPLY_TECHNOLOGY_UNKNOWN;
147}
148
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300149static int acpi_battery_get_state(struct acpi_battery *battery);
Alexey Starikovskiyb19073a2007-10-25 17:10:47 -0400150
Richard Hughes56f382a2009-01-25 15:05:50 +0000151static int acpi_battery_is_charged(struct acpi_battery *battery)
152{
Zhang Rui1ac5aaa2014-05-28 15:23:36 +0800153 /* charging, discharging or critical low */
Richard Hughes56f382a2009-01-25 15:05:50 +0000154 if (battery->state != 0)
155 return 0;
156
157 /* battery not reporting charge */
158 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN ||
159 battery->capacity_now == 0)
160 return 0;
161
162 /* good batteries update full_charge as the batteries degrade */
163 if (battery->full_charge_capacity == battery->capacity_now)
164 return 1;
165
166 /* fallback to using design values for broken batteries */
André Almeida2835f322021-10-08 00:05:29 -0300167 if (battery->design_capacity <= battery->capacity_now)
Richard Hughes56f382a2009-01-25 15:05:50 +0000168 return 1;
169
170 /* we don't do any sort of metric based on percentages */
171 return 0;
172}
173
Laszlo Totha20136a2018-02-24 10:20:15 +0100174static bool acpi_battery_is_degraded(struct acpi_battery *battery)
175{
Hans de Goedecc99f0a2019-12-10 10:57:50 +0100176 return ACPI_BATTERY_CAPACITY_VALID(battery->full_charge_capacity) &&
177 ACPI_BATTERY_CAPACITY_VALID(battery->design_capacity) &&
Laszlo Totha20136a2018-02-24 10:20:15 +0100178 battery->full_charge_capacity < battery->design_capacity;
179}
180
Hans de Goede19fffc82018-04-12 12:01:59 +0200181static int acpi_battery_handle_discharging(struct acpi_battery *battery)
182{
183 /*
184 * Some devices wrongly report discharging if the battery's charge level
185 * was above the device's start charging threshold atm the AC adapter
186 * was plugged in and the device thus did not start a new charge cycle.
187 */
Hans de Goede1b799c52018-04-12 12:02:00 +0200188 if ((battery_ac_is_broken || power_supply_is_system_supplied()) &&
189 battery->rate_now == 0)
Hans de Goede19fffc82018-04-12 12:01:59 +0200190 return POWER_SUPPLY_STATUS_NOT_CHARGING;
191
192 return POWER_SUPPLY_STATUS_DISCHARGING;
193}
194
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400195static int acpi_battery_get_property(struct power_supply *psy,
196 enum power_supply_property psp,
197 union power_supply_propval *val)
198{
Hans de Goede5b74d1d2019-12-10 10:57:51 +0100199 int full_capacity = ACPI_BATTERY_VALUE_UNKNOWN, ret = 0;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400200 struct acpi_battery *battery = to_acpi_battery(psy);
201
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300202 if (acpi_battery_present(battery)) {
203 /* run battery update only if it is present */
204 acpi_battery_get_state(battery);
205 } else if (psp != POWER_SUPPLY_PROP_PRESENT)
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400206 return -ENODEV;
207 switch (psp) {
208 case POWER_SUPPLY_PROP_STATUS:
Daniel Drake82bf43b2018-03-14 16:42:17 +0800209 if (battery->state & ACPI_BATTERY_STATE_DISCHARGING)
Hans de Goede19fffc82018-04-12 12:01:59 +0200210 val->intval = acpi_battery_handle_discharging(battery);
Daniel Drake82bf43b2018-03-14 16:42:17 +0800211 else if (battery->state & ACPI_BATTERY_STATE_CHARGING)
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400212 val->intval = POWER_SUPPLY_STATUS_CHARGING;
Richard Hughes56f382a2009-01-25 15:05:50 +0000213 else if (acpi_battery_is_charged(battery))
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400214 val->intval = POWER_SUPPLY_STATUS_FULL;
Thomas Weißschuhe96c1192021-12-22 22:20:14 +0100215 else if (battery_quirk_notcharging)
216 val->intval = POWER_SUPPLY_STATUS_NOT_CHARGING;
Roland Dreier4c41d3a2007-11-07 15:09:09 -0800217 else
218 val->intval = POWER_SUPPLY_STATUS_UNKNOWN;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400219 break;
220 case POWER_SUPPLY_PROP_PRESENT:
221 val->intval = acpi_battery_present(battery);
222 break;
223 case POWER_SUPPLY_PROP_TECHNOLOGY:
224 val->intval = acpi_battery_technology(battery);
225 break;
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400226 case POWER_SUPPLY_PROP_CYCLE_COUNT:
227 val->intval = battery->cycle_count;
228 break;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400229 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200230 if (battery->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN)
231 ret = -ENODEV;
232 else
233 val->intval = battery->design_voltage * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400234 break;
235 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200236 if (battery->voltage_now == ACPI_BATTERY_VALUE_UNKNOWN)
237 ret = -ENODEV;
238 else
239 val->intval = battery->voltage_now * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400240 break;
241 case POWER_SUPPLY_PROP_CURRENT_NOW:
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400242 case POWER_SUPPLY_PROP_POWER_NOW:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200243 if (battery->rate_now == ACPI_BATTERY_VALUE_UNKNOWN)
244 ret = -ENODEV;
245 else
246 val->intval = battery->rate_now * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400247 break;
248 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
249 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
Hans de Goedecc99f0a2019-12-10 10:57:50 +0100250 if (!ACPI_BATTERY_CAPACITY_VALID(battery->design_capacity))
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200251 ret = -ENODEV;
252 else
253 val->intval = battery->design_capacity * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400254 break;
255 case POWER_SUPPLY_PROP_CHARGE_FULL:
256 case POWER_SUPPLY_PROP_ENERGY_FULL:
Hans de Goedecc99f0a2019-12-10 10:57:50 +0100257 if (!ACPI_BATTERY_CAPACITY_VALID(battery->full_charge_capacity))
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200258 ret = -ENODEV;
259 else
260 val->intval = battery->full_charge_capacity * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400261 break;
262 case POWER_SUPPLY_PROP_CHARGE_NOW:
263 case POWER_SUPPLY_PROP_ENERGY_NOW:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200264 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN)
265 ret = -ENODEV;
266 else
267 val->intval = battery->capacity_now * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400268 break;
srinivas pandruvadaa58e1152012-04-05 17:38:54 -0700269 case POWER_SUPPLY_PROP_CAPACITY:
Hans de Goede5b74d1d2019-12-10 10:57:51 +0100270 if (ACPI_BATTERY_CAPACITY_VALID(battery->full_charge_capacity))
271 full_capacity = battery->full_charge_capacity;
272 else if (ACPI_BATTERY_CAPACITY_VALID(battery->design_capacity))
273 full_capacity = battery->design_capacity;
274
Hans de Goedecc99f0a2019-12-10 10:57:50 +0100275 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN ||
Hans de Goede5b74d1d2019-12-10 10:57:51 +0100276 full_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Hans de Goedecc99f0a2019-12-10 10:57:50 +0100277 ret = -ENODEV;
278 else
srinivas pandruvadaa58e1152012-04-05 17:38:54 -0700279 val->intval = battery->capacity_now * 100/
Hans de Goede5b74d1d2019-12-10 10:57:51 +0100280 full_capacity;
srinivas pandruvadaa58e1152012-04-05 17:38:54 -0700281 break;
Zhang Rui1ac5aaa2014-05-28 15:23:36 +0800282 case POWER_SUPPLY_PROP_CAPACITY_LEVEL:
283 if (battery->state & ACPI_BATTERY_STATE_CRITICAL)
284 val->intval = POWER_SUPPLY_CAPACITY_LEVEL_CRITICAL;
285 else if (test_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags) &&
286 (battery->capacity_now <= battery->alarm))
287 val->intval = POWER_SUPPLY_CAPACITY_LEVEL_LOW;
288 else if (acpi_battery_is_charged(battery))
289 val->intval = POWER_SUPPLY_CAPACITY_LEVEL_FULL;
290 else
291 val->intval = POWER_SUPPLY_CAPACITY_LEVEL_NORMAL;
292 break;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400293 case POWER_SUPPLY_PROP_MODEL_NAME:
294 val->strval = battery->model_number;
295 break;
296 case POWER_SUPPLY_PROP_MANUFACTURER:
297 val->strval = battery->oem_info;
298 break;
maximilian attems7c2670b2008-01-22 18:46:50 +0100299 case POWER_SUPPLY_PROP_SERIAL_NUMBER:
300 val->strval = battery->serial_number;
301 break;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400302 default:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200303 ret = -EINVAL;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400304 }
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200305 return ret;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400306}
307
308static enum power_supply_property charge_battery_props[] = {
309 POWER_SUPPLY_PROP_STATUS,
310 POWER_SUPPLY_PROP_PRESENT,
311 POWER_SUPPLY_PROP_TECHNOLOGY,
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400312 POWER_SUPPLY_PROP_CYCLE_COUNT,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400313 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
314 POWER_SUPPLY_PROP_VOLTAGE_NOW,
315 POWER_SUPPLY_PROP_CURRENT_NOW,
316 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
317 POWER_SUPPLY_PROP_CHARGE_FULL,
318 POWER_SUPPLY_PROP_CHARGE_NOW,
srinivas pandruvadaa58e1152012-04-05 17:38:54 -0700319 POWER_SUPPLY_PROP_CAPACITY,
Zhang Rui1ac5aaa2014-05-28 15:23:36 +0800320 POWER_SUPPLY_PROP_CAPACITY_LEVEL,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400321 POWER_SUPPLY_PROP_MODEL_NAME,
322 POWER_SUPPLY_PROP_MANUFACTURER,
maximilian attems7c2670b2008-01-22 18:46:50 +0100323 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400324};
325
Hans de Goedeff3154d2019-12-10 10:57:52 +0100326static enum power_supply_property charge_battery_full_cap_broken_props[] = {
327 POWER_SUPPLY_PROP_STATUS,
328 POWER_SUPPLY_PROP_PRESENT,
329 POWER_SUPPLY_PROP_TECHNOLOGY,
330 POWER_SUPPLY_PROP_CYCLE_COUNT,
331 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
332 POWER_SUPPLY_PROP_VOLTAGE_NOW,
333 POWER_SUPPLY_PROP_CURRENT_NOW,
334 POWER_SUPPLY_PROP_CHARGE_NOW,
335 POWER_SUPPLY_PROP_MODEL_NAME,
336 POWER_SUPPLY_PROP_MANUFACTURER,
337 POWER_SUPPLY_PROP_SERIAL_NUMBER,
338};
339
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400340static enum power_supply_property energy_battery_props[] = {
341 POWER_SUPPLY_PROP_STATUS,
342 POWER_SUPPLY_PROP_PRESENT,
343 POWER_SUPPLY_PROP_TECHNOLOGY,
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400344 POWER_SUPPLY_PROP_CYCLE_COUNT,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400345 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
346 POWER_SUPPLY_PROP_VOLTAGE_NOW,
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400347 POWER_SUPPLY_PROP_POWER_NOW,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400348 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN,
349 POWER_SUPPLY_PROP_ENERGY_FULL,
350 POWER_SUPPLY_PROP_ENERGY_NOW,
srinivas pandruvadaa58e1152012-04-05 17:38:54 -0700351 POWER_SUPPLY_PROP_CAPACITY,
Zhang Rui1ac5aaa2014-05-28 15:23:36 +0800352 POWER_SUPPLY_PROP_CAPACITY_LEVEL,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400353 POWER_SUPPLY_PROP_MODEL_NAME,
354 POWER_SUPPLY_PROP_MANUFACTURER,
maximilian attems7c2670b2008-01-22 18:46:50 +0100355 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400356};
357
Hans de Goedeb41901a2018-08-07 09:36:30 +0200358static enum power_supply_property energy_battery_full_cap_broken_props[] = {
359 POWER_SUPPLY_PROP_STATUS,
360 POWER_SUPPLY_PROP_PRESENT,
361 POWER_SUPPLY_PROP_TECHNOLOGY,
362 POWER_SUPPLY_PROP_CYCLE_COUNT,
363 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
364 POWER_SUPPLY_PROP_VOLTAGE_NOW,
365 POWER_SUPPLY_PROP_POWER_NOW,
366 POWER_SUPPLY_PROP_ENERGY_NOW,
367 POWER_SUPPLY_PROP_MODEL_NAME,
368 POWER_SUPPLY_PROP_MANUFACTURER,
369 POWER_SUPPLY_PROP_SERIAL_NUMBER,
370};
371
Xiaofei Tan65545ab2021-03-27 20:08:18 +0800372/* Battery Management */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400373struct acpi_offsets {
374 size_t offset; /* offset inside struct acpi_sbs_battery */
375 u8 mode; /* int or string? */
376};
377
Mathias Krausea4658782015-06-13 14:26:53 +0200378static const struct acpi_offsets state_offsets[] = {
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400379 {offsetof(struct acpi_battery, state), 0},
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400380 {offsetof(struct acpi_battery, rate_now), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400381 {offsetof(struct acpi_battery, capacity_now), 0},
382 {offsetof(struct acpi_battery, voltage_now), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400383};
384
Mathias Krausea4658782015-06-13 14:26:53 +0200385static const struct acpi_offsets info_offsets[] = {
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400386 {offsetof(struct acpi_battery, power_unit), 0},
387 {offsetof(struct acpi_battery, design_capacity), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400388 {offsetof(struct acpi_battery, full_charge_capacity), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400389 {offsetof(struct acpi_battery, technology), 0},
390 {offsetof(struct acpi_battery, design_voltage), 0},
391 {offsetof(struct acpi_battery, design_capacity_warning), 0},
392 {offsetof(struct acpi_battery, design_capacity_low), 0},
393 {offsetof(struct acpi_battery, capacity_granularity_1), 0},
394 {offsetof(struct acpi_battery, capacity_granularity_2), 0},
395 {offsetof(struct acpi_battery, model_number), 1},
396 {offsetof(struct acpi_battery, serial_number), 1},
397 {offsetof(struct acpi_battery, type), 1},
398 {offsetof(struct acpi_battery, oem_info), 1},
399};
400
Mathias Krausea4658782015-06-13 14:26:53 +0200401static const struct acpi_offsets extended_info_offsets[] = {
Lan Tianyu016d5ba2013-07-30 14:00:42 +0200402 {offsetof(struct acpi_battery, revision), 0},
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400403 {offsetof(struct acpi_battery, power_unit), 0},
404 {offsetof(struct acpi_battery, design_capacity), 0},
405 {offsetof(struct acpi_battery, full_charge_capacity), 0},
406 {offsetof(struct acpi_battery, technology), 0},
407 {offsetof(struct acpi_battery, design_voltage), 0},
408 {offsetof(struct acpi_battery, design_capacity_warning), 0},
409 {offsetof(struct acpi_battery, design_capacity_low), 0},
410 {offsetof(struct acpi_battery, cycle_count), 0},
411 {offsetof(struct acpi_battery, measurement_accuracy), 0},
412 {offsetof(struct acpi_battery, max_sampling_time), 0},
413 {offsetof(struct acpi_battery, min_sampling_time), 0},
414 {offsetof(struct acpi_battery, max_averaging_interval), 0},
415 {offsetof(struct acpi_battery, min_averaging_interval), 0},
416 {offsetof(struct acpi_battery, capacity_granularity_1), 0},
417 {offsetof(struct acpi_battery, capacity_granularity_2), 0},
418 {offsetof(struct acpi_battery, model_number), 1},
419 {offsetof(struct acpi_battery, serial_number), 1},
420 {offsetof(struct acpi_battery, type), 1},
421 {offsetof(struct acpi_battery, oem_info), 1},
422};
423
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400424static int extract_package(struct acpi_battery *battery,
425 union acpi_object *package,
Mathias Krausea4658782015-06-13 14:26:53 +0200426 const struct acpi_offsets *offsets, int num)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300427{
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300428 int i;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400429 union acpi_object *element;
Xiaofei Tan65545ab2021-03-27 20:08:18 +0800430
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400431 if (package->type != ACPI_TYPE_PACKAGE)
432 return -EFAULT;
433 for (i = 0; i < num; ++i) {
434 if (package->package.count <= i)
435 return -EFAULT;
436 element = &package->package.elements[i];
437 if (offsets[i].mode) {
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300438 u8 *ptr = (u8 *)battery + offsets[i].offset;
Xiaofei Tan65545ab2021-03-27 20:08:18 +0800439
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300440 if (element->type == ACPI_TYPE_STRING ||
441 element->type == ACPI_TYPE_BUFFER)
442 strncpy(ptr, element->string.pointer, 32);
443 else if (element->type == ACPI_TYPE_INTEGER) {
444 strncpy(ptr, (u8 *)&element->integer.value,
Lin Ming439913f2010-01-28 10:53:19 +0800445 sizeof(u64));
446 ptr[sizeof(u64)] = 0;
Alexey Starikovskiyb8a1bdb2008-03-17 22:37:42 -0400447 } else
448 *ptr = 0; /* don't have value */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400449 } else {
Alexey Starikovskiyb8a1bdb2008-03-17 22:37:42 -0400450 int *x = (int *)((u8 *)battery + offsets[i].offset);
451 *x = (element->type == ACPI_TYPE_INTEGER) ?
452 element->integer.value : -1;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300453 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300454 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300455 return 0;
456}
457
458static int acpi_battery_get_status(struct acpi_battery *battery)
459{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400460 if (acpi_bus_get_status(battery->device)) {
Rafael J. Wysockibd8c5d12021-02-03 19:44:57 +0100461 acpi_handle_info(battery->device->handle,
462 "_STA evaluation failed\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300463 return -ENODEV;
464 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400465 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300466}
467
Dave Lambley2d09af42016-11-04 01:05:40 +0000468
469static int extract_battery_info(const int use_bix,
470 struct acpi_battery *battery,
471 const struct acpi_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400473 int result = -EFAULT;
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400474
Dave Lambley2d09af42016-11-04 01:05:40 +0000475 if (use_bix && battery_bix_broken_package)
476 result = extract_package(battery, buffer->pointer,
Lan Tianyua90b4032014-01-06 22:50:37 +0800477 extended_info_offsets + 1,
478 ARRAY_SIZE(extended_info_offsets) - 1);
Dave Lambley2d09af42016-11-04 01:05:40 +0000479 else if (use_bix)
480 result = extract_package(battery, buffer->pointer,
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400481 extended_info_offsets,
482 ARRAY_SIZE(extended_info_offsets));
483 else
Dave Lambley2d09af42016-11-04 01:05:40 +0000484 result = extract_package(battery, buffer->pointer,
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400485 info_offsets, ARRAY_SIZE(info_offsets));
Zhang Rui557d5862010-10-22 10:02:06 +0800486 if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags))
487 battery->full_charge_capacity = battery->design_capacity;
Kamil Iskra4000e6262012-11-16 22:28:58 +0100488 if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH, &battery->flags) &&
489 battery->power_unit && battery->design_voltage) {
490 battery->design_capacity = battery->design_capacity *
491 10000 / battery->design_voltage;
492 battery->full_charge_capacity = battery->full_charge_capacity *
493 10000 / battery->design_voltage;
494 battery->design_capacity_warning =
495 battery->design_capacity_warning *
496 10000 / battery->design_voltage;
497 /* Curiously, design_capacity_low, unlike the rest of them,
Xiaofei Tan65545ab2021-03-27 20:08:18 +0800498 * is correct.
499 */
Kamil Iskra4000e6262012-11-16 22:28:58 +0100500 /* capacity_granularity_* equal 1 on the systems tested, so
Xiaofei Tan65545ab2021-03-27 20:08:18 +0800501 * it's impossible to tell if they would need an adjustment
502 * or not if their values were higher.
503 */
Kamil Iskra4000e6262012-11-16 22:28:58 +0100504 }
Laszlo Totha20136a2018-02-24 10:20:15 +0100505 if (test_bit(ACPI_BATTERY_QUIRK_DEGRADED_FULL_CHARGE, &battery->flags) &&
506 battery->capacity_now > battery->full_charge_capacity)
507 battery->capacity_now = battery->full_charge_capacity;
508
Patrick Mocheld550d982006-06-27 00:41:40 -0400509 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510}
511
Dave Lambley2d09af42016-11-04 01:05:40 +0000512static int acpi_battery_get_info(struct acpi_battery *battery)
513{
514 const int xinfo = test_bit(ACPI_BATTERY_XINFO_PRESENT, &battery->flags);
515 int use_bix;
516 int result = -ENODEV;
517
518 if (!acpi_battery_present(battery))
519 return 0;
520
521
522 for (use_bix = xinfo ? 1 : 0; use_bix >= 0; use_bix--) {
523 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
524 acpi_status status = AE_ERROR;
525
526 mutex_lock(&battery->lock);
527 status = acpi_evaluate_object(battery->device->handle,
528 use_bix ? "_BIX":"_BIF",
529 NULL, &buffer);
530 mutex_unlock(&battery->lock);
531
532 if (ACPI_FAILURE(status)) {
Rafael J. Wysockibd8c5d12021-02-03 19:44:57 +0100533 acpi_handle_info(battery->device->handle,
534 "%s evaluation failed: %s\n",
Xiaofei Tan65545ab2021-03-27 20:08:18 +0800535 use_bix ? "_BIX":"_BIF",
536 acpi_format_exception(status));
Dave Lambley2d09af42016-11-04 01:05:40 +0000537 } else {
538 result = extract_battery_info(use_bix,
539 battery,
540 &buffer);
541
542 kfree(buffer.pointer);
543 break;
544 }
545 }
546
547 if (!result && !use_bix && xinfo)
548 pr_warn(FW_BUG "The _BIX method is broken, using _BIF.\n");
549
550 return result;
551}
552
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300553static int acpi_battery_get_state(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554{
Len Brown4be44fc2005-08-05 00:44:28 -0400555 int result = 0;
556 acpi_status status = 0;
557 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300559 if (!acpi_battery_present(battery))
560 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400562 if (battery->update_time &&
563 time_before(jiffies, battery->update_time +
564 msecs_to_jiffies(cache_time)))
565 return 0;
566
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400567 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400568 status = acpi_evaluate_object(battery->device->handle, "_BST",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400569 NULL, &buffer);
570 mutex_unlock(&battery->lock);
Len Brown5b31d892007-08-15 00:19:26 -0400571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 if (ACPI_FAILURE(status)) {
Rafael J. Wysockibd8c5d12021-02-03 19:44:57 +0100573 acpi_handle_info(battery->device->handle,
574 "_BST evaluation failed: %s",
575 acpi_format_exception(status));
Patrick Mocheld550d982006-06-27 00:41:40 -0400576 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400578
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400579 result = extract_package(battery, buffer.pointer,
580 state_offsets, ARRAY_SIZE(state_offsets));
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400581 battery->update_time = jiffies;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400582 kfree(buffer.pointer);
Hector Martinbc76f902009-08-06 15:57:48 -0700583
Lan Tianyu55003b22011-06-30 11:33:12 +0800584 /* For buggy DSDTs that report negative 16-bit values for either
585 * charging or discharging current and/or report 0 as 65536
586 * due to bad math.
587 */
588 if (battery->power_unit == ACPI_BATTERY_POWER_UNIT_MA &&
589 battery->rate_now != ACPI_BATTERY_VALUE_UNKNOWN &&
590 (s16)(battery->rate_now) < 0) {
Hector Martinbc76f902009-08-06 15:57:48 -0700591 battery->rate_now = abs((s16)battery->rate_now);
Rafael J. Wysockibd8c5d12021-02-03 19:44:57 +0100592 pr_warn_once(FW_BUG "(dis)charge rate invalid.\n");
Lan Tianyu55003b22011-06-30 11:33:12 +0800593 }
Hector Martinbc76f902009-08-06 15:57:48 -0700594
Zhang Rui557d5862010-10-22 10:02:06 +0800595 if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags)
596 && battery->capacity_now >= 0 && battery->capacity_now <= 100)
597 battery->capacity_now = (battery->capacity_now *
598 battery->full_charge_capacity) / 100;
Kamil Iskra4000e6262012-11-16 22:28:58 +0100599 if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH, &battery->flags) &&
600 battery->power_unit && battery->design_voltage) {
601 battery->capacity_now = battery->capacity_now *
602 10000 / battery->design_voltage;
603 }
Laszlo Totha20136a2018-02-24 10:20:15 +0100604 if (test_bit(ACPI_BATTERY_QUIRK_DEGRADED_FULL_CHARGE, &battery->flags) &&
605 battery->capacity_now > battery->full_charge_capacity)
606 battery->capacity_now = battery->full_charge_capacity;
607
Patrick Mocheld550d982006-06-27 00:41:40 -0400608 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609}
610
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400611static int acpi_battery_set_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
Len Brown4be44fc2005-08-05 00:44:28 -0400613 acpi_status status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400615 if (!acpi_battery_present(battery) ||
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400616 !test_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags))
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300617 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400619 mutex_lock(&battery->lock);
Jiang Liu0db98202013-06-29 00:24:39 +0800620 status = acpi_execute_simple_method(battery->device->handle, "_BTP",
621 battery->alarm);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400622 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400625 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Rafael J. Wysockibd8c5d12021-02-03 19:44:57 +0100627 acpi_handle_debug(battery->device->handle, "Alarm set to %d\n",
628 battery->alarm);
629
Patrick Mocheld550d982006-06-27 00:41:40 -0400630 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631}
632
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300633static int acpi_battery_init_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634{
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300635 /* See if alarms are supported, and if so, set default */
Jiang Liu952c63e2013-06-29 00:24:38 +0800636 if (!acpi_has_method(battery->device->handle, "_BTP")) {
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400637 clear_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400638 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 }
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400640 set_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400641 if (!battery->alarm)
642 battery->alarm = battery->design_capacity_warning;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400643 return acpi_battery_set_alarm(battery);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644}
645
Andrey Borzenkov508df922007-10-28 12:50:09 +0300646static ssize_t acpi_battery_alarm_show(struct device *dev,
647 struct device_attribute *attr,
648 char *buf)
649{
650 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
Xiaofei Tan65545ab2021-03-27 20:08:18 +0800651
Andrey Borzenkov508df922007-10-28 12:50:09 +0300652 return sprintf(buf, "%d\n", battery->alarm * 1000);
653}
654
655static ssize_t acpi_battery_alarm_store(struct device *dev,
656 struct device_attribute *attr,
657 const char *buf, size_t count)
658{
659 unsigned long x;
660 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
Xiaofei Tan65545ab2021-03-27 20:08:18 +0800661
Luis G.F47a08c82014-01-21 15:40:43 +0100662 if (sscanf(buf, "%lu\n", &x) == 1)
Andrey Borzenkov508df922007-10-28 12:50:09 +0300663 battery->alarm = x/1000;
664 if (acpi_battery_present(battery))
665 acpi_battery_set_alarm(battery);
666 return count;
667}
668
Bhumika Goyal82d2b612017-08-21 17:13:07 +0530669static const struct device_attribute alarm_attr = {
Parag Warudkar01e8ef12008-10-18 20:28:50 -0700670 .attr = {.name = "alarm", .mode = 0644},
Andrey Borzenkov508df922007-10-28 12:50:09 +0300671 .show = acpi_battery_alarm_show,
672 .store = acpi_battery_alarm_store,
673};
674
Ognjen Galicfa938542018-02-07 15:58:13 +0100675/*
676 * The Battery Hooking API
677 *
678 * This API is used inside other drivers that need to expose
679 * platform-specific behaviour within the generic driver in a
680 * generic way.
681 *
682 */
683
684static LIST_HEAD(acpi_battery_list);
685static LIST_HEAD(battery_hook_list);
686static DEFINE_MUTEX(hook_mutex);
687
Colin Ian King514bcc52018-02-23 16:32:55 +0000688static void __battery_hook_unregister(struct acpi_battery_hook *hook, int lock)
Ognjen Galicfa938542018-02-07 15:58:13 +0100689{
690 struct acpi_battery *battery;
691 /*
692 * In order to remove a hook, we first need to
693 * de-register all the batteries that are registered.
694 */
695 if (lock)
696 mutex_lock(&hook_mutex);
697 list_for_each_entry(battery, &acpi_battery_list, list) {
698 hook->remove_battery(battery->bat);
699 }
700 list_del(&hook->list);
701 if (lock)
702 mutex_unlock(&hook_mutex);
703 pr_info("extension unregistered: %s\n", hook->name);
704}
705
706void battery_hook_unregister(struct acpi_battery_hook *hook)
707{
708 __battery_hook_unregister(hook, 1);
709}
710EXPORT_SYMBOL_GPL(battery_hook_unregister);
711
712void battery_hook_register(struct acpi_battery_hook *hook)
713{
714 struct acpi_battery *battery;
715
716 mutex_lock(&hook_mutex);
717 INIT_LIST_HEAD(&hook->list);
718 list_add(&hook->list, &battery_hook_list);
719 /*
720 * Now that the driver is registered, we need
721 * to notify the hook that a battery is available
722 * for each battery, so that the driver may add
723 * its attributes.
724 */
725 list_for_each_entry(battery, &acpi_battery_list, list) {
726 if (hook->add_battery(battery->bat)) {
727 /*
728 * If a add-battery returns non-zero,
729 * the registration of the extension has failed,
730 * and we will not add it to the list of loaded
731 * hooks.
732 */
733 pr_err("extension failed to load: %s", hook->name);
734 __battery_hook_unregister(hook, 0);
Jouke Witteveen673b4272018-07-04 12:27:15 +0200735 goto end;
Ognjen Galicfa938542018-02-07 15:58:13 +0100736 }
737 }
738 pr_info("new extension: %s\n", hook->name);
Jouke Witteveen673b4272018-07-04 12:27:15 +0200739end:
Ognjen Galicfa938542018-02-07 15:58:13 +0100740 mutex_unlock(&hook_mutex);
741}
742EXPORT_SYMBOL_GPL(battery_hook_register);
743
744/*
745 * This function gets called right after the battery sysfs
746 * attributes have been added, so that the drivers that
747 * define custom sysfs attributes can add their own.
Xiaofei Tan65545ab2021-03-27 20:08:18 +0800748 */
Ognjen Galicfa938542018-02-07 15:58:13 +0100749static void battery_hook_add_battery(struct acpi_battery *battery)
750{
Jouke Witteveen673b4272018-07-04 12:27:15 +0200751 struct acpi_battery_hook *hook_node, *tmp;
Ognjen Galicfa938542018-02-07 15:58:13 +0100752
753 mutex_lock(&hook_mutex);
754 INIT_LIST_HEAD(&battery->list);
755 list_add(&battery->list, &acpi_battery_list);
756 /*
757 * Since we added a new battery to the list, we need to
758 * iterate over the hooks and call add_battery for each
759 * hook that was registered. This usually happens
760 * when a battery gets hotplugged or initialized
761 * during the battery module initialization.
762 */
Jouke Witteveen673b4272018-07-04 12:27:15 +0200763 list_for_each_entry_safe(hook_node, tmp, &battery_hook_list, list) {
Ognjen Galicfa938542018-02-07 15:58:13 +0100764 if (hook_node->add_battery(battery->bat)) {
765 /*
766 * The notification of the extensions has failed, to
767 * prevent further errors we will unload the extension.
768 */
Ognjen Galicfa938542018-02-07 15:58:13 +0100769 pr_err("error in extension, unloading: %s",
770 hook_node->name);
Jouke Witteveen673b4272018-07-04 12:27:15 +0200771 __battery_hook_unregister(hook_node, 0);
Ognjen Galicfa938542018-02-07 15:58:13 +0100772 }
773 }
774 mutex_unlock(&hook_mutex);
775}
776
777static void battery_hook_remove_battery(struct acpi_battery *battery)
778{
779 struct acpi_battery_hook *hook;
780
781 mutex_lock(&hook_mutex);
782 /*
783 * Before removing the hook, we need to remove all
784 * custom attributes from the battery.
785 */
786 list_for_each_entry(hook, &battery_hook_list, list) {
787 hook->remove_battery(battery->bat);
788 }
789 /* Then, just remove the battery from the list */
790 list_del(&battery->list);
791 mutex_unlock(&hook_mutex);
792}
793
794static void __exit battery_hook_exit(void)
795{
796 struct acpi_battery_hook *hook;
797 struct acpi_battery_hook *ptr;
798 /*
799 * At this point, the acpi_bus_unregister_driver()
800 * has called remove for all batteries. We just
801 * need to remove the hooks.
802 */
803 list_for_each_entry_safe(hook, ptr, &battery_hook_list, list) {
804 __battery_hook_unregister(hook, 1);
805 }
806 mutex_destroy(&hook_mutex);
807}
808
Andrey Borzenkov508df922007-10-28 12:50:09 +0300809static int sysfs_add_battery(struct acpi_battery *battery)
810{
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100811 struct power_supply_config psy_cfg = { .drv_data = battery, };
Hans de Goedeff3154d2019-12-10 10:57:52 +0100812 bool full_cap_broken = false;
813
814 if (!ACPI_BATTERY_CAPACITY_VALID(battery->full_charge_capacity) &&
815 !ACPI_BATTERY_CAPACITY_VALID(battery->design_capacity))
816 full_cap_broken = true;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300817
Lan Tianyuae6f6182011-06-30 11:32:40 +0800818 if (battery->power_unit == ACPI_BATTERY_POWER_UNIT_MA) {
Hans de Goedeff3154d2019-12-10 10:57:52 +0100819 if (full_cap_broken) {
820 battery->bat_desc.properties =
821 charge_battery_full_cap_broken_props;
822 battery->bat_desc.num_properties =
823 ARRAY_SIZE(charge_battery_full_cap_broken_props);
824 } else {
825 battery->bat_desc.properties = charge_battery_props;
826 battery->bat_desc.num_properties =
827 ARRAY_SIZE(charge_battery_props);
828 }
Andrey Borzenkov508df922007-10-28 12:50:09 +0300829 } else {
Hans de Goedeff3154d2019-12-10 10:57:52 +0100830 if (full_cap_broken) {
831 battery->bat_desc.properties =
832 energy_battery_full_cap_broken_props;
833 battery->bat_desc.num_properties =
834 ARRAY_SIZE(energy_battery_full_cap_broken_props);
835 } else {
836 battery->bat_desc.properties = energy_battery_props;
837 battery->bat_desc.num_properties =
838 ARRAY_SIZE(energy_battery_props);
839 }
Andrey Borzenkov508df922007-10-28 12:50:09 +0300840 }
841
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100842 battery->bat_desc.name = acpi_device_bid(battery->device);
843 battery->bat_desc.type = POWER_SUPPLY_TYPE_BATTERY;
844 battery->bat_desc.get_property = acpi_battery_get_property;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300845
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100846 battery->bat = power_supply_register_no_ws(&battery->device->dev,
847 &battery->bat_desc, &psy_cfg);
Zhang Ruie0d1f092014-05-28 15:23:38 +0800848
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100849 if (IS_ERR(battery->bat)) {
850 int result = PTR_ERR(battery->bat);
851
852 battery->bat = NULL;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300853 return result;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100854 }
Ognjen Galicfa938542018-02-07 15:58:13 +0100855 battery_hook_add_battery(battery);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100856 return device_create_file(&battery->bat->dev, &alarm_attr);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300857}
858
859static void sysfs_remove_battery(struct acpi_battery *battery)
860{
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300861 mutex_lock(&battery->sysfs_lock);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100862 if (!battery->bat) {
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300863 mutex_unlock(&battery->sysfs_lock);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300864 return;
Lan Tianyu9c921c222011-06-30 11:34:12 +0800865 }
Ognjen Galicfa938542018-02-07 15:58:13 +0100866 battery_hook_remove_battery(battery);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100867 device_remove_file(&battery->bat->dev, &alarm_attr);
868 power_supply_unregister(battery->bat);
869 battery->bat = NULL;
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300870 mutex_unlock(&battery->sysfs_lock);
Hector Martinbc76f902009-08-06 15:57:48 -0700871}
872
Kamil Iskra4000e6262012-11-16 22:28:58 +0100873static void find_battery(const struct dmi_header *dm, void *private)
874{
875 struct acpi_battery *battery = (struct acpi_battery *)private;
876 /* Note: the hardcoded offsets below have been extracted from
Xiaofei Tan65545ab2021-03-27 20:08:18 +0800877 * the source code of dmidecode.
878 */
Kamil Iskra4000e6262012-11-16 22:28:58 +0100879 if (dm->type == DMI_ENTRY_PORTABLE_BATTERY && dm->length >= 8) {
880 const u8 *dmi_data = (const u8 *)(dm + 1);
881 int dmi_capacity = get_unaligned((const u16 *)(dmi_data + 6));
Xiaofei Tan65545ab2021-03-27 20:08:18 +0800882
Kamil Iskra4000e6262012-11-16 22:28:58 +0100883 if (dm->length >= 18)
884 dmi_capacity *= dmi_data[17];
885 if (battery->design_capacity * battery->design_voltage / 1000
886 != dmi_capacity &&
887 battery->design_capacity * 10 == dmi_capacity)
888 set_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH,
889 &battery->flags);
890 }
891}
892
Zhang Rui557d5862010-10-22 10:02:06 +0800893/*
894 * According to the ACPI spec, some kinds of primary batteries can
895 * report percentage battery remaining capacity directly to OS.
896 * In this case, it reports the Last Full Charged Capacity == 100
897 * and BatteryPresentRate == 0xFFFFFFFF.
898 *
899 * Now we found some battery reports percentage remaining capacity
900 * even if it's rechargeable.
901 * https://bugzilla.kernel.org/show_bug.cgi?id=15979
902 *
903 * Handle this correctly so that they won't break userspace.
904 */
Lan Tianyu7b786222011-06-30 11:33:27 +0800905static void acpi_battery_quirks(struct acpi_battery *battery)
Zhang Rui557d5862010-10-22 10:02:06 +0800906{
907 if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags))
Nicholas Mazzuca0f4c6542013-05-08 23:11:15 +0000908 return;
Zhang Rui557d5862010-10-22 10:02:06 +0800909
Nicholas Mazzuca0f4c6542013-05-08 23:11:15 +0000910 if (battery->full_charge_capacity == 100 &&
911 battery->rate_now == ACPI_BATTERY_VALUE_UNKNOWN &&
912 battery->capacity_now >= 0 && battery->capacity_now <= 100) {
Zhang Rui557d5862010-10-22 10:02:06 +0800913 set_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags);
914 battery->full_charge_capacity = battery->design_capacity;
915 battery->capacity_now = (battery->capacity_now *
916 battery->full_charge_capacity) / 100;
917 }
Kamil Iskra4000e6262012-11-16 22:28:58 +0100918
919 if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH, &battery->flags))
Nicholas Mazzuca0f4c6542013-05-08 23:11:15 +0000920 return;
Kamil Iskra4000e6262012-11-16 22:28:58 +0100921
922 if (battery->power_unit && dmi_name_in_vendors("LENOVO")) {
923 const char *s;
Xiaofei Tan65545ab2021-03-27 20:08:18 +0800924
Kamil Iskra4000e6262012-11-16 22:28:58 +0100925 s = dmi_get_system_info(DMI_PRODUCT_VERSION);
Rasmus Villemoesffd8a732014-09-16 22:51:24 +0200926 if (s && !strncasecmp(s, "ThinkPad", 8)) {
Kamil Iskra4000e6262012-11-16 22:28:58 +0100927 dmi_walk(find_battery, battery);
928 if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH,
929 &battery->flags) &&
930 battery->design_voltage) {
931 battery->design_capacity =
932 battery->design_capacity *
933 10000 / battery->design_voltage;
934 battery->full_charge_capacity =
935 battery->full_charge_capacity *
936 10000 / battery->design_voltage;
937 battery->design_capacity_warning =
938 battery->design_capacity_warning *
939 10000 / battery->design_voltage;
940 battery->capacity_now = battery->capacity_now *
941 10000 / battery->design_voltage;
942 }
943 }
944 }
Laszlo Totha20136a2018-02-24 10:20:15 +0100945
946 if (test_bit(ACPI_BATTERY_QUIRK_DEGRADED_FULL_CHARGE, &battery->flags))
947 return;
948
949 if (acpi_battery_is_degraded(battery) &&
950 battery->capacity_now > battery->full_charge_capacity) {
951 set_bit(ACPI_BATTERY_QUIRK_DEGRADED_FULL_CHARGE, &battery->flags);
952 battery->capacity_now = battery->full_charge_capacity;
953 }
Zhang Rui557d5862010-10-22 10:02:06 +0800954}
955
Lan Tianyu9e50bc12014-05-04 14:07:06 +0800956static int acpi_battery_update(struct acpi_battery *battery, bool resume)
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500957{
Lucas Rangit Magasweran82f2d302018-07-14 15:40:18 -0700958 int result = acpi_battery_get_status(battery);
959
Andrey Borzenkov508df922007-10-28 12:50:09 +0300960 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300961 return result;
Lucas Rangit Magasweran82f2d302018-07-14 15:40:18 -0700962
Andrey Borzenkov508df922007-10-28 12:50:09 +0300963 if (!acpi_battery_present(battery)) {
964 sysfs_remove_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500965 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300966 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300967 }
Lan Tianyu9e50bc12014-05-04 14:07:06 +0800968
969 if (resume)
970 return 0;
971
Lucas Rangit Magasweran82f2d302018-07-14 15:40:18 -0700972 if (!battery->update_time) {
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500973 result = acpi_battery_get_info(battery);
974 if (result)
975 return result;
976 acpi_battery_init_alarm(battery);
977 }
Carlos Garnacho12c78ca2016-08-10 17:24:15 +0200978
979 result = acpi_battery_get_state(battery);
980 if (result)
981 return result;
982 acpi_battery_quirks(battery);
983
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100984 if (!battery->bat) {
Stefan Hajnoczieb03cb02011-07-12 09:03:29 +0100985 result = sysfs_add_battery(battery);
986 if (result)
987 return result;
988 }
Zhang Ruie0d1f092014-05-28 15:23:38 +0800989
990 /*
991 * Wakeup the system if battery is critical low
992 * or lower than the alarm level
993 */
994 if ((battery->state & ACPI_BATTERY_STATE_CRITICAL) ||
995 (test_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags) &&
Maximilian Luzc6237b22020-11-05 03:06:00 +0100996 (battery->capacity_now <= battery->alarm)))
Rafael J. Wysocki33e4f802017-06-12 22:56:34 +0200997 acpi_pm_wakeup_event(&battery->device->dev);
Zhang Ruie0d1f092014-05-28 15:23:38 +0800998
Zhang Rui557d5862010-10-22 10:02:06 +0800999 return result;
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -05001000}
1001
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +01001002static void acpi_battery_refresh(struct acpi_battery *battery)
1003{
Andy Whitcroftc5971452012-05-03 14:48:26 +01001004 int power_unit;
1005
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001006 if (!battery->bat)
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +01001007 return;
1008
Andy Whitcroftc5971452012-05-03 14:48:26 +01001009 power_unit = battery->power_unit;
1010
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +01001011 acpi_battery_get_info(battery);
Andy Whitcroftc5971452012-05-03 14:48:26 +01001012
1013 if (power_unit == battery->power_unit)
1014 return;
1015
1016 /* The battery has changed its reporting units. */
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +01001017 sysfs_remove_battery(battery);
1018 sysfs_add_battery(battery);
1019}
1020
Xiaofei Tan65545ab2021-03-27 20:08:18 +08001021/* Driver Interface */
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001022static void acpi_battery_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023{
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001024 struct acpi_battery *battery = acpi_driver_data(device);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001025 struct power_supply *old;
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001026
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -04001028 return;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001029 old = battery->bat;
Alexander Mezinf43691c2014-06-04 02:01:23 +07001030 /*
Xiaofei Tan65545ab2021-03-27 20:08:18 +08001031 * On Acer Aspire V5-573G notifications are sometimes triggered too
1032 * early. For example, when AC is unplugged and notification is
1033 * triggered, battery state is still reported as "Full", and changes to
1034 * "Discharging" only after short delay, without any notification.
1035 */
Alexander Mezinf43691c2014-06-04 02:01:23 +07001036 if (battery_notification_delay_ms > 0)
1037 msleep(battery_notification_delay_ms);
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +01001038 if (event == ACPI_BATTERY_NOTIFY_INFO)
1039 acpi_battery_refresh(battery);
Lan Tianyu9e50bc12014-05-04 14:07:06 +08001040 acpi_battery_update(battery, false);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +04001041 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +01001042 dev_name(&device->dev), event,
Vladimir Lebedev9ea7d572007-02-20 15:48:06 +03001043 acpi_battery_present(battery));
Alexander Mezin411e0f72014-03-12 00:58:47 +07001044 acpi_notifier_call_chain(device, event, acpi_battery_present(battery));
Justin P. Mattock2345baf2009-12-13 14:42:36 -08001045 /* acpi_battery_update could remove power_supply object */
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001046 if (old && battery->bat)
1047 power_supply_changed(battery->bat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048}
1049
Kyle McMartin25be5822011-03-22 16:19:50 -04001050static int battery_notify(struct notifier_block *nb,
1051 unsigned long mode, void *_unused)
1052{
1053 struct acpi_battery *battery = container_of(nb, struct acpi_battery,
1054 pm_nb);
Lan Tianyu9e50bc12014-05-04 14:07:06 +08001055 int result;
1056
Kyle McMartin25be5822011-03-22 16:19:50 -04001057 switch (mode) {
Lan Tianyud5a59112011-06-30 11:33:40 +08001058 case PM_POST_HIBERNATION:
Kyle McMartin25be5822011-03-22 16:19:50 -04001059 case PM_POST_SUSPEND:
Lan Tianyu9e50bc12014-05-04 14:07:06 +08001060 if (!acpi_battery_present(battery))
1061 return 0;
1062
Dmitry Rozhkov27544352018-07-24 14:27:34 +03001063 if (battery->bat) {
1064 acpi_battery_refresh(battery);
1065 } else {
Lan Tianyu9e50bc12014-05-04 14:07:06 +08001066 result = acpi_battery_get_info(battery);
1067 if (result)
1068 return result;
1069
1070 result = sysfs_add_battery(battery);
1071 if (result)
1072 return result;
Dmitry Rozhkov27544352018-07-24 14:27:34 +03001073 }
Lan Tianyu9e50bc12014-05-04 14:07:06 +08001074
1075 acpi_battery_init_alarm(battery);
1076 acpi_battery_get_state(battery);
Kyle McMartin25be5822011-03-22 16:19:50 -04001077 break;
1078 }
1079
1080 return 0;
1081}
1082
Mathias Krause048d16d2015-06-13 14:26:55 +02001083static int __init
1084battery_bix_broken_package_quirk(const struct dmi_system_id *d)
Alexander Mezin3f5dc082014-06-04 02:01:22 +07001085{
1086 battery_bix_broken_package = 1;
1087 return 0;
1088}
1089
Mathias Krause048d16d2015-06-13 14:26:55 +02001090static int __init
1091battery_notification_delay_quirk(const struct dmi_system_id *d)
Alexander Mezinf43691c2014-06-04 02:01:23 +07001092{
1093 battery_notification_delay_ms = 1000;
1094 return 0;
1095}
1096
Hans de Goede1b799c52018-04-12 12:02:00 +02001097static int __init
1098battery_ac_is_broken_quirk(const struct dmi_system_id *d)
1099{
1100 battery_ac_is_broken = 1;
1101 return 0;
1102}
1103
Thomas Weißschuhe96c1192021-12-22 22:20:14 +01001104static int __init battery_quirk_not_charging(const struct dmi_system_id *d)
Carlo Caioneec625a32018-04-18 14:04:39 +02001105{
Thomas Weißschuhe96c1192021-12-22 22:20:14 +01001106 battery_quirk_notcharging = 1;
Carlo Caioneec625a32018-04-18 14:04:39 +02001107 return 0;
1108}
1109
Mathias Krause048d16d2015-06-13 14:26:55 +02001110static const struct dmi_system_id bat_dmi_table[] __initconst = {
Lan Tianyua90b4032014-01-06 22:50:37 +08001111 {
Hans de Goede91afa072018-04-12 12:01:58 +02001112 /* NEC LZ750/LS */
Alexander Mezin3f5dc082014-06-04 02:01:22 +07001113 .callback = battery_bix_broken_package_quirk,
Lan Tianyua90b4032014-01-06 22:50:37 +08001114 .matches = {
1115 DMI_MATCH(DMI_SYS_VENDOR, "NEC"),
1116 DMI_MATCH(DMI_PRODUCT_NAME, "PC-LZ750LS"),
1117 },
1118 },
Alexander Mezinf43691c2014-06-04 02:01:23 +07001119 {
Hans de Goede91afa072018-04-12 12:01:58 +02001120 /* Acer Aspire V5-573G */
Alexander Mezinf43691c2014-06-04 02:01:23 +07001121 .callback = battery_notification_delay_quirk,
Alexander Mezinf43691c2014-06-04 02:01:23 +07001122 .matches = {
1123 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
1124 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire V5-573G"),
1125 },
1126 },
Hans de Goede1b799c52018-04-12 12:02:00 +02001127 {
1128 /* Point of View mobii wintab p800w */
1129 .callback = battery_ac_is_broken_quirk,
1130 .matches = {
1131 DMI_MATCH(DMI_BOARD_VENDOR, "AMI Corporation"),
1132 DMI_MATCH(DMI_BOARD_NAME, "Aptio CRB"),
1133 DMI_MATCH(DMI_BIOS_VERSION, "3BAIR1013"),
1134 /* Above matches are too generic, add bios-date match */
1135 DMI_MATCH(DMI_BIOS_DATE, "08/22/2014"),
1136 },
1137 },
Carlo Caioneec625a32018-04-18 14:04:39 +02001138 {
Thomas Weißschuhe96c1192021-12-22 22:20:14 +01001139 /*
1140 * On Lenovo ThinkPads the BIOS specification defines
1141 * a state when the bits for charging and discharging
1142 * are both set to 0. That state is "Not Charging".
1143 */
1144 .callback = battery_quirk_not_charging,
1145 .ident = "Lenovo ThinkPad",
Carlo Caioneec625a32018-04-18 14:04:39 +02001146 .matches = {
Hans de Goede8c3f6992020-02-23 15:29:41 +01001147 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
Thomas Weißschuhe96c1192021-12-22 22:20:14 +01001148 DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad"),
Carlo Caioneec625a32018-04-18 14:04:39 +02001149 },
1150 },
Lan Tianyua90b4032014-01-06 22:50:37 +08001151 {},
1152};
1153
Lan Tianyu75646e72014-07-07 15:47:12 +08001154/*
1155 * Some machines'(E,G Lenovo Z480) ECs are not stable
1156 * during boot up and this causes battery driver fails to be
1157 * probed due to failure of getting battery information
1158 * from EC sometimes. After several retries, the operation
1159 * may work. So add retry code here and 20ms sleep between
1160 * every retries.
1161 */
1162static int acpi_battery_update_retry(struct acpi_battery *battery)
1163{
1164 int retry, ret;
1165
1166 for (retry = 5; retry; retry--) {
1167 ret = acpi_battery_update(battery, false);
1168 if (!ret)
1169 break;
1170
1171 msleep(20);
1172 }
1173 return ret;
1174}
1175
Len Brown4be44fc2005-08-05 00:44:28 -04001176static int acpi_battery_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177{
Len Brown4be44fc2005-08-05 00:44:28 -04001178 int result = 0;
Len Brown4be44fc2005-08-05 00:44:28 -04001179 struct acpi_battery *battery = NULL;
Jiang Liu952c63e2013-06-29 00:24:38 +08001180
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -04001182 return -EINVAL;
Lan Tianyu40e7fcb2014-11-23 21:22:54 +08001183
1184 if (device->dep_unmet)
1185 return -EPROBE_DEFER;
1186
Burman Yan36bcbec2006-12-19 12:56:11 -08001187 battery = kzalloc(sizeof(struct acpi_battery), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -04001189 return -ENOMEM;
Patrick Mochel145def82006-05-19 16:54:39 -04001190 battery->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 strcpy(acpi_device_name(device), ACPI_BATTERY_DEVICE_NAME);
1192 strcpy(acpi_device_class(device), ACPI_BATTERY_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07001193 device->driver_data = battery;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +04001194 mutex_init(&battery->lock);
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +03001195 mutex_init(&battery->sysfs_lock);
Jiang Liu952c63e2013-06-29 00:24:38 +08001196 if (acpi_has_method(battery->device->handle, "_BIX"))
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +04001197 set_bit(ACPI_BATTERY_XINFO_PRESENT, &battery->flags);
Lan Tianyu75646e72014-07-07 15:47:12 +08001198
1199 result = acpi_battery_update_retry(battery);
Stefan Hajnoczieb03cb02011-07-12 09:03:29 +01001200 if (result)
1201 goto fail;
Lan Tianyu75646e72014-07-07 15:47:12 +08001202
Rafael J. Wysockibd8c5d12021-02-03 19:44:57 +01001203 pr_info("Slot [%s] (battery %s)\n", acpi_device_bid(device),
Stefan Hajnoczie80bba42011-07-12 09:03:28 +01001204 device->status.battery_present ? "present" : "absent");
1205
Kyle McMartin25be5822011-03-22 16:19:50 -04001206 battery->pm_nb.notifier_call = battery_notify;
1207 register_pm_notifier(&battery->pm_nb);
1208
Zhang Ruie0d1f092014-05-28 15:23:38 +08001209 device_init_wakeup(&device->dev, 1);
1210
Patrick Mocheld550d982006-06-27 00:41:40 -04001211 return result;
Stefan Hajnoczie80bba42011-07-12 09:03:28 +01001212
1213fail:
1214 sysfs_remove_battery(battery);
1215 mutex_destroy(&battery->lock);
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +03001216 mutex_destroy(&battery->sysfs_lock);
Stefan Hajnoczie80bba42011-07-12 09:03:28 +01001217 kfree(battery);
1218 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219}
1220
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01001221static int acpi_battery_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222{
Len Brown4be44fc2005-08-05 00:44:28 -04001223 struct acpi_battery *battery = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001226 return -EINVAL;
Zhang Ruie0d1f092014-05-28 15:23:38 +08001227 device_init_wakeup(&device->dev, 0);
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001228 battery = acpi_driver_data(device);
Kyle McMartin25be5822011-03-22 16:19:50 -04001229 unregister_pm_notifier(&battery->pm_nb);
Andrey Borzenkov508df922007-10-28 12:50:09 +03001230 sysfs_remove_battery(battery);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +04001231 mutex_destroy(&battery->lock);
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +03001232 mutex_destroy(&battery->sysfs_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 kfree(battery);
Patrick Mocheld550d982006-06-27 00:41:40 -04001234 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235}
1236
Rafael J. Wysocki90692402012-08-09 23:00:02 +02001237#ifdef CONFIG_PM_SLEEP
Jiri Kosina34c44152006-10-10 14:20:41 -07001238/* this is needed to learn about changes made in suspended state */
Rafael J. Wysockia6f50dc2012-06-27 23:26:43 +02001239static int acpi_battery_resume(struct device *dev)
Jiri Kosina34c44152006-10-10 14:20:41 -07001240{
1241 struct acpi_battery *battery;
Rafael J. Wysockia6f50dc2012-06-27 23:26:43 +02001242
1243 if (!dev)
Jiri Kosina34c44152006-10-10 14:20:41 -07001244 return -EINVAL;
Rafael J. Wysockia6f50dc2012-06-27 23:26:43 +02001245
1246 battery = acpi_driver_data(to_acpi_device(dev));
1247 if (!battery)
1248 return -EINVAL;
1249
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +04001250 battery->update_time = 0;
Lan Tianyu9e50bc12014-05-04 14:07:06 +08001251 acpi_battery_update(battery, true);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +03001252 return 0;
Jiri Kosina34c44152006-10-10 14:20:41 -07001253}
Shuah Khan7f6895c2014-02-12 20:19:06 -07001254#else
1255#define acpi_battery_resume NULL
Rafael J. Wysocki90692402012-08-09 23:00:02 +02001256#endif
Jiri Kosina34c44152006-10-10 14:20:41 -07001257
Rafael J. Wysockia6f50dc2012-06-27 23:26:43 +02001258static SIMPLE_DEV_PM_OPS(acpi_battery_pm, NULL, acpi_battery_resume);
1259
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001260static struct acpi_driver acpi_battery_driver = {
1261 .name = "battery",
1262 .class = ACPI_BATTERY_CLASS,
1263 .ids = battery_device_ids,
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001264 .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001265 .ops = {
1266 .add = acpi_battery_add,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001267 .remove = acpi_battery_remove,
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001268 .notify = acpi_battery_notify,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001269 },
Rafael J. Wysockia6f50dc2012-06-27 23:26:43 +02001270 .drv.pm = &acpi_battery_pm,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001271};
1272
Linus Torvaldsb0cbc862009-04-11 12:45:20 -07001273static void __init acpi_battery_init_async(void *unused, async_cookie_t cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274{
Luis Henriques479faaf2015-05-11 22:48:46 +01001275 int result;
1276
Hans de Goede57a18322021-12-30 20:31:19 +01001277 if (acpi_quirk_skip_acpi_ac_and_battery())
1278 return;
Luis Henriques479faaf2015-05-11 22:48:46 +01001279
Hans de Goede57a18322021-12-30 20:31:19 +01001280 dmi_check_system(bat_dmi_table);
Carlo Caioneec625a32018-04-18 14:04:39 +02001281
Luis Henriques479faaf2015-05-11 22:48:46 +01001282 result = acpi_bus_register_driver(&acpi_battery_driver);
Hans de Goedebc39fbc2017-04-19 14:02:09 +02001283 battery_driver_registered = (result == 0);
Arjan van de Ven0f66af52009-01-10 14:19:05 -05001284}
1285
1286static int __init acpi_battery_init(void)
1287{
Luis Henriquese234b072015-05-11 22:48:38 +01001288 if (acpi_disabled)
1289 return -ENODEV;
1290
Luis Henriqueseca21d912015-05-11 22:49:05 +01001291 async_cookie = async_schedule(acpi_battery_init_async, NULL);
Patrick Mocheld550d982006-06-27 00:41:40 -04001292 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293}
1294
Len Brown4be44fc2005-08-05 00:44:28 -04001295static void __exit acpi_battery_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296{
Chris Wilson5dfa0c72016-05-19 09:11:52 +01001297 async_synchronize_cookie(async_cookie + 1);
Ognjen Galicfa938542018-02-07 15:58:13 +01001298 if (battery_driver_registered) {
Hans de Goedebc39fbc2017-04-19 14:02:09 +02001299 acpi_bus_unregister_driver(&acpi_battery_driver);
Ognjen Galicfa938542018-02-07 15:58:13 +01001300 battery_hook_exit();
1301 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302}
1303
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304module_init(acpi_battery_init);
1305module_exit(acpi_battery_exit);