Thomas Gleixner | c942fdd | 2019-05-27 08:55:06 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 3 | * battery.c - ACPI Battery Driver (Revision: 2.0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 5 | * Copyright (C) 2007 Alexey Starikovskiy <astarikovskiy@suse.de> |
| 6 | * Copyright (C) 2004-2007 Vladimir Lebedev <vladimir.p.lebedev@intel.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com> |
| 8 | * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | */ |
| 10 | |
Rafael J. Wysocki | bd8c5d1 | 2021-02-03 19:44:57 +0100 | [diff] [blame] | 11 | #define pr_fmt(fmt) "ACPI: battery: " fmt |
Ognjen Galic | fa93854 | 2018-02-07 15:58:13 +0100 | [diff] [blame] | 12 | |
Dmitry Rozhkov | 53dd200 | 2018-07-24 14:27:32 +0300 | [diff] [blame] | 13 | #include <linux/async.h> |
| 14 | #include <linux/delay.h> |
| 15 | #include <linux/dmi.h> |
| 16 | #include <linux/jiffies.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/kernel.h> |
Ognjen Galic | fa93854 | 2018-02-07 15:58:13 +0100 | [diff] [blame] | 18 | #include <linux/list.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/module.h> |
Ognjen Galic | fa93854 | 2018-02-07 15:58:13 +0100 | [diff] [blame] | 20 | #include <linux/mutex.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 21 | #include <linux/slab.h> |
Kyle McMartin | 25be582 | 2011-03-22 16:19:50 -0400 | [diff] [blame] | 22 | #include <linux/suspend.h> |
Dmitry Rozhkov | 53dd200 | 2018-07-24 14:27:32 +0300 | [diff] [blame] | 23 | #include <linux/types.h> |
| 24 | |
Kamil Iskra | 4000e626 | 2012-11-16 22:28:58 +0100 | [diff] [blame] | 25 | #include <asm/unaligned.h> |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 26 | |
Lv Zheng | 8b48463 | 2013-12-03 08:49:16 +0800 | [diff] [blame] | 27 | #include <linux/acpi.h> |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 28 | #include <linux/power_supply.h> |
| 29 | |
Ognjen Galic | fa93854 | 2018-02-07 15:58:13 +0100 | [diff] [blame] | 30 | #include <acpi/battery.h> |
Alexander Mezin | f03be35 | 2014-03-12 00:58:46 +0700 | [diff] [blame] | 31 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #define ACPI_BATTERY_VALUE_UNKNOWN 0xFFFFFFFF |
Hans de Goede | cc99f0a | 2019-12-10 10:57:50 +0100 | [diff] [blame] | 33 | #define ACPI_BATTERY_CAPACITY_VALID(capacity) \ |
| 34 | ((capacity) != 0 && (capacity) != ACPI_BATTERY_VALUE_UNKNOWN) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #define ACPI_BATTERY_DEVICE_NAME "Battery" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
Lan Tianyu | ae6f618 | 2011-06-30 11:32:40 +0800 | [diff] [blame] | 38 | /* Battery power unit: 0 means mW, 1 means mA */ |
| 39 | #define ACPI_BATTERY_POWER_UNIT_MA 1 |
| 40 | |
Zhang Rui | 1ac5aaa | 2014-05-28 15:23:36 +0800 | [diff] [blame] | 41 | #define ACPI_BATTERY_STATE_DISCHARGING 0x1 |
| 42 | #define ACPI_BATTERY_STATE_CHARGING 0x2 |
| 43 | #define ACPI_BATTERY_STATE_CRITICAL 0x4 |
| 44 | |
Len Brown | f52fd66 | 2007-02-12 22:42:12 -0500 | [diff] [blame] | 45 | MODULE_AUTHOR("Paul Diefenbaugh"); |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 46 | MODULE_AUTHOR("Alexey Starikovskiy <astarikovskiy@suse.de>"); |
Len Brown | 7cda93e | 2007-02-12 23:50:02 -0500 | [diff] [blame] | 47 | MODULE_DESCRIPTION("ACPI Battery Driver"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | MODULE_LICENSE("GPL"); |
| 49 | |
Luis Henriques | eca21d91 | 2015-05-11 22:49:05 +0100 | [diff] [blame] | 50 | static async_cookie_t async_cookie; |
Hans de Goede | bc39fbc | 2017-04-19 14:02:09 +0200 | [diff] [blame] | 51 | static bool battery_driver_registered; |
Lan Tianyu | a90b403 | 2014-01-06 22:50:37 +0800 | [diff] [blame] | 52 | static int battery_bix_broken_package; |
Alexander Mezin | f43691c | 2014-06-04 02:01:23 +0700 | [diff] [blame] | 53 | static int battery_notification_delay_ms; |
Hans de Goede | 1b799c5 | 2018-04-12 12:02:00 +0200 | [diff] [blame] | 54 | static int battery_ac_is_broken; |
Thomas Weißschuh | e96c119 | 2021-12-22 22:20:14 +0100 | [diff] [blame] | 55 | static int battery_quirk_notcharging; |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 56 | static unsigned int cache_time = 1000; |
| 57 | module_param(cache_time, uint, 0644); |
| 58 | MODULE_PARM_DESC(cache_time, "cache time in milliseconds"); |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 59 | |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 60 | static const struct acpi_device_id battery_device_ids[] = { |
| 61 | {"PNP0C0A", 0}, |
| 62 | {"", 0}, |
| 63 | }; |
| 64 | |
| 65 | MODULE_DEVICE_TABLE(acpi, battery_device_ids); |
| 66 | |
Alexey Starikovskiy | 7b3bcc4 | 2009-10-15 14:31:24 +0400 | [diff] [blame] | 67 | enum { |
| 68 | ACPI_BATTERY_ALARM_PRESENT, |
Alexey Starikovskiy | c67fcd6 | 2009-10-15 14:31:44 +0400 | [diff] [blame] | 69 | ACPI_BATTERY_XINFO_PRESENT, |
Zhang Rui | 557d586 | 2010-10-22 10:02:06 +0800 | [diff] [blame] | 70 | ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, |
Kamil Iskra | 4000e626 | 2012-11-16 22:28:58 +0100 | [diff] [blame] | 71 | /* On Lenovo Thinkpad models from 2010 and 2011, the power unit |
Xiaofei Tan | 65545ab | 2021-03-27 20:08:18 +0800 | [diff] [blame] | 72 | * switches between mWh and mAh depending on whether the system |
| 73 | * is running on battery or not. When mAh is the unit, most |
| 74 | * reported values are incorrect and need to be adjusted by |
| 75 | * 10000/design_voltage. Verified on x201, t410, t410s, and x220. |
| 76 | * Pre-2010 and 2012 models appear to always report in mWh and |
| 77 | * are thus unaffected (tested with t42, t61, t500, x200, x300, |
| 78 | * and x230). Also, in mid-2012 Lenovo issued a BIOS update for |
| 79 | * the 2011 models that fixes the issue (tested on x220 with a |
| 80 | * post-1.29 BIOS), but as of Nov. 2012, no such update is |
| 81 | * available for the 2010 models. |
| 82 | */ |
Kamil Iskra | 4000e626 | 2012-11-16 22:28:58 +0100 | [diff] [blame] | 83 | ACPI_BATTERY_QUIRK_THINKPAD_MAH, |
Laszlo Toth | a20136a | 2018-02-24 10:20:15 +0100 | [diff] [blame] | 84 | /* for batteries reporting current capacity with design capacity |
| 85 | * on a full charge, but showing degradation in full charge cap. |
| 86 | */ |
| 87 | ACPI_BATTERY_QUIRK_DEGRADED_FULL_CHARGE, |
Alexey Starikovskiy | 7b3bcc4 | 2009-10-15 14:31:24 +0400 | [diff] [blame] | 88 | }; |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 89 | |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 90 | struct acpi_battery { |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 91 | struct mutex lock; |
Sergey Senozhatsky | 69d94ec | 2011-08-06 01:34:08 +0300 | [diff] [blame] | 92 | struct mutex sysfs_lock; |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 93 | struct power_supply *bat; |
| 94 | struct power_supply_desc bat_desc; |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 95 | struct acpi_device *device; |
Kyle McMartin | 25be582 | 2011-03-22 16:19:50 -0400 | [diff] [blame] | 96 | struct notifier_block pm_nb; |
Ognjen Galic | fa93854 | 2018-02-07 15:58:13 +0100 | [diff] [blame] | 97 | struct list_head list; |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 98 | unsigned long update_time; |
Lan Tianyu | 016d5ba | 2013-07-30 14:00:42 +0200 | [diff] [blame] | 99 | int revision; |
Alexey Starikovskiy | 7faa144 | 2009-03-27 22:23:52 -0400 | [diff] [blame] | 100 | int rate_now; |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 101 | int capacity_now; |
| 102 | int voltage_now; |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 103 | int design_capacity; |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 104 | int full_charge_capacity; |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 105 | int technology; |
| 106 | int design_voltage; |
| 107 | int design_capacity_warning; |
| 108 | int design_capacity_low; |
Alexey Starikovskiy | c67fcd6 | 2009-10-15 14:31:44 +0400 | [diff] [blame] | 109 | int cycle_count; |
| 110 | int measurement_accuracy; |
| 111 | int max_sampling_time; |
| 112 | int min_sampling_time; |
| 113 | int max_averaging_interval; |
| 114 | int min_averaging_interval; |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 115 | int capacity_granularity_1; |
| 116 | int capacity_granularity_2; |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 117 | int alarm; |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 118 | char model_number[32]; |
| 119 | char serial_number[32]; |
| 120 | char type[32]; |
| 121 | char oem_info[32]; |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 122 | int state; |
| 123 | int power_unit; |
Alexey Starikovskiy | 7b3bcc4 | 2009-10-15 14:31:24 +0400 | [diff] [blame] | 124 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | }; |
| 126 | |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 127 | #define to_acpi_battery(x) power_supply_get_drvdata(x) |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 128 | |
Andy Shevchenko | efd941f | 2013-03-11 09:17:06 +0000 | [diff] [blame] | 129 | static inline int acpi_battery_present(struct acpi_battery *battery) |
Alexey Starikovskiy | 78490d8 | 2007-05-11 13:18:55 -0400 | [diff] [blame] | 130 | { |
| 131 | return battery->device->status.battery_present; |
| 132 | } |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 133 | |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 134 | static int acpi_battery_technology(struct acpi_battery *battery) |
| 135 | { |
| 136 | if (!strcasecmp("NiCd", battery->type)) |
| 137 | return POWER_SUPPLY_TECHNOLOGY_NiCd; |
| 138 | if (!strcasecmp("NiMH", battery->type)) |
| 139 | return POWER_SUPPLY_TECHNOLOGY_NiMH; |
| 140 | if (!strcasecmp("LION", battery->type)) |
| 141 | return POWER_SUPPLY_TECHNOLOGY_LION; |
Andrey Borzenkov | ad40e68 | 2007-11-10 20:02:49 +0300 | [diff] [blame] | 142 | if (!strncasecmp("LI-ION", battery->type, 6)) |
Alexey Starikovskiy | 0bde7ee | 2007-10-28 15:33:10 +0300 | [diff] [blame] | 143 | return POWER_SUPPLY_TECHNOLOGY_LION; |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 144 | if (!strcasecmp("LiP", battery->type)) |
| 145 | return POWER_SUPPLY_TECHNOLOGY_LIPO; |
| 146 | return POWER_SUPPLY_TECHNOLOGY_UNKNOWN; |
| 147 | } |
| 148 | |
Alexey Starikovskiy | 9104476 | 2007-11-13 12:23:06 +0300 | [diff] [blame] | 149 | static int acpi_battery_get_state(struct acpi_battery *battery); |
Alexey Starikovskiy | b19073a | 2007-10-25 17:10:47 -0400 | [diff] [blame] | 150 | |
Richard Hughes | 56f382a | 2009-01-25 15:05:50 +0000 | [diff] [blame] | 151 | static int acpi_battery_is_charged(struct acpi_battery *battery) |
| 152 | { |
Zhang Rui | 1ac5aaa | 2014-05-28 15:23:36 +0800 | [diff] [blame] | 153 | /* charging, discharging or critical low */ |
Richard Hughes | 56f382a | 2009-01-25 15:05:50 +0000 | [diff] [blame] | 154 | if (battery->state != 0) |
| 155 | return 0; |
| 156 | |
| 157 | /* battery not reporting charge */ |
| 158 | if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN || |
| 159 | battery->capacity_now == 0) |
| 160 | return 0; |
| 161 | |
| 162 | /* good batteries update full_charge as the batteries degrade */ |
| 163 | if (battery->full_charge_capacity == battery->capacity_now) |
| 164 | return 1; |
| 165 | |
| 166 | /* fallback to using design values for broken batteries */ |
André Almeida | 2835f32 | 2021-10-08 00:05:29 -0300 | [diff] [blame] | 167 | if (battery->design_capacity <= battery->capacity_now) |
Richard Hughes | 56f382a | 2009-01-25 15:05:50 +0000 | [diff] [blame] | 168 | return 1; |
| 169 | |
| 170 | /* we don't do any sort of metric based on percentages */ |
| 171 | return 0; |
| 172 | } |
| 173 | |
Laszlo Toth | a20136a | 2018-02-24 10:20:15 +0100 | [diff] [blame] | 174 | static bool acpi_battery_is_degraded(struct acpi_battery *battery) |
| 175 | { |
Hans de Goede | cc99f0a | 2019-12-10 10:57:50 +0100 | [diff] [blame] | 176 | return ACPI_BATTERY_CAPACITY_VALID(battery->full_charge_capacity) && |
| 177 | ACPI_BATTERY_CAPACITY_VALID(battery->design_capacity) && |
Laszlo Toth | a20136a | 2018-02-24 10:20:15 +0100 | [diff] [blame] | 178 | battery->full_charge_capacity < battery->design_capacity; |
| 179 | } |
| 180 | |
Hans de Goede | 19fffc8 | 2018-04-12 12:01:59 +0200 | [diff] [blame] | 181 | static int acpi_battery_handle_discharging(struct acpi_battery *battery) |
| 182 | { |
| 183 | /* |
| 184 | * Some devices wrongly report discharging if the battery's charge level |
| 185 | * was above the device's start charging threshold atm the AC adapter |
| 186 | * was plugged in and the device thus did not start a new charge cycle. |
| 187 | */ |
Hans de Goede | 1b799c5 | 2018-04-12 12:02:00 +0200 | [diff] [blame] | 188 | if ((battery_ac_is_broken || power_supply_is_system_supplied()) && |
| 189 | battery->rate_now == 0) |
Hans de Goede | 19fffc8 | 2018-04-12 12:01:59 +0200 | [diff] [blame] | 190 | return POWER_SUPPLY_STATUS_NOT_CHARGING; |
| 191 | |
| 192 | return POWER_SUPPLY_STATUS_DISCHARGING; |
| 193 | } |
| 194 | |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 195 | static int acpi_battery_get_property(struct power_supply *psy, |
| 196 | enum power_supply_property psp, |
| 197 | union power_supply_propval *val) |
| 198 | { |
Hans de Goede | 5b74d1d | 2019-12-10 10:57:51 +0100 | [diff] [blame] | 199 | int full_capacity = ACPI_BATTERY_VALUE_UNKNOWN, ret = 0; |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 200 | struct acpi_battery *battery = to_acpi_battery(psy); |
| 201 | |
Alexey Starikovskiy | 9104476 | 2007-11-13 12:23:06 +0300 | [diff] [blame] | 202 | if (acpi_battery_present(battery)) { |
| 203 | /* run battery update only if it is present */ |
| 204 | acpi_battery_get_state(battery); |
| 205 | } else if (psp != POWER_SUPPLY_PROP_PRESENT) |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 206 | return -ENODEV; |
| 207 | switch (psp) { |
| 208 | case POWER_SUPPLY_PROP_STATUS: |
Daniel Drake | 82bf43b | 2018-03-14 16:42:17 +0800 | [diff] [blame] | 209 | if (battery->state & ACPI_BATTERY_STATE_DISCHARGING) |
Hans de Goede | 19fffc8 | 2018-04-12 12:01:59 +0200 | [diff] [blame] | 210 | val->intval = acpi_battery_handle_discharging(battery); |
Daniel Drake | 82bf43b | 2018-03-14 16:42:17 +0800 | [diff] [blame] | 211 | else if (battery->state & ACPI_BATTERY_STATE_CHARGING) |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 212 | val->intval = POWER_SUPPLY_STATUS_CHARGING; |
Richard Hughes | 56f382a | 2009-01-25 15:05:50 +0000 | [diff] [blame] | 213 | else if (acpi_battery_is_charged(battery)) |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 214 | val->intval = POWER_SUPPLY_STATUS_FULL; |
Thomas Weißschuh | e96c119 | 2021-12-22 22:20:14 +0100 | [diff] [blame] | 215 | else if (battery_quirk_notcharging) |
| 216 | val->intval = POWER_SUPPLY_STATUS_NOT_CHARGING; |
Roland Dreier | 4c41d3a | 2007-11-07 15:09:09 -0800 | [diff] [blame] | 217 | else |
| 218 | val->intval = POWER_SUPPLY_STATUS_UNKNOWN; |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 219 | break; |
| 220 | case POWER_SUPPLY_PROP_PRESENT: |
| 221 | val->intval = acpi_battery_present(battery); |
| 222 | break; |
| 223 | case POWER_SUPPLY_PROP_TECHNOLOGY: |
| 224 | val->intval = acpi_battery_technology(battery); |
| 225 | break; |
Alexey Starikovskiy | c67fcd6 | 2009-10-15 14:31:44 +0400 | [diff] [blame] | 226 | case POWER_SUPPLY_PROP_CYCLE_COUNT: |
| 227 | val->intval = battery->cycle_count; |
| 228 | break; |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 229 | case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN: |
Rafael J. Wysocki | a1b4bd6 | 2010-10-23 19:35:15 +0200 | [diff] [blame] | 230 | if (battery->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN) |
| 231 | ret = -ENODEV; |
| 232 | else |
| 233 | val->intval = battery->design_voltage * 1000; |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 234 | break; |
| 235 | case POWER_SUPPLY_PROP_VOLTAGE_NOW: |
Rafael J. Wysocki | a1b4bd6 | 2010-10-23 19:35:15 +0200 | [diff] [blame] | 236 | if (battery->voltage_now == ACPI_BATTERY_VALUE_UNKNOWN) |
| 237 | ret = -ENODEV; |
| 238 | else |
| 239 | val->intval = battery->voltage_now * 1000; |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 240 | break; |
| 241 | case POWER_SUPPLY_PROP_CURRENT_NOW: |
Alexey Starikovskiy | 7faa144 | 2009-03-27 22:23:52 -0400 | [diff] [blame] | 242 | case POWER_SUPPLY_PROP_POWER_NOW: |
Rafael J. Wysocki | a1b4bd6 | 2010-10-23 19:35:15 +0200 | [diff] [blame] | 243 | if (battery->rate_now == ACPI_BATTERY_VALUE_UNKNOWN) |
| 244 | ret = -ENODEV; |
| 245 | else |
| 246 | val->intval = battery->rate_now * 1000; |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 247 | break; |
| 248 | case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN: |
| 249 | case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN: |
Hans de Goede | cc99f0a | 2019-12-10 10:57:50 +0100 | [diff] [blame] | 250 | if (!ACPI_BATTERY_CAPACITY_VALID(battery->design_capacity)) |
Rafael J. Wysocki | a1b4bd6 | 2010-10-23 19:35:15 +0200 | [diff] [blame] | 251 | ret = -ENODEV; |
| 252 | else |
| 253 | val->intval = battery->design_capacity * 1000; |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 254 | break; |
| 255 | case POWER_SUPPLY_PROP_CHARGE_FULL: |
| 256 | case POWER_SUPPLY_PROP_ENERGY_FULL: |
Hans de Goede | cc99f0a | 2019-12-10 10:57:50 +0100 | [diff] [blame] | 257 | if (!ACPI_BATTERY_CAPACITY_VALID(battery->full_charge_capacity)) |
Rafael J. Wysocki | a1b4bd6 | 2010-10-23 19:35:15 +0200 | [diff] [blame] | 258 | ret = -ENODEV; |
| 259 | else |
| 260 | val->intval = battery->full_charge_capacity * 1000; |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 261 | break; |
| 262 | case POWER_SUPPLY_PROP_CHARGE_NOW: |
| 263 | case POWER_SUPPLY_PROP_ENERGY_NOW: |
Rafael J. Wysocki | a1b4bd6 | 2010-10-23 19:35:15 +0200 | [diff] [blame] | 264 | if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN) |
| 265 | ret = -ENODEV; |
| 266 | else |
| 267 | val->intval = battery->capacity_now * 1000; |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 268 | break; |
srinivas pandruvada | a58e115 | 2012-04-05 17:38:54 -0700 | [diff] [blame] | 269 | case POWER_SUPPLY_PROP_CAPACITY: |
Hans de Goede | 5b74d1d | 2019-12-10 10:57:51 +0100 | [diff] [blame] | 270 | if (ACPI_BATTERY_CAPACITY_VALID(battery->full_charge_capacity)) |
| 271 | full_capacity = battery->full_charge_capacity; |
| 272 | else if (ACPI_BATTERY_CAPACITY_VALID(battery->design_capacity)) |
| 273 | full_capacity = battery->design_capacity; |
| 274 | |
Hans de Goede | cc99f0a | 2019-12-10 10:57:50 +0100 | [diff] [blame] | 275 | if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN || |
Hans de Goede | 5b74d1d | 2019-12-10 10:57:51 +0100 | [diff] [blame] | 276 | full_capacity == ACPI_BATTERY_VALUE_UNKNOWN) |
Hans de Goede | cc99f0a | 2019-12-10 10:57:50 +0100 | [diff] [blame] | 277 | ret = -ENODEV; |
| 278 | else |
srinivas pandruvada | a58e115 | 2012-04-05 17:38:54 -0700 | [diff] [blame] | 279 | val->intval = battery->capacity_now * 100/ |
Hans de Goede | 5b74d1d | 2019-12-10 10:57:51 +0100 | [diff] [blame] | 280 | full_capacity; |
srinivas pandruvada | a58e115 | 2012-04-05 17:38:54 -0700 | [diff] [blame] | 281 | break; |
Zhang Rui | 1ac5aaa | 2014-05-28 15:23:36 +0800 | [diff] [blame] | 282 | case POWER_SUPPLY_PROP_CAPACITY_LEVEL: |
| 283 | if (battery->state & ACPI_BATTERY_STATE_CRITICAL) |
| 284 | val->intval = POWER_SUPPLY_CAPACITY_LEVEL_CRITICAL; |
| 285 | else if (test_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags) && |
| 286 | (battery->capacity_now <= battery->alarm)) |
| 287 | val->intval = POWER_SUPPLY_CAPACITY_LEVEL_LOW; |
| 288 | else if (acpi_battery_is_charged(battery)) |
| 289 | val->intval = POWER_SUPPLY_CAPACITY_LEVEL_FULL; |
| 290 | else |
| 291 | val->intval = POWER_SUPPLY_CAPACITY_LEVEL_NORMAL; |
| 292 | break; |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 293 | case POWER_SUPPLY_PROP_MODEL_NAME: |
| 294 | val->strval = battery->model_number; |
| 295 | break; |
| 296 | case POWER_SUPPLY_PROP_MANUFACTURER: |
| 297 | val->strval = battery->oem_info; |
| 298 | break; |
maximilian attems | 7c2670b | 2008-01-22 18:46:50 +0100 | [diff] [blame] | 299 | case POWER_SUPPLY_PROP_SERIAL_NUMBER: |
| 300 | val->strval = battery->serial_number; |
| 301 | break; |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 302 | default: |
Rafael J. Wysocki | a1b4bd6 | 2010-10-23 19:35:15 +0200 | [diff] [blame] | 303 | ret = -EINVAL; |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 304 | } |
Rafael J. Wysocki | a1b4bd6 | 2010-10-23 19:35:15 +0200 | [diff] [blame] | 305 | return ret; |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 306 | } |
| 307 | |
| 308 | static enum power_supply_property charge_battery_props[] = { |
| 309 | POWER_SUPPLY_PROP_STATUS, |
| 310 | POWER_SUPPLY_PROP_PRESENT, |
| 311 | POWER_SUPPLY_PROP_TECHNOLOGY, |
Alexey Starikovskiy | c67fcd6 | 2009-10-15 14:31:44 +0400 | [diff] [blame] | 312 | POWER_SUPPLY_PROP_CYCLE_COUNT, |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 313 | POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN, |
| 314 | POWER_SUPPLY_PROP_VOLTAGE_NOW, |
| 315 | POWER_SUPPLY_PROP_CURRENT_NOW, |
| 316 | POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN, |
| 317 | POWER_SUPPLY_PROP_CHARGE_FULL, |
| 318 | POWER_SUPPLY_PROP_CHARGE_NOW, |
srinivas pandruvada | a58e115 | 2012-04-05 17:38:54 -0700 | [diff] [blame] | 319 | POWER_SUPPLY_PROP_CAPACITY, |
Zhang Rui | 1ac5aaa | 2014-05-28 15:23:36 +0800 | [diff] [blame] | 320 | POWER_SUPPLY_PROP_CAPACITY_LEVEL, |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 321 | POWER_SUPPLY_PROP_MODEL_NAME, |
| 322 | POWER_SUPPLY_PROP_MANUFACTURER, |
maximilian attems | 7c2670b | 2008-01-22 18:46:50 +0100 | [diff] [blame] | 323 | POWER_SUPPLY_PROP_SERIAL_NUMBER, |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 324 | }; |
| 325 | |
Hans de Goede | ff3154d | 2019-12-10 10:57:52 +0100 | [diff] [blame] | 326 | static enum power_supply_property charge_battery_full_cap_broken_props[] = { |
| 327 | POWER_SUPPLY_PROP_STATUS, |
| 328 | POWER_SUPPLY_PROP_PRESENT, |
| 329 | POWER_SUPPLY_PROP_TECHNOLOGY, |
| 330 | POWER_SUPPLY_PROP_CYCLE_COUNT, |
| 331 | POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN, |
| 332 | POWER_SUPPLY_PROP_VOLTAGE_NOW, |
| 333 | POWER_SUPPLY_PROP_CURRENT_NOW, |
| 334 | POWER_SUPPLY_PROP_CHARGE_NOW, |
| 335 | POWER_SUPPLY_PROP_MODEL_NAME, |
| 336 | POWER_SUPPLY_PROP_MANUFACTURER, |
| 337 | POWER_SUPPLY_PROP_SERIAL_NUMBER, |
| 338 | }; |
| 339 | |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 340 | static enum power_supply_property energy_battery_props[] = { |
| 341 | POWER_SUPPLY_PROP_STATUS, |
| 342 | POWER_SUPPLY_PROP_PRESENT, |
| 343 | POWER_SUPPLY_PROP_TECHNOLOGY, |
Alexey Starikovskiy | c67fcd6 | 2009-10-15 14:31:44 +0400 | [diff] [blame] | 344 | POWER_SUPPLY_PROP_CYCLE_COUNT, |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 345 | POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN, |
| 346 | POWER_SUPPLY_PROP_VOLTAGE_NOW, |
Alexey Starikovskiy | 7faa144 | 2009-03-27 22:23:52 -0400 | [diff] [blame] | 347 | POWER_SUPPLY_PROP_POWER_NOW, |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 348 | POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN, |
| 349 | POWER_SUPPLY_PROP_ENERGY_FULL, |
| 350 | POWER_SUPPLY_PROP_ENERGY_NOW, |
srinivas pandruvada | a58e115 | 2012-04-05 17:38:54 -0700 | [diff] [blame] | 351 | POWER_SUPPLY_PROP_CAPACITY, |
Zhang Rui | 1ac5aaa | 2014-05-28 15:23:36 +0800 | [diff] [blame] | 352 | POWER_SUPPLY_PROP_CAPACITY_LEVEL, |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 353 | POWER_SUPPLY_PROP_MODEL_NAME, |
| 354 | POWER_SUPPLY_PROP_MANUFACTURER, |
maximilian attems | 7c2670b | 2008-01-22 18:46:50 +0100 | [diff] [blame] | 355 | POWER_SUPPLY_PROP_SERIAL_NUMBER, |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 356 | }; |
| 357 | |
Hans de Goede | b41901a | 2018-08-07 09:36:30 +0200 | [diff] [blame] | 358 | static enum power_supply_property energy_battery_full_cap_broken_props[] = { |
| 359 | POWER_SUPPLY_PROP_STATUS, |
| 360 | POWER_SUPPLY_PROP_PRESENT, |
| 361 | POWER_SUPPLY_PROP_TECHNOLOGY, |
| 362 | POWER_SUPPLY_PROP_CYCLE_COUNT, |
| 363 | POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN, |
| 364 | POWER_SUPPLY_PROP_VOLTAGE_NOW, |
| 365 | POWER_SUPPLY_PROP_POWER_NOW, |
| 366 | POWER_SUPPLY_PROP_ENERGY_NOW, |
| 367 | POWER_SUPPLY_PROP_MODEL_NAME, |
| 368 | POWER_SUPPLY_PROP_MANUFACTURER, |
| 369 | POWER_SUPPLY_PROP_SERIAL_NUMBER, |
| 370 | }; |
| 371 | |
Xiaofei Tan | 65545ab | 2021-03-27 20:08:18 +0800 | [diff] [blame] | 372 | /* Battery Management */ |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 373 | struct acpi_offsets { |
| 374 | size_t offset; /* offset inside struct acpi_sbs_battery */ |
| 375 | u8 mode; /* int or string? */ |
| 376 | }; |
| 377 | |
Mathias Krause | a465878 | 2015-06-13 14:26:53 +0200 | [diff] [blame] | 378 | static const struct acpi_offsets state_offsets[] = { |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 379 | {offsetof(struct acpi_battery, state), 0}, |
Alexey Starikovskiy | 7faa144 | 2009-03-27 22:23:52 -0400 | [diff] [blame] | 380 | {offsetof(struct acpi_battery, rate_now), 0}, |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 381 | {offsetof(struct acpi_battery, capacity_now), 0}, |
| 382 | {offsetof(struct acpi_battery, voltage_now), 0}, |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 383 | }; |
| 384 | |
Mathias Krause | a465878 | 2015-06-13 14:26:53 +0200 | [diff] [blame] | 385 | static const struct acpi_offsets info_offsets[] = { |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 386 | {offsetof(struct acpi_battery, power_unit), 0}, |
| 387 | {offsetof(struct acpi_battery, design_capacity), 0}, |
Alexey Starikovskiy | d738096 | 2007-09-26 19:43:04 +0400 | [diff] [blame] | 388 | {offsetof(struct acpi_battery, full_charge_capacity), 0}, |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 389 | {offsetof(struct acpi_battery, technology), 0}, |
| 390 | {offsetof(struct acpi_battery, design_voltage), 0}, |
| 391 | {offsetof(struct acpi_battery, design_capacity_warning), 0}, |
| 392 | {offsetof(struct acpi_battery, design_capacity_low), 0}, |
| 393 | {offsetof(struct acpi_battery, capacity_granularity_1), 0}, |
| 394 | {offsetof(struct acpi_battery, capacity_granularity_2), 0}, |
| 395 | {offsetof(struct acpi_battery, model_number), 1}, |
| 396 | {offsetof(struct acpi_battery, serial_number), 1}, |
| 397 | {offsetof(struct acpi_battery, type), 1}, |
| 398 | {offsetof(struct acpi_battery, oem_info), 1}, |
| 399 | }; |
| 400 | |
Mathias Krause | a465878 | 2015-06-13 14:26:53 +0200 | [diff] [blame] | 401 | static const struct acpi_offsets extended_info_offsets[] = { |
Lan Tianyu | 016d5ba | 2013-07-30 14:00:42 +0200 | [diff] [blame] | 402 | {offsetof(struct acpi_battery, revision), 0}, |
Alexey Starikovskiy | c67fcd6 | 2009-10-15 14:31:44 +0400 | [diff] [blame] | 403 | {offsetof(struct acpi_battery, power_unit), 0}, |
| 404 | {offsetof(struct acpi_battery, design_capacity), 0}, |
| 405 | {offsetof(struct acpi_battery, full_charge_capacity), 0}, |
| 406 | {offsetof(struct acpi_battery, technology), 0}, |
| 407 | {offsetof(struct acpi_battery, design_voltage), 0}, |
| 408 | {offsetof(struct acpi_battery, design_capacity_warning), 0}, |
| 409 | {offsetof(struct acpi_battery, design_capacity_low), 0}, |
| 410 | {offsetof(struct acpi_battery, cycle_count), 0}, |
| 411 | {offsetof(struct acpi_battery, measurement_accuracy), 0}, |
| 412 | {offsetof(struct acpi_battery, max_sampling_time), 0}, |
| 413 | {offsetof(struct acpi_battery, min_sampling_time), 0}, |
| 414 | {offsetof(struct acpi_battery, max_averaging_interval), 0}, |
| 415 | {offsetof(struct acpi_battery, min_averaging_interval), 0}, |
| 416 | {offsetof(struct acpi_battery, capacity_granularity_1), 0}, |
| 417 | {offsetof(struct acpi_battery, capacity_granularity_2), 0}, |
| 418 | {offsetof(struct acpi_battery, model_number), 1}, |
| 419 | {offsetof(struct acpi_battery, serial_number), 1}, |
| 420 | {offsetof(struct acpi_battery, type), 1}, |
| 421 | {offsetof(struct acpi_battery, oem_info), 1}, |
| 422 | }; |
| 423 | |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 424 | static int extract_package(struct acpi_battery *battery, |
| 425 | union acpi_object *package, |
Mathias Krause | a465878 | 2015-06-13 14:26:53 +0200 | [diff] [blame] | 426 | const struct acpi_offsets *offsets, int num) |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 427 | { |
Alexey Starikovskiy | 106449e | 2007-10-29 23:29:40 +0300 | [diff] [blame] | 428 | int i; |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 429 | union acpi_object *element; |
Xiaofei Tan | 65545ab | 2021-03-27 20:08:18 +0800 | [diff] [blame] | 430 | |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 431 | if (package->type != ACPI_TYPE_PACKAGE) |
| 432 | return -EFAULT; |
| 433 | for (i = 0; i < num; ++i) { |
| 434 | if (package->package.count <= i) |
| 435 | return -EFAULT; |
| 436 | element = &package->package.elements[i]; |
| 437 | if (offsets[i].mode) { |
Alexey Starikovskiy | 106449e | 2007-10-29 23:29:40 +0300 | [diff] [blame] | 438 | u8 *ptr = (u8 *)battery + offsets[i].offset; |
Xiaofei Tan | 65545ab | 2021-03-27 20:08:18 +0800 | [diff] [blame] | 439 | |
Alexey Starikovskiy | 106449e | 2007-10-29 23:29:40 +0300 | [diff] [blame] | 440 | if (element->type == ACPI_TYPE_STRING || |
| 441 | element->type == ACPI_TYPE_BUFFER) |
| 442 | strncpy(ptr, element->string.pointer, 32); |
| 443 | else if (element->type == ACPI_TYPE_INTEGER) { |
| 444 | strncpy(ptr, (u8 *)&element->integer.value, |
Lin Ming | 439913f | 2010-01-28 10:53:19 +0800 | [diff] [blame] | 445 | sizeof(u64)); |
| 446 | ptr[sizeof(u64)] = 0; |
Alexey Starikovskiy | b8a1bdb | 2008-03-17 22:37:42 -0400 | [diff] [blame] | 447 | } else |
| 448 | *ptr = 0; /* don't have value */ |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 449 | } else { |
Alexey Starikovskiy | b8a1bdb | 2008-03-17 22:37:42 -0400 | [diff] [blame] | 450 | int *x = (int *)((u8 *)battery + offsets[i].offset); |
| 451 | *x = (element->type == ACPI_TYPE_INTEGER) ? |
| 452 | element->integer.value : -1; |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 453 | } |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 454 | } |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 455 | return 0; |
| 456 | } |
| 457 | |
| 458 | static int acpi_battery_get_status(struct acpi_battery *battery) |
| 459 | { |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 460 | if (acpi_bus_get_status(battery->device)) { |
Rafael J. Wysocki | bd8c5d1 | 2021-02-03 19:44:57 +0100 | [diff] [blame] | 461 | acpi_handle_info(battery->device->handle, |
| 462 | "_STA evaluation failed\n"); |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 463 | return -ENODEV; |
| 464 | } |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 465 | return 0; |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 466 | } |
| 467 | |
Dave Lambley | 2d09af4 | 2016-11-04 01:05:40 +0000 | [diff] [blame] | 468 | |
| 469 | static int extract_battery_info(const int use_bix, |
| 470 | struct acpi_battery *battery, |
| 471 | const struct acpi_buffer *buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | { |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 473 | int result = -EFAULT; |
Alexey Starikovskiy | c67fcd6 | 2009-10-15 14:31:44 +0400 | [diff] [blame] | 474 | |
Dave Lambley | 2d09af4 | 2016-11-04 01:05:40 +0000 | [diff] [blame] | 475 | if (use_bix && battery_bix_broken_package) |
| 476 | result = extract_package(battery, buffer->pointer, |
Lan Tianyu | a90b403 | 2014-01-06 22:50:37 +0800 | [diff] [blame] | 477 | extended_info_offsets + 1, |
| 478 | ARRAY_SIZE(extended_info_offsets) - 1); |
Dave Lambley | 2d09af4 | 2016-11-04 01:05:40 +0000 | [diff] [blame] | 479 | else if (use_bix) |
| 480 | result = extract_package(battery, buffer->pointer, |
Alexey Starikovskiy | c67fcd6 | 2009-10-15 14:31:44 +0400 | [diff] [blame] | 481 | extended_info_offsets, |
| 482 | ARRAY_SIZE(extended_info_offsets)); |
| 483 | else |
Dave Lambley | 2d09af4 | 2016-11-04 01:05:40 +0000 | [diff] [blame] | 484 | result = extract_package(battery, buffer->pointer, |
Alexey Starikovskiy | c67fcd6 | 2009-10-15 14:31:44 +0400 | [diff] [blame] | 485 | info_offsets, ARRAY_SIZE(info_offsets)); |
Zhang Rui | 557d586 | 2010-10-22 10:02:06 +0800 | [diff] [blame] | 486 | if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags)) |
| 487 | battery->full_charge_capacity = battery->design_capacity; |
Kamil Iskra | 4000e626 | 2012-11-16 22:28:58 +0100 | [diff] [blame] | 488 | if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH, &battery->flags) && |
| 489 | battery->power_unit && battery->design_voltage) { |
| 490 | battery->design_capacity = battery->design_capacity * |
| 491 | 10000 / battery->design_voltage; |
| 492 | battery->full_charge_capacity = battery->full_charge_capacity * |
| 493 | 10000 / battery->design_voltage; |
| 494 | battery->design_capacity_warning = |
| 495 | battery->design_capacity_warning * |
| 496 | 10000 / battery->design_voltage; |
| 497 | /* Curiously, design_capacity_low, unlike the rest of them, |
Xiaofei Tan | 65545ab | 2021-03-27 20:08:18 +0800 | [diff] [blame] | 498 | * is correct. |
| 499 | */ |
Kamil Iskra | 4000e626 | 2012-11-16 22:28:58 +0100 | [diff] [blame] | 500 | /* capacity_granularity_* equal 1 on the systems tested, so |
Xiaofei Tan | 65545ab | 2021-03-27 20:08:18 +0800 | [diff] [blame] | 501 | * it's impossible to tell if they would need an adjustment |
| 502 | * or not if their values were higher. |
| 503 | */ |
Kamil Iskra | 4000e626 | 2012-11-16 22:28:58 +0100 | [diff] [blame] | 504 | } |
Laszlo Toth | a20136a | 2018-02-24 10:20:15 +0100 | [diff] [blame] | 505 | if (test_bit(ACPI_BATTERY_QUIRK_DEGRADED_FULL_CHARGE, &battery->flags) && |
| 506 | battery->capacity_now > battery->full_charge_capacity) |
| 507 | battery->capacity_now = battery->full_charge_capacity; |
| 508 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 509 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | } |
| 511 | |
Dave Lambley | 2d09af4 | 2016-11-04 01:05:40 +0000 | [diff] [blame] | 512 | static int acpi_battery_get_info(struct acpi_battery *battery) |
| 513 | { |
| 514 | const int xinfo = test_bit(ACPI_BATTERY_XINFO_PRESENT, &battery->flags); |
| 515 | int use_bix; |
| 516 | int result = -ENODEV; |
| 517 | |
| 518 | if (!acpi_battery_present(battery)) |
| 519 | return 0; |
| 520 | |
| 521 | |
| 522 | for (use_bix = xinfo ? 1 : 0; use_bix >= 0; use_bix--) { |
| 523 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; |
| 524 | acpi_status status = AE_ERROR; |
| 525 | |
| 526 | mutex_lock(&battery->lock); |
| 527 | status = acpi_evaluate_object(battery->device->handle, |
| 528 | use_bix ? "_BIX":"_BIF", |
| 529 | NULL, &buffer); |
| 530 | mutex_unlock(&battery->lock); |
| 531 | |
| 532 | if (ACPI_FAILURE(status)) { |
Rafael J. Wysocki | bd8c5d1 | 2021-02-03 19:44:57 +0100 | [diff] [blame] | 533 | acpi_handle_info(battery->device->handle, |
| 534 | "%s evaluation failed: %s\n", |
Xiaofei Tan | 65545ab | 2021-03-27 20:08:18 +0800 | [diff] [blame] | 535 | use_bix ? "_BIX":"_BIF", |
| 536 | acpi_format_exception(status)); |
Dave Lambley | 2d09af4 | 2016-11-04 01:05:40 +0000 | [diff] [blame] | 537 | } else { |
| 538 | result = extract_battery_info(use_bix, |
| 539 | battery, |
| 540 | &buffer); |
| 541 | |
| 542 | kfree(buffer.pointer); |
| 543 | break; |
| 544 | } |
| 545 | } |
| 546 | |
| 547 | if (!result && !use_bix && xinfo) |
| 548 | pr_warn(FW_BUG "The _BIX method is broken, using _BIF.\n"); |
| 549 | |
| 550 | return result; |
| 551 | } |
| 552 | |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 553 | static int acpi_battery_get_state(struct acpi_battery *battery) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 555 | int result = 0; |
| 556 | acpi_status status = 0; |
| 557 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 559 | if (!acpi_battery_present(battery)) |
| 560 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 562 | if (battery->update_time && |
| 563 | time_before(jiffies, battery->update_time + |
| 564 | msecs_to_jiffies(cache_time))) |
| 565 | return 0; |
| 566 | |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 567 | mutex_lock(&battery->lock); |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 568 | status = acpi_evaluate_object(battery->device->handle, "_BST", |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 569 | NULL, &buffer); |
| 570 | mutex_unlock(&battery->lock); |
Len Brown | 5b31d89 | 2007-08-15 00:19:26 -0400 | [diff] [blame] | 571 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | if (ACPI_FAILURE(status)) { |
Rafael J. Wysocki | bd8c5d1 | 2021-02-03 19:44:57 +0100 | [diff] [blame] | 573 | acpi_handle_info(battery->device->handle, |
| 574 | "_BST evaluation failed: %s", |
| 575 | acpi_format_exception(status)); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 576 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | } |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 578 | |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 579 | result = extract_package(battery, buffer.pointer, |
| 580 | state_offsets, ARRAY_SIZE(state_offsets)); |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 581 | battery->update_time = jiffies; |
Alexey Starikovskiy | 78490d8 | 2007-05-11 13:18:55 -0400 | [diff] [blame] | 582 | kfree(buffer.pointer); |
Hector Martin | bc76f90 | 2009-08-06 15:57:48 -0700 | [diff] [blame] | 583 | |
Lan Tianyu | 55003b2 | 2011-06-30 11:33:12 +0800 | [diff] [blame] | 584 | /* For buggy DSDTs that report negative 16-bit values for either |
| 585 | * charging or discharging current and/or report 0 as 65536 |
| 586 | * due to bad math. |
| 587 | */ |
| 588 | if (battery->power_unit == ACPI_BATTERY_POWER_UNIT_MA && |
| 589 | battery->rate_now != ACPI_BATTERY_VALUE_UNKNOWN && |
| 590 | (s16)(battery->rate_now) < 0) { |
Hector Martin | bc76f90 | 2009-08-06 15:57:48 -0700 | [diff] [blame] | 591 | battery->rate_now = abs((s16)battery->rate_now); |
Rafael J. Wysocki | bd8c5d1 | 2021-02-03 19:44:57 +0100 | [diff] [blame] | 592 | pr_warn_once(FW_BUG "(dis)charge rate invalid.\n"); |
Lan Tianyu | 55003b2 | 2011-06-30 11:33:12 +0800 | [diff] [blame] | 593 | } |
Hector Martin | bc76f90 | 2009-08-06 15:57:48 -0700 | [diff] [blame] | 594 | |
Zhang Rui | 557d586 | 2010-10-22 10:02:06 +0800 | [diff] [blame] | 595 | if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags) |
| 596 | && battery->capacity_now >= 0 && battery->capacity_now <= 100) |
| 597 | battery->capacity_now = (battery->capacity_now * |
| 598 | battery->full_charge_capacity) / 100; |
Kamil Iskra | 4000e626 | 2012-11-16 22:28:58 +0100 | [diff] [blame] | 599 | if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH, &battery->flags) && |
| 600 | battery->power_unit && battery->design_voltage) { |
| 601 | battery->capacity_now = battery->capacity_now * |
| 602 | 10000 / battery->design_voltage; |
| 603 | } |
Laszlo Toth | a20136a | 2018-02-24 10:20:15 +0100 | [diff] [blame] | 604 | if (test_bit(ACPI_BATTERY_QUIRK_DEGRADED_FULL_CHARGE, &battery->flags) && |
| 605 | battery->capacity_now > battery->full_charge_capacity) |
| 606 | battery->capacity_now = battery->full_charge_capacity; |
| 607 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 608 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | } |
| 610 | |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 611 | static int acpi_battery_set_alarm(struct acpi_battery *battery) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 613 | acpi_status status = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | |
Alexey Starikovskiy | c67fcd6 | 2009-10-15 14:31:44 +0400 | [diff] [blame] | 615 | if (!acpi_battery_present(battery) || |
Alexey Starikovskiy | 7b3bcc4 | 2009-10-15 14:31:24 +0400 | [diff] [blame] | 616 | !test_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags)) |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 617 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 619 | mutex_lock(&battery->lock); |
Jiang Liu | 0db9820 | 2013-06-29 00:24:39 +0800 | [diff] [blame] | 620 | status = acpi_execute_simple_method(battery->device->handle, "_BTP", |
| 621 | battery->alarm); |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 622 | mutex_unlock(&battery->lock); |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 623 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | if (ACPI_FAILURE(status)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 625 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | |
Rafael J. Wysocki | bd8c5d1 | 2021-02-03 19:44:57 +0100 | [diff] [blame] | 627 | acpi_handle_debug(battery->device->handle, "Alarm set to %d\n", |
| 628 | battery->alarm); |
| 629 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 630 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | } |
| 632 | |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 633 | static int acpi_battery_init_alarm(struct acpi_battery *battery) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | { |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 635 | /* See if alarms are supported, and if so, set default */ |
Jiang Liu | 952c63e | 2013-06-29 00:24:38 +0800 | [diff] [blame] | 636 | if (!acpi_has_method(battery->device->handle, "_BTP")) { |
Alexey Starikovskiy | 7b3bcc4 | 2009-10-15 14:31:24 +0400 | [diff] [blame] | 637 | clear_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags); |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 638 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | } |
Alexey Starikovskiy | 7b3bcc4 | 2009-10-15 14:31:24 +0400 | [diff] [blame] | 640 | set_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags); |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 641 | if (!battery->alarm) |
| 642 | battery->alarm = battery->design_capacity_warning; |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 643 | return acpi_battery_set_alarm(battery); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | } |
| 645 | |
Andrey Borzenkov | 508df92 | 2007-10-28 12:50:09 +0300 | [diff] [blame] | 646 | static ssize_t acpi_battery_alarm_show(struct device *dev, |
| 647 | struct device_attribute *attr, |
| 648 | char *buf) |
| 649 | { |
| 650 | struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev)); |
Xiaofei Tan | 65545ab | 2021-03-27 20:08:18 +0800 | [diff] [blame] | 651 | |
Andrey Borzenkov | 508df92 | 2007-10-28 12:50:09 +0300 | [diff] [blame] | 652 | return sprintf(buf, "%d\n", battery->alarm * 1000); |
| 653 | } |
| 654 | |
| 655 | static ssize_t acpi_battery_alarm_store(struct device *dev, |
| 656 | struct device_attribute *attr, |
| 657 | const char *buf, size_t count) |
| 658 | { |
| 659 | unsigned long x; |
| 660 | struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev)); |
Xiaofei Tan | 65545ab | 2021-03-27 20:08:18 +0800 | [diff] [blame] | 661 | |
Luis G.F | 47a08c8 | 2014-01-21 15:40:43 +0100 | [diff] [blame] | 662 | if (sscanf(buf, "%lu\n", &x) == 1) |
Andrey Borzenkov | 508df92 | 2007-10-28 12:50:09 +0300 | [diff] [blame] | 663 | battery->alarm = x/1000; |
| 664 | if (acpi_battery_present(battery)) |
| 665 | acpi_battery_set_alarm(battery); |
| 666 | return count; |
| 667 | } |
| 668 | |
Bhumika Goyal | 82d2b61 | 2017-08-21 17:13:07 +0530 | [diff] [blame] | 669 | static const struct device_attribute alarm_attr = { |
Parag Warudkar | 01e8ef1 | 2008-10-18 20:28:50 -0700 | [diff] [blame] | 670 | .attr = {.name = "alarm", .mode = 0644}, |
Andrey Borzenkov | 508df92 | 2007-10-28 12:50:09 +0300 | [diff] [blame] | 671 | .show = acpi_battery_alarm_show, |
| 672 | .store = acpi_battery_alarm_store, |
| 673 | }; |
| 674 | |
Ognjen Galic | fa93854 | 2018-02-07 15:58:13 +0100 | [diff] [blame] | 675 | /* |
| 676 | * The Battery Hooking API |
| 677 | * |
| 678 | * This API is used inside other drivers that need to expose |
| 679 | * platform-specific behaviour within the generic driver in a |
| 680 | * generic way. |
| 681 | * |
| 682 | */ |
| 683 | |
| 684 | static LIST_HEAD(acpi_battery_list); |
| 685 | static LIST_HEAD(battery_hook_list); |
| 686 | static DEFINE_MUTEX(hook_mutex); |
| 687 | |
Colin Ian King | 514bcc5 | 2018-02-23 16:32:55 +0000 | [diff] [blame] | 688 | static void __battery_hook_unregister(struct acpi_battery_hook *hook, int lock) |
Ognjen Galic | fa93854 | 2018-02-07 15:58:13 +0100 | [diff] [blame] | 689 | { |
| 690 | struct acpi_battery *battery; |
| 691 | /* |
| 692 | * In order to remove a hook, we first need to |
| 693 | * de-register all the batteries that are registered. |
| 694 | */ |
| 695 | if (lock) |
| 696 | mutex_lock(&hook_mutex); |
| 697 | list_for_each_entry(battery, &acpi_battery_list, list) { |
| 698 | hook->remove_battery(battery->bat); |
| 699 | } |
| 700 | list_del(&hook->list); |
| 701 | if (lock) |
| 702 | mutex_unlock(&hook_mutex); |
| 703 | pr_info("extension unregistered: %s\n", hook->name); |
| 704 | } |
| 705 | |
| 706 | void battery_hook_unregister(struct acpi_battery_hook *hook) |
| 707 | { |
| 708 | __battery_hook_unregister(hook, 1); |
| 709 | } |
| 710 | EXPORT_SYMBOL_GPL(battery_hook_unregister); |
| 711 | |
| 712 | void battery_hook_register(struct acpi_battery_hook *hook) |
| 713 | { |
| 714 | struct acpi_battery *battery; |
| 715 | |
| 716 | mutex_lock(&hook_mutex); |
| 717 | INIT_LIST_HEAD(&hook->list); |
| 718 | list_add(&hook->list, &battery_hook_list); |
| 719 | /* |
| 720 | * Now that the driver is registered, we need |
| 721 | * to notify the hook that a battery is available |
| 722 | * for each battery, so that the driver may add |
| 723 | * its attributes. |
| 724 | */ |
| 725 | list_for_each_entry(battery, &acpi_battery_list, list) { |
| 726 | if (hook->add_battery(battery->bat)) { |
| 727 | /* |
| 728 | * If a add-battery returns non-zero, |
| 729 | * the registration of the extension has failed, |
| 730 | * and we will not add it to the list of loaded |
| 731 | * hooks. |
| 732 | */ |
| 733 | pr_err("extension failed to load: %s", hook->name); |
| 734 | __battery_hook_unregister(hook, 0); |
Jouke Witteveen | 673b427 | 2018-07-04 12:27:15 +0200 | [diff] [blame] | 735 | goto end; |
Ognjen Galic | fa93854 | 2018-02-07 15:58:13 +0100 | [diff] [blame] | 736 | } |
| 737 | } |
| 738 | pr_info("new extension: %s\n", hook->name); |
Jouke Witteveen | 673b427 | 2018-07-04 12:27:15 +0200 | [diff] [blame] | 739 | end: |
Ognjen Galic | fa93854 | 2018-02-07 15:58:13 +0100 | [diff] [blame] | 740 | mutex_unlock(&hook_mutex); |
| 741 | } |
| 742 | EXPORT_SYMBOL_GPL(battery_hook_register); |
| 743 | |
| 744 | /* |
| 745 | * This function gets called right after the battery sysfs |
| 746 | * attributes have been added, so that the drivers that |
| 747 | * define custom sysfs attributes can add their own. |
Xiaofei Tan | 65545ab | 2021-03-27 20:08:18 +0800 | [diff] [blame] | 748 | */ |
Ognjen Galic | fa93854 | 2018-02-07 15:58:13 +0100 | [diff] [blame] | 749 | static void battery_hook_add_battery(struct acpi_battery *battery) |
| 750 | { |
Jouke Witteveen | 673b427 | 2018-07-04 12:27:15 +0200 | [diff] [blame] | 751 | struct acpi_battery_hook *hook_node, *tmp; |
Ognjen Galic | fa93854 | 2018-02-07 15:58:13 +0100 | [diff] [blame] | 752 | |
| 753 | mutex_lock(&hook_mutex); |
| 754 | INIT_LIST_HEAD(&battery->list); |
| 755 | list_add(&battery->list, &acpi_battery_list); |
| 756 | /* |
| 757 | * Since we added a new battery to the list, we need to |
| 758 | * iterate over the hooks and call add_battery for each |
| 759 | * hook that was registered. This usually happens |
| 760 | * when a battery gets hotplugged or initialized |
| 761 | * during the battery module initialization. |
| 762 | */ |
Jouke Witteveen | 673b427 | 2018-07-04 12:27:15 +0200 | [diff] [blame] | 763 | list_for_each_entry_safe(hook_node, tmp, &battery_hook_list, list) { |
Ognjen Galic | fa93854 | 2018-02-07 15:58:13 +0100 | [diff] [blame] | 764 | if (hook_node->add_battery(battery->bat)) { |
| 765 | /* |
| 766 | * The notification of the extensions has failed, to |
| 767 | * prevent further errors we will unload the extension. |
| 768 | */ |
Ognjen Galic | fa93854 | 2018-02-07 15:58:13 +0100 | [diff] [blame] | 769 | pr_err("error in extension, unloading: %s", |
| 770 | hook_node->name); |
Jouke Witteveen | 673b427 | 2018-07-04 12:27:15 +0200 | [diff] [blame] | 771 | __battery_hook_unregister(hook_node, 0); |
Ognjen Galic | fa93854 | 2018-02-07 15:58:13 +0100 | [diff] [blame] | 772 | } |
| 773 | } |
| 774 | mutex_unlock(&hook_mutex); |
| 775 | } |
| 776 | |
| 777 | static void battery_hook_remove_battery(struct acpi_battery *battery) |
| 778 | { |
| 779 | struct acpi_battery_hook *hook; |
| 780 | |
| 781 | mutex_lock(&hook_mutex); |
| 782 | /* |
| 783 | * Before removing the hook, we need to remove all |
| 784 | * custom attributes from the battery. |
| 785 | */ |
| 786 | list_for_each_entry(hook, &battery_hook_list, list) { |
| 787 | hook->remove_battery(battery->bat); |
| 788 | } |
| 789 | /* Then, just remove the battery from the list */ |
| 790 | list_del(&battery->list); |
| 791 | mutex_unlock(&hook_mutex); |
| 792 | } |
| 793 | |
| 794 | static void __exit battery_hook_exit(void) |
| 795 | { |
| 796 | struct acpi_battery_hook *hook; |
| 797 | struct acpi_battery_hook *ptr; |
| 798 | /* |
| 799 | * At this point, the acpi_bus_unregister_driver() |
| 800 | * has called remove for all batteries. We just |
| 801 | * need to remove the hooks. |
| 802 | */ |
| 803 | list_for_each_entry_safe(hook, ptr, &battery_hook_list, list) { |
| 804 | __battery_hook_unregister(hook, 1); |
| 805 | } |
| 806 | mutex_destroy(&hook_mutex); |
| 807 | } |
| 808 | |
Andrey Borzenkov | 508df92 | 2007-10-28 12:50:09 +0300 | [diff] [blame] | 809 | static int sysfs_add_battery(struct acpi_battery *battery) |
| 810 | { |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 811 | struct power_supply_config psy_cfg = { .drv_data = battery, }; |
Hans de Goede | ff3154d | 2019-12-10 10:57:52 +0100 | [diff] [blame] | 812 | bool full_cap_broken = false; |
| 813 | |
| 814 | if (!ACPI_BATTERY_CAPACITY_VALID(battery->full_charge_capacity) && |
| 815 | !ACPI_BATTERY_CAPACITY_VALID(battery->design_capacity)) |
| 816 | full_cap_broken = true; |
Andrey Borzenkov | 508df92 | 2007-10-28 12:50:09 +0300 | [diff] [blame] | 817 | |
Lan Tianyu | ae6f618 | 2011-06-30 11:32:40 +0800 | [diff] [blame] | 818 | if (battery->power_unit == ACPI_BATTERY_POWER_UNIT_MA) { |
Hans de Goede | ff3154d | 2019-12-10 10:57:52 +0100 | [diff] [blame] | 819 | if (full_cap_broken) { |
| 820 | battery->bat_desc.properties = |
| 821 | charge_battery_full_cap_broken_props; |
| 822 | battery->bat_desc.num_properties = |
| 823 | ARRAY_SIZE(charge_battery_full_cap_broken_props); |
| 824 | } else { |
| 825 | battery->bat_desc.properties = charge_battery_props; |
| 826 | battery->bat_desc.num_properties = |
| 827 | ARRAY_SIZE(charge_battery_props); |
| 828 | } |
Andrey Borzenkov | 508df92 | 2007-10-28 12:50:09 +0300 | [diff] [blame] | 829 | } else { |
Hans de Goede | ff3154d | 2019-12-10 10:57:52 +0100 | [diff] [blame] | 830 | if (full_cap_broken) { |
| 831 | battery->bat_desc.properties = |
| 832 | energy_battery_full_cap_broken_props; |
| 833 | battery->bat_desc.num_properties = |
| 834 | ARRAY_SIZE(energy_battery_full_cap_broken_props); |
| 835 | } else { |
| 836 | battery->bat_desc.properties = energy_battery_props; |
| 837 | battery->bat_desc.num_properties = |
| 838 | ARRAY_SIZE(energy_battery_props); |
| 839 | } |
Andrey Borzenkov | 508df92 | 2007-10-28 12:50:09 +0300 | [diff] [blame] | 840 | } |
| 841 | |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 842 | battery->bat_desc.name = acpi_device_bid(battery->device); |
| 843 | battery->bat_desc.type = POWER_SUPPLY_TYPE_BATTERY; |
| 844 | battery->bat_desc.get_property = acpi_battery_get_property; |
Andrey Borzenkov | 508df92 | 2007-10-28 12:50:09 +0300 | [diff] [blame] | 845 | |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 846 | battery->bat = power_supply_register_no_ws(&battery->device->dev, |
| 847 | &battery->bat_desc, &psy_cfg); |
Zhang Rui | e0d1f09 | 2014-05-28 15:23:38 +0800 | [diff] [blame] | 848 | |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 849 | if (IS_ERR(battery->bat)) { |
| 850 | int result = PTR_ERR(battery->bat); |
| 851 | |
| 852 | battery->bat = NULL; |
Andrey Borzenkov | 508df92 | 2007-10-28 12:50:09 +0300 | [diff] [blame] | 853 | return result; |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 854 | } |
Ognjen Galic | fa93854 | 2018-02-07 15:58:13 +0100 | [diff] [blame] | 855 | battery_hook_add_battery(battery); |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 856 | return device_create_file(&battery->bat->dev, &alarm_attr); |
Andrey Borzenkov | 508df92 | 2007-10-28 12:50:09 +0300 | [diff] [blame] | 857 | } |
| 858 | |
| 859 | static void sysfs_remove_battery(struct acpi_battery *battery) |
| 860 | { |
Sergey Senozhatsky | 69d94ec | 2011-08-06 01:34:08 +0300 | [diff] [blame] | 861 | mutex_lock(&battery->sysfs_lock); |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 862 | if (!battery->bat) { |
Sergey Senozhatsky | 69d94ec | 2011-08-06 01:34:08 +0300 | [diff] [blame] | 863 | mutex_unlock(&battery->sysfs_lock); |
Andrey Borzenkov | 508df92 | 2007-10-28 12:50:09 +0300 | [diff] [blame] | 864 | return; |
Lan Tianyu | 9c921c22 | 2011-06-30 11:34:12 +0800 | [diff] [blame] | 865 | } |
Ognjen Galic | fa93854 | 2018-02-07 15:58:13 +0100 | [diff] [blame] | 866 | battery_hook_remove_battery(battery); |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 867 | device_remove_file(&battery->bat->dev, &alarm_attr); |
| 868 | power_supply_unregister(battery->bat); |
| 869 | battery->bat = NULL; |
Sergey Senozhatsky | 69d94ec | 2011-08-06 01:34:08 +0300 | [diff] [blame] | 870 | mutex_unlock(&battery->sysfs_lock); |
Hector Martin | bc76f90 | 2009-08-06 15:57:48 -0700 | [diff] [blame] | 871 | } |
| 872 | |
Kamil Iskra | 4000e626 | 2012-11-16 22:28:58 +0100 | [diff] [blame] | 873 | static void find_battery(const struct dmi_header *dm, void *private) |
| 874 | { |
| 875 | struct acpi_battery *battery = (struct acpi_battery *)private; |
| 876 | /* Note: the hardcoded offsets below have been extracted from |
Xiaofei Tan | 65545ab | 2021-03-27 20:08:18 +0800 | [diff] [blame] | 877 | * the source code of dmidecode. |
| 878 | */ |
Kamil Iskra | 4000e626 | 2012-11-16 22:28:58 +0100 | [diff] [blame] | 879 | if (dm->type == DMI_ENTRY_PORTABLE_BATTERY && dm->length >= 8) { |
| 880 | const u8 *dmi_data = (const u8 *)(dm + 1); |
| 881 | int dmi_capacity = get_unaligned((const u16 *)(dmi_data + 6)); |
Xiaofei Tan | 65545ab | 2021-03-27 20:08:18 +0800 | [diff] [blame] | 882 | |
Kamil Iskra | 4000e626 | 2012-11-16 22:28:58 +0100 | [diff] [blame] | 883 | if (dm->length >= 18) |
| 884 | dmi_capacity *= dmi_data[17]; |
| 885 | if (battery->design_capacity * battery->design_voltage / 1000 |
| 886 | != dmi_capacity && |
| 887 | battery->design_capacity * 10 == dmi_capacity) |
| 888 | set_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH, |
| 889 | &battery->flags); |
| 890 | } |
| 891 | } |
| 892 | |
Zhang Rui | 557d586 | 2010-10-22 10:02:06 +0800 | [diff] [blame] | 893 | /* |
| 894 | * According to the ACPI spec, some kinds of primary batteries can |
| 895 | * report percentage battery remaining capacity directly to OS. |
| 896 | * In this case, it reports the Last Full Charged Capacity == 100 |
| 897 | * and BatteryPresentRate == 0xFFFFFFFF. |
| 898 | * |
| 899 | * Now we found some battery reports percentage remaining capacity |
| 900 | * even if it's rechargeable. |
| 901 | * https://bugzilla.kernel.org/show_bug.cgi?id=15979 |
| 902 | * |
| 903 | * Handle this correctly so that they won't break userspace. |
| 904 | */ |
Lan Tianyu | 7b78622 | 2011-06-30 11:33:27 +0800 | [diff] [blame] | 905 | static void acpi_battery_quirks(struct acpi_battery *battery) |
Zhang Rui | 557d586 | 2010-10-22 10:02:06 +0800 | [diff] [blame] | 906 | { |
| 907 | if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags)) |
Nicholas Mazzuca | 0f4c654 | 2013-05-08 23:11:15 +0000 | [diff] [blame] | 908 | return; |
Zhang Rui | 557d586 | 2010-10-22 10:02:06 +0800 | [diff] [blame] | 909 | |
Nicholas Mazzuca | 0f4c654 | 2013-05-08 23:11:15 +0000 | [diff] [blame] | 910 | if (battery->full_charge_capacity == 100 && |
| 911 | battery->rate_now == ACPI_BATTERY_VALUE_UNKNOWN && |
| 912 | battery->capacity_now >= 0 && battery->capacity_now <= 100) { |
Zhang Rui | 557d586 | 2010-10-22 10:02:06 +0800 | [diff] [blame] | 913 | set_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags); |
| 914 | battery->full_charge_capacity = battery->design_capacity; |
| 915 | battery->capacity_now = (battery->capacity_now * |
| 916 | battery->full_charge_capacity) / 100; |
| 917 | } |
Kamil Iskra | 4000e626 | 2012-11-16 22:28:58 +0100 | [diff] [blame] | 918 | |
| 919 | if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH, &battery->flags)) |
Nicholas Mazzuca | 0f4c654 | 2013-05-08 23:11:15 +0000 | [diff] [blame] | 920 | return; |
Kamil Iskra | 4000e626 | 2012-11-16 22:28:58 +0100 | [diff] [blame] | 921 | |
| 922 | if (battery->power_unit && dmi_name_in_vendors("LENOVO")) { |
| 923 | const char *s; |
Xiaofei Tan | 65545ab | 2021-03-27 20:08:18 +0800 | [diff] [blame] | 924 | |
Kamil Iskra | 4000e626 | 2012-11-16 22:28:58 +0100 | [diff] [blame] | 925 | s = dmi_get_system_info(DMI_PRODUCT_VERSION); |
Rasmus Villemoes | ffd8a73 | 2014-09-16 22:51:24 +0200 | [diff] [blame] | 926 | if (s && !strncasecmp(s, "ThinkPad", 8)) { |
Kamil Iskra | 4000e626 | 2012-11-16 22:28:58 +0100 | [diff] [blame] | 927 | dmi_walk(find_battery, battery); |
| 928 | if (test_bit(ACPI_BATTERY_QUIRK_THINKPAD_MAH, |
| 929 | &battery->flags) && |
| 930 | battery->design_voltage) { |
| 931 | battery->design_capacity = |
| 932 | battery->design_capacity * |
| 933 | 10000 / battery->design_voltage; |
| 934 | battery->full_charge_capacity = |
| 935 | battery->full_charge_capacity * |
| 936 | 10000 / battery->design_voltage; |
| 937 | battery->design_capacity_warning = |
| 938 | battery->design_capacity_warning * |
| 939 | 10000 / battery->design_voltage; |
| 940 | battery->capacity_now = battery->capacity_now * |
| 941 | 10000 / battery->design_voltage; |
| 942 | } |
| 943 | } |
| 944 | } |
Laszlo Toth | a20136a | 2018-02-24 10:20:15 +0100 | [diff] [blame] | 945 | |
| 946 | if (test_bit(ACPI_BATTERY_QUIRK_DEGRADED_FULL_CHARGE, &battery->flags)) |
| 947 | return; |
| 948 | |
| 949 | if (acpi_battery_is_degraded(battery) && |
| 950 | battery->capacity_now > battery->full_charge_capacity) { |
| 951 | set_bit(ACPI_BATTERY_QUIRK_DEGRADED_FULL_CHARGE, &battery->flags); |
| 952 | battery->capacity_now = battery->full_charge_capacity; |
| 953 | } |
Zhang Rui | 557d586 | 2010-10-22 10:02:06 +0800 | [diff] [blame] | 954 | } |
| 955 | |
Lan Tianyu | 9e50bc1 | 2014-05-04 14:07:06 +0800 | [diff] [blame] | 956 | static int acpi_battery_update(struct acpi_battery *battery, bool resume) |
Vladimir Lebedev | 4bd35cd | 2007-02-10 01:43:48 -0500 | [diff] [blame] | 957 | { |
Lucas Rangit Magasweran | 82f2d30 | 2018-07-14 15:40:18 -0700 | [diff] [blame] | 958 | int result = acpi_battery_get_status(battery); |
| 959 | |
Andrey Borzenkov | 508df92 | 2007-10-28 12:50:09 +0300 | [diff] [blame] | 960 | if (result) |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 961 | return result; |
Lucas Rangit Magasweran | 82f2d30 | 2018-07-14 15:40:18 -0700 | [diff] [blame] | 962 | |
Andrey Borzenkov | 508df92 | 2007-10-28 12:50:09 +0300 | [diff] [blame] | 963 | if (!acpi_battery_present(battery)) { |
| 964 | sysfs_remove_battery(battery); |
Alexey Starikovskiy | 97749cd | 2008-01-01 14:27:24 -0500 | [diff] [blame] | 965 | battery->update_time = 0; |
Andrey Borzenkov | 508df92 | 2007-10-28 12:50:09 +0300 | [diff] [blame] | 966 | return 0; |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 967 | } |
Lan Tianyu | 9e50bc1 | 2014-05-04 14:07:06 +0800 | [diff] [blame] | 968 | |
| 969 | if (resume) |
| 970 | return 0; |
| 971 | |
Lucas Rangit Magasweran | 82f2d30 | 2018-07-14 15:40:18 -0700 | [diff] [blame] | 972 | if (!battery->update_time) { |
Alexey Starikovskiy | 97749cd | 2008-01-01 14:27:24 -0500 | [diff] [blame] | 973 | result = acpi_battery_get_info(battery); |
| 974 | if (result) |
| 975 | return result; |
| 976 | acpi_battery_init_alarm(battery); |
| 977 | } |
Carlos Garnacho | 12c78ca | 2016-08-10 17:24:15 +0200 | [diff] [blame] | 978 | |
| 979 | result = acpi_battery_get_state(battery); |
| 980 | if (result) |
| 981 | return result; |
| 982 | acpi_battery_quirks(battery); |
| 983 | |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 984 | if (!battery->bat) { |
Stefan Hajnoczi | eb03cb0 | 2011-07-12 09:03:29 +0100 | [diff] [blame] | 985 | result = sysfs_add_battery(battery); |
| 986 | if (result) |
| 987 | return result; |
| 988 | } |
Zhang Rui | e0d1f09 | 2014-05-28 15:23:38 +0800 | [diff] [blame] | 989 | |
| 990 | /* |
| 991 | * Wakeup the system if battery is critical low |
| 992 | * or lower than the alarm level |
| 993 | */ |
| 994 | if ((battery->state & ACPI_BATTERY_STATE_CRITICAL) || |
| 995 | (test_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags) && |
Maximilian Luz | c6237b2 | 2020-11-05 03:06:00 +0100 | [diff] [blame] | 996 | (battery->capacity_now <= battery->alarm))) |
Rafael J. Wysocki | 33e4f80 | 2017-06-12 22:56:34 +0200 | [diff] [blame] | 997 | acpi_pm_wakeup_event(&battery->device->dev); |
Zhang Rui | e0d1f09 | 2014-05-28 15:23:38 +0800 | [diff] [blame] | 998 | |
Zhang Rui | 557d586 | 2010-10-22 10:02:06 +0800 | [diff] [blame] | 999 | return result; |
Vladimir Lebedev | 4bd35cd | 2007-02-10 01:43:48 -0500 | [diff] [blame] | 1000 | } |
| 1001 | |
Rafael J. Wysocki | da8aeb9 | 2011-01-06 23:42:27 +0100 | [diff] [blame] | 1002 | static void acpi_battery_refresh(struct acpi_battery *battery) |
| 1003 | { |
Andy Whitcroft | c597145 | 2012-05-03 14:48:26 +0100 | [diff] [blame] | 1004 | int power_unit; |
| 1005 | |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 1006 | if (!battery->bat) |
Rafael J. Wysocki | da8aeb9 | 2011-01-06 23:42:27 +0100 | [diff] [blame] | 1007 | return; |
| 1008 | |
Andy Whitcroft | c597145 | 2012-05-03 14:48:26 +0100 | [diff] [blame] | 1009 | power_unit = battery->power_unit; |
| 1010 | |
Rafael J. Wysocki | da8aeb9 | 2011-01-06 23:42:27 +0100 | [diff] [blame] | 1011 | acpi_battery_get_info(battery); |
Andy Whitcroft | c597145 | 2012-05-03 14:48:26 +0100 | [diff] [blame] | 1012 | |
| 1013 | if (power_unit == battery->power_unit) |
| 1014 | return; |
| 1015 | |
| 1016 | /* The battery has changed its reporting units. */ |
Rafael J. Wysocki | da8aeb9 | 2011-01-06 23:42:27 +0100 | [diff] [blame] | 1017 | sysfs_remove_battery(battery); |
| 1018 | sysfs_add_battery(battery); |
| 1019 | } |
| 1020 | |
Xiaofei Tan | 65545ab | 2021-03-27 20:08:18 +0800 | [diff] [blame] | 1021 | /* Driver Interface */ |
Bjorn Helgaas | d940669 | 2009-04-30 09:35:47 -0600 | [diff] [blame] | 1022 | static void acpi_battery_notify(struct acpi_device *device, u32 event) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1023 | { |
Bjorn Helgaas | d940669 | 2009-04-30 09:35:47 -0600 | [diff] [blame] | 1024 | struct acpi_battery *battery = acpi_driver_data(device); |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 1025 | struct power_supply *old; |
Bjorn Helgaas | d940669 | 2009-04-30 09:35:47 -0600 | [diff] [blame] | 1026 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1027 | if (!battery) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1028 | return; |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 1029 | old = battery->bat; |
Alexander Mezin | f43691c | 2014-06-04 02:01:23 +0700 | [diff] [blame] | 1030 | /* |
Xiaofei Tan | 65545ab | 2021-03-27 20:08:18 +0800 | [diff] [blame] | 1031 | * On Acer Aspire V5-573G notifications are sometimes triggered too |
| 1032 | * early. For example, when AC is unplugged and notification is |
| 1033 | * triggered, battery state is still reported as "Full", and changes to |
| 1034 | * "Discharging" only after short delay, without any notification. |
| 1035 | */ |
Alexander Mezin | f43691c | 2014-06-04 02:01:23 +0700 | [diff] [blame] | 1036 | if (battery_notification_delay_ms > 0) |
| 1037 | msleep(battery_notification_delay_ms); |
Rafael J. Wysocki | da8aeb9 | 2011-01-06 23:42:27 +0100 | [diff] [blame] | 1038 | if (event == ACPI_BATTERY_NOTIFY_INFO) |
| 1039 | acpi_battery_refresh(battery); |
Lan Tianyu | 9e50bc1 | 2014-05-04 14:07:06 +0800 | [diff] [blame] | 1040 | acpi_battery_update(battery, false); |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 1041 | acpi_bus_generate_netlink_event(device->pnp.device_class, |
Kay Sievers | 0794469 | 2008-10-30 01:18:59 +0100 | [diff] [blame] | 1042 | dev_name(&device->dev), event, |
Vladimir Lebedev | 9ea7d57 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 1043 | acpi_battery_present(battery)); |
Alexander Mezin | 411e0f7 | 2014-03-12 00:58:47 +0700 | [diff] [blame] | 1044 | acpi_notifier_call_chain(device, event, acpi_battery_present(battery)); |
Justin P. Mattock | 2345baf | 2009-12-13 14:42:36 -0800 | [diff] [blame] | 1045 | /* acpi_battery_update could remove power_supply object */ |
Krzysztof Kozlowski | 297d716 | 2015-03-12 08:44:11 +0100 | [diff] [blame] | 1046 | if (old && battery->bat) |
| 1047 | power_supply_changed(battery->bat); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1048 | } |
| 1049 | |
Kyle McMartin | 25be582 | 2011-03-22 16:19:50 -0400 | [diff] [blame] | 1050 | static int battery_notify(struct notifier_block *nb, |
| 1051 | unsigned long mode, void *_unused) |
| 1052 | { |
| 1053 | struct acpi_battery *battery = container_of(nb, struct acpi_battery, |
| 1054 | pm_nb); |
Lan Tianyu | 9e50bc1 | 2014-05-04 14:07:06 +0800 | [diff] [blame] | 1055 | int result; |
| 1056 | |
Kyle McMartin | 25be582 | 2011-03-22 16:19:50 -0400 | [diff] [blame] | 1057 | switch (mode) { |
Lan Tianyu | d5a5911 | 2011-06-30 11:33:40 +0800 | [diff] [blame] | 1058 | case PM_POST_HIBERNATION: |
Kyle McMartin | 25be582 | 2011-03-22 16:19:50 -0400 | [diff] [blame] | 1059 | case PM_POST_SUSPEND: |
Lan Tianyu | 9e50bc1 | 2014-05-04 14:07:06 +0800 | [diff] [blame] | 1060 | if (!acpi_battery_present(battery)) |
| 1061 | return 0; |
| 1062 | |
Dmitry Rozhkov | 2754435 | 2018-07-24 14:27:34 +0300 | [diff] [blame] | 1063 | if (battery->bat) { |
| 1064 | acpi_battery_refresh(battery); |
| 1065 | } else { |
Lan Tianyu | 9e50bc1 | 2014-05-04 14:07:06 +0800 | [diff] [blame] | 1066 | result = acpi_battery_get_info(battery); |
| 1067 | if (result) |
| 1068 | return result; |
| 1069 | |
| 1070 | result = sysfs_add_battery(battery); |
| 1071 | if (result) |
| 1072 | return result; |
Dmitry Rozhkov | 2754435 | 2018-07-24 14:27:34 +0300 | [diff] [blame] | 1073 | } |
Lan Tianyu | 9e50bc1 | 2014-05-04 14:07:06 +0800 | [diff] [blame] | 1074 | |
| 1075 | acpi_battery_init_alarm(battery); |
| 1076 | acpi_battery_get_state(battery); |
Kyle McMartin | 25be582 | 2011-03-22 16:19:50 -0400 | [diff] [blame] | 1077 | break; |
| 1078 | } |
| 1079 | |
| 1080 | return 0; |
| 1081 | } |
| 1082 | |
Mathias Krause | 048d16d | 2015-06-13 14:26:55 +0200 | [diff] [blame] | 1083 | static int __init |
| 1084 | battery_bix_broken_package_quirk(const struct dmi_system_id *d) |
Alexander Mezin | 3f5dc08 | 2014-06-04 02:01:22 +0700 | [diff] [blame] | 1085 | { |
| 1086 | battery_bix_broken_package = 1; |
| 1087 | return 0; |
| 1088 | } |
| 1089 | |
Mathias Krause | 048d16d | 2015-06-13 14:26:55 +0200 | [diff] [blame] | 1090 | static int __init |
| 1091 | battery_notification_delay_quirk(const struct dmi_system_id *d) |
Alexander Mezin | f43691c | 2014-06-04 02:01:23 +0700 | [diff] [blame] | 1092 | { |
| 1093 | battery_notification_delay_ms = 1000; |
| 1094 | return 0; |
| 1095 | } |
| 1096 | |
Hans de Goede | 1b799c5 | 2018-04-12 12:02:00 +0200 | [diff] [blame] | 1097 | static int __init |
| 1098 | battery_ac_is_broken_quirk(const struct dmi_system_id *d) |
| 1099 | { |
| 1100 | battery_ac_is_broken = 1; |
| 1101 | return 0; |
| 1102 | } |
| 1103 | |
Thomas Weißschuh | e96c119 | 2021-12-22 22:20:14 +0100 | [diff] [blame] | 1104 | static int __init battery_quirk_not_charging(const struct dmi_system_id *d) |
Carlo Caione | ec625a3 | 2018-04-18 14:04:39 +0200 | [diff] [blame] | 1105 | { |
Thomas Weißschuh | e96c119 | 2021-12-22 22:20:14 +0100 | [diff] [blame] | 1106 | battery_quirk_notcharging = 1; |
Carlo Caione | ec625a3 | 2018-04-18 14:04:39 +0200 | [diff] [blame] | 1107 | return 0; |
| 1108 | } |
| 1109 | |
Mathias Krause | 048d16d | 2015-06-13 14:26:55 +0200 | [diff] [blame] | 1110 | static const struct dmi_system_id bat_dmi_table[] __initconst = { |
Lan Tianyu | a90b403 | 2014-01-06 22:50:37 +0800 | [diff] [blame] | 1111 | { |
Hans de Goede | 91afa07 | 2018-04-12 12:01:58 +0200 | [diff] [blame] | 1112 | /* NEC LZ750/LS */ |
Alexander Mezin | 3f5dc08 | 2014-06-04 02:01:22 +0700 | [diff] [blame] | 1113 | .callback = battery_bix_broken_package_quirk, |
Lan Tianyu | a90b403 | 2014-01-06 22:50:37 +0800 | [diff] [blame] | 1114 | .matches = { |
| 1115 | DMI_MATCH(DMI_SYS_VENDOR, "NEC"), |
| 1116 | DMI_MATCH(DMI_PRODUCT_NAME, "PC-LZ750LS"), |
| 1117 | }, |
| 1118 | }, |
Alexander Mezin | f43691c | 2014-06-04 02:01:23 +0700 | [diff] [blame] | 1119 | { |
Hans de Goede | 91afa07 | 2018-04-12 12:01:58 +0200 | [diff] [blame] | 1120 | /* Acer Aspire V5-573G */ |
Alexander Mezin | f43691c | 2014-06-04 02:01:23 +0700 | [diff] [blame] | 1121 | .callback = battery_notification_delay_quirk, |
Alexander Mezin | f43691c | 2014-06-04 02:01:23 +0700 | [diff] [blame] | 1122 | .matches = { |
| 1123 | DMI_MATCH(DMI_SYS_VENDOR, "Acer"), |
| 1124 | DMI_MATCH(DMI_PRODUCT_NAME, "Aspire V5-573G"), |
| 1125 | }, |
| 1126 | }, |
Hans de Goede | 1b799c5 | 2018-04-12 12:02:00 +0200 | [diff] [blame] | 1127 | { |
| 1128 | /* Point of View mobii wintab p800w */ |
| 1129 | .callback = battery_ac_is_broken_quirk, |
| 1130 | .matches = { |
| 1131 | DMI_MATCH(DMI_BOARD_VENDOR, "AMI Corporation"), |
| 1132 | DMI_MATCH(DMI_BOARD_NAME, "Aptio CRB"), |
| 1133 | DMI_MATCH(DMI_BIOS_VERSION, "3BAIR1013"), |
| 1134 | /* Above matches are too generic, add bios-date match */ |
| 1135 | DMI_MATCH(DMI_BIOS_DATE, "08/22/2014"), |
| 1136 | }, |
| 1137 | }, |
Carlo Caione | ec625a3 | 2018-04-18 14:04:39 +0200 | [diff] [blame] | 1138 | { |
Thomas Weißschuh | e96c119 | 2021-12-22 22:20:14 +0100 | [diff] [blame] | 1139 | /* |
| 1140 | * On Lenovo ThinkPads the BIOS specification defines |
| 1141 | * a state when the bits for charging and discharging |
| 1142 | * are both set to 0. That state is "Not Charging". |
| 1143 | */ |
| 1144 | .callback = battery_quirk_not_charging, |
| 1145 | .ident = "Lenovo ThinkPad", |
Carlo Caione | ec625a3 | 2018-04-18 14:04:39 +0200 | [diff] [blame] | 1146 | .matches = { |
Hans de Goede | 8c3f699 | 2020-02-23 15:29:41 +0100 | [diff] [blame] | 1147 | DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), |
Thomas Weißschuh | e96c119 | 2021-12-22 22:20:14 +0100 | [diff] [blame] | 1148 | DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad"), |
Carlo Caione | ec625a3 | 2018-04-18 14:04:39 +0200 | [diff] [blame] | 1149 | }, |
| 1150 | }, |
Lan Tianyu | a90b403 | 2014-01-06 22:50:37 +0800 | [diff] [blame] | 1151 | {}, |
| 1152 | }; |
| 1153 | |
Lan Tianyu | 75646e7 | 2014-07-07 15:47:12 +0800 | [diff] [blame] | 1154 | /* |
| 1155 | * Some machines'(E,G Lenovo Z480) ECs are not stable |
| 1156 | * during boot up and this causes battery driver fails to be |
| 1157 | * probed due to failure of getting battery information |
| 1158 | * from EC sometimes. After several retries, the operation |
| 1159 | * may work. So add retry code here and 20ms sleep between |
| 1160 | * every retries. |
| 1161 | */ |
| 1162 | static int acpi_battery_update_retry(struct acpi_battery *battery) |
| 1163 | { |
| 1164 | int retry, ret; |
| 1165 | |
| 1166 | for (retry = 5; retry; retry--) { |
| 1167 | ret = acpi_battery_update(battery, false); |
| 1168 | if (!ret) |
| 1169 | break; |
| 1170 | |
| 1171 | msleep(20); |
| 1172 | } |
| 1173 | return ret; |
| 1174 | } |
| 1175 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1176 | static int acpi_battery_add(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1177 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1178 | int result = 0; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1179 | struct acpi_battery *battery = NULL; |
Jiang Liu | 952c63e | 2013-06-29 00:24:38 +0800 | [diff] [blame] | 1180 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1181 | if (!device) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1182 | return -EINVAL; |
Lan Tianyu | 40e7fcb | 2014-11-23 21:22:54 +0800 | [diff] [blame] | 1183 | |
| 1184 | if (device->dep_unmet) |
| 1185 | return -EPROBE_DEFER; |
| 1186 | |
Burman Yan | 36bcbec | 2006-12-19 12:56:11 -0800 | [diff] [blame] | 1187 | battery = kzalloc(sizeof(struct acpi_battery), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1188 | if (!battery) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1189 | return -ENOMEM; |
Patrick Mochel | 145def8 | 2006-05-19 16:54:39 -0400 | [diff] [blame] | 1190 | battery->device = device; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1191 | strcpy(acpi_device_name(device), ACPI_BATTERY_DEVICE_NAME); |
| 1192 | strcpy(acpi_device_class(device), ACPI_BATTERY_CLASS); |
Pavel Machek | db89b4f | 2008-09-22 14:37:34 -0700 | [diff] [blame] | 1193 | device->driver_data = battery; |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 1194 | mutex_init(&battery->lock); |
Sergey Senozhatsky | 69d94ec | 2011-08-06 01:34:08 +0300 | [diff] [blame] | 1195 | mutex_init(&battery->sysfs_lock); |
Jiang Liu | 952c63e | 2013-06-29 00:24:38 +0800 | [diff] [blame] | 1196 | if (acpi_has_method(battery->device->handle, "_BIX")) |
Alexey Starikovskiy | c67fcd6 | 2009-10-15 14:31:44 +0400 | [diff] [blame] | 1197 | set_bit(ACPI_BATTERY_XINFO_PRESENT, &battery->flags); |
Lan Tianyu | 75646e7 | 2014-07-07 15:47:12 +0800 | [diff] [blame] | 1198 | |
| 1199 | result = acpi_battery_update_retry(battery); |
Stefan Hajnoczi | eb03cb0 | 2011-07-12 09:03:29 +0100 | [diff] [blame] | 1200 | if (result) |
| 1201 | goto fail; |
Lan Tianyu | 75646e7 | 2014-07-07 15:47:12 +0800 | [diff] [blame] | 1202 | |
Rafael J. Wysocki | bd8c5d1 | 2021-02-03 19:44:57 +0100 | [diff] [blame] | 1203 | pr_info("Slot [%s] (battery %s)\n", acpi_device_bid(device), |
Stefan Hajnoczi | e80bba4 | 2011-07-12 09:03:28 +0100 | [diff] [blame] | 1204 | device->status.battery_present ? "present" : "absent"); |
| 1205 | |
Kyle McMartin | 25be582 | 2011-03-22 16:19:50 -0400 | [diff] [blame] | 1206 | battery->pm_nb.notifier_call = battery_notify; |
| 1207 | register_pm_notifier(&battery->pm_nb); |
| 1208 | |
Zhang Rui | e0d1f09 | 2014-05-28 15:23:38 +0800 | [diff] [blame] | 1209 | device_init_wakeup(&device->dev, 1); |
| 1210 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1211 | return result; |
Stefan Hajnoczi | e80bba4 | 2011-07-12 09:03:28 +0100 | [diff] [blame] | 1212 | |
| 1213 | fail: |
| 1214 | sysfs_remove_battery(battery); |
| 1215 | mutex_destroy(&battery->lock); |
Sergey Senozhatsky | 69d94ec | 2011-08-06 01:34:08 +0300 | [diff] [blame] | 1216 | mutex_destroy(&battery->sysfs_lock); |
Stefan Hajnoczi | e80bba4 | 2011-07-12 09:03:28 +0100 | [diff] [blame] | 1217 | kfree(battery); |
| 1218 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1219 | } |
| 1220 | |
Rafael J. Wysocki | 51fac83 | 2013-01-24 00:24:48 +0100 | [diff] [blame] | 1221 | static int acpi_battery_remove(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1222 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1223 | struct acpi_battery *battery = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1224 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1225 | if (!device || !acpi_driver_data(device)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1226 | return -EINVAL; |
Zhang Rui | e0d1f09 | 2014-05-28 15:23:38 +0800 | [diff] [blame] | 1227 | device_init_wakeup(&device->dev, 0); |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1228 | battery = acpi_driver_data(device); |
Kyle McMartin | 25be582 | 2011-03-22 16:19:50 -0400 | [diff] [blame] | 1229 | unregister_pm_notifier(&battery->pm_nb); |
Andrey Borzenkov | 508df92 | 2007-10-28 12:50:09 +0300 | [diff] [blame] | 1230 | sysfs_remove_battery(battery); |
Alexey Starikovskiy | 038fdea | 2007-09-26 19:42:46 +0400 | [diff] [blame] | 1231 | mutex_destroy(&battery->lock); |
Sergey Senozhatsky | 69d94ec | 2011-08-06 01:34:08 +0300 | [diff] [blame] | 1232 | mutex_destroy(&battery->sysfs_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1233 | kfree(battery); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1234 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1235 | } |
| 1236 | |
Rafael J. Wysocki | 9069240 | 2012-08-09 23:00:02 +0200 | [diff] [blame] | 1237 | #ifdef CONFIG_PM_SLEEP |
Jiri Kosina | 34c4415 | 2006-10-10 14:20:41 -0700 | [diff] [blame] | 1238 | /* this is needed to learn about changes made in suspended state */ |
Rafael J. Wysocki | a6f50dc | 2012-06-27 23:26:43 +0200 | [diff] [blame] | 1239 | static int acpi_battery_resume(struct device *dev) |
Jiri Kosina | 34c4415 | 2006-10-10 14:20:41 -0700 | [diff] [blame] | 1240 | { |
| 1241 | struct acpi_battery *battery; |
Rafael J. Wysocki | a6f50dc | 2012-06-27 23:26:43 +0200 | [diff] [blame] | 1242 | |
| 1243 | if (!dev) |
Jiri Kosina | 34c4415 | 2006-10-10 14:20:41 -0700 | [diff] [blame] | 1244 | return -EINVAL; |
Rafael J. Wysocki | a6f50dc | 2012-06-27 23:26:43 +0200 | [diff] [blame] | 1245 | |
| 1246 | battery = acpi_driver_data(to_acpi_device(dev)); |
| 1247 | if (!battery) |
| 1248 | return -EINVAL; |
| 1249 | |
Alexey Starikovskiy | f1d4661 | 2007-09-26 19:42:52 +0400 | [diff] [blame] | 1250 | battery->update_time = 0; |
Lan Tianyu | 9e50bc1 | 2014-05-04 14:07:06 +0800 | [diff] [blame] | 1251 | acpi_battery_update(battery, true); |
Vladimir Lebedev | b6ce408 | 2007-02-20 15:48:06 +0300 | [diff] [blame] | 1252 | return 0; |
Jiri Kosina | 34c4415 | 2006-10-10 14:20:41 -0700 | [diff] [blame] | 1253 | } |
Shuah Khan | 7f6895c | 2014-02-12 20:19:06 -0700 | [diff] [blame] | 1254 | #else |
| 1255 | #define acpi_battery_resume NULL |
Rafael J. Wysocki | 9069240 | 2012-08-09 23:00:02 +0200 | [diff] [blame] | 1256 | #endif |
Jiri Kosina | 34c4415 | 2006-10-10 14:20:41 -0700 | [diff] [blame] | 1257 | |
Rafael J. Wysocki | a6f50dc | 2012-06-27 23:26:43 +0200 | [diff] [blame] | 1258 | static SIMPLE_DEV_PM_OPS(acpi_battery_pm, NULL, acpi_battery_resume); |
| 1259 | |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 1260 | static struct acpi_driver acpi_battery_driver = { |
| 1261 | .name = "battery", |
| 1262 | .class = ACPI_BATTERY_CLASS, |
| 1263 | .ids = battery_device_ids, |
Bjorn Helgaas | d940669 | 2009-04-30 09:35:47 -0600 | [diff] [blame] | 1264 | .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS, |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 1265 | .ops = { |
| 1266 | .add = acpi_battery_add, |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 1267 | .remove = acpi_battery_remove, |
Bjorn Helgaas | d940669 | 2009-04-30 09:35:47 -0600 | [diff] [blame] | 1268 | .notify = acpi_battery_notify, |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 1269 | }, |
Rafael J. Wysocki | a6f50dc | 2012-06-27 23:26:43 +0200 | [diff] [blame] | 1270 | .drv.pm = &acpi_battery_pm, |
Alexey Starikovskiy | aa650bb | 2007-09-26 19:42:58 +0400 | [diff] [blame] | 1271 | }; |
| 1272 | |
Linus Torvalds | b0cbc86 | 2009-04-11 12:45:20 -0700 | [diff] [blame] | 1273 | static void __init acpi_battery_init_async(void *unused, async_cookie_t cookie) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1274 | { |
Luis Henriques | 479faaf | 2015-05-11 22:48:46 +0100 | [diff] [blame] | 1275 | int result; |
| 1276 | |
Hans de Goede | 57a1832 | 2021-12-30 20:31:19 +0100 | [diff] [blame] | 1277 | if (acpi_quirk_skip_acpi_ac_and_battery()) |
| 1278 | return; |
Luis Henriques | 479faaf | 2015-05-11 22:48:46 +0100 | [diff] [blame] | 1279 | |
Hans de Goede | 57a1832 | 2021-12-30 20:31:19 +0100 | [diff] [blame] | 1280 | dmi_check_system(bat_dmi_table); |
Carlo Caione | ec625a3 | 2018-04-18 14:04:39 +0200 | [diff] [blame] | 1281 | |
Luis Henriques | 479faaf | 2015-05-11 22:48:46 +0100 | [diff] [blame] | 1282 | result = acpi_bus_register_driver(&acpi_battery_driver); |
Hans de Goede | bc39fbc | 2017-04-19 14:02:09 +0200 | [diff] [blame] | 1283 | battery_driver_registered = (result == 0); |
Arjan van de Ven | 0f66af5 | 2009-01-10 14:19:05 -0500 | [diff] [blame] | 1284 | } |
| 1285 | |
| 1286 | static int __init acpi_battery_init(void) |
| 1287 | { |
Luis Henriques | e234b07 | 2015-05-11 22:48:38 +0100 | [diff] [blame] | 1288 | if (acpi_disabled) |
| 1289 | return -ENODEV; |
| 1290 | |
Luis Henriques | eca21d91 | 2015-05-11 22:49:05 +0100 | [diff] [blame] | 1291 | async_cookie = async_schedule(acpi_battery_init_async, NULL); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1292 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1293 | } |
| 1294 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1295 | static void __exit acpi_battery_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1296 | { |
Chris Wilson | 5dfa0c7 | 2016-05-19 09:11:52 +0100 | [diff] [blame] | 1297 | async_synchronize_cookie(async_cookie + 1); |
Ognjen Galic | fa93854 | 2018-02-07 15:58:13 +0100 | [diff] [blame] | 1298 | if (battery_driver_registered) { |
Hans de Goede | bc39fbc | 2017-04-19 14:02:09 +0200 | [diff] [blame] | 1299 | acpi_bus_unregister_driver(&acpi_battery_driver); |
Ognjen Galic | fa93854 | 2018-02-07 15:58:13 +0100 | [diff] [blame] | 1300 | battery_hook_exit(); |
| 1301 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1302 | } |
| 1303 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1304 | module_init(acpi_battery_init); |
| 1305 | module_exit(acpi_battery_exit); |