blob: b3628cc01a535991d7d4c864d44c5dd337f9ca8d [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 *
21 * You should have received a copy of the GNU General Public License along
22 * with this program; if not, write to the Free Software Foundation, Inc.,
23 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
24 *
25 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
26 */
27
28#include <linux/kernel.h>
29#include <linux/module.h>
30#include <linux/init.h>
31#include <linux/types.h>
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +040032#include <linux/jiffies.h>
Arjan van de Ven0f66af52009-01-10 14:19:05 -050033#include <linux/async.h>
Hector Martinbc76f902009-08-06 15:57:48 -070034#include <linux/dmi.h>
Alexander Mezinf43691c2014-06-04 02:01:23 +070035#include <linux/delay.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Kyle McMartin25be5822011-03-22 16:19:50 -040037#include <linux/suspend.h>
Kamil Iskra4000e622012-11-16 22:28:58 +010038#include <asm/unaligned.h>
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040039
Lan Tianyu3a670cc2014-05-04 11:07:25 +080040#ifdef CONFIG_ACPI_PROCFS_POWER
41#include <linux/proc_fs.h>
42#include <linux/seq_file.h>
43#include <asm/uaccess.h>
44#endif
45
Lv Zheng8b484632013-12-03 08:49:16 +080046#include <linux/acpi.h>
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040047#include <linux/power_supply.h>
48
Alexander Mezinf03be352014-03-12 00:58:46 +070049#include "battery.h"
50
Len Browna192a952009-07-28 16:45:54 -040051#define PREFIX "ACPI: "
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define ACPI_BATTERY_VALUE_UNKNOWN 0xFFFFFFFF
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#define ACPI_BATTERY_DEVICE_NAME "Battery"
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Lan Tianyuae6f6182011-06-30 11:32:40 +080057/* Battery power unit: 0 means mW, 1 means mA */
58#define ACPI_BATTERY_POWER_UNIT_MA 1
59
Zhang Rui1ac5aaa2014-05-28 15:23:36 +080060#define ACPI_BATTERY_STATE_DISCHARGING 0x1
61#define ACPI_BATTERY_STATE_CHARGING 0x2
62#define ACPI_BATTERY_STATE_CRITICAL 0x4
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#define _COMPONENT ACPI_BATTERY_COMPONENT
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +030065
Len Brownf52fd662007-02-12 22:42:12 -050066ACPI_MODULE_NAME("battery");
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Len Brownf52fd662007-02-12 22:42:12 -050068MODULE_AUTHOR("Paul Diefenbaugh");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +040069MODULE_AUTHOR("Alexey Starikovskiy <astarikovskiy@suse.de>");
Len Brown7cda93e2007-02-12 23:50:02 -050070MODULE_DESCRIPTION("ACPI Battery Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070071MODULE_LICENSE("GPL");
72
Luis Henriqueseca21d912015-05-11 22:49:05 +010073static async_cookie_t async_cookie;
Lan Tianyua90b4032014-01-06 22:50:37 +080074static int battery_bix_broken_package;
Alexander Mezinf43691c2014-06-04 02:01:23 +070075static int battery_notification_delay_ms;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +040076static unsigned int cache_time = 1000;
77module_param(cache_time, uint, 0644);
78MODULE_PARM_DESC(cache_time, "cache time in milliseconds");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +030079
Lan Tianyu3a670cc2014-05-04 11:07:25 +080080#ifdef CONFIG_ACPI_PROCFS_POWER
81extern struct proc_dir_entry *acpi_lock_battery_dir(void);
82extern void *acpi_unlock_battery_dir(struct proc_dir_entry *acpi_battery_dir);
83
84enum acpi_battery_files {
85 info_tag = 0,
86 state_tag,
87 alarm_tag,
88 ACPI_BATTERY_NUMFILES,
89};
90
91#endif
92
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040093static const struct acpi_device_id battery_device_ids[] = {
94 {"PNP0C0A", 0},
95 {"", 0},
96};
97
98MODULE_DEVICE_TABLE(acpi, battery_device_ids);
99
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400100enum {
101 ACPI_BATTERY_ALARM_PRESENT,
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400102 ACPI_BATTERY_XINFO_PRESENT,
Zhang Rui557d5862010-10-22 10:02:06 +0800103 ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY,
Kamil Iskra4000e622012-11-16 22:28:58 +0100104 /* On Lenovo Thinkpad models from 2010 and 2011, the power unit
105 switches between mWh and mAh depending on whether the system
106 is running on battery or not. When mAh is the unit, most
107 reported values are incorrect and need to be adjusted by
108 10000/design_voltage. Verified on x201, t410, t410s, and x220.
109 Pre-2010 and 2012 models appear to always report in mWh and
110 are thus unaffected (tested with t42, t61, t500, x200, x300,
111 and x230). Also, in mid-2012 Lenovo issued a BIOS update for
112 the 2011 models that fixes the issue (tested on x220 with a
113 post-1.29 BIOS), but as of Nov. 2012, no such update is
114 available for the 2010 models. */
115 ACPI_BATTERY_QUIRK_THINKPAD_MAH,
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400116};
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400117
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400118struct acpi_battery {
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400119 struct mutex lock;
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300120 struct mutex sysfs_lock;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100121 struct power_supply *bat;
122 struct power_supply_desc bat_desc;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400123 struct acpi_device *device;
Kyle McMartin25be5822011-03-22 16:19:50 -0400124 struct notifier_block pm_nb;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400125 unsigned long update_time;
Lan Tianyu016d5ba2013-07-30 14:00:42 +0200126 int revision;
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400127 int rate_now;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400128 int capacity_now;
129 int voltage_now;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400130 int design_capacity;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400131 int full_charge_capacity;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400132 int technology;
133 int design_voltage;
134 int design_capacity_warning;
135 int design_capacity_low;
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400136 int cycle_count;
137 int measurement_accuracy;
138 int max_sampling_time;
139 int min_sampling_time;
140 int max_averaging_interval;
141 int min_averaging_interval;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400142 int capacity_granularity_1;
143 int capacity_granularity_2;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400144 int alarm;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400145 char model_number[32];
146 char serial_number[32];
147 char type[32];
148 char oem_info[32];
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400149 int state;
150 int power_unit;
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400151 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152};
153
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100154#define to_acpi_battery(x) power_supply_get_drvdata(x)
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400155
Andy Shevchenkoefd941f2013-03-11 09:17:06 +0000156static inline int acpi_battery_present(struct acpi_battery *battery)
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400157{
158 return battery->device->status.battery_present;
159}
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400160
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400161static int acpi_battery_technology(struct acpi_battery *battery)
162{
163 if (!strcasecmp("NiCd", battery->type))
164 return POWER_SUPPLY_TECHNOLOGY_NiCd;
165 if (!strcasecmp("NiMH", battery->type))
166 return POWER_SUPPLY_TECHNOLOGY_NiMH;
167 if (!strcasecmp("LION", battery->type))
168 return POWER_SUPPLY_TECHNOLOGY_LION;
Andrey Borzenkovad40e682007-11-10 20:02:49 +0300169 if (!strncasecmp("LI-ION", battery->type, 6))
Alexey Starikovskiy0bde7ee2007-10-28 15:33:10 +0300170 return POWER_SUPPLY_TECHNOLOGY_LION;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400171 if (!strcasecmp("LiP", battery->type))
172 return POWER_SUPPLY_TECHNOLOGY_LIPO;
173 return POWER_SUPPLY_TECHNOLOGY_UNKNOWN;
174}
175
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300176static int acpi_battery_get_state(struct acpi_battery *battery);
Alexey Starikovskiyb19073a2007-10-25 17:10:47 -0400177
Richard Hughes56f382a2009-01-25 15:05:50 +0000178static int acpi_battery_is_charged(struct acpi_battery *battery)
179{
Zhang Rui1ac5aaa2014-05-28 15:23:36 +0800180 /* charging, discharging or critical low */
Richard Hughes56f382a2009-01-25 15:05:50 +0000181 if (battery->state != 0)
182 return 0;
183
184 /* battery not reporting charge */
185 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN ||
186 battery->capacity_now == 0)
187 return 0;
188
189 /* good batteries update full_charge as the batteries degrade */
190 if (battery->full_charge_capacity == battery->capacity_now)
191 return 1;
192
193 /* fallback to using design values for broken batteries */
194 if (battery->design_capacity == battery->capacity_now)
195 return 1;
196
197 /* we don't do any sort of metric based on percentages */
198 return 0;
199}
200
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400201static int acpi_battery_get_property(struct power_supply *psy,
202 enum power_supply_property psp,
203 union power_supply_propval *val)
204{
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200205 int ret = 0;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400206 struct acpi_battery *battery = to_acpi_battery(psy);
207
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300208 if (acpi_battery_present(battery)) {
209 /* run battery update only if it is present */
210 acpi_battery_get_state(battery);
211 } else if (psp != POWER_SUPPLY_PROP_PRESENT)
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400212 return -ENODEV;
213 switch (psp) {
214 case POWER_SUPPLY_PROP_STATUS:
Zhang Rui1ac5aaa2014-05-28 15:23:36 +0800215 if (battery->state & ACPI_BATTERY_STATE_DISCHARGING)
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400216 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
Zhang Rui1ac5aaa2014-05-28 15:23:36 +0800217 else if (battery->state & ACPI_BATTERY_STATE_CHARGING)
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400218 val->intval = POWER_SUPPLY_STATUS_CHARGING;
Richard Hughes56f382a2009-01-25 15:05:50 +0000219 else if (acpi_battery_is_charged(battery))
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400220 val->intval = POWER_SUPPLY_STATUS_FULL;
Roland Dreier4c41d3a2007-11-07 15:09:09 -0800221 else
222 val->intval = POWER_SUPPLY_STATUS_UNKNOWN;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400223 break;
224 case POWER_SUPPLY_PROP_PRESENT:
225 val->intval = acpi_battery_present(battery);
226 break;
227 case POWER_SUPPLY_PROP_TECHNOLOGY:
228 val->intval = acpi_battery_technology(battery);
229 break;
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400230 case POWER_SUPPLY_PROP_CYCLE_COUNT:
231 val->intval = battery->cycle_count;
232 break;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400233 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200234 if (battery->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN)
235 ret = -ENODEV;
236 else
237 val->intval = battery->design_voltage * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400238 break;
239 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200240 if (battery->voltage_now == ACPI_BATTERY_VALUE_UNKNOWN)
241 ret = -ENODEV;
242 else
243 val->intval = battery->voltage_now * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400244 break;
245 case POWER_SUPPLY_PROP_CURRENT_NOW:
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400246 case POWER_SUPPLY_PROP_POWER_NOW:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200247 if (battery->rate_now == ACPI_BATTERY_VALUE_UNKNOWN)
248 ret = -ENODEV;
249 else
250 val->intval = battery->rate_now * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400251 break;
252 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
253 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200254 if (battery->design_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
255 ret = -ENODEV;
256 else
257 val->intval = battery->design_capacity * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400258 break;
259 case POWER_SUPPLY_PROP_CHARGE_FULL:
260 case POWER_SUPPLY_PROP_ENERGY_FULL:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200261 if (battery->full_charge_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
262 ret = -ENODEV;
263 else
264 val->intval = battery->full_charge_capacity * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400265 break;
266 case POWER_SUPPLY_PROP_CHARGE_NOW:
267 case POWER_SUPPLY_PROP_ENERGY_NOW:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200268 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN)
269 ret = -ENODEV;
270 else
271 val->intval = battery->capacity_now * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400272 break;
srinivas pandruvadaa58e1152012-04-05 17:38:54 -0700273 case POWER_SUPPLY_PROP_CAPACITY:
274 if (battery->capacity_now && battery->full_charge_capacity)
275 val->intval = battery->capacity_now * 100/
276 battery->full_charge_capacity;
277 else
278 val->intval = 0;
279 break;
Zhang Rui1ac5aaa2014-05-28 15:23:36 +0800280 case POWER_SUPPLY_PROP_CAPACITY_LEVEL:
281 if (battery->state & ACPI_BATTERY_STATE_CRITICAL)
282 val->intval = POWER_SUPPLY_CAPACITY_LEVEL_CRITICAL;
283 else if (test_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags) &&
284 (battery->capacity_now <= battery->alarm))
285 val->intval = POWER_SUPPLY_CAPACITY_LEVEL_LOW;
286 else if (acpi_battery_is_charged(battery))
287 val->intval = POWER_SUPPLY_CAPACITY_LEVEL_FULL;
288 else
289 val->intval = POWER_SUPPLY_CAPACITY_LEVEL_NORMAL;
290 break;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400291 case POWER_SUPPLY_PROP_MODEL_NAME:
292 val->strval = battery->model_number;
293 break;
294 case POWER_SUPPLY_PROP_MANUFACTURER:
295 val->strval = battery->oem_info;
296 break;
maximilian attems7c2670b2008-01-22 18:46:50 +0100297 case POWER_SUPPLY_PROP_SERIAL_NUMBER:
298 val->strval = battery->serial_number;
299 break;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400300 default:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200301 ret = -EINVAL;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400302 }
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200303 return ret;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400304}
305
306static enum power_supply_property charge_battery_props[] = {
307 POWER_SUPPLY_PROP_STATUS,
308 POWER_SUPPLY_PROP_PRESENT,
309 POWER_SUPPLY_PROP_TECHNOLOGY,
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400310 POWER_SUPPLY_PROP_CYCLE_COUNT,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400311 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
312 POWER_SUPPLY_PROP_VOLTAGE_NOW,
313 POWER_SUPPLY_PROP_CURRENT_NOW,
314 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
315 POWER_SUPPLY_PROP_CHARGE_FULL,
316 POWER_SUPPLY_PROP_CHARGE_NOW,
srinivas pandruvadaa58e1152012-04-05 17:38:54 -0700317 POWER_SUPPLY_PROP_CAPACITY,
Zhang Rui1ac5aaa2014-05-28 15:23:36 +0800318 POWER_SUPPLY_PROP_CAPACITY_LEVEL,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400319 POWER_SUPPLY_PROP_MODEL_NAME,
320 POWER_SUPPLY_PROP_MANUFACTURER,
maximilian attems7c2670b2008-01-22 18:46:50 +0100321 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400322};
323
324static enum power_supply_property energy_battery_props[] = {
325 POWER_SUPPLY_PROP_STATUS,
326 POWER_SUPPLY_PROP_PRESENT,
327 POWER_SUPPLY_PROP_TECHNOLOGY,
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400328 POWER_SUPPLY_PROP_CYCLE_COUNT,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400329 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
330 POWER_SUPPLY_PROP_VOLTAGE_NOW,
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400331 POWER_SUPPLY_PROP_POWER_NOW,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400332 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN,
333 POWER_SUPPLY_PROP_ENERGY_FULL,
334 POWER_SUPPLY_PROP_ENERGY_NOW,
srinivas pandruvadaa58e1152012-04-05 17:38:54 -0700335 POWER_SUPPLY_PROP_CAPACITY,
Zhang Rui1ac5aaa2014-05-28 15:23:36 +0800336 POWER_SUPPLY_PROP_CAPACITY_LEVEL,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400337 POWER_SUPPLY_PROP_MODEL_NAME,
338 POWER_SUPPLY_PROP_MANUFACTURER,
maximilian attems7c2670b2008-01-22 18:46:50 +0100339 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400340};
341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342/* --------------------------------------------------------------------------
343 Battery Management
344 -------------------------------------------------------------------------- */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400345struct acpi_offsets {
346 size_t offset; /* offset inside struct acpi_sbs_battery */
347 u8 mode; /* int or string? */
348};
349
Mathias Krausea4658782015-06-13 14:26:53 +0200350static const struct acpi_offsets state_offsets[] = {
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400351 {offsetof(struct acpi_battery, state), 0},
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400352 {offsetof(struct acpi_battery, rate_now), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400353 {offsetof(struct acpi_battery, capacity_now), 0},
354 {offsetof(struct acpi_battery, voltage_now), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400355};
356
Mathias Krausea4658782015-06-13 14:26:53 +0200357static const struct acpi_offsets info_offsets[] = {
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400358 {offsetof(struct acpi_battery, power_unit), 0},
359 {offsetof(struct acpi_battery, design_capacity), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400360 {offsetof(struct acpi_battery, full_charge_capacity), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400361 {offsetof(struct acpi_battery, technology), 0},
362 {offsetof(struct acpi_battery, design_voltage), 0},
363 {offsetof(struct acpi_battery, design_capacity_warning), 0},
364 {offsetof(struct acpi_battery, design_capacity_low), 0},
365 {offsetof(struct acpi_battery, capacity_granularity_1), 0},
366 {offsetof(struct acpi_battery, capacity_granularity_2), 0},
367 {offsetof(struct acpi_battery, model_number), 1},
368 {offsetof(struct acpi_battery, serial_number), 1},
369 {offsetof(struct acpi_battery, type), 1},
370 {offsetof(struct acpi_battery, oem_info), 1},
371};
372
Mathias Krausea4658782015-06-13 14:26:53 +0200373static const struct acpi_offsets extended_info_offsets[] = {
Lan Tianyu016d5ba2013-07-30 14:00:42 +0200374 {offsetof(struct acpi_battery, revision), 0},
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400375 {offsetof(struct acpi_battery, power_unit), 0},
376 {offsetof(struct acpi_battery, design_capacity), 0},
377 {offsetof(struct acpi_battery, full_charge_capacity), 0},
378 {offsetof(struct acpi_battery, technology), 0},
379 {offsetof(struct acpi_battery, design_voltage), 0},
380 {offsetof(struct acpi_battery, design_capacity_warning), 0},
381 {offsetof(struct acpi_battery, design_capacity_low), 0},
382 {offsetof(struct acpi_battery, cycle_count), 0},
383 {offsetof(struct acpi_battery, measurement_accuracy), 0},
384 {offsetof(struct acpi_battery, max_sampling_time), 0},
385 {offsetof(struct acpi_battery, min_sampling_time), 0},
386 {offsetof(struct acpi_battery, max_averaging_interval), 0},
387 {offsetof(struct acpi_battery, min_averaging_interval), 0},
388 {offsetof(struct acpi_battery, capacity_granularity_1), 0},
389 {offsetof(struct acpi_battery, capacity_granularity_2), 0},
390 {offsetof(struct acpi_battery, model_number), 1},
391 {offsetof(struct acpi_battery, serial_number), 1},
392 {offsetof(struct acpi_battery, type), 1},
393 {offsetof(struct acpi_battery, oem_info), 1},
394};
395
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400396static int extract_package(struct acpi_battery *battery,
397 union acpi_object *package,
Mathias Krausea4658782015-06-13 14:26:53 +0200398 const struct acpi_offsets *offsets, int num)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300399{
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300400 int i;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400401 union acpi_object *element;
402 if (package->type != ACPI_TYPE_PACKAGE)
403 return -EFAULT;
404 for (i = 0; i < num; ++i) {
405 if (package->package.count <= i)
406 return -EFAULT;
407 element = &package->package.elements[i];
408 if (offsets[i].mode) {
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300409 u8 *ptr = (u8 *)battery + offsets[i].offset;
410 if (element->type == ACPI_TYPE_STRING ||
411 element->type == ACPI_TYPE_BUFFER)
412 strncpy(ptr, element->string.pointer, 32);
413 else if (element->type == ACPI_TYPE_INTEGER) {
414 strncpy(ptr, (u8 *)&element->integer.value,
Lin Ming439913f2010-01-28 10:53:19 +0800415 sizeof(u64));
416 ptr[sizeof(u64)] = 0;
Alexey Starikovskiyb8a1bdb2008-03-17 22:37:42 -0400417 } else
418 *ptr = 0; /* don't have value */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400419 } else {
Alexey Starikovskiyb8a1bdb2008-03-17 22:37:42 -0400420 int *x = (int *)((u8 *)battery + offsets[i].offset);
421 *x = (element->type == ACPI_TYPE_INTEGER) ?
422 element->integer.value : -1;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300423 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300424 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300425 return 0;
426}
427
428static int acpi_battery_get_status(struct acpi_battery *battery)
429{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400430 if (acpi_bus_get_status(battery->device)) {
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300431 ACPI_EXCEPTION((AE_INFO, AE_ERROR, "Evaluating _STA"));
432 return -ENODEV;
433 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400434 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300435}
436
437static int acpi_battery_get_info(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400439 int result = -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -0400440 acpi_status status = 0;
Nicholas Mazzuca0f4c6542013-05-08 23:11:15 +0000441 char *name = test_bit(ACPI_BATTERY_XINFO_PRESENT, &battery->flags) ?
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400442 "_BIX" : "_BIF";
443
Len Brown4be44fc2005-08-05 00:44:28 -0400444 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300446 if (!acpi_battery_present(battery))
447 return 0;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400448 mutex_lock(&battery->lock);
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400449 status = acpi_evaluate_object(battery->device->handle, name,
450 NULL, &buffer);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400451 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 if (ACPI_FAILURE(status)) {
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400454 ACPI_EXCEPTION((AE_INFO, status, "Evaluating %s", name));
Patrick Mocheld550d982006-06-27 00:41:40 -0400455 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 }
Lan Tianyua90b4032014-01-06 22:50:37 +0800457
458 if (battery_bix_broken_package)
459 result = extract_package(battery, buffer.pointer,
460 extended_info_offsets + 1,
461 ARRAY_SIZE(extended_info_offsets) - 1);
462 else if (test_bit(ACPI_BATTERY_XINFO_PRESENT, &battery->flags))
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400463 result = extract_package(battery, buffer.pointer,
464 extended_info_offsets,
465 ARRAY_SIZE(extended_info_offsets));
466 else
467 result = extract_package(battery, buffer.pointer,
468 info_offsets, ARRAY_SIZE(info_offsets));
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400469 kfree(buffer.pointer);
Zhang Rui557d5862010-10-22 10:02:06 +0800470 if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags))
471 battery->full_charge_capacity = battery->design_capacity;
Kamil Iskra4000e622012-11-16 22:28:58 +0100472 if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH, &battery->flags) &&
473 battery->power_unit && battery->design_voltage) {
474 battery->design_capacity = battery->design_capacity *
475 10000 / battery->design_voltage;
476 battery->full_charge_capacity = battery->full_charge_capacity *
477 10000 / battery->design_voltage;
478 battery->design_capacity_warning =
479 battery->design_capacity_warning *
480 10000 / battery->design_voltage;
481 /* Curiously, design_capacity_low, unlike the rest of them,
482 is correct. */
483 /* capacity_granularity_* equal 1 on the systems tested, so
484 it's impossible to tell if they would need an adjustment
485 or not if their values were higher. */
486 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400487 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488}
489
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300490static int acpi_battery_get_state(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
Len Brown4be44fc2005-08-05 00:44:28 -0400492 int result = 0;
493 acpi_status status = 0;
494 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300496 if (!acpi_battery_present(battery))
497 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400499 if (battery->update_time &&
500 time_before(jiffies, battery->update_time +
501 msecs_to_jiffies(cache_time)))
502 return 0;
503
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400504 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400505 status = acpi_evaluate_object(battery->device->handle, "_BST",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400506 NULL, &buffer);
507 mutex_unlock(&battery->lock);
Len Brown5b31d892007-08-15 00:19:26 -0400508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400510 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BST"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400511 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400513
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400514 result = extract_package(battery, buffer.pointer,
515 state_offsets, ARRAY_SIZE(state_offsets));
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400516 battery->update_time = jiffies;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400517 kfree(buffer.pointer);
Hector Martinbc76f902009-08-06 15:57:48 -0700518
Lan Tianyu55003b22011-06-30 11:33:12 +0800519 /* For buggy DSDTs that report negative 16-bit values for either
520 * charging or discharging current and/or report 0 as 65536
521 * due to bad math.
522 */
523 if (battery->power_unit == ACPI_BATTERY_POWER_UNIT_MA &&
524 battery->rate_now != ACPI_BATTERY_VALUE_UNKNOWN &&
525 (s16)(battery->rate_now) < 0) {
Hector Martinbc76f902009-08-06 15:57:48 -0700526 battery->rate_now = abs((s16)battery->rate_now);
Martin Kepplinger92375162015-03-13 00:48:17 +0100527 printk_once(KERN_WARNING FW_BUG
528 "battery: (dis)charge rate invalid.\n");
Lan Tianyu55003b22011-06-30 11:33:12 +0800529 }
Hector Martinbc76f902009-08-06 15:57:48 -0700530
Zhang Rui557d5862010-10-22 10:02:06 +0800531 if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags)
532 && battery->capacity_now >= 0 && battery->capacity_now <= 100)
533 battery->capacity_now = (battery->capacity_now *
534 battery->full_charge_capacity) / 100;
Kamil Iskra4000e622012-11-16 22:28:58 +0100535 if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH, &battery->flags) &&
536 battery->power_unit && battery->design_voltage) {
537 battery->capacity_now = battery->capacity_now *
538 10000 / battery->design_voltage;
539 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400540 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541}
542
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400543static int acpi_battery_set_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544{
Len Brown4be44fc2005-08-05 00:44:28 -0400545 acpi_status status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400547 if (!acpi_battery_present(battery) ||
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400548 !test_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags))
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300549 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400551 mutex_lock(&battery->lock);
Jiang Liu0db98202013-06-29 00:24:39 +0800552 status = acpi_execute_simple_method(battery->device->handle, "_BTP",
553 battery->alarm);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400554 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400557 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400559 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Alarm set to %d\n", battery->alarm));
Patrick Mocheld550d982006-06-27 00:41:40 -0400560 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561}
562
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300563static int acpi_battery_init_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300565 /* See if alarms are supported, and if so, set default */
Jiang Liu952c63e2013-06-29 00:24:38 +0800566 if (!acpi_has_method(battery->device->handle, "_BTP")) {
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400567 clear_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400568 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 }
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400570 set_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400571 if (!battery->alarm)
572 battery->alarm = battery->design_capacity_warning;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400573 return acpi_battery_set_alarm(battery);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574}
575
Andrey Borzenkov508df922007-10-28 12:50:09 +0300576static ssize_t acpi_battery_alarm_show(struct device *dev,
577 struct device_attribute *attr,
578 char *buf)
579{
580 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
581 return sprintf(buf, "%d\n", battery->alarm * 1000);
582}
583
584static ssize_t acpi_battery_alarm_store(struct device *dev,
585 struct device_attribute *attr,
586 const char *buf, size_t count)
587{
588 unsigned long x;
589 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
Luis G.F47a08c82014-01-21 15:40:43 +0100590 if (sscanf(buf, "%lu\n", &x) == 1)
Andrey Borzenkov508df922007-10-28 12:50:09 +0300591 battery->alarm = x/1000;
592 if (acpi_battery_present(battery))
593 acpi_battery_set_alarm(battery);
594 return count;
595}
596
597static struct device_attribute alarm_attr = {
Parag Warudkar01e8ef12008-10-18 20:28:50 -0700598 .attr = {.name = "alarm", .mode = 0644},
Andrey Borzenkov508df922007-10-28 12:50:09 +0300599 .show = acpi_battery_alarm_show,
600 .store = acpi_battery_alarm_store,
601};
602
603static int sysfs_add_battery(struct acpi_battery *battery)
604{
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100605 struct power_supply_config psy_cfg = { .drv_data = battery, };
Andrey Borzenkov508df922007-10-28 12:50:09 +0300606
Lan Tianyuae6f6182011-06-30 11:32:40 +0800607 if (battery->power_unit == ACPI_BATTERY_POWER_UNIT_MA) {
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100608 battery->bat_desc.properties = charge_battery_props;
609 battery->bat_desc.num_properties =
Andrey Borzenkov508df922007-10-28 12:50:09 +0300610 ARRAY_SIZE(charge_battery_props);
611 } else {
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100612 battery->bat_desc.properties = energy_battery_props;
613 battery->bat_desc.num_properties =
Andrey Borzenkov508df922007-10-28 12:50:09 +0300614 ARRAY_SIZE(energy_battery_props);
615 }
616
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100617 battery->bat_desc.name = acpi_device_bid(battery->device);
618 battery->bat_desc.type = POWER_SUPPLY_TYPE_BATTERY;
619 battery->bat_desc.get_property = acpi_battery_get_property;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300620
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100621 battery->bat = power_supply_register_no_ws(&battery->device->dev,
622 &battery->bat_desc, &psy_cfg);
Zhang Ruie0d1f092014-05-28 15:23:38 +0800623
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100624 if (IS_ERR(battery->bat)) {
625 int result = PTR_ERR(battery->bat);
626
627 battery->bat = NULL;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300628 return result;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100629 }
630 return device_create_file(&battery->bat->dev, &alarm_attr);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300631}
632
633static void sysfs_remove_battery(struct acpi_battery *battery)
634{
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300635 mutex_lock(&battery->sysfs_lock);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100636 if (!battery->bat) {
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300637 mutex_unlock(&battery->sysfs_lock);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300638 return;
Lan Tianyu9c921c222011-06-30 11:34:12 +0800639 }
640
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100641 device_remove_file(&battery->bat->dev, &alarm_attr);
642 power_supply_unregister(battery->bat);
643 battery->bat = NULL;
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300644 mutex_unlock(&battery->sysfs_lock);
Hector Martinbc76f902009-08-06 15:57:48 -0700645}
646
Kamil Iskra4000e622012-11-16 22:28:58 +0100647static void find_battery(const struct dmi_header *dm, void *private)
648{
649 struct acpi_battery *battery = (struct acpi_battery *)private;
650 /* Note: the hardcoded offsets below have been extracted from
651 the source code of dmidecode. */
652 if (dm->type == DMI_ENTRY_PORTABLE_BATTERY && dm->length >= 8) {
653 const u8 *dmi_data = (const u8 *)(dm + 1);
654 int dmi_capacity = get_unaligned((const u16 *)(dmi_data + 6));
655 if (dm->length >= 18)
656 dmi_capacity *= dmi_data[17];
657 if (battery->design_capacity * battery->design_voltage / 1000
658 != dmi_capacity &&
659 battery->design_capacity * 10 == dmi_capacity)
660 set_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH,
661 &battery->flags);
662 }
663}
664
Zhang Rui557d5862010-10-22 10:02:06 +0800665/*
666 * According to the ACPI spec, some kinds of primary batteries can
667 * report percentage battery remaining capacity directly to OS.
668 * In this case, it reports the Last Full Charged Capacity == 100
669 * and BatteryPresentRate == 0xFFFFFFFF.
670 *
671 * Now we found some battery reports percentage remaining capacity
672 * even if it's rechargeable.
673 * https://bugzilla.kernel.org/show_bug.cgi?id=15979
674 *
675 * Handle this correctly so that they won't break userspace.
676 */
Lan Tianyu7b786222011-06-30 11:33:27 +0800677static void acpi_battery_quirks(struct acpi_battery *battery)
Zhang Rui557d5862010-10-22 10:02:06 +0800678{
679 if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags))
Nicholas Mazzuca0f4c6542013-05-08 23:11:15 +0000680 return;
Zhang Rui557d5862010-10-22 10:02:06 +0800681
Nicholas Mazzuca0f4c6542013-05-08 23:11:15 +0000682 if (battery->full_charge_capacity == 100 &&
683 battery->rate_now == ACPI_BATTERY_VALUE_UNKNOWN &&
684 battery->capacity_now >= 0 && battery->capacity_now <= 100) {
Zhang Rui557d5862010-10-22 10:02:06 +0800685 set_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags);
686 battery->full_charge_capacity = battery->design_capacity;
687 battery->capacity_now = (battery->capacity_now *
688 battery->full_charge_capacity) / 100;
689 }
Kamil Iskra4000e622012-11-16 22:28:58 +0100690
691 if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH, &battery->flags))
Nicholas Mazzuca0f4c6542013-05-08 23:11:15 +0000692 return;
Kamil Iskra4000e622012-11-16 22:28:58 +0100693
694 if (battery->power_unit && dmi_name_in_vendors("LENOVO")) {
695 const char *s;
696 s = dmi_get_system_info(DMI_PRODUCT_VERSION);
Rasmus Villemoesffd8a732014-09-16 22:51:24 +0200697 if (s && !strncasecmp(s, "ThinkPad", 8)) {
Kamil Iskra4000e622012-11-16 22:28:58 +0100698 dmi_walk(find_battery, battery);
699 if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH,
700 &battery->flags) &&
701 battery->design_voltage) {
702 battery->design_capacity =
703 battery->design_capacity *
704 10000 / battery->design_voltage;
705 battery->full_charge_capacity =
706 battery->full_charge_capacity *
707 10000 / battery->design_voltage;
708 battery->design_capacity_warning =
709 battery->design_capacity_warning *
710 10000 / battery->design_voltage;
711 battery->capacity_now = battery->capacity_now *
712 10000 / battery->design_voltage;
713 }
714 }
715 }
Zhang Rui557d5862010-10-22 10:02:06 +0800716}
717
Lan Tianyu9e50bc12014-05-04 14:07:06 +0800718static int acpi_battery_update(struct acpi_battery *battery, bool resume)
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500719{
Alexey Starikovskiy50b17852008-12-23 02:44:54 +0300720 int result, old_present = acpi_battery_present(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500721 result = acpi_battery_get_status(battery);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300722 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300723 return result;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300724 if (!acpi_battery_present(battery)) {
725 sysfs_remove_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500726 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300727 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300728 }
Lan Tianyu9e50bc12014-05-04 14:07:06 +0800729
730 if (resume)
731 return 0;
732
Alexey Starikovskiy50b17852008-12-23 02:44:54 +0300733 if (!battery->update_time ||
734 old_present != acpi_battery_present(battery)) {
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500735 result = acpi_battery_get_info(battery);
736 if (result)
737 return result;
738 acpi_battery_init_alarm(battery);
739 }
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100740 if (!battery->bat) {
Stefan Hajnoczieb03cb02011-07-12 09:03:29 +0100741 result = sysfs_add_battery(battery);
742 if (result)
743 return result;
744 }
Zhang Rui557d5862010-10-22 10:02:06 +0800745 result = acpi_battery_get_state(battery);
Zhang Ruie0d1f092014-05-28 15:23:38 +0800746 if (result)
747 return result;
Lan Tianyu7b786222011-06-30 11:33:27 +0800748 acpi_battery_quirks(battery);
Zhang Ruie0d1f092014-05-28 15:23:38 +0800749
750 /*
751 * Wakeup the system if battery is critical low
752 * or lower than the alarm level
753 */
754 if ((battery->state & ACPI_BATTERY_STATE_CRITICAL) ||
755 (test_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags) &&
756 (battery->capacity_now <= battery->alarm)))
757 pm_wakeup_event(&battery->device->dev, 0);
758
Zhang Rui557d5862010-10-22 10:02:06 +0800759 return result;
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500760}
761
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +0100762static void acpi_battery_refresh(struct acpi_battery *battery)
763{
Andy Whitcroftc5971452012-05-03 14:48:26 +0100764 int power_unit;
765
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100766 if (!battery->bat)
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +0100767 return;
768
Andy Whitcroftc5971452012-05-03 14:48:26 +0100769 power_unit = battery->power_unit;
770
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +0100771 acpi_battery_get_info(battery);
Andy Whitcroftc5971452012-05-03 14:48:26 +0100772
773 if (power_unit == battery->power_unit)
774 return;
775
776 /* The battery has changed its reporting units. */
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +0100777 sysfs_remove_battery(battery);
778 sysfs_add_battery(battery);
779}
780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781/* --------------------------------------------------------------------------
Lan Tianyu3a670cc2014-05-04 11:07:25 +0800782 FS Interface (/proc)
783 -------------------------------------------------------------------------- */
784
785#ifdef CONFIG_ACPI_PROCFS_POWER
786static struct proc_dir_entry *acpi_battery_dir;
787
Mathias Krause27059b92015-06-13 14:26:54 +0200788static const char *acpi_battery_units(const struct acpi_battery *battery)
789{
790 return (battery->power_unit == ACPI_BATTERY_POWER_UNIT_MA) ?
791 "mA" : "mW";
792}
793
Lan Tianyu3a670cc2014-05-04 11:07:25 +0800794static int acpi_battery_print_info(struct seq_file *seq, int result)
795{
796 struct acpi_battery *battery = seq->private;
797
798 if (result)
799 goto end;
800
801 seq_printf(seq, "present: %s\n",
802 acpi_battery_present(battery) ? "yes" : "no");
803 if (!acpi_battery_present(battery))
804 goto end;
805 if (battery->design_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
806 seq_printf(seq, "design capacity: unknown\n");
807 else
808 seq_printf(seq, "design capacity: %d %sh\n",
809 battery->design_capacity,
810 acpi_battery_units(battery));
811
812 if (battery->full_charge_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
813 seq_printf(seq, "last full capacity: unknown\n");
814 else
815 seq_printf(seq, "last full capacity: %d %sh\n",
816 battery->full_charge_capacity,
817 acpi_battery_units(battery));
818
819 seq_printf(seq, "battery technology: %srechargeable\n",
820 (!battery->technology)?"non-":"");
821
822 if (battery->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN)
823 seq_printf(seq, "design voltage: unknown\n");
824 else
825 seq_printf(seq, "design voltage: %d mV\n",
826 battery->design_voltage);
827 seq_printf(seq, "design capacity warning: %d %sh\n",
828 battery->design_capacity_warning,
829 acpi_battery_units(battery));
830 seq_printf(seq, "design capacity low: %d %sh\n",
831 battery->design_capacity_low,
832 acpi_battery_units(battery));
833 seq_printf(seq, "cycle count: %i\n", battery->cycle_count);
834 seq_printf(seq, "capacity granularity 1: %d %sh\n",
835 battery->capacity_granularity_1,
836 acpi_battery_units(battery));
837 seq_printf(seq, "capacity granularity 2: %d %sh\n",
838 battery->capacity_granularity_2,
839 acpi_battery_units(battery));
840 seq_printf(seq, "model number: %s\n", battery->model_number);
841 seq_printf(seq, "serial number: %s\n", battery->serial_number);
842 seq_printf(seq, "battery type: %s\n", battery->type);
843 seq_printf(seq, "OEM info: %s\n", battery->oem_info);
844 end:
845 if (result)
846 seq_printf(seq, "ERROR: Unable to read battery info\n");
847 return result;
848}
849
850static int acpi_battery_print_state(struct seq_file *seq, int result)
851{
852 struct acpi_battery *battery = seq->private;
853
854 if (result)
855 goto end;
856
857 seq_printf(seq, "present: %s\n",
858 acpi_battery_present(battery) ? "yes" : "no");
859 if (!acpi_battery_present(battery))
860 goto end;
861
862 seq_printf(seq, "capacity state: %s\n",
863 (battery->state & 0x04) ? "critical" : "ok");
864 if ((battery->state & 0x01) && (battery->state & 0x02))
865 seq_printf(seq,
866 "charging state: charging/discharging\n");
867 else if (battery->state & 0x01)
868 seq_printf(seq, "charging state: discharging\n");
869 else if (battery->state & 0x02)
870 seq_printf(seq, "charging state: charging\n");
871 else
872 seq_printf(seq, "charging state: charged\n");
873
874 if (battery->rate_now == ACPI_BATTERY_VALUE_UNKNOWN)
875 seq_printf(seq, "present rate: unknown\n");
876 else
877 seq_printf(seq, "present rate: %d %s\n",
878 battery->rate_now, acpi_battery_units(battery));
879
880 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN)
881 seq_printf(seq, "remaining capacity: unknown\n");
882 else
883 seq_printf(seq, "remaining capacity: %d %sh\n",
884 battery->capacity_now, acpi_battery_units(battery));
885 if (battery->voltage_now == ACPI_BATTERY_VALUE_UNKNOWN)
886 seq_printf(seq, "present voltage: unknown\n");
887 else
888 seq_printf(seq, "present voltage: %d mV\n",
889 battery->voltage_now);
890 end:
891 if (result)
892 seq_printf(seq, "ERROR: Unable to read battery state\n");
893
894 return result;
895}
896
897static int acpi_battery_print_alarm(struct seq_file *seq, int result)
898{
899 struct acpi_battery *battery = seq->private;
900
901 if (result)
902 goto end;
903
904 if (!acpi_battery_present(battery)) {
905 seq_printf(seq, "present: no\n");
906 goto end;
907 }
908 seq_printf(seq, "alarm: ");
909 if (!battery->alarm)
910 seq_printf(seq, "unsupported\n");
911 else
912 seq_printf(seq, "%u %sh\n", battery->alarm,
913 acpi_battery_units(battery));
914 end:
915 if (result)
916 seq_printf(seq, "ERROR: Unable to read battery alarm\n");
917 return result;
918}
919
920static ssize_t acpi_battery_write_alarm(struct file *file,
921 const char __user * buffer,
922 size_t count, loff_t * ppos)
923{
924 int result = 0;
925 char alarm_string[12] = { '\0' };
926 struct seq_file *m = file->private_data;
927 struct acpi_battery *battery = m->private;
928
929 if (!battery || (count > sizeof(alarm_string) - 1))
930 return -EINVAL;
931 if (!acpi_battery_present(battery)) {
932 result = -ENODEV;
933 goto end;
934 }
935 if (copy_from_user(alarm_string, buffer, count)) {
936 result = -EFAULT;
937 goto end;
938 }
939 alarm_string[count] = '\0';
Christoph Jaeger3d915892014-06-13 21:49:58 +0200940 if (kstrtoint(alarm_string, 0, &battery->alarm)) {
941 result = -EINVAL;
942 goto end;
943 }
Lan Tianyu3a670cc2014-05-04 11:07:25 +0800944 result = acpi_battery_set_alarm(battery);
945 end:
946 if (!result)
947 return count;
948 return result;
949}
950
951typedef int(*print_func)(struct seq_file *seq, int result);
952
953static print_func acpi_print_funcs[ACPI_BATTERY_NUMFILES] = {
954 acpi_battery_print_info,
955 acpi_battery_print_state,
956 acpi_battery_print_alarm,
957};
958
959static int acpi_battery_read(int fid, struct seq_file *seq)
960{
961 struct acpi_battery *battery = seq->private;
Lan Tianyu9e50bc12014-05-04 14:07:06 +0800962 int result = acpi_battery_update(battery, false);
Lan Tianyu3a670cc2014-05-04 11:07:25 +0800963 return acpi_print_funcs[fid](seq, result);
964}
965
966#define DECLARE_FILE_FUNCTIONS(_name) \
967static int acpi_battery_read_##_name(struct seq_file *seq, void *offset) \
968{ \
969 return acpi_battery_read(_name##_tag, seq); \
970} \
971static int acpi_battery_##_name##_open_fs(struct inode *inode, struct file *file) \
972{ \
973 return single_open(file, acpi_battery_read_##_name, PDE_DATA(inode)); \
974}
975
976DECLARE_FILE_FUNCTIONS(info);
977DECLARE_FILE_FUNCTIONS(state);
978DECLARE_FILE_FUNCTIONS(alarm);
979
980#undef DECLARE_FILE_FUNCTIONS
981
982#define FILE_DESCRIPTION_RO(_name) \
983 { \
984 .name = __stringify(_name), \
985 .mode = S_IRUGO, \
986 .ops = { \
987 .open = acpi_battery_##_name##_open_fs, \
988 .read = seq_read, \
989 .llseek = seq_lseek, \
990 .release = single_release, \
991 .owner = THIS_MODULE, \
992 }, \
993 }
994
995#define FILE_DESCRIPTION_RW(_name) \
996 { \
997 .name = __stringify(_name), \
998 .mode = S_IFREG | S_IRUGO | S_IWUSR, \
999 .ops = { \
1000 .open = acpi_battery_##_name##_open_fs, \
1001 .read = seq_read, \
1002 .llseek = seq_lseek, \
1003 .write = acpi_battery_write_##_name, \
1004 .release = single_release, \
1005 .owner = THIS_MODULE, \
1006 }, \
1007 }
1008
1009static const struct battery_file {
1010 struct file_operations ops;
1011 umode_t mode;
1012 const char *name;
1013} acpi_battery_file[] = {
1014 FILE_DESCRIPTION_RO(info),
1015 FILE_DESCRIPTION_RO(state),
1016 FILE_DESCRIPTION_RW(alarm),
1017};
1018
1019#undef FILE_DESCRIPTION_RO
1020#undef FILE_DESCRIPTION_RW
1021
1022static int acpi_battery_add_fs(struct acpi_device *device)
1023{
1024 struct proc_dir_entry *entry = NULL;
1025 int i;
1026
1027 printk(KERN_WARNING PREFIX "Deprecated procfs I/F for battery is loaded,"
1028 " please retry with CONFIG_ACPI_PROCFS_POWER cleared\n");
1029 if (!acpi_device_dir(device)) {
1030 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
1031 acpi_battery_dir);
1032 if (!acpi_device_dir(device))
1033 return -ENODEV;
1034 }
1035
1036 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i) {
1037 entry = proc_create_data(acpi_battery_file[i].name,
1038 acpi_battery_file[i].mode,
1039 acpi_device_dir(device),
1040 &acpi_battery_file[i].ops,
1041 acpi_driver_data(device));
1042 if (!entry)
1043 return -ENODEV;
1044 }
1045 return 0;
1046}
1047
1048static void acpi_battery_remove_fs(struct acpi_device *device)
1049{
1050 int i;
1051 if (!acpi_device_dir(device))
1052 return;
1053 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i)
1054 remove_proc_entry(acpi_battery_file[i].name,
1055 acpi_device_dir(device));
1056
1057 remove_proc_entry(acpi_device_bid(device), acpi_battery_dir);
1058 acpi_device_dir(device) = NULL;
1059}
1060
1061#endif
1062
1063/* --------------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 Driver Interface
1065 -------------------------------------------------------------------------- */
1066
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001067static void acpi_battery_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068{
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001069 struct acpi_battery *battery = acpi_driver_data(device);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001070 struct power_supply *old;
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001071
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -04001073 return;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001074 old = battery->bat;
Alexander Mezinf43691c2014-06-04 02:01:23 +07001075 /*
1076 * On Acer Aspire V5-573G notifications are sometimes triggered too
1077 * early. For example, when AC is unplugged and notification is
1078 * triggered, battery state is still reported as "Full", and changes to
1079 * "Discharging" only after short delay, without any notification.
1080 */
1081 if (battery_notification_delay_ms > 0)
1082 msleep(battery_notification_delay_ms);
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +01001083 if (event == ACPI_BATTERY_NOTIFY_INFO)
1084 acpi_battery_refresh(battery);
Lan Tianyu9e50bc12014-05-04 14:07:06 +08001085 acpi_battery_update(battery, false);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +04001086 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +01001087 dev_name(&device->dev), event,
Vladimir Lebedev9ea7d572007-02-20 15:48:06 +03001088 acpi_battery_present(battery));
Alexander Mezin411e0f72014-03-12 00:58:47 +07001089 acpi_notifier_call_chain(device, event, acpi_battery_present(battery));
Justin P. Mattock2345baf2009-12-13 14:42:36 -08001090 /* acpi_battery_update could remove power_supply object */
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001091 if (old && battery->bat)
1092 power_supply_changed(battery->bat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093}
1094
Kyle McMartin25be5822011-03-22 16:19:50 -04001095static int battery_notify(struct notifier_block *nb,
1096 unsigned long mode, void *_unused)
1097{
1098 struct acpi_battery *battery = container_of(nb, struct acpi_battery,
1099 pm_nb);
Lan Tianyu9e50bc12014-05-04 14:07:06 +08001100 int result;
1101
Kyle McMartin25be5822011-03-22 16:19:50 -04001102 switch (mode) {
Lan Tianyud5a59112011-06-30 11:33:40 +08001103 case PM_POST_HIBERNATION:
Kyle McMartin25be5822011-03-22 16:19:50 -04001104 case PM_POST_SUSPEND:
Lan Tianyu9e50bc12014-05-04 14:07:06 +08001105 if (!acpi_battery_present(battery))
1106 return 0;
1107
Krzysztof Kozlowski31f7dc72015-04-14 22:24:13 +09001108 if (!battery->bat) {
Lan Tianyu9e50bc12014-05-04 14:07:06 +08001109 result = acpi_battery_get_info(battery);
1110 if (result)
1111 return result;
1112
1113 result = sysfs_add_battery(battery);
1114 if (result)
1115 return result;
1116 } else
1117 acpi_battery_refresh(battery);
1118
1119 acpi_battery_init_alarm(battery);
1120 acpi_battery_get_state(battery);
Kyle McMartin25be5822011-03-22 16:19:50 -04001121 break;
1122 }
1123
1124 return 0;
1125}
1126
Mathias Krause048d16d2015-06-13 14:26:55 +02001127static int __init
1128battery_bix_broken_package_quirk(const struct dmi_system_id *d)
Alexander Mezin3f5dc082014-06-04 02:01:22 +07001129{
1130 battery_bix_broken_package = 1;
1131 return 0;
1132}
1133
Mathias Krause048d16d2015-06-13 14:26:55 +02001134static int __init
1135battery_notification_delay_quirk(const struct dmi_system_id *d)
Alexander Mezinf43691c2014-06-04 02:01:23 +07001136{
1137 battery_notification_delay_ms = 1000;
1138 return 0;
1139}
1140
Mathias Krause048d16d2015-06-13 14:26:55 +02001141static const struct dmi_system_id bat_dmi_table[] __initconst = {
Lan Tianyua90b4032014-01-06 22:50:37 +08001142 {
Alexander Mezin3f5dc082014-06-04 02:01:22 +07001143 .callback = battery_bix_broken_package_quirk,
Lan Tianyua90b4032014-01-06 22:50:37 +08001144 .ident = "NEC LZ750/LS",
1145 .matches = {
1146 DMI_MATCH(DMI_SYS_VENDOR, "NEC"),
1147 DMI_MATCH(DMI_PRODUCT_NAME, "PC-LZ750LS"),
1148 },
1149 },
Alexander Mezinf43691c2014-06-04 02:01:23 +07001150 {
1151 .callback = battery_notification_delay_quirk,
1152 .ident = "Acer Aspire V5-573G",
1153 .matches = {
1154 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
1155 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire V5-573G"),
1156 },
1157 },
Lan Tianyua90b4032014-01-06 22:50:37 +08001158 {},
1159};
1160
Lan Tianyu75646e72014-07-07 15:47:12 +08001161/*
1162 * Some machines'(E,G Lenovo Z480) ECs are not stable
1163 * during boot up and this causes battery driver fails to be
1164 * probed due to failure of getting battery information
1165 * from EC sometimes. After several retries, the operation
1166 * may work. So add retry code here and 20ms sleep between
1167 * every retries.
1168 */
1169static int acpi_battery_update_retry(struct acpi_battery *battery)
1170{
1171 int retry, ret;
1172
1173 for (retry = 5; retry; retry--) {
1174 ret = acpi_battery_update(battery, false);
1175 if (!ret)
1176 break;
1177
1178 msleep(20);
1179 }
1180 return ret;
1181}
1182
Len Brown4be44fc2005-08-05 00:44:28 -04001183static int acpi_battery_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184{
Len Brown4be44fc2005-08-05 00:44:28 -04001185 int result = 0;
Len Brown4be44fc2005-08-05 00:44:28 -04001186 struct acpi_battery *battery = NULL;
Jiang Liu952c63e2013-06-29 00:24:38 +08001187
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -04001189 return -EINVAL;
Lan Tianyu40e7fcb2014-11-23 21:22:54 +08001190
1191 if (device->dep_unmet)
1192 return -EPROBE_DEFER;
1193
Burman Yan36bcbec2006-12-19 12:56:11 -08001194 battery = kzalloc(sizeof(struct acpi_battery), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -04001196 return -ENOMEM;
Patrick Mochel145def82006-05-19 16:54:39 -04001197 battery->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 strcpy(acpi_device_name(device), ACPI_BATTERY_DEVICE_NAME);
1199 strcpy(acpi_device_class(device), ACPI_BATTERY_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07001200 device->driver_data = battery;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +04001201 mutex_init(&battery->lock);
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +03001202 mutex_init(&battery->sysfs_lock);
Jiang Liu952c63e2013-06-29 00:24:38 +08001203 if (acpi_has_method(battery->device->handle, "_BIX"))
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +04001204 set_bit(ACPI_BATTERY_XINFO_PRESENT, &battery->flags);
Lan Tianyu75646e72014-07-07 15:47:12 +08001205
1206 result = acpi_battery_update_retry(battery);
Stefan Hajnoczieb03cb02011-07-12 09:03:29 +01001207 if (result)
1208 goto fail;
Lan Tianyu75646e72014-07-07 15:47:12 +08001209
Lan Tianyu3a670cc2014-05-04 11:07:25 +08001210#ifdef CONFIG_ACPI_PROCFS_POWER
1211 result = acpi_battery_add_fs(device);
1212#endif
1213 if (result) {
1214#ifdef CONFIG_ACPI_PROCFS_POWER
1215 acpi_battery_remove_fs(device);
1216#endif
1217 goto fail;
1218 }
Kyle McMartin25be5822011-03-22 16:19:50 -04001219
Stefan Hajnoczie80bba42011-07-12 09:03:28 +01001220 printk(KERN_INFO PREFIX "%s Slot [%s] (battery %s)\n",
1221 ACPI_BATTERY_DEVICE_NAME, acpi_device_bid(device),
1222 device->status.battery_present ? "present" : "absent");
1223
Kyle McMartin25be5822011-03-22 16:19:50 -04001224 battery->pm_nb.notifier_call = battery_notify;
1225 register_pm_notifier(&battery->pm_nb);
1226
Zhang Ruie0d1f092014-05-28 15:23:38 +08001227 device_init_wakeup(&device->dev, 1);
1228
Patrick Mocheld550d982006-06-27 00:41:40 -04001229 return result;
Stefan Hajnoczie80bba42011-07-12 09:03:28 +01001230
1231fail:
1232 sysfs_remove_battery(battery);
1233 mutex_destroy(&battery->lock);
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +03001234 mutex_destroy(&battery->sysfs_lock);
Stefan Hajnoczie80bba42011-07-12 09:03:28 +01001235 kfree(battery);
1236 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237}
1238
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01001239static int acpi_battery_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240{
Len Brown4be44fc2005-08-05 00:44:28 -04001241 struct acpi_battery *battery = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001244 return -EINVAL;
Zhang Ruie0d1f092014-05-28 15:23:38 +08001245 device_init_wakeup(&device->dev, 0);
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001246 battery = acpi_driver_data(device);
Kyle McMartin25be5822011-03-22 16:19:50 -04001247 unregister_pm_notifier(&battery->pm_nb);
Lan Tianyu3a670cc2014-05-04 11:07:25 +08001248#ifdef CONFIG_ACPI_PROCFS_POWER
1249 acpi_battery_remove_fs(device);
1250#endif
Andrey Borzenkov508df922007-10-28 12:50:09 +03001251 sysfs_remove_battery(battery);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +04001252 mutex_destroy(&battery->lock);
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +03001253 mutex_destroy(&battery->sysfs_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 kfree(battery);
Patrick Mocheld550d982006-06-27 00:41:40 -04001255 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256}
1257
Rafael J. Wysocki90692402012-08-09 23:00:02 +02001258#ifdef CONFIG_PM_SLEEP
Jiri Kosina34c44152006-10-10 14:20:41 -07001259/* this is needed to learn about changes made in suspended state */
Rafael J. Wysockia6f50dc2012-06-27 23:26:43 +02001260static int acpi_battery_resume(struct device *dev)
Jiri Kosina34c44152006-10-10 14:20:41 -07001261{
1262 struct acpi_battery *battery;
Rafael J. Wysockia6f50dc2012-06-27 23:26:43 +02001263
1264 if (!dev)
Jiri Kosina34c44152006-10-10 14:20:41 -07001265 return -EINVAL;
Rafael J. Wysockia6f50dc2012-06-27 23:26:43 +02001266
1267 battery = acpi_driver_data(to_acpi_device(dev));
1268 if (!battery)
1269 return -EINVAL;
1270
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +04001271 battery->update_time = 0;
Lan Tianyu9e50bc12014-05-04 14:07:06 +08001272 acpi_battery_update(battery, true);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +03001273 return 0;
Jiri Kosina34c44152006-10-10 14:20:41 -07001274}
Shuah Khan7f6895c2014-02-12 20:19:06 -07001275#else
1276#define acpi_battery_resume NULL
Rafael J. Wysocki90692402012-08-09 23:00:02 +02001277#endif
Jiri Kosina34c44152006-10-10 14:20:41 -07001278
Rafael J. Wysockia6f50dc2012-06-27 23:26:43 +02001279static SIMPLE_DEV_PM_OPS(acpi_battery_pm, NULL, acpi_battery_resume);
1280
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001281static struct acpi_driver acpi_battery_driver = {
1282 .name = "battery",
1283 .class = ACPI_BATTERY_CLASS,
1284 .ids = battery_device_ids,
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001285 .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001286 .ops = {
1287 .add = acpi_battery_add,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001288 .remove = acpi_battery_remove,
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001289 .notify = acpi_battery_notify,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001290 },
Rafael J. Wysockia6f50dc2012-06-27 23:26:43 +02001291 .drv.pm = &acpi_battery_pm,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001292};
1293
Linus Torvaldsb0cbc862009-04-11 12:45:20 -07001294static void __init acpi_battery_init_async(void *unused, async_cookie_t cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295{
Luis Henriques479faaf2015-05-11 22:48:46 +01001296 int result;
1297
Alexander Mezin3f5dc082014-06-04 02:01:22 +07001298 dmi_check_system(bat_dmi_table);
Luis Henriques479faaf2015-05-11 22:48:46 +01001299
Lan Tianyu3a670cc2014-05-04 11:07:25 +08001300#ifdef CONFIG_ACPI_PROCFS_POWER
1301 acpi_battery_dir = acpi_lock_battery_dir();
1302 if (!acpi_battery_dir)
1303 return;
1304#endif
Luis Henriques479faaf2015-05-11 22:48:46 +01001305 result = acpi_bus_register_driver(&acpi_battery_driver);
Lan Tianyu3a670cc2014-05-04 11:07:25 +08001306#ifdef CONFIG_ACPI_PROCFS_POWER
Luis Henriques479faaf2015-05-11 22:48:46 +01001307 if (result < 0)
Lan Tianyu3a670cc2014-05-04 11:07:25 +08001308 acpi_unlock_battery_dir(acpi_battery_dir);
1309#endif
Arjan van de Ven0f66af52009-01-10 14:19:05 -05001310}
1311
1312static int __init acpi_battery_init(void)
1313{
Luis Henriquese234b072015-05-11 22:48:38 +01001314 if (acpi_disabled)
1315 return -ENODEV;
1316
Luis Henriqueseca21d912015-05-11 22:49:05 +01001317 async_cookie = async_schedule(acpi_battery_init_async, NULL);
Patrick Mocheld550d982006-06-27 00:41:40 -04001318 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319}
1320
Len Brown4be44fc2005-08-05 00:44:28 -04001321static void __exit acpi_battery_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322{
Luis Henriqueseca21d912015-05-11 22:49:05 +01001323 async_synchronize_cookie(async_cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 acpi_bus_unregister_driver(&acpi_battery_driver);
Lan Tianyu3a670cc2014-05-04 11:07:25 +08001325#ifdef CONFIG_ACPI_PROCFS_POWER
1326 acpi_unlock_battery_dir(acpi_battery_dir);
1327#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328}
1329
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330module_init(acpi_battery_init);
1331module_exit(acpi_battery_exit);