blob: 4fb3c12ac1d89394765b3f16e97cf82a14083134 [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>
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040033
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +030034#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/proc_fs.h>
36#include <linux/seq_file.h>
37#include <asm/uaccess.h>
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040038#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40#include <acpi/acpi_bus.h>
41#include <acpi/acpi_drivers.h>
42
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -050043#ifdef CONFIG_ACPI_SYSFS_POWER
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040044#include <linux/power_supply.h>
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -050045#endif
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040046
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#define ACPI_BATTERY_VALUE_UNKNOWN 0xFFFFFFFF
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define ACPI_BATTERY_CLASS "battery"
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#define ACPI_BATTERY_DEVICE_NAME "Battery"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define ACPI_BATTERY_NOTIFY_STATUS 0x80
52#define ACPI_BATTERY_NOTIFY_INFO 0x81
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#define _COMPONENT ACPI_BATTERY_COMPONENT
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +030055
Len Brownf52fd662007-02-12 22:42:12 -050056ACPI_MODULE_NAME("battery");
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Len Brownf52fd662007-02-12 22:42:12 -050058MODULE_AUTHOR("Paul Diefenbaugh");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +040059MODULE_AUTHOR("Alexey Starikovskiy <astarikovskiy@suse.de>");
Len Brown7cda93e2007-02-12 23:50:02 -050060MODULE_DESCRIPTION("ACPI Battery Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070061MODULE_LICENSE("GPL");
62
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +040063static unsigned int cache_time = 1000;
64module_param(cache_time, uint, 0644);
65MODULE_PARM_DESC(cache_time, "cache time in milliseconds");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +030066
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +030067#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -040068extern struct proc_dir_entry *acpi_lock_battery_dir(void);
69extern void *acpi_unlock_battery_dir(struct proc_dir_entry *acpi_battery_dir);
70
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040071enum acpi_battery_files {
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +040072 info_tag = 0,
73 state_tag,
74 alarm_tag,
Alexey Starikovskiy78490d82007-05-11 13:18:55 -040075 ACPI_BATTERY_NUMFILES,
76};
77
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040078#endif
79
80static const struct acpi_device_id battery_device_ids[] = {
81 {"PNP0C0A", 0},
82 {"", 0},
83};
84
85MODULE_DEVICE_TABLE(acpi, battery_device_ids);
86
87
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040088struct acpi_battery {
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040089 struct mutex lock;
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -050090#ifdef CONFIG_ACPI_SYSFS_POWER
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040091 struct power_supply bat;
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -050092#endif
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +040093 struct acpi_device *device;
94 unsigned long update_time;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040095 int current_now;
96 int capacity_now;
97 int voltage_now;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040098 int design_capacity;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040099 int full_charge_capacity;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400100 int technology;
101 int design_voltage;
102 int design_capacity_warning;
103 int design_capacity_low;
104 int capacity_granularity_1;
105 int capacity_granularity_2;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400106 int alarm;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400107 char model_number[32];
108 char serial_number[32];
109 char type[32];
110 char oem_info[32];
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400111 int state;
112 int power_unit;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300113 u8 alarm_present;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114};
115
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400116#define to_acpi_battery(x) container_of(x, struct acpi_battery, bat);
117
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400118inline int acpi_battery_present(struct acpi_battery *battery)
119{
120 return battery->device->status.battery_present;
121}
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400122
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500123#ifdef CONFIG_ACPI_SYSFS_POWER
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400124static int acpi_battery_technology(struct acpi_battery *battery)
125{
126 if (!strcasecmp("NiCd", battery->type))
127 return POWER_SUPPLY_TECHNOLOGY_NiCd;
128 if (!strcasecmp("NiMH", battery->type))
129 return POWER_SUPPLY_TECHNOLOGY_NiMH;
130 if (!strcasecmp("LION", battery->type))
131 return POWER_SUPPLY_TECHNOLOGY_LION;
Andrey Borzenkovad40e682007-11-10 20:02:49 +0300132 if (!strncasecmp("LI-ION", battery->type, 6))
Alexey Starikovskiy0bde7ee2007-10-28 15:33:10 +0300133 return POWER_SUPPLY_TECHNOLOGY_LION;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400134 if (!strcasecmp("LiP", battery->type))
135 return POWER_SUPPLY_TECHNOLOGY_LIPO;
136 return POWER_SUPPLY_TECHNOLOGY_UNKNOWN;
137}
138
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300139static int acpi_battery_get_state(struct acpi_battery *battery);
Alexey Starikovskiyb19073a2007-10-25 17:10:47 -0400140
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400141static int acpi_battery_get_property(struct power_supply *psy,
142 enum power_supply_property psp,
143 union power_supply_propval *val)
144{
145 struct acpi_battery *battery = to_acpi_battery(psy);
146
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300147 if (acpi_battery_present(battery)) {
148 /* run battery update only if it is present */
149 acpi_battery_get_state(battery);
150 } else if (psp != POWER_SUPPLY_PROP_PRESENT)
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400151 return -ENODEV;
152 switch (psp) {
153 case POWER_SUPPLY_PROP_STATUS:
154 if (battery->state & 0x01)
155 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
156 else if (battery->state & 0x02)
157 val->intval = POWER_SUPPLY_STATUS_CHARGING;
158 else if (battery->state == 0)
159 val->intval = POWER_SUPPLY_STATUS_FULL;
Roland Dreier4c41d3a2007-11-07 15:09:09 -0800160 else
161 val->intval = POWER_SUPPLY_STATUS_UNKNOWN;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400162 break;
163 case POWER_SUPPLY_PROP_PRESENT:
164 val->intval = acpi_battery_present(battery);
165 break;
166 case POWER_SUPPLY_PROP_TECHNOLOGY:
167 val->intval = acpi_battery_technology(battery);
168 break;
169 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
170 val->intval = battery->design_voltage * 1000;
171 break;
172 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
173 val->intval = battery->voltage_now * 1000;
174 break;
175 case POWER_SUPPLY_PROP_CURRENT_NOW:
Rafael J. Wysockiaaad0772008-12-05 01:07:51 +0100176 val->intval = battery->current_now;
177 if (battery->power_unit) {
178 val->intval *= 1000;
179 } else {
180 /*
181 * If power units are mW, convert to mA by dividing by
182 * current voltage.
183 */
184 if (battery->voltage_now)
Alexey Starikovskiy558073d2008-11-21 22:41:01 +0800185 val->intval /= battery->voltage_now;
Rafael J. Wysockiaaad0772008-12-05 01:07:51 +0100186 else
Alexey Starikovskiy558073d2008-11-21 22:41:01 +0800187 val->intval = -1;
188 }
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400189 break;
190 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
191 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
192 val->intval = battery->design_capacity * 1000;
193 break;
194 case POWER_SUPPLY_PROP_CHARGE_FULL:
195 case POWER_SUPPLY_PROP_ENERGY_FULL:
196 val->intval = battery->full_charge_capacity * 1000;
197 break;
198 case POWER_SUPPLY_PROP_CHARGE_NOW:
199 case POWER_SUPPLY_PROP_ENERGY_NOW:
200 val->intval = battery->capacity_now * 1000;
201 break;
202 case POWER_SUPPLY_PROP_MODEL_NAME:
203 val->strval = battery->model_number;
204 break;
205 case POWER_SUPPLY_PROP_MANUFACTURER:
206 val->strval = battery->oem_info;
207 break;
maximilian attems7c2670b2008-01-22 18:46:50 +0100208 case POWER_SUPPLY_PROP_SERIAL_NUMBER:
209 val->strval = battery->serial_number;
210 break;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400211 default:
212 return -EINVAL;
213 }
214 return 0;
215}
216
217static enum power_supply_property charge_battery_props[] = {
218 POWER_SUPPLY_PROP_STATUS,
219 POWER_SUPPLY_PROP_PRESENT,
220 POWER_SUPPLY_PROP_TECHNOLOGY,
221 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
222 POWER_SUPPLY_PROP_VOLTAGE_NOW,
223 POWER_SUPPLY_PROP_CURRENT_NOW,
224 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
225 POWER_SUPPLY_PROP_CHARGE_FULL,
226 POWER_SUPPLY_PROP_CHARGE_NOW,
227 POWER_SUPPLY_PROP_MODEL_NAME,
228 POWER_SUPPLY_PROP_MANUFACTURER,
maximilian attems7c2670b2008-01-22 18:46:50 +0100229 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400230};
231
232static enum power_supply_property energy_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_ENERGY_FULL_DESIGN,
240 POWER_SUPPLY_PROP_ENERGY_FULL,
241 POWER_SUPPLY_PROP_ENERGY_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};
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500246#endif
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400247
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300248#ifdef CONFIG_ACPI_PROCFS_POWER
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400249inline char *acpi_battery_units(struct acpi_battery *battery)
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400250{
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400251 return (battery->power_unit)?"mA":"mW";
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400252}
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400253#endif
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255/* --------------------------------------------------------------------------
256 Battery Management
257 -------------------------------------------------------------------------- */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400258struct acpi_offsets {
259 size_t offset; /* offset inside struct acpi_sbs_battery */
260 u8 mode; /* int or string? */
261};
262
263static struct acpi_offsets state_offsets[] = {
264 {offsetof(struct acpi_battery, state), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400265 {offsetof(struct acpi_battery, current_now), 0},
266 {offsetof(struct acpi_battery, capacity_now), 0},
267 {offsetof(struct acpi_battery, voltage_now), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400268};
269
270static struct acpi_offsets info_offsets[] = {
271 {offsetof(struct acpi_battery, power_unit), 0},
272 {offsetof(struct acpi_battery, design_capacity), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400273 {offsetof(struct acpi_battery, full_charge_capacity), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400274 {offsetof(struct acpi_battery, technology), 0},
275 {offsetof(struct acpi_battery, design_voltage), 0},
276 {offsetof(struct acpi_battery, design_capacity_warning), 0},
277 {offsetof(struct acpi_battery, design_capacity_low), 0},
278 {offsetof(struct acpi_battery, capacity_granularity_1), 0},
279 {offsetof(struct acpi_battery, capacity_granularity_2), 0},
280 {offsetof(struct acpi_battery, model_number), 1},
281 {offsetof(struct acpi_battery, serial_number), 1},
282 {offsetof(struct acpi_battery, type), 1},
283 {offsetof(struct acpi_battery, oem_info), 1},
284};
285
286static int extract_package(struct acpi_battery *battery,
287 union acpi_object *package,
288 struct acpi_offsets *offsets, int num)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300289{
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300290 int i;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400291 union acpi_object *element;
292 if (package->type != ACPI_TYPE_PACKAGE)
293 return -EFAULT;
294 for (i = 0; i < num; ++i) {
295 if (package->package.count <= i)
296 return -EFAULT;
297 element = &package->package.elements[i];
298 if (offsets[i].mode) {
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300299 u8 *ptr = (u8 *)battery + offsets[i].offset;
300 if (element->type == ACPI_TYPE_STRING ||
301 element->type == ACPI_TYPE_BUFFER)
302 strncpy(ptr, element->string.pointer, 32);
303 else if (element->type == ACPI_TYPE_INTEGER) {
304 strncpy(ptr, (u8 *)&element->integer.value,
305 sizeof(acpi_integer));
306 ptr[sizeof(acpi_integer)] = 0;
Alexey Starikovskiyb8a1bdb2008-03-17 22:37:42 -0400307 } else
308 *ptr = 0; /* don't have value */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400309 } else {
Alexey Starikovskiyb8a1bdb2008-03-17 22:37:42 -0400310 int *x = (int *)((u8 *)battery + offsets[i].offset);
311 *x = (element->type == ACPI_TYPE_INTEGER) ?
312 element->integer.value : -1;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300313 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300314 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300315 return 0;
316}
317
318static int acpi_battery_get_status(struct acpi_battery *battery)
319{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400320 if (acpi_bus_get_status(battery->device)) {
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300321 ACPI_EXCEPTION((AE_INFO, AE_ERROR, "Evaluating _STA"));
322 return -ENODEV;
323 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400324 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300325}
326
327static int acpi_battery_get_info(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400329 int result = -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -0400330 acpi_status status = 0;
331 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300333 if (!acpi_battery_present(battery))
334 return 0;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400335 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400336 status = acpi_evaluate_object(battery->device->handle, "_BIF",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400337 NULL, &buffer);
338 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400341 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BIF"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400342 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400344
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400345 result = extract_package(battery, buffer.pointer,
346 info_offsets, ARRAY_SIZE(info_offsets));
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400347 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -0400348 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349}
350
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300351static int acpi_battery_get_state(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
Len Brown4be44fc2005-08-05 00:44:28 -0400353 int result = 0;
354 acpi_status status = 0;
355 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300357 if (!acpi_battery_present(battery))
358 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400360 if (battery->update_time &&
361 time_before(jiffies, battery->update_time +
362 msecs_to_jiffies(cache_time)))
363 return 0;
364
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400365 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400366 status = acpi_evaluate_object(battery->device->handle, "_BST",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400367 NULL, &buffer);
368 mutex_unlock(&battery->lock);
Len Brown5b31d892007-08-15 00:19:26 -0400369
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400371 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BST"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400372 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400374
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400375 result = extract_package(battery, buffer.pointer,
376 state_offsets, ARRAY_SIZE(state_offsets));
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400377 battery->update_time = jiffies;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400378 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -0400379 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380}
381
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400382static int acpi_battery_set_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
Len Brown4be44fc2005-08-05 00:44:28 -0400384 acpi_status status = 0;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400385 union acpi_object arg0 = { .type = ACPI_TYPE_INTEGER };
Len Brown4be44fc2005-08-05 00:44:28 -0400386 struct acpi_object_list arg_list = { 1, &arg0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400388 if (!acpi_battery_present(battery)|| !battery->alarm_present)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300389 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400391 arg0.integer.value = battery->alarm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400393 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400394 status = acpi_evaluate_object(battery->device->handle, "_BTP",
395 &arg_list, NULL);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400396 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400399 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400401 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Alarm set to %d\n", battery->alarm));
Patrick Mocheld550d982006-06-27 00:41:40 -0400402 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403}
404
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300405static int acpi_battery_init_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
Len Brown4be44fc2005-08-05 00:44:28 -0400407 acpi_status status = AE_OK;
408 acpi_handle handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300410 /* See if alarms are supported, and if so, set default */
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400411 status = acpi_get_handle(battery->device->handle, "_BTP", &handle);
412 if (ACPI_FAILURE(status)) {
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400413 battery->alarm_present = 0;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400414 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 }
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400416 battery->alarm_present = 1;
417 if (!battery->alarm)
418 battery->alarm = battery->design_capacity_warning;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400419 return acpi_battery_set_alarm(battery);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420}
421
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500422#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300423static ssize_t acpi_battery_alarm_show(struct device *dev,
424 struct device_attribute *attr,
425 char *buf)
426{
427 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
428 return sprintf(buf, "%d\n", battery->alarm * 1000);
429}
430
431static ssize_t acpi_battery_alarm_store(struct device *dev,
432 struct device_attribute *attr,
433 const char *buf, size_t count)
434{
435 unsigned long x;
436 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
437 if (sscanf(buf, "%ld\n", &x) == 1)
438 battery->alarm = x/1000;
439 if (acpi_battery_present(battery))
440 acpi_battery_set_alarm(battery);
441 return count;
442}
443
444static struct device_attribute alarm_attr = {
Parag Warudkar01e8ef12008-10-18 20:28:50 -0700445 .attr = {.name = "alarm", .mode = 0644},
Andrey Borzenkov508df922007-10-28 12:50:09 +0300446 .show = acpi_battery_alarm_show,
447 .store = acpi_battery_alarm_store,
448};
449
450static int sysfs_add_battery(struct acpi_battery *battery)
451{
452 int result;
453
Andrey Borzenkov508df922007-10-28 12:50:09 +0300454 if (battery->power_unit) {
455 battery->bat.properties = charge_battery_props;
456 battery->bat.num_properties =
457 ARRAY_SIZE(charge_battery_props);
458 } else {
459 battery->bat.properties = energy_battery_props;
460 battery->bat.num_properties =
461 ARRAY_SIZE(energy_battery_props);
462 }
463
464 battery->bat.name = acpi_device_bid(battery->device);
465 battery->bat.type = POWER_SUPPLY_TYPE_BATTERY;
466 battery->bat.get_property = acpi_battery_get_property;
467
468 result = power_supply_register(&battery->device->dev, &battery->bat);
469 if (result)
470 return result;
471 return device_create_file(battery->bat.dev, &alarm_attr);
472}
473
474static void sysfs_remove_battery(struct acpi_battery *battery)
475{
476 if (!battery->bat.dev)
477 return;
478 device_remove_file(battery->bat.dev, &alarm_attr);
479 power_supply_unregister(&battery->bat);
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300480 battery->bat.dev = NULL;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300481}
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500482#endif
Andrey Borzenkov508df922007-10-28 12:50:09 +0300483
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400484static int acpi_battery_update(struct acpi_battery *battery)
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500485{
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500486 int result;
487 result = acpi_battery_get_status(battery);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300488 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300489 return result;
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500490#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300491 if (!acpi_battery_present(battery)) {
492 sysfs_remove_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500493 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300494 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300495 }
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500496#endif
497 if (!battery->update_time) {
498 result = acpi_battery_get_info(battery);
499 if (result)
500 return result;
501 acpi_battery_init_alarm(battery);
502 }
503#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300504 if (!battery->bat.dev)
505 sysfs_add_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500506#endif
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400507 return acpi_battery_get_state(battery);
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500508}
509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510/* --------------------------------------------------------------------------
511 FS Interface (/proc)
512 -------------------------------------------------------------------------- */
513
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300514#ifdef CONFIG_ACPI_PROCFS_POWER
Len Brown4be44fc2005-08-05 00:44:28 -0400515static struct proc_dir_entry *acpi_battery_dir;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300516
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400517static int acpi_battery_print_info(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200519 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300521 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 goto end;
523
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400524 seq_printf(seq, "present: %s\n",
525 acpi_battery_present(battery)?"yes":"no");
526 if (!acpi_battery_present(battery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 goto end;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400528 if (battery->design_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 seq_printf(seq, "design capacity: unknown\n");
530 else
531 seq_printf(seq, "design capacity: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400532 battery->design_capacity,
533 acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400535 if (battery->full_charge_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 seq_printf(seq, "last full capacity: unknown\n");
537 else
538 seq_printf(seq, "last full capacity: %d %sh\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400539 battery->full_charge_capacity,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400540 acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400542 seq_printf(seq, "battery technology: %srechargeable\n",
543 (!battery->technology)?"non-":"");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400545 if (battery->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 seq_printf(seq, "design voltage: unknown\n");
547 else
548 seq_printf(seq, "design voltage: %d mV\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400549 battery->design_voltage);
Len Brown4be44fc2005-08-05 00:44:28 -0400550 seq_printf(seq, "design capacity warning: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400551 battery->design_capacity_warning,
552 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400553 seq_printf(seq, "design capacity low: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400554 battery->design_capacity_low,
555 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400556 seq_printf(seq, "capacity granularity 1: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400557 battery->capacity_granularity_1,
558 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400559 seq_printf(seq, "capacity granularity 2: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400560 battery->capacity_granularity_2,
561 acpi_battery_units(battery));
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400562 seq_printf(seq, "model number: %s\n", battery->model_number);
563 seq_printf(seq, "serial number: %s\n", battery->serial_number);
564 seq_printf(seq, "battery type: %s\n", battery->type);
565 seq_printf(seq, "OEM info: %s\n", battery->oem_info);
Len Brown4be44fc2005-08-05 00:44:28 -0400566 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300567 if (result)
568 seq_printf(seq, "ERROR: Unable to read battery info\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300569 return result;
570}
571
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400572static int acpi_battery_print_state(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200574 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300576 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 goto end;
578
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400579 seq_printf(seq, "present: %s\n",
580 acpi_battery_present(battery)?"yes":"no");
581 if (!acpi_battery_present(battery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400584 seq_printf(seq, "capacity state: %s\n",
585 (battery->state & 0x04)?"critical":"ok");
586 if ((battery->state & 0x01) && (battery->state & 0x02))
Len Brown4be44fc2005-08-05 00:44:28 -0400587 seq_printf(seq,
588 "charging state: charging/discharging\n");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400589 else if (battery->state & 0x01)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 seq_printf(seq, "charging state: discharging\n");
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400591 else if (battery->state & 0x02)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 seq_printf(seq, "charging state: charging\n");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400593 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 seq_printf(seq, "charging state: charged\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400596 if (battery->current_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 seq_printf(seq, "present rate: unknown\n");
598 else
599 seq_printf(seq, "present rate: %d %s\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400600 battery->current_now, acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400602 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 seq_printf(seq, "remaining capacity: unknown\n");
604 else
605 seq_printf(seq, "remaining capacity: %d %sh\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400606 battery->capacity_now, acpi_battery_units(battery));
607 if (battery->voltage_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 seq_printf(seq, "present voltage: unknown\n");
609 else
610 seq_printf(seq, "present voltage: %d mV\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400611 battery->voltage_now);
Len Brown4be44fc2005-08-05 00:44:28 -0400612 end:
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400613 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300614 seq_printf(seq, "ERROR: Unable to read battery state\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300615
616 return result;
617}
618
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400619static int acpi_battery_print_alarm(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200621 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300623 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 goto end;
625
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300626 if (!acpi_battery_present(battery)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 seq_printf(seq, "present: no\n");
628 goto end;
629 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 seq_printf(seq, "alarm: ");
631 if (!battery->alarm)
632 seq_printf(seq, "unsupported\n");
633 else
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400634 seq_printf(seq, "%u %sh\n", battery->alarm,
635 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400636 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300637 if (result)
638 seq_printf(seq, "ERROR: Unable to read battery alarm\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300639 return result;
640}
641
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400642static ssize_t acpi_battery_write_alarm(struct file *file,
643 const char __user * buffer,
644 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645{
Len Brown4be44fc2005-08-05 00:44:28 -0400646 int result = 0;
647 char alarm_string[12] = { '\0' };
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200648 struct seq_file *m = file->private_data;
649 struct acpi_battery *battery = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 if (!battery || (count > sizeof(alarm_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -0400652 return -EINVAL;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300653 if (!acpi_battery_present(battery)) {
654 result = -ENODEV;
655 goto end;
656 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300657 if (copy_from_user(alarm_string, buffer, count)) {
658 result = -EFAULT;
659 goto end;
660 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 alarm_string[count] = '\0';
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400662 battery->alarm = simple_strtol(alarm_string, NULL, 0);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400663 result = acpi_battery_set_alarm(battery);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300664 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300665 if (!result)
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400666 return count;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300667 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668}
669
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400670typedef int(*print_func)(struct seq_file *seq, int result);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400671
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400672static print_func acpi_print_funcs[ACPI_BATTERY_NUMFILES] = {
673 acpi_battery_print_info,
674 acpi_battery_print_state,
675 acpi_battery_print_alarm,
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400676};
677
678static int acpi_battery_read(int fid, struct seq_file *seq)
679{
680 struct acpi_battery *battery = seq->private;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400681 int result = acpi_battery_update(battery);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400682 return acpi_print_funcs[fid](seq, result);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400683}
684
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400685#define DECLARE_FILE_FUNCTIONS(_name) \
686static int acpi_battery_read_##_name(struct seq_file *seq, void *offset) \
687{ \
688 return acpi_battery_read(_name##_tag, seq); \
689} \
690static int acpi_battery_##_name##_open_fs(struct inode *inode, struct file *file) \
691{ \
692 return single_open(file, acpi_battery_read_##_name, PDE(inode)->data); \
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400693}
694
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400695DECLARE_FILE_FUNCTIONS(info);
696DECLARE_FILE_FUNCTIONS(state);
697DECLARE_FILE_FUNCTIONS(alarm);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400698
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400699#undef DECLARE_FILE_FUNCTIONS
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400700
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400701#define FILE_DESCRIPTION_RO(_name) \
702 { \
703 .name = __stringify(_name), \
704 .mode = S_IRUGO, \
705 .ops = { \
706 .open = acpi_battery_##_name##_open_fs, \
707 .read = seq_read, \
708 .llseek = seq_lseek, \
709 .release = single_release, \
710 .owner = THIS_MODULE, \
711 }, \
712 }
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400713
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400714#define FILE_DESCRIPTION_RW(_name) \
715 { \
716 .name = __stringify(_name), \
717 .mode = S_IFREG | S_IRUGO | S_IWUSR, \
718 .ops = { \
719 .open = acpi_battery_##_name##_open_fs, \
720 .read = seq_read, \
721 .llseek = seq_lseek, \
722 .write = acpi_battery_write_##_name, \
723 .release = single_release, \
724 .owner = THIS_MODULE, \
725 }, \
726 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400728static struct battery_file {
729 struct file_operations ops;
730 mode_t mode;
731 char *name;
732} acpi_battery_file[] = {
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400733 FILE_DESCRIPTION_RO(info),
734 FILE_DESCRIPTION_RO(state),
735 FILE_DESCRIPTION_RW(alarm),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736};
737
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400738#undef FILE_DESCRIPTION_RO
739#undef FILE_DESCRIPTION_RW
740
Len Brown4be44fc2005-08-05 00:44:28 -0400741static int acpi_battery_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
Len Brown4be44fc2005-08-05 00:44:28 -0400743 struct proc_dir_entry *entry = NULL;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400744 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 if (!acpi_device_dir(device)) {
747 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400748 acpi_battery_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400750 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 acpi_device_dir(device)->owner = THIS_MODULE;
752 }
753
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400754 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i) {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700755 entry = proc_create_data(acpi_battery_file[i].name,
756 acpi_battery_file[i].mode,
757 acpi_device_dir(device),
758 &acpi_battery_file[i].ops,
759 acpi_driver_data(device));
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400760 if (!entry)
761 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400763 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764}
765
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400766static void acpi_battery_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767{
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400768 int i;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400769 if (!acpi_device_dir(device))
770 return;
771 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i)
772 remove_proc_entry(acpi_battery_file[i].name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400775 remove_proc_entry(acpi_device_bid(device), acpi_battery_dir);
776 acpi_device_dir(device) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777}
778
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400779#endif
Alexey Starikovskiy3e58ea02007-09-26 19:43:11 +0400780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781/* --------------------------------------------------------------------------
782 Driver Interface
783 -------------------------------------------------------------------------- */
784
Len Brown4be44fc2005-08-05 00:44:28 -0400785static void acpi_battery_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200787 struct acpi_battery *battery = data;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400788 struct acpi_device *device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -0400790 return;
Patrick Mochel145def82006-05-19 16:54:39 -0400791 device = battery->device;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400792 acpi_battery_update(battery);
793 acpi_bus_generate_proc_event(device, event,
794 acpi_battery_present(battery));
795 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100796 dev_name(&device->dev), event,
Vladimir Lebedev9ea7d572007-02-20 15:48:06 +0300797 acpi_battery_present(battery));
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500798#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300799 /* acpi_batter_update could remove power_supply object */
800 if (battery->bat.dev)
801 kobject_uevent(&battery->bat.dev->kobj, KOBJ_CHANGE);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500802#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803}
804
Len Brown4be44fc2005-08-05 00:44:28 -0400805static int acpi_battery_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
Len Brown4be44fc2005-08-05 00:44:28 -0400807 int result = 0;
808 acpi_status status = 0;
809 struct acpi_battery *battery = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400811 return -EINVAL;
Burman Yan36bcbec2006-12-19 12:56:11 -0800812 battery = kzalloc(sizeof(struct acpi_battery), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -0400814 return -ENOMEM;
Patrick Mochel145def82006-05-19 16:54:39 -0400815 battery->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 strcpy(acpi_device_name(device), ACPI_BATTERY_DEVICE_NAME);
817 strcpy(acpi_device_class(device), ACPI_BATTERY_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700818 device->driver_data = battery;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400819 mutex_init(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400820 acpi_battery_update(battery);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300821#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 result = acpi_battery_add_fs(device);
823 if (result)
824 goto end;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400825#endif
Patrick Mochel3b073ec2006-05-19 16:54:41 -0400826 status = acpi_install_notify_handler(device->handle,
Vladimir Lebedev9fdae722006-06-27 04:49:00 -0400827 ACPI_ALL_NOTIFY,
Len Brown4be44fc2005-08-05 00:44:28 -0400828 acpi_battery_notify, battery);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 if (ACPI_FAILURE(status)) {
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300830 ACPI_EXCEPTION((AE_INFO, status, "Installing notify handler"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 result = -ENODEV;
832 goto end;
833 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 printk(KERN_INFO PREFIX "%s Slot [%s] (battery %s)\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400835 ACPI_BATTERY_DEVICE_NAME, acpi_device_bid(device),
836 device->status.battery_present ? "present" : "absent");
Len Brown4be44fc2005-08-05 00:44:28 -0400837 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 if (result) {
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300839#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 acpi_battery_remove_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400841#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 kfree(battery);
843 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400844 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845}
846
Len Brown4be44fc2005-08-05 00:44:28 -0400847static int acpi_battery_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848{
Len Brown4be44fc2005-08-05 00:44:28 -0400849 acpi_status status = 0;
850 struct acpi_battery *battery = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400853 return -EINVAL;
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200854 battery = acpi_driver_data(device);
Patrick Mochel3b073ec2006-05-19 16:54:41 -0400855 status = acpi_remove_notify_handler(device->handle,
Vladimir Lebedev9fdae722006-06-27 04:49:00 -0400856 ACPI_ALL_NOTIFY,
Len Brown4be44fc2005-08-05 00:44:28 -0400857 acpi_battery_notify);
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,
885 .ops = {
886 .add = acpi_battery_add,
887 .resume = acpi_battery_resume,
888 .remove = acpi_battery_remove,
889 },
890};
891
Len Brown4be44fc2005-08-05 00:44:28 -0400892static int __init acpi_battery_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893{
Pavel Machek4d8316d2006-08-14 22:37:22 -0700894 if (acpi_disabled)
895 return -ENODEV;
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300896#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400897 acpi_battery_dir = acpi_lock_battery_dir();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 if (!acpi_battery_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -0400899 return -ENODEV;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400900#endif
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400901 if (acpi_bus_register_driver(&acpi_battery_driver) < 0) {
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300902#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400903 acpi_unlock_battery_dir(acpi_battery_dir);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400904#endif
Patrick Mocheld550d982006-06-27 00:41:40 -0400905 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400907 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908}
909
Len Brown4be44fc2005-08-05 00:44:28 -0400910static void __exit acpi_battery_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 acpi_bus_unregister_driver(&acpi_battery_driver);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300913#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400914 acpi_unlock_battery_dir(acpi_battery_dir);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400915#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916}
917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918module_init(acpi_battery_init);
919module_exit(acpi_battery_exit);