blob: 681e26b56b11c2b37a3e242db63ee9ef1dc6444a [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
133static int acpi_battery_get_property(struct power_supply *psy,
134 enum power_supply_property psp,
135 union power_supply_propval *val)
136{
137 struct acpi_battery *battery = to_acpi_battery(psy);
138
139 if ((!acpi_battery_present(battery)) &&
140 psp != POWER_SUPPLY_PROP_PRESENT)
141 return -ENODEV;
142 switch (psp) {
143 case POWER_SUPPLY_PROP_STATUS:
144 if (battery->state & 0x01)
145 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
146 else if (battery->state & 0x02)
147 val->intval = POWER_SUPPLY_STATUS_CHARGING;
148 else if (battery->state == 0)
149 val->intval = POWER_SUPPLY_STATUS_FULL;
150 break;
151 case POWER_SUPPLY_PROP_PRESENT:
152 val->intval = acpi_battery_present(battery);
153 break;
154 case POWER_SUPPLY_PROP_TECHNOLOGY:
155 val->intval = acpi_battery_technology(battery);
156 break;
157 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
158 val->intval = battery->design_voltage * 1000;
159 break;
160 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
161 val->intval = battery->voltage_now * 1000;
162 break;
163 case POWER_SUPPLY_PROP_CURRENT_NOW:
164 val->intval = battery->current_now * 1000;
165 break;
166 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
167 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
168 val->intval = battery->design_capacity * 1000;
169 break;
170 case POWER_SUPPLY_PROP_CHARGE_FULL:
171 case POWER_SUPPLY_PROP_ENERGY_FULL:
172 val->intval = battery->full_charge_capacity * 1000;
173 break;
174 case POWER_SUPPLY_PROP_CHARGE_NOW:
175 case POWER_SUPPLY_PROP_ENERGY_NOW:
176 val->intval = battery->capacity_now * 1000;
177 break;
178 case POWER_SUPPLY_PROP_MODEL_NAME:
179 val->strval = battery->model_number;
180 break;
181 case POWER_SUPPLY_PROP_MANUFACTURER:
182 val->strval = battery->oem_info;
183 break;
184 default:
185 return -EINVAL;
186 }
187 return 0;
188}
189
190static enum power_supply_property charge_battery_props[] = {
191 POWER_SUPPLY_PROP_STATUS,
192 POWER_SUPPLY_PROP_PRESENT,
193 POWER_SUPPLY_PROP_TECHNOLOGY,
194 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
195 POWER_SUPPLY_PROP_VOLTAGE_NOW,
196 POWER_SUPPLY_PROP_CURRENT_NOW,
197 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
198 POWER_SUPPLY_PROP_CHARGE_FULL,
199 POWER_SUPPLY_PROP_CHARGE_NOW,
200 POWER_SUPPLY_PROP_MODEL_NAME,
201 POWER_SUPPLY_PROP_MANUFACTURER,
202};
203
204static enum power_supply_property energy_battery_props[] = {
205 POWER_SUPPLY_PROP_STATUS,
206 POWER_SUPPLY_PROP_PRESENT,
207 POWER_SUPPLY_PROP_TECHNOLOGY,
208 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
209 POWER_SUPPLY_PROP_VOLTAGE_NOW,
210 POWER_SUPPLY_PROP_CURRENT_NOW,
211 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN,
212 POWER_SUPPLY_PROP_ENERGY_FULL,
213 POWER_SUPPLY_PROP_ENERGY_NOW,
214 POWER_SUPPLY_PROP_MODEL_NAME,
215 POWER_SUPPLY_PROP_MANUFACTURER,
216};
217
218#ifdef CONFIG_ACPI_PROCFS
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400219inline char *acpi_battery_units(struct acpi_battery *battery)
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400220{
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400221 return (battery->power_unit)?"mA":"mW";
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400222}
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400223#endif
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225/* --------------------------------------------------------------------------
226 Battery Management
227 -------------------------------------------------------------------------- */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400228struct acpi_offsets {
229 size_t offset; /* offset inside struct acpi_sbs_battery */
230 u8 mode; /* int or string? */
231};
232
233static struct acpi_offsets state_offsets[] = {
234 {offsetof(struct acpi_battery, state), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400235 {offsetof(struct acpi_battery, current_now), 0},
236 {offsetof(struct acpi_battery, capacity_now), 0},
237 {offsetof(struct acpi_battery, voltage_now), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400238};
239
240static struct acpi_offsets info_offsets[] = {
241 {offsetof(struct acpi_battery, power_unit), 0},
242 {offsetof(struct acpi_battery, design_capacity), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400243 {offsetof(struct acpi_battery, full_charge_capacity), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400244 {offsetof(struct acpi_battery, technology), 0},
245 {offsetof(struct acpi_battery, design_voltage), 0},
246 {offsetof(struct acpi_battery, design_capacity_warning), 0},
247 {offsetof(struct acpi_battery, design_capacity_low), 0},
248 {offsetof(struct acpi_battery, capacity_granularity_1), 0},
249 {offsetof(struct acpi_battery, capacity_granularity_2), 0},
250 {offsetof(struct acpi_battery, model_number), 1},
251 {offsetof(struct acpi_battery, serial_number), 1},
252 {offsetof(struct acpi_battery, type), 1},
253 {offsetof(struct acpi_battery, oem_info), 1},
254};
255
256static int extract_package(struct acpi_battery *battery,
257 union acpi_object *package,
258 struct acpi_offsets *offsets, int num)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300259{
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400260 int i, *x;
261 union acpi_object *element;
262 if (package->type != ACPI_TYPE_PACKAGE)
263 return -EFAULT;
264 for (i = 0; i < num; ++i) {
265 if (package->package.count <= i)
266 return -EFAULT;
267 element = &package->package.elements[i];
268 if (offsets[i].mode) {
269 if (element->type != ACPI_TYPE_STRING &&
270 element->type != ACPI_TYPE_BUFFER)
271 return -EFAULT;
272 strncpy((u8 *)battery + offsets[i].offset,
273 element->string.pointer, 32);
274 } else {
275 if (element->type != ACPI_TYPE_INTEGER)
276 return -EFAULT;
277 x = (int *)((u8 *)battery + offsets[i].offset);
278 *x = element->integer.value;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300279 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300280 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300281 return 0;
282}
283
284static int acpi_battery_get_status(struct acpi_battery *battery)
285{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400286 if (acpi_bus_get_status(battery->device)) {
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300287 ACPI_EXCEPTION((AE_INFO, AE_ERROR, "Evaluating _STA"));
288 return -ENODEV;
289 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400290 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300291}
292
293static int acpi_battery_get_info(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400295 int result = -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -0400296 acpi_status status = 0;
297 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300299 if (!acpi_battery_present(battery))
300 return 0;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400301 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400302 status = acpi_evaluate_object(battery->device->handle, "_BIF",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400303 NULL, &buffer);
304 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400307 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BIF"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400308 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400310
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400311 result = extract_package(battery, buffer.pointer,
312 info_offsets, ARRAY_SIZE(info_offsets));
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400313 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -0400314 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315}
316
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300317static int acpi_battery_get_state(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
Len Brown4be44fc2005-08-05 00:44:28 -0400319 int result = 0;
320 acpi_status status = 0;
321 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300323 if (!acpi_battery_present(battery))
324 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400326 if (battery->update_time &&
327 time_before(jiffies, battery->update_time +
328 msecs_to_jiffies(cache_time)))
329 return 0;
330
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400331 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400332 status = acpi_evaluate_object(battery->device->handle, "_BST",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400333 NULL, &buffer);
334 mutex_unlock(&battery->lock);
Len Brown5b31d892007-08-15 00:19:26 -0400335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400337 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BST"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400338 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400340
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400341 result = extract_package(battery, buffer.pointer,
342 state_offsets, ARRAY_SIZE(state_offsets));
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400343 battery->update_time = jiffies;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400344 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -0400345 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346}
347
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400348static int acpi_battery_set_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
Len Brown4be44fc2005-08-05 00:44:28 -0400350 acpi_status status = 0;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400351 union acpi_object arg0 = { .type = ACPI_TYPE_INTEGER };
Len Brown4be44fc2005-08-05 00:44:28 -0400352 struct acpi_object_list arg_list = { 1, &arg0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400354 if (!acpi_battery_present(battery)|| !battery->alarm_present)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300355 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400357 arg0.integer.value = battery->alarm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400359 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400360 status = acpi_evaluate_object(battery->device->handle, "_BTP",
361 &arg_list, NULL);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400362 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400365 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400367 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Alarm set to %d\n", battery->alarm));
Patrick Mocheld550d982006-06-27 00:41:40 -0400368 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369}
370
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300371static int acpi_battery_init_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372{
Len Brown4be44fc2005-08-05 00:44:28 -0400373 acpi_status status = AE_OK;
374 acpi_handle handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300376 /* See if alarms are supported, and if so, set default */
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400377 status = acpi_get_handle(battery->device->handle, "_BTP", &handle);
378 if (ACPI_FAILURE(status)) {
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400379 battery->alarm_present = 0;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400380 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 }
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400382 battery->alarm_present = 1;
383 if (!battery->alarm)
384 battery->alarm = battery->design_capacity_warning;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400385 return acpi_battery_set_alarm(battery);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386}
387
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400388static int acpi_battery_update(struct acpi_battery *battery)
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500389{
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400390 int saved_present = acpi_battery_present(battery);
391 int result = acpi_battery_get_status(battery);
392 if (result || !acpi_battery_present(battery))
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300393 return result;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400394 if (saved_present != acpi_battery_present(battery) ||
395 !battery->update_time) {
396 battery->update_time = 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300397 result = acpi_battery_get_info(battery);
398 if (result)
399 return result;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400400 if (battery->power_unit) {
401 battery->bat.properties = charge_battery_props;
402 battery->bat.num_properties =
403 ARRAY_SIZE(charge_battery_props);
404 } else {
405 battery->bat.properties = energy_battery_props;
406 battery->bat.num_properties =
407 ARRAY_SIZE(energy_battery_props);
408 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300409 acpi_battery_init_alarm(battery);
410 }
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400411 return acpi_battery_get_state(battery);
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500412}
413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414/* --------------------------------------------------------------------------
415 FS Interface (/proc)
416 -------------------------------------------------------------------------- */
417
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400418#ifdef CONFIG_ACPI_PROCFS
Len Brown4be44fc2005-08-05 00:44:28 -0400419static struct proc_dir_entry *acpi_battery_dir;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300420
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400421static int acpi_battery_print_info(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200423 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300425 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 goto end;
427
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400428 seq_printf(seq, "present: %s\n",
429 acpi_battery_present(battery)?"yes":"no");
430 if (!acpi_battery_present(battery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 goto end;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400432 if (battery->design_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 seq_printf(seq, "design capacity: unknown\n");
434 else
435 seq_printf(seq, "design capacity: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400436 battery->design_capacity,
437 acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400439 if (battery->full_charge_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 seq_printf(seq, "last full capacity: unknown\n");
441 else
442 seq_printf(seq, "last full capacity: %d %sh\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400443 battery->full_charge_capacity,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400444 acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400446 seq_printf(seq, "battery technology: %srechargeable\n",
447 (!battery->technology)?"non-":"");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400449 if (battery->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 seq_printf(seq, "design voltage: unknown\n");
451 else
452 seq_printf(seq, "design voltage: %d mV\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400453 battery->design_voltage);
Len Brown4be44fc2005-08-05 00:44:28 -0400454 seq_printf(seq, "design capacity warning: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400455 battery->design_capacity_warning,
456 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400457 seq_printf(seq, "design capacity low: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400458 battery->design_capacity_low,
459 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400460 seq_printf(seq, "capacity granularity 1: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400461 battery->capacity_granularity_1,
462 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400463 seq_printf(seq, "capacity granularity 2: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400464 battery->capacity_granularity_2,
465 acpi_battery_units(battery));
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400466 seq_printf(seq, "model number: %s\n", battery->model_number);
467 seq_printf(seq, "serial number: %s\n", battery->serial_number);
468 seq_printf(seq, "battery type: %s\n", battery->type);
469 seq_printf(seq, "OEM info: %s\n", battery->oem_info);
Len Brown4be44fc2005-08-05 00:44:28 -0400470 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300471 if (result)
472 seq_printf(seq, "ERROR: Unable to read battery info\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300473 return result;
474}
475
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400476static int acpi_battery_print_state(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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400488 seq_printf(seq, "capacity state: %s\n",
489 (battery->state & 0x04)?"critical":"ok");
490 if ((battery->state & 0x01) && (battery->state & 0x02))
Len Brown4be44fc2005-08-05 00:44:28 -0400491 seq_printf(seq,
492 "charging state: charging/discharging\n");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400493 else if (battery->state & 0x01)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 seq_printf(seq, "charging state: discharging\n");
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400495 else if (battery->state & 0x02)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 seq_printf(seq, "charging state: charging\n");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400497 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 seq_printf(seq, "charging state: charged\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400500 if (battery->current_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 seq_printf(seq, "present rate: unknown\n");
502 else
503 seq_printf(seq, "present rate: %d %s\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400504 battery->current_now, acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400506 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 seq_printf(seq, "remaining capacity: unknown\n");
508 else
509 seq_printf(seq, "remaining capacity: %d %sh\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400510 battery->capacity_now, acpi_battery_units(battery));
511 if (battery->voltage_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 seq_printf(seq, "present voltage: unknown\n");
513 else
514 seq_printf(seq, "present voltage: %d mV\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400515 battery->voltage_now);
Len Brown4be44fc2005-08-05 00:44:28 -0400516 end:
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400517 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300518 seq_printf(seq, "ERROR: Unable to read battery state\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300519
520 return result;
521}
522
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400523static int acpi_battery_print_alarm(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200525 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300527 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 goto end;
529
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300530 if (!acpi_battery_present(battery)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 seq_printf(seq, "present: no\n");
532 goto end;
533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 seq_printf(seq, "alarm: ");
535 if (!battery->alarm)
536 seq_printf(seq, "unsupported\n");
537 else
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400538 seq_printf(seq, "%u %sh\n", battery->alarm,
539 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400540 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300541 if (result)
542 seq_printf(seq, "ERROR: Unable to read battery alarm\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300543 return result;
544}
545
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400546static ssize_t acpi_battery_write_alarm(struct file *file,
547 const char __user * buffer,
548 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549{
Len Brown4be44fc2005-08-05 00:44:28 -0400550 int result = 0;
551 char alarm_string[12] = { '\0' };
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200552 struct seq_file *m = file->private_data;
553 struct acpi_battery *battery = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 if (!battery || (count > sizeof(alarm_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -0400556 return -EINVAL;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300557 if (result) {
558 result = -ENODEV;
559 goto end;
560 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300561 if (!acpi_battery_present(battery)) {
562 result = -ENODEV;
563 goto end;
564 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300565 if (copy_from_user(alarm_string, buffer, count)) {
566 result = -EFAULT;
567 goto end;
568 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 alarm_string[count] = '\0';
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400570 battery->alarm = simple_strtol(alarm_string, NULL, 0);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400571 result = acpi_battery_set_alarm(battery);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300572 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300573 if (!result)
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400574 return count;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300575 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576}
577
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400578typedef int(*print_func)(struct seq_file *seq, int result);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400579
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400580static print_func acpi_print_funcs[ACPI_BATTERY_NUMFILES] = {
581 acpi_battery_print_info,
582 acpi_battery_print_state,
583 acpi_battery_print_alarm,
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400584};
585
586static int acpi_battery_read(int fid, struct seq_file *seq)
587{
588 struct acpi_battery *battery = seq->private;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400589 int result = acpi_battery_update(battery);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400590 return acpi_print_funcs[fid](seq, result);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400591}
592
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400593#define DECLARE_FILE_FUNCTIONS(_name) \
594static int acpi_battery_read_##_name(struct seq_file *seq, void *offset) \
595{ \
596 return acpi_battery_read(_name##_tag, seq); \
597} \
598static int acpi_battery_##_name##_open_fs(struct inode *inode, struct file *file) \
599{ \
600 return single_open(file, acpi_battery_read_##_name, PDE(inode)->data); \
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400601}
602
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400603DECLARE_FILE_FUNCTIONS(info);
604DECLARE_FILE_FUNCTIONS(state);
605DECLARE_FILE_FUNCTIONS(alarm);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400606
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400607#undef DECLARE_FILE_FUNCTIONS
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400608
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400609#define FILE_DESCRIPTION_RO(_name) \
610 { \
611 .name = __stringify(_name), \
612 .mode = S_IRUGO, \
613 .ops = { \
614 .open = acpi_battery_##_name##_open_fs, \
615 .read = seq_read, \
616 .llseek = seq_lseek, \
617 .release = single_release, \
618 .owner = THIS_MODULE, \
619 }, \
620 }
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400621
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400622#define FILE_DESCRIPTION_RW(_name) \
623 { \
624 .name = __stringify(_name), \
625 .mode = S_IFREG | S_IRUGO | S_IWUSR, \
626 .ops = { \
627 .open = acpi_battery_##_name##_open_fs, \
628 .read = seq_read, \
629 .llseek = seq_lseek, \
630 .write = acpi_battery_write_##_name, \
631 .release = single_release, \
632 .owner = THIS_MODULE, \
633 }, \
634 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400636static struct battery_file {
637 struct file_operations ops;
638 mode_t mode;
639 char *name;
640} acpi_battery_file[] = {
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400641 FILE_DESCRIPTION_RO(info),
642 FILE_DESCRIPTION_RO(state),
643 FILE_DESCRIPTION_RW(alarm),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644};
645
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400646#undef FILE_DESCRIPTION_RO
647#undef FILE_DESCRIPTION_RW
648
Len Brown4be44fc2005-08-05 00:44:28 -0400649static int acpi_battery_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650{
Len Brown4be44fc2005-08-05 00:44:28 -0400651 struct proc_dir_entry *entry = NULL;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400652 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 if (!acpi_device_dir(device)) {
655 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400656 acpi_battery_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400658 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 acpi_device_dir(device)->owner = THIS_MODULE;
660 }
661
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400662 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i) {
663 entry = create_proc_entry(acpi_battery_file[i].name,
664 acpi_battery_file[i].mode, acpi_device_dir(device));
665 if (!entry)
666 return -ENODEV;
667 else {
668 entry->proc_fops = &acpi_battery_file[i].ops;
669 entry->data = acpi_driver_data(device);
670 entry->owner = THIS_MODULE;
671 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400673 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674}
675
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400676static void acpi_battery_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677{
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400678 int i;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400679 if (!acpi_device_dir(device))
680 return;
681 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i)
682 remove_proc_entry(acpi_battery_file[i].name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400685 remove_proc_entry(acpi_device_bid(device), acpi_battery_dir);
686 acpi_device_dir(device) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687}
688
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400689#endif
Alexey Starikovskiy3e58ea02007-09-26 19:43:11 +0400690
691static ssize_t acpi_battery_alarm_show(struct device *dev,
692 struct device_attribute *attr,
693 char *buf)
694{
695 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
696 return sprintf(buf, "%d\n", battery->alarm * 1000);
697}
698
699static ssize_t acpi_battery_alarm_store(struct device *dev,
700 struct device_attribute *attr,
701 const char *buf, size_t count)
702{
703 unsigned long x;
704 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
705 if (sscanf(buf, "%ld\n", &x) == 1)
706 battery->alarm = x/1000;
707 if (acpi_battery_present(battery))
708 acpi_battery_set_alarm(battery);
709 return count;
710}
711
712static struct device_attribute alarm_attr = {
713 .attr = {.name = "alarm", .mode = 0644, .owner = THIS_MODULE},
714 .show = acpi_battery_alarm_show,
715 .store = acpi_battery_alarm_store,
716};
717
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718/* --------------------------------------------------------------------------
719 Driver Interface
720 -------------------------------------------------------------------------- */
721
Len Brown4be44fc2005-08-05 00:44:28 -0400722static void acpi_battery_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200724 struct acpi_battery *battery = data;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400725 struct acpi_device *device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -0400727 return;
Patrick Mochel145def82006-05-19 16:54:39 -0400728 device = battery->device;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400729 acpi_battery_update(battery);
730 acpi_bus_generate_proc_event(device, event,
731 acpi_battery_present(battery));
732 acpi_bus_generate_netlink_event(device->pnp.device_class,
733 device->dev.bus_id, event,
Vladimir Lebedev9ea7d572007-02-20 15:48:06 +0300734 acpi_battery_present(battery));
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400735 kobject_uevent(&battery->bat.dev->kobj, KOBJ_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736}
737
Len Brown4be44fc2005-08-05 00:44:28 -0400738static int acpi_battery_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
Len Brown4be44fc2005-08-05 00:44:28 -0400740 int result = 0;
741 acpi_status status = 0;
742 struct acpi_battery *battery = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400744 return -EINVAL;
Burman Yan36bcbec2006-12-19 12:56:11 -0800745 battery = kzalloc(sizeof(struct acpi_battery), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -0400747 return -ENOMEM;
Patrick Mochel145def82006-05-19 16:54:39 -0400748 battery->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 strcpy(acpi_device_name(device), ACPI_BATTERY_DEVICE_NAME);
750 strcpy(acpi_device_class(device), ACPI_BATTERY_CLASS);
751 acpi_driver_data(device) = battery;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400752 mutex_init(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400753 acpi_battery_update(battery);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400754#ifdef CONFIG_ACPI_PROCFS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 result = acpi_battery_add_fs(device);
756 if (result)
757 goto end;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400758#endif
759 battery->bat.name = acpi_device_bid(device);
760 battery->bat.type = POWER_SUPPLY_TYPE_BATTERY;
761 battery->bat.get_property = acpi_battery_get_property;
762 result = power_supply_register(&battery->device->dev, &battery->bat);
Alexey Starikovskiy3e58ea02007-09-26 19:43:11 +0400763 result = device_create_file(battery->bat.dev, &alarm_attr);
Patrick Mochel3b073ec2006-05-19 16:54:41 -0400764 status = acpi_install_notify_handler(device->handle,
Vladimir Lebedev9fdae722006-06-27 04:49:00 -0400765 ACPI_ALL_NOTIFY,
Len Brown4be44fc2005-08-05 00:44:28 -0400766 acpi_battery_notify, battery);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 if (ACPI_FAILURE(status)) {
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300768 ACPI_EXCEPTION((AE_INFO, status, "Installing notify handler"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 result = -ENODEV;
770 goto end;
771 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 printk(KERN_INFO PREFIX "%s Slot [%s] (battery %s)\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400773 ACPI_BATTERY_DEVICE_NAME, acpi_device_bid(device),
774 device->status.battery_present ? "present" : "absent");
Len Brown4be44fc2005-08-05 00:44:28 -0400775 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 if (result) {
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400777#ifdef CONFIG_ACPI_PROCFS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 acpi_battery_remove_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400779#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 kfree(battery);
781 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400782 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783}
784
Len Brown4be44fc2005-08-05 00:44:28 -0400785static int acpi_battery_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786{
Len Brown4be44fc2005-08-05 00:44:28 -0400787 acpi_status status = 0;
788 struct acpi_battery *battery = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400791 return -EINVAL;
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200792 battery = acpi_driver_data(device);
Patrick Mochel3b073ec2006-05-19 16:54:41 -0400793 status = acpi_remove_notify_handler(device->handle,
Vladimir Lebedev9fdae722006-06-27 04:49:00 -0400794 ACPI_ALL_NOTIFY,
Len Brown4be44fc2005-08-05 00:44:28 -0400795 acpi_battery_notify);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400796#ifdef CONFIG_ACPI_PROCFS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 acpi_battery_remove_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400798#endif
Alexey Starikovskiy3e58ea02007-09-26 19:43:11 +0400799 if (battery->bat.dev) {
800 device_remove_file(battery->bat.dev, &alarm_attr);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400801 power_supply_unregister(&battery->bat);
Alexey Starikovskiy3e58ea02007-09-26 19:43:11 +0400802 }
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400803 mutex_destroy(&battery->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 kfree(battery);
Patrick Mocheld550d982006-06-27 00:41:40 -0400805 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806}
807
Jiri Kosina34c44152006-10-10 14:20:41 -0700808/* this is needed to learn about changes made in suspended state */
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800809static int acpi_battery_resume(struct acpi_device *device)
Jiri Kosina34c44152006-10-10 14:20:41 -0700810{
811 struct acpi_battery *battery;
Jiri Kosina34c44152006-10-10 14:20:41 -0700812 if (!device)
813 return -EINVAL;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400814 battery = acpi_driver_data(device);
815 battery->update_time = 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300816 return 0;
Jiri Kosina34c44152006-10-10 14:20:41 -0700817}
818
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400819static struct acpi_driver acpi_battery_driver = {
820 .name = "battery",
821 .class = ACPI_BATTERY_CLASS,
822 .ids = battery_device_ids,
823 .ops = {
824 .add = acpi_battery_add,
825 .resume = acpi_battery_resume,
826 .remove = acpi_battery_remove,
827 },
828};
829
Len Brown4be44fc2005-08-05 00:44:28 -0400830static int __init acpi_battery_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
Pavel Machek4d8316d2006-08-14 22:37:22 -0700832 if (acpi_disabled)
833 return -ENODEV;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400834#ifdef CONFIG_ACPI_PROCFS
Rich Townsend3f86b832006-07-01 11:36:54 -0400835 acpi_battery_dir = acpi_lock_battery_dir();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 if (!acpi_battery_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -0400837 return -ENODEV;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400838#endif
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400839 if (acpi_bus_register_driver(&acpi_battery_driver) < 0) {
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400840#ifdef CONFIG_ACPI_PROCFS
Rich Townsend3f86b832006-07-01 11:36:54 -0400841 acpi_unlock_battery_dir(acpi_battery_dir);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400842#endif
Patrick Mocheld550d982006-06-27 00:41:40 -0400843 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400845 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846}
847
Len Brown4be44fc2005-08-05 00:44:28 -0400848static void __exit acpi_battery_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 acpi_bus_unregister_driver(&acpi_battery_driver);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400851#ifdef CONFIG_ACPI_PROCFS
Rich Townsend3f86b832006-07-01 11:36:54 -0400852 acpi_unlock_battery_dir(acpi_battery_dir);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400853#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854}
855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856module_init(acpi_battery_init);
857module_exit(acpi_battery_exit);