blob: c4a769d1ba8542bf0210f71eb6930641c9062a2f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04002 * battery.c - ACPI Battery Driver (Revision: 2.0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +04004 * Copyright (C) 2007 Alexey Starikovskiy <astarikovskiy@suse.de>
5 * Copyright (C) 2004-2007 Vladimir Lebedev <vladimir.p.lebedev@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
7 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
8 *
9 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or (at
14 * your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License along
22 * with this program; if not, write to the Free Software Foundation, Inc.,
23 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
24 *
25 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
26 */
27
28#include <linux/kernel.h>
29#include <linux/module.h>
30#include <linux/init.h>
31#include <linux/types.h>
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +040032#include <linux/jiffies.h>
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040033
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +030034#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/proc_fs.h>
36#include <linux/seq_file.h>
37#include <asm/uaccess.h>
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040038#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40#include <acpi/acpi_bus.h>
41#include <acpi/acpi_drivers.h>
42
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -050043#ifdef CONFIG_ACPI_SYSFS_POWER
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040044#include <linux/power_supply.h>
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -050045#endif
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040046
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#define ACPI_BATTERY_VALUE_UNKNOWN 0xFFFFFFFF
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define ACPI_BATTERY_COMPONENT 0x00040000
50#define ACPI_BATTERY_CLASS "battery"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define ACPI_BATTERY_DEVICE_NAME "Battery"
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#define ACPI_BATTERY_NOTIFY_STATUS 0x80
53#define ACPI_BATTERY_NOTIFY_INFO 0x81
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#define _COMPONENT ACPI_BATTERY_COMPONENT
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +030056
Len Brownf52fd662007-02-12 22:42:12 -050057ACPI_MODULE_NAME("battery");
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Len Brownf52fd662007-02-12 22:42:12 -050059MODULE_AUTHOR("Paul Diefenbaugh");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +040060MODULE_AUTHOR("Alexey Starikovskiy <astarikovskiy@suse.de>");
Len Brown7cda93e2007-02-12 23:50:02 -050061MODULE_DESCRIPTION("ACPI Battery Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070062MODULE_LICENSE("GPL");
63
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +040064static unsigned int cache_time = 1000;
65module_param(cache_time, uint, 0644);
66MODULE_PARM_DESC(cache_time, "cache time in milliseconds");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +030067
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +030068#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -040069extern struct proc_dir_entry *acpi_lock_battery_dir(void);
70extern void *acpi_unlock_battery_dir(struct proc_dir_entry *acpi_battery_dir);
71
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040072enum acpi_battery_files {
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +040073 info_tag = 0,
74 state_tag,
75 alarm_tag,
Alexey Starikovskiy78490d82007-05-11 13:18:55 -040076 ACPI_BATTERY_NUMFILES,
77};
78
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040079#endif
80
81static const struct acpi_device_id battery_device_ids[] = {
82 {"PNP0C0A", 0},
83 {"", 0},
84};
85
86MODULE_DEVICE_TABLE(acpi, battery_device_ids);
87
88
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040089struct acpi_battery {
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040090 struct mutex lock;
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -050091#ifdef CONFIG_ACPI_SYSFS_POWER
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040092 struct power_supply bat;
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -050093#endif
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +040094 struct acpi_device *device;
95 unsigned long update_time;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +040096 int current_now;
97 int capacity_now;
98 int voltage_now;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +040099 int design_capacity;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400100 int full_charge_capacity;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400101 int technology;
102 int design_voltage;
103 int design_capacity_warning;
104 int design_capacity_low;
105 int capacity_granularity_1;
106 int capacity_granularity_2;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400107 int alarm;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400108 char model_number[32];
109 char serial_number[32];
110 char type[32];
111 char oem_info[32];
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400112 int state;
113 int power_unit;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300114 u8 alarm_present;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115};
116
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400117#define to_acpi_battery(x) container_of(x, struct acpi_battery, bat);
118
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400119inline int acpi_battery_present(struct acpi_battery *battery)
120{
121 return battery->device->status.battery_present;
122}
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400123
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500124#ifdef CONFIG_ACPI_SYSFS_POWER
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400125static int acpi_battery_technology(struct acpi_battery *battery)
126{
127 if (!strcasecmp("NiCd", battery->type))
128 return POWER_SUPPLY_TECHNOLOGY_NiCd;
129 if (!strcasecmp("NiMH", battery->type))
130 return POWER_SUPPLY_TECHNOLOGY_NiMH;
131 if (!strcasecmp("LION", battery->type))
132 return POWER_SUPPLY_TECHNOLOGY_LION;
Andrey Borzenkovad40e682007-11-10 20:02:49 +0300133 if (!strncasecmp("LI-ION", battery->type, 6))
Alexey Starikovskiy0bde7ee2007-10-28 15:33:10 +0300134 return POWER_SUPPLY_TECHNOLOGY_LION;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400135 if (!strcasecmp("LiP", battery->type))
136 return POWER_SUPPLY_TECHNOLOGY_LIPO;
137 return POWER_SUPPLY_TECHNOLOGY_UNKNOWN;
138}
139
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300140static int acpi_battery_get_state(struct acpi_battery *battery);
Alexey Starikovskiyb19073a2007-10-25 17:10:47 -0400141
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400142static int acpi_battery_get_property(struct power_supply *psy,
143 enum power_supply_property psp,
144 union power_supply_propval *val)
145{
146 struct acpi_battery *battery = to_acpi_battery(psy);
147
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300148 if (acpi_battery_present(battery)) {
149 /* run battery update only if it is present */
150 acpi_battery_get_state(battery);
151 } else if (psp != POWER_SUPPLY_PROP_PRESENT)
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400152 return -ENODEV;
153 switch (psp) {
154 case POWER_SUPPLY_PROP_STATUS:
155 if (battery->state & 0x01)
156 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
157 else if (battery->state & 0x02)
158 val->intval = POWER_SUPPLY_STATUS_CHARGING;
159 else if (battery->state == 0)
160 val->intval = POWER_SUPPLY_STATUS_FULL;
Roland Dreier4c41d3a2007-11-07 15:09:09 -0800161 else
162 val->intval = POWER_SUPPLY_STATUS_UNKNOWN;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400163 break;
164 case POWER_SUPPLY_PROP_PRESENT:
165 val->intval = acpi_battery_present(battery);
166 break;
167 case POWER_SUPPLY_PROP_TECHNOLOGY:
168 val->intval = acpi_battery_technology(battery);
169 break;
170 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
171 val->intval = battery->design_voltage * 1000;
172 break;
173 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
174 val->intval = battery->voltage_now * 1000;
175 break;
176 case POWER_SUPPLY_PROP_CURRENT_NOW:
177 val->intval = battery->current_now * 1000;
178 break;
179 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
180 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
181 val->intval = battery->design_capacity * 1000;
182 break;
183 case POWER_SUPPLY_PROP_CHARGE_FULL:
184 case POWER_SUPPLY_PROP_ENERGY_FULL:
185 val->intval = battery->full_charge_capacity * 1000;
186 break;
187 case POWER_SUPPLY_PROP_CHARGE_NOW:
188 case POWER_SUPPLY_PROP_ENERGY_NOW:
189 val->intval = battery->capacity_now * 1000;
190 break;
191 case POWER_SUPPLY_PROP_MODEL_NAME:
192 val->strval = battery->model_number;
193 break;
194 case POWER_SUPPLY_PROP_MANUFACTURER:
195 val->strval = battery->oem_info;
196 break;
197 default:
198 return -EINVAL;
199 }
200 return 0;
201}
202
203static enum power_supply_property charge_battery_props[] = {
204 POWER_SUPPLY_PROP_STATUS,
205 POWER_SUPPLY_PROP_PRESENT,
206 POWER_SUPPLY_PROP_TECHNOLOGY,
207 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
208 POWER_SUPPLY_PROP_VOLTAGE_NOW,
209 POWER_SUPPLY_PROP_CURRENT_NOW,
210 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
211 POWER_SUPPLY_PROP_CHARGE_FULL,
212 POWER_SUPPLY_PROP_CHARGE_NOW,
213 POWER_SUPPLY_PROP_MODEL_NAME,
214 POWER_SUPPLY_PROP_MANUFACTURER,
215};
216
217static enum power_supply_property energy_battery_props[] = {
218 POWER_SUPPLY_PROP_STATUS,
219 POWER_SUPPLY_PROP_PRESENT,
220 POWER_SUPPLY_PROP_TECHNOLOGY,
221 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
222 POWER_SUPPLY_PROP_VOLTAGE_NOW,
223 POWER_SUPPLY_PROP_CURRENT_NOW,
224 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN,
225 POWER_SUPPLY_PROP_ENERGY_FULL,
226 POWER_SUPPLY_PROP_ENERGY_NOW,
227 POWER_SUPPLY_PROP_MODEL_NAME,
228 POWER_SUPPLY_PROP_MANUFACTURER,
229};
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500230#endif
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400231
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300232#ifdef CONFIG_ACPI_PROCFS_POWER
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400233inline char *acpi_battery_units(struct acpi_battery *battery)
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400234{
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400235 return (battery->power_unit)?"mA":"mW";
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400236}
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400237#endif
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239/* --------------------------------------------------------------------------
240 Battery Management
241 -------------------------------------------------------------------------- */
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400242struct acpi_offsets {
243 size_t offset; /* offset inside struct acpi_sbs_battery */
244 u8 mode; /* int or string? */
245};
246
247static struct acpi_offsets state_offsets[] = {
248 {offsetof(struct acpi_battery, state), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400249 {offsetof(struct acpi_battery, current_now), 0},
250 {offsetof(struct acpi_battery, capacity_now), 0},
251 {offsetof(struct acpi_battery, voltage_now), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400252};
253
254static struct acpi_offsets info_offsets[] = {
255 {offsetof(struct acpi_battery, power_unit), 0},
256 {offsetof(struct acpi_battery, design_capacity), 0},
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400257 {offsetof(struct acpi_battery, full_charge_capacity), 0},
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400258 {offsetof(struct acpi_battery, technology), 0},
259 {offsetof(struct acpi_battery, design_voltage), 0},
260 {offsetof(struct acpi_battery, design_capacity_warning), 0},
261 {offsetof(struct acpi_battery, design_capacity_low), 0},
262 {offsetof(struct acpi_battery, capacity_granularity_1), 0},
263 {offsetof(struct acpi_battery, capacity_granularity_2), 0},
264 {offsetof(struct acpi_battery, model_number), 1},
265 {offsetof(struct acpi_battery, serial_number), 1},
266 {offsetof(struct acpi_battery, type), 1},
267 {offsetof(struct acpi_battery, oem_info), 1},
268};
269
270static int extract_package(struct acpi_battery *battery,
271 union acpi_object *package,
272 struct acpi_offsets *offsets, int num)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300273{
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300274 int i;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400275 union acpi_object *element;
276 if (package->type != ACPI_TYPE_PACKAGE)
277 return -EFAULT;
278 for (i = 0; i < num; ++i) {
279 if (package->package.count <= i)
280 return -EFAULT;
281 element = &package->package.elements[i];
282 if (offsets[i].mode) {
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300283 u8 *ptr = (u8 *)battery + offsets[i].offset;
284 if (element->type == ACPI_TYPE_STRING ||
285 element->type == ACPI_TYPE_BUFFER)
286 strncpy(ptr, element->string.pointer, 32);
287 else if (element->type == ACPI_TYPE_INTEGER) {
288 strncpy(ptr, (u8 *)&element->integer.value,
289 sizeof(acpi_integer));
290 ptr[sizeof(acpi_integer)] = 0;
291 } else return -EFAULT;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400292 } else {
Alexey Starikovskiy106449e2007-10-29 23:29:40 +0300293 if (element->type == ACPI_TYPE_INTEGER) {
294 int *x = (int *)((u8 *)battery +
295 offsets[i].offset);
296 *x = element->integer.value;
297 } else return -EFAULT;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300298 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300299 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300300 return 0;
301}
302
303static int acpi_battery_get_status(struct acpi_battery *battery)
304{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400305 if (acpi_bus_get_status(battery->device)) {
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300306 ACPI_EXCEPTION((AE_INFO, AE_ERROR, "Evaluating _STA"));
307 return -ENODEV;
308 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400309 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300310}
311
312static int acpi_battery_get_info(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400314 int result = -EFAULT;
Len Brown4be44fc2005-08-05 00:44:28 -0400315 acpi_status status = 0;
316 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300318 if (!acpi_battery_present(battery))
319 return 0;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400320 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400321 status = acpi_evaluate_object(battery->device->handle, "_BIF",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400322 NULL, &buffer);
323 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400326 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BIF"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400327 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400329
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400330 result = extract_package(battery, buffer.pointer,
331 info_offsets, ARRAY_SIZE(info_offsets));
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400332 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -0400333 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334}
335
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300336static int acpi_battery_get_state(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
Len Brown4be44fc2005-08-05 00:44:28 -0400338 int result = 0;
339 acpi_status status = 0;
340 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300342 if (!acpi_battery_present(battery))
343 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400345 if (battery->update_time &&
346 time_before(jiffies, battery->update_time +
347 msecs_to_jiffies(cache_time)))
348 return 0;
349
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400350 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400351 status = acpi_evaluate_object(battery->device->handle, "_BST",
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400352 NULL, &buffer);
353 mutex_unlock(&battery->lock);
Len Brown5b31d892007-08-15 00:19:26 -0400354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400356 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BST"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400357 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 }
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400359
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400360 result = extract_package(battery, buffer.pointer,
361 state_offsets, ARRAY_SIZE(state_offsets));
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400362 battery->update_time = jiffies;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400363 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -0400364 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365}
366
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400367static int acpi_battery_set_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
Len Brown4be44fc2005-08-05 00:44:28 -0400369 acpi_status status = 0;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400370 union acpi_object arg0 = { .type = ACPI_TYPE_INTEGER };
Len Brown4be44fc2005-08-05 00:44:28 -0400371 struct acpi_object_list arg_list = { 1, &arg0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400373 if (!acpi_battery_present(battery)|| !battery->alarm_present)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300374 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400376 arg0.integer.value = battery->alarm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400378 mutex_lock(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400379 status = acpi_evaluate_object(battery->device->handle, "_BTP",
380 &arg_list, NULL);
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400381 mutex_unlock(&battery->lock);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400384 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400386 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Alarm set to %d\n", battery->alarm));
Patrick Mocheld550d982006-06-27 00:41:40 -0400387 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388}
389
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300390static int acpi_battery_init_alarm(struct acpi_battery *battery)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391{
Len Brown4be44fc2005-08-05 00:44:28 -0400392 acpi_status status = AE_OK;
393 acpi_handle handle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300395 /* See if alarms are supported, and if so, set default */
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400396 status = acpi_get_handle(battery->device->handle, "_BTP", &handle);
397 if (ACPI_FAILURE(status)) {
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400398 battery->alarm_present = 0;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400399 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 }
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400401 battery->alarm_present = 1;
402 if (!battery->alarm)
403 battery->alarm = battery->design_capacity_warning;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400404 return acpi_battery_set_alarm(battery);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500407#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300408static ssize_t acpi_battery_alarm_show(struct device *dev,
409 struct device_attribute *attr,
410 char *buf)
411{
412 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
413 return sprintf(buf, "%d\n", battery->alarm * 1000);
414}
415
416static ssize_t acpi_battery_alarm_store(struct device *dev,
417 struct device_attribute *attr,
418 const char *buf, size_t count)
419{
420 unsigned long x;
421 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
422 if (sscanf(buf, "%ld\n", &x) == 1)
423 battery->alarm = x/1000;
424 if (acpi_battery_present(battery))
425 acpi_battery_set_alarm(battery);
426 return count;
427}
428
429static struct device_attribute alarm_attr = {
430 .attr = {.name = "alarm", .mode = 0644, .owner = THIS_MODULE},
431 .show = acpi_battery_alarm_show,
432 .store = acpi_battery_alarm_store,
433};
434
435static int sysfs_add_battery(struct acpi_battery *battery)
436{
437 int result;
438
Andrey Borzenkov508df922007-10-28 12:50:09 +0300439 if (battery->power_unit) {
440 battery->bat.properties = charge_battery_props;
441 battery->bat.num_properties =
442 ARRAY_SIZE(charge_battery_props);
443 } else {
444 battery->bat.properties = energy_battery_props;
445 battery->bat.num_properties =
446 ARRAY_SIZE(energy_battery_props);
447 }
448
449 battery->bat.name = acpi_device_bid(battery->device);
450 battery->bat.type = POWER_SUPPLY_TYPE_BATTERY;
451 battery->bat.get_property = acpi_battery_get_property;
452
453 result = power_supply_register(&battery->device->dev, &battery->bat);
454 if (result)
455 return result;
456 return device_create_file(battery->bat.dev, &alarm_attr);
457}
458
459static void sysfs_remove_battery(struct acpi_battery *battery)
460{
461 if (!battery->bat.dev)
462 return;
463 device_remove_file(battery->bat.dev, &alarm_attr);
464 power_supply_unregister(&battery->bat);
Alexey Starikovskiy91044762007-11-13 12:23:06 +0300465 battery->bat.dev = NULL;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300466}
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500467#endif
Andrey Borzenkov508df922007-10-28 12:50:09 +0300468
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400469static int acpi_battery_update(struct acpi_battery *battery)
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500470{
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500471 int result;
472 result = acpi_battery_get_status(battery);
Andrey Borzenkov508df922007-10-28 12:50:09 +0300473 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300474 return result;
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500475#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300476 if (!acpi_battery_present(battery)) {
477 sysfs_remove_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500478 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300479 return 0;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300480 }
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500481#endif
482 if (!battery->update_time) {
483 result = acpi_battery_get_info(battery);
484 if (result)
485 return result;
486 acpi_battery_init_alarm(battery);
487 }
488#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300489 if (!battery->bat.dev)
490 sysfs_add_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500491#endif
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400492 return acpi_battery_get_state(battery);
Vladimir Lebedev4bd35cd2007-02-10 01:43:48 -0500493}
494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495/* --------------------------------------------------------------------------
496 FS Interface (/proc)
497 -------------------------------------------------------------------------- */
498
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300499#ifdef CONFIG_ACPI_PROCFS_POWER
Len Brown4be44fc2005-08-05 00:44:28 -0400500static struct proc_dir_entry *acpi_battery_dir;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300501
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400502static int acpi_battery_print_info(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200504 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300506 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 goto end;
508
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400509 seq_printf(seq, "present: %s\n",
510 acpi_battery_present(battery)?"yes":"no");
511 if (!acpi_battery_present(battery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 goto end;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400513 if (battery->design_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 seq_printf(seq, "design capacity: unknown\n");
515 else
516 seq_printf(seq, "design capacity: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400517 battery->design_capacity,
518 acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400520 if (battery->full_charge_capacity == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 seq_printf(seq, "last full capacity: unknown\n");
522 else
523 seq_printf(seq, "last full capacity: %d %sh\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400524 battery->full_charge_capacity,
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400525 acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400527 seq_printf(seq, "battery technology: %srechargeable\n",
528 (!battery->technology)?"non-":"");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400530 if (battery->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 seq_printf(seq, "design voltage: unknown\n");
532 else
533 seq_printf(seq, "design voltage: %d mV\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400534 battery->design_voltage);
Len Brown4be44fc2005-08-05 00:44:28 -0400535 seq_printf(seq, "design capacity warning: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400536 battery->design_capacity_warning,
537 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400538 seq_printf(seq, "design capacity low: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400539 battery->design_capacity_low,
540 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400541 seq_printf(seq, "capacity granularity 1: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400542 battery->capacity_granularity_1,
543 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400544 seq_printf(seq, "capacity granularity 2: %d %sh\n",
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400545 battery->capacity_granularity_2,
546 acpi_battery_units(battery));
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400547 seq_printf(seq, "model number: %s\n", battery->model_number);
548 seq_printf(seq, "serial number: %s\n", battery->serial_number);
549 seq_printf(seq, "battery type: %s\n", battery->type);
550 seq_printf(seq, "OEM info: %s\n", battery->oem_info);
Len Brown4be44fc2005-08-05 00:44:28 -0400551 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300552 if (result)
553 seq_printf(seq, "ERROR: Unable to read battery info\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300554 return result;
555}
556
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400557static int acpi_battery_print_state(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200559 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300561 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 goto end;
563
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400564 seq_printf(seq, "present: %s\n",
565 acpi_battery_present(battery)?"yes":"no");
566 if (!acpi_battery_present(battery))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400569 seq_printf(seq, "capacity state: %s\n",
570 (battery->state & 0x04)?"critical":"ok");
571 if ((battery->state & 0x01) && (battery->state & 0x02))
Len Brown4be44fc2005-08-05 00:44:28 -0400572 seq_printf(seq,
573 "charging state: charging/discharging\n");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400574 else if (battery->state & 0x01)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 seq_printf(seq, "charging state: discharging\n");
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400576 else if (battery->state & 0x02)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 seq_printf(seq, "charging state: charging\n");
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400578 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 seq_printf(seq, "charging state: charged\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400581 if (battery->current_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 seq_printf(seq, "present rate: unknown\n");
583 else
584 seq_printf(seq, "present rate: %d %s\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400585 battery->current_now, acpi_battery_units(battery));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400587 if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 seq_printf(seq, "remaining capacity: unknown\n");
589 else
590 seq_printf(seq, "remaining capacity: %d %sh\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400591 battery->capacity_now, acpi_battery_units(battery));
592 if (battery->voltage_now == ACPI_BATTERY_VALUE_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 seq_printf(seq, "present voltage: unknown\n");
594 else
595 seq_printf(seq, "present voltage: %d mV\n",
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400596 battery->voltage_now);
Len Brown4be44fc2005-08-05 00:44:28 -0400597 end:
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400598 if (result)
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300599 seq_printf(seq, "ERROR: Unable to read battery state\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300600
601 return result;
602}
603
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400604static int acpi_battery_print_alarm(struct seq_file *seq, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200606 struct acpi_battery *battery = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300608 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 goto end;
610
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300611 if (!acpi_battery_present(battery)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 seq_printf(seq, "present: no\n");
613 goto end;
614 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 seq_printf(seq, "alarm: ");
616 if (!battery->alarm)
617 seq_printf(seq, "unsupported\n");
618 else
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400619 seq_printf(seq, "%u %sh\n", battery->alarm,
620 acpi_battery_units(battery));
Len Brown4be44fc2005-08-05 00:44:28 -0400621 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300622 if (result)
623 seq_printf(seq, "ERROR: Unable to read battery alarm\n");
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300624 return result;
625}
626
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400627static ssize_t acpi_battery_write_alarm(struct file *file,
628 const char __user * buffer,
629 size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630{
Len Brown4be44fc2005-08-05 00:44:28 -0400631 int result = 0;
632 char alarm_string[12] = { '\0' };
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200633 struct seq_file *m = file->private_data;
634 struct acpi_battery *battery = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 if (!battery || (count > sizeof(alarm_string) - 1))
Patrick Mocheld550d982006-06-27 00:41:40 -0400637 return -EINVAL;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300638 if (!acpi_battery_present(battery)) {
639 result = -ENODEV;
640 goto end;
641 }
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300642 if (copy_from_user(alarm_string, buffer, count)) {
643 result = -EFAULT;
644 goto end;
645 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 alarm_string[count] = '\0';
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400647 battery->alarm = simple_strtol(alarm_string, NULL, 0);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400648 result = acpi_battery_set_alarm(battery);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300649 end:
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300650 if (!result)
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400651 return count;
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300652 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653}
654
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400655typedef int(*print_func)(struct seq_file *seq, int result);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400656
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400657static print_func acpi_print_funcs[ACPI_BATTERY_NUMFILES] = {
658 acpi_battery_print_info,
659 acpi_battery_print_state,
660 acpi_battery_print_alarm,
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400661};
662
663static int acpi_battery_read(int fid, struct seq_file *seq)
664{
665 struct acpi_battery *battery = seq->private;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400666 int result = acpi_battery_update(battery);
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400667 return acpi_print_funcs[fid](seq, result);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400668}
669
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400670#define DECLARE_FILE_FUNCTIONS(_name) \
671static int acpi_battery_read_##_name(struct seq_file *seq, void *offset) \
672{ \
673 return acpi_battery_read(_name##_tag, seq); \
674} \
675static int acpi_battery_##_name##_open_fs(struct inode *inode, struct file *file) \
676{ \
677 return single_open(file, acpi_battery_read_##_name, PDE(inode)->data); \
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400678}
679
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400680DECLARE_FILE_FUNCTIONS(info);
681DECLARE_FILE_FUNCTIONS(state);
682DECLARE_FILE_FUNCTIONS(alarm);
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400683
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400684#undef DECLARE_FILE_FUNCTIONS
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400685
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400686#define FILE_DESCRIPTION_RO(_name) \
687 { \
688 .name = __stringify(_name), \
689 .mode = S_IRUGO, \
690 .ops = { \
691 .open = acpi_battery_##_name##_open_fs, \
692 .read = seq_read, \
693 .llseek = seq_lseek, \
694 .release = single_release, \
695 .owner = THIS_MODULE, \
696 }, \
697 }
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400698
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400699#define FILE_DESCRIPTION_RW(_name) \
700 { \
701 .name = __stringify(_name), \
702 .mode = S_IFREG | S_IRUGO | S_IWUSR, \
703 .ops = { \
704 .open = acpi_battery_##_name##_open_fs, \
705 .read = seq_read, \
706 .llseek = seq_lseek, \
707 .write = acpi_battery_write_##_name, \
708 .release = single_release, \
709 .owner = THIS_MODULE, \
710 }, \
711 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400713static struct battery_file {
714 struct file_operations ops;
715 mode_t mode;
716 char *name;
717} acpi_battery_file[] = {
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400718 FILE_DESCRIPTION_RO(info),
719 FILE_DESCRIPTION_RO(state),
720 FILE_DESCRIPTION_RW(alarm),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721};
722
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400723#undef FILE_DESCRIPTION_RO
724#undef FILE_DESCRIPTION_RW
725
Len Brown4be44fc2005-08-05 00:44:28 -0400726static int acpi_battery_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
Len Brown4be44fc2005-08-05 00:44:28 -0400728 struct proc_dir_entry *entry = NULL;
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400729 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 if (!acpi_device_dir(device)) {
732 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device),
Len Brown4be44fc2005-08-05 00:44:28 -0400733 acpi_battery_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 if (!acpi_device_dir(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400735 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 acpi_device_dir(device)->owner = THIS_MODULE;
737 }
738
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400739 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i) {
740 entry = create_proc_entry(acpi_battery_file[i].name,
741 acpi_battery_file[i].mode, acpi_device_dir(device));
742 if (!entry)
743 return -ENODEV;
744 else {
745 entry->proc_fops = &acpi_battery_file[i].ops;
746 entry->data = acpi_driver_data(device);
747 entry->owner = THIS_MODULE;
748 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400750 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751}
752
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400753static void acpi_battery_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754{
Alexey Starikovskiy78490d82007-05-11 13:18:55 -0400755 int i;
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400756 if (!acpi_device_dir(device))
757 return;
758 for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i)
759 remove_proc_entry(acpi_battery_file[i].name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 acpi_device_dir(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400762 remove_proc_entry(acpi_device_bid(device), acpi_battery_dir);
763 acpi_device_dir(device) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764}
765
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400766#endif
Alexey Starikovskiy3e58ea02007-09-26 19:43:11 +0400767
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768/* --------------------------------------------------------------------------
769 Driver Interface
770 -------------------------------------------------------------------------- */
771
Len Brown4be44fc2005-08-05 00:44:28 -0400772static void acpi_battery_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200774 struct acpi_battery *battery = data;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400775 struct acpi_device *device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -0400777 return;
Patrick Mochel145def82006-05-19 16:54:39 -0400778 device = battery->device;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400779 acpi_battery_update(battery);
780 acpi_bus_generate_proc_event(device, event,
781 acpi_battery_present(battery));
782 acpi_bus_generate_netlink_event(device->pnp.device_class,
783 device->dev.bus_id, event,
Vladimir Lebedev9ea7d572007-02-20 15:48:06 +0300784 acpi_battery_present(battery));
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500785#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300786 /* acpi_batter_update could remove power_supply object */
787 if (battery->bat.dev)
788 kobject_uevent(&battery->bat.dev->kobj, KOBJ_CHANGE);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500789#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790}
791
Len Brown4be44fc2005-08-05 00:44:28 -0400792static int acpi_battery_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793{
Len Brown4be44fc2005-08-05 00:44:28 -0400794 int result = 0;
795 acpi_status status = 0;
796 struct acpi_battery *battery = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400798 return -EINVAL;
Burman Yan36bcbec2006-12-19 12:56:11 -0800799 battery = kzalloc(sizeof(struct acpi_battery), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 if (!battery)
Patrick Mocheld550d982006-06-27 00:41:40 -0400801 return -ENOMEM;
Patrick Mochel145def82006-05-19 16:54:39 -0400802 battery->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 strcpy(acpi_device_name(device), ACPI_BATTERY_DEVICE_NAME);
804 strcpy(acpi_device_class(device), ACPI_BATTERY_CLASS);
805 acpi_driver_data(device) = battery;
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400806 mutex_init(&battery->lock);
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400807 acpi_battery_update(battery);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300808#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 result = acpi_battery_add_fs(device);
810 if (result)
811 goto end;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400812#endif
Patrick Mochel3b073ec2006-05-19 16:54:41 -0400813 status = acpi_install_notify_handler(device->handle,
Vladimir Lebedev9fdae722006-06-27 04:49:00 -0400814 ACPI_ALL_NOTIFY,
Len Brown4be44fc2005-08-05 00:44:28 -0400815 acpi_battery_notify, battery);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 if (ACPI_FAILURE(status)) {
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300817 ACPI_EXCEPTION((AE_INFO, status, "Installing notify handler"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 result = -ENODEV;
819 goto end;
820 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 printk(KERN_INFO PREFIX "%s Slot [%s] (battery %s)\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400822 ACPI_BATTERY_DEVICE_NAME, acpi_device_bid(device),
823 device->status.battery_present ? "present" : "absent");
Len Brown4be44fc2005-08-05 00:44:28 -0400824 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 if (result) {
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300826#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 acpi_battery_remove_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400828#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 kfree(battery);
830 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400831 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832}
833
Len Brown4be44fc2005-08-05 00:44:28 -0400834static int acpi_battery_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835{
Len Brown4be44fc2005-08-05 00:44:28 -0400836 acpi_status status = 0;
837 struct acpi_battery *battery = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400840 return -EINVAL;
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200841 battery = acpi_driver_data(device);
Patrick Mochel3b073ec2006-05-19 16:54:41 -0400842 status = acpi_remove_notify_handler(device->handle,
Vladimir Lebedev9fdae722006-06-27 04:49:00 -0400843 ACPI_ALL_NOTIFY,
Len Brown4be44fc2005-08-05 00:44:28 -0400844 acpi_battery_notify);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300845#ifdef CONFIG_ACPI_PROCFS_POWER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 acpi_battery_remove_fs(device);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400847#endif
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500848#ifdef CONFIG_ACPI_SYSFS_POWER
Andrey Borzenkov508df922007-10-28 12:50:09 +0300849 sysfs_remove_battery(battery);
Alexey Starikovskiy97749cd2008-01-01 14:27:24 -0500850#endif
Alexey Starikovskiy038fdea2007-09-26 19:42:46 +0400851 mutex_destroy(&battery->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 kfree(battery);
Patrick Mocheld550d982006-06-27 00:41:40 -0400853 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854}
855
Jiri Kosina34c44152006-10-10 14:20:41 -0700856/* this is needed to learn about changes made in suspended state */
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800857static int acpi_battery_resume(struct acpi_device *device)
Jiri Kosina34c44152006-10-10 14:20:41 -0700858{
859 struct acpi_battery *battery;
Jiri Kosina34c44152006-10-10 14:20:41 -0700860 if (!device)
861 return -EINVAL;
Alexey Starikovskiyf1d46612007-09-26 19:42:52 +0400862 battery = acpi_driver_data(device);
863 battery->update_time = 0;
Andrey Borzenkov508df922007-10-28 12:50:09 +0300864 acpi_battery_update(battery);
Vladimir Lebedevb6ce4082007-02-20 15:48:06 +0300865 return 0;
Jiri Kosina34c44152006-10-10 14:20:41 -0700866}
867
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400868static struct acpi_driver acpi_battery_driver = {
869 .name = "battery",
870 .class = ACPI_BATTERY_CLASS,
871 .ids = battery_device_ids,
872 .ops = {
873 .add = acpi_battery_add,
874 .resume = acpi_battery_resume,
875 .remove = acpi_battery_remove,
876 },
877};
878
Len Brown4be44fc2005-08-05 00:44:28 -0400879static int __init acpi_battery_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880{
Pavel Machek4d8316d2006-08-14 22:37:22 -0700881 if (acpi_disabled)
882 return -ENODEV;
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300883#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400884 acpi_battery_dir = acpi_lock_battery_dir();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 if (!acpi_battery_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -0400886 return -ENODEV;
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400887#endif
Alexey Starikovskiyaa650bb2007-09-26 19:42:58 +0400888 if (acpi_bus_register_driver(&acpi_battery_driver) < 0) {
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300889#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400890 acpi_unlock_battery_dir(acpi_battery_dir);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400891#endif
Patrick Mocheld550d982006-06-27 00:41:40 -0400892 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400894 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895}
896
Len Brown4be44fc2005-08-05 00:44:28 -0400897static void __exit acpi_battery_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 acpi_bus_unregister_driver(&acpi_battery_driver);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300900#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400901 acpi_unlock_battery_dir(acpi_battery_dir);
Alexey Starikovskiyd7380962007-09-26 19:43:04 +0400902#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903}
904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905module_init(acpi_battery_init);
906module_exit(acpi_battery_exit);