blob: 0b2707ee094b4162c56078ee930e33c6290acb1e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04002 * battery.c - ACPI Battery Driver (Revision: 2.0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04004 * Copyright (C) 2007 Alexey Starikovskiy <astarikovskiy@suse.de>
5 * Copyright (C) 2004-2007 Vladimir Lebedev <vladimir.p.lebedev@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
7 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
8 *
9 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10 *
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.
15 *
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.
20 *
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.
24 *
25 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
26 */
27
28#include <linux/kernel.h>
29#include <linux/module.h>
30#include <linux/init.h>
31#include <linux/types.h>
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +040032#include <linux/jiffies.h>
Arjan van de Ven0f66af52009-01-10 14:19:05 -050033#include <linux/async.h>
Hector Martinbc76f902009-08-06 15:57:48 -070034#include <linux/dmi.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040036
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +030037#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/proc_fs.h>
39#include <linux/seq_file.h>
40#include <asm/uaccess.h>
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040041#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#include <acpi/acpi_bus.h>
44#include <acpi/acpi_drivers.h>
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040045#include <linux/power_supply.h>
46
Len Browna192a952009-07-28 16:45:54 -040047#define PREFIX "ACPI: "
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define ACPI_BATTERY_VALUE_UNKNOWN 0xFFFFFFFF
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define ACPI_BATTERY_CLASS "battery"
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#define ACPI_BATTERY_DEVICE_NAME "Battery"
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define ACPI_BATTERY_NOTIFY_STATUS 0x80
54#define ACPI_BATTERY_NOTIFY_INFO 0x81
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +040055#define ACPI_BATTERY_NOTIFY_THRESHOLD 0x82
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#define _COMPONENT ACPI_BATTERY_COMPONENT
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +030058
Len Brownf52fd662007-02-12 22:42:12 -050059ACPI_MODULE_NAME("battery");
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Len Brownf52fd662007-02-12 22:42:12 -050061MODULE_AUTHOR("Paul Diefenbaugh");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +040062MODULE_AUTHOR("Alexey Starikovskiy <astarikovskiy@suse.de>");
Len Brown7cda93e2007-02-12 23:50:02 -050063MODULE_DESCRIPTION("ACPI Battery Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070064MODULE_LICENSE("GPL");
65
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +040066static unsigned int cache_time = 1000;
67module_param(cache_time, uint, 0644);
68MODULE_PARM_DESC(cache_time, "cache time in milliseconds");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +030069
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +030070#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -040071extern struct proc_dir_entry *acpi_lock_battery_dir(void);
72extern void *acpi_unlock_battery_dir(struct proc_dir_entry *acpi_battery_dir);
73
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040074enum acpi_battery_files {
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +040075 info_tag = 0,
76 state_tag,
77 alarm_tag,
Alexey Starikovskiy78490d82007-05-11 13:18:55 -040078 ACPI_BATTERY_NUMFILES,
79};
80
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040081#endif
82
83static const struct acpi_device_id battery_device_ids[] = {
84 {"PNP0C0A", 0},
85 {"", 0},
86};
87
88MODULE_DEVICE_TABLE(acpi, battery_device_ids);
89
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +040090enum {
91 ACPI_BATTERY_ALARM_PRESENT,
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +040092 ACPI_BATTERY_XINFO_PRESENT,
93 /* For buggy DSDTs that report negative 16-bit values for either
94 * charging or discharging current and/or report 0 as 65536
95 * due to bad math.
96 */
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +040097 ACPI_BATTERY_QUIRK_SIGNED16_CURRENT,
Zhang Rui557d5862010-10-22 10:02:06 +080098 ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY,
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +040099};
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400100
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400101struct acpi_battery {
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400102 struct mutex lock;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400103 struct power_supply bat;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400104 struct acpi_device *device;
105 unsigned long update_time;
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400106 int rate_now;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400107 int capacity_now;
108 int voltage_now;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400109 int design_capacity;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400110 int full_charge_capacity;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400111 int technology;
112 int design_voltage;
113 int design_capacity_warning;
114 int design_capacity_low;
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400115 int cycle_count;
116 int measurement_accuracy;
117 int max_sampling_time;
118 int min_sampling_time;
119 int max_averaging_interval;
120 int min_averaging_interval;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400121 int capacity_granularity_1;
122 int capacity_granularity_2;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400123 int alarm;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400124 char model_number[32];
125 char serial_number[32];
126 char type[32];
127 char oem_info[32];
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400128 int state;
129 int power_unit;
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400130 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131};
132
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400133#define to_acpi_battery(x) container_of(x, struct acpi_battery, bat);
134
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400135inline int acpi_battery_present(struct acpi_battery *battery)
136{
137 return battery->device->status.battery_present;
138}
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400139
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400140static int acpi_battery_technology(struct acpi_battery *battery)
141{
142 if (!strcasecmp("NiCd", battery->type))
143 return POWER_SUPPLY_TECHNOLOGY_NiCd;
144 if (!strcasecmp("NiMH", battery->type))
145 return POWER_SUPPLY_TECHNOLOGY_NiMH;
146 if (!strcasecmp("LION", battery->type))
147 return POWER_SUPPLY_TECHNOLOGY_LION;
Andrey Borzenkovad40e682007-11-10 20:02:49 +0300148 if (!strncasecmp("LI-ION", battery->type, 6))
Alexey Starikovskiy0bde7ee2007-10-28 15:33:10 +0300149 return POWER_SUPPLY_TECHNOLOGY_LION;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400150 if (!strcasecmp("LiP", battery->type))
151 return POWER_SUPPLY_TECHNOLOGY_LIPO;
152 return POWER_SUPPLY_TECHNOLOGY_UNKNOWN;
153}
154
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300155static int acpi_battery_get_state(struct acpi_battery *battery);
Alexey Starikovskiyb19073a2007-10-25 17:10:47 -0400156
Richard Hughes56f382a2009-01-25 15:05:50 +0000157static int acpi_battery_is_charged(struct acpi_battery *battery)
158{
159 /* either charging or discharging */
160 if (battery->state != 0)
161 return 0;
162
163 /* battery not reporting charge */
164 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN ||
165 battery->capacity_now == 0)
166 return 0;
167
168 /* good batteries update full_charge as the batteries degrade */
169 if (battery->full_charge_capacity == battery->capacity_now)
170 return 1;
171
172 /* fallback to using design values for broken batteries */
173 if (battery->design_capacity == battery->capacity_now)
174 return 1;
175
176 /* we don't do any sort of metric based on percentages */
177 return 0;
178}
179
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400180static int acpi_battery_get_property(struct power_supply *psy,
181 enum power_supply_property psp,
182 union power_supply_propval *val)
183{
184 struct acpi_battery *battery = to_acpi_battery(psy);
185
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300186 if (acpi_battery_present(battery)) {
187 /* run battery update only if it is present */
188 acpi_battery_get_state(battery);
189 } else if (psp != POWER_SUPPLY_PROP_PRESENT)
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400190 return -ENODEV;
191 switch (psp) {
192 case POWER_SUPPLY_PROP_STATUS:
193 if (battery->state & 0x01)
194 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
195 else if (battery->state & 0x02)
196 val->intval = POWER_SUPPLY_STATUS_CHARGING;
Richard Hughes56f382a2009-01-25 15:05:50 +0000197 else if (acpi_battery_is_charged(battery))
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400198 val->intval = POWER_SUPPLY_STATUS_FULL;
Roland Dreier4c41d3a2007-11-07 15:09:09 -0800199 else
200 val->intval = POWER_SUPPLY_STATUS_UNKNOWN;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400201 break;
202 case POWER_SUPPLY_PROP_PRESENT:
203 val->intval = acpi_battery_present(battery);
204 break;
205 case POWER_SUPPLY_PROP_TECHNOLOGY:
206 val->intval = acpi_battery_technology(battery);
207 break;
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400208 case POWER_SUPPLY_PROP_CYCLE_COUNT:
209 val->intval = battery->cycle_count;
210 break;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400211 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
212 val->intval = battery->design_voltage * 1000;
213 break;
214 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
215 val->intval = battery->voltage_now * 1000;
216 break;
217 case POWER_SUPPLY_PROP_CURRENT_NOW:
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400218 case POWER_SUPPLY_PROP_POWER_NOW:
219 val->intval = battery->rate_now * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400220 break;
221 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
222 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
223 val->intval = battery->design_capacity * 1000;
224 break;
225 case POWER_SUPPLY_PROP_CHARGE_FULL:
226 case POWER_SUPPLY_PROP_ENERGY_FULL:
227 val->intval = battery->full_charge_capacity * 1000;
228 break;
229 case POWER_SUPPLY_PROP_CHARGE_NOW:
230 case POWER_SUPPLY_PROP_ENERGY_NOW:
231 val->intval = battery->capacity_now * 1000;
232 break;
233 case POWER_SUPPLY_PROP_MODEL_NAME:
234 val->strval = battery->model_number;
235 break;
236 case POWER_SUPPLY_PROP_MANUFACTURER:
237 val->strval = battery->oem_info;
238 break;
maximilian attems7c2670b2008-01-22 18:46:50 +0100239 case POWER_SUPPLY_PROP_SERIAL_NUMBER:
240 val->strval = battery->serial_number;
241 break;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400242 default:
243 return -EINVAL;
244 }
245 return 0;
246}
247
248static enum power_supply_property charge_battery_props[] = {
249 POWER_SUPPLY_PROP_STATUS,
250 POWER_SUPPLY_PROP_PRESENT,
251 POWER_SUPPLY_PROP_TECHNOLOGY,
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400252 POWER_SUPPLY_PROP_CYCLE_COUNT,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400253 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
254 POWER_SUPPLY_PROP_VOLTAGE_NOW,
255 POWER_SUPPLY_PROP_CURRENT_NOW,
256 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
257 POWER_SUPPLY_PROP_CHARGE_FULL,
258 POWER_SUPPLY_PROP_CHARGE_NOW,
259 POWER_SUPPLY_PROP_MODEL_NAME,
260 POWER_SUPPLY_PROP_MANUFACTURER,
maximilian attems7c2670b2008-01-22 18:46:50 +0100261 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400262};
263
264static enum power_supply_property energy_battery_props[] = {
265 POWER_SUPPLY_PROP_STATUS,
266 POWER_SUPPLY_PROP_PRESENT,
267 POWER_SUPPLY_PROP_TECHNOLOGY,
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400268 POWER_SUPPLY_PROP_CYCLE_COUNT,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400269 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
270 POWER_SUPPLY_PROP_VOLTAGE_NOW,
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400271 POWER_SUPPLY_PROP_POWER_NOW,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400272 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN,
273 POWER_SUPPLY_PROP_ENERGY_FULL,
274 POWER_SUPPLY_PROP_ENERGY_NOW,
275 POWER_SUPPLY_PROP_MODEL_NAME,
276 POWER_SUPPLY_PROP_MANUFACTURER,
maximilian attems7c2670b2008-01-22 18:46:50 +0100277 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400278};
279
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300280#ifdef CONFIG_ACPI_PROCFS_POWER
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400281inline char *acpi_battery_units(struct acpi_battery *battery)
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400282{
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400283 return (battery->power_unit)?"mA":"mW";
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400284}
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400285#endif
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287/* --------------------------------------------------------------------------
288 Battery Management
289 -------------------------------------------------------------------------- */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400290struct acpi_offsets {
291 size_t offset; /* offset inside struct acpi_sbs_battery */
292 u8 mode; /* int or string? */
293};
294
295static struct acpi_offsets state_offsets[] = {
296 {offsetof(struct acpi_battery, state), 0},
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400297 {offsetof(struct acpi_battery, rate_now), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400298 {offsetof(struct acpi_battery, capacity_now), 0},
299 {offsetof(struct acpi_battery, voltage_now), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400300};
301
302static struct acpi_offsets info_offsets[] = {
303 {offsetof(struct acpi_battery, power_unit), 0},
304 {offsetof(struct acpi_battery, design_capacity), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400305 {offsetof(struct acpi_battery, full_charge_capacity), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400306 {offsetof(struct acpi_battery, technology), 0},
307 {offsetof(struct acpi_battery, design_voltage), 0},
308 {offsetof(struct acpi_battery, design_capacity_warning), 0},
309 {offsetof(struct acpi_battery, design_capacity_low), 0},
310 {offsetof(struct acpi_battery, capacity_granularity_1), 0},
311 {offsetof(struct acpi_battery, capacity_granularity_2), 0},
312 {offsetof(struct acpi_battery, model_number), 1},
313 {offsetof(struct acpi_battery, serial_number), 1},
314 {offsetof(struct acpi_battery, type), 1},
315 {offsetof(struct acpi_battery, oem_info), 1},
316};
317
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400318static struct acpi_offsets extended_info_offsets[] = {
319 {offsetof(struct acpi_battery, power_unit), 0},
320 {offsetof(struct acpi_battery, design_capacity), 0},
321 {offsetof(struct acpi_battery, full_charge_capacity), 0},
322 {offsetof(struct acpi_battery, technology), 0},
323 {offsetof(struct acpi_battery, design_voltage), 0},
324 {offsetof(struct acpi_battery, design_capacity_warning), 0},
325 {offsetof(struct acpi_battery, design_capacity_low), 0},
326 {offsetof(struct acpi_battery, cycle_count), 0},
327 {offsetof(struct acpi_battery, measurement_accuracy), 0},
328 {offsetof(struct acpi_battery, max_sampling_time), 0},
329 {offsetof(struct acpi_battery, min_sampling_time), 0},
330 {offsetof(struct acpi_battery, max_averaging_interval), 0},
331 {offsetof(struct acpi_battery, min_averaging_interval), 0},
332 {offsetof(struct acpi_battery, capacity_granularity_1), 0},
333 {offsetof(struct acpi_battery, capacity_granularity_2), 0},
334 {offsetof(struct acpi_battery, model_number), 1},
335 {offsetof(struct acpi_battery, serial_number), 1},
336 {offsetof(struct acpi_battery, type), 1},
337 {offsetof(struct acpi_battery, oem_info), 1},
338};
339
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400340static int extract_package(struct acpi_battery *battery,
341 union acpi_object *package,
342 struct acpi_offsets *offsets, int num)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300343{
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300344 int i;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400345 union acpi_object *element;
346 if (package->type != ACPI_TYPE_PACKAGE)
347 return -EFAULT;
348 for (i = 0; i < num; ++i) {
349 if (package->package.count <= i)
350 return -EFAULT;
351 element = &package->package.elements[i];
352 if (offsets[i].mode) {
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300353 u8 *ptr = (u8 *)battery + offsets[i].offset;
354 if (element->type == ACPI_TYPE_STRING ||
355 element->type == ACPI_TYPE_BUFFER)
356 strncpy(ptr, element->string.pointer, 32);
357 else if (element->type == ACPI_TYPE_INTEGER) {
358 strncpy(ptr, (u8 *)&element->integer.value,
Lin Ming439913f2010-01-28 10:53:19 +0800359 sizeof(u64));
360 ptr[sizeof(u64)] = 0;
Alexey Starikovskiyb8a1bdb2008-03-17 22:37:42 -0400361 } else
362 *ptr = 0; /* don't have value */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400363 } else {
Alexey Starikovskiyb8a1bdb2008-03-17 22:37:42 -0400364 int *x = (int *)((u8 *)battery + offsets[i].offset);
365 *x = (element->type == ACPI_TYPE_INTEGER) ?
366 element->integer.value : -1;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300367 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300368 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300369 return 0;
370}
371
372static int acpi_battery_get_status(struct acpi_battery *battery)
373{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400374 if (acpi_bus_get_status(battery->device)) {
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300375 ACPI_EXCEPTION((AE_INFO, AE_ERROR, "Evaluating _STA"));
376 return -ENODEV;
377 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400378 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300379}
380
381static int acpi_battery_get_info(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400383 int result = -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -0400384 acpi_status status = 0;
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400385 char *name = test_bit(ACPI_BATTERY_XINFO_PRESENT, &battery->flags)?
386 "_BIX" : "_BIF";
387
Len Brown4be44fc2005-08-05 00:44:28 -0400388 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300390 if (!acpi_battery_present(battery))
391 return 0;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400392 mutex_lock(&battery->lock);
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400393 status = acpi_evaluate_object(battery->device->handle, name,
394 NULL, &buffer);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400395 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 if (ACPI_FAILURE(status)) {
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400398 ACPI_EXCEPTION((AE_INFO, status, "Evaluating %s", name));
Patrick Mocheld550d982006-06-27 00:41:40 -0400399 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 }
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400401 if (test_bit(ACPI_BATTERY_XINFO_PRESENT, &battery->flags))
402 result = extract_package(battery, buffer.pointer,
403 extended_info_offsets,
404 ARRAY_SIZE(extended_info_offsets));
405 else
406 result = extract_package(battery, buffer.pointer,
407 info_offsets, ARRAY_SIZE(info_offsets));
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400408 kfree(buffer.pointer);
Zhang Rui557d5862010-10-22 10:02:06 +0800409 if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags))
410 battery->full_charge_capacity = battery->design_capacity;
Patrick Mocheld550d982006-06-27 00:41:40 -0400411 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412}
413
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300414static int acpi_battery_get_state(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
Len Brown4be44fc2005-08-05 00:44:28 -0400416 int result = 0;
417 acpi_status status = 0;
418 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300420 if (!acpi_battery_present(battery))
421 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400423 if (battery->update_time &&
424 time_before(jiffies, battery->update_time +
425 msecs_to_jiffies(cache_time)))
426 return 0;
427
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400428 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400429 status = acpi_evaluate_object(battery->device->handle, "_BST",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400430 NULL, &buffer);
431 mutex_unlock(&battery->lock);
Len Brown5b31d892007-08-15 00:19:26 -0400432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400434 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BST"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400435 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400437
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400438 result = extract_package(battery, buffer.pointer,
439 state_offsets, ARRAY_SIZE(state_offsets));
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400440 battery->update_time = jiffies;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400441 kfree(buffer.pointer);
Hector Martinbc76f902009-08-06 15:57:48 -0700442
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400443 if (test_bit(ACPI_BATTERY_QUIRK_SIGNED16_CURRENT, &battery->flags) &&
Hector Martinbc76f902009-08-06 15:57:48 -0700444 battery->rate_now != -1)
445 battery->rate_now = abs((s16)battery->rate_now);
446
Zhang Rui557d5862010-10-22 10:02:06 +0800447 if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags)
448 && battery->capacity_now >= 0 && battery->capacity_now <= 100)
449 battery->capacity_now = (battery->capacity_now *
450 battery->full_charge_capacity) / 100;
Patrick Mocheld550d982006-06-27 00:41:40 -0400451 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452}
453
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400454static int acpi_battery_set_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
Len Brown4be44fc2005-08-05 00:44:28 -0400456 acpi_status status = 0;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400457 union acpi_object arg0 = { .type = ACPI_TYPE_INTEGER };
Len Brown4be44fc2005-08-05 00:44:28 -0400458 struct acpi_object_list arg_list = { 1, &arg0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400460 if (!acpi_battery_present(battery) ||
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400461 !test_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags))
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300462 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400464 arg0.integer.value = battery->alarm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400466 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400467 status = acpi_evaluate_object(battery->device->handle, "_BTP",
468 &arg_list, NULL);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400469 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400472 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400474 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Alarm set to %d\n", battery->alarm));
Patrick Mocheld550d982006-06-27 00:41:40 -0400475 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476}
477
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300478static int acpi_battery_init_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
Len Brown4be44fc2005-08-05 00:44:28 -0400480 acpi_status status = AE_OK;
481 acpi_handle handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300483 /* See if alarms are supported, and if so, set default */
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400484 status = acpi_get_handle(battery->device->handle, "_BTP", &handle);
485 if (ACPI_FAILURE(status)) {
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400486 clear_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400487 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 }
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400489 set_bit(ACPI_BATTERY_ALARM_PRESENT, &battery->flags);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400490 if (!battery->alarm)
491 battery->alarm = battery->design_capacity_warning;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400492 return acpi_battery_set_alarm(battery);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493}
494
Andrey Borzenkov508df922007-10-28 12:50:09 +0300495static ssize_t acpi_battery_alarm_show(struct device *dev,
496 struct device_attribute *attr,
497 char *buf)
498{
499 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
500 return sprintf(buf, "%d\n", battery->alarm * 1000);
501}
502
503static ssize_t acpi_battery_alarm_store(struct device *dev,
504 struct device_attribute *attr,
505 const char *buf, size_t count)
506{
507 unsigned long x;
508 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
509 if (sscanf(buf, "%ld\n", &x) == 1)
510 battery->alarm = x/1000;
511 if (acpi_battery_present(battery))
512 acpi_battery_set_alarm(battery);
513 return count;
514}
515
516static struct device_attribute alarm_attr = {
Parag Warudkar01e8ef12008-10-18 20:28:50 -0700517 .attr = {.name = "alarm", .mode = 0644},
Andrey Borzenkov508df922007-10-28 12:50:09 +0300518 .show = acpi_battery_alarm_show,
519 .store = acpi_battery_alarm_store,
520};
521
522static int sysfs_add_battery(struct acpi_battery *battery)
523{
524 int result;
525
Andrey Borzenkov508df922007-10-28 12:50:09 +0300526 if (battery->power_unit) {
527 battery->bat.properties = charge_battery_props;
528 battery->bat.num_properties =
529 ARRAY_SIZE(charge_battery_props);
530 } else {
531 battery->bat.properties = energy_battery_props;
532 battery->bat.num_properties =
533 ARRAY_SIZE(energy_battery_props);
534 }
535
536 battery->bat.name = acpi_device_bid(battery->device);
537 battery->bat.type = POWER_SUPPLY_TYPE_BATTERY;
538 battery->bat.get_property = acpi_battery_get_property;
539
540 result = power_supply_register(&battery->device->dev, &battery->bat);
541 if (result)
542 return result;
543 return device_create_file(battery->bat.dev, &alarm_attr);
544}
545
546static void sysfs_remove_battery(struct acpi_battery *battery)
547{
548 if (!battery->bat.dev)
549 return;
550 device_remove_file(battery->bat.dev, &alarm_attr);
551 power_supply_unregister(&battery->bat);
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300552 battery->bat.dev = NULL;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300553}
554
Hector Martinbc76f902009-08-06 15:57:48 -0700555static void acpi_battery_quirks(struct acpi_battery *battery)
556{
Hector Martinbc76f902009-08-06 15:57:48 -0700557 if (dmi_name_in_vendors("Acer") && battery->power_unit) {
Alexey Starikovskiy7b3bcc42009-10-15 14:31:24 +0400558 set_bit(ACPI_BATTERY_QUIRK_SIGNED16_CURRENT, &battery->flags);
Hector Martinbc76f902009-08-06 15:57:48 -0700559 }
560}
561
Zhang Rui557d5862010-10-22 10:02:06 +0800562/*
563 * According to the ACPI spec, some kinds of primary batteries can
564 * report percentage battery remaining capacity directly to OS.
565 * In this case, it reports the Last Full Charged Capacity == 100
566 * and BatteryPresentRate == 0xFFFFFFFF.
567 *
568 * Now we found some battery reports percentage remaining capacity
569 * even if it's rechargeable.
570 * https://bugzilla.kernel.org/show_bug.cgi?id=15979
571 *
572 * Handle this correctly so that they won't break userspace.
573 */
574static void acpi_battery_quirks2(struct acpi_battery *battery)
575{
576 if (test_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags))
577 return ;
578
579 if (battery->full_charge_capacity == 100 &&
580 battery->rate_now == ACPI_BATTERY_VALUE_UNKNOWN &&
581 battery->capacity_now >=0 && battery->capacity_now <= 100) {
582 set_bit(ACPI_BATTERY_QUIRK_PERCENTAGE_CAPACITY, &battery->flags);
583 battery->full_charge_capacity = battery->design_capacity;
584 battery->capacity_now = (battery->capacity_now *
585 battery->full_charge_capacity) / 100;
586 }
587}
588
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400589static int acpi_battery_update(struct acpi_battery *battery)
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500590{
Alexey Starikovskiy50b17852008-12-23 02:44:54 +0300591 int result, old_present = acpi_battery_present(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500592 result = acpi_battery_get_status(battery);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300593 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300594 return result;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300595 if (!acpi_battery_present(battery)) {
596 sysfs_remove_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500597 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300598 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300599 }
Alexey Starikovskiy50b17852008-12-23 02:44:54 +0300600 if (!battery->update_time ||
601 old_present != acpi_battery_present(battery)) {
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500602 result = acpi_battery_get_info(battery);
603 if (result)
604 return result;
Hector Martinbc76f902009-08-06 15:57:48 -0700605 acpi_battery_quirks(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500606 acpi_battery_init_alarm(battery);
607 }
Andrey Borzenkov508df922007-10-28 12:50:09 +0300608 if (!battery->bat.dev)
609 sysfs_add_battery(battery);
Zhang Rui557d5862010-10-22 10:02:06 +0800610 result = acpi_battery_get_state(battery);
611 acpi_battery_quirks2(battery);
612 return result;
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500613}
614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615/* --------------------------------------------------------------------------
616 FS Interface (/proc)
617 -------------------------------------------------------------------------- */
618
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300619#ifdef CONFIG_ACPI_PROCFS_POWER
Len Brown4be44fc2005-08-05 00:44:28 -0400620static struct proc_dir_entry *acpi_battery_dir;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300621
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400622static int acpi_battery_print_info(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200624 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300626 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 goto end;
628
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400629 seq_printf(seq, "present: %s\n",
630 acpi_battery_present(battery)?"yes":"no");
631 if (!acpi_battery_present(battery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 goto end;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400633 if (battery->design_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 seq_printf(seq, "design capacity: unknown\n");
635 else
636 seq_printf(seq, "design capacity: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400637 battery->design_capacity,
638 acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400640 if (battery->full_charge_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 seq_printf(seq, "last full capacity: unknown\n");
642 else
643 seq_printf(seq, "last full capacity: %d %sh\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400644 battery->full_charge_capacity,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400645 acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400647 seq_printf(seq, "battery technology: %srechargeable\n",
648 (!battery->technology)?"non-":"");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400650 if (battery->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 seq_printf(seq, "design voltage: unknown\n");
652 else
653 seq_printf(seq, "design voltage: %d mV\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400654 battery->design_voltage);
Len Brown4be44fc2005-08-05 00:44:28 -0400655 seq_printf(seq, "design capacity warning: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400656 battery->design_capacity_warning,
657 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400658 seq_printf(seq, "design capacity low: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400659 battery->design_capacity_low,
660 acpi_battery_units(battery));
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400661 seq_printf(seq, "cycle count: %i\n", battery->cycle_count);
Len Brown4be44fc2005-08-05 00:44:28 -0400662 seq_printf(seq, "capacity granularity 1: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400663 battery->capacity_granularity_1,
664 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400665 seq_printf(seq, "capacity granularity 2: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400666 battery->capacity_granularity_2,
667 acpi_battery_units(battery));
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400668 seq_printf(seq, "model number: %s\n", battery->model_number);
669 seq_printf(seq, "serial number: %s\n", battery->serial_number);
670 seq_printf(seq, "battery type: %s\n", battery->type);
671 seq_printf(seq, "OEM info: %s\n", battery->oem_info);
Len Brown4be44fc2005-08-05 00:44:28 -0400672 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300673 if (result)
674 seq_printf(seq, "ERROR: Unable to read battery info\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300675 return result;
676}
677
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400678static int acpi_battery_print_state(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200680 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300682 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 goto end;
684
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400685 seq_printf(seq, "present: %s\n",
686 acpi_battery_present(battery)?"yes":"no");
687 if (!acpi_battery_present(battery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400690 seq_printf(seq, "capacity state: %s\n",
691 (battery->state & 0x04)?"critical":"ok");
692 if ((battery->state & 0x01) && (battery->state & 0x02))
Len Brown4be44fc2005-08-05 00:44:28 -0400693 seq_printf(seq,
694 "charging state: charging/discharging\n");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400695 else if (battery->state & 0x01)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 seq_printf(seq, "charging state: discharging\n");
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400697 else if (battery->state & 0x02)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 seq_printf(seq, "charging state: charging\n");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400699 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 seq_printf(seq, "charging state: charged\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400702 if (battery->rate_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 seq_printf(seq, "present rate: unknown\n");
704 else
705 seq_printf(seq, "present rate: %d %s\n",
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400706 battery->rate_now, acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400708 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 seq_printf(seq, "remaining capacity: unknown\n");
710 else
711 seq_printf(seq, "remaining capacity: %d %sh\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400712 battery->capacity_now, acpi_battery_units(battery));
713 if (battery->voltage_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 seq_printf(seq, "present voltage: unknown\n");
715 else
716 seq_printf(seq, "present voltage: %d mV\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400717 battery->voltage_now);
Len Brown4be44fc2005-08-05 00:44:28 -0400718 end:
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400719 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300720 seq_printf(seq, "ERROR: Unable to read battery state\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300721
722 return result;
723}
724
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400725static int acpi_battery_print_alarm(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200727 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300729 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 goto end;
731
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300732 if (!acpi_battery_present(battery)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 seq_printf(seq, "present: no\n");
734 goto end;
735 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 seq_printf(seq, "alarm: ");
737 if (!battery->alarm)
738 seq_printf(seq, "unsupported\n");
739 else
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400740 seq_printf(seq, "%u %sh\n", battery->alarm,
741 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400742 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300743 if (result)
744 seq_printf(seq, "ERROR: Unable to read battery alarm\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300745 return result;
746}
747
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400748static ssize_t acpi_battery_write_alarm(struct file *file,
749 const char __user * buffer,
750 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751{
Len Brown4be44fc2005-08-05 00:44:28 -0400752 int result = 0;
753 char alarm_string[12] = { '\0' };
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200754 struct seq_file *m = file->private_data;
755 struct acpi_battery *battery = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 if (!battery || (count > sizeof(alarm_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -0400758 return -EINVAL;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300759 if (!acpi_battery_present(battery)) {
760 result = -ENODEV;
761 goto end;
762 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300763 if (copy_from_user(alarm_string, buffer, count)) {
764 result = -EFAULT;
765 goto end;
766 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 alarm_string[count] = '\0';
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400768 battery->alarm = simple_strtol(alarm_string, NULL, 0);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400769 result = acpi_battery_set_alarm(battery);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300770 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300771 if (!result)
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400772 return count;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300773 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774}
775
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400776typedef int(*print_func)(struct seq_file *seq, int result);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400777
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400778static print_func acpi_print_funcs[ACPI_BATTERY_NUMFILES] = {
779 acpi_battery_print_info,
780 acpi_battery_print_state,
781 acpi_battery_print_alarm,
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400782};
783
784static int acpi_battery_read(int fid, struct seq_file *seq)
785{
786 struct acpi_battery *battery = seq->private;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400787 int result = acpi_battery_update(battery);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400788 return acpi_print_funcs[fid](seq, result);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400789}
790
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400791#define DECLARE_FILE_FUNCTIONS(_name) \
792static int acpi_battery_read_##_name(struct seq_file *seq, void *offset) \
793{ \
794 return acpi_battery_read(_name##_tag, seq); \
795} \
796static int acpi_battery_##_name##_open_fs(struct inode *inode, struct file *file) \
797{ \
798 return single_open(file, acpi_battery_read_##_name, PDE(inode)->data); \
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400799}
800
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400801DECLARE_FILE_FUNCTIONS(info);
802DECLARE_FILE_FUNCTIONS(state);
803DECLARE_FILE_FUNCTIONS(alarm);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400804
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400805#undef DECLARE_FILE_FUNCTIONS
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400806
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400807#define FILE_DESCRIPTION_RO(_name) \
808 { \
809 .name = __stringify(_name), \
810 .mode = S_IRUGO, \
811 .ops = { \
812 .open = acpi_battery_##_name##_open_fs, \
813 .read = seq_read, \
814 .llseek = seq_lseek, \
815 .release = single_release, \
816 .owner = THIS_MODULE, \
817 }, \
818 }
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400819
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400820#define FILE_DESCRIPTION_RW(_name) \
821 { \
822 .name = __stringify(_name), \
823 .mode = S_IFREG | S_IRUGO | S_IWUSR, \
824 .ops = { \
825 .open = acpi_battery_##_name##_open_fs, \
826 .read = seq_read, \
827 .llseek = seq_lseek, \
828 .write = acpi_battery_write_##_name, \
829 .release = single_release, \
830 .owner = THIS_MODULE, \
831 }, \
832 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400834static struct battery_file {
835 struct file_operations ops;
836 mode_t mode;
Jan Engelhardt070d8eb2009-01-12 00:07:55 +0100837 const char *name;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400838} acpi_battery_file[] = {
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400839 FILE_DESCRIPTION_RO(info),
840 FILE_DESCRIPTION_RO(state),
841 FILE_DESCRIPTION_RW(alarm),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842};
843
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400844#undef FILE_DESCRIPTION_RO
845#undef FILE_DESCRIPTION_RW
846
Len Brown4be44fc2005-08-05 00:44:28 -0400847static int acpi_battery_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848{
Len Brown4be44fc2005-08-05 00:44:28 -0400849 struct proc_dir_entry *entry = NULL;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400850 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 if (!acpi_device_dir(device)) {
853 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400854 acpi_battery_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400856 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 }
858
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400859 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i) {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700860 entry = proc_create_data(acpi_battery_file[i].name,
861 acpi_battery_file[i].mode,
862 acpi_device_dir(device),
863 &acpi_battery_file[i].ops,
864 acpi_driver_data(device));
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400865 if (!entry)
866 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400868 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869}
870
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400871static void acpi_battery_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872{
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400873 int i;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400874 if (!acpi_device_dir(device))
875 return;
876 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i)
877 remove_proc_entry(acpi_battery_file[i].name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400880 remove_proc_entry(acpi_device_bid(device), acpi_battery_dir);
881 acpi_device_dir(device) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882}
883
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400884#endif
Alexey Starikovskiy3e58ea02007-09-26 19:43:11 +0400885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886/* --------------------------------------------------------------------------
887 Driver Interface
888 -------------------------------------------------------------------------- */
889
Bjorn Helgaasd9406692009-04-30 09:35:47 -0600890static void acpi_battery_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891{
Bjorn Helgaasd9406692009-04-30 09:35:47 -0600892 struct acpi_battery *battery = acpi_driver_data(device);
Zhang Rui153e5002010-07-07 09:11:57 +0800893 struct device *old;
Bjorn Helgaasd9406692009-04-30 09:35:47 -0600894
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -0400896 return;
Zhang Rui153e5002010-07-07 09:11:57 +0800897 old = battery->bat.dev;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400898 acpi_battery_update(battery);
899 acpi_bus_generate_proc_event(device, event,
900 acpi_battery_present(battery));
901 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100902 dev_name(&device->dev), event,
Vladimir Lebedev9ea7d572007-02-20 15:48:06 +0300903 acpi_battery_present(battery));
Justin P. Mattock2345baf2009-12-13 14:42:36 -0800904 /* acpi_battery_update could remove power_supply object */
Zhang Rui153e5002010-07-07 09:11:57 +0800905 if (old && battery->bat.dev)
Alan Jenkinsf79e1ce2009-06-30 14:36:16 +0000906 power_supply_changed(&battery->bat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907}
908
Len Brown4be44fc2005-08-05 00:44:28 -0400909static int acpi_battery_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910{
Len Brown4be44fc2005-08-05 00:44:28 -0400911 int result = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400912 struct acpi_battery *battery = NULL;
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400913 acpi_handle handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400915 return -EINVAL;
Burman Yan36bcbec2006-12-19 12:56:11 -0800916 battery = kzalloc(sizeof(struct acpi_battery), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -0400918 return -ENOMEM;
Patrick Mochel145def82006-05-19 16:54:39 -0400919 battery->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 strcpy(acpi_device_name(device), ACPI_BATTERY_DEVICE_NAME);
921 strcpy(acpi_device_class(device), ACPI_BATTERY_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700922 device->driver_data = battery;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400923 mutex_init(&battery->lock);
Alexey Starikovskiyc67fcd62009-10-15 14:31:44 +0400924 if (ACPI_SUCCESS(acpi_get_handle(battery->device->handle,
925 "_BIX", &handle)))
926 set_bit(ACPI_BATTERY_XINFO_PRESENT, &battery->flags);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400927 acpi_battery_update(battery);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300928#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 result = acpi_battery_add_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400930#endif
Len Brown586caae2009-06-18 00:38:27 -0400931 if (!result) {
932 printk(KERN_INFO PREFIX "%s Slot [%s] (battery %s)\n",
933 ACPI_BATTERY_DEVICE_NAME, acpi_device_bid(device),
934 device->status.battery_present ? "present" : "absent");
935 } else {
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300936#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 acpi_battery_remove_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400938#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 kfree(battery);
940 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400941 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942}
943
Len Brown4be44fc2005-08-05 00:44:28 -0400944static int acpi_battery_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945{
Len Brown4be44fc2005-08-05 00:44:28 -0400946 struct acpi_battery *battery = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400949 return -EINVAL;
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200950 battery = acpi_driver_data(device);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300951#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 acpi_battery_remove_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400953#endif
Andrey Borzenkov508df922007-10-28 12:50:09 +0300954 sysfs_remove_battery(battery);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400955 mutex_destroy(&battery->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 kfree(battery);
Patrick Mocheld550d982006-06-27 00:41:40 -0400957 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958}
959
Jiri Kosina34c44152006-10-10 14:20:41 -0700960/* this is needed to learn about changes made in suspended state */
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800961static int acpi_battery_resume(struct acpi_device *device)
Jiri Kosina34c44152006-10-10 14:20:41 -0700962{
963 struct acpi_battery *battery;
Jiri Kosina34c44152006-10-10 14:20:41 -0700964 if (!device)
965 return -EINVAL;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400966 battery = acpi_driver_data(device);
967 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300968 acpi_battery_update(battery);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300969 return 0;
Jiri Kosina34c44152006-10-10 14:20:41 -0700970}
971
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400972static struct acpi_driver acpi_battery_driver = {
973 .name = "battery",
974 .class = ACPI_BATTERY_CLASS,
975 .ids = battery_device_ids,
Bjorn Helgaasd9406692009-04-30 09:35:47 -0600976 .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400977 .ops = {
978 .add = acpi_battery_add,
979 .resume = acpi_battery_resume,
980 .remove = acpi_battery_remove,
Bjorn Helgaasd9406692009-04-30 09:35:47 -0600981 .notify = acpi_battery_notify,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400982 },
983};
984
Linus Torvaldsb0cbc862009-04-11 12:45:20 -0700985static void __init acpi_battery_init_async(void *unused, async_cookie_t cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986{
Pavel Machek4d8316d2006-08-14 22:37:22 -0700987 if (acpi_disabled)
Arjan van de Ven0f66af52009-01-10 14:19:05 -0500988 return;
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300989#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400990 acpi_battery_dir = acpi_lock_battery_dir();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 if (!acpi_battery_dir)
Arjan van de Ven0f66af52009-01-10 14:19:05 -0500992 return;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400993#endif
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400994 if (acpi_bus_register_driver(&acpi_battery_driver) < 0) {
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300995#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400996 acpi_unlock_battery_dir(acpi_battery_dir);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400997#endif
Arjan van de Ven0f66af52009-01-10 14:19:05 -0500998 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 }
Arjan van de Ven0f66af52009-01-10 14:19:05 -05001000 return;
1001}
1002
1003static int __init acpi_battery_init(void)
1004{
1005 async_schedule(acpi_battery_init_async, NULL);
Patrick Mocheld550d982006-06-27 00:41:40 -04001006 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007}
1008
Len Brown4be44fc2005-08-05 00:44:28 -04001009static void __exit acpi_battery_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 acpi_bus_unregister_driver(&acpi_battery_driver);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +03001012#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -04001013 acpi_unlock_battery_dir(acpi_battery_dir);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +04001014#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015}
1016
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017module_init(acpi_battery_init);
1018module_exit(acpi_battery_exit);