blob: 489d3385efe4424087ae227721654b9ff1d6ad85 [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
34#ifdef CONFIG_ACPI_PROCFS
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 Starikovskiyd7380962007-09-26 19:43:04 +040066#ifdef CONFIG_ACPI_PROCFS
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;
128 if (!strcasecmp("LiP", battery->type))
129 return POWER_SUPPLY_TECHNOLOGY_LIPO;
130 return POWER_SUPPLY_TECHNOLOGY_UNKNOWN;
131}
132
Alexey Starikovskiyb19073a2007-10-25 17:10:47 -0400133static int acpi_battery_update(struct acpi_battery *battery);
134
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400135static int acpi_battery_get_property(struct power_supply *psy,
136 enum power_supply_property psp,
137 union power_supply_propval *val)
138{
139 struct acpi_battery *battery = to_acpi_battery(psy);
140
141 if ((!acpi_battery_present(battery)) &&
142 psp != POWER_SUPPLY_PROP_PRESENT)
143 return -ENODEV;
Alexey Starikovskiyb19073a2007-10-25 17:10:47 -0400144 acpi_battery_update(battery);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400145 switch (psp) {
146 case POWER_SUPPLY_PROP_STATUS:
147 if (battery->state & 0x01)
148 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
149 else if (battery->state & 0x02)
150 val->intval = POWER_SUPPLY_STATUS_CHARGING;
151 else if (battery->state == 0)
152 val->intval = POWER_SUPPLY_STATUS_FULL;
153 break;
154 case POWER_SUPPLY_PROP_PRESENT:
155 val->intval = acpi_battery_present(battery);
156 break;
157 case POWER_SUPPLY_PROP_TECHNOLOGY:
158 val->intval = acpi_battery_technology(battery);
159 break;
160 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
161 val->intval = battery->design_voltage * 1000;
162 break;
163 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
164 val->intval = battery->voltage_now * 1000;
165 break;
166 case POWER_SUPPLY_PROP_CURRENT_NOW:
167 val->intval = battery->current_now * 1000;
168 break;
169 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
170 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
171 val->intval = battery->design_capacity * 1000;
172 break;
173 case POWER_SUPPLY_PROP_CHARGE_FULL:
174 case POWER_SUPPLY_PROP_ENERGY_FULL:
175 val->intval = battery->full_charge_capacity * 1000;
176 break;
177 case POWER_SUPPLY_PROP_CHARGE_NOW:
178 case POWER_SUPPLY_PROP_ENERGY_NOW:
179 val->intval = battery->capacity_now * 1000;
180 break;
181 case POWER_SUPPLY_PROP_MODEL_NAME:
182 val->strval = battery->model_number;
183 break;
184 case POWER_SUPPLY_PROP_MANUFACTURER:
185 val->strval = battery->oem_info;
186 break;
187 default:
188 return -EINVAL;
189 }
190 return 0;
191}
192
193static enum power_supply_property charge_battery_props[] = {
194 POWER_SUPPLY_PROP_STATUS,
195 POWER_SUPPLY_PROP_PRESENT,
196 POWER_SUPPLY_PROP_TECHNOLOGY,
197 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
198 POWER_SUPPLY_PROP_VOLTAGE_NOW,
199 POWER_SUPPLY_PROP_CURRENT_NOW,
200 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
201 POWER_SUPPLY_PROP_CHARGE_FULL,
202 POWER_SUPPLY_PROP_CHARGE_NOW,
203 POWER_SUPPLY_PROP_MODEL_NAME,
204 POWER_SUPPLY_PROP_MANUFACTURER,
205};
206
207static enum power_supply_property energy_battery_props[] = {
208 POWER_SUPPLY_PROP_STATUS,
209 POWER_SUPPLY_PROP_PRESENT,
210 POWER_SUPPLY_PROP_TECHNOLOGY,
211 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
212 POWER_SUPPLY_PROP_VOLTAGE_NOW,
213 POWER_SUPPLY_PROP_CURRENT_NOW,
214 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN,
215 POWER_SUPPLY_PROP_ENERGY_FULL,
216 POWER_SUPPLY_PROP_ENERGY_NOW,
217 POWER_SUPPLY_PROP_MODEL_NAME,
218 POWER_SUPPLY_PROP_MANUFACTURER,
219};
220
221#ifdef CONFIG_ACPI_PROCFS
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400222inline char *acpi_battery_units(struct acpi_battery *battery)
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400223{
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400224 return (battery->power_unit)?"mA":"mW";
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400225}
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400226#endif
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228/* --------------------------------------------------------------------------
229 Battery Management
230 -------------------------------------------------------------------------- */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400231struct acpi_offsets {
232 size_t offset; /* offset inside struct acpi_sbs_battery */
233 u8 mode; /* int or string? */
234};
235
236static struct acpi_offsets state_offsets[] = {
237 {offsetof(struct acpi_battery, state), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400238 {offsetof(struct acpi_battery, current_now), 0},
239 {offsetof(struct acpi_battery, capacity_now), 0},
240 {offsetof(struct acpi_battery, voltage_now), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400241};
242
243static struct acpi_offsets info_offsets[] = {
244 {offsetof(struct acpi_battery, power_unit), 0},
245 {offsetof(struct acpi_battery, design_capacity), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400246 {offsetof(struct acpi_battery, full_charge_capacity), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400247 {offsetof(struct acpi_battery, technology), 0},
248 {offsetof(struct acpi_battery, design_voltage), 0},
249 {offsetof(struct acpi_battery, design_capacity_warning), 0},
250 {offsetof(struct acpi_battery, design_capacity_low), 0},
251 {offsetof(struct acpi_battery, capacity_granularity_1), 0},
252 {offsetof(struct acpi_battery, capacity_granularity_2), 0},
253 {offsetof(struct acpi_battery, model_number), 1},
254 {offsetof(struct acpi_battery, serial_number), 1},
255 {offsetof(struct acpi_battery, type), 1},
256 {offsetof(struct acpi_battery, oem_info), 1},
257};
258
259static int extract_package(struct acpi_battery *battery,
260 union acpi_object *package,
261 struct acpi_offsets *offsets, int num)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300262{
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400263 int i, *x;
264 union acpi_object *element;
265 if (package->type != ACPI_TYPE_PACKAGE)
266 return -EFAULT;
267 for (i = 0; i < num; ++i) {
268 if (package->package.count <= i)
269 return -EFAULT;
270 element = &package->package.elements[i];
271 if (offsets[i].mode) {
272 if (element->type != ACPI_TYPE_STRING &&
273 element->type != ACPI_TYPE_BUFFER)
274 return -EFAULT;
275 strncpy((u8 *)battery + offsets[i].offset,
276 element->string.pointer, 32);
277 } else {
278 if (element->type != ACPI_TYPE_INTEGER)
279 return -EFAULT;
280 x = (int *)((u8 *)battery + offsets[i].offset);
281 *x = element->integer.value;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300282 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300283 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300284 return 0;
285}
286
287static int acpi_battery_get_status(struct acpi_battery *battery)
288{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400289 if (acpi_bus_get_status(battery->device)) {
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300290 ACPI_EXCEPTION((AE_INFO, AE_ERROR, "Evaluating _STA"));
291 return -ENODEV;
292 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400293 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300294}
295
296static int acpi_battery_get_info(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400298 int result = -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -0400299 acpi_status status = 0;
300 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300302 if (!acpi_battery_present(battery))
303 return 0;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400304 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400305 status = acpi_evaluate_object(battery->device->handle, "_BIF",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400306 NULL, &buffer);
307 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400310 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BIF"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400311 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400313
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400314 result = extract_package(battery, buffer.pointer,
315 info_offsets, ARRAY_SIZE(info_offsets));
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400316 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -0400317 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}
319
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300320static int acpi_battery_get_state(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
Len Brown4be44fc2005-08-05 00:44:28 -0400322 int result = 0;
323 acpi_status status = 0;
324 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300326 if (!acpi_battery_present(battery))
327 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400329 if (battery->update_time &&
330 time_before(jiffies, battery->update_time +
331 msecs_to_jiffies(cache_time)))
332 return 0;
333
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400334 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400335 status = acpi_evaluate_object(battery->device->handle, "_BST",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400336 NULL, &buffer);
337 mutex_unlock(&battery->lock);
Len Brown5b31d892007-08-15 00:19:26 -0400338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400340 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BST"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400341 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400343
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400344 result = extract_package(battery, buffer.pointer,
345 state_offsets, ARRAY_SIZE(state_offsets));
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400346 battery->update_time = jiffies;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400347 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -0400348 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349}
350
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400351static int acpi_battery_set_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
Len Brown4be44fc2005-08-05 00:44:28 -0400353 acpi_status status = 0;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400354 union acpi_object arg0 = { .type = ACPI_TYPE_INTEGER };
Len Brown4be44fc2005-08-05 00:44:28 -0400355 struct acpi_object_list arg_list = { 1, &arg0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400357 if (!acpi_battery_present(battery)|| !battery->alarm_present)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300358 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400360 arg0.integer.value = battery->alarm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400362 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400363 status = acpi_evaluate_object(battery->device->handle, "_BTP",
364 &arg_list, NULL);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400365 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400368 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400370 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Alarm set to %d\n", battery->alarm));
Patrick Mocheld550d982006-06-27 00:41:40 -0400371 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372}
373
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300374static int acpi_battery_init_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375{
Len Brown4be44fc2005-08-05 00:44:28 -0400376 acpi_status status = AE_OK;
377 acpi_handle handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300379 /* See if alarms are supported, and if so, set default */
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400380 status = acpi_get_handle(battery->device->handle, "_BTP", &handle);
381 if (ACPI_FAILURE(status)) {
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400382 battery->alarm_present = 0;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400383 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 }
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400385 battery->alarm_present = 1;
386 if (!battery->alarm)
387 battery->alarm = battery->design_capacity_warning;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400388 return acpi_battery_set_alarm(battery);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389}
390
Andrey Borzenkov508df922007-10-28 12:50:09 +0300391static ssize_t acpi_battery_alarm_show(struct device *dev,
392 struct device_attribute *attr,
393 char *buf)
394{
395 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
396 return sprintf(buf, "%d\n", battery->alarm * 1000);
397}
398
399static ssize_t acpi_battery_alarm_store(struct device *dev,
400 struct device_attribute *attr,
401 const char *buf, size_t count)
402{
403 unsigned long x;
404 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
405 if (sscanf(buf, "%ld\n", &x) == 1)
406 battery->alarm = x/1000;
407 if (acpi_battery_present(battery))
408 acpi_battery_set_alarm(battery);
409 return count;
410}
411
412static struct device_attribute alarm_attr = {
413 .attr = {.name = "alarm", .mode = 0644, .owner = THIS_MODULE},
414 .show = acpi_battery_alarm_show,
415 .store = acpi_battery_alarm_store,
416};
417
418static int sysfs_add_battery(struct acpi_battery *battery)
419{
420 int result;
421
422 battery->update_time = 0;
423 result = acpi_battery_get_info(battery);
424 acpi_battery_init_alarm(battery);
425 if (result)
426 return result;
427 if (battery->power_unit) {
428 battery->bat.properties = charge_battery_props;
429 battery->bat.num_properties =
430 ARRAY_SIZE(charge_battery_props);
431 } else {
432 battery->bat.properties = energy_battery_props;
433 battery->bat.num_properties =
434 ARRAY_SIZE(energy_battery_props);
435 }
436
437 battery->bat.name = acpi_device_bid(battery->device);
438 battery->bat.type = POWER_SUPPLY_TYPE_BATTERY;
439 battery->bat.get_property = acpi_battery_get_property;
440
441 result = power_supply_register(&battery->device->dev, &battery->bat);
442 if (result)
443 return result;
444 return device_create_file(battery->bat.dev, &alarm_attr);
445}
446
447static void sysfs_remove_battery(struct acpi_battery *battery)
448{
449 if (!battery->bat.dev)
450 return;
451 device_remove_file(battery->bat.dev, &alarm_attr);
452 power_supply_unregister(&battery->bat);
453}
454
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400455static int acpi_battery_update(struct acpi_battery *battery)
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500456{
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400457 int result = acpi_battery_get_status(battery);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300458 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300459 return result;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300460 if (!acpi_battery_present(battery)) {
461 sysfs_remove_battery(battery);
462 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300463 }
Andrey Borzenkov508df922007-10-28 12:50:09 +0300464 if (!battery->bat.dev)
465 sysfs_add_battery(battery);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400466 return acpi_battery_get_state(battery);
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500467}
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469/* --------------------------------------------------------------------------
470 FS Interface (/proc)
471 -------------------------------------------------------------------------- */
472
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400473#ifdef CONFIG_ACPI_PROCFS
Len Brown4be44fc2005-08-05 00:44:28 -0400474static struct proc_dir_entry *acpi_battery_dir;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300475
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400476static int acpi_battery_print_info(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200478 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300480 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 goto end;
482
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400483 seq_printf(seq, "present: %s\n",
484 acpi_battery_present(battery)?"yes":"no");
485 if (!acpi_battery_present(battery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 goto end;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400487 if (battery->design_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 seq_printf(seq, "design capacity: unknown\n");
489 else
490 seq_printf(seq, "design capacity: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400491 battery->design_capacity,
492 acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400494 if (battery->full_charge_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 seq_printf(seq, "last full capacity: unknown\n");
496 else
497 seq_printf(seq, "last full capacity: %d %sh\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400498 battery->full_charge_capacity,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400499 acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400501 seq_printf(seq, "battery technology: %srechargeable\n",
502 (!battery->technology)?"non-":"");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400504 if (battery->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 seq_printf(seq, "design voltage: unknown\n");
506 else
507 seq_printf(seq, "design voltage: %d mV\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400508 battery->design_voltage);
Len Brown4be44fc2005-08-05 00:44:28 -0400509 seq_printf(seq, "design capacity warning: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400510 battery->design_capacity_warning,
511 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400512 seq_printf(seq, "design capacity low: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400513 battery->design_capacity_low,
514 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400515 seq_printf(seq, "capacity granularity 1: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400516 battery->capacity_granularity_1,
517 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400518 seq_printf(seq, "capacity granularity 2: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400519 battery->capacity_granularity_2,
520 acpi_battery_units(battery));
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400521 seq_printf(seq, "model number: %s\n", battery->model_number);
522 seq_printf(seq, "serial number: %s\n", battery->serial_number);
523 seq_printf(seq, "battery type: %s\n", battery->type);
524 seq_printf(seq, "OEM info: %s\n", battery->oem_info);
Len Brown4be44fc2005-08-05 00:44:28 -0400525 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300526 if (result)
527 seq_printf(seq, "ERROR: Unable to read battery info\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300528 return result;
529}
530
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400531static int acpi_battery_print_state(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200533 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300535 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 goto end;
537
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400538 seq_printf(seq, "present: %s\n",
539 acpi_battery_present(battery)?"yes":"no");
540 if (!acpi_battery_present(battery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400543 seq_printf(seq, "capacity state: %s\n",
544 (battery->state & 0x04)?"critical":"ok");
545 if ((battery->state & 0x01) && (battery->state & 0x02))
Len Brown4be44fc2005-08-05 00:44:28 -0400546 seq_printf(seq,
547 "charging state: charging/discharging\n");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400548 else if (battery->state & 0x01)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 seq_printf(seq, "charging state: discharging\n");
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400550 else if (battery->state & 0x02)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 seq_printf(seq, "charging state: charging\n");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400552 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 seq_printf(seq, "charging state: charged\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400555 if (battery->current_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 seq_printf(seq, "present rate: unknown\n");
557 else
558 seq_printf(seq, "present rate: %d %s\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400559 battery->current_now, acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400561 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 seq_printf(seq, "remaining capacity: unknown\n");
563 else
564 seq_printf(seq, "remaining capacity: %d %sh\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400565 battery->capacity_now, acpi_battery_units(battery));
566 if (battery->voltage_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 seq_printf(seq, "present voltage: unknown\n");
568 else
569 seq_printf(seq, "present voltage: %d mV\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400570 battery->voltage_now);
Len Brown4be44fc2005-08-05 00:44:28 -0400571 end:
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400572 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300573 seq_printf(seq, "ERROR: Unable to read battery state\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300574
575 return result;
576}
577
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400578static int acpi_battery_print_alarm(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200580 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300582 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 goto end;
584
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300585 if (!acpi_battery_present(battery)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 seq_printf(seq, "present: no\n");
587 goto end;
588 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 seq_printf(seq, "alarm: ");
590 if (!battery->alarm)
591 seq_printf(seq, "unsupported\n");
592 else
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400593 seq_printf(seq, "%u %sh\n", battery->alarm,
594 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400595 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300596 if (result)
597 seq_printf(seq, "ERROR: Unable to read battery alarm\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300598 return result;
599}
600
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400601static ssize_t acpi_battery_write_alarm(struct file *file,
602 const char __user * buffer,
603 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604{
Len Brown4be44fc2005-08-05 00:44:28 -0400605 int result = 0;
606 char alarm_string[12] = { '\0' };
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200607 struct seq_file *m = file->private_data;
608 struct acpi_battery *battery = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 if (!battery || (count > sizeof(alarm_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -0400611 return -EINVAL;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300612 if (!acpi_battery_present(battery)) {
613 result = -ENODEV;
614 goto end;
615 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300616 if (copy_from_user(alarm_string, buffer, count)) {
617 result = -EFAULT;
618 goto end;
619 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 alarm_string[count] = '\0';
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400621 battery->alarm = simple_strtol(alarm_string, NULL, 0);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400622 result = acpi_battery_set_alarm(battery);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300623 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300624 if (!result)
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400625 return count;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300626 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627}
628
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400629typedef int(*print_func)(struct seq_file *seq, int result);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400630
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400631static print_func acpi_print_funcs[ACPI_BATTERY_NUMFILES] = {
632 acpi_battery_print_info,
633 acpi_battery_print_state,
634 acpi_battery_print_alarm,
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400635};
636
637static int acpi_battery_read(int fid, struct seq_file *seq)
638{
639 struct acpi_battery *battery = seq->private;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400640 int result = acpi_battery_update(battery);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400641 return acpi_print_funcs[fid](seq, result);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400642}
643
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400644#define DECLARE_FILE_FUNCTIONS(_name) \
645static int acpi_battery_read_##_name(struct seq_file *seq, void *offset) \
646{ \
647 return acpi_battery_read(_name##_tag, seq); \
648} \
649static int acpi_battery_##_name##_open_fs(struct inode *inode, struct file *file) \
650{ \
651 return single_open(file, acpi_battery_read_##_name, PDE(inode)->data); \
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400652}
653
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400654DECLARE_FILE_FUNCTIONS(info);
655DECLARE_FILE_FUNCTIONS(state);
656DECLARE_FILE_FUNCTIONS(alarm);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400657
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400658#undef DECLARE_FILE_FUNCTIONS
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400659
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400660#define FILE_DESCRIPTION_RO(_name) \
661 { \
662 .name = __stringify(_name), \
663 .mode = S_IRUGO, \
664 .ops = { \
665 .open = acpi_battery_##_name##_open_fs, \
666 .read = seq_read, \
667 .llseek = seq_lseek, \
668 .release = single_release, \
669 .owner = THIS_MODULE, \
670 }, \
671 }
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400672
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400673#define FILE_DESCRIPTION_RW(_name) \
674 { \
675 .name = __stringify(_name), \
676 .mode = S_IFREG | S_IRUGO | S_IWUSR, \
677 .ops = { \
678 .open = acpi_battery_##_name##_open_fs, \
679 .read = seq_read, \
680 .llseek = seq_lseek, \
681 .write = acpi_battery_write_##_name, \
682 .release = single_release, \
683 .owner = THIS_MODULE, \
684 }, \
685 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400687static struct battery_file {
688 struct file_operations ops;
689 mode_t mode;
690 char *name;
691} acpi_battery_file[] = {
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400692 FILE_DESCRIPTION_RO(info),
693 FILE_DESCRIPTION_RO(state),
694 FILE_DESCRIPTION_RW(alarm),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695};
696
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400697#undef FILE_DESCRIPTION_RO
698#undef FILE_DESCRIPTION_RW
699
Len Brown4be44fc2005-08-05 00:44:28 -0400700static int acpi_battery_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
Len Brown4be44fc2005-08-05 00:44:28 -0400702 struct proc_dir_entry *entry = NULL;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400703 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 if (!acpi_device_dir(device)) {
706 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400707 acpi_battery_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400709 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 acpi_device_dir(device)->owner = THIS_MODULE;
711 }
712
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400713 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i) {
714 entry = create_proc_entry(acpi_battery_file[i].name,
715 acpi_battery_file[i].mode, acpi_device_dir(device));
716 if (!entry)
717 return -ENODEV;
718 else {
719 entry->proc_fops = &acpi_battery_file[i].ops;
720 entry->data = acpi_driver_data(device);
721 entry->owner = THIS_MODULE;
722 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400724 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725}
726
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400727static void acpi_battery_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400729 int i;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400730 if (!acpi_device_dir(device))
731 return;
732 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i)
733 remove_proc_entry(acpi_battery_file[i].name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400736 remove_proc_entry(acpi_device_bid(device), acpi_battery_dir);
737 acpi_device_dir(device) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738}
739
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400740#endif
Alexey Starikovskiy3e58ea02007-09-26 19:43:11 +0400741
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742/* --------------------------------------------------------------------------
743 Driver Interface
744 -------------------------------------------------------------------------- */
745
Len Brown4be44fc2005-08-05 00:44:28 -0400746static void acpi_battery_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200748 struct acpi_battery *battery = data;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400749 struct acpi_device *device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -0400751 return;
Patrick Mochel145def82006-05-19 16:54:39 -0400752 device = battery->device;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400753 acpi_battery_update(battery);
754 acpi_bus_generate_proc_event(device, event,
755 acpi_battery_present(battery));
756 acpi_bus_generate_netlink_event(device->pnp.device_class,
757 device->dev.bus_id, event,
Vladimir Lebedev9ea7d572007-02-20 15:48:06 +0300758 acpi_battery_present(battery));
Andrey Borzenkov508df922007-10-28 12:50:09 +0300759 /* acpi_batter_update could remove power_supply object */
760 if (battery->bat.dev)
761 kobject_uevent(&battery->bat.dev->kobj, KOBJ_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762}
763
Len Brown4be44fc2005-08-05 00:44:28 -0400764static int acpi_battery_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765{
Len Brown4be44fc2005-08-05 00:44:28 -0400766 int result = 0;
767 acpi_status status = 0;
768 struct acpi_battery *battery = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400770 return -EINVAL;
Burman Yan36bcbec2006-12-19 12:56:11 -0800771 battery = kzalloc(sizeof(struct acpi_battery), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -0400773 return -ENOMEM;
Patrick Mochel145def82006-05-19 16:54:39 -0400774 battery->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 strcpy(acpi_device_name(device), ACPI_BATTERY_DEVICE_NAME);
776 strcpy(acpi_device_class(device), ACPI_BATTERY_CLASS);
777 acpi_driver_data(device) = battery;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400778 mutex_init(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400779 acpi_battery_update(battery);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400780#ifdef CONFIG_ACPI_PROCFS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 result = acpi_battery_add_fs(device);
782 if (result)
783 goto end;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400784#endif
Patrick Mochel3b073ec2006-05-19 16:54:41 -0400785 status = acpi_install_notify_handler(device->handle,
Vladimir Lebedev9fdae722006-06-27 04:49:00 -0400786 ACPI_ALL_NOTIFY,
Len Brown4be44fc2005-08-05 00:44:28 -0400787 acpi_battery_notify, battery);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 if (ACPI_FAILURE(status)) {
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300789 ACPI_EXCEPTION((AE_INFO, status, "Installing notify handler"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 result = -ENODEV;
791 goto end;
792 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 printk(KERN_INFO PREFIX "%s Slot [%s] (battery %s)\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400794 ACPI_BATTERY_DEVICE_NAME, acpi_device_bid(device),
795 device->status.battery_present ? "present" : "absent");
Len Brown4be44fc2005-08-05 00:44:28 -0400796 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 if (result) {
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400798#ifdef CONFIG_ACPI_PROCFS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 acpi_battery_remove_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400800#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 kfree(battery);
802 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400803 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804}
805
Len Brown4be44fc2005-08-05 00:44:28 -0400806static int acpi_battery_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
Len Brown4be44fc2005-08-05 00:44:28 -0400808 acpi_status status = 0;
809 struct acpi_battery *battery = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400812 return -EINVAL;
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200813 battery = acpi_driver_data(device);
Patrick Mochel3b073ec2006-05-19 16:54:41 -0400814 status = acpi_remove_notify_handler(device->handle,
Vladimir Lebedev9fdae722006-06-27 04:49:00 -0400815 ACPI_ALL_NOTIFY,
Len Brown4be44fc2005-08-05 00:44:28 -0400816 acpi_battery_notify);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400817#ifdef CONFIG_ACPI_PROCFS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 acpi_battery_remove_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400819#endif
Andrey Borzenkov508df922007-10-28 12:50:09 +0300820 sysfs_remove_battery(battery);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400821 mutex_destroy(&battery->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 kfree(battery);
Patrick Mocheld550d982006-06-27 00:41:40 -0400823 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824}
825
Jiri Kosina34c44152006-10-10 14:20:41 -0700826/* this is needed to learn about changes made in suspended state */
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800827static int acpi_battery_resume(struct acpi_device *device)
Jiri Kosina34c44152006-10-10 14:20:41 -0700828{
829 struct acpi_battery *battery;
Jiri Kosina34c44152006-10-10 14:20:41 -0700830 if (!device)
831 return -EINVAL;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400832 battery = acpi_driver_data(device);
833 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300834 acpi_battery_update(battery);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300835 return 0;
Jiri Kosina34c44152006-10-10 14:20:41 -0700836}
837
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400838static struct acpi_driver acpi_battery_driver = {
839 .name = "battery",
840 .class = ACPI_BATTERY_CLASS,
841 .ids = battery_device_ids,
842 .ops = {
843 .add = acpi_battery_add,
844 .resume = acpi_battery_resume,
845 .remove = acpi_battery_remove,
846 },
847};
848
Len Brown4be44fc2005-08-05 00:44:28 -0400849static int __init acpi_battery_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850{
Pavel Machek4d8316d2006-08-14 22:37:22 -0700851 if (acpi_disabled)
852 return -ENODEV;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400853#ifdef CONFIG_ACPI_PROCFS
Rich Townsend3f86b832006-07-01 11:36:54 -0400854 acpi_battery_dir = acpi_lock_battery_dir();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 if (!acpi_battery_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -0400856 return -ENODEV;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400857#endif
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400858 if (acpi_bus_register_driver(&acpi_battery_driver) < 0) {
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400859#ifdef CONFIG_ACPI_PROCFS
Rich Townsend3f86b832006-07-01 11:36:54 -0400860 acpi_unlock_battery_dir(acpi_battery_dir);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400861#endif
Patrick Mocheld550d982006-06-27 00:41:40 -0400862 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400864 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865}
866
Len Brown4be44fc2005-08-05 00:44:28 -0400867static void __exit acpi_battery_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 acpi_bus_unregister_driver(&acpi_battery_driver);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400870#ifdef CONFIG_ACPI_PROCFS
Rich Townsend3f86b832006-07-01 11:36:54 -0400871 acpi_unlock_battery_dir(acpi_battery_dir);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400872#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873}
874
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875module_init(acpi_battery_init);
876module_exit(acpi_battery_exit);