blob: d405fbad406ac75cc9bb41c8734a457d60e14222 [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
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +030039#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/proc_fs.h>
41#include <linux/seq_file.h>
42#include <asm/uaccess.h>
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040043#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#include <acpi/acpi_bus.h>
46#include <acpi/acpi_drivers.h>
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040047#include <linux/power_supply.h>
48
Len Browna192a952009-07-28 16:45:54 -040049#define PREFIX "ACPI: "
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define ACPI_BATTERY_VALUE_UNKNOWN 0xFFFFFFFF
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define ACPI_BATTERY_CLASS "battery"
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#define ACPI_BATTERY_DEVICE_NAME "Battery"
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#define ACPI_BATTERY_NOTIFY_STATUS 0x80
56#define ACPI_BATTERY_NOTIFY_INFO 0x81
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +040057#define ACPI_BATTERY_NOTIFY_THRESHOLD 0x82
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Lan Tianyuae6f6182011-06-30 11:32:40 +080059/* Battery power unit: 0 means mW, 1 means mA */
60#define ACPI_BATTERY_POWER_UNIT_MA 1
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#define _COMPONENT ACPI_BATTERY_COMPONENT
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +030063
Len Brownf52fd662007-02-12 22:42:12 -050064ACPI_MODULE_NAME("battery");
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Len Brownf52fd662007-02-12 22:42:12 -050066MODULE_AUTHOR("Paul Diefenbaugh");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +040067MODULE_AUTHOR("Alexey Starikovskiy <astarikovskiy@suse.de>");
Len Brown7cda93e2007-02-12 23:50:02 -050068MODULE_DESCRIPTION("ACPI Battery Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070069MODULE_LICENSE("GPL");
70
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +040071static unsigned int cache_time = 1000;
72module_param(cache_time, uint, 0644);
73MODULE_PARM_DESC(cache_time, "cache time in milliseconds");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +030074
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +030075#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -040076extern struct proc_dir_entry *acpi_lock_battery_dir(void);
77extern void *acpi_unlock_battery_dir(struct proc_dir_entry *acpi_battery_dir);
78
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040079enum acpi_battery_files {
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +040080 info_tag = 0,
81 state_tag,
82 alarm_tag,
Alexey Starikovskiy78490d82007-05-11 13:18:55 -040083 ACPI_BATTERY_NUMFILES,
84};
85
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040086#endif
87
88static const struct acpi_device_id battery_device_ids[] = {
89 {"PNP0C0A", 0},
90 {"", 0},
91};
92
93MODULE_DEVICE_TABLE(acpi, battery_device_ids);
94
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +040095enum {
96 ACPI_BATTERY_ALARM_PRESENT,
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +040097 ACPI_BATTERY_XINFO_PRESENT,
Zhang Rui557d5862010-10-22 10:02:06 +080098 ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY,
Kamil Iskra4000e622012-11-16 22:28:58 +010099 /* On Lenovo Thinkpad models from 2010 and 2011, the power unit
100 switches between mWh and mAh depending on whether the system
101 is running on battery or not. When mAh is the unit, most
102 reported values are incorrect and need to be adjusted by
103 10000/design_voltage. Verified on x201, t410, t410s, and x220.
104 Pre-2010 and 2012 models appear to always report in mWh and
105 are thus unaffected (tested with t42, t61, t500, x200, x300,
106 and x230). Also, in mid-2012 Lenovo issued a BIOS update for
107 the 2011 models that fixes the issue (tested on x220 with a
108 post-1.29 BIOS), but as of Nov. 2012, no such update is
109 available for the 2010 models. */
110 ACPI_BATTERY_QUIRK_THINKPAD_MAH,
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400111};
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400112
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400113struct acpi_battery {
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400114 struct mutex lock;
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300115 struct mutex sysfs_lock;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400116 struct power_supply bat;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400117 struct acpi_device *device;
Kyle McMartin25be5822011-03-22 16:19:50 -0400118 struct notifier_block pm_nb;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400119 unsigned long update_time;
Lan Tianyu016d5ba2013-07-30 14:00:42 +0200120 int revision;
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400121 int rate_now;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400122 int capacity_now;
123 int voltage_now;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400124 int design_capacity;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400125 int full_charge_capacity;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400126 int technology;
127 int design_voltage;
128 int design_capacity_warning;
129 int design_capacity_low;
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400130 int cycle_count;
131 int measurement_accuracy;
132 int max_sampling_time;
133 int min_sampling_time;
134 int max_averaging_interval;
135 int min_averaging_interval;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400136 int capacity_granularity_1;
137 int capacity_granularity_2;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400138 int alarm;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400139 char model_number[32];
140 char serial_number[32];
141 char type[32];
142 char oem_info[32];
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400143 int state;
144 int power_unit;
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400145 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146};
147
Phil Carmody497888c2011-07-14 15:07:13 +0300148#define to_acpi_battery(x) container_of(x, struct acpi_battery, bat)
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400149
Andy Shevchenkoefd941f2013-03-11 09:17:06 +0000150static inline int acpi_battery_present(struct acpi_battery *battery)
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400151{
152 return battery->device->status.battery_present;
153}
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400154
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400155static int acpi_battery_technology(struct acpi_battery *battery)
156{
157 if (!strcasecmp("NiCd", battery->type))
158 return POWER_SUPPLY_TECHNOLOGY_NiCd;
159 if (!strcasecmp("NiMH", battery->type))
160 return POWER_SUPPLY_TECHNOLOGY_NiMH;
161 if (!strcasecmp("LION", battery->type))
162 return POWER_SUPPLY_TECHNOLOGY_LION;
Andrey Borzenkovad40e682007-11-10 20:02:49 +0300163 if (!strncasecmp("LI-ION", battery->type, 6))
Alexey Starikovskiy0bde7ee2007-10-28 15:33:10 +0300164 return POWER_SUPPLY_TECHNOLOGY_LION;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400165 if (!strcasecmp("LiP", battery->type))
166 return POWER_SUPPLY_TECHNOLOGY_LIPO;
167 return POWER_SUPPLY_TECHNOLOGY_UNKNOWN;
168}
169
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300170static int acpi_battery_get_state(struct acpi_battery *battery);
Alexey Starikovskiyb19073a2007-10-25 17:10:47 -0400171
Richard Hughes56f382a2009-01-25 15:05:50 +0000172static int acpi_battery_is_charged(struct acpi_battery *battery)
173{
174 /* either charging or discharging */
175 if (battery->state != 0)
176 return 0;
177
178 /* battery not reporting charge */
179 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN ||
180 battery->capacity_now == 0)
181 return 0;
182
183 /* good batteries update full_charge as the batteries degrade */
184 if (battery->full_charge_capacity == battery->capacity_now)
185 return 1;
186
187 /* fallback to using design values for broken batteries */
188 if (battery->design_capacity == battery->capacity_now)
189 return 1;
190
191 /* we don't do any sort of metric based on percentages */
192 return 0;
193}
194
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400195static int acpi_battery_get_property(struct power_supply *psy,
196 enum power_supply_property psp,
197 union power_supply_propval *val)
198{
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200199 int ret = 0;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400200 struct acpi_battery *battery = to_acpi_battery(psy);
201
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300202 if (acpi_battery_present(battery)) {
203 /* run battery update only if it is present */
204 acpi_battery_get_state(battery);
205 } else if (psp != POWER_SUPPLY_PROP_PRESENT)
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400206 return -ENODEV;
207 switch (psp) {
208 case POWER_SUPPLY_PROP_STATUS:
209 if (battery->state & 0x01)
210 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
211 else if (battery->state & 0x02)
212 val->intval = POWER_SUPPLY_STATUS_CHARGING;
Richard Hughes56f382a2009-01-25 15:05:50 +0000213 else if (acpi_battery_is_charged(battery))
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400214 val->intval = POWER_SUPPLY_STATUS_FULL;
Roland Dreier4c41d3a2007-11-07 15:09:09 -0800215 else
216 val->intval = POWER_SUPPLY_STATUS_UNKNOWN;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400217 break;
218 case POWER_SUPPLY_PROP_PRESENT:
219 val->intval = acpi_battery_present(battery);
220 break;
221 case POWER_SUPPLY_PROP_TECHNOLOGY:
222 val->intval = acpi_battery_technology(battery);
223 break;
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400224 case POWER_SUPPLY_PROP_CYCLE_COUNT:
225 val->intval = battery->cycle_count;
226 break;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400227 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200228 if (battery->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN)
229 ret = -ENODEV;
230 else
231 val->intval = battery->design_voltage * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400232 break;
233 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200234 if (battery->voltage_now == ACPI_BATTERY_VALUE_UNKNOWN)
235 ret = -ENODEV;
236 else
237 val->intval = battery->voltage_now * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400238 break;
239 case POWER_SUPPLY_PROP_CURRENT_NOW:
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400240 case POWER_SUPPLY_PROP_POWER_NOW:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200241 if (battery->rate_now == ACPI_BATTERY_VALUE_UNKNOWN)
242 ret = -ENODEV;
243 else
244 val->intval = battery->rate_now * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400245 break;
246 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
247 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200248 if (battery->design_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
249 ret = -ENODEV;
250 else
251 val->intval = battery->design_capacity * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400252 break;
253 case POWER_SUPPLY_PROP_CHARGE_FULL:
254 case POWER_SUPPLY_PROP_ENERGY_FULL:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200255 if (battery->full_charge_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
256 ret = -ENODEV;
257 else
258 val->intval = battery->full_charge_capacity * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400259 break;
260 case POWER_SUPPLY_PROP_CHARGE_NOW:
261 case POWER_SUPPLY_PROP_ENERGY_NOW:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200262 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN)
263 ret = -ENODEV;
264 else
265 val->intval = battery->capacity_now * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400266 break;
srinivas pandruvadaa58e1152012-04-05 17:38:54 -0700267 case POWER_SUPPLY_PROP_CAPACITY:
268 if (battery->capacity_now && battery->full_charge_capacity)
269 val->intval = battery->capacity_now * 100/
270 battery->full_charge_capacity;
271 else
272 val->intval = 0;
273 break;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400274 case POWER_SUPPLY_PROP_MODEL_NAME:
275 val->strval = battery->model_number;
276 break;
277 case POWER_SUPPLY_PROP_MANUFACTURER:
278 val->strval = battery->oem_info;
279 break;
maximilian attems7c2670b2008-01-22 18:46:50 +0100280 case POWER_SUPPLY_PROP_SERIAL_NUMBER:
281 val->strval = battery->serial_number;
282 break;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400283 default:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200284 ret = -EINVAL;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400285 }
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200286 return ret;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400287}
288
289static enum power_supply_property charge_battery_props[] = {
290 POWER_SUPPLY_PROP_STATUS,
291 POWER_SUPPLY_PROP_PRESENT,
292 POWER_SUPPLY_PROP_TECHNOLOGY,
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400293 POWER_SUPPLY_PROP_CYCLE_COUNT,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400294 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
295 POWER_SUPPLY_PROP_VOLTAGE_NOW,
296 POWER_SUPPLY_PROP_CURRENT_NOW,
297 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
298 POWER_SUPPLY_PROP_CHARGE_FULL,
299 POWER_SUPPLY_PROP_CHARGE_NOW,
srinivas pandruvadaa58e1152012-04-05 17:38:54 -0700300 POWER_SUPPLY_PROP_CAPACITY,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400301 POWER_SUPPLY_PROP_MODEL_NAME,
302 POWER_SUPPLY_PROP_MANUFACTURER,
maximilian attems7c2670b2008-01-22 18:46:50 +0100303 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400304};
305
306static enum power_supply_property energy_battery_props[] = {
307 POWER_SUPPLY_PROP_STATUS,
308 POWER_SUPPLY_PROP_PRESENT,
309 POWER_SUPPLY_PROP_TECHNOLOGY,
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400310 POWER_SUPPLY_PROP_CYCLE_COUNT,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400311 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
312 POWER_SUPPLY_PROP_VOLTAGE_NOW,
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400313 POWER_SUPPLY_PROP_POWER_NOW,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400314 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN,
315 POWER_SUPPLY_PROP_ENERGY_FULL,
316 POWER_SUPPLY_PROP_ENERGY_NOW,
srinivas pandruvadaa58e1152012-04-05 17:38:54 -0700317 POWER_SUPPLY_PROP_CAPACITY,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400318 POWER_SUPPLY_PROP_MODEL_NAME,
319 POWER_SUPPLY_PROP_MANUFACTURER,
maximilian attems7c2670b2008-01-22 18:46:50 +0100320 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400321};
322
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300323#ifdef CONFIG_ACPI_PROCFS_POWER
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400324inline char *acpi_battery_units(struct acpi_battery *battery)
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400325{
Lan Tianyuae6f6182011-06-30 11:32:40 +0800326 return (battery->power_unit == ACPI_BATTERY_POWER_UNIT_MA) ?
327 "mA" : "mW";
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400328}
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400329#endif
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331/* --------------------------------------------------------------------------
332 Battery Management
333 -------------------------------------------------------------------------- */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400334struct acpi_offsets {
335 size_t offset; /* offset inside struct acpi_sbs_battery */
336 u8 mode; /* int or string? */
337};
338
339static struct acpi_offsets state_offsets[] = {
340 {offsetof(struct acpi_battery, state), 0},
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400341 {offsetof(struct acpi_battery, rate_now), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400342 {offsetof(struct acpi_battery, capacity_now), 0},
343 {offsetof(struct acpi_battery, voltage_now), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400344};
345
346static struct acpi_offsets info_offsets[] = {
347 {offsetof(struct acpi_battery, power_unit), 0},
348 {offsetof(struct acpi_battery, design_capacity), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400349 {offsetof(struct acpi_battery, full_charge_capacity), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400350 {offsetof(struct acpi_battery, technology), 0},
351 {offsetof(struct acpi_battery, design_voltage), 0},
352 {offsetof(struct acpi_battery, design_capacity_warning), 0},
353 {offsetof(struct acpi_battery, design_capacity_low), 0},
354 {offsetof(struct acpi_battery, capacity_granularity_1), 0},
355 {offsetof(struct acpi_battery, capacity_granularity_2), 0},
356 {offsetof(struct acpi_battery, model_number), 1},
357 {offsetof(struct acpi_battery, serial_number), 1},
358 {offsetof(struct acpi_battery, type), 1},
359 {offsetof(struct acpi_battery, oem_info), 1},
360};
361
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400362static struct acpi_offsets extended_info_offsets[] = {
Lan Tianyu016d5ba2013-07-30 14:00:42 +0200363 {offsetof(struct acpi_battery, revision), 0},
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400364 {offsetof(struct acpi_battery, power_unit), 0},
365 {offsetof(struct acpi_battery, design_capacity), 0},
366 {offsetof(struct acpi_battery, full_charge_capacity), 0},
367 {offsetof(struct acpi_battery, technology), 0},
368 {offsetof(struct acpi_battery, design_voltage), 0},
369 {offsetof(struct acpi_battery, design_capacity_warning), 0},
370 {offsetof(struct acpi_battery, design_capacity_low), 0},
371 {offsetof(struct acpi_battery, cycle_count), 0},
372 {offsetof(struct acpi_battery, measurement_accuracy), 0},
373 {offsetof(struct acpi_battery, max_sampling_time), 0},
374 {offsetof(struct acpi_battery, min_sampling_time), 0},
375 {offsetof(struct acpi_battery, max_averaging_interval), 0},
376 {offsetof(struct acpi_battery, min_averaging_interval), 0},
377 {offsetof(struct acpi_battery, capacity_granularity_1), 0},
378 {offsetof(struct acpi_battery, capacity_granularity_2), 0},
379 {offsetof(struct acpi_battery, model_number), 1},
380 {offsetof(struct acpi_battery, serial_number), 1},
381 {offsetof(struct acpi_battery, type), 1},
382 {offsetof(struct acpi_battery, oem_info), 1},
383};
384
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400385static int extract_package(struct acpi_battery *battery,
386 union acpi_object *package,
387 struct acpi_offsets *offsets, int num)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300388{
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300389 int i;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400390 union acpi_object *element;
391 if (package->type != ACPI_TYPE_PACKAGE)
392 return -EFAULT;
393 for (i = 0; i < num; ++i) {
394 if (package->package.count <= i)
395 return -EFAULT;
396 element = &package->package.elements[i];
397 if (offsets[i].mode) {
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300398 u8 *ptr = (u8 *)battery + offsets[i].offset;
399 if (element->type == ACPI_TYPE_STRING ||
400 element->type == ACPI_TYPE_BUFFER)
401 strncpy(ptr, element->string.pointer, 32);
402 else if (element->type == ACPI_TYPE_INTEGER) {
403 strncpy(ptr, (u8 *)&element->integer.value,
Lin Ming439913f2010-01-28 10:53:19 +0800404 sizeof(u64));
405 ptr[sizeof(u64)] = 0;
Alexey Starikovskiyb8a1bdb2008-03-17 22:37:42 -0400406 } else
407 *ptr = 0; /* don't have value */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400408 } else {
Alexey Starikovskiyb8a1bdb2008-03-17 22:37:42 -0400409 int *x = (int *)((u8 *)battery + offsets[i].offset);
410 *x = (element->type == ACPI_TYPE_INTEGER) ?
411 element->integer.value : -1;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300412 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300413 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300414 return 0;
415}
416
417static int acpi_battery_get_status(struct acpi_battery *battery)
418{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400419 if (acpi_bus_get_status(battery->device)) {
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300420 ACPI_EXCEPTION((AE_INFO, AE_ERROR, "Evaluating _STA"));
421 return -ENODEV;
422 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400423 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300424}
425
426static int acpi_battery_get_info(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400428 int result = -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -0400429 acpi_status status = 0;
Nicholas Mazzuca0f4c6542013-05-08 23:11:15 +0000430 char *name = test_bit(ACPI_BATTERY_XINFO_PRESENT, &battery->flags) ?
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400431 "_BIX" : "_BIF";
432
Len Brown4be44fc2005-08-05 00:44:28 -0400433 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300435 if (!acpi_battery_present(battery))
436 return 0;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400437 mutex_lock(&battery->lock);
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400438 status = acpi_evaluate_object(battery->device->handle, name,
439 NULL, &buffer);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400440 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 if (ACPI_FAILURE(status)) {
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400443 ACPI_EXCEPTION((AE_INFO, status, "Evaluating %s", name));
Patrick Mocheld550d982006-06-27 00:41:40 -0400444 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 }
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400446 if (test_bit(ACPI_BATTERY_XINFO_PRESENT, &battery->flags))
447 result = extract_package(battery, buffer.pointer,
448 extended_info_offsets,
449 ARRAY_SIZE(extended_info_offsets));
450 else
451 result = extract_package(battery, buffer.pointer,
452 info_offsets, ARRAY_SIZE(info_offsets));
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400453 kfree(buffer.pointer);
Zhang Rui557d5862010-10-22 10:02:06 +0800454 if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags))
455 battery->full_charge_capacity = battery->design_capacity;
Kamil Iskra4000e622012-11-16 22:28:58 +0100456 if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH, &battery->flags) &&
457 battery->power_unit && battery->design_voltage) {
458 battery->design_capacity = battery->design_capacity *
459 10000 / battery->design_voltage;
460 battery->full_charge_capacity = battery->full_charge_capacity *
461 10000 / battery->design_voltage;
462 battery->design_capacity_warning =
463 battery->design_capacity_warning *
464 10000 / battery->design_voltage;
465 /* Curiously, design_capacity_low, unlike the rest of them,
466 is correct. */
467 /* capacity_granularity_* equal 1 on the systems tested, so
468 it's impossible to tell if they would need an adjustment
469 or not if their values were higher. */
470 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400471 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472}
473
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300474static int acpi_battery_get_state(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
Len Brown4be44fc2005-08-05 00:44:28 -0400476 int result = 0;
477 acpi_status status = 0;
478 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300480 if (!acpi_battery_present(battery))
481 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400483 if (battery->update_time &&
484 time_before(jiffies, battery->update_time +
485 msecs_to_jiffies(cache_time)))
486 return 0;
487
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400488 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400489 status = acpi_evaluate_object(battery->device->handle, "_BST",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400490 NULL, &buffer);
491 mutex_unlock(&battery->lock);
Len Brown5b31d892007-08-15 00:19:26 -0400492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400494 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BST"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400495 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400497
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400498 result = extract_package(battery, buffer.pointer,
499 state_offsets, ARRAY_SIZE(state_offsets));
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400500 battery->update_time = jiffies;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400501 kfree(buffer.pointer);
Hector Martinbc76f902009-08-06 15:57:48 -0700502
Lan Tianyu55003b22011-06-30 11:33:12 +0800503 /* For buggy DSDTs that report negative 16-bit values for either
504 * charging or discharging current and/or report 0 as 65536
505 * due to bad math.
506 */
507 if (battery->power_unit == ACPI_BATTERY_POWER_UNIT_MA &&
508 battery->rate_now != ACPI_BATTERY_VALUE_UNKNOWN &&
509 (s16)(battery->rate_now) < 0) {
Hector Martinbc76f902009-08-06 15:57:48 -0700510 battery->rate_now = abs((s16)battery->rate_now);
Lan Tianyu55003b22011-06-30 11:33:12 +0800511 printk_once(KERN_WARNING FW_BUG "battery: (dis)charge rate"
512 " invalid.\n");
513 }
Hector Martinbc76f902009-08-06 15:57:48 -0700514
Zhang Rui557d5862010-10-22 10:02:06 +0800515 if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags)
516 && battery->capacity_now >= 0 && battery->capacity_now <= 100)
517 battery->capacity_now = (battery->capacity_now *
518 battery->full_charge_capacity) / 100;
Kamil Iskra4000e622012-11-16 22:28:58 +0100519 if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH, &battery->flags) &&
520 battery->power_unit && battery->design_voltage) {
521 battery->capacity_now = battery->capacity_now *
522 10000 / battery->design_voltage;
523 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400524 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525}
526
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400527static int acpi_battery_set_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
Len Brown4be44fc2005-08-05 00:44:28 -0400529 acpi_status status = 0;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400530 union acpi_object arg0 = { .type = ACPI_TYPE_INTEGER };
Len Brown4be44fc2005-08-05 00:44:28 -0400531 struct acpi_object_list arg_list = { 1, &arg0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400533 if (!acpi_battery_present(battery) ||
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400534 !test_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags))
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300535 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400537 arg0.integer.value = battery->alarm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400539 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400540 status = acpi_evaluate_object(battery->device->handle, "_BTP",
541 &arg_list, NULL);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400542 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400545 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400547 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Alarm set to %d\n", battery->alarm));
Patrick Mocheld550d982006-06-27 00:41:40 -0400548 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549}
550
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300551static int acpi_battery_init_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
Len Brown4be44fc2005-08-05 00:44:28 -0400553 acpi_status status = AE_OK;
554 acpi_handle handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300556 /* See if alarms are supported, and if so, set default */
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400557 status = acpi_get_handle(battery->device->handle, "_BTP", &handle);
558 if (ACPI_FAILURE(status)) {
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400559 clear_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400560 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 }
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400562 set_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400563 if (!battery->alarm)
564 battery->alarm = battery->design_capacity_warning;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400565 return acpi_battery_set_alarm(battery);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566}
567
Andrey Borzenkov508df922007-10-28 12:50:09 +0300568static ssize_t acpi_battery_alarm_show(struct device *dev,
569 struct device_attribute *attr,
570 char *buf)
571{
572 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
573 return sprintf(buf, "%d\n", battery->alarm * 1000);
574}
575
576static ssize_t acpi_battery_alarm_store(struct device *dev,
577 struct device_attribute *attr,
578 const char *buf, size_t count)
579{
580 unsigned long x;
581 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
582 if (sscanf(buf, "%ld\n", &x) == 1)
583 battery->alarm = x/1000;
584 if (acpi_battery_present(battery))
585 acpi_battery_set_alarm(battery);
586 return count;
587}
588
589static struct device_attribute alarm_attr = {
Parag Warudkar01e8ef12008-10-18 20:28:50 -0700590 .attr = {.name = "alarm", .mode = 0644},
Andrey Borzenkov508df922007-10-28 12:50:09 +0300591 .show = acpi_battery_alarm_show,
592 .store = acpi_battery_alarm_store,
593};
594
595static int sysfs_add_battery(struct acpi_battery *battery)
596{
597 int result;
598
Lan Tianyuae6f6182011-06-30 11:32:40 +0800599 if (battery->power_unit == ACPI_BATTERY_POWER_UNIT_MA) {
Andrey Borzenkov508df922007-10-28 12:50:09 +0300600 battery->bat.properties = charge_battery_props;
601 battery->bat.num_properties =
602 ARRAY_SIZE(charge_battery_props);
603 } else {
604 battery->bat.properties = energy_battery_props;
605 battery->bat.num_properties =
606 ARRAY_SIZE(energy_battery_props);
607 }
608
609 battery->bat.name = acpi_device_bid(battery->device);
610 battery->bat.type = POWER_SUPPLY_TYPE_BATTERY;
611 battery->bat.get_property = acpi_battery_get_property;
612
613 result = power_supply_register(&battery->device->dev, &battery->bat);
614 if (result)
615 return result;
616 return device_create_file(battery->bat.dev, &alarm_attr);
617}
618
619static void sysfs_remove_battery(struct acpi_battery *battery)
620{
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300621 mutex_lock(&battery->sysfs_lock);
Lan Tianyu9c921c222011-06-30 11:34:12 +0800622 if (!battery->bat.dev) {
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300623 mutex_unlock(&battery->sysfs_lock);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300624 return;
Lan Tianyu9c921c222011-06-30 11:34:12 +0800625 }
626
Andrey Borzenkov508df922007-10-28 12:50:09 +0300627 device_remove_file(battery->bat.dev, &alarm_attr);
628 power_supply_unregister(&battery->bat);
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300629 battery->bat.dev = NULL;
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300630 mutex_unlock(&battery->sysfs_lock);
Hector Martinbc76f902009-08-06 15:57:48 -0700631}
632
Kamil Iskra4000e622012-11-16 22:28:58 +0100633static void find_battery(const struct dmi_header *dm, void *private)
634{
635 struct acpi_battery *battery = (struct acpi_battery *)private;
636 /* Note: the hardcoded offsets below have been extracted from
637 the source code of dmidecode. */
638 if (dm->type == DMI_ENTRY_PORTABLE_BATTERY && dm->length >= 8) {
639 const u8 *dmi_data = (const u8 *)(dm + 1);
640 int dmi_capacity = get_unaligned((const u16 *)(dmi_data + 6));
641 if (dm->length >= 18)
642 dmi_capacity *= dmi_data[17];
643 if (battery->design_capacity * battery->design_voltage / 1000
644 != dmi_capacity &&
645 battery->design_capacity * 10 == dmi_capacity)
646 set_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH,
647 &battery->flags);
648 }
649}
650
Zhang Rui557d5862010-10-22 10:02:06 +0800651/*
652 * According to the ACPI spec, some kinds of primary batteries can
653 * report percentage battery remaining capacity directly to OS.
654 * In this case, it reports the Last Full Charged Capacity == 100
655 * and BatteryPresentRate == 0xFFFFFFFF.
656 *
657 * Now we found some battery reports percentage remaining capacity
658 * even if it's rechargeable.
659 * https://bugzilla.kernel.org/show_bug.cgi?id=15979
660 *
661 * Handle this correctly so that they won't break userspace.
662 */
Lan Tianyu7b786222011-06-30 11:33:27 +0800663static void acpi_battery_quirks(struct acpi_battery *battery)
Zhang Rui557d5862010-10-22 10:02:06 +0800664{
665 if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags))
Nicholas Mazzuca0f4c6542013-05-08 23:11:15 +0000666 return;
Zhang Rui557d5862010-10-22 10:02:06 +0800667
Nicholas Mazzuca0f4c6542013-05-08 23:11:15 +0000668 if (battery->full_charge_capacity == 100 &&
669 battery->rate_now == ACPI_BATTERY_VALUE_UNKNOWN &&
670 battery->capacity_now >= 0 && battery->capacity_now <= 100) {
Zhang Rui557d5862010-10-22 10:02:06 +0800671 set_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags);
672 battery->full_charge_capacity = battery->design_capacity;
673 battery->capacity_now = (battery->capacity_now *
674 battery->full_charge_capacity) / 100;
675 }
Kamil Iskra4000e622012-11-16 22:28:58 +0100676
677 if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH, &battery->flags))
Nicholas Mazzuca0f4c6542013-05-08 23:11:15 +0000678 return;
Kamil Iskra4000e622012-11-16 22:28:58 +0100679
680 if (battery->power_unit && dmi_name_in_vendors("LENOVO")) {
681 const char *s;
682 s = dmi_get_system_info(DMI_PRODUCT_VERSION);
683 if (s && !strnicmp(s, "ThinkPad", 8)) {
684 dmi_walk(find_battery, battery);
685 if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH,
686 &battery->flags) &&
687 battery->design_voltage) {
688 battery->design_capacity =
689 battery->design_capacity *
690 10000 / battery->design_voltage;
691 battery->full_charge_capacity =
692 battery->full_charge_capacity *
693 10000 / battery->design_voltage;
694 battery->design_capacity_warning =
695 battery->design_capacity_warning *
696 10000 / battery->design_voltage;
697 battery->capacity_now = battery->capacity_now *
698 10000 / battery->design_voltage;
699 }
700 }
701 }
Zhang Rui557d5862010-10-22 10:02:06 +0800702}
703
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400704static int acpi_battery_update(struct acpi_battery *battery)
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500705{
Alexey Starikovskiy50b17852008-12-23 02:44:54 +0300706 int result, old_present = acpi_battery_present(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500707 result = acpi_battery_get_status(battery);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300708 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300709 return result;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300710 if (!acpi_battery_present(battery)) {
711 sysfs_remove_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500712 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300713 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300714 }
Alexey Starikovskiy50b17852008-12-23 02:44:54 +0300715 if (!battery->update_time ||
716 old_present != acpi_battery_present(battery)) {
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500717 result = acpi_battery_get_info(battery);
718 if (result)
719 return result;
720 acpi_battery_init_alarm(battery);
721 }
Stefan Hajnoczieb03cb02011-07-12 09:03:29 +0100722 if (!battery->bat.dev) {
723 result = sysfs_add_battery(battery);
724 if (result)
725 return result;
726 }
Zhang Rui557d5862010-10-22 10:02:06 +0800727 result = acpi_battery_get_state(battery);
Lan Tianyu7b786222011-06-30 11:33:27 +0800728 acpi_battery_quirks(battery);
Zhang Rui557d5862010-10-22 10:02:06 +0800729 return result;
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500730}
731
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +0100732static void acpi_battery_refresh(struct acpi_battery *battery)
733{
Andy Whitcroftc5971452012-05-03 14:48:26 +0100734 int power_unit;
735
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +0100736 if (!battery->bat.dev)
737 return;
738
Andy Whitcroftc5971452012-05-03 14:48:26 +0100739 power_unit = battery->power_unit;
740
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +0100741 acpi_battery_get_info(battery);
Andy Whitcroftc5971452012-05-03 14:48:26 +0100742
743 if (power_unit == battery->power_unit)
744 return;
745
746 /* The battery has changed its reporting units. */
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +0100747 sysfs_remove_battery(battery);
748 sysfs_add_battery(battery);
749}
750
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751/* --------------------------------------------------------------------------
752 FS Interface (/proc)
753 -------------------------------------------------------------------------- */
754
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300755#ifdef CONFIG_ACPI_PROCFS_POWER
Len Brown4be44fc2005-08-05 00:44:28 -0400756static struct proc_dir_entry *acpi_battery_dir;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300757
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400758static int acpi_battery_print_info(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200760 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300762 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 goto end;
764
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400765 seq_printf(seq, "present: %s\n",
Nicholas Mazzuca0f4c6542013-05-08 23:11:15 +0000766 acpi_battery_present(battery) ? "yes" : "no");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400767 if (!acpi_battery_present(battery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 goto end;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400769 if (battery->design_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 seq_printf(seq, "design capacity: unknown\n");
771 else
772 seq_printf(seq, "design capacity: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400773 battery->design_capacity,
774 acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400776 if (battery->full_charge_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 seq_printf(seq, "last full capacity: unknown\n");
778 else
779 seq_printf(seq, "last full capacity: %d %sh\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400780 battery->full_charge_capacity,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400781 acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400783 seq_printf(seq, "battery technology: %srechargeable\n",
784 (!battery->technology)?"non-":"");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400786 if (battery->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 seq_printf(seq, "design voltage: unknown\n");
788 else
789 seq_printf(seq, "design voltage: %d mV\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400790 battery->design_voltage);
Len Brown4be44fc2005-08-05 00:44:28 -0400791 seq_printf(seq, "design capacity warning: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400792 battery->design_capacity_warning,
793 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400794 seq_printf(seq, "design capacity low: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400795 battery->design_capacity_low,
796 acpi_battery_units(battery));
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400797 seq_printf(seq, "cycle count: %i\n", battery->cycle_count);
Len Brown4be44fc2005-08-05 00:44:28 -0400798 seq_printf(seq, "capacity granularity 1: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400799 battery->capacity_granularity_1,
800 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400801 seq_printf(seq, "capacity granularity 2: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400802 battery->capacity_granularity_2,
803 acpi_battery_units(battery));
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400804 seq_printf(seq, "model number: %s\n", battery->model_number);
805 seq_printf(seq, "serial number: %s\n", battery->serial_number);
806 seq_printf(seq, "battery type: %s\n", battery->type);
807 seq_printf(seq, "OEM info: %s\n", battery->oem_info);
Len Brown4be44fc2005-08-05 00:44:28 -0400808 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300809 if (result)
810 seq_printf(seq, "ERROR: Unable to read battery info\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300811 return result;
812}
813
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400814static int acpi_battery_print_state(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200816 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300818 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 goto end;
820
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400821 seq_printf(seq, "present: %s\n",
Nicholas Mazzuca0f4c6542013-05-08 23:11:15 +0000822 acpi_battery_present(battery) ? "yes" : "no");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400823 if (!acpi_battery_present(battery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400826 seq_printf(seq, "capacity state: %s\n",
Nicholas Mazzuca0f4c6542013-05-08 23:11:15 +0000827 (battery->state & 0x04) ? "critical" : "ok");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400828 if ((battery->state & 0x01) && (battery->state & 0x02))
Len Brown4be44fc2005-08-05 00:44:28 -0400829 seq_printf(seq,
830 "charging state: charging/discharging\n");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400831 else if (battery->state & 0x01)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 seq_printf(seq, "charging state: discharging\n");
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400833 else if (battery->state & 0x02)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 seq_printf(seq, "charging state: charging\n");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400835 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 seq_printf(seq, "charging state: charged\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400838 if (battery->rate_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 seq_printf(seq, "present rate: unknown\n");
840 else
841 seq_printf(seq, "present rate: %d %s\n",
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400842 battery->rate_now, acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400844 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 seq_printf(seq, "remaining capacity: unknown\n");
846 else
847 seq_printf(seq, "remaining capacity: %d %sh\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400848 battery->capacity_now, acpi_battery_units(battery));
849 if (battery->voltage_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 seq_printf(seq, "present voltage: unknown\n");
851 else
852 seq_printf(seq, "present voltage: %d mV\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400853 battery->voltage_now);
Len Brown4be44fc2005-08-05 00:44:28 -0400854 end:
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400855 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300856 seq_printf(seq, "ERROR: Unable to read battery state\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300857
858 return result;
859}
860
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400861static int acpi_battery_print_alarm(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200863 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300865 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 goto end;
867
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300868 if (!acpi_battery_present(battery)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 seq_printf(seq, "present: no\n");
870 goto end;
871 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 seq_printf(seq, "alarm: ");
873 if (!battery->alarm)
874 seq_printf(seq, "unsupported\n");
875 else
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400876 seq_printf(seq, "%u %sh\n", battery->alarm,
877 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400878 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300879 if (result)
880 seq_printf(seq, "ERROR: Unable to read battery alarm\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300881 return result;
882}
883
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400884static ssize_t acpi_battery_write_alarm(struct file *file,
885 const char __user * buffer,
886 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887{
Len Brown4be44fc2005-08-05 00:44:28 -0400888 int result = 0;
889 char alarm_string[12] = { '\0' };
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200890 struct seq_file *m = file->private_data;
891 struct acpi_battery *battery = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 if (!battery || (count > sizeof(alarm_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -0400894 return -EINVAL;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300895 if (!acpi_battery_present(battery)) {
896 result = -ENODEV;
897 goto end;
898 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300899 if (copy_from_user(alarm_string, buffer, count)) {
900 result = -EFAULT;
901 goto end;
902 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 alarm_string[count] = '\0';
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400904 battery->alarm = simple_strtol(alarm_string, NULL, 0);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400905 result = acpi_battery_set_alarm(battery);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300906 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300907 if (!result)
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400908 return count;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300909 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910}
911
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400912typedef int(*print_func)(struct seq_file *seq, int result);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400913
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400914static print_func acpi_print_funcs[ACPI_BATTERY_NUMFILES] = {
915 acpi_battery_print_info,
916 acpi_battery_print_state,
917 acpi_battery_print_alarm,
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400918};
919
920static int acpi_battery_read(int fid, struct seq_file *seq)
921{
922 struct acpi_battery *battery = seq->private;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400923 int result = acpi_battery_update(battery);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400924 return acpi_print_funcs[fid](seq, result);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400925}
926
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400927#define DECLARE_FILE_FUNCTIONS(_name) \
928static int acpi_battery_read_##_name(struct seq_file *seq, void *offset) \
929{ \
930 return acpi_battery_read(_name##_tag, seq); \
931} \
932static int acpi_battery_##_name##_open_fs(struct inode *inode, struct file *file) \
933{ \
Al Virod9dda782013-03-31 18:16:14 -0400934 return single_open(file, acpi_battery_read_##_name, PDE_DATA(inode)); \
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400935}
936
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400937DECLARE_FILE_FUNCTIONS(info);
938DECLARE_FILE_FUNCTIONS(state);
939DECLARE_FILE_FUNCTIONS(alarm);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400940
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400941#undef DECLARE_FILE_FUNCTIONS
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400942
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400943#define FILE_DESCRIPTION_RO(_name) \
944 { \
945 .name = __stringify(_name), \
946 .mode = S_IRUGO, \
947 .ops = { \
948 .open = acpi_battery_##_name##_open_fs, \
949 .read = seq_read, \
950 .llseek = seq_lseek, \
951 .release = single_release, \
952 .owner = THIS_MODULE, \
953 }, \
954 }
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400955
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400956#define FILE_DESCRIPTION_RW(_name) \
957 { \
958 .name = __stringify(_name), \
959 .mode = S_IFREG | S_IRUGO | S_IWUSR, \
960 .ops = { \
961 .open = acpi_battery_##_name##_open_fs, \
962 .read = seq_read, \
963 .llseek = seq_lseek, \
964 .write = acpi_battery_write_##_name, \
965 .release = single_release, \
966 .owner = THIS_MODULE, \
967 }, \
968 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Vasiliy Kulikov9c8b04b2011-06-25 21:07:52 +0400970static const struct battery_file {
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400971 struct file_operations ops;
Al Virod161a132011-07-24 03:36:29 -0400972 umode_t mode;
Jan Engelhardt070d8eb2009-01-12 00:07:55 +0100973 const char *name;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400974} acpi_battery_file[] = {
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400975 FILE_DESCRIPTION_RO(info),
976 FILE_DESCRIPTION_RO(state),
977 FILE_DESCRIPTION_RW(alarm),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978};
979
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400980#undef FILE_DESCRIPTION_RO
981#undef FILE_DESCRIPTION_RW
982
Len Brown4be44fc2005-08-05 00:44:28 -0400983static int acpi_battery_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984{
Len Brown4be44fc2005-08-05 00:44:28 -0400985 struct proc_dir_entry *entry = NULL;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400986 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Zhang Rui6d855fc2011-01-10 11:16:30 +0800988 printk(KERN_WARNING PREFIX "Deprecated procfs I/F for battery is loaded,"
989 " please retry with CONFIG_ACPI_PROCFS_POWER cleared\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 if (!acpi_device_dir(device)) {
991 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400992 acpi_battery_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400994 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 }
996
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400997 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i) {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700998 entry = proc_create_data(acpi_battery_file[i].name,
999 acpi_battery_file[i].mode,
1000 acpi_device_dir(device),
1001 &acpi_battery_file[i].ops,
1002 acpi_driver_data(device));
Alexey Starikovskiy78490d82007-05-11 13:18:55 -04001003 if (!entry)
1004 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 }
Patrick Mocheld550d982006-06-27 00:41:40 -04001006 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007}
1008
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001009static void acpi_battery_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010{
Alexey Starikovskiy78490d82007-05-11 13:18:55 -04001011 int i;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001012 if (!acpi_device_dir(device))
1013 return;
1014 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i)
1015 remove_proc_entry(acpi_battery_file[i].name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001018 remove_proc_entry(acpi_device_bid(device), acpi_battery_dir);
1019 acpi_device_dir(device) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020}
1021
Alexey Starikovskiyd7380962007-09-26 19:43:04 +04001022#endif
Alexey Starikovskiy3e58ea02007-09-26 19:43:11 +04001023
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024/* --------------------------------------------------------------------------
1025 Driver Interface
1026 -------------------------------------------------------------------------- */
1027
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001028static void acpi_battery_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029{
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001030 struct acpi_battery *battery = acpi_driver_data(device);
Zhang Rui153e5002010-07-07 09:11:57 +08001031 struct device *old;
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -04001034 return;
Zhang Rui153e5002010-07-07 09:11:57 +08001035 old = battery->bat.dev;
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +01001036 if (event == ACPI_BATTERY_NOTIFY_INFO)
1037 acpi_battery_refresh(battery);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +04001038 acpi_battery_update(battery);
1039 acpi_bus_generate_proc_event(device, event,
1040 acpi_battery_present(battery));
1041 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +01001042 dev_name(&device->dev), event,
Vladimir Lebedev9ea7d572007-02-20 15:48:06 +03001043 acpi_battery_present(battery));
Justin P. Mattock2345baf2009-12-13 14:42:36 -08001044 /* acpi_battery_update could remove power_supply object */
Zhang Rui153e5002010-07-07 09:11:57 +08001045 if (old && battery->bat.dev)
Alan Jenkinsf79e1ce2009-06-30 14:36:16 +00001046 power_supply_changed(&battery->bat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047}
1048
Kyle McMartin25be5822011-03-22 16:19:50 -04001049static int battery_notify(struct notifier_block *nb,
1050 unsigned long mode, void *_unused)
1051{
1052 struct acpi_battery *battery = container_of(nb, struct acpi_battery,
1053 pm_nb);
1054 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 Tianyu6e17fb62011-06-30 11:33:58 +08001057 if (battery->bat.dev) {
1058 sysfs_remove_battery(battery);
1059 sysfs_add_battery(battery);
1060 }
Kyle McMartin25be5822011-03-22 16:19:50 -04001061 break;
1062 }
1063
1064 return 0;
1065}
1066
Len Brown4be44fc2005-08-05 00:44:28 -04001067static int acpi_battery_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068{
Len Brown4be44fc2005-08-05 00:44:28 -04001069 int result = 0;
Len Brown4be44fc2005-08-05 00:44:28 -04001070 struct acpi_battery *battery = NULL;
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +04001071 acpi_handle handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -04001073 return -EINVAL;
Burman Yan36bcbec2006-12-19 12:56:11 -08001074 battery = kzalloc(sizeof(struct acpi_battery), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -04001076 return -ENOMEM;
Patrick Mochel145def82006-05-19 16:54:39 -04001077 battery->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 strcpy(acpi_device_name(device), ACPI_BATTERY_DEVICE_NAME);
1079 strcpy(acpi_device_class(device), ACPI_BATTERY_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07001080 device->driver_data = battery;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +04001081 mutex_init(&battery->lock);
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +03001082 mutex_init(&battery->sysfs_lock);
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +04001083 if (ACPI_SUCCESS(acpi_get_handle(battery->device->handle,
1084 "_BIX", &handle)))
1085 set_bit(ACPI_BATTERY_XINFO_PRESENT, &battery->flags);
Stefan Hajnoczieb03cb02011-07-12 09:03:29 +01001086 result = acpi_battery_update(battery);
1087 if (result)
1088 goto fail;
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +03001089#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 result = acpi_battery_add_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +04001091#endif
Stefan Hajnoczie80bba42011-07-12 09:03:28 +01001092 if (result) {
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +03001093#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 acpi_battery_remove_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +04001095#endif
Stefan Hajnoczie80bba42011-07-12 09:03:28 +01001096 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 }
Kyle McMartin25be5822011-03-22 16:19:50 -04001098
Stefan Hajnoczie80bba42011-07-12 09:03:28 +01001099 printk(KERN_INFO PREFIX "%s Slot [%s] (battery %s)\n",
1100 ACPI_BATTERY_DEVICE_NAME, acpi_device_bid(device),
1101 device->status.battery_present ? "present" : "absent");
1102
Kyle McMartin25be5822011-03-22 16:19:50 -04001103 battery->pm_nb.notifier_call = battery_notify;
1104 register_pm_notifier(&battery->pm_nb);
1105
Patrick Mocheld550d982006-06-27 00:41:40 -04001106 return result;
Stefan Hajnoczie80bba42011-07-12 09:03:28 +01001107
1108fail:
1109 sysfs_remove_battery(battery);
1110 mutex_destroy(&battery->lock);
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +03001111 mutex_destroy(&battery->sysfs_lock);
Stefan Hajnoczie80bba42011-07-12 09:03:28 +01001112 kfree(battery);
1113 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114}
1115
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01001116static int acpi_battery_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117{
Len Brown4be44fc2005-08-05 00:44:28 -04001118 struct acpi_battery *battery = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001121 return -EINVAL;
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001122 battery = acpi_driver_data(device);
Kyle McMartin25be5822011-03-22 16:19:50 -04001123 unregister_pm_notifier(&battery->pm_nb);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +03001124#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 acpi_battery_remove_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +04001126#endif
Andrey Borzenkov508df922007-10-28 12:50:09 +03001127 sysfs_remove_battery(battery);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +04001128 mutex_destroy(&battery->lock);
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +03001129 mutex_destroy(&battery->sysfs_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 kfree(battery);
Patrick Mocheld550d982006-06-27 00:41:40 -04001131 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132}
1133
Rafael J. Wysocki90692402012-08-09 23:00:02 +02001134#ifdef CONFIG_PM_SLEEP
Jiri Kosina34c44152006-10-10 14:20:41 -07001135/* this is needed to learn about changes made in suspended state */
Rafael J. Wysockia6f50dc2012-06-27 23:26:43 +02001136static int acpi_battery_resume(struct device *dev)
Jiri Kosina34c44152006-10-10 14:20:41 -07001137{
1138 struct acpi_battery *battery;
Rafael J. Wysockia6f50dc2012-06-27 23:26:43 +02001139
1140 if (!dev)
Jiri Kosina34c44152006-10-10 14:20:41 -07001141 return -EINVAL;
Rafael J. Wysockia6f50dc2012-06-27 23:26:43 +02001142
1143 battery = acpi_driver_data(to_acpi_device(dev));
1144 if (!battery)
1145 return -EINVAL;
1146
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +04001147 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +03001148 acpi_battery_update(battery);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +03001149 return 0;
Jiri Kosina34c44152006-10-10 14:20:41 -07001150}
Rafael J. Wysocki90692402012-08-09 23:00:02 +02001151#endif
Jiri Kosina34c44152006-10-10 14:20:41 -07001152
Rafael J. Wysockia6f50dc2012-06-27 23:26:43 +02001153static SIMPLE_DEV_PM_OPS(acpi_battery_pm, NULL, acpi_battery_resume);
1154
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001155static struct acpi_driver acpi_battery_driver = {
1156 .name = "battery",
1157 .class = ACPI_BATTERY_CLASS,
1158 .ids = battery_device_ids,
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001159 .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001160 .ops = {
1161 .add = acpi_battery_add,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001162 .remove = acpi_battery_remove,
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001163 .notify = acpi_battery_notify,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001164 },
Rafael J. Wysockia6f50dc2012-06-27 23:26:43 +02001165 .drv.pm = &acpi_battery_pm,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001166};
1167
Linus Torvaldsb0cbc862009-04-11 12:45:20 -07001168static void __init acpi_battery_init_async(void *unused, async_cookie_t cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169{
Pavel Machek4d8316d2006-08-14 22:37:22 -07001170 if (acpi_disabled)
Arjan van de Ven0f66af52009-01-10 14:19:05 -05001171 return;
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +03001172#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -04001173 acpi_battery_dir = acpi_lock_battery_dir();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 if (!acpi_battery_dir)
Arjan van de Ven0f66af52009-01-10 14:19:05 -05001175 return;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +04001176#endif
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001177 if (acpi_bus_register_driver(&acpi_battery_driver) < 0) {
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +03001178#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -04001179 acpi_unlock_battery_dir(acpi_battery_dir);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +04001180#endif
Arjan van de Ven0f66af52009-01-10 14:19:05 -05001181 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 }
Arjan van de Ven0f66af52009-01-10 14:19:05 -05001183 return;
1184}
1185
1186static int __init acpi_battery_init(void)
1187{
1188 async_schedule(acpi_battery_init_async, NULL);
Patrick Mocheld550d982006-06-27 00:41:40 -04001189 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190}
1191
Len Brown4be44fc2005-08-05 00:44:28 -04001192static void __exit acpi_battery_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 acpi_bus_unregister_driver(&acpi_battery_driver);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +03001195#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -04001196 acpi_unlock_battery_dir(acpi_battery_dir);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +04001197#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198}
1199
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200module_init(acpi_battery_init);
1201module_exit(acpi_battery_exit);