blob: f6215e8098086887f11b414e180923479949c467 [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_COMPONENT 0x00040000
50#define ACPI_BATTERY_CLASS "battery"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define ACPI_BATTERY_DEVICE_NAME "Battery"
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#define ACPI_BATTERY_NOTIFY_STATUS 0x80
53#define ACPI_BATTERY_NOTIFY_INFO 0x81
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#define _COMPONENT ACPI_BATTERY_COMPONENT
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +030056
Len Brownf52fd662007-02-12 22:42:12 -050057ACPI_MODULE_NAME("battery");
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Len Brownf52fd662007-02-12 22:42:12 -050059MODULE_AUTHOR("Paul Diefenbaugh");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +040060MODULE_AUTHOR("Alexey Starikovskiy <astarikovskiy@suse.de>");
Len Brown7cda93e2007-02-12 23:50:02 -050061MODULE_DESCRIPTION("ACPI Battery Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070062MODULE_LICENSE("GPL");
63
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +040064static unsigned int cache_time = 1000;
65module_param(cache_time, uint, 0644);
66MODULE_PARM_DESC(cache_time, "cache time in milliseconds");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +030067
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +030068#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -040069extern struct proc_dir_entry *acpi_lock_battery_dir(void);
70extern void *acpi_unlock_battery_dir(struct proc_dir_entry *acpi_battery_dir);
71
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040072enum acpi_battery_files {
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +040073 info_tag = 0,
74 state_tag,
75 alarm_tag,
Alexey Starikovskiy78490d82007-05-11 13:18:55 -040076 ACPI_BATTERY_NUMFILES,
77};
78
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040079#endif
80
81static const struct acpi_device_id battery_device_ids[] = {
82 {"PNP0C0A", 0},
83 {"", 0},
84};
85
86MODULE_DEVICE_TABLE(acpi, battery_device_ids);
87
88
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040089struct acpi_battery {
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040090 struct mutex lock;
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -050091#ifdef CONFIG_ACPI_SYSFS_POWER
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040092 struct power_supply bat;
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -050093#endif
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +040094 struct acpi_device *device;
95 unsigned long update_time;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040096 int current_now;
97 int capacity_now;
98 int voltage_now;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040099 int design_capacity;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400100 int full_charge_capacity;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400101 int technology;
102 int design_voltage;
103 int design_capacity_warning;
104 int design_capacity_low;
105 int capacity_granularity_1;
106 int capacity_granularity_2;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400107 int alarm;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400108 char model_number[32];
109 char serial_number[32];
110 char type[32];
111 char oem_info[32];
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400112 int state;
113 int power_unit;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300114 u8 alarm_present;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115};
116
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400117#define to_acpi_battery(x) container_of(x, struct acpi_battery, bat);
118
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400119inline int acpi_battery_present(struct acpi_battery *battery)
120{
121 return battery->device->status.battery_present;
122}
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400123
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500124#ifdef CONFIG_ACPI_SYSFS_POWER
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400125static int acpi_battery_technology(struct acpi_battery *battery)
126{
127 if (!strcasecmp("NiCd", battery->type))
128 return POWER_SUPPLY_TECHNOLOGY_NiCd;
129 if (!strcasecmp("NiMH", battery->type))
130 return POWER_SUPPLY_TECHNOLOGY_NiMH;
131 if (!strcasecmp("LION", battery->type))
132 return POWER_SUPPLY_TECHNOLOGY_LION;
Andrey Borzenkovad40e682007-11-10 20:02:49 +0300133 if (!strncasecmp("LI-ION", battery->type, 6))
Alexey Starikovskiy0bde7ee2007-10-28 15:33:10 +0300134 return POWER_SUPPLY_TECHNOLOGY_LION;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400135 if (!strcasecmp("LiP", battery->type))
136 return POWER_SUPPLY_TECHNOLOGY_LIPO;
137 return POWER_SUPPLY_TECHNOLOGY_UNKNOWN;
138}
139
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300140static int acpi_battery_get_state(struct acpi_battery *battery);
Alexey Starikovskiyb19073a2007-10-25 17:10:47 -0400141
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400142static int acpi_battery_get_property(struct power_supply *psy,
143 enum power_supply_property psp,
144 union power_supply_propval *val)
145{
146 struct acpi_battery *battery = to_acpi_battery(psy);
147
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300148 if (acpi_battery_present(battery)) {
149 /* run battery update only if it is present */
150 acpi_battery_get_state(battery);
151 } else if (psp != POWER_SUPPLY_PROP_PRESENT)
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400152 return -ENODEV;
153 switch (psp) {
154 case POWER_SUPPLY_PROP_STATUS:
155 if (battery->state & 0x01)
156 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
157 else if (battery->state & 0x02)
158 val->intval = POWER_SUPPLY_STATUS_CHARGING;
159 else if (battery->state == 0)
160 val->intval = POWER_SUPPLY_STATUS_FULL;
Roland Dreier4c41d3a2007-11-07 15:09:09 -0800161 else
162 val->intval = POWER_SUPPLY_STATUS_UNKNOWN;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400163 break;
164 case POWER_SUPPLY_PROP_PRESENT:
165 val->intval = acpi_battery_present(battery);
166 break;
167 case POWER_SUPPLY_PROP_TECHNOLOGY:
168 val->intval = acpi_battery_technology(battery);
169 break;
170 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
171 val->intval = battery->design_voltage * 1000;
172 break;
173 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
174 val->intval = battery->voltage_now * 1000;
175 break;
176 case POWER_SUPPLY_PROP_CURRENT_NOW:
177 val->intval = battery->current_now * 1000;
178 break;
179 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
180 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
181 val->intval = battery->design_capacity * 1000;
182 break;
183 case POWER_SUPPLY_PROP_CHARGE_FULL:
184 case POWER_SUPPLY_PROP_ENERGY_FULL:
185 val->intval = battery->full_charge_capacity * 1000;
186 break;
187 case POWER_SUPPLY_PROP_CHARGE_NOW:
188 case POWER_SUPPLY_PROP_ENERGY_NOW:
189 val->intval = battery->capacity_now * 1000;
190 break;
191 case POWER_SUPPLY_PROP_MODEL_NAME:
192 val->strval = battery->model_number;
193 break;
194 case POWER_SUPPLY_PROP_MANUFACTURER:
195 val->strval = battery->oem_info;
196 break;
maximilian attems7c2670b2008-01-22 18:46:50 +0100197 case POWER_SUPPLY_PROP_SERIAL_NUMBER:
198 val->strval = battery->serial_number;
199 break;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400200 default:
201 return -EINVAL;
202 }
203 return 0;
204}
205
206static enum power_supply_property charge_battery_props[] = {
207 POWER_SUPPLY_PROP_STATUS,
208 POWER_SUPPLY_PROP_PRESENT,
209 POWER_SUPPLY_PROP_TECHNOLOGY,
210 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
211 POWER_SUPPLY_PROP_VOLTAGE_NOW,
212 POWER_SUPPLY_PROP_CURRENT_NOW,
213 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
214 POWER_SUPPLY_PROP_CHARGE_FULL,
215 POWER_SUPPLY_PROP_CHARGE_NOW,
216 POWER_SUPPLY_PROP_MODEL_NAME,
217 POWER_SUPPLY_PROP_MANUFACTURER,
maximilian attems7c2670b2008-01-22 18:46:50 +0100218 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400219};
220
221static enum power_supply_property energy_battery_props[] = {
222 POWER_SUPPLY_PROP_STATUS,
223 POWER_SUPPLY_PROP_PRESENT,
224 POWER_SUPPLY_PROP_TECHNOLOGY,
225 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
226 POWER_SUPPLY_PROP_VOLTAGE_NOW,
227 POWER_SUPPLY_PROP_CURRENT_NOW,
228 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN,
229 POWER_SUPPLY_PROP_ENERGY_FULL,
230 POWER_SUPPLY_PROP_ENERGY_NOW,
231 POWER_SUPPLY_PROP_MODEL_NAME,
232 POWER_SUPPLY_PROP_MANUFACTURER,
maximilian attems7c2670b2008-01-22 18:46:50 +0100233 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400234};
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500235#endif
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400236
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300237#ifdef CONFIG_ACPI_PROCFS_POWER
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400238inline char *acpi_battery_units(struct acpi_battery *battery)
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400239{
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400240 return (battery->power_unit)?"mA":"mW";
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400241}
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400242#endif
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244/* --------------------------------------------------------------------------
245 Battery Management
246 -------------------------------------------------------------------------- */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400247struct acpi_offsets {
248 size_t offset; /* offset inside struct acpi_sbs_battery */
249 u8 mode; /* int or string? */
250};
251
252static struct acpi_offsets state_offsets[] = {
253 {offsetof(struct acpi_battery, state), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400254 {offsetof(struct acpi_battery, current_now), 0},
255 {offsetof(struct acpi_battery, capacity_now), 0},
256 {offsetof(struct acpi_battery, voltage_now), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400257};
258
259static struct acpi_offsets info_offsets[] = {
260 {offsetof(struct acpi_battery, power_unit), 0},
261 {offsetof(struct acpi_battery, design_capacity), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400262 {offsetof(struct acpi_battery, full_charge_capacity), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400263 {offsetof(struct acpi_battery, technology), 0},
264 {offsetof(struct acpi_battery, design_voltage), 0},
265 {offsetof(struct acpi_battery, design_capacity_warning), 0},
266 {offsetof(struct acpi_battery, design_capacity_low), 0},
267 {offsetof(struct acpi_battery, capacity_granularity_1), 0},
268 {offsetof(struct acpi_battery, capacity_granularity_2), 0},
269 {offsetof(struct acpi_battery, model_number), 1},
270 {offsetof(struct acpi_battery, serial_number), 1},
271 {offsetof(struct acpi_battery, type), 1},
272 {offsetof(struct acpi_battery, oem_info), 1},
273};
274
275static int extract_package(struct acpi_battery *battery,
276 union acpi_object *package,
277 struct acpi_offsets *offsets, int num)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300278{
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300279 int i;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400280 union acpi_object *element;
281 if (package->type != ACPI_TYPE_PACKAGE)
282 return -EFAULT;
283 for (i = 0; i < num; ++i) {
284 if (package->package.count <= i)
285 return -EFAULT;
286 element = &package->package.elements[i];
287 if (offsets[i].mode) {
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300288 u8 *ptr = (u8 *)battery + offsets[i].offset;
289 if (element->type == ACPI_TYPE_STRING ||
290 element->type == ACPI_TYPE_BUFFER)
291 strncpy(ptr, element->string.pointer, 32);
292 else if (element->type == ACPI_TYPE_INTEGER) {
293 strncpy(ptr, (u8 *)&element->integer.value,
294 sizeof(acpi_integer));
295 ptr[sizeof(acpi_integer)] = 0;
296 } else return -EFAULT;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400297 } else {
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300298 if (element->type == ACPI_TYPE_INTEGER) {
299 int *x = (int *)((u8 *)battery +
300 offsets[i].offset);
301 *x = element->integer.value;
302 } else return -EFAULT;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300303 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300304 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300305 return 0;
306}
307
308static int acpi_battery_get_status(struct acpi_battery *battery)
309{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400310 if (acpi_bus_get_status(battery->device)) {
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300311 ACPI_EXCEPTION((AE_INFO, AE_ERROR, "Evaluating _STA"));
312 return -ENODEV;
313 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400314 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300315}
316
317static int acpi_battery_get_info(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400319 int result = -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -0400320 acpi_status status = 0;
321 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300323 if (!acpi_battery_present(battery))
324 return 0;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400325 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400326 status = acpi_evaluate_object(battery->device->handle, "_BIF",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400327 NULL, &buffer);
328 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400331 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BIF"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400332 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400334
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400335 result = extract_package(battery, buffer.pointer,
336 info_offsets, ARRAY_SIZE(info_offsets));
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400337 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -0400338 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339}
340
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300341static int acpi_battery_get_state(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342{
Len Brown4be44fc2005-08-05 00:44:28 -0400343 int result = 0;
344 acpi_status status = 0;
345 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300347 if (!acpi_battery_present(battery))
348 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400350 if (battery->update_time &&
351 time_before(jiffies, battery->update_time +
352 msecs_to_jiffies(cache_time)))
353 return 0;
354
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400355 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400356 status = acpi_evaluate_object(battery->device->handle, "_BST",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400357 NULL, &buffer);
358 mutex_unlock(&battery->lock);
Len Brown5b31d892007-08-15 00:19:26 -0400359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400361 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BST"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400362 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400364
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400365 result = extract_package(battery, buffer.pointer,
366 state_offsets, ARRAY_SIZE(state_offsets));
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400367 battery->update_time = jiffies;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400368 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -0400369 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370}
371
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400372static int acpi_battery_set_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
Len Brown4be44fc2005-08-05 00:44:28 -0400374 acpi_status status = 0;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400375 union acpi_object arg0 = { .type = ACPI_TYPE_INTEGER };
Len Brown4be44fc2005-08-05 00:44:28 -0400376 struct acpi_object_list arg_list = { 1, &arg0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400378 if (!acpi_battery_present(battery)|| !battery->alarm_present)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300379 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400381 arg0.integer.value = battery->alarm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400383 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400384 status = acpi_evaluate_object(battery->device->handle, "_BTP",
385 &arg_list, NULL);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400386 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400389 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400391 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Alarm set to %d\n", battery->alarm));
Patrick Mocheld550d982006-06-27 00:41:40 -0400392 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393}
394
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300395static int acpi_battery_init_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
Len Brown4be44fc2005-08-05 00:44:28 -0400397 acpi_status status = AE_OK;
398 acpi_handle handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300400 /* See if alarms are supported, and if so, set default */
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400401 status = acpi_get_handle(battery->device->handle, "_BTP", &handle);
402 if (ACPI_FAILURE(status)) {
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400403 battery->alarm_present = 0;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400404 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 }
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400406 battery->alarm_present = 1;
407 if (!battery->alarm)
408 battery->alarm = battery->design_capacity_warning;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400409 return acpi_battery_set_alarm(battery);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410}
411
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500412#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300413static ssize_t acpi_battery_alarm_show(struct device *dev,
414 struct device_attribute *attr,
415 char *buf)
416{
417 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
418 return sprintf(buf, "%d\n", battery->alarm * 1000);
419}
420
421static ssize_t acpi_battery_alarm_store(struct device *dev,
422 struct device_attribute *attr,
423 const char *buf, size_t count)
424{
425 unsigned long x;
426 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
427 if (sscanf(buf, "%ld\n", &x) == 1)
428 battery->alarm = x/1000;
429 if (acpi_battery_present(battery))
430 acpi_battery_set_alarm(battery);
431 return count;
432}
433
434static struct device_attribute alarm_attr = {
435 .attr = {.name = "alarm", .mode = 0644, .owner = THIS_MODULE},
436 .show = acpi_battery_alarm_show,
437 .store = acpi_battery_alarm_store,
438};
439
440static int sysfs_add_battery(struct acpi_battery *battery)
441{
442 int result;
443
Andrey Borzenkov508df922007-10-28 12:50:09 +0300444 if (battery->power_unit) {
445 battery->bat.properties = charge_battery_props;
446 battery->bat.num_properties =
447 ARRAY_SIZE(charge_battery_props);
448 } else {
449 battery->bat.properties = energy_battery_props;
450 battery->bat.num_properties =
451 ARRAY_SIZE(energy_battery_props);
452 }
453
454 battery->bat.name = acpi_device_bid(battery->device);
455 battery->bat.type = POWER_SUPPLY_TYPE_BATTERY;
456 battery->bat.get_property = acpi_battery_get_property;
457
458 result = power_supply_register(&battery->device->dev, &battery->bat);
459 if (result)
460 return result;
461 return device_create_file(battery->bat.dev, &alarm_attr);
462}
463
464static void sysfs_remove_battery(struct acpi_battery *battery)
465{
466 if (!battery->bat.dev)
467 return;
468 device_remove_file(battery->bat.dev, &alarm_attr);
469 power_supply_unregister(&battery->bat);
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300470 battery->bat.dev = NULL;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300471}
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500472#endif
Andrey Borzenkov508df922007-10-28 12:50:09 +0300473
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400474static int acpi_battery_update(struct acpi_battery *battery)
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500475{
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500476 int result;
477 result = acpi_battery_get_status(battery);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300478 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300479 return result;
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500480#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300481 if (!acpi_battery_present(battery)) {
482 sysfs_remove_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500483 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300484 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300485 }
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500486#endif
487 if (!battery->update_time) {
488 result = acpi_battery_get_info(battery);
489 if (result)
490 return result;
491 acpi_battery_init_alarm(battery);
492 }
493#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300494 if (!battery->bat.dev)
495 sysfs_add_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500496#endif
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400497 return acpi_battery_get_state(battery);
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500498}
499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500/* --------------------------------------------------------------------------
501 FS Interface (/proc)
502 -------------------------------------------------------------------------- */
503
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300504#ifdef CONFIG_ACPI_PROCFS_POWER
Len Brown4be44fc2005-08-05 00:44:28 -0400505static struct proc_dir_entry *acpi_battery_dir;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300506
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400507static int acpi_battery_print_info(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200509 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300511 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 goto end;
513
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400514 seq_printf(seq, "present: %s\n",
515 acpi_battery_present(battery)?"yes":"no");
516 if (!acpi_battery_present(battery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 goto end;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400518 if (battery->design_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 seq_printf(seq, "design capacity: unknown\n");
520 else
521 seq_printf(seq, "design capacity: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400522 battery->design_capacity,
523 acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400525 if (battery->full_charge_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 seq_printf(seq, "last full capacity: unknown\n");
527 else
528 seq_printf(seq, "last full capacity: %d %sh\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400529 battery->full_charge_capacity,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400530 acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400532 seq_printf(seq, "battery technology: %srechargeable\n",
533 (!battery->technology)?"non-":"");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400535 if (battery->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 seq_printf(seq, "design voltage: unknown\n");
537 else
538 seq_printf(seq, "design voltage: %d mV\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400539 battery->design_voltage);
Len Brown4be44fc2005-08-05 00:44:28 -0400540 seq_printf(seq, "design capacity warning: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400541 battery->design_capacity_warning,
542 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400543 seq_printf(seq, "design capacity low: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400544 battery->design_capacity_low,
545 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400546 seq_printf(seq, "capacity granularity 1: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400547 battery->capacity_granularity_1,
548 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400549 seq_printf(seq, "capacity granularity 2: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400550 battery->capacity_granularity_2,
551 acpi_battery_units(battery));
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400552 seq_printf(seq, "model number: %s\n", battery->model_number);
553 seq_printf(seq, "serial number: %s\n", battery->serial_number);
554 seq_printf(seq, "battery type: %s\n", battery->type);
555 seq_printf(seq, "OEM info: %s\n", battery->oem_info);
Len Brown4be44fc2005-08-05 00:44:28 -0400556 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300557 if (result)
558 seq_printf(seq, "ERROR: Unable to read battery info\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300559 return result;
560}
561
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400562static int acpi_battery_print_state(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200564 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300566 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 goto end;
568
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400569 seq_printf(seq, "present: %s\n",
570 acpi_battery_present(battery)?"yes":"no");
571 if (!acpi_battery_present(battery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400574 seq_printf(seq, "capacity state: %s\n",
575 (battery->state & 0x04)?"critical":"ok");
576 if ((battery->state & 0x01) && (battery->state & 0x02))
Len Brown4be44fc2005-08-05 00:44:28 -0400577 seq_printf(seq,
578 "charging state: charging/discharging\n");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400579 else if (battery->state & 0x01)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 seq_printf(seq, "charging state: discharging\n");
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400581 else if (battery->state & 0x02)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 seq_printf(seq, "charging state: charging\n");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400583 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 seq_printf(seq, "charging state: charged\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400586 if (battery->current_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 seq_printf(seq, "present rate: unknown\n");
588 else
589 seq_printf(seq, "present rate: %d %s\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400590 battery->current_now, acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400592 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 seq_printf(seq, "remaining capacity: unknown\n");
594 else
595 seq_printf(seq, "remaining capacity: %d %sh\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400596 battery->capacity_now, acpi_battery_units(battery));
597 if (battery->voltage_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 seq_printf(seq, "present voltage: unknown\n");
599 else
600 seq_printf(seq, "present voltage: %d mV\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400601 battery->voltage_now);
Len Brown4be44fc2005-08-05 00:44:28 -0400602 end:
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400603 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300604 seq_printf(seq, "ERROR: Unable to read battery state\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300605
606 return result;
607}
608
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400609static int acpi_battery_print_alarm(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200611 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300613 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 goto end;
615
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300616 if (!acpi_battery_present(battery)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 seq_printf(seq, "present: no\n");
618 goto end;
619 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 seq_printf(seq, "alarm: ");
621 if (!battery->alarm)
622 seq_printf(seq, "unsupported\n");
623 else
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400624 seq_printf(seq, "%u %sh\n", battery->alarm,
625 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400626 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300627 if (result)
628 seq_printf(seq, "ERROR: Unable to read battery alarm\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300629 return result;
630}
631
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400632static ssize_t acpi_battery_write_alarm(struct file *file,
633 const char __user * buffer,
634 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
Len Brown4be44fc2005-08-05 00:44:28 -0400636 int result = 0;
637 char alarm_string[12] = { '\0' };
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200638 struct seq_file *m = file->private_data;
639 struct acpi_battery *battery = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 if (!battery || (count > sizeof(alarm_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -0400642 return -EINVAL;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300643 if (!acpi_battery_present(battery)) {
644 result = -ENODEV;
645 goto end;
646 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300647 if (copy_from_user(alarm_string, buffer, count)) {
648 result = -EFAULT;
649 goto end;
650 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 alarm_string[count] = '\0';
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400652 battery->alarm = simple_strtol(alarm_string, NULL, 0);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400653 result = acpi_battery_set_alarm(battery);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300654 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300655 if (!result)
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400656 return count;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300657 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658}
659
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400660typedef int(*print_func)(struct seq_file *seq, int result);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400661
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400662static print_func acpi_print_funcs[ACPI_BATTERY_NUMFILES] = {
663 acpi_battery_print_info,
664 acpi_battery_print_state,
665 acpi_battery_print_alarm,
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400666};
667
668static int acpi_battery_read(int fid, struct seq_file *seq)
669{
670 struct acpi_battery *battery = seq->private;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400671 int result = acpi_battery_update(battery);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400672 return acpi_print_funcs[fid](seq, result);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400673}
674
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400675#define DECLARE_FILE_FUNCTIONS(_name) \
676static int acpi_battery_read_##_name(struct seq_file *seq, void *offset) \
677{ \
678 return acpi_battery_read(_name##_tag, seq); \
679} \
680static int acpi_battery_##_name##_open_fs(struct inode *inode, struct file *file) \
681{ \
682 return single_open(file, acpi_battery_read_##_name, PDE(inode)->data); \
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400683}
684
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400685DECLARE_FILE_FUNCTIONS(info);
686DECLARE_FILE_FUNCTIONS(state);
687DECLARE_FILE_FUNCTIONS(alarm);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400688
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400689#undef DECLARE_FILE_FUNCTIONS
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400690
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400691#define FILE_DESCRIPTION_RO(_name) \
692 { \
693 .name = __stringify(_name), \
694 .mode = S_IRUGO, \
695 .ops = { \
696 .open = acpi_battery_##_name##_open_fs, \
697 .read = seq_read, \
698 .llseek = seq_lseek, \
699 .release = single_release, \
700 .owner = THIS_MODULE, \
701 }, \
702 }
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400703
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400704#define FILE_DESCRIPTION_RW(_name) \
705 { \
706 .name = __stringify(_name), \
707 .mode = S_IFREG | S_IRUGO | S_IWUSR, \
708 .ops = { \
709 .open = acpi_battery_##_name##_open_fs, \
710 .read = seq_read, \
711 .llseek = seq_lseek, \
712 .write = acpi_battery_write_##_name, \
713 .release = single_release, \
714 .owner = THIS_MODULE, \
715 }, \
716 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400718static struct battery_file {
719 struct file_operations ops;
720 mode_t mode;
721 char *name;
722} acpi_battery_file[] = {
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400723 FILE_DESCRIPTION_RO(info),
724 FILE_DESCRIPTION_RO(state),
725 FILE_DESCRIPTION_RW(alarm),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726};
727
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400728#undef FILE_DESCRIPTION_RO
729#undef FILE_DESCRIPTION_RW
730
Len Brown4be44fc2005-08-05 00:44:28 -0400731static int acpi_battery_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732{
Len Brown4be44fc2005-08-05 00:44:28 -0400733 struct proc_dir_entry *entry = NULL;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400734 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 if (!acpi_device_dir(device)) {
737 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400738 acpi_battery_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400740 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 acpi_device_dir(device)->owner = THIS_MODULE;
742 }
743
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400744 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i) {
745 entry = create_proc_entry(acpi_battery_file[i].name,
746 acpi_battery_file[i].mode, acpi_device_dir(device));
747 if (!entry)
748 return -ENODEV;
749 else {
750 entry->proc_fops = &acpi_battery_file[i].ops;
751 entry->data = acpi_driver_data(device);
752 entry->owner = THIS_MODULE;
753 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400755 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756}
757
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400758static void acpi_battery_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759{
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400760 int i;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400761 if (!acpi_device_dir(device))
762 return;
763 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i)
764 remove_proc_entry(acpi_battery_file[i].name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400767 remove_proc_entry(acpi_device_bid(device), acpi_battery_dir);
768 acpi_device_dir(device) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769}
770
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400771#endif
Alexey Starikovskiy3e58ea02007-09-26 19:43:11 +0400772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773/* --------------------------------------------------------------------------
774 Driver Interface
775 -------------------------------------------------------------------------- */
776
Len Brown4be44fc2005-08-05 00:44:28 -0400777static void acpi_battery_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200779 struct acpi_battery *battery = data;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400780 struct acpi_device *device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -0400782 return;
Patrick Mochel145def82006-05-19 16:54:39 -0400783 device = battery->device;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400784 acpi_battery_update(battery);
785 acpi_bus_generate_proc_event(device, event,
786 acpi_battery_present(battery));
787 acpi_bus_generate_netlink_event(device->pnp.device_class,
788 device->dev.bus_id, event,
Vladimir Lebedev9ea7d572007-02-20 15:48:06 +0300789 acpi_battery_present(battery));
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500790#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300791 /* acpi_batter_update could remove power_supply object */
792 if (battery->bat.dev)
793 kobject_uevent(&battery->bat.dev->kobj, KOBJ_CHANGE);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500794#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795}
796
Len Brown4be44fc2005-08-05 00:44:28 -0400797static int acpi_battery_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798{
Len Brown4be44fc2005-08-05 00:44:28 -0400799 int result = 0;
800 acpi_status status = 0;
801 struct acpi_battery *battery = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400803 return -EINVAL;
Burman Yan36bcbec2006-12-19 12:56:11 -0800804 battery = kzalloc(sizeof(struct acpi_battery), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -0400806 return -ENOMEM;
Patrick Mochel145def82006-05-19 16:54:39 -0400807 battery->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 strcpy(acpi_device_name(device), ACPI_BATTERY_DEVICE_NAME);
809 strcpy(acpi_device_class(device), ACPI_BATTERY_CLASS);
810 acpi_driver_data(device) = battery;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400811 mutex_init(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400812 acpi_battery_update(battery);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300813#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 result = acpi_battery_add_fs(device);
815 if (result)
816 goto end;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400817#endif
Patrick Mochel3b073ec2006-05-19 16:54:41 -0400818 status = acpi_install_notify_handler(device->handle,
Vladimir Lebedev9fdae722006-06-27 04:49:00 -0400819 ACPI_ALL_NOTIFY,
Len Brown4be44fc2005-08-05 00:44:28 -0400820 acpi_battery_notify, battery);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 if (ACPI_FAILURE(status)) {
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300822 ACPI_EXCEPTION((AE_INFO, status, "Installing notify handler"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 result = -ENODEV;
824 goto end;
825 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 printk(KERN_INFO PREFIX "%s Slot [%s] (battery %s)\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400827 ACPI_BATTERY_DEVICE_NAME, acpi_device_bid(device),
828 device->status.battery_present ? "present" : "absent");
Len Brown4be44fc2005-08-05 00:44:28 -0400829 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 if (result) {
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300831#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 acpi_battery_remove_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400833#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 kfree(battery);
835 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400836 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837}
838
Len Brown4be44fc2005-08-05 00:44:28 -0400839static int acpi_battery_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840{
Len Brown4be44fc2005-08-05 00:44:28 -0400841 acpi_status status = 0;
842 struct acpi_battery *battery = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400845 return -EINVAL;
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200846 battery = acpi_driver_data(device);
Patrick Mochel3b073ec2006-05-19 16:54:41 -0400847 status = acpi_remove_notify_handler(device->handle,
Vladimir Lebedev9fdae722006-06-27 04:49:00 -0400848 ACPI_ALL_NOTIFY,
Len Brown4be44fc2005-08-05 00:44:28 -0400849 acpi_battery_notify);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300850#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 acpi_battery_remove_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400852#endif
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500853#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300854 sysfs_remove_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500855#endif
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400856 mutex_destroy(&battery->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 kfree(battery);
Patrick Mocheld550d982006-06-27 00:41:40 -0400858 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859}
860
Jiri Kosina34c44152006-10-10 14:20:41 -0700861/* this is needed to learn about changes made in suspended state */
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800862static int acpi_battery_resume(struct acpi_device *device)
Jiri Kosina34c44152006-10-10 14:20:41 -0700863{
864 struct acpi_battery *battery;
Jiri Kosina34c44152006-10-10 14:20:41 -0700865 if (!device)
866 return -EINVAL;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400867 battery = acpi_driver_data(device);
868 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300869 acpi_battery_update(battery);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300870 return 0;
Jiri Kosina34c44152006-10-10 14:20:41 -0700871}
872
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400873static struct acpi_driver acpi_battery_driver = {
874 .name = "battery",
875 .class = ACPI_BATTERY_CLASS,
876 .ids = battery_device_ids,
877 .ops = {
878 .add = acpi_battery_add,
879 .resume = acpi_battery_resume,
880 .remove = acpi_battery_remove,
881 },
882};
883
Len Brown4be44fc2005-08-05 00:44:28 -0400884static int __init acpi_battery_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885{
Pavel Machek4d8316d2006-08-14 22:37:22 -0700886 if (acpi_disabled)
887 return -ENODEV;
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300888#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400889 acpi_battery_dir = acpi_lock_battery_dir();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 if (!acpi_battery_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -0400891 return -ENODEV;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400892#endif
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400893 if (acpi_bus_register_driver(&acpi_battery_driver) < 0) {
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300894#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400895 acpi_unlock_battery_dir(acpi_battery_dir);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400896#endif
Patrick Mocheld550d982006-06-27 00:41:40 -0400897 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400899 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900}
901
Len Brown4be44fc2005-08-05 00:44:28 -0400902static void __exit acpi_battery_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 acpi_bus_unregister_driver(&acpi_battery_driver);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300905#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400906 acpi_unlock_battery_dir(acpi_battery_dir);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400907#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908}
909
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910module_init(acpi_battery_init);
911module_exit(acpi_battery_exit);