blob: 8f7505d304b58790c077e4bc257380eccf523117 [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 Starikovskiyd7380962007-09-26 19:43:04 +040043#include <linux/power_supply.h>
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#define ACPI_BATTERY_VALUE_UNKNOWN 0xFFFFFFFF
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#define ACPI_BATTERY_COMPONENT 0x00040000
48#define ACPI_BATTERY_CLASS "battery"
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define ACPI_BATTERY_DEVICE_NAME "Battery"
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#define ACPI_BATTERY_NOTIFY_STATUS 0x80
51#define ACPI_BATTERY_NOTIFY_INFO 0x81
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define _COMPONENT ACPI_BATTERY_COMPONENT
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +030054
Len Brownf52fd662007-02-12 22:42:12 -050055ACPI_MODULE_NAME("battery");
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Len Brownf52fd662007-02-12 22:42:12 -050057MODULE_AUTHOR("Paul Diefenbaugh");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +040058MODULE_AUTHOR("Alexey Starikovskiy <astarikovskiy@suse.de>");
Len Brown7cda93e2007-02-12 23:50:02 -050059MODULE_DESCRIPTION("ACPI Battery Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070060MODULE_LICENSE("GPL");
61
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +040062static unsigned int cache_time = 1000;
63module_param(cache_time, uint, 0644);
64MODULE_PARM_DESC(cache_time, "cache time in milliseconds");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +030065
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +030066#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -040067extern struct proc_dir_entry *acpi_lock_battery_dir(void);
68extern void *acpi_unlock_battery_dir(struct proc_dir_entry *acpi_battery_dir);
69
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040070enum acpi_battery_files {
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +040071 info_tag = 0,
72 state_tag,
73 alarm_tag,
Alexey Starikovskiy78490d82007-05-11 13:18:55 -040074 ACPI_BATTERY_NUMFILES,
75};
76
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040077#endif
78
79static const struct acpi_device_id battery_device_ids[] = {
80 {"PNP0C0A", 0},
81 {"", 0},
82};
83
84MODULE_DEVICE_TABLE(acpi, battery_device_ids);
85
86
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040087struct acpi_battery {
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040088 struct mutex lock;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040089 struct power_supply bat;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +040090 struct acpi_device *device;
91 unsigned long update_time;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040092 int current_now;
93 int capacity_now;
94 int voltage_now;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040095 int design_capacity;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040096 int full_charge_capacity;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040097 int technology;
98 int design_voltage;
99 int design_capacity_warning;
100 int design_capacity_low;
101 int capacity_granularity_1;
102 int capacity_granularity_2;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400103 int alarm;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400104 char model_number[32];
105 char serial_number[32];
106 char type[32];
107 char oem_info[32];
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400108 int state;
109 int power_unit;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300110 u8 alarm_present;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111};
112
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400113#define to_acpi_battery(x) container_of(x, struct acpi_battery, bat);
114
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400115inline int acpi_battery_present(struct acpi_battery *battery)
116{
117 return battery->device->status.battery_present;
118}
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400119
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400120static int acpi_battery_technology(struct acpi_battery *battery)
121{
122 if (!strcasecmp("NiCd", battery->type))
123 return POWER_SUPPLY_TECHNOLOGY_NiCd;
124 if (!strcasecmp("NiMH", battery->type))
125 return POWER_SUPPLY_TECHNOLOGY_NiMH;
126 if (!strcasecmp("LION", battery->type))
127 return POWER_SUPPLY_TECHNOLOGY_LION;
Andrey Borzenkovad40e682007-11-10 20:02:49 +0300128 if (!strncasecmp("LI-ION", battery->type, 6))
Alexey Starikovskiy0bde7ee2007-10-28 15:33:10 +0300129 return POWER_SUPPLY_TECHNOLOGY_LION;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400130 if (!strcasecmp("LiP", battery->type))
131 return POWER_SUPPLY_TECHNOLOGY_LIPO;
132 return POWER_SUPPLY_TECHNOLOGY_UNKNOWN;
133}
134
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300135static int acpi_battery_get_state(struct acpi_battery *battery);
Alexey Starikovskiyb19073a2007-10-25 17:10:47 -0400136
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400137static int acpi_battery_get_property(struct power_supply *psy,
138 enum power_supply_property psp,
139 union power_supply_propval *val)
140{
141 struct acpi_battery *battery = to_acpi_battery(psy);
142
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300143 if (acpi_battery_present(battery)) {
144 /* run battery update only if it is present */
145 acpi_battery_get_state(battery);
146 } else if (psp != POWER_SUPPLY_PROP_PRESENT)
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400147 return -ENODEV;
148 switch (psp) {
149 case POWER_SUPPLY_PROP_STATUS:
150 if (battery->state & 0x01)
151 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
152 else if (battery->state & 0x02)
153 val->intval = POWER_SUPPLY_STATUS_CHARGING;
154 else if (battery->state == 0)
155 val->intval = POWER_SUPPLY_STATUS_FULL;
Roland Dreier4c41d3a2007-11-07 15:09:09 -0800156 else
157 val->intval = POWER_SUPPLY_STATUS_UNKNOWN;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400158 break;
159 case POWER_SUPPLY_PROP_PRESENT:
160 val->intval = acpi_battery_present(battery);
161 break;
162 case POWER_SUPPLY_PROP_TECHNOLOGY:
163 val->intval = acpi_battery_technology(battery);
164 break;
165 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
166 val->intval = battery->design_voltage * 1000;
167 break;
168 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
169 val->intval = battery->voltage_now * 1000;
170 break;
171 case POWER_SUPPLY_PROP_CURRENT_NOW:
172 val->intval = battery->current_now * 1000;
173 break;
174 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
175 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
176 val->intval = battery->design_capacity * 1000;
177 break;
178 case POWER_SUPPLY_PROP_CHARGE_FULL:
179 case POWER_SUPPLY_PROP_ENERGY_FULL:
180 val->intval = battery->full_charge_capacity * 1000;
181 break;
182 case POWER_SUPPLY_PROP_CHARGE_NOW:
183 case POWER_SUPPLY_PROP_ENERGY_NOW:
184 val->intval = battery->capacity_now * 1000;
185 break;
186 case POWER_SUPPLY_PROP_MODEL_NAME:
187 val->strval = battery->model_number;
188 break;
189 case POWER_SUPPLY_PROP_MANUFACTURER:
190 val->strval = battery->oem_info;
191 break;
192 default:
193 return -EINVAL;
194 }
195 return 0;
196}
197
198static enum power_supply_property charge_battery_props[] = {
199 POWER_SUPPLY_PROP_STATUS,
200 POWER_SUPPLY_PROP_PRESENT,
201 POWER_SUPPLY_PROP_TECHNOLOGY,
202 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
203 POWER_SUPPLY_PROP_VOLTAGE_NOW,
204 POWER_SUPPLY_PROP_CURRENT_NOW,
205 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
206 POWER_SUPPLY_PROP_CHARGE_FULL,
207 POWER_SUPPLY_PROP_CHARGE_NOW,
208 POWER_SUPPLY_PROP_MODEL_NAME,
209 POWER_SUPPLY_PROP_MANUFACTURER,
210};
211
212static enum power_supply_property energy_battery_props[] = {
213 POWER_SUPPLY_PROP_STATUS,
214 POWER_SUPPLY_PROP_PRESENT,
215 POWER_SUPPLY_PROP_TECHNOLOGY,
216 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
217 POWER_SUPPLY_PROP_VOLTAGE_NOW,
218 POWER_SUPPLY_PROP_CURRENT_NOW,
219 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN,
220 POWER_SUPPLY_PROP_ENERGY_FULL,
221 POWER_SUPPLY_PROP_ENERGY_NOW,
222 POWER_SUPPLY_PROP_MODEL_NAME,
223 POWER_SUPPLY_PROP_MANUFACTURER,
224};
225
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300226#ifdef CONFIG_ACPI_PROCFS_POWER
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400227inline char *acpi_battery_units(struct acpi_battery *battery)
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400228{
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400229 return (battery->power_unit)?"mA":"mW";
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400230}
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400231#endif
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233/* --------------------------------------------------------------------------
234 Battery Management
235 -------------------------------------------------------------------------- */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400236struct acpi_offsets {
237 size_t offset; /* offset inside struct acpi_sbs_battery */
238 u8 mode; /* int or string? */
239};
240
241static struct acpi_offsets state_offsets[] = {
242 {offsetof(struct acpi_battery, state), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400243 {offsetof(struct acpi_battery, current_now), 0},
244 {offsetof(struct acpi_battery, capacity_now), 0},
245 {offsetof(struct acpi_battery, voltage_now), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400246};
247
248static struct acpi_offsets info_offsets[] = {
249 {offsetof(struct acpi_battery, power_unit), 0},
250 {offsetof(struct acpi_battery, design_capacity), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400251 {offsetof(struct acpi_battery, full_charge_capacity), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400252 {offsetof(struct acpi_battery, technology), 0},
253 {offsetof(struct acpi_battery, design_voltage), 0},
254 {offsetof(struct acpi_battery, design_capacity_warning), 0},
255 {offsetof(struct acpi_battery, design_capacity_low), 0},
256 {offsetof(struct acpi_battery, capacity_granularity_1), 0},
257 {offsetof(struct acpi_battery, capacity_granularity_2), 0},
258 {offsetof(struct acpi_battery, model_number), 1},
259 {offsetof(struct acpi_battery, serial_number), 1},
260 {offsetof(struct acpi_battery, type), 1},
261 {offsetof(struct acpi_battery, oem_info), 1},
262};
263
264static int extract_package(struct acpi_battery *battery,
265 union acpi_object *package,
266 struct acpi_offsets *offsets, int num)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300267{
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300268 int i;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400269 union acpi_object *element;
270 if (package->type != ACPI_TYPE_PACKAGE)
271 return -EFAULT;
272 for (i = 0; i < num; ++i) {
273 if (package->package.count <= i)
274 return -EFAULT;
275 element = &package->package.elements[i];
276 if (offsets[i].mode) {
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300277 u8 *ptr = (u8 *)battery + offsets[i].offset;
278 if (element->type == ACPI_TYPE_STRING ||
279 element->type == ACPI_TYPE_BUFFER)
280 strncpy(ptr, element->string.pointer, 32);
281 else if (element->type == ACPI_TYPE_INTEGER) {
282 strncpy(ptr, (u8 *)&element->integer.value,
283 sizeof(acpi_integer));
284 ptr[sizeof(acpi_integer)] = 0;
285 } else return -EFAULT;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400286 } else {
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300287 if (element->type == ACPI_TYPE_INTEGER) {
288 int *x = (int *)((u8 *)battery +
289 offsets[i].offset);
290 *x = element->integer.value;
291 } else return -EFAULT;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300292 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300293 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300294 return 0;
295}
296
297static int acpi_battery_get_status(struct acpi_battery *battery)
298{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400299 if (acpi_bus_get_status(battery->device)) {
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300300 ACPI_EXCEPTION((AE_INFO, AE_ERROR, "Evaluating _STA"));
301 return -ENODEV;
302 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400303 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300304}
305
306static int acpi_battery_get_info(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400308 int result = -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -0400309 acpi_status status = 0;
310 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300312 if (!acpi_battery_present(battery))
313 return 0;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400314 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400315 status = acpi_evaluate_object(battery->device->handle, "_BIF",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400316 NULL, &buffer);
317 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400320 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BIF"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400321 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400323
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400324 result = extract_package(battery, buffer.pointer,
325 info_offsets, ARRAY_SIZE(info_offsets));
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400326 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -0400327 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328}
329
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300330static int acpi_battery_get_state(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
Len Brown4be44fc2005-08-05 00:44:28 -0400332 int result = 0;
333 acpi_status status = 0;
334 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300336 if (!acpi_battery_present(battery))
337 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400339 if (battery->update_time &&
340 time_before(jiffies, battery->update_time +
341 msecs_to_jiffies(cache_time)))
342 return 0;
343
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400344 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400345 status = acpi_evaluate_object(battery->device->handle, "_BST",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400346 NULL, &buffer);
347 mutex_unlock(&battery->lock);
Len Brown5b31d892007-08-15 00:19:26 -0400348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400350 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BST"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400351 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400353
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400354 result = extract_package(battery, buffer.pointer,
355 state_offsets, ARRAY_SIZE(state_offsets));
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400356 battery->update_time = jiffies;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400357 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -0400358 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359}
360
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400361static int acpi_battery_set_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
Len Brown4be44fc2005-08-05 00:44:28 -0400363 acpi_status status = 0;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400364 union acpi_object arg0 = { .type = ACPI_TYPE_INTEGER };
Len Brown4be44fc2005-08-05 00:44:28 -0400365 struct acpi_object_list arg_list = { 1, &arg0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400367 if (!acpi_battery_present(battery)|| !battery->alarm_present)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300368 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400370 arg0.integer.value = battery->alarm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400372 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400373 status = acpi_evaluate_object(battery->device->handle, "_BTP",
374 &arg_list, NULL);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400375 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400378 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400380 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Alarm set to %d\n", battery->alarm));
Patrick Mocheld550d982006-06-27 00:41:40 -0400381 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382}
383
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300384static int acpi_battery_init_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
Len Brown4be44fc2005-08-05 00:44:28 -0400386 acpi_status status = AE_OK;
387 acpi_handle handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300389 /* See if alarms are supported, and if so, set default */
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400390 status = acpi_get_handle(battery->device->handle, "_BTP", &handle);
391 if (ACPI_FAILURE(status)) {
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400392 battery->alarm_present = 0;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400393 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 }
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400395 battery->alarm_present = 1;
396 if (!battery->alarm)
397 battery->alarm = battery->design_capacity_warning;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400398 return acpi_battery_set_alarm(battery);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399}
400
Andrey Borzenkov508df922007-10-28 12:50:09 +0300401static ssize_t acpi_battery_alarm_show(struct device *dev,
402 struct device_attribute *attr,
403 char *buf)
404{
405 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
406 return sprintf(buf, "%d\n", battery->alarm * 1000);
407}
408
409static ssize_t acpi_battery_alarm_store(struct device *dev,
410 struct device_attribute *attr,
411 const char *buf, size_t count)
412{
413 unsigned long x;
414 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
415 if (sscanf(buf, "%ld\n", &x) == 1)
416 battery->alarm = x/1000;
417 if (acpi_battery_present(battery))
418 acpi_battery_set_alarm(battery);
419 return count;
420}
421
422static struct device_attribute alarm_attr = {
423 .attr = {.name = "alarm", .mode = 0644, .owner = THIS_MODULE},
424 .show = acpi_battery_alarm_show,
425 .store = acpi_battery_alarm_store,
426};
427
428static int sysfs_add_battery(struct acpi_battery *battery)
429{
430 int result;
431
432 battery->update_time = 0;
433 result = acpi_battery_get_info(battery);
434 acpi_battery_init_alarm(battery);
435 if (result)
436 return result;
437 if (battery->power_unit) {
438 battery->bat.properties = charge_battery_props;
439 battery->bat.num_properties =
440 ARRAY_SIZE(charge_battery_props);
441 } else {
442 battery->bat.properties = energy_battery_props;
443 battery->bat.num_properties =
444 ARRAY_SIZE(energy_battery_props);
445 }
446
447 battery->bat.name = acpi_device_bid(battery->device);
448 battery->bat.type = POWER_SUPPLY_TYPE_BATTERY;
449 battery->bat.get_property = acpi_battery_get_property;
450
451 result = power_supply_register(&battery->device->dev, &battery->bat);
452 if (result)
453 return result;
454 return device_create_file(battery->bat.dev, &alarm_attr);
455}
456
457static void sysfs_remove_battery(struct acpi_battery *battery)
458{
459 if (!battery->bat.dev)
460 return;
461 device_remove_file(battery->bat.dev, &alarm_attr);
462 power_supply_unregister(&battery->bat);
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300463 battery->bat.dev = NULL;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300464}
465
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400466static int acpi_battery_update(struct acpi_battery *battery)
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500467{
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400468 int result = acpi_battery_get_status(battery);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300469 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300470 return result;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300471 if (!acpi_battery_present(battery)) {
472 sysfs_remove_battery(battery);
473 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300474 }
Andrey Borzenkov508df922007-10-28 12:50:09 +0300475 if (!battery->bat.dev)
476 sysfs_add_battery(battery);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400477 return acpi_battery_get_state(battery);
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500478}
479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480/* --------------------------------------------------------------------------
481 FS Interface (/proc)
482 -------------------------------------------------------------------------- */
483
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300484#ifdef CONFIG_ACPI_PROCFS_POWER
Len Brown4be44fc2005-08-05 00:44:28 -0400485static struct proc_dir_entry *acpi_battery_dir;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300486
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400487static int acpi_battery_print_info(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200489 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300491 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 goto end;
493
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400494 seq_printf(seq, "present: %s\n",
495 acpi_battery_present(battery)?"yes":"no");
496 if (!acpi_battery_present(battery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 goto end;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400498 if (battery->design_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 seq_printf(seq, "design capacity: unknown\n");
500 else
501 seq_printf(seq, "design capacity: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400502 battery->design_capacity,
503 acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400505 if (battery->full_charge_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 seq_printf(seq, "last full capacity: unknown\n");
507 else
508 seq_printf(seq, "last full capacity: %d %sh\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400509 battery->full_charge_capacity,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400510 acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400512 seq_printf(seq, "battery technology: %srechargeable\n",
513 (!battery->technology)?"non-":"");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400515 if (battery->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 seq_printf(seq, "design voltage: unknown\n");
517 else
518 seq_printf(seq, "design voltage: %d mV\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400519 battery->design_voltage);
Len Brown4be44fc2005-08-05 00:44:28 -0400520 seq_printf(seq, "design capacity warning: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400521 battery->design_capacity_warning,
522 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400523 seq_printf(seq, "design capacity low: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400524 battery->design_capacity_low,
525 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400526 seq_printf(seq, "capacity granularity 1: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400527 battery->capacity_granularity_1,
528 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400529 seq_printf(seq, "capacity granularity 2: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400530 battery->capacity_granularity_2,
531 acpi_battery_units(battery));
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400532 seq_printf(seq, "model number: %s\n", battery->model_number);
533 seq_printf(seq, "serial number: %s\n", battery->serial_number);
534 seq_printf(seq, "battery type: %s\n", battery->type);
535 seq_printf(seq, "OEM info: %s\n", battery->oem_info);
Len Brown4be44fc2005-08-05 00:44:28 -0400536 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300537 if (result)
538 seq_printf(seq, "ERROR: Unable to read battery info\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300539 return result;
540}
541
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400542static int acpi_battery_print_state(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200544 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300546 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 goto end;
548
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400549 seq_printf(seq, "present: %s\n",
550 acpi_battery_present(battery)?"yes":"no");
551 if (!acpi_battery_present(battery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400554 seq_printf(seq, "capacity state: %s\n",
555 (battery->state & 0x04)?"critical":"ok");
556 if ((battery->state & 0x01) && (battery->state & 0x02))
Len Brown4be44fc2005-08-05 00:44:28 -0400557 seq_printf(seq,
558 "charging state: charging/discharging\n");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400559 else if (battery->state & 0x01)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 seq_printf(seq, "charging state: discharging\n");
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400561 else if (battery->state & 0x02)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 seq_printf(seq, "charging state: charging\n");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400563 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 seq_printf(seq, "charging state: charged\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400566 if (battery->current_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 seq_printf(seq, "present rate: unknown\n");
568 else
569 seq_printf(seq, "present rate: %d %s\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400570 battery->current_now, acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400572 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 seq_printf(seq, "remaining capacity: unknown\n");
574 else
575 seq_printf(seq, "remaining capacity: %d %sh\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400576 battery->capacity_now, acpi_battery_units(battery));
577 if (battery->voltage_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 seq_printf(seq, "present voltage: unknown\n");
579 else
580 seq_printf(seq, "present voltage: %d mV\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400581 battery->voltage_now);
Len Brown4be44fc2005-08-05 00:44:28 -0400582 end:
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400583 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300584 seq_printf(seq, "ERROR: Unable to read battery state\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300585
586 return result;
587}
588
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400589static int acpi_battery_print_alarm(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200591 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300593 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 goto end;
595
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300596 if (!acpi_battery_present(battery)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 seq_printf(seq, "present: no\n");
598 goto end;
599 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 seq_printf(seq, "alarm: ");
601 if (!battery->alarm)
602 seq_printf(seq, "unsupported\n");
603 else
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400604 seq_printf(seq, "%u %sh\n", battery->alarm,
605 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400606 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300607 if (result)
608 seq_printf(seq, "ERROR: Unable to read battery alarm\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300609 return result;
610}
611
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400612static ssize_t acpi_battery_write_alarm(struct file *file,
613 const char __user * buffer,
614 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615{
Len Brown4be44fc2005-08-05 00:44:28 -0400616 int result = 0;
617 char alarm_string[12] = { '\0' };
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200618 struct seq_file *m = file->private_data;
619 struct acpi_battery *battery = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 if (!battery || (count > sizeof(alarm_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -0400622 return -EINVAL;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300623 if (!acpi_battery_present(battery)) {
624 result = -ENODEV;
625 goto end;
626 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300627 if (copy_from_user(alarm_string, buffer, count)) {
628 result = -EFAULT;
629 goto end;
630 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 alarm_string[count] = '\0';
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400632 battery->alarm = simple_strtol(alarm_string, NULL, 0);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400633 result = acpi_battery_set_alarm(battery);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300634 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300635 if (!result)
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400636 return count;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300637 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638}
639
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400640typedef int(*print_func)(struct seq_file *seq, int result);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400641
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400642static print_func acpi_print_funcs[ACPI_BATTERY_NUMFILES] = {
643 acpi_battery_print_info,
644 acpi_battery_print_state,
645 acpi_battery_print_alarm,
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400646};
647
648static int acpi_battery_read(int fid, struct seq_file *seq)
649{
650 struct acpi_battery *battery = seq->private;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400651 int result = acpi_battery_update(battery);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400652 return acpi_print_funcs[fid](seq, result);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400653}
654
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400655#define DECLARE_FILE_FUNCTIONS(_name) \
656static int acpi_battery_read_##_name(struct seq_file *seq, void *offset) \
657{ \
658 return acpi_battery_read(_name##_tag, seq); \
659} \
660static int acpi_battery_##_name##_open_fs(struct inode *inode, struct file *file) \
661{ \
662 return single_open(file, acpi_battery_read_##_name, PDE(inode)->data); \
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400663}
664
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400665DECLARE_FILE_FUNCTIONS(info);
666DECLARE_FILE_FUNCTIONS(state);
667DECLARE_FILE_FUNCTIONS(alarm);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400668
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400669#undef DECLARE_FILE_FUNCTIONS
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400670
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400671#define FILE_DESCRIPTION_RO(_name) \
672 { \
673 .name = __stringify(_name), \
674 .mode = S_IRUGO, \
675 .ops = { \
676 .open = acpi_battery_##_name##_open_fs, \
677 .read = seq_read, \
678 .llseek = seq_lseek, \
679 .release = single_release, \
680 .owner = THIS_MODULE, \
681 }, \
682 }
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400683
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400684#define FILE_DESCRIPTION_RW(_name) \
685 { \
686 .name = __stringify(_name), \
687 .mode = S_IFREG | S_IRUGO | S_IWUSR, \
688 .ops = { \
689 .open = acpi_battery_##_name##_open_fs, \
690 .read = seq_read, \
691 .llseek = seq_lseek, \
692 .write = acpi_battery_write_##_name, \
693 .release = single_release, \
694 .owner = THIS_MODULE, \
695 }, \
696 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400698static struct battery_file {
699 struct file_operations ops;
700 mode_t mode;
701 char *name;
702} acpi_battery_file[] = {
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400703 FILE_DESCRIPTION_RO(info),
704 FILE_DESCRIPTION_RO(state),
705 FILE_DESCRIPTION_RW(alarm),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706};
707
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400708#undef FILE_DESCRIPTION_RO
709#undef FILE_DESCRIPTION_RW
710
Len Brown4be44fc2005-08-05 00:44:28 -0400711static int acpi_battery_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
Len Brown4be44fc2005-08-05 00:44:28 -0400713 struct proc_dir_entry *entry = NULL;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400714 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 if (!acpi_device_dir(device)) {
717 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400718 acpi_battery_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400720 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 acpi_device_dir(device)->owner = THIS_MODULE;
722 }
723
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400724 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i) {
725 entry = create_proc_entry(acpi_battery_file[i].name,
726 acpi_battery_file[i].mode, acpi_device_dir(device));
727 if (!entry)
728 return -ENODEV;
729 else {
730 entry->proc_fops = &acpi_battery_file[i].ops;
731 entry->data = acpi_driver_data(device);
732 entry->owner = THIS_MODULE;
733 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400735 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736}
737
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400738static void acpi_battery_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400740 int i;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400741 if (!acpi_device_dir(device))
742 return;
743 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i)
744 remove_proc_entry(acpi_battery_file[i].name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400747 remove_proc_entry(acpi_device_bid(device), acpi_battery_dir);
748 acpi_device_dir(device) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749}
750
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400751#endif
Alexey Starikovskiy3e58ea02007-09-26 19:43:11 +0400752
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753/* --------------------------------------------------------------------------
754 Driver Interface
755 -------------------------------------------------------------------------- */
756
Len Brown4be44fc2005-08-05 00:44:28 -0400757static void acpi_battery_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200759 struct acpi_battery *battery = data;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400760 struct acpi_device *device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -0400762 return;
Patrick Mochel145def82006-05-19 16:54:39 -0400763 device = battery->device;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400764 acpi_battery_update(battery);
765 acpi_bus_generate_proc_event(device, event,
766 acpi_battery_present(battery));
767 acpi_bus_generate_netlink_event(device->pnp.device_class,
768 device->dev.bus_id, event,
Vladimir Lebedev9ea7d572007-02-20 15:48:06 +0300769 acpi_battery_present(battery));
Andrey Borzenkov508df922007-10-28 12:50:09 +0300770 /* acpi_batter_update could remove power_supply object */
771 if (battery->bat.dev)
772 kobject_uevent(&battery->bat.dev->kobj, KOBJ_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773}
774
Len Brown4be44fc2005-08-05 00:44:28 -0400775static int acpi_battery_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776{
Len Brown4be44fc2005-08-05 00:44:28 -0400777 int result = 0;
778 acpi_status status = 0;
779 struct acpi_battery *battery = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400781 return -EINVAL;
Burman Yan36bcbec2006-12-19 12:56:11 -0800782 battery = kzalloc(sizeof(struct acpi_battery), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -0400784 return -ENOMEM;
Patrick Mochel145def82006-05-19 16:54:39 -0400785 battery->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 strcpy(acpi_device_name(device), ACPI_BATTERY_DEVICE_NAME);
787 strcpy(acpi_device_class(device), ACPI_BATTERY_CLASS);
788 acpi_driver_data(device) = battery;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400789 mutex_init(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400790 acpi_battery_update(battery);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300791#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 result = acpi_battery_add_fs(device);
793 if (result)
794 goto end;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400795#endif
Patrick Mochel3b073ec2006-05-19 16:54:41 -0400796 status = acpi_install_notify_handler(device->handle,
Vladimir Lebedev9fdae722006-06-27 04:49:00 -0400797 ACPI_ALL_NOTIFY,
Len Brown4be44fc2005-08-05 00:44:28 -0400798 acpi_battery_notify, battery);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 if (ACPI_FAILURE(status)) {
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300800 ACPI_EXCEPTION((AE_INFO, status, "Installing notify handler"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 result = -ENODEV;
802 goto end;
803 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 printk(KERN_INFO PREFIX "%s Slot [%s] (battery %s)\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400805 ACPI_BATTERY_DEVICE_NAME, acpi_device_bid(device),
806 device->status.battery_present ? "present" : "absent");
Len Brown4be44fc2005-08-05 00:44:28 -0400807 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 if (result) {
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300809#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 acpi_battery_remove_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400811#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 kfree(battery);
813 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400814 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815}
816
Len Brown4be44fc2005-08-05 00:44:28 -0400817static int acpi_battery_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818{
Len Brown4be44fc2005-08-05 00:44:28 -0400819 acpi_status status = 0;
820 struct acpi_battery *battery = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400823 return -EINVAL;
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200824 battery = acpi_driver_data(device);
Patrick Mochel3b073ec2006-05-19 16:54:41 -0400825 status = acpi_remove_notify_handler(device->handle,
Vladimir Lebedev9fdae722006-06-27 04:49:00 -0400826 ACPI_ALL_NOTIFY,
Len Brown4be44fc2005-08-05 00:44:28 -0400827 acpi_battery_notify);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300828#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 acpi_battery_remove_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400830#endif
Andrey Borzenkov508df922007-10-28 12:50:09 +0300831 sysfs_remove_battery(battery);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400832 mutex_destroy(&battery->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 kfree(battery);
Patrick Mocheld550d982006-06-27 00:41:40 -0400834 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835}
836
Jiri Kosina34c44152006-10-10 14:20:41 -0700837/* this is needed to learn about changes made in suspended state */
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800838static int acpi_battery_resume(struct acpi_device *device)
Jiri Kosina34c44152006-10-10 14:20:41 -0700839{
840 struct acpi_battery *battery;
Jiri Kosina34c44152006-10-10 14:20:41 -0700841 if (!device)
842 return -EINVAL;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400843 battery = acpi_driver_data(device);
844 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300845 acpi_battery_update(battery);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300846 return 0;
Jiri Kosina34c44152006-10-10 14:20:41 -0700847}
848
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400849static struct acpi_driver acpi_battery_driver = {
850 .name = "battery",
851 .class = ACPI_BATTERY_CLASS,
852 .ids = battery_device_ids,
853 .ops = {
854 .add = acpi_battery_add,
855 .resume = acpi_battery_resume,
856 .remove = acpi_battery_remove,
857 },
858};
859
Len Brown4be44fc2005-08-05 00:44:28 -0400860static int __init acpi_battery_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861{
Pavel Machek4d8316d2006-08-14 22:37:22 -0700862 if (acpi_disabled)
863 return -ENODEV;
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300864#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400865 acpi_battery_dir = acpi_lock_battery_dir();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 if (!acpi_battery_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -0400867 return -ENODEV;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400868#endif
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400869 if (acpi_bus_register_driver(&acpi_battery_driver) < 0) {
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300870#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400871 acpi_unlock_battery_dir(acpi_battery_dir);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400872#endif
Patrick Mocheld550d982006-06-27 00:41:40 -0400873 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400875 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876}
877
Len Brown4be44fc2005-08-05 00:44:28 -0400878static void __exit acpi_battery_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 acpi_bus_unregister_driver(&acpi_battery_driver);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300881#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400882 acpi_unlock_battery_dir(acpi_battery_dir);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400883#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884}
885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886module_init(acpi_battery_init);
887module_exit(acpi_battery_exit);