blob: b2b48f8545c776f17f46698b5783ff0e42ac5979 [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>
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040035
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +030036#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/proc_fs.h>
38#include <linux/seq_file.h>
39#include <asm/uaccess.h>
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040040#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include <acpi/acpi_bus.h>
43#include <acpi/acpi_drivers.h>
44
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -050045#ifdef CONFIG_ACPI_SYSFS_POWER
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040046#include <linux/power_supply.h>
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -050047#endif
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040048
Len Browna192a952009-07-28 16:45:54 -040049#define PREFIX "ACPI: "
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define ACPI_BATTERY_VALUE_UNKNOWN 0xFFFFFFFF
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define ACPI_BATTERY_CLASS "battery"
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#define ACPI_BATTERY_DEVICE_NAME "Battery"
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#define ACPI_BATTERY_NOTIFY_STATUS 0x80
56#define ACPI_BATTERY_NOTIFY_INFO 0x81
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#define _COMPONENT ACPI_BATTERY_COMPONENT
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +030059
Len Brownf52fd662007-02-12 22:42:12 -050060ACPI_MODULE_NAME("battery");
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Len Brownf52fd662007-02-12 22:42:12 -050062MODULE_AUTHOR("Paul Diefenbaugh");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +040063MODULE_AUTHOR("Alexey Starikovskiy <astarikovskiy@suse.de>");
Len Brown7cda93e2007-02-12 23:50:02 -050064MODULE_DESCRIPTION("ACPI Battery Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070065MODULE_LICENSE("GPL");
66
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +040067static unsigned int cache_time = 1000;
68module_param(cache_time, uint, 0644);
69MODULE_PARM_DESC(cache_time, "cache time in milliseconds");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +030070
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +030071#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -040072extern struct proc_dir_entry *acpi_lock_battery_dir(void);
73extern void *acpi_unlock_battery_dir(struct proc_dir_entry *acpi_battery_dir);
74
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040075enum acpi_battery_files {
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +040076 info_tag = 0,
77 state_tag,
78 alarm_tag,
Alexey Starikovskiy78490d82007-05-11 13:18:55 -040079 ACPI_BATTERY_NUMFILES,
80};
81
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040082#endif
83
84static const struct acpi_device_id battery_device_ids[] = {
85 {"PNP0C0A", 0},
86 {"", 0},
87};
88
89MODULE_DEVICE_TABLE(acpi, battery_device_ids);
90
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +040091enum {
92 ACPI_BATTERY_ALARM_PRESENT,
93 /* For buggy DSDTs that report negative 16-bit values for either charging
94 * or discharging current and/or report 0 as 65536 due to bad math.
95 */
96 ACPI_BATTERY_QUIRK_SIGNED16_CURRENT,
97};
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040098
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040099struct acpi_battery {
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400100 struct mutex lock;
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500101#ifdef CONFIG_ACPI_SYSFS_POWER
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400102 struct power_supply bat;
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500103#endif
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400104 struct acpi_device *device;
105 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;
115 int capacity_granularity_1;
116 int capacity_granularity_2;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400117 int alarm;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400118 char model_number[32];
119 char serial_number[32];
120 char type[32];
121 char oem_info[32];
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400122 int state;
123 int power_unit;
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400124 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125};
126
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400127#define to_acpi_battery(x) container_of(x, struct acpi_battery, bat);
128
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400129inline int acpi_battery_present(struct acpi_battery *battery)
130{
131 return battery->device->status.battery_present;
132}
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400133
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500134#ifdef CONFIG_ACPI_SYSFS_POWER
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400135static int acpi_battery_technology(struct acpi_battery *battery)
136{
137 if (!strcasecmp("NiCd", battery->type))
138 return POWER_SUPPLY_TECHNOLOGY_NiCd;
139 if (!strcasecmp("NiMH", battery->type))
140 return POWER_SUPPLY_TECHNOLOGY_NiMH;
141 if (!strcasecmp("LION", battery->type))
142 return POWER_SUPPLY_TECHNOLOGY_LION;
Andrey Borzenkovad40e682007-11-10 20:02:49 +0300143 if (!strncasecmp("LI-ION", battery->type, 6))
Alexey Starikovskiy0bde7ee2007-10-28 15:33:10 +0300144 return POWER_SUPPLY_TECHNOLOGY_LION;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400145 if (!strcasecmp("LiP", battery->type))
146 return POWER_SUPPLY_TECHNOLOGY_LIPO;
147 return POWER_SUPPLY_TECHNOLOGY_UNKNOWN;
148}
149
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300150static int acpi_battery_get_state(struct acpi_battery *battery);
Alexey Starikovskiyb19073a2007-10-25 17:10:47 -0400151
Richard Hughes56f382a2009-01-25 15:05:50 +0000152static int acpi_battery_is_charged(struct acpi_battery *battery)
153{
154 /* either charging or discharging */
155 if (battery->state != 0)
156 return 0;
157
158 /* battery not reporting charge */
159 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN ||
160 battery->capacity_now == 0)
161 return 0;
162
163 /* good batteries update full_charge as the batteries degrade */
164 if (battery->full_charge_capacity == battery->capacity_now)
165 return 1;
166
167 /* fallback to using design values for broken batteries */
168 if (battery->design_capacity == battery->capacity_now)
169 return 1;
170
171 /* we don't do any sort of metric based on percentages */
172 return 0;
173}
174
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400175static int acpi_battery_get_property(struct power_supply *psy,
176 enum power_supply_property psp,
177 union power_supply_propval *val)
178{
179 struct acpi_battery *battery = to_acpi_battery(psy);
180
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300181 if (acpi_battery_present(battery)) {
182 /* run battery update only if it is present */
183 acpi_battery_get_state(battery);
184 } else if (psp != POWER_SUPPLY_PROP_PRESENT)
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400185 return -ENODEV;
186 switch (psp) {
187 case POWER_SUPPLY_PROP_STATUS:
188 if (battery->state & 0x01)
189 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
190 else if (battery->state & 0x02)
191 val->intval = POWER_SUPPLY_STATUS_CHARGING;
Richard Hughes56f382a2009-01-25 15:05:50 +0000192 else if (acpi_battery_is_charged(battery))
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400193 val->intval = POWER_SUPPLY_STATUS_FULL;
Roland Dreier4c41d3a2007-11-07 15:09:09 -0800194 else
195 val->intval = POWER_SUPPLY_STATUS_UNKNOWN;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400196 break;
197 case POWER_SUPPLY_PROP_PRESENT:
198 val->intval = acpi_battery_present(battery);
199 break;
200 case POWER_SUPPLY_PROP_TECHNOLOGY:
201 val->intval = acpi_battery_technology(battery);
202 break;
203 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
204 val->intval = battery->design_voltage * 1000;
205 break;
206 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
207 val->intval = battery->voltage_now * 1000;
208 break;
209 case POWER_SUPPLY_PROP_CURRENT_NOW:
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400210 case POWER_SUPPLY_PROP_POWER_NOW:
211 val->intval = battery->rate_now * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400212 break;
213 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
214 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
215 val->intval = battery->design_capacity * 1000;
216 break;
217 case POWER_SUPPLY_PROP_CHARGE_FULL:
218 case POWER_SUPPLY_PROP_ENERGY_FULL:
219 val->intval = battery->full_charge_capacity * 1000;
220 break;
221 case POWER_SUPPLY_PROP_CHARGE_NOW:
222 case POWER_SUPPLY_PROP_ENERGY_NOW:
223 val->intval = battery->capacity_now * 1000;
224 break;
225 case POWER_SUPPLY_PROP_MODEL_NAME:
226 val->strval = battery->model_number;
227 break;
228 case POWER_SUPPLY_PROP_MANUFACTURER:
229 val->strval = battery->oem_info;
230 break;
maximilian attems7c2670b2008-01-22 18:46:50 +0100231 case POWER_SUPPLY_PROP_SERIAL_NUMBER:
232 val->strval = battery->serial_number;
233 break;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400234 default:
235 return -EINVAL;
236 }
237 return 0;
238}
239
240static enum power_supply_property charge_battery_props[] = {
241 POWER_SUPPLY_PROP_STATUS,
242 POWER_SUPPLY_PROP_PRESENT,
243 POWER_SUPPLY_PROP_TECHNOLOGY,
244 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
245 POWER_SUPPLY_PROP_VOLTAGE_NOW,
246 POWER_SUPPLY_PROP_CURRENT_NOW,
247 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
248 POWER_SUPPLY_PROP_CHARGE_FULL,
249 POWER_SUPPLY_PROP_CHARGE_NOW,
250 POWER_SUPPLY_PROP_MODEL_NAME,
251 POWER_SUPPLY_PROP_MANUFACTURER,
maximilian attems7c2670b2008-01-22 18:46:50 +0100252 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400253};
254
255static enum power_supply_property energy_battery_props[] = {
256 POWER_SUPPLY_PROP_STATUS,
257 POWER_SUPPLY_PROP_PRESENT,
258 POWER_SUPPLY_PROP_TECHNOLOGY,
259 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
260 POWER_SUPPLY_PROP_VOLTAGE_NOW,
261 POWER_SUPPLY_PROP_CURRENT_NOW,
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400262 POWER_SUPPLY_PROP_POWER_NOW,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400263 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN,
264 POWER_SUPPLY_PROP_ENERGY_FULL,
265 POWER_SUPPLY_PROP_ENERGY_NOW,
266 POWER_SUPPLY_PROP_MODEL_NAME,
267 POWER_SUPPLY_PROP_MANUFACTURER,
maximilian attems7c2670b2008-01-22 18:46:50 +0100268 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400269};
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500270#endif
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400271
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300272#ifdef CONFIG_ACPI_PROCFS_POWER
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400273inline char *acpi_battery_units(struct acpi_battery *battery)
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400274{
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400275 return (battery->power_unit)?"mA":"mW";
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400276}
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400277#endif
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279/* --------------------------------------------------------------------------
280 Battery Management
281 -------------------------------------------------------------------------- */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400282struct acpi_offsets {
283 size_t offset; /* offset inside struct acpi_sbs_battery */
284 u8 mode; /* int or string? */
285};
286
287static struct acpi_offsets state_offsets[] = {
288 {offsetof(struct acpi_battery, state), 0},
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400289 {offsetof(struct acpi_battery, rate_now), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400290 {offsetof(struct acpi_battery, capacity_now), 0},
291 {offsetof(struct acpi_battery, voltage_now), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400292};
293
294static struct acpi_offsets info_offsets[] = {
295 {offsetof(struct acpi_battery, power_unit), 0},
296 {offsetof(struct acpi_battery, design_capacity), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400297 {offsetof(struct acpi_battery, full_charge_capacity), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400298 {offsetof(struct acpi_battery, technology), 0},
299 {offsetof(struct acpi_battery, design_voltage), 0},
300 {offsetof(struct acpi_battery, design_capacity_warning), 0},
301 {offsetof(struct acpi_battery, design_capacity_low), 0},
302 {offsetof(struct acpi_battery, capacity_granularity_1), 0},
303 {offsetof(struct acpi_battery, capacity_granularity_2), 0},
304 {offsetof(struct acpi_battery, model_number), 1},
305 {offsetof(struct acpi_battery, serial_number), 1},
306 {offsetof(struct acpi_battery, type), 1},
307 {offsetof(struct acpi_battery, oem_info), 1},
308};
309
310static int extract_package(struct acpi_battery *battery,
311 union acpi_object *package,
312 struct acpi_offsets *offsets, int num)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300313{
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300314 int i;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400315 union acpi_object *element;
316 if (package->type != ACPI_TYPE_PACKAGE)
317 return -EFAULT;
318 for (i = 0; i < num; ++i) {
319 if (package->package.count <= i)
320 return -EFAULT;
321 element = &package->package.elements[i];
322 if (offsets[i].mode) {
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300323 u8 *ptr = (u8 *)battery + offsets[i].offset;
324 if (element->type == ACPI_TYPE_STRING ||
325 element->type == ACPI_TYPE_BUFFER)
326 strncpy(ptr, element->string.pointer, 32);
327 else if (element->type == ACPI_TYPE_INTEGER) {
328 strncpy(ptr, (u8 *)&element->integer.value,
329 sizeof(acpi_integer));
330 ptr[sizeof(acpi_integer)] = 0;
Alexey Starikovskiyb8a1bdb2008-03-17 22:37:42 -0400331 } else
332 *ptr = 0; /* don't have value */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400333 } else {
Alexey Starikovskiyb8a1bdb2008-03-17 22:37:42 -0400334 int *x = (int *)((u8 *)battery + offsets[i].offset);
335 *x = (element->type == ACPI_TYPE_INTEGER) ?
336 element->integer.value : -1;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300337 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300338 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300339 return 0;
340}
341
342static int acpi_battery_get_status(struct acpi_battery *battery)
343{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400344 if (acpi_bus_get_status(battery->device)) {
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300345 ACPI_EXCEPTION((AE_INFO, AE_ERROR, "Evaluating _STA"));
346 return -ENODEV;
347 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400348 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300349}
350
351static int acpi_battery_get_info(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400353 int result = -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -0400354 acpi_status status = 0;
355 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300357 if (!acpi_battery_present(battery))
358 return 0;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400359 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400360 status = acpi_evaluate_object(battery->device->handle, "_BIF",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400361 NULL, &buffer);
362 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400365 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BIF"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400366 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400368
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400369 result = extract_package(battery, buffer.pointer,
370 info_offsets, ARRAY_SIZE(info_offsets));
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400371 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -0400372 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373}
374
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300375static int acpi_battery_get_state(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376{
Len Brown4be44fc2005-08-05 00:44:28 -0400377 int result = 0;
378 acpi_status status = 0;
379 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300381 if (!acpi_battery_present(battery))
382 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400384 if (battery->update_time &&
385 time_before(jiffies, battery->update_time +
386 msecs_to_jiffies(cache_time)))
387 return 0;
388
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400389 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400390 status = acpi_evaluate_object(battery->device->handle, "_BST",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400391 NULL, &buffer);
392 mutex_unlock(&battery->lock);
Len Brown5b31d892007-08-15 00:19:26 -0400393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400395 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BST"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400396 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400398
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400399 result = extract_package(battery, buffer.pointer,
400 state_offsets, ARRAY_SIZE(state_offsets));
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400401 battery->update_time = jiffies;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400402 kfree(buffer.pointer);
Hector Martinbc76f902009-08-06 15:57:48 -0700403
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400404 if (test_bit(ACPI_BATTERY_QUIRK_SIGNED16_CURRENT, &battery->flags) &&
Hector Martinbc76f902009-08-06 15:57:48 -0700405 battery->rate_now != -1)
406 battery->rate_now = abs((s16)battery->rate_now);
407
Patrick Mocheld550d982006-06-27 00:41:40 -0400408 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409}
410
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400411static int acpi_battery_set_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
Len Brown4be44fc2005-08-05 00:44:28 -0400413 acpi_status status = 0;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400414 union acpi_object arg0 = { .type = ACPI_TYPE_INTEGER };
Len Brown4be44fc2005-08-05 00:44:28 -0400415 struct acpi_object_list arg_list = { 1, &arg0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400417 if (!acpi_battery_present(battery)||
418 !test_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags))
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300419 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400421 arg0.integer.value = battery->alarm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400423 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400424 status = acpi_evaluate_object(battery->device->handle, "_BTP",
425 &arg_list, NULL);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400426 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400429 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400431 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Alarm set to %d\n", battery->alarm));
Patrick Mocheld550d982006-06-27 00:41:40 -0400432 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433}
434
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300435static int acpi_battery_init_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
Len Brown4be44fc2005-08-05 00:44:28 -0400437 acpi_status status = AE_OK;
438 acpi_handle handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300440 /* See if alarms are supported, and if so, set default */
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400441 status = acpi_get_handle(battery->device->handle, "_BTP", &handle);
442 if (ACPI_FAILURE(status)) {
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400443 clear_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400444 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 }
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400446 set_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400447 if (!battery->alarm)
448 battery->alarm = battery->design_capacity_warning;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400449 return acpi_battery_set_alarm(battery);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450}
451
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500452#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300453static ssize_t acpi_battery_alarm_show(struct device *dev,
454 struct device_attribute *attr,
455 char *buf)
456{
457 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
458 return sprintf(buf, "%d\n", battery->alarm * 1000);
459}
460
461static ssize_t acpi_battery_alarm_store(struct device *dev,
462 struct device_attribute *attr,
463 const char *buf, size_t count)
464{
465 unsigned long x;
466 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
467 if (sscanf(buf, "%ld\n", &x) == 1)
468 battery->alarm = x/1000;
469 if (acpi_battery_present(battery))
470 acpi_battery_set_alarm(battery);
471 return count;
472}
473
474static struct device_attribute alarm_attr = {
Parag Warudkar01e8ef12008-10-18 20:28:50 -0700475 .attr = {.name = "alarm", .mode = 0644},
Andrey Borzenkov508df922007-10-28 12:50:09 +0300476 .show = acpi_battery_alarm_show,
477 .store = acpi_battery_alarm_store,
478};
479
480static int sysfs_add_battery(struct acpi_battery *battery)
481{
482 int result;
483
Andrey Borzenkov508df922007-10-28 12:50:09 +0300484 if (battery->power_unit) {
485 battery->bat.properties = charge_battery_props;
486 battery->bat.num_properties =
487 ARRAY_SIZE(charge_battery_props);
488 } else {
489 battery->bat.properties = energy_battery_props;
490 battery->bat.num_properties =
491 ARRAY_SIZE(energy_battery_props);
492 }
493
494 battery->bat.name = acpi_device_bid(battery->device);
495 battery->bat.type = POWER_SUPPLY_TYPE_BATTERY;
496 battery->bat.get_property = acpi_battery_get_property;
497
498 result = power_supply_register(&battery->device->dev, &battery->bat);
499 if (result)
500 return result;
501 return device_create_file(battery->bat.dev, &alarm_attr);
502}
503
504static void sysfs_remove_battery(struct acpi_battery *battery)
505{
506 if (!battery->bat.dev)
507 return;
508 device_remove_file(battery->bat.dev, &alarm_attr);
509 power_supply_unregister(&battery->bat);
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300510 battery->bat.dev = NULL;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300511}
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500512#endif
Andrey Borzenkov508df922007-10-28 12:50:09 +0300513
Hector Martinbc76f902009-08-06 15:57:48 -0700514static void acpi_battery_quirks(struct acpi_battery *battery)
515{
Hector Martinbc76f902009-08-06 15:57:48 -0700516 if (dmi_name_in_vendors("Acer") && battery->power_unit) {
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400517 set_bit(ACPI_BATTERY_QUIRK_SIGNED16_CURRENT, &battery->flags);
Hector Martinbc76f902009-08-06 15:57:48 -0700518 }
519}
520
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400521static int acpi_battery_update(struct acpi_battery *battery)
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500522{
Alexey Starikovskiy50b17852008-12-23 02:44:54 +0300523 int result, old_present = acpi_battery_present(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500524 result = acpi_battery_get_status(battery);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300525 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300526 return result;
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500527#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300528 if (!acpi_battery_present(battery)) {
529 sysfs_remove_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500530 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300531 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300532 }
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500533#endif
Alexey Starikovskiy50b17852008-12-23 02:44:54 +0300534 if (!battery->update_time ||
535 old_present != acpi_battery_present(battery)) {
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500536 result = acpi_battery_get_info(battery);
537 if (result)
538 return result;
Hector Martinbc76f902009-08-06 15:57:48 -0700539 acpi_battery_quirks(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500540 acpi_battery_init_alarm(battery);
541 }
542#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300543 if (!battery->bat.dev)
544 sysfs_add_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500545#endif
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400546 return acpi_battery_get_state(battery);
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500547}
548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549/* --------------------------------------------------------------------------
550 FS Interface (/proc)
551 -------------------------------------------------------------------------- */
552
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300553#ifdef CONFIG_ACPI_PROCFS_POWER
Len Brown4be44fc2005-08-05 00:44:28 -0400554static struct proc_dir_entry *acpi_battery_dir;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300555
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400556static int acpi_battery_print_info(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200558 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300560 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 goto end;
562
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400563 seq_printf(seq, "present: %s\n",
564 acpi_battery_present(battery)?"yes":"no");
565 if (!acpi_battery_present(battery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 goto end;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400567 if (battery->design_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 seq_printf(seq, "design capacity: unknown\n");
569 else
570 seq_printf(seq, "design capacity: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400571 battery->design_capacity,
572 acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400574 if (battery->full_charge_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 seq_printf(seq, "last full capacity: unknown\n");
576 else
577 seq_printf(seq, "last full capacity: %d %sh\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400578 battery->full_charge_capacity,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400579 acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400581 seq_printf(seq, "battery technology: %srechargeable\n",
582 (!battery->technology)?"non-":"");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400584 if (battery->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 seq_printf(seq, "design voltage: unknown\n");
586 else
587 seq_printf(seq, "design voltage: %d mV\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400588 battery->design_voltage);
Len Brown4be44fc2005-08-05 00:44:28 -0400589 seq_printf(seq, "design capacity warning: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400590 battery->design_capacity_warning,
591 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400592 seq_printf(seq, "design capacity low: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400593 battery->design_capacity_low,
594 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400595 seq_printf(seq, "capacity granularity 1: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400596 battery->capacity_granularity_1,
597 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400598 seq_printf(seq, "capacity granularity 2: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400599 battery->capacity_granularity_2,
600 acpi_battery_units(battery));
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400601 seq_printf(seq, "model number: %s\n", battery->model_number);
602 seq_printf(seq, "serial number: %s\n", battery->serial_number);
603 seq_printf(seq, "battery type: %s\n", battery->type);
604 seq_printf(seq, "OEM info: %s\n", battery->oem_info);
Len Brown4be44fc2005-08-05 00:44:28 -0400605 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300606 if (result)
607 seq_printf(seq, "ERROR: Unable to read battery info\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300608 return result;
609}
610
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400611static int acpi_battery_print_state(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200613 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300615 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 goto end;
617
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400618 seq_printf(seq, "present: %s\n",
619 acpi_battery_present(battery)?"yes":"no");
620 if (!acpi_battery_present(battery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400623 seq_printf(seq, "capacity state: %s\n",
624 (battery->state & 0x04)?"critical":"ok");
625 if ((battery->state & 0x01) && (battery->state & 0x02))
Len Brown4be44fc2005-08-05 00:44:28 -0400626 seq_printf(seq,
627 "charging state: charging/discharging\n");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400628 else if (battery->state & 0x01)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 seq_printf(seq, "charging state: discharging\n");
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400630 else if (battery->state & 0x02)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 seq_printf(seq, "charging state: charging\n");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400632 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 seq_printf(seq, "charging state: charged\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400635 if (battery->rate_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 seq_printf(seq, "present rate: unknown\n");
637 else
638 seq_printf(seq, "present rate: %d %s\n",
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400639 battery->rate_now, acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400641 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 seq_printf(seq, "remaining capacity: unknown\n");
643 else
644 seq_printf(seq, "remaining capacity: %d %sh\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400645 battery->capacity_now, acpi_battery_units(battery));
646 if (battery->voltage_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 seq_printf(seq, "present voltage: unknown\n");
648 else
649 seq_printf(seq, "present voltage: %d mV\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400650 battery->voltage_now);
Len Brown4be44fc2005-08-05 00:44:28 -0400651 end:
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400652 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300653 seq_printf(seq, "ERROR: Unable to read battery state\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300654
655 return result;
656}
657
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400658static int acpi_battery_print_alarm(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
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300665 if (!acpi_battery_present(battery)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 seq_printf(seq, "present: no\n");
667 goto end;
668 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 seq_printf(seq, "alarm: ");
670 if (!battery->alarm)
671 seq_printf(seq, "unsupported\n");
672 else
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400673 seq_printf(seq, "%u %sh\n", battery->alarm,
674 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400675 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300676 if (result)
677 seq_printf(seq, "ERROR: Unable to read battery alarm\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300678 return result;
679}
680
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400681static ssize_t acpi_battery_write_alarm(struct file *file,
682 const char __user * buffer,
683 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
Len Brown4be44fc2005-08-05 00:44:28 -0400685 int result = 0;
686 char alarm_string[12] = { '\0' };
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200687 struct seq_file *m = file->private_data;
688 struct acpi_battery *battery = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 if (!battery || (count > sizeof(alarm_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -0400691 return -EINVAL;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300692 if (!acpi_battery_present(battery)) {
693 result = -ENODEV;
694 goto end;
695 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300696 if (copy_from_user(alarm_string, buffer, count)) {
697 result = -EFAULT;
698 goto end;
699 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 alarm_string[count] = '\0';
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400701 battery->alarm = simple_strtol(alarm_string, NULL, 0);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400702 result = acpi_battery_set_alarm(battery);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300703 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300704 if (!result)
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400705 return count;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300706 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707}
708
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400709typedef int(*print_func)(struct seq_file *seq, int result);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400710
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400711static print_func acpi_print_funcs[ACPI_BATTERY_NUMFILES] = {
712 acpi_battery_print_info,
713 acpi_battery_print_state,
714 acpi_battery_print_alarm,
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400715};
716
717static int acpi_battery_read(int fid, struct seq_file *seq)
718{
719 struct acpi_battery *battery = seq->private;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400720 int result = acpi_battery_update(battery);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400721 return acpi_print_funcs[fid](seq, result);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400722}
723
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400724#define DECLARE_FILE_FUNCTIONS(_name) \
725static int acpi_battery_read_##_name(struct seq_file *seq, void *offset) \
726{ \
727 return acpi_battery_read(_name##_tag, seq); \
728} \
729static int acpi_battery_##_name##_open_fs(struct inode *inode, struct file *file) \
730{ \
731 return single_open(file, acpi_battery_read_##_name, PDE(inode)->data); \
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400732}
733
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400734DECLARE_FILE_FUNCTIONS(info);
735DECLARE_FILE_FUNCTIONS(state);
736DECLARE_FILE_FUNCTIONS(alarm);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400737
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400738#undef DECLARE_FILE_FUNCTIONS
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400739
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400740#define FILE_DESCRIPTION_RO(_name) \
741 { \
742 .name = __stringify(_name), \
743 .mode = S_IRUGO, \
744 .ops = { \
745 .open = acpi_battery_##_name##_open_fs, \
746 .read = seq_read, \
747 .llseek = seq_lseek, \
748 .release = single_release, \
749 .owner = THIS_MODULE, \
750 }, \
751 }
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400752
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400753#define FILE_DESCRIPTION_RW(_name) \
754 { \
755 .name = __stringify(_name), \
756 .mode = S_IFREG | S_IRUGO | S_IWUSR, \
757 .ops = { \
758 .open = acpi_battery_##_name##_open_fs, \
759 .read = seq_read, \
760 .llseek = seq_lseek, \
761 .write = acpi_battery_write_##_name, \
762 .release = single_release, \
763 .owner = THIS_MODULE, \
764 }, \
765 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400767static struct battery_file {
768 struct file_operations ops;
769 mode_t mode;
Jan Engelhardt070d8eb2009-01-12 00:07:55 +0100770 const char *name;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400771} acpi_battery_file[] = {
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400772 FILE_DESCRIPTION_RO(info),
773 FILE_DESCRIPTION_RO(state),
774 FILE_DESCRIPTION_RW(alarm),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775};
776
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400777#undef FILE_DESCRIPTION_RO
778#undef FILE_DESCRIPTION_RW
779
Len Brown4be44fc2005-08-05 00:44:28 -0400780static int acpi_battery_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781{
Len Brown4be44fc2005-08-05 00:44:28 -0400782 struct proc_dir_entry *entry = NULL;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400783 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 if (!acpi_device_dir(device)) {
786 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400787 acpi_battery_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400789 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 }
791
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400792 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i) {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700793 entry = proc_create_data(acpi_battery_file[i].name,
794 acpi_battery_file[i].mode,
795 acpi_device_dir(device),
796 &acpi_battery_file[i].ops,
797 acpi_driver_data(device));
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400798 if (!entry)
799 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400801 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802}
803
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400804static void acpi_battery_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805{
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400806 int i;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400807 if (!acpi_device_dir(device))
808 return;
809 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i)
810 remove_proc_entry(acpi_battery_file[i].name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400813 remove_proc_entry(acpi_device_bid(device), acpi_battery_dir);
814 acpi_device_dir(device) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815}
816
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400817#endif
Alexey Starikovskiy3e58ea02007-09-26 19:43:11 +0400818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819/* --------------------------------------------------------------------------
820 Driver Interface
821 -------------------------------------------------------------------------- */
822
Bjorn Helgaasd9406692009-04-30 09:35:47 -0600823static void acpi_battery_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824{
Bjorn Helgaasd9406692009-04-30 09:35:47 -0600825 struct acpi_battery *battery = acpi_driver_data(device);
826
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -0400828 return;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400829 acpi_battery_update(battery);
830 acpi_bus_generate_proc_event(device, event,
831 acpi_battery_present(battery));
832 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100833 dev_name(&device->dev), event,
Vladimir Lebedev9ea7d572007-02-20 15:48:06 +0300834 acpi_battery_present(battery));
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500835#ifdef CONFIG_ACPI_SYSFS_POWER
Justin P. Mattock2345baf2009-12-13 14:42:36 -0800836 /* acpi_battery_update could remove power_supply object */
Andrey Borzenkov508df922007-10-28 12:50:09 +0300837 if (battery->bat.dev)
838 kobject_uevent(&battery->bat.dev->kobj, KOBJ_CHANGE);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500839#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840}
841
Len Brown4be44fc2005-08-05 00:44:28 -0400842static int acpi_battery_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843{
Len Brown4be44fc2005-08-05 00:44:28 -0400844 int result = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400845 struct acpi_battery *battery = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400847 return -EINVAL;
Burman Yan36bcbec2006-12-19 12:56:11 -0800848 battery = kzalloc(sizeof(struct acpi_battery), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -0400850 return -ENOMEM;
Patrick Mochel145def82006-05-19 16:54:39 -0400851 battery->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 strcpy(acpi_device_name(device), ACPI_BATTERY_DEVICE_NAME);
853 strcpy(acpi_device_class(device), ACPI_BATTERY_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700854 device->driver_data = battery;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400855 mutex_init(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400856 acpi_battery_update(battery);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300857#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 result = acpi_battery_add_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400859#endif
Len Brown586caae2009-06-18 00:38:27 -0400860 if (!result) {
861 printk(KERN_INFO PREFIX "%s Slot [%s] (battery %s)\n",
862 ACPI_BATTERY_DEVICE_NAME, acpi_device_bid(device),
863 device->status.battery_present ? "present" : "absent");
864 } else {
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300865#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 acpi_battery_remove_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400867#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 kfree(battery);
869 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400870 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871}
872
Len Brown4be44fc2005-08-05 00:44:28 -0400873static int acpi_battery_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874{
Len Brown4be44fc2005-08-05 00:44:28 -0400875 struct acpi_battery *battery = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400878 return -EINVAL;
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200879 battery = acpi_driver_data(device);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300880#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 acpi_battery_remove_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400882#endif
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500883#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300884 sysfs_remove_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500885#endif
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400886 mutex_destroy(&battery->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 kfree(battery);
Patrick Mocheld550d982006-06-27 00:41:40 -0400888 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889}
890
Jiri Kosina34c44152006-10-10 14:20:41 -0700891/* this is needed to learn about changes made in suspended state */
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800892static int acpi_battery_resume(struct acpi_device *device)
Jiri Kosina34c44152006-10-10 14:20:41 -0700893{
894 struct acpi_battery *battery;
Jiri Kosina34c44152006-10-10 14:20:41 -0700895 if (!device)
896 return -EINVAL;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400897 battery = acpi_driver_data(device);
898 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300899 acpi_battery_update(battery);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300900 return 0;
Jiri Kosina34c44152006-10-10 14:20:41 -0700901}
902
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400903static struct acpi_driver acpi_battery_driver = {
904 .name = "battery",
905 .class = ACPI_BATTERY_CLASS,
906 .ids = battery_device_ids,
Bjorn Helgaasd9406692009-04-30 09:35:47 -0600907 .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400908 .ops = {
909 .add = acpi_battery_add,
910 .resume = acpi_battery_resume,
911 .remove = acpi_battery_remove,
Bjorn Helgaasd9406692009-04-30 09:35:47 -0600912 .notify = acpi_battery_notify,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400913 },
914};
915
Linus Torvaldsb0cbc862009-04-11 12:45:20 -0700916static void __init acpi_battery_init_async(void *unused, async_cookie_t cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917{
Pavel Machek4d8316d2006-08-14 22:37:22 -0700918 if (acpi_disabled)
Arjan van de Ven0f66af52009-01-10 14:19:05 -0500919 return;
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300920#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400921 acpi_battery_dir = acpi_lock_battery_dir();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 if (!acpi_battery_dir)
Arjan van de Ven0f66af52009-01-10 14:19:05 -0500923 return;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400924#endif
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400925 if (acpi_bus_register_driver(&acpi_battery_driver) < 0) {
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300926#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400927 acpi_unlock_battery_dir(acpi_battery_dir);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400928#endif
Arjan van de Ven0f66af52009-01-10 14:19:05 -0500929 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 }
Arjan van de Ven0f66af52009-01-10 14:19:05 -0500931 return;
932}
933
934static int __init acpi_battery_init(void)
935{
936 async_schedule(acpi_battery_init_async, NULL);
Patrick Mocheld550d982006-06-27 00:41:40 -0400937 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938}
939
Len Brown4be44fc2005-08-05 00:44:28 -0400940static void __exit acpi_battery_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 acpi_bus_unregister_driver(&acpi_battery_driver);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300943#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400944 acpi_unlock_battery_dir(acpi_battery_dir);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400945#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946}
947
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948module_init(acpi_battery_init);
949module_exit(acpi_battery_exit);