blob: 93f3034ea85d26dc4bf92c9c39f4dd7bba6b9878 [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>
Lan Tianyua7502d12014-07-07 15:47:12 +080037#include <linux/delay.h>
Kamil Iskrab70afe12012-11-16 22:28:58 +010038#include <asm/unaligned.h>
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040039
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +030040#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/proc_fs.h>
42#include <linux/seq_file.h>
43#include <asm/uaccess.h>
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040044#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46#include <acpi/acpi_bus.h>
47#include <acpi/acpi_drivers.h>
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040048#include <linux/power_supply.h>
49
Len Browna192a952009-07-28 16:45:54 -040050#define PREFIX "ACPI: "
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#define ACPI_BATTERY_VALUE_UNKNOWN 0xFFFFFFFF
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#define ACPI_BATTERY_CLASS "battery"
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#define ACPI_BATTERY_DEVICE_NAME "Battery"
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#define ACPI_BATTERY_NOTIFY_STATUS 0x80
57#define ACPI_BATTERY_NOTIFY_INFO 0x81
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +040058#define ACPI_BATTERY_NOTIFY_THRESHOLD 0x82
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Lan Tianyuae6f6182011-06-30 11:32:40 +080060/* Battery power unit: 0 means mW, 1 means mA */
61#define ACPI_BATTERY_POWER_UNIT_MA 1
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#define _COMPONENT ACPI_BATTERY_COMPONENT
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +030064
Len Brownf52fd662007-02-12 22:42:12 -050065ACPI_MODULE_NAME("battery");
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Len Brownf52fd662007-02-12 22:42:12 -050067MODULE_AUTHOR("Paul Diefenbaugh");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +040068MODULE_AUTHOR("Alexey Starikovskiy <astarikovskiy@suse.de>");
Len Brown7cda93e2007-02-12 23:50:02 -050069MODULE_DESCRIPTION("ACPI Battery Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070070MODULE_LICENSE("GPL");
71
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +040072static unsigned int cache_time = 1000;
73module_param(cache_time, uint, 0644);
74MODULE_PARM_DESC(cache_time, "cache time in milliseconds");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +030075
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +030076#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -040077extern struct proc_dir_entry *acpi_lock_battery_dir(void);
78extern void *acpi_unlock_battery_dir(struct proc_dir_entry *acpi_battery_dir);
79
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040080enum acpi_battery_files {
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +040081 info_tag = 0,
82 state_tag,
83 alarm_tag,
Alexey Starikovskiy78490d82007-05-11 13:18:55 -040084 ACPI_BATTERY_NUMFILES,
85};
86
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040087#endif
88
89static const struct acpi_device_id battery_device_ids[] = {
90 {"PNP0C0A", 0},
91 {"", 0},
92};
93
94MODULE_DEVICE_TABLE(acpi, battery_device_ids);
95
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +040096enum {
97 ACPI_BATTERY_ALARM_PRESENT,
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +040098 ACPI_BATTERY_XINFO_PRESENT,
Zhang Rui557d5862010-10-22 10:02:06 +080099 ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY,
Kamil Iskrab70afe12012-11-16 22:28:58 +0100100 /* On Lenovo Thinkpad models from 2010 and 2011, the power unit
101 switches between mWh and mAh depending on whether the system
102 is running on battery or not. When mAh is the unit, most
103 reported values are incorrect and need to be adjusted by
104 10000/design_voltage. Verified on x201, t410, t410s, and x220.
105 Pre-2010 and 2012 models appear to always report in mWh and
106 are thus unaffected (tested with t42, t61, t500, x200, x300,
107 and x230). Also, in mid-2012 Lenovo issued a BIOS update for
108 the 2011 models that fixes the issue (tested on x220 with a
109 post-1.29 BIOS), but as of Nov. 2012, no such update is
110 available for the 2010 models. */
111 ACPI_BATTERY_QUIRK_THINKPAD_MAH,
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400112};
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400113
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400114struct acpi_battery {
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400115 struct mutex lock;
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300116 struct mutex sysfs_lock;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400117 struct power_supply bat;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400118 struct acpi_device *device;
Kyle McMartin25be5822011-03-22 16:19:50 -0400119 struct notifier_block pm_nb;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400120 unsigned long update_time;
Lan Tianyu96045352013-07-30 14:00:42 +0200121 int revision;
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400122 int rate_now;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400123 int capacity_now;
124 int voltage_now;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400125 int design_capacity;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400126 int full_charge_capacity;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400127 int technology;
128 int design_voltage;
129 int design_capacity_warning;
130 int design_capacity_low;
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400131 int cycle_count;
132 int measurement_accuracy;
133 int max_sampling_time;
134 int min_sampling_time;
135 int max_averaging_interval;
136 int min_averaging_interval;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400137 int capacity_granularity_1;
138 int capacity_granularity_2;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400139 int alarm;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400140 char model_number[32];
141 char serial_number[32];
142 char type[32];
143 char oem_info[32];
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400144 int state;
145 int power_unit;
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400146 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147};
148
Phil Carmody497888c2011-07-14 15:07:13 +0300149#define to_acpi_battery(x) container_of(x, struct acpi_battery, bat)
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400150
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400151inline int acpi_battery_present(struct acpi_battery *battery)
152{
153 return battery->device->status.battery_present;
154}
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400155
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400156static int acpi_battery_technology(struct acpi_battery *battery)
157{
158 if (!strcasecmp("NiCd", battery->type))
159 return POWER_SUPPLY_TECHNOLOGY_NiCd;
160 if (!strcasecmp("NiMH", battery->type))
161 return POWER_SUPPLY_TECHNOLOGY_NiMH;
162 if (!strcasecmp("LION", battery->type))
163 return POWER_SUPPLY_TECHNOLOGY_LION;
Andrey Borzenkovad40e682007-11-10 20:02:49 +0300164 if (!strncasecmp("LI-ION", battery->type, 6))
Alexey Starikovskiy0bde7ee2007-10-28 15:33:10 +0300165 return POWER_SUPPLY_TECHNOLOGY_LION;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400166 if (!strcasecmp("LiP", battery->type))
167 return POWER_SUPPLY_TECHNOLOGY_LIPO;
168 return POWER_SUPPLY_TECHNOLOGY_UNKNOWN;
169}
170
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300171static int acpi_battery_get_state(struct acpi_battery *battery);
Alexey Starikovskiyb19073a2007-10-25 17:10:47 -0400172
Richard Hughes56f382a2009-01-25 15:05:50 +0000173static int acpi_battery_is_charged(struct acpi_battery *battery)
174{
175 /* either charging or discharging */
176 if (battery->state != 0)
177 return 0;
178
179 /* battery not reporting charge */
180 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN ||
181 battery->capacity_now == 0)
182 return 0;
183
184 /* good batteries update full_charge as the batteries degrade */
185 if (battery->full_charge_capacity == battery->capacity_now)
186 return 1;
187
188 /* fallback to using design values for broken batteries */
189 if (battery->design_capacity == battery->capacity_now)
190 return 1;
191
192 /* we don't do any sort of metric based on percentages */
193 return 0;
194}
195
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400196static int acpi_battery_get_property(struct power_supply *psy,
197 enum power_supply_property psp,
198 union power_supply_propval *val)
199{
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200200 int ret = 0;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400201 struct acpi_battery *battery = to_acpi_battery(psy);
202
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300203 if (acpi_battery_present(battery)) {
204 /* run battery update only if it is present */
205 acpi_battery_get_state(battery);
206 } else if (psp != POWER_SUPPLY_PROP_PRESENT)
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400207 return -ENODEV;
208 switch (psp) {
209 case POWER_SUPPLY_PROP_STATUS:
210 if (battery->state & 0x01)
211 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
212 else if (battery->state & 0x02)
213 val->intval = POWER_SUPPLY_STATUS_CHARGING;
Richard Hughes56f382a2009-01-25 15:05:50 +0000214 else if (acpi_battery_is_charged(battery))
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400215 val->intval = POWER_SUPPLY_STATUS_FULL;
Roland Dreier4c41d3a2007-11-07 15:09:09 -0800216 else
217 val->intval = POWER_SUPPLY_STATUS_UNKNOWN;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400218 break;
219 case POWER_SUPPLY_PROP_PRESENT:
220 val->intval = acpi_battery_present(battery);
221 break;
222 case POWER_SUPPLY_PROP_TECHNOLOGY:
223 val->intval = acpi_battery_technology(battery);
224 break;
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400225 case POWER_SUPPLY_PROP_CYCLE_COUNT:
226 val->intval = battery->cycle_count;
227 break;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400228 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200229 if (battery->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN)
230 ret = -ENODEV;
231 else
232 val->intval = battery->design_voltage * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400233 break;
234 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200235 if (battery->voltage_now == ACPI_BATTERY_VALUE_UNKNOWN)
236 ret = -ENODEV;
237 else
238 val->intval = battery->voltage_now * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400239 break;
240 case POWER_SUPPLY_PROP_CURRENT_NOW:
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400241 case POWER_SUPPLY_PROP_POWER_NOW:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200242 if (battery->rate_now == ACPI_BATTERY_VALUE_UNKNOWN)
243 ret = -ENODEV;
244 else
245 val->intval = battery->rate_now * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400246 break;
247 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
248 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200249 if (battery->design_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
250 ret = -ENODEV;
251 else
252 val->intval = battery->design_capacity * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400253 break;
254 case POWER_SUPPLY_PROP_CHARGE_FULL:
255 case POWER_SUPPLY_PROP_ENERGY_FULL:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200256 if (battery->full_charge_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
257 ret = -ENODEV;
258 else
259 val->intval = battery->full_charge_capacity * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400260 break;
261 case POWER_SUPPLY_PROP_CHARGE_NOW:
262 case POWER_SUPPLY_PROP_ENERGY_NOW:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200263 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN)
264 ret = -ENODEV;
265 else
266 val->intval = battery->capacity_now * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400267 break;
268 case POWER_SUPPLY_PROP_MODEL_NAME:
269 val->strval = battery->model_number;
270 break;
271 case POWER_SUPPLY_PROP_MANUFACTURER:
272 val->strval = battery->oem_info;
273 break;
maximilian attems7c2670b2008-01-22 18:46:50 +0100274 case POWER_SUPPLY_PROP_SERIAL_NUMBER:
275 val->strval = battery->serial_number;
276 break;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400277 default:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200278 ret = -EINVAL;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400279 }
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200280 return ret;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400281}
282
283static enum power_supply_property charge_battery_props[] = {
284 POWER_SUPPLY_PROP_STATUS,
285 POWER_SUPPLY_PROP_PRESENT,
286 POWER_SUPPLY_PROP_TECHNOLOGY,
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400287 POWER_SUPPLY_PROP_CYCLE_COUNT,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400288 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
289 POWER_SUPPLY_PROP_VOLTAGE_NOW,
290 POWER_SUPPLY_PROP_CURRENT_NOW,
291 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
292 POWER_SUPPLY_PROP_CHARGE_FULL,
293 POWER_SUPPLY_PROP_CHARGE_NOW,
294 POWER_SUPPLY_PROP_MODEL_NAME,
295 POWER_SUPPLY_PROP_MANUFACTURER,
maximilian attems7c2670b2008-01-22 18:46:50 +0100296 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400297};
298
299static enum power_supply_property energy_battery_props[] = {
300 POWER_SUPPLY_PROP_STATUS,
301 POWER_SUPPLY_PROP_PRESENT,
302 POWER_SUPPLY_PROP_TECHNOLOGY,
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400303 POWER_SUPPLY_PROP_CYCLE_COUNT,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400304 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
305 POWER_SUPPLY_PROP_VOLTAGE_NOW,
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400306 POWER_SUPPLY_PROP_POWER_NOW,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400307 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN,
308 POWER_SUPPLY_PROP_ENERGY_FULL,
309 POWER_SUPPLY_PROP_ENERGY_NOW,
310 POWER_SUPPLY_PROP_MODEL_NAME,
311 POWER_SUPPLY_PROP_MANUFACTURER,
maximilian attems7c2670b2008-01-22 18:46:50 +0100312 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400313};
314
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300315#ifdef CONFIG_ACPI_PROCFS_POWER
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400316inline char *acpi_battery_units(struct acpi_battery *battery)
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400317{
Lan Tianyuae6f6182011-06-30 11:32:40 +0800318 return (battery->power_unit == ACPI_BATTERY_POWER_UNIT_MA) ?
319 "mA" : "mW";
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400320}
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400321#endif
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323/* --------------------------------------------------------------------------
324 Battery Management
325 -------------------------------------------------------------------------- */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400326struct acpi_offsets {
327 size_t offset; /* offset inside struct acpi_sbs_battery */
328 u8 mode; /* int or string? */
329};
330
331static struct acpi_offsets state_offsets[] = {
332 {offsetof(struct acpi_battery, state), 0},
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400333 {offsetof(struct acpi_battery, rate_now), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400334 {offsetof(struct acpi_battery, capacity_now), 0},
335 {offsetof(struct acpi_battery, voltage_now), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400336};
337
338static struct acpi_offsets info_offsets[] = {
339 {offsetof(struct acpi_battery, power_unit), 0},
340 {offsetof(struct acpi_battery, design_capacity), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400341 {offsetof(struct acpi_battery, full_charge_capacity), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400342 {offsetof(struct acpi_battery, technology), 0},
343 {offsetof(struct acpi_battery, design_voltage), 0},
344 {offsetof(struct acpi_battery, design_capacity_warning), 0},
345 {offsetof(struct acpi_battery, design_capacity_low), 0},
346 {offsetof(struct acpi_battery, capacity_granularity_1), 0},
347 {offsetof(struct acpi_battery, capacity_granularity_2), 0},
348 {offsetof(struct acpi_battery, model_number), 1},
349 {offsetof(struct acpi_battery, serial_number), 1},
350 {offsetof(struct acpi_battery, type), 1},
351 {offsetof(struct acpi_battery, oem_info), 1},
352};
353
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400354static struct acpi_offsets extended_info_offsets[] = {
Lan Tianyu96045352013-07-30 14:00:42 +0200355 {offsetof(struct acpi_battery, revision), 0},
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400356 {offsetof(struct acpi_battery, power_unit), 0},
357 {offsetof(struct acpi_battery, design_capacity), 0},
358 {offsetof(struct acpi_battery, full_charge_capacity), 0},
359 {offsetof(struct acpi_battery, technology), 0},
360 {offsetof(struct acpi_battery, design_voltage), 0},
361 {offsetof(struct acpi_battery, design_capacity_warning), 0},
362 {offsetof(struct acpi_battery, design_capacity_low), 0},
363 {offsetof(struct acpi_battery, cycle_count), 0},
364 {offsetof(struct acpi_battery, measurement_accuracy), 0},
365 {offsetof(struct acpi_battery, max_sampling_time), 0},
366 {offsetof(struct acpi_battery, min_sampling_time), 0},
367 {offsetof(struct acpi_battery, max_averaging_interval), 0},
368 {offsetof(struct acpi_battery, min_averaging_interval), 0},
369 {offsetof(struct acpi_battery, capacity_granularity_1), 0},
370 {offsetof(struct acpi_battery, capacity_granularity_2), 0},
371 {offsetof(struct acpi_battery, model_number), 1},
372 {offsetof(struct acpi_battery, serial_number), 1},
373 {offsetof(struct acpi_battery, type), 1},
374 {offsetof(struct acpi_battery, oem_info), 1},
375};
376
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400377static int extract_package(struct acpi_battery *battery,
378 union acpi_object *package,
379 struct acpi_offsets *offsets, int num)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300380{
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300381 int i;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400382 union acpi_object *element;
383 if (package->type != ACPI_TYPE_PACKAGE)
384 return -EFAULT;
385 for (i = 0; i < num; ++i) {
386 if (package->package.count <= i)
387 return -EFAULT;
388 element = &package->package.elements[i];
389 if (offsets[i].mode) {
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300390 u8 *ptr = (u8 *)battery + offsets[i].offset;
391 if (element->type == ACPI_TYPE_STRING ||
392 element->type == ACPI_TYPE_BUFFER)
393 strncpy(ptr, element->string.pointer, 32);
394 else if (element->type == ACPI_TYPE_INTEGER) {
395 strncpy(ptr, (u8 *)&element->integer.value,
Lin Ming439913f2010-01-28 10:53:19 +0800396 sizeof(u64));
397 ptr[sizeof(u64)] = 0;
Alexey Starikovskiyb8a1bdb2008-03-17 22:37:42 -0400398 } else
399 *ptr = 0; /* don't have value */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400400 } else {
Alexey Starikovskiyb8a1bdb2008-03-17 22:37:42 -0400401 int *x = (int *)((u8 *)battery + offsets[i].offset);
402 *x = (element->type == ACPI_TYPE_INTEGER) ?
403 element->integer.value : -1;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300404 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300405 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300406 return 0;
407}
408
409static int acpi_battery_get_status(struct acpi_battery *battery)
410{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400411 if (acpi_bus_get_status(battery->device)) {
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300412 ACPI_EXCEPTION((AE_INFO, AE_ERROR, "Evaluating _STA"));
413 return -ENODEV;
414 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400415 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300416}
417
418static int acpi_battery_get_info(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400420 int result = -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -0400421 acpi_status status = 0;
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400422 char *name = test_bit(ACPI_BATTERY_XINFO_PRESENT, &battery->flags)?
423 "_BIX" : "_BIF";
424
Len Brown4be44fc2005-08-05 00:44:28 -0400425 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300427 if (!acpi_battery_present(battery))
428 return 0;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400429 mutex_lock(&battery->lock);
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400430 status = acpi_evaluate_object(battery->device->handle, name,
431 NULL, &buffer);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400432 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 if (ACPI_FAILURE(status)) {
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400435 ACPI_EXCEPTION((AE_INFO, status, "Evaluating %s", name));
Patrick Mocheld550d982006-06-27 00:41:40 -0400436 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 }
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400438 if (test_bit(ACPI_BATTERY_XINFO_PRESENT, &battery->flags))
439 result = extract_package(battery, buffer.pointer,
440 extended_info_offsets,
441 ARRAY_SIZE(extended_info_offsets));
442 else
443 result = extract_package(battery, buffer.pointer,
444 info_offsets, ARRAY_SIZE(info_offsets));
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400445 kfree(buffer.pointer);
Zhang Rui557d5862010-10-22 10:02:06 +0800446 if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags))
447 battery->full_charge_capacity = battery->design_capacity;
Kamil Iskrab70afe12012-11-16 22:28:58 +0100448 if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH, &battery->flags) &&
449 battery->power_unit && battery->design_voltage) {
450 battery->design_capacity = battery->design_capacity *
451 10000 / battery->design_voltage;
452 battery->full_charge_capacity = battery->full_charge_capacity *
453 10000 / battery->design_voltage;
454 battery->design_capacity_warning =
455 battery->design_capacity_warning *
456 10000 / battery->design_voltage;
457 /* Curiously, design_capacity_low, unlike the rest of them,
458 is correct. */
459 /* capacity_granularity_* equal 1 on the systems tested, so
460 it's impossible to tell if they would need an adjustment
461 or not if their values were higher. */
462 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400463 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464}
465
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300466static int acpi_battery_get_state(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
Len Brown4be44fc2005-08-05 00:44:28 -0400468 int result = 0;
469 acpi_status status = 0;
470 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300472 if (!acpi_battery_present(battery))
473 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400475 if (battery->update_time &&
476 time_before(jiffies, battery->update_time +
477 msecs_to_jiffies(cache_time)))
478 return 0;
479
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400480 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400481 status = acpi_evaluate_object(battery->device->handle, "_BST",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400482 NULL, &buffer);
483 mutex_unlock(&battery->lock);
Len Brown5b31d892007-08-15 00:19:26 -0400484
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400486 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BST"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400487 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400489
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400490 result = extract_package(battery, buffer.pointer,
491 state_offsets, ARRAY_SIZE(state_offsets));
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400492 battery->update_time = jiffies;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400493 kfree(buffer.pointer);
Hector Martinbc76f902009-08-06 15:57:48 -0700494
Lan Tianyu55003b22011-06-30 11:33:12 +0800495 /* For buggy DSDTs that report negative 16-bit values for either
496 * charging or discharging current and/or report 0 as 65536
497 * due to bad math.
498 */
499 if (battery->power_unit == ACPI_BATTERY_POWER_UNIT_MA &&
500 battery->rate_now != ACPI_BATTERY_VALUE_UNKNOWN &&
501 (s16)(battery->rate_now) < 0) {
Hector Martinbc76f902009-08-06 15:57:48 -0700502 battery->rate_now = abs((s16)battery->rate_now);
Lan Tianyu55003b22011-06-30 11:33:12 +0800503 printk_once(KERN_WARNING FW_BUG "battery: (dis)charge rate"
504 " invalid.\n");
505 }
Hector Martinbc76f902009-08-06 15:57:48 -0700506
Zhang Rui557d5862010-10-22 10:02:06 +0800507 if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags)
508 && battery->capacity_now >= 0 && battery->capacity_now <= 100)
509 battery->capacity_now = (battery->capacity_now *
510 battery->full_charge_capacity) / 100;
Kamil Iskrab70afe12012-11-16 22:28:58 +0100511 if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH, &battery->flags) &&
512 battery->power_unit && battery->design_voltage) {
513 battery->capacity_now = battery->capacity_now *
514 10000 / battery->design_voltage;
515 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400516 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517}
518
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400519static int acpi_battery_set_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520{
Len Brown4be44fc2005-08-05 00:44:28 -0400521 acpi_status status = 0;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400522 union acpi_object arg0 = { .type = ACPI_TYPE_INTEGER };
Len Brown4be44fc2005-08-05 00:44:28 -0400523 struct acpi_object_list arg_list = { 1, &arg0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400525 if (!acpi_battery_present(battery) ||
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400526 !test_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags))
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300527 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400529 arg0.integer.value = battery->alarm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400531 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400532 status = acpi_evaluate_object(battery->device->handle, "_BTP",
533 &arg_list, NULL);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400534 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400537 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400539 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Alarm set to %d\n", battery->alarm));
Patrick Mocheld550d982006-06-27 00:41:40 -0400540 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541}
542
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300543static int acpi_battery_init_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544{
Len Brown4be44fc2005-08-05 00:44:28 -0400545 acpi_status status = AE_OK;
546 acpi_handle handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300548 /* See if alarms are supported, and if so, set default */
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400549 status = acpi_get_handle(battery->device->handle, "_BTP", &handle);
550 if (ACPI_FAILURE(status)) {
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400551 clear_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400552 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 }
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400554 set_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400555 if (!battery->alarm)
556 battery->alarm = battery->design_capacity_warning;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400557 return acpi_battery_set_alarm(battery);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558}
559
Andrey Borzenkov508df922007-10-28 12:50:09 +0300560static ssize_t acpi_battery_alarm_show(struct device *dev,
561 struct device_attribute *attr,
562 char *buf)
563{
564 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
565 return sprintf(buf, "%d\n", battery->alarm * 1000);
566}
567
568static ssize_t acpi_battery_alarm_store(struct device *dev,
569 struct device_attribute *attr,
570 const char *buf, size_t count)
571{
572 unsigned long x;
573 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
574 if (sscanf(buf, "%ld\n", &x) == 1)
575 battery->alarm = x/1000;
576 if (acpi_battery_present(battery))
577 acpi_battery_set_alarm(battery);
578 return count;
579}
580
581static struct device_attribute alarm_attr = {
Parag Warudkar01e8ef12008-10-18 20:28:50 -0700582 .attr = {.name = "alarm", .mode = 0644},
Andrey Borzenkov508df922007-10-28 12:50:09 +0300583 .show = acpi_battery_alarm_show,
584 .store = acpi_battery_alarm_store,
585};
586
587static int sysfs_add_battery(struct acpi_battery *battery)
588{
589 int result;
590
Lan Tianyuae6f6182011-06-30 11:32:40 +0800591 if (battery->power_unit == ACPI_BATTERY_POWER_UNIT_MA) {
Andrey Borzenkov508df922007-10-28 12:50:09 +0300592 battery->bat.properties = charge_battery_props;
593 battery->bat.num_properties =
594 ARRAY_SIZE(charge_battery_props);
595 } else {
596 battery->bat.properties = energy_battery_props;
597 battery->bat.num_properties =
598 ARRAY_SIZE(energy_battery_props);
599 }
600
601 battery->bat.name = acpi_device_bid(battery->device);
602 battery->bat.type = POWER_SUPPLY_TYPE_BATTERY;
603 battery->bat.get_property = acpi_battery_get_property;
604
605 result = power_supply_register(&battery->device->dev, &battery->bat);
606 if (result)
607 return result;
608 return device_create_file(battery->bat.dev, &alarm_attr);
609}
610
611static void sysfs_remove_battery(struct acpi_battery *battery)
612{
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300613 mutex_lock(&battery->sysfs_lock);
Lan Tianyu9c921c22011-06-30 11:34:12 +0800614 if (!battery->bat.dev) {
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300615 mutex_unlock(&battery->sysfs_lock);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300616 return;
Lan Tianyu9c921c22011-06-30 11:34:12 +0800617 }
618
Andrey Borzenkov508df922007-10-28 12:50:09 +0300619 device_remove_file(battery->bat.dev, &alarm_attr);
620 power_supply_unregister(&battery->bat);
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300621 battery->bat.dev = NULL;
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300622 mutex_unlock(&battery->sysfs_lock);
Hector Martinbc76f902009-08-06 15:57:48 -0700623}
624
Kamil Iskrab70afe12012-11-16 22:28:58 +0100625static void find_battery(const struct dmi_header *dm, void *private)
626{
627 struct acpi_battery *battery = (struct acpi_battery *)private;
628 /* Note: the hardcoded offsets below have been extracted from
629 the source code of dmidecode. */
630 if (dm->type == DMI_ENTRY_PORTABLE_BATTERY && dm->length >= 8) {
631 const u8 *dmi_data = (const u8 *)(dm + 1);
632 int dmi_capacity = get_unaligned((const u16 *)(dmi_data + 6));
633 if (dm->length >= 18)
634 dmi_capacity *= dmi_data[17];
635 if (battery->design_capacity * battery->design_voltage / 1000
636 != dmi_capacity &&
637 battery->design_capacity * 10 == dmi_capacity)
638 set_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH,
639 &battery->flags);
640 }
641}
642
Zhang Rui557d5862010-10-22 10:02:06 +0800643/*
644 * According to the ACPI spec, some kinds of primary batteries can
645 * report percentage battery remaining capacity directly to OS.
646 * In this case, it reports the Last Full Charged Capacity == 100
647 * and BatteryPresentRate == 0xFFFFFFFF.
648 *
649 * Now we found some battery reports percentage remaining capacity
650 * even if it's rechargeable.
651 * https://bugzilla.kernel.org/show_bug.cgi?id=15979
652 *
653 * Handle this correctly so that they won't break userspace.
654 */
Lan Tianyu7b786222011-06-30 11:33:27 +0800655static void acpi_battery_quirks(struct acpi_battery *battery)
Zhang Rui557d5862010-10-22 10:02:06 +0800656{
657 if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags))
658 return ;
659
660 if (battery->full_charge_capacity == 100 &&
661 battery->rate_now == ACPI_BATTERY_VALUE_UNKNOWN &&
662 battery->capacity_now >=0 && battery->capacity_now <= 100) {
663 set_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags);
664 battery->full_charge_capacity = battery->design_capacity;
665 battery->capacity_now = (battery->capacity_now *
666 battery->full_charge_capacity) / 100;
667 }
Kamil Iskrab70afe12012-11-16 22:28:58 +0100668
669 if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH, &battery->flags))
670 return ;
671
672 if (battery->power_unit && dmi_name_in_vendors("LENOVO")) {
673 const char *s;
674 s = dmi_get_system_info(DMI_PRODUCT_VERSION);
675 if (s && !strnicmp(s, "ThinkPad", 8)) {
676 dmi_walk(find_battery, battery);
677 if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH,
678 &battery->flags) &&
679 battery->design_voltage) {
680 battery->design_capacity =
681 battery->design_capacity *
682 10000 / battery->design_voltage;
683 battery->full_charge_capacity =
684 battery->full_charge_capacity *
685 10000 / battery->design_voltage;
686 battery->design_capacity_warning =
687 battery->design_capacity_warning *
688 10000 / battery->design_voltage;
689 battery->capacity_now = battery->capacity_now *
690 10000 / battery->design_voltage;
691 }
692 }
693 }
Zhang Rui557d5862010-10-22 10:02:06 +0800694}
695
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400696static int acpi_battery_update(struct acpi_battery *battery)
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500697{
Alexey Starikovskiy50b17852008-12-23 02:44:54 +0300698 int result, old_present = acpi_battery_present(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500699 result = acpi_battery_get_status(battery);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300700 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300701 return result;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300702 if (!acpi_battery_present(battery)) {
703 sysfs_remove_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500704 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300705 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300706 }
Alexey Starikovskiy50b17852008-12-23 02:44:54 +0300707 if (!battery->update_time ||
708 old_present != acpi_battery_present(battery)) {
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500709 result = acpi_battery_get_info(battery);
710 if (result)
711 return result;
712 acpi_battery_init_alarm(battery);
713 }
Stefan Hajnoczieb03cb02011-07-12 09:03:29 +0100714 if (!battery->bat.dev) {
715 result = sysfs_add_battery(battery);
716 if (result)
717 return result;
718 }
Zhang Rui557d5862010-10-22 10:02:06 +0800719 result = acpi_battery_get_state(battery);
Lan Tianyu7b786222011-06-30 11:33:27 +0800720 acpi_battery_quirks(battery);
Zhang Rui557d5862010-10-22 10:02:06 +0800721 return result;
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500722}
723
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +0100724static void acpi_battery_refresh(struct acpi_battery *battery)
725{
Andy Whitcroft7218f7b2012-05-03 14:48:26 +0100726 int power_unit;
727
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +0100728 if (!battery->bat.dev)
729 return;
730
Andy Whitcroft7218f7b2012-05-03 14:48:26 +0100731 power_unit = battery->power_unit;
732
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +0100733 acpi_battery_get_info(battery);
Andy Whitcroft7218f7b2012-05-03 14:48:26 +0100734
735 if (power_unit == battery->power_unit)
736 return;
737
738 /* The battery has changed its reporting units. */
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +0100739 sysfs_remove_battery(battery);
740 sysfs_add_battery(battery);
741}
742
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743/* --------------------------------------------------------------------------
744 FS Interface (/proc)
745 -------------------------------------------------------------------------- */
746
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300747#ifdef CONFIG_ACPI_PROCFS_POWER
Len Brown4be44fc2005-08-05 00:44:28 -0400748static struct proc_dir_entry *acpi_battery_dir;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300749
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400750static int acpi_battery_print_info(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200752 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300754 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 goto end;
756
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400757 seq_printf(seq, "present: %s\n",
758 acpi_battery_present(battery)?"yes":"no");
759 if (!acpi_battery_present(battery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 goto end;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400761 if (battery->design_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 seq_printf(seq, "design capacity: unknown\n");
763 else
764 seq_printf(seq, "design capacity: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400765 battery->design_capacity,
766 acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400768 if (battery->full_charge_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 seq_printf(seq, "last full capacity: unknown\n");
770 else
771 seq_printf(seq, "last full capacity: %d %sh\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400772 battery->full_charge_capacity,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400773 acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400775 seq_printf(seq, "battery technology: %srechargeable\n",
776 (!battery->technology)?"non-":"");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400778 if (battery->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 seq_printf(seq, "design voltage: unknown\n");
780 else
781 seq_printf(seq, "design voltage: %d mV\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400782 battery->design_voltage);
Len Brown4be44fc2005-08-05 00:44:28 -0400783 seq_printf(seq, "design capacity warning: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400784 battery->design_capacity_warning,
785 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400786 seq_printf(seq, "design capacity low: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400787 battery->design_capacity_low,
788 acpi_battery_units(battery));
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400789 seq_printf(seq, "cycle count: %i\n", battery->cycle_count);
Len Brown4be44fc2005-08-05 00:44:28 -0400790 seq_printf(seq, "capacity granularity 1: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400791 battery->capacity_granularity_1,
792 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400793 seq_printf(seq, "capacity granularity 2: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400794 battery->capacity_granularity_2,
795 acpi_battery_units(battery));
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400796 seq_printf(seq, "model number: %s\n", battery->model_number);
797 seq_printf(seq, "serial number: %s\n", battery->serial_number);
798 seq_printf(seq, "battery type: %s\n", battery->type);
799 seq_printf(seq, "OEM info: %s\n", battery->oem_info);
Len Brown4be44fc2005-08-05 00:44:28 -0400800 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300801 if (result)
802 seq_printf(seq, "ERROR: Unable to read battery info\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300803 return result;
804}
805
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400806static int acpi_battery_print_state(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200808 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300810 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 goto end;
812
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400813 seq_printf(seq, "present: %s\n",
814 acpi_battery_present(battery)?"yes":"no");
815 if (!acpi_battery_present(battery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400818 seq_printf(seq, "capacity state: %s\n",
819 (battery->state & 0x04)?"critical":"ok");
820 if ((battery->state & 0x01) && (battery->state & 0x02))
Len Brown4be44fc2005-08-05 00:44:28 -0400821 seq_printf(seq,
822 "charging state: charging/discharging\n");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400823 else if (battery->state & 0x01)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 seq_printf(seq, "charging state: discharging\n");
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400825 else if (battery->state & 0x02)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 seq_printf(seq, "charging state: charging\n");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400827 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 seq_printf(seq, "charging state: charged\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400830 if (battery->rate_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 seq_printf(seq, "present rate: unknown\n");
832 else
833 seq_printf(seq, "present rate: %d %s\n",
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400834 battery->rate_now, acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400836 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 seq_printf(seq, "remaining capacity: unknown\n");
838 else
839 seq_printf(seq, "remaining capacity: %d %sh\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400840 battery->capacity_now, acpi_battery_units(battery));
841 if (battery->voltage_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 seq_printf(seq, "present voltage: unknown\n");
843 else
844 seq_printf(seq, "present voltage: %d mV\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400845 battery->voltage_now);
Len Brown4be44fc2005-08-05 00:44:28 -0400846 end:
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400847 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300848 seq_printf(seq, "ERROR: Unable to read battery state\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300849
850 return result;
851}
852
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400853static int acpi_battery_print_alarm(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200855 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300857 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 goto end;
859
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300860 if (!acpi_battery_present(battery)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 seq_printf(seq, "present: no\n");
862 goto end;
863 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 seq_printf(seq, "alarm: ");
865 if (!battery->alarm)
866 seq_printf(seq, "unsupported\n");
867 else
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400868 seq_printf(seq, "%u %sh\n", battery->alarm,
869 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400870 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300871 if (result)
872 seq_printf(seq, "ERROR: Unable to read battery alarm\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300873 return result;
874}
875
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400876static ssize_t acpi_battery_write_alarm(struct file *file,
877 const char __user * buffer,
878 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879{
Len Brown4be44fc2005-08-05 00:44:28 -0400880 int result = 0;
881 char alarm_string[12] = { '\0' };
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200882 struct seq_file *m = file->private_data;
883 struct acpi_battery *battery = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 if (!battery || (count > sizeof(alarm_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -0400886 return -EINVAL;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300887 if (!acpi_battery_present(battery)) {
888 result = -ENODEV;
889 goto end;
890 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300891 if (copy_from_user(alarm_string, buffer, count)) {
892 result = -EFAULT;
893 goto end;
894 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 alarm_string[count] = '\0';
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400896 battery->alarm = simple_strtol(alarm_string, NULL, 0);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400897 result = acpi_battery_set_alarm(battery);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300898 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300899 if (!result)
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400900 return count;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300901 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902}
903
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400904typedef int(*print_func)(struct seq_file *seq, int result);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400905
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400906static print_func acpi_print_funcs[ACPI_BATTERY_NUMFILES] = {
907 acpi_battery_print_info,
908 acpi_battery_print_state,
909 acpi_battery_print_alarm,
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400910};
911
912static int acpi_battery_read(int fid, struct seq_file *seq)
913{
914 struct acpi_battery *battery = seq->private;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400915 int result = acpi_battery_update(battery);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400916 return acpi_print_funcs[fid](seq, result);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400917}
918
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400919#define DECLARE_FILE_FUNCTIONS(_name) \
920static int acpi_battery_read_##_name(struct seq_file *seq, void *offset) \
921{ \
922 return acpi_battery_read(_name##_tag, seq); \
923} \
924static int acpi_battery_##_name##_open_fs(struct inode *inode, struct file *file) \
925{ \
926 return single_open(file, acpi_battery_read_##_name, PDE(inode)->data); \
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400927}
928
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400929DECLARE_FILE_FUNCTIONS(info);
930DECLARE_FILE_FUNCTIONS(state);
931DECLARE_FILE_FUNCTIONS(alarm);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400932
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400933#undef DECLARE_FILE_FUNCTIONS
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400934
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400935#define FILE_DESCRIPTION_RO(_name) \
936 { \
937 .name = __stringify(_name), \
938 .mode = S_IRUGO, \
939 .ops = { \
940 .open = acpi_battery_##_name##_open_fs, \
941 .read = seq_read, \
942 .llseek = seq_lseek, \
943 .release = single_release, \
944 .owner = THIS_MODULE, \
945 }, \
946 }
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400947
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400948#define FILE_DESCRIPTION_RW(_name) \
949 { \
950 .name = __stringify(_name), \
951 .mode = S_IFREG | S_IRUGO | S_IWUSR, \
952 .ops = { \
953 .open = acpi_battery_##_name##_open_fs, \
954 .read = seq_read, \
955 .llseek = seq_lseek, \
956 .write = acpi_battery_write_##_name, \
957 .release = single_release, \
958 .owner = THIS_MODULE, \
959 }, \
960 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
Vasiliy Kulikov9c8b04b2011-06-25 21:07:52 +0400962static const struct battery_file {
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400963 struct file_operations ops;
Al Virod161a132011-07-24 03:36:29 -0400964 umode_t mode;
Jan Engelhardt070d8eb2009-01-12 00:07:55 +0100965 const char *name;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400966} acpi_battery_file[] = {
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400967 FILE_DESCRIPTION_RO(info),
968 FILE_DESCRIPTION_RO(state),
969 FILE_DESCRIPTION_RW(alarm),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970};
971
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400972#undef FILE_DESCRIPTION_RO
973#undef FILE_DESCRIPTION_RW
974
Len Brown4be44fc2005-08-05 00:44:28 -0400975static int acpi_battery_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976{
Len Brown4be44fc2005-08-05 00:44:28 -0400977 struct proc_dir_entry *entry = NULL;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400978 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
Zhang Rui6d855fc2011-01-10 11:16:30 +0800980 printk(KERN_WARNING PREFIX "Deprecated procfs I/F for battery is loaded,"
981 " please retry with CONFIG_ACPI_PROCFS_POWER cleared\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 if (!acpi_device_dir(device)) {
983 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400984 acpi_battery_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400986 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 }
988
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400989 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i) {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700990 entry = proc_create_data(acpi_battery_file[i].name,
991 acpi_battery_file[i].mode,
992 acpi_device_dir(device),
993 &acpi_battery_file[i].ops,
994 acpi_driver_data(device));
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400995 if (!entry)
996 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400998 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999}
1000
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001001static void acpi_battery_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002{
Alexey Starikovskiy78490d82007-05-11 13:18:55 -04001003 int i;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001004 if (!acpi_device_dir(device))
1005 return;
1006 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i)
1007 remove_proc_entry(acpi_battery_file[i].name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001010 remove_proc_entry(acpi_device_bid(device), acpi_battery_dir);
1011 acpi_device_dir(device) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012}
1013
Alexey Starikovskiyd7380962007-09-26 19:43:04 +04001014#endif
Alexey Starikovskiy3e58ea02007-09-26 19:43:11 +04001015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016/* --------------------------------------------------------------------------
1017 Driver Interface
1018 -------------------------------------------------------------------------- */
1019
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001020static void acpi_battery_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021{
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001022 struct acpi_battery *battery = acpi_driver_data(device);
Zhang Rui153e5002010-07-07 09:11:57 +08001023 struct device *old;
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001024
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -04001026 return;
Zhang Rui153e5002010-07-07 09:11:57 +08001027 old = battery->bat.dev;
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +01001028 if (event == ACPI_BATTERY_NOTIFY_INFO)
1029 acpi_battery_refresh(battery);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +04001030 acpi_battery_update(battery);
1031 acpi_bus_generate_proc_event(device, event,
1032 acpi_battery_present(battery));
1033 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +01001034 dev_name(&device->dev), event,
Vladimir Lebedev9ea7d572007-02-20 15:48:06 +03001035 acpi_battery_present(battery));
Justin P. Mattock2345baf2009-12-13 14:42:36 -08001036 /* acpi_battery_update could remove power_supply object */
Zhang Rui153e5002010-07-07 09:11:57 +08001037 if (old && battery->bat.dev)
Alan Jenkinsf79e1ce2009-06-30 14:36:16 +00001038 power_supply_changed(&battery->bat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039}
1040
Kyle McMartin25be5822011-03-22 16:19:50 -04001041static int battery_notify(struct notifier_block *nb,
1042 unsigned long mode, void *_unused)
1043{
1044 struct acpi_battery *battery = container_of(nb, struct acpi_battery,
1045 pm_nb);
1046 switch (mode) {
Lan Tianyud5a59112011-06-30 11:33:40 +08001047 case PM_POST_HIBERNATION:
Kyle McMartin25be5822011-03-22 16:19:50 -04001048 case PM_POST_SUSPEND:
Lan Tianyu6e17fb62011-06-30 11:33:58 +08001049 if (battery->bat.dev) {
1050 sysfs_remove_battery(battery);
1051 sysfs_add_battery(battery);
1052 }
Kyle McMartin25be5822011-03-22 16:19:50 -04001053 break;
1054 }
1055
1056 return 0;
1057}
1058
Lan Tianyua7502d12014-07-07 15:47:12 +08001059/*
1060 * Some machines'(E,G Lenovo Z480) ECs are not stable
1061 * during boot up and this causes battery driver fails to be
1062 * probed due to failure of getting battery information
1063 * from EC sometimes. After several retries, the operation
1064 * may work. So add retry code here and 20ms sleep between
1065 * every retries.
1066 */
1067static int acpi_battery_update_retry(struct acpi_battery *battery)
1068{
1069 int retry, ret;
1070
1071 for (retry = 5; retry; retry--) {
1072 ret = acpi_battery_update(battery);
1073 if (!ret)
1074 break;
1075
1076 msleep(20);
1077 }
1078 return ret;
1079}
1080
Len Brown4be44fc2005-08-05 00:44:28 -04001081static int acpi_battery_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082{
Len Brown4be44fc2005-08-05 00:44:28 -04001083 int result = 0;
Len Brown4be44fc2005-08-05 00:44:28 -04001084 struct acpi_battery *battery = NULL;
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +04001085 acpi_handle handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -04001087 return -EINVAL;
Burman Yan36bcbec2006-12-19 12:56:11 -08001088 battery = kzalloc(sizeof(struct acpi_battery), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -04001090 return -ENOMEM;
Patrick Mochel145def82006-05-19 16:54:39 -04001091 battery->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 strcpy(acpi_device_name(device), ACPI_BATTERY_DEVICE_NAME);
1093 strcpy(acpi_device_class(device), ACPI_BATTERY_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07001094 device->driver_data = battery;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +04001095 mutex_init(&battery->lock);
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +03001096 mutex_init(&battery->sysfs_lock);
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +04001097 if (ACPI_SUCCESS(acpi_get_handle(battery->device->handle,
1098 "_BIX", &handle)))
1099 set_bit(ACPI_BATTERY_XINFO_PRESENT, &battery->flags);
Lan Tianyua7502d12014-07-07 15:47:12 +08001100
1101 result = acpi_battery_update_retry(battery);
Stefan Hajnoczieb03cb02011-07-12 09:03:29 +01001102 if (result)
1103 goto fail;
Lan Tianyua7502d12014-07-07 15:47:12 +08001104
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +03001105#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 result = acpi_battery_add_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +04001107#endif
Stefan Hajnoczie80bba42011-07-12 09:03:28 +01001108 if (result) {
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +03001109#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 acpi_battery_remove_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +04001111#endif
Stefan Hajnoczie80bba42011-07-12 09:03:28 +01001112 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 }
Kyle McMartin25be5822011-03-22 16:19:50 -04001114
Stefan Hajnoczie80bba42011-07-12 09:03:28 +01001115 printk(KERN_INFO PREFIX "%s Slot [%s] (battery %s)\n",
1116 ACPI_BATTERY_DEVICE_NAME, acpi_device_bid(device),
1117 device->status.battery_present ? "present" : "absent");
1118
Kyle McMartin25be5822011-03-22 16:19:50 -04001119 battery->pm_nb.notifier_call = battery_notify;
1120 register_pm_notifier(&battery->pm_nb);
1121
Patrick Mocheld550d982006-06-27 00:41:40 -04001122 return result;
Stefan Hajnoczie80bba42011-07-12 09:03:28 +01001123
1124fail:
1125 sysfs_remove_battery(battery);
1126 mutex_destroy(&battery->lock);
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +03001127 mutex_destroy(&battery->sysfs_lock);
Stefan Hajnoczie80bba42011-07-12 09:03:28 +01001128 kfree(battery);
1129 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130}
1131
Len Brown4be44fc2005-08-05 00:44:28 -04001132static int acpi_battery_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133{
Len Brown4be44fc2005-08-05 00:44:28 -04001134 struct acpi_battery *battery = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001137 return -EINVAL;
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001138 battery = acpi_driver_data(device);
Kyle McMartin25be5822011-03-22 16:19:50 -04001139 unregister_pm_notifier(&battery->pm_nb);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +03001140#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 acpi_battery_remove_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +04001142#endif
Andrey Borzenkov508df922007-10-28 12:50:09 +03001143 sysfs_remove_battery(battery);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +04001144 mutex_destroy(&battery->lock);
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +03001145 mutex_destroy(&battery->sysfs_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 kfree(battery);
Patrick Mocheld550d982006-06-27 00:41:40 -04001147 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148}
1149
Jiri Kosina34c44152006-10-10 14:20:41 -07001150/* this is needed to learn about changes made in suspended state */
Patrick Mochel5d9464a2006-12-07 20:56:27 +08001151static int acpi_battery_resume(struct acpi_device *device)
Jiri Kosina34c44152006-10-10 14:20:41 -07001152{
1153 struct acpi_battery *battery;
Jiri Kosina34c44152006-10-10 14:20:41 -07001154 if (!device)
1155 return -EINVAL;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +04001156 battery = acpi_driver_data(device);
1157 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +03001158 acpi_battery_update(battery);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +03001159 return 0;
Jiri Kosina34c44152006-10-10 14:20:41 -07001160}
1161
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001162static struct acpi_driver acpi_battery_driver = {
1163 .name = "battery",
1164 .class = ACPI_BATTERY_CLASS,
1165 .ids = battery_device_ids,
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001166 .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001167 .ops = {
1168 .add = acpi_battery_add,
1169 .resume = acpi_battery_resume,
1170 .remove = acpi_battery_remove,
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001171 .notify = acpi_battery_notify,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001172 },
1173};
1174
Linus Torvaldsb0cbc862009-04-11 12:45:20 -07001175static void __init acpi_battery_init_async(void *unused, async_cookie_t cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176{
Pavel Machek4d8316d2006-08-14 22:37:22 -07001177 if (acpi_disabled)
Arjan van de Ven0f66af52009-01-10 14:19:05 -05001178 return;
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +03001179#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -04001180 acpi_battery_dir = acpi_lock_battery_dir();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 if (!acpi_battery_dir)
Arjan van de Ven0f66af52009-01-10 14:19:05 -05001182 return;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +04001183#endif
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001184 if (acpi_bus_register_driver(&acpi_battery_driver) < 0) {
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +03001185#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -04001186 acpi_unlock_battery_dir(acpi_battery_dir);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +04001187#endif
Arjan van de Ven0f66af52009-01-10 14:19:05 -05001188 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 }
Arjan van de Ven0f66af52009-01-10 14:19:05 -05001190 return;
1191}
1192
1193static int __init acpi_battery_init(void)
1194{
1195 async_schedule(acpi_battery_init_async, NULL);
Patrick Mocheld550d982006-06-27 00:41:40 -04001196 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197}
1198
Len Brown4be44fc2005-08-05 00:44:28 -04001199static void __exit acpi_battery_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 acpi_bus_unregister_driver(&acpi_battery_driver);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +03001202#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -04001203 acpi_unlock_battery_dir(acpi_battery_dir);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +04001204#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205}
1206
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207module_init(acpi_battery_init);
1208module_exit(acpi_battery_exit);