blob: a0a178dd189c3259fcc82f323b6c4011fe1442a4 [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:
176 val->intval = battery->current_now * 1000;
Alexey Starikovskiy558073d2008-11-21 22:41:01 +0800177 /* if power units are mW, convert to mA by
178 dividing by current voltage (mV/1000) */
179 if (!battery->power_unit) {
180 if (battery->voltage_now) {
181 val->intval /= battery->voltage_now;
182 val->intval *= 1000;
183 } else
184 val->intval = -1;
185 }
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400186 break;
187 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
188 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
189 val->intval = battery->design_capacity * 1000;
190 break;
191 case POWER_SUPPLY_PROP_CHARGE_FULL:
192 case POWER_SUPPLY_PROP_ENERGY_FULL:
193 val->intval = battery->full_charge_capacity * 1000;
194 break;
195 case POWER_SUPPLY_PROP_CHARGE_NOW:
196 case POWER_SUPPLY_PROP_ENERGY_NOW:
197 val->intval = battery->capacity_now * 1000;
198 break;
199 case POWER_SUPPLY_PROP_MODEL_NAME:
200 val->strval = battery->model_number;
201 break;
202 case POWER_SUPPLY_PROP_MANUFACTURER:
203 val->strval = battery->oem_info;
204 break;
maximilian attems7c2670b2008-01-22 18:46:50 +0100205 case POWER_SUPPLY_PROP_SERIAL_NUMBER:
206 val->strval = battery->serial_number;
207 break;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400208 default:
209 return -EINVAL;
210 }
211 return 0;
212}
213
214static enum power_supply_property charge_battery_props[] = {
215 POWER_SUPPLY_PROP_STATUS,
216 POWER_SUPPLY_PROP_PRESENT,
217 POWER_SUPPLY_PROP_TECHNOLOGY,
218 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
219 POWER_SUPPLY_PROP_VOLTAGE_NOW,
220 POWER_SUPPLY_PROP_CURRENT_NOW,
221 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
222 POWER_SUPPLY_PROP_CHARGE_FULL,
223 POWER_SUPPLY_PROP_CHARGE_NOW,
224 POWER_SUPPLY_PROP_MODEL_NAME,
225 POWER_SUPPLY_PROP_MANUFACTURER,
maximilian attems7c2670b2008-01-22 18:46:50 +0100226 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400227};
228
229static enum power_supply_property energy_battery_props[] = {
230 POWER_SUPPLY_PROP_STATUS,
231 POWER_SUPPLY_PROP_PRESENT,
232 POWER_SUPPLY_PROP_TECHNOLOGY,
233 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
234 POWER_SUPPLY_PROP_VOLTAGE_NOW,
235 POWER_SUPPLY_PROP_CURRENT_NOW,
236 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN,
237 POWER_SUPPLY_PROP_ENERGY_FULL,
238 POWER_SUPPLY_PROP_ENERGY_NOW,
239 POWER_SUPPLY_PROP_MODEL_NAME,
240 POWER_SUPPLY_PROP_MANUFACTURER,
maximilian attems7c2670b2008-01-22 18:46:50 +0100241 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400242};
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500243#endif
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400244
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300245#ifdef CONFIG_ACPI_PROCFS_POWER
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400246inline char *acpi_battery_units(struct acpi_battery *battery)
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400247{
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400248 return (battery->power_unit)?"mA":"mW";
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400249}
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400250#endif
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252/* --------------------------------------------------------------------------
253 Battery Management
254 -------------------------------------------------------------------------- */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400255struct acpi_offsets {
256 size_t offset; /* offset inside struct acpi_sbs_battery */
257 u8 mode; /* int or string? */
258};
259
260static struct acpi_offsets state_offsets[] = {
261 {offsetof(struct acpi_battery, state), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400262 {offsetof(struct acpi_battery, current_now), 0},
263 {offsetof(struct acpi_battery, capacity_now), 0},
264 {offsetof(struct acpi_battery, voltage_now), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400265};
266
267static struct acpi_offsets info_offsets[] = {
268 {offsetof(struct acpi_battery, power_unit), 0},
269 {offsetof(struct acpi_battery, design_capacity), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400270 {offsetof(struct acpi_battery, full_charge_capacity), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400271 {offsetof(struct acpi_battery, technology), 0},
272 {offsetof(struct acpi_battery, design_voltage), 0},
273 {offsetof(struct acpi_battery, design_capacity_warning), 0},
274 {offsetof(struct acpi_battery, design_capacity_low), 0},
275 {offsetof(struct acpi_battery, capacity_granularity_1), 0},
276 {offsetof(struct acpi_battery, capacity_granularity_2), 0},
277 {offsetof(struct acpi_battery, model_number), 1},
278 {offsetof(struct acpi_battery, serial_number), 1},
279 {offsetof(struct acpi_battery, type), 1},
280 {offsetof(struct acpi_battery, oem_info), 1},
281};
282
283static int extract_package(struct acpi_battery *battery,
284 union acpi_object *package,
285 struct acpi_offsets *offsets, int num)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300286{
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300287 int i;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400288 union acpi_object *element;
289 if (package->type != ACPI_TYPE_PACKAGE)
290 return -EFAULT;
291 for (i = 0; i < num; ++i) {
292 if (package->package.count <= i)
293 return -EFAULT;
294 element = &package->package.elements[i];
295 if (offsets[i].mode) {
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300296 u8 *ptr = (u8 *)battery + offsets[i].offset;
297 if (element->type == ACPI_TYPE_STRING ||
298 element->type == ACPI_TYPE_BUFFER)
299 strncpy(ptr, element->string.pointer, 32);
300 else if (element->type == ACPI_TYPE_INTEGER) {
301 strncpy(ptr, (u8 *)&element->integer.value,
302 sizeof(acpi_integer));
303 ptr[sizeof(acpi_integer)] = 0;
Alexey Starikovskiyb8a1bdb2008-03-17 22:37:42 -0400304 } else
305 *ptr = 0; /* don't have value */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400306 } else {
Alexey Starikovskiyb8a1bdb2008-03-17 22:37:42 -0400307 int *x = (int *)((u8 *)battery + offsets[i].offset);
308 *x = (element->type == ACPI_TYPE_INTEGER) ?
309 element->integer.value : -1;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300310 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300311 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300312 return 0;
313}
314
315static int acpi_battery_get_status(struct acpi_battery *battery)
316{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400317 if (acpi_bus_get_status(battery->device)) {
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300318 ACPI_EXCEPTION((AE_INFO, AE_ERROR, "Evaluating _STA"));
319 return -ENODEV;
320 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400321 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300322}
323
324static int acpi_battery_get_info(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400326 int result = -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -0400327 acpi_status status = 0;
328 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300330 if (!acpi_battery_present(battery))
331 return 0;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400332 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400333 status = acpi_evaluate_object(battery->device->handle, "_BIF",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400334 NULL, &buffer);
335 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400338 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BIF"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400339 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400341
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400342 result = extract_package(battery, buffer.pointer,
343 info_offsets, ARRAY_SIZE(info_offsets));
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400344 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -0400345 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346}
347
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300348static int acpi_battery_get_state(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
Len Brown4be44fc2005-08-05 00:44:28 -0400350 int result = 0;
351 acpi_status status = 0;
352 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300354 if (!acpi_battery_present(battery))
355 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400357 if (battery->update_time &&
358 time_before(jiffies, battery->update_time +
359 msecs_to_jiffies(cache_time)))
360 return 0;
361
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400362 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400363 status = acpi_evaluate_object(battery->device->handle, "_BST",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400364 NULL, &buffer);
365 mutex_unlock(&battery->lock);
Len Brown5b31d892007-08-15 00:19:26 -0400366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400368 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BST"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400369 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400371
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400372 result = extract_package(battery, buffer.pointer,
373 state_offsets, ARRAY_SIZE(state_offsets));
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400374 battery->update_time = jiffies;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400375 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -0400376 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377}
378
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400379static int acpi_battery_set_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
Len Brown4be44fc2005-08-05 00:44:28 -0400381 acpi_status status = 0;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400382 union acpi_object arg0 = { .type = ACPI_TYPE_INTEGER };
Len Brown4be44fc2005-08-05 00:44:28 -0400383 struct acpi_object_list arg_list = { 1, &arg0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400385 if (!acpi_battery_present(battery)|| !battery->alarm_present)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300386 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400388 arg0.integer.value = battery->alarm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400390 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400391 status = acpi_evaluate_object(battery->device->handle, "_BTP",
392 &arg_list, NULL);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400393 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400396 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400398 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Alarm set to %d\n", battery->alarm));
Patrick Mocheld550d982006-06-27 00:41:40 -0400399 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400}
401
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300402static int acpi_battery_init_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
Len Brown4be44fc2005-08-05 00:44:28 -0400404 acpi_status status = AE_OK;
405 acpi_handle handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300407 /* See if alarms are supported, and if so, set default */
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400408 status = acpi_get_handle(battery->device->handle, "_BTP", &handle);
409 if (ACPI_FAILURE(status)) {
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400410 battery->alarm_present = 0;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400411 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 }
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400413 battery->alarm_present = 1;
414 if (!battery->alarm)
415 battery->alarm = battery->design_capacity_warning;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400416 return acpi_battery_set_alarm(battery);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417}
418
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500419#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300420static ssize_t acpi_battery_alarm_show(struct device *dev,
421 struct device_attribute *attr,
422 char *buf)
423{
424 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
425 return sprintf(buf, "%d\n", battery->alarm * 1000);
426}
427
428static ssize_t acpi_battery_alarm_store(struct device *dev,
429 struct device_attribute *attr,
430 const char *buf, size_t count)
431{
432 unsigned long x;
433 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
434 if (sscanf(buf, "%ld\n", &x) == 1)
435 battery->alarm = x/1000;
436 if (acpi_battery_present(battery))
437 acpi_battery_set_alarm(battery);
438 return count;
439}
440
441static struct device_attribute alarm_attr = {
Parag Warudkar01e8ef12008-10-18 20:28:50 -0700442 .attr = {.name = "alarm", .mode = 0644},
Andrey Borzenkov508df922007-10-28 12:50:09 +0300443 .show = acpi_battery_alarm_show,
444 .store = acpi_battery_alarm_store,
445};
446
447static int sysfs_add_battery(struct acpi_battery *battery)
448{
449 int result;
450
Andrey Borzenkov508df922007-10-28 12:50:09 +0300451 if (battery->power_unit) {
452 battery->bat.properties = charge_battery_props;
453 battery->bat.num_properties =
454 ARRAY_SIZE(charge_battery_props);
455 } else {
456 battery->bat.properties = energy_battery_props;
457 battery->bat.num_properties =
458 ARRAY_SIZE(energy_battery_props);
459 }
460
461 battery->bat.name = acpi_device_bid(battery->device);
462 battery->bat.type = POWER_SUPPLY_TYPE_BATTERY;
463 battery->bat.get_property = acpi_battery_get_property;
464
465 result = power_supply_register(&battery->device->dev, &battery->bat);
466 if (result)
467 return result;
468 return device_create_file(battery->bat.dev, &alarm_attr);
469}
470
471static void sysfs_remove_battery(struct acpi_battery *battery)
472{
473 if (!battery->bat.dev)
474 return;
475 device_remove_file(battery->bat.dev, &alarm_attr);
476 power_supply_unregister(&battery->bat);
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300477 battery->bat.dev = NULL;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300478}
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500479#endif
Andrey Borzenkov508df922007-10-28 12:50:09 +0300480
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400481static int acpi_battery_update(struct acpi_battery *battery)
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500482{
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500483 int result;
484 result = acpi_battery_get_status(battery);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300485 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300486 return result;
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500487#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300488 if (!acpi_battery_present(battery)) {
489 sysfs_remove_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500490 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300491 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300492 }
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500493#endif
494 if (!battery->update_time) {
495 result = acpi_battery_get_info(battery);
496 if (result)
497 return result;
498 acpi_battery_init_alarm(battery);
499 }
500#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300501 if (!battery->bat.dev)
502 sysfs_add_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500503#endif
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400504 return acpi_battery_get_state(battery);
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500505}
506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507/* --------------------------------------------------------------------------
508 FS Interface (/proc)
509 -------------------------------------------------------------------------- */
510
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300511#ifdef CONFIG_ACPI_PROCFS_POWER
Len Brown4be44fc2005-08-05 00:44:28 -0400512static struct proc_dir_entry *acpi_battery_dir;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300513
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400514static int acpi_battery_print_info(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200516 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300518 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 goto end;
520
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400521 seq_printf(seq, "present: %s\n",
522 acpi_battery_present(battery)?"yes":"no");
523 if (!acpi_battery_present(battery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 goto end;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400525 if (battery->design_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 seq_printf(seq, "design capacity: unknown\n");
527 else
528 seq_printf(seq, "design capacity: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400529 battery->design_capacity,
530 acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400532 if (battery->full_charge_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 seq_printf(seq, "last full capacity: unknown\n");
534 else
535 seq_printf(seq, "last full capacity: %d %sh\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400536 battery->full_charge_capacity,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400537 acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400539 seq_printf(seq, "battery technology: %srechargeable\n",
540 (!battery->technology)?"non-":"");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400542 if (battery->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 seq_printf(seq, "design voltage: unknown\n");
544 else
545 seq_printf(seq, "design voltage: %d mV\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400546 battery->design_voltage);
Len Brown4be44fc2005-08-05 00:44:28 -0400547 seq_printf(seq, "design capacity warning: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400548 battery->design_capacity_warning,
549 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400550 seq_printf(seq, "design capacity low: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400551 battery->design_capacity_low,
552 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400553 seq_printf(seq, "capacity granularity 1: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400554 battery->capacity_granularity_1,
555 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400556 seq_printf(seq, "capacity granularity 2: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400557 battery->capacity_granularity_2,
558 acpi_battery_units(battery));
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400559 seq_printf(seq, "model number: %s\n", battery->model_number);
560 seq_printf(seq, "serial number: %s\n", battery->serial_number);
561 seq_printf(seq, "battery type: %s\n", battery->type);
562 seq_printf(seq, "OEM info: %s\n", battery->oem_info);
Len Brown4be44fc2005-08-05 00:44:28 -0400563 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300564 if (result)
565 seq_printf(seq, "ERROR: Unable to read battery info\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300566 return result;
567}
568
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400569static int acpi_battery_print_state(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200571 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300573 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 goto end;
575
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400576 seq_printf(seq, "present: %s\n",
577 acpi_battery_present(battery)?"yes":"no");
578 if (!acpi_battery_present(battery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400581 seq_printf(seq, "capacity state: %s\n",
582 (battery->state & 0x04)?"critical":"ok");
583 if ((battery->state & 0x01) && (battery->state & 0x02))
Len Brown4be44fc2005-08-05 00:44:28 -0400584 seq_printf(seq,
585 "charging state: charging/discharging\n");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400586 else if (battery->state & 0x01)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 seq_printf(seq, "charging state: discharging\n");
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400588 else if (battery->state & 0x02)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 seq_printf(seq, "charging state: charging\n");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400590 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 seq_printf(seq, "charging state: charged\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400593 if (battery->current_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 seq_printf(seq, "present rate: unknown\n");
595 else
596 seq_printf(seq, "present rate: %d %s\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400597 battery->current_now, acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400599 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 seq_printf(seq, "remaining capacity: unknown\n");
601 else
602 seq_printf(seq, "remaining capacity: %d %sh\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400603 battery->capacity_now, acpi_battery_units(battery));
604 if (battery->voltage_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 seq_printf(seq, "present voltage: unknown\n");
606 else
607 seq_printf(seq, "present voltage: %d mV\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400608 battery->voltage_now);
Len Brown4be44fc2005-08-05 00:44:28 -0400609 end:
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400610 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300611 seq_printf(seq, "ERROR: Unable to read battery state\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300612
613 return result;
614}
615
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400616static int acpi_battery_print_alarm(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200618 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300620 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 goto end;
622
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300623 if (!acpi_battery_present(battery)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 seq_printf(seq, "present: no\n");
625 goto end;
626 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 seq_printf(seq, "alarm: ");
628 if (!battery->alarm)
629 seq_printf(seq, "unsupported\n");
630 else
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400631 seq_printf(seq, "%u %sh\n", battery->alarm,
632 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400633 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300634 if (result)
635 seq_printf(seq, "ERROR: Unable to read battery alarm\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300636 return result;
637}
638
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400639static ssize_t acpi_battery_write_alarm(struct file *file,
640 const char __user * buffer,
641 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
Len Brown4be44fc2005-08-05 00:44:28 -0400643 int result = 0;
644 char alarm_string[12] = { '\0' };
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200645 struct seq_file *m = file->private_data;
646 struct acpi_battery *battery = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 if (!battery || (count > sizeof(alarm_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -0400649 return -EINVAL;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300650 if (!acpi_battery_present(battery)) {
651 result = -ENODEV;
652 goto end;
653 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300654 if (copy_from_user(alarm_string, buffer, count)) {
655 result = -EFAULT;
656 goto end;
657 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 alarm_string[count] = '\0';
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400659 battery->alarm = simple_strtol(alarm_string, NULL, 0);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400660 result = acpi_battery_set_alarm(battery);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300661 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300662 if (!result)
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400663 return count;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300664 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665}
666
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400667typedef int(*print_func)(struct seq_file *seq, int result);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400668
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400669static print_func acpi_print_funcs[ACPI_BATTERY_NUMFILES] = {
670 acpi_battery_print_info,
671 acpi_battery_print_state,
672 acpi_battery_print_alarm,
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400673};
674
675static int acpi_battery_read(int fid, struct seq_file *seq)
676{
677 struct acpi_battery *battery = seq->private;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400678 int result = acpi_battery_update(battery);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400679 return acpi_print_funcs[fid](seq, result);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400680}
681
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400682#define DECLARE_FILE_FUNCTIONS(_name) \
683static int acpi_battery_read_##_name(struct seq_file *seq, void *offset) \
684{ \
685 return acpi_battery_read(_name##_tag, seq); \
686} \
687static int acpi_battery_##_name##_open_fs(struct inode *inode, struct file *file) \
688{ \
689 return single_open(file, acpi_battery_read_##_name, PDE(inode)->data); \
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400690}
691
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400692DECLARE_FILE_FUNCTIONS(info);
693DECLARE_FILE_FUNCTIONS(state);
694DECLARE_FILE_FUNCTIONS(alarm);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400695
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400696#undef DECLARE_FILE_FUNCTIONS
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400697
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400698#define FILE_DESCRIPTION_RO(_name) \
699 { \
700 .name = __stringify(_name), \
701 .mode = S_IRUGO, \
702 .ops = { \
703 .open = acpi_battery_##_name##_open_fs, \
704 .read = seq_read, \
705 .llseek = seq_lseek, \
706 .release = single_release, \
707 .owner = THIS_MODULE, \
708 }, \
709 }
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400710
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400711#define FILE_DESCRIPTION_RW(_name) \
712 { \
713 .name = __stringify(_name), \
714 .mode = S_IFREG | S_IRUGO | S_IWUSR, \
715 .ops = { \
716 .open = acpi_battery_##_name##_open_fs, \
717 .read = seq_read, \
718 .llseek = seq_lseek, \
719 .write = acpi_battery_write_##_name, \
720 .release = single_release, \
721 .owner = THIS_MODULE, \
722 }, \
723 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400725static struct battery_file {
726 struct file_operations ops;
727 mode_t mode;
728 char *name;
729} acpi_battery_file[] = {
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400730 FILE_DESCRIPTION_RO(info),
731 FILE_DESCRIPTION_RO(state),
732 FILE_DESCRIPTION_RW(alarm),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733};
734
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400735#undef FILE_DESCRIPTION_RO
736#undef FILE_DESCRIPTION_RW
737
Len Brown4be44fc2005-08-05 00:44:28 -0400738static int acpi_battery_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
Len Brown4be44fc2005-08-05 00:44:28 -0400740 struct proc_dir_entry *entry = NULL;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400741 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 if (!acpi_device_dir(device)) {
744 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400745 acpi_battery_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400747 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 acpi_device_dir(device)->owner = THIS_MODULE;
749 }
750
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400751 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i) {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700752 entry = proc_create_data(acpi_battery_file[i].name,
753 acpi_battery_file[i].mode,
754 acpi_device_dir(device),
755 &acpi_battery_file[i].ops,
756 acpi_driver_data(device));
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400757 if (!entry)
758 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400760 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761}
762
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400763static void acpi_battery_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764{
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400765 int i;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400766 if (!acpi_device_dir(device))
767 return;
768 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i)
769 remove_proc_entry(acpi_battery_file[i].name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400772 remove_proc_entry(acpi_device_bid(device), acpi_battery_dir);
773 acpi_device_dir(device) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774}
775
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400776#endif
Alexey Starikovskiy3e58ea02007-09-26 19:43:11 +0400777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778/* --------------------------------------------------------------------------
779 Driver Interface
780 -------------------------------------------------------------------------- */
781
Len Brown4be44fc2005-08-05 00:44:28 -0400782static void acpi_battery_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200784 struct acpi_battery *battery = data;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400785 struct acpi_device *device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -0400787 return;
Patrick Mochel145def82006-05-19 16:54:39 -0400788 device = battery->device;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400789 acpi_battery_update(battery);
790 acpi_bus_generate_proc_event(device, event,
791 acpi_battery_present(battery));
792 acpi_bus_generate_netlink_event(device->pnp.device_class,
Kay Sievers07944692008-10-30 01:18:59 +0100793 dev_name(&device->dev), event,
Vladimir Lebedev9ea7d572007-02-20 15:48:06 +0300794 acpi_battery_present(battery));
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500795#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300796 /* acpi_batter_update could remove power_supply object */
797 if (battery->bat.dev)
798 kobject_uevent(&battery->bat.dev->kobj, KOBJ_CHANGE);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500799#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800}
801
Len Brown4be44fc2005-08-05 00:44:28 -0400802static int acpi_battery_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803{
Len Brown4be44fc2005-08-05 00:44:28 -0400804 int result = 0;
805 acpi_status status = 0;
806 struct acpi_battery *battery = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400808 return -EINVAL;
Burman Yan36bcbec2006-12-19 12:56:11 -0800809 battery = kzalloc(sizeof(struct acpi_battery), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -0400811 return -ENOMEM;
Patrick Mochel145def82006-05-19 16:54:39 -0400812 battery->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 strcpy(acpi_device_name(device), ACPI_BATTERY_DEVICE_NAME);
814 strcpy(acpi_device_class(device), ACPI_BATTERY_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700815 device->driver_data = battery;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400816 mutex_init(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400817 acpi_battery_update(battery);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300818#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 result = acpi_battery_add_fs(device);
820 if (result)
821 goto end;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400822#endif
Patrick Mochel3b073ec2006-05-19 16:54:41 -0400823 status = acpi_install_notify_handler(device->handle,
Vladimir Lebedev9fdae722006-06-27 04:49:00 -0400824 ACPI_ALL_NOTIFY,
Len Brown4be44fc2005-08-05 00:44:28 -0400825 acpi_battery_notify, battery);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 if (ACPI_FAILURE(status)) {
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300827 ACPI_EXCEPTION((AE_INFO, status, "Installing notify handler"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 result = -ENODEV;
829 goto end;
830 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 printk(KERN_INFO PREFIX "%s Slot [%s] (battery %s)\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400832 ACPI_BATTERY_DEVICE_NAME, acpi_device_bid(device),
833 device->status.battery_present ? "present" : "absent");
Len Brown4be44fc2005-08-05 00:44:28 -0400834 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 if (result) {
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300836#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 acpi_battery_remove_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400838#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 kfree(battery);
840 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400841 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842}
843
Len Brown4be44fc2005-08-05 00:44:28 -0400844static int acpi_battery_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
Len Brown4be44fc2005-08-05 00:44:28 -0400846 acpi_status status = 0;
847 struct acpi_battery *battery = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400850 return -EINVAL;
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200851 battery = acpi_driver_data(device);
Patrick Mochel3b073ec2006-05-19 16:54:41 -0400852 status = acpi_remove_notify_handler(device->handle,
Vladimir Lebedev9fdae722006-06-27 04:49:00 -0400853 ACPI_ALL_NOTIFY,
Len Brown4be44fc2005-08-05 00:44:28 -0400854 acpi_battery_notify);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300855#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 acpi_battery_remove_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400857#endif
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500858#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300859 sysfs_remove_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500860#endif
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400861 mutex_destroy(&battery->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 kfree(battery);
Patrick Mocheld550d982006-06-27 00:41:40 -0400863 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864}
865
Jiri Kosina34c44152006-10-10 14:20:41 -0700866/* this is needed to learn about changes made in suspended state */
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800867static int acpi_battery_resume(struct acpi_device *device)
Jiri Kosina34c44152006-10-10 14:20:41 -0700868{
869 struct acpi_battery *battery;
Jiri Kosina34c44152006-10-10 14:20:41 -0700870 if (!device)
871 return -EINVAL;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400872 battery = acpi_driver_data(device);
873 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300874 acpi_battery_update(battery);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300875 return 0;
Jiri Kosina34c44152006-10-10 14:20:41 -0700876}
877
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400878static struct acpi_driver acpi_battery_driver = {
879 .name = "battery",
880 .class = ACPI_BATTERY_CLASS,
881 .ids = battery_device_ids,
882 .ops = {
883 .add = acpi_battery_add,
884 .resume = acpi_battery_resume,
885 .remove = acpi_battery_remove,
886 },
887};
888
Len Brown4be44fc2005-08-05 00:44:28 -0400889static int __init acpi_battery_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890{
Pavel Machek4d8316d2006-08-14 22:37:22 -0700891 if (acpi_disabled)
892 return -ENODEV;
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300893#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400894 acpi_battery_dir = acpi_lock_battery_dir();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 if (!acpi_battery_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -0400896 return -ENODEV;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400897#endif
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400898 if (acpi_bus_register_driver(&acpi_battery_driver) < 0) {
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300899#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400900 acpi_unlock_battery_dir(acpi_battery_dir);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400901#endif
Patrick Mocheld550d982006-06-27 00:41:40 -0400902 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400904 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905}
906
Len Brown4be44fc2005-08-05 00:44:28 -0400907static void __exit acpi_battery_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 acpi_bus_unregister_driver(&acpi_battery_driver);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300910#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400911 acpi_unlock_battery_dir(acpi_battery_dir);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400912#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913}
914
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915module_init(acpi_battery_init);
916module_exit(acpi_battery_exit);