blob: 13e7b56e33aebbc7965bc89d53086c42df179c31 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04002 * battery.c - ACPI Battery Driver (Revision: 2.0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04004 * Copyright (C) 2007 Alexey Starikovskiy <astarikovskiy@suse.de>
5 * Copyright (C) 2004-2007 Vladimir Lebedev <vladimir.p.lebedev@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
7 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
8 *
9 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or (at
14 * your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
22 */
23
24#include <linux/kernel.h>
25#include <linux/module.h>
26#include <linux/init.h>
27#include <linux/types.h>
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +040028#include <linux/jiffies.h>
Arjan van de Ven0f66af52009-01-10 14:19:05 -050029#include <linux/async.h>
Hector Martinbc76f902009-08-06 15:57:48 -070030#include <linux/dmi.h>
Alexander Mezinf43691c2014-06-04 02:01:23 +070031#include <linux/delay.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
Kyle McMartin25be5822011-03-22 16:19:50 -040033#include <linux/suspend.h>
Kamil Iskra4000e622012-11-16 22:28:58 +010034#include <asm/unaligned.h>
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040035
Lan Tianyu3a670cc2014-05-04 11:07:25 +080036#ifdef CONFIG_ACPI_PROCFS_POWER
37#include <linux/proc_fs.h>
38#include <linux/seq_file.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080039#include <linux/uaccess.h>
Lan Tianyu3a670cc2014-05-04 11:07:25 +080040#endif
41
Lv Zheng8b484632013-12-03 08:49:16 +080042#include <linux/acpi.h>
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040043#include <linux/power_supply.h>
44
Alexander Mezinf03be352014-03-12 00:58:46 +070045#include "battery.h"
46
Len Browna192a952009-07-28 16:45:54 -040047#define PREFIX "ACPI: "
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define ACPI_BATTERY_VALUE_UNKNOWN 0xFFFFFFFF
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define ACPI_BATTERY_DEVICE_NAME "Battery"
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Lan Tianyuae6f6182011-06-30 11:32:40 +080053/* Battery power unit: 0 means mW, 1 means mA */
54#define ACPI_BATTERY_POWER_UNIT_MA 1
55
Zhang Rui1ac5aaa2014-05-28 15:23:36 +080056#define ACPI_BATTERY_STATE_DISCHARGING 0x1
57#define ACPI_BATTERY_STATE_CHARGING 0x2
58#define ACPI_BATTERY_STATE_CRITICAL 0x4
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#define _COMPONENT ACPI_BATTERY_COMPONENT
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +030061
Len Brownf52fd662007-02-12 22:42:12 -050062ACPI_MODULE_NAME("battery");
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Len Brownf52fd662007-02-12 22:42:12 -050064MODULE_AUTHOR("Paul Diefenbaugh");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +040065MODULE_AUTHOR("Alexey Starikovskiy <astarikovskiy@suse.de>");
Len Brown7cda93e2007-02-12 23:50:02 -050066MODULE_DESCRIPTION("ACPI Battery Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070067MODULE_LICENSE("GPL");
68
Luis Henriqueseca21d912015-05-11 22:49:05 +010069static async_cookie_t async_cookie;
Hans de Goedebc39fbc2017-04-19 14:02:09 +020070static bool battery_driver_registered;
Lan Tianyua90b4032014-01-06 22:50:37 +080071static int battery_bix_broken_package;
Alexander Mezinf43691c2014-06-04 02:01:23 +070072static int battery_notification_delay_ms;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +040073static unsigned int cache_time = 1000;
74module_param(cache_time, uint, 0644);
75MODULE_PARM_DESC(cache_time, "cache time in milliseconds");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +030076
Lan Tianyu3a670cc2014-05-04 11:07:25 +080077#ifdef CONFIG_ACPI_PROCFS_POWER
78extern struct proc_dir_entry *acpi_lock_battery_dir(void);
79extern void *acpi_unlock_battery_dir(struct proc_dir_entry *acpi_battery_dir);
80
81enum acpi_battery_files {
82 info_tag = 0,
83 state_tag,
84 alarm_tag,
85 ACPI_BATTERY_NUMFILES,
86};
87
88#endif
89
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040090static const struct acpi_device_id battery_device_ids[] = {
91 {"PNP0C0A", 0},
92 {"", 0},
93};
94
95MODULE_DEVICE_TABLE(acpi, battery_device_ids);
96
Hans de Goededccfae62017-04-19 14:02:10 +020097/* Lists of PMIC ACPI HIDs with an (often better) native battery driver */
98static const char * const acpi_battery_blacklist[] = {
99 "INT33F4", /* X-Powers AXP288 PMIC */
100};
101
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400102enum {
103 ACPI_BATTERY_ALARM_PRESENT,
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400104 ACPI_BATTERY_XINFO_PRESENT,
Zhang Rui557d5862010-10-22 10:02:06 +0800105 ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY,
Kamil Iskra4000e622012-11-16 22:28:58 +0100106 /* On Lenovo Thinkpad models from 2010 and 2011, the power unit
107 switches between mWh and mAh depending on whether the system
108 is running on battery or not. When mAh is the unit, most
109 reported values are incorrect and need to be adjusted by
110 10000/design_voltage. Verified on x201, t410, t410s, and x220.
111 Pre-2010 and 2012 models appear to always report in mWh and
112 are thus unaffected (tested with t42, t61, t500, x200, x300,
113 and x230). Also, in mid-2012 Lenovo issued a BIOS update for
114 the 2011 models that fixes the issue (tested on x220 with a
115 post-1.29 BIOS), but as of Nov. 2012, no such update is
116 available for the 2010 models. */
117 ACPI_BATTERY_QUIRK_THINKPAD_MAH,
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400118};
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400119
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400120struct acpi_battery {
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400121 struct mutex lock;
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300122 struct mutex sysfs_lock;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100123 struct power_supply *bat;
124 struct power_supply_desc bat_desc;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400125 struct acpi_device *device;
Kyle McMartin25be5822011-03-22 16:19:50 -0400126 struct notifier_block pm_nb;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400127 unsigned long update_time;
Lan Tianyu016d5ba2013-07-30 14:00:42 +0200128 int revision;
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400129 int rate_now;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400130 int capacity_now;
131 int voltage_now;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400132 int design_capacity;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400133 int full_charge_capacity;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400134 int technology;
135 int design_voltage;
136 int design_capacity_warning;
137 int design_capacity_low;
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400138 int cycle_count;
139 int measurement_accuracy;
140 int max_sampling_time;
141 int min_sampling_time;
142 int max_averaging_interval;
143 int min_averaging_interval;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400144 int capacity_granularity_1;
145 int capacity_granularity_2;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400146 int alarm;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400147 char model_number[32];
148 char serial_number[32];
149 char type[32];
150 char oem_info[32];
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400151 int state;
152 int power_unit;
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400153 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154};
155
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100156#define to_acpi_battery(x) power_supply_get_drvdata(x)
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400157
Andy Shevchenkoefd941f2013-03-11 09:17:06 +0000158static inline int acpi_battery_present(struct acpi_battery *battery)
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400159{
160 return battery->device->status.battery_present;
161}
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400162
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400163static int acpi_battery_technology(struct acpi_battery *battery)
164{
165 if (!strcasecmp("NiCd", battery->type))
166 return POWER_SUPPLY_TECHNOLOGY_NiCd;
167 if (!strcasecmp("NiMH", battery->type))
168 return POWER_SUPPLY_TECHNOLOGY_NiMH;
169 if (!strcasecmp("LION", battery->type))
170 return POWER_SUPPLY_TECHNOLOGY_LION;
Andrey Borzenkovad40e682007-11-10 20:02:49 +0300171 if (!strncasecmp("LI-ION", battery->type, 6))
Alexey Starikovskiy0bde7ee2007-10-28 15:33:10 +0300172 return POWER_SUPPLY_TECHNOLOGY_LION;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400173 if (!strcasecmp("LiP", battery->type))
174 return POWER_SUPPLY_TECHNOLOGY_LIPO;
175 return POWER_SUPPLY_TECHNOLOGY_UNKNOWN;
176}
177
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300178static int acpi_battery_get_state(struct acpi_battery *battery);
Alexey Starikovskiyb19073a2007-10-25 17:10:47 -0400179
Richard Hughes56f382a2009-01-25 15:05:50 +0000180static int acpi_battery_is_charged(struct acpi_battery *battery)
181{
Zhang Rui1ac5aaa2014-05-28 15:23:36 +0800182 /* charging, discharging or critical low */
Richard Hughes56f382a2009-01-25 15:05:50 +0000183 if (battery->state != 0)
184 return 0;
185
186 /* battery not reporting charge */
187 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN ||
188 battery->capacity_now == 0)
189 return 0;
190
191 /* good batteries update full_charge as the batteries degrade */
192 if (battery->full_charge_capacity == battery->capacity_now)
193 return 1;
194
195 /* fallback to using design values for broken batteries */
196 if (battery->design_capacity == battery->capacity_now)
197 return 1;
198
199 /* we don't do any sort of metric based on percentages */
200 return 0;
201}
202
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400203static int acpi_battery_get_property(struct power_supply *psy,
204 enum power_supply_property psp,
205 union power_supply_propval *val)
206{
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200207 int ret = 0;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400208 struct acpi_battery *battery = to_acpi_battery(psy);
209
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300210 if (acpi_battery_present(battery)) {
211 /* run battery update only if it is present */
212 acpi_battery_get_state(battery);
213 } else if (psp != POWER_SUPPLY_PROP_PRESENT)
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400214 return -ENODEV;
215 switch (psp) {
216 case POWER_SUPPLY_PROP_STATUS:
Zhang Rui1ac5aaa2014-05-28 15:23:36 +0800217 if (battery->state & ACPI_BATTERY_STATE_DISCHARGING)
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400218 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
Zhang Rui1ac5aaa2014-05-28 15:23:36 +0800219 else if (battery->state & ACPI_BATTERY_STATE_CHARGING)
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400220 val->intval = POWER_SUPPLY_STATUS_CHARGING;
Richard Hughes56f382a2009-01-25 15:05:50 +0000221 else if (acpi_battery_is_charged(battery))
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400222 val->intval = POWER_SUPPLY_STATUS_FULL;
Roland Dreier4c41d3a2007-11-07 15:09:09 -0800223 else
224 val->intval = POWER_SUPPLY_STATUS_UNKNOWN;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400225 break;
226 case POWER_SUPPLY_PROP_PRESENT:
227 val->intval = acpi_battery_present(battery);
228 break;
229 case POWER_SUPPLY_PROP_TECHNOLOGY:
230 val->intval = acpi_battery_technology(battery);
231 break;
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400232 case POWER_SUPPLY_PROP_CYCLE_COUNT:
233 val->intval = battery->cycle_count;
234 break;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400235 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200236 if (battery->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN)
237 ret = -ENODEV;
238 else
239 val->intval = battery->design_voltage * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400240 break;
241 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200242 if (battery->voltage_now == ACPI_BATTERY_VALUE_UNKNOWN)
243 ret = -ENODEV;
244 else
245 val->intval = battery->voltage_now * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400246 break;
247 case POWER_SUPPLY_PROP_CURRENT_NOW:
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400248 case POWER_SUPPLY_PROP_POWER_NOW:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200249 if (battery->rate_now == ACPI_BATTERY_VALUE_UNKNOWN)
250 ret = -ENODEV;
251 else
252 val->intval = battery->rate_now * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400253 break;
254 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
255 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200256 if (battery->design_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
257 ret = -ENODEV;
258 else
259 val->intval = battery->design_capacity * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400260 break;
261 case POWER_SUPPLY_PROP_CHARGE_FULL:
262 case POWER_SUPPLY_PROP_ENERGY_FULL:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200263 if (battery->full_charge_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
264 ret = -ENODEV;
265 else
266 val->intval = battery->full_charge_capacity * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400267 break;
268 case POWER_SUPPLY_PROP_CHARGE_NOW:
269 case POWER_SUPPLY_PROP_ENERGY_NOW:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200270 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN)
271 ret = -ENODEV;
272 else
273 val->intval = battery->capacity_now * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400274 break;
srinivas pandruvadaa58e1152012-04-05 17:38:54 -0700275 case POWER_SUPPLY_PROP_CAPACITY:
276 if (battery->capacity_now && battery->full_charge_capacity)
277 val->intval = battery->capacity_now * 100/
278 battery->full_charge_capacity;
279 else
280 val->intval = 0;
281 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
326static enum power_supply_property energy_battery_props[] = {
327 POWER_SUPPLY_PROP_STATUS,
328 POWER_SUPPLY_PROP_PRESENT,
329 POWER_SUPPLY_PROP_TECHNOLOGY,
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400330 POWER_SUPPLY_PROP_CYCLE_COUNT,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400331 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
332 POWER_SUPPLY_PROP_VOLTAGE_NOW,
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400333 POWER_SUPPLY_PROP_POWER_NOW,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400334 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN,
335 POWER_SUPPLY_PROP_ENERGY_FULL,
336 POWER_SUPPLY_PROP_ENERGY_NOW,
srinivas pandruvadaa58e1152012-04-05 17:38:54 -0700337 POWER_SUPPLY_PROP_CAPACITY,
Zhang Rui1ac5aaa2014-05-28 15:23:36 +0800338 POWER_SUPPLY_PROP_CAPACITY_LEVEL,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400339 POWER_SUPPLY_PROP_MODEL_NAME,
340 POWER_SUPPLY_PROP_MANUFACTURER,
maximilian attems7c2670b2008-01-22 18:46:50 +0100341 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400342};
343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344/* --------------------------------------------------------------------------
345 Battery Management
346 -------------------------------------------------------------------------- */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400347struct acpi_offsets {
348 size_t offset; /* offset inside struct acpi_sbs_battery */
349 u8 mode; /* int or string? */
350};
351
Mathias Krausea4658782015-06-13 14:26:53 +0200352static const struct acpi_offsets state_offsets[] = {
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400353 {offsetof(struct acpi_battery, state), 0},
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400354 {offsetof(struct acpi_battery, rate_now), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400355 {offsetof(struct acpi_battery, capacity_now), 0},
356 {offsetof(struct acpi_battery, voltage_now), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400357};
358
Mathias Krausea4658782015-06-13 14:26:53 +0200359static const struct acpi_offsets info_offsets[] = {
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400360 {offsetof(struct acpi_battery, power_unit), 0},
361 {offsetof(struct acpi_battery, design_capacity), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400362 {offsetof(struct acpi_battery, full_charge_capacity), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400363 {offsetof(struct acpi_battery, technology), 0},
364 {offsetof(struct acpi_battery, design_voltage), 0},
365 {offsetof(struct acpi_battery, design_capacity_warning), 0},
366 {offsetof(struct acpi_battery, design_capacity_low), 0},
367 {offsetof(struct acpi_battery, capacity_granularity_1), 0},
368 {offsetof(struct acpi_battery, capacity_granularity_2), 0},
369 {offsetof(struct acpi_battery, model_number), 1},
370 {offsetof(struct acpi_battery, serial_number), 1},
371 {offsetof(struct acpi_battery, type), 1},
372 {offsetof(struct acpi_battery, oem_info), 1},
373};
374
Mathias Krausea4658782015-06-13 14:26:53 +0200375static const struct acpi_offsets extended_info_offsets[] = {
Lan Tianyu016d5ba2013-07-30 14:00:42 +0200376 {offsetof(struct acpi_battery, revision), 0},
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400377 {offsetof(struct acpi_battery, power_unit), 0},
378 {offsetof(struct acpi_battery, design_capacity), 0},
379 {offsetof(struct acpi_battery, full_charge_capacity), 0},
380 {offsetof(struct acpi_battery, technology), 0},
381 {offsetof(struct acpi_battery, design_voltage), 0},
382 {offsetof(struct acpi_battery, design_capacity_warning), 0},
383 {offsetof(struct acpi_battery, design_capacity_low), 0},
384 {offsetof(struct acpi_battery, cycle_count), 0},
385 {offsetof(struct acpi_battery, measurement_accuracy), 0},
386 {offsetof(struct acpi_battery, max_sampling_time), 0},
387 {offsetof(struct acpi_battery, min_sampling_time), 0},
388 {offsetof(struct acpi_battery, max_averaging_interval), 0},
389 {offsetof(struct acpi_battery, min_averaging_interval), 0},
390 {offsetof(struct acpi_battery, capacity_granularity_1), 0},
391 {offsetof(struct acpi_battery, capacity_granularity_2), 0},
392 {offsetof(struct acpi_battery, model_number), 1},
393 {offsetof(struct acpi_battery, serial_number), 1},
394 {offsetof(struct acpi_battery, type), 1},
395 {offsetof(struct acpi_battery, oem_info), 1},
396};
397
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400398static int extract_package(struct acpi_battery *battery,
399 union acpi_object *package,
Mathias Krausea4658782015-06-13 14:26:53 +0200400 const struct acpi_offsets *offsets, int num)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300401{
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300402 int i;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400403 union acpi_object *element;
404 if (package->type != ACPI_TYPE_PACKAGE)
405 return -EFAULT;
406 for (i = 0; i < num; ++i) {
407 if (package->package.count <= i)
408 return -EFAULT;
409 element = &package->package.elements[i];
410 if (offsets[i].mode) {
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300411 u8 *ptr = (u8 *)battery + offsets[i].offset;
412 if (element->type == ACPI_TYPE_STRING ||
413 element->type == ACPI_TYPE_BUFFER)
414 strncpy(ptr, element->string.pointer, 32);
415 else if (element->type == ACPI_TYPE_INTEGER) {
416 strncpy(ptr, (u8 *)&element->integer.value,
Lin Ming439913f2010-01-28 10:53:19 +0800417 sizeof(u64));
418 ptr[sizeof(u64)] = 0;
Alexey Starikovskiyb8a1bdb2008-03-17 22:37:42 -0400419 } else
420 *ptr = 0; /* don't have value */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400421 } else {
Alexey Starikovskiyb8a1bdb2008-03-17 22:37:42 -0400422 int *x = (int *)((u8 *)battery + offsets[i].offset);
423 *x = (element->type == ACPI_TYPE_INTEGER) ?
424 element->integer.value : -1;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300425 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300426 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300427 return 0;
428}
429
430static int acpi_battery_get_status(struct acpi_battery *battery)
431{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400432 if (acpi_bus_get_status(battery->device)) {
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300433 ACPI_EXCEPTION((AE_INFO, AE_ERROR, "Evaluating _STA"));
434 return -ENODEV;
435 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400436 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300437}
438
Dave Lambley2d09af42016-11-04 01:05:40 +0000439
440static int extract_battery_info(const int use_bix,
441 struct acpi_battery *battery,
442 const struct acpi_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400444 int result = -EFAULT;
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400445
Dave Lambley2d09af42016-11-04 01:05:40 +0000446 if (use_bix && battery_bix_broken_package)
447 result = extract_package(battery, buffer->pointer,
Lan Tianyua90b4032014-01-06 22:50:37 +0800448 extended_info_offsets + 1,
449 ARRAY_SIZE(extended_info_offsets) - 1);
Dave Lambley2d09af42016-11-04 01:05:40 +0000450 else if (use_bix)
451 result = extract_package(battery, buffer->pointer,
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400452 extended_info_offsets,
453 ARRAY_SIZE(extended_info_offsets));
454 else
Dave Lambley2d09af42016-11-04 01:05:40 +0000455 result = extract_package(battery, buffer->pointer,
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400456 info_offsets, ARRAY_SIZE(info_offsets));
Zhang Rui557d5862010-10-22 10:02:06 +0800457 if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags))
458 battery->full_charge_capacity = battery->design_capacity;
Kamil Iskra4000e622012-11-16 22:28:58 +0100459 if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH, &battery->flags) &&
460 battery->power_unit && battery->design_voltage) {
461 battery->design_capacity = battery->design_capacity *
462 10000 / battery->design_voltage;
463 battery->full_charge_capacity = battery->full_charge_capacity *
464 10000 / battery->design_voltage;
465 battery->design_capacity_warning =
466 battery->design_capacity_warning *
467 10000 / battery->design_voltage;
468 /* Curiously, design_capacity_low, unlike the rest of them,
469 is correct. */
470 /* capacity_granularity_* equal 1 on the systems tested, so
471 it's impossible to tell if they would need an adjustment
472 or not if their values were higher. */
473 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400474 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475}
476
Dave Lambley2d09af42016-11-04 01:05:40 +0000477static int acpi_battery_get_info(struct acpi_battery *battery)
478{
479 const int xinfo = test_bit(ACPI_BATTERY_XINFO_PRESENT, &battery->flags);
480 int use_bix;
481 int result = -ENODEV;
482
483 if (!acpi_battery_present(battery))
484 return 0;
485
486
487 for (use_bix = xinfo ? 1 : 0; use_bix >= 0; use_bix--) {
488 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
489 acpi_status status = AE_ERROR;
490
491 mutex_lock(&battery->lock);
492 status = acpi_evaluate_object(battery->device->handle,
493 use_bix ? "_BIX":"_BIF",
494 NULL, &buffer);
495 mutex_unlock(&battery->lock);
496
497 if (ACPI_FAILURE(status)) {
498 ACPI_EXCEPTION((AE_INFO, status, "Evaluating %s",
499 use_bix ? "_BIX":"_BIF"));
500 } else {
501 result = extract_battery_info(use_bix,
502 battery,
503 &buffer);
504
505 kfree(buffer.pointer);
506 break;
507 }
508 }
509
510 if (!result && !use_bix && xinfo)
511 pr_warn(FW_BUG "The _BIX method is broken, using _BIF.\n");
512
513 return result;
514}
515
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300516static int acpi_battery_get_state(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517{
Len Brown4be44fc2005-08-05 00:44:28 -0400518 int result = 0;
519 acpi_status status = 0;
520 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300522 if (!acpi_battery_present(battery))
523 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400525 if (battery->update_time &&
526 time_before(jiffies, battery->update_time +
527 msecs_to_jiffies(cache_time)))
528 return 0;
529
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400530 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400531 status = acpi_evaluate_object(battery->device->handle, "_BST",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400532 NULL, &buffer);
533 mutex_unlock(&battery->lock);
Len Brown5b31d892007-08-15 00:19:26 -0400534
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400536 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BST"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400537 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400539
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400540 result = extract_package(battery, buffer.pointer,
541 state_offsets, ARRAY_SIZE(state_offsets));
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400542 battery->update_time = jiffies;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400543 kfree(buffer.pointer);
Hector Martinbc76f902009-08-06 15:57:48 -0700544
Lan Tianyu55003b22011-06-30 11:33:12 +0800545 /* For buggy DSDTs that report negative 16-bit values for either
546 * charging or discharging current and/or report 0 as 65536
547 * due to bad math.
548 */
549 if (battery->power_unit == ACPI_BATTERY_POWER_UNIT_MA &&
550 battery->rate_now != ACPI_BATTERY_VALUE_UNKNOWN &&
551 (s16)(battery->rate_now) < 0) {
Hector Martinbc76f902009-08-06 15:57:48 -0700552 battery->rate_now = abs((s16)battery->rate_now);
Martin Kepplinger92375162015-03-13 00:48:17 +0100553 printk_once(KERN_WARNING FW_BUG
554 "battery: (dis)charge rate invalid.\n");
Lan Tianyu55003b22011-06-30 11:33:12 +0800555 }
Hector Martinbc76f902009-08-06 15:57:48 -0700556
Zhang Rui557d5862010-10-22 10:02:06 +0800557 if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags)
558 && battery->capacity_now >= 0 && battery->capacity_now <= 100)
559 battery->capacity_now = (battery->capacity_now *
560 battery->full_charge_capacity) / 100;
Kamil Iskra4000e622012-11-16 22:28:58 +0100561 if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH, &battery->flags) &&
562 battery->power_unit && battery->design_voltage) {
563 battery->capacity_now = battery->capacity_now *
564 10000 / battery->design_voltage;
565 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400566 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567}
568
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400569static int acpi_battery_set_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Len Brown4be44fc2005-08-05 00:44:28 -0400571 acpi_status status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400573 if (!acpi_battery_present(battery) ||
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400574 !test_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags))
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300575 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400577 mutex_lock(&battery->lock);
Jiang Liu0db98202013-06-29 00:24:39 +0800578 status = acpi_execute_simple_method(battery->device->handle, "_BTP",
579 battery->alarm);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400580 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400583 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400585 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Alarm set to %d\n", battery->alarm));
Patrick Mocheld550d982006-06-27 00:41:40 -0400586 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587}
588
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300589static int acpi_battery_init_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300591 /* See if alarms are supported, and if so, set default */
Jiang Liu952c63e2013-06-29 00:24:38 +0800592 if (!acpi_has_method(battery->device->handle, "_BTP")) {
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400593 clear_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400594 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 }
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400596 set_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400597 if (!battery->alarm)
598 battery->alarm = battery->design_capacity_warning;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400599 return acpi_battery_set_alarm(battery);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600}
601
Andrey Borzenkov508df922007-10-28 12:50:09 +0300602static ssize_t acpi_battery_alarm_show(struct device *dev,
603 struct device_attribute *attr,
604 char *buf)
605{
606 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
607 return sprintf(buf, "%d\n", battery->alarm * 1000);
608}
609
610static ssize_t acpi_battery_alarm_store(struct device *dev,
611 struct device_attribute *attr,
612 const char *buf, size_t count)
613{
614 unsigned long x;
615 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
Luis G.F47a08c82014-01-21 15:40:43 +0100616 if (sscanf(buf, "%lu\n", &x) == 1)
Andrey Borzenkov508df922007-10-28 12:50:09 +0300617 battery->alarm = x/1000;
618 if (acpi_battery_present(battery))
619 acpi_battery_set_alarm(battery);
620 return count;
621}
622
Bhumika Goyal82d2b612017-08-21 17:13:07 +0530623static const struct device_attribute alarm_attr = {
Parag Warudkar01e8ef12008-10-18 20:28:50 -0700624 .attr = {.name = "alarm", .mode = 0644},
Andrey Borzenkov508df922007-10-28 12:50:09 +0300625 .show = acpi_battery_alarm_show,
626 .store = acpi_battery_alarm_store,
627};
628
629static int sysfs_add_battery(struct acpi_battery *battery)
630{
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100631 struct power_supply_config psy_cfg = { .drv_data = battery, };
Andrey Borzenkov508df922007-10-28 12:50:09 +0300632
Lan Tianyuae6f6182011-06-30 11:32:40 +0800633 if (battery->power_unit == ACPI_BATTERY_POWER_UNIT_MA) {
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100634 battery->bat_desc.properties = charge_battery_props;
635 battery->bat_desc.num_properties =
Andrey Borzenkov508df922007-10-28 12:50:09 +0300636 ARRAY_SIZE(charge_battery_props);
637 } else {
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100638 battery->bat_desc.properties = energy_battery_props;
639 battery->bat_desc.num_properties =
Andrey Borzenkov508df922007-10-28 12:50:09 +0300640 ARRAY_SIZE(energy_battery_props);
641 }
642
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100643 battery->bat_desc.name = acpi_device_bid(battery->device);
644 battery->bat_desc.type = POWER_SUPPLY_TYPE_BATTERY;
645 battery->bat_desc.get_property = acpi_battery_get_property;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300646
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100647 battery->bat = power_supply_register_no_ws(&battery->device->dev,
648 &battery->bat_desc, &psy_cfg);
Zhang Ruie0d1f092014-05-28 15:23:38 +0800649
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100650 if (IS_ERR(battery->bat)) {
651 int result = PTR_ERR(battery->bat);
652
653 battery->bat = NULL;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300654 return result;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100655 }
656 return device_create_file(&battery->bat->dev, &alarm_attr);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300657}
658
659static void sysfs_remove_battery(struct acpi_battery *battery)
660{
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300661 mutex_lock(&battery->sysfs_lock);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100662 if (!battery->bat) {
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300663 mutex_unlock(&battery->sysfs_lock);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300664 return;
Lan Tianyu9c921c222011-06-30 11:34:12 +0800665 }
666
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100667 device_remove_file(&battery->bat->dev, &alarm_attr);
668 power_supply_unregister(battery->bat);
669 battery->bat = NULL;
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300670 mutex_unlock(&battery->sysfs_lock);
Hector Martinbc76f902009-08-06 15:57:48 -0700671}
672
Kamil Iskra4000e622012-11-16 22:28:58 +0100673static void find_battery(const struct dmi_header *dm, void *private)
674{
675 struct acpi_battery *battery = (struct acpi_battery *)private;
676 /* Note: the hardcoded offsets below have been extracted from
677 the source code of dmidecode. */
678 if (dm->type == DMI_ENTRY_PORTABLE_BATTERY && dm->length >= 8) {
679 const u8 *dmi_data = (const u8 *)(dm + 1);
680 int dmi_capacity = get_unaligned((const u16 *)(dmi_data + 6));
681 if (dm->length >= 18)
682 dmi_capacity *= dmi_data[17];
683 if (battery->design_capacity * battery->design_voltage / 1000
684 != dmi_capacity &&
685 battery->design_capacity * 10 == dmi_capacity)
686 set_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH,
687 &battery->flags);
688 }
689}
690
Zhang Rui557d5862010-10-22 10:02:06 +0800691/*
692 * According to the ACPI spec, some kinds of primary batteries can
693 * report percentage battery remaining capacity directly to OS.
694 * In this case, it reports the Last Full Charged Capacity == 100
695 * and BatteryPresentRate == 0xFFFFFFFF.
696 *
697 * Now we found some battery reports percentage remaining capacity
698 * even if it's rechargeable.
699 * https://bugzilla.kernel.org/show_bug.cgi?id=15979
700 *
701 * Handle this correctly so that they won't break userspace.
702 */
Lan Tianyu7b786222011-06-30 11:33:27 +0800703static void acpi_battery_quirks(struct acpi_battery *battery)
Zhang Rui557d5862010-10-22 10:02:06 +0800704{
705 if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags))
Nicholas Mazzuca0f4c6542013-05-08 23:11:15 +0000706 return;
Zhang Rui557d5862010-10-22 10:02:06 +0800707
Nicholas Mazzuca0f4c6542013-05-08 23:11:15 +0000708 if (battery->full_charge_capacity == 100 &&
709 battery->rate_now == ACPI_BATTERY_VALUE_UNKNOWN &&
710 battery->capacity_now >= 0 && battery->capacity_now <= 100) {
Zhang Rui557d5862010-10-22 10:02:06 +0800711 set_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags);
712 battery->full_charge_capacity = battery->design_capacity;
713 battery->capacity_now = (battery->capacity_now *
714 battery->full_charge_capacity) / 100;
715 }
Kamil Iskra4000e622012-11-16 22:28:58 +0100716
717 if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH, &battery->flags))
Nicholas Mazzuca0f4c6542013-05-08 23:11:15 +0000718 return;
Kamil Iskra4000e622012-11-16 22:28:58 +0100719
720 if (battery->power_unit && dmi_name_in_vendors("LENOVO")) {
721 const char *s;
722 s = dmi_get_system_info(DMI_PRODUCT_VERSION);
Rasmus Villemoesffd8a732014-09-16 22:51:24 +0200723 if (s && !strncasecmp(s, "ThinkPad", 8)) {
Kamil Iskra4000e622012-11-16 22:28:58 +0100724 dmi_walk(find_battery, battery);
725 if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH,
726 &battery->flags) &&
727 battery->design_voltage) {
728 battery->design_capacity =
729 battery->design_capacity *
730 10000 / battery->design_voltage;
731 battery->full_charge_capacity =
732 battery->full_charge_capacity *
733 10000 / battery->design_voltage;
734 battery->design_capacity_warning =
735 battery->design_capacity_warning *
736 10000 / battery->design_voltage;
737 battery->capacity_now = battery->capacity_now *
738 10000 / battery->design_voltage;
739 }
740 }
741 }
Zhang Rui557d5862010-10-22 10:02:06 +0800742}
743
Lan Tianyu9e50bc12014-05-04 14:07:06 +0800744static int acpi_battery_update(struct acpi_battery *battery, bool resume)
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500745{
Alexey Starikovskiy50b17852008-12-23 02:44:54 +0300746 int result, old_present = acpi_battery_present(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500747 result = acpi_battery_get_status(battery);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300748 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300749 return result;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300750 if (!acpi_battery_present(battery)) {
751 sysfs_remove_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500752 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300753 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300754 }
Lan Tianyu9e50bc12014-05-04 14:07:06 +0800755
756 if (resume)
757 return 0;
758
Alexey Starikovskiy50b17852008-12-23 02:44:54 +0300759 if (!battery->update_time ||
760 old_present != acpi_battery_present(battery)) {
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500761 result = acpi_battery_get_info(battery);
762 if (result)
763 return result;
764 acpi_battery_init_alarm(battery);
765 }
Carlos Garnacho12c78ca2016-08-10 17:24:15 +0200766
767 result = acpi_battery_get_state(battery);
768 if (result)
769 return result;
770 acpi_battery_quirks(battery);
771
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100772 if (!battery->bat) {
Stefan Hajnoczieb03cb02011-07-12 09:03:29 +0100773 result = sysfs_add_battery(battery);
774 if (result)
775 return result;
776 }
Zhang Ruie0d1f092014-05-28 15:23:38 +0800777
778 /*
779 * Wakeup the system if battery is critical low
780 * or lower than the alarm level
781 */
782 if ((battery->state & ACPI_BATTERY_STATE_CRITICAL) ||
783 (test_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags) &&
784 (battery->capacity_now <= battery->alarm)))
Rafael J. Wysocki33e4f802017-06-12 22:56:34 +0200785 acpi_pm_wakeup_event(&battery->device->dev);
Zhang Ruie0d1f092014-05-28 15:23:38 +0800786
Zhang Rui557d5862010-10-22 10:02:06 +0800787 return result;
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500788}
789
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +0100790static void acpi_battery_refresh(struct acpi_battery *battery)
791{
Andy Whitcroftc5971452012-05-03 14:48:26 +0100792 int power_unit;
793
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100794 if (!battery->bat)
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +0100795 return;
796
Andy Whitcroftc5971452012-05-03 14:48:26 +0100797 power_unit = battery->power_unit;
798
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +0100799 acpi_battery_get_info(battery);
Andy Whitcroftc5971452012-05-03 14:48:26 +0100800
801 if (power_unit == battery->power_unit)
802 return;
803
804 /* The battery has changed its reporting units. */
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +0100805 sysfs_remove_battery(battery);
806 sysfs_add_battery(battery);
807}
808
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809/* --------------------------------------------------------------------------
Lan Tianyu3a670cc2014-05-04 11:07:25 +0800810 FS Interface (/proc)
811 -------------------------------------------------------------------------- */
812
813#ifdef CONFIG_ACPI_PROCFS_POWER
814static struct proc_dir_entry *acpi_battery_dir;
815
Mathias Krause27059b92015-06-13 14:26:54 +0200816static const char *acpi_battery_units(const struct acpi_battery *battery)
817{
818 return (battery->power_unit == ACPI_BATTERY_POWER_UNIT_MA) ?
819 "mA" : "mW";
820}
821
Lan Tianyu3a670cc2014-05-04 11:07:25 +0800822static int acpi_battery_print_info(struct seq_file *seq, int result)
823{
824 struct acpi_battery *battery = seq->private;
825
826 if (result)
827 goto end;
828
829 seq_printf(seq, "present: %s\n",
830 acpi_battery_present(battery) ? "yes" : "no");
831 if (!acpi_battery_present(battery))
832 goto end;
833 if (battery->design_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
834 seq_printf(seq, "design capacity: unknown\n");
835 else
836 seq_printf(seq, "design capacity: %d %sh\n",
837 battery->design_capacity,
838 acpi_battery_units(battery));
839
840 if (battery->full_charge_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
841 seq_printf(seq, "last full capacity: unknown\n");
842 else
843 seq_printf(seq, "last full capacity: %d %sh\n",
844 battery->full_charge_capacity,
845 acpi_battery_units(battery));
846
847 seq_printf(seq, "battery technology: %srechargeable\n",
848 (!battery->technology)?"non-":"");
849
850 if (battery->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN)
851 seq_printf(seq, "design voltage: unknown\n");
852 else
853 seq_printf(seq, "design voltage: %d mV\n",
854 battery->design_voltage);
855 seq_printf(seq, "design capacity warning: %d %sh\n",
856 battery->design_capacity_warning,
857 acpi_battery_units(battery));
858 seq_printf(seq, "design capacity low: %d %sh\n",
859 battery->design_capacity_low,
860 acpi_battery_units(battery));
861 seq_printf(seq, "cycle count: %i\n", battery->cycle_count);
862 seq_printf(seq, "capacity granularity 1: %d %sh\n",
863 battery->capacity_granularity_1,
864 acpi_battery_units(battery));
865 seq_printf(seq, "capacity granularity 2: %d %sh\n",
866 battery->capacity_granularity_2,
867 acpi_battery_units(battery));
868 seq_printf(seq, "model number: %s\n", battery->model_number);
869 seq_printf(seq, "serial number: %s\n", battery->serial_number);
870 seq_printf(seq, "battery type: %s\n", battery->type);
871 seq_printf(seq, "OEM info: %s\n", battery->oem_info);
872 end:
873 if (result)
874 seq_printf(seq, "ERROR: Unable to read battery info\n");
875 return result;
876}
877
878static int acpi_battery_print_state(struct seq_file *seq, int result)
879{
880 struct acpi_battery *battery = seq->private;
881
882 if (result)
883 goto end;
884
885 seq_printf(seq, "present: %s\n",
886 acpi_battery_present(battery) ? "yes" : "no");
887 if (!acpi_battery_present(battery))
888 goto end;
889
890 seq_printf(seq, "capacity state: %s\n",
891 (battery->state & 0x04) ? "critical" : "ok");
892 if ((battery->state & 0x01) && (battery->state & 0x02))
893 seq_printf(seq,
894 "charging state: charging/discharging\n");
895 else if (battery->state & 0x01)
896 seq_printf(seq, "charging state: discharging\n");
897 else if (battery->state & 0x02)
898 seq_printf(seq, "charging state: charging\n");
899 else
900 seq_printf(seq, "charging state: charged\n");
901
902 if (battery->rate_now == ACPI_BATTERY_VALUE_UNKNOWN)
903 seq_printf(seq, "present rate: unknown\n");
904 else
905 seq_printf(seq, "present rate: %d %s\n",
906 battery->rate_now, acpi_battery_units(battery));
907
908 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN)
909 seq_printf(seq, "remaining capacity: unknown\n");
910 else
911 seq_printf(seq, "remaining capacity: %d %sh\n",
912 battery->capacity_now, acpi_battery_units(battery));
913 if (battery->voltage_now == ACPI_BATTERY_VALUE_UNKNOWN)
914 seq_printf(seq, "present voltage: unknown\n");
915 else
916 seq_printf(seq, "present voltage: %d mV\n",
917 battery->voltage_now);
918 end:
919 if (result)
920 seq_printf(seq, "ERROR: Unable to read battery state\n");
921
922 return result;
923}
924
925static int acpi_battery_print_alarm(struct seq_file *seq, int result)
926{
927 struct acpi_battery *battery = seq->private;
928
929 if (result)
930 goto end;
931
932 if (!acpi_battery_present(battery)) {
933 seq_printf(seq, "present: no\n");
934 goto end;
935 }
936 seq_printf(seq, "alarm: ");
937 if (!battery->alarm)
938 seq_printf(seq, "unsupported\n");
939 else
940 seq_printf(seq, "%u %sh\n", battery->alarm,
941 acpi_battery_units(battery));
942 end:
943 if (result)
944 seq_printf(seq, "ERROR: Unable to read battery alarm\n");
945 return result;
946}
947
948static ssize_t acpi_battery_write_alarm(struct file *file,
949 const char __user * buffer,
950 size_t count, loff_t * ppos)
951{
952 int result = 0;
953 char alarm_string[12] = { '\0' };
954 struct seq_file *m = file->private_data;
955 struct acpi_battery *battery = m->private;
956
957 if (!battery || (count > sizeof(alarm_string) - 1))
958 return -EINVAL;
959 if (!acpi_battery_present(battery)) {
960 result = -ENODEV;
961 goto end;
962 }
963 if (copy_from_user(alarm_string, buffer, count)) {
964 result = -EFAULT;
965 goto end;
966 }
967 alarm_string[count] = '\0';
Christoph Jaeger3d915892014-06-13 21:49:58 +0200968 if (kstrtoint(alarm_string, 0, &battery->alarm)) {
969 result = -EINVAL;
970 goto end;
971 }
Lan Tianyu3a670cc2014-05-04 11:07:25 +0800972 result = acpi_battery_set_alarm(battery);
973 end:
974 if (!result)
975 return count;
976 return result;
977}
978
979typedef int(*print_func)(struct seq_file *seq, int result);
980
981static print_func acpi_print_funcs[ACPI_BATTERY_NUMFILES] = {
982 acpi_battery_print_info,
983 acpi_battery_print_state,
984 acpi_battery_print_alarm,
985};
986
987static int acpi_battery_read(int fid, struct seq_file *seq)
988{
989 struct acpi_battery *battery = seq->private;
Lan Tianyu9e50bc12014-05-04 14:07:06 +0800990 int result = acpi_battery_update(battery, false);
Lan Tianyu3a670cc2014-05-04 11:07:25 +0800991 return acpi_print_funcs[fid](seq, result);
992}
993
994#define DECLARE_FILE_FUNCTIONS(_name) \
995static int acpi_battery_read_##_name(struct seq_file *seq, void *offset) \
996{ \
997 return acpi_battery_read(_name##_tag, seq); \
998} \
999static int acpi_battery_##_name##_open_fs(struct inode *inode, struct file *file) \
1000{ \
1001 return single_open(file, acpi_battery_read_##_name, PDE_DATA(inode)); \
1002}
1003
1004DECLARE_FILE_FUNCTIONS(info);
1005DECLARE_FILE_FUNCTIONS(state);
1006DECLARE_FILE_FUNCTIONS(alarm);
1007
1008#undef DECLARE_FILE_FUNCTIONS
1009
1010#define FILE_DESCRIPTION_RO(_name) \
1011 { \
1012 .name = __stringify(_name), \
1013 .mode = S_IRUGO, \
1014 .ops = { \
1015 .open = acpi_battery_##_name##_open_fs, \
1016 .read = seq_read, \
1017 .llseek = seq_lseek, \
1018 .release = single_release, \
1019 .owner = THIS_MODULE, \
1020 }, \
1021 }
1022
1023#define FILE_DESCRIPTION_RW(_name) \
1024 { \
1025 .name = __stringify(_name), \
1026 .mode = S_IFREG | S_IRUGO | S_IWUSR, \
1027 .ops = { \
1028 .open = acpi_battery_##_name##_open_fs, \
1029 .read = seq_read, \
1030 .llseek = seq_lseek, \
1031 .write = acpi_battery_write_##_name, \
1032 .release = single_release, \
1033 .owner = THIS_MODULE, \
1034 }, \
1035 }
1036
1037static const struct battery_file {
1038 struct file_operations ops;
1039 umode_t mode;
1040 const char *name;
1041} acpi_battery_file[] = {
1042 FILE_DESCRIPTION_RO(info),
1043 FILE_DESCRIPTION_RO(state),
1044 FILE_DESCRIPTION_RW(alarm),
1045};
1046
1047#undef FILE_DESCRIPTION_RO
1048#undef FILE_DESCRIPTION_RW
1049
1050static int acpi_battery_add_fs(struct acpi_device *device)
1051{
1052 struct proc_dir_entry *entry = NULL;
1053 int i;
1054
1055 printk(KERN_WARNING PREFIX "Deprecated procfs I/F for battery is loaded,"
1056 " please retry with CONFIG_ACPI_PROCFS_POWER cleared\n");
1057 if (!acpi_device_dir(device)) {
1058 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
1059 acpi_battery_dir);
1060 if (!acpi_device_dir(device))
1061 return -ENODEV;
1062 }
1063
1064 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i) {
1065 entry = proc_create_data(acpi_battery_file[i].name,
1066 acpi_battery_file[i].mode,
1067 acpi_device_dir(device),
1068 &acpi_battery_file[i].ops,
1069 acpi_driver_data(device));
1070 if (!entry)
1071 return -ENODEV;
1072 }
1073 return 0;
1074}
1075
1076static void acpi_battery_remove_fs(struct acpi_device *device)
1077{
1078 int i;
1079 if (!acpi_device_dir(device))
1080 return;
1081 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i)
1082 remove_proc_entry(acpi_battery_file[i].name,
1083 acpi_device_dir(device));
1084
1085 remove_proc_entry(acpi_device_bid(device), acpi_battery_dir);
1086 acpi_device_dir(device) = NULL;
1087}
1088
1089#endif
1090
1091/* --------------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 Driver Interface
1093 -------------------------------------------------------------------------- */
1094
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001095static void acpi_battery_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096{
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001097 struct acpi_battery *battery = acpi_driver_data(device);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001098 struct power_supply *old;
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001099
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -04001101 return;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001102 old = battery->bat;
Alexander Mezinf43691c2014-06-04 02:01:23 +07001103 /*
1104 * On Acer Aspire V5-573G notifications are sometimes triggered too
1105 * early. For example, when AC is unplugged and notification is
1106 * triggered, battery state is still reported as "Full", and changes to
1107 * "Discharging" only after short delay, without any notification.
1108 */
1109 if (battery_notification_delay_ms > 0)
1110 msleep(battery_notification_delay_ms);
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +01001111 if (event == ACPI_BATTERY_NOTIFY_INFO)
1112 acpi_battery_refresh(battery);
Lan Tianyu9e50bc12014-05-04 14:07:06 +08001113 acpi_battery_update(battery, false);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +04001114 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +01001115 dev_name(&device->dev), event,
Vladimir Lebedev9ea7d572007-02-20 15:48:06 +03001116 acpi_battery_present(battery));
Alexander Mezin411e0f72014-03-12 00:58:47 +07001117 acpi_notifier_call_chain(device, event, acpi_battery_present(battery));
Justin P. Mattock2345baf2009-12-13 14:42:36 -08001118 /* acpi_battery_update could remove power_supply object */
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001119 if (old && battery->bat)
1120 power_supply_changed(battery->bat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121}
1122
Kyle McMartin25be5822011-03-22 16:19:50 -04001123static int battery_notify(struct notifier_block *nb,
1124 unsigned long mode, void *_unused)
1125{
1126 struct acpi_battery *battery = container_of(nb, struct acpi_battery,
1127 pm_nb);
Lan Tianyu9e50bc12014-05-04 14:07:06 +08001128 int result;
1129
Kyle McMartin25be5822011-03-22 16:19:50 -04001130 switch (mode) {
Lan Tianyud5a59112011-06-30 11:33:40 +08001131 case PM_POST_HIBERNATION:
Kyle McMartin25be5822011-03-22 16:19:50 -04001132 case PM_POST_SUSPEND:
Lan Tianyu9e50bc12014-05-04 14:07:06 +08001133 if (!acpi_battery_present(battery))
1134 return 0;
1135
Krzysztof Kozlowski31f7dc72015-04-14 22:24:13 +09001136 if (!battery->bat) {
Lan Tianyu9e50bc12014-05-04 14:07:06 +08001137 result = acpi_battery_get_info(battery);
1138 if (result)
1139 return result;
1140
1141 result = sysfs_add_battery(battery);
1142 if (result)
1143 return result;
1144 } else
1145 acpi_battery_refresh(battery);
1146
1147 acpi_battery_init_alarm(battery);
1148 acpi_battery_get_state(battery);
Kyle McMartin25be5822011-03-22 16:19:50 -04001149 break;
1150 }
1151
1152 return 0;
1153}
1154
Mathias Krause048d16d2015-06-13 14:26:55 +02001155static int __init
1156battery_bix_broken_package_quirk(const struct dmi_system_id *d)
Alexander Mezin3f5dc082014-06-04 02:01:22 +07001157{
1158 battery_bix_broken_package = 1;
1159 return 0;
1160}
1161
Mathias Krause048d16d2015-06-13 14:26:55 +02001162static int __init
1163battery_notification_delay_quirk(const struct dmi_system_id *d)
Alexander Mezinf43691c2014-06-04 02:01:23 +07001164{
1165 battery_notification_delay_ms = 1000;
1166 return 0;
1167}
1168
Mathias Krause048d16d2015-06-13 14:26:55 +02001169static const struct dmi_system_id bat_dmi_table[] __initconst = {
Lan Tianyua90b4032014-01-06 22:50:37 +08001170 {
Alexander Mezin3f5dc082014-06-04 02:01:22 +07001171 .callback = battery_bix_broken_package_quirk,
Lan Tianyua90b4032014-01-06 22:50:37 +08001172 .ident = "NEC LZ750/LS",
1173 .matches = {
1174 DMI_MATCH(DMI_SYS_VENDOR, "NEC"),
1175 DMI_MATCH(DMI_PRODUCT_NAME, "PC-LZ750LS"),
1176 },
1177 },
Alexander Mezinf43691c2014-06-04 02:01:23 +07001178 {
1179 .callback = battery_notification_delay_quirk,
1180 .ident = "Acer Aspire V5-573G",
1181 .matches = {
1182 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
1183 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire V5-573G"),
1184 },
1185 },
Lan Tianyua90b4032014-01-06 22:50:37 +08001186 {},
1187};
1188
Lan Tianyu75646e72014-07-07 15:47:12 +08001189/*
1190 * Some machines'(E,G Lenovo Z480) ECs are not stable
1191 * during boot up and this causes battery driver fails to be
1192 * probed due to failure of getting battery information
1193 * from EC sometimes. After several retries, the operation
1194 * may work. So add retry code here and 20ms sleep between
1195 * every retries.
1196 */
1197static int acpi_battery_update_retry(struct acpi_battery *battery)
1198{
1199 int retry, ret;
1200
1201 for (retry = 5; retry; retry--) {
1202 ret = acpi_battery_update(battery, false);
1203 if (!ret)
1204 break;
1205
1206 msleep(20);
1207 }
1208 return ret;
1209}
1210
Len Brown4be44fc2005-08-05 00:44:28 -04001211static int acpi_battery_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212{
Len Brown4be44fc2005-08-05 00:44:28 -04001213 int result = 0;
Len Brown4be44fc2005-08-05 00:44:28 -04001214 struct acpi_battery *battery = NULL;
Jiang Liu952c63e2013-06-29 00:24:38 +08001215
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -04001217 return -EINVAL;
Lan Tianyu40e7fcb2014-11-23 21:22:54 +08001218
1219 if (device->dep_unmet)
1220 return -EPROBE_DEFER;
1221
Burman Yan36bcbec2006-12-19 12:56:11 -08001222 battery = kzalloc(sizeof(struct acpi_battery), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -04001224 return -ENOMEM;
Patrick Mochel145def82006-05-19 16:54:39 -04001225 battery->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 strcpy(acpi_device_name(device), ACPI_BATTERY_DEVICE_NAME);
1227 strcpy(acpi_device_class(device), ACPI_BATTERY_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07001228 device->driver_data = battery;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +04001229 mutex_init(&battery->lock);
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +03001230 mutex_init(&battery->sysfs_lock);
Jiang Liu952c63e2013-06-29 00:24:38 +08001231 if (acpi_has_method(battery->device->handle, "_BIX"))
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +04001232 set_bit(ACPI_BATTERY_XINFO_PRESENT, &battery->flags);
Lan Tianyu75646e72014-07-07 15:47:12 +08001233
1234 result = acpi_battery_update_retry(battery);
Stefan Hajnoczieb03cb02011-07-12 09:03:29 +01001235 if (result)
1236 goto fail;
Lan Tianyu75646e72014-07-07 15:47:12 +08001237
Lan Tianyu3a670cc2014-05-04 11:07:25 +08001238#ifdef CONFIG_ACPI_PROCFS_POWER
1239 result = acpi_battery_add_fs(device);
1240#endif
1241 if (result) {
1242#ifdef CONFIG_ACPI_PROCFS_POWER
1243 acpi_battery_remove_fs(device);
1244#endif
1245 goto fail;
1246 }
Kyle McMartin25be5822011-03-22 16:19:50 -04001247
Stefan Hajnoczie80bba42011-07-12 09:03:28 +01001248 printk(KERN_INFO PREFIX "%s Slot [%s] (battery %s)\n",
1249 ACPI_BATTERY_DEVICE_NAME, acpi_device_bid(device),
1250 device->status.battery_present ? "present" : "absent");
1251
Kyle McMartin25be5822011-03-22 16:19:50 -04001252 battery->pm_nb.notifier_call = battery_notify;
1253 register_pm_notifier(&battery->pm_nb);
1254
Zhang Ruie0d1f092014-05-28 15:23:38 +08001255 device_init_wakeup(&device->dev, 1);
1256
Patrick Mocheld550d982006-06-27 00:41:40 -04001257 return result;
Stefan Hajnoczie80bba42011-07-12 09:03:28 +01001258
1259fail:
1260 sysfs_remove_battery(battery);
1261 mutex_destroy(&battery->lock);
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +03001262 mutex_destroy(&battery->sysfs_lock);
Stefan Hajnoczie80bba42011-07-12 09:03:28 +01001263 kfree(battery);
1264 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265}
1266
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01001267static int acpi_battery_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268{
Len Brown4be44fc2005-08-05 00:44:28 -04001269 struct acpi_battery *battery = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001272 return -EINVAL;
Zhang Ruie0d1f092014-05-28 15:23:38 +08001273 device_init_wakeup(&device->dev, 0);
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001274 battery = acpi_driver_data(device);
Kyle McMartin25be5822011-03-22 16:19:50 -04001275 unregister_pm_notifier(&battery->pm_nb);
Lan Tianyu3a670cc2014-05-04 11:07:25 +08001276#ifdef CONFIG_ACPI_PROCFS_POWER
1277 acpi_battery_remove_fs(device);
1278#endif
Andrey Borzenkov508df922007-10-28 12:50:09 +03001279 sysfs_remove_battery(battery);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +04001280 mutex_destroy(&battery->lock);
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +03001281 mutex_destroy(&battery->sysfs_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 kfree(battery);
Patrick Mocheld550d982006-06-27 00:41:40 -04001283 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284}
1285
Rafael J. Wysocki90692402012-08-09 23:00:02 +02001286#ifdef CONFIG_PM_SLEEP
Jiri Kosina34c44152006-10-10 14:20:41 -07001287/* this is needed to learn about changes made in suspended state */
Rafael J. Wysockia6f50dc2012-06-27 23:26:43 +02001288static int acpi_battery_resume(struct device *dev)
Jiri Kosina34c44152006-10-10 14:20:41 -07001289{
1290 struct acpi_battery *battery;
Rafael J. Wysockia6f50dc2012-06-27 23:26:43 +02001291
1292 if (!dev)
Jiri Kosina34c44152006-10-10 14:20:41 -07001293 return -EINVAL;
Rafael J. Wysockia6f50dc2012-06-27 23:26:43 +02001294
1295 battery = acpi_driver_data(to_acpi_device(dev));
1296 if (!battery)
1297 return -EINVAL;
1298
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +04001299 battery->update_time = 0;
Lan Tianyu9e50bc12014-05-04 14:07:06 +08001300 acpi_battery_update(battery, true);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +03001301 return 0;
Jiri Kosina34c44152006-10-10 14:20:41 -07001302}
Shuah Khan7f6895c2014-02-12 20:19:06 -07001303#else
1304#define acpi_battery_resume NULL
Rafael J. Wysocki90692402012-08-09 23:00:02 +02001305#endif
Jiri Kosina34c44152006-10-10 14:20:41 -07001306
Rafael J. Wysockia6f50dc2012-06-27 23:26:43 +02001307static SIMPLE_DEV_PM_OPS(acpi_battery_pm, NULL, acpi_battery_resume);
1308
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001309static struct acpi_driver acpi_battery_driver = {
1310 .name = "battery",
1311 .class = ACPI_BATTERY_CLASS,
1312 .ids = battery_device_ids,
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001313 .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001314 .ops = {
1315 .add = acpi_battery_add,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001316 .remove = acpi_battery_remove,
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001317 .notify = acpi_battery_notify,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001318 },
Rafael J. Wysockia6f50dc2012-06-27 23:26:43 +02001319 .drv.pm = &acpi_battery_pm,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001320};
1321
Linus Torvaldsb0cbc862009-04-11 12:45:20 -07001322static void __init acpi_battery_init_async(void *unused, async_cookie_t cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323{
Hans de Goededccfae62017-04-19 14:02:10 +02001324 unsigned int i;
Luis Henriques479faaf2015-05-11 22:48:46 +01001325 int result;
1326
Hans de Goededccfae62017-04-19 14:02:10 +02001327 for (i = 0; i < ARRAY_SIZE(acpi_battery_blacklist); i++)
1328 if (acpi_dev_present(acpi_battery_blacklist[i], "1", -1)) {
1329 pr_info(PREFIX ACPI_BATTERY_DEVICE_NAME
1330 ": found native %s PMIC, not loading\n",
1331 acpi_battery_blacklist[i]);
1332 return;
1333 }
1334
Alexander Mezin3f5dc082014-06-04 02:01:22 +07001335 dmi_check_system(bat_dmi_table);
Luis Henriques479faaf2015-05-11 22:48:46 +01001336
Lan Tianyu3a670cc2014-05-04 11:07:25 +08001337#ifdef CONFIG_ACPI_PROCFS_POWER
1338 acpi_battery_dir = acpi_lock_battery_dir();
1339 if (!acpi_battery_dir)
1340 return;
1341#endif
Luis Henriques479faaf2015-05-11 22:48:46 +01001342 result = acpi_bus_register_driver(&acpi_battery_driver);
Lan Tianyu3a670cc2014-05-04 11:07:25 +08001343#ifdef CONFIG_ACPI_PROCFS_POWER
Luis Henriques479faaf2015-05-11 22:48:46 +01001344 if (result < 0)
Lan Tianyu3a670cc2014-05-04 11:07:25 +08001345 acpi_unlock_battery_dir(acpi_battery_dir);
1346#endif
Hans de Goedebc39fbc2017-04-19 14:02:09 +02001347 battery_driver_registered = (result == 0);
Arjan van de Ven0f66af52009-01-10 14:19:05 -05001348}
1349
1350static int __init acpi_battery_init(void)
1351{
Luis Henriquese234b072015-05-11 22:48:38 +01001352 if (acpi_disabled)
1353 return -ENODEV;
1354
Luis Henriqueseca21d912015-05-11 22:49:05 +01001355 async_cookie = async_schedule(acpi_battery_init_async, NULL);
Patrick Mocheld550d982006-06-27 00:41:40 -04001356 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357}
1358
Len Brown4be44fc2005-08-05 00:44:28 -04001359static void __exit acpi_battery_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360{
Chris Wilson5dfa0c72016-05-19 09:11:52 +01001361 async_synchronize_cookie(async_cookie + 1);
Hans de Goedebc39fbc2017-04-19 14:02:09 +02001362 if (battery_driver_registered)
1363 acpi_bus_unregister_driver(&acpi_battery_driver);
Lan Tianyu3a670cc2014-05-04 11:07:25 +08001364#ifdef CONFIG_ACPI_PROCFS_POWER
Hans de Goedebc39fbc2017-04-19 14:02:09 +02001365 if (acpi_battery_dir)
1366 acpi_unlock_battery_dir(acpi_battery_dir);
Lan Tianyu3a670cc2014-05-04 11:07:25 +08001367#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368}
1369
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370module_init(acpi_battery_init);
1371module_exit(acpi_battery_exit);