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>
33 #include <linux/async.h>
34 #include <linux/dmi.h>
35 #include <linux/slab.h>
37 #ifdef CONFIG_ACPI_PROCFS_POWER
38 #include <linux/proc_fs.h>
39 #include <linux/seq_file.h>
40 #include <asm/uaccess.h>
43 #include <acpi/acpi_bus.h>
44 #include <acpi/acpi_drivers.h>
46 #ifdef CONFIG_ACPI_SYSFS_POWER
47 #include <linux/power_supply.h>
50 #define PREFIX "ACPI: "
52 #define ACPI_BATTERY_VALUE_UNKNOWN 0xFFFFFFFF
54 #define ACPI_BATTERY_CLASS "battery"
55 #define ACPI_BATTERY_DEVICE_NAME "Battery"
56 #define ACPI_BATTERY_NOTIFY_STATUS 0x80
57 #define ACPI_BATTERY_NOTIFY_INFO 0x81
58 #define ACPI_BATTERY_NOTIFY_THRESHOLD 0x82
60 #define _COMPONENT ACPI_BATTERY_COMPONENT
62 ACPI_MODULE_NAME("battery");
64 MODULE_AUTHOR("Paul Diefenbaugh");
65 MODULE_AUTHOR("Alexey Starikovskiy <astarikovskiy@suse.de>");
66 MODULE_DESCRIPTION("ACPI Battery Driver");
67 MODULE_LICENSE("GPL");
69 static unsigned int cache_time
= 1000;
70 module_param(cache_time
, uint
, 0644);
71 MODULE_PARM_DESC(cache_time
, "cache time in milliseconds");
73 #ifdef CONFIG_ACPI_PROCFS_POWER
74 extern struct proc_dir_entry
*acpi_lock_battery_dir(void);
75 extern void *acpi_unlock_battery_dir(struct proc_dir_entry
*acpi_battery_dir
);
77 enum acpi_battery_files
{
81 ACPI_BATTERY_NUMFILES
,
86 static const struct acpi_device_id battery_device_ids
[] = {
91 MODULE_DEVICE_TABLE(acpi
, battery_device_ids
);
94 ACPI_BATTERY_ALARM_PRESENT
,
95 ACPI_BATTERY_XINFO_PRESENT
,
96 /* For buggy DSDTs that report negative 16-bit values for either
97 * charging or discharging current and/or report 0 as 65536
100 ACPI_BATTERY_QUIRK_SIGNED16_CURRENT
,
103 struct acpi_battery
{
105 #ifdef CONFIG_ACPI_SYSFS_POWER
106 struct power_supply bat
;
108 struct acpi_device
*device
;
109 unsigned long update_time
;
114 int full_charge_capacity
;
117 int design_capacity_warning
;
118 int design_capacity_low
;
120 int measurement_accuracy
;
121 int max_sampling_time
;
122 int min_sampling_time
;
123 int max_averaging_interval
;
124 int min_averaging_interval
;
125 int capacity_granularity_1
;
126 int capacity_granularity_2
;
128 char model_number
[32];
129 char serial_number
[32];
137 #define to_acpi_battery(x) container_of(x, struct acpi_battery, bat);
139 inline int acpi_battery_present(struct acpi_battery
*battery
)
141 return battery
->device
->status
.battery_present
;
144 #ifdef CONFIG_ACPI_SYSFS_POWER
145 static int acpi_battery_technology(struct acpi_battery
*battery
)
147 if (!strcasecmp("NiCd", battery
->type
))
148 return POWER_SUPPLY_TECHNOLOGY_NiCd
;
149 if (!strcasecmp("NiMH", battery
->type
))
150 return POWER_SUPPLY_TECHNOLOGY_NiMH
;
151 if (!strcasecmp("LION", battery
->type
))
152 return POWER_SUPPLY_TECHNOLOGY_LION
;
153 if (!strncasecmp("LI-ION", battery
->type
, 6))
154 return POWER_SUPPLY_TECHNOLOGY_LION
;
155 if (!strcasecmp("LiP", battery
->type
))
156 return POWER_SUPPLY_TECHNOLOGY_LIPO
;
157 return POWER_SUPPLY_TECHNOLOGY_UNKNOWN
;
160 static int acpi_battery_get_state(struct acpi_battery
*battery
);
162 static int acpi_battery_is_charged(struct acpi_battery
*battery
)
164 /* either charging or discharging */
165 if (battery
->state
!= 0)
168 /* battery not reporting charge */
169 if (battery
->capacity_now
== ACPI_BATTERY_VALUE_UNKNOWN
||
170 battery
->capacity_now
== 0)
173 /* good batteries update full_charge as the batteries degrade */
174 if (battery
->full_charge_capacity
== battery
->capacity_now
)
177 /* fallback to using design values for broken batteries */
178 if (battery
->design_capacity
== battery
->capacity_now
)
181 /* we don't do any sort of metric based on percentages */
185 static int acpi_battery_get_property(struct power_supply
*psy
,
186 enum power_supply_property psp
,
187 union power_supply_propval
*val
)
189 struct acpi_battery
*battery
= to_acpi_battery(psy
);
191 if (acpi_battery_present(battery
)) {
192 /* run battery update only if it is present */
193 acpi_battery_get_state(battery
);
194 } else if (psp
!= POWER_SUPPLY_PROP_PRESENT
)
197 case POWER_SUPPLY_PROP_STATUS
:
198 if (battery
->state
& 0x01)
199 val
->intval
= POWER_SUPPLY_STATUS_DISCHARGING
;
200 else if (battery
->state
& 0x02)
201 val
->intval
= POWER_SUPPLY_STATUS_CHARGING
;
202 else if (acpi_battery_is_charged(battery
))
203 val
->intval
= POWER_SUPPLY_STATUS_FULL
;
205 val
->intval
= POWER_SUPPLY_STATUS_UNKNOWN
;
207 case POWER_SUPPLY_PROP_PRESENT
:
208 val
->intval
= acpi_battery_present(battery
);
210 case POWER_SUPPLY_PROP_TECHNOLOGY
:
211 val
->intval
= acpi_battery_technology(battery
);
213 case POWER_SUPPLY_PROP_CYCLE_COUNT
:
214 val
->intval
= battery
->cycle_count
;
216 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN
:
217 val
->intval
= battery
->design_voltage
* 1000;
219 case POWER_SUPPLY_PROP_VOLTAGE_NOW
:
220 val
->intval
= battery
->voltage_now
* 1000;
222 case POWER_SUPPLY_PROP_CURRENT_NOW
:
223 case POWER_SUPPLY_PROP_POWER_NOW
:
224 val
->intval
= battery
->rate_now
* 1000;
226 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN
:
227 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN
:
228 val
->intval
= battery
->design_capacity
* 1000;
230 case POWER_SUPPLY_PROP_CHARGE_FULL
:
231 case POWER_SUPPLY_PROP_ENERGY_FULL
:
232 val
->intval
= battery
->full_charge_capacity
* 1000;
234 case POWER_SUPPLY_PROP_CHARGE_NOW
:
235 case POWER_SUPPLY_PROP_ENERGY_NOW
:
236 val
->intval
= battery
->capacity_now
* 1000;
238 case POWER_SUPPLY_PROP_MODEL_NAME
:
239 val
->strval
= battery
->model_number
;
241 case POWER_SUPPLY_PROP_MANUFACTURER
:
242 val
->strval
= battery
->oem_info
;
244 case POWER_SUPPLY_PROP_SERIAL_NUMBER
:
245 val
->strval
= battery
->serial_number
;
253 static enum power_supply_property charge_battery_props
[] = {
254 POWER_SUPPLY_PROP_STATUS
,
255 POWER_SUPPLY_PROP_PRESENT
,
256 POWER_SUPPLY_PROP_TECHNOLOGY
,
257 POWER_SUPPLY_PROP_CYCLE_COUNT
,
258 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN
,
259 POWER_SUPPLY_PROP_VOLTAGE_NOW
,
260 POWER_SUPPLY_PROP_CURRENT_NOW
,
261 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN
,
262 POWER_SUPPLY_PROP_CHARGE_FULL
,
263 POWER_SUPPLY_PROP_CHARGE_NOW
,
264 POWER_SUPPLY_PROP_MODEL_NAME
,
265 POWER_SUPPLY_PROP_MANUFACTURER
,
266 POWER_SUPPLY_PROP_SERIAL_NUMBER
,
269 static enum power_supply_property energy_battery_props
[] = {
270 POWER_SUPPLY_PROP_STATUS
,
271 POWER_SUPPLY_PROP_PRESENT
,
272 POWER_SUPPLY_PROP_TECHNOLOGY
,
273 POWER_SUPPLY_PROP_CYCLE_COUNT
,
274 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN
,
275 POWER_SUPPLY_PROP_VOLTAGE_NOW
,
276 POWER_SUPPLY_PROP_CURRENT_NOW
,
277 POWER_SUPPLY_PROP_POWER_NOW
,
278 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN
,
279 POWER_SUPPLY_PROP_ENERGY_FULL
,
280 POWER_SUPPLY_PROP_ENERGY_NOW
,
281 POWER_SUPPLY_PROP_MODEL_NAME
,
282 POWER_SUPPLY_PROP_MANUFACTURER
,
283 POWER_SUPPLY_PROP_SERIAL_NUMBER
,
287 #ifdef CONFIG_ACPI_PROCFS_POWER
288 inline char *acpi_battery_units(struct acpi_battery
*battery
)
290 return (battery
->power_unit
)?"mA":"mW";
294 /* --------------------------------------------------------------------------
296 -------------------------------------------------------------------------- */
297 struct acpi_offsets
{
298 size_t offset
; /* offset inside struct acpi_sbs_battery */
299 u8 mode
; /* int or string? */
302 static struct acpi_offsets state_offsets
[] = {
303 {offsetof(struct acpi_battery
, state
), 0},
304 {offsetof(struct acpi_battery
, rate_now
), 0},
305 {offsetof(struct acpi_battery
, capacity_now
), 0},
306 {offsetof(struct acpi_battery
, voltage_now
), 0},
309 static struct acpi_offsets info_offsets
[] = {
310 {offsetof(struct acpi_battery
, power_unit
), 0},
311 {offsetof(struct acpi_battery
, design_capacity
), 0},
312 {offsetof(struct acpi_battery
, full_charge_capacity
), 0},
313 {offsetof(struct acpi_battery
, technology
), 0},
314 {offsetof(struct acpi_battery
, design_voltage
), 0},
315 {offsetof(struct acpi_battery
, design_capacity_warning
), 0},
316 {offsetof(struct acpi_battery
, design_capacity_low
), 0},
317 {offsetof(struct acpi_battery
, capacity_granularity_1
), 0},
318 {offsetof(struct acpi_battery
, capacity_granularity_2
), 0},
319 {offsetof(struct acpi_battery
, model_number
), 1},
320 {offsetof(struct acpi_battery
, serial_number
), 1},
321 {offsetof(struct acpi_battery
, type
), 1},
322 {offsetof(struct acpi_battery
, oem_info
), 1},
325 static struct acpi_offsets extended_info_offsets
[] = {
326 {offsetof(struct acpi_battery
, power_unit
), 0},
327 {offsetof(struct acpi_battery
, design_capacity
), 0},
328 {offsetof(struct acpi_battery
, full_charge_capacity
), 0},
329 {offsetof(struct acpi_battery
, technology
), 0},
330 {offsetof(struct acpi_battery
, design_voltage
), 0},
331 {offsetof(struct acpi_battery
, design_capacity_warning
), 0},
332 {offsetof(struct acpi_battery
, design_capacity_low
), 0},
333 {offsetof(struct acpi_battery
, cycle_count
), 0},
334 {offsetof(struct acpi_battery
, measurement_accuracy
), 0},
335 {offsetof(struct acpi_battery
, max_sampling_time
), 0},
336 {offsetof(struct acpi_battery
, min_sampling_time
), 0},
337 {offsetof(struct acpi_battery
, max_averaging_interval
), 0},
338 {offsetof(struct acpi_battery
, min_averaging_interval
), 0},
339 {offsetof(struct acpi_battery
, capacity_granularity_1
), 0},
340 {offsetof(struct acpi_battery
, capacity_granularity_2
), 0},
341 {offsetof(struct acpi_battery
, model_number
), 1},
342 {offsetof(struct acpi_battery
, serial_number
), 1},
343 {offsetof(struct acpi_battery
, type
), 1},
344 {offsetof(struct acpi_battery
, oem_info
), 1},
347 static int extract_package(struct acpi_battery
*battery
,
348 union acpi_object
*package
,
349 struct acpi_offsets
*offsets
, int num
)
352 union acpi_object
*element
;
353 if (package
->type
!= ACPI_TYPE_PACKAGE
)
355 for (i
= 0; i
< num
; ++i
) {
356 if (package
->package
.count
<= i
)
358 element
= &package
->package
.elements
[i
];
359 if (offsets
[i
].mode
) {
360 u8
*ptr
= (u8
*)battery
+ offsets
[i
].offset
;
361 if (element
->type
== ACPI_TYPE_STRING
||
362 element
->type
== ACPI_TYPE_BUFFER
)
363 strncpy(ptr
, element
->string
.pointer
, 32);
364 else if (element
->type
== ACPI_TYPE_INTEGER
) {
365 strncpy(ptr
, (u8
*)&element
->integer
.value
,
367 ptr
[sizeof(u64
)] = 0;
369 *ptr
= 0; /* don't have value */
371 int *x
= (int *)((u8
*)battery
+ offsets
[i
].offset
);
372 *x
= (element
->type
== ACPI_TYPE_INTEGER
) ?
373 element
->integer
.value
: -1;
379 static int acpi_battery_get_status(struct acpi_battery
*battery
)
381 if (acpi_bus_get_status(battery
->device
)) {
382 ACPI_EXCEPTION((AE_INFO
, AE_ERROR
, "Evaluating _STA"));
388 static int acpi_battery_get_info(struct acpi_battery
*battery
)
390 int result
= -EFAULT
;
391 acpi_status status
= 0;
392 char *name
= test_bit(ACPI_BATTERY_XINFO_PRESENT
, &battery
->flags
)?
395 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
397 if (!acpi_battery_present(battery
))
399 mutex_lock(&battery
->lock
);
400 status
= acpi_evaluate_object(battery
->device
->handle
, name
,
402 mutex_unlock(&battery
->lock
);
404 if (ACPI_FAILURE(status
)) {
405 ACPI_EXCEPTION((AE_INFO
, status
, "Evaluating %s", name
));
408 if (test_bit(ACPI_BATTERY_XINFO_PRESENT
, &battery
->flags
))
409 result
= extract_package(battery
, buffer
.pointer
,
410 extended_info_offsets
,
411 ARRAY_SIZE(extended_info_offsets
));
413 result
= extract_package(battery
, buffer
.pointer
,
414 info_offsets
, ARRAY_SIZE(info_offsets
));
415 kfree(buffer
.pointer
);
419 static int acpi_battery_get_state(struct acpi_battery
*battery
)
422 acpi_status status
= 0;
423 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
425 if (!acpi_battery_present(battery
))
428 if (battery
->update_time
&&
429 time_before(jiffies
, battery
->update_time
+
430 msecs_to_jiffies(cache_time
)))
433 mutex_lock(&battery
->lock
);
434 status
= acpi_evaluate_object(battery
->device
->handle
, "_BST",
436 mutex_unlock(&battery
->lock
);
438 if (ACPI_FAILURE(status
)) {
439 ACPI_EXCEPTION((AE_INFO
, status
, "Evaluating _BST"));
443 result
= extract_package(battery
, buffer
.pointer
,
444 state_offsets
, ARRAY_SIZE(state_offsets
));
445 battery
->update_time
= jiffies
;
446 kfree(buffer
.pointer
);
448 if (test_bit(ACPI_BATTERY_QUIRK_SIGNED16_CURRENT
, &battery
->flags
) &&
449 battery
->rate_now
!= -1)
450 battery
->rate_now
= abs((s16
)battery
->rate_now
);
455 static int acpi_battery_set_alarm(struct acpi_battery
*battery
)
457 acpi_status status
= 0;
458 union acpi_object arg0
= { .type
= ACPI_TYPE_INTEGER
};
459 struct acpi_object_list arg_list
= { 1, &arg0
};
461 if (!acpi_battery_present(battery
) ||
462 !test_bit(ACPI_BATTERY_ALARM_PRESENT
, &battery
->flags
))
465 arg0
.integer
.value
= battery
->alarm
;
467 mutex_lock(&battery
->lock
);
468 status
= acpi_evaluate_object(battery
->device
->handle
, "_BTP",
470 mutex_unlock(&battery
->lock
);
472 if (ACPI_FAILURE(status
))
475 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Alarm set to %d\n", battery
->alarm
));
479 static int acpi_battery_init_alarm(struct acpi_battery
*battery
)
481 acpi_status status
= AE_OK
;
482 acpi_handle handle
= NULL
;
484 /* See if alarms are supported, and if so, set default */
485 status
= acpi_get_handle(battery
->device
->handle
, "_BTP", &handle
);
486 if (ACPI_FAILURE(status
)) {
487 clear_bit(ACPI_BATTERY_ALARM_PRESENT
, &battery
->flags
);
490 set_bit(ACPI_BATTERY_ALARM_PRESENT
, &battery
->flags
);
492 battery
->alarm
= battery
->design_capacity_warning
;
493 return acpi_battery_set_alarm(battery
);
496 #ifdef CONFIG_ACPI_SYSFS_POWER
497 static ssize_t
acpi_battery_alarm_show(struct device
*dev
,
498 struct device_attribute
*attr
,
501 struct acpi_battery
*battery
= to_acpi_battery(dev_get_drvdata(dev
));
502 return sprintf(buf
, "%d\n", battery
->alarm
* 1000);
505 static ssize_t
acpi_battery_alarm_store(struct device
*dev
,
506 struct device_attribute
*attr
,
507 const char *buf
, size_t count
)
510 struct acpi_battery
*battery
= to_acpi_battery(dev_get_drvdata(dev
));
511 if (sscanf(buf
, "%ld\n", &x
) == 1)
512 battery
->alarm
= x
/1000;
513 if (acpi_battery_present(battery
))
514 acpi_battery_set_alarm(battery
);
518 static struct device_attribute alarm_attr
= {
519 .attr
= {.name
= "alarm", .mode
= 0644},
520 .show
= acpi_battery_alarm_show
,
521 .store
= acpi_battery_alarm_store
,
524 static int sysfs_add_battery(struct acpi_battery
*battery
)
528 if (battery
->power_unit
) {
529 battery
->bat
.properties
= charge_battery_props
;
530 battery
->bat
.num_properties
=
531 ARRAY_SIZE(charge_battery_props
);
533 battery
->bat
.properties
= energy_battery_props
;
534 battery
->bat
.num_properties
=
535 ARRAY_SIZE(energy_battery_props
);
538 battery
->bat
.name
= acpi_device_bid(battery
->device
);
539 battery
->bat
.type
= POWER_SUPPLY_TYPE_BATTERY
;
540 battery
->bat
.get_property
= acpi_battery_get_property
;
542 result
= power_supply_register(&battery
->device
->dev
, &battery
->bat
);
545 return device_create_file(battery
->bat
.dev
, &alarm_attr
);
548 static void sysfs_remove_battery(struct acpi_battery
*battery
)
550 if (!battery
->bat
.dev
)
552 device_remove_file(battery
->bat
.dev
, &alarm_attr
);
553 power_supply_unregister(&battery
->bat
);
554 battery
->bat
.dev
= NULL
;
558 static void acpi_battery_quirks(struct acpi_battery
*battery
)
560 if (dmi_name_in_vendors("Acer") && battery
->power_unit
) {
561 set_bit(ACPI_BATTERY_QUIRK_SIGNED16_CURRENT
, &battery
->flags
);
565 static int acpi_battery_update(struct acpi_battery
*battery
)
567 int result
, old_present
= acpi_battery_present(battery
);
568 result
= acpi_battery_get_status(battery
);
571 if (!acpi_battery_present(battery
)) {
572 #ifdef CONFIG_ACPI_SYSFS_POWER
573 sysfs_remove_battery(battery
);
575 battery
->update_time
= 0;
578 if (!battery
->update_time
||
579 old_present
!= acpi_battery_present(battery
)) {
580 result
= acpi_battery_get_info(battery
);
583 acpi_battery_quirks(battery
);
584 acpi_battery_init_alarm(battery
);
586 #ifdef CONFIG_ACPI_SYSFS_POWER
587 if (!battery
->bat
.dev
)
588 sysfs_add_battery(battery
);
590 return acpi_battery_get_state(battery
);
593 /* --------------------------------------------------------------------------
595 -------------------------------------------------------------------------- */
597 #ifdef CONFIG_ACPI_PROCFS_POWER
598 static struct proc_dir_entry
*acpi_battery_dir
;
600 static int acpi_battery_print_info(struct seq_file
*seq
, int result
)
602 struct acpi_battery
*battery
= seq
->private;
607 seq_printf(seq
, "present: %s\n",
608 acpi_battery_present(battery
)?"yes":"no");
609 if (!acpi_battery_present(battery
))
611 if (battery
->design_capacity
== ACPI_BATTERY_VALUE_UNKNOWN
)
612 seq_printf(seq
, "design capacity: unknown\n");
614 seq_printf(seq
, "design capacity: %d %sh\n",
615 battery
->design_capacity
,
616 acpi_battery_units(battery
));
618 if (battery
->full_charge_capacity
== ACPI_BATTERY_VALUE_UNKNOWN
)
619 seq_printf(seq
, "last full capacity: unknown\n");
621 seq_printf(seq
, "last full capacity: %d %sh\n",
622 battery
->full_charge_capacity
,
623 acpi_battery_units(battery
));
625 seq_printf(seq
, "battery technology: %srechargeable\n",
626 (!battery
->technology
)?"non-":"");
628 if (battery
->design_voltage
== ACPI_BATTERY_VALUE_UNKNOWN
)
629 seq_printf(seq
, "design voltage: unknown\n");
631 seq_printf(seq
, "design voltage: %d mV\n",
632 battery
->design_voltage
);
633 seq_printf(seq
, "design capacity warning: %d %sh\n",
634 battery
->design_capacity_warning
,
635 acpi_battery_units(battery
));
636 seq_printf(seq
, "design capacity low: %d %sh\n",
637 battery
->design_capacity_low
,
638 acpi_battery_units(battery
));
639 seq_printf(seq
, "cycle count: %i\n", battery
->cycle_count
);
640 seq_printf(seq
, "capacity granularity 1: %d %sh\n",
641 battery
->capacity_granularity_1
,
642 acpi_battery_units(battery
));
643 seq_printf(seq
, "capacity granularity 2: %d %sh\n",
644 battery
->capacity_granularity_2
,
645 acpi_battery_units(battery
));
646 seq_printf(seq
, "model number: %s\n", battery
->model_number
);
647 seq_printf(seq
, "serial number: %s\n", battery
->serial_number
);
648 seq_printf(seq
, "battery type: %s\n", battery
->type
);
649 seq_printf(seq
, "OEM info: %s\n", battery
->oem_info
);
652 seq_printf(seq
, "ERROR: Unable to read battery info\n");
656 static int acpi_battery_print_state(struct seq_file
*seq
, int result
)
658 struct acpi_battery
*battery
= seq
->private;
663 seq_printf(seq
, "present: %s\n",
664 acpi_battery_present(battery
)?"yes":"no");
665 if (!acpi_battery_present(battery
))
668 seq_printf(seq
, "capacity state: %s\n",
669 (battery
->state
& 0x04)?"critical":"ok");
670 if ((battery
->state
& 0x01) && (battery
->state
& 0x02))
672 "charging state: charging/discharging\n");
673 else if (battery
->state
& 0x01)
674 seq_printf(seq
, "charging state: discharging\n");
675 else if (battery
->state
& 0x02)
676 seq_printf(seq
, "charging state: charging\n");
678 seq_printf(seq
, "charging state: charged\n");
680 if (battery
->rate_now
== ACPI_BATTERY_VALUE_UNKNOWN
)
681 seq_printf(seq
, "present rate: unknown\n");
683 seq_printf(seq
, "present rate: %d %s\n",
684 battery
->rate_now
, acpi_battery_units(battery
));
686 if (battery
->capacity_now
== ACPI_BATTERY_VALUE_UNKNOWN
)
687 seq_printf(seq
, "remaining capacity: unknown\n");
689 seq_printf(seq
, "remaining capacity: %d %sh\n",
690 battery
->capacity_now
, acpi_battery_units(battery
));
691 if (battery
->voltage_now
== ACPI_BATTERY_VALUE_UNKNOWN
)
692 seq_printf(seq
, "present voltage: unknown\n");
694 seq_printf(seq
, "present voltage: %d mV\n",
695 battery
->voltage_now
);
698 seq_printf(seq
, "ERROR: Unable to read battery state\n");
703 static int acpi_battery_print_alarm(struct seq_file
*seq
, int result
)
705 struct acpi_battery
*battery
= seq
->private;
710 if (!acpi_battery_present(battery
)) {
711 seq_printf(seq
, "present: no\n");
714 seq_printf(seq
, "alarm: ");
716 seq_printf(seq
, "unsupported\n");
718 seq_printf(seq
, "%u %sh\n", battery
->alarm
,
719 acpi_battery_units(battery
));
722 seq_printf(seq
, "ERROR: Unable to read battery alarm\n");
726 static ssize_t
acpi_battery_write_alarm(struct file
*file
,
727 const char __user
* buffer
,
728 size_t count
, loff_t
* ppos
)
731 char alarm_string
[12] = { '\0' };
732 struct seq_file
*m
= file
->private_data
;
733 struct acpi_battery
*battery
= m
->private;
735 if (!battery
|| (count
> sizeof(alarm_string
) - 1))
737 if (!acpi_battery_present(battery
)) {
741 if (copy_from_user(alarm_string
, buffer
, count
)) {
745 alarm_string
[count
] = '\0';
746 battery
->alarm
= simple_strtol(alarm_string
, NULL
, 0);
747 result
= acpi_battery_set_alarm(battery
);
754 typedef int(*print_func
)(struct seq_file
*seq
, int result
);
756 static print_func acpi_print_funcs
[ACPI_BATTERY_NUMFILES
] = {
757 acpi_battery_print_info
,
758 acpi_battery_print_state
,
759 acpi_battery_print_alarm
,
762 static int acpi_battery_read(int fid
, struct seq_file
*seq
)
764 struct acpi_battery
*battery
= seq
->private;
765 int result
= acpi_battery_update(battery
);
766 return acpi_print_funcs
[fid
](seq
, result
);
769 #define DECLARE_FILE_FUNCTIONS(_name) \
770 static int acpi_battery_read_##_name(struct seq_file *seq, void *offset) \
772 return acpi_battery_read(_name##_tag, seq); \
774 static int acpi_battery_##_name##_open_fs(struct inode *inode, struct file *file) \
776 return single_open(file, acpi_battery_read_##_name, PDE(inode)->data); \
779 DECLARE_FILE_FUNCTIONS(info
);
780 DECLARE_FILE_FUNCTIONS(state
);
781 DECLARE_FILE_FUNCTIONS(alarm
);
783 #undef DECLARE_FILE_FUNCTIONS
785 #define FILE_DESCRIPTION_RO(_name) \
787 .name = __stringify(_name), \
790 .open = acpi_battery_##_name##_open_fs, \
792 .llseek = seq_lseek, \
793 .release = single_release, \
794 .owner = THIS_MODULE, \
798 #define FILE_DESCRIPTION_RW(_name) \
800 .name = __stringify(_name), \
801 .mode = S_IFREG | S_IRUGO | S_IWUSR, \
803 .open = acpi_battery_##_name##_open_fs, \
805 .llseek = seq_lseek, \
806 .write = acpi_battery_write_##_name, \
807 .release = single_release, \
808 .owner = THIS_MODULE, \
812 static struct battery_file
{
813 struct file_operations ops
;
816 } acpi_battery_file
[] = {
817 FILE_DESCRIPTION_RO(info
),
818 FILE_DESCRIPTION_RO(state
),
819 FILE_DESCRIPTION_RW(alarm
),
822 #undef FILE_DESCRIPTION_RO
823 #undef FILE_DESCRIPTION_RW
825 static int acpi_battery_add_fs(struct acpi_device
*device
)
827 struct proc_dir_entry
*entry
= NULL
;
830 if (!acpi_device_dir(device
)) {
831 acpi_device_dir(device
) = proc_mkdir(acpi_device_bid(device
),
833 if (!acpi_device_dir(device
))
837 for (i
= 0; i
< ACPI_BATTERY_NUMFILES
; ++i
) {
838 entry
= proc_create_data(acpi_battery_file
[i
].name
,
839 acpi_battery_file
[i
].mode
,
840 acpi_device_dir(device
),
841 &acpi_battery_file
[i
].ops
,
842 acpi_driver_data(device
));
849 static void acpi_battery_remove_fs(struct acpi_device
*device
)
852 if (!acpi_device_dir(device
))
854 for (i
= 0; i
< ACPI_BATTERY_NUMFILES
; ++i
)
855 remove_proc_entry(acpi_battery_file
[i
].name
,
856 acpi_device_dir(device
));
858 remove_proc_entry(acpi_device_bid(device
), acpi_battery_dir
);
859 acpi_device_dir(device
) = NULL
;
864 /* --------------------------------------------------------------------------
866 -------------------------------------------------------------------------- */
868 static void acpi_battery_notify(struct acpi_device
*device
, u32 event
)
870 struct acpi_battery
*battery
= acpi_driver_data(device
);
871 #ifdef CONFIG_ACPI_SYSFS_POWER
877 #ifdef CONFIG_ACPI_SYSFS_POWER
878 old
= battery
->bat
.dev
;
880 acpi_battery_update(battery
);
881 acpi_bus_generate_proc_event(device
, event
,
882 acpi_battery_present(battery
));
883 acpi_bus_generate_netlink_event(device
->pnp
.device_class
,
884 dev_name(&device
->dev
), event
,
885 acpi_battery_present(battery
));
886 #ifdef CONFIG_ACPI_SYSFS_POWER
887 /* acpi_battery_update could remove power_supply object */
888 if (old
&& battery
->bat
.dev
)
889 power_supply_changed(&battery
->bat
);
893 static int acpi_battery_add(struct acpi_device
*device
)
896 struct acpi_battery
*battery
= NULL
;
900 battery
= kzalloc(sizeof(struct acpi_battery
), GFP_KERNEL
);
903 battery
->device
= device
;
904 strcpy(acpi_device_name(device
), ACPI_BATTERY_DEVICE_NAME
);
905 strcpy(acpi_device_class(device
), ACPI_BATTERY_CLASS
);
906 device
->driver_data
= battery
;
907 mutex_init(&battery
->lock
);
908 if (ACPI_SUCCESS(acpi_get_handle(battery
->device
->handle
,
910 set_bit(ACPI_BATTERY_XINFO_PRESENT
, &battery
->flags
);
911 acpi_battery_update(battery
);
912 #ifdef CONFIG_ACPI_PROCFS_POWER
913 result
= acpi_battery_add_fs(device
);
916 printk(KERN_INFO PREFIX
"%s Slot [%s] (battery %s)\n",
917 ACPI_BATTERY_DEVICE_NAME
, acpi_device_bid(device
),
918 device
->status
.battery_present
? "present" : "absent");
920 #ifdef CONFIG_ACPI_PROCFS_POWER
921 acpi_battery_remove_fs(device
);
928 static int acpi_battery_remove(struct acpi_device
*device
, int type
)
930 struct acpi_battery
*battery
= NULL
;
932 if (!device
|| !acpi_driver_data(device
))
934 battery
= acpi_driver_data(device
);
935 #ifdef CONFIG_ACPI_PROCFS_POWER
936 acpi_battery_remove_fs(device
);
938 #ifdef CONFIG_ACPI_SYSFS_POWER
939 sysfs_remove_battery(battery
);
941 mutex_destroy(&battery
->lock
);
946 /* this is needed to learn about changes made in suspended state */
947 static int acpi_battery_resume(struct acpi_device
*device
)
949 struct acpi_battery
*battery
;
952 battery
= acpi_driver_data(device
);
953 battery
->update_time
= 0;
954 acpi_battery_update(battery
);
958 static struct acpi_driver acpi_battery_driver
= {
960 .class = ACPI_BATTERY_CLASS
,
961 .ids
= battery_device_ids
,
962 .flags
= ACPI_DRIVER_ALL_NOTIFY_EVENTS
,
964 .add
= acpi_battery_add
,
965 .resume
= acpi_battery_resume
,
966 .remove
= acpi_battery_remove
,
967 .notify
= acpi_battery_notify
,
971 static void __init
acpi_battery_init_async(void *unused
, async_cookie_t cookie
)
975 #ifdef CONFIG_ACPI_PROCFS_POWER
976 acpi_battery_dir
= acpi_lock_battery_dir();
977 if (!acpi_battery_dir
)
980 if (acpi_bus_register_driver(&acpi_battery_driver
) < 0) {
981 #ifdef CONFIG_ACPI_PROCFS_POWER
982 acpi_unlock_battery_dir(acpi_battery_dir
);
989 static int __init
acpi_battery_init(void)
991 async_schedule(acpi_battery_init_async
, NULL
);
995 static void __exit
acpi_battery_exit(void)
997 acpi_bus_unregister_driver(&acpi_battery_driver
);
998 #ifdef CONFIG_ACPI_PROCFS_POWER
999 acpi_unlock_battery_dir(acpi_battery_dir
);
1003 module_init(acpi_battery_init
);
1004 module_exit(acpi_battery_exit
);