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_CLASS "battery"
50 #define ACPI_BATTERY_DEVICE_NAME "Battery"
51 #define ACPI_BATTERY_NOTIFY_STATUS 0x80
52 #define ACPI_BATTERY_NOTIFY_INFO 0x81
54 #define _COMPONENT ACPI_BATTERY_COMPONENT
56 ACPI_MODULE_NAME("battery");
58 MODULE_AUTHOR("Paul Diefenbaugh");
59 MODULE_AUTHOR("Alexey Starikovskiy <astarikovskiy@suse.de>");
60 MODULE_DESCRIPTION("ACPI Battery Driver");
61 MODULE_LICENSE("GPL");
63 static unsigned int cache_time
= 1000;
64 module_param(cache_time
, uint
, 0644);
65 MODULE_PARM_DESC(cache_time
, "cache time in milliseconds");
67 #ifdef CONFIG_ACPI_PROCFS_POWER
68 extern struct proc_dir_entry
*acpi_lock_battery_dir(void);
69 extern void *acpi_unlock_battery_dir(struct proc_dir_entry
*acpi_battery_dir
);
71 enum acpi_battery_files
{
75 ACPI_BATTERY_NUMFILES
,
80 static const struct acpi_device_id battery_device_ids
[] = {
85 MODULE_DEVICE_TABLE(acpi
, battery_device_ids
);
90 #ifdef CONFIG_ACPI_SYSFS_POWER
91 struct power_supply bat
;
93 struct acpi_device
*device
;
94 unsigned long update_time
;
99 int full_charge_capacity
;
102 int design_capacity_warning
;
103 int design_capacity_low
;
104 int capacity_granularity_1
;
105 int capacity_granularity_2
;
107 char model_number
[32];
108 char serial_number
[32];
116 #define to_acpi_battery(x) container_of(x, struct acpi_battery, bat);
118 inline int acpi_battery_present(struct acpi_battery
*battery
)
120 return battery
->device
->status
.battery_present
;
123 #ifdef CONFIG_ACPI_SYSFS_POWER
124 static int acpi_battery_technology(struct acpi_battery
*battery
)
126 if (!strcasecmp("NiCd", battery
->type
))
127 return POWER_SUPPLY_TECHNOLOGY_NiCd
;
128 if (!strcasecmp("NiMH", battery
->type
))
129 return POWER_SUPPLY_TECHNOLOGY_NiMH
;
130 if (!strcasecmp("LION", battery
->type
))
131 return POWER_SUPPLY_TECHNOLOGY_LION
;
132 if (!strncasecmp("LI-ION", battery
->type
, 6))
133 return POWER_SUPPLY_TECHNOLOGY_LION
;
134 if (!strcasecmp("LiP", battery
->type
))
135 return POWER_SUPPLY_TECHNOLOGY_LIPO
;
136 return POWER_SUPPLY_TECHNOLOGY_UNKNOWN
;
139 static int acpi_battery_get_state(struct acpi_battery
*battery
);
141 static int acpi_battery_get_property(struct power_supply
*psy
,
142 enum power_supply_property psp
,
143 union power_supply_propval
*val
)
145 struct acpi_battery
*battery
= to_acpi_battery(psy
);
147 if (acpi_battery_present(battery
)) {
148 /* run battery update only if it is present */
149 acpi_battery_get_state(battery
);
150 } else if (psp
!= POWER_SUPPLY_PROP_PRESENT
)
153 case POWER_SUPPLY_PROP_STATUS
:
154 if (battery
->state
& 0x01)
155 val
->intval
= POWER_SUPPLY_STATUS_DISCHARGING
;
156 else if (battery
->state
& 0x02)
157 val
->intval
= POWER_SUPPLY_STATUS_CHARGING
;
158 else if (battery
->state
== 0)
159 val
->intval
= POWER_SUPPLY_STATUS_FULL
;
161 val
->intval
= POWER_SUPPLY_STATUS_UNKNOWN
;
163 case POWER_SUPPLY_PROP_PRESENT
:
164 val
->intval
= acpi_battery_present(battery
);
166 case POWER_SUPPLY_PROP_TECHNOLOGY
:
167 val
->intval
= acpi_battery_technology(battery
);
169 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN
:
170 val
->intval
= battery
->design_voltage
* 1000;
172 case POWER_SUPPLY_PROP_VOLTAGE_NOW
:
173 val
->intval
= battery
->voltage_now
* 1000;
175 case POWER_SUPPLY_PROP_CURRENT_NOW
:
176 val
->intval
= battery
->current_now
* 1000;
178 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN
:
179 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN
:
180 val
->intval
= battery
->design_capacity
* 1000;
182 case POWER_SUPPLY_PROP_CHARGE_FULL
:
183 case POWER_SUPPLY_PROP_ENERGY_FULL
:
184 val
->intval
= battery
->full_charge_capacity
* 1000;
186 case POWER_SUPPLY_PROP_CHARGE_NOW
:
187 case POWER_SUPPLY_PROP_ENERGY_NOW
:
188 val
->intval
= battery
->capacity_now
* 1000;
190 case POWER_SUPPLY_PROP_MODEL_NAME
:
191 val
->strval
= battery
->model_number
;
193 case POWER_SUPPLY_PROP_MANUFACTURER
:
194 val
->strval
= battery
->oem_info
;
196 case POWER_SUPPLY_PROP_SERIAL_NUMBER
:
197 val
->strval
= battery
->serial_number
;
205 static enum power_supply_property charge_battery_props
[] = {
206 POWER_SUPPLY_PROP_STATUS
,
207 POWER_SUPPLY_PROP_PRESENT
,
208 POWER_SUPPLY_PROP_TECHNOLOGY
,
209 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN
,
210 POWER_SUPPLY_PROP_VOLTAGE_NOW
,
211 POWER_SUPPLY_PROP_CURRENT_NOW
,
212 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN
,
213 POWER_SUPPLY_PROP_CHARGE_FULL
,
214 POWER_SUPPLY_PROP_CHARGE_NOW
,
215 POWER_SUPPLY_PROP_MODEL_NAME
,
216 POWER_SUPPLY_PROP_MANUFACTURER
,
217 POWER_SUPPLY_PROP_SERIAL_NUMBER
,
220 static enum power_supply_property energy_battery_props
[] = {
221 POWER_SUPPLY_PROP_STATUS
,
222 POWER_SUPPLY_PROP_PRESENT
,
223 POWER_SUPPLY_PROP_TECHNOLOGY
,
224 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN
,
225 POWER_SUPPLY_PROP_VOLTAGE_NOW
,
226 POWER_SUPPLY_PROP_CURRENT_NOW
,
227 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN
,
228 POWER_SUPPLY_PROP_ENERGY_FULL
,
229 POWER_SUPPLY_PROP_ENERGY_NOW
,
230 POWER_SUPPLY_PROP_MODEL_NAME
,
231 POWER_SUPPLY_PROP_MANUFACTURER
,
232 POWER_SUPPLY_PROP_SERIAL_NUMBER
,
236 #ifdef CONFIG_ACPI_PROCFS_POWER
237 inline char *acpi_battery_units(struct acpi_battery
*battery
)
239 return (battery
->power_unit
)?"mA":"mW";
243 /* --------------------------------------------------------------------------
245 -------------------------------------------------------------------------- */
246 struct acpi_offsets
{
247 size_t offset
; /* offset inside struct acpi_sbs_battery */
248 u8 mode
; /* int or string? */
251 static struct acpi_offsets state_offsets
[] = {
252 {offsetof(struct acpi_battery
, state
), 0},
253 {offsetof(struct acpi_battery
, current_now
), 0},
254 {offsetof(struct acpi_battery
, capacity_now
), 0},
255 {offsetof(struct acpi_battery
, voltage_now
), 0},
258 static struct acpi_offsets info_offsets
[] = {
259 {offsetof(struct acpi_battery
, power_unit
), 0},
260 {offsetof(struct acpi_battery
, design_capacity
), 0},
261 {offsetof(struct acpi_battery
, full_charge_capacity
), 0},
262 {offsetof(struct acpi_battery
, technology
), 0},
263 {offsetof(struct acpi_battery
, design_voltage
), 0},
264 {offsetof(struct acpi_battery
, design_capacity_warning
), 0},
265 {offsetof(struct acpi_battery
, design_capacity_low
), 0},
266 {offsetof(struct acpi_battery
, capacity_granularity_1
), 0},
267 {offsetof(struct acpi_battery
, capacity_granularity_2
), 0},
268 {offsetof(struct acpi_battery
, model_number
), 1},
269 {offsetof(struct acpi_battery
, serial_number
), 1},
270 {offsetof(struct acpi_battery
, type
), 1},
271 {offsetof(struct acpi_battery
, oem_info
), 1},
274 static int extract_package(struct acpi_battery
*battery
,
275 union acpi_object
*package
,
276 struct acpi_offsets
*offsets
, int num
)
279 union acpi_object
*element
;
280 if (package
->type
!= ACPI_TYPE_PACKAGE
)
282 for (i
= 0; i
< num
; ++i
) {
283 if (package
->package
.count
<= i
)
285 element
= &package
->package
.elements
[i
];
286 if (offsets
[i
].mode
) {
287 u8
*ptr
= (u8
*)battery
+ offsets
[i
].offset
;
288 if (element
->type
== ACPI_TYPE_STRING
||
289 element
->type
== ACPI_TYPE_BUFFER
)
290 strncpy(ptr
, element
->string
.pointer
, 32);
291 else if (element
->type
== ACPI_TYPE_INTEGER
) {
292 strncpy(ptr
, (u8
*)&element
->integer
.value
,
293 sizeof(acpi_integer
));
294 ptr
[sizeof(acpi_integer
)] = 0;
296 *ptr
= 0; /* don't have value */
298 int *x
= (int *)((u8
*)battery
+ offsets
[i
].offset
);
299 *x
= (element
->type
== ACPI_TYPE_INTEGER
) ?
300 element
->integer
.value
: -1;
306 static int acpi_battery_get_status(struct acpi_battery
*battery
)
308 if (acpi_bus_get_status(battery
->device
)) {
309 ACPI_EXCEPTION((AE_INFO
, AE_ERROR
, "Evaluating _STA"));
315 static int acpi_battery_get_info(struct acpi_battery
*battery
)
317 int result
= -EFAULT
;
318 acpi_status status
= 0;
319 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
321 if (!acpi_battery_present(battery
))
323 mutex_lock(&battery
->lock
);
324 status
= acpi_evaluate_object(battery
->device
->handle
, "_BIF",
326 mutex_unlock(&battery
->lock
);
328 if (ACPI_FAILURE(status
)) {
329 ACPI_EXCEPTION((AE_INFO
, status
, "Evaluating _BIF"));
333 result
= extract_package(battery
, buffer
.pointer
,
334 info_offsets
, ARRAY_SIZE(info_offsets
));
335 kfree(buffer
.pointer
);
339 static int acpi_battery_get_state(struct acpi_battery
*battery
)
342 acpi_status status
= 0;
343 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
345 if (!acpi_battery_present(battery
))
348 if (battery
->update_time
&&
349 time_before(jiffies
, battery
->update_time
+
350 msecs_to_jiffies(cache_time
)))
353 mutex_lock(&battery
->lock
);
354 status
= acpi_evaluate_object(battery
->device
->handle
, "_BST",
356 mutex_unlock(&battery
->lock
);
358 if (ACPI_FAILURE(status
)) {
359 ACPI_EXCEPTION((AE_INFO
, status
, "Evaluating _BST"));
363 result
= extract_package(battery
, buffer
.pointer
,
364 state_offsets
, ARRAY_SIZE(state_offsets
));
365 battery
->update_time
= jiffies
;
366 kfree(buffer
.pointer
);
370 static int acpi_battery_set_alarm(struct acpi_battery
*battery
)
372 acpi_status status
= 0;
373 union acpi_object arg0
= { .type
= ACPI_TYPE_INTEGER
};
374 struct acpi_object_list arg_list
= { 1, &arg0
};
376 if (!acpi_battery_present(battery
)|| !battery
->alarm_present
)
379 arg0
.integer
.value
= battery
->alarm
;
381 mutex_lock(&battery
->lock
);
382 status
= acpi_evaluate_object(battery
->device
->handle
, "_BTP",
384 mutex_unlock(&battery
->lock
);
386 if (ACPI_FAILURE(status
))
389 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Alarm set to %d\n", battery
->alarm
));
393 static int acpi_battery_init_alarm(struct acpi_battery
*battery
)
395 acpi_status status
= AE_OK
;
396 acpi_handle handle
= NULL
;
398 /* See if alarms are supported, and if so, set default */
399 status
= acpi_get_handle(battery
->device
->handle
, "_BTP", &handle
);
400 if (ACPI_FAILURE(status
)) {
401 battery
->alarm_present
= 0;
404 battery
->alarm_present
= 1;
406 battery
->alarm
= battery
->design_capacity_warning
;
407 return acpi_battery_set_alarm(battery
);
410 #ifdef CONFIG_ACPI_SYSFS_POWER
411 static ssize_t
acpi_battery_alarm_show(struct device
*dev
,
412 struct device_attribute
*attr
,
415 struct acpi_battery
*battery
= to_acpi_battery(dev_get_drvdata(dev
));
416 return sprintf(buf
, "%d\n", battery
->alarm
* 1000);
419 static ssize_t
acpi_battery_alarm_store(struct device
*dev
,
420 struct device_attribute
*attr
,
421 const char *buf
, size_t count
)
424 struct acpi_battery
*battery
= to_acpi_battery(dev_get_drvdata(dev
));
425 if (sscanf(buf
, "%ld\n", &x
) == 1)
426 battery
->alarm
= x
/1000;
427 if (acpi_battery_present(battery
))
428 acpi_battery_set_alarm(battery
);
432 static struct device_attribute alarm_attr
= {
433 .attr
= {.name
= "alarm", .mode
= 0644},
434 .show
= acpi_battery_alarm_show
,
435 .store
= acpi_battery_alarm_store
,
438 static int sysfs_add_battery(struct acpi_battery
*battery
)
442 if (battery
->power_unit
) {
443 battery
->bat
.properties
= charge_battery_props
;
444 battery
->bat
.num_properties
=
445 ARRAY_SIZE(charge_battery_props
);
447 battery
->bat
.properties
= energy_battery_props
;
448 battery
->bat
.num_properties
=
449 ARRAY_SIZE(energy_battery_props
);
452 battery
->bat
.name
= acpi_device_bid(battery
->device
);
453 battery
->bat
.type
= POWER_SUPPLY_TYPE_BATTERY
;
454 battery
->bat
.get_property
= acpi_battery_get_property
;
456 result
= power_supply_register(&battery
->device
->dev
, &battery
->bat
);
459 return device_create_file(battery
->bat
.dev
, &alarm_attr
);
462 static void sysfs_remove_battery(struct acpi_battery
*battery
)
464 if (!battery
->bat
.dev
)
466 device_remove_file(battery
->bat
.dev
, &alarm_attr
);
467 power_supply_unregister(&battery
->bat
);
468 battery
->bat
.dev
= NULL
;
472 static int acpi_battery_update(struct acpi_battery
*battery
)
474 int result
, old_present
= acpi_battery_present(battery
);
475 result
= acpi_battery_get_status(battery
);
478 #ifdef CONFIG_ACPI_SYSFS_POWER
479 if (!acpi_battery_present(battery
)) {
480 sysfs_remove_battery(battery
);
481 battery
->update_time
= 0;
485 if (!battery
->update_time
||
486 old_present
!= acpi_battery_present(battery
)) {
487 result
= acpi_battery_get_info(battery
);
490 acpi_battery_init_alarm(battery
);
492 #ifdef CONFIG_ACPI_SYSFS_POWER
493 if (!battery
->bat
.dev
)
494 sysfs_add_battery(battery
);
496 return acpi_battery_get_state(battery
);
499 /* --------------------------------------------------------------------------
501 -------------------------------------------------------------------------- */
503 #ifdef CONFIG_ACPI_PROCFS_POWER
504 static struct proc_dir_entry
*acpi_battery_dir
;
506 static int acpi_battery_print_info(struct seq_file
*seq
, int result
)
508 struct acpi_battery
*battery
= seq
->private;
513 seq_printf(seq
, "present: %s\n",
514 acpi_battery_present(battery
)?"yes":"no");
515 if (!acpi_battery_present(battery
))
517 if (battery
->design_capacity
== ACPI_BATTERY_VALUE_UNKNOWN
)
518 seq_printf(seq
, "design capacity: unknown\n");
520 seq_printf(seq
, "design capacity: %d %sh\n",
521 battery
->design_capacity
,
522 acpi_battery_units(battery
));
524 if (battery
->full_charge_capacity
== ACPI_BATTERY_VALUE_UNKNOWN
)
525 seq_printf(seq
, "last full capacity: unknown\n");
527 seq_printf(seq
, "last full capacity: %d %sh\n",
528 battery
->full_charge_capacity
,
529 acpi_battery_units(battery
));
531 seq_printf(seq
, "battery technology: %srechargeable\n",
532 (!battery
->technology
)?"non-":"");
534 if (battery
->design_voltage
== ACPI_BATTERY_VALUE_UNKNOWN
)
535 seq_printf(seq
, "design voltage: unknown\n");
537 seq_printf(seq
, "design voltage: %d mV\n",
538 battery
->design_voltage
);
539 seq_printf(seq
, "design capacity warning: %d %sh\n",
540 battery
->design_capacity_warning
,
541 acpi_battery_units(battery
));
542 seq_printf(seq
, "design capacity low: %d %sh\n",
543 battery
->design_capacity_low
,
544 acpi_battery_units(battery
));
545 seq_printf(seq
, "capacity granularity 1: %d %sh\n",
546 battery
->capacity_granularity_1
,
547 acpi_battery_units(battery
));
548 seq_printf(seq
, "capacity granularity 2: %d %sh\n",
549 battery
->capacity_granularity_2
,
550 acpi_battery_units(battery
));
551 seq_printf(seq
, "model number: %s\n", battery
->model_number
);
552 seq_printf(seq
, "serial number: %s\n", battery
->serial_number
);
553 seq_printf(seq
, "battery type: %s\n", battery
->type
);
554 seq_printf(seq
, "OEM info: %s\n", battery
->oem_info
);
557 seq_printf(seq
, "ERROR: Unable to read battery info\n");
561 static int acpi_battery_print_state(struct seq_file
*seq
, int result
)
563 struct acpi_battery
*battery
= seq
->private;
568 seq_printf(seq
, "present: %s\n",
569 acpi_battery_present(battery
)?"yes":"no");
570 if (!acpi_battery_present(battery
))
573 seq_printf(seq
, "capacity state: %s\n",
574 (battery
->state
& 0x04)?"critical":"ok");
575 if ((battery
->state
& 0x01) && (battery
->state
& 0x02))
577 "charging state: charging/discharging\n");
578 else if (battery
->state
& 0x01)
579 seq_printf(seq
, "charging state: discharging\n");
580 else if (battery
->state
& 0x02)
581 seq_printf(seq
, "charging state: charging\n");
583 seq_printf(seq
, "charging state: charged\n");
585 if (battery
->current_now
== ACPI_BATTERY_VALUE_UNKNOWN
)
586 seq_printf(seq
, "present rate: unknown\n");
588 seq_printf(seq
, "present rate: %d %s\n",
589 battery
->current_now
, acpi_battery_units(battery
));
591 if (battery
->capacity_now
== ACPI_BATTERY_VALUE_UNKNOWN
)
592 seq_printf(seq
, "remaining capacity: unknown\n");
594 seq_printf(seq
, "remaining capacity: %d %sh\n",
595 battery
->capacity_now
, acpi_battery_units(battery
));
596 if (battery
->voltage_now
== ACPI_BATTERY_VALUE_UNKNOWN
)
597 seq_printf(seq
, "present voltage: unknown\n");
599 seq_printf(seq
, "present voltage: %d mV\n",
600 battery
->voltage_now
);
603 seq_printf(seq
, "ERROR: Unable to read battery state\n");
608 static int acpi_battery_print_alarm(struct seq_file
*seq
, int result
)
610 struct acpi_battery
*battery
= seq
->private;
615 if (!acpi_battery_present(battery
)) {
616 seq_printf(seq
, "present: no\n");
619 seq_printf(seq
, "alarm: ");
621 seq_printf(seq
, "unsupported\n");
623 seq_printf(seq
, "%u %sh\n", battery
->alarm
,
624 acpi_battery_units(battery
));
627 seq_printf(seq
, "ERROR: Unable to read battery alarm\n");
631 static ssize_t
acpi_battery_write_alarm(struct file
*file
,
632 const char __user
* buffer
,
633 size_t count
, loff_t
* ppos
)
636 char alarm_string
[12] = { '\0' };
637 struct seq_file
*m
= file
->private_data
;
638 struct acpi_battery
*battery
= m
->private;
640 if (!battery
|| (count
> sizeof(alarm_string
) - 1))
642 if (!acpi_battery_present(battery
)) {
646 if (copy_from_user(alarm_string
, buffer
, count
)) {
650 alarm_string
[count
] = '\0';
651 battery
->alarm
= simple_strtol(alarm_string
, NULL
, 0);
652 result
= acpi_battery_set_alarm(battery
);
659 typedef int(*print_func
)(struct seq_file
*seq
, int result
);
661 static print_func acpi_print_funcs
[ACPI_BATTERY_NUMFILES
] = {
662 acpi_battery_print_info
,
663 acpi_battery_print_state
,
664 acpi_battery_print_alarm
,
667 static int acpi_battery_read(int fid
, struct seq_file
*seq
)
669 struct acpi_battery
*battery
= seq
->private;
670 int result
= acpi_battery_update(battery
);
671 return acpi_print_funcs
[fid
](seq
, result
);
674 #define DECLARE_FILE_FUNCTIONS(_name) \
675 static int acpi_battery_read_##_name(struct seq_file *seq, void *offset) \
677 return acpi_battery_read(_name##_tag, seq); \
679 static int acpi_battery_##_name##_open_fs(struct inode *inode, struct file *file) \
681 return single_open(file, acpi_battery_read_##_name, PDE(inode)->data); \
684 DECLARE_FILE_FUNCTIONS(info
);
685 DECLARE_FILE_FUNCTIONS(state
);
686 DECLARE_FILE_FUNCTIONS(alarm
);
688 #undef DECLARE_FILE_FUNCTIONS
690 #define FILE_DESCRIPTION_RO(_name) \
692 .name = __stringify(_name), \
695 .open = acpi_battery_##_name##_open_fs, \
697 .llseek = seq_lseek, \
698 .release = single_release, \
699 .owner = THIS_MODULE, \
703 #define FILE_DESCRIPTION_RW(_name) \
705 .name = __stringify(_name), \
706 .mode = S_IFREG | S_IRUGO | S_IWUSR, \
708 .open = acpi_battery_##_name##_open_fs, \
710 .llseek = seq_lseek, \
711 .write = acpi_battery_write_##_name, \
712 .release = single_release, \
713 .owner = THIS_MODULE, \
717 static struct battery_file
{
718 struct file_operations ops
;
721 } acpi_battery_file
[] = {
722 FILE_DESCRIPTION_RO(info
),
723 FILE_DESCRIPTION_RO(state
),
724 FILE_DESCRIPTION_RW(alarm
),
727 #undef FILE_DESCRIPTION_RO
728 #undef FILE_DESCRIPTION_RW
730 static int acpi_battery_add_fs(struct acpi_device
*device
)
732 struct proc_dir_entry
*entry
= NULL
;
735 if (!acpi_device_dir(device
)) {
736 acpi_device_dir(device
) = proc_mkdir(acpi_device_bid(device
),
738 if (!acpi_device_dir(device
))
740 acpi_device_dir(device
)->owner
= THIS_MODULE
;
743 for (i
= 0; i
< ACPI_BATTERY_NUMFILES
; ++i
) {
744 entry
= proc_create_data(acpi_battery_file
[i
].name
,
745 acpi_battery_file
[i
].mode
,
746 acpi_device_dir(device
),
747 &acpi_battery_file
[i
].ops
,
748 acpi_driver_data(device
));
755 static void acpi_battery_remove_fs(struct acpi_device
*device
)
758 if (!acpi_device_dir(device
))
760 for (i
= 0; i
< ACPI_BATTERY_NUMFILES
; ++i
)
761 remove_proc_entry(acpi_battery_file
[i
].name
,
762 acpi_device_dir(device
));
764 remove_proc_entry(acpi_device_bid(device
), acpi_battery_dir
);
765 acpi_device_dir(device
) = NULL
;
770 /* --------------------------------------------------------------------------
772 -------------------------------------------------------------------------- */
774 static void acpi_battery_notify(acpi_handle handle
, u32 event
, void *data
)
776 struct acpi_battery
*battery
= data
;
777 struct acpi_device
*device
;
780 device
= battery
->device
;
781 acpi_battery_update(battery
);
782 acpi_bus_generate_proc_event(device
, event
,
783 acpi_battery_present(battery
));
784 acpi_bus_generate_netlink_event(device
->pnp
.device_class
,
785 dev_name(&device
->dev
), event
,
786 acpi_battery_present(battery
));
787 #ifdef CONFIG_ACPI_SYSFS_POWER
788 /* acpi_batter_update could remove power_supply object */
789 if (battery
->bat
.dev
)
790 kobject_uevent(&battery
->bat
.dev
->kobj
, KOBJ_CHANGE
);
794 static int acpi_battery_add(struct acpi_device
*device
)
797 acpi_status status
= 0;
798 struct acpi_battery
*battery
= NULL
;
801 battery
= kzalloc(sizeof(struct acpi_battery
), GFP_KERNEL
);
804 battery
->device
= device
;
805 strcpy(acpi_device_name(device
), ACPI_BATTERY_DEVICE_NAME
);
806 strcpy(acpi_device_class(device
), ACPI_BATTERY_CLASS
);
807 device
->driver_data
= battery
;
808 mutex_init(&battery
->lock
);
809 acpi_battery_update(battery
);
810 #ifdef CONFIG_ACPI_PROCFS_POWER
811 result
= acpi_battery_add_fs(device
);
815 status
= acpi_install_notify_handler(device
->handle
,
817 acpi_battery_notify
, battery
);
818 if (ACPI_FAILURE(status
)) {
819 ACPI_EXCEPTION((AE_INFO
, status
, "Installing notify handler"));
823 printk(KERN_INFO PREFIX
"%s Slot [%s] (battery %s)\n",
824 ACPI_BATTERY_DEVICE_NAME
, acpi_device_bid(device
),
825 device
->status
.battery_present
? "present" : "absent");
828 #ifdef CONFIG_ACPI_PROCFS_POWER
829 acpi_battery_remove_fs(device
);
836 static int acpi_battery_remove(struct acpi_device
*device
, int type
)
838 acpi_status status
= 0;
839 struct acpi_battery
*battery
= NULL
;
841 if (!device
|| !acpi_driver_data(device
))
843 battery
= acpi_driver_data(device
);
844 status
= acpi_remove_notify_handler(device
->handle
,
846 acpi_battery_notify
);
847 #ifdef CONFIG_ACPI_PROCFS_POWER
848 acpi_battery_remove_fs(device
);
850 #ifdef CONFIG_ACPI_SYSFS_POWER
851 sysfs_remove_battery(battery
);
853 mutex_destroy(&battery
->lock
);
858 /* this is needed to learn about changes made in suspended state */
859 static int acpi_battery_resume(struct acpi_device
*device
)
861 struct acpi_battery
*battery
;
864 battery
= acpi_driver_data(device
);
865 battery
->update_time
= 0;
866 acpi_battery_update(battery
);
870 static struct acpi_driver acpi_battery_driver
= {
872 .class = ACPI_BATTERY_CLASS
,
873 .ids
= battery_device_ids
,
875 .add
= acpi_battery_add
,
876 .resume
= acpi_battery_resume
,
877 .remove
= acpi_battery_remove
,
881 static int __init
acpi_battery_init(void)
885 #ifdef CONFIG_ACPI_PROCFS_POWER
886 acpi_battery_dir
= acpi_lock_battery_dir();
887 if (!acpi_battery_dir
)
890 if (acpi_bus_register_driver(&acpi_battery_driver
) < 0) {
891 #ifdef CONFIG_ACPI_PROCFS_POWER
892 acpi_unlock_battery_dir(acpi_battery_dir
);
899 static void __exit
acpi_battery_exit(void)
901 acpi_bus_unregister_driver(&acpi_battery_driver
);
902 #ifdef CONFIG_ACPI_PROCFS_POWER
903 acpi_unlock_battery_dir(acpi_battery_dir
);
907 module_init(acpi_battery_init
);
908 module_exit(acpi_battery_exit
);