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>
36 #include <linux/suspend.h>
37 #include <asm/unaligned.h>
39 #include <acpi/acpi_bus.h>
40 #include <acpi/acpi_drivers.h>
41 #include <linux/power_supply.h>
43 #define PREFIX "ACPI: "
45 #define ACPI_BATTERY_VALUE_UNKNOWN 0xFFFFFFFF
47 #define ACPI_BATTERY_CLASS "battery"
48 #define ACPI_BATTERY_DEVICE_NAME "Battery"
49 #define ACPI_BATTERY_NOTIFY_STATUS 0x80
50 #define ACPI_BATTERY_NOTIFY_INFO 0x81
51 #define ACPI_BATTERY_NOTIFY_THRESHOLD 0x82
53 /* Battery power unit: 0 means mW, 1 means mA */
54 #define ACPI_BATTERY_POWER_UNIT_MA 1
56 #define _COMPONENT ACPI_BATTERY_COMPONENT
58 ACPI_MODULE_NAME("battery");
60 MODULE_AUTHOR("Paul Diefenbaugh");
61 MODULE_AUTHOR("Alexey Starikovskiy <astarikovskiy@suse.de>");
62 MODULE_DESCRIPTION("ACPI Battery Driver");
63 MODULE_LICENSE("GPL");
65 static unsigned int cache_time
= 1000;
66 module_param(cache_time
, uint
, 0644);
67 MODULE_PARM_DESC(cache_time
, "cache time in milliseconds");
69 static const struct acpi_device_id battery_device_ids
[] = {
74 MODULE_DEVICE_TABLE(acpi
, battery_device_ids
);
77 ACPI_BATTERY_ALARM_PRESENT
,
78 ACPI_BATTERY_XINFO_PRESENT
,
79 ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY
,
80 /* On Lenovo Thinkpad models from 2010 and 2011, the power unit
81 switches between mWh and mAh depending on whether the system
82 is running on battery or not. When mAh is the unit, most
83 reported values are incorrect and need to be adjusted by
84 10000/design_voltage. Verified on x201, t410, t410s, and x220.
85 Pre-2010 and 2012 models appear to always report in mWh and
86 are thus unaffected (tested with t42, t61, t500, x200, x300,
87 and x230). Also, in mid-2012 Lenovo issued a BIOS update for
88 the 2011 models that fixes the issue (tested on x220 with a
89 post-1.29 BIOS), but as of Nov. 2012, no such update is
90 available for the 2010 models. */
91 ACPI_BATTERY_QUIRK_THINKPAD_MAH
,
96 struct mutex sysfs_lock
;
97 struct power_supply bat
;
98 struct acpi_device
*device
;
99 struct notifier_block pm_nb
;
100 unsigned long update_time
;
106 int full_charge_capacity
;
109 int design_capacity_warning
;
110 int design_capacity_low
;
112 int measurement_accuracy
;
113 int max_sampling_time
;
114 int min_sampling_time
;
115 int max_averaging_interval
;
116 int min_averaging_interval
;
117 int capacity_granularity_1
;
118 int capacity_granularity_2
;
120 char model_number
[32];
121 char serial_number
[32];
129 #define to_acpi_battery(x) container_of(x, struct acpi_battery, bat)
131 static inline int acpi_battery_present(struct acpi_battery
*battery
)
133 return battery
->device
->status
.battery_present
;
136 static int acpi_battery_technology(struct acpi_battery
*battery
)
138 if (!strcasecmp("NiCd", battery
->type
))
139 return POWER_SUPPLY_TECHNOLOGY_NiCd
;
140 if (!strcasecmp("NiMH", battery
->type
))
141 return POWER_SUPPLY_TECHNOLOGY_NiMH
;
142 if (!strcasecmp("LION", battery
->type
))
143 return POWER_SUPPLY_TECHNOLOGY_LION
;
144 if (!strncasecmp("LI-ION", battery
->type
, 6))
145 return POWER_SUPPLY_TECHNOLOGY_LION
;
146 if (!strcasecmp("LiP", battery
->type
))
147 return POWER_SUPPLY_TECHNOLOGY_LIPO
;
148 return POWER_SUPPLY_TECHNOLOGY_UNKNOWN
;
151 static int acpi_battery_get_state(struct acpi_battery
*battery
);
153 static int acpi_battery_is_charged(struct acpi_battery
*battery
)
155 /* either charging or discharging */
156 if (battery
->state
!= 0)
159 /* battery not reporting charge */
160 if (battery
->capacity_now
== ACPI_BATTERY_VALUE_UNKNOWN
||
161 battery
->capacity_now
== 0)
164 /* good batteries update full_charge as the batteries degrade */
165 if (battery
->full_charge_capacity
== battery
->capacity_now
)
168 /* fallback to using design values for broken batteries */
169 if (battery
->design_capacity
== battery
->capacity_now
)
172 /* we don't do any sort of metric based on percentages */
176 static int acpi_battery_get_property(struct power_supply
*psy
,
177 enum power_supply_property psp
,
178 union power_supply_propval
*val
)
181 struct acpi_battery
*battery
= to_acpi_battery(psy
);
183 if (acpi_battery_present(battery
)) {
184 /* run battery update only if it is present */
185 acpi_battery_get_state(battery
);
186 } else if (psp
!= POWER_SUPPLY_PROP_PRESENT
)
189 case POWER_SUPPLY_PROP_STATUS
:
190 if (battery
->state
& 0x01)
191 val
->intval
= POWER_SUPPLY_STATUS_DISCHARGING
;
192 else if (battery
->state
& 0x02)
193 val
->intval
= POWER_SUPPLY_STATUS_CHARGING
;
194 else if (acpi_battery_is_charged(battery
))
195 val
->intval
= POWER_SUPPLY_STATUS_FULL
;
197 val
->intval
= POWER_SUPPLY_STATUS_UNKNOWN
;
199 case POWER_SUPPLY_PROP_PRESENT
:
200 val
->intval
= acpi_battery_present(battery
);
202 case POWER_SUPPLY_PROP_TECHNOLOGY
:
203 val
->intval
= acpi_battery_technology(battery
);
205 case POWER_SUPPLY_PROP_CYCLE_COUNT
:
206 val
->intval
= battery
->cycle_count
;
208 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN
:
209 if (battery
->design_voltage
== ACPI_BATTERY_VALUE_UNKNOWN
)
212 val
->intval
= battery
->design_voltage
* 1000;
214 case POWER_SUPPLY_PROP_VOLTAGE_NOW
:
215 if (battery
->voltage_now
== ACPI_BATTERY_VALUE_UNKNOWN
)
218 val
->intval
= battery
->voltage_now
* 1000;
220 case POWER_SUPPLY_PROP_CURRENT_NOW
:
221 case POWER_SUPPLY_PROP_POWER_NOW
:
222 if (battery
->rate_now
== ACPI_BATTERY_VALUE_UNKNOWN
)
225 val
->intval
= battery
->rate_now
* 1000;
227 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN
:
228 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN
:
229 if (battery
->design_capacity
== ACPI_BATTERY_VALUE_UNKNOWN
)
232 val
->intval
= battery
->design_capacity
* 1000;
234 case POWER_SUPPLY_PROP_CHARGE_FULL
:
235 case POWER_SUPPLY_PROP_ENERGY_FULL
:
236 if (battery
->full_charge_capacity
== ACPI_BATTERY_VALUE_UNKNOWN
)
239 val
->intval
= battery
->full_charge_capacity
* 1000;
241 case POWER_SUPPLY_PROP_CHARGE_NOW
:
242 case POWER_SUPPLY_PROP_ENERGY_NOW
:
243 if (battery
->capacity_now
== ACPI_BATTERY_VALUE_UNKNOWN
)
246 val
->intval
= battery
->capacity_now
* 1000;
248 case POWER_SUPPLY_PROP_CAPACITY
:
249 if (battery
->capacity_now
&& battery
->full_charge_capacity
)
250 val
->intval
= battery
->capacity_now
* 100/
251 battery
->full_charge_capacity
;
255 case POWER_SUPPLY_PROP_MODEL_NAME
:
256 val
->strval
= battery
->model_number
;
258 case POWER_SUPPLY_PROP_MANUFACTURER
:
259 val
->strval
= battery
->oem_info
;
261 case POWER_SUPPLY_PROP_SERIAL_NUMBER
:
262 val
->strval
= battery
->serial_number
;
270 static enum power_supply_property charge_battery_props
[] = {
271 POWER_SUPPLY_PROP_STATUS
,
272 POWER_SUPPLY_PROP_PRESENT
,
273 POWER_SUPPLY_PROP_TECHNOLOGY
,
274 POWER_SUPPLY_PROP_CYCLE_COUNT
,
275 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN
,
276 POWER_SUPPLY_PROP_VOLTAGE_NOW
,
277 POWER_SUPPLY_PROP_CURRENT_NOW
,
278 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN
,
279 POWER_SUPPLY_PROP_CHARGE_FULL
,
280 POWER_SUPPLY_PROP_CHARGE_NOW
,
281 POWER_SUPPLY_PROP_CAPACITY
,
282 POWER_SUPPLY_PROP_MODEL_NAME
,
283 POWER_SUPPLY_PROP_MANUFACTURER
,
284 POWER_SUPPLY_PROP_SERIAL_NUMBER
,
287 static enum power_supply_property energy_battery_props
[] = {
288 POWER_SUPPLY_PROP_STATUS
,
289 POWER_SUPPLY_PROP_PRESENT
,
290 POWER_SUPPLY_PROP_TECHNOLOGY
,
291 POWER_SUPPLY_PROP_CYCLE_COUNT
,
292 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN
,
293 POWER_SUPPLY_PROP_VOLTAGE_NOW
,
294 POWER_SUPPLY_PROP_POWER_NOW
,
295 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN
,
296 POWER_SUPPLY_PROP_ENERGY_FULL
,
297 POWER_SUPPLY_PROP_ENERGY_NOW
,
298 POWER_SUPPLY_PROP_CAPACITY
,
299 POWER_SUPPLY_PROP_MODEL_NAME
,
300 POWER_SUPPLY_PROP_MANUFACTURER
,
301 POWER_SUPPLY_PROP_SERIAL_NUMBER
,
304 /* --------------------------------------------------------------------------
306 -------------------------------------------------------------------------- */
307 struct acpi_offsets
{
308 size_t offset
; /* offset inside struct acpi_sbs_battery */
309 u8 mode
; /* int or string? */
312 static struct acpi_offsets state_offsets
[] = {
313 {offsetof(struct acpi_battery
, state
), 0},
314 {offsetof(struct acpi_battery
, rate_now
), 0},
315 {offsetof(struct acpi_battery
, capacity_now
), 0},
316 {offsetof(struct acpi_battery
, voltage_now
), 0},
319 static struct acpi_offsets info_offsets
[] = {
320 {offsetof(struct acpi_battery
, power_unit
), 0},
321 {offsetof(struct acpi_battery
, design_capacity
), 0},
322 {offsetof(struct acpi_battery
, full_charge_capacity
), 0},
323 {offsetof(struct acpi_battery
, technology
), 0},
324 {offsetof(struct acpi_battery
, design_voltage
), 0},
325 {offsetof(struct acpi_battery
, design_capacity_warning
), 0},
326 {offsetof(struct acpi_battery
, design_capacity_low
), 0},
327 {offsetof(struct acpi_battery
, capacity_granularity_1
), 0},
328 {offsetof(struct acpi_battery
, capacity_granularity_2
), 0},
329 {offsetof(struct acpi_battery
, model_number
), 1},
330 {offsetof(struct acpi_battery
, serial_number
), 1},
331 {offsetof(struct acpi_battery
, type
), 1},
332 {offsetof(struct acpi_battery
, oem_info
), 1},
335 static struct acpi_offsets extended_info_offsets
[] = {
336 {offsetof(struct acpi_battery
, revision
), 0},
337 {offsetof(struct acpi_battery
, power_unit
), 0},
338 {offsetof(struct acpi_battery
, design_capacity
), 0},
339 {offsetof(struct acpi_battery
, full_charge_capacity
), 0},
340 {offsetof(struct acpi_battery
, technology
), 0},
341 {offsetof(struct acpi_battery
, design_voltage
), 0},
342 {offsetof(struct acpi_battery
, design_capacity_warning
), 0},
343 {offsetof(struct acpi_battery
, design_capacity_low
), 0},
344 {offsetof(struct acpi_battery
, cycle_count
), 0},
345 {offsetof(struct acpi_battery
, measurement_accuracy
), 0},
346 {offsetof(struct acpi_battery
, max_sampling_time
), 0},
347 {offsetof(struct acpi_battery
, min_sampling_time
), 0},
348 {offsetof(struct acpi_battery
, max_averaging_interval
), 0},
349 {offsetof(struct acpi_battery
, min_averaging_interval
), 0},
350 {offsetof(struct acpi_battery
, capacity_granularity_1
), 0},
351 {offsetof(struct acpi_battery
, capacity_granularity_2
), 0},
352 {offsetof(struct acpi_battery
, model_number
), 1},
353 {offsetof(struct acpi_battery
, serial_number
), 1},
354 {offsetof(struct acpi_battery
, type
), 1},
355 {offsetof(struct acpi_battery
, oem_info
), 1},
358 static int extract_package(struct acpi_battery
*battery
,
359 union acpi_object
*package
,
360 struct acpi_offsets
*offsets
, int num
)
363 union acpi_object
*element
;
364 if (package
->type
!= ACPI_TYPE_PACKAGE
)
366 for (i
= 0; i
< num
; ++i
) {
367 if (package
->package
.count
<= i
)
369 element
= &package
->package
.elements
[i
];
370 if (offsets
[i
].mode
) {
371 u8
*ptr
= (u8
*)battery
+ offsets
[i
].offset
;
372 if (element
->type
== ACPI_TYPE_STRING
||
373 element
->type
== ACPI_TYPE_BUFFER
)
374 strncpy(ptr
, element
->string
.pointer
, 32);
375 else if (element
->type
== ACPI_TYPE_INTEGER
) {
376 strncpy(ptr
, (u8
*)&element
->integer
.value
,
378 ptr
[sizeof(u64
)] = 0;
380 *ptr
= 0; /* don't have value */
382 int *x
= (int *)((u8
*)battery
+ offsets
[i
].offset
);
383 *x
= (element
->type
== ACPI_TYPE_INTEGER
) ?
384 element
->integer
.value
: -1;
390 static int acpi_battery_get_status(struct acpi_battery
*battery
)
392 if (acpi_bus_get_status(battery
->device
)) {
393 ACPI_EXCEPTION((AE_INFO
, AE_ERROR
, "Evaluating _STA"));
399 static int acpi_battery_get_info(struct acpi_battery
*battery
)
401 int result
= -EFAULT
;
402 acpi_status status
= 0;
403 char *name
= test_bit(ACPI_BATTERY_XINFO_PRESENT
, &battery
->flags
) ?
406 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
408 if (!acpi_battery_present(battery
))
410 mutex_lock(&battery
->lock
);
411 status
= acpi_evaluate_object(battery
->device
->handle
, name
,
413 mutex_unlock(&battery
->lock
);
415 if (ACPI_FAILURE(status
)) {
416 ACPI_EXCEPTION((AE_INFO
, status
, "Evaluating %s", name
));
419 if (test_bit(ACPI_BATTERY_XINFO_PRESENT
, &battery
->flags
))
420 result
= extract_package(battery
, buffer
.pointer
,
421 extended_info_offsets
,
422 ARRAY_SIZE(extended_info_offsets
));
424 result
= extract_package(battery
, buffer
.pointer
,
425 info_offsets
, ARRAY_SIZE(info_offsets
));
426 kfree(buffer
.pointer
);
427 if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY
, &battery
->flags
))
428 battery
->full_charge_capacity
= battery
->design_capacity
;
429 if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH
, &battery
->flags
) &&
430 battery
->power_unit
&& battery
->design_voltage
) {
431 battery
->design_capacity
= battery
->design_capacity
*
432 10000 / battery
->design_voltage
;
433 battery
->full_charge_capacity
= battery
->full_charge_capacity
*
434 10000 / battery
->design_voltage
;
435 battery
->design_capacity_warning
=
436 battery
->design_capacity_warning
*
437 10000 / battery
->design_voltage
;
438 /* Curiously, design_capacity_low, unlike the rest of them,
440 /* capacity_granularity_* equal 1 on the systems tested, so
441 it's impossible to tell if they would need an adjustment
442 or not if their values were higher. */
447 static int acpi_battery_get_state(struct acpi_battery
*battery
)
450 acpi_status status
= 0;
451 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
453 if (!acpi_battery_present(battery
))
456 if (battery
->update_time
&&
457 time_before(jiffies
, battery
->update_time
+
458 msecs_to_jiffies(cache_time
)))
461 mutex_lock(&battery
->lock
);
462 status
= acpi_evaluate_object(battery
->device
->handle
, "_BST",
464 mutex_unlock(&battery
->lock
);
466 if (ACPI_FAILURE(status
)) {
467 ACPI_EXCEPTION((AE_INFO
, status
, "Evaluating _BST"));
471 result
= extract_package(battery
, buffer
.pointer
,
472 state_offsets
, ARRAY_SIZE(state_offsets
));
473 battery
->update_time
= jiffies
;
474 kfree(buffer
.pointer
);
476 /* For buggy DSDTs that report negative 16-bit values for either
477 * charging or discharging current and/or report 0 as 65536
480 if (battery
->power_unit
== ACPI_BATTERY_POWER_UNIT_MA
&&
481 battery
->rate_now
!= ACPI_BATTERY_VALUE_UNKNOWN
&&
482 (s16
)(battery
->rate_now
) < 0) {
483 battery
->rate_now
= abs((s16
)battery
->rate_now
);
484 printk_once(KERN_WARNING FW_BUG
"battery: (dis)charge rate"
488 if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY
, &battery
->flags
)
489 && battery
->capacity_now
>= 0 && battery
->capacity_now
<= 100)
490 battery
->capacity_now
= (battery
->capacity_now
*
491 battery
->full_charge_capacity
) / 100;
492 if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH
, &battery
->flags
) &&
493 battery
->power_unit
&& battery
->design_voltage
) {
494 battery
->capacity_now
= battery
->capacity_now
*
495 10000 / battery
->design_voltage
;
500 static int acpi_battery_set_alarm(struct acpi_battery
*battery
)
502 acpi_status status
= 0;
504 if (!acpi_battery_present(battery
) ||
505 !test_bit(ACPI_BATTERY_ALARM_PRESENT
, &battery
->flags
))
508 mutex_lock(&battery
->lock
);
509 status
= acpi_execute_simple_method(battery
->device
->handle
, "_BTP",
511 mutex_unlock(&battery
->lock
);
513 if (ACPI_FAILURE(status
))
516 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Alarm set to %d\n", battery
->alarm
));
520 static int acpi_battery_init_alarm(struct acpi_battery
*battery
)
522 /* See if alarms are supported, and if so, set default */
523 if (!acpi_has_method(battery
->device
->handle
, "_BTP")) {
524 clear_bit(ACPI_BATTERY_ALARM_PRESENT
, &battery
->flags
);
527 set_bit(ACPI_BATTERY_ALARM_PRESENT
, &battery
->flags
);
529 battery
->alarm
= battery
->design_capacity_warning
;
530 return acpi_battery_set_alarm(battery
);
533 static ssize_t
acpi_battery_alarm_show(struct device
*dev
,
534 struct device_attribute
*attr
,
537 struct acpi_battery
*battery
= to_acpi_battery(dev_get_drvdata(dev
));
538 return sprintf(buf
, "%d\n", battery
->alarm
* 1000);
541 static ssize_t
acpi_battery_alarm_store(struct device
*dev
,
542 struct device_attribute
*attr
,
543 const char *buf
, size_t count
)
546 struct acpi_battery
*battery
= to_acpi_battery(dev_get_drvdata(dev
));
547 if (sscanf(buf
, "%ld\n", &x
) == 1)
548 battery
->alarm
= x
/1000;
549 if (acpi_battery_present(battery
))
550 acpi_battery_set_alarm(battery
);
554 static struct device_attribute alarm_attr
= {
555 .attr
= {.name
= "alarm", .mode
= 0644},
556 .show
= acpi_battery_alarm_show
,
557 .store
= acpi_battery_alarm_store
,
560 static int sysfs_add_battery(struct acpi_battery
*battery
)
564 if (battery
->power_unit
== ACPI_BATTERY_POWER_UNIT_MA
) {
565 battery
->bat
.properties
= charge_battery_props
;
566 battery
->bat
.num_properties
=
567 ARRAY_SIZE(charge_battery_props
);
569 battery
->bat
.properties
= energy_battery_props
;
570 battery
->bat
.num_properties
=
571 ARRAY_SIZE(energy_battery_props
);
574 battery
->bat
.name
= acpi_device_bid(battery
->device
);
575 battery
->bat
.type
= POWER_SUPPLY_TYPE_BATTERY
;
576 battery
->bat
.get_property
= acpi_battery_get_property
;
578 result
= power_supply_register(&battery
->device
->dev
, &battery
->bat
);
581 return device_create_file(battery
->bat
.dev
, &alarm_attr
);
584 static void sysfs_remove_battery(struct acpi_battery
*battery
)
586 mutex_lock(&battery
->sysfs_lock
);
587 if (!battery
->bat
.dev
) {
588 mutex_unlock(&battery
->sysfs_lock
);
592 device_remove_file(battery
->bat
.dev
, &alarm_attr
);
593 power_supply_unregister(&battery
->bat
);
594 battery
->bat
.dev
= NULL
;
595 mutex_unlock(&battery
->sysfs_lock
);
598 static void find_battery(const struct dmi_header
*dm
, void *private)
600 struct acpi_battery
*battery
= (struct acpi_battery
*)private;
601 /* Note: the hardcoded offsets below have been extracted from
602 the source code of dmidecode. */
603 if (dm
->type
== DMI_ENTRY_PORTABLE_BATTERY
&& dm
->length
>= 8) {
604 const u8
*dmi_data
= (const u8
*)(dm
+ 1);
605 int dmi_capacity
= get_unaligned((const u16
*)(dmi_data
+ 6));
606 if (dm
->length
>= 18)
607 dmi_capacity
*= dmi_data
[17];
608 if (battery
->design_capacity
* battery
->design_voltage
/ 1000
610 battery
->design_capacity
* 10 == dmi_capacity
)
611 set_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH
,
617 * According to the ACPI spec, some kinds of primary batteries can
618 * report percentage battery remaining capacity directly to OS.
619 * In this case, it reports the Last Full Charged Capacity == 100
620 * and BatteryPresentRate == 0xFFFFFFFF.
622 * Now we found some battery reports percentage remaining capacity
623 * even if it's rechargeable.
624 * https://bugzilla.kernel.org/show_bug.cgi?id=15979
626 * Handle this correctly so that they won't break userspace.
628 static void acpi_battery_quirks(struct acpi_battery
*battery
)
630 if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY
, &battery
->flags
))
633 if (battery
->full_charge_capacity
== 100 &&
634 battery
->rate_now
== ACPI_BATTERY_VALUE_UNKNOWN
&&
635 battery
->capacity_now
>= 0 && battery
->capacity_now
<= 100) {
636 set_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY
, &battery
->flags
);
637 battery
->full_charge_capacity
= battery
->design_capacity
;
638 battery
->capacity_now
= (battery
->capacity_now
*
639 battery
->full_charge_capacity
) / 100;
642 if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH
, &battery
->flags
))
645 if (battery
->power_unit
&& dmi_name_in_vendors("LENOVO")) {
647 s
= dmi_get_system_info(DMI_PRODUCT_VERSION
);
648 if (s
&& !strnicmp(s
, "ThinkPad", 8)) {
649 dmi_walk(find_battery
, battery
);
650 if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH
,
652 battery
->design_voltage
) {
653 battery
->design_capacity
=
654 battery
->design_capacity
*
655 10000 / battery
->design_voltage
;
656 battery
->full_charge_capacity
=
657 battery
->full_charge_capacity
*
658 10000 / battery
->design_voltage
;
659 battery
->design_capacity_warning
=
660 battery
->design_capacity_warning
*
661 10000 / battery
->design_voltage
;
662 battery
->capacity_now
= battery
->capacity_now
*
663 10000 / battery
->design_voltage
;
669 static int acpi_battery_update(struct acpi_battery
*battery
)
671 int result
, old_present
= acpi_battery_present(battery
);
672 result
= acpi_battery_get_status(battery
);
675 if (!acpi_battery_present(battery
)) {
676 sysfs_remove_battery(battery
);
677 battery
->update_time
= 0;
680 if (!battery
->update_time
||
681 old_present
!= acpi_battery_present(battery
)) {
682 result
= acpi_battery_get_info(battery
);
685 acpi_battery_init_alarm(battery
);
687 if (!battery
->bat
.dev
) {
688 result
= sysfs_add_battery(battery
);
692 result
= acpi_battery_get_state(battery
);
693 acpi_battery_quirks(battery
);
697 static void acpi_battery_refresh(struct acpi_battery
*battery
)
701 if (!battery
->bat
.dev
)
704 power_unit
= battery
->power_unit
;
706 acpi_battery_get_info(battery
);
708 if (power_unit
== battery
->power_unit
)
711 /* The battery has changed its reporting units. */
712 sysfs_remove_battery(battery
);
713 sysfs_add_battery(battery
);
716 /* --------------------------------------------------------------------------
718 -------------------------------------------------------------------------- */
720 static void acpi_battery_notify(struct acpi_device
*device
, u32 event
)
722 struct acpi_battery
*battery
= acpi_driver_data(device
);
727 old
= battery
->bat
.dev
;
728 if (event
== ACPI_BATTERY_NOTIFY_INFO
)
729 acpi_battery_refresh(battery
);
730 acpi_battery_update(battery
);
731 acpi_bus_generate_netlink_event(device
->pnp
.device_class
,
732 dev_name(&device
->dev
), event
,
733 acpi_battery_present(battery
));
734 /* acpi_battery_update could remove power_supply object */
735 if (old
&& battery
->bat
.dev
)
736 power_supply_changed(&battery
->bat
);
739 static int battery_notify(struct notifier_block
*nb
,
740 unsigned long mode
, void *_unused
)
742 struct acpi_battery
*battery
= container_of(nb
, struct acpi_battery
,
745 case PM_POST_HIBERNATION
:
746 case PM_POST_SUSPEND
:
747 if (battery
->bat
.dev
) {
748 sysfs_remove_battery(battery
);
749 sysfs_add_battery(battery
);
757 static int acpi_battery_add(struct acpi_device
*device
)
760 struct acpi_battery
*battery
= NULL
;
764 battery
= kzalloc(sizeof(struct acpi_battery
), GFP_KERNEL
);
767 battery
->device
= device
;
768 strcpy(acpi_device_name(device
), ACPI_BATTERY_DEVICE_NAME
);
769 strcpy(acpi_device_class(device
), ACPI_BATTERY_CLASS
);
770 device
->driver_data
= battery
;
771 mutex_init(&battery
->lock
);
772 mutex_init(&battery
->sysfs_lock
);
773 if (acpi_has_method(battery
->device
->handle
, "_BIX"))
774 set_bit(ACPI_BATTERY_XINFO_PRESENT
, &battery
->flags
);
775 result
= acpi_battery_update(battery
);
779 printk(KERN_INFO PREFIX
"%s Slot [%s] (battery %s)\n",
780 ACPI_BATTERY_DEVICE_NAME
, acpi_device_bid(device
),
781 device
->status
.battery_present
? "present" : "absent");
783 battery
->pm_nb
.notifier_call
= battery_notify
;
784 register_pm_notifier(&battery
->pm_nb
);
789 sysfs_remove_battery(battery
);
790 mutex_destroy(&battery
->lock
);
791 mutex_destroy(&battery
->sysfs_lock
);
796 static int acpi_battery_remove(struct acpi_device
*device
)
798 struct acpi_battery
*battery
= NULL
;
800 if (!device
|| !acpi_driver_data(device
))
802 battery
= acpi_driver_data(device
);
803 unregister_pm_notifier(&battery
->pm_nb
);
804 sysfs_remove_battery(battery
);
805 mutex_destroy(&battery
->lock
);
806 mutex_destroy(&battery
->sysfs_lock
);
811 #ifdef CONFIG_PM_SLEEP
812 /* this is needed to learn about changes made in suspended state */
813 static int acpi_battery_resume(struct device
*dev
)
815 struct acpi_battery
*battery
;
820 battery
= acpi_driver_data(to_acpi_device(dev
));
824 battery
->update_time
= 0;
825 acpi_battery_update(battery
);
830 static SIMPLE_DEV_PM_OPS(acpi_battery_pm
, NULL
, acpi_battery_resume
);
832 static struct acpi_driver acpi_battery_driver
= {
834 .class = ACPI_BATTERY_CLASS
,
835 .ids
= battery_device_ids
,
836 .flags
= ACPI_DRIVER_ALL_NOTIFY_EVENTS
,
838 .add
= acpi_battery_add
,
839 .remove
= acpi_battery_remove
,
840 .notify
= acpi_battery_notify
,
842 .drv
.pm
= &acpi_battery_pm
,
845 static void __init
acpi_battery_init_async(void *unused
, async_cookie_t cookie
)
849 acpi_bus_register_driver(&acpi_battery_driver
);
852 static int __init
acpi_battery_init(void)
854 async_schedule(acpi_battery_init_async
, NULL
);
858 static void __exit
acpi_battery_exit(void)
860 acpi_bus_unregister_driver(&acpi_battery_driver
);
863 module_init(acpi_battery_init
);
864 module_exit(acpi_battery_exit
);