]>
Commit | Line | Data |
---|---|---|
1da177e4 | 1 | /* |
aa650bbd | 2 | * battery.c - ACPI Battery Driver (Revision: 2.0) |
1da177e4 | 3 | * |
aa650bbd AS |
4 | * Copyright (C) 2007 Alexey Starikovskiy <[email protected]> |
5 | * Copyright (C) 2004-2007 Vladimir Lebedev <[email protected]> | |
1da177e4 LT |
6 | * Copyright (C) 2001, 2002 Andy Grover <[email protected]> |
7 | * Copyright (C) 2001, 2002 Paul Diefenbaugh <[email protected]> | |
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> | |
f1d4661a | 32 | #include <linux/jiffies.h> |
d7380965 AS |
33 | |
34 | #ifdef CONFIG_ACPI_PROCFS | |
1da177e4 LT |
35 | #include <linux/proc_fs.h> |
36 | #include <linux/seq_file.h> | |
37 | #include <asm/uaccess.h> | |
d7380965 | 38 | #endif |
1da177e4 LT |
39 | |
40 | #include <acpi/acpi_bus.h> | |
41 | #include <acpi/acpi_drivers.h> | |
42 | ||
d7380965 AS |
43 | #include <linux/power_supply.h> |
44 | ||
1da177e4 LT |
45 | #define ACPI_BATTERY_VALUE_UNKNOWN 0xFFFFFFFF |
46 | ||
1da177e4 LT |
47 | #define ACPI_BATTERY_COMPONENT 0x00040000 |
48 | #define ACPI_BATTERY_CLASS "battery" | |
1da177e4 | 49 | #define ACPI_BATTERY_DEVICE_NAME "Battery" |
1da177e4 LT |
50 | #define ACPI_BATTERY_NOTIFY_STATUS 0x80 |
51 | #define ACPI_BATTERY_NOTIFY_INFO 0x81 | |
1da177e4 | 52 | |
1da177e4 | 53 | #define _COMPONENT ACPI_BATTERY_COMPONENT |
b6ce4083 | 54 | |
f52fd66d | 55 | ACPI_MODULE_NAME("battery"); |
1da177e4 | 56 | |
f52fd66d | 57 | MODULE_AUTHOR("Paul Diefenbaugh"); |
aa650bbd | 58 | MODULE_AUTHOR("Alexey Starikovskiy <[email protected]>"); |
7cda93e0 | 59 | MODULE_DESCRIPTION("ACPI Battery Driver"); |
1da177e4 LT |
60 | MODULE_LICENSE("GPL"); |
61 | ||
f1d4661a AS |
62 | static unsigned int cache_time = 1000; |
63 | module_param(cache_time, uint, 0644); | |
64 | MODULE_PARM_DESC(cache_time, "cache time in milliseconds"); | |
b6ce4083 | 65 | |
d7380965 | 66 | #ifdef CONFIG_ACPI_PROCFS |
3f86b832 RT |
67 | extern struct proc_dir_entry *acpi_lock_battery_dir(void); |
68 | extern void *acpi_unlock_battery_dir(struct proc_dir_entry *acpi_battery_dir); | |
69 | ||
d7380965 AS |
70 | enum acpi_battery_files { |
71 | info_tag = 0, | |
72 | state_tag, | |
73 | alarm_tag, | |
74 | ACPI_BATTERY_NUMFILES, | |
75 | }; | |
76 | ||
77 | #endif | |
78 | ||
1ba90e3a TR |
79 | static const struct acpi_device_id battery_device_ids[] = { |
80 | {"PNP0C0A", 0}, | |
81 | {"", 0}, | |
82 | }; | |
1ba90e3a | 83 | |
aa650bbd | 84 | MODULE_DEVICE_TABLE(acpi, battery_device_ids); |
1da177e4 | 85 | |
78490d82 | 86 | |
1da177e4 | 87 | struct acpi_battery { |
038fdea2 | 88 | struct mutex lock; |
d7380965 | 89 | struct power_supply bat; |
f1d4661a AS |
90 | struct acpi_device *device; |
91 | unsigned long update_time; | |
d7380965 AS |
92 | int current_now; |
93 | int capacity_now; | |
94 | int voltage_now; | |
038fdea2 | 95 | int design_capacity; |
d7380965 | 96 | int full_charge_capacity; |
038fdea2 AS |
97 | 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; | |
f1d4661a | 103 | int alarm; |
038fdea2 AS |
104 | char model_number[32]; |
105 | char serial_number[32]; | |
106 | char type[32]; | |
107 | char oem_info[32]; | |
f1d4661a AS |
108 | int state; |
109 | int power_unit; | |
038fdea2 | 110 | u8 alarm_present; |
1da177e4 LT |
111 | }; |
112 | ||
d7380965 AS |
113 | #define to_acpi_battery(x) container_of(x, struct acpi_battery, bat); |
114 | ||
78490d82 | 115 | inline int acpi_battery_present(struct acpi_battery *battery) |
b6ce4083 | 116 | { |
78490d82 AS |
117 | return battery->device->status.battery_present; |
118 | } | |
038fdea2 | 119 | |
d7380965 AS |
120 | static 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; | |
0bde7eee AS |
128 | if (!strcasecmp("LI-ION", battery->type)) |
129 | return POWER_SUPPLY_TECHNOLOGY_LION; | |
d7380965 AS |
130 | if (!strcasecmp("LiP", battery->type)) |
131 | return POWER_SUPPLY_TECHNOLOGY_LIPO; | |
132 | return POWER_SUPPLY_TECHNOLOGY_UNKNOWN; | |
133 | } | |
134 | ||
b19073a0 AS |
135 | static int acpi_battery_update(struct acpi_battery *battery); |
136 | ||
d7380965 AS |
137 | static int acpi_battery_get_property(struct power_supply *psy, |
138 | enum power_supply_property psp, | |
139 | union power_supply_propval *val) | |
140 | { | |
141 | struct acpi_battery *battery = to_acpi_battery(psy); | |
142 | ||
143 | if ((!acpi_battery_present(battery)) && | |
144 | psp != POWER_SUPPLY_PROP_PRESENT) | |
145 | return -ENODEV; | |
b19073a0 | 146 | acpi_battery_update(battery); |
d7380965 AS |
147 | switch (psp) { |
148 | case POWER_SUPPLY_PROP_STATUS: | |
149 | if (battery->state & 0x01) | |
150 | val->intval = POWER_SUPPLY_STATUS_DISCHARGING; | |
151 | else if (battery->state & 0x02) | |
152 | val->intval = POWER_SUPPLY_STATUS_CHARGING; | |
153 | else if (battery->state == 0) | |
154 | val->intval = POWER_SUPPLY_STATUS_FULL; | |
155 | break; | |
156 | case POWER_SUPPLY_PROP_PRESENT: | |
157 | val->intval = acpi_battery_present(battery); | |
158 | break; | |
159 | case POWER_SUPPLY_PROP_TECHNOLOGY: | |
160 | val->intval = acpi_battery_technology(battery); | |
161 | break; | |
162 | case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN: | |
163 | val->intval = battery->design_voltage * 1000; | |
164 | break; | |
165 | case POWER_SUPPLY_PROP_VOLTAGE_NOW: | |
166 | val->intval = battery->voltage_now * 1000; | |
167 | break; | |
168 | case POWER_SUPPLY_PROP_CURRENT_NOW: | |
169 | val->intval = battery->current_now * 1000; | |
170 | break; | |
171 | case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN: | |
172 | case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN: | |
173 | val->intval = battery->design_capacity * 1000; | |
174 | break; | |
175 | case POWER_SUPPLY_PROP_CHARGE_FULL: | |
176 | case POWER_SUPPLY_PROP_ENERGY_FULL: | |
177 | val->intval = battery->full_charge_capacity * 1000; | |
178 | break; | |
179 | case POWER_SUPPLY_PROP_CHARGE_NOW: | |
180 | case POWER_SUPPLY_PROP_ENERGY_NOW: | |
181 | val->intval = battery->capacity_now * 1000; | |
182 | break; | |
183 | case POWER_SUPPLY_PROP_MODEL_NAME: | |
184 | val->strval = battery->model_number; | |
185 | break; | |
186 | case POWER_SUPPLY_PROP_MANUFACTURER: | |
187 | val->strval = battery->oem_info; | |
188 | break; | |
189 | default: | |
190 | return -EINVAL; | |
191 | } | |
192 | return 0; | |
193 | } | |
194 | ||
195 | static enum power_supply_property charge_battery_props[] = { | |
196 | POWER_SUPPLY_PROP_STATUS, | |
197 | POWER_SUPPLY_PROP_PRESENT, | |
198 | POWER_SUPPLY_PROP_TECHNOLOGY, | |
199 | POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN, | |
200 | POWER_SUPPLY_PROP_VOLTAGE_NOW, | |
201 | POWER_SUPPLY_PROP_CURRENT_NOW, | |
202 | POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN, | |
203 | POWER_SUPPLY_PROP_CHARGE_FULL, | |
204 | POWER_SUPPLY_PROP_CHARGE_NOW, | |
205 | POWER_SUPPLY_PROP_MODEL_NAME, | |
206 | POWER_SUPPLY_PROP_MANUFACTURER, | |
207 | }; | |
208 | ||
209 | static enum power_supply_property energy_battery_props[] = { | |
210 | POWER_SUPPLY_PROP_STATUS, | |
211 | POWER_SUPPLY_PROP_PRESENT, | |
212 | POWER_SUPPLY_PROP_TECHNOLOGY, | |
213 | POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN, | |
214 | POWER_SUPPLY_PROP_VOLTAGE_NOW, | |
215 | POWER_SUPPLY_PROP_CURRENT_NOW, | |
216 | POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN, | |
217 | POWER_SUPPLY_PROP_ENERGY_FULL, | |
218 | POWER_SUPPLY_PROP_ENERGY_NOW, | |
219 | POWER_SUPPLY_PROP_MODEL_NAME, | |
220 | POWER_SUPPLY_PROP_MANUFACTURER, | |
221 | }; | |
222 | ||
223 | #ifdef CONFIG_ACPI_PROCFS | |
f1d4661a | 224 | inline char *acpi_battery_units(struct acpi_battery *battery) |
78490d82 | 225 | { |
f1d4661a | 226 | return (battery->power_unit)?"mA":"mW"; |
b6ce4083 | 227 | } |
d7380965 | 228 | #endif |
b6ce4083 | 229 | |
78490d82 AS |
230 | /* -------------------------------------------------------------------------- |
231 | Battery Management | |
232 | -------------------------------------------------------------------------- */ | |
038fdea2 AS |
233 | struct acpi_offsets { |
234 | size_t offset; /* offset inside struct acpi_sbs_battery */ | |
235 | u8 mode; /* int or string? */ | |
236 | }; | |
b6ce4083 | 237 | |
038fdea2 AS |
238 | static struct acpi_offsets state_offsets[] = { |
239 | {offsetof(struct acpi_battery, state), 0}, | |
d7380965 AS |
240 | {offsetof(struct acpi_battery, current_now), 0}, |
241 | {offsetof(struct acpi_battery, capacity_now), 0}, | |
242 | {offsetof(struct acpi_battery, voltage_now), 0}, | |
038fdea2 | 243 | }; |
b6ce4083 | 244 | |
038fdea2 AS |
245 | static struct acpi_offsets info_offsets[] = { |
246 | {offsetof(struct acpi_battery, power_unit), 0}, | |
247 | {offsetof(struct acpi_battery, design_capacity), 0}, | |
d7380965 | 248 | {offsetof(struct acpi_battery, full_charge_capacity), 0}, |
038fdea2 AS |
249 | {offsetof(struct acpi_battery, technology), 0}, |
250 | {offsetof(struct acpi_battery, design_voltage), 0}, | |
251 | {offsetof(struct acpi_battery, design_capacity_warning), 0}, | |
252 | {offsetof(struct acpi_battery, design_capacity_low), 0}, | |
253 | {offsetof(struct acpi_battery, capacity_granularity_1), 0}, | |
254 | {offsetof(struct acpi_battery, capacity_granularity_2), 0}, | |
255 | {offsetof(struct acpi_battery, model_number), 1}, | |
256 | {offsetof(struct acpi_battery, serial_number), 1}, | |
257 | {offsetof(struct acpi_battery, type), 1}, | |
258 | {offsetof(struct acpi_battery, oem_info), 1}, | |
259 | }; | |
b6ce4083 | 260 | |
038fdea2 AS |
261 | static int extract_package(struct acpi_battery *battery, |
262 | union acpi_object *package, | |
263 | struct acpi_offsets *offsets, int num) | |
264 | { | |
265 | int i, *x; | |
266 | union acpi_object *element; | |
267 | if (package->type != ACPI_TYPE_PACKAGE) | |
268 | return -EFAULT; | |
269 | for (i = 0; i < num; ++i) { | |
270 | if (package->package.count <= i) | |
271 | return -EFAULT; | |
272 | element = &package->package.elements[i]; | |
273 | if (offsets[i].mode) { | |
274 | if (element->type != ACPI_TYPE_STRING && | |
275 | element->type != ACPI_TYPE_BUFFER) | |
276 | return -EFAULT; | |
277 | strncpy((u8 *)battery + offsets[i].offset, | |
278 | element->string.pointer, 32); | |
279 | } else { | |
280 | if (element->type != ACPI_TYPE_INTEGER) | |
281 | return -EFAULT; | |
282 | x = (int *)((u8 *)battery + offsets[i].offset); | |
283 | *x = element->integer.value; | |
284 | } | |
b6ce4083 | 285 | } |
b6ce4083 VL |
286 | return 0; |
287 | } | |
288 | ||
289 | static int acpi_battery_get_status(struct acpi_battery *battery) | |
290 | { | |
aa650bbd | 291 | if (acpi_bus_get_status(battery->device)) { |
b6ce4083 VL |
292 | ACPI_EXCEPTION((AE_INFO, AE_ERROR, "Evaluating _STA")); |
293 | return -ENODEV; | |
294 | } | |
aa650bbd | 295 | return 0; |
b6ce4083 VL |
296 | } |
297 | ||
298 | static int acpi_battery_get_info(struct acpi_battery *battery) | |
1da177e4 | 299 | { |
aa650bbd | 300 | int result = -EFAULT; |
4be44fcd LB |
301 | acpi_status status = 0; |
302 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; | |
1da177e4 | 303 | |
b6ce4083 VL |
304 | if (!acpi_battery_present(battery)) |
305 | return 0; | |
038fdea2 | 306 | mutex_lock(&battery->lock); |
f1d4661a | 307 | status = acpi_evaluate_object(battery->device->handle, "_BIF", |
038fdea2 AS |
308 | NULL, &buffer); |
309 | mutex_unlock(&battery->lock); | |
aa650bbd | 310 | |
1da177e4 | 311 | if (ACPI_FAILURE(status)) { |
a6fc6720 | 312 | ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BIF")); |
d550d98d | 313 | return -ENODEV; |
1da177e4 | 314 | } |
aa650bbd | 315 | |
038fdea2 AS |
316 | result = extract_package(battery, buffer.pointer, |
317 | info_offsets, ARRAY_SIZE(info_offsets)); | |
78490d82 | 318 | kfree(buffer.pointer); |
d550d98d | 319 | return result; |
1da177e4 LT |
320 | } |
321 | ||
b6ce4083 | 322 | static int acpi_battery_get_state(struct acpi_battery *battery) |
1da177e4 | 323 | { |
4be44fcd LB |
324 | int result = 0; |
325 | acpi_status status = 0; | |
326 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; | |
1da177e4 | 327 | |
b6ce4083 VL |
328 | if (!acpi_battery_present(battery)) |
329 | return 0; | |
1da177e4 | 330 | |
f1d4661a AS |
331 | if (battery->update_time && |
332 | time_before(jiffies, battery->update_time + | |
333 | msecs_to_jiffies(cache_time))) | |
334 | return 0; | |
335 | ||
038fdea2 | 336 | mutex_lock(&battery->lock); |
f1d4661a | 337 | status = acpi_evaluate_object(battery->device->handle, "_BST", |
038fdea2 AS |
338 | NULL, &buffer); |
339 | mutex_unlock(&battery->lock); | |
5b31d895 | 340 | |
1da177e4 | 341 | if (ACPI_FAILURE(status)) { |
a6fc6720 | 342 | ACPI_EXCEPTION((AE_INFO, status, "Evaluating _BST")); |
d550d98d | 343 | return -ENODEV; |
1da177e4 | 344 | } |
aa650bbd | 345 | |
038fdea2 AS |
346 | result = extract_package(battery, buffer.pointer, |
347 | state_offsets, ARRAY_SIZE(state_offsets)); | |
f1d4661a | 348 | battery->update_time = jiffies; |
78490d82 | 349 | kfree(buffer.pointer); |
b6ce4083 VL |
350 | return result; |
351 | } | |
1da177e4 | 352 | |
aa650bbd | 353 | static int acpi_battery_set_alarm(struct acpi_battery *battery) |
1da177e4 | 354 | { |
4be44fcd | 355 | acpi_status status = 0; |
aa650bbd | 356 | union acpi_object arg0 = { .type = ACPI_TYPE_INTEGER }; |
4be44fcd | 357 | struct acpi_object_list arg_list = { 1, &arg0 }; |
1da177e4 | 358 | |
aa650bbd | 359 | if (!acpi_battery_present(battery)|| !battery->alarm_present) |
d550d98d | 360 | return -ENODEV; |
1da177e4 | 361 | |
aa650bbd | 362 | arg0.integer.value = battery->alarm; |
1da177e4 | 363 | |
038fdea2 | 364 | mutex_lock(&battery->lock); |
f1d4661a AS |
365 | status = acpi_evaluate_object(battery->device->handle, "_BTP", |
366 | &arg_list, NULL); | |
038fdea2 | 367 | mutex_unlock(&battery->lock); |
aa650bbd | 368 | |
1da177e4 | 369 | if (ACPI_FAILURE(status)) |
d550d98d | 370 | return -ENODEV; |
1da177e4 | 371 | |
aa650bbd | 372 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Alarm set to %d\n", battery->alarm)); |
d550d98d | 373 | return 0; |
1da177e4 LT |
374 | } |
375 | ||
b6ce4083 | 376 | static int acpi_battery_init_alarm(struct acpi_battery *battery) |
1da177e4 | 377 | { |
4be44fcd LB |
378 | acpi_status status = AE_OK; |
379 | acpi_handle handle = NULL; | |
4be44fcd | 380 | |
b6ce4083 | 381 | /* See if alarms are supported, and if so, set default */ |
f1d4661a AS |
382 | status = acpi_get_handle(battery->device->handle, "_BTP", &handle); |
383 | if (ACPI_FAILURE(status)) { | |
038fdea2 | 384 | battery->alarm_present = 0; |
f1d4661a | 385 | return 0; |
b6ce4083 | 386 | } |
f1d4661a AS |
387 | battery->alarm_present = 1; |
388 | if (!battery->alarm) | |
389 | battery->alarm = battery->design_capacity_warning; | |
aa650bbd | 390 | return acpi_battery_set_alarm(battery); |
b6ce4083 | 391 | } |
1da177e4 | 392 | |
508df92d AB |
393 | static ssize_t acpi_battery_alarm_show(struct device *dev, |
394 | struct device_attribute *attr, | |
395 | char *buf) | |
396 | { | |
397 | struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev)); | |
398 | return sprintf(buf, "%d\n", battery->alarm * 1000); | |
399 | } | |
400 | ||
401 | static ssize_t acpi_battery_alarm_store(struct device *dev, | |
402 | struct device_attribute *attr, | |
403 | const char *buf, size_t count) | |
404 | { | |
405 | unsigned long x; | |
406 | struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev)); | |
407 | if (sscanf(buf, "%ld\n", &x) == 1) | |
408 | battery->alarm = x/1000; | |
409 | if (acpi_battery_present(battery)) | |
410 | acpi_battery_set_alarm(battery); | |
411 | return count; | |
412 | } | |
413 | ||
414 | static struct device_attribute alarm_attr = { | |
415 | .attr = {.name = "alarm", .mode = 0644, .owner = THIS_MODULE}, | |
416 | .show = acpi_battery_alarm_show, | |
417 | .store = acpi_battery_alarm_store, | |
418 | }; | |
419 | ||
420 | static int sysfs_add_battery(struct acpi_battery *battery) | |
421 | { | |
422 | int result; | |
423 | ||
424 | battery->update_time = 0; | |
425 | result = acpi_battery_get_info(battery); | |
426 | acpi_battery_init_alarm(battery); | |
427 | if (result) | |
428 | return result; | |
429 | if (battery->power_unit) { | |
430 | battery->bat.properties = charge_battery_props; | |
431 | battery->bat.num_properties = | |
432 | ARRAY_SIZE(charge_battery_props); | |
433 | } else { | |
434 | battery->bat.properties = energy_battery_props; | |
435 | battery->bat.num_properties = | |
436 | ARRAY_SIZE(energy_battery_props); | |
437 | } | |
438 | ||
439 | battery->bat.name = acpi_device_bid(battery->device); | |
440 | battery->bat.type = POWER_SUPPLY_TYPE_BATTERY; | |
441 | battery->bat.get_property = acpi_battery_get_property; | |
442 | ||
443 | result = power_supply_register(&battery->device->dev, &battery->bat); | |
444 | if (result) | |
445 | return result; | |
446 | return device_create_file(battery->bat.dev, &alarm_attr); | |
447 | } | |
448 | ||
449 | static void sysfs_remove_battery(struct acpi_battery *battery) | |
450 | { | |
451 | if (!battery->bat.dev) | |
452 | return; | |
453 | device_remove_file(battery->bat.dev, &alarm_attr); | |
454 | power_supply_unregister(&battery->bat); | |
455 | } | |
456 | ||
f1d4661a | 457 | static int acpi_battery_update(struct acpi_battery *battery) |
b6ce4083 | 458 | { |
f1d4661a | 459 | int result = acpi_battery_get_status(battery); |
508df92d | 460 | if (result) |
b6ce4083 | 461 | return result; |
508df92d AB |
462 | if (!acpi_battery_present(battery)) { |
463 | sysfs_remove_battery(battery); | |
464 | return 0; | |
b6ce4083 | 465 | } |
508df92d AB |
466 | if (!battery->bat.dev) |
467 | sysfs_add_battery(battery); | |
f1d4661a | 468 | return acpi_battery_get_state(battery); |
4bd35cdb VL |
469 | } |
470 | ||
1da177e4 LT |
471 | /* -------------------------------------------------------------------------- |
472 | FS Interface (/proc) | |
473 | -------------------------------------------------------------------------- */ | |
474 | ||
d7380965 | 475 | #ifdef CONFIG_ACPI_PROCFS |
4be44fcd | 476 | static struct proc_dir_entry *acpi_battery_dir; |
b6ce4083 | 477 | |
78490d82 | 478 | static int acpi_battery_print_info(struct seq_file *seq, int result) |
1da177e4 | 479 | { |
50dd0969 | 480 | struct acpi_battery *battery = seq->private; |
1da177e4 | 481 | |
b6ce4083 | 482 | if (result) |
1da177e4 LT |
483 | goto end; |
484 | ||
aa650bbd AS |
485 | seq_printf(seq, "present: %s\n", |
486 | acpi_battery_present(battery)?"yes":"no"); | |
487 | if (!acpi_battery_present(battery)) | |
1da177e4 | 488 | goto end; |
038fdea2 | 489 | if (battery->design_capacity == ACPI_BATTERY_VALUE_UNKNOWN) |
1da177e4 LT |
490 | seq_printf(seq, "design capacity: unknown\n"); |
491 | else | |
492 | seq_printf(seq, "design capacity: %d %sh\n", | |
aa650bbd AS |
493 | battery->design_capacity, |
494 | acpi_battery_units(battery)); | |
1da177e4 | 495 | |
d7380965 | 496 | if (battery->full_charge_capacity == ACPI_BATTERY_VALUE_UNKNOWN) |
1da177e4 LT |
497 | seq_printf(seq, "last full capacity: unknown\n"); |
498 | else | |
499 | seq_printf(seq, "last full capacity: %d %sh\n", | |
d7380965 | 500 | battery->full_charge_capacity, |
aa650bbd AS |
501 | acpi_battery_units(battery)); |
502 | ||
503 | seq_printf(seq, "battery technology: %srechargeable\n", | |
504 | (!battery->technology)?"non-":""); | |
1da177e4 | 505 | |
038fdea2 | 506 | if (battery->design_voltage == ACPI_BATTERY_VALUE_UNKNOWN) |
1da177e4 LT |
507 | seq_printf(seq, "design voltage: unknown\n"); |
508 | else | |
509 | seq_printf(seq, "design voltage: %d mV\n", | |
aa650bbd | 510 | battery->design_voltage); |
1da177e4 | 511 | seq_printf(seq, "design capacity warning: %d %sh\n", |
aa650bbd AS |
512 | battery->design_capacity_warning, |
513 | acpi_battery_units(battery)); | |
1da177e4 | 514 | seq_printf(seq, "design capacity low: %d %sh\n", |
aa650bbd AS |
515 | battery->design_capacity_low, |
516 | acpi_battery_units(battery)); | |
1da177e4 | 517 | seq_printf(seq, "capacity granularity 1: %d %sh\n", |
aa650bbd AS |
518 | battery->capacity_granularity_1, |
519 | acpi_battery_units(battery)); | |
1da177e4 | 520 | seq_printf(seq, "capacity granularity 2: %d %sh\n", |
aa650bbd AS |
521 | battery->capacity_granularity_2, |
522 | acpi_battery_units(battery)); | |
038fdea2 AS |
523 | seq_printf(seq, "model number: %s\n", battery->model_number); |
524 | seq_printf(seq, "serial number: %s\n", battery->serial_number); | |
525 | seq_printf(seq, "battery type: %s\n", battery->type); | |
526 | seq_printf(seq, "OEM info: %s\n", battery->oem_info); | |
4be44fcd | 527 | end: |
b6ce4083 VL |
528 | if (result) |
529 | seq_printf(seq, "ERROR: Unable to read battery info\n"); | |
b6ce4083 VL |
530 | return result; |
531 | } | |
532 | ||
78490d82 | 533 | static int acpi_battery_print_state(struct seq_file *seq, int result) |
1da177e4 | 534 | { |
50dd0969 | 535 | struct acpi_battery *battery = seq->private; |
1da177e4 | 536 | |
b6ce4083 | 537 | if (result) |
1da177e4 LT |
538 | goto end; |
539 | ||
aa650bbd AS |
540 | seq_printf(seq, "present: %s\n", |
541 | acpi_battery_present(battery)?"yes":"no"); | |
542 | if (!acpi_battery_present(battery)) | |
1da177e4 | 543 | goto end; |
b6ce4083 | 544 | |
aa650bbd AS |
545 | seq_printf(seq, "capacity state: %s\n", |
546 | (battery->state & 0x04)?"critical":"ok"); | |
547 | if ((battery->state & 0x01) && (battery->state & 0x02)) | |
4be44fcd LB |
548 | seq_printf(seq, |
549 | "charging state: charging/discharging\n"); | |
aa650bbd | 550 | else if (battery->state & 0x01) |
1da177e4 | 551 | seq_printf(seq, "charging state: discharging\n"); |
038fdea2 | 552 | else if (battery->state & 0x02) |
1da177e4 | 553 | seq_printf(seq, "charging state: charging\n"); |
aa650bbd | 554 | else |
1da177e4 | 555 | seq_printf(seq, "charging state: charged\n"); |
1da177e4 | 556 | |
d7380965 | 557 | if (battery->current_now == ACPI_BATTERY_VALUE_UNKNOWN) |
1da177e4 LT |
558 | seq_printf(seq, "present rate: unknown\n"); |
559 | else | |
560 | seq_printf(seq, "present rate: %d %s\n", | |
d7380965 | 561 | battery->current_now, acpi_battery_units(battery)); |
1da177e4 | 562 | |
d7380965 | 563 | if (battery->capacity_now == ACPI_BATTERY_VALUE_UNKNOWN) |
1da177e4 LT |
564 | seq_printf(seq, "remaining capacity: unknown\n"); |
565 | else | |
566 | seq_printf(seq, "remaining capacity: %d %sh\n", | |
d7380965 AS |
567 | battery->capacity_now, acpi_battery_units(battery)); |
568 | if (battery->voltage_now == ACPI_BATTERY_VALUE_UNKNOWN) | |
1da177e4 LT |
569 | seq_printf(seq, "present voltage: unknown\n"); |
570 | else | |
571 | seq_printf(seq, "present voltage: %d mV\n", | |
d7380965 | 572 | battery->voltage_now); |
4be44fcd | 573 | end: |
aa650bbd | 574 | if (result) |
b6ce4083 | 575 | seq_printf(seq, "ERROR: Unable to read battery state\n"); |
b6ce4083 VL |
576 | |
577 | return result; | |
578 | } | |
579 | ||
78490d82 | 580 | static int acpi_battery_print_alarm(struct seq_file *seq, int result) |
1da177e4 | 581 | { |
50dd0969 | 582 | struct acpi_battery *battery = seq->private; |
1da177e4 | 583 | |
b6ce4083 | 584 | if (result) |
1da177e4 LT |
585 | goto end; |
586 | ||
b6ce4083 | 587 | if (!acpi_battery_present(battery)) { |
1da177e4 LT |
588 | seq_printf(seq, "present: no\n"); |
589 | goto end; | |
590 | } | |
1da177e4 LT |
591 | seq_printf(seq, "alarm: "); |
592 | if (!battery->alarm) | |
593 | seq_printf(seq, "unsupported\n"); | |
594 | else | |
aa650bbd AS |
595 | seq_printf(seq, "%u %sh\n", battery->alarm, |
596 | acpi_battery_units(battery)); | |
4be44fcd | 597 | end: |
b6ce4083 VL |
598 | if (result) |
599 | seq_printf(seq, "ERROR: Unable to read battery alarm\n"); | |
b6ce4083 VL |
600 | return result; |
601 | } | |
602 | ||
f1d4661a AS |
603 | static ssize_t acpi_battery_write_alarm(struct file *file, |
604 | const char __user * buffer, | |
605 | size_t count, loff_t * ppos) | |
1da177e4 | 606 | { |
4be44fcd LB |
607 | int result = 0; |
608 | char alarm_string[12] = { '\0' }; | |
50dd0969 JE |
609 | struct seq_file *m = file->private_data; |
610 | struct acpi_battery *battery = m->private; | |
1da177e4 | 611 | |
1da177e4 | 612 | if (!battery || (count > sizeof(alarm_string) - 1)) |
d550d98d | 613 | return -EINVAL; |
b6ce4083 VL |
614 | if (!acpi_battery_present(battery)) { |
615 | result = -ENODEV; | |
616 | goto end; | |
617 | } | |
b6ce4083 VL |
618 | if (copy_from_user(alarm_string, buffer, count)) { |
619 | result = -EFAULT; | |
620 | goto end; | |
621 | } | |
1da177e4 | 622 | alarm_string[count] = '\0'; |
f1d4661a | 623 | battery->alarm = simple_strtol(alarm_string, NULL, 0); |
aa650bbd | 624 | result = acpi_battery_set_alarm(battery); |
b6ce4083 | 625 | end: |
b6ce4083 | 626 | if (!result) |
f1d4661a | 627 | return count; |
78490d82 AS |
628 | return result; |
629 | } | |
630 | ||
631 | typedef int(*print_func)(struct seq_file *seq, int result); | |
aa650bbd AS |
632 | |
633 | static print_func acpi_print_funcs[ACPI_BATTERY_NUMFILES] = { | |
634 | acpi_battery_print_info, | |
635 | acpi_battery_print_state, | |
636 | acpi_battery_print_alarm, | |
78490d82 | 637 | }; |
b6ce4083 | 638 | |
78490d82 AS |
639 | static int acpi_battery_read(int fid, struct seq_file *seq) |
640 | { | |
641 | struct acpi_battery *battery = seq->private; | |
f1d4661a | 642 | int result = acpi_battery_update(battery); |
aa650bbd | 643 | return acpi_print_funcs[fid](seq, result); |
78490d82 AS |
644 | } |
645 | ||
aa650bbd AS |
646 | #define DECLARE_FILE_FUNCTIONS(_name) \ |
647 | static int acpi_battery_read_##_name(struct seq_file *seq, void *offset) \ | |
648 | { \ | |
649 | return acpi_battery_read(_name##_tag, seq); \ | |
650 | } \ | |
651 | static int acpi_battery_##_name##_open_fs(struct inode *inode, struct file *file) \ | |
652 | { \ | |
653 | return single_open(file, acpi_battery_read_##_name, PDE(inode)->data); \ | |
78490d82 AS |
654 | } |
655 | ||
aa650bbd AS |
656 | DECLARE_FILE_FUNCTIONS(info); |
657 | DECLARE_FILE_FUNCTIONS(state); | |
658 | DECLARE_FILE_FUNCTIONS(alarm); | |
659 | ||
660 | #undef DECLARE_FILE_FUNCTIONS | |
661 | ||
662 | #define FILE_DESCRIPTION_RO(_name) \ | |
663 | { \ | |
664 | .name = __stringify(_name), \ | |
665 | .mode = S_IRUGO, \ | |
666 | .ops = { \ | |
667 | .open = acpi_battery_##_name##_open_fs, \ | |
668 | .read = seq_read, \ | |
669 | .llseek = seq_lseek, \ | |
670 | .release = single_release, \ | |
671 | .owner = THIS_MODULE, \ | |
672 | }, \ | |
673 | } | |
78490d82 | 674 | |
aa650bbd AS |
675 | #define FILE_DESCRIPTION_RW(_name) \ |
676 | { \ | |
677 | .name = __stringify(_name), \ | |
678 | .mode = S_IFREG | S_IRUGO | S_IWUSR, \ | |
679 | .ops = { \ | |
680 | .open = acpi_battery_##_name##_open_fs, \ | |
681 | .read = seq_read, \ | |
682 | .llseek = seq_lseek, \ | |
683 | .write = acpi_battery_write_##_name, \ | |
684 | .release = single_release, \ | |
685 | .owner = THIS_MODULE, \ | |
686 | }, \ | |
687 | } | |
1da177e4 | 688 | |
78490d82 AS |
689 | static struct battery_file { |
690 | struct file_operations ops; | |
691 | mode_t mode; | |
692 | char *name; | |
693 | } acpi_battery_file[] = { | |
aa650bbd AS |
694 | FILE_DESCRIPTION_RO(info), |
695 | FILE_DESCRIPTION_RO(state), | |
696 | FILE_DESCRIPTION_RW(alarm), | |
1da177e4 LT |
697 | }; |
698 | ||
aa650bbd AS |
699 | #undef FILE_DESCRIPTION_RO |
700 | #undef FILE_DESCRIPTION_RW | |
701 | ||
4be44fcd | 702 | static int acpi_battery_add_fs(struct acpi_device *device) |
1da177e4 | 703 | { |
4be44fcd | 704 | struct proc_dir_entry *entry = NULL; |
78490d82 | 705 | int i; |
1da177e4 | 706 | |
1da177e4 LT |
707 | if (!acpi_device_dir(device)) { |
708 | acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device), | |
4be44fcd | 709 | acpi_battery_dir); |
1da177e4 | 710 | if (!acpi_device_dir(device)) |
d550d98d | 711 | return -ENODEV; |
1da177e4 LT |
712 | acpi_device_dir(device)->owner = THIS_MODULE; |
713 | } | |
714 | ||
78490d82 AS |
715 | for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i) { |
716 | entry = create_proc_entry(acpi_battery_file[i].name, | |
717 | acpi_battery_file[i].mode, acpi_device_dir(device)); | |
718 | if (!entry) | |
719 | return -ENODEV; | |
720 | else { | |
721 | entry->proc_fops = &acpi_battery_file[i].ops; | |
722 | entry->data = acpi_driver_data(device); | |
723 | entry->owner = THIS_MODULE; | |
724 | } | |
1da177e4 | 725 | } |
d550d98d | 726 | return 0; |
1da177e4 LT |
727 | } |
728 | ||
aa650bbd | 729 | static void acpi_battery_remove_fs(struct acpi_device *device) |
1da177e4 | 730 | { |
78490d82 | 731 | int i; |
aa650bbd AS |
732 | if (!acpi_device_dir(device)) |
733 | return; | |
734 | for (i = 0; i < ACPI_BATTERY_NUMFILES; ++i) | |
735 | remove_proc_entry(acpi_battery_file[i].name, | |
1da177e4 | 736 | acpi_device_dir(device)); |
1da177e4 | 737 | |
aa650bbd AS |
738 | remove_proc_entry(acpi_device_bid(device), acpi_battery_dir); |
739 | acpi_device_dir(device) = NULL; | |
1da177e4 LT |
740 | } |
741 | ||
d7380965 | 742 | #endif |
3e58ea0d | 743 | |
1da177e4 LT |
744 | /* -------------------------------------------------------------------------- |
745 | Driver Interface | |
746 | -------------------------------------------------------------------------- */ | |
747 | ||
4be44fcd | 748 | static void acpi_battery_notify(acpi_handle handle, u32 event, void *data) |
1da177e4 | 749 | { |
50dd0969 | 750 | struct acpi_battery *battery = data; |
f1d4661a | 751 | struct acpi_device *device; |
1da177e4 | 752 | if (!battery) |
d550d98d | 753 | return; |
145def84 | 754 | device = battery->device; |
f1d4661a AS |
755 | acpi_battery_update(battery); |
756 | acpi_bus_generate_proc_event(device, event, | |
757 | acpi_battery_present(battery)); | |
758 | acpi_bus_generate_netlink_event(device->pnp.device_class, | |
759 | device->dev.bus_id, event, | |
9ea7d575 | 760 | acpi_battery_present(battery)); |
508df92d AB |
761 | /* acpi_batter_update could remove power_supply object */ |
762 | if (battery->bat.dev) | |
763 | kobject_uevent(&battery->bat.dev->kobj, KOBJ_CHANGE); | |
1da177e4 LT |
764 | } |
765 | ||
4be44fcd | 766 | static int acpi_battery_add(struct acpi_device *device) |
1da177e4 | 767 | { |
4be44fcd LB |
768 | int result = 0; |
769 | acpi_status status = 0; | |
770 | struct acpi_battery *battery = NULL; | |
1da177e4 | 771 | if (!device) |
d550d98d | 772 | return -EINVAL; |
36bcbec7 | 773 | battery = kzalloc(sizeof(struct acpi_battery), GFP_KERNEL); |
1da177e4 | 774 | if (!battery) |
d550d98d | 775 | return -ENOMEM; |
145def84 | 776 | battery->device = device; |
1da177e4 LT |
777 | strcpy(acpi_device_name(device), ACPI_BATTERY_DEVICE_NAME); |
778 | strcpy(acpi_device_class(device), ACPI_BATTERY_CLASS); | |
779 | acpi_driver_data(device) = battery; | |
038fdea2 | 780 | mutex_init(&battery->lock); |
f1d4661a | 781 | acpi_battery_update(battery); |
d7380965 | 782 | #ifdef CONFIG_ACPI_PROCFS |
1da177e4 LT |
783 | result = acpi_battery_add_fs(device); |
784 | if (result) | |
785 | goto end; | |
d7380965 | 786 | #endif |
3b073ec3 | 787 | status = acpi_install_notify_handler(device->handle, |
9fdae727 | 788 | ACPI_ALL_NOTIFY, |
4be44fcd | 789 | acpi_battery_notify, battery); |
1da177e4 | 790 | if (ACPI_FAILURE(status)) { |
b6ce4083 | 791 | ACPI_EXCEPTION((AE_INFO, status, "Installing notify handler")); |
1da177e4 LT |
792 | result = -ENODEV; |
793 | goto end; | |
794 | } | |
1da177e4 | 795 | printk(KERN_INFO PREFIX "%s Slot [%s] (battery %s)\n", |
4be44fcd LB |
796 | ACPI_BATTERY_DEVICE_NAME, acpi_device_bid(device), |
797 | device->status.battery_present ? "present" : "absent"); | |
4be44fcd | 798 | end: |
1da177e4 | 799 | if (result) { |
d7380965 | 800 | #ifdef CONFIG_ACPI_PROCFS |
1da177e4 | 801 | acpi_battery_remove_fs(device); |
d7380965 | 802 | #endif |
1da177e4 LT |
803 | kfree(battery); |
804 | } | |
d550d98d | 805 | return result; |
1da177e4 LT |
806 | } |
807 | ||
4be44fcd | 808 | static int acpi_battery_remove(struct acpi_device *device, int type) |
1da177e4 | 809 | { |
4be44fcd LB |
810 | acpi_status status = 0; |
811 | struct acpi_battery *battery = NULL; | |
1da177e4 | 812 | |
1da177e4 | 813 | if (!device || !acpi_driver_data(device)) |
d550d98d | 814 | return -EINVAL; |
50dd0969 | 815 | battery = acpi_driver_data(device); |
3b073ec3 | 816 | status = acpi_remove_notify_handler(device->handle, |
9fdae727 | 817 | ACPI_ALL_NOTIFY, |
4be44fcd | 818 | acpi_battery_notify); |
d7380965 | 819 | #ifdef CONFIG_ACPI_PROCFS |
1da177e4 | 820 | acpi_battery_remove_fs(device); |
d7380965 | 821 | #endif |
508df92d | 822 | sysfs_remove_battery(battery); |
038fdea2 | 823 | mutex_destroy(&battery->lock); |
1da177e4 | 824 | kfree(battery); |
d550d98d | 825 | return 0; |
1da177e4 LT |
826 | } |
827 | ||
34c4415a | 828 | /* this is needed to learn about changes made in suspended state */ |
5d9464a4 | 829 | static int acpi_battery_resume(struct acpi_device *device) |
34c4415a JK |
830 | { |
831 | struct acpi_battery *battery; | |
34c4415a JK |
832 | if (!device) |
833 | return -EINVAL; | |
f1d4661a AS |
834 | battery = acpi_driver_data(device); |
835 | battery->update_time = 0; | |
508df92d | 836 | acpi_battery_update(battery); |
b6ce4083 | 837 | return 0; |
34c4415a JK |
838 | } |
839 | ||
aa650bbd AS |
840 | static struct acpi_driver acpi_battery_driver = { |
841 | .name = "battery", | |
842 | .class = ACPI_BATTERY_CLASS, | |
843 | .ids = battery_device_ids, | |
844 | .ops = { | |
845 | .add = acpi_battery_add, | |
846 | .resume = acpi_battery_resume, | |
847 | .remove = acpi_battery_remove, | |
848 | }, | |
849 | }; | |
850 | ||
4be44fcd | 851 | static int __init acpi_battery_init(void) |
1da177e4 | 852 | { |
4d8316d5 PM |
853 | if (acpi_disabled) |
854 | return -ENODEV; | |
d7380965 | 855 | #ifdef CONFIG_ACPI_PROCFS |
3f86b832 | 856 | acpi_battery_dir = acpi_lock_battery_dir(); |
1da177e4 | 857 | if (!acpi_battery_dir) |
d550d98d | 858 | return -ENODEV; |
d7380965 | 859 | #endif |
aa650bbd | 860 | if (acpi_bus_register_driver(&acpi_battery_driver) < 0) { |
d7380965 | 861 | #ifdef CONFIG_ACPI_PROCFS |
3f86b832 | 862 | acpi_unlock_battery_dir(acpi_battery_dir); |
d7380965 | 863 | #endif |
d550d98d | 864 | return -ENODEV; |
1da177e4 | 865 | } |
d550d98d | 866 | return 0; |
1da177e4 LT |
867 | } |
868 | ||
4be44fcd | 869 | static void __exit acpi_battery_exit(void) |
1da177e4 | 870 | { |
1da177e4 | 871 | acpi_bus_unregister_driver(&acpi_battery_driver); |
d7380965 | 872 | #ifdef CONFIG_ACPI_PROCFS |
3f86b832 | 873 | acpi_unlock_battery_dir(acpi_battery_dir); |
d7380965 | 874 | #endif |
1da177e4 LT |
875 | } |
876 | ||
1da177e4 LT |
877 | module_init(acpi_battery_init); |
878 | module_exit(acpi_battery_exit); |