blob: 023f9c8534d0607c3d6532b43e696961800d9e6c [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>
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040037
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +030038#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/proc_fs.h>
40#include <linux/seq_file.h>
41#include <asm/uaccess.h>
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040042#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44#include <acpi/acpi_bus.h>
45#include <acpi/acpi_drivers.h>
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040046#include <linux/power_supply.h>
47
Len Browna192a952009-07-28 16:45:54 -040048#define PREFIX "ACPI: "
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#define ACPI_BATTERY_VALUE_UNKNOWN 0xFFFFFFFF
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#define ACPI_BATTERY_CLASS "battery"
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define ACPI_BATTERY_DEVICE_NAME "Battery"
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#define ACPI_BATTERY_NOTIFY_STATUS 0x80
55#define ACPI_BATTERY_NOTIFY_INFO 0x81
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +040056#define ACPI_BATTERY_NOTIFY_THRESHOLD 0x82
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Lan Tianyuae6f6182011-06-30 11:32:40 +080058/* Battery power unit: 0 means mW, 1 means mA */
59#define ACPI_BATTERY_POWER_UNIT_MA 1
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#define _COMPONENT ACPI_BATTERY_COMPONENT
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +030062
Len Brownf52fd662007-02-12 22:42:12 -050063ACPI_MODULE_NAME("battery");
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Len Brownf52fd662007-02-12 22:42:12 -050065MODULE_AUTHOR("Paul Diefenbaugh");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +040066MODULE_AUTHOR("Alexey Starikovskiy <astarikovskiy@suse.de>");
Len Brown7cda93e2007-02-12 23:50:02 -050067MODULE_DESCRIPTION("ACPI Battery Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070068MODULE_LICENSE("GPL");
69
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +040070static unsigned int cache_time = 1000;
71module_param(cache_time, uint, 0644);
72MODULE_PARM_DESC(cache_time, "cache time in milliseconds");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +030073
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +030074#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -040075extern struct proc_dir_entry *acpi_lock_battery_dir(void);
76extern void *acpi_unlock_battery_dir(struct proc_dir_entry *acpi_battery_dir);
77
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040078enum acpi_battery_files {
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +040079 info_tag = 0,
80 state_tag,
81 alarm_tag,
Alexey Starikovskiy78490d82007-05-11 13:18:55 -040082 ACPI_BATTERY_NUMFILES,
83};
84
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040085#endif
86
87static const struct acpi_device_id battery_device_ids[] = {
88 {"PNP0C0A", 0},
89 {"", 0},
90};
91
92MODULE_DEVICE_TABLE(acpi, battery_device_ids);
93
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +040094enum {
95 ACPI_BATTERY_ALARM_PRESENT,
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +040096 ACPI_BATTERY_XINFO_PRESENT,
Zhang Rui557d5862010-10-22 10:02:06 +080097 ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY,
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +040098};
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040099
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400100struct acpi_battery {
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400101 struct mutex lock;
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300102 struct mutex sysfs_lock;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400103 struct power_supply bat;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400104 struct acpi_device *device;
Kyle McMartin25be5822011-03-22 16:19:50 -0400105 struct notifier_block pm_nb;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400106 unsigned long update_time;
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400107 int rate_now;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400108 int capacity_now;
109 int voltage_now;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400110 int design_capacity;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400111 int full_charge_capacity;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400112 int technology;
113 int design_voltage;
114 int design_capacity_warning;
115 int design_capacity_low;
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400116 int cycle_count;
117 int measurement_accuracy;
118 int max_sampling_time;
119 int min_sampling_time;
120 int max_averaging_interval;
121 int min_averaging_interval;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400122 int capacity_granularity_1;
123 int capacity_granularity_2;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400124 int alarm;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400125 char model_number[32];
126 char serial_number[32];
127 char type[32];
128 char oem_info[32];
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400129 int state;
130 int power_unit;
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400131 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132};
133
Phil Carmody497888c2011-07-14 15:07:13 +0300134#define to_acpi_battery(x) container_of(x, struct acpi_battery, bat)
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400135
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400136inline int acpi_battery_present(struct acpi_battery *battery)
137{
138 return battery->device->status.battery_present;
139}
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400140
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400141static int acpi_battery_technology(struct acpi_battery *battery)
142{
143 if (!strcasecmp("NiCd", battery->type))
144 return POWER_SUPPLY_TECHNOLOGY_NiCd;
145 if (!strcasecmp("NiMH", battery->type))
146 return POWER_SUPPLY_TECHNOLOGY_NiMH;
147 if (!strcasecmp("LION", battery->type))
148 return POWER_SUPPLY_TECHNOLOGY_LION;
Andrey Borzenkovad40e682007-11-10 20:02:49 +0300149 if (!strncasecmp("LI-ION", battery->type, 6))
Alexey Starikovskiy0bde7ee2007-10-28 15:33:10 +0300150 return POWER_SUPPLY_TECHNOLOGY_LION;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400151 if (!strcasecmp("LiP", battery->type))
152 return POWER_SUPPLY_TECHNOLOGY_LIPO;
153 return POWER_SUPPLY_TECHNOLOGY_UNKNOWN;
154}
155
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300156static int acpi_battery_get_state(struct acpi_battery *battery);
Alexey Starikovskiyb19073a2007-10-25 17:10:47 -0400157
Richard Hughes56f382a2009-01-25 15:05:50 +0000158static int acpi_battery_is_charged(struct acpi_battery *battery)
159{
160 /* either charging or discharging */
161 if (battery->state != 0)
162 return 0;
163
164 /* battery not reporting charge */
165 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN ||
166 battery->capacity_now == 0)
167 return 0;
168
169 /* good batteries update full_charge as the batteries degrade */
170 if (battery->full_charge_capacity == battery->capacity_now)
171 return 1;
172
173 /* fallback to using design values for broken batteries */
174 if (battery->design_capacity == battery->capacity_now)
175 return 1;
176
177 /* we don't do any sort of metric based on percentages */
178 return 0;
179}
180
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400181static int acpi_battery_get_property(struct power_supply *psy,
182 enum power_supply_property psp,
183 union power_supply_propval *val)
184{
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200185 int ret = 0;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400186 struct acpi_battery *battery = to_acpi_battery(psy);
187
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300188 if (acpi_battery_present(battery)) {
189 /* run battery update only if it is present */
190 acpi_battery_get_state(battery);
191 } else if (psp != POWER_SUPPLY_PROP_PRESENT)
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400192 return -ENODEV;
193 switch (psp) {
194 case POWER_SUPPLY_PROP_STATUS:
195 if (battery->state & 0x01)
196 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
197 else if (battery->state & 0x02)
198 val->intval = POWER_SUPPLY_STATUS_CHARGING;
Richard Hughes56f382a2009-01-25 15:05:50 +0000199 else if (acpi_battery_is_charged(battery))
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400200 val->intval = POWER_SUPPLY_STATUS_FULL;
Roland Dreier4c41d3a2007-11-07 15:09:09 -0800201 else
202 val->intval = POWER_SUPPLY_STATUS_UNKNOWN;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400203 break;
204 case POWER_SUPPLY_PROP_PRESENT:
205 val->intval = acpi_battery_present(battery);
206 break;
207 case POWER_SUPPLY_PROP_TECHNOLOGY:
208 val->intval = acpi_battery_technology(battery);
209 break;
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400210 case POWER_SUPPLY_PROP_CYCLE_COUNT:
211 val->intval = battery->cycle_count;
212 break;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400213 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200214 if (battery->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN)
215 ret = -ENODEV;
216 else
217 val->intval = battery->design_voltage * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400218 break;
219 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200220 if (battery->voltage_now == ACPI_BATTERY_VALUE_UNKNOWN)
221 ret = -ENODEV;
222 else
223 val->intval = battery->voltage_now * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400224 break;
225 case POWER_SUPPLY_PROP_CURRENT_NOW:
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400226 case POWER_SUPPLY_PROP_POWER_NOW:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200227 if (battery->rate_now == ACPI_BATTERY_VALUE_UNKNOWN)
228 ret = -ENODEV;
229 else
230 val->intval = battery->rate_now * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400231 break;
232 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
233 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200234 if (battery->design_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
235 ret = -ENODEV;
236 else
237 val->intval = battery->design_capacity * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400238 break;
239 case POWER_SUPPLY_PROP_CHARGE_FULL:
240 case POWER_SUPPLY_PROP_ENERGY_FULL:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200241 if (battery->full_charge_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
242 ret = -ENODEV;
243 else
244 val->intval = battery->full_charge_capacity * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400245 break;
246 case POWER_SUPPLY_PROP_CHARGE_NOW:
247 case POWER_SUPPLY_PROP_ENERGY_NOW:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200248 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN)
249 ret = -ENODEV;
250 else
251 val->intval = battery->capacity_now * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400252 break;
253 case POWER_SUPPLY_PROP_MODEL_NAME:
254 val->strval = battery->model_number;
255 break;
256 case POWER_SUPPLY_PROP_MANUFACTURER:
257 val->strval = battery->oem_info;
258 break;
maximilian attems7c2670b2008-01-22 18:46:50 +0100259 case POWER_SUPPLY_PROP_SERIAL_NUMBER:
260 val->strval = battery->serial_number;
261 break;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400262 default:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200263 ret = -EINVAL;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400264 }
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200265 return ret;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400266}
267
268static enum power_supply_property charge_battery_props[] = {
269 POWER_SUPPLY_PROP_STATUS,
270 POWER_SUPPLY_PROP_PRESENT,
271 POWER_SUPPLY_PROP_TECHNOLOGY,
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400272 POWER_SUPPLY_PROP_CYCLE_COUNT,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400273 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
274 POWER_SUPPLY_PROP_VOLTAGE_NOW,
275 POWER_SUPPLY_PROP_CURRENT_NOW,
276 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
277 POWER_SUPPLY_PROP_CHARGE_FULL,
278 POWER_SUPPLY_PROP_CHARGE_NOW,
279 POWER_SUPPLY_PROP_MODEL_NAME,
280 POWER_SUPPLY_PROP_MANUFACTURER,
maximilian attems7c2670b2008-01-22 18:46:50 +0100281 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400282};
283
284static enum power_supply_property energy_battery_props[] = {
285 POWER_SUPPLY_PROP_STATUS,
286 POWER_SUPPLY_PROP_PRESENT,
287 POWER_SUPPLY_PROP_TECHNOLOGY,
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400288 POWER_SUPPLY_PROP_CYCLE_COUNT,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400289 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
290 POWER_SUPPLY_PROP_VOLTAGE_NOW,
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400291 POWER_SUPPLY_PROP_POWER_NOW,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400292 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN,
293 POWER_SUPPLY_PROP_ENERGY_FULL,
294 POWER_SUPPLY_PROP_ENERGY_NOW,
295 POWER_SUPPLY_PROP_MODEL_NAME,
296 POWER_SUPPLY_PROP_MANUFACTURER,
maximilian attems7c2670b2008-01-22 18:46:50 +0100297 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400298};
299
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300300#ifdef CONFIG_ACPI_PROCFS_POWER
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400301inline char *acpi_battery_units(struct acpi_battery *battery)
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400302{
Lan Tianyuae6f6182011-06-30 11:32:40 +0800303 return (battery->power_unit == ACPI_BATTERY_POWER_UNIT_MA) ?
304 "mA" : "mW";
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400305}
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400306#endif
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308/* --------------------------------------------------------------------------
309 Battery Management
310 -------------------------------------------------------------------------- */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400311struct acpi_offsets {
312 size_t offset; /* offset inside struct acpi_sbs_battery */
313 u8 mode; /* int or string? */
314};
315
316static struct acpi_offsets state_offsets[] = {
317 {offsetof(struct acpi_battery, state), 0},
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400318 {offsetof(struct acpi_battery, rate_now), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400319 {offsetof(struct acpi_battery, capacity_now), 0},
320 {offsetof(struct acpi_battery, voltage_now), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400321};
322
323static struct acpi_offsets info_offsets[] = {
324 {offsetof(struct acpi_battery, power_unit), 0},
325 {offsetof(struct acpi_battery, design_capacity), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400326 {offsetof(struct acpi_battery, full_charge_capacity), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400327 {offsetof(struct acpi_battery, technology), 0},
328 {offsetof(struct acpi_battery, design_voltage), 0},
329 {offsetof(struct acpi_battery, design_capacity_warning), 0},
330 {offsetof(struct acpi_battery, design_capacity_low), 0},
331 {offsetof(struct acpi_battery, capacity_granularity_1), 0},
332 {offsetof(struct acpi_battery, capacity_granularity_2), 0},
333 {offsetof(struct acpi_battery, model_number), 1},
334 {offsetof(struct acpi_battery, serial_number), 1},
335 {offsetof(struct acpi_battery, type), 1},
336 {offsetof(struct acpi_battery, oem_info), 1},
337};
338
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400339static struct acpi_offsets extended_info_offsets[] = {
340 {offsetof(struct acpi_battery, power_unit), 0},
341 {offsetof(struct acpi_battery, design_capacity), 0},
342 {offsetof(struct acpi_battery, full_charge_capacity), 0},
343 {offsetof(struct acpi_battery, technology), 0},
344 {offsetof(struct acpi_battery, design_voltage), 0},
345 {offsetof(struct acpi_battery, design_capacity_warning), 0},
346 {offsetof(struct acpi_battery, design_capacity_low), 0},
347 {offsetof(struct acpi_battery, cycle_count), 0},
348 {offsetof(struct acpi_battery, measurement_accuracy), 0},
349 {offsetof(struct acpi_battery, max_sampling_time), 0},
350 {offsetof(struct acpi_battery, min_sampling_time), 0},
351 {offsetof(struct acpi_battery, max_averaging_interval), 0},
352 {offsetof(struct acpi_battery, min_averaging_interval), 0},
353 {offsetof(struct acpi_battery, capacity_granularity_1), 0},
354 {offsetof(struct acpi_battery, capacity_granularity_2), 0},
355 {offsetof(struct acpi_battery, model_number), 1},
356 {offsetof(struct acpi_battery, serial_number), 1},
357 {offsetof(struct acpi_battery, type), 1},
358 {offsetof(struct acpi_battery, oem_info), 1},
359};
360
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400361static int extract_package(struct acpi_battery *battery,
362 union acpi_object *package,
363 struct acpi_offsets *offsets, int num)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300364{
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300365 int i;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400366 union acpi_object *element;
367 if (package->type != ACPI_TYPE_PACKAGE)
368 return -EFAULT;
369 for (i = 0; i < num; ++i) {
370 if (package->package.count <= i)
371 return -EFAULT;
372 element = &package->package.elements[i];
373 if (offsets[i].mode) {
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300374 u8 *ptr = (u8 *)battery + offsets[i].offset;
375 if (element->type == ACPI_TYPE_STRING ||
376 element->type == ACPI_TYPE_BUFFER)
377 strncpy(ptr, element->string.pointer, 32);
378 else if (element->type == ACPI_TYPE_INTEGER) {
379 strncpy(ptr, (u8 *)&element->integer.value,
Lin Ming439913f2010-01-28 10:53:19 +0800380 sizeof(u64));
381 ptr[sizeof(u64)] = 0;
Alexey Starikovskiyb8a1bdb2008-03-17 22:37:42 -0400382 } else
383 *ptr = 0; /* don't have value */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400384 } else {
Alexey Starikovskiyb8a1bdb2008-03-17 22:37:42 -0400385 int *x = (int *)((u8 *)battery + offsets[i].offset);
386 *x = (element->type == ACPI_TYPE_INTEGER) ?
387 element->integer.value : -1;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300388 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300389 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300390 return 0;
391}
392
393static int acpi_battery_get_status(struct acpi_battery *battery)
394{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400395 if (acpi_bus_get_status(battery->device)) {
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300396 ACPI_EXCEPTION((AE_INFO, AE_ERROR, "Evaluating _STA"));
397 return -ENODEV;
398 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400399 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300400}
401
402static int acpi_battery_get_info(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400404 int result = -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -0400405 acpi_status status = 0;
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400406 char *name = test_bit(ACPI_BATTERY_XINFO_PRESENT, &battery->flags)?
407 "_BIX" : "_BIF";
408
Len Brown4be44fc2005-08-05 00:44:28 -0400409 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300411 if (!acpi_battery_present(battery))
412 return 0;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400413 mutex_lock(&battery->lock);
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400414 status = acpi_evaluate_object(battery->device->handle, name,
415 NULL, &buffer);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400416 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 if (ACPI_FAILURE(status)) {
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400419 ACPI_EXCEPTION((AE_INFO, status, "Evaluating %s", name));
Patrick Mocheld550d982006-06-27 00:41:40 -0400420 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 }
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400422 if (test_bit(ACPI_BATTERY_XINFO_PRESENT, &battery->flags))
423 result = extract_package(battery, buffer.pointer,
424 extended_info_offsets,
425 ARRAY_SIZE(extended_info_offsets));
426 else
427 result = extract_package(battery, buffer.pointer,
428 info_offsets, ARRAY_SIZE(info_offsets));
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400429 kfree(buffer.pointer);
Zhang Rui557d5862010-10-22 10:02:06 +0800430 if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags))
431 battery->full_charge_capacity = battery->design_capacity;
Patrick Mocheld550d982006-06-27 00:41:40 -0400432 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433}
434
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300435static int acpi_battery_get_state(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
Len Brown4be44fc2005-08-05 00:44:28 -0400437 int result = 0;
438 acpi_status status = 0;
439 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300441 if (!acpi_battery_present(battery))
442 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400444 if (battery->update_time &&
445 time_before(jiffies, battery->update_time +
446 msecs_to_jiffies(cache_time)))
447 return 0;
448
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400449 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400450 status = acpi_evaluate_object(battery->device->handle, "_BST",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400451 NULL, &buffer);
452 mutex_unlock(&battery->lock);
Len Brown5b31d892007-08-15 00:19:26 -0400453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400455 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BST"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400456 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400458
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400459 result = extract_package(battery, buffer.pointer,
460 state_offsets, ARRAY_SIZE(state_offsets));
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400461 battery->update_time = jiffies;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400462 kfree(buffer.pointer);
Hector Martinbc76f902009-08-06 15:57:48 -0700463
Lan Tianyu55003b22011-06-30 11:33:12 +0800464 /* For buggy DSDTs that report negative 16-bit values for either
465 * charging or discharging current and/or report 0 as 65536
466 * due to bad math.
467 */
468 if (battery->power_unit == ACPI_BATTERY_POWER_UNIT_MA &&
469 battery->rate_now != ACPI_BATTERY_VALUE_UNKNOWN &&
470 (s16)(battery->rate_now) < 0) {
Hector Martinbc76f902009-08-06 15:57:48 -0700471 battery->rate_now = abs((s16)battery->rate_now);
Lan Tianyu55003b22011-06-30 11:33:12 +0800472 printk_once(KERN_WARNING FW_BUG "battery: (dis)charge rate"
473 " invalid.\n");
474 }
Hector Martinbc76f902009-08-06 15:57:48 -0700475
Zhang Rui557d5862010-10-22 10:02:06 +0800476 if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags)
477 && battery->capacity_now >= 0 && battery->capacity_now <= 100)
478 battery->capacity_now = (battery->capacity_now *
479 battery->full_charge_capacity) / 100;
Patrick Mocheld550d982006-06-27 00:41:40 -0400480 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481}
482
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400483static int acpi_battery_set_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484{
Len Brown4be44fc2005-08-05 00:44:28 -0400485 acpi_status status = 0;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400486 union acpi_object arg0 = { .type = ACPI_TYPE_INTEGER };
Len Brown4be44fc2005-08-05 00:44:28 -0400487 struct acpi_object_list arg_list = { 1, &arg0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400489 if (!acpi_battery_present(battery) ||
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400490 !test_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags))
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300491 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400493 arg0.integer.value = battery->alarm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400495 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400496 status = acpi_evaluate_object(battery->device->handle, "_BTP",
497 &arg_list, NULL);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400498 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400501 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400503 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Alarm set to %d\n", battery->alarm));
Patrick Mocheld550d982006-06-27 00:41:40 -0400504 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505}
506
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300507static int acpi_battery_init_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
Len Brown4be44fc2005-08-05 00:44:28 -0400509 acpi_status status = AE_OK;
510 acpi_handle handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300512 /* See if alarms are supported, and if so, set default */
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400513 status = acpi_get_handle(battery->device->handle, "_BTP", &handle);
514 if (ACPI_FAILURE(status)) {
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400515 clear_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400516 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 }
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400518 set_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400519 if (!battery->alarm)
520 battery->alarm = battery->design_capacity_warning;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400521 return acpi_battery_set_alarm(battery);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522}
523
Andrey Borzenkov508df922007-10-28 12:50:09 +0300524static ssize_t acpi_battery_alarm_show(struct device *dev,
525 struct device_attribute *attr,
526 char *buf)
527{
528 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
529 return sprintf(buf, "%d\n", battery->alarm * 1000);
530}
531
532static ssize_t acpi_battery_alarm_store(struct device *dev,
533 struct device_attribute *attr,
534 const char *buf, size_t count)
535{
536 unsigned long x;
537 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
538 if (sscanf(buf, "%ld\n", &x) == 1)
539 battery->alarm = x/1000;
540 if (acpi_battery_present(battery))
541 acpi_battery_set_alarm(battery);
542 return count;
543}
544
545static struct device_attribute alarm_attr = {
Parag Warudkar01e8ef12008-10-18 20:28:50 -0700546 .attr = {.name = "alarm", .mode = 0644},
Andrey Borzenkov508df922007-10-28 12:50:09 +0300547 .show = acpi_battery_alarm_show,
548 .store = acpi_battery_alarm_store,
549};
550
551static int sysfs_add_battery(struct acpi_battery *battery)
552{
553 int result;
554
Lan Tianyuae6f6182011-06-30 11:32:40 +0800555 if (battery->power_unit == ACPI_BATTERY_POWER_UNIT_MA) {
Andrey Borzenkov508df922007-10-28 12:50:09 +0300556 battery->bat.properties = charge_battery_props;
557 battery->bat.num_properties =
558 ARRAY_SIZE(charge_battery_props);
559 } else {
560 battery->bat.properties = energy_battery_props;
561 battery->bat.num_properties =
562 ARRAY_SIZE(energy_battery_props);
563 }
564
565 battery->bat.name = acpi_device_bid(battery->device);
566 battery->bat.type = POWER_SUPPLY_TYPE_BATTERY;
567 battery->bat.get_property = acpi_battery_get_property;
568
569 result = power_supply_register(&battery->device->dev, &battery->bat);
570 if (result)
571 return result;
572 return device_create_file(battery->bat.dev, &alarm_attr);
573}
574
575static void sysfs_remove_battery(struct acpi_battery *battery)
576{
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300577 mutex_lock(&battery->sysfs_lock);
Lan Tianyu9c921c222011-06-30 11:34:12 +0800578 if (!battery->bat.dev) {
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300579 mutex_unlock(&battery->sysfs_lock);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300580 return;
Lan Tianyu9c921c222011-06-30 11:34:12 +0800581 }
582
Andrey Borzenkov508df922007-10-28 12:50:09 +0300583 device_remove_file(battery->bat.dev, &alarm_attr);
584 power_supply_unregister(&battery->bat);
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300585 battery->bat.dev = NULL;
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300586 mutex_unlock(&battery->sysfs_lock);
Hector Martinbc76f902009-08-06 15:57:48 -0700587}
588
Zhang Rui557d5862010-10-22 10:02:06 +0800589/*
590 * According to the ACPI spec, some kinds of primary batteries can
591 * report percentage battery remaining capacity directly to OS.
592 * In this case, it reports the Last Full Charged Capacity == 100
593 * and BatteryPresentRate == 0xFFFFFFFF.
594 *
595 * Now we found some battery reports percentage remaining capacity
596 * even if it's rechargeable.
597 * https://bugzilla.kernel.org/show_bug.cgi?id=15979
598 *
599 * Handle this correctly so that they won't break userspace.
600 */
Lan Tianyu7b786222011-06-30 11:33:27 +0800601static void acpi_battery_quirks(struct acpi_battery *battery)
Zhang Rui557d5862010-10-22 10:02:06 +0800602{
603 if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags))
604 return ;
605
606 if (battery->full_charge_capacity == 100 &&
607 battery->rate_now == ACPI_BATTERY_VALUE_UNKNOWN &&
608 battery->capacity_now >=0 && battery->capacity_now <= 100) {
609 set_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags);
610 battery->full_charge_capacity = battery->design_capacity;
611 battery->capacity_now = (battery->capacity_now *
612 battery->full_charge_capacity) / 100;
613 }
614}
615
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400616static int acpi_battery_update(struct acpi_battery *battery)
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500617{
Alexey Starikovskiy50b17852008-12-23 02:44:54 +0300618 int result, old_present = acpi_battery_present(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500619 result = acpi_battery_get_status(battery);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300620 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300621 return result;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300622 if (!acpi_battery_present(battery)) {
623 sysfs_remove_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500624 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300625 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300626 }
Alexey Starikovskiy50b17852008-12-23 02:44:54 +0300627 if (!battery->update_time ||
628 old_present != acpi_battery_present(battery)) {
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500629 result = acpi_battery_get_info(battery);
630 if (result)
631 return result;
632 acpi_battery_init_alarm(battery);
633 }
Stefan Hajnoczieb03cb02011-07-12 09:03:29 +0100634 if (!battery->bat.dev) {
635 result = sysfs_add_battery(battery);
636 if (result)
637 return result;
638 }
Zhang Rui557d5862010-10-22 10:02:06 +0800639 result = acpi_battery_get_state(battery);
Lan Tianyu7b786222011-06-30 11:33:27 +0800640 acpi_battery_quirks(battery);
Zhang Rui557d5862010-10-22 10:02:06 +0800641 return result;
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500642}
643
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +0100644static void acpi_battery_refresh(struct acpi_battery *battery)
645{
Andy Whitcroftc5971452012-05-03 14:48:26 +0100646 int power_unit;
647
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +0100648 if (!battery->bat.dev)
649 return;
650
Andy Whitcroftc5971452012-05-03 14:48:26 +0100651 power_unit = battery->power_unit;
652
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +0100653 acpi_battery_get_info(battery);
Andy Whitcroftc5971452012-05-03 14:48:26 +0100654
655 if (power_unit == battery->power_unit)
656 return;
657
658 /* The battery has changed its reporting units. */
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +0100659 sysfs_remove_battery(battery);
660 sysfs_add_battery(battery);
661}
662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663/* --------------------------------------------------------------------------
664 FS Interface (/proc)
665 -------------------------------------------------------------------------- */
666
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300667#ifdef CONFIG_ACPI_PROCFS_POWER
Len Brown4be44fc2005-08-05 00:44:28 -0400668static struct proc_dir_entry *acpi_battery_dir;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300669
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400670static int acpi_battery_print_info(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200672 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300674 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 goto end;
676
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400677 seq_printf(seq, "present: %s\n",
678 acpi_battery_present(battery)?"yes":"no");
679 if (!acpi_battery_present(battery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 goto end;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400681 if (battery->design_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 seq_printf(seq, "design capacity: unknown\n");
683 else
684 seq_printf(seq, "design capacity: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400685 battery->design_capacity,
686 acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400688 if (battery->full_charge_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 seq_printf(seq, "last full capacity: unknown\n");
690 else
691 seq_printf(seq, "last full capacity: %d %sh\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400692 battery->full_charge_capacity,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400693 acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400695 seq_printf(seq, "battery technology: %srechargeable\n",
696 (!battery->technology)?"non-":"");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400698 if (battery->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 seq_printf(seq, "design voltage: unknown\n");
700 else
701 seq_printf(seq, "design voltage: %d mV\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400702 battery->design_voltage);
Len Brown4be44fc2005-08-05 00:44:28 -0400703 seq_printf(seq, "design capacity warning: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400704 battery->design_capacity_warning,
705 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400706 seq_printf(seq, "design capacity low: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400707 battery->design_capacity_low,
708 acpi_battery_units(battery));
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400709 seq_printf(seq, "cycle count: %i\n", battery->cycle_count);
Len Brown4be44fc2005-08-05 00:44:28 -0400710 seq_printf(seq, "capacity granularity 1: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400711 battery->capacity_granularity_1,
712 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400713 seq_printf(seq, "capacity granularity 2: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400714 battery->capacity_granularity_2,
715 acpi_battery_units(battery));
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400716 seq_printf(seq, "model number: %s\n", battery->model_number);
717 seq_printf(seq, "serial number: %s\n", battery->serial_number);
718 seq_printf(seq, "battery type: %s\n", battery->type);
719 seq_printf(seq, "OEM info: %s\n", battery->oem_info);
Len Brown4be44fc2005-08-05 00:44:28 -0400720 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300721 if (result)
722 seq_printf(seq, "ERROR: Unable to read battery info\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300723 return result;
724}
725
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400726static int acpi_battery_print_state(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200728 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300730 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 goto end;
732
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400733 seq_printf(seq, "present: %s\n",
734 acpi_battery_present(battery)?"yes":"no");
735 if (!acpi_battery_present(battery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400738 seq_printf(seq, "capacity state: %s\n",
739 (battery->state & 0x04)?"critical":"ok");
740 if ((battery->state & 0x01) && (battery->state & 0x02))
Len Brown4be44fc2005-08-05 00:44:28 -0400741 seq_printf(seq,
742 "charging state: charging/discharging\n");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400743 else if (battery->state & 0x01)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 seq_printf(seq, "charging state: discharging\n");
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400745 else if (battery->state & 0x02)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 seq_printf(seq, "charging state: charging\n");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400747 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 seq_printf(seq, "charging state: charged\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400750 if (battery->rate_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 seq_printf(seq, "present rate: unknown\n");
752 else
753 seq_printf(seq, "present rate: %d %s\n",
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400754 battery->rate_now, acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400756 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 seq_printf(seq, "remaining capacity: unknown\n");
758 else
759 seq_printf(seq, "remaining capacity: %d %sh\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400760 battery->capacity_now, acpi_battery_units(battery));
761 if (battery->voltage_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 seq_printf(seq, "present voltage: unknown\n");
763 else
764 seq_printf(seq, "present voltage: %d mV\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400765 battery->voltage_now);
Len Brown4be44fc2005-08-05 00:44:28 -0400766 end:
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400767 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300768 seq_printf(seq, "ERROR: Unable to read battery state\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300769
770 return result;
771}
772
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400773static int acpi_battery_print_alarm(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200775 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300777 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 goto end;
779
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300780 if (!acpi_battery_present(battery)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 seq_printf(seq, "present: no\n");
782 goto end;
783 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 seq_printf(seq, "alarm: ");
785 if (!battery->alarm)
786 seq_printf(seq, "unsupported\n");
787 else
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400788 seq_printf(seq, "%u %sh\n", battery->alarm,
789 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400790 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300791 if (result)
792 seq_printf(seq, "ERROR: Unable to read battery alarm\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300793 return result;
794}
795
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400796static ssize_t acpi_battery_write_alarm(struct file *file,
797 const char __user * buffer,
798 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
Len Brown4be44fc2005-08-05 00:44:28 -0400800 int result = 0;
801 char alarm_string[12] = { '\0' };
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200802 struct seq_file *m = file->private_data;
803 struct acpi_battery *battery = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 if (!battery || (count > sizeof(alarm_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -0400806 return -EINVAL;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300807 if (!acpi_battery_present(battery)) {
808 result = -ENODEV;
809 goto end;
810 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300811 if (copy_from_user(alarm_string, buffer, count)) {
812 result = -EFAULT;
813 goto end;
814 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 alarm_string[count] = '\0';
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400816 battery->alarm = simple_strtol(alarm_string, NULL, 0);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400817 result = acpi_battery_set_alarm(battery);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300818 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300819 if (!result)
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400820 return count;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300821 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822}
823
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400824typedef int(*print_func)(struct seq_file *seq, int result);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400825
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400826static print_func acpi_print_funcs[ACPI_BATTERY_NUMFILES] = {
827 acpi_battery_print_info,
828 acpi_battery_print_state,
829 acpi_battery_print_alarm,
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400830};
831
832static int acpi_battery_read(int fid, struct seq_file *seq)
833{
834 struct acpi_battery *battery = seq->private;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400835 int result = acpi_battery_update(battery);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400836 return acpi_print_funcs[fid](seq, result);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400837}
838
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400839#define DECLARE_FILE_FUNCTIONS(_name) \
840static int acpi_battery_read_##_name(struct seq_file *seq, void *offset) \
841{ \
842 return acpi_battery_read(_name##_tag, seq); \
843} \
844static int acpi_battery_##_name##_open_fs(struct inode *inode, struct file *file) \
845{ \
846 return single_open(file, acpi_battery_read_##_name, PDE(inode)->data); \
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400847}
848
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400849DECLARE_FILE_FUNCTIONS(info);
850DECLARE_FILE_FUNCTIONS(state);
851DECLARE_FILE_FUNCTIONS(alarm);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400852
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400853#undef DECLARE_FILE_FUNCTIONS
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400854
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400855#define FILE_DESCRIPTION_RO(_name) \
856 { \
857 .name = __stringify(_name), \
858 .mode = S_IRUGO, \
859 .ops = { \
860 .open = acpi_battery_##_name##_open_fs, \
861 .read = seq_read, \
862 .llseek = seq_lseek, \
863 .release = single_release, \
864 .owner = THIS_MODULE, \
865 }, \
866 }
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400867
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400868#define FILE_DESCRIPTION_RW(_name) \
869 { \
870 .name = __stringify(_name), \
871 .mode = S_IFREG | S_IRUGO | S_IWUSR, \
872 .ops = { \
873 .open = acpi_battery_##_name##_open_fs, \
874 .read = seq_read, \
875 .llseek = seq_lseek, \
876 .write = acpi_battery_write_##_name, \
877 .release = single_release, \
878 .owner = THIS_MODULE, \
879 }, \
880 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Vasiliy Kulikov9c8b04b2011-06-25 21:07:52 +0400882static const struct battery_file {
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400883 struct file_operations ops;
Al Virod161a132011-07-24 03:36:29 -0400884 umode_t mode;
Jan Engelhardt070d8eb2009-01-12 00:07:55 +0100885 const char *name;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400886} acpi_battery_file[] = {
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400887 FILE_DESCRIPTION_RO(info),
888 FILE_DESCRIPTION_RO(state),
889 FILE_DESCRIPTION_RW(alarm),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890};
891
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400892#undef FILE_DESCRIPTION_RO
893#undef FILE_DESCRIPTION_RW
894
Len Brown4be44fc2005-08-05 00:44:28 -0400895static int acpi_battery_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896{
Len Brown4be44fc2005-08-05 00:44:28 -0400897 struct proc_dir_entry *entry = NULL;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400898 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Zhang Rui6d855fc2011-01-10 11:16:30 +0800900 printk(KERN_WARNING PREFIX "Deprecated procfs I/F for battery is loaded,"
901 " please retry with CONFIG_ACPI_PROCFS_POWER cleared\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 if (!acpi_device_dir(device)) {
903 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400904 acpi_battery_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400906 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 }
908
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400909 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i) {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700910 entry = proc_create_data(acpi_battery_file[i].name,
911 acpi_battery_file[i].mode,
912 acpi_device_dir(device),
913 &acpi_battery_file[i].ops,
914 acpi_driver_data(device));
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400915 if (!entry)
916 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400918 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919}
920
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400921static void acpi_battery_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922{
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400923 int i;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400924 if (!acpi_device_dir(device))
925 return;
926 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i)
927 remove_proc_entry(acpi_battery_file[i].name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400930 remove_proc_entry(acpi_device_bid(device), acpi_battery_dir);
931 acpi_device_dir(device) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932}
933
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400934#endif
Alexey Starikovskiy3e58ea02007-09-26 19:43:11 +0400935
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936/* --------------------------------------------------------------------------
937 Driver Interface
938 -------------------------------------------------------------------------- */
939
Bjorn Helgaasd9406692009-04-30 09:35:47 -0600940static void acpi_battery_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941{
Bjorn Helgaasd9406692009-04-30 09:35:47 -0600942 struct acpi_battery *battery = acpi_driver_data(device);
Zhang Rui153e5002010-07-07 09:11:57 +0800943 struct device *old;
Bjorn Helgaasd9406692009-04-30 09:35:47 -0600944
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -0400946 return;
Zhang Rui153e5002010-07-07 09:11:57 +0800947 old = battery->bat.dev;
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +0100948 if (event == ACPI_BATTERY_NOTIFY_INFO)
949 acpi_battery_refresh(battery);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400950 acpi_battery_update(battery);
951 acpi_bus_generate_proc_event(device, event,
952 acpi_battery_present(battery));
953 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100954 dev_name(&device->dev), event,
Vladimir Lebedev9ea7d572007-02-20 15:48:06 +0300955 acpi_battery_present(battery));
Justin P. Mattock2345baf2009-12-13 14:42:36 -0800956 /* acpi_battery_update could remove power_supply object */
Zhang Rui153e5002010-07-07 09:11:57 +0800957 if (old && battery->bat.dev)
Alan Jenkinsf79e1ce2009-06-30 14:36:16 +0000958 power_supply_changed(&battery->bat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959}
960
Kyle McMartin25be5822011-03-22 16:19:50 -0400961static int battery_notify(struct notifier_block *nb,
962 unsigned long mode, void *_unused)
963{
964 struct acpi_battery *battery = container_of(nb, struct acpi_battery,
965 pm_nb);
966 switch (mode) {
Lan Tianyud5a59112011-06-30 11:33:40 +0800967 case PM_POST_HIBERNATION:
Kyle McMartin25be5822011-03-22 16:19:50 -0400968 case PM_POST_SUSPEND:
Lan Tianyu6e17fb62011-06-30 11:33:58 +0800969 if (battery->bat.dev) {
970 sysfs_remove_battery(battery);
971 sysfs_add_battery(battery);
972 }
Kyle McMartin25be5822011-03-22 16:19:50 -0400973 break;
974 }
975
976 return 0;
977}
978
Len Brown4be44fc2005-08-05 00:44:28 -0400979static int acpi_battery_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980{
Len Brown4be44fc2005-08-05 00:44:28 -0400981 int result = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400982 struct acpi_battery *battery = NULL;
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400983 acpi_handle handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400985 return -EINVAL;
Burman Yan36bcbec2006-12-19 12:56:11 -0800986 battery = kzalloc(sizeof(struct acpi_battery), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -0400988 return -ENOMEM;
Patrick Mochel145def82006-05-19 16:54:39 -0400989 battery->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 strcpy(acpi_device_name(device), ACPI_BATTERY_DEVICE_NAME);
991 strcpy(acpi_device_class(device), ACPI_BATTERY_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700992 device->driver_data = battery;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400993 mutex_init(&battery->lock);
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300994 mutex_init(&battery->sysfs_lock);
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400995 if (ACPI_SUCCESS(acpi_get_handle(battery->device->handle,
996 "_BIX", &handle)))
997 set_bit(ACPI_BATTERY_XINFO_PRESENT, &battery->flags);
Stefan Hajnoczieb03cb02011-07-12 09:03:29 +0100998 result = acpi_battery_update(battery);
999 if (result)
1000 goto fail;
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +03001001#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 result = acpi_battery_add_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +04001003#endif
Stefan Hajnoczie80bba42011-07-12 09:03:28 +01001004 if (result) {
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +03001005#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 acpi_battery_remove_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +04001007#endif
Stefan Hajnoczie80bba42011-07-12 09:03:28 +01001008 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 }
Kyle McMartin25be5822011-03-22 16:19:50 -04001010
Stefan Hajnoczie80bba42011-07-12 09:03:28 +01001011 printk(KERN_INFO PREFIX "%s Slot [%s] (battery %s)\n",
1012 ACPI_BATTERY_DEVICE_NAME, acpi_device_bid(device),
1013 device->status.battery_present ? "present" : "absent");
1014
Kyle McMartin25be5822011-03-22 16:19:50 -04001015 battery->pm_nb.notifier_call = battery_notify;
1016 register_pm_notifier(&battery->pm_nb);
1017
Patrick Mocheld550d982006-06-27 00:41:40 -04001018 return result;
Stefan Hajnoczie80bba42011-07-12 09:03:28 +01001019
1020fail:
1021 sysfs_remove_battery(battery);
1022 mutex_destroy(&battery->lock);
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +03001023 mutex_destroy(&battery->sysfs_lock);
Stefan Hajnoczie80bba42011-07-12 09:03:28 +01001024 kfree(battery);
1025 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026}
1027
Len Brown4be44fc2005-08-05 00:44:28 -04001028static int acpi_battery_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029{
Len Brown4be44fc2005-08-05 00:44:28 -04001030 struct acpi_battery *battery = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001033 return -EINVAL;
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001034 battery = acpi_driver_data(device);
Kyle McMartin25be5822011-03-22 16:19:50 -04001035 unregister_pm_notifier(&battery->pm_nb);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +03001036#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 acpi_battery_remove_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +04001038#endif
Andrey Borzenkov508df922007-10-28 12:50:09 +03001039 sysfs_remove_battery(battery);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +04001040 mutex_destroy(&battery->lock);
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +03001041 mutex_destroy(&battery->sysfs_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 kfree(battery);
Patrick Mocheld550d982006-06-27 00:41:40 -04001043 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044}
1045
Jiri Kosina34c44152006-10-10 14:20:41 -07001046/* this is needed to learn about changes made in suspended state */
Rafael J. Wysockia6f50dc2012-06-27 23:26:43 +02001047static int acpi_battery_resume(struct device *dev)
Jiri Kosina34c44152006-10-10 14:20:41 -07001048{
1049 struct acpi_battery *battery;
Rafael J. Wysockia6f50dc2012-06-27 23:26:43 +02001050
1051 if (!dev)
Jiri Kosina34c44152006-10-10 14:20:41 -07001052 return -EINVAL;
Rafael J. Wysockia6f50dc2012-06-27 23:26:43 +02001053
1054 battery = acpi_driver_data(to_acpi_device(dev));
1055 if (!battery)
1056 return -EINVAL;
1057
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +04001058 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +03001059 acpi_battery_update(battery);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +03001060 return 0;
Jiri Kosina34c44152006-10-10 14:20:41 -07001061}
1062
Rafael J. Wysockia6f50dc2012-06-27 23:26:43 +02001063static SIMPLE_DEV_PM_OPS(acpi_battery_pm, NULL, acpi_battery_resume);
1064
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001065static struct acpi_driver acpi_battery_driver = {
1066 .name = "battery",
1067 .class = ACPI_BATTERY_CLASS,
1068 .ids = battery_device_ids,
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001069 .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001070 .ops = {
1071 .add = acpi_battery_add,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001072 .remove = acpi_battery_remove,
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001073 .notify = acpi_battery_notify,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001074 },
Rafael J. Wysockia6f50dc2012-06-27 23:26:43 +02001075 .drv.pm = &acpi_battery_pm,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001076};
1077
Linus Torvaldsb0cbc862009-04-11 12:45:20 -07001078static void __init acpi_battery_init_async(void *unused, async_cookie_t cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079{
Pavel Machek4d8316d2006-08-14 22:37:22 -07001080 if (acpi_disabled)
Arjan van de Ven0f66af52009-01-10 14:19:05 -05001081 return;
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +03001082#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -04001083 acpi_battery_dir = acpi_lock_battery_dir();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 if (!acpi_battery_dir)
Arjan van de Ven0f66af52009-01-10 14:19:05 -05001085 return;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +04001086#endif
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001087 if (acpi_bus_register_driver(&acpi_battery_driver) < 0) {
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +03001088#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -04001089 acpi_unlock_battery_dir(acpi_battery_dir);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +04001090#endif
Arjan van de Ven0f66af52009-01-10 14:19:05 -05001091 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 }
Arjan van de Ven0f66af52009-01-10 14:19:05 -05001093 return;
1094}
1095
1096static int __init acpi_battery_init(void)
1097{
1098 async_schedule(acpi_battery_init_async, NULL);
Patrick Mocheld550d982006-06-27 00:41:40 -04001099 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100}
1101
Len Brown4be44fc2005-08-05 00:44:28 -04001102static void __exit acpi_battery_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 acpi_bus_unregister_driver(&acpi_battery_driver);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +03001105#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -04001106 acpi_unlock_battery_dir(acpi_battery_dir);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +04001107#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108}
1109
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110module_init(acpi_battery_init);
1111module_exit(acpi_battery_exit);