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