2 * battery.c - ACPI Battery Driver (Revision: 2.0)
4 * Copyright (C) 2007 Alexey Starikovskiy <astarikovskiy@suse.de>
5 * Copyright (C) 2004-2007 Vladimir Lebedev <vladimir.p.lebedev@intel.com>
6 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
7 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
9 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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.
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.
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.
25 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
28 #include <linux/kernel.h>
29 #include <linux/module.h>
30 #include <linux/init.h>
31 #include <linux/types.h>
32 #include <linux/jiffies.h>
34 #ifdef CONFIG_ACPI_PROCFS_POWER
35 #include <linux/proc_fs.h>
36 #include <linux/seq_file.h>
37 #include <asm/uaccess.h>
40 #include <acpi/acpi_bus.h>
41 #include <acpi/acpi_drivers.h>
43 #ifdef CONFIG_ACPI_SYSFS_POWER
44 #include <linux/power_supply.h>
47 #define ACPI_BATTERY_VALUE_UNKNOWN 0xFFFFFFFF
49 #define ACPI_BATTERY_COMPONENT 0x00040000
50 #define ACPI_BATTERY_CLASS "battery"
51 #define ACPI_BATTERY_DEVICE_NAME "Battery"
52 #define ACPI_BATTERY_NOTIFY_STATUS 0x80
53 #define ACPI_BATTERY_NOTIFY_INFO 0x81
55 #define _COMPONENT ACPI_BATTERY_COMPONENT
57 ACPI_MODULE_NAME("battery");
59 MODULE_AUTHOR("Paul Diefenbaugh");
60 MODULE_AUTHOR("Alexey Starikovskiy <astarikovskiy@suse.de>");
61 MODULE_DESCRIPTION("ACPI Battery Driver");
62 MODULE_LICENSE("GPL");
64 static unsigned int cache_time
= 1000;
65 module_param(cache_time
, uint
, 0644);
66 MODULE_PARM_DESC(cache_time
, "cache time in milliseconds");
68 #ifdef CONFIG_ACPI_PROCFS_POWER
69 extern struct proc_dir_entry
*acpi_lock_battery_dir(void);
70 extern void *acpi_unlock_battery_dir(struct proc_dir_entry
*acpi_battery_dir
);
72 enum acpi_battery_files
{
76 ACPI_BATTERY_NUMFILES
,
81 static const struct acpi_device_id battery_device_ids
[] = {
86 MODULE_DEVICE_TABLE(acpi
, battery_device_ids
);
91 #ifdef CONFIG_ACPI_SYSFS_POWER
92 struct power_supply bat
;
94 struct acpi_device
*device
;
95 unsigned long update_time
;
100 int full_charge_capacity
;
103 int design_capacity_warning
;
104 int design_capacity_low
;
105 int capacity_granularity_1
;
106 int capacity_granularity_2
;
108 char model_number
[32];
109 char serial_number
[32];
117 #define to_acpi_battery(x) container_of(x, struct acpi_battery, bat);
119 inline int acpi_battery_present(struct acpi_battery
*battery
)
121 return battery
->device
->status
.battery_present
;
124 #ifdef CONFIG_ACPI_SYSFS_POWER
125 static int acpi_battery_technology(struct acpi_battery
*battery
)
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
;
133 if (!strncasecmp("LI-ION", battery
->type
, 6))
134 return POWER_SUPPLY_TECHNOLOGY_LION
;
135 if (!strcasecmp("LiP", battery
->type
))
136 return POWER_SUPPLY_TECHNOLOGY_LIPO
;
137 return POWER_SUPPLY_TECHNOLOGY_UNKNOWN
;
140 static int acpi_battery_get_state(struct acpi_battery
*battery
);
142 static int acpi_battery_get_property(struct power_supply
*psy
,
143 enum power_supply_property psp
,
144 union power_supply_propval
*val
)
146 struct acpi_battery
*battery
= to_acpi_battery(psy
);
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
)
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
;
162 val
->intval
= POWER_SUPPLY_STATUS_UNKNOWN
;
164 case POWER_SUPPLY_PROP_PRESENT
:
165 val
->intval
= acpi_battery_present(battery
);
167 case POWER_SUPPLY_PROP_TECHNOLOGY
:
168 val
->intval
= acpi_battery_technology(battery
);
170 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN
:
171 val
->intval
= battery
->design_voltage
* 1000;
173 case POWER_SUPPLY_PROP_VOLTAGE_NOW
:
174 val
->intval
= battery
->voltage_now
* 1000;
176 case POWER_SUPPLY_PROP_CURRENT_NOW
:
177 val
->intval
= battery
->current_now
* 1000;
179 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN
:
180 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN
:
181 val
->intval
= battery
->design_capacity
* 1000;
183 case POWER_SUPPLY_PROP_CHARGE_FULL
:
184 case POWER_SUPPLY_PROP_ENERGY_FULL
:
185 val
->intval
= battery
->full_charge_capacity
* 1000;
187 case POWER_SUPPLY_PROP_CHARGE_NOW
:
188 case POWER_SUPPLY_PROP_ENERGY_NOW
:
189 val
->intval
= battery
->capacity_now
* 1000;
191 case POWER_SUPPLY_PROP_MODEL_NAME
:
192 val
->strval
= battery
->model_number
;
194 case POWER_SUPPLY_PROP_MANUFACTURER
:
195 val
->strval
= battery
->oem_info
;
203 static enum power_supply_property charge_battery_props
[] = {
204 POWER_SUPPLY_PROP_STATUS
,
205 POWER_SUPPLY_PROP_PRESENT
,
206 POWER_SUPPLY_PROP_TECHNOLOGY
,
207 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN
,
208 POWER_SUPPLY_PROP_VOLTAGE_NOW
,
209 POWER_SUPPLY_PROP_CURRENT_NOW
,
210 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN
,
211 POWER_SUPPLY_PROP_CHARGE_FULL
,
212 POWER_SUPPLY_PROP_CHARGE_NOW
,
213 POWER_SUPPLY_PROP_MODEL_NAME
,
214 POWER_SUPPLY_PROP_MANUFACTURER
,
217 static enum power_supply_property energy_battery_props
[] = {
218 POWER_SUPPLY_PROP_STATUS
,
219 POWER_SUPPLY_PROP_PRESENT
,
220 POWER_SUPPLY_PROP_TECHNOLOGY
,
221 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN
,
222 POWER_SUPPLY_PROP_VOLTAGE_NOW
,
223 POWER_SUPPLY_PROP_CURRENT_NOW
,
224 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN
,
225 POWER_SUPPLY_PROP_ENERGY_FULL
,
226 POWER_SUPPLY_PROP_ENERGY_NOW
,
227 POWER_SUPPLY_PROP_MODEL_NAME
,
228 POWER_SUPPLY_PROP_MANUFACTURER
,
232 #ifdef CONFIG_ACPI_PROCFS_POWER
233 inline char *acpi_battery_units(struct acpi_battery
*battery
)
235 return (battery
->power_unit
)?"mA":"mW";
239 /* --------------------------------------------------------------------------
241 -------------------------------------------------------------------------- */
242 struct acpi_offsets
{
243 size_t offset
; /* offset inside struct acpi_sbs_battery */
244 u8 mode
; /* int or string? */
247 static struct acpi_offsets state_offsets
[] = {
248 {offsetof(struct acpi_battery
, state
), 0},
249 {offsetof(struct acpi_battery
, current_now
), 0},
250 {offsetof(struct acpi_battery
, capacity_now
), 0},
251 {offsetof(struct acpi_battery
, voltage_now
), 0},
254 static struct acpi_offsets info_offsets
[] = {
255 {offsetof(struct acpi_battery
, power_unit
), 0},
256 {offsetof(struct acpi_battery
, design_capacity
), 0},
257 {offsetof(struct acpi_battery
, full_charge_capacity
), 0},
258 {offsetof(struct acpi_battery
, technology
), 0},
259 {offsetof(struct acpi_battery
, design_voltage
), 0},
260 {offsetof(struct acpi_battery
, design_capacity_warning
), 0},
261 {offsetof(struct acpi_battery
, design_capacity_low
), 0},
262 {offsetof(struct acpi_battery
, capacity_granularity_1
), 0},
263 {offsetof(struct acpi_battery
, capacity_granularity_2
), 0},
264 {offsetof(struct acpi_battery
, model_number
), 1},
265 {offsetof(struct acpi_battery
, serial_number
), 1},
266 {offsetof(struct acpi_battery
, type
), 1},
267 {offsetof(struct acpi_battery
, oem_info
), 1},
270 static int extract_package(struct acpi_battery
*battery
,
271 union acpi_object
*package
,
272 struct acpi_offsets
*offsets
, int num
)
275 union acpi_object
*element
;
276 if (package
->type
!= ACPI_TYPE_PACKAGE
)
278 for (i
= 0; i
< num
; ++i
) {
279 if (package
->package
.count
<= i
)
281 element
= &package
->package
.elements
[i
];
282 if (offsets
[i
].mode
) {
283 u8
*ptr
= (u8
*)battery
+ offsets
[i
].offset
;
284 if (element
->type
== ACPI_TYPE_STRING
||
285 element
->type
== ACPI_TYPE_BUFFER
)
286 strncpy(ptr
, element
->string
.pointer
, 32);
287 else if (element
->type
== ACPI_TYPE_INTEGER
) {
288 strncpy(ptr
, (u8
*)&element
->integer
.value
,
289 sizeof(acpi_integer
));
290 ptr
[sizeof(acpi_integer
)] = 0;
291 } else return -EFAULT
;
293 if (element
->type
== ACPI_TYPE_INTEGER
) {
294 int *x
= (int *)((u8
*)battery
+
296 *x
= element
->integer
.value
;
297 } else return -EFAULT
;
303 static int acpi_battery_get_status(struct acpi_battery
*battery
)
305 if (acpi_bus_get_status(battery
->device
)) {
306 ACPI_EXCEPTION((AE_INFO
, AE_ERROR
, "Evaluating _STA"));
312 static int acpi_battery_get_info(struct acpi_battery
*battery
)
314 int result
= -EFAULT
;
315 acpi_status status
= 0;
316 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
318 if (!acpi_battery_present(battery
))
320 mutex_lock(&battery
->lock
);
321 status
= acpi_evaluate_object(battery
->device
->handle
, "_BIF",
323 mutex_unlock(&battery
->lock
);
325 if (ACPI_FAILURE(status
)) {
326 ACPI_EXCEPTION((AE_INFO
, status
, "Evaluating _BIF"));
330 result
= extract_package(battery
, buffer
.pointer
,
331 info_offsets
, ARRAY_SIZE(info_offsets
));
332 kfree(buffer
.pointer
);
336 static int acpi_battery_get_state(struct acpi_battery
*battery
)
339 acpi_status status
= 0;
340 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
342 if (!acpi_battery_present(battery
))
345 if (battery
->update_time
&&
346 time_before(jiffies
, battery
->update_time
+
347 msecs_to_jiffies(cache_time
)))
350 mutex_lock(&battery
->lock
);
351 status
= acpi_evaluate_object(battery
->device
->handle
, "_BST",
353 mutex_unlock(&battery
->lock
);
355 if (ACPI_FAILURE(status
)) {
356 ACPI_EXCEPTION((AE_INFO
, status
, "Evaluating _BST"));
360 result
= extract_package(battery
, buffer
.pointer
,
361 state_offsets
, ARRAY_SIZE(state_offsets
));
362 battery
->update_time
= jiffies
;
363 kfree(buffer
.pointer
);
367 static int acpi_battery_set_alarm(struct acpi_battery
*battery
)
369 acpi_status status
= 0;
370 union acpi_object arg0
= { .type
= ACPI_TYPE_INTEGER
};
371 struct acpi_object_list arg_list
= { 1, &arg0
};
373 if (!acpi_battery_present(battery
)|| !battery
->alarm_present
)
376 arg0
.integer
.value
= battery
->alarm
;
378 mutex_lock(&battery
->lock
);
379 status
= acpi_evaluate_object(battery
->device
->handle
, "_BTP",
381 mutex_unlock(&battery
->lock
);
383 if (ACPI_FAILURE(status
))
386 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Alarm set to %d\n", battery
->alarm
));
390 static int acpi_battery_init_alarm(struct acpi_battery
*battery
)
392 acpi_status status
= AE_OK
;
393 acpi_handle handle
= NULL
;
395 /* See if alarms are supported, and if so, set default */
396 status
= acpi_get_handle(battery
->device
->handle
, "_BTP", &handle
);
397 if (ACPI_FAILURE(status
)) {
398 battery
->alarm_present
= 0;
401 battery
->alarm_present
= 1;
403 battery
->alarm
= battery
->design_capacity_warning
;
404 return acpi_battery_set_alarm(battery
);
407 #ifdef CONFIG_ACPI_SYSFS_POWER
408 static ssize_t
acpi_battery_alarm_show(struct device
*dev
,
409 struct device_attribute
*attr
,
412 struct acpi_battery
*battery
= to_acpi_battery(dev_get_drvdata(dev
));
413 return sprintf(buf
, "%d\n", battery
->alarm
* 1000);
416 static ssize_t
acpi_battery_alarm_store(struct device
*dev
,
417 struct device_attribute
*attr
,
418 const char *buf
, size_t count
)
421 struct acpi_battery
*battery
= to_acpi_battery(dev_get_drvdata(dev
));
422 if (sscanf(buf
, "%ld\n", &x
) == 1)
423 battery
->alarm
= x
/1000;
424 if (acpi_battery_present(battery
))
425 acpi_battery_set_alarm(battery
);
429 static struct device_attribute alarm_attr
= {
430 .attr
= {.name
= "alarm", .mode
= 0644, .owner
= THIS_MODULE
},
431 .show
= acpi_battery_alarm_show
,
432 .store
= acpi_battery_alarm_store
,
435 static int sysfs_add_battery(struct acpi_battery
*battery
)
439 if (battery
->power_unit
) {
440 battery
->bat
.properties
= charge_battery_props
;
441 battery
->bat
.num_properties
=
442 ARRAY_SIZE(charge_battery_props
);
444 battery
->bat
.properties
= energy_battery_props
;
445 battery
->bat
.num_properties
=
446 ARRAY_SIZE(energy_battery_props
);
449 battery
->bat
.name
= acpi_device_bid(battery
->device
);
450 battery
->bat
.type
= POWER_SUPPLY_TYPE_BATTERY
;
451 battery
->bat
.get_property
= acpi_battery_get_property
;
453 result
= power_supply_register(&battery
->device
->dev
, &battery
->bat
);
456 return device_create_file(battery
->bat
.dev
, &alarm_attr
);
459 static void sysfs_remove_battery(struct acpi_battery
*battery
)
461 if (!battery
->bat
.dev
)
463 device_remove_file(battery
->bat
.dev
, &alarm_attr
);
464 power_supply_unregister(&battery
->bat
);
465 battery
->bat
.dev
= NULL
;
469 static int acpi_battery_update(struct acpi_battery
*battery
)
472 result
= acpi_battery_get_status(battery
);
475 #ifdef CONFIG_ACPI_SYSFS_POWER
476 if (!acpi_battery_present(battery
)) {
477 sysfs_remove_battery(battery
);
478 battery
->update_time
= 0;
482 if (!battery
->update_time
) {
483 result
= acpi_battery_get_info(battery
);
486 acpi_battery_init_alarm(battery
);
488 #ifdef CONFIG_ACPI_SYSFS_POWER
489 if (!battery
->bat
.dev
)
490 sysfs_add_battery(battery
);
492 return acpi_battery_get_state(battery
);
495 /* --------------------------------------------------------------------------
497 -------------------------------------------------------------------------- */
499 #ifdef CONFIG_ACPI_PROCFS_POWER
500 static struct proc_dir_entry
*acpi_battery_dir
;
502 static int acpi_battery_print_info(struct seq_file
*seq
, int result
)
504 struct acpi_battery
*battery
= seq
->private;
509 seq_printf(seq
, "present: %s\n",
510 acpi_battery_present(battery
)?"yes":"no");
511 if (!acpi_battery_present(battery
))
513 if (battery
->design_capacity
== ACPI_BATTERY_VALUE_UNKNOWN
)
514 seq_printf(seq
, "design capacity: unknown\n");
516 seq_printf(seq
, "design capacity: %d %sh\n",
517 battery
->design_capacity
,
518 acpi_battery_units(battery
));
520 if (battery
->full_charge_capacity
== ACPI_BATTERY_VALUE_UNKNOWN
)
521 seq_printf(seq
, "last full capacity: unknown\n");
523 seq_printf(seq
, "last full capacity: %d %sh\n",
524 battery
->full_charge_capacity
,
525 acpi_battery_units(battery
));
527 seq_printf(seq
, "battery technology: %srechargeable\n",
528 (!battery
->technology
)?"non-":"");
530 if (battery
->design_voltage
== ACPI_BATTERY_VALUE_UNKNOWN
)
531 seq_printf(seq
, "design voltage: unknown\n");
533 seq_printf(seq
, "design voltage: %d mV\n",
534 battery
->design_voltage
);
535 seq_printf(seq
, "design capacity warning: %d %sh\n",
536 battery
->design_capacity_warning
,
537 acpi_battery_units(battery
));
538 seq_printf(seq
, "design capacity low: %d %sh\n",
539 battery
->design_capacity_low
,
540 acpi_battery_units(battery
));
541 seq_printf(seq
, "capacity granularity 1: %d %sh\n",
542 battery
->capacity_granularity_1
,
543 acpi_battery_units(battery
));
544 seq_printf(seq
, "capacity granularity 2: %d %sh\n",
545 battery
->capacity_granularity_2
,
546 acpi_battery_units(battery
));
547 seq_printf(seq
, "model number: %s\n", battery
->model_number
);
548 seq_printf(seq
, "serial number: %s\n", battery
->serial_number
);
549 seq_printf(seq
, "battery type: %s\n", battery
->type
);
550 seq_printf(seq
, "OEM info: %s\n", battery
->oem_info
);
553 seq_printf(seq
, "ERROR: Unable to read battery info\n");
557 static int acpi_battery_print_state(struct seq_file
*seq
, int result
)
559 struct acpi_battery
*battery
= seq
->private;
564 seq_printf(seq
, "present: %s\n",
565 acpi_battery_present(battery
)?"yes":"no");
566 if (!acpi_battery_present(battery
))
569 seq_printf(seq
, "capacity state: %s\n",
570 (battery
->state
& 0x04)?"critical":"ok");
571 if ((battery
->state
& 0x01) && (battery
->state
& 0x02))
573 "charging state: charging/discharging\n");
574 else if (battery
->state
& 0x01)
575 seq_printf(seq
, "charging state: discharging\n");
576 else if (battery
->state
& 0x02)
577 seq_printf(seq
, "charging state: charging\n");
579 seq_printf(seq
, "charging state: charged\n");
581 if (battery
->current_now
== ACPI_BATTERY_VALUE_UNKNOWN
)
582 seq_printf(seq
, "present rate: unknown\n");
584 seq_printf(seq
, "present rate: %d %s\n",
585 battery
->current_now
, acpi_battery_units(battery
));
587 if (battery
->capacity_now
== ACPI_BATTERY_VALUE_UNKNOWN
)
588 seq_printf(seq
, "remaining capacity: unknown\n");
590 seq_printf(seq
, "remaining capacity: %d %sh\n",
591 battery
->capacity_now
, acpi_battery_units(battery
));
592 if (battery
->voltage_now
== ACPI_BATTERY_VALUE_UNKNOWN
)
593 seq_printf(seq
, "present voltage: unknown\n");
595 seq_printf(seq
, "present voltage: %d mV\n",
596 battery
->voltage_now
);
599 seq_printf(seq
, "ERROR: Unable to read battery state\n");
604 static int acpi_battery_print_alarm(struct seq_file
*seq
, int result
)
606 struct acpi_battery
*battery
= seq
->private;
611 if (!acpi_battery_present(battery
)) {
612 seq_printf(seq
, "present: no\n");
615 seq_printf(seq
, "alarm: ");
617 seq_printf(seq
, "unsupported\n");
619 seq_printf(seq
, "%u %sh\n", battery
->alarm
,
620 acpi_battery_units(battery
));
623 seq_printf(seq
, "ERROR: Unable to read battery alarm\n");
627 static ssize_t
acpi_battery_write_alarm(struct file
*file
,
628 const char __user
* buffer
,
629 size_t count
, loff_t
* ppos
)
632 char alarm_string
[12] = { '\0' };
633 struct seq_file
*m
= file
->private_data
;
634 struct acpi_battery
*battery
= m
->private;
636 if (!battery
|| (count
> sizeof(alarm_string
) - 1))
638 if (!acpi_battery_present(battery
)) {
642 if (copy_from_user(alarm_string
, buffer
, count
)) {
646 alarm_string
[count
] = '\0';
647 battery
->alarm
= simple_strtol(alarm_string
, NULL
, 0);
648 result
= acpi_battery_set_alarm(battery
);
655 typedef int(*print_func
)(struct seq_file
*seq
, int result
);
657 static print_func acpi_print_funcs
[ACPI_BATTERY_NUMFILES
] = {
658 acpi_battery_print_info
,
659 acpi_battery_print_state
,
660 acpi_battery_print_alarm
,
663 static int acpi_battery_read(int fid
, struct seq_file
*seq
)
665 struct acpi_battery
*battery
= seq
->private;
666 int result
= acpi_battery_update(battery
);
667 return acpi_print_funcs
[fid
](seq
, result
);
670 #define DECLARE_FILE_FUNCTIONS(_name) \
671 static int acpi_battery_read_##_name(struct seq_file *seq, void *offset) \
673 return acpi_battery_read(_name##_tag, seq); \
675 static int acpi_battery_##_name##_open_fs(struct inode *inode, struct file *file) \
677 return single_open(file, acpi_battery_read_##_name, PDE(inode)->data); \
680 DECLARE_FILE_FUNCTIONS(info
);
681 DECLARE_FILE_FUNCTIONS(state
);
682 DECLARE_FILE_FUNCTIONS(alarm
);
684 #undef DECLARE_FILE_FUNCTIONS
686 #define FILE_DESCRIPTION_RO(_name) \
688 .name = __stringify(_name), \
691 .open = acpi_battery_##_name##_open_fs, \
693 .llseek = seq_lseek, \
694 .release = single_release, \
695 .owner = THIS_MODULE, \
699 #define FILE_DESCRIPTION_RW(_name) \
701 .name = __stringify(_name), \
702 .mode = S_IFREG | S_IRUGO | S_IWUSR, \
704 .open = acpi_battery_##_name##_open_fs, \
706 .llseek = seq_lseek, \
707 .write = acpi_battery_write_##_name, \
708 .release = single_release, \
709 .owner = THIS_MODULE, \
713 static struct battery_file
{
714 struct file_operations ops
;
717 } acpi_battery_file
[] = {
718 FILE_DESCRIPTION_RO(info
),
719 FILE_DESCRIPTION_RO(state
),
720 FILE_DESCRIPTION_RW(alarm
),
723 #undef FILE_DESCRIPTION_RO
724 #undef FILE_DESCRIPTION_RW
726 static int acpi_battery_add_fs(struct acpi_device
*device
)
728 struct proc_dir_entry
*entry
= NULL
;
731 if (!acpi_device_dir(device
)) {
732 acpi_device_dir(device
) = proc_mkdir(acpi_device_bid(device
),
734 if (!acpi_device_dir(device
))
736 acpi_device_dir(device
)->owner
= THIS_MODULE
;
739 for (i
= 0; i
< ACPI_BATTERY_NUMFILES
; ++i
) {
740 entry
= create_proc_entry(acpi_battery_file
[i
].name
,
741 acpi_battery_file
[i
].mode
, acpi_device_dir(device
));
745 entry
->proc_fops
= &acpi_battery_file
[i
].ops
;
746 entry
->data
= acpi_driver_data(device
);
747 entry
->owner
= THIS_MODULE
;
753 static void acpi_battery_remove_fs(struct acpi_device
*device
)
756 if (!acpi_device_dir(device
))
758 for (i
= 0; i
< ACPI_BATTERY_NUMFILES
; ++i
)
759 remove_proc_entry(acpi_battery_file
[i
].name
,
760 acpi_device_dir(device
));
762 remove_proc_entry(acpi_device_bid(device
), acpi_battery_dir
);
763 acpi_device_dir(device
) = NULL
;
768 /* --------------------------------------------------------------------------
770 -------------------------------------------------------------------------- */
772 static void acpi_battery_notify(acpi_handle handle
, u32 event
, void *data
)
774 struct acpi_battery
*battery
= data
;
775 struct acpi_device
*device
;
778 device
= battery
->device
;
779 acpi_battery_update(battery
);
780 acpi_bus_generate_proc_event(device
, event
,
781 acpi_battery_present(battery
));
782 acpi_bus_generate_netlink_event(device
->pnp
.device_class
,
783 device
->dev
.bus_id
, event
,
784 acpi_battery_present(battery
));
785 #ifdef CONFIG_ACPI_SYSFS_POWER
786 /* acpi_batter_update could remove power_supply object */
787 if (battery
->bat
.dev
)
788 kobject_uevent(&battery
->bat
.dev
->kobj
, KOBJ_CHANGE
);
792 static int acpi_battery_add(struct acpi_device
*device
)
795 acpi_status status
= 0;
796 struct acpi_battery
*battery
= NULL
;
799 battery
= kzalloc(sizeof(struct acpi_battery
), GFP_KERNEL
);
802 battery
->device
= device
;
803 strcpy(acpi_device_name(device
), ACPI_BATTERY_DEVICE_NAME
);
804 strcpy(acpi_device_class(device
), ACPI_BATTERY_CLASS
);
805 acpi_driver_data(device
) = battery
;
806 mutex_init(&battery
->lock
);
807 acpi_battery_update(battery
);
808 #ifdef CONFIG_ACPI_PROCFS_POWER
809 result
= acpi_battery_add_fs(device
);
813 status
= acpi_install_notify_handler(device
->handle
,
815 acpi_battery_notify
, battery
);
816 if (ACPI_FAILURE(status
)) {
817 ACPI_EXCEPTION((AE_INFO
, status
, "Installing notify handler"));
821 printk(KERN_INFO PREFIX
"%s Slot [%s] (battery %s)\n",
822 ACPI_BATTERY_DEVICE_NAME
, acpi_device_bid(device
),
823 device
->status
.battery_present
? "present" : "absent");
826 #ifdef CONFIG_ACPI_PROCFS_POWER
827 acpi_battery_remove_fs(device
);
834 static int acpi_battery_remove(struct acpi_device
*device
, int type
)
836 acpi_status status
= 0;
837 struct acpi_battery
*battery
= NULL
;
839 if (!device
|| !acpi_driver_data(device
))
841 battery
= acpi_driver_data(device
);
842 status
= acpi_remove_notify_handler(device
->handle
,
844 acpi_battery_notify
);
845 #ifdef CONFIG_ACPI_PROCFS_POWER
846 acpi_battery_remove_fs(device
);
848 #ifdef CONFIG_ACPI_SYSFS_POWER
849 sysfs_remove_battery(battery
);
851 mutex_destroy(&battery
->lock
);
856 /* this is needed to learn about changes made in suspended state */
857 static int acpi_battery_resume(struct acpi_device
*device
)
859 struct acpi_battery
*battery
;
862 battery
= acpi_driver_data(device
);
863 battery
->update_time
= 0;
864 acpi_battery_update(battery
);
868 static struct acpi_driver acpi_battery_driver
= {
870 .class = ACPI_BATTERY_CLASS
,
871 .ids
= battery_device_ids
,
873 .add
= acpi_battery_add
,
874 .resume
= acpi_battery_resume
,
875 .remove
= acpi_battery_remove
,
879 static int __init
acpi_battery_init(void)
883 #ifdef CONFIG_ACPI_PROCFS_POWER
884 acpi_battery_dir
= acpi_lock_battery_dir();
885 if (!acpi_battery_dir
)
888 if (acpi_bus_register_driver(&acpi_battery_driver
) < 0) {
889 #ifdef CONFIG_ACPI_PROCFS_POWER
890 acpi_unlock_battery_dir(acpi_battery_dir
);
897 static void __exit
acpi_battery_exit(void)
899 acpi_bus_unregister_driver(&acpi_battery_driver
);
900 #ifdef CONFIG_ACPI_PROCFS_POWER
901 acpi_unlock_battery_dir(acpi_battery_dir
);
905 module_init(acpi_battery_init
);
906 module_exit(acpi_battery_exit
);