blob: 40bf01d42cc3b52937e07d5a941ea3d6505b2c87 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04002 * battery.c - ACPI Battery Driver (Revision: 2.0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04004 * Copyright (C) 2007 Alexey Starikovskiy <astarikovskiy@suse.de>
5 * Copyright (C) 2004-2007 Vladimir Lebedev <vladimir.p.lebedev@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
7 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
8 *
9 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or (at
14 * your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License along
22 * with this program; if not, write to the Free Software Foundation, Inc.,
23 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
24 *
25 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
26 */
27
28#include <linux/kernel.h>
29#include <linux/module.h>
30#include <linux/init.h>
31#include <linux/types.h>
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +040032#include <linux/jiffies.h>
Arjan van de Ven0f66af52009-01-10 14:19:05 -050033#include <linux/async.h>
Hector Martinbc76f902009-08-06 15:57:48 -070034#include <linux/dmi.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Kyle McMartin25be5822011-03-22 16:19:50 -040036#include <linux/suspend.h>
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040037
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +030038#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/proc_fs.h>
40#include <linux/seq_file.h>
41#include <asm/uaccess.h>
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040042#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44#include <acpi/acpi_bus.h>
45#include <acpi/acpi_drivers.h>
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040046#include <linux/power_supply.h>
47
Len Browna192a952009-07-28 16:45:54 -040048#define PREFIX "ACPI: "
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#define ACPI_BATTERY_VALUE_UNKNOWN 0xFFFFFFFF
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#define ACPI_BATTERY_CLASS "battery"
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define ACPI_BATTERY_DEVICE_NAME "Battery"
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#define ACPI_BATTERY_NOTIFY_STATUS 0x80
55#define ACPI_BATTERY_NOTIFY_INFO 0x81
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +040056#define ACPI_BATTERY_NOTIFY_THRESHOLD 0x82
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Lan Tianyuae6f6182011-06-30 11:32:40 +080058/* Battery power unit: 0 means mW, 1 means mA */
59#define ACPI_BATTERY_POWER_UNIT_MA 1
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#define _COMPONENT ACPI_BATTERY_COMPONENT
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +030062
Len Brownf52fd662007-02-12 22:42:12 -050063ACPI_MODULE_NAME("battery");
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Len Brownf52fd662007-02-12 22:42:12 -050065MODULE_AUTHOR("Paul Diefenbaugh");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +040066MODULE_AUTHOR("Alexey Starikovskiy <astarikovskiy@suse.de>");
Len Brown7cda93e2007-02-12 23:50:02 -050067MODULE_DESCRIPTION("ACPI Battery Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070068MODULE_LICENSE("GPL");
69
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +040070static unsigned int cache_time = 1000;
71module_param(cache_time, uint, 0644);
72MODULE_PARM_DESC(cache_time, "cache time in milliseconds");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +030073
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +030074#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -040075extern struct proc_dir_entry *acpi_lock_battery_dir(void);
76extern void *acpi_unlock_battery_dir(struct proc_dir_entry *acpi_battery_dir);
77
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040078enum acpi_battery_files {
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +040079 info_tag = 0,
80 state_tag,
81 alarm_tag,
Alexey Starikovskiy78490d82007-05-11 13:18:55 -040082 ACPI_BATTERY_NUMFILES,
83};
84
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040085#endif
86
87static const struct acpi_device_id battery_device_ids[] = {
88 {"PNP0C0A", 0},
89 {"", 0},
90};
91
92MODULE_DEVICE_TABLE(acpi, battery_device_ids);
93
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +040094enum {
95 ACPI_BATTERY_ALARM_PRESENT,
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +040096 ACPI_BATTERY_XINFO_PRESENT,
Zhang Rui557d5862010-10-22 10:02:06 +080097 ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY,
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +040098};
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040099
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400100struct acpi_battery {
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400101 struct mutex lock;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400102 struct power_supply bat;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400103 struct acpi_device *device;
Kyle McMartin25be5822011-03-22 16:19:50 -0400104 struct notifier_block pm_nb;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400105 unsigned long update_time;
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400106 int rate_now;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400107 int capacity_now;
108 int voltage_now;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400109 int design_capacity;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400110 int full_charge_capacity;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400111 int technology;
112 int design_voltage;
113 int design_capacity_warning;
114 int design_capacity_low;
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400115 int cycle_count;
116 int measurement_accuracy;
117 int max_sampling_time;
118 int min_sampling_time;
119 int max_averaging_interval;
120 int min_averaging_interval;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400121 int capacity_granularity_1;
122 int capacity_granularity_2;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400123 int alarm;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400124 char model_number[32];
125 char serial_number[32];
126 char type[32];
127 char oem_info[32];
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400128 int state;
129 int power_unit;
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400130 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131};
132
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400133#define to_acpi_battery(x) container_of(x, struct acpi_battery, bat);
134
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400135inline int acpi_battery_present(struct acpi_battery *battery)
136{
137 return battery->device->status.battery_present;
138}
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400139
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400140static int acpi_battery_technology(struct acpi_battery *battery)
141{
142 if (!strcasecmp("NiCd", battery->type))
143 return POWER_SUPPLY_TECHNOLOGY_NiCd;
144 if (!strcasecmp("NiMH", battery->type))
145 return POWER_SUPPLY_TECHNOLOGY_NiMH;
146 if (!strcasecmp("LION", battery->type))
147 return POWER_SUPPLY_TECHNOLOGY_LION;
Andrey Borzenkovad40e682007-11-10 20:02:49 +0300148 if (!strncasecmp("LI-ION", battery->type, 6))
Alexey Starikovskiy0bde7ee2007-10-28 15:33:10 +0300149 return POWER_SUPPLY_TECHNOLOGY_LION;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400150 if (!strcasecmp("LiP", battery->type))
151 return POWER_SUPPLY_TECHNOLOGY_LIPO;
152 return POWER_SUPPLY_TECHNOLOGY_UNKNOWN;
153}
154
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300155static int acpi_battery_get_state(struct acpi_battery *battery);
Alexey Starikovskiyb19073a2007-10-25 17:10:47 -0400156
Richard Hughes56f382a2009-01-25 15:05:50 +0000157static int acpi_battery_is_charged(struct acpi_battery *battery)
158{
159 /* either charging or discharging */
160 if (battery->state != 0)
161 return 0;
162
163 /* battery not reporting charge */
164 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN ||
165 battery->capacity_now == 0)
166 return 0;
167
168 /* good batteries update full_charge as the batteries degrade */
169 if (battery->full_charge_capacity == battery->capacity_now)
170 return 1;
171
172 /* fallback to using design values for broken batteries */
173 if (battery->design_capacity == battery->capacity_now)
174 return 1;
175
176 /* we don't do any sort of metric based on percentages */
177 return 0;
178}
179
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400180static int acpi_battery_get_property(struct power_supply *psy,
181 enum power_supply_property psp,
182 union power_supply_propval *val)
183{
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200184 int ret = 0;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400185 struct acpi_battery *battery = to_acpi_battery(psy);
186
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300187 if (acpi_battery_present(battery)) {
188 /* run battery update only if it is present */
189 acpi_battery_get_state(battery);
190 } else if (psp != POWER_SUPPLY_PROP_PRESENT)
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400191 return -ENODEV;
192 switch (psp) {
193 case POWER_SUPPLY_PROP_STATUS:
194 if (battery->state & 0x01)
195 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
196 else if (battery->state & 0x02)
197 val->intval = POWER_SUPPLY_STATUS_CHARGING;
Richard Hughes56f382a2009-01-25 15:05:50 +0000198 else if (acpi_battery_is_charged(battery))
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400199 val->intval = POWER_SUPPLY_STATUS_FULL;
Roland Dreier4c41d3a2007-11-07 15:09:09 -0800200 else
201 val->intval = POWER_SUPPLY_STATUS_UNKNOWN;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400202 break;
203 case POWER_SUPPLY_PROP_PRESENT:
204 val->intval = acpi_battery_present(battery);
205 break;
206 case POWER_SUPPLY_PROP_TECHNOLOGY:
207 val->intval = acpi_battery_technology(battery);
208 break;
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400209 case POWER_SUPPLY_PROP_CYCLE_COUNT:
210 val->intval = battery->cycle_count;
211 break;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400212 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200213 if (battery->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN)
214 ret = -ENODEV;
215 else
216 val->intval = battery->design_voltage * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400217 break;
218 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200219 if (battery->voltage_now == ACPI_BATTERY_VALUE_UNKNOWN)
220 ret = -ENODEV;
221 else
222 val->intval = battery->voltage_now * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400223 break;
224 case POWER_SUPPLY_PROP_CURRENT_NOW:
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400225 case POWER_SUPPLY_PROP_POWER_NOW:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200226 if (battery->rate_now == ACPI_BATTERY_VALUE_UNKNOWN)
227 ret = -ENODEV;
228 else
229 val->intval = battery->rate_now * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400230 break;
231 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
232 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200233 if (battery->design_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
234 ret = -ENODEV;
235 else
236 val->intval = battery->design_capacity * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400237 break;
238 case POWER_SUPPLY_PROP_CHARGE_FULL:
239 case POWER_SUPPLY_PROP_ENERGY_FULL:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200240 if (battery->full_charge_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
241 ret = -ENODEV;
242 else
243 val->intval = battery->full_charge_capacity * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400244 break;
245 case POWER_SUPPLY_PROP_CHARGE_NOW:
246 case POWER_SUPPLY_PROP_ENERGY_NOW:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200247 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN)
248 ret = -ENODEV;
249 else
250 val->intval = battery->capacity_now * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400251 break;
252 case POWER_SUPPLY_PROP_MODEL_NAME:
253 val->strval = battery->model_number;
254 break;
255 case POWER_SUPPLY_PROP_MANUFACTURER:
256 val->strval = battery->oem_info;
257 break;
maximilian attems7c2670b2008-01-22 18:46:50 +0100258 case POWER_SUPPLY_PROP_SERIAL_NUMBER:
259 val->strval = battery->serial_number;
260 break;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400261 default:
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200262 ret = -EINVAL;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400263 }
Rafael J. Wysockia1b4bd62010-10-23 19:35:15 +0200264 return ret;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400265}
266
267static enum power_supply_property charge_battery_props[] = {
268 POWER_SUPPLY_PROP_STATUS,
269 POWER_SUPPLY_PROP_PRESENT,
270 POWER_SUPPLY_PROP_TECHNOLOGY,
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400271 POWER_SUPPLY_PROP_CYCLE_COUNT,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400272 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
273 POWER_SUPPLY_PROP_VOLTAGE_NOW,
274 POWER_SUPPLY_PROP_CURRENT_NOW,
275 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
276 POWER_SUPPLY_PROP_CHARGE_FULL,
277 POWER_SUPPLY_PROP_CHARGE_NOW,
278 POWER_SUPPLY_PROP_MODEL_NAME,
279 POWER_SUPPLY_PROP_MANUFACTURER,
maximilian attems7c2670b2008-01-22 18:46:50 +0100280 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400281};
282
283static enum power_supply_property energy_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,
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400290 POWER_SUPPLY_PROP_POWER_NOW,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400291 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN,
292 POWER_SUPPLY_PROP_ENERGY_FULL,
293 POWER_SUPPLY_PROP_ENERGY_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
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300299#ifdef CONFIG_ACPI_PROCFS_POWER
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400300inline char *acpi_battery_units(struct acpi_battery *battery)
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400301{
Lan Tianyuae6f6182011-06-30 11:32:40 +0800302 return (battery->power_unit == ACPI_BATTERY_POWER_UNIT_MA) ?
303 "mA" : "mW";
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400304}
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400305#endif
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307/* --------------------------------------------------------------------------
308 Battery Management
309 -------------------------------------------------------------------------- */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400310struct acpi_offsets {
311 size_t offset; /* offset inside struct acpi_sbs_battery */
312 u8 mode; /* int or string? */
313};
314
315static struct acpi_offsets state_offsets[] = {
316 {offsetof(struct acpi_battery, state), 0},
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400317 {offsetof(struct acpi_battery, rate_now), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400318 {offsetof(struct acpi_battery, capacity_now), 0},
319 {offsetof(struct acpi_battery, voltage_now), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400320};
321
322static struct acpi_offsets info_offsets[] = {
323 {offsetof(struct acpi_battery, power_unit), 0},
324 {offsetof(struct acpi_battery, design_capacity), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400325 {offsetof(struct acpi_battery, full_charge_capacity), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400326 {offsetof(struct acpi_battery, technology), 0},
327 {offsetof(struct acpi_battery, design_voltage), 0},
328 {offsetof(struct acpi_battery, design_capacity_warning), 0},
329 {offsetof(struct acpi_battery, design_capacity_low), 0},
330 {offsetof(struct acpi_battery, capacity_granularity_1), 0},
331 {offsetof(struct acpi_battery, capacity_granularity_2), 0},
332 {offsetof(struct acpi_battery, model_number), 1},
333 {offsetof(struct acpi_battery, serial_number), 1},
334 {offsetof(struct acpi_battery, type), 1},
335 {offsetof(struct acpi_battery, oem_info), 1},
336};
337
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400338static struct acpi_offsets extended_info_offsets[] = {
339 {offsetof(struct acpi_battery, power_unit), 0},
340 {offsetof(struct acpi_battery, design_capacity), 0},
341 {offsetof(struct acpi_battery, full_charge_capacity), 0},
342 {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, cycle_count), 0},
347 {offsetof(struct acpi_battery, measurement_accuracy), 0},
348 {offsetof(struct acpi_battery, max_sampling_time), 0},
349 {offsetof(struct acpi_battery, min_sampling_time), 0},
350 {offsetof(struct acpi_battery, max_averaging_interval), 0},
351 {offsetof(struct acpi_battery, min_averaging_interval), 0},
352 {offsetof(struct acpi_battery, capacity_granularity_1), 0},
353 {offsetof(struct acpi_battery, capacity_granularity_2), 0},
354 {offsetof(struct acpi_battery, model_number), 1},
355 {offsetof(struct acpi_battery, serial_number), 1},
356 {offsetof(struct acpi_battery, type), 1},
357 {offsetof(struct acpi_battery, oem_info), 1},
358};
359
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400360static int extract_package(struct acpi_battery *battery,
361 union acpi_object *package,
362 struct acpi_offsets *offsets, int num)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300363{
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300364 int i;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400365 union acpi_object *element;
366 if (package->type != ACPI_TYPE_PACKAGE)
367 return -EFAULT;
368 for (i = 0; i < num; ++i) {
369 if (package->package.count <= i)
370 return -EFAULT;
371 element = &package->package.elements[i];
372 if (offsets[i].mode) {
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300373 u8 *ptr = (u8 *)battery + offsets[i].offset;
374 if (element->type == ACPI_TYPE_STRING ||
375 element->type == ACPI_TYPE_BUFFER)
376 strncpy(ptr, element->string.pointer, 32);
377 else if (element->type == ACPI_TYPE_INTEGER) {
378 strncpy(ptr, (u8 *)&element->integer.value,
Lin Ming439913f2010-01-28 10:53:19 +0800379 sizeof(u64));
380 ptr[sizeof(u64)] = 0;
Alexey Starikovskiyb8a1bdb2008-03-17 22:37:42 -0400381 } else
382 *ptr = 0; /* don't have value */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400383 } else {
Alexey Starikovskiyb8a1bdb2008-03-17 22:37:42 -0400384 int *x = (int *)((u8 *)battery + offsets[i].offset);
385 *x = (element->type == ACPI_TYPE_INTEGER) ?
386 element->integer.value : -1;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300387 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300388 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300389 return 0;
390}
391
392static int acpi_battery_get_status(struct acpi_battery *battery)
393{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400394 if (acpi_bus_get_status(battery->device)) {
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300395 ACPI_EXCEPTION((AE_INFO, AE_ERROR, "Evaluating _STA"));
396 return -ENODEV;
397 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400398 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300399}
400
401static int acpi_battery_get_info(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400403 int result = -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -0400404 acpi_status status = 0;
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400405 char *name = test_bit(ACPI_BATTERY_XINFO_PRESENT, &battery->flags)?
406 "_BIX" : "_BIF";
407
Len Brown4be44fc2005-08-05 00:44:28 -0400408 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300410 if (!acpi_battery_present(battery))
411 return 0;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400412 mutex_lock(&battery->lock);
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400413 status = acpi_evaluate_object(battery->device->handle, name,
414 NULL, &buffer);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400415 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 if (ACPI_FAILURE(status)) {
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400418 ACPI_EXCEPTION((AE_INFO, status, "Evaluating %s", name));
Patrick Mocheld550d982006-06-27 00:41:40 -0400419 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 }
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400421 if (test_bit(ACPI_BATTERY_XINFO_PRESENT, &battery->flags))
422 result = extract_package(battery, buffer.pointer,
423 extended_info_offsets,
424 ARRAY_SIZE(extended_info_offsets));
425 else
426 result = extract_package(battery, buffer.pointer,
427 info_offsets, ARRAY_SIZE(info_offsets));
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400428 kfree(buffer.pointer);
Zhang Rui557d5862010-10-22 10:02:06 +0800429 if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags))
430 battery->full_charge_capacity = battery->design_capacity;
Patrick Mocheld550d982006-06-27 00:41:40 -0400431 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432}
433
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300434static int acpi_battery_get_state(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
Len Brown4be44fc2005-08-05 00:44:28 -0400436 int result = 0;
437 acpi_status status = 0;
438 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300440 if (!acpi_battery_present(battery))
441 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400443 if (battery->update_time &&
444 time_before(jiffies, battery->update_time +
445 msecs_to_jiffies(cache_time)))
446 return 0;
447
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400448 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400449 status = acpi_evaluate_object(battery->device->handle, "_BST",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400450 NULL, &buffer);
451 mutex_unlock(&battery->lock);
Len Brown5b31d892007-08-15 00:19:26 -0400452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400454 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BST"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400455 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400457
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400458 result = extract_package(battery, buffer.pointer,
459 state_offsets, ARRAY_SIZE(state_offsets));
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400460 battery->update_time = jiffies;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400461 kfree(buffer.pointer);
Hector Martinbc76f902009-08-06 15:57:48 -0700462
Lan Tianyu55003b22011-06-30 11:33:12 +0800463 /* For buggy DSDTs that report negative 16-bit values for either
464 * charging or discharging current and/or report 0 as 65536
465 * due to bad math.
466 */
467 if (battery->power_unit == ACPI_BATTERY_POWER_UNIT_MA &&
468 battery->rate_now != ACPI_BATTERY_VALUE_UNKNOWN &&
469 (s16)(battery->rate_now) < 0) {
Hector Martinbc76f902009-08-06 15:57:48 -0700470 battery->rate_now = abs((s16)battery->rate_now);
Lan Tianyu55003b22011-06-30 11:33:12 +0800471 printk_once(KERN_WARNING FW_BUG "battery: (dis)charge rate"
472 " invalid.\n");
473 }
Hector Martinbc76f902009-08-06 15:57:48 -0700474
Zhang Rui557d5862010-10-22 10:02:06 +0800475 if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags)
476 && battery->capacity_now >= 0 && battery->capacity_now <= 100)
477 battery->capacity_now = (battery->capacity_now *
478 battery->full_charge_capacity) / 100;
Patrick Mocheld550d982006-06-27 00:41:40 -0400479 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480}
481
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400482static int acpi_battery_set_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
Len Brown4be44fc2005-08-05 00:44:28 -0400484 acpi_status status = 0;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400485 union acpi_object arg0 = { .type = ACPI_TYPE_INTEGER };
Len Brown4be44fc2005-08-05 00:44:28 -0400486 struct acpi_object_list arg_list = { 1, &arg0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400488 if (!acpi_battery_present(battery) ||
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400489 !test_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags))
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300490 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400492 arg0.integer.value = battery->alarm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400494 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400495 status = acpi_evaluate_object(battery->device->handle, "_BTP",
496 &arg_list, NULL);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400497 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400500 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400502 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Alarm set to %d\n", battery->alarm));
Patrick Mocheld550d982006-06-27 00:41:40 -0400503 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504}
505
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300506static int acpi_battery_init_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507{
Len Brown4be44fc2005-08-05 00:44:28 -0400508 acpi_status status = AE_OK;
509 acpi_handle handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300511 /* See if alarms are supported, and if so, set default */
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400512 status = acpi_get_handle(battery->device->handle, "_BTP", &handle);
513 if (ACPI_FAILURE(status)) {
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400514 clear_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400515 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 }
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400517 set_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400518 if (!battery->alarm)
519 battery->alarm = battery->design_capacity_warning;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400520 return acpi_battery_set_alarm(battery);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521}
522
Andrey Borzenkov508df922007-10-28 12:50:09 +0300523static ssize_t acpi_battery_alarm_show(struct device *dev,
524 struct device_attribute *attr,
525 char *buf)
526{
527 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
528 return sprintf(buf, "%d\n", battery->alarm * 1000);
529}
530
531static ssize_t acpi_battery_alarm_store(struct device *dev,
532 struct device_attribute *attr,
533 const char *buf, size_t count)
534{
535 unsigned long x;
536 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
537 if (sscanf(buf, "%ld\n", &x) == 1)
538 battery->alarm = x/1000;
539 if (acpi_battery_present(battery))
540 acpi_battery_set_alarm(battery);
541 return count;
542}
543
544static struct device_attribute alarm_attr = {
Parag Warudkar01e8ef12008-10-18 20:28:50 -0700545 .attr = {.name = "alarm", .mode = 0644},
Andrey Borzenkov508df922007-10-28 12:50:09 +0300546 .show = acpi_battery_alarm_show,
547 .store = acpi_battery_alarm_store,
548};
549
550static int sysfs_add_battery(struct acpi_battery *battery)
551{
552 int result;
553
Lan Tianyuae6f6182011-06-30 11:32:40 +0800554 if (battery->power_unit == ACPI_BATTERY_POWER_UNIT_MA) {
Andrey Borzenkov508df922007-10-28 12:50:09 +0300555 battery->bat.properties = charge_battery_props;
556 battery->bat.num_properties =
557 ARRAY_SIZE(charge_battery_props);
558 } else {
559 battery->bat.properties = energy_battery_props;
560 battery->bat.num_properties =
561 ARRAY_SIZE(energy_battery_props);
562 }
563
564 battery->bat.name = acpi_device_bid(battery->device);
565 battery->bat.type = POWER_SUPPLY_TYPE_BATTERY;
566 battery->bat.get_property = acpi_battery_get_property;
567
568 result = power_supply_register(&battery->device->dev, &battery->bat);
569 if (result)
570 return result;
571 return device_create_file(battery->bat.dev, &alarm_attr);
572}
573
574static void sysfs_remove_battery(struct acpi_battery *battery)
575{
Lan Tianyu9c921c222011-06-30 11:34:12 +0800576 mutex_lock(&battery->lock);
577 if (!battery->bat.dev) {
578 mutex_unlock(&battery->lock);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300579 return;
Lan Tianyu9c921c222011-06-30 11:34:12 +0800580 }
581
Andrey Borzenkov508df922007-10-28 12:50:09 +0300582 device_remove_file(battery->bat.dev, &alarm_attr);
583 power_supply_unregister(&battery->bat);
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300584 battery->bat.dev = NULL;
Lan Tianyu9c921c222011-06-30 11:34:12 +0800585 mutex_unlock(&battery->lock);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300586}
587
Zhang Rui557d5862010-10-22 10:02:06 +0800588/*
589 * According to the ACPI spec, some kinds of primary batteries can
590 * report percentage battery remaining capacity directly to OS.
591 * In this case, it reports the Last Full Charged Capacity == 100
592 * and BatteryPresentRate == 0xFFFFFFFF.
593 *
594 * Now we found some battery reports percentage remaining capacity
595 * even if it's rechargeable.
596 * https://bugzilla.kernel.org/show_bug.cgi?id=15979
597 *
598 * Handle this correctly so that they won't break userspace.
599 */
Lan Tianyu7b786222011-06-30 11:33:27 +0800600static void acpi_battery_quirks(struct acpi_battery *battery)
Zhang Rui557d5862010-10-22 10:02:06 +0800601{
602 if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags))
603 return ;
604
605 if (battery->full_charge_capacity == 100 &&
606 battery->rate_now == ACPI_BATTERY_VALUE_UNKNOWN &&
607 battery->capacity_now >=0 && battery->capacity_now <= 100) {
608 set_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags);
609 battery->full_charge_capacity = battery->design_capacity;
610 battery->capacity_now = (battery->capacity_now *
611 battery->full_charge_capacity) / 100;
612 }
613}
614
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400615static int acpi_battery_update(struct acpi_battery *battery)
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500616{
Alexey Starikovskiy50b17852008-12-23 02:44:54 +0300617 int result, old_present = acpi_battery_present(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500618 result = acpi_battery_get_status(battery);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300619 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300620 return result;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300621 if (!acpi_battery_present(battery)) {
622 sysfs_remove_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500623 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300624 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300625 }
Alexey Starikovskiy50b17852008-12-23 02:44:54 +0300626 if (!battery->update_time ||
627 old_present != acpi_battery_present(battery)) {
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500628 result = acpi_battery_get_info(battery);
629 if (result)
630 return result;
631 acpi_battery_init_alarm(battery);
632 }
Andrey Borzenkov508df922007-10-28 12:50:09 +0300633 if (!battery->bat.dev)
634 sysfs_add_battery(battery);
Zhang Rui557d5862010-10-22 10:02:06 +0800635 result = acpi_battery_get_state(battery);
Lan Tianyu7b786222011-06-30 11:33:27 +0800636 acpi_battery_quirks(battery);
Zhang Rui557d5862010-10-22 10:02:06 +0800637 return result;
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500638}
639
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +0100640static void acpi_battery_refresh(struct acpi_battery *battery)
641{
642 if (!battery->bat.dev)
643 return;
644
645 acpi_battery_get_info(battery);
646 /* The battery may have changed its reporting units. */
647 sysfs_remove_battery(battery);
648 sysfs_add_battery(battery);
649}
650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651/* --------------------------------------------------------------------------
652 FS Interface (/proc)
653 -------------------------------------------------------------------------- */
654
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300655#ifdef CONFIG_ACPI_PROCFS_POWER
Len Brown4be44fc2005-08-05 00:44:28 -0400656static struct proc_dir_entry *acpi_battery_dir;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300657
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400658static int acpi_battery_print_info(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200660 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300662 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 goto end;
664
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400665 seq_printf(seq, "present: %s\n",
666 acpi_battery_present(battery)?"yes":"no");
667 if (!acpi_battery_present(battery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 goto end;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400669 if (battery->design_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 seq_printf(seq, "design capacity: unknown\n");
671 else
672 seq_printf(seq, "design capacity: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400673 battery->design_capacity,
674 acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400676 if (battery->full_charge_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 seq_printf(seq, "last full capacity: unknown\n");
678 else
679 seq_printf(seq, "last full capacity: %d %sh\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400680 battery->full_charge_capacity,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400681 acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400683 seq_printf(seq, "battery technology: %srechargeable\n",
684 (!battery->technology)?"non-":"");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400686 if (battery->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 seq_printf(seq, "design voltage: unknown\n");
688 else
689 seq_printf(seq, "design voltage: %d mV\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400690 battery->design_voltage);
Len Brown4be44fc2005-08-05 00:44:28 -0400691 seq_printf(seq, "design capacity warning: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400692 battery->design_capacity_warning,
693 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400694 seq_printf(seq, "design capacity low: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400695 battery->design_capacity_low,
696 acpi_battery_units(battery));
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400697 seq_printf(seq, "cycle count: %i\n", battery->cycle_count);
Len Brown4be44fc2005-08-05 00:44:28 -0400698 seq_printf(seq, "capacity granularity 1: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400699 battery->capacity_granularity_1,
700 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400701 seq_printf(seq, "capacity granularity 2: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400702 battery->capacity_granularity_2,
703 acpi_battery_units(battery));
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400704 seq_printf(seq, "model number: %s\n", battery->model_number);
705 seq_printf(seq, "serial number: %s\n", battery->serial_number);
706 seq_printf(seq, "battery type: %s\n", battery->type);
707 seq_printf(seq, "OEM info: %s\n", battery->oem_info);
Len Brown4be44fc2005-08-05 00:44:28 -0400708 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300709 if (result)
710 seq_printf(seq, "ERROR: Unable to read battery info\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300711 return result;
712}
713
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400714static int acpi_battery_print_state(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200716 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300718 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 goto end;
720
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400721 seq_printf(seq, "present: %s\n",
722 acpi_battery_present(battery)?"yes":"no");
723 if (!acpi_battery_present(battery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400726 seq_printf(seq, "capacity state: %s\n",
727 (battery->state & 0x04)?"critical":"ok");
728 if ((battery->state & 0x01) && (battery->state & 0x02))
Len Brown4be44fc2005-08-05 00:44:28 -0400729 seq_printf(seq,
730 "charging state: charging/discharging\n");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400731 else if (battery->state & 0x01)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 seq_printf(seq, "charging state: discharging\n");
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400733 else if (battery->state & 0x02)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 seq_printf(seq, "charging state: charging\n");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400735 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 seq_printf(seq, "charging state: charged\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400738 if (battery->rate_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 seq_printf(seq, "present rate: unknown\n");
740 else
741 seq_printf(seq, "present rate: %d %s\n",
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400742 battery->rate_now, acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400744 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 seq_printf(seq, "remaining capacity: unknown\n");
746 else
747 seq_printf(seq, "remaining capacity: %d %sh\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400748 battery->capacity_now, acpi_battery_units(battery));
749 if (battery->voltage_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 seq_printf(seq, "present voltage: unknown\n");
751 else
752 seq_printf(seq, "present voltage: %d mV\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400753 battery->voltage_now);
Len Brown4be44fc2005-08-05 00:44:28 -0400754 end:
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400755 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300756 seq_printf(seq, "ERROR: Unable to read battery state\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300757
758 return result;
759}
760
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400761static int acpi_battery_print_alarm(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200763 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300765 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 goto end;
767
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300768 if (!acpi_battery_present(battery)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 seq_printf(seq, "present: no\n");
770 goto end;
771 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 seq_printf(seq, "alarm: ");
773 if (!battery->alarm)
774 seq_printf(seq, "unsupported\n");
775 else
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400776 seq_printf(seq, "%u %sh\n", battery->alarm,
777 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400778 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300779 if (result)
780 seq_printf(seq, "ERROR: Unable to read battery alarm\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300781 return result;
782}
783
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400784static ssize_t acpi_battery_write_alarm(struct file *file,
785 const char __user * buffer,
786 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787{
Len Brown4be44fc2005-08-05 00:44:28 -0400788 int result = 0;
789 char alarm_string[12] = { '\0' };
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200790 struct seq_file *m = file->private_data;
791 struct acpi_battery *battery = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 if (!battery || (count > sizeof(alarm_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -0400794 return -EINVAL;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300795 if (!acpi_battery_present(battery)) {
796 result = -ENODEV;
797 goto end;
798 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300799 if (copy_from_user(alarm_string, buffer, count)) {
800 result = -EFAULT;
801 goto end;
802 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 alarm_string[count] = '\0';
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400804 battery->alarm = simple_strtol(alarm_string, NULL, 0);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400805 result = acpi_battery_set_alarm(battery);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300806 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300807 if (!result)
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400808 return count;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300809 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810}
811
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400812typedef int(*print_func)(struct seq_file *seq, int result);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400813
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400814static print_func acpi_print_funcs[ACPI_BATTERY_NUMFILES] = {
815 acpi_battery_print_info,
816 acpi_battery_print_state,
817 acpi_battery_print_alarm,
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400818};
819
820static int acpi_battery_read(int fid, struct seq_file *seq)
821{
822 struct acpi_battery *battery = seq->private;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400823 int result = acpi_battery_update(battery);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400824 return acpi_print_funcs[fid](seq, result);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400825}
826
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400827#define DECLARE_FILE_FUNCTIONS(_name) \
828static int acpi_battery_read_##_name(struct seq_file *seq, void *offset) \
829{ \
830 return acpi_battery_read(_name##_tag, seq); \
831} \
832static int acpi_battery_##_name##_open_fs(struct inode *inode, struct file *file) \
833{ \
834 return single_open(file, acpi_battery_read_##_name, PDE(inode)->data); \
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400835}
836
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400837DECLARE_FILE_FUNCTIONS(info);
838DECLARE_FILE_FUNCTIONS(state);
839DECLARE_FILE_FUNCTIONS(alarm);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400840
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400841#undef DECLARE_FILE_FUNCTIONS
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400842
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400843#define FILE_DESCRIPTION_RO(_name) \
844 { \
845 .name = __stringify(_name), \
846 .mode = S_IRUGO, \
847 .ops = { \
848 .open = acpi_battery_##_name##_open_fs, \
849 .read = seq_read, \
850 .llseek = seq_lseek, \
851 .release = single_release, \
852 .owner = THIS_MODULE, \
853 }, \
854 }
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400855
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400856#define FILE_DESCRIPTION_RW(_name) \
857 { \
858 .name = __stringify(_name), \
859 .mode = S_IFREG | S_IRUGO | S_IWUSR, \
860 .ops = { \
861 .open = acpi_battery_##_name##_open_fs, \
862 .read = seq_read, \
863 .llseek = seq_lseek, \
864 .write = acpi_battery_write_##_name, \
865 .release = single_release, \
866 .owner = THIS_MODULE, \
867 }, \
868 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400870static struct battery_file {
871 struct file_operations ops;
872 mode_t mode;
Jan Engelhardt070d8eb2009-01-12 00:07:55 +0100873 const char *name;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400874} acpi_battery_file[] = {
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400875 FILE_DESCRIPTION_RO(info),
876 FILE_DESCRIPTION_RO(state),
877 FILE_DESCRIPTION_RW(alarm),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878};
879
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400880#undef FILE_DESCRIPTION_RO
881#undef FILE_DESCRIPTION_RW
882
Len Brown4be44fc2005-08-05 00:44:28 -0400883static int acpi_battery_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884{
Len Brown4be44fc2005-08-05 00:44:28 -0400885 struct proc_dir_entry *entry = NULL;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400886 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Zhang Rui6d855fc2011-01-10 11:16:30 +0800888 printk(KERN_WARNING PREFIX "Deprecated procfs I/F for battery is loaded,"
889 " please retry with CONFIG_ACPI_PROCFS_POWER cleared\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 if (!acpi_device_dir(device)) {
891 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400892 acpi_battery_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400894 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 }
896
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400897 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i) {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700898 entry = proc_create_data(acpi_battery_file[i].name,
899 acpi_battery_file[i].mode,
900 acpi_device_dir(device),
901 &acpi_battery_file[i].ops,
902 acpi_driver_data(device));
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400903 if (!entry)
904 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400906 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907}
908
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400909static void acpi_battery_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910{
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400911 int i;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400912 if (!acpi_device_dir(device))
913 return;
914 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i)
915 remove_proc_entry(acpi_battery_file[i].name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400918 remove_proc_entry(acpi_device_bid(device), acpi_battery_dir);
919 acpi_device_dir(device) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920}
921
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400922#endif
Alexey Starikovskiy3e58ea02007-09-26 19:43:11 +0400923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924/* --------------------------------------------------------------------------
925 Driver Interface
926 -------------------------------------------------------------------------- */
927
Bjorn Helgaasd9406692009-04-30 09:35:47 -0600928static void acpi_battery_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929{
Bjorn Helgaasd9406692009-04-30 09:35:47 -0600930 struct acpi_battery *battery = acpi_driver_data(device);
Zhang Rui153e5002010-07-07 09:11:57 +0800931 struct device *old;
Bjorn Helgaasd9406692009-04-30 09:35:47 -0600932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -0400934 return;
Zhang Rui153e5002010-07-07 09:11:57 +0800935 old = battery->bat.dev;
Rafael J. Wysockida8aeb92011-01-06 23:42:27 +0100936 if (event == ACPI_BATTERY_NOTIFY_INFO)
937 acpi_battery_refresh(battery);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400938 acpi_battery_update(battery);
939 acpi_bus_generate_proc_event(device, event,
940 acpi_battery_present(battery));
941 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100942 dev_name(&device->dev), event,
Vladimir Lebedev9ea7d572007-02-20 15:48:06 +0300943 acpi_battery_present(battery));
Justin P. Mattock2345baf2009-12-13 14:42:36 -0800944 /* acpi_battery_update could remove power_supply object */
Zhang Rui153e5002010-07-07 09:11:57 +0800945 if (old && battery->bat.dev)
Alan Jenkinsf79e1ce2009-06-30 14:36:16 +0000946 power_supply_changed(&battery->bat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947}
948
Kyle McMartin25be5822011-03-22 16:19:50 -0400949static int battery_notify(struct notifier_block *nb,
950 unsigned long mode, void *_unused)
951{
952 struct acpi_battery *battery = container_of(nb, struct acpi_battery,
953 pm_nb);
954 switch (mode) {
Lan Tianyud5a59112011-06-30 11:33:40 +0800955 case PM_POST_HIBERNATION:
Kyle McMartin25be5822011-03-22 16:19:50 -0400956 case PM_POST_SUSPEND:
Lan Tianyu6e17fb62011-06-30 11:33:58 +0800957 if (battery->bat.dev) {
958 sysfs_remove_battery(battery);
959 sysfs_add_battery(battery);
960 }
Kyle McMartin25be5822011-03-22 16:19:50 -0400961 break;
962 }
963
964 return 0;
965}
966
Len Brown4be44fc2005-08-05 00:44:28 -0400967static int acpi_battery_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968{
Len Brown4be44fc2005-08-05 00:44:28 -0400969 int result = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400970 struct acpi_battery *battery = NULL;
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400971 acpi_handle handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400973 return -EINVAL;
Burman Yan36bcbec2006-12-19 12:56:11 -0800974 battery = kzalloc(sizeof(struct acpi_battery), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -0400976 return -ENOMEM;
Patrick Mochel145def82006-05-19 16:54:39 -0400977 battery->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 strcpy(acpi_device_name(device), ACPI_BATTERY_DEVICE_NAME);
979 strcpy(acpi_device_class(device), ACPI_BATTERY_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700980 device->driver_data = battery;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400981 mutex_init(&battery->lock);
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400982 if (ACPI_SUCCESS(acpi_get_handle(battery->device->handle,
983 "_BIX", &handle)))
984 set_bit(ACPI_BATTERY_XINFO_PRESENT, &battery->flags);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400985 acpi_battery_update(battery);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300986#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 result = acpi_battery_add_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400988#endif
Len Brown586caae2009-06-18 00:38:27 -0400989 if (!result) {
990 printk(KERN_INFO PREFIX "%s Slot [%s] (battery %s)\n",
991 ACPI_BATTERY_DEVICE_NAME, acpi_device_bid(device),
992 device->status.battery_present ? "present" : "absent");
993 } else {
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300994#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 acpi_battery_remove_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400996#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 kfree(battery);
998 }
Kyle McMartin25be5822011-03-22 16:19:50 -0400999
1000 battery->pm_nb.notifier_call = battery_notify;
1001 register_pm_notifier(&battery->pm_nb);
1002
Patrick Mocheld550d982006-06-27 00:41:40 -04001003 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004}
1005
Len Brown4be44fc2005-08-05 00:44:28 -04001006static int acpi_battery_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007{
Len Brown4be44fc2005-08-05 00:44:28 -04001008 struct acpi_battery *battery = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001011 return -EINVAL;
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001012 battery = acpi_driver_data(device);
Kyle McMartin25be5822011-03-22 16:19:50 -04001013 unregister_pm_notifier(&battery->pm_nb);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +03001014#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 acpi_battery_remove_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +04001016#endif
Andrey Borzenkov508df922007-10-28 12:50:09 +03001017 sysfs_remove_battery(battery);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +04001018 mutex_destroy(&battery->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 kfree(battery);
Patrick Mocheld550d982006-06-27 00:41:40 -04001020 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021}
1022
Jiri Kosina34c44152006-10-10 14:20:41 -07001023/* this is needed to learn about changes made in suspended state */
Patrick Mochel5d9464a2006-12-07 20:56:27 +08001024static int acpi_battery_resume(struct acpi_device *device)
Jiri Kosina34c44152006-10-10 14:20:41 -07001025{
1026 struct acpi_battery *battery;
Jiri Kosina34c44152006-10-10 14:20:41 -07001027 if (!device)
1028 return -EINVAL;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +04001029 battery = acpi_driver_data(device);
1030 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +03001031 acpi_battery_update(battery);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +03001032 return 0;
Jiri Kosina34c44152006-10-10 14:20:41 -07001033}
1034
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001035static struct acpi_driver acpi_battery_driver = {
1036 .name = "battery",
1037 .class = ACPI_BATTERY_CLASS,
1038 .ids = battery_device_ids,
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001039 .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001040 .ops = {
1041 .add = acpi_battery_add,
1042 .resume = acpi_battery_resume,
1043 .remove = acpi_battery_remove,
Bjorn Helgaasd9406692009-04-30 09:35:47 -06001044 .notify = acpi_battery_notify,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001045 },
1046};
1047
Linus Torvaldsb0cbc862009-04-11 12:45:20 -07001048static void __init acpi_battery_init_async(void *unused, async_cookie_t cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049{
Pavel Machek4d8316d2006-08-14 22:37:22 -07001050 if (acpi_disabled)
Arjan van de Ven0f66af52009-01-10 14:19:05 -05001051 return;
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +03001052#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -04001053 acpi_battery_dir = acpi_lock_battery_dir();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 if (!acpi_battery_dir)
Arjan van de Ven0f66af52009-01-10 14:19:05 -05001055 return;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +04001056#endif
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04001057 if (acpi_bus_register_driver(&acpi_battery_driver) < 0) {
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +03001058#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -04001059 acpi_unlock_battery_dir(acpi_battery_dir);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +04001060#endif
Arjan van de Ven0f66af52009-01-10 14:19:05 -05001061 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 }
Arjan van de Ven0f66af52009-01-10 14:19:05 -05001063 return;
1064}
1065
1066static int __init acpi_battery_init(void)
1067{
1068 async_schedule(acpi_battery_init_async, NULL);
Patrick Mocheld550d982006-06-27 00:41:40 -04001069 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070}
1071
Len Brown4be44fc2005-08-05 00:44:28 -04001072static void __exit acpi_battery_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 acpi_bus_unregister_driver(&acpi_battery_driver);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +03001075#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -04001076 acpi_unlock_battery_dir(acpi_battery_dir);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +04001077#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078}
1079
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080module_init(acpi_battery_init);
1081module_exit(acpi_battery_exit);