blob: f8c3d1bb6969856f1f4980c71126e5aafe13ddbb [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>
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040034
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +030035#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/proc_fs.h>
37#include <linux/seq_file.h>
38#include <asm/uaccess.h>
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040039#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41#include <acpi/acpi_bus.h>
42#include <acpi/acpi_drivers.h>
43
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -050044#ifdef CONFIG_ACPI_SYSFS_POWER
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040045#include <linux/power_supply.h>
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -050046#endif
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040047
Len Browna192a952009-07-28 16:45:54 -040048#define PREFIX "ACPI: "
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#define ACPI_BATTERY_VALUE_UNKNOWN 0xFFFFFFFF
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#define ACPI_BATTERY_CLASS "battery"
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define ACPI_BATTERY_DEVICE_NAME "Battery"
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#define ACPI_BATTERY_NOTIFY_STATUS 0x80
55#define ACPI_BATTERY_NOTIFY_INFO 0x81
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
90
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040091struct acpi_battery {
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040092 struct mutex lock;
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -050093#ifdef CONFIG_ACPI_SYSFS_POWER
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040094 struct power_supply bat;
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -050095#endif
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +040096 struct acpi_device *device;
97 unsigned long update_time;
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -040098 int rate_now;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040099 int capacity_now;
100 int voltage_now;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400101 int design_capacity;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400102 int full_charge_capacity;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400103 int technology;
104 int design_voltage;
105 int design_capacity_warning;
106 int design_capacity_low;
107 int capacity_granularity_1;
108 int capacity_granularity_2;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400109 int alarm;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400110 char model_number[32];
111 char serial_number[32];
112 char type[32];
113 char oem_info[32];
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400114 int state;
115 int power_unit;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300116 u8 alarm_present;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117};
118
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400119#define to_acpi_battery(x) container_of(x, struct acpi_battery, bat);
120
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400121inline int acpi_battery_present(struct acpi_battery *battery)
122{
123 return battery->device->status.battery_present;
124}
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400125
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500126#ifdef CONFIG_ACPI_SYSFS_POWER
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400127static int acpi_battery_technology(struct acpi_battery *battery)
128{
129 if (!strcasecmp("NiCd", battery->type))
130 return POWER_SUPPLY_TECHNOLOGY_NiCd;
131 if (!strcasecmp("NiMH", battery->type))
132 return POWER_SUPPLY_TECHNOLOGY_NiMH;
133 if (!strcasecmp("LION", battery->type))
134 return POWER_SUPPLY_TECHNOLOGY_LION;
Andrey Borzenkovad40e682007-11-10 20:02:49 +0300135 if (!strncasecmp("LI-ION", battery->type, 6))
Alexey Starikovskiy0bde7ee2007-10-28 15:33:10 +0300136 return POWER_SUPPLY_TECHNOLOGY_LION;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400137 if (!strcasecmp("LiP", battery->type))
138 return POWER_SUPPLY_TECHNOLOGY_LIPO;
139 return POWER_SUPPLY_TECHNOLOGY_UNKNOWN;
140}
141
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300142static int acpi_battery_get_state(struct acpi_battery *battery);
Alexey Starikovskiyb19073a2007-10-25 17:10:47 -0400143
Richard Hughes56f382a2009-01-25 15:05:50 +0000144static int acpi_battery_is_charged(struct acpi_battery *battery)
145{
146 /* either charging or discharging */
147 if (battery->state != 0)
148 return 0;
149
150 /* battery not reporting charge */
151 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN ||
152 battery->capacity_now == 0)
153 return 0;
154
155 /* good batteries update full_charge as the batteries degrade */
156 if (battery->full_charge_capacity == battery->capacity_now)
157 return 1;
158
159 /* fallback to using design values for broken batteries */
160 if (battery->design_capacity == battery->capacity_now)
161 return 1;
162
163 /* we don't do any sort of metric based on percentages */
164 return 0;
165}
166
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400167static int acpi_battery_get_property(struct power_supply *psy,
168 enum power_supply_property psp,
169 union power_supply_propval *val)
170{
171 struct acpi_battery *battery = to_acpi_battery(psy);
172
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300173 if (acpi_battery_present(battery)) {
174 /* run battery update only if it is present */
175 acpi_battery_get_state(battery);
176 } else if (psp != POWER_SUPPLY_PROP_PRESENT)
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400177 return -ENODEV;
178 switch (psp) {
179 case POWER_SUPPLY_PROP_STATUS:
180 if (battery->state & 0x01)
181 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
182 else if (battery->state & 0x02)
183 val->intval = POWER_SUPPLY_STATUS_CHARGING;
Richard Hughes56f382a2009-01-25 15:05:50 +0000184 else if (acpi_battery_is_charged(battery))
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400185 val->intval = POWER_SUPPLY_STATUS_FULL;
Roland Dreier4c41d3a2007-11-07 15:09:09 -0800186 else
187 val->intval = POWER_SUPPLY_STATUS_UNKNOWN;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400188 break;
189 case POWER_SUPPLY_PROP_PRESENT:
190 val->intval = acpi_battery_present(battery);
191 break;
192 case POWER_SUPPLY_PROP_TECHNOLOGY:
193 val->intval = acpi_battery_technology(battery);
194 break;
195 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
196 val->intval = battery->design_voltage * 1000;
197 break;
198 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
199 val->intval = battery->voltage_now * 1000;
200 break;
201 case POWER_SUPPLY_PROP_CURRENT_NOW:
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400202 case POWER_SUPPLY_PROP_POWER_NOW:
203 val->intval = battery->rate_now * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400204 break;
205 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
206 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
207 val->intval = battery->design_capacity * 1000;
208 break;
209 case POWER_SUPPLY_PROP_CHARGE_FULL:
210 case POWER_SUPPLY_PROP_ENERGY_FULL:
211 val->intval = battery->full_charge_capacity * 1000;
212 break;
213 case POWER_SUPPLY_PROP_CHARGE_NOW:
214 case POWER_SUPPLY_PROP_ENERGY_NOW:
215 val->intval = battery->capacity_now * 1000;
216 break;
217 case POWER_SUPPLY_PROP_MODEL_NAME:
218 val->strval = battery->model_number;
219 break;
220 case POWER_SUPPLY_PROP_MANUFACTURER:
221 val->strval = battery->oem_info;
222 break;
maximilian attems7c2670b2008-01-22 18:46:50 +0100223 case POWER_SUPPLY_PROP_SERIAL_NUMBER:
224 val->strval = battery->serial_number;
225 break;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400226 default:
227 return -EINVAL;
228 }
229 return 0;
230}
231
232static enum power_supply_property charge_battery_props[] = {
233 POWER_SUPPLY_PROP_STATUS,
234 POWER_SUPPLY_PROP_PRESENT,
235 POWER_SUPPLY_PROP_TECHNOLOGY,
236 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
237 POWER_SUPPLY_PROP_VOLTAGE_NOW,
238 POWER_SUPPLY_PROP_CURRENT_NOW,
239 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
240 POWER_SUPPLY_PROP_CHARGE_FULL,
241 POWER_SUPPLY_PROP_CHARGE_NOW,
242 POWER_SUPPLY_PROP_MODEL_NAME,
243 POWER_SUPPLY_PROP_MANUFACTURER,
maximilian attems7c2670b2008-01-22 18:46:50 +0100244 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400245};
246
247static enum power_supply_property energy_battery_props[] = {
248 POWER_SUPPLY_PROP_STATUS,
249 POWER_SUPPLY_PROP_PRESENT,
250 POWER_SUPPLY_PROP_TECHNOLOGY,
251 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
252 POWER_SUPPLY_PROP_VOLTAGE_NOW,
253 POWER_SUPPLY_PROP_CURRENT_NOW,
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400254 POWER_SUPPLY_PROP_POWER_NOW,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400255 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN,
256 POWER_SUPPLY_PROP_ENERGY_FULL,
257 POWER_SUPPLY_PROP_ENERGY_NOW,
258 POWER_SUPPLY_PROP_MODEL_NAME,
259 POWER_SUPPLY_PROP_MANUFACTURER,
maximilian attems7c2670b2008-01-22 18:46:50 +0100260 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400261};
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500262#endif
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400263
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300264#ifdef CONFIG_ACPI_PROCFS_POWER
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400265inline char *acpi_battery_units(struct acpi_battery *battery)
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400266{
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400267 return (battery->power_unit)?"mA":"mW";
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400268}
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400269#endif
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271/* --------------------------------------------------------------------------
272 Battery Management
273 -------------------------------------------------------------------------- */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400274struct acpi_offsets {
275 size_t offset; /* offset inside struct acpi_sbs_battery */
276 u8 mode; /* int or string? */
277};
278
279static struct acpi_offsets state_offsets[] = {
280 {offsetof(struct acpi_battery, state), 0},
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400281 {offsetof(struct acpi_battery, rate_now), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400282 {offsetof(struct acpi_battery, capacity_now), 0},
283 {offsetof(struct acpi_battery, voltage_now), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400284};
285
286static struct acpi_offsets info_offsets[] = {
287 {offsetof(struct acpi_battery, power_unit), 0},
288 {offsetof(struct acpi_battery, design_capacity), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400289 {offsetof(struct acpi_battery, full_charge_capacity), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400290 {offsetof(struct acpi_battery, technology), 0},
291 {offsetof(struct acpi_battery, design_voltage), 0},
292 {offsetof(struct acpi_battery, design_capacity_warning), 0},
293 {offsetof(struct acpi_battery, design_capacity_low), 0},
294 {offsetof(struct acpi_battery, capacity_granularity_1), 0},
295 {offsetof(struct acpi_battery, capacity_granularity_2), 0},
296 {offsetof(struct acpi_battery, model_number), 1},
297 {offsetof(struct acpi_battery, serial_number), 1},
298 {offsetof(struct acpi_battery, type), 1},
299 {offsetof(struct acpi_battery, oem_info), 1},
300};
301
302static int extract_package(struct acpi_battery *battery,
303 union acpi_object *package,
304 struct acpi_offsets *offsets, int num)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300305{
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300306 int i;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400307 union acpi_object *element;
308 if (package->type != ACPI_TYPE_PACKAGE)
309 return -EFAULT;
310 for (i = 0; i < num; ++i) {
311 if (package->package.count <= i)
312 return -EFAULT;
313 element = &package->package.elements[i];
314 if (offsets[i].mode) {
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300315 u8 *ptr = (u8 *)battery + offsets[i].offset;
316 if (element->type == ACPI_TYPE_STRING ||
317 element->type == ACPI_TYPE_BUFFER)
318 strncpy(ptr, element->string.pointer, 32);
319 else if (element->type == ACPI_TYPE_INTEGER) {
320 strncpy(ptr, (u8 *)&element->integer.value,
321 sizeof(acpi_integer));
322 ptr[sizeof(acpi_integer)] = 0;
Alexey Starikovskiyb8a1bdb2008-03-17 22:37:42 -0400323 } else
324 *ptr = 0; /* don't have value */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400325 } else {
Alexey Starikovskiyb8a1bdb2008-03-17 22:37:42 -0400326 int *x = (int *)((u8 *)battery + offsets[i].offset);
327 *x = (element->type == ACPI_TYPE_INTEGER) ?
328 element->integer.value : -1;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300329 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300330 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300331 return 0;
332}
333
334static int acpi_battery_get_status(struct acpi_battery *battery)
335{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400336 if (acpi_bus_get_status(battery->device)) {
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300337 ACPI_EXCEPTION((AE_INFO, AE_ERROR, "Evaluating _STA"));
338 return -ENODEV;
339 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400340 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300341}
342
343static int acpi_battery_get_info(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400345 int result = -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -0400346 acpi_status status = 0;
347 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300349 if (!acpi_battery_present(battery))
350 return 0;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400351 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400352 status = acpi_evaluate_object(battery->device->handle, "_BIF",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400353 NULL, &buffer);
354 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400357 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BIF"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400358 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400360
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400361 result = extract_package(battery, buffer.pointer,
362 info_offsets, ARRAY_SIZE(info_offsets));
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400363 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -0400364 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365}
366
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300367static int acpi_battery_get_state(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
Len Brown4be44fc2005-08-05 00:44:28 -0400369 int result = 0;
370 acpi_status status = 0;
371 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300373 if (!acpi_battery_present(battery))
374 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400376 if (battery->update_time &&
377 time_before(jiffies, battery->update_time +
378 msecs_to_jiffies(cache_time)))
379 return 0;
380
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400381 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400382 status = acpi_evaluate_object(battery->device->handle, "_BST",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400383 NULL, &buffer);
384 mutex_unlock(&battery->lock);
Len Brown5b31d892007-08-15 00:19:26 -0400385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400387 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BST"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400388 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400390
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400391 result = extract_package(battery, buffer.pointer,
392 state_offsets, ARRAY_SIZE(state_offsets));
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400393 battery->update_time = jiffies;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400394 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -0400395 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396}
397
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400398static int acpi_battery_set_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
Len Brown4be44fc2005-08-05 00:44:28 -0400400 acpi_status status = 0;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400401 union acpi_object arg0 = { .type = ACPI_TYPE_INTEGER };
Len Brown4be44fc2005-08-05 00:44:28 -0400402 struct acpi_object_list arg_list = { 1, &arg0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400404 if (!acpi_battery_present(battery)|| !battery->alarm_present)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300405 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400407 arg0.integer.value = battery->alarm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400409 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400410 status = acpi_evaluate_object(battery->device->handle, "_BTP",
411 &arg_list, NULL);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400412 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400415 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400417 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Alarm set to %d\n", battery->alarm));
Patrick Mocheld550d982006-06-27 00:41:40 -0400418 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
420
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300421static int acpi_battery_init_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
Len Brown4be44fc2005-08-05 00:44:28 -0400423 acpi_status status = AE_OK;
424 acpi_handle handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300426 /* See if alarms are supported, and if so, set default */
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400427 status = acpi_get_handle(battery->device->handle, "_BTP", &handle);
428 if (ACPI_FAILURE(status)) {
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400429 battery->alarm_present = 0;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400430 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 }
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400432 battery->alarm_present = 1;
433 if (!battery->alarm)
434 battery->alarm = battery->design_capacity_warning;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400435 return acpi_battery_set_alarm(battery);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436}
437
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500438#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300439static ssize_t acpi_battery_alarm_show(struct device *dev,
440 struct device_attribute *attr,
441 char *buf)
442{
443 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
444 return sprintf(buf, "%d\n", battery->alarm * 1000);
445}
446
447static ssize_t acpi_battery_alarm_store(struct device *dev,
448 struct device_attribute *attr,
449 const char *buf, size_t count)
450{
451 unsigned long x;
452 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
453 if (sscanf(buf, "%ld\n", &x) == 1)
454 battery->alarm = x/1000;
455 if (acpi_battery_present(battery))
456 acpi_battery_set_alarm(battery);
457 return count;
458}
459
460static struct device_attribute alarm_attr = {
Parag Warudkar01e8ef12008-10-18 20:28:50 -0700461 .attr = {.name = "alarm", .mode = 0644},
Andrey Borzenkov508df922007-10-28 12:50:09 +0300462 .show = acpi_battery_alarm_show,
463 .store = acpi_battery_alarm_store,
464};
465
466static int sysfs_add_battery(struct acpi_battery *battery)
467{
468 int result;
469
Andrey Borzenkov508df922007-10-28 12:50:09 +0300470 if (battery->power_unit) {
471 battery->bat.properties = charge_battery_props;
472 battery->bat.num_properties =
473 ARRAY_SIZE(charge_battery_props);
474 } else {
475 battery->bat.properties = energy_battery_props;
476 battery->bat.num_properties =
477 ARRAY_SIZE(energy_battery_props);
478 }
479
480 battery->bat.name = acpi_device_bid(battery->device);
481 battery->bat.type = POWER_SUPPLY_TYPE_BATTERY;
482 battery->bat.get_property = acpi_battery_get_property;
483
484 result = power_supply_register(&battery->device->dev, &battery->bat);
485 if (result)
486 return result;
487 return device_create_file(battery->bat.dev, &alarm_attr);
488}
489
490static void sysfs_remove_battery(struct acpi_battery *battery)
491{
492 if (!battery->bat.dev)
493 return;
494 device_remove_file(battery->bat.dev, &alarm_attr);
495 power_supply_unregister(&battery->bat);
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300496 battery->bat.dev = NULL;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300497}
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500498#endif
Andrey Borzenkov508df922007-10-28 12:50:09 +0300499
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400500static int acpi_battery_update(struct acpi_battery *battery)
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500501{
Alexey Starikovskiy50b17852008-12-23 02:44:54 +0300502 int result, old_present = acpi_battery_present(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500503 result = acpi_battery_get_status(battery);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300504 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300505 return result;
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500506#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300507 if (!acpi_battery_present(battery)) {
508 sysfs_remove_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500509 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300510 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300511 }
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500512#endif
Alexey Starikovskiy50b17852008-12-23 02:44:54 +0300513 if (!battery->update_time ||
514 old_present != acpi_battery_present(battery)) {
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500515 result = acpi_battery_get_info(battery);
516 if (result)
517 return result;
518 acpi_battery_init_alarm(battery);
519 }
520#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300521 if (!battery->bat.dev)
522 sysfs_add_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500523#endif
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400524 return acpi_battery_get_state(battery);
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500525}
526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527/* --------------------------------------------------------------------------
528 FS Interface (/proc)
529 -------------------------------------------------------------------------- */
530
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300531#ifdef CONFIG_ACPI_PROCFS_POWER
Len Brown4be44fc2005-08-05 00:44:28 -0400532static struct proc_dir_entry *acpi_battery_dir;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300533
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400534static int acpi_battery_print_info(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200536 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300538 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 goto end;
540
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400541 seq_printf(seq, "present: %s\n",
542 acpi_battery_present(battery)?"yes":"no");
543 if (!acpi_battery_present(battery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 goto end;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400545 if (battery->design_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 seq_printf(seq, "design capacity: unknown\n");
547 else
548 seq_printf(seq, "design capacity: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400549 battery->design_capacity,
550 acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400552 if (battery->full_charge_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 seq_printf(seq, "last full capacity: unknown\n");
554 else
555 seq_printf(seq, "last full capacity: %d %sh\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400556 battery->full_charge_capacity,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400557 acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400559 seq_printf(seq, "battery technology: %srechargeable\n",
560 (!battery->technology)?"non-":"");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400562 if (battery->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 seq_printf(seq, "design voltage: unknown\n");
564 else
565 seq_printf(seq, "design voltage: %d mV\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400566 battery->design_voltage);
Len Brown4be44fc2005-08-05 00:44:28 -0400567 seq_printf(seq, "design capacity warning: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400568 battery->design_capacity_warning,
569 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400570 seq_printf(seq, "design capacity low: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400571 battery->design_capacity_low,
572 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400573 seq_printf(seq, "capacity granularity 1: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400574 battery->capacity_granularity_1,
575 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400576 seq_printf(seq, "capacity granularity 2: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400577 battery->capacity_granularity_2,
578 acpi_battery_units(battery));
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400579 seq_printf(seq, "model number: %s\n", battery->model_number);
580 seq_printf(seq, "serial number: %s\n", battery->serial_number);
581 seq_printf(seq, "battery type: %s\n", battery->type);
582 seq_printf(seq, "OEM info: %s\n", battery->oem_info);
Len Brown4be44fc2005-08-05 00:44:28 -0400583 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300584 if (result)
585 seq_printf(seq, "ERROR: Unable to read battery info\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300586 return result;
587}
588
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400589static int acpi_battery_print_state(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200591 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300593 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 goto end;
595
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400596 seq_printf(seq, "present: %s\n",
597 acpi_battery_present(battery)?"yes":"no");
598 if (!acpi_battery_present(battery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400601 seq_printf(seq, "capacity state: %s\n",
602 (battery->state & 0x04)?"critical":"ok");
603 if ((battery->state & 0x01) && (battery->state & 0x02))
Len Brown4be44fc2005-08-05 00:44:28 -0400604 seq_printf(seq,
605 "charging state: charging/discharging\n");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400606 else if (battery->state & 0x01)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 seq_printf(seq, "charging state: discharging\n");
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400608 else if (battery->state & 0x02)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 seq_printf(seq, "charging state: charging\n");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400610 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 seq_printf(seq, "charging state: charged\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400613 if (battery->rate_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 seq_printf(seq, "present rate: unknown\n");
615 else
616 seq_printf(seq, "present rate: %d %s\n",
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400617 battery->rate_now, acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400619 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 seq_printf(seq, "remaining capacity: unknown\n");
621 else
622 seq_printf(seq, "remaining capacity: %d %sh\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400623 battery->capacity_now, acpi_battery_units(battery));
624 if (battery->voltage_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 seq_printf(seq, "present voltage: unknown\n");
626 else
627 seq_printf(seq, "present voltage: %d mV\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400628 battery->voltage_now);
Len Brown4be44fc2005-08-05 00:44:28 -0400629 end:
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400630 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300631 seq_printf(seq, "ERROR: Unable to read battery state\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300632
633 return result;
634}
635
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400636static int acpi_battery_print_alarm(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200638 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300640 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 goto end;
642
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300643 if (!acpi_battery_present(battery)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 seq_printf(seq, "present: no\n");
645 goto end;
646 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 seq_printf(seq, "alarm: ");
648 if (!battery->alarm)
649 seq_printf(seq, "unsupported\n");
650 else
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400651 seq_printf(seq, "%u %sh\n", battery->alarm,
652 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400653 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300654 if (result)
655 seq_printf(seq, "ERROR: Unable to read battery alarm\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300656 return result;
657}
658
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400659static ssize_t acpi_battery_write_alarm(struct file *file,
660 const char __user * buffer,
661 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662{
Len Brown4be44fc2005-08-05 00:44:28 -0400663 int result = 0;
664 char alarm_string[12] = { '\0' };
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200665 struct seq_file *m = file->private_data;
666 struct acpi_battery *battery = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 if (!battery || (count > sizeof(alarm_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -0400669 return -EINVAL;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300670 if (!acpi_battery_present(battery)) {
671 result = -ENODEV;
672 goto end;
673 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300674 if (copy_from_user(alarm_string, buffer, count)) {
675 result = -EFAULT;
676 goto end;
677 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 alarm_string[count] = '\0';
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400679 battery->alarm = simple_strtol(alarm_string, NULL, 0);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400680 result = acpi_battery_set_alarm(battery);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300681 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300682 if (!result)
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400683 return count;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300684 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685}
686
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400687typedef int(*print_func)(struct seq_file *seq, int result);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400688
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400689static print_func acpi_print_funcs[ACPI_BATTERY_NUMFILES] = {
690 acpi_battery_print_info,
691 acpi_battery_print_state,
692 acpi_battery_print_alarm,
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400693};
694
695static int acpi_battery_read(int fid, struct seq_file *seq)
696{
697 struct acpi_battery *battery = seq->private;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400698 int result = acpi_battery_update(battery);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400699 return acpi_print_funcs[fid](seq, result);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400700}
701
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400702#define DECLARE_FILE_FUNCTIONS(_name) \
703static int acpi_battery_read_##_name(struct seq_file *seq, void *offset) \
704{ \
705 return acpi_battery_read(_name##_tag, seq); \
706} \
707static int acpi_battery_##_name##_open_fs(struct inode *inode, struct file *file) \
708{ \
709 return single_open(file, acpi_battery_read_##_name, PDE(inode)->data); \
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400710}
711
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400712DECLARE_FILE_FUNCTIONS(info);
713DECLARE_FILE_FUNCTIONS(state);
714DECLARE_FILE_FUNCTIONS(alarm);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400715
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400716#undef DECLARE_FILE_FUNCTIONS
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400717
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400718#define FILE_DESCRIPTION_RO(_name) \
719 { \
720 .name = __stringify(_name), \
721 .mode = S_IRUGO, \
722 .ops = { \
723 .open = acpi_battery_##_name##_open_fs, \
724 .read = seq_read, \
725 .llseek = seq_lseek, \
726 .release = single_release, \
727 .owner = THIS_MODULE, \
728 }, \
729 }
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400730
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400731#define FILE_DESCRIPTION_RW(_name) \
732 { \
733 .name = __stringify(_name), \
734 .mode = S_IFREG | S_IRUGO | S_IWUSR, \
735 .ops = { \
736 .open = acpi_battery_##_name##_open_fs, \
737 .read = seq_read, \
738 .llseek = seq_lseek, \
739 .write = acpi_battery_write_##_name, \
740 .release = single_release, \
741 .owner = THIS_MODULE, \
742 }, \
743 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400745static struct battery_file {
746 struct file_operations ops;
747 mode_t mode;
Jan Engelhardt070d8eb2009-01-12 00:07:55 +0100748 const char *name;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400749} acpi_battery_file[] = {
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400750 FILE_DESCRIPTION_RO(info),
751 FILE_DESCRIPTION_RO(state),
752 FILE_DESCRIPTION_RW(alarm),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753};
754
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400755#undef FILE_DESCRIPTION_RO
756#undef FILE_DESCRIPTION_RW
757
Len Brown4be44fc2005-08-05 00:44:28 -0400758static int acpi_battery_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759{
Len Brown4be44fc2005-08-05 00:44:28 -0400760 struct proc_dir_entry *entry = NULL;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400761 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 if (!acpi_device_dir(device)) {
764 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400765 acpi_battery_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400767 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 }
769
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400770 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i) {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700771 entry = proc_create_data(acpi_battery_file[i].name,
772 acpi_battery_file[i].mode,
773 acpi_device_dir(device),
774 &acpi_battery_file[i].ops,
775 acpi_driver_data(device));
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400776 if (!entry)
777 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400779 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780}
781
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400782static void acpi_battery_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783{
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400784 int i;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400785 if (!acpi_device_dir(device))
786 return;
787 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i)
788 remove_proc_entry(acpi_battery_file[i].name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400791 remove_proc_entry(acpi_device_bid(device), acpi_battery_dir);
792 acpi_device_dir(device) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793}
794
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400795#endif
Alexey Starikovskiy3e58ea02007-09-26 19:43:11 +0400796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797/* --------------------------------------------------------------------------
798 Driver Interface
799 -------------------------------------------------------------------------- */
800
Bjorn Helgaasd9406692009-04-30 09:35:47 -0600801static void acpi_battery_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802{
Bjorn Helgaasd9406692009-04-30 09:35:47 -0600803 struct acpi_battery *battery = acpi_driver_data(device);
804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -0400806 return;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400807 acpi_battery_update(battery);
808 acpi_bus_generate_proc_event(device, event,
809 acpi_battery_present(battery));
810 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100811 dev_name(&device->dev), event,
Vladimir Lebedev9ea7d572007-02-20 15:48:06 +0300812 acpi_battery_present(battery));
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500813#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300814 /* acpi_batter_update could remove power_supply object */
815 if (battery->bat.dev)
816 kobject_uevent(&battery->bat.dev->kobj, KOBJ_CHANGE);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500817#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818}
819
Len Brown4be44fc2005-08-05 00:44:28 -0400820static int acpi_battery_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821{
Len Brown4be44fc2005-08-05 00:44:28 -0400822 int result = 0;
Len Brown4be44fc2005-08-05 00:44:28 -0400823 struct acpi_battery *battery = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400825 return -EINVAL;
Burman Yan36bcbec2006-12-19 12:56:11 -0800826 battery = kzalloc(sizeof(struct acpi_battery), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -0400828 return -ENOMEM;
Patrick Mochel145def82006-05-19 16:54:39 -0400829 battery->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 strcpy(acpi_device_name(device), ACPI_BATTERY_DEVICE_NAME);
831 strcpy(acpi_device_class(device), ACPI_BATTERY_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700832 device->driver_data = battery;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400833 mutex_init(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400834 acpi_battery_update(battery);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300835#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 result = acpi_battery_add_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400837#endif
Len Brown586caae2009-06-18 00:38:27 -0400838 if (!result) {
839 printk(KERN_INFO PREFIX "%s Slot [%s] (battery %s)\n",
840 ACPI_BATTERY_DEVICE_NAME, acpi_device_bid(device),
841 device->status.battery_present ? "present" : "absent");
842 } else {
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300843#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 acpi_battery_remove_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400845#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 kfree(battery);
847 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400848 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849}
850
Len Brown4be44fc2005-08-05 00:44:28 -0400851static int acpi_battery_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
Len Brown4be44fc2005-08-05 00:44:28 -0400853 struct acpi_battery *battery = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400856 return -EINVAL;
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200857 battery = acpi_driver_data(device);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300858#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 acpi_battery_remove_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400860#endif
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500861#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300862 sysfs_remove_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500863#endif
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400864 mutex_destroy(&battery->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 kfree(battery);
Patrick Mocheld550d982006-06-27 00:41:40 -0400866 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867}
868
Jiri Kosina34c44152006-10-10 14:20:41 -0700869/* this is needed to learn about changes made in suspended state */
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800870static int acpi_battery_resume(struct acpi_device *device)
Jiri Kosina34c44152006-10-10 14:20:41 -0700871{
872 struct acpi_battery *battery;
Jiri Kosina34c44152006-10-10 14:20:41 -0700873 if (!device)
874 return -EINVAL;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400875 battery = acpi_driver_data(device);
876 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300877 acpi_battery_update(battery);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300878 return 0;
Jiri Kosina34c44152006-10-10 14:20:41 -0700879}
880
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400881static struct acpi_driver acpi_battery_driver = {
882 .name = "battery",
883 .class = ACPI_BATTERY_CLASS,
884 .ids = battery_device_ids,
Bjorn Helgaasd9406692009-04-30 09:35:47 -0600885 .flags = ACPI_DRIVER_ALL_NOTIFY_EVENTS,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400886 .ops = {
887 .add = acpi_battery_add,
888 .resume = acpi_battery_resume,
889 .remove = acpi_battery_remove,
Bjorn Helgaasd9406692009-04-30 09:35:47 -0600890 .notify = acpi_battery_notify,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400891 },
892};
893
Linus Torvaldsb0cbc862009-04-11 12:45:20 -0700894static void __init acpi_battery_init_async(void *unused, async_cookie_t cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895{
Pavel Machek4d8316d2006-08-14 22:37:22 -0700896 if (acpi_disabled)
Arjan van de Ven0f66af52009-01-10 14:19:05 -0500897 return;
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300898#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400899 acpi_battery_dir = acpi_lock_battery_dir();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 if (!acpi_battery_dir)
Arjan van de Ven0f66af52009-01-10 14:19:05 -0500901 return;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400902#endif
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400903 if (acpi_bus_register_driver(&acpi_battery_driver) < 0) {
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300904#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400905 acpi_unlock_battery_dir(acpi_battery_dir);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400906#endif
Arjan van de Ven0f66af52009-01-10 14:19:05 -0500907 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 }
Arjan van de Ven0f66af52009-01-10 14:19:05 -0500909 return;
910}
911
912static int __init acpi_battery_init(void)
913{
914 async_schedule(acpi_battery_init_async, NULL);
Patrick Mocheld550d982006-06-27 00:41:40 -0400915 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916}
917
Len Brown4be44fc2005-08-05 00:44:28 -0400918static void __exit acpi_battery_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 acpi_bus_unregister_driver(&acpi_battery_driver);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300921#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400922 acpi_unlock_battery_dir(acpi_battery_dir);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400923#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924}
925
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926module_init(acpi_battery_init);
927module_exit(acpi_battery_exit);