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