blob: 09a2240d5605291ea37db1b0320bfa1b698d045f [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>
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040033
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +030034#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/proc_fs.h>
36#include <linux/seq_file.h>
37#include <asm/uaccess.h>
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040038#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40#include <acpi/acpi_bus.h>
41#include <acpi/acpi_drivers.h>
42
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -050043#ifdef CONFIG_ACPI_SYSFS_POWER
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040044#include <linux/power_supply.h>
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -050045#endif
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040046
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#define ACPI_BATTERY_VALUE_UNKNOWN 0xFFFFFFFF
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define ACPI_BATTERY_CLASS "battery"
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#define ACPI_BATTERY_DEVICE_NAME "Battery"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define ACPI_BATTERY_NOTIFY_STATUS 0x80
52#define ACPI_BATTERY_NOTIFY_INFO 0x81
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#define _COMPONENT ACPI_BATTERY_COMPONENT
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +030055
Len Brownf52fd662007-02-12 22:42:12 -050056ACPI_MODULE_NAME("battery");
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Len Brownf52fd662007-02-12 22:42:12 -050058MODULE_AUTHOR("Paul Diefenbaugh");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +040059MODULE_AUTHOR("Alexey Starikovskiy <astarikovskiy@suse.de>");
Len Brown7cda93e2007-02-12 23:50:02 -050060MODULE_DESCRIPTION("ACPI Battery Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070061MODULE_LICENSE("GPL");
62
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +040063static unsigned int cache_time = 1000;
64module_param(cache_time, uint, 0644);
65MODULE_PARM_DESC(cache_time, "cache time in milliseconds");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +030066
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +030067#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -040068extern struct proc_dir_entry *acpi_lock_battery_dir(void);
69extern void *acpi_unlock_battery_dir(struct proc_dir_entry *acpi_battery_dir);
70
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040071enum acpi_battery_files {
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +040072 info_tag = 0,
73 state_tag,
74 alarm_tag,
Alexey Starikovskiy78490d82007-05-11 13:18:55 -040075 ACPI_BATTERY_NUMFILES,
76};
77
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040078#endif
79
80static const struct acpi_device_id battery_device_ids[] = {
81 {"PNP0C0A", 0},
82 {"", 0},
83};
84
85MODULE_DEVICE_TABLE(acpi, battery_device_ids);
86
87
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040088struct acpi_battery {
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040089 struct mutex lock;
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -050090#ifdef CONFIG_ACPI_SYSFS_POWER
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040091 struct power_supply bat;
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -050092#endif
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +040093 struct acpi_device *device;
94 unsigned long update_time;
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -040095 int rate_now;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040096 int capacity_now;
97 int voltage_now;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040098 int design_capacity;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040099 int full_charge_capacity;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400100 int technology;
101 int design_voltage;
102 int design_capacity_warning;
103 int design_capacity_low;
104 int capacity_granularity_1;
105 int capacity_granularity_2;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400106 int alarm;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400107 char model_number[32];
108 char serial_number[32];
109 char type[32];
110 char oem_info[32];
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400111 int state;
112 int power_unit;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300113 u8 alarm_present;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114};
115
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400116#define to_acpi_battery(x) container_of(x, struct acpi_battery, bat);
117
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400118inline int acpi_battery_present(struct acpi_battery *battery)
119{
120 return battery->device->status.battery_present;
121}
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400122
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500123#ifdef CONFIG_ACPI_SYSFS_POWER
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400124static int acpi_battery_technology(struct acpi_battery *battery)
125{
126 if (!strcasecmp("NiCd", battery->type))
127 return POWER_SUPPLY_TECHNOLOGY_NiCd;
128 if (!strcasecmp("NiMH", battery->type))
129 return POWER_SUPPLY_TECHNOLOGY_NiMH;
130 if (!strcasecmp("LION", battery->type))
131 return POWER_SUPPLY_TECHNOLOGY_LION;
Andrey Borzenkovad40e682007-11-10 20:02:49 +0300132 if (!strncasecmp("LI-ION", battery->type, 6))
Alexey Starikovskiy0bde7ee2007-10-28 15:33:10 +0300133 return POWER_SUPPLY_TECHNOLOGY_LION;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400134 if (!strcasecmp("LiP", battery->type))
135 return POWER_SUPPLY_TECHNOLOGY_LIPO;
136 return POWER_SUPPLY_TECHNOLOGY_UNKNOWN;
137}
138
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300139static int acpi_battery_get_state(struct acpi_battery *battery);
Alexey Starikovskiyb19073a2007-10-25 17:10:47 -0400140
Richard Hughes56f382a2009-01-25 15:05:50 +0000141static int acpi_battery_is_charged(struct acpi_battery *battery)
142{
143 /* either charging or discharging */
144 if (battery->state != 0)
145 return 0;
146
147 /* battery not reporting charge */
148 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN ||
149 battery->capacity_now == 0)
150 return 0;
151
152 /* good batteries update full_charge as the batteries degrade */
153 if (battery->full_charge_capacity == battery->capacity_now)
154 return 1;
155
156 /* fallback to using design values for broken batteries */
157 if (battery->design_capacity == battery->capacity_now)
158 return 1;
159
160 /* we don't do any sort of metric based on percentages */
161 return 0;
162}
163
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400164static int acpi_battery_get_property(struct power_supply *psy,
165 enum power_supply_property psp,
166 union power_supply_propval *val)
167{
168 struct acpi_battery *battery = to_acpi_battery(psy);
169
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300170 if (acpi_battery_present(battery)) {
171 /* run battery update only if it is present */
172 acpi_battery_get_state(battery);
173 } else if (psp != POWER_SUPPLY_PROP_PRESENT)
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400174 return -ENODEV;
175 switch (psp) {
176 case POWER_SUPPLY_PROP_STATUS:
177 if (battery->state & 0x01)
178 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
179 else if (battery->state & 0x02)
180 val->intval = POWER_SUPPLY_STATUS_CHARGING;
Richard Hughes56f382a2009-01-25 15:05:50 +0000181 else if (acpi_battery_is_charged(battery))
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400182 val->intval = POWER_SUPPLY_STATUS_FULL;
Roland Dreier4c41d3a2007-11-07 15:09:09 -0800183 else
184 val->intval = POWER_SUPPLY_STATUS_UNKNOWN;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400185 break;
186 case POWER_SUPPLY_PROP_PRESENT:
187 val->intval = acpi_battery_present(battery);
188 break;
189 case POWER_SUPPLY_PROP_TECHNOLOGY:
190 val->intval = acpi_battery_technology(battery);
191 break;
192 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
193 val->intval = battery->design_voltage * 1000;
194 break;
195 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
196 val->intval = battery->voltage_now * 1000;
197 break;
198 case POWER_SUPPLY_PROP_CURRENT_NOW:
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400199 case POWER_SUPPLY_PROP_POWER_NOW:
200 val->intval = battery->rate_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,
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400251 POWER_SUPPLY_PROP_POWER_NOW,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400252 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN,
253 POWER_SUPPLY_PROP_ENERGY_FULL,
254 POWER_SUPPLY_PROP_ENERGY_NOW,
255 POWER_SUPPLY_PROP_MODEL_NAME,
256 POWER_SUPPLY_PROP_MANUFACTURER,
maximilian attems7c2670b2008-01-22 18:46:50 +0100257 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400258};
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500259#endif
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400260
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300261#ifdef CONFIG_ACPI_PROCFS_POWER
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400262inline char *acpi_battery_units(struct acpi_battery *battery)
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400263{
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400264 return (battery->power_unit)?"mA":"mW";
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400265}
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400266#endif
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268/* --------------------------------------------------------------------------
269 Battery Management
270 -------------------------------------------------------------------------- */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400271struct acpi_offsets {
272 size_t offset; /* offset inside struct acpi_sbs_battery */
273 u8 mode; /* int or string? */
274};
275
276static struct acpi_offsets state_offsets[] = {
277 {offsetof(struct acpi_battery, state), 0},
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400278 {offsetof(struct acpi_battery, rate_now), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400279 {offsetof(struct acpi_battery, capacity_now), 0},
280 {offsetof(struct acpi_battery, voltage_now), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400281};
282
283static struct acpi_offsets info_offsets[] = {
284 {offsetof(struct acpi_battery, power_unit), 0},
285 {offsetof(struct acpi_battery, design_capacity), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400286 {offsetof(struct acpi_battery, full_charge_capacity), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400287 {offsetof(struct acpi_battery, technology), 0},
288 {offsetof(struct acpi_battery, design_voltage), 0},
289 {offsetof(struct acpi_battery, design_capacity_warning), 0},
290 {offsetof(struct acpi_battery, design_capacity_low), 0},
291 {offsetof(struct acpi_battery, capacity_granularity_1), 0},
292 {offsetof(struct acpi_battery, capacity_granularity_2), 0},
293 {offsetof(struct acpi_battery, model_number), 1},
294 {offsetof(struct acpi_battery, serial_number), 1},
295 {offsetof(struct acpi_battery, type), 1},
296 {offsetof(struct acpi_battery, oem_info), 1},
297};
298
299static int extract_package(struct acpi_battery *battery,
300 union acpi_object *package,
301 struct acpi_offsets *offsets, int num)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300302{
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300303 int i;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400304 union acpi_object *element;
305 if (package->type != ACPI_TYPE_PACKAGE)
306 return -EFAULT;
307 for (i = 0; i < num; ++i) {
308 if (package->package.count <= i)
309 return -EFAULT;
310 element = &package->package.elements[i];
311 if (offsets[i].mode) {
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300312 u8 *ptr = (u8 *)battery + offsets[i].offset;
313 if (element->type == ACPI_TYPE_STRING ||
314 element->type == ACPI_TYPE_BUFFER)
315 strncpy(ptr, element->string.pointer, 32);
316 else if (element->type == ACPI_TYPE_INTEGER) {
317 strncpy(ptr, (u8 *)&element->integer.value,
318 sizeof(acpi_integer));
319 ptr[sizeof(acpi_integer)] = 0;
Alexey Starikovskiyb8a1bdb2008-03-17 22:37:42 -0400320 } else
321 *ptr = 0; /* don't have value */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400322 } else {
Alexey Starikovskiyb8a1bdb2008-03-17 22:37:42 -0400323 int *x = (int *)((u8 *)battery + offsets[i].offset);
324 *x = (element->type == ACPI_TYPE_INTEGER) ?
325 element->integer.value : -1;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300326 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300327 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300328 return 0;
329}
330
331static int acpi_battery_get_status(struct acpi_battery *battery)
332{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400333 if (acpi_bus_get_status(battery->device)) {
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300334 ACPI_EXCEPTION((AE_INFO, AE_ERROR, "Evaluating _STA"));
335 return -ENODEV;
336 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400337 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300338}
339
340static int acpi_battery_get_info(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400342 int result = -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -0400343 acpi_status status = 0;
344 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300346 if (!acpi_battery_present(battery))
347 return 0;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400348 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400349 status = acpi_evaluate_object(battery->device->handle, "_BIF",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400350 NULL, &buffer);
351 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400354 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BIF"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400355 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400357
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400358 result = extract_package(battery, buffer.pointer,
359 info_offsets, ARRAY_SIZE(info_offsets));
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400360 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -0400361 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362}
363
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300364static int acpi_battery_get_state(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
Len Brown4be44fc2005-08-05 00:44:28 -0400366 int result = 0;
367 acpi_status status = 0;
368 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300370 if (!acpi_battery_present(battery))
371 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400373 if (battery->update_time &&
374 time_before(jiffies, battery->update_time +
375 msecs_to_jiffies(cache_time)))
376 return 0;
377
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400378 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400379 status = acpi_evaluate_object(battery->device->handle, "_BST",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400380 NULL, &buffer);
381 mutex_unlock(&battery->lock);
Len Brown5b31d892007-08-15 00:19:26 -0400382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400384 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BST"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400385 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400387
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400388 result = extract_package(battery, buffer.pointer,
389 state_offsets, ARRAY_SIZE(state_offsets));
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400390 battery->update_time = jiffies;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400391 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -0400392 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393}
394
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400395static int acpi_battery_set_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
Len Brown4be44fc2005-08-05 00:44:28 -0400397 acpi_status status = 0;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400398 union acpi_object arg0 = { .type = ACPI_TYPE_INTEGER };
Len Brown4be44fc2005-08-05 00:44:28 -0400399 struct acpi_object_list arg_list = { 1, &arg0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400401 if (!acpi_battery_present(battery)|| !battery->alarm_present)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300402 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400404 arg0.integer.value = battery->alarm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400406 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400407 status = acpi_evaluate_object(battery->device->handle, "_BTP",
408 &arg_list, NULL);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400409 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400412 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400414 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Alarm set to %d\n", battery->alarm));
Patrick Mocheld550d982006-06-27 00:41:40 -0400415 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416}
417
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300418static int acpi_battery_init_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419{
Len Brown4be44fc2005-08-05 00:44:28 -0400420 acpi_status status = AE_OK;
421 acpi_handle handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300423 /* See if alarms are supported, and if so, set default */
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400424 status = acpi_get_handle(battery->device->handle, "_BTP", &handle);
425 if (ACPI_FAILURE(status)) {
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400426 battery->alarm_present = 0;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400427 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 }
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400429 battery->alarm_present = 1;
430 if (!battery->alarm)
431 battery->alarm = battery->design_capacity_warning;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400432 return acpi_battery_set_alarm(battery);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433}
434
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500435#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300436static ssize_t acpi_battery_alarm_show(struct device *dev,
437 struct device_attribute *attr,
438 char *buf)
439{
440 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
441 return sprintf(buf, "%d\n", battery->alarm * 1000);
442}
443
444static ssize_t acpi_battery_alarm_store(struct device *dev,
445 struct device_attribute *attr,
446 const char *buf, size_t count)
447{
448 unsigned long x;
449 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
450 if (sscanf(buf, "%ld\n", &x) == 1)
451 battery->alarm = x/1000;
452 if (acpi_battery_present(battery))
453 acpi_battery_set_alarm(battery);
454 return count;
455}
456
457static struct device_attribute alarm_attr = {
Parag Warudkar01e8ef12008-10-18 20:28:50 -0700458 .attr = {.name = "alarm", .mode = 0644},
Andrey Borzenkov508df922007-10-28 12:50:09 +0300459 .show = acpi_battery_alarm_show,
460 .store = acpi_battery_alarm_store,
461};
462
463static int sysfs_add_battery(struct acpi_battery *battery)
464{
465 int result;
466
Andrey Borzenkov508df922007-10-28 12:50:09 +0300467 if (battery->power_unit) {
468 battery->bat.properties = charge_battery_props;
469 battery->bat.num_properties =
470 ARRAY_SIZE(charge_battery_props);
471 } else {
472 battery->bat.properties = energy_battery_props;
473 battery->bat.num_properties =
474 ARRAY_SIZE(energy_battery_props);
475 }
476
477 battery->bat.name = acpi_device_bid(battery->device);
478 battery->bat.type = POWER_SUPPLY_TYPE_BATTERY;
479 battery->bat.get_property = acpi_battery_get_property;
480
481 result = power_supply_register(&battery->device->dev, &battery->bat);
482 if (result)
483 return result;
484 return device_create_file(battery->bat.dev, &alarm_attr);
485}
486
487static void sysfs_remove_battery(struct acpi_battery *battery)
488{
489 if (!battery->bat.dev)
490 return;
491 device_remove_file(battery->bat.dev, &alarm_attr);
492 power_supply_unregister(&battery->bat);
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300493 battery->bat.dev = NULL;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300494}
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500495#endif
Andrey Borzenkov508df922007-10-28 12:50:09 +0300496
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400497static int acpi_battery_update(struct acpi_battery *battery)
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500498{
Alexey Starikovskiy50b17852008-12-23 02:44:54 +0300499 int result, old_present = acpi_battery_present(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500500 result = acpi_battery_get_status(battery);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300501 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300502 return result;
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500503#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300504 if (!acpi_battery_present(battery)) {
505 sysfs_remove_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500506 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300507 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300508 }
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500509#endif
Alexey Starikovskiy50b17852008-12-23 02:44:54 +0300510 if (!battery->update_time ||
511 old_present != acpi_battery_present(battery)) {
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500512 result = acpi_battery_get_info(battery);
513 if (result)
514 return result;
515 acpi_battery_init_alarm(battery);
516 }
517#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300518 if (!battery->bat.dev)
519 sysfs_add_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500520#endif
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400521 return acpi_battery_get_state(battery);
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500522}
523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524/* --------------------------------------------------------------------------
525 FS Interface (/proc)
526 -------------------------------------------------------------------------- */
527
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300528#ifdef CONFIG_ACPI_PROCFS_POWER
Len Brown4be44fc2005-08-05 00:44:28 -0400529static struct proc_dir_entry *acpi_battery_dir;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300530
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400531static int acpi_battery_print_info(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200533 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300535 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 goto end;
537
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400538 seq_printf(seq, "present: %s\n",
539 acpi_battery_present(battery)?"yes":"no");
540 if (!acpi_battery_present(battery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 goto end;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400542 if (battery->design_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 seq_printf(seq, "design capacity: unknown\n");
544 else
545 seq_printf(seq, "design capacity: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400546 battery->design_capacity,
547 acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400549 if (battery->full_charge_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 seq_printf(seq, "last full capacity: unknown\n");
551 else
552 seq_printf(seq, "last full capacity: %d %sh\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400553 battery->full_charge_capacity,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400554 acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400556 seq_printf(seq, "battery technology: %srechargeable\n",
557 (!battery->technology)?"non-":"");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400559 if (battery->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 seq_printf(seq, "design voltage: unknown\n");
561 else
562 seq_printf(seq, "design voltage: %d mV\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400563 battery->design_voltage);
Len Brown4be44fc2005-08-05 00:44:28 -0400564 seq_printf(seq, "design capacity warning: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400565 battery->design_capacity_warning,
566 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400567 seq_printf(seq, "design capacity low: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400568 battery->design_capacity_low,
569 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400570 seq_printf(seq, "capacity granularity 1: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400571 battery->capacity_granularity_1,
572 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400573 seq_printf(seq, "capacity granularity 2: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400574 battery->capacity_granularity_2,
575 acpi_battery_units(battery));
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400576 seq_printf(seq, "model number: %s\n", battery->model_number);
577 seq_printf(seq, "serial number: %s\n", battery->serial_number);
578 seq_printf(seq, "battery type: %s\n", battery->type);
579 seq_printf(seq, "OEM info: %s\n", battery->oem_info);
Len Brown4be44fc2005-08-05 00:44:28 -0400580 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300581 if (result)
582 seq_printf(seq, "ERROR: Unable to read battery info\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300583 return result;
584}
585
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400586static int acpi_battery_print_state(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200588 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300590 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 goto end;
592
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400593 seq_printf(seq, "present: %s\n",
594 acpi_battery_present(battery)?"yes":"no");
595 if (!acpi_battery_present(battery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400598 seq_printf(seq, "capacity state: %s\n",
599 (battery->state & 0x04)?"critical":"ok");
600 if ((battery->state & 0x01) && (battery->state & 0x02))
Len Brown4be44fc2005-08-05 00:44:28 -0400601 seq_printf(seq,
602 "charging state: charging/discharging\n");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400603 else if (battery->state & 0x01)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 seq_printf(seq, "charging state: discharging\n");
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400605 else if (battery->state & 0x02)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 seq_printf(seq, "charging state: charging\n");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400607 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 seq_printf(seq, "charging state: charged\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400610 if (battery->rate_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 seq_printf(seq, "present rate: unknown\n");
612 else
613 seq_printf(seq, "present rate: %d %s\n",
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400614 battery->rate_now, acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400616 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 seq_printf(seq, "remaining capacity: unknown\n");
618 else
619 seq_printf(seq, "remaining capacity: %d %sh\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400620 battery->capacity_now, acpi_battery_units(battery));
621 if (battery->voltage_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 seq_printf(seq, "present voltage: unknown\n");
623 else
624 seq_printf(seq, "present voltage: %d mV\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400625 battery->voltage_now);
Len Brown4be44fc2005-08-05 00:44:28 -0400626 end:
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400627 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300628 seq_printf(seq, "ERROR: Unable to read battery state\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300629
630 return result;
631}
632
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400633static int acpi_battery_print_alarm(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200635 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300637 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 goto end;
639
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300640 if (!acpi_battery_present(battery)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 seq_printf(seq, "present: no\n");
642 goto end;
643 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 seq_printf(seq, "alarm: ");
645 if (!battery->alarm)
646 seq_printf(seq, "unsupported\n");
647 else
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400648 seq_printf(seq, "%u %sh\n", battery->alarm,
649 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400650 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300651 if (result)
652 seq_printf(seq, "ERROR: Unable to read battery alarm\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300653 return result;
654}
655
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400656static ssize_t acpi_battery_write_alarm(struct file *file,
657 const char __user * buffer,
658 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659{
Len Brown4be44fc2005-08-05 00:44:28 -0400660 int result = 0;
661 char alarm_string[12] = { '\0' };
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200662 struct seq_file *m = file->private_data;
663 struct acpi_battery *battery = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 if (!battery || (count > sizeof(alarm_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -0400666 return -EINVAL;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300667 if (!acpi_battery_present(battery)) {
668 result = -ENODEV;
669 goto end;
670 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300671 if (copy_from_user(alarm_string, buffer, count)) {
672 result = -EFAULT;
673 goto end;
674 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 alarm_string[count] = '\0';
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400676 battery->alarm = simple_strtol(alarm_string, NULL, 0);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400677 result = acpi_battery_set_alarm(battery);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300678 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300679 if (!result)
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400680 return count;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300681 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682}
683
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400684typedef int(*print_func)(struct seq_file *seq, int result);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400685
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400686static print_func acpi_print_funcs[ACPI_BATTERY_NUMFILES] = {
687 acpi_battery_print_info,
688 acpi_battery_print_state,
689 acpi_battery_print_alarm,
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400690};
691
692static int acpi_battery_read(int fid, struct seq_file *seq)
693{
694 struct acpi_battery *battery = seq->private;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400695 int result = acpi_battery_update(battery);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400696 return acpi_print_funcs[fid](seq, result);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400697}
698
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400699#define DECLARE_FILE_FUNCTIONS(_name) \
700static int acpi_battery_read_##_name(struct seq_file *seq, void *offset) \
701{ \
702 return acpi_battery_read(_name##_tag, seq); \
703} \
704static int acpi_battery_##_name##_open_fs(struct inode *inode, struct file *file) \
705{ \
706 return single_open(file, acpi_battery_read_##_name, PDE(inode)->data); \
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400707}
708
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400709DECLARE_FILE_FUNCTIONS(info);
710DECLARE_FILE_FUNCTIONS(state);
711DECLARE_FILE_FUNCTIONS(alarm);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400712
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400713#undef DECLARE_FILE_FUNCTIONS
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400714
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400715#define FILE_DESCRIPTION_RO(_name) \
716 { \
717 .name = __stringify(_name), \
718 .mode = S_IRUGO, \
719 .ops = { \
720 .open = acpi_battery_##_name##_open_fs, \
721 .read = seq_read, \
722 .llseek = seq_lseek, \
723 .release = single_release, \
724 .owner = THIS_MODULE, \
725 }, \
726 }
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400727
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400728#define FILE_DESCRIPTION_RW(_name) \
729 { \
730 .name = __stringify(_name), \
731 .mode = S_IFREG | S_IRUGO | S_IWUSR, \
732 .ops = { \
733 .open = acpi_battery_##_name##_open_fs, \
734 .read = seq_read, \
735 .llseek = seq_lseek, \
736 .write = acpi_battery_write_##_name, \
737 .release = single_release, \
738 .owner = THIS_MODULE, \
739 }, \
740 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400742static struct battery_file {
743 struct file_operations ops;
744 mode_t mode;
745 char *name;
746} acpi_battery_file[] = {
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400747 FILE_DESCRIPTION_RO(info),
748 FILE_DESCRIPTION_RO(state),
749 FILE_DESCRIPTION_RW(alarm),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750};
751
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400752#undef FILE_DESCRIPTION_RO
753#undef FILE_DESCRIPTION_RW
754
Len Brown4be44fc2005-08-05 00:44:28 -0400755static int acpi_battery_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756{
Len Brown4be44fc2005-08-05 00:44:28 -0400757 struct proc_dir_entry *entry = NULL;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400758 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 if (!acpi_device_dir(device)) {
761 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400762 acpi_battery_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400764 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 acpi_device_dir(device)->owner = THIS_MODULE;
766 }
767
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400768 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i) {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700769 entry = proc_create_data(acpi_battery_file[i].name,
770 acpi_battery_file[i].mode,
771 acpi_device_dir(device),
772 &acpi_battery_file[i].ops,
773 acpi_driver_data(device));
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400774 if (!entry)
775 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400777 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778}
779
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400780static void acpi_battery_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781{
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400782 int i;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400783 if (!acpi_device_dir(device))
784 return;
785 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i)
786 remove_proc_entry(acpi_battery_file[i].name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400789 remove_proc_entry(acpi_device_bid(device), acpi_battery_dir);
790 acpi_device_dir(device) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791}
792
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400793#endif
Alexey Starikovskiy3e58ea02007-09-26 19:43:11 +0400794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795/* --------------------------------------------------------------------------
796 Driver Interface
797 -------------------------------------------------------------------------- */
798
Len Brown4be44fc2005-08-05 00:44:28 -0400799static void acpi_battery_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200801 struct acpi_battery *battery = data;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400802 struct acpi_device *device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -0400804 return;
Patrick Mochel145def82006-05-19 16:54:39 -0400805 device = battery->device;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400806 acpi_battery_update(battery);
807 acpi_bus_generate_proc_event(device, event,
808 acpi_battery_present(battery));
809 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100810 dev_name(&device->dev), event,
Vladimir Lebedev9ea7d572007-02-20 15:48:06 +0300811 acpi_battery_present(battery));
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500812#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300813 /* acpi_batter_update could remove power_supply object */
814 if (battery->bat.dev)
815 kobject_uevent(&battery->bat.dev->kobj, KOBJ_CHANGE);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500816#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817}
818
Len Brown4be44fc2005-08-05 00:44:28 -0400819static int acpi_battery_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820{
Len Brown4be44fc2005-08-05 00:44:28 -0400821 int result = 0;
822 acpi_status status = 0;
823 struct acpi_battery *battery = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400825 return -EINVAL;
Burman Yan36bcbec2006-12-19 12:56:11 -0800826 battery = kzalloc(sizeof(struct acpi_battery), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -0400828 return -ENOMEM;
Patrick Mochel145def82006-05-19 16:54:39 -0400829 battery->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 strcpy(acpi_device_name(device), ACPI_BATTERY_DEVICE_NAME);
831 strcpy(acpi_device_class(device), ACPI_BATTERY_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700832 device->driver_data = battery;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400833 mutex_init(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400834 acpi_battery_update(battery);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300835#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 result = acpi_battery_add_fs(device);
837 if (result)
838 goto end;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400839#endif
Patrick Mochel3b073ec2006-05-19 16:54:41 -0400840 status = acpi_install_notify_handler(device->handle,
Vladimir Lebedev9fdae722006-06-27 04:49:00 -0400841 ACPI_ALL_NOTIFY,
Len Brown4be44fc2005-08-05 00:44:28 -0400842 acpi_battery_notify, battery);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 if (ACPI_FAILURE(status)) {
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300844 ACPI_EXCEPTION((AE_INFO, status, "Installing notify handler"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 result = -ENODEV;
846 goto end;
847 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 printk(KERN_INFO PREFIX "%s Slot [%s] (battery %s)\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400849 ACPI_BATTERY_DEVICE_NAME, acpi_device_bid(device),
850 device->status.battery_present ? "present" : "absent");
Len Brown4be44fc2005-08-05 00:44:28 -0400851 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 if (result) {
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300853#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 acpi_battery_remove_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400855#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 kfree(battery);
857 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400858 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859}
860
Len Brown4be44fc2005-08-05 00:44:28 -0400861static int acpi_battery_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
Len Brown4be44fc2005-08-05 00:44:28 -0400863 acpi_status status = 0;
864 struct acpi_battery *battery = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400867 return -EINVAL;
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200868 battery = acpi_driver_data(device);
Patrick Mochel3b073ec2006-05-19 16:54:41 -0400869 status = acpi_remove_notify_handler(device->handle,
Vladimir Lebedev9fdae722006-06-27 04:49:00 -0400870 ACPI_ALL_NOTIFY,
Len Brown4be44fc2005-08-05 00:44:28 -0400871 acpi_battery_notify);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300872#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 acpi_battery_remove_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400874#endif
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500875#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300876 sysfs_remove_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500877#endif
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400878 mutex_destroy(&battery->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 kfree(battery);
Patrick Mocheld550d982006-06-27 00:41:40 -0400880 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881}
882
Jiri Kosina34c44152006-10-10 14:20:41 -0700883/* this is needed to learn about changes made in suspended state */
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800884static int acpi_battery_resume(struct acpi_device *device)
Jiri Kosina34c44152006-10-10 14:20:41 -0700885{
886 struct acpi_battery *battery;
Jiri Kosina34c44152006-10-10 14:20:41 -0700887 if (!device)
888 return -EINVAL;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400889 battery = acpi_driver_data(device);
890 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300891 acpi_battery_update(battery);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300892 return 0;
Jiri Kosina34c44152006-10-10 14:20:41 -0700893}
894
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400895static struct acpi_driver acpi_battery_driver = {
896 .name = "battery",
897 .class = ACPI_BATTERY_CLASS,
898 .ids = battery_device_ids,
899 .ops = {
900 .add = acpi_battery_add,
901 .resume = acpi_battery_resume,
902 .remove = acpi_battery_remove,
903 },
904};
905
Len Brown4be44fc2005-08-05 00:44:28 -0400906static int __init acpi_battery_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907{
Pavel Machek4d8316d2006-08-14 22:37:22 -0700908 if (acpi_disabled)
909 return -ENODEV;
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300910#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400911 acpi_battery_dir = acpi_lock_battery_dir();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 if (!acpi_battery_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -0400913 return -ENODEV;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400914#endif
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400915 if (acpi_bus_register_driver(&acpi_battery_driver) < 0) {
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300916#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400917 acpi_unlock_battery_dir(acpi_battery_dir);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400918#endif
Patrick Mocheld550d982006-06-27 00:41:40 -0400919 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400921 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922}
923
Len Brown4be44fc2005-08-05 00:44:28 -0400924static void __exit acpi_battery_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 acpi_bus_unregister_driver(&acpi_battery_driver);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300927#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400928 acpi_unlock_battery_dir(acpi_battery_dir);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400929#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930}
931
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932module_init(acpi_battery_init);
933module_exit(acpi_battery_exit);