blob: 547e627611e0bb7d784e85bf87278e4079bd5a6a [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 Iskra4000e6262012-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 Iskra4000e6262012-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
Lan Tianyu3a670cc2014-05-04 11:07:25 +0800342#ifdef CONFIG_ACPI_PROCFS_POWER
343inline char *acpi_battery_units(struct acpi_battery *battery)
344{
345 return (battery->power_unit == ACPI_BATTERY_POWER_UNIT_MA) ?
346 "mA" : "mW";
347}
348#endif
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350/* --------------------------------------------------------------------------
351 Battery Management
352 -------------------------------------------------------------------------- */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400353struct acpi_offsets {
354 size_t offset; /* offset inside struct acpi_sbs_battery */
355 u8 mode; /* int or string? */
356};
357
358static struct acpi_offsets state_offsets[] = {
359 {offsetof(struct acpi_battery, state), 0},
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400360 {offsetof(struct acpi_battery, rate_now), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400361 {offsetof(struct acpi_battery, capacity_now), 0},
362 {offsetof(struct acpi_battery, voltage_now), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400363};
364
365static struct acpi_offsets info_offsets[] = {
366 {offsetof(struct acpi_battery, power_unit), 0},
367 {offsetof(struct acpi_battery, design_capacity), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400368 {offsetof(struct acpi_battery, full_charge_capacity), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400369 {offsetof(struct acpi_battery, technology), 0},
370 {offsetof(struct acpi_battery, design_voltage), 0},
371 {offsetof(struct acpi_battery, design_capacity_warning), 0},
372 {offsetof(struct acpi_battery, design_capacity_low), 0},
373 {offsetof(struct acpi_battery, capacity_granularity_1), 0},
374 {offsetof(struct acpi_battery, capacity_granularity_2), 0},
375 {offsetof(struct acpi_battery, model_number), 1},
376 {offsetof(struct acpi_battery, serial_number), 1},
377 {offsetof(struct acpi_battery, type), 1},
378 {offsetof(struct acpi_battery, oem_info), 1},
379};
380
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400381static struct acpi_offsets extended_info_offsets[] = {
Lan Tianyu016d5ba2013-07-30 14:00:42 +0200382 {offsetof(struct acpi_battery, revision), 0},
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400383 {offsetof(struct acpi_battery, power_unit), 0},
384 {offsetof(struct acpi_battery, design_capacity), 0},
385 {offsetof(struct acpi_battery, full_charge_capacity), 0},
386 {offsetof(struct acpi_battery, technology), 0},
387 {offsetof(struct acpi_battery, design_voltage), 0},
388 {offsetof(struct acpi_battery, design_capacity_warning), 0},
389 {offsetof(struct acpi_battery, design_capacity_low), 0},
390 {offsetof(struct acpi_battery, cycle_count), 0},
391 {offsetof(struct acpi_battery, measurement_accuracy), 0},
392 {offsetof(struct acpi_battery, max_sampling_time), 0},
393 {offsetof(struct acpi_battery, min_sampling_time), 0},
394 {offsetof(struct acpi_battery, max_averaging_interval), 0},
395 {offsetof(struct acpi_battery, min_averaging_interval), 0},
396 {offsetof(struct acpi_battery, capacity_granularity_1), 0},
397 {offsetof(struct acpi_battery, capacity_granularity_2), 0},
398 {offsetof(struct acpi_battery, model_number), 1},
399 {offsetof(struct acpi_battery, serial_number), 1},
400 {offsetof(struct acpi_battery, type), 1},
401 {offsetof(struct acpi_battery, oem_info), 1},
402};
403
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400404static int extract_package(struct acpi_battery *battery,
405 union acpi_object *package,
406 struct acpi_offsets *offsets, int num)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300407{
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300408 int i;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400409 union acpi_object *element;
410 if (package->type != ACPI_TYPE_PACKAGE)
411 return -EFAULT;
412 for (i = 0; i < num; ++i) {
413 if (package->package.count <= i)
414 return -EFAULT;
415 element = &package->package.elements[i];
416 if (offsets[i].mode) {
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300417 u8 *ptr = (u8 *)battery + offsets[i].offset;
418 if (element->type == ACPI_TYPE_STRING ||
419 element->type == ACPI_TYPE_BUFFER)
420 strncpy(ptr, element->string.pointer, 32);
421 else if (element->type == ACPI_TYPE_INTEGER) {
422 strncpy(ptr, (u8 *)&element->integer.value,
Lin Ming439913f2010-01-28 10:53:19 +0800423 sizeof(u64));
424 ptr[sizeof(u64)] = 0;
Alexey Starikovskiyb8a1bdb2008-03-17 22:37:42 -0400425 } else
426 *ptr = 0; /* don't have value */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400427 } else {
Alexey Starikovskiyb8a1bdb2008-03-17 22:37:42 -0400428 int *x = (int *)((u8 *)battery + offsets[i].offset);
429 *x = (element->type == ACPI_TYPE_INTEGER) ?
430 element->integer.value : -1;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300431 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300432 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300433 return 0;
434}
435
436static int acpi_battery_get_status(struct acpi_battery *battery)
437{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400438 if (acpi_bus_get_status(battery->device)) {
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300439 ACPI_EXCEPTION((AE_INFO, AE_ERROR, "Evaluating _STA"));
440 return -ENODEV;
441 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400442 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300443}
444
445static int acpi_battery_get_info(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400447 int result = -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -0400448 acpi_status status = 0;
Nicholas Mazzuca0f4c6542013-05-08 23:11:15 +0000449 char *name = test_bit(ACPI_BATTERY_XINFO_PRESENT, &battery->flags) ?
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400450 "_BIX" : "_BIF";
451
Len Brown4be44fc2005-08-05 00:44:28 -0400452 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300454 if (!acpi_battery_present(battery))
455 return 0;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400456 mutex_lock(&battery->lock);
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400457 status = acpi_evaluate_object(battery->device->handle, name,
458 NULL, &buffer);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400459 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 if (ACPI_FAILURE(status)) {
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400462 ACPI_EXCEPTION((AE_INFO, status, "Evaluating %s", name));
Patrick Mocheld550d982006-06-27 00:41:40 -0400463 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 }
Lan Tianyua90b4032014-01-06 22:50:37 +0800465
466 if (battery_bix_broken_package)
467 result = extract_package(battery, buffer.pointer,
468 extended_info_offsets + 1,
469 ARRAY_SIZE(extended_info_offsets) - 1);
470 else if (test_bit(ACPI_BATTERY_XINFO_PRESENT, &battery->flags))
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400471 result = extract_package(battery, buffer.pointer,
472 extended_info_offsets,
473 ARRAY_SIZE(extended_info_offsets));
474 else
475 result = extract_package(battery, buffer.pointer,
476 info_offsets, ARRAY_SIZE(info_offsets));
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400477 kfree(buffer.pointer);
Zhang Rui557d5862010-10-22 10:02:06 +0800478 if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags))
479 battery->full_charge_capacity = battery->design_capacity;
Kamil Iskra4000e6262012-11-16 22:28:58 +0100480 if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH, &battery->flags) &&
481 battery->power_unit && battery->design_voltage) {
482 battery->design_capacity = battery->design_capacity *
483 10000 / battery->design_voltage;
484 battery->full_charge_capacity = battery->full_charge_capacity *
485 10000 / battery->design_voltage;
486 battery->design_capacity_warning =
487 battery->design_capacity_warning *
488 10000 / battery->design_voltage;
489 /* Curiously, design_capacity_low, unlike the rest of them,
490 is correct. */
491 /* capacity_granularity_* equal 1 on the systems tested, so
492 it's impossible to tell if they would need an adjustment
493 or not if their values were higher. */
494 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400495 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496}
497
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300498static int acpi_battery_get_state(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499{
Len Brown4be44fc2005-08-05 00:44:28 -0400500 int result = 0;
501 acpi_status status = 0;
502 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300504 if (!acpi_battery_present(battery))
505 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400507 if (battery->update_time &&
508 time_before(jiffies, battery->update_time +
509 msecs_to_jiffies(cache_time)))
510 return 0;
511
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400512 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400513 status = acpi_evaluate_object(battery->device->handle, "_BST",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400514 NULL, &buffer);
515 mutex_unlock(&battery->lock);
Len Brown5b31d892007-08-15 00:19:26 -0400516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400518 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BST"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400519 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400521
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400522 result = extract_package(battery, buffer.pointer,
523 state_offsets, ARRAY_SIZE(state_offsets));
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400524 battery->update_time = jiffies;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400525 kfree(buffer.pointer);
Hector Martinbc76f902009-08-06 15:57:48 -0700526
Lan Tianyu55003b22011-06-30 11:33:12 +0800527 /* For buggy DSDTs that report negative 16-bit values for either
528 * charging or discharging current and/or report 0 as 65536
529 * due to bad math.
530 */
531 if (battery->power_unit == ACPI_BATTERY_POWER_UNIT_MA &&
532 battery->rate_now != ACPI_BATTERY_VALUE_UNKNOWN &&
533 (s16)(battery->rate_now) < 0) {
Hector Martinbc76f902009-08-06 15:57:48 -0700534 battery->rate_now = abs((s16)battery->rate_now);
Martin Kepplinger92375162015-03-13 00:48:17 +0100535 printk_once(KERN_WARNING FW_BUG
536 "battery: (dis)charge rate invalid.\n");
Lan Tianyu55003b22011-06-30 11:33:12 +0800537 }
Hector Martinbc76f902009-08-06 15:57:48 -0700538
Zhang Rui557d5862010-10-22 10:02:06 +0800539 if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags)
540 && battery->capacity_now >= 0 && battery->capacity_now <= 100)
541 battery->capacity_now = (battery->capacity_now *
542 battery->full_charge_capacity) / 100;
Kamil Iskra4000e6262012-11-16 22:28:58 +0100543 if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH, &battery->flags) &&
544 battery->power_unit && battery->design_voltage) {
545 battery->capacity_now = battery->capacity_now *
546 10000 / battery->design_voltage;
547 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400548 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549}
550
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400551static int acpi_battery_set_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
Len Brown4be44fc2005-08-05 00:44:28 -0400553 acpi_status status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400555 if (!acpi_battery_present(battery) ||
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400556 !test_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags))
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300557 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400559 mutex_lock(&battery->lock);
Jiang Liu0db98202013-06-29 00:24:39 +0800560 status = acpi_execute_simple_method(battery->device->handle, "_BTP",
561 battery->alarm);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400562 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400565 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400567 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Alarm set to %d\n", battery->alarm));
Patrick Mocheld550d982006-06-27 00:41:40 -0400568 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569}
570
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300571static int acpi_battery_init_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572{
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300573 /* See if alarms are supported, and if so, set default */
Jiang Liu952c63e2013-06-29 00:24:38 +0800574 if (!acpi_has_method(battery->device->handle, "_BTP")) {
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400575 clear_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400576 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 }
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400578 set_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400579 if (!battery->alarm)
580 battery->alarm = battery->design_capacity_warning;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400581 return acpi_battery_set_alarm(battery);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582}
583
Andrey Borzenkov508df922007-10-28 12:50:09 +0300584static ssize_t acpi_battery_alarm_show(struct device *dev,
585 struct device_attribute *attr,
586 char *buf)
587{
588 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
589 return sprintf(buf, "%d\n", battery->alarm * 1000);
590}
591
592static ssize_t acpi_battery_alarm_store(struct device *dev,
593 struct device_attribute *attr,
594 const char *buf, size_t count)
595{
596 unsigned long x;
597 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
Luis G.F47a08c82014-01-21 15:40:43 +0100598 if (sscanf(buf, "%lu\n", &x) == 1)
Andrey Borzenkov508df922007-10-28 12:50:09 +0300599 battery->alarm = x/1000;
600 if (acpi_battery_present(battery))
601 acpi_battery_set_alarm(battery);
602 return count;
603}
604
605static struct device_attribute alarm_attr = {
Parag Warudkar01e8ef12008-10-18 20:28:50 -0700606 .attr = {.name = "alarm", .mode = 0644},
Andrey Borzenkov508df922007-10-28 12:50:09 +0300607 .show = acpi_battery_alarm_show,
608 .store = acpi_battery_alarm_store,
609};
610
611static int sysfs_add_battery(struct acpi_battery *battery)
612{
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100613 struct power_supply_config psy_cfg = { .drv_data = battery, };
Andrey Borzenkov508df922007-10-28 12:50:09 +0300614
Lan Tianyuae6f6182011-06-30 11:32:40 +0800615 if (battery->power_unit == ACPI_BATTERY_POWER_UNIT_MA) {
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100616 battery->bat_desc.properties = charge_battery_props;
617 battery->bat_desc.num_properties =
Andrey Borzenkov508df922007-10-28 12:50:09 +0300618 ARRAY_SIZE(charge_battery_props);
619 } else {
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100620 battery->bat_desc.properties = energy_battery_props;
621 battery->bat_desc.num_properties =
Andrey Borzenkov508df922007-10-28 12:50:09 +0300622 ARRAY_SIZE(energy_battery_props);
623 }
624
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100625 battery->bat_desc.name = acpi_device_bid(battery->device);
626 battery->bat_desc.type = POWER_SUPPLY_TYPE_BATTERY;
627 battery->bat_desc.get_property = acpi_battery_get_property;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300628
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100629 battery->bat = power_supply_register_no_ws(&battery->device->dev,
630 &battery->bat_desc, &psy_cfg);
Zhang Ruie0d1f092014-05-28 15:23:38 +0800631
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100632 if (IS_ERR(battery->bat)) {
633 int result = PTR_ERR(battery->bat);
634
635 battery->bat = NULL;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300636 return result;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100637 }
638 return device_create_file(&battery->bat->dev, &alarm_attr);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300639}
640
641static void sysfs_remove_battery(struct acpi_battery *battery)
642{
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300643 mutex_lock(&battery->sysfs_lock);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100644 if (!battery->bat) {
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300645 mutex_unlock(&battery->sysfs_lock);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300646 return;
Lan Tianyu9c921c222011-06-30 11:34:12 +0800647 }
648
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100649 device_remove_file(&battery->bat->dev, &alarm_attr);
650 power_supply_unregister(battery->bat);
651 battery->bat = NULL;
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300652 mutex_unlock(&battery->sysfs_lock);
Hector Martinbc76f902009-08-06 15:57:48 -0700653}
654
Kamil Iskra4000e6262012-11-16 22:28:58 +0100655static void find_battery(const struct dmi_header *dm, void *private)
656{
657 struct acpi_battery *battery = (struct acpi_battery *)private;
658 /* Note: the hardcoded offsets below have been extracted from
659 the source code of dmidecode. */
660 if (dm->type == DMI_ENTRY_PORTABLE_BATTERY && dm->length >= 8) {
661 const u8 *dmi_data = (const u8 *)(dm + 1);
662 int dmi_capacity = get_unaligned((const u16 *)(dmi_data + 6));
663 if (dm->length >= 18)
664 dmi_capacity *= dmi_data[17];
665 if (battery->design_capacity * battery->design_voltage / 1000
666 != dmi_capacity &&
667 battery->design_capacity * 10 == dmi_capacity)
668 set_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH,
669 &battery->flags);
670 }
671}
672
Zhang Rui557d5862010-10-22 10:02:06 +0800673/*
674 * According to the ACPI spec, some kinds of primary batteries can
675 * report percentage battery remaining capacity directly to OS.
676 * In this case, it reports the Last Full Charged Capacity == 100
677 * and BatteryPresentRate == 0xFFFFFFFF.
678 *
679 * Now we found some battery reports percentage remaining capacity
680 * even if it's rechargeable.
681 * https://bugzilla.kernel.org/show_bug.cgi?id=15979
682 *
683 * Handle this correctly so that they won't break userspace.
684 */
Lan Tianyu7b786222011-06-30 11:33:27 +0800685static void acpi_battery_quirks(struct acpi_battery *battery)
Zhang Rui557d5862010-10-22 10:02:06 +0800686{
687 if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags))
Nicholas Mazzuca0f4c6542013-05-08 23:11:15 +0000688 return;
Zhang Rui557d5862010-10-22 10:02:06 +0800689
Nicholas Mazzuca0f4c6542013-05-08 23:11:15 +0000690 if (battery->full_charge_capacity == 100 &&
691 battery->rate_now == ACPI_BATTERY_VALUE_UNKNOWN &&
692 battery->capacity_now >= 0 && battery->capacity_now <= 100) {
Zhang Rui557d5862010-10-22 10:02:06 +0800693 set_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags);
694 battery->full_charge_capacity = battery->design_capacity;
695 battery->capacity_now = (battery->capacity_now *
696 battery->full_charge_capacity) / 100;
697 }
Kamil Iskra4000e6262012-11-16 22:28:58 +0100698
699 if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH, &battery->flags))
Nicholas Mazzuca0f4c6542013-05-08 23:11:15 +0000700 return;
Kamil Iskra4000e6262012-11-16 22:28:58 +0100701
702 if (battery->power_unit && dmi_name_in_vendors("LENOVO")) {
703 const char *s;
704 s = dmi_get_system_info(DMI_PRODUCT_VERSION);
Rasmus Villemoesffd8a732014-09-16 22:51:24 +0200705 if (s && !strncasecmp(s, "ThinkPad", 8)) {
Kamil Iskra4000e6262012-11-16 22:28:58 +0100706 dmi_walk(find_battery, battery);
707 if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH,
708 &battery->flags) &&
709 battery->design_voltage) {
710 battery->design_capacity =
711 battery->design_capacity *
712 10000 / battery->design_voltage;
713 battery->full_charge_capacity =
714 battery->full_charge_capacity *
715 10000 / battery->design_voltage;
716 battery->design_capacity_warning =
717 battery->design_capacity_warning *
718 10000 / battery->design_voltage;
719 battery->capacity_now = battery->capacity_now *
720 10000 / battery->design_voltage;
721 }
722 }
723 }
Zhang Rui557d5862010-10-22 10:02:06 +0800724}
725
Lan Tianyu9e50bc12014-05-04 14:07:06 +0800726static int acpi_battery_update(struct acpi_battery *battery, bool resume)
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500727{
Alexey Starikovskiy50b17852008-12-23 02:44:54 +0300728 int result, old_present = acpi_battery_present(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500729 result = acpi_battery_get_status(battery);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300730 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300731 return result;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300732 if (!acpi_battery_present(battery)) {
733 sysfs_remove_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500734 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300735 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300736 }
Lan Tianyu9e50bc12014-05-04 14:07:06 +0800737
738 if (resume)
739 return 0;
740
Alexey Starikovskiy50b17852008-12-23 02:44:54 +0300741 if (!battery->update_time ||
742 old_present != acpi_battery_present(battery)) {
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500743 result = acpi_battery_get_info(battery);
744 if (result)
745 return result;
746 acpi_battery_init_alarm(battery);
747 }
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100748 if (!battery->bat) {
Stefan Hajnoczieb03cb02011-07-12 09:03:29 +0100749 result = sysfs_add_battery(battery);
750 if (result)
751 return result;
752 }
Zhang Rui557d5862010-10-22 10:02:06 +0800753 result = acpi_battery_get_state(battery);
Zhang Ruie0d1f092014-05-28 15:23:38 +0800754 if (result)
755 return result;
Lan Tianyu7b786222011-06-30 11:33:27 +0800756 acpi_battery_quirks(battery);
Zhang Ruie0d1f092014-05-28 15:23:38 +0800757
758 /*
759 * Wakeup the system if battery is critical low
760 * or lower than the alarm level
761 */
762 if ((battery->state & ACPI_BATTERY_STATE_CRITICAL) ||
763 (test_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags) &&
764 (battery->capacity_now <= battery->alarm)))
765 pm_wakeup_event(&battery->device->dev, 0);
766
Zhang Rui557d5862010-10-22 10:02:06 +0800767 return result;
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500768}
769
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +0100770static void acpi_battery_refresh(struct acpi_battery *battery)
771{
Andy Whitcroftc5971452012-05-03 14:48:26 +0100772 int power_unit;
773
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100774 if (!battery->bat)
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +0100775 return;
776
Andy Whitcroftc5971452012-05-03 14:48:26 +0100777 power_unit = battery->power_unit;
778
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +0100779 acpi_battery_get_info(battery);
Andy Whitcroftc5971452012-05-03 14:48:26 +0100780
781 if (power_unit == battery->power_unit)
782 return;
783
784 /* The battery has changed its reporting units. */
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +0100785 sysfs_remove_battery(battery);
786 sysfs_add_battery(battery);
787}
788
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789/* --------------------------------------------------------------------------
Lan Tianyu3a670cc2014-05-04 11:07:25 +0800790 FS Interface (/proc)
791 -------------------------------------------------------------------------- */
792
793#ifdef CONFIG_ACPI_PROCFS_POWER
794static struct proc_dir_entry *acpi_battery_dir;
795
796static int acpi_battery_print_info(struct seq_file *seq, int result)
797{
798 struct acpi_battery *battery = seq->private;
799
800 if (result)
801 goto end;
802
803 seq_printf(seq, "present: %s\n",
804 acpi_battery_present(battery) ? "yes" : "no");
805 if (!acpi_battery_present(battery))
806 goto end;
807 if (battery->design_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
808 seq_printf(seq, "design capacity: unknown\n");
809 else
810 seq_printf(seq, "design capacity: %d %sh\n",
811 battery->design_capacity,
812 acpi_battery_units(battery));
813
814 if (battery->full_charge_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
815 seq_printf(seq, "last full capacity: unknown\n");
816 else
817 seq_printf(seq, "last full capacity: %d %sh\n",
818 battery->full_charge_capacity,
819 acpi_battery_units(battery));
820
821 seq_printf(seq, "battery technology: %srechargeable\n",
822 (!battery->technology)?"non-":"");
823
824 if (battery->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN)
825 seq_printf(seq, "design voltage: unknown\n");
826 else
827 seq_printf(seq, "design voltage: %d mV\n",
828 battery->design_voltage);
829 seq_printf(seq, "design capacity warning: %d %sh\n",
830 battery->design_capacity_warning,
831 acpi_battery_units(battery));
832 seq_printf(seq, "design capacity low: %d %sh\n",
833 battery->design_capacity_low,
834 acpi_battery_units(battery));
835 seq_printf(seq, "cycle count: %i\n", battery->cycle_count);
836 seq_printf(seq, "capacity granularity 1: %d %sh\n",
837 battery->capacity_granularity_1,
838 acpi_battery_units(battery));
839 seq_printf(seq, "capacity granularity 2: %d %sh\n",
840 battery->capacity_granularity_2,
841 acpi_battery_units(battery));
842 seq_printf(seq, "model number: %s\n", battery->model_number);
843 seq_printf(seq, "serial number: %s\n", battery->serial_number);
844 seq_printf(seq, "battery type: %s\n", battery->type);
845 seq_printf(seq, "OEM info: %s\n", battery->oem_info);
846 end:
847 if (result)
848 seq_printf(seq, "ERROR: Unable to read battery info\n");
849 return result;
850}
851
852static int acpi_battery_print_state(struct seq_file *seq, int result)
853{
854 struct acpi_battery *battery = seq->private;
855
856 if (result)
857 goto end;
858
859 seq_printf(seq, "present: %s\n",
860 acpi_battery_present(battery) ? "yes" : "no");
861 if (!acpi_battery_present(battery))
862 goto end;
863
864 seq_printf(seq, "capacity state: %s\n",
865 (battery->state & 0x04) ? "critical" : "ok");
866 if ((battery->state & 0x01) && (battery->state & 0x02))
867 seq_printf(seq,
868 "charging state: charging/discharging\n");
869 else if (battery->state & 0x01)
870 seq_printf(seq, "charging state: discharging\n");
871 else if (battery->state & 0x02)
872 seq_printf(seq, "charging state: charging\n");
873 else
874 seq_printf(seq, "charging state: charged\n");
875
876 if (battery->rate_now == ACPI_BATTERY_VALUE_UNKNOWN)
877 seq_printf(seq, "present rate: unknown\n");
878 else
879 seq_printf(seq, "present rate: %d %s\n",
880 battery->rate_now, acpi_battery_units(battery));
881
882 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN)
883 seq_printf(seq, "remaining capacity: unknown\n");
884 else
885 seq_printf(seq, "remaining capacity: %d %sh\n",
886 battery->capacity_now, acpi_battery_units(battery));
887 if (battery->voltage_now == ACPI_BATTERY_VALUE_UNKNOWN)
888 seq_printf(seq, "present voltage: unknown\n");
889 else
890 seq_printf(seq, "present voltage: %d mV\n",
891 battery->voltage_now);
892 end:
893 if (result)
894 seq_printf(seq, "ERROR: Unable to read battery state\n");
895
896 return result;
897}
898
899static int acpi_battery_print_alarm(struct seq_file *seq, int result)
900{
901 struct acpi_battery *battery = seq->private;
902
903 if (result)
904 goto end;
905
906 if (!acpi_battery_present(battery)) {
907 seq_printf(seq, "present: no\n");
908 goto end;
909 }
910 seq_printf(seq, "alarm: ");
911 if (!battery->alarm)
912 seq_printf(seq, "unsupported\n");
913 else
914 seq_printf(seq, "%u %sh\n", battery->alarm,
915 acpi_battery_units(battery));
916 end:
917 if (result)
918 seq_printf(seq, "ERROR: Unable to read battery alarm\n");
919 return result;
920}
921
922static ssize_t acpi_battery_write_alarm(struct file *file,
923 const char __user * buffer,
924 size_t count, loff_t * ppos)
925{
926 int result = 0;
927 char alarm_string[12] = { '\0' };
928 struct seq_file *m = file->private_data;
929 struct acpi_battery *battery = m->private;
930
931 if (!battery || (count > sizeof(alarm_string) - 1))
932 return -EINVAL;
933 if (!acpi_battery_present(battery)) {
934 result = -ENODEV;
935 goto end;
936 }
937 if (copy_from_user(alarm_string, buffer, count)) {
938 result = -EFAULT;
939 goto end;
940 }
941 alarm_string[count] = '\0';
Christoph Jaeger3d915892014-06-13 21:49:58 +0200942 if (kstrtoint(alarm_string, 0, &battery->alarm)) {
943 result = -EINVAL;
944 goto end;
945 }
Lan Tianyu3a670cc2014-05-04 11:07:25 +0800946 result = acpi_battery_set_alarm(battery);
947 end:
948 if (!result)
949 return count;
950 return result;
951}
952
953typedef int(*print_func)(struct seq_file *seq, int result);
954
955static print_func acpi_print_funcs[ACPI_BATTERY_NUMFILES] = {
956 acpi_battery_print_info,
957 acpi_battery_print_state,
958 acpi_battery_print_alarm,
959};
960
961static int acpi_battery_read(int fid, struct seq_file *seq)
962{
963 struct acpi_battery *battery = seq->private;
Lan Tianyu9e50bc12014-05-04 14:07:06 +0800964 int result = acpi_battery_update(battery, false);
Lan Tianyu3a670cc2014-05-04 11:07:25 +0800965 return acpi_print_funcs[fid](seq, result);
966}
967
968#define DECLARE_FILE_FUNCTIONS(_name) \
969static int acpi_battery_read_##_name(struct seq_file *seq, void *offset) \
970{ \
971 return acpi_battery_read(_name##_tag, seq); \
972} \
973static int acpi_battery_##_name##_open_fs(struct inode *inode, struct file *file) \
974{ \
975 return single_open(file, acpi_battery_read_##_name, PDE_DATA(inode)); \
976}
977
978DECLARE_FILE_FUNCTIONS(info);
979DECLARE_FILE_FUNCTIONS(state);
980DECLARE_FILE_FUNCTIONS(alarm);
981
982#undef DECLARE_FILE_FUNCTIONS
983
984#define FILE_DESCRIPTION_RO(_name) \
985 { \
986 .name = __stringify(_name), \
987 .mode = S_IRUGO, \
988 .ops = { \
989 .open = acpi_battery_##_name##_open_fs, \
990 .read = seq_read, \
991 .llseek = seq_lseek, \
992 .release = single_release, \
993 .owner = THIS_MODULE, \
994 }, \
995 }
996
997#define FILE_DESCRIPTION_RW(_name) \
998 { \
999 .name = __stringify(_name), \
1000 .mode = S_IFREG | S_IRUGO | S_IWUSR, \
1001 .ops = { \
1002 .open = acpi_battery_##_name##_open_fs, \
1003 .read = seq_read, \
1004 .llseek = seq_lseek, \
1005 .write = acpi_battery_write_##_name, \
1006 .release = single_release, \
1007 .owner = THIS_MODULE, \
1008 }, \
1009 }
1010
1011static const struct battery_file {
1012 struct file_operations ops;
1013 umode_t mode;
1014 const char *name;
1015} acpi_battery_file[] = {
1016 FILE_DESCRIPTION_RO(info),
1017 FILE_DESCRIPTION_RO(state),
1018 FILE_DESCRIPTION_RW(alarm),
1019};
1020
1021#undef FILE_DESCRIPTION_RO
1022#undef FILE_DESCRIPTION_RW
1023
1024static int acpi_battery_add_fs(struct acpi_device *device)
1025{
1026 struct proc_dir_entry *entry = NULL;
1027 int i;
1028
1029 printk(KERN_WARNING PREFIX "Deprecated procfs I/F for battery is loaded,"
1030 " please retry with CONFIG_ACPI_PROCFS_POWER cleared\n");
1031 if (!acpi_device_dir(device)) {
1032 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
1033 acpi_battery_dir);
1034 if (!acpi_device_dir(device))
1035 return -ENODEV;
1036 }
1037
1038 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i) {
1039 entry = proc_create_data(acpi_battery_file[i].name,
1040 acpi_battery_file[i].mode,
1041 acpi_device_dir(device),
1042 &acpi_battery_file[i].ops,
1043 acpi_driver_data(device));
1044 if (!entry)
1045 return -ENODEV;
1046 }
1047 return 0;
1048}
1049
1050static void acpi_battery_remove_fs(struct acpi_device *device)
1051{
1052 int i;
1053 if (!acpi_device_dir(device))
1054 return;
1055 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i)
1056 remove_proc_entry(acpi_battery_file[i].name,
1057 acpi_device_dir(device));
1058
1059 remove_proc_entry(acpi_device_bid(device), acpi_battery_dir);
1060 acpi_device_dir(device) = NULL;
1061}
1062
1063#endif
1064
1065/* --------------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 Driver Interface
1067 -------------------------------------------------------------------------- */
1068
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001069static void acpi_battery_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070{
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001071 struct acpi_battery *battery = acpi_driver_data(device);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001072 struct power_supply *old;
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001073
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -04001075 return;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001076 old = battery->bat;
Alexander Mezinf43691c2014-06-04 02:01:23 +07001077 /*
1078 * On Acer Aspire V5-573G notifications are sometimes triggered too
1079 * early. For example, when AC is unplugged and notification is
1080 * triggered, battery state is still reported as "Full", and changes to
1081 * "Discharging" only after short delay, without any notification.
1082 */
1083 if (battery_notification_delay_ms > 0)
1084 msleep(battery_notification_delay_ms);
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +01001085 if (event == ACPI_BATTERY_NOTIFY_INFO)
1086 acpi_battery_refresh(battery);
Lan Tianyu9e50bc12014-05-04 14:07:06 +08001087 acpi_battery_update(battery, false);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +04001088 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +01001089 dev_name(&device->dev), event,
Vladimir Lebedev9ea7d572007-02-20 15:48:06 +03001090 acpi_battery_present(battery));
Alexander Mezin411e0f72014-03-12 00:58:47 +07001091 acpi_notifier_call_chain(device, event, acpi_battery_present(battery));
Justin P. Mattock2345baf2009-12-13 14:42:36 -08001092 /* acpi_battery_update could remove power_supply object */
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001093 if (old && battery->bat)
1094 power_supply_changed(battery->bat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095}
1096
Kyle McMartin25be5822011-03-22 16:19:50 -04001097static int battery_notify(struct notifier_block *nb,
1098 unsigned long mode, void *_unused)
1099{
1100 struct acpi_battery *battery = container_of(nb, struct acpi_battery,
1101 pm_nb);
Lan Tianyu9e50bc12014-05-04 14:07:06 +08001102 int result;
1103
Kyle McMartin25be5822011-03-22 16:19:50 -04001104 switch (mode) {
Lan Tianyud5a59112011-06-30 11:33:40 +08001105 case PM_POST_HIBERNATION:
Kyle McMartin25be5822011-03-22 16:19:50 -04001106 case PM_POST_SUSPEND:
Lan Tianyu9e50bc12014-05-04 14:07:06 +08001107 if (!acpi_battery_present(battery))
1108 return 0;
1109
Krzysztof Kozlowski31f7dc72015-04-14 22:24:13 +09001110 if (!battery->bat) {
Lan Tianyu9e50bc12014-05-04 14:07:06 +08001111 result = acpi_battery_get_info(battery);
1112 if (result)
1113 return result;
1114
1115 result = sysfs_add_battery(battery);
1116 if (result)
1117 return result;
1118 } else
1119 acpi_battery_refresh(battery);
1120
1121 acpi_battery_init_alarm(battery);
1122 acpi_battery_get_state(battery);
Kyle McMartin25be5822011-03-22 16:19:50 -04001123 break;
1124 }
1125
1126 return 0;
1127}
1128
Alexander Mezin3f5dc082014-06-04 02:01:22 +07001129static int battery_bix_broken_package_quirk(const struct dmi_system_id *d)
1130{
1131 battery_bix_broken_package = 1;
1132 return 0;
1133}
1134
Alexander Mezinf43691c2014-06-04 02:01:23 +07001135static int battery_notification_delay_quirk(const struct dmi_system_id *d)
1136{
1137 battery_notification_delay_ms = 1000;
1138 return 0;
1139}
1140
Lan Tianyua90b4032014-01-06 22:50:37 +08001141static struct dmi_system_id bat_dmi_table[] = {
1142 {
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);