blob: 0f1c8190c1d31ac90af7ce810795794214d44ab4 [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>
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040034
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +030035#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/proc_fs.h>
37#include <linux/seq_file.h>
38#include <asm/uaccess.h>
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040039#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41#include <acpi/acpi_bus.h>
42#include <acpi/acpi_drivers.h>
43
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -050044#ifdef CONFIG_ACPI_SYSFS_POWER
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040045#include <linux/power_supply.h>
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -050046#endif
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040047
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#define ACPI_BATTERY_VALUE_UNKNOWN 0xFFFFFFFF
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#define ACPI_BATTERY_CLASS "battery"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define ACPI_BATTERY_DEVICE_NAME "Battery"
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#define ACPI_BATTERY_NOTIFY_STATUS 0x80
53#define ACPI_BATTERY_NOTIFY_INFO 0x81
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#define _COMPONENT ACPI_BATTERY_COMPONENT
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +030056
Len Brownf52fd662007-02-12 22:42:12 -050057ACPI_MODULE_NAME("battery");
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Len Brownf52fd662007-02-12 22:42:12 -050059MODULE_AUTHOR("Paul Diefenbaugh");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +040060MODULE_AUTHOR("Alexey Starikovskiy <astarikovskiy@suse.de>");
Len Brown7cda93e2007-02-12 23:50:02 -050061MODULE_DESCRIPTION("ACPI Battery Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070062MODULE_LICENSE("GPL");
63
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +040064static unsigned int cache_time = 1000;
65module_param(cache_time, uint, 0644);
66MODULE_PARM_DESC(cache_time, "cache time in milliseconds");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +030067
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +030068#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -040069extern struct proc_dir_entry *acpi_lock_battery_dir(void);
70extern void *acpi_unlock_battery_dir(struct proc_dir_entry *acpi_battery_dir);
71
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040072enum acpi_battery_files {
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +040073 info_tag = 0,
74 state_tag,
75 alarm_tag,
Alexey Starikovskiy78490d82007-05-11 13:18:55 -040076 ACPI_BATTERY_NUMFILES,
77};
78
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040079#endif
80
81static const struct acpi_device_id battery_device_ids[] = {
82 {"PNP0C0A", 0},
83 {"", 0},
84};
85
86MODULE_DEVICE_TABLE(acpi, battery_device_ids);
87
88
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040089struct acpi_battery {
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040090 struct mutex lock;
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -050091#ifdef CONFIG_ACPI_SYSFS_POWER
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040092 struct power_supply bat;
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -050093#endif
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +040094 struct acpi_device *device;
95 unsigned long update_time;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040096 int current_now;
97 int capacity_now;
98 int voltage_now;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040099 int design_capacity;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400100 int full_charge_capacity;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400101 int technology;
102 int design_voltage;
103 int design_capacity_warning;
104 int design_capacity_low;
105 int capacity_granularity_1;
106 int capacity_granularity_2;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400107 int alarm;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400108 char model_number[32];
109 char serial_number[32];
110 char type[32];
111 char oem_info[32];
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400112 int state;
113 int power_unit;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300114 u8 alarm_present;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115};
116
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400117#define to_acpi_battery(x) container_of(x, struct acpi_battery, bat);
118
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400119inline int acpi_battery_present(struct acpi_battery *battery)
120{
121 return battery->device->status.battery_present;
122}
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400123
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500124#ifdef CONFIG_ACPI_SYSFS_POWER
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400125static int acpi_battery_technology(struct acpi_battery *battery)
126{
127 if (!strcasecmp("NiCd", battery->type))
128 return POWER_SUPPLY_TECHNOLOGY_NiCd;
129 if (!strcasecmp("NiMH", battery->type))
130 return POWER_SUPPLY_TECHNOLOGY_NiMH;
131 if (!strcasecmp("LION", battery->type))
132 return POWER_SUPPLY_TECHNOLOGY_LION;
Andrey Borzenkovad40e682007-11-10 20:02:49 +0300133 if (!strncasecmp("LI-ION", battery->type, 6))
Alexey Starikovskiy0bde7ee2007-10-28 15:33:10 +0300134 return POWER_SUPPLY_TECHNOLOGY_LION;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400135 if (!strcasecmp("LiP", battery->type))
136 return POWER_SUPPLY_TECHNOLOGY_LIPO;
137 return POWER_SUPPLY_TECHNOLOGY_UNKNOWN;
138}
139
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300140static int acpi_battery_get_state(struct acpi_battery *battery);
Alexey Starikovskiyb19073a2007-10-25 17:10:47 -0400141
Richard Hughes56f382a2009-01-25 15:05:50 +0000142static int acpi_battery_is_charged(struct acpi_battery *battery)
143{
144 /* either charging or discharging */
145 if (battery->state != 0)
146 return 0;
147
148 /* battery not reporting charge */
149 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN ||
150 battery->capacity_now == 0)
151 return 0;
152
153 /* good batteries update full_charge as the batteries degrade */
154 if (battery->full_charge_capacity == battery->capacity_now)
155 return 1;
156
157 /* fallback to using design values for broken batteries */
158 if (battery->design_capacity == battery->capacity_now)
159 return 1;
160
161 /* we don't do any sort of metric based on percentages */
162 return 0;
163}
164
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400165static int acpi_battery_get_property(struct power_supply *psy,
166 enum power_supply_property psp,
167 union power_supply_propval *val)
168{
169 struct acpi_battery *battery = to_acpi_battery(psy);
170
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300171 if (acpi_battery_present(battery)) {
172 /* run battery update only if it is present */
173 acpi_battery_get_state(battery);
174 } else if (psp != POWER_SUPPLY_PROP_PRESENT)
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400175 return -ENODEV;
176 switch (psp) {
177 case POWER_SUPPLY_PROP_STATUS:
178 if (battery->state & 0x01)
179 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
180 else if (battery->state & 0x02)
181 val->intval = POWER_SUPPLY_STATUS_CHARGING;
Richard Hughes56f382a2009-01-25 15:05:50 +0000182 else if (acpi_battery_is_charged(battery))
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400183 val->intval = POWER_SUPPLY_STATUS_FULL;
Roland Dreier4c41d3a2007-11-07 15:09:09 -0800184 else
185 val->intval = POWER_SUPPLY_STATUS_UNKNOWN;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400186 break;
187 case POWER_SUPPLY_PROP_PRESENT:
188 val->intval = acpi_battery_present(battery);
189 break;
190 case POWER_SUPPLY_PROP_TECHNOLOGY:
191 val->intval = acpi_battery_technology(battery);
192 break;
193 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
194 val->intval = battery->design_voltage * 1000;
195 break;
196 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
197 val->intval = battery->voltage_now * 1000;
198 break;
199 case POWER_SUPPLY_PROP_CURRENT_NOW:
Linus Torvaldsf10a3a32008-12-05 13:30:03 -0800200 val->intval = battery->current_now * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400201 break;
202 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
203 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
204 val->intval = battery->design_capacity * 1000;
205 break;
206 case POWER_SUPPLY_PROP_CHARGE_FULL:
207 case POWER_SUPPLY_PROP_ENERGY_FULL:
208 val->intval = battery->full_charge_capacity * 1000;
209 break;
210 case POWER_SUPPLY_PROP_CHARGE_NOW:
211 case POWER_SUPPLY_PROP_ENERGY_NOW:
212 val->intval = battery->capacity_now * 1000;
213 break;
214 case POWER_SUPPLY_PROP_MODEL_NAME:
215 val->strval = battery->model_number;
216 break;
217 case POWER_SUPPLY_PROP_MANUFACTURER:
218 val->strval = battery->oem_info;
219 break;
maximilian attems7c2670b2008-01-22 18:46:50 +0100220 case POWER_SUPPLY_PROP_SERIAL_NUMBER:
221 val->strval = battery->serial_number;
222 break;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400223 default:
224 return -EINVAL;
225 }
226 return 0;
227}
228
229static enum power_supply_property charge_battery_props[] = {
230 POWER_SUPPLY_PROP_STATUS,
231 POWER_SUPPLY_PROP_PRESENT,
232 POWER_SUPPLY_PROP_TECHNOLOGY,
233 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
234 POWER_SUPPLY_PROP_VOLTAGE_NOW,
235 POWER_SUPPLY_PROP_CURRENT_NOW,
236 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
237 POWER_SUPPLY_PROP_CHARGE_FULL,
238 POWER_SUPPLY_PROP_CHARGE_NOW,
239 POWER_SUPPLY_PROP_MODEL_NAME,
240 POWER_SUPPLY_PROP_MANUFACTURER,
maximilian attems7c2670b2008-01-22 18:46:50 +0100241 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400242};
243
244static enum power_supply_property energy_battery_props[] = {
245 POWER_SUPPLY_PROP_STATUS,
246 POWER_SUPPLY_PROP_PRESENT,
247 POWER_SUPPLY_PROP_TECHNOLOGY,
248 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
249 POWER_SUPPLY_PROP_VOLTAGE_NOW,
250 POWER_SUPPLY_PROP_CURRENT_NOW,
251 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN,
252 POWER_SUPPLY_PROP_ENERGY_FULL,
253 POWER_SUPPLY_PROP_ENERGY_NOW,
254 POWER_SUPPLY_PROP_MODEL_NAME,
255 POWER_SUPPLY_PROP_MANUFACTURER,
maximilian attems7c2670b2008-01-22 18:46:50 +0100256 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400257};
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500258#endif
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400259
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300260#ifdef CONFIG_ACPI_PROCFS_POWER
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400261inline char *acpi_battery_units(struct acpi_battery *battery)
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400262{
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400263 return (battery->power_unit)?"mA":"mW";
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400264}
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400265#endif
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267/* --------------------------------------------------------------------------
268 Battery Management
269 -------------------------------------------------------------------------- */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400270struct acpi_offsets {
271 size_t offset; /* offset inside struct acpi_sbs_battery */
272 u8 mode; /* int or string? */
273};
274
275static struct acpi_offsets state_offsets[] = {
276 {offsetof(struct acpi_battery, state), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400277 {offsetof(struct acpi_battery, current_now), 0},
278 {offsetof(struct acpi_battery, capacity_now), 0},
279 {offsetof(struct acpi_battery, voltage_now), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400280};
281
282static struct acpi_offsets info_offsets[] = {
283 {offsetof(struct acpi_battery, power_unit), 0},
284 {offsetof(struct acpi_battery, design_capacity), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400285 {offsetof(struct acpi_battery, full_charge_capacity), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400286 {offsetof(struct acpi_battery, technology), 0},
287 {offsetof(struct acpi_battery, design_voltage), 0},
288 {offsetof(struct acpi_battery, design_capacity_warning), 0},
289 {offsetof(struct acpi_battery, design_capacity_low), 0},
290 {offsetof(struct acpi_battery, capacity_granularity_1), 0},
291 {offsetof(struct acpi_battery, capacity_granularity_2), 0},
292 {offsetof(struct acpi_battery, model_number), 1},
293 {offsetof(struct acpi_battery, serial_number), 1},
294 {offsetof(struct acpi_battery, type), 1},
295 {offsetof(struct acpi_battery, oem_info), 1},
296};
297
298static int extract_package(struct acpi_battery *battery,
299 union acpi_object *package,
300 struct acpi_offsets *offsets, int num)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300301{
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300302 int i;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400303 union acpi_object *element;
304 if (package->type != ACPI_TYPE_PACKAGE)
305 return -EFAULT;
306 for (i = 0; i < num; ++i) {
307 if (package->package.count <= i)
308 return -EFAULT;
309 element = &package->package.elements[i];
310 if (offsets[i].mode) {
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300311 u8 *ptr = (u8 *)battery + offsets[i].offset;
312 if (element->type == ACPI_TYPE_STRING ||
313 element->type == ACPI_TYPE_BUFFER)
314 strncpy(ptr, element->string.pointer, 32);
315 else if (element->type == ACPI_TYPE_INTEGER) {
316 strncpy(ptr, (u8 *)&element->integer.value,
317 sizeof(acpi_integer));
318 ptr[sizeof(acpi_integer)] = 0;
Alexey Starikovskiyb8a1bdb2008-03-17 22:37:42 -0400319 } else
320 *ptr = 0; /* don't have value */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400321 } else {
Alexey Starikovskiyb8a1bdb2008-03-17 22:37:42 -0400322 int *x = (int *)((u8 *)battery + offsets[i].offset);
323 *x = (element->type == ACPI_TYPE_INTEGER) ?
324 element->integer.value : -1;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300325 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300326 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300327 return 0;
328}
329
330static int acpi_battery_get_status(struct acpi_battery *battery)
331{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400332 if (acpi_bus_get_status(battery->device)) {
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300333 ACPI_EXCEPTION((AE_INFO, AE_ERROR, "Evaluating _STA"));
334 return -ENODEV;
335 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400336 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300337}
338
339static int acpi_battery_get_info(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400341 int result = -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -0400342 acpi_status status = 0;
343 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300345 if (!acpi_battery_present(battery))
346 return 0;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400347 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400348 status = acpi_evaluate_object(battery->device->handle, "_BIF",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400349 NULL, &buffer);
350 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400353 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BIF"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400354 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400356
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400357 result = extract_package(battery, buffer.pointer,
358 info_offsets, ARRAY_SIZE(info_offsets));
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400359 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -0400360 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361}
362
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300363static int acpi_battery_get_state(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
Len Brown4be44fc2005-08-05 00:44:28 -0400365 int result = 0;
366 acpi_status status = 0;
367 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300369 if (!acpi_battery_present(battery))
370 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400372 if (battery->update_time &&
373 time_before(jiffies, battery->update_time +
374 msecs_to_jiffies(cache_time)))
375 return 0;
376
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400377 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400378 status = acpi_evaluate_object(battery->device->handle, "_BST",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400379 NULL, &buffer);
380 mutex_unlock(&battery->lock);
Len Brown5b31d892007-08-15 00:19:26 -0400381
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400383 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BST"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400384 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400386
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400387 result = extract_package(battery, buffer.pointer,
388 state_offsets, ARRAY_SIZE(state_offsets));
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400389 battery->update_time = jiffies;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400390 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -0400391 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392}
393
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400394static int acpi_battery_set_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
Len Brown4be44fc2005-08-05 00:44:28 -0400396 acpi_status status = 0;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400397 union acpi_object arg0 = { .type = ACPI_TYPE_INTEGER };
Len Brown4be44fc2005-08-05 00:44:28 -0400398 struct acpi_object_list arg_list = { 1, &arg0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400400 if (!acpi_battery_present(battery)|| !battery->alarm_present)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300401 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400403 arg0.integer.value = battery->alarm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400405 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400406 status = acpi_evaluate_object(battery->device->handle, "_BTP",
407 &arg_list, NULL);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400408 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400411 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400413 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Alarm set to %d\n", battery->alarm));
Patrick Mocheld550d982006-06-27 00:41:40 -0400414 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415}
416
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300417static int acpi_battery_init_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418{
Len Brown4be44fc2005-08-05 00:44:28 -0400419 acpi_status status = AE_OK;
420 acpi_handle handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300422 /* See if alarms are supported, and if so, set default */
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400423 status = acpi_get_handle(battery->device->handle, "_BTP", &handle);
424 if (ACPI_FAILURE(status)) {
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400425 battery->alarm_present = 0;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400426 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 }
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400428 battery->alarm_present = 1;
429 if (!battery->alarm)
430 battery->alarm = battery->design_capacity_warning;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400431 return acpi_battery_set_alarm(battery);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432}
433
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500434#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300435static ssize_t acpi_battery_alarm_show(struct device *dev,
436 struct device_attribute *attr,
437 char *buf)
438{
439 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
440 return sprintf(buf, "%d\n", battery->alarm * 1000);
441}
442
443static ssize_t acpi_battery_alarm_store(struct device *dev,
444 struct device_attribute *attr,
445 const char *buf, size_t count)
446{
447 unsigned long x;
448 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
449 if (sscanf(buf, "%ld\n", &x) == 1)
450 battery->alarm = x/1000;
451 if (acpi_battery_present(battery))
452 acpi_battery_set_alarm(battery);
453 return count;
454}
455
456static struct device_attribute alarm_attr = {
Parag Warudkar01e8ef12008-10-18 20:28:50 -0700457 .attr = {.name = "alarm", .mode = 0644},
Andrey Borzenkov508df922007-10-28 12:50:09 +0300458 .show = acpi_battery_alarm_show,
459 .store = acpi_battery_alarm_store,
460};
461
462static int sysfs_add_battery(struct acpi_battery *battery)
463{
464 int result;
465
Andrey Borzenkov508df922007-10-28 12:50:09 +0300466 if (battery->power_unit) {
467 battery->bat.properties = charge_battery_props;
468 battery->bat.num_properties =
469 ARRAY_SIZE(charge_battery_props);
470 } else {
471 battery->bat.properties = energy_battery_props;
472 battery->bat.num_properties =
473 ARRAY_SIZE(energy_battery_props);
474 }
475
476 battery->bat.name = acpi_device_bid(battery->device);
477 battery->bat.type = POWER_SUPPLY_TYPE_BATTERY;
478 battery->bat.get_property = acpi_battery_get_property;
479
480 result = power_supply_register(&battery->device->dev, &battery->bat);
481 if (result)
482 return result;
483 return device_create_file(battery->bat.dev, &alarm_attr);
484}
485
486static void sysfs_remove_battery(struct acpi_battery *battery)
487{
488 if (!battery->bat.dev)
489 return;
490 device_remove_file(battery->bat.dev, &alarm_attr);
491 power_supply_unregister(&battery->bat);
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300492 battery->bat.dev = NULL;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300493}
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500494#endif
Andrey Borzenkov508df922007-10-28 12:50:09 +0300495
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400496static int acpi_battery_update(struct acpi_battery *battery)
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500497{
Alexey Starikovskiy50b17852008-12-23 02:44:54 +0300498 int result, old_present = acpi_battery_present(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500499 result = acpi_battery_get_status(battery);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300500 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300501 return result;
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500502#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300503 if (!acpi_battery_present(battery)) {
504 sysfs_remove_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500505 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300506 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300507 }
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500508#endif
Alexey Starikovskiy50b17852008-12-23 02:44:54 +0300509 if (!battery->update_time ||
510 old_present != acpi_battery_present(battery)) {
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500511 result = acpi_battery_get_info(battery);
512 if (result)
513 return result;
514 acpi_battery_init_alarm(battery);
515 }
516#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300517 if (!battery->bat.dev)
518 sysfs_add_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500519#endif
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400520 return acpi_battery_get_state(battery);
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500521}
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523/* --------------------------------------------------------------------------
524 FS Interface (/proc)
525 -------------------------------------------------------------------------- */
526
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300527#ifdef CONFIG_ACPI_PROCFS_POWER
Len Brown4be44fc2005-08-05 00:44:28 -0400528static struct proc_dir_entry *acpi_battery_dir;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300529
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400530static int acpi_battery_print_info(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200532 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300534 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 goto end;
536
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400537 seq_printf(seq, "present: %s\n",
538 acpi_battery_present(battery)?"yes":"no");
539 if (!acpi_battery_present(battery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 goto end;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400541 if (battery->design_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 seq_printf(seq, "design capacity: unknown\n");
543 else
544 seq_printf(seq, "design capacity: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400545 battery->design_capacity,
546 acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400548 if (battery->full_charge_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 seq_printf(seq, "last full capacity: unknown\n");
550 else
551 seq_printf(seq, "last full capacity: %d %sh\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400552 battery->full_charge_capacity,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400553 acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400555 seq_printf(seq, "battery technology: %srechargeable\n",
556 (!battery->technology)?"non-":"");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400558 if (battery->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 seq_printf(seq, "design voltage: unknown\n");
560 else
561 seq_printf(seq, "design voltage: %d mV\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400562 battery->design_voltage);
Len Brown4be44fc2005-08-05 00:44:28 -0400563 seq_printf(seq, "design capacity warning: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400564 battery->design_capacity_warning,
565 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400566 seq_printf(seq, "design capacity low: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400567 battery->design_capacity_low,
568 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400569 seq_printf(seq, "capacity granularity 1: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400570 battery->capacity_granularity_1,
571 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400572 seq_printf(seq, "capacity granularity 2: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400573 battery->capacity_granularity_2,
574 acpi_battery_units(battery));
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400575 seq_printf(seq, "model number: %s\n", battery->model_number);
576 seq_printf(seq, "serial number: %s\n", battery->serial_number);
577 seq_printf(seq, "battery type: %s\n", battery->type);
578 seq_printf(seq, "OEM info: %s\n", battery->oem_info);
Len Brown4be44fc2005-08-05 00:44:28 -0400579 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300580 if (result)
581 seq_printf(seq, "ERROR: Unable to read battery info\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300582 return result;
583}
584
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400585static int acpi_battery_print_state(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200587 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300589 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 goto end;
591
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400592 seq_printf(seq, "present: %s\n",
593 acpi_battery_present(battery)?"yes":"no");
594 if (!acpi_battery_present(battery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400597 seq_printf(seq, "capacity state: %s\n",
598 (battery->state & 0x04)?"critical":"ok");
599 if ((battery->state & 0x01) && (battery->state & 0x02))
Len Brown4be44fc2005-08-05 00:44:28 -0400600 seq_printf(seq,
601 "charging state: charging/discharging\n");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400602 else if (battery->state & 0x01)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 seq_printf(seq, "charging state: discharging\n");
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400604 else if (battery->state & 0x02)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 seq_printf(seq, "charging state: charging\n");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400606 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 seq_printf(seq, "charging state: charged\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400609 if (battery->current_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 seq_printf(seq, "present rate: unknown\n");
611 else
612 seq_printf(seq, "present rate: %d %s\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400613 battery->current_now, acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400615 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 seq_printf(seq, "remaining capacity: unknown\n");
617 else
618 seq_printf(seq, "remaining capacity: %d %sh\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400619 battery->capacity_now, acpi_battery_units(battery));
620 if (battery->voltage_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 seq_printf(seq, "present voltage: unknown\n");
622 else
623 seq_printf(seq, "present voltage: %d mV\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400624 battery->voltage_now);
Len Brown4be44fc2005-08-05 00:44:28 -0400625 end:
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400626 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300627 seq_printf(seq, "ERROR: Unable to read battery state\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300628
629 return result;
630}
631
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400632static int acpi_battery_print_alarm(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200634 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300636 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 goto end;
638
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300639 if (!acpi_battery_present(battery)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 seq_printf(seq, "present: no\n");
641 goto end;
642 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 seq_printf(seq, "alarm: ");
644 if (!battery->alarm)
645 seq_printf(seq, "unsupported\n");
646 else
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400647 seq_printf(seq, "%u %sh\n", battery->alarm,
648 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400649 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300650 if (result)
651 seq_printf(seq, "ERROR: Unable to read battery alarm\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300652 return result;
653}
654
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400655static ssize_t acpi_battery_write_alarm(struct file *file,
656 const char __user * buffer,
657 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658{
Len Brown4be44fc2005-08-05 00:44:28 -0400659 int result = 0;
660 char alarm_string[12] = { '\0' };
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200661 struct seq_file *m = file->private_data;
662 struct acpi_battery *battery = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 if (!battery || (count > sizeof(alarm_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -0400665 return -EINVAL;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300666 if (!acpi_battery_present(battery)) {
667 result = -ENODEV;
668 goto end;
669 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300670 if (copy_from_user(alarm_string, buffer, count)) {
671 result = -EFAULT;
672 goto end;
673 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 alarm_string[count] = '\0';
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400675 battery->alarm = simple_strtol(alarm_string, NULL, 0);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400676 result = acpi_battery_set_alarm(battery);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300677 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300678 if (!result)
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400679 return count;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300680 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681}
682
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400683typedef int(*print_func)(struct seq_file *seq, int result);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400684
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400685static print_func acpi_print_funcs[ACPI_BATTERY_NUMFILES] = {
686 acpi_battery_print_info,
687 acpi_battery_print_state,
688 acpi_battery_print_alarm,
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400689};
690
691static int acpi_battery_read(int fid, struct seq_file *seq)
692{
693 struct acpi_battery *battery = seq->private;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400694 int result = acpi_battery_update(battery);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400695 return acpi_print_funcs[fid](seq, result);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400696}
697
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400698#define DECLARE_FILE_FUNCTIONS(_name) \
699static int acpi_battery_read_##_name(struct seq_file *seq, void *offset) \
700{ \
701 return acpi_battery_read(_name##_tag, seq); \
702} \
703static int acpi_battery_##_name##_open_fs(struct inode *inode, struct file *file) \
704{ \
705 return single_open(file, acpi_battery_read_##_name, PDE(inode)->data); \
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400706}
707
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400708DECLARE_FILE_FUNCTIONS(info);
709DECLARE_FILE_FUNCTIONS(state);
710DECLARE_FILE_FUNCTIONS(alarm);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400711
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400712#undef DECLARE_FILE_FUNCTIONS
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400713
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400714#define FILE_DESCRIPTION_RO(_name) \
715 { \
716 .name = __stringify(_name), \
717 .mode = S_IRUGO, \
718 .ops = { \
719 .open = acpi_battery_##_name##_open_fs, \
720 .read = seq_read, \
721 .llseek = seq_lseek, \
722 .release = single_release, \
723 .owner = THIS_MODULE, \
724 }, \
725 }
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400726
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400727#define FILE_DESCRIPTION_RW(_name) \
728 { \
729 .name = __stringify(_name), \
730 .mode = S_IFREG | S_IRUGO | S_IWUSR, \
731 .ops = { \
732 .open = acpi_battery_##_name##_open_fs, \
733 .read = seq_read, \
734 .llseek = seq_lseek, \
735 .write = acpi_battery_write_##_name, \
736 .release = single_release, \
737 .owner = THIS_MODULE, \
738 }, \
739 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400741static struct battery_file {
742 struct file_operations ops;
743 mode_t mode;
744 char *name;
745} acpi_battery_file[] = {
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400746 FILE_DESCRIPTION_RO(info),
747 FILE_DESCRIPTION_RO(state),
748 FILE_DESCRIPTION_RW(alarm),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749};
750
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400751#undef FILE_DESCRIPTION_RO
752#undef FILE_DESCRIPTION_RW
753
Len Brown4be44fc2005-08-05 00:44:28 -0400754static int acpi_battery_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755{
Len Brown4be44fc2005-08-05 00:44:28 -0400756 struct proc_dir_entry *entry = NULL;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400757 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 if (!acpi_device_dir(device)) {
760 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400761 acpi_battery_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400763 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 acpi_device_dir(device)->owner = THIS_MODULE;
765 }
766
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400767 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i) {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700768 entry = proc_create_data(acpi_battery_file[i].name,
769 acpi_battery_file[i].mode,
770 acpi_device_dir(device),
771 &acpi_battery_file[i].ops,
772 acpi_driver_data(device));
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400773 if (!entry)
774 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400776 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777}
778
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400779static void acpi_battery_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780{
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400781 int i;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400782 if (!acpi_device_dir(device))
783 return;
784 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i)
785 remove_proc_entry(acpi_battery_file[i].name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400788 remove_proc_entry(acpi_device_bid(device), acpi_battery_dir);
789 acpi_device_dir(device) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790}
791
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400792#endif
Alexey Starikovskiy3e58ea02007-09-26 19:43:11 +0400793
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794/* --------------------------------------------------------------------------
795 Driver Interface
796 -------------------------------------------------------------------------- */
797
Len Brown4be44fc2005-08-05 00:44:28 -0400798static void acpi_battery_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200800 struct acpi_battery *battery = data;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400801 struct acpi_device *device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -0400803 return;
Patrick Mochel145def82006-05-19 16:54:39 -0400804 device = battery->device;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400805 acpi_battery_update(battery);
806 acpi_bus_generate_proc_event(device, event,
807 acpi_battery_present(battery));
808 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100809 dev_name(&device->dev), event,
Vladimir Lebedev9ea7d572007-02-20 15:48:06 +0300810 acpi_battery_present(battery));
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500811#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300812 /* acpi_batter_update could remove power_supply object */
813 if (battery->bat.dev)
814 kobject_uevent(&battery->bat.dev->kobj, KOBJ_CHANGE);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500815#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816}
817
Len Brown4be44fc2005-08-05 00:44:28 -0400818static int acpi_battery_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819{
Len Brown4be44fc2005-08-05 00:44:28 -0400820 int result = 0;
821 acpi_status status = 0;
822 struct acpi_battery *battery = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400824 return -EINVAL;
Burman Yan36bcbec2006-12-19 12:56:11 -0800825 battery = kzalloc(sizeof(struct acpi_battery), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -0400827 return -ENOMEM;
Patrick Mochel145def82006-05-19 16:54:39 -0400828 battery->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 strcpy(acpi_device_name(device), ACPI_BATTERY_DEVICE_NAME);
830 strcpy(acpi_device_class(device), ACPI_BATTERY_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700831 device->driver_data = battery;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400832 mutex_init(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400833 acpi_battery_update(battery);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300834#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 result = acpi_battery_add_fs(device);
836 if (result)
837 goto end;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400838#endif
Patrick Mochel3b073ec2006-05-19 16:54:41 -0400839 status = acpi_install_notify_handler(device->handle,
Vladimir Lebedev9fdae722006-06-27 04:49:00 -0400840 ACPI_ALL_NOTIFY,
Len Brown4be44fc2005-08-05 00:44:28 -0400841 acpi_battery_notify, battery);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 if (ACPI_FAILURE(status)) {
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300843 ACPI_EXCEPTION((AE_INFO, status, "Installing notify handler"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 result = -ENODEV;
845 goto end;
846 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 printk(KERN_INFO PREFIX "%s Slot [%s] (battery %s)\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400848 ACPI_BATTERY_DEVICE_NAME, acpi_device_bid(device),
849 device->status.battery_present ? "present" : "absent");
Len Brown4be44fc2005-08-05 00:44:28 -0400850 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 if (result) {
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300852#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 acpi_battery_remove_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400854#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 kfree(battery);
856 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400857 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858}
859
Len Brown4be44fc2005-08-05 00:44:28 -0400860static int acpi_battery_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861{
Len Brown4be44fc2005-08-05 00:44:28 -0400862 acpi_status status = 0;
863 struct acpi_battery *battery = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400866 return -EINVAL;
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200867 battery = acpi_driver_data(device);
Patrick Mochel3b073ec2006-05-19 16:54:41 -0400868 status = acpi_remove_notify_handler(device->handle,
Vladimir Lebedev9fdae722006-06-27 04:49:00 -0400869 ACPI_ALL_NOTIFY,
Len Brown4be44fc2005-08-05 00:44:28 -0400870 acpi_battery_notify);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300871#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 acpi_battery_remove_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400873#endif
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500874#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300875 sysfs_remove_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500876#endif
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400877 mutex_destroy(&battery->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 kfree(battery);
Patrick Mocheld550d982006-06-27 00:41:40 -0400879 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880}
881
Jiri Kosina34c44152006-10-10 14:20:41 -0700882/* this is needed to learn about changes made in suspended state */
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800883static int acpi_battery_resume(struct acpi_device *device)
Jiri Kosina34c44152006-10-10 14:20:41 -0700884{
885 struct acpi_battery *battery;
Jiri Kosina34c44152006-10-10 14:20:41 -0700886 if (!device)
887 return -EINVAL;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400888 battery = acpi_driver_data(device);
889 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300890 acpi_battery_update(battery);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300891 return 0;
Jiri Kosina34c44152006-10-10 14:20:41 -0700892}
893
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400894static struct acpi_driver acpi_battery_driver = {
895 .name = "battery",
896 .class = ACPI_BATTERY_CLASS,
897 .ids = battery_device_ids,
898 .ops = {
899 .add = acpi_battery_add,
900 .resume = acpi_battery_resume,
901 .remove = acpi_battery_remove,
902 },
903};
904
Arjan van de Ven0f66af52009-01-10 14:19:05 -0500905static void __init acpi_battery_init_async(void *unused, async_cookie_t cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906{
Pavel Machek4d8316d2006-08-14 22:37:22 -0700907 if (acpi_disabled)
Arjan van de Ven0f66af52009-01-10 14:19:05 -0500908 return;
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300909#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400910 acpi_battery_dir = acpi_lock_battery_dir();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 if (!acpi_battery_dir)
Arjan van de Ven0f66af52009-01-10 14:19:05 -0500912 return;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400913#endif
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400914 if (acpi_bus_register_driver(&acpi_battery_driver) < 0) {
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300915#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400916 acpi_unlock_battery_dir(acpi_battery_dir);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400917#endif
Arjan van de Ven0f66af52009-01-10 14:19:05 -0500918 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 }
Arjan van de Ven0f66af52009-01-10 14:19:05 -0500920 return;
921}
922
923static int __init acpi_battery_init(void)
924{
925 async_schedule(acpi_battery_init_async, NULL);
Patrick Mocheld550d982006-06-27 00:41:40 -0400926 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927}
928
Len Brown4be44fc2005-08-05 00:44:28 -0400929static void __exit acpi_battery_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 acpi_bus_unregister_driver(&acpi_battery_driver);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300932#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400933 acpi_unlock_battery_dir(acpi_battery_dir);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400934#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935}
936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937module_init(acpi_battery_init);
938module_exit(acpi_battery_exit);