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