blob: 1423b0c0cd2eecc6e3c7b2f5c78746cee5fac4eb [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:
Linus Torvaldsf10a3a32008-12-05 13:30:03 -0800176 val->intval = battery->current_now * 1000;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400177 break;
178 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
179 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
180 val->intval = battery->design_capacity * 1000;
181 break;
182 case POWER_SUPPLY_PROP_CHARGE_FULL:
183 case POWER_SUPPLY_PROP_ENERGY_FULL:
184 val->intval = battery->full_charge_capacity * 1000;
185 break;
186 case POWER_SUPPLY_PROP_CHARGE_NOW:
187 case POWER_SUPPLY_PROP_ENERGY_NOW:
188 val->intval = battery->capacity_now * 1000;
189 break;
190 case POWER_SUPPLY_PROP_MODEL_NAME:
191 val->strval = battery->model_number;
192 break;
193 case POWER_SUPPLY_PROP_MANUFACTURER:
194 val->strval = battery->oem_info;
195 break;
maximilian attems7c2670b2008-01-22 18:46:50 +0100196 case POWER_SUPPLY_PROP_SERIAL_NUMBER:
197 val->strval = battery->serial_number;
198 break;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400199 default:
200 return -EINVAL;
201 }
202 return 0;
203}
204
205static enum power_supply_property charge_battery_props[] = {
206 POWER_SUPPLY_PROP_STATUS,
207 POWER_SUPPLY_PROP_PRESENT,
208 POWER_SUPPLY_PROP_TECHNOLOGY,
209 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
210 POWER_SUPPLY_PROP_VOLTAGE_NOW,
211 POWER_SUPPLY_PROP_CURRENT_NOW,
212 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
213 POWER_SUPPLY_PROP_CHARGE_FULL,
214 POWER_SUPPLY_PROP_CHARGE_NOW,
215 POWER_SUPPLY_PROP_MODEL_NAME,
216 POWER_SUPPLY_PROP_MANUFACTURER,
maximilian attems7c2670b2008-01-22 18:46:50 +0100217 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400218};
219
220static enum power_supply_property energy_battery_props[] = {
221 POWER_SUPPLY_PROP_STATUS,
222 POWER_SUPPLY_PROP_PRESENT,
223 POWER_SUPPLY_PROP_TECHNOLOGY,
224 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
225 POWER_SUPPLY_PROP_VOLTAGE_NOW,
226 POWER_SUPPLY_PROP_CURRENT_NOW,
227 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN,
228 POWER_SUPPLY_PROP_ENERGY_FULL,
229 POWER_SUPPLY_PROP_ENERGY_NOW,
230 POWER_SUPPLY_PROP_MODEL_NAME,
231 POWER_SUPPLY_PROP_MANUFACTURER,
maximilian attems7c2670b2008-01-22 18:46:50 +0100232 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400233};
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500234#endif
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400235
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300236#ifdef CONFIG_ACPI_PROCFS_POWER
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400237inline char *acpi_battery_units(struct acpi_battery *battery)
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400238{
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400239 return (battery->power_unit)?"mA":"mW";
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400240}
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400241#endif
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243/* --------------------------------------------------------------------------
244 Battery Management
245 -------------------------------------------------------------------------- */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400246struct acpi_offsets {
247 size_t offset; /* offset inside struct acpi_sbs_battery */
248 u8 mode; /* int or string? */
249};
250
251static struct acpi_offsets state_offsets[] = {
252 {offsetof(struct acpi_battery, state), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400253 {offsetof(struct acpi_battery, current_now), 0},
254 {offsetof(struct acpi_battery, capacity_now), 0},
255 {offsetof(struct acpi_battery, voltage_now), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400256};
257
258static struct acpi_offsets info_offsets[] = {
259 {offsetof(struct acpi_battery, power_unit), 0},
260 {offsetof(struct acpi_battery, design_capacity), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400261 {offsetof(struct acpi_battery, full_charge_capacity), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400262 {offsetof(struct acpi_battery, technology), 0},
263 {offsetof(struct acpi_battery, design_voltage), 0},
264 {offsetof(struct acpi_battery, design_capacity_warning), 0},
265 {offsetof(struct acpi_battery, design_capacity_low), 0},
266 {offsetof(struct acpi_battery, capacity_granularity_1), 0},
267 {offsetof(struct acpi_battery, capacity_granularity_2), 0},
268 {offsetof(struct acpi_battery, model_number), 1},
269 {offsetof(struct acpi_battery, serial_number), 1},
270 {offsetof(struct acpi_battery, type), 1},
271 {offsetof(struct acpi_battery, oem_info), 1},
272};
273
274static int extract_package(struct acpi_battery *battery,
275 union acpi_object *package,
276 struct acpi_offsets *offsets, int num)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300277{
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300278 int i;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400279 union acpi_object *element;
280 if (package->type != ACPI_TYPE_PACKAGE)
281 return -EFAULT;
282 for (i = 0; i < num; ++i) {
283 if (package->package.count <= i)
284 return -EFAULT;
285 element = &package->package.elements[i];
286 if (offsets[i].mode) {
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300287 u8 *ptr = (u8 *)battery + offsets[i].offset;
288 if (element->type == ACPI_TYPE_STRING ||
289 element->type == ACPI_TYPE_BUFFER)
290 strncpy(ptr, element->string.pointer, 32);
291 else if (element->type == ACPI_TYPE_INTEGER) {
292 strncpy(ptr, (u8 *)&element->integer.value,
293 sizeof(acpi_integer));
294 ptr[sizeof(acpi_integer)] = 0;
Alexey Starikovskiyb8a1bdb2008-03-17 22:37:42 -0400295 } else
296 *ptr = 0; /* don't have value */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400297 } else {
Alexey Starikovskiyb8a1bdb2008-03-17 22:37:42 -0400298 int *x = (int *)((u8 *)battery + offsets[i].offset);
299 *x = (element->type == ACPI_TYPE_INTEGER) ?
300 element->integer.value : -1;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300301 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300302 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300303 return 0;
304}
305
306static int acpi_battery_get_status(struct acpi_battery *battery)
307{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400308 if (acpi_bus_get_status(battery->device)) {
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300309 ACPI_EXCEPTION((AE_INFO, AE_ERROR, "Evaluating _STA"));
310 return -ENODEV;
311 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400312 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300313}
314
315static int acpi_battery_get_info(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400317 int result = -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -0400318 acpi_status status = 0;
319 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300321 if (!acpi_battery_present(battery))
322 return 0;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400323 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400324 status = acpi_evaluate_object(battery->device->handle, "_BIF",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400325 NULL, &buffer);
326 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400329 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BIF"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400330 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400332
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400333 result = extract_package(battery, buffer.pointer,
334 info_offsets, ARRAY_SIZE(info_offsets));
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400335 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -0400336 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337}
338
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300339static int acpi_battery_get_state(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
Len Brown4be44fc2005-08-05 00:44:28 -0400341 int result = 0;
342 acpi_status status = 0;
343 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300345 if (!acpi_battery_present(battery))
346 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400348 if (battery->update_time &&
349 time_before(jiffies, battery->update_time +
350 msecs_to_jiffies(cache_time)))
351 return 0;
352
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400353 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400354 status = acpi_evaluate_object(battery->device->handle, "_BST",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400355 NULL, &buffer);
356 mutex_unlock(&battery->lock);
Len Brown5b31d892007-08-15 00:19:26 -0400357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400359 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BST"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400360 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400362
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400363 result = extract_package(battery, buffer.pointer,
364 state_offsets, ARRAY_SIZE(state_offsets));
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400365 battery->update_time = jiffies;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400366 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -0400367 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368}
369
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400370static int acpi_battery_set_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
Len Brown4be44fc2005-08-05 00:44:28 -0400372 acpi_status status = 0;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400373 union acpi_object arg0 = { .type = ACPI_TYPE_INTEGER };
Len Brown4be44fc2005-08-05 00:44:28 -0400374 struct acpi_object_list arg_list = { 1, &arg0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400376 if (!acpi_battery_present(battery)|| !battery->alarm_present)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300377 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400379 arg0.integer.value = battery->alarm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
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, "_BTP",
383 &arg_list, NULL);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400384 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400387 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400389 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Alarm set to %d\n", battery->alarm));
Patrick Mocheld550d982006-06-27 00:41:40 -0400390 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
392
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300393static int acpi_battery_init_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
Len Brown4be44fc2005-08-05 00:44:28 -0400395 acpi_status status = AE_OK;
396 acpi_handle handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300398 /* See if alarms are supported, and if so, set default */
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400399 status = acpi_get_handle(battery->device->handle, "_BTP", &handle);
400 if (ACPI_FAILURE(status)) {
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400401 battery->alarm_present = 0;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400402 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400404 battery->alarm_present = 1;
405 if (!battery->alarm)
406 battery->alarm = battery->design_capacity_warning;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400407 return acpi_battery_set_alarm(battery);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408}
409
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500410#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300411static ssize_t acpi_battery_alarm_show(struct device *dev,
412 struct device_attribute *attr,
413 char *buf)
414{
415 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
416 return sprintf(buf, "%d\n", battery->alarm * 1000);
417}
418
419static ssize_t acpi_battery_alarm_store(struct device *dev,
420 struct device_attribute *attr,
421 const char *buf, size_t count)
422{
423 unsigned long x;
424 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
425 if (sscanf(buf, "%ld\n", &x) == 1)
426 battery->alarm = x/1000;
427 if (acpi_battery_present(battery))
428 acpi_battery_set_alarm(battery);
429 return count;
430}
431
432static struct device_attribute alarm_attr = {
Parag Warudkar01e8ef12008-10-18 20:28:50 -0700433 .attr = {.name = "alarm", .mode = 0644},
Andrey Borzenkov508df922007-10-28 12:50:09 +0300434 .show = acpi_battery_alarm_show,
435 .store = acpi_battery_alarm_store,
436};
437
438static int sysfs_add_battery(struct acpi_battery *battery)
439{
440 int result;
441
Andrey Borzenkov508df922007-10-28 12:50:09 +0300442 if (battery->power_unit) {
443 battery->bat.properties = charge_battery_props;
444 battery->bat.num_properties =
445 ARRAY_SIZE(charge_battery_props);
446 } else {
447 battery->bat.properties = energy_battery_props;
448 battery->bat.num_properties =
449 ARRAY_SIZE(energy_battery_props);
450 }
451
452 battery->bat.name = acpi_device_bid(battery->device);
453 battery->bat.type = POWER_SUPPLY_TYPE_BATTERY;
454 battery->bat.get_property = acpi_battery_get_property;
455
456 result = power_supply_register(&battery->device->dev, &battery->bat);
457 if (result)
458 return result;
459 return device_create_file(battery->bat.dev, &alarm_attr);
460}
461
462static void sysfs_remove_battery(struct acpi_battery *battery)
463{
464 if (!battery->bat.dev)
465 return;
466 device_remove_file(battery->bat.dev, &alarm_attr);
467 power_supply_unregister(&battery->bat);
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300468 battery->bat.dev = NULL;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300469}
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500470#endif
Andrey Borzenkov508df922007-10-28 12:50:09 +0300471
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400472static int acpi_battery_update(struct acpi_battery *battery)
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500473{
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500474 int result;
475 result = acpi_battery_get_status(battery);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300476 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300477 return result;
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500478#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300479 if (!acpi_battery_present(battery)) {
480 sysfs_remove_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500481 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300482 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300483 }
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500484#endif
485 if (!battery->update_time) {
486 result = acpi_battery_get_info(battery);
487 if (result)
488 return result;
489 acpi_battery_init_alarm(battery);
490 }
491#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300492 if (!battery->bat.dev)
493 sysfs_add_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500494#endif
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400495 return acpi_battery_get_state(battery);
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500496}
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498/* --------------------------------------------------------------------------
499 FS Interface (/proc)
500 -------------------------------------------------------------------------- */
501
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300502#ifdef CONFIG_ACPI_PROCFS_POWER
Len Brown4be44fc2005-08-05 00:44:28 -0400503static struct proc_dir_entry *acpi_battery_dir;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300504
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400505static int acpi_battery_print_info(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200507 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300509 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 goto end;
511
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400512 seq_printf(seq, "present: %s\n",
513 acpi_battery_present(battery)?"yes":"no");
514 if (!acpi_battery_present(battery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 goto end;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400516 if (battery->design_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 seq_printf(seq, "design capacity: unknown\n");
518 else
519 seq_printf(seq, "design capacity: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400520 battery->design_capacity,
521 acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400523 if (battery->full_charge_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 seq_printf(seq, "last full capacity: unknown\n");
525 else
526 seq_printf(seq, "last full capacity: %d %sh\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400527 battery->full_charge_capacity,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400528 acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400530 seq_printf(seq, "battery technology: %srechargeable\n",
531 (!battery->technology)?"non-":"");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400533 if (battery->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 seq_printf(seq, "design voltage: unknown\n");
535 else
536 seq_printf(seq, "design voltage: %d mV\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400537 battery->design_voltage);
Len Brown4be44fc2005-08-05 00:44:28 -0400538 seq_printf(seq, "design capacity warning: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400539 battery->design_capacity_warning,
540 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400541 seq_printf(seq, "design capacity low: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400542 battery->design_capacity_low,
543 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400544 seq_printf(seq, "capacity granularity 1: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400545 battery->capacity_granularity_1,
546 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400547 seq_printf(seq, "capacity granularity 2: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400548 battery->capacity_granularity_2,
549 acpi_battery_units(battery));
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400550 seq_printf(seq, "model number: %s\n", battery->model_number);
551 seq_printf(seq, "serial number: %s\n", battery->serial_number);
552 seq_printf(seq, "battery type: %s\n", battery->type);
553 seq_printf(seq, "OEM info: %s\n", battery->oem_info);
Len Brown4be44fc2005-08-05 00:44:28 -0400554 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300555 if (result)
556 seq_printf(seq, "ERROR: Unable to read battery info\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300557 return result;
558}
559
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400560static int acpi_battery_print_state(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200562 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300564 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 goto end;
566
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400567 seq_printf(seq, "present: %s\n",
568 acpi_battery_present(battery)?"yes":"no");
569 if (!acpi_battery_present(battery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400572 seq_printf(seq, "capacity state: %s\n",
573 (battery->state & 0x04)?"critical":"ok");
574 if ((battery->state & 0x01) && (battery->state & 0x02))
Len Brown4be44fc2005-08-05 00:44:28 -0400575 seq_printf(seq,
576 "charging state: charging/discharging\n");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400577 else if (battery->state & 0x01)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 seq_printf(seq, "charging state: discharging\n");
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400579 else if (battery->state & 0x02)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 seq_printf(seq, "charging state: charging\n");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400581 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 seq_printf(seq, "charging state: charged\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400584 if (battery->current_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 seq_printf(seq, "present rate: unknown\n");
586 else
587 seq_printf(seq, "present rate: %d %s\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400588 battery->current_now, acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400590 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 seq_printf(seq, "remaining capacity: unknown\n");
592 else
593 seq_printf(seq, "remaining capacity: %d %sh\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400594 battery->capacity_now, acpi_battery_units(battery));
595 if (battery->voltage_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 seq_printf(seq, "present voltage: unknown\n");
597 else
598 seq_printf(seq, "present voltage: %d mV\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400599 battery->voltage_now);
Len Brown4be44fc2005-08-05 00:44:28 -0400600 end:
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400601 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300602 seq_printf(seq, "ERROR: Unable to read battery state\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300603
604 return result;
605}
606
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400607static int acpi_battery_print_alarm(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200609 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300611 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 goto end;
613
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300614 if (!acpi_battery_present(battery)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 seq_printf(seq, "present: no\n");
616 goto end;
617 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 seq_printf(seq, "alarm: ");
619 if (!battery->alarm)
620 seq_printf(seq, "unsupported\n");
621 else
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400622 seq_printf(seq, "%u %sh\n", battery->alarm,
623 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400624 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300625 if (result)
626 seq_printf(seq, "ERROR: Unable to read battery alarm\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300627 return result;
628}
629
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400630static ssize_t acpi_battery_write_alarm(struct file *file,
631 const char __user * buffer,
632 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
Len Brown4be44fc2005-08-05 00:44:28 -0400634 int result = 0;
635 char alarm_string[12] = { '\0' };
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200636 struct seq_file *m = file->private_data;
637 struct acpi_battery *battery = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 if (!battery || (count > sizeof(alarm_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -0400640 return -EINVAL;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300641 if (!acpi_battery_present(battery)) {
642 result = -ENODEV;
643 goto end;
644 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300645 if (copy_from_user(alarm_string, buffer, count)) {
646 result = -EFAULT;
647 goto end;
648 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 alarm_string[count] = '\0';
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400650 battery->alarm = simple_strtol(alarm_string, NULL, 0);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400651 result = acpi_battery_set_alarm(battery);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300652 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300653 if (!result)
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400654 return count;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300655 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656}
657
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400658typedef int(*print_func)(struct seq_file *seq, int result);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400659
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400660static print_func acpi_print_funcs[ACPI_BATTERY_NUMFILES] = {
661 acpi_battery_print_info,
662 acpi_battery_print_state,
663 acpi_battery_print_alarm,
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400664};
665
666static int acpi_battery_read(int fid, struct seq_file *seq)
667{
668 struct acpi_battery *battery = seq->private;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400669 int result = acpi_battery_update(battery);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400670 return acpi_print_funcs[fid](seq, result);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400671}
672
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400673#define DECLARE_FILE_FUNCTIONS(_name) \
674static int acpi_battery_read_##_name(struct seq_file *seq, void *offset) \
675{ \
676 return acpi_battery_read(_name##_tag, seq); \
677} \
678static int acpi_battery_##_name##_open_fs(struct inode *inode, struct file *file) \
679{ \
680 return single_open(file, acpi_battery_read_##_name, PDE(inode)->data); \
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400681}
682
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400683DECLARE_FILE_FUNCTIONS(info);
684DECLARE_FILE_FUNCTIONS(state);
685DECLARE_FILE_FUNCTIONS(alarm);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400686
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400687#undef DECLARE_FILE_FUNCTIONS
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400688
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400689#define FILE_DESCRIPTION_RO(_name) \
690 { \
691 .name = __stringify(_name), \
692 .mode = S_IRUGO, \
693 .ops = { \
694 .open = acpi_battery_##_name##_open_fs, \
695 .read = seq_read, \
696 .llseek = seq_lseek, \
697 .release = single_release, \
698 .owner = THIS_MODULE, \
699 }, \
700 }
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400701
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400702#define FILE_DESCRIPTION_RW(_name) \
703 { \
704 .name = __stringify(_name), \
705 .mode = S_IFREG | S_IRUGO | S_IWUSR, \
706 .ops = { \
707 .open = acpi_battery_##_name##_open_fs, \
708 .read = seq_read, \
709 .llseek = seq_lseek, \
710 .write = acpi_battery_write_##_name, \
711 .release = single_release, \
712 .owner = THIS_MODULE, \
713 }, \
714 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400716static struct battery_file {
717 struct file_operations ops;
718 mode_t mode;
719 char *name;
720} acpi_battery_file[] = {
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400721 FILE_DESCRIPTION_RO(info),
722 FILE_DESCRIPTION_RO(state),
723 FILE_DESCRIPTION_RW(alarm),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724};
725
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400726#undef FILE_DESCRIPTION_RO
727#undef FILE_DESCRIPTION_RW
728
Len Brown4be44fc2005-08-05 00:44:28 -0400729static int acpi_battery_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
Len Brown4be44fc2005-08-05 00:44:28 -0400731 struct proc_dir_entry *entry = NULL;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400732 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 if (!acpi_device_dir(device)) {
735 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400736 acpi_battery_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400738 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 acpi_device_dir(device)->owner = THIS_MODULE;
740 }
741
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400742 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i) {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700743 entry = proc_create_data(acpi_battery_file[i].name,
744 acpi_battery_file[i].mode,
745 acpi_device_dir(device),
746 &acpi_battery_file[i].ops,
747 acpi_driver_data(device));
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400748 if (!entry)
749 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400751 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752}
753
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400754static void acpi_battery_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755{
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400756 int i;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400757 if (!acpi_device_dir(device))
758 return;
759 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i)
760 remove_proc_entry(acpi_battery_file[i].name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400763 remove_proc_entry(acpi_device_bid(device), acpi_battery_dir);
764 acpi_device_dir(device) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765}
766
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400767#endif
Alexey Starikovskiy3e58ea02007-09-26 19:43:11 +0400768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769/* --------------------------------------------------------------------------
770 Driver Interface
771 -------------------------------------------------------------------------- */
772
Len Brown4be44fc2005-08-05 00:44:28 -0400773static void acpi_battery_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200775 struct acpi_battery *battery = data;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400776 struct acpi_device *device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -0400778 return;
Patrick Mochel145def82006-05-19 16:54:39 -0400779 device = battery->device;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400780 acpi_battery_update(battery);
781 acpi_bus_generate_proc_event(device, event,
782 acpi_battery_present(battery));
783 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100784 dev_name(&device->dev), event,
Vladimir Lebedev9ea7d572007-02-20 15:48:06 +0300785 acpi_battery_present(battery));
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500786#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300787 /* acpi_batter_update could remove power_supply object */
788 if (battery->bat.dev)
789 kobject_uevent(&battery->bat.dev->kobj, KOBJ_CHANGE);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500790#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791}
792
Len Brown4be44fc2005-08-05 00:44:28 -0400793static int acpi_battery_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794{
Len Brown4be44fc2005-08-05 00:44:28 -0400795 int result = 0;
796 acpi_status status = 0;
797 struct acpi_battery *battery = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400799 return -EINVAL;
Burman Yan36bcbec2006-12-19 12:56:11 -0800800 battery = kzalloc(sizeof(struct acpi_battery), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -0400802 return -ENOMEM;
Patrick Mochel145def82006-05-19 16:54:39 -0400803 battery->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 strcpy(acpi_device_name(device), ACPI_BATTERY_DEVICE_NAME);
805 strcpy(acpi_device_class(device), ACPI_BATTERY_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700806 device->driver_data = battery;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400807 mutex_init(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400808 acpi_battery_update(battery);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300809#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 result = acpi_battery_add_fs(device);
811 if (result)
812 goto end;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400813#endif
Patrick Mochel3b073ec2006-05-19 16:54:41 -0400814 status = acpi_install_notify_handler(device->handle,
Vladimir Lebedev9fdae722006-06-27 04:49:00 -0400815 ACPI_ALL_NOTIFY,
Len Brown4be44fc2005-08-05 00:44:28 -0400816 acpi_battery_notify, battery);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 if (ACPI_FAILURE(status)) {
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300818 ACPI_EXCEPTION((AE_INFO, status, "Installing notify handler"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 result = -ENODEV;
820 goto end;
821 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 printk(KERN_INFO PREFIX "%s Slot [%s] (battery %s)\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400823 ACPI_BATTERY_DEVICE_NAME, acpi_device_bid(device),
824 device->status.battery_present ? "present" : "absent");
Len Brown4be44fc2005-08-05 00:44:28 -0400825 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 if (result) {
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300827#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 acpi_battery_remove_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400829#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 kfree(battery);
831 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400832 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833}
834
Len Brown4be44fc2005-08-05 00:44:28 -0400835static int acpi_battery_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836{
Len Brown4be44fc2005-08-05 00:44:28 -0400837 acpi_status status = 0;
838 struct acpi_battery *battery = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400841 return -EINVAL;
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200842 battery = acpi_driver_data(device);
Patrick Mochel3b073ec2006-05-19 16:54:41 -0400843 status = acpi_remove_notify_handler(device->handle,
Vladimir Lebedev9fdae722006-06-27 04:49:00 -0400844 ACPI_ALL_NOTIFY,
Len Brown4be44fc2005-08-05 00:44:28 -0400845 acpi_battery_notify);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300846#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 acpi_battery_remove_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400848#endif
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500849#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300850 sysfs_remove_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500851#endif
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400852 mutex_destroy(&battery->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 kfree(battery);
Patrick Mocheld550d982006-06-27 00:41:40 -0400854 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855}
856
Jiri Kosina34c44152006-10-10 14:20:41 -0700857/* this is needed to learn about changes made in suspended state */
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800858static int acpi_battery_resume(struct acpi_device *device)
Jiri Kosina34c44152006-10-10 14:20:41 -0700859{
860 struct acpi_battery *battery;
Jiri Kosina34c44152006-10-10 14:20:41 -0700861 if (!device)
862 return -EINVAL;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400863 battery = acpi_driver_data(device);
864 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300865 acpi_battery_update(battery);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300866 return 0;
Jiri Kosina34c44152006-10-10 14:20:41 -0700867}
868
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400869static struct acpi_driver acpi_battery_driver = {
870 .name = "battery",
871 .class = ACPI_BATTERY_CLASS,
872 .ids = battery_device_ids,
873 .ops = {
874 .add = acpi_battery_add,
875 .resume = acpi_battery_resume,
876 .remove = acpi_battery_remove,
877 },
878};
879
Len Brown4be44fc2005-08-05 00:44:28 -0400880static int __init acpi_battery_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881{
Pavel Machek4d8316d2006-08-14 22:37:22 -0700882 if (acpi_disabled)
883 return -ENODEV;
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300884#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400885 acpi_battery_dir = acpi_lock_battery_dir();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 if (!acpi_battery_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -0400887 return -ENODEV;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400888#endif
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400889 if (acpi_bus_register_driver(&acpi_battery_driver) < 0) {
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300890#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400891 acpi_unlock_battery_dir(acpi_battery_dir);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400892#endif
Patrick Mocheld550d982006-06-27 00:41:40 -0400893 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400895 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896}
897
Len Brown4be44fc2005-08-05 00:44:28 -0400898static void __exit acpi_battery_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 acpi_bus_unregister_driver(&acpi_battery_driver);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300901#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400902 acpi_unlock_battery_dir(acpi_battery_dir);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400903#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904}
905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906module_init(acpi_battery_init);
907module_exit(acpi_battery_exit);