]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/acpi/battery.c
ACPI: add device_driver and hepler functions
[mirror_ubuntu-artful-kernel.git] / drivers / acpi / battery.c
CommitLineData
1da177e4
LT
1/*
2 * acpi_battery.c - ACPI Battery Driver ($Revision: 37 $)
3 *
4 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
5 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
6 *
7 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or (at
12 * your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
22 *
23 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
24 */
25
26#include <linux/kernel.h>
27#include <linux/module.h>
28#include <linux/init.h>
29#include <linux/types.h>
30#include <linux/proc_fs.h>
31#include <linux/seq_file.h>
32#include <asm/uaccess.h>
33
34#include <acpi/acpi_bus.h>
35#include <acpi/acpi_drivers.h>
36
1da177e4
LT
37#define ACPI_BATTERY_VALUE_UNKNOWN 0xFFFFFFFF
38
39#define ACPI_BATTERY_FORMAT_BIF "NNNNNNNNNSSSS"
40#define ACPI_BATTERY_FORMAT_BST "NNNN"
41
42#define ACPI_BATTERY_COMPONENT 0x00040000
43#define ACPI_BATTERY_CLASS "battery"
44#define ACPI_BATTERY_HID "PNP0C0A"
45#define ACPI_BATTERY_DRIVER_NAME "ACPI Battery Driver"
46#define ACPI_BATTERY_DEVICE_NAME "Battery"
47#define ACPI_BATTERY_FILE_INFO "info"
48#define ACPI_BATTERY_FILE_STATUS "state"
49#define ACPI_BATTERY_FILE_ALARM "alarm"
50#define ACPI_BATTERY_NOTIFY_STATUS 0x80
51#define ACPI_BATTERY_NOTIFY_INFO 0x81
52#define ACPI_BATTERY_UNITS_WATTS "mW"
53#define ACPI_BATTERY_UNITS_AMPS "mA"
54
1da177e4 55#define _COMPONENT ACPI_BATTERY_COMPONENT
4be44fcd 56ACPI_MODULE_NAME("acpi_battery")
1da177e4 57
4be44fcd 58 MODULE_AUTHOR("Paul Diefenbaugh");
1da177e4
LT
59MODULE_DESCRIPTION(ACPI_BATTERY_DRIVER_NAME);
60MODULE_LICENSE("GPL");
61
3f86b832
RT
62extern struct proc_dir_entry *acpi_lock_battery_dir(void);
63extern void *acpi_unlock_battery_dir(struct proc_dir_entry *acpi_battery_dir);
64
4be44fcd
LB
65static int acpi_battery_add(struct acpi_device *device);
66static int acpi_battery_remove(struct acpi_device *device, int type);
34c4415a 67static int acpi_battery_resume(struct acpi_device *device, int status);
1da177e4
LT
68
69static struct acpi_driver acpi_battery_driver = {
4be44fcd
LB
70 .name = ACPI_BATTERY_DRIVER_NAME,
71 .class = ACPI_BATTERY_CLASS,
72 .ids = ACPI_BATTERY_HID,
73 .ops = {
74 .add = acpi_battery_add,
34c4415a 75 .resume = acpi_battery_resume,
4be44fcd
LB
76 .remove = acpi_battery_remove,
77 },
1da177e4
LT
78};
79
80struct acpi_battery_status {
4be44fcd
LB
81 acpi_integer state;
82 acpi_integer present_rate;
83 acpi_integer remaining_capacity;
84 acpi_integer present_voltage;
1da177e4
LT
85};
86
87struct acpi_battery_info {
4be44fcd
LB
88 acpi_integer power_unit;
89 acpi_integer design_capacity;
90 acpi_integer last_full_capacity;
91 acpi_integer battery_technology;
92 acpi_integer design_voltage;
93 acpi_integer design_capacity_warning;
94 acpi_integer design_capacity_low;
95 acpi_integer battery_capacity_granularity_1;
96 acpi_integer battery_capacity_granularity_2;
97 acpi_string model_number;
98 acpi_string serial_number;
99 acpi_string battery_type;
100 acpi_string oem_info;
1da177e4
LT
101};
102
103struct acpi_battery_flags {
4be44fcd
LB
104 u8 present:1; /* Bay occupied? */
105 u8 power_unit:1; /* 0=watts, 1=apms */
106 u8 alarm:1; /* _BTP present? */
107 u8 reserved:5;
1da177e4
LT
108};
109
110struct acpi_battery_trips {
4be44fcd
LB
111 unsigned long warning;
112 unsigned long low;
1da177e4
LT
113};
114
115struct acpi_battery {
145def84 116 struct acpi_device * device;
1da177e4
LT
117 struct acpi_battery_flags flags;
118 struct acpi_battery_trips trips;
4be44fcd 119 unsigned long alarm;
1da177e4
LT
120 struct acpi_battery_info *info;
121};
122
1da177e4
LT
123/* --------------------------------------------------------------------------
124 Battery Management
125 -------------------------------------------------------------------------- */
126
127static int
4be44fcd
LB
128acpi_battery_get_info(struct acpi_battery *battery,
129 struct acpi_battery_info **bif)
1da177e4 130{
4be44fcd
LB
131 int result = 0;
132 acpi_status status = 0;
133 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
134 struct acpi_buffer format = { sizeof(ACPI_BATTERY_FORMAT_BIF),
135 ACPI_BATTERY_FORMAT_BIF
136 };
137 struct acpi_buffer data = { 0, NULL };
138 union acpi_object *package = NULL;
1da177e4 139
1da177e4
LT
140
141 if (!battery || !bif)
d550d98d 142 return -EINVAL;
1da177e4
LT
143
144 /* Evalute _BIF */
145
3b073ec3 146 status = acpi_evaluate_object(battery->device->handle, "_BIF", NULL, &buffer);
1da177e4 147 if (ACPI_FAILURE(status)) {
a6fc6720 148 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BIF"));
d550d98d 149 return -ENODEV;
1da177e4
LT
150 }
151
4be44fcd 152 package = (union acpi_object *)buffer.pointer;
1da177e4
LT
153
154 /* Extract Package Data */
155
156 status = acpi_extract_package(package, &format, &data);
157 if (status != AE_BUFFER_OVERFLOW) {
a6fc6720 158 ACPI_EXCEPTION((AE_INFO, status, "Extracting _BIF"));
1da177e4
LT
159 result = -ENODEV;
160 goto end;
161 }
162
163 data.pointer = kmalloc(data.length, GFP_KERNEL);
164 if (!data.pointer) {
165 result = -ENOMEM;
166 goto end;
167 }
168 memset(data.pointer, 0, data.length);
169
170 status = acpi_extract_package(package, &format, &data);
171 if (ACPI_FAILURE(status)) {
a6fc6720 172 ACPI_EXCEPTION((AE_INFO, status, "Extracting _BIF"));
1da177e4
LT
173 kfree(data.pointer);
174 result = -ENODEV;
175 goto end;
176 }
177
4be44fcd 178 end:
02438d87 179 kfree(buffer.pointer);
1da177e4
LT
180
181 if (!result)
4be44fcd 182 (*bif) = (struct acpi_battery_info *)data.pointer;
1da177e4 183
d550d98d 184 return result;
1da177e4
LT
185}
186
187static int
4be44fcd
LB
188acpi_battery_get_status(struct acpi_battery *battery,
189 struct acpi_battery_status **bst)
1da177e4 190{
4be44fcd
LB
191 int result = 0;
192 acpi_status status = 0;
193 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
194 struct acpi_buffer format = { sizeof(ACPI_BATTERY_FORMAT_BST),
195 ACPI_BATTERY_FORMAT_BST
196 };
197 struct acpi_buffer data = { 0, NULL };
198 union acpi_object *package = NULL;
1da177e4 199
1da177e4
LT
200
201 if (!battery || !bst)
d550d98d 202 return -EINVAL;
1da177e4
LT
203
204 /* Evalute _BST */
205
3b073ec3 206 status = acpi_evaluate_object(battery->device->handle, "_BST", NULL, &buffer);
1da177e4 207 if (ACPI_FAILURE(status)) {
a6fc6720 208 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BST"));
d550d98d 209 return -ENODEV;
1da177e4
LT
210 }
211
4be44fcd 212 package = (union acpi_object *)buffer.pointer;
1da177e4
LT
213
214 /* Extract Package Data */
215
216 status = acpi_extract_package(package, &format, &data);
217 if (status != AE_BUFFER_OVERFLOW) {
a6fc6720 218 ACPI_EXCEPTION((AE_INFO, status, "Extracting _BST"));
1da177e4
LT
219 result = -ENODEV;
220 goto end;
221 }
222
223 data.pointer = kmalloc(data.length, GFP_KERNEL);
224 if (!data.pointer) {
225 result = -ENOMEM;
226 goto end;
227 }
228 memset(data.pointer, 0, data.length);
229
230 status = acpi_extract_package(package, &format, &data);
231 if (ACPI_FAILURE(status)) {
a6fc6720 232 ACPI_EXCEPTION((AE_INFO, status, "Extracting _BST"));
1da177e4
LT
233 kfree(data.pointer);
234 result = -ENODEV;
235 goto end;
236 }
237
4be44fcd 238 end:
02438d87 239 kfree(buffer.pointer);
1da177e4
LT
240
241 if (!result)
4be44fcd 242 (*bst) = (struct acpi_battery_status *)data.pointer;
1da177e4 243
d550d98d 244 return result;
1da177e4
LT
245}
246
1da177e4 247static int
4be44fcd 248acpi_battery_set_alarm(struct acpi_battery *battery, unsigned long alarm)
1da177e4 249{
4be44fcd
LB
250 acpi_status status = 0;
251 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
252 struct acpi_object_list arg_list = { 1, &arg0 };
1da177e4 253
1da177e4
LT
254
255 if (!battery)
d550d98d 256 return -EINVAL;
1da177e4
LT
257
258 if (!battery->flags.alarm)
d550d98d 259 return -ENODEV;
1da177e4
LT
260
261 arg0.integer.value = alarm;
262
3b073ec3 263 status = acpi_evaluate_object(battery->device->handle, "_BTP", &arg_list, NULL);
1da177e4 264 if (ACPI_FAILURE(status))
d550d98d 265 return -ENODEV;
1da177e4
LT
266
267 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Alarm set to %d\n", (u32) alarm));
268
269 battery->alarm = alarm;
270
d550d98d 271 return 0;
1da177e4
LT
272}
273
4be44fcd 274static int acpi_battery_check(struct acpi_battery *battery)
1da177e4 275{
4be44fcd
LB
276 int result = 0;
277 acpi_status status = AE_OK;
278 acpi_handle handle = NULL;
279 struct acpi_device *device = NULL;
1da177e4
LT
280 struct acpi_battery_info *bif = NULL;
281
4be44fcd 282
1da177e4 283 if (!battery)
d550d98d 284 return -EINVAL;
1da177e4 285
145def84 286 device = battery->device;
1da177e4
LT
287
288 result = acpi_bus_get_status(device);
289 if (result)
d550d98d 290 return result;
1da177e4
LT
291
292 /* Insertion? */
293
294 if (!battery->flags.present && device->status.battery_present) {
295
296 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Battery inserted\n"));
297
298 /* Evalute _BIF to get certain static information */
299
300 result = acpi_battery_get_info(battery, &bif);
301 if (result)
d550d98d 302 return result;
1da177e4
LT
303
304 battery->flags.power_unit = bif->power_unit;
305 battery->trips.warning = bif->design_capacity_warning;
306 battery->trips.low = bif->design_capacity_low;
307 kfree(bif);
308
309 /* See if alarms are supported, and if so, set default */
310
3b073ec3 311 status = acpi_get_handle(battery->device->handle, "_BTP", &handle);
1da177e4
LT
312 if (ACPI_SUCCESS(status)) {
313 battery->flags.alarm = 1;
314 acpi_battery_set_alarm(battery, battery->trips.warning);
315 }
316 }
317
318 /* Removal? */
319
320 else if (battery->flags.present && !device->status.battery_present) {
321 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Battery removed\n"));
322 }
323
324 battery->flags.present = device->status.battery_present;
325
d550d98d 326 return result;
1da177e4
LT
327}
328
1da177e4
LT
329/* --------------------------------------------------------------------------
330 FS Interface (/proc)
331 -------------------------------------------------------------------------- */
332
4be44fcd 333static struct proc_dir_entry *acpi_battery_dir;
1da177e4
LT
334static int acpi_battery_read_info(struct seq_file *seq, void *offset)
335{
4be44fcd
LB
336 int result = 0;
337 struct acpi_battery *battery = (struct acpi_battery *)seq->private;
1da177e4 338 struct acpi_battery_info *bif = NULL;
4be44fcd 339 char *units = "?";
1da177e4 340
1da177e4
LT
341
342 if (!battery)
343 goto end;
344
345 if (battery->flags.present)
346 seq_printf(seq, "present: yes\n");
347 else {
348 seq_printf(seq, "present: no\n");
349 goto end;
350 }
351
352 /* Battery Info (_BIF) */
353
354 result = acpi_battery_get_info(battery, &bif);
355 if (result || !bif) {
356 seq_printf(seq, "ERROR: Unable to read battery information\n");
357 goto end;
358 }
359
4be44fcd
LB
360 units =
361 bif->
362 power_unit ? ACPI_BATTERY_UNITS_AMPS : ACPI_BATTERY_UNITS_WATTS;
363
1da177e4
LT
364 if (bif->design_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
365 seq_printf(seq, "design capacity: unknown\n");
366 else
367 seq_printf(seq, "design capacity: %d %sh\n",
4be44fcd 368 (u32) bif->design_capacity, units);
1da177e4
LT
369
370 if (bif->last_full_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
371 seq_printf(seq, "last full capacity: unknown\n");
372 else
373 seq_printf(seq, "last full capacity: %d %sh\n",
4be44fcd 374 (u32) bif->last_full_capacity, units);
1da177e4
LT
375
376 switch ((u32) bif->battery_technology) {
377 case 0:
378 seq_printf(seq, "battery technology: non-rechargeable\n");
379 break;
380 case 1:
381 seq_printf(seq, "battery technology: rechargeable\n");
382 break;
383 default:
384 seq_printf(seq, "battery technology: unknown\n");
385 break;
386 }
387
388 if (bif->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN)
389 seq_printf(seq, "design voltage: unknown\n");
390 else
391 seq_printf(seq, "design voltage: %d mV\n",
4be44fcd
LB
392 (u32) bif->design_voltage);
393
1da177e4 394 seq_printf(seq, "design capacity warning: %d %sh\n",
4be44fcd 395 (u32) bif->design_capacity_warning, units);
1da177e4 396 seq_printf(seq, "design capacity low: %d %sh\n",
4be44fcd 397 (u32) bif->design_capacity_low, units);
1da177e4 398 seq_printf(seq, "capacity granularity 1: %d %sh\n",
4be44fcd 399 (u32) bif->battery_capacity_granularity_1, units);
1da177e4 400 seq_printf(seq, "capacity granularity 2: %d %sh\n",
4be44fcd
LB
401 (u32) bif->battery_capacity_granularity_2, units);
402 seq_printf(seq, "model number: %s\n", bif->model_number);
403 seq_printf(seq, "serial number: %s\n", bif->serial_number);
404 seq_printf(seq, "battery type: %s\n", bif->battery_type);
405 seq_printf(seq, "OEM info: %s\n", bif->oem_info);
406
407 end:
1da177e4
LT
408 kfree(bif);
409
d550d98d 410 return 0;
1da177e4
LT
411}
412
413static int acpi_battery_info_open_fs(struct inode *inode, struct file *file)
414{
415 return single_open(file, acpi_battery_read_info, PDE(inode)->data);
416}
417
4be44fcd 418static int acpi_battery_read_state(struct seq_file *seq, void *offset)
1da177e4 419{
4be44fcd
LB
420 int result = 0;
421 struct acpi_battery *battery = (struct acpi_battery *)seq->private;
1da177e4 422 struct acpi_battery_status *bst = NULL;
4be44fcd 423 char *units = "?";
1da177e4 424
1da177e4
LT
425
426 if (!battery)
427 goto end;
428
429 if (battery->flags.present)
430 seq_printf(seq, "present: yes\n");
431 else {
432 seq_printf(seq, "present: no\n");
433 goto end;
434 }
435
436 /* Battery Units */
437
4be44fcd
LB
438 units =
439 battery->flags.
440 power_unit ? ACPI_BATTERY_UNITS_AMPS : ACPI_BATTERY_UNITS_WATTS;
1da177e4
LT
441
442 /* Battery Status (_BST) */
443
444 result = acpi_battery_get_status(battery, &bst);
445 if (result || !bst) {
446 seq_printf(seq, "ERROR: Unable to read battery status\n");
447 goto end;
448 }
449
450 if (!(bst->state & 0x04))
451 seq_printf(seq, "capacity state: ok\n");
452 else
453 seq_printf(seq, "capacity state: critical\n");
454
4be44fcd
LB
455 if ((bst->state & 0x01) && (bst->state & 0x02)) {
456 seq_printf(seq,
457 "charging state: charging/discharging\n");
4be44fcd 458 } else if (bst->state & 0x01)
1da177e4
LT
459 seq_printf(seq, "charging state: discharging\n");
460 else if (bst->state & 0x02)
461 seq_printf(seq, "charging state: charging\n");
462 else {
463 seq_printf(seq, "charging state: charged\n");
464 }
465
466 if (bst->present_rate == ACPI_BATTERY_VALUE_UNKNOWN)
467 seq_printf(seq, "present rate: unknown\n");
468 else
469 seq_printf(seq, "present rate: %d %s\n",
4be44fcd 470 (u32) bst->present_rate, units);
1da177e4
LT
471
472 if (bst->remaining_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
473 seq_printf(seq, "remaining capacity: unknown\n");
474 else
475 seq_printf(seq, "remaining capacity: %d %sh\n",
4be44fcd 476 (u32) bst->remaining_capacity, units);
1da177e4
LT
477
478 if (bst->present_voltage == ACPI_BATTERY_VALUE_UNKNOWN)
479 seq_printf(seq, "present voltage: unknown\n");
480 else
481 seq_printf(seq, "present voltage: %d mV\n",
4be44fcd 482 (u32) bst->present_voltage);
1da177e4 483
4be44fcd 484 end:
1da177e4
LT
485 kfree(bst);
486
d550d98d 487 return 0;
1da177e4
LT
488}
489
490static int acpi_battery_state_open_fs(struct inode *inode, struct file *file)
491{
492 return single_open(file, acpi_battery_read_state, PDE(inode)->data);
493}
494
4be44fcd 495static int acpi_battery_read_alarm(struct seq_file *seq, void *offset)
1da177e4 496{
4be44fcd
LB
497 struct acpi_battery *battery = (struct acpi_battery *)seq->private;
498 char *units = "?";
1da177e4 499
1da177e4
LT
500
501 if (!battery)
502 goto end;
503
504 if (!battery->flags.present) {
505 seq_printf(seq, "present: no\n");
506 goto end;
507 }
508
509 /* Battery Units */
4be44fcd
LB
510
511 units =
512 battery->flags.
513 power_unit ? ACPI_BATTERY_UNITS_AMPS : ACPI_BATTERY_UNITS_WATTS;
1da177e4
LT
514
515 /* Battery Alarm */
516
517 seq_printf(seq, "alarm: ");
518 if (!battery->alarm)
519 seq_printf(seq, "unsupported\n");
520 else
521 seq_printf(seq, "%d %sh\n", (u32) battery->alarm, units);
522
4be44fcd 523 end:
d550d98d 524 return 0;
1da177e4
LT
525}
526
1da177e4 527static ssize_t
4be44fcd
LB
528acpi_battery_write_alarm(struct file *file,
529 const char __user * buffer,
530 size_t count, loff_t * ppos)
1da177e4 531{
4be44fcd
LB
532 int result = 0;
533 char alarm_string[12] = { '\0' };
534 struct seq_file *m = (struct seq_file *)file->private_data;
535 struct acpi_battery *battery = (struct acpi_battery *)m->private;
1da177e4 536
1da177e4
LT
537
538 if (!battery || (count > sizeof(alarm_string) - 1))
d550d98d 539 return -EINVAL;
1da177e4
LT
540
541 if (!battery->flags.present)
d550d98d 542 return -ENODEV;
1da177e4
LT
543
544 if (copy_from_user(alarm_string, buffer, count))
d550d98d 545 return -EFAULT;
4be44fcd 546
1da177e4
LT
547 alarm_string[count] = '\0';
548
4be44fcd
LB
549 result = acpi_battery_set_alarm(battery,
550 simple_strtoul(alarm_string, NULL, 0));
1da177e4 551 if (result)
d550d98d 552 return result;
1da177e4 553
d550d98d 554 return count;
1da177e4
LT
555}
556
557static int acpi_battery_alarm_open_fs(struct inode *inode, struct file *file)
558{
559 return single_open(file, acpi_battery_read_alarm, PDE(inode)->data);
560}
561
d7508032 562static const struct file_operations acpi_battery_info_ops = {
4be44fcd
LB
563 .open = acpi_battery_info_open_fs,
564 .read = seq_read,
565 .llseek = seq_lseek,
566 .release = single_release,
1da177e4
LT
567 .owner = THIS_MODULE,
568};
569
d7508032 570static const struct file_operations acpi_battery_state_ops = {
4be44fcd
LB
571 .open = acpi_battery_state_open_fs,
572 .read = seq_read,
573 .llseek = seq_lseek,
574 .release = single_release,
1da177e4
LT
575 .owner = THIS_MODULE,
576};
577
d7508032 578static const struct file_operations acpi_battery_alarm_ops = {
4be44fcd
LB
579 .open = acpi_battery_alarm_open_fs,
580 .read = seq_read,
581 .write = acpi_battery_write_alarm,
582 .llseek = seq_lseek,
583 .release = single_release,
1da177e4
LT
584 .owner = THIS_MODULE,
585};
586
4be44fcd 587static int acpi_battery_add_fs(struct acpi_device *device)
1da177e4 588{
4be44fcd 589 struct proc_dir_entry *entry = NULL;
1da177e4 590
1da177e4
LT
591
592 if (!acpi_device_dir(device)) {
593 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
4be44fcd 594 acpi_battery_dir);
1da177e4 595 if (!acpi_device_dir(device))
d550d98d 596 return -ENODEV;
1da177e4
LT
597 acpi_device_dir(device)->owner = THIS_MODULE;
598 }
599
600 /* 'info' [R] */
601 entry = create_proc_entry(ACPI_BATTERY_FILE_INFO,
4be44fcd 602 S_IRUGO, acpi_device_dir(device));
1da177e4 603 if (!entry)
d550d98d 604 return -ENODEV;
1da177e4 605 else {
4be44fcd 606 entry->proc_fops = &acpi_battery_info_ops;
1da177e4
LT
607 entry->data = acpi_driver_data(device);
608 entry->owner = THIS_MODULE;
609 }
610
611 /* 'status' [R] */
612 entry = create_proc_entry(ACPI_BATTERY_FILE_STATUS,
4be44fcd 613 S_IRUGO, acpi_device_dir(device));
1da177e4 614 if (!entry)
d550d98d 615 return -ENODEV;
1da177e4
LT
616 else {
617 entry->proc_fops = &acpi_battery_state_ops;
618 entry->data = acpi_driver_data(device);
619 entry->owner = THIS_MODULE;
620 }
621
622 /* 'alarm' [R/W] */
623 entry = create_proc_entry(ACPI_BATTERY_FILE_ALARM,
4be44fcd
LB
624 S_IFREG | S_IRUGO | S_IWUSR,
625 acpi_device_dir(device));
1da177e4 626 if (!entry)
d550d98d 627 return -ENODEV;
1da177e4
LT
628 else {
629 entry->proc_fops = &acpi_battery_alarm_ops;
630 entry->data = acpi_driver_data(device);
631 entry->owner = THIS_MODULE;
632 }
633
d550d98d 634 return 0;
1da177e4
LT
635}
636
4be44fcd 637static int acpi_battery_remove_fs(struct acpi_device *device)
1da177e4 638{
1da177e4
LT
639
640 if (acpi_device_dir(device)) {
641 remove_proc_entry(ACPI_BATTERY_FILE_ALARM,
642 acpi_device_dir(device));
643 remove_proc_entry(ACPI_BATTERY_FILE_STATUS,
644 acpi_device_dir(device));
645 remove_proc_entry(ACPI_BATTERY_FILE_INFO,
646 acpi_device_dir(device));
647
648 remove_proc_entry(acpi_device_bid(device), acpi_battery_dir);
649 acpi_device_dir(device) = NULL;
650 }
651
d550d98d 652 return 0;
1da177e4
LT
653}
654
1da177e4
LT
655/* --------------------------------------------------------------------------
656 Driver Interface
657 -------------------------------------------------------------------------- */
658
4be44fcd 659static void acpi_battery_notify(acpi_handle handle, u32 event, void *data)
1da177e4 660{
4be44fcd
LB
661 struct acpi_battery *battery = (struct acpi_battery *)data;
662 struct acpi_device *device = NULL;
1da177e4 663
1da177e4
LT
664
665 if (!battery)
d550d98d 666 return;
1da177e4 667
145def84 668 device = battery->device;
1da177e4
LT
669
670 switch (event) {
671 case ACPI_BATTERY_NOTIFY_STATUS:
672 case ACPI_BATTERY_NOTIFY_INFO:
9fdae727
VL
673 case ACPI_NOTIFY_BUS_CHECK:
674 case ACPI_NOTIFY_DEVICE_CHECK:
1da177e4
LT
675 acpi_battery_check(battery);
676 acpi_bus_generate_event(device, event, battery->flags.present);
677 break;
678 default:
679 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
4be44fcd 680 "Unsupported event [0x%x]\n", event));
1da177e4
LT
681 break;
682 }
683
d550d98d 684 return;
1da177e4
LT
685}
686
4be44fcd 687static int acpi_battery_add(struct acpi_device *device)
1da177e4 688{
4be44fcd
LB
689 int result = 0;
690 acpi_status status = 0;
691 struct acpi_battery *battery = NULL;
1da177e4 692
4be44fcd 693
1da177e4 694 if (!device)
d550d98d 695 return -EINVAL;
1da177e4
LT
696
697 battery = kmalloc(sizeof(struct acpi_battery), GFP_KERNEL);
698 if (!battery)
d550d98d 699 return -ENOMEM;
1da177e4
LT
700 memset(battery, 0, sizeof(struct acpi_battery));
701
145def84 702 battery->device = device;
1da177e4
LT
703 strcpy(acpi_device_name(device), ACPI_BATTERY_DEVICE_NAME);
704 strcpy(acpi_device_class(device), ACPI_BATTERY_CLASS);
705 acpi_driver_data(device) = battery;
706
707 result = acpi_battery_check(battery);
708 if (result)
709 goto end;
710
711 result = acpi_battery_add_fs(device);
712 if (result)
713 goto end;
714
3b073ec3 715 status = acpi_install_notify_handler(device->handle,
9fdae727 716 ACPI_ALL_NOTIFY,
4be44fcd 717 acpi_battery_notify, battery);
1da177e4 718 if (ACPI_FAILURE(status)) {
1da177e4
LT
719 result = -ENODEV;
720 goto end;
721 }
722
723 printk(KERN_INFO PREFIX "%s Slot [%s] (battery %s)\n",
4be44fcd
LB
724 ACPI_BATTERY_DEVICE_NAME, acpi_device_bid(device),
725 device->status.battery_present ? "present" : "absent");
726
727 end:
1da177e4
LT
728 if (result) {
729 acpi_battery_remove_fs(device);
730 kfree(battery);
731 }
732
d550d98d 733 return result;
1da177e4
LT
734}
735
4be44fcd 736static int acpi_battery_remove(struct acpi_device *device, int type)
1da177e4 737{
4be44fcd
LB
738 acpi_status status = 0;
739 struct acpi_battery *battery = NULL;
1da177e4 740
1da177e4
LT
741
742 if (!device || !acpi_driver_data(device))
d550d98d 743 return -EINVAL;
1da177e4 744
4be44fcd 745 battery = (struct acpi_battery *)acpi_driver_data(device);
1da177e4 746
3b073ec3 747 status = acpi_remove_notify_handler(device->handle,
9fdae727 748 ACPI_ALL_NOTIFY,
4be44fcd 749 acpi_battery_notify);
1da177e4
LT
750
751 acpi_battery_remove_fs(device);
752
753 kfree(battery);
754
d550d98d 755 return 0;
1da177e4
LT
756}
757
34c4415a
JK
758/* this is needed to learn about changes made in suspended state */
759static int acpi_battery_resume(struct acpi_device *device, int state)
760{
761 struct acpi_battery *battery;
762
763 if (!device)
764 return -EINVAL;
765
766 battery = device->driver_data;
767 return acpi_battery_check(battery);
768}
769
4be44fcd 770static int __init acpi_battery_init(void)
1da177e4 771{
3f86b832 772 int result;
1da177e4 773
4d8316d5
PM
774 if (acpi_disabled)
775 return -ENODEV;
776
3f86b832 777 acpi_battery_dir = acpi_lock_battery_dir();
1da177e4 778 if (!acpi_battery_dir)
d550d98d 779 return -ENODEV;
1da177e4
LT
780
781 result = acpi_bus_register_driver(&acpi_battery_driver);
782 if (result < 0) {
3f86b832 783 acpi_unlock_battery_dir(acpi_battery_dir);
d550d98d 784 return -ENODEV;
1da177e4
LT
785 }
786
d550d98d 787 return 0;
1da177e4
LT
788}
789
4be44fcd 790static void __exit acpi_battery_exit(void)
1da177e4 791{
1da177e4
LT
792
793 acpi_bus_unregister_driver(&acpi_battery_driver);
794
3f86b832 795 acpi_unlock_battery_dir(acpi_battery_dir);
1da177e4 796
d550d98d 797 return;
1da177e4
LT
798}
799
1da177e4
LT
800module_init(acpi_battery_init);
801module_exit(acpi_battery_exit);