]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/acpi/battery.c
Merge branch 'sbp2-spindown' of git://git.kernel.org/pub/scm/linux/kernel/git/ieee139...
[mirror_ubuntu-artful-kernel.git] / drivers / acpi / battery.c
CommitLineData
1da177e4 1/*
aa650bbd 2 * battery.c - ACPI Battery Driver (Revision: 2.0)
1da177e4 3 *
aa650bbd
AS
4 * Copyright (C) 2007 Alexey Starikovskiy <astarikovskiy@suse.de>
5 * Copyright (C) 2004-2007 Vladimir Lebedev <vladimir.p.lebedev@intel.com>
1da177e4
LT
6 * 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>
f1d4661a 32#include <linux/jiffies.h>
d7380965 33
fdcedbba 34#ifdef CONFIG_ACPI_PROCFS_POWER
1da177e4
LT
35#include <linux/proc_fs.h>
36#include <linux/seq_file.h>
37#include <asm/uaccess.h>
d7380965 38#endif
1da177e4
LT
39
40#include <acpi/acpi_bus.h>
41#include <acpi/acpi_drivers.h>
42
97749cd9 43#ifdef CONFIG_ACPI_SYSFS_POWER
d7380965 44#include <linux/power_supply.h>
97749cd9 45#endif
d7380965 46
1da177e4
LT
47#define ACPI_BATTERY_VALUE_UNKNOWN 0xFFFFFFFF
48
1da177e4
LT
49#define ACPI_BATTERY_COMPONENT 0x00040000
50#define ACPI_BATTERY_CLASS "battery"
1da177e4 51#define ACPI_BATTERY_DEVICE_NAME "Battery"
1da177e4
LT
52#define ACPI_BATTERY_NOTIFY_STATUS 0x80
53#define ACPI_BATTERY_NOTIFY_INFO 0x81
1da177e4 54
1da177e4 55#define _COMPONENT ACPI_BATTERY_COMPONENT
b6ce4083 56
f52fd66d 57ACPI_MODULE_NAME("battery");
1da177e4 58
f52fd66d 59MODULE_AUTHOR("Paul Diefenbaugh");
aa650bbd 60MODULE_AUTHOR("Alexey Starikovskiy <astarikovskiy@suse.de>");
7cda93e0 61MODULE_DESCRIPTION("ACPI Battery Driver");
1da177e4
LT
62MODULE_LICENSE("GPL");
63
f1d4661a
AS
64static unsigned int cache_time = 1000;
65module_param(cache_time, uint, 0644);
66MODULE_PARM_DESC(cache_time, "cache time in milliseconds");
b6ce4083 67
fdcedbba 68#ifdef CONFIG_ACPI_PROCFS_POWER
3f86b832
RT
69extern struct proc_dir_entry *acpi_lock_battery_dir(void);
70extern void *acpi_unlock_battery_dir(struct proc_dir_entry *acpi_battery_dir);
71
d7380965
AS
72enum acpi_battery_files {
73 info_tag = 0,
74 state_tag,
75 alarm_tag,
76 ACPI_BATTERY_NUMFILES,
77};
78
79#endif
80
1ba90e3a
TR
81static const struct acpi_device_id battery_device_ids[] = {
82 {"PNP0C0A", 0},
83 {"", 0},
84};
1ba90e3a 85
aa650bbd 86MODULE_DEVICE_TABLE(acpi, battery_device_ids);
1da177e4 87
78490d82 88
1da177e4 89struct acpi_battery {
038fdea2 90 struct mutex lock;
97749cd9 91#ifdef CONFIG_ACPI_SYSFS_POWER
d7380965 92 struct power_supply bat;
97749cd9 93#endif
f1d4661a
AS
94 struct acpi_device *device;
95 unsigned long update_time;
d7380965
AS
96 int current_now;
97 int capacity_now;
98 int voltage_now;
038fdea2 99 int design_capacity;
d7380965 100 int full_charge_capacity;
038fdea2
AS
101 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;
f1d4661a 107 int alarm;
038fdea2
AS
108 char model_number[32];
109 char serial_number[32];
110 char type[32];
111 char oem_info[32];
f1d4661a
AS
112 int state;
113 int power_unit;
038fdea2 114 u8 alarm_present;
1da177e4
LT
115};
116
d7380965
AS
117#define to_acpi_battery(x) container_of(x, struct acpi_battery, bat);
118
78490d82 119inline int acpi_battery_present(struct acpi_battery *battery)
b6ce4083 120{
78490d82
AS
121 return battery->device->status.battery_present;
122}
038fdea2 123
97749cd9 124#ifdef CONFIG_ACPI_SYSFS_POWER
d7380965
AS
125static 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;
ad40e68b 133 if (!strncasecmp("LI-ION", battery->type, 6))
0bde7eee 134 return POWER_SUPPLY_TECHNOLOGY_LION;
d7380965
AS
135 if (!strcasecmp("LiP", battery->type))
136 return POWER_SUPPLY_TECHNOLOGY_LIPO;
137 return POWER_SUPPLY_TECHNOLOGY_UNKNOWN;
138}
139
9104476e 140static int acpi_battery_get_state(struct acpi_battery *battery);
b19073a0 141
d7380965
AS
142static int acpi_battery_get_property(struct power_supply *psy,
143 enum power_supply_property psp,
144 union power_supply_propval *val)
145{
146 struct acpi_battery *battery = to_acpi_battery(psy);
147
9104476e
AS
148 if (acpi_battery_present(battery)) {
149 /* run battery update only if it is present */
150 acpi_battery_get_state(battery);
151 } else if (psp != POWER_SUPPLY_PROP_PRESENT)
d7380965
AS
152 return -ENODEV;
153 switch (psp) {
154 case POWER_SUPPLY_PROP_STATUS:
155 if (battery->state & 0x01)
156 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
157 else if (battery->state & 0x02)
158 val->intval = POWER_SUPPLY_STATUS_CHARGING;
159 else if (battery->state == 0)
160 val->intval = POWER_SUPPLY_STATUS_FULL;
4c41d3ad
RD
161 else
162 val->intval = POWER_SUPPLY_STATUS_UNKNOWN;
d7380965
AS
163 break;
164 case POWER_SUPPLY_PROP_PRESENT:
165 val->intval = acpi_battery_present(battery);
166 break;
167 case POWER_SUPPLY_PROP_TECHNOLOGY:
168 val->intval = acpi_battery_technology(battery);
169 break;
170 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
171 val->intval = battery->design_voltage * 1000;
172 break;
173 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
174 val->intval = battery->voltage_now * 1000;
175 break;
176 case POWER_SUPPLY_PROP_CURRENT_NOW:
177 val->intval = battery->current_now * 1000;
178 break;
179 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
180 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
181 val->intval = battery->design_capacity * 1000;
182 break;
183 case POWER_SUPPLY_PROP_CHARGE_FULL:
184 case POWER_SUPPLY_PROP_ENERGY_FULL:
185 val->intval = battery->full_charge_capacity * 1000;
186 break;
187 case POWER_SUPPLY_PROP_CHARGE_NOW:
188 case POWER_SUPPLY_PROP_ENERGY_NOW:
189 val->intval = battery->capacity_now * 1000;
190 break;
191 case POWER_SUPPLY_PROP_MODEL_NAME:
192 val->strval = battery->model_number;
193 break;
194 case POWER_SUPPLY_PROP_MANUFACTURER:
195 val->strval = battery->oem_info;
196 break;
7c2670bb 197 case POWER_SUPPLY_PROP_SERIAL_NUMBER:
198 val->strval = battery->serial_number;
199 break;
d7380965
AS
200 default:
201 return -EINVAL;
202 }
203 return 0;
204}
205
206static enum power_supply_property charge_battery_props[] = {
207 POWER_SUPPLY_PROP_STATUS,
208 POWER_SUPPLY_PROP_PRESENT,
209 POWER_SUPPLY_PROP_TECHNOLOGY,
210 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
211 POWER_SUPPLY_PROP_VOLTAGE_NOW,
212 POWER_SUPPLY_PROP_CURRENT_NOW,
213 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
214 POWER_SUPPLY_PROP_CHARGE_FULL,
215 POWER_SUPPLY_PROP_CHARGE_NOW,
216 POWER_SUPPLY_PROP_MODEL_NAME,
217 POWER_SUPPLY_PROP_MANUFACTURER,
7c2670bb 218 POWER_SUPPLY_PROP_SERIAL_NUMBER,
d7380965
AS
219};
220
221static enum power_supply_property energy_battery_props[] = {
222 POWER_SUPPLY_PROP_STATUS,
223 POWER_SUPPLY_PROP_PRESENT,
224 POWER_SUPPLY_PROP_TECHNOLOGY,
225 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
226 POWER_SUPPLY_PROP_VOLTAGE_NOW,
227 POWER_SUPPLY_PROP_CURRENT_NOW,
228 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN,
229 POWER_SUPPLY_PROP_ENERGY_FULL,
230 POWER_SUPPLY_PROP_ENERGY_NOW,
231 POWER_SUPPLY_PROP_MODEL_NAME,
232 POWER_SUPPLY_PROP_MANUFACTURER,
7c2670bb 233 POWER_SUPPLY_PROP_SERIAL_NUMBER,
d7380965 234};
97749cd9 235#endif
d7380965 236
fdcedbba 237#ifdef CONFIG_ACPI_PROCFS_POWER
f1d4661a 238inline char *acpi_battery_units(struct acpi_battery *battery)
78490d82 239{
f1d4661a 240 return (battery->power_unit)?"mA":"mW";
b6ce4083 241}
d7380965 242#endif
b6ce4083 243
78490d82
AS
244/* --------------------------------------------------------------------------
245 Battery Management
246 -------------------------------------------------------------------------- */
038fdea2
AS
247struct acpi_offsets {
248 size_t offset; /* offset inside struct acpi_sbs_battery */
249 u8 mode; /* int or string? */
250};
b6ce4083 251
038fdea2
AS
252static struct acpi_offsets state_offsets[] = {
253 {offsetof(struct acpi_battery, state), 0},
d7380965
AS
254 {offsetof(struct acpi_battery, current_now), 0},
255 {offsetof(struct acpi_battery, capacity_now), 0},
256 {offsetof(struct acpi_battery, voltage_now), 0},
038fdea2 257};
b6ce4083 258
038fdea2
AS
259static struct acpi_offsets info_offsets[] = {
260 {offsetof(struct acpi_battery, power_unit), 0},
261 {offsetof(struct acpi_battery, design_capacity), 0},
d7380965 262 {offsetof(struct acpi_battery, full_charge_capacity), 0},
038fdea2
AS
263 {offsetof(struct acpi_battery, technology), 0},
264 {offsetof(struct acpi_battery, design_voltage), 0},
265 {offsetof(struct acpi_battery, design_capacity_warning), 0},
266 {offsetof(struct acpi_battery, design_capacity_low), 0},
267 {offsetof(struct acpi_battery, capacity_granularity_1), 0},
268 {offsetof(struct acpi_battery, capacity_granularity_2), 0},
269 {offsetof(struct acpi_battery, model_number), 1},
270 {offsetof(struct acpi_battery, serial_number), 1},
271 {offsetof(struct acpi_battery, type), 1},
272 {offsetof(struct acpi_battery, oem_info), 1},
273};
b6ce4083 274
038fdea2
AS
275static int extract_package(struct acpi_battery *battery,
276 union acpi_object *package,
277 struct acpi_offsets *offsets, int num)
278{
106449e8 279 int i;
038fdea2
AS
280 union acpi_object *element;
281 if (package->type != ACPI_TYPE_PACKAGE)
282 return -EFAULT;
283 for (i = 0; i < num; ++i) {
284 if (package->package.count <= i)
285 return -EFAULT;
286 element = &package->package.elements[i];
287 if (offsets[i].mode) {
106449e8
AS
288 u8 *ptr = (u8 *)battery + offsets[i].offset;
289 if (element->type == ACPI_TYPE_STRING ||
290 element->type == ACPI_TYPE_BUFFER)
291 strncpy(ptr, element->string.pointer, 32);
292 else if (element->type == ACPI_TYPE_INTEGER) {
293 strncpy(ptr, (u8 *)&element->integer.value,
294 sizeof(acpi_integer));
295 ptr[sizeof(acpi_integer)] = 0;
b8a1bdb1
AS
296 } else
297 *ptr = 0; /* don't have value */
038fdea2 298 } else {
b8a1bdb1
AS
299 int *x = (int *)((u8 *)battery + offsets[i].offset);
300 *x = (element->type == ACPI_TYPE_INTEGER) ?
301 element->integer.value : -1;
038fdea2 302 }
b6ce4083 303 }
b6ce4083
VL
304 return 0;
305}
306
307static int acpi_battery_get_status(struct acpi_battery *battery)
308{
aa650bbd 309 if (acpi_bus_get_status(battery->device)) {
b6ce4083
VL
310 ACPI_EXCEPTION((AE_INFO, AE_ERROR, "Evaluating _STA"));
311 return -ENODEV;
312 }
aa650bbd 313 return 0;
b6ce4083
VL
314}
315
316static int acpi_battery_get_info(struct acpi_battery *battery)
1da177e4 317{
aa650bbd 318 int result = -EFAULT;
4be44fcd
LB
319 acpi_status status = 0;
320 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1da177e4 321
b6ce4083
VL
322 if (!acpi_battery_present(battery))
323 return 0;
038fdea2 324 mutex_lock(&battery->lock);
f1d4661a 325 status = acpi_evaluate_object(battery->device->handle, "_BIF",
038fdea2
AS
326 NULL, &buffer);
327 mutex_unlock(&battery->lock);
aa650bbd 328
1da177e4 329 if (ACPI_FAILURE(status)) {
a6fc6720 330 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BIF"));
d550d98d 331 return -ENODEV;
1da177e4 332 }
aa650bbd 333
038fdea2
AS
334 result = extract_package(battery, buffer.pointer,
335 info_offsets, ARRAY_SIZE(info_offsets));
78490d82 336 kfree(buffer.pointer);
d550d98d 337 return result;
1da177e4
LT
338}
339
b6ce4083 340static int acpi_battery_get_state(struct acpi_battery *battery)
1da177e4 341{
4be44fcd
LB
342 int result = 0;
343 acpi_status status = 0;
344 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1da177e4 345
b6ce4083
VL
346 if (!acpi_battery_present(battery))
347 return 0;
1da177e4 348
f1d4661a
AS
349 if (battery->update_time &&
350 time_before(jiffies, battery->update_time +
351 msecs_to_jiffies(cache_time)))
352 return 0;
353
038fdea2 354 mutex_lock(&battery->lock);
f1d4661a 355 status = acpi_evaluate_object(battery->device->handle, "_BST",
038fdea2
AS
356 NULL, &buffer);
357 mutex_unlock(&battery->lock);
5b31d895 358
1da177e4 359 if (ACPI_FAILURE(status)) {
a6fc6720 360 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BST"));
d550d98d 361 return -ENODEV;
1da177e4 362 }
aa650bbd 363
038fdea2
AS
364 result = extract_package(battery, buffer.pointer,
365 state_offsets, ARRAY_SIZE(state_offsets));
f1d4661a 366 battery->update_time = jiffies;
78490d82 367 kfree(buffer.pointer);
b6ce4083
VL
368 return result;
369}
1da177e4 370
aa650bbd 371static int acpi_battery_set_alarm(struct acpi_battery *battery)
1da177e4 372{
4be44fcd 373 acpi_status status = 0;
aa650bbd 374 union acpi_object arg0 = { .type = ACPI_TYPE_INTEGER };
4be44fcd 375 struct acpi_object_list arg_list = { 1, &arg0 };
1da177e4 376
aa650bbd 377 if (!acpi_battery_present(battery)|| !battery->alarm_present)
d550d98d 378 return -ENODEV;
1da177e4 379
aa650bbd 380 arg0.integer.value = battery->alarm;
1da177e4 381
038fdea2 382 mutex_lock(&battery->lock);
f1d4661a
AS
383 status = acpi_evaluate_object(battery->device->handle, "_BTP",
384 &arg_list, NULL);
038fdea2 385 mutex_unlock(&battery->lock);
aa650bbd 386
1da177e4 387 if (ACPI_FAILURE(status))
d550d98d 388 return -ENODEV;
1da177e4 389
aa650bbd 390 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Alarm set to %d\n", battery->alarm));
d550d98d 391 return 0;
1da177e4
LT
392}
393
b6ce4083 394static int acpi_battery_init_alarm(struct acpi_battery *battery)
1da177e4 395{
4be44fcd
LB
396 acpi_status status = AE_OK;
397 acpi_handle handle = NULL;
4be44fcd 398
b6ce4083 399 /* See if alarms are supported, and if so, set default */
f1d4661a
AS
400 status = acpi_get_handle(battery->device->handle, "_BTP", &handle);
401 if (ACPI_FAILURE(status)) {
038fdea2 402 battery->alarm_present = 0;
f1d4661a 403 return 0;
b6ce4083 404 }
f1d4661a
AS
405 battery->alarm_present = 1;
406 if (!battery->alarm)
407 battery->alarm = battery->design_capacity_warning;
aa650bbd 408 return acpi_battery_set_alarm(battery);
b6ce4083 409}
1da177e4 410
97749cd9 411#ifdef CONFIG_ACPI_SYSFS_POWER
508df92d
AB
412static ssize_t acpi_battery_alarm_show(struct device *dev,
413 struct device_attribute *attr,
414 char *buf)
415{
416 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
417 return sprintf(buf, "%d\n", battery->alarm * 1000);
418}
419
420static ssize_t acpi_battery_alarm_store(struct device *dev,
421 struct device_attribute *attr,
422 const char *buf, size_t count)
423{
424 unsigned long x;
425 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
426 if (sscanf(buf, "%ld\n", &x) == 1)
427 battery->alarm = x/1000;
428 if (acpi_battery_present(battery))
429 acpi_battery_set_alarm(battery);
430 return count;
431}
432
433static struct device_attribute alarm_attr = {
434 .attr = {.name = "alarm", .mode = 0644, .owner = THIS_MODULE},
435 .show = acpi_battery_alarm_show,
436 .store = acpi_battery_alarm_store,
437};
438
439static int sysfs_add_battery(struct acpi_battery *battery)
440{
441 int result;
442
508df92d
AB
443 if (battery->power_unit) {
444 battery->bat.properties = charge_battery_props;
445 battery->bat.num_properties =
446 ARRAY_SIZE(charge_battery_props);
447 } else {
448 battery->bat.properties = energy_battery_props;
449 battery->bat.num_properties =
450 ARRAY_SIZE(energy_battery_props);
451 }
452
453 battery->bat.name = acpi_device_bid(battery->device);
454 battery->bat.type = POWER_SUPPLY_TYPE_BATTERY;
455 battery->bat.get_property = acpi_battery_get_property;
456
457 result = power_supply_register(&battery->device->dev, &battery->bat);
458 if (result)
459 return result;
460 return device_create_file(battery->bat.dev, &alarm_attr);
461}
462
463static void sysfs_remove_battery(struct acpi_battery *battery)
464{
465 if (!battery->bat.dev)
466 return;
467 device_remove_file(battery->bat.dev, &alarm_attr);
468 power_supply_unregister(&battery->bat);
9104476e 469 battery->bat.dev = NULL;
508df92d 470}
97749cd9 471#endif
508df92d 472
f1d4661a 473static int acpi_battery_update(struct acpi_battery *battery)
b6ce4083 474{
97749cd9
AS
475 int result;
476 result = acpi_battery_get_status(battery);
508df92d 477 if (result)
b6ce4083 478 return result;
97749cd9 479#ifdef CONFIG_ACPI_SYSFS_POWER
508df92d
AB
480 if (!acpi_battery_present(battery)) {
481 sysfs_remove_battery(battery);
97749cd9 482 battery->update_time = 0;
508df92d 483 return 0;
b6ce4083 484 }
97749cd9
AS
485#endif
486 if (!battery->update_time) {
487 result = acpi_battery_get_info(battery);
488 if (result)
489 return result;
490 acpi_battery_init_alarm(battery);
491 }
492#ifdef CONFIG_ACPI_SYSFS_POWER
508df92d
AB
493 if (!battery->bat.dev)
494 sysfs_add_battery(battery);
97749cd9 495#endif
f1d4661a 496 return acpi_battery_get_state(battery);
4bd35cdb
VL
497}
498
1da177e4
LT
499/* --------------------------------------------------------------------------
500 FS Interface (/proc)
501 -------------------------------------------------------------------------- */
502
fdcedbba 503#ifdef CONFIG_ACPI_PROCFS_POWER
4be44fcd 504static struct proc_dir_entry *acpi_battery_dir;
b6ce4083 505
78490d82 506static int acpi_battery_print_info(struct seq_file *seq, int result)
1da177e4 507{
50dd0969 508 struct acpi_battery *battery = seq->private;
1da177e4 509
b6ce4083 510 if (result)
1da177e4
LT
511 goto end;
512
aa650bbd
AS
513 seq_printf(seq, "present: %s\n",
514 acpi_battery_present(battery)?"yes":"no");
515 if (!acpi_battery_present(battery))
1da177e4 516 goto end;
038fdea2 517 if (battery->design_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
1da177e4
LT
518 seq_printf(seq, "design capacity: unknown\n");
519 else
520 seq_printf(seq, "design capacity: %d %sh\n",
aa650bbd
AS
521 battery->design_capacity,
522 acpi_battery_units(battery));
1da177e4 523
d7380965 524 if (battery->full_charge_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
1da177e4
LT
525 seq_printf(seq, "last full capacity: unknown\n");
526 else
527 seq_printf(seq, "last full capacity: %d %sh\n",
d7380965 528 battery->full_charge_capacity,
aa650bbd
AS
529 acpi_battery_units(battery));
530
531 seq_printf(seq, "battery technology: %srechargeable\n",
532 (!battery->technology)?"non-":"");
1da177e4 533
038fdea2 534 if (battery->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN)
1da177e4
LT
535 seq_printf(seq, "design voltage: unknown\n");
536 else
537 seq_printf(seq, "design voltage: %d mV\n",
aa650bbd 538 battery->design_voltage);
1da177e4 539 seq_printf(seq, "design capacity warning: %d %sh\n",
aa650bbd
AS
540 battery->design_capacity_warning,
541 acpi_battery_units(battery));
1da177e4 542 seq_printf(seq, "design capacity low: %d %sh\n",
aa650bbd
AS
543 battery->design_capacity_low,
544 acpi_battery_units(battery));
1da177e4 545 seq_printf(seq, "capacity granularity 1: %d %sh\n",
aa650bbd
AS
546 battery->capacity_granularity_1,
547 acpi_battery_units(battery));
1da177e4 548 seq_printf(seq, "capacity granularity 2: %d %sh\n",
aa650bbd
AS
549 battery->capacity_granularity_2,
550 acpi_battery_units(battery));
038fdea2
AS
551 seq_printf(seq, "model number: %s\n", battery->model_number);
552 seq_printf(seq, "serial number: %s\n", battery->serial_number);
553 seq_printf(seq, "battery type: %s\n", battery->type);
554 seq_printf(seq, "OEM info: %s\n", battery->oem_info);
4be44fcd 555 end:
b6ce4083
VL
556 if (result)
557 seq_printf(seq, "ERROR: Unable to read battery info\n");
b6ce4083
VL
558 return result;
559}
560
78490d82 561static int acpi_battery_print_state(struct seq_file *seq, int result)
1da177e4 562{
50dd0969 563 struct acpi_battery *battery = seq->private;
1da177e4 564
b6ce4083 565 if (result)
1da177e4
LT
566 goto end;
567
aa650bbd
AS
568 seq_printf(seq, "present: %s\n",
569 acpi_battery_present(battery)?"yes":"no");
570 if (!acpi_battery_present(battery))
1da177e4 571 goto end;
b6ce4083 572
aa650bbd
AS
573 seq_printf(seq, "capacity state: %s\n",
574 (battery->state & 0x04)?"critical":"ok");
575 if ((battery->state & 0x01) && (battery->state & 0x02))
4be44fcd
LB
576 seq_printf(seq,
577 "charging state: charging/discharging\n");
aa650bbd 578 else if (battery->state & 0x01)
1da177e4 579 seq_printf(seq, "charging state: discharging\n");
038fdea2 580 else if (battery->state & 0x02)
1da177e4 581 seq_printf(seq, "charging state: charging\n");
aa650bbd 582 else
1da177e4 583 seq_printf(seq, "charging state: charged\n");
1da177e4 584
d7380965 585 if (battery->current_now == ACPI_BATTERY_VALUE_UNKNOWN)
1da177e4
LT
586 seq_printf(seq, "present rate: unknown\n");
587 else
588 seq_printf(seq, "present rate: %d %s\n",
d7380965 589 battery->current_now, acpi_battery_units(battery));
1da177e4 590
d7380965 591 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN)
1da177e4
LT
592 seq_printf(seq, "remaining capacity: unknown\n");
593 else
594 seq_printf(seq, "remaining capacity: %d %sh\n",
d7380965
AS
595 battery->capacity_now, acpi_battery_units(battery));
596 if (battery->voltage_now == ACPI_BATTERY_VALUE_UNKNOWN)
1da177e4
LT
597 seq_printf(seq, "present voltage: unknown\n");
598 else
599 seq_printf(seq, "present voltage: %d mV\n",
d7380965 600 battery->voltage_now);
4be44fcd 601 end:
aa650bbd 602 if (result)
b6ce4083 603 seq_printf(seq, "ERROR: Unable to read battery state\n");
b6ce4083
VL
604
605 return result;
606}
607
78490d82 608static int acpi_battery_print_alarm(struct seq_file *seq, int result)
1da177e4 609{
50dd0969 610 struct acpi_battery *battery = seq->private;
1da177e4 611
b6ce4083 612 if (result)
1da177e4
LT
613 goto end;
614
b6ce4083 615 if (!acpi_battery_present(battery)) {
1da177e4
LT
616 seq_printf(seq, "present: no\n");
617 goto end;
618 }
1da177e4
LT
619 seq_printf(seq, "alarm: ");
620 if (!battery->alarm)
621 seq_printf(seq, "unsupported\n");
622 else
aa650bbd
AS
623 seq_printf(seq, "%u %sh\n", battery->alarm,
624 acpi_battery_units(battery));
4be44fcd 625 end:
b6ce4083
VL
626 if (result)
627 seq_printf(seq, "ERROR: Unable to read battery alarm\n");
b6ce4083
VL
628 return result;
629}
630
f1d4661a
AS
631static ssize_t acpi_battery_write_alarm(struct file *file,
632 const char __user * buffer,
633 size_t count, loff_t * ppos)
1da177e4 634{
4be44fcd
LB
635 int result = 0;
636 char alarm_string[12] = { '\0' };
50dd0969
JE
637 struct seq_file *m = file->private_data;
638 struct acpi_battery *battery = m->private;
1da177e4 639
1da177e4 640 if (!battery || (count > sizeof(alarm_string) - 1))
d550d98d 641 return -EINVAL;
b6ce4083
VL
642 if (!acpi_battery_present(battery)) {
643 result = -ENODEV;
644 goto end;
645 }
b6ce4083
VL
646 if (copy_from_user(alarm_string, buffer, count)) {
647 result = -EFAULT;
648 goto end;
649 }
1da177e4 650 alarm_string[count] = '\0';
f1d4661a 651 battery->alarm = simple_strtol(alarm_string, NULL, 0);
aa650bbd 652 result = acpi_battery_set_alarm(battery);
b6ce4083 653 end:
b6ce4083 654 if (!result)
f1d4661a 655 return count;
78490d82
AS
656 return result;
657}
658
659typedef int(*print_func)(struct seq_file *seq, int result);
aa650bbd
AS
660
661static print_func acpi_print_funcs[ACPI_BATTERY_NUMFILES] = {
662 acpi_battery_print_info,
663 acpi_battery_print_state,
664 acpi_battery_print_alarm,
78490d82 665};
b6ce4083 666
78490d82
AS
667static int acpi_battery_read(int fid, struct seq_file *seq)
668{
669 struct acpi_battery *battery = seq->private;
f1d4661a 670 int result = acpi_battery_update(battery);
aa650bbd 671 return acpi_print_funcs[fid](seq, result);
78490d82
AS
672}
673
aa650bbd
AS
674#define DECLARE_FILE_FUNCTIONS(_name) \
675static int acpi_battery_read_##_name(struct seq_file *seq, void *offset) \
676{ \
677 return acpi_battery_read(_name##_tag, seq); \
678} \
679static int acpi_battery_##_name##_open_fs(struct inode *inode, struct file *file) \
680{ \
681 return single_open(file, acpi_battery_read_##_name, PDE(inode)->data); \
78490d82
AS
682}
683
aa650bbd
AS
684DECLARE_FILE_FUNCTIONS(info);
685DECLARE_FILE_FUNCTIONS(state);
686DECLARE_FILE_FUNCTIONS(alarm);
687
688#undef DECLARE_FILE_FUNCTIONS
689
690#define FILE_DESCRIPTION_RO(_name) \
691 { \
692 .name = __stringify(_name), \
693 .mode = S_IRUGO, \
694 .ops = { \
695 .open = acpi_battery_##_name##_open_fs, \
696 .read = seq_read, \
697 .llseek = seq_lseek, \
698 .release = single_release, \
699 .owner = THIS_MODULE, \
700 }, \
701 }
78490d82 702
aa650bbd
AS
703#define FILE_DESCRIPTION_RW(_name) \
704 { \
705 .name = __stringify(_name), \
706 .mode = S_IFREG | S_IRUGO | S_IWUSR, \
707 .ops = { \
708 .open = acpi_battery_##_name##_open_fs, \
709 .read = seq_read, \
710 .llseek = seq_lseek, \
711 .write = acpi_battery_write_##_name, \
712 .release = single_release, \
713 .owner = THIS_MODULE, \
714 }, \
715 }
1da177e4 716
78490d82
AS
717static struct battery_file {
718 struct file_operations ops;
719 mode_t mode;
720 char *name;
721} acpi_battery_file[] = {
aa650bbd
AS
722 FILE_DESCRIPTION_RO(info),
723 FILE_DESCRIPTION_RO(state),
724 FILE_DESCRIPTION_RW(alarm),
1da177e4
LT
725};
726
aa650bbd
AS
727#undef FILE_DESCRIPTION_RO
728#undef FILE_DESCRIPTION_RW
729
4be44fcd 730static int acpi_battery_add_fs(struct acpi_device *device)
1da177e4 731{
4be44fcd 732 struct proc_dir_entry *entry = NULL;
78490d82 733 int i;
1da177e4 734
1da177e4
LT
735 if (!acpi_device_dir(device)) {
736 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
4be44fcd 737 acpi_battery_dir);
1da177e4 738 if (!acpi_device_dir(device))
d550d98d 739 return -ENODEV;
1da177e4
LT
740 acpi_device_dir(device)->owner = THIS_MODULE;
741 }
742
78490d82 743 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i) {
cf7acfab
DL
744 entry = proc_create_data(acpi_battery_file[i].name,
745 acpi_battery_file[i].mode,
746 acpi_device_dir(device),
747 &acpi_battery_file[i].ops,
748 acpi_driver_data(device));
78490d82
AS
749 if (!entry)
750 return -ENODEV;
1da177e4 751 }
d550d98d 752 return 0;
1da177e4
LT
753}
754
aa650bbd 755static void acpi_battery_remove_fs(struct acpi_device *device)
1da177e4 756{
78490d82 757 int i;
aa650bbd
AS
758 if (!acpi_device_dir(device))
759 return;
760 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i)
761 remove_proc_entry(acpi_battery_file[i].name,
1da177e4 762 acpi_device_dir(device));
1da177e4 763
aa650bbd
AS
764 remove_proc_entry(acpi_device_bid(device), acpi_battery_dir);
765 acpi_device_dir(device) = NULL;
1da177e4
LT
766}
767
d7380965 768#endif
3e58ea0d 769
1da177e4
LT
770/* --------------------------------------------------------------------------
771 Driver Interface
772 -------------------------------------------------------------------------- */
773
4be44fcd 774static void acpi_battery_notify(acpi_handle handle, u32 event, void *data)
1da177e4 775{
50dd0969 776 struct acpi_battery *battery = data;
f1d4661a 777 struct acpi_device *device;
1da177e4 778 if (!battery)
d550d98d 779 return;
145def84 780 device = battery->device;
f1d4661a
AS
781 acpi_battery_update(battery);
782 acpi_bus_generate_proc_event(device, event,
783 acpi_battery_present(battery));
784 acpi_bus_generate_netlink_event(device->pnp.device_class,
785 device->dev.bus_id, event,
9ea7d575 786 acpi_battery_present(battery));
97749cd9 787#ifdef CONFIG_ACPI_SYSFS_POWER
508df92d
AB
788 /* acpi_batter_update could remove power_supply object */
789 if (battery->bat.dev)
790 kobject_uevent(&battery->bat.dev->kobj, KOBJ_CHANGE);
97749cd9 791#endif
1da177e4
LT
792}
793
4be44fcd 794static int acpi_battery_add(struct acpi_device *device)
1da177e4 795{
4be44fcd
LB
796 int result = 0;
797 acpi_status status = 0;
798 struct acpi_battery *battery = NULL;
1da177e4 799 if (!device)
d550d98d 800 return -EINVAL;
36bcbec7 801 battery = kzalloc(sizeof(struct acpi_battery), GFP_KERNEL);
1da177e4 802 if (!battery)
d550d98d 803 return -ENOMEM;
145def84 804 battery->device = device;
1da177e4
LT
805 strcpy(acpi_device_name(device), ACPI_BATTERY_DEVICE_NAME);
806 strcpy(acpi_device_class(device), ACPI_BATTERY_CLASS);
807 acpi_driver_data(device) = battery;
038fdea2 808 mutex_init(&battery->lock);
f1d4661a 809 acpi_battery_update(battery);
fdcedbba 810#ifdef CONFIG_ACPI_PROCFS_POWER
1da177e4
LT
811 result = acpi_battery_add_fs(device);
812 if (result)
813 goto end;
d7380965 814#endif
3b073ec3 815 status = acpi_install_notify_handler(device->handle,
9fdae727 816 ACPI_ALL_NOTIFY,
4be44fcd 817 acpi_battery_notify, battery);
1da177e4 818 if (ACPI_FAILURE(status)) {
b6ce4083 819 ACPI_EXCEPTION((AE_INFO, status, "Installing notify handler"));
1da177e4
LT
820 result = -ENODEV;
821 goto end;
822 }
1da177e4 823 printk(KERN_INFO PREFIX "%s Slot [%s] (battery %s)\n",
4be44fcd
LB
824 ACPI_BATTERY_DEVICE_NAME, acpi_device_bid(device),
825 device->status.battery_present ? "present" : "absent");
4be44fcd 826 end:
1da177e4 827 if (result) {
fdcedbba 828#ifdef CONFIG_ACPI_PROCFS_POWER
1da177e4 829 acpi_battery_remove_fs(device);
d7380965 830#endif
1da177e4
LT
831 kfree(battery);
832 }
d550d98d 833 return result;
1da177e4
LT
834}
835
4be44fcd 836static int acpi_battery_remove(struct acpi_device *device, int type)
1da177e4 837{
4be44fcd
LB
838 acpi_status status = 0;
839 struct acpi_battery *battery = NULL;
1da177e4 840
1da177e4 841 if (!device || !acpi_driver_data(device))
d550d98d 842 return -EINVAL;
50dd0969 843 battery = acpi_driver_data(device);
3b073ec3 844 status = acpi_remove_notify_handler(device->handle,
9fdae727 845 ACPI_ALL_NOTIFY,
4be44fcd 846 acpi_battery_notify);
fdcedbba 847#ifdef CONFIG_ACPI_PROCFS_POWER
1da177e4 848 acpi_battery_remove_fs(device);
d7380965 849#endif
97749cd9 850#ifdef CONFIG_ACPI_SYSFS_POWER
508df92d 851 sysfs_remove_battery(battery);
97749cd9 852#endif
038fdea2 853 mutex_destroy(&battery->lock);
1da177e4 854 kfree(battery);
d550d98d 855 return 0;
1da177e4
LT
856}
857
34c4415a 858/* this is needed to learn about changes made in suspended state */
5d9464a4 859static int acpi_battery_resume(struct acpi_device *device)
34c4415a
JK
860{
861 struct acpi_battery *battery;
34c4415a
JK
862 if (!device)
863 return -EINVAL;
f1d4661a
AS
864 battery = acpi_driver_data(device);
865 battery->update_time = 0;
508df92d 866 acpi_battery_update(battery);
b6ce4083 867 return 0;
34c4415a
JK
868}
869
aa650bbd
AS
870static struct acpi_driver acpi_battery_driver = {
871 .name = "battery",
872 .class = ACPI_BATTERY_CLASS,
873 .ids = battery_device_ids,
874 .ops = {
875 .add = acpi_battery_add,
876 .resume = acpi_battery_resume,
877 .remove = acpi_battery_remove,
878 },
879};
880
4be44fcd 881static int __init acpi_battery_init(void)
1da177e4 882{
4d8316d5
PM
883 if (acpi_disabled)
884 return -ENODEV;
fdcedbba 885#ifdef CONFIG_ACPI_PROCFS_POWER
3f86b832 886 acpi_battery_dir = acpi_lock_battery_dir();
1da177e4 887 if (!acpi_battery_dir)
d550d98d 888 return -ENODEV;
d7380965 889#endif
aa650bbd 890 if (acpi_bus_register_driver(&acpi_battery_driver) < 0) {
fdcedbba 891#ifdef CONFIG_ACPI_PROCFS_POWER
3f86b832 892 acpi_unlock_battery_dir(acpi_battery_dir);
d7380965 893#endif
d550d98d 894 return -ENODEV;
1da177e4 895 }
d550d98d 896 return 0;
1da177e4
LT
897}
898
4be44fcd 899static void __exit acpi_battery_exit(void)
1da177e4 900{
1da177e4 901 acpi_bus_unregister_driver(&acpi_battery_driver);
fdcedbba 902#ifdef CONFIG_ACPI_PROCFS_POWER
3f86b832 903 acpi_unlock_battery_dir(acpi_battery_dir);
d7380965 904#endif
1da177e4
LT
905}
906
1da177e4
LT
907module_init(acpi_battery_init);
908module_exit(acpi_battery_exit);