blob: 3b4921e4dc4e8c44a12902f57abc958d19f9006b [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Kyle McMartin25be5822011-03-22 16:19:50 -040036#include <linux/suspend.h>
Kamil Iskra4000e622012-11-16 22:28:58 +010037#include <asm/unaligned.h>
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040038
Lan Tianyu3a670cc2014-05-04 11:07:25 +080039#ifdef CONFIG_ACPI_PROCFS_POWER
40#include <linux/proc_fs.h>
41#include <linux/seq_file.h>
42#include <asm/uaccess.h>
43#endif
44
Lv Zheng8b484632013-12-03 08:49:16 +080045#include <linux/acpi.h>
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040046#include <linux/power_supply.h>
47
Alexander Mezinf03be352014-03-12 00:58:46 +070048#include "battery.h"
49
Len Browna192a952009-07-28 16:45:54 -040050#define PREFIX "ACPI: "
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#define ACPI_BATTERY_VALUE_UNKNOWN 0xFFFFFFFF
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#define ACPI_BATTERY_DEVICE_NAME "Battery"
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Lan Tianyuae6f6182011-06-30 11:32:40 +080056/* Battery power unit: 0 means mW, 1 means mA */
57#define ACPI_BATTERY_POWER_UNIT_MA 1
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#define _COMPONENT ACPI_BATTERY_COMPONENT
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +030060
Len Brownf52fd662007-02-12 22:42:12 -050061ACPI_MODULE_NAME("battery");
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Len Brownf52fd662007-02-12 22:42:12 -050063MODULE_AUTHOR("Paul Diefenbaugh");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +040064MODULE_AUTHOR("Alexey Starikovskiy <astarikovskiy@suse.de>");
Len Brown7cda93e2007-02-12 23:50:02 -050065MODULE_DESCRIPTION("ACPI Battery Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070066MODULE_LICENSE("GPL");
67
Lan Tianyua90b4032014-01-06 22:50:37 +080068static int battery_bix_broken_package;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +040069static unsigned int cache_time = 1000;
70module_param(cache_time, uint, 0644);
71MODULE_PARM_DESC(cache_time, "cache time in milliseconds");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +030072
Lan Tianyu3a670cc2014-05-04 11:07:25 +080073#ifdef CONFIG_ACPI_PROCFS_POWER
74extern struct proc_dir_entry *acpi_lock_battery_dir(void);
75extern void *acpi_unlock_battery_dir(struct proc_dir_entry *acpi_battery_dir);
76
77enum acpi_battery_files {
78 info_tag = 0,
79 state_tag,
80 alarm_tag,
81 ACPI_BATTERY_NUMFILES,
82};
83
84#endif
85
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040086static const struct acpi_device_id battery_device_ids[] = {
87 {"PNP0C0A", 0},
88 {"", 0},
89};
90
91MODULE_DEVICE_TABLE(acpi, battery_device_ids);
92
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +040093enum {
94 ACPI_BATTERY_ALARM_PRESENT,
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +040095 ACPI_BATTERY_XINFO_PRESENT,
Zhang Rui557d5862010-10-22 10:02:06 +080096 ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY,
Kamil Iskra4000e622012-11-16 22:28:58 +010097 /* On Lenovo Thinkpad models from 2010 and 2011, the power unit
98 switches between mWh and mAh depending on whether the system
99 is running on battery or not. When mAh is the unit, most
100 reported values are incorrect and need to be adjusted by
101 10000/design_voltage. Verified on x201, t410, t410s, and x220.
102 Pre-2010 and 2012 models appear to always report in mWh and
103 are thus unaffected (tested with t42, t61, t500, x200, x300,
104 and x230). Also, in mid-2012 Lenovo issued a BIOS update for
105 the 2011 models that fixes the issue (tested on x220 with a
106 post-1.29 BIOS), but as of Nov. 2012, no such update is
107 available for the 2010 models. */
108 ACPI_BATTERY_QUIRK_THINKPAD_MAH,
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400109};
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400110
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400111struct acpi_battery {
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400112 struct mutex lock;
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300113 struct mutex sysfs_lock;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400114 struct power_supply bat;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400115 struct acpi_device *device;
Kyle McMartin25be5822011-03-22 16:19:50 -0400116 struct notifier_block pm_nb;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400117 unsigned long update_time;
Lan Tianyu016d5ba2013-07-30 14:00:42 +0200118 int revision;
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400119 int rate_now;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400120 int capacity_now;
121 int voltage_now;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400122 int design_capacity;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400123 int full_charge_capacity;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400124 int technology;
125 int design_voltage;
126 int design_capacity_warning;
127 int design_capacity_low;
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400128 int cycle_count;
129 int measurement_accuracy;
130 int max_sampling_time;
131 int min_sampling_time;
132 int max_averaging_interval;
133 int min_averaging_interval;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400134 int capacity_granularity_1;
135 int capacity_granularity_2;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400136 int alarm;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400137 char model_number[32];
138 char serial_number[32];
139 char type[32];
140 char oem_info[32];
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400141 int state;
142 int power_unit;
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400143 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144};
145
Phil Carmody497888c2011-07-14 15:07:13 +0300146#define to_acpi_battery(x) container_of(x, struct acpi_battery, bat)
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400147
Andy Shevchenkoefd941f2013-03-11 09:17:06 +0000148static inline int acpi_battery_present(struct acpi_battery *battery)
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400149{
150 return battery->device->status.battery_present;
151}
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400152
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400153static int acpi_battery_technology(struct acpi_battery *battery)
154{
155 if (!strcasecmp("NiCd", battery->type))
156 return POWER_SUPPLY_TECHNOLOGY_NiCd;
157 if (!strcasecmp("NiMH", battery->type))
158 return POWER_SUPPLY_TECHNOLOGY_NiMH;
159 if (!strcasecmp("LION", battery->type))
160 return POWER_SUPPLY_TECHNOLOGY_LION;
Andrey Borzenkovad40e682007-11-10 20:02:49 +0300161 if (!strncasecmp("LI-ION", battery->type, 6))
Alexey Starikovskiy0bde7ee2007-10-28 15:33:10 +0300162 return POWER_SUPPLY_TECHNOLOGY_LION;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400163 if (!strcasecmp("LiP", battery->type))
164 return POWER_SUPPLY_TECHNOLOGY_LIPO;
165 return POWER_SUPPLY_TECHNOLOGY_UNKNOWN;
166}
167
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300168static int acpi_battery_get_state(struct acpi_battery *battery);
Alexey Starikovskiyb19073a2007-10-25 17:10:47 -0400169
Richard Hughes56f382a2009-01-25 15:05:50 +0000170static int acpi_battery_is_charged(struct acpi_battery *battery)
171{
172 /* either charging or discharging */
173 if (battery->state != 0)
174 return 0;
175
176 /* battery not reporting charge */
177 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN ||
178 battery->capacity_now == 0)
179 return 0;
180
181 /* good batteries update full_charge as the batteries degrade */
182 if (battery->full_charge_capacity == battery->capacity_now)
183 return 1;
184
185 /* fallback to using design values for broken batteries */
186 if (battery->design_capacity == battery->capacity_now)
187 return 1;
188
189 /* we don't do any sort of metric based on percentages */
190 return 0;
191}
192
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400193static int acpi_battery_get_property(struct power_supply *psy,
194 enum power_supply_property psp,
195 union power_supply_propval *val)
196{
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200197 int ret = 0;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400198 struct acpi_battery *battery = to_acpi_battery(psy);
199
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300200 if (acpi_battery_present(battery)) {
201 /* run battery update only if it is present */
202 acpi_battery_get_state(battery);
203 } else if (psp != POWER_SUPPLY_PROP_PRESENT)
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400204 return -ENODEV;
205 switch (psp) {
206 case POWER_SUPPLY_PROP_STATUS:
207 if (battery->state & 0x01)
208 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
209 else if (battery->state & 0x02)
210 val->intval = POWER_SUPPLY_STATUS_CHARGING;
Richard Hughes56f382a2009-01-25 15:05:50 +0000211 else if (acpi_battery_is_charged(battery))
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400212 val->intval = POWER_SUPPLY_STATUS_FULL;
Roland Dreier4c41d3a2007-11-07 15:09:09 -0800213 else
214 val->intval = POWER_SUPPLY_STATUS_UNKNOWN;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400215 break;
216 case POWER_SUPPLY_PROP_PRESENT:
217 val->intval = acpi_battery_present(battery);
218 break;
219 case POWER_SUPPLY_PROP_TECHNOLOGY:
220 val->intval = acpi_battery_technology(battery);
221 break;
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400222 case POWER_SUPPLY_PROP_CYCLE_COUNT:
223 val->intval = battery->cycle_count;
224 break;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400225 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200226 if (battery->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN)
227 ret = -ENODEV;
228 else
229 val->intval = battery->design_voltage * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400230 break;
231 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200232 if (battery->voltage_now == ACPI_BATTERY_VALUE_UNKNOWN)
233 ret = -ENODEV;
234 else
235 val->intval = battery->voltage_now * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400236 break;
237 case POWER_SUPPLY_PROP_CURRENT_NOW:
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400238 case POWER_SUPPLY_PROP_POWER_NOW:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200239 if (battery->rate_now == ACPI_BATTERY_VALUE_UNKNOWN)
240 ret = -ENODEV;
241 else
242 val->intval = battery->rate_now * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400243 break;
244 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
245 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200246 if (battery->design_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
247 ret = -ENODEV;
248 else
249 val->intval = battery->design_capacity * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400250 break;
251 case POWER_SUPPLY_PROP_CHARGE_FULL:
252 case POWER_SUPPLY_PROP_ENERGY_FULL:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200253 if (battery->full_charge_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
254 ret = -ENODEV;
255 else
256 val->intval = battery->full_charge_capacity * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400257 break;
258 case POWER_SUPPLY_PROP_CHARGE_NOW:
259 case POWER_SUPPLY_PROP_ENERGY_NOW:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200260 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN)
261 ret = -ENODEV;
262 else
263 val->intval = battery->capacity_now * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400264 break;
srinivas pandruvadaa58e1152012-04-05 17:38:54 -0700265 case POWER_SUPPLY_PROP_CAPACITY:
266 if (battery->capacity_now && battery->full_charge_capacity)
267 val->intval = battery->capacity_now * 100/
268 battery->full_charge_capacity;
269 else
270 val->intval = 0;
271 break;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400272 case POWER_SUPPLY_PROP_MODEL_NAME:
273 val->strval = battery->model_number;
274 break;
275 case POWER_SUPPLY_PROP_MANUFACTURER:
276 val->strval = battery->oem_info;
277 break;
maximilian attems7c2670b2008-01-22 18:46:50 +0100278 case POWER_SUPPLY_PROP_SERIAL_NUMBER:
279 val->strval = battery->serial_number;
280 break;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400281 default:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200282 ret = -EINVAL;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400283 }
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200284 return ret;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400285}
286
287static enum power_supply_property charge_battery_props[] = {
288 POWER_SUPPLY_PROP_STATUS,
289 POWER_SUPPLY_PROP_PRESENT,
290 POWER_SUPPLY_PROP_TECHNOLOGY,
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400291 POWER_SUPPLY_PROP_CYCLE_COUNT,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400292 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
293 POWER_SUPPLY_PROP_VOLTAGE_NOW,
294 POWER_SUPPLY_PROP_CURRENT_NOW,
295 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
296 POWER_SUPPLY_PROP_CHARGE_FULL,
297 POWER_SUPPLY_PROP_CHARGE_NOW,
srinivas pandruvadaa58e1152012-04-05 17:38:54 -0700298 POWER_SUPPLY_PROP_CAPACITY,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400299 POWER_SUPPLY_PROP_MODEL_NAME,
300 POWER_SUPPLY_PROP_MANUFACTURER,
maximilian attems7c2670b2008-01-22 18:46:50 +0100301 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400302};
303
304static enum power_supply_property energy_battery_props[] = {
305 POWER_SUPPLY_PROP_STATUS,
306 POWER_SUPPLY_PROP_PRESENT,
307 POWER_SUPPLY_PROP_TECHNOLOGY,
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400308 POWER_SUPPLY_PROP_CYCLE_COUNT,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400309 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
310 POWER_SUPPLY_PROP_VOLTAGE_NOW,
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400311 POWER_SUPPLY_PROP_POWER_NOW,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400312 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN,
313 POWER_SUPPLY_PROP_ENERGY_FULL,
314 POWER_SUPPLY_PROP_ENERGY_NOW,
srinivas pandruvadaa58e1152012-04-05 17:38:54 -0700315 POWER_SUPPLY_PROP_CAPACITY,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400316 POWER_SUPPLY_PROP_MODEL_NAME,
317 POWER_SUPPLY_PROP_MANUFACTURER,
maximilian attems7c2670b2008-01-22 18:46:50 +0100318 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400319};
320
Lan Tianyu3a670cc2014-05-04 11:07:25 +0800321#ifdef CONFIG_ACPI_PROCFS_POWER
322inline char *acpi_battery_units(struct acpi_battery *battery)
323{
324 return (battery->power_unit == ACPI_BATTERY_POWER_UNIT_MA) ?
325 "mA" : "mW";
326}
327#endif
328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329/* --------------------------------------------------------------------------
330 Battery Management
331 -------------------------------------------------------------------------- */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400332struct acpi_offsets {
333 size_t offset; /* offset inside struct acpi_sbs_battery */
334 u8 mode; /* int or string? */
335};
336
337static struct acpi_offsets state_offsets[] = {
338 {offsetof(struct acpi_battery, state), 0},
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400339 {offsetof(struct acpi_battery, rate_now), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400340 {offsetof(struct acpi_battery, capacity_now), 0},
341 {offsetof(struct acpi_battery, voltage_now), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400342};
343
344static struct acpi_offsets info_offsets[] = {
345 {offsetof(struct acpi_battery, power_unit), 0},
346 {offsetof(struct acpi_battery, design_capacity), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400347 {offsetof(struct acpi_battery, full_charge_capacity), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400348 {offsetof(struct acpi_battery, technology), 0},
349 {offsetof(struct acpi_battery, design_voltage), 0},
350 {offsetof(struct acpi_battery, design_capacity_warning), 0},
351 {offsetof(struct acpi_battery, design_capacity_low), 0},
352 {offsetof(struct acpi_battery, capacity_granularity_1), 0},
353 {offsetof(struct acpi_battery, capacity_granularity_2), 0},
354 {offsetof(struct acpi_battery, model_number), 1},
355 {offsetof(struct acpi_battery, serial_number), 1},
356 {offsetof(struct acpi_battery, type), 1},
357 {offsetof(struct acpi_battery, oem_info), 1},
358};
359
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400360static struct acpi_offsets extended_info_offsets[] = {
Lan Tianyu016d5ba2013-07-30 14:00:42 +0200361 {offsetof(struct acpi_battery, revision), 0},
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400362 {offsetof(struct acpi_battery, power_unit), 0},
363 {offsetof(struct acpi_battery, design_capacity), 0},
364 {offsetof(struct acpi_battery, full_charge_capacity), 0},
365 {offsetof(struct acpi_battery, technology), 0},
366 {offsetof(struct acpi_battery, design_voltage), 0},
367 {offsetof(struct acpi_battery, design_capacity_warning), 0},
368 {offsetof(struct acpi_battery, design_capacity_low), 0},
369 {offsetof(struct acpi_battery, cycle_count), 0},
370 {offsetof(struct acpi_battery, measurement_accuracy), 0},
371 {offsetof(struct acpi_battery, max_sampling_time), 0},
372 {offsetof(struct acpi_battery, min_sampling_time), 0},
373 {offsetof(struct acpi_battery, max_averaging_interval), 0},
374 {offsetof(struct acpi_battery, min_averaging_interval), 0},
375 {offsetof(struct acpi_battery, capacity_granularity_1), 0},
376 {offsetof(struct acpi_battery, capacity_granularity_2), 0},
377 {offsetof(struct acpi_battery, model_number), 1},
378 {offsetof(struct acpi_battery, serial_number), 1},
379 {offsetof(struct acpi_battery, type), 1},
380 {offsetof(struct acpi_battery, oem_info), 1},
381};
382
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400383static int extract_package(struct acpi_battery *battery,
384 union acpi_object *package,
385 struct acpi_offsets *offsets, int num)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300386{
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300387 int i;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400388 union acpi_object *element;
389 if (package->type != ACPI_TYPE_PACKAGE)
390 return -EFAULT;
391 for (i = 0; i < num; ++i) {
392 if (package->package.count <= i)
393 return -EFAULT;
394 element = &package->package.elements[i];
395 if (offsets[i].mode) {
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300396 u8 *ptr = (u8 *)battery + offsets[i].offset;
397 if (element->type == ACPI_TYPE_STRING ||
398 element->type == ACPI_TYPE_BUFFER)
399 strncpy(ptr, element->string.pointer, 32);
400 else if (element->type == ACPI_TYPE_INTEGER) {
401 strncpy(ptr, (u8 *)&element->integer.value,
Lin Ming439913f2010-01-28 10:53:19 +0800402 sizeof(u64));
403 ptr[sizeof(u64)] = 0;
Alexey Starikovskiyb8a1bdb2008-03-17 22:37:42 -0400404 } else
405 *ptr = 0; /* don't have value */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400406 } else {
Alexey Starikovskiyb8a1bdb2008-03-17 22:37:42 -0400407 int *x = (int *)((u8 *)battery + offsets[i].offset);
408 *x = (element->type == ACPI_TYPE_INTEGER) ?
409 element->integer.value : -1;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300410 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300411 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300412 return 0;
413}
414
415static int acpi_battery_get_status(struct acpi_battery *battery)
416{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400417 if (acpi_bus_get_status(battery->device)) {
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300418 ACPI_EXCEPTION((AE_INFO, AE_ERROR, "Evaluating _STA"));
419 return -ENODEV;
420 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400421 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300422}
423
424static int acpi_battery_get_info(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400426 int result = -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -0400427 acpi_status status = 0;
Nicholas Mazzuca0f4c6542013-05-08 23:11:15 +0000428 char *name = test_bit(ACPI_BATTERY_XINFO_PRESENT, &battery->flags) ?
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400429 "_BIX" : "_BIF";
430
Len Brown4be44fc2005-08-05 00:44:28 -0400431 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300433 if (!acpi_battery_present(battery))
434 return 0;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400435 mutex_lock(&battery->lock);
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400436 status = acpi_evaluate_object(battery->device->handle, name,
437 NULL, &buffer);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400438 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 if (ACPI_FAILURE(status)) {
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400441 ACPI_EXCEPTION((AE_INFO, status, "Evaluating %s", name));
Patrick Mocheld550d982006-06-27 00:41:40 -0400442 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 }
Lan Tianyua90b4032014-01-06 22:50:37 +0800444
445 if (battery_bix_broken_package)
446 result = extract_package(battery, buffer.pointer,
447 extended_info_offsets + 1,
448 ARRAY_SIZE(extended_info_offsets) - 1);
449 else if (test_bit(ACPI_BATTERY_XINFO_PRESENT, &battery->flags))
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400450 result = extract_package(battery, buffer.pointer,
451 extended_info_offsets,
452 ARRAY_SIZE(extended_info_offsets));
453 else
454 result = extract_package(battery, buffer.pointer,
455 info_offsets, ARRAY_SIZE(info_offsets));
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400456 kfree(buffer.pointer);
Zhang Rui557d5862010-10-22 10:02:06 +0800457 if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags))
458 battery->full_charge_capacity = battery->design_capacity;
Kamil Iskra4000e622012-11-16 22:28:58 +0100459 if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH, &battery->flags) &&
460 battery->power_unit && battery->design_voltage) {
461 battery->design_capacity = battery->design_capacity *
462 10000 / battery->design_voltage;
463 battery->full_charge_capacity = battery->full_charge_capacity *
464 10000 / battery->design_voltage;
465 battery->design_capacity_warning =
466 battery->design_capacity_warning *
467 10000 / battery->design_voltage;
468 /* Curiously, design_capacity_low, unlike the rest of them,
469 is correct. */
470 /* capacity_granularity_* equal 1 on the systems tested, so
471 it's impossible to tell if they would need an adjustment
472 or not if their values were higher. */
473 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400474 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475}
476
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300477static int acpi_battery_get_state(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
Len Brown4be44fc2005-08-05 00:44:28 -0400479 int result = 0;
480 acpi_status status = 0;
481 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300483 if (!acpi_battery_present(battery))
484 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400486 if (battery->update_time &&
487 time_before(jiffies, battery->update_time +
488 msecs_to_jiffies(cache_time)))
489 return 0;
490
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400491 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400492 status = acpi_evaluate_object(battery->device->handle, "_BST",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400493 NULL, &buffer);
494 mutex_unlock(&battery->lock);
Len Brown5b31d892007-08-15 00:19:26 -0400495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400497 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BST"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400498 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400500
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400501 result = extract_package(battery, buffer.pointer,
502 state_offsets, ARRAY_SIZE(state_offsets));
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400503 battery->update_time = jiffies;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400504 kfree(buffer.pointer);
Hector Martinbc76f902009-08-06 15:57:48 -0700505
Lan Tianyu55003b22011-06-30 11:33:12 +0800506 /* For buggy DSDTs that report negative 16-bit values for either
507 * charging or discharging current and/or report 0 as 65536
508 * due to bad math.
509 */
510 if (battery->power_unit == ACPI_BATTERY_POWER_UNIT_MA &&
511 battery->rate_now != ACPI_BATTERY_VALUE_UNKNOWN &&
512 (s16)(battery->rate_now) < 0) {
Hector Martinbc76f902009-08-06 15:57:48 -0700513 battery->rate_now = abs((s16)battery->rate_now);
Lan Tianyu55003b22011-06-30 11:33:12 +0800514 printk_once(KERN_WARNING FW_BUG "battery: (dis)charge rate"
515 " invalid.\n");
516 }
Hector Martinbc76f902009-08-06 15:57:48 -0700517
Zhang Rui557d5862010-10-22 10:02:06 +0800518 if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags)
519 && battery->capacity_now >= 0 && battery->capacity_now <= 100)
520 battery->capacity_now = (battery->capacity_now *
521 battery->full_charge_capacity) / 100;
Kamil Iskra4000e622012-11-16 22:28:58 +0100522 if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH, &battery->flags) &&
523 battery->power_unit && battery->design_voltage) {
524 battery->capacity_now = battery->capacity_now *
525 10000 / battery->design_voltage;
526 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400527 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528}
529
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400530static int acpi_battery_set_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
Len Brown4be44fc2005-08-05 00:44:28 -0400532 acpi_status status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400534 if (!acpi_battery_present(battery) ||
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400535 !test_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags))
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300536 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400538 mutex_lock(&battery->lock);
Jiang Liu0db98202013-06-29 00:24:39 +0800539 status = acpi_execute_simple_method(battery->device->handle, "_BTP",
540 battery->alarm);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400541 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400544 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400546 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Alarm set to %d\n", battery->alarm));
Patrick Mocheld550d982006-06-27 00:41:40 -0400547 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548}
549
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300550static int acpi_battery_init_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551{
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300552 /* See if alarms are supported, and if so, set default */
Jiang Liu952c63e2013-06-29 00:24:38 +0800553 if (!acpi_has_method(battery->device->handle, "_BTP")) {
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400554 clear_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400555 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 }
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400557 set_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400558 if (!battery->alarm)
559 battery->alarm = battery->design_capacity_warning;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400560 return acpi_battery_set_alarm(battery);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561}
562
Andrey Borzenkov508df922007-10-28 12:50:09 +0300563static ssize_t acpi_battery_alarm_show(struct device *dev,
564 struct device_attribute *attr,
565 char *buf)
566{
567 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
568 return sprintf(buf, "%d\n", battery->alarm * 1000);
569}
570
571static ssize_t acpi_battery_alarm_store(struct device *dev,
572 struct device_attribute *attr,
573 const char *buf, size_t count)
574{
575 unsigned long x;
576 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
Luis G.F47a08c82014-01-21 15:40:43 +0100577 if (sscanf(buf, "%lu\n", &x) == 1)
Andrey Borzenkov508df922007-10-28 12:50:09 +0300578 battery->alarm = x/1000;
579 if (acpi_battery_present(battery))
580 acpi_battery_set_alarm(battery);
581 return count;
582}
583
584static struct device_attribute alarm_attr = {
Parag Warudkar01e8ef12008-10-18 20:28:50 -0700585 .attr = {.name = "alarm", .mode = 0644},
Andrey Borzenkov508df922007-10-28 12:50:09 +0300586 .show = acpi_battery_alarm_show,
587 .store = acpi_battery_alarm_store,
588};
589
590static int sysfs_add_battery(struct acpi_battery *battery)
591{
592 int result;
593
Lan Tianyuae6f6182011-06-30 11:32:40 +0800594 if (battery->power_unit == ACPI_BATTERY_POWER_UNIT_MA) {
Andrey Borzenkov508df922007-10-28 12:50:09 +0300595 battery->bat.properties = charge_battery_props;
596 battery->bat.num_properties =
597 ARRAY_SIZE(charge_battery_props);
598 } else {
599 battery->bat.properties = energy_battery_props;
600 battery->bat.num_properties =
601 ARRAY_SIZE(energy_battery_props);
602 }
603
604 battery->bat.name = acpi_device_bid(battery->device);
605 battery->bat.type = POWER_SUPPLY_TYPE_BATTERY;
606 battery->bat.get_property = acpi_battery_get_property;
607
608 result = power_supply_register(&battery->device->dev, &battery->bat);
609 if (result)
610 return result;
611 return device_create_file(battery->bat.dev, &alarm_attr);
612}
613
614static void sysfs_remove_battery(struct acpi_battery *battery)
615{
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300616 mutex_lock(&battery->sysfs_lock);
Lan Tianyu9c921c222011-06-30 11:34:12 +0800617 if (!battery->bat.dev) {
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300618 mutex_unlock(&battery->sysfs_lock);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300619 return;
Lan Tianyu9c921c222011-06-30 11:34:12 +0800620 }
621
Andrey Borzenkov508df922007-10-28 12:50:09 +0300622 device_remove_file(battery->bat.dev, &alarm_attr);
623 power_supply_unregister(&battery->bat);
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300624 battery->bat.dev = NULL;
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300625 mutex_unlock(&battery->sysfs_lock);
Hector Martinbc76f902009-08-06 15:57:48 -0700626}
627
Kamil Iskra4000e622012-11-16 22:28:58 +0100628static void find_battery(const struct dmi_header *dm, void *private)
629{
630 struct acpi_battery *battery = (struct acpi_battery *)private;
631 /* Note: the hardcoded offsets below have been extracted from
632 the source code of dmidecode. */
633 if (dm->type == DMI_ENTRY_PORTABLE_BATTERY && dm->length >= 8) {
634 const u8 *dmi_data = (const u8 *)(dm + 1);
635 int dmi_capacity = get_unaligned((const u16 *)(dmi_data + 6));
636 if (dm->length >= 18)
637 dmi_capacity *= dmi_data[17];
638 if (battery->design_capacity * battery->design_voltage / 1000
639 != dmi_capacity &&
640 battery->design_capacity * 10 == dmi_capacity)
641 set_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH,
642 &battery->flags);
643 }
644}
645
Zhang Rui557d5862010-10-22 10:02:06 +0800646/*
647 * According to the ACPI spec, some kinds of primary batteries can
648 * report percentage battery remaining capacity directly to OS.
649 * In this case, it reports the Last Full Charged Capacity == 100
650 * and BatteryPresentRate == 0xFFFFFFFF.
651 *
652 * Now we found some battery reports percentage remaining capacity
653 * even if it's rechargeable.
654 * https://bugzilla.kernel.org/show_bug.cgi?id=15979
655 *
656 * Handle this correctly so that they won't break userspace.
657 */
Lan Tianyu7b786222011-06-30 11:33:27 +0800658static void acpi_battery_quirks(struct acpi_battery *battery)
Zhang Rui557d5862010-10-22 10:02:06 +0800659{
660 if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags))
Nicholas Mazzuca0f4c6542013-05-08 23:11:15 +0000661 return;
Zhang Rui557d5862010-10-22 10:02:06 +0800662
Nicholas Mazzuca0f4c6542013-05-08 23:11:15 +0000663 if (battery->full_charge_capacity == 100 &&
664 battery->rate_now == ACPI_BATTERY_VALUE_UNKNOWN &&
665 battery->capacity_now >= 0 && battery->capacity_now <= 100) {
Zhang Rui557d5862010-10-22 10:02:06 +0800666 set_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags);
667 battery->full_charge_capacity = battery->design_capacity;
668 battery->capacity_now = (battery->capacity_now *
669 battery->full_charge_capacity) / 100;
670 }
Kamil Iskra4000e622012-11-16 22:28:58 +0100671
672 if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH, &battery->flags))
Nicholas Mazzuca0f4c6542013-05-08 23:11:15 +0000673 return;
Kamil Iskra4000e622012-11-16 22:28:58 +0100674
675 if (battery->power_unit && dmi_name_in_vendors("LENOVO")) {
676 const char *s;
677 s = dmi_get_system_info(DMI_PRODUCT_VERSION);
678 if (s && !strnicmp(s, "ThinkPad", 8)) {
679 dmi_walk(find_battery, battery);
680 if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH,
681 &battery->flags) &&
682 battery->design_voltage) {
683 battery->design_capacity =
684 battery->design_capacity *
685 10000 / battery->design_voltage;
686 battery->full_charge_capacity =
687 battery->full_charge_capacity *
688 10000 / battery->design_voltage;
689 battery->design_capacity_warning =
690 battery->design_capacity_warning *
691 10000 / battery->design_voltage;
692 battery->capacity_now = battery->capacity_now *
693 10000 / battery->design_voltage;
694 }
695 }
696 }
Zhang Rui557d5862010-10-22 10:02:06 +0800697}
698
Lan Tianyu9e50bc12014-05-04 14:07:06 +0800699static int acpi_battery_update(struct acpi_battery *battery, bool resume)
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500700{
Alexey Starikovskiy50b17852008-12-23 02:44:54 +0300701 int result, old_present = acpi_battery_present(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500702 result = acpi_battery_get_status(battery);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300703 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300704 return result;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300705 if (!acpi_battery_present(battery)) {
706 sysfs_remove_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500707 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300708 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300709 }
Lan Tianyu9e50bc12014-05-04 14:07:06 +0800710
711 if (resume)
712 return 0;
713
Alexey Starikovskiy50b17852008-12-23 02:44:54 +0300714 if (!battery->update_time ||
715 old_present != acpi_battery_present(battery)) {
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500716 result = acpi_battery_get_info(battery);
717 if (result)
718 return result;
719 acpi_battery_init_alarm(battery);
720 }
Stefan Hajnoczieb03cb02011-07-12 09:03:29 +0100721 if (!battery->bat.dev) {
722 result = sysfs_add_battery(battery);
723 if (result)
724 return result;
725 }
Zhang Rui557d5862010-10-22 10:02:06 +0800726 result = acpi_battery_get_state(battery);
Lan Tianyu7b786222011-06-30 11:33:27 +0800727 acpi_battery_quirks(battery);
Zhang Rui557d5862010-10-22 10:02:06 +0800728 return result;
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500729}
730
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +0100731static void acpi_battery_refresh(struct acpi_battery *battery)
732{
Andy Whitcroftc5971452012-05-03 14:48:26 +0100733 int power_unit;
734
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +0100735 if (!battery->bat.dev)
736 return;
737
Andy Whitcroftc5971452012-05-03 14:48:26 +0100738 power_unit = battery->power_unit;
739
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +0100740 acpi_battery_get_info(battery);
Andy Whitcroftc5971452012-05-03 14:48:26 +0100741
742 if (power_unit == battery->power_unit)
743 return;
744
745 /* The battery has changed its reporting units. */
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +0100746 sysfs_remove_battery(battery);
747 sysfs_add_battery(battery);
748}
749
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750/* --------------------------------------------------------------------------
Lan Tianyu3a670cc2014-05-04 11:07:25 +0800751 FS Interface (/proc)
752 -------------------------------------------------------------------------- */
753
754#ifdef CONFIG_ACPI_PROCFS_POWER
755static struct proc_dir_entry *acpi_battery_dir;
756
757static int acpi_battery_print_info(struct seq_file *seq, int result)
758{
759 struct acpi_battery *battery = seq->private;
760
761 if (result)
762 goto end;
763
764 seq_printf(seq, "present: %s\n",
765 acpi_battery_present(battery) ? "yes" : "no");
766 if (!acpi_battery_present(battery))
767 goto end;
768 if (battery->design_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
769 seq_printf(seq, "design capacity: unknown\n");
770 else
771 seq_printf(seq, "design capacity: %d %sh\n",
772 battery->design_capacity,
773 acpi_battery_units(battery));
774
775 if (battery->full_charge_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
776 seq_printf(seq, "last full capacity: unknown\n");
777 else
778 seq_printf(seq, "last full capacity: %d %sh\n",
779 battery->full_charge_capacity,
780 acpi_battery_units(battery));
781
782 seq_printf(seq, "battery technology: %srechargeable\n",
783 (!battery->technology)?"non-":"");
784
785 if (battery->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN)
786 seq_printf(seq, "design voltage: unknown\n");
787 else
788 seq_printf(seq, "design voltage: %d mV\n",
789 battery->design_voltage);
790 seq_printf(seq, "design capacity warning: %d %sh\n",
791 battery->design_capacity_warning,
792 acpi_battery_units(battery));
793 seq_printf(seq, "design capacity low: %d %sh\n",
794 battery->design_capacity_low,
795 acpi_battery_units(battery));
796 seq_printf(seq, "cycle count: %i\n", battery->cycle_count);
797 seq_printf(seq, "capacity granularity 1: %d %sh\n",
798 battery->capacity_granularity_1,
799 acpi_battery_units(battery));
800 seq_printf(seq, "capacity granularity 2: %d %sh\n",
801 battery->capacity_granularity_2,
802 acpi_battery_units(battery));
803 seq_printf(seq, "model number: %s\n", battery->model_number);
804 seq_printf(seq, "serial number: %s\n", battery->serial_number);
805 seq_printf(seq, "battery type: %s\n", battery->type);
806 seq_printf(seq, "OEM info: %s\n", battery->oem_info);
807 end:
808 if (result)
809 seq_printf(seq, "ERROR: Unable to read battery info\n");
810 return result;
811}
812
813static int acpi_battery_print_state(struct seq_file *seq, int result)
814{
815 struct acpi_battery *battery = seq->private;
816
817 if (result)
818 goto end;
819
820 seq_printf(seq, "present: %s\n",
821 acpi_battery_present(battery) ? "yes" : "no");
822 if (!acpi_battery_present(battery))
823 goto end;
824
825 seq_printf(seq, "capacity state: %s\n",
826 (battery->state & 0x04) ? "critical" : "ok");
827 if ((battery->state & 0x01) && (battery->state & 0x02))
828 seq_printf(seq,
829 "charging state: charging/discharging\n");
830 else if (battery->state & 0x01)
831 seq_printf(seq, "charging state: discharging\n");
832 else if (battery->state & 0x02)
833 seq_printf(seq, "charging state: charging\n");
834 else
835 seq_printf(seq, "charging state: charged\n");
836
837 if (battery->rate_now == ACPI_BATTERY_VALUE_UNKNOWN)
838 seq_printf(seq, "present rate: unknown\n");
839 else
840 seq_printf(seq, "present rate: %d %s\n",
841 battery->rate_now, acpi_battery_units(battery));
842
843 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN)
844 seq_printf(seq, "remaining capacity: unknown\n");
845 else
846 seq_printf(seq, "remaining capacity: %d %sh\n",
847 battery->capacity_now, acpi_battery_units(battery));
848 if (battery->voltage_now == ACPI_BATTERY_VALUE_UNKNOWN)
849 seq_printf(seq, "present voltage: unknown\n");
850 else
851 seq_printf(seq, "present voltage: %d mV\n",
852 battery->voltage_now);
853 end:
854 if (result)
855 seq_printf(seq, "ERROR: Unable to read battery state\n");
856
857 return result;
858}
859
860static int acpi_battery_print_alarm(struct seq_file *seq, int result)
861{
862 struct acpi_battery *battery = seq->private;
863
864 if (result)
865 goto end;
866
867 if (!acpi_battery_present(battery)) {
868 seq_printf(seq, "present: no\n");
869 goto end;
870 }
871 seq_printf(seq, "alarm: ");
872 if (!battery->alarm)
873 seq_printf(seq, "unsupported\n");
874 else
875 seq_printf(seq, "%u %sh\n", battery->alarm,
876 acpi_battery_units(battery));
877 end:
878 if (result)
879 seq_printf(seq, "ERROR: Unable to read battery alarm\n");
880 return result;
881}
882
883static ssize_t acpi_battery_write_alarm(struct file *file,
884 const char __user * buffer,
885 size_t count, loff_t * ppos)
886{
887 int result = 0;
888 char alarm_string[12] = { '\0' };
889 struct seq_file *m = file->private_data;
890 struct acpi_battery *battery = m->private;
891
892 if (!battery || (count > sizeof(alarm_string) - 1))
893 return -EINVAL;
894 if (!acpi_battery_present(battery)) {
895 result = -ENODEV;
896 goto end;
897 }
898 if (copy_from_user(alarm_string, buffer, count)) {
899 result = -EFAULT;
900 goto end;
901 }
902 alarm_string[count] = '\0';
903 battery->alarm = simple_strtol(alarm_string, NULL, 0);
904 result = acpi_battery_set_alarm(battery);
905 end:
906 if (!result)
907 return count;
908 return result;
909}
910
911typedef int(*print_func)(struct seq_file *seq, int result);
912
913static print_func acpi_print_funcs[ACPI_BATTERY_NUMFILES] = {
914 acpi_battery_print_info,
915 acpi_battery_print_state,
916 acpi_battery_print_alarm,
917};
918
919static int acpi_battery_read(int fid, struct seq_file *seq)
920{
921 struct acpi_battery *battery = seq->private;
Lan Tianyu9e50bc12014-05-04 14:07:06 +0800922 int result = acpi_battery_update(battery, false);
Lan Tianyu3a670cc2014-05-04 11:07:25 +0800923 return acpi_print_funcs[fid](seq, result);
924}
925
926#define DECLARE_FILE_FUNCTIONS(_name) \
927static int acpi_battery_read_##_name(struct seq_file *seq, void *offset) \
928{ \
929 return acpi_battery_read(_name##_tag, seq); \
930} \
931static int acpi_battery_##_name##_open_fs(struct inode *inode, struct file *file) \
932{ \
933 return single_open(file, acpi_battery_read_##_name, PDE_DATA(inode)); \
934}
935
936DECLARE_FILE_FUNCTIONS(info);
937DECLARE_FILE_FUNCTIONS(state);
938DECLARE_FILE_FUNCTIONS(alarm);
939
940#undef DECLARE_FILE_FUNCTIONS
941
942#define FILE_DESCRIPTION_RO(_name) \
943 { \
944 .name = __stringify(_name), \
945 .mode = S_IRUGO, \
946 .ops = { \
947 .open = acpi_battery_##_name##_open_fs, \
948 .read = seq_read, \
949 .llseek = seq_lseek, \
950 .release = single_release, \
951 .owner = THIS_MODULE, \
952 }, \
953 }
954
955#define FILE_DESCRIPTION_RW(_name) \
956 { \
957 .name = __stringify(_name), \
958 .mode = S_IFREG | S_IRUGO | S_IWUSR, \
959 .ops = { \
960 .open = acpi_battery_##_name##_open_fs, \
961 .read = seq_read, \
962 .llseek = seq_lseek, \
963 .write = acpi_battery_write_##_name, \
964 .release = single_release, \
965 .owner = THIS_MODULE, \
966 }, \
967 }
968
969static const struct battery_file {
970 struct file_operations ops;
971 umode_t mode;
972 const char *name;
973} acpi_battery_file[] = {
974 FILE_DESCRIPTION_RO(info),
975 FILE_DESCRIPTION_RO(state),
976 FILE_DESCRIPTION_RW(alarm),
977};
978
979#undef FILE_DESCRIPTION_RO
980#undef FILE_DESCRIPTION_RW
981
982static int acpi_battery_add_fs(struct acpi_device *device)
983{
984 struct proc_dir_entry *entry = NULL;
985 int i;
986
987 printk(KERN_WARNING PREFIX "Deprecated procfs I/F for battery is loaded,"
988 " please retry with CONFIG_ACPI_PROCFS_POWER cleared\n");
989 if (!acpi_device_dir(device)) {
990 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
991 acpi_battery_dir);
992 if (!acpi_device_dir(device))
993 return -ENODEV;
994 }
995
996 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i) {
997 entry = proc_create_data(acpi_battery_file[i].name,
998 acpi_battery_file[i].mode,
999 acpi_device_dir(device),
1000 &acpi_battery_file[i].ops,
1001 acpi_driver_data(device));
1002 if (!entry)
1003 return -ENODEV;
1004 }
1005 return 0;
1006}
1007
1008static void acpi_battery_remove_fs(struct acpi_device *device)
1009{
1010 int i;
1011 if (!acpi_device_dir(device))
1012 return;
1013 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i)
1014 remove_proc_entry(acpi_battery_file[i].name,
1015 acpi_device_dir(device));
1016
1017 remove_proc_entry(acpi_device_bid(device), acpi_battery_dir);
1018 acpi_device_dir(device) = NULL;
1019}
1020
1021#endif
1022
1023/* --------------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 Driver Interface
1025 -------------------------------------------------------------------------- */
1026
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001027static void acpi_battery_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028{
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001029 struct acpi_battery *battery = acpi_driver_data(device);
Zhang Rui153e5002010-07-07 09:11:57 +08001030 struct device *old;
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001031
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -04001033 return;
Zhang Rui153e5002010-07-07 09:11:57 +08001034 old = battery->bat.dev;
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +01001035 if (event == ACPI_BATTERY_NOTIFY_INFO)
1036 acpi_battery_refresh(battery);
Lan Tianyu9e50bc12014-05-04 14:07:06 +08001037 acpi_battery_update(battery, false);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +04001038 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +01001039 dev_name(&device->dev), event,
Vladimir Lebedev9ea7d572007-02-20 15:48:06 +03001040 acpi_battery_present(battery));
Alexander Mezin411e0f72014-03-12 00:58:47 +07001041 acpi_notifier_call_chain(device, event, acpi_battery_present(battery));
Justin P. Mattock2345baf2009-12-13 14:42:36 -08001042 /* acpi_battery_update could remove power_supply object */
Zhang Rui153e5002010-07-07 09:11:57 +08001043 if (old && battery->bat.dev)
Alan Jenkinsf79e1ce2009-06-30 14:36:16 +00001044 power_supply_changed(&battery->bat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045}
1046
Kyle McMartin25be5822011-03-22 16:19:50 -04001047static int battery_notify(struct notifier_block *nb,
1048 unsigned long mode, void *_unused)
1049{
1050 struct acpi_battery *battery = container_of(nb, struct acpi_battery,
1051 pm_nb);
Lan Tianyu9e50bc12014-05-04 14:07:06 +08001052 int result;
1053
Kyle McMartin25be5822011-03-22 16:19:50 -04001054 switch (mode) {
Lan Tianyud5a59112011-06-30 11:33:40 +08001055 case PM_POST_HIBERNATION:
Kyle McMartin25be5822011-03-22 16:19:50 -04001056 case PM_POST_SUSPEND:
Lan Tianyu9e50bc12014-05-04 14:07:06 +08001057 if (!acpi_battery_present(battery))
1058 return 0;
1059
1060 if (!battery->bat.dev) {
1061 result = acpi_battery_get_info(battery);
1062 if (result)
1063 return result;
1064
1065 result = sysfs_add_battery(battery);
1066 if (result)
1067 return result;
1068 } else
1069 acpi_battery_refresh(battery);
1070
1071 acpi_battery_init_alarm(battery);
1072 acpi_battery_get_state(battery);
Kyle McMartin25be5822011-03-22 16:19:50 -04001073 break;
1074 }
1075
1076 return 0;
1077}
1078
Lan Tianyua90b4032014-01-06 22:50:37 +08001079static struct dmi_system_id bat_dmi_table[] = {
1080 {
1081 .ident = "NEC LZ750/LS",
1082 .matches = {
1083 DMI_MATCH(DMI_SYS_VENDOR, "NEC"),
1084 DMI_MATCH(DMI_PRODUCT_NAME, "PC-LZ750LS"),
1085 },
1086 },
1087 {},
1088};
1089
Len Brown4be44fc2005-08-05 00:44:28 -04001090static int acpi_battery_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091{
Len Brown4be44fc2005-08-05 00:44:28 -04001092 int result = 0;
Len Brown4be44fc2005-08-05 00:44:28 -04001093 struct acpi_battery *battery = NULL;
Jiang Liu952c63e2013-06-29 00:24:38 +08001094
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -04001096 return -EINVAL;
Burman Yan36bcbec2006-12-19 12:56:11 -08001097 battery = kzalloc(sizeof(struct acpi_battery), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -04001099 return -ENOMEM;
Patrick Mochel145def82006-05-19 16:54:39 -04001100 battery->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 strcpy(acpi_device_name(device), ACPI_BATTERY_DEVICE_NAME);
1102 strcpy(acpi_device_class(device), ACPI_BATTERY_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07001103 device->driver_data = battery;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +04001104 mutex_init(&battery->lock);
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +03001105 mutex_init(&battery->sysfs_lock);
Jiang Liu952c63e2013-06-29 00:24:38 +08001106 if (acpi_has_method(battery->device->handle, "_BIX"))
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +04001107 set_bit(ACPI_BATTERY_XINFO_PRESENT, &battery->flags);
Lan Tianyu9e50bc12014-05-04 14:07:06 +08001108 result = acpi_battery_update(battery, false);
Stefan Hajnoczieb03cb02011-07-12 09:03:29 +01001109 if (result)
1110 goto fail;
Lan Tianyu3a670cc2014-05-04 11:07:25 +08001111#ifdef CONFIG_ACPI_PROCFS_POWER
1112 result = acpi_battery_add_fs(device);
1113#endif
1114 if (result) {
1115#ifdef CONFIG_ACPI_PROCFS_POWER
1116 acpi_battery_remove_fs(device);
1117#endif
1118 goto fail;
1119 }
Kyle McMartin25be5822011-03-22 16:19:50 -04001120
Stefan Hajnoczie80bba42011-07-12 09:03:28 +01001121 printk(KERN_INFO PREFIX "%s Slot [%s] (battery %s)\n",
1122 ACPI_BATTERY_DEVICE_NAME, acpi_device_bid(device),
1123 device->status.battery_present ? "present" : "absent");
1124
Kyle McMartin25be5822011-03-22 16:19:50 -04001125 battery->pm_nb.notifier_call = battery_notify;
1126 register_pm_notifier(&battery->pm_nb);
1127
Patrick Mocheld550d982006-06-27 00:41:40 -04001128 return result;
Stefan Hajnoczie80bba42011-07-12 09:03:28 +01001129
1130fail:
1131 sysfs_remove_battery(battery);
1132 mutex_destroy(&battery->lock);
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +03001133 mutex_destroy(&battery->sysfs_lock);
Stefan Hajnoczie80bba42011-07-12 09:03:28 +01001134 kfree(battery);
1135 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136}
1137
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01001138static int acpi_battery_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139{
Len Brown4be44fc2005-08-05 00:44:28 -04001140 struct acpi_battery *battery = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001143 return -EINVAL;
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001144 battery = acpi_driver_data(device);
Kyle McMartin25be5822011-03-22 16:19:50 -04001145 unregister_pm_notifier(&battery->pm_nb);
Lan Tianyu3a670cc2014-05-04 11:07:25 +08001146#ifdef CONFIG_ACPI_PROCFS_POWER
1147 acpi_battery_remove_fs(device);
1148#endif
Andrey Borzenkov508df922007-10-28 12:50:09 +03001149 sysfs_remove_battery(battery);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +04001150 mutex_destroy(&battery->lock);
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +03001151 mutex_destroy(&battery->sysfs_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 kfree(battery);
Patrick Mocheld550d982006-06-27 00:41:40 -04001153 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154}
1155
Rafael J. Wysocki90692402012-08-09 23:00:02 +02001156#ifdef CONFIG_PM_SLEEP
Jiri Kosina34c44152006-10-10 14:20:41 -07001157/* this is needed to learn about changes made in suspended state */
Rafael J. Wysockia6f50dc2012-06-27 23:26:43 +02001158static int acpi_battery_resume(struct device *dev)
Jiri Kosina34c44152006-10-10 14:20:41 -07001159{
1160 struct acpi_battery *battery;
Rafael J. Wysockia6f50dc2012-06-27 23:26:43 +02001161
1162 if (!dev)
Jiri Kosina34c44152006-10-10 14:20:41 -07001163 return -EINVAL;
Rafael J. Wysockia6f50dc2012-06-27 23:26:43 +02001164
1165 battery = acpi_driver_data(to_acpi_device(dev));
1166 if (!battery)
1167 return -EINVAL;
1168
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +04001169 battery->update_time = 0;
Lan Tianyu9e50bc12014-05-04 14:07:06 +08001170 acpi_battery_update(battery, true);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +03001171 return 0;
Jiri Kosina34c44152006-10-10 14:20:41 -07001172}
Shuah Khan7f6895c2014-02-12 20:19:06 -07001173#else
1174#define acpi_battery_resume NULL
Rafael J. Wysocki90692402012-08-09 23:00:02 +02001175#endif
Jiri Kosina34c44152006-10-10 14:20:41 -07001176
Rafael J. Wysockia6f50dc2012-06-27 23:26:43 +02001177static SIMPLE_DEV_PM_OPS(acpi_battery_pm, NULL, acpi_battery_resume);
1178
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001179static struct acpi_driver acpi_battery_driver = {
1180 .name = "battery",
1181 .class = ACPI_BATTERY_CLASS,
1182 .ids = battery_device_ids,
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001183 .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001184 .ops = {
1185 .add = acpi_battery_add,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001186 .remove = acpi_battery_remove,
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001187 .notify = acpi_battery_notify,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001188 },
Rafael J. Wysockia6f50dc2012-06-27 23:26:43 +02001189 .drv.pm = &acpi_battery_pm,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001190};
1191
Linus Torvaldsb0cbc862009-04-11 12:45:20 -07001192static void __init acpi_battery_init_async(void *unused, async_cookie_t cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193{
Pavel Machek4d8316d2006-08-14 22:37:22 -07001194 if (acpi_disabled)
Arjan van de Ven0f66af52009-01-10 14:19:05 -05001195 return;
Lan Tianyua90b4032014-01-06 22:50:37 +08001196
1197 if (dmi_check_system(bat_dmi_table))
1198 battery_bix_broken_package = 1;
Lan Tianyu3a670cc2014-05-04 11:07:25 +08001199
1200#ifdef CONFIG_ACPI_PROCFS_POWER
1201 acpi_battery_dir = acpi_lock_battery_dir();
1202 if (!acpi_battery_dir)
1203 return;
1204#endif
1205 if (acpi_bus_register_driver(&acpi_battery_driver) < 0) {
1206#ifdef CONFIG_ACPI_PROCFS_POWER
1207 acpi_unlock_battery_dir(acpi_battery_dir);
1208#endif
1209 return;
1210 }
1211 return;
Arjan van de Ven0f66af52009-01-10 14:19:05 -05001212}
1213
1214static int __init acpi_battery_init(void)
1215{
1216 async_schedule(acpi_battery_init_async, NULL);
Patrick Mocheld550d982006-06-27 00:41:40 -04001217 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218}
1219
Len Brown4be44fc2005-08-05 00:44:28 -04001220static void __exit acpi_battery_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 acpi_bus_unregister_driver(&acpi_battery_driver);
Lan Tianyu3a670cc2014-05-04 11:07:25 +08001223#ifdef CONFIG_ACPI_PROCFS_POWER
1224 acpi_unlock_battery_dir(acpi_battery_dir);
1225#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226}
1227
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228module_init(acpi_battery_init);
1229module_exit(acpi_battery_exit);