blob: 5876a49dfd386a4653325d99fcc69aa8452b12e1 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <acpi/acpi_bus.h>
40#include <acpi/acpi_drivers.h>
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040041#include <linux/power_supply.h>
42
Len Browna192a952009-07-28 16:45:54 -040043#define PREFIX "ACPI: "
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#define ACPI_BATTERY_VALUE_UNKNOWN 0xFFFFFFFF
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#define ACPI_BATTERY_CLASS "battery"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#define ACPI_BATTERY_DEVICE_NAME "Battery"
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define ACPI_BATTERY_NOTIFY_STATUS 0x80
50#define ACPI_BATTERY_NOTIFY_INFO 0x81
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +040051#define ACPI_BATTERY_NOTIFY_THRESHOLD 0x82
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Lan Tianyuae6f6182011-06-30 11:32:40 +080053/* Battery power unit: 0 means mW, 1 means mA */
54#define ACPI_BATTERY_POWER_UNIT_MA 1
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#define _COMPONENT ACPI_BATTERY_COMPONENT
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +030057
Len Brownf52fd662007-02-12 22:42:12 -050058ACPI_MODULE_NAME("battery");
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Len Brownf52fd662007-02-12 22:42:12 -050060MODULE_AUTHOR("Paul Diefenbaugh");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +040061MODULE_AUTHOR("Alexey Starikovskiy <astarikovskiy@suse.de>");
Len Brown7cda93e2007-02-12 23:50:02 -050062MODULE_DESCRIPTION("ACPI Battery Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070063MODULE_LICENSE("GPL");
64
Lan Tianyua90b4032014-01-06 22:50:37 +080065static int battery_bix_broken_package;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +040066static unsigned int cache_time = 1000;
67module_param(cache_time, uint, 0644);
68MODULE_PARM_DESC(cache_time, "cache time in milliseconds");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +030069
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040070static const struct acpi_device_id battery_device_ids[] = {
71 {"PNP0C0A", 0},
72 {"", 0},
73};
74
75MODULE_DEVICE_TABLE(acpi, battery_device_ids);
76
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +040077enum {
78 ACPI_BATTERY_ALARM_PRESENT,
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +040079 ACPI_BATTERY_XINFO_PRESENT,
Zhang Rui557d5862010-10-22 10:02:06 +080080 ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY,
Kamil Iskra4000e622012-11-16 22:28:58 +010081 /* On Lenovo Thinkpad models from 2010 and 2011, the power unit
82 switches between mWh and mAh depending on whether the system
83 is running on battery or not. When mAh is the unit, most
84 reported values are incorrect and need to be adjusted by
85 10000/design_voltage. Verified on x201, t410, t410s, and x220.
86 Pre-2010 and 2012 models appear to always report in mWh and
87 are thus unaffected (tested with t42, t61, t500, x200, x300,
88 and x230). Also, in mid-2012 Lenovo issued a BIOS update for
89 the 2011 models that fixes the issue (tested on x220 with a
90 post-1.29 BIOS), but as of Nov. 2012, no such update is
91 available for the 2010 models. */
92 ACPI_BATTERY_QUIRK_THINKPAD_MAH,
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +040093};
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040094
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040095struct acpi_battery {
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040096 struct mutex lock;
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +030097 struct mutex sysfs_lock;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040098 struct power_supply bat;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +040099 struct acpi_device *device;
Kyle McMartin25be5822011-03-22 16:19:50 -0400100 struct notifier_block pm_nb;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400101 unsigned long update_time;
Lan Tianyu016d5ba2013-07-30 14:00:42 +0200102 int revision;
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400103 int rate_now;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400104 int capacity_now;
105 int voltage_now;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400106 int design_capacity;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400107 int full_charge_capacity;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400108 int technology;
109 int design_voltage;
110 int design_capacity_warning;
111 int design_capacity_low;
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400112 int cycle_count;
113 int measurement_accuracy;
114 int max_sampling_time;
115 int min_sampling_time;
116 int max_averaging_interval;
117 int min_averaging_interval;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400118 int capacity_granularity_1;
119 int capacity_granularity_2;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400120 int alarm;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400121 char model_number[32];
122 char serial_number[32];
123 char type[32];
124 char oem_info[32];
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400125 int state;
126 int power_unit;
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400127 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128};
129
Phil Carmody497888c2011-07-14 15:07:13 +0300130#define to_acpi_battery(x) container_of(x, struct acpi_battery, bat)
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400131
Andy Shevchenkoefd941f2013-03-11 09:17:06 +0000132static inline int acpi_battery_present(struct acpi_battery *battery)
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400133{
134 return battery->device->status.battery_present;
135}
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400136
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400137static int acpi_battery_technology(struct acpi_battery *battery)
138{
139 if (!strcasecmp("NiCd", battery->type))
140 return POWER_SUPPLY_TECHNOLOGY_NiCd;
141 if (!strcasecmp("NiMH", battery->type))
142 return POWER_SUPPLY_TECHNOLOGY_NiMH;
143 if (!strcasecmp("LION", battery->type))
144 return POWER_SUPPLY_TECHNOLOGY_LION;
Andrey Borzenkovad40e682007-11-10 20:02:49 +0300145 if (!strncasecmp("LI-ION", battery->type, 6))
Alexey Starikovskiy0bde7ee2007-10-28 15:33:10 +0300146 return POWER_SUPPLY_TECHNOLOGY_LION;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400147 if (!strcasecmp("LiP", battery->type))
148 return POWER_SUPPLY_TECHNOLOGY_LIPO;
149 return POWER_SUPPLY_TECHNOLOGY_UNKNOWN;
150}
151
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300152static int acpi_battery_get_state(struct acpi_battery *battery);
Alexey Starikovskiyb19073a2007-10-25 17:10:47 -0400153
Richard Hughes56f382a2009-01-25 15:05:50 +0000154static int acpi_battery_is_charged(struct acpi_battery *battery)
155{
156 /* either charging or discharging */
157 if (battery->state != 0)
158 return 0;
159
160 /* battery not reporting charge */
161 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN ||
162 battery->capacity_now == 0)
163 return 0;
164
165 /* good batteries update full_charge as the batteries degrade */
166 if (battery->full_charge_capacity == battery->capacity_now)
167 return 1;
168
169 /* fallback to using design values for broken batteries */
170 if (battery->design_capacity == battery->capacity_now)
171 return 1;
172
173 /* we don't do any sort of metric based on percentages */
174 return 0;
175}
176
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400177static int acpi_battery_get_property(struct power_supply *psy,
178 enum power_supply_property psp,
179 union power_supply_propval *val)
180{
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200181 int ret = 0;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400182 struct acpi_battery *battery = to_acpi_battery(psy);
183
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300184 if (acpi_battery_present(battery)) {
185 /* run battery update only if it is present */
186 acpi_battery_get_state(battery);
187 } else if (psp != POWER_SUPPLY_PROP_PRESENT)
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400188 return -ENODEV;
189 switch (psp) {
190 case POWER_SUPPLY_PROP_STATUS:
191 if (battery->state & 0x01)
192 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
193 else if (battery->state & 0x02)
194 val->intval = POWER_SUPPLY_STATUS_CHARGING;
Richard Hughes56f382a2009-01-25 15:05:50 +0000195 else if (acpi_battery_is_charged(battery))
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400196 val->intval = POWER_SUPPLY_STATUS_FULL;
Roland Dreier4c41d3a2007-11-07 15:09:09 -0800197 else
198 val->intval = POWER_SUPPLY_STATUS_UNKNOWN;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400199 break;
200 case POWER_SUPPLY_PROP_PRESENT:
201 val->intval = acpi_battery_present(battery);
202 break;
203 case POWER_SUPPLY_PROP_TECHNOLOGY:
204 val->intval = acpi_battery_technology(battery);
205 break;
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400206 case POWER_SUPPLY_PROP_CYCLE_COUNT:
207 val->intval = battery->cycle_count;
208 break;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400209 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200210 if (battery->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN)
211 ret = -ENODEV;
212 else
213 val->intval = battery->design_voltage * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400214 break;
215 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200216 if (battery->voltage_now == ACPI_BATTERY_VALUE_UNKNOWN)
217 ret = -ENODEV;
218 else
219 val->intval = battery->voltage_now * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400220 break;
221 case POWER_SUPPLY_PROP_CURRENT_NOW:
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400222 case POWER_SUPPLY_PROP_POWER_NOW:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200223 if (battery->rate_now == ACPI_BATTERY_VALUE_UNKNOWN)
224 ret = -ENODEV;
225 else
226 val->intval = battery->rate_now * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400227 break;
228 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
229 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200230 if (battery->design_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
231 ret = -ENODEV;
232 else
233 val->intval = battery->design_capacity * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400234 break;
235 case POWER_SUPPLY_PROP_CHARGE_FULL:
236 case POWER_SUPPLY_PROP_ENERGY_FULL:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200237 if (battery->full_charge_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
238 ret = -ENODEV;
239 else
240 val->intval = battery->full_charge_capacity * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400241 break;
242 case POWER_SUPPLY_PROP_CHARGE_NOW:
243 case POWER_SUPPLY_PROP_ENERGY_NOW:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200244 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN)
245 ret = -ENODEV;
246 else
247 val->intval = battery->capacity_now * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400248 break;
srinivas pandruvadaa58e1152012-04-05 17:38:54 -0700249 case POWER_SUPPLY_PROP_CAPACITY:
250 if (battery->capacity_now && battery->full_charge_capacity)
251 val->intval = battery->capacity_now * 100/
252 battery->full_charge_capacity;
253 else
254 val->intval = 0;
255 break;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400256 case POWER_SUPPLY_PROP_MODEL_NAME:
257 val->strval = battery->model_number;
258 break;
259 case POWER_SUPPLY_PROP_MANUFACTURER:
260 val->strval = battery->oem_info;
261 break;
maximilian attems7c2670b2008-01-22 18:46:50 +0100262 case POWER_SUPPLY_PROP_SERIAL_NUMBER:
263 val->strval = battery->serial_number;
264 break;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400265 default:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200266 ret = -EINVAL;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400267 }
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200268 return ret;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400269}
270
271static enum power_supply_property charge_battery_props[] = {
272 POWER_SUPPLY_PROP_STATUS,
273 POWER_SUPPLY_PROP_PRESENT,
274 POWER_SUPPLY_PROP_TECHNOLOGY,
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400275 POWER_SUPPLY_PROP_CYCLE_COUNT,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400276 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
277 POWER_SUPPLY_PROP_VOLTAGE_NOW,
278 POWER_SUPPLY_PROP_CURRENT_NOW,
279 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
280 POWER_SUPPLY_PROP_CHARGE_FULL,
281 POWER_SUPPLY_PROP_CHARGE_NOW,
srinivas pandruvadaa58e1152012-04-05 17:38:54 -0700282 POWER_SUPPLY_PROP_CAPACITY,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400283 POWER_SUPPLY_PROP_MODEL_NAME,
284 POWER_SUPPLY_PROP_MANUFACTURER,
maximilian attems7c2670b2008-01-22 18:46:50 +0100285 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400286};
287
288static enum power_supply_property energy_battery_props[] = {
289 POWER_SUPPLY_PROP_STATUS,
290 POWER_SUPPLY_PROP_PRESENT,
291 POWER_SUPPLY_PROP_TECHNOLOGY,
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400292 POWER_SUPPLY_PROP_CYCLE_COUNT,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400293 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
294 POWER_SUPPLY_PROP_VOLTAGE_NOW,
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400295 POWER_SUPPLY_PROP_POWER_NOW,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400296 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN,
297 POWER_SUPPLY_PROP_ENERGY_FULL,
298 POWER_SUPPLY_PROP_ENERGY_NOW,
srinivas pandruvadaa58e1152012-04-05 17:38:54 -0700299 POWER_SUPPLY_PROP_CAPACITY,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400300 POWER_SUPPLY_PROP_MODEL_NAME,
301 POWER_SUPPLY_PROP_MANUFACTURER,
maximilian attems7c2670b2008-01-22 18:46:50 +0100302 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400303};
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305/* --------------------------------------------------------------------------
306 Battery Management
307 -------------------------------------------------------------------------- */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400308struct acpi_offsets {
309 size_t offset; /* offset inside struct acpi_sbs_battery */
310 u8 mode; /* int or string? */
311};
312
313static struct acpi_offsets state_offsets[] = {
314 {offsetof(struct acpi_battery, state), 0},
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400315 {offsetof(struct acpi_battery, rate_now), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400316 {offsetof(struct acpi_battery, capacity_now), 0},
317 {offsetof(struct acpi_battery, voltage_now), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400318};
319
320static struct acpi_offsets info_offsets[] = {
321 {offsetof(struct acpi_battery, power_unit), 0},
322 {offsetof(struct acpi_battery, design_capacity), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400323 {offsetof(struct acpi_battery, full_charge_capacity), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400324 {offsetof(struct acpi_battery, technology), 0},
325 {offsetof(struct acpi_battery, design_voltage), 0},
326 {offsetof(struct acpi_battery, design_capacity_warning), 0},
327 {offsetof(struct acpi_battery, design_capacity_low), 0},
328 {offsetof(struct acpi_battery, capacity_granularity_1), 0},
329 {offsetof(struct acpi_battery, capacity_granularity_2), 0},
330 {offsetof(struct acpi_battery, model_number), 1},
331 {offsetof(struct acpi_battery, serial_number), 1},
332 {offsetof(struct acpi_battery, type), 1},
333 {offsetof(struct acpi_battery, oem_info), 1},
334};
335
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400336static struct acpi_offsets extended_info_offsets[] = {
Lan Tianyu016d5ba2013-07-30 14:00:42 +0200337 {offsetof(struct acpi_battery, revision), 0},
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400338 {offsetof(struct acpi_battery, power_unit), 0},
339 {offsetof(struct acpi_battery, design_capacity), 0},
340 {offsetof(struct acpi_battery, full_charge_capacity), 0},
341 {offsetof(struct acpi_battery, technology), 0},
342 {offsetof(struct acpi_battery, design_voltage), 0},
343 {offsetof(struct acpi_battery, design_capacity_warning), 0},
344 {offsetof(struct acpi_battery, design_capacity_low), 0},
345 {offsetof(struct acpi_battery, cycle_count), 0},
346 {offsetof(struct acpi_battery, measurement_accuracy), 0},
347 {offsetof(struct acpi_battery, max_sampling_time), 0},
348 {offsetof(struct acpi_battery, min_sampling_time), 0},
349 {offsetof(struct acpi_battery, max_averaging_interval), 0},
350 {offsetof(struct acpi_battery, min_averaging_interval), 0},
351 {offsetof(struct acpi_battery, capacity_granularity_1), 0},
352 {offsetof(struct acpi_battery, capacity_granularity_2), 0},
353 {offsetof(struct acpi_battery, model_number), 1},
354 {offsetof(struct acpi_battery, serial_number), 1},
355 {offsetof(struct acpi_battery, type), 1},
356 {offsetof(struct acpi_battery, oem_info), 1},
357};
358
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400359static int extract_package(struct acpi_battery *battery,
360 union acpi_object *package,
361 struct acpi_offsets *offsets, int num)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300362{
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300363 int i;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400364 union acpi_object *element;
365 if (package->type != ACPI_TYPE_PACKAGE)
366 return -EFAULT;
367 for (i = 0; i < num; ++i) {
368 if (package->package.count <= i)
369 return -EFAULT;
370 element = &package->package.elements[i];
371 if (offsets[i].mode) {
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300372 u8 *ptr = (u8 *)battery + offsets[i].offset;
373 if (element->type == ACPI_TYPE_STRING ||
374 element->type == ACPI_TYPE_BUFFER)
375 strncpy(ptr, element->string.pointer, 32);
376 else if (element->type == ACPI_TYPE_INTEGER) {
377 strncpy(ptr, (u8 *)&element->integer.value,
Lin Ming439913f2010-01-28 10:53:19 +0800378 sizeof(u64));
379 ptr[sizeof(u64)] = 0;
Alexey Starikovskiyb8a1bdb2008-03-17 22:37:42 -0400380 } else
381 *ptr = 0; /* don't have value */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400382 } else {
Alexey Starikovskiyb8a1bdb2008-03-17 22:37:42 -0400383 int *x = (int *)((u8 *)battery + offsets[i].offset);
384 *x = (element->type == ACPI_TYPE_INTEGER) ?
385 element->integer.value : -1;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300386 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300387 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300388 return 0;
389}
390
391static int acpi_battery_get_status(struct acpi_battery *battery)
392{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400393 if (acpi_bus_get_status(battery->device)) {
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300394 ACPI_EXCEPTION((AE_INFO, AE_ERROR, "Evaluating _STA"));
395 return -ENODEV;
396 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400397 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300398}
399
400static int acpi_battery_get_info(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400402 int result = -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -0400403 acpi_status status = 0;
Nicholas Mazzuca0f4c6542013-05-08 23:11:15 +0000404 char *name = test_bit(ACPI_BATTERY_XINFO_PRESENT, &battery->flags) ?
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400405 "_BIX" : "_BIF";
406
Len Brown4be44fc2005-08-05 00:44:28 -0400407 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300409 if (!acpi_battery_present(battery))
410 return 0;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400411 mutex_lock(&battery->lock);
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400412 status = acpi_evaluate_object(battery->device->handle, name,
413 NULL, &buffer);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400414 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 if (ACPI_FAILURE(status)) {
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400417 ACPI_EXCEPTION((AE_INFO, status, "Evaluating %s", name));
Patrick Mocheld550d982006-06-27 00:41:40 -0400418 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 }
Lan Tianyua90b4032014-01-06 22:50:37 +0800420
421 if (battery_bix_broken_package)
422 result = extract_package(battery, buffer.pointer,
423 extended_info_offsets + 1,
424 ARRAY_SIZE(extended_info_offsets) - 1);
425 else if (test_bit(ACPI_BATTERY_XINFO_PRESENT, &battery->flags))
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400426 result = extract_package(battery, buffer.pointer,
427 extended_info_offsets,
428 ARRAY_SIZE(extended_info_offsets));
429 else
430 result = extract_package(battery, buffer.pointer,
431 info_offsets, ARRAY_SIZE(info_offsets));
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400432 kfree(buffer.pointer);
Zhang Rui557d5862010-10-22 10:02:06 +0800433 if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags))
434 battery->full_charge_capacity = battery->design_capacity;
Kamil Iskra4000e622012-11-16 22:28:58 +0100435 if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH, &battery->flags) &&
436 battery->power_unit && battery->design_voltage) {
437 battery->design_capacity = battery->design_capacity *
438 10000 / battery->design_voltage;
439 battery->full_charge_capacity = battery->full_charge_capacity *
440 10000 / battery->design_voltage;
441 battery->design_capacity_warning =
442 battery->design_capacity_warning *
443 10000 / battery->design_voltage;
444 /* Curiously, design_capacity_low, unlike the rest of them,
445 is correct. */
446 /* capacity_granularity_* equal 1 on the systems tested, so
447 it's impossible to tell if they would need an adjustment
448 or not if their values were higher. */
449 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400450 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451}
452
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300453static int acpi_battery_get_state(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
Len Brown4be44fc2005-08-05 00:44:28 -0400455 int result = 0;
456 acpi_status status = 0;
457 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300459 if (!acpi_battery_present(battery))
460 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400462 if (battery->update_time &&
463 time_before(jiffies, battery->update_time +
464 msecs_to_jiffies(cache_time)))
465 return 0;
466
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400467 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400468 status = acpi_evaluate_object(battery->device->handle, "_BST",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400469 NULL, &buffer);
470 mutex_unlock(&battery->lock);
Len Brown5b31d892007-08-15 00:19:26 -0400471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400473 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BST"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400474 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400476
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400477 result = extract_package(battery, buffer.pointer,
478 state_offsets, ARRAY_SIZE(state_offsets));
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400479 battery->update_time = jiffies;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400480 kfree(buffer.pointer);
Hector Martinbc76f902009-08-06 15:57:48 -0700481
Lan Tianyu55003b22011-06-30 11:33:12 +0800482 /* For buggy DSDTs that report negative 16-bit values for either
483 * charging or discharging current and/or report 0 as 65536
484 * due to bad math.
485 */
486 if (battery->power_unit == ACPI_BATTERY_POWER_UNIT_MA &&
487 battery->rate_now != ACPI_BATTERY_VALUE_UNKNOWN &&
488 (s16)(battery->rate_now) < 0) {
Hector Martinbc76f902009-08-06 15:57:48 -0700489 battery->rate_now = abs((s16)battery->rate_now);
Lan Tianyu55003b22011-06-30 11:33:12 +0800490 printk_once(KERN_WARNING FW_BUG "battery: (dis)charge rate"
491 " invalid.\n");
492 }
Hector Martinbc76f902009-08-06 15:57:48 -0700493
Zhang Rui557d5862010-10-22 10:02:06 +0800494 if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags)
495 && battery->capacity_now >= 0 && battery->capacity_now <= 100)
496 battery->capacity_now = (battery->capacity_now *
497 battery->full_charge_capacity) / 100;
Kamil Iskra4000e622012-11-16 22:28:58 +0100498 if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH, &battery->flags) &&
499 battery->power_unit && battery->design_voltage) {
500 battery->capacity_now = battery->capacity_now *
501 10000 / battery->design_voltage;
502 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400503 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504}
505
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400506static int acpi_battery_set_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507{
Len Brown4be44fc2005-08-05 00:44:28 -0400508 acpi_status status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400510 if (!acpi_battery_present(battery) ||
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400511 !test_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags))
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300512 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400514 mutex_lock(&battery->lock);
Jiang Liu0db98202013-06-29 00:24:39 +0800515 status = acpi_execute_simple_method(battery->device->handle, "_BTP",
516 battery->alarm);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400517 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400520 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400522 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Alarm set to %d\n", battery->alarm));
Patrick Mocheld550d982006-06-27 00:41:40 -0400523 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524}
525
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300526static int acpi_battery_init_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527{
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300528 /* See if alarms are supported, and if so, set default */
Jiang Liu952c63e2013-06-29 00:24:38 +0800529 if (!acpi_has_method(battery->device->handle, "_BTP")) {
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400530 clear_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400531 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 }
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400533 set_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400534 if (!battery->alarm)
535 battery->alarm = battery->design_capacity_warning;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400536 return acpi_battery_set_alarm(battery);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537}
538
Andrey Borzenkov508df922007-10-28 12:50:09 +0300539static ssize_t acpi_battery_alarm_show(struct device *dev,
540 struct device_attribute *attr,
541 char *buf)
542{
543 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
544 return sprintf(buf, "%d\n", battery->alarm * 1000);
545}
546
547static ssize_t acpi_battery_alarm_store(struct device *dev,
548 struct device_attribute *attr,
549 const char *buf, size_t count)
550{
551 unsigned long x;
552 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
553 if (sscanf(buf, "%ld\n", &x) == 1)
554 battery->alarm = x/1000;
555 if (acpi_battery_present(battery))
556 acpi_battery_set_alarm(battery);
557 return count;
558}
559
560static struct device_attribute alarm_attr = {
Parag Warudkar01e8ef12008-10-18 20:28:50 -0700561 .attr = {.name = "alarm", .mode = 0644},
Andrey Borzenkov508df922007-10-28 12:50:09 +0300562 .show = acpi_battery_alarm_show,
563 .store = acpi_battery_alarm_store,
564};
565
566static int sysfs_add_battery(struct acpi_battery *battery)
567{
568 int result;
569
Lan Tianyuae6f6182011-06-30 11:32:40 +0800570 if (battery->power_unit == ACPI_BATTERY_POWER_UNIT_MA) {
Andrey Borzenkov508df922007-10-28 12:50:09 +0300571 battery->bat.properties = charge_battery_props;
572 battery->bat.num_properties =
573 ARRAY_SIZE(charge_battery_props);
574 } else {
575 battery->bat.properties = energy_battery_props;
576 battery->bat.num_properties =
577 ARRAY_SIZE(energy_battery_props);
578 }
579
580 battery->bat.name = acpi_device_bid(battery->device);
581 battery->bat.type = POWER_SUPPLY_TYPE_BATTERY;
582 battery->bat.get_property = acpi_battery_get_property;
583
584 result = power_supply_register(&battery->device->dev, &battery->bat);
585 if (result)
586 return result;
587 return device_create_file(battery->bat.dev, &alarm_attr);
588}
589
590static void sysfs_remove_battery(struct acpi_battery *battery)
591{
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300592 mutex_lock(&battery->sysfs_lock);
Lan Tianyu9c921c222011-06-30 11:34:12 +0800593 if (!battery->bat.dev) {
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300594 mutex_unlock(&battery->sysfs_lock);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300595 return;
Lan Tianyu9c921c222011-06-30 11:34:12 +0800596 }
597
Andrey Borzenkov508df922007-10-28 12:50:09 +0300598 device_remove_file(battery->bat.dev, &alarm_attr);
599 power_supply_unregister(&battery->bat);
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300600 battery->bat.dev = NULL;
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300601 mutex_unlock(&battery->sysfs_lock);
Hector Martinbc76f902009-08-06 15:57:48 -0700602}
603
Kamil Iskra4000e622012-11-16 22:28:58 +0100604static void find_battery(const struct dmi_header *dm, void *private)
605{
606 struct acpi_battery *battery = (struct acpi_battery *)private;
607 /* Note: the hardcoded offsets below have been extracted from
608 the source code of dmidecode. */
609 if (dm->type == DMI_ENTRY_PORTABLE_BATTERY && dm->length >= 8) {
610 const u8 *dmi_data = (const u8 *)(dm + 1);
611 int dmi_capacity = get_unaligned((const u16 *)(dmi_data + 6));
612 if (dm->length >= 18)
613 dmi_capacity *= dmi_data[17];
614 if (battery->design_capacity * battery->design_voltage / 1000
615 != dmi_capacity &&
616 battery->design_capacity * 10 == dmi_capacity)
617 set_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH,
618 &battery->flags);
619 }
620}
621
Zhang Rui557d5862010-10-22 10:02:06 +0800622/*
623 * According to the ACPI spec, some kinds of primary batteries can
624 * report percentage battery remaining capacity directly to OS.
625 * In this case, it reports the Last Full Charged Capacity == 100
626 * and BatteryPresentRate == 0xFFFFFFFF.
627 *
628 * Now we found some battery reports percentage remaining capacity
629 * even if it's rechargeable.
630 * https://bugzilla.kernel.org/show_bug.cgi?id=15979
631 *
632 * Handle this correctly so that they won't break userspace.
633 */
Lan Tianyu7b786222011-06-30 11:33:27 +0800634static void acpi_battery_quirks(struct acpi_battery *battery)
Zhang Rui557d5862010-10-22 10:02:06 +0800635{
636 if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags))
Nicholas Mazzuca0f4c6542013-05-08 23:11:15 +0000637 return;
Zhang Rui557d5862010-10-22 10:02:06 +0800638
Nicholas Mazzuca0f4c6542013-05-08 23:11:15 +0000639 if (battery->full_charge_capacity == 100 &&
640 battery->rate_now == ACPI_BATTERY_VALUE_UNKNOWN &&
641 battery->capacity_now >= 0 && battery->capacity_now <= 100) {
Zhang Rui557d5862010-10-22 10:02:06 +0800642 set_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags);
643 battery->full_charge_capacity = battery->design_capacity;
644 battery->capacity_now = (battery->capacity_now *
645 battery->full_charge_capacity) / 100;
646 }
Kamil Iskra4000e622012-11-16 22:28:58 +0100647
648 if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH, &battery->flags))
Nicholas Mazzuca0f4c6542013-05-08 23:11:15 +0000649 return;
Kamil Iskra4000e622012-11-16 22:28:58 +0100650
651 if (battery->power_unit && dmi_name_in_vendors("LENOVO")) {
652 const char *s;
653 s = dmi_get_system_info(DMI_PRODUCT_VERSION);
654 if (s && !strnicmp(s, "ThinkPad", 8)) {
655 dmi_walk(find_battery, battery);
656 if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH,
657 &battery->flags) &&
658 battery->design_voltage) {
659 battery->design_capacity =
660 battery->design_capacity *
661 10000 / battery->design_voltage;
662 battery->full_charge_capacity =
663 battery->full_charge_capacity *
664 10000 / battery->design_voltage;
665 battery->design_capacity_warning =
666 battery->design_capacity_warning *
667 10000 / battery->design_voltage;
668 battery->capacity_now = battery->capacity_now *
669 10000 / battery->design_voltage;
670 }
671 }
672 }
Zhang Rui557d5862010-10-22 10:02:06 +0800673}
674
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400675static int acpi_battery_update(struct acpi_battery *battery)
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500676{
Alexey Starikovskiy50b17852008-12-23 02:44:54 +0300677 int result, old_present = acpi_battery_present(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500678 result = acpi_battery_get_status(battery);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300679 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300680 return result;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300681 if (!acpi_battery_present(battery)) {
682 sysfs_remove_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500683 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300684 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300685 }
Alexey Starikovskiy50b17852008-12-23 02:44:54 +0300686 if (!battery->update_time ||
687 old_present != acpi_battery_present(battery)) {
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500688 result = acpi_battery_get_info(battery);
689 if (result)
690 return result;
691 acpi_battery_init_alarm(battery);
692 }
Stefan Hajnoczieb03cb02011-07-12 09:03:29 +0100693 if (!battery->bat.dev) {
694 result = sysfs_add_battery(battery);
695 if (result)
696 return result;
697 }
Zhang Rui557d5862010-10-22 10:02:06 +0800698 result = acpi_battery_get_state(battery);
Lan Tianyu7b786222011-06-30 11:33:27 +0800699 acpi_battery_quirks(battery);
Zhang Rui557d5862010-10-22 10:02:06 +0800700 return result;
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500701}
702
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +0100703static void acpi_battery_refresh(struct acpi_battery *battery)
704{
Andy Whitcroftc5971452012-05-03 14:48:26 +0100705 int power_unit;
706
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +0100707 if (!battery->bat.dev)
708 return;
709
Andy Whitcroftc5971452012-05-03 14:48:26 +0100710 power_unit = battery->power_unit;
711
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +0100712 acpi_battery_get_info(battery);
Andy Whitcroftc5971452012-05-03 14:48:26 +0100713
714 if (power_unit == battery->power_unit)
715 return;
716
717 /* The battery has changed its reporting units. */
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +0100718 sysfs_remove_battery(battery);
719 sysfs_add_battery(battery);
720}
721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722/* --------------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 Driver Interface
724 -------------------------------------------------------------------------- */
725
Bjorn Helgaasd9406692009-04-30 09:35:47 -0600726static void acpi_battery_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
Bjorn Helgaasd9406692009-04-30 09:35:47 -0600728 struct acpi_battery *battery = acpi_driver_data(device);
Zhang Rui153e5002010-07-07 09:11:57 +0800729 struct device *old;
Bjorn Helgaasd9406692009-04-30 09:35:47 -0600730
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -0400732 return;
Zhang Rui153e5002010-07-07 09:11:57 +0800733 old = battery->bat.dev;
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +0100734 if (event == ACPI_BATTERY_NOTIFY_INFO)
735 acpi_battery_refresh(battery);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400736 acpi_battery_update(battery);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400737 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100738 dev_name(&device->dev), event,
Vladimir Lebedev9ea7d572007-02-20 15:48:06 +0300739 acpi_battery_present(battery));
Justin P. Mattock2345baf2009-12-13 14:42:36 -0800740 /* acpi_battery_update could remove power_supply object */
Zhang Rui153e5002010-07-07 09:11:57 +0800741 if (old && battery->bat.dev)
Alan Jenkinsf79e1ce2009-06-30 14:36:16 +0000742 power_supply_changed(&battery->bat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
744
Kyle McMartin25be5822011-03-22 16:19:50 -0400745static int battery_notify(struct notifier_block *nb,
746 unsigned long mode, void *_unused)
747{
748 struct acpi_battery *battery = container_of(nb, struct acpi_battery,
749 pm_nb);
750 switch (mode) {
Lan Tianyud5a59112011-06-30 11:33:40 +0800751 case PM_POST_HIBERNATION:
Kyle McMartin25be5822011-03-22 16:19:50 -0400752 case PM_POST_SUSPEND:
Lan Tianyu6e17fb62011-06-30 11:33:58 +0800753 if (battery->bat.dev) {
754 sysfs_remove_battery(battery);
755 sysfs_add_battery(battery);
756 }
Kyle McMartin25be5822011-03-22 16:19:50 -0400757 break;
758 }
759
760 return 0;
761}
762
Lan Tianyua90b4032014-01-06 22:50:37 +0800763static struct dmi_system_id bat_dmi_table[] = {
764 {
765 .ident = "NEC LZ750/LS",
766 .matches = {
767 DMI_MATCH(DMI_SYS_VENDOR, "NEC"),
768 DMI_MATCH(DMI_PRODUCT_NAME, "PC-LZ750LS"),
769 },
770 },
771 {},
772};
773
Len Brown4be44fc2005-08-05 00:44:28 -0400774static int acpi_battery_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
Len Brown4be44fc2005-08-05 00:44:28 -0400776 int result = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400777 struct acpi_battery *battery = NULL;
Jiang Liu952c63e2013-06-29 00:24:38 +0800778
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400780 return -EINVAL;
Burman Yan36bcbec2006-12-19 12:56:11 -0800781 battery = kzalloc(sizeof(struct acpi_battery), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -0400783 return -ENOMEM;
Patrick Mochel145def82006-05-19 16:54:39 -0400784 battery->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 strcpy(acpi_device_name(device), ACPI_BATTERY_DEVICE_NAME);
786 strcpy(acpi_device_class(device), ACPI_BATTERY_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700787 device->driver_data = battery;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400788 mutex_init(&battery->lock);
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300789 mutex_init(&battery->sysfs_lock);
Jiang Liu952c63e2013-06-29 00:24:38 +0800790 if (acpi_has_method(battery->device->handle, "_BIX"))
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400791 set_bit(ACPI_BATTERY_XINFO_PRESENT, &battery->flags);
Stefan Hajnoczieb03cb02011-07-12 09:03:29 +0100792 result = acpi_battery_update(battery);
793 if (result)
794 goto fail;
Kyle McMartin25be5822011-03-22 16:19:50 -0400795
Stefan Hajnoczie80bba42011-07-12 09:03:28 +0100796 printk(KERN_INFO PREFIX "%s Slot [%s] (battery %s)\n",
797 ACPI_BATTERY_DEVICE_NAME, acpi_device_bid(device),
798 device->status.battery_present ? "present" : "absent");
799
Kyle McMartin25be5822011-03-22 16:19:50 -0400800 battery->pm_nb.notifier_call = battery_notify;
801 register_pm_notifier(&battery->pm_nb);
802
Patrick Mocheld550d982006-06-27 00:41:40 -0400803 return result;
Stefan Hajnoczie80bba42011-07-12 09:03:28 +0100804
805fail:
806 sysfs_remove_battery(battery);
807 mutex_destroy(&battery->lock);
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300808 mutex_destroy(&battery->sysfs_lock);
Stefan Hajnoczie80bba42011-07-12 09:03:28 +0100809 kfree(battery);
810 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811}
812
Rafael J. Wysocki51fac832013-01-24 00:24:48 +0100813static int acpi_battery_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
Len Brown4be44fc2005-08-05 00:44:28 -0400815 struct acpi_battery *battery = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400818 return -EINVAL;
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200819 battery = acpi_driver_data(device);
Kyle McMartin25be5822011-03-22 16:19:50 -0400820 unregister_pm_notifier(&battery->pm_nb);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300821 sysfs_remove_battery(battery);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400822 mutex_destroy(&battery->lock);
Sergey Senozhatsky69d94ec2011-08-06 01:34:08 +0300823 mutex_destroy(&battery->sysfs_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 kfree(battery);
Patrick Mocheld550d982006-06-27 00:41:40 -0400825 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826}
827
Rafael J. Wysocki90692402012-08-09 23:00:02 +0200828#ifdef CONFIG_PM_SLEEP
Jiri Kosina34c44152006-10-10 14:20:41 -0700829/* this is needed to learn about changes made in suspended state */
Rafael J. Wysockia6f50dc2012-06-27 23:26:43 +0200830static int acpi_battery_resume(struct device *dev)
Jiri Kosina34c44152006-10-10 14:20:41 -0700831{
832 struct acpi_battery *battery;
Rafael J. Wysockia6f50dc2012-06-27 23:26:43 +0200833
834 if (!dev)
Jiri Kosina34c44152006-10-10 14:20:41 -0700835 return -EINVAL;
Rafael J. Wysockia6f50dc2012-06-27 23:26:43 +0200836
837 battery = acpi_driver_data(to_acpi_device(dev));
838 if (!battery)
839 return -EINVAL;
840
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400841 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300842 acpi_battery_update(battery);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300843 return 0;
Jiri Kosina34c44152006-10-10 14:20:41 -0700844}
Rafael J. Wysocki90692402012-08-09 23:00:02 +0200845#endif
Jiri Kosina34c44152006-10-10 14:20:41 -0700846
Rafael J. Wysockia6f50dc2012-06-27 23:26:43 +0200847static SIMPLE_DEV_PM_OPS(acpi_battery_pm, NULL, acpi_battery_resume);
848
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400849static struct acpi_driver acpi_battery_driver = {
850 .name = "battery",
851 .class = ACPI_BATTERY_CLASS,
852 .ids = battery_device_ids,
Bjorn Helgaasd9406692009-04-30 09:35:47 -0600853 .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400854 .ops = {
855 .add = acpi_battery_add,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400856 .remove = acpi_battery_remove,
Bjorn Helgaasd9406692009-04-30 09:35:47 -0600857 .notify = acpi_battery_notify,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400858 },
Rafael J. Wysockia6f50dc2012-06-27 23:26:43 +0200859 .drv.pm = &acpi_battery_pm,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400860};
861
Linus Torvaldsb0cbc862009-04-11 12:45:20 -0700862static void __init acpi_battery_init_async(void *unused, async_cookie_t cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863{
Pavel Machek4d8316d2006-08-14 22:37:22 -0700864 if (acpi_disabled)
Arjan van de Ven0f66af52009-01-10 14:19:05 -0500865 return;
Lan Tianyua90b4032014-01-06 22:50:37 +0800866
867 if (dmi_check_system(bat_dmi_table))
868 battery_bix_broken_package = 1;
Lan Tianyu1e2d9cd2013-10-11 09:54:08 +0800869 acpi_bus_register_driver(&acpi_battery_driver);
Arjan van de Ven0f66af52009-01-10 14:19:05 -0500870}
871
872static int __init acpi_battery_init(void)
873{
874 async_schedule(acpi_battery_init_async, NULL);
Patrick Mocheld550d982006-06-27 00:41:40 -0400875 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876}
877
Len Brown4be44fc2005-08-05 00:44:28 -0400878static void __exit acpi_battery_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 acpi_bus_unregister_driver(&acpi_battery_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881}
882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883module_init(acpi_battery_init);
884module_exit(acpi_battery_exit);