blob: 74caa07ad35164981a017cf1376aa3d6179e2bef [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;
Alexey Starikovskiy0bde7ee2007-10-28 15:33:10 +0300128 if (!strcasecmp("LI-ION", battery->type))
129 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 Starikovskiyb19073a2007-10-25 17:10:47 -0400135static int acpi_battery_update(struct acpi_battery *battery);
136
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
143 if ((!acpi_battery_present(battery)) &&
144 psp != POWER_SUPPLY_PROP_PRESENT)
145 return -ENODEV;
Alexey Starikovskiyb19073a2007-10-25 17:10:47 -0400146 acpi_battery_update(battery);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400147 switch (psp) {
148 case POWER_SUPPLY_PROP_STATUS:
149 if (battery->state & 0x01)
150 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
151 else if (battery->state & 0x02)
152 val->intval = POWER_SUPPLY_STATUS_CHARGING;
153 else if (battery->state == 0)
154 val->intval = POWER_SUPPLY_STATUS_FULL;
155 break;
156 case POWER_SUPPLY_PROP_PRESENT:
157 val->intval = acpi_battery_present(battery);
158 break;
159 case POWER_SUPPLY_PROP_TECHNOLOGY:
160 val->intval = acpi_battery_technology(battery);
161 break;
162 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
163 val->intval = battery->design_voltage * 1000;
164 break;
165 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
166 val->intval = battery->voltage_now * 1000;
167 break;
168 case POWER_SUPPLY_PROP_CURRENT_NOW:
169 val->intval = battery->current_now * 1000;
170 break;
171 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
172 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
173 val->intval = battery->design_capacity * 1000;
174 break;
175 case POWER_SUPPLY_PROP_CHARGE_FULL:
176 case POWER_SUPPLY_PROP_ENERGY_FULL:
177 val->intval = battery->full_charge_capacity * 1000;
178 break;
179 case POWER_SUPPLY_PROP_CHARGE_NOW:
180 case POWER_SUPPLY_PROP_ENERGY_NOW:
181 val->intval = battery->capacity_now * 1000;
182 break;
183 case POWER_SUPPLY_PROP_MODEL_NAME:
184 val->strval = battery->model_number;
185 break;
186 case POWER_SUPPLY_PROP_MANUFACTURER:
187 val->strval = battery->oem_info;
188 break;
189 default:
190 return -EINVAL;
191 }
192 return 0;
193}
194
195static enum power_supply_property charge_battery_props[] = {
196 POWER_SUPPLY_PROP_STATUS,
197 POWER_SUPPLY_PROP_PRESENT,
198 POWER_SUPPLY_PROP_TECHNOLOGY,
199 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
200 POWER_SUPPLY_PROP_VOLTAGE_NOW,
201 POWER_SUPPLY_PROP_CURRENT_NOW,
202 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
203 POWER_SUPPLY_PROP_CHARGE_FULL,
204 POWER_SUPPLY_PROP_CHARGE_NOW,
205 POWER_SUPPLY_PROP_MODEL_NAME,
206 POWER_SUPPLY_PROP_MANUFACTURER,
207};
208
209static enum power_supply_property energy_battery_props[] = {
210 POWER_SUPPLY_PROP_STATUS,
211 POWER_SUPPLY_PROP_PRESENT,
212 POWER_SUPPLY_PROP_TECHNOLOGY,
213 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
214 POWER_SUPPLY_PROP_VOLTAGE_NOW,
215 POWER_SUPPLY_PROP_CURRENT_NOW,
216 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN,
217 POWER_SUPPLY_PROP_ENERGY_FULL,
218 POWER_SUPPLY_PROP_ENERGY_NOW,
219 POWER_SUPPLY_PROP_MODEL_NAME,
220 POWER_SUPPLY_PROP_MANUFACTURER,
221};
222
223#ifdef CONFIG_ACPI_PROCFS
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400224inline char *acpi_battery_units(struct acpi_battery *battery)
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400225{
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400226 return (battery->power_unit)?"mA":"mW";
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400227}
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400228#endif
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230/* --------------------------------------------------------------------------
231 Battery Management
232 -------------------------------------------------------------------------- */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400233struct acpi_offsets {
234 size_t offset; /* offset inside struct acpi_sbs_battery */
235 u8 mode; /* int or string? */
236};
237
238static struct acpi_offsets state_offsets[] = {
239 {offsetof(struct acpi_battery, state), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400240 {offsetof(struct acpi_battery, current_now), 0},
241 {offsetof(struct acpi_battery, capacity_now), 0},
242 {offsetof(struct acpi_battery, voltage_now), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400243};
244
245static struct acpi_offsets info_offsets[] = {
246 {offsetof(struct acpi_battery, power_unit), 0},
247 {offsetof(struct acpi_battery, design_capacity), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400248 {offsetof(struct acpi_battery, full_charge_capacity), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400249 {offsetof(struct acpi_battery, technology), 0},
250 {offsetof(struct acpi_battery, design_voltage), 0},
251 {offsetof(struct acpi_battery, design_capacity_warning), 0},
252 {offsetof(struct acpi_battery, design_capacity_low), 0},
253 {offsetof(struct acpi_battery, capacity_granularity_1), 0},
254 {offsetof(struct acpi_battery, capacity_granularity_2), 0},
255 {offsetof(struct acpi_battery, model_number), 1},
256 {offsetof(struct acpi_battery, serial_number), 1},
257 {offsetof(struct acpi_battery, type), 1},
258 {offsetof(struct acpi_battery, oem_info), 1},
259};
260
261static int extract_package(struct acpi_battery *battery,
262 union acpi_object *package,
263 struct acpi_offsets *offsets, int num)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300264{
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400265 int i, *x;
266 union acpi_object *element;
267 if (package->type != ACPI_TYPE_PACKAGE)
268 return -EFAULT;
269 for (i = 0; i < num; ++i) {
270 if (package->package.count <= i)
271 return -EFAULT;
272 element = &package->package.elements[i];
273 if (offsets[i].mode) {
274 if (element->type != ACPI_TYPE_STRING &&
275 element->type != ACPI_TYPE_BUFFER)
276 return -EFAULT;
277 strncpy((u8 *)battery + offsets[i].offset,
278 element->string.pointer, 32);
279 } else {
280 if (element->type != ACPI_TYPE_INTEGER)
281 return -EFAULT;
282 x = (int *)((u8 *)battery + offsets[i].offset);
283 *x = element->integer.value;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300284 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300285 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300286 return 0;
287}
288
289static int acpi_battery_get_status(struct acpi_battery *battery)
290{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400291 if (acpi_bus_get_status(battery->device)) {
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300292 ACPI_EXCEPTION((AE_INFO, AE_ERROR, "Evaluating _STA"));
293 return -ENODEV;
294 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400295 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300296}
297
298static int acpi_battery_get_info(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400300 int result = -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -0400301 acpi_status status = 0;
302 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300304 if (!acpi_battery_present(battery))
305 return 0;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400306 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400307 status = acpi_evaluate_object(battery->device->handle, "_BIF",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400308 NULL, &buffer);
309 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400312 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BIF"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400313 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400315
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400316 result = extract_package(battery, buffer.pointer,
317 info_offsets, ARRAY_SIZE(info_offsets));
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400318 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -0400319 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320}
321
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300322static int acpi_battery_get_state(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
Len Brown4be44fc2005-08-05 00:44:28 -0400324 int result = 0;
325 acpi_status status = 0;
326 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300328 if (!acpi_battery_present(battery))
329 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400331 if (battery->update_time &&
332 time_before(jiffies, battery->update_time +
333 msecs_to_jiffies(cache_time)))
334 return 0;
335
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400336 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400337 status = acpi_evaluate_object(battery->device->handle, "_BST",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400338 NULL, &buffer);
339 mutex_unlock(&battery->lock);
Len Brown5b31d892007-08-15 00:19:26 -0400340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400342 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BST"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400343 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400345
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400346 result = extract_package(battery, buffer.pointer,
347 state_offsets, ARRAY_SIZE(state_offsets));
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400348 battery->update_time = jiffies;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400349 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -0400350 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351}
352
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400353static int acpi_battery_set_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
Len Brown4be44fc2005-08-05 00:44:28 -0400355 acpi_status status = 0;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400356 union acpi_object arg0 = { .type = ACPI_TYPE_INTEGER };
Len Brown4be44fc2005-08-05 00:44:28 -0400357 struct acpi_object_list arg_list = { 1, &arg0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400359 if (!acpi_battery_present(battery)|| !battery->alarm_present)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300360 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400362 arg0.integer.value = battery->alarm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400364 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400365 status = acpi_evaluate_object(battery->device->handle, "_BTP",
366 &arg_list, NULL);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400367 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400370 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400372 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Alarm set to %d\n", battery->alarm));
Patrick Mocheld550d982006-06-27 00:41:40 -0400373 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374}
375
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300376static int acpi_battery_init_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
Len Brown4be44fc2005-08-05 00:44:28 -0400378 acpi_status status = AE_OK;
379 acpi_handle handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300381 /* See if alarms are supported, and if so, set default */
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400382 status = acpi_get_handle(battery->device->handle, "_BTP", &handle);
383 if (ACPI_FAILURE(status)) {
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400384 battery->alarm_present = 0;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400385 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 }
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400387 battery->alarm_present = 1;
388 if (!battery->alarm)
389 battery->alarm = battery->design_capacity_warning;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400390 return acpi_battery_set_alarm(battery);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
392
Andrey Borzenkov508df922007-10-28 12:50:09 +0300393static ssize_t acpi_battery_alarm_show(struct device *dev,
394 struct device_attribute *attr,
395 char *buf)
396{
397 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
398 return sprintf(buf, "%d\n", battery->alarm * 1000);
399}
400
401static ssize_t acpi_battery_alarm_store(struct device *dev,
402 struct device_attribute *attr,
403 const char *buf, size_t count)
404{
405 unsigned long x;
406 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
407 if (sscanf(buf, "%ld\n", &x) == 1)
408 battery->alarm = x/1000;
409 if (acpi_battery_present(battery))
410 acpi_battery_set_alarm(battery);
411 return count;
412}
413
414static struct device_attribute alarm_attr = {
415 .attr = {.name = "alarm", .mode = 0644, .owner = THIS_MODULE},
416 .show = acpi_battery_alarm_show,
417 .store = acpi_battery_alarm_store,
418};
419
420static int sysfs_add_battery(struct acpi_battery *battery)
421{
422 int result;
423
424 battery->update_time = 0;
425 result = acpi_battery_get_info(battery);
426 acpi_battery_init_alarm(battery);
427 if (result)
428 return result;
429 if (battery->power_unit) {
430 battery->bat.properties = charge_battery_props;
431 battery->bat.num_properties =
432 ARRAY_SIZE(charge_battery_props);
433 } else {
434 battery->bat.properties = energy_battery_props;
435 battery->bat.num_properties =
436 ARRAY_SIZE(energy_battery_props);
437 }
438
439 battery->bat.name = acpi_device_bid(battery->device);
440 battery->bat.type = POWER_SUPPLY_TYPE_BATTERY;
441 battery->bat.get_property = acpi_battery_get_property;
442
443 result = power_supply_register(&battery->device->dev, &battery->bat);
444 if (result)
445 return result;
446 return device_create_file(battery->bat.dev, &alarm_attr);
447}
448
449static void sysfs_remove_battery(struct acpi_battery *battery)
450{
451 if (!battery->bat.dev)
452 return;
453 device_remove_file(battery->bat.dev, &alarm_attr);
454 power_supply_unregister(&battery->bat);
455}
456
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400457static int acpi_battery_update(struct acpi_battery *battery)
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500458{
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400459 int result = acpi_battery_get_status(battery);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300460 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300461 return result;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300462 if (!acpi_battery_present(battery)) {
463 sysfs_remove_battery(battery);
464 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300465 }
Andrey Borzenkov508df922007-10-28 12:50:09 +0300466 if (!battery->bat.dev)
467 sysfs_add_battery(battery);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400468 return acpi_battery_get_state(battery);
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500469}
470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471/* --------------------------------------------------------------------------
472 FS Interface (/proc)
473 -------------------------------------------------------------------------- */
474
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400475#ifdef CONFIG_ACPI_PROCFS
Len Brown4be44fc2005-08-05 00:44:28 -0400476static struct proc_dir_entry *acpi_battery_dir;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300477
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400478static int acpi_battery_print_info(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200480 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300482 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 goto end;
484
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400485 seq_printf(seq, "present: %s\n",
486 acpi_battery_present(battery)?"yes":"no");
487 if (!acpi_battery_present(battery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 goto end;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400489 if (battery->design_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 seq_printf(seq, "design capacity: unknown\n");
491 else
492 seq_printf(seq, "design capacity: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400493 battery->design_capacity,
494 acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400496 if (battery->full_charge_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 seq_printf(seq, "last full capacity: unknown\n");
498 else
499 seq_printf(seq, "last full capacity: %d %sh\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400500 battery->full_charge_capacity,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400501 acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400503 seq_printf(seq, "battery technology: %srechargeable\n",
504 (!battery->technology)?"non-":"");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400506 if (battery->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 seq_printf(seq, "design voltage: unknown\n");
508 else
509 seq_printf(seq, "design voltage: %d mV\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400510 battery->design_voltage);
Len Brown4be44fc2005-08-05 00:44:28 -0400511 seq_printf(seq, "design capacity warning: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400512 battery->design_capacity_warning,
513 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400514 seq_printf(seq, "design capacity low: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400515 battery->design_capacity_low,
516 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400517 seq_printf(seq, "capacity granularity 1: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400518 battery->capacity_granularity_1,
519 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400520 seq_printf(seq, "capacity granularity 2: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400521 battery->capacity_granularity_2,
522 acpi_battery_units(battery));
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400523 seq_printf(seq, "model number: %s\n", battery->model_number);
524 seq_printf(seq, "serial number: %s\n", battery->serial_number);
525 seq_printf(seq, "battery type: %s\n", battery->type);
526 seq_printf(seq, "OEM info: %s\n", battery->oem_info);
Len Brown4be44fc2005-08-05 00:44:28 -0400527 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300528 if (result)
529 seq_printf(seq, "ERROR: Unable to read battery info\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300530 return result;
531}
532
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400533static int acpi_battery_print_state(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200535 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300537 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 goto end;
539
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400540 seq_printf(seq, "present: %s\n",
541 acpi_battery_present(battery)?"yes":"no");
542 if (!acpi_battery_present(battery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400545 seq_printf(seq, "capacity state: %s\n",
546 (battery->state & 0x04)?"critical":"ok");
547 if ((battery->state & 0x01) && (battery->state & 0x02))
Len Brown4be44fc2005-08-05 00:44:28 -0400548 seq_printf(seq,
549 "charging state: charging/discharging\n");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400550 else if (battery->state & 0x01)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 seq_printf(seq, "charging state: discharging\n");
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400552 else if (battery->state & 0x02)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 seq_printf(seq, "charging state: charging\n");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400554 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 seq_printf(seq, "charging state: charged\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400557 if (battery->current_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 seq_printf(seq, "present rate: unknown\n");
559 else
560 seq_printf(seq, "present rate: %d %s\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400561 battery->current_now, acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400563 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 seq_printf(seq, "remaining capacity: unknown\n");
565 else
566 seq_printf(seq, "remaining capacity: %d %sh\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400567 battery->capacity_now, acpi_battery_units(battery));
568 if (battery->voltage_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 seq_printf(seq, "present voltage: unknown\n");
570 else
571 seq_printf(seq, "present voltage: %d mV\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400572 battery->voltage_now);
Len Brown4be44fc2005-08-05 00:44:28 -0400573 end:
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400574 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300575 seq_printf(seq, "ERROR: Unable to read battery state\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300576
577 return result;
578}
579
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400580static int acpi_battery_print_alarm(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200582 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300584 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 goto end;
586
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300587 if (!acpi_battery_present(battery)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 seq_printf(seq, "present: no\n");
589 goto end;
590 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 seq_printf(seq, "alarm: ");
592 if (!battery->alarm)
593 seq_printf(seq, "unsupported\n");
594 else
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400595 seq_printf(seq, "%u %sh\n", battery->alarm,
596 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400597 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300598 if (result)
599 seq_printf(seq, "ERROR: Unable to read battery alarm\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300600 return result;
601}
602
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400603static ssize_t acpi_battery_write_alarm(struct file *file,
604 const char __user * buffer,
605 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606{
Len Brown4be44fc2005-08-05 00:44:28 -0400607 int result = 0;
608 char alarm_string[12] = { '\0' };
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200609 struct seq_file *m = file->private_data;
610 struct acpi_battery *battery = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 if (!battery || (count > sizeof(alarm_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -0400613 return -EINVAL;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300614 if (!acpi_battery_present(battery)) {
615 result = -ENODEV;
616 goto end;
617 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300618 if (copy_from_user(alarm_string, buffer, count)) {
619 result = -EFAULT;
620 goto end;
621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 alarm_string[count] = '\0';
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400623 battery->alarm = simple_strtol(alarm_string, NULL, 0);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400624 result = acpi_battery_set_alarm(battery);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300625 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300626 if (!result)
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400627 return count;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300628 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400631typedef int(*print_func)(struct seq_file *seq, int result);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400632
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400633static print_func acpi_print_funcs[ACPI_BATTERY_NUMFILES] = {
634 acpi_battery_print_info,
635 acpi_battery_print_state,
636 acpi_battery_print_alarm,
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400637};
638
639static int acpi_battery_read(int fid, struct seq_file *seq)
640{
641 struct acpi_battery *battery = seq->private;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400642 int result = acpi_battery_update(battery);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400643 return acpi_print_funcs[fid](seq, result);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400644}
645
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400646#define DECLARE_FILE_FUNCTIONS(_name) \
647static int acpi_battery_read_##_name(struct seq_file *seq, void *offset) \
648{ \
649 return acpi_battery_read(_name##_tag, seq); \
650} \
651static int acpi_battery_##_name##_open_fs(struct inode *inode, struct file *file) \
652{ \
653 return single_open(file, acpi_battery_read_##_name, PDE(inode)->data); \
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400654}
655
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400656DECLARE_FILE_FUNCTIONS(info);
657DECLARE_FILE_FUNCTIONS(state);
658DECLARE_FILE_FUNCTIONS(alarm);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400659
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400660#undef DECLARE_FILE_FUNCTIONS
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400661
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400662#define FILE_DESCRIPTION_RO(_name) \
663 { \
664 .name = __stringify(_name), \
665 .mode = S_IRUGO, \
666 .ops = { \
667 .open = acpi_battery_##_name##_open_fs, \
668 .read = seq_read, \
669 .llseek = seq_lseek, \
670 .release = single_release, \
671 .owner = THIS_MODULE, \
672 }, \
673 }
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400674
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400675#define FILE_DESCRIPTION_RW(_name) \
676 { \
677 .name = __stringify(_name), \
678 .mode = S_IFREG | S_IRUGO | S_IWUSR, \
679 .ops = { \
680 .open = acpi_battery_##_name##_open_fs, \
681 .read = seq_read, \
682 .llseek = seq_lseek, \
683 .write = acpi_battery_write_##_name, \
684 .release = single_release, \
685 .owner = THIS_MODULE, \
686 }, \
687 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400689static struct battery_file {
690 struct file_operations ops;
691 mode_t mode;
692 char *name;
693} acpi_battery_file[] = {
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400694 FILE_DESCRIPTION_RO(info),
695 FILE_DESCRIPTION_RO(state),
696 FILE_DESCRIPTION_RW(alarm),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697};
698
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400699#undef FILE_DESCRIPTION_RO
700#undef FILE_DESCRIPTION_RW
701
Len Brown4be44fc2005-08-05 00:44:28 -0400702static int acpi_battery_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703{
Len Brown4be44fc2005-08-05 00:44:28 -0400704 struct proc_dir_entry *entry = NULL;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400705 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 if (!acpi_device_dir(device)) {
708 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400709 acpi_battery_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400711 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 acpi_device_dir(device)->owner = THIS_MODULE;
713 }
714
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400715 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i) {
716 entry = create_proc_entry(acpi_battery_file[i].name,
717 acpi_battery_file[i].mode, acpi_device_dir(device));
718 if (!entry)
719 return -ENODEV;
720 else {
721 entry->proc_fops = &acpi_battery_file[i].ops;
722 entry->data = acpi_driver_data(device);
723 entry->owner = THIS_MODULE;
724 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400726 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727}
728
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400729static void acpi_battery_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400731 int i;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400732 if (!acpi_device_dir(device))
733 return;
734 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i)
735 remove_proc_entry(acpi_battery_file[i].name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400738 remove_proc_entry(acpi_device_bid(device), acpi_battery_dir);
739 acpi_device_dir(device) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740}
741
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400742#endif
Alexey Starikovskiy3e58ea02007-09-26 19:43:11 +0400743
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744/* --------------------------------------------------------------------------
745 Driver Interface
746 -------------------------------------------------------------------------- */
747
Len Brown4be44fc2005-08-05 00:44:28 -0400748static void acpi_battery_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200750 struct acpi_battery *battery = data;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400751 struct acpi_device *device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -0400753 return;
Patrick Mochel145def82006-05-19 16:54:39 -0400754 device = battery->device;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400755 acpi_battery_update(battery);
756 acpi_bus_generate_proc_event(device, event,
757 acpi_battery_present(battery));
758 acpi_bus_generate_netlink_event(device->pnp.device_class,
759 device->dev.bus_id, event,
Vladimir Lebedev9ea7d572007-02-20 15:48:06 +0300760 acpi_battery_present(battery));
Andrey Borzenkov508df922007-10-28 12:50:09 +0300761 /* acpi_batter_update could remove power_supply object */
762 if (battery->bat.dev)
763 kobject_uevent(&battery->bat.dev->kobj, KOBJ_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764}
765
Len Brown4be44fc2005-08-05 00:44:28 -0400766static int acpi_battery_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767{
Len Brown4be44fc2005-08-05 00:44:28 -0400768 int result = 0;
769 acpi_status status = 0;
770 struct acpi_battery *battery = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400772 return -EINVAL;
Burman Yan36bcbec2006-12-19 12:56:11 -0800773 battery = kzalloc(sizeof(struct acpi_battery), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -0400775 return -ENOMEM;
Patrick Mochel145def82006-05-19 16:54:39 -0400776 battery->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 strcpy(acpi_device_name(device), ACPI_BATTERY_DEVICE_NAME);
778 strcpy(acpi_device_class(device), ACPI_BATTERY_CLASS);
779 acpi_driver_data(device) = battery;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400780 mutex_init(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400781 acpi_battery_update(battery);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400782#ifdef CONFIG_ACPI_PROCFS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 result = acpi_battery_add_fs(device);
784 if (result)
785 goto end;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400786#endif
Patrick Mochel3b073ec2006-05-19 16:54:41 -0400787 status = acpi_install_notify_handler(device->handle,
Vladimir Lebedev9fdae722006-06-27 04:49:00 -0400788 ACPI_ALL_NOTIFY,
Len Brown4be44fc2005-08-05 00:44:28 -0400789 acpi_battery_notify, battery);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 if (ACPI_FAILURE(status)) {
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300791 ACPI_EXCEPTION((AE_INFO, status, "Installing notify handler"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 result = -ENODEV;
793 goto end;
794 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 printk(KERN_INFO PREFIX "%s Slot [%s] (battery %s)\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400796 ACPI_BATTERY_DEVICE_NAME, acpi_device_bid(device),
797 device->status.battery_present ? "present" : "absent");
Len Brown4be44fc2005-08-05 00:44:28 -0400798 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 if (result) {
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400800#ifdef CONFIG_ACPI_PROCFS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 acpi_battery_remove_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400802#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 kfree(battery);
804 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400805 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806}
807
Len Brown4be44fc2005-08-05 00:44:28 -0400808static int acpi_battery_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
Len Brown4be44fc2005-08-05 00:44:28 -0400810 acpi_status status = 0;
811 struct acpi_battery *battery = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400814 return -EINVAL;
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200815 battery = acpi_driver_data(device);
Patrick Mochel3b073ec2006-05-19 16:54:41 -0400816 status = acpi_remove_notify_handler(device->handle,
Vladimir Lebedev9fdae722006-06-27 04:49:00 -0400817 ACPI_ALL_NOTIFY,
Len Brown4be44fc2005-08-05 00:44:28 -0400818 acpi_battery_notify);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400819#ifdef CONFIG_ACPI_PROCFS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 acpi_battery_remove_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400821#endif
Andrey Borzenkov508df922007-10-28 12:50:09 +0300822 sysfs_remove_battery(battery);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400823 mutex_destroy(&battery->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 kfree(battery);
Patrick Mocheld550d982006-06-27 00:41:40 -0400825 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826}
827
Jiri Kosina34c44152006-10-10 14:20:41 -0700828/* this is needed to learn about changes made in suspended state */
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800829static int acpi_battery_resume(struct acpi_device *device)
Jiri Kosina34c44152006-10-10 14:20:41 -0700830{
831 struct acpi_battery *battery;
Jiri Kosina34c44152006-10-10 14:20:41 -0700832 if (!device)
833 return -EINVAL;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400834 battery = acpi_driver_data(device);
835 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300836 acpi_battery_update(battery);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300837 return 0;
Jiri Kosina34c44152006-10-10 14:20:41 -0700838}
839
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400840static struct acpi_driver acpi_battery_driver = {
841 .name = "battery",
842 .class = ACPI_BATTERY_CLASS,
843 .ids = battery_device_ids,
844 .ops = {
845 .add = acpi_battery_add,
846 .resume = acpi_battery_resume,
847 .remove = acpi_battery_remove,
848 },
849};
850
Len Brown4be44fc2005-08-05 00:44:28 -0400851static int __init acpi_battery_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
Pavel Machek4d8316d2006-08-14 22:37:22 -0700853 if (acpi_disabled)
854 return -ENODEV;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400855#ifdef CONFIG_ACPI_PROCFS
Rich Townsend3f86b832006-07-01 11:36:54 -0400856 acpi_battery_dir = acpi_lock_battery_dir();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 if (!acpi_battery_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -0400858 return -ENODEV;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400859#endif
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400860 if (acpi_bus_register_driver(&acpi_battery_driver) < 0) {
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400861#ifdef CONFIG_ACPI_PROCFS
Rich Townsend3f86b832006-07-01 11:36:54 -0400862 acpi_unlock_battery_dir(acpi_battery_dir);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400863#endif
Patrick Mocheld550d982006-06-27 00:41:40 -0400864 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400866 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867}
868
Len Brown4be44fc2005-08-05 00:44:28 -0400869static void __exit acpi_battery_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 acpi_bus_unregister_driver(&acpi_battery_driver);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400872#ifdef CONFIG_ACPI_PROCFS
Rich Townsend3f86b832006-07-01 11:36:54 -0400873 acpi_unlock_battery_dir(acpi_battery_dir);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400874#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875}
876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877module_init(acpi_battery_init);
878module_exit(acpi_battery_exit);