2 * sbs.c - ACPI Smart Battery System Driver ($Revision: 2.0 $)
4 * Copyright (c) 2007 Alexey Starikovskiy <astarikovskiy@suse.de>
5 * Copyright (c) 2005-2007 Vladimir Lebedev <vladimir.p.lebedev@intel.com>
6 * Copyright (c) 2005 Rich Townsend <rhdt@bartol.udel.edu>
8 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or (at
13 * your option) any later version.
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
24 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
27 #include <linux/init.h>
28 #include <linux/module.h>
29 #include <linux/moduleparam.h>
30 #include <linux/kernel.h>
32 #ifdef CONFIG_ACPI_PROCFS_POWER
33 #include <linux/proc_fs.h>
34 #include <linux/seq_file.h>
35 #include <asm/uaccess.h>
38 #include <linux/acpi.h>
39 #include <linux/timer.h>
40 #include <linux/jiffies.h>
41 #include <linux/delay.h>
43 #ifdef CONFIG_ACPI_SYSFS_POWER
44 #include <linux/power_supply.h>
49 #define PREFIX "ACPI: "
51 #define ACPI_SBS_CLASS "sbs"
52 #define ACPI_AC_CLASS "ac_adapter"
53 #define ACPI_BATTERY_CLASS "battery"
54 #define ACPI_SBS_DEVICE_NAME "Smart Battery System"
55 #define ACPI_SBS_FILE_INFO "info"
56 #define ACPI_SBS_FILE_STATE "state"
57 #define ACPI_SBS_FILE_ALARM "alarm"
58 #define ACPI_BATTERY_DIR_NAME "BAT%i"
59 #define ACPI_AC_DIR_NAME "AC0"
61 #define ACPI_SBS_NOTIFY_STATUS 0x80
62 #define ACPI_SBS_NOTIFY_INFO 0x81
64 MODULE_AUTHOR("Alexey Starikovskiy <astarikovskiy@suse.de>");
65 MODULE_DESCRIPTION("Smart Battery System ACPI interface driver");
66 MODULE_LICENSE("GPL");
68 static unsigned int cache_time
= 1000;
69 module_param(cache_time
, uint
, 0644);
70 MODULE_PARM_DESC(cache_time
, "cache time in milliseconds");
72 extern struct proc_dir_entry
*acpi_lock_ac_dir(void);
73 extern struct proc_dir_entry
*acpi_lock_battery_dir(void);
74 extern void acpi_unlock_ac_dir(struct proc_dir_entry
*acpi_ac_dir
);
75 extern void acpi_unlock_battery_dir(struct proc_dir_entry
*acpi_battery_dir
);
78 #define ACPI_SBS_BLOCK_MAX 32
80 static const struct acpi_device_id sbs_device_ids
[] = {
84 MODULE_DEVICE_TABLE(acpi
, sbs_device_ids
);
87 #ifdef CONFIG_ACPI_SYSFS_POWER
88 struct power_supply bat
;
91 #ifdef CONFIG_ACPI_PROCFS_POWER
92 struct proc_dir_entry
*proc_entry
;
94 unsigned long update_time
;
96 char manufacturer_name
[ACPI_SBS_BLOCK_MAX
];
97 char device_name
[ACPI_SBS_BLOCK_MAX
];
98 char device_chemistry
[ACPI_SBS_BLOCK_MAX
];
100 u16 full_charge_capacity
;
116 u8 have_sysfs_alarm
:1;
119 #define to_acpi_battery(x) container_of(x, struct acpi_battery, bat);
122 #ifdef CONFIG_ACPI_SYSFS_POWER
123 struct power_supply charger
;
125 struct acpi_device
*device
;
126 struct acpi_smb_hc
*hc
;
128 #ifdef CONFIG_ACPI_PROCFS_POWER
129 struct proc_dir_entry
*charger_entry
;
131 struct acpi_battery battery
[MAX_SBS_BAT
];
132 u8 batteries_supported
:4;
133 u8 manager_present
:1;
134 u8 charger_present
:1;
137 #define to_acpi_sbs(x) container_of(x, struct acpi_sbs, charger)
139 static inline int battery_scale(int log
)
147 static inline int acpi_battery_vscale(struct acpi_battery
*battery
)
149 return battery_scale((battery
->spec
& 0x0f00) >> 8);
152 static inline int acpi_battery_ipscale(struct acpi_battery
*battery
)
154 return battery_scale((battery
->spec
& 0xf000) >> 12);
157 static inline int acpi_battery_mode(struct acpi_battery
*battery
)
159 return (battery
->mode
& 0x8000);
162 static inline int acpi_battery_scale(struct acpi_battery
*battery
)
164 return (acpi_battery_mode(battery
) ? 10 : 1) *
165 acpi_battery_ipscale(battery
);
168 #ifdef CONFIG_ACPI_SYSFS_POWER
169 static int sbs_get_ac_property(struct power_supply
*psy
,
170 enum power_supply_property psp
,
171 union power_supply_propval
*val
)
173 struct acpi_sbs
*sbs
= to_acpi_sbs(psy
);
175 case POWER_SUPPLY_PROP_ONLINE
:
176 val
->intval
= sbs
->charger_present
;
184 static int acpi_battery_technology(struct acpi_battery
*battery
)
186 if (!strcasecmp("NiCd", battery
->device_chemistry
))
187 return POWER_SUPPLY_TECHNOLOGY_NiCd
;
188 if (!strcasecmp("NiMH", battery
->device_chemistry
))
189 return POWER_SUPPLY_TECHNOLOGY_NiMH
;
190 if (!strcasecmp("LION", battery
->device_chemistry
))
191 return POWER_SUPPLY_TECHNOLOGY_LION
;
192 if (!strcasecmp("LiP", battery
->device_chemistry
))
193 return POWER_SUPPLY_TECHNOLOGY_LIPO
;
194 return POWER_SUPPLY_TECHNOLOGY_UNKNOWN
;
197 static int acpi_sbs_battery_get_property(struct power_supply
*psy
,
198 enum power_supply_property psp
,
199 union power_supply_propval
*val
)
201 struct acpi_battery
*battery
= to_acpi_battery(psy
);
203 if ((!battery
->present
) && psp
!= POWER_SUPPLY_PROP_PRESENT
)
206 case POWER_SUPPLY_PROP_STATUS
:
207 if (battery
->rate_now
< 0)
208 val
->intval
= POWER_SUPPLY_STATUS_DISCHARGING
;
209 else if (battery
->rate_now
> 0)
210 val
->intval
= POWER_SUPPLY_STATUS_CHARGING
;
212 val
->intval
= POWER_SUPPLY_STATUS_FULL
;
214 case POWER_SUPPLY_PROP_PRESENT
:
215 val
->intval
= battery
->present
;
217 case POWER_SUPPLY_PROP_TECHNOLOGY
:
218 val
->intval
= acpi_battery_technology(battery
);
220 case POWER_SUPPLY_PROP_CYCLE_COUNT
:
221 val
->intval
= battery
->cycle_count
;
223 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN
:
224 val
->intval
= battery
->design_voltage
*
225 acpi_battery_vscale(battery
) * 1000;
227 case POWER_SUPPLY_PROP_VOLTAGE_NOW
:
228 val
->intval
= battery
->voltage_now
*
229 acpi_battery_vscale(battery
) * 1000;
231 case POWER_SUPPLY_PROP_CURRENT_NOW
:
232 case POWER_SUPPLY_PROP_POWER_NOW
:
233 val
->intval
= abs(battery
->rate_now
) *
234 acpi_battery_ipscale(battery
) * 1000;
236 case POWER_SUPPLY_PROP_CURRENT_AVG
:
237 case POWER_SUPPLY_PROP_POWER_AVG
:
238 val
->intval
= abs(battery
->rate_avg
) *
239 acpi_battery_ipscale(battery
) * 1000;
241 case POWER_SUPPLY_PROP_CAPACITY
:
242 val
->intval
= battery
->state_of_charge
;
244 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN
:
245 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN
:
246 val
->intval
= battery
->design_capacity
*
247 acpi_battery_scale(battery
) * 1000;
249 case POWER_SUPPLY_PROP_CHARGE_FULL
:
250 case POWER_SUPPLY_PROP_ENERGY_FULL
:
251 val
->intval
= battery
->full_charge_capacity
*
252 acpi_battery_scale(battery
) * 1000;
254 case POWER_SUPPLY_PROP_CHARGE_NOW
:
255 case POWER_SUPPLY_PROP_ENERGY_NOW
:
256 val
->intval
= battery
->capacity_now
*
257 acpi_battery_scale(battery
) * 1000;
259 case POWER_SUPPLY_PROP_TEMP
:
260 val
->intval
= battery
->temp_now
- 2730; // dK -> dC
262 case POWER_SUPPLY_PROP_MODEL_NAME
:
263 val
->strval
= battery
->device_name
;
265 case POWER_SUPPLY_PROP_MANUFACTURER
:
266 val
->strval
= battery
->manufacturer_name
;
274 static enum power_supply_property sbs_ac_props
[] = {
275 POWER_SUPPLY_PROP_ONLINE
,
278 static enum power_supply_property sbs_charge_battery_props
[] = {
279 POWER_SUPPLY_PROP_STATUS
,
280 POWER_SUPPLY_PROP_PRESENT
,
281 POWER_SUPPLY_PROP_TECHNOLOGY
,
282 POWER_SUPPLY_PROP_CYCLE_COUNT
,
283 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN
,
284 POWER_SUPPLY_PROP_VOLTAGE_NOW
,
285 POWER_SUPPLY_PROP_CURRENT_NOW
,
286 POWER_SUPPLY_PROP_CURRENT_AVG
,
287 POWER_SUPPLY_PROP_CAPACITY
,
288 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN
,
289 POWER_SUPPLY_PROP_CHARGE_FULL
,
290 POWER_SUPPLY_PROP_CHARGE_NOW
,
291 POWER_SUPPLY_PROP_TEMP
,
292 POWER_SUPPLY_PROP_MODEL_NAME
,
293 POWER_SUPPLY_PROP_MANUFACTURER
,
296 static enum power_supply_property sbs_energy_battery_props
[] = {
297 POWER_SUPPLY_PROP_STATUS
,
298 POWER_SUPPLY_PROP_PRESENT
,
299 POWER_SUPPLY_PROP_TECHNOLOGY
,
300 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN
,
301 POWER_SUPPLY_PROP_VOLTAGE_NOW
,
302 POWER_SUPPLY_PROP_CURRENT_NOW
,
303 POWER_SUPPLY_PROP_CURRENT_AVG
,
304 POWER_SUPPLY_PROP_POWER_NOW
,
305 POWER_SUPPLY_PROP_POWER_AVG
,
306 POWER_SUPPLY_PROP_CAPACITY
,
307 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN
,
308 POWER_SUPPLY_PROP_ENERGY_FULL
,
309 POWER_SUPPLY_PROP_ENERGY_NOW
,
310 POWER_SUPPLY_PROP_TEMP
,
311 POWER_SUPPLY_PROP_MODEL_NAME
,
312 POWER_SUPPLY_PROP_MANUFACTURER
,
317 /* --------------------------------------------------------------------------
318 Smart Battery System Management
319 -------------------------------------------------------------------------- */
321 struct acpi_battery_reader
{
322 u8 command
; /* command for battery */
323 u8 mode
; /* word or block? */
324 size_t offset
; /* offset inside struct acpi_sbs_battery */
327 static struct acpi_battery_reader info_readers
[] = {
328 {0x01, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, alarm_capacity
)},
329 {0x03, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, mode
)},
330 {0x10, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, full_charge_capacity
)},
331 {0x17, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, cycle_count
)},
332 {0x18, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, design_capacity
)},
333 {0x19, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, design_voltage
)},
334 {0x1a, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, spec
)},
335 {0x1c, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, serial_number
)},
336 {0x20, SMBUS_READ_BLOCK
, offsetof(struct acpi_battery
, manufacturer_name
)},
337 {0x21, SMBUS_READ_BLOCK
, offsetof(struct acpi_battery
, device_name
)},
338 {0x22, SMBUS_READ_BLOCK
, offsetof(struct acpi_battery
, device_chemistry
)},
341 static struct acpi_battery_reader state_readers
[] = {
342 {0x08, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, temp_now
)},
343 {0x09, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, voltage_now
)},
344 {0x0a, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, rate_now
)},
345 {0x0b, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, rate_avg
)},
346 {0x0f, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, capacity_now
)},
347 {0x0e, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, state_of_charge
)},
348 {0x16, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, state
)},
351 static int acpi_manager_get_info(struct acpi_sbs
*sbs
)
354 u16 battery_system_info
;
356 result
= acpi_smbus_read(sbs
->hc
, SMBUS_READ_WORD
, ACPI_SBS_MANAGER
,
357 0x04, (u8
*)&battery_system_info
);
359 sbs
->batteries_supported
= battery_system_info
& 0x000f;
363 static int acpi_battery_get_info(struct acpi_battery
*battery
)
367 for (i
= 0; i
< ARRAY_SIZE(info_readers
); ++i
) {
368 result
= acpi_smbus_read(battery
->sbs
->hc
,
369 info_readers
[i
].mode
,
371 info_readers
[i
].command
,
373 info_readers
[i
].offset
);
380 static int acpi_battery_get_state(struct acpi_battery
*battery
)
384 if (battery
->update_time
&&
385 time_before(jiffies
, battery
->update_time
+
386 msecs_to_jiffies(cache_time
)))
388 for (i
= 0; i
< ARRAY_SIZE(state_readers
); ++i
) {
389 result
= acpi_smbus_read(battery
->sbs
->hc
,
390 state_readers
[i
].mode
,
392 state_readers
[i
].command
,
394 state_readers
[i
].offset
);
399 battery
->update_time
= jiffies
;
403 static int acpi_battery_get_alarm(struct acpi_battery
*battery
)
405 return acpi_smbus_read(battery
->sbs
->hc
, SMBUS_READ_WORD
,
406 ACPI_SBS_BATTERY
, 0x01,
407 (u8
*)&battery
->alarm_capacity
);
410 static int acpi_battery_set_alarm(struct acpi_battery
*battery
)
412 struct acpi_sbs
*sbs
= battery
->sbs
;
413 u16 value
, sel
= 1 << (battery
->id
+ 12);
418 if (sbs
->manager_present
) {
419 ret
= acpi_smbus_read(sbs
->hc
, SMBUS_READ_WORD
, ACPI_SBS_MANAGER
,
423 if ((value
& 0xf000) != sel
) {
426 ret
= acpi_smbus_write(sbs
->hc
, SMBUS_WRITE_WORD
,
428 0x01, (u8
*)&value
, 2);
433 ret
= acpi_smbus_write(sbs
->hc
, SMBUS_WRITE_WORD
, ACPI_SBS_BATTERY
,
434 0x01, (u8
*)&battery
->alarm_capacity
, 2);
439 static int acpi_ac_get_present(struct acpi_sbs
*sbs
)
444 result
= acpi_smbus_read(sbs
->hc
, SMBUS_READ_WORD
, ACPI_SBS_CHARGER
,
445 0x13, (u8
*) & status
);
447 sbs
->charger_present
= (status
>> 15) & 0x1;
451 #ifdef CONFIG_ACPI_SYSFS_POWER
452 static ssize_t
acpi_battery_alarm_show(struct device
*dev
,
453 struct device_attribute
*attr
,
456 struct acpi_battery
*battery
= to_acpi_battery(dev_get_drvdata(dev
));
457 acpi_battery_get_alarm(battery
);
458 return sprintf(buf
, "%d\n", battery
->alarm_capacity
*
459 acpi_battery_scale(battery
) * 1000);
462 static ssize_t
acpi_battery_alarm_store(struct device
*dev
,
463 struct device_attribute
*attr
,
464 const char *buf
, size_t count
)
467 struct acpi_battery
*battery
= to_acpi_battery(dev_get_drvdata(dev
));
468 if (sscanf(buf
, "%ld\n", &x
) == 1)
469 battery
->alarm_capacity
= x
/
470 (1000 * acpi_battery_scale(battery
));
471 if (battery
->present
)
472 acpi_battery_set_alarm(battery
);
476 static struct device_attribute alarm_attr
= {
477 .attr
= {.name
= "alarm", .mode
= 0644},
478 .show
= acpi_battery_alarm_show
,
479 .store
= acpi_battery_alarm_store
,
483 /* --------------------------------------------------------------------------
484 FS Interface (/proc/acpi)
485 -------------------------------------------------------------------------- */
487 #ifdef CONFIG_ACPI_PROCFS_POWER
488 /* Generic Routines */
490 acpi_sbs_add_fs(struct proc_dir_entry
**dir
,
491 struct proc_dir_entry
*parent_dir
,
493 const struct file_operations
*info_fops
,
494 const struct file_operations
*state_fops
,
495 const struct file_operations
*alarm_fops
, void *data
)
498 *dir
= proc_mkdir(dir_name
, parent_dir
);
506 proc_create_data(ACPI_SBS_FILE_INFO
, S_IRUGO
, *dir
,
511 proc_create_data(ACPI_SBS_FILE_STATE
, S_IRUGO
, *dir
,
516 proc_create_data(ACPI_SBS_FILE_ALARM
, S_IRUGO
, *dir
,
522 acpi_sbs_remove_fs(struct proc_dir_entry
**dir
,
523 struct proc_dir_entry
*parent_dir
)
526 remove_proc_entry(ACPI_SBS_FILE_INFO
, *dir
);
527 remove_proc_entry(ACPI_SBS_FILE_STATE
, *dir
);
528 remove_proc_entry(ACPI_SBS_FILE_ALARM
, *dir
);
529 remove_proc_entry((*dir
)->name
, parent_dir
);
534 /* Smart Battery Interface */
535 static struct proc_dir_entry
*acpi_battery_dir
= NULL
;
537 static inline char *acpi_battery_units(struct acpi_battery
*battery
)
539 return acpi_battery_mode(battery
) ? " mW" : " mA";
543 static int acpi_battery_read_info(struct seq_file
*seq
, void *offset
)
545 struct acpi_battery
*battery
= seq
->private;
546 struct acpi_sbs
*sbs
= battery
->sbs
;
549 mutex_lock(&sbs
->lock
);
551 seq_printf(seq
, "present: %s\n",
552 (battery
->present
) ? "yes" : "no");
553 if (!battery
->present
)
556 seq_printf(seq
, "design capacity: %i%sh\n",
557 battery
->design_capacity
* acpi_battery_scale(battery
),
558 acpi_battery_units(battery
));
559 seq_printf(seq
, "last full capacity: %i%sh\n",
560 battery
->full_charge_capacity
* acpi_battery_scale(battery
),
561 acpi_battery_units(battery
));
562 seq_printf(seq
, "battery technology: rechargeable\n");
563 seq_printf(seq
, "design voltage: %i mV\n",
564 battery
->design_voltage
* acpi_battery_vscale(battery
));
565 seq_printf(seq
, "design capacity warning: unknown\n");
566 seq_printf(seq
, "design capacity low: unknown\n");
567 seq_printf(seq
, "cycle count: %i\n", battery
->cycle_count
);
568 seq_printf(seq
, "capacity granularity 1: unknown\n");
569 seq_printf(seq
, "capacity granularity 2: unknown\n");
570 seq_printf(seq
, "model number: %s\n", battery
->device_name
);
571 seq_printf(seq
, "serial number: %i\n",
572 battery
->serial_number
);
573 seq_printf(seq
, "battery type: %s\n",
574 battery
->device_chemistry
);
575 seq_printf(seq
, "OEM info: %s\n",
576 battery
->manufacturer_name
);
578 mutex_unlock(&sbs
->lock
);
582 static int acpi_battery_info_open_fs(struct inode
*inode
, struct file
*file
)
584 return single_open(file
, acpi_battery_read_info
, PDE(inode
)->data
);
587 static int acpi_battery_read_state(struct seq_file
*seq
, void *offset
)
589 struct acpi_battery
*battery
= seq
->private;
590 struct acpi_sbs
*sbs
= battery
->sbs
;
593 mutex_lock(&sbs
->lock
);
594 seq_printf(seq
, "present: %s\n",
595 (battery
->present
) ? "yes" : "no");
596 if (!battery
->present
)
599 acpi_battery_get_state(battery
);
600 seq_printf(seq
, "capacity state: %s\n",
601 (battery
->state
& 0x0010) ? "critical" : "ok");
602 seq_printf(seq
, "charging state: %s\n",
603 (battery
->rate_now
< 0) ? "discharging" :
604 ((battery
->rate_now
> 0) ? "charging" : "charged"));
605 rate
= abs(battery
->rate_now
) * acpi_battery_ipscale(battery
);
606 rate
*= (acpi_battery_mode(battery
))?(battery
->voltage_now
*
607 acpi_battery_vscale(battery
)/1000):1;
608 seq_printf(seq
, "present rate: %d%s\n", rate
,
609 acpi_battery_units(battery
));
610 seq_printf(seq
, "remaining capacity: %i%sh\n",
611 battery
->capacity_now
* acpi_battery_scale(battery
),
612 acpi_battery_units(battery
));
613 seq_printf(seq
, "present voltage: %i mV\n",
614 battery
->voltage_now
* acpi_battery_vscale(battery
));
617 mutex_unlock(&sbs
->lock
);
621 static int acpi_battery_state_open_fs(struct inode
*inode
, struct file
*file
)
623 return single_open(file
, acpi_battery_read_state
, PDE(inode
)->data
);
626 static int acpi_battery_read_alarm(struct seq_file
*seq
, void *offset
)
628 struct acpi_battery
*battery
= seq
->private;
629 struct acpi_sbs
*sbs
= battery
->sbs
;
632 mutex_lock(&sbs
->lock
);
634 if (!battery
->present
) {
635 seq_printf(seq
, "present: no\n");
639 acpi_battery_get_alarm(battery
);
640 seq_printf(seq
, "alarm: ");
641 if (battery
->alarm_capacity
)
642 seq_printf(seq
, "%i%sh\n",
643 battery
->alarm_capacity
*
644 acpi_battery_scale(battery
),
645 acpi_battery_units(battery
));
647 seq_printf(seq
, "disabled\n");
649 mutex_unlock(&sbs
->lock
);
654 acpi_battery_write_alarm(struct file
*file
, const char __user
* buffer
,
655 size_t count
, loff_t
* ppos
)
657 struct seq_file
*seq
= file
->private_data
;
658 struct acpi_battery
*battery
= seq
->private;
659 struct acpi_sbs
*sbs
= battery
->sbs
;
660 char alarm_string
[12] = { '\0' };
662 mutex_lock(&sbs
->lock
);
663 if (!battery
->present
) {
667 if (count
> sizeof(alarm_string
) - 1) {
671 if (copy_from_user(alarm_string
, buffer
, count
)) {
675 alarm_string
[count
] = 0;
676 battery
->alarm_capacity
= simple_strtoul(alarm_string
, NULL
, 0) /
677 acpi_battery_scale(battery
);
678 acpi_battery_set_alarm(battery
);
680 mutex_unlock(&sbs
->lock
);
686 static int acpi_battery_alarm_open_fs(struct inode
*inode
, struct file
*file
)
688 return single_open(file
, acpi_battery_read_alarm
, PDE(inode
)->data
);
691 static const struct file_operations acpi_battery_info_fops
= {
692 .open
= acpi_battery_info_open_fs
,
695 .release
= single_release
,
696 .owner
= THIS_MODULE
,
699 static const struct file_operations acpi_battery_state_fops
= {
700 .open
= acpi_battery_state_open_fs
,
703 .release
= single_release
,
704 .owner
= THIS_MODULE
,
707 static const struct file_operations acpi_battery_alarm_fops
= {
708 .open
= acpi_battery_alarm_open_fs
,
710 .write
= acpi_battery_write_alarm
,
712 .release
= single_release
,
713 .owner
= THIS_MODULE
,
716 /* Legacy AC Adapter Interface */
718 static struct proc_dir_entry
*acpi_ac_dir
= NULL
;
720 static int acpi_ac_read_state(struct seq_file
*seq
, void *offset
)
723 struct acpi_sbs
*sbs
= seq
->private;
725 mutex_lock(&sbs
->lock
);
727 seq_printf(seq
, "state: %s\n",
728 sbs
->charger_present
? "on-line" : "off-line");
730 mutex_unlock(&sbs
->lock
);
734 static int acpi_ac_state_open_fs(struct inode
*inode
, struct file
*file
)
736 return single_open(file
, acpi_ac_read_state
, PDE(inode
)->data
);
739 static const struct file_operations acpi_ac_state_fops
= {
740 .open
= acpi_ac_state_open_fs
,
743 .release
= single_release
,
744 .owner
= THIS_MODULE
,
749 /* --------------------------------------------------------------------------
751 -------------------------------------------------------------------------- */
752 static int acpi_battery_read(struct acpi_battery
*battery
)
754 int result
= 0, saved_present
= battery
->present
;
757 if (battery
->sbs
->manager_present
) {
758 result
= acpi_smbus_read(battery
->sbs
->hc
, SMBUS_READ_WORD
,
759 ACPI_SBS_MANAGER
, 0x01, (u8
*)&state
);
761 battery
->present
= state
& (1 << battery
->id
);
763 state
|= 1 << (battery
->id
+ 12);
764 acpi_smbus_write(battery
->sbs
->hc
, SMBUS_WRITE_WORD
,
765 ACPI_SBS_MANAGER
, 0x01, (u8
*)&state
, 2);
766 } else if (battery
->id
== 0)
767 battery
->present
= 1;
768 if (result
|| !battery
->present
)
771 if (saved_present
!= battery
->present
) {
772 battery
->update_time
= 0;
773 result
= acpi_battery_get_info(battery
);
777 result
= acpi_battery_get_state(battery
);
782 static int acpi_battery_add(struct acpi_sbs
*sbs
, int id
)
784 struct acpi_battery
*battery
= &sbs
->battery
[id
];
789 result
= acpi_battery_read(battery
);
793 sprintf(battery
->name
, ACPI_BATTERY_DIR_NAME
, id
);
794 #ifdef CONFIG_ACPI_PROCFS_POWER
795 acpi_sbs_add_fs(&battery
->proc_entry
, acpi_battery_dir
,
796 battery
->name
, &acpi_battery_info_fops
,
797 &acpi_battery_state_fops
, &acpi_battery_alarm_fops
,
800 #ifdef CONFIG_ACPI_SYSFS_POWER
801 battery
->bat
.name
= battery
->name
;
802 battery
->bat
.type
= POWER_SUPPLY_TYPE_BATTERY
;
803 if (!acpi_battery_mode(battery
)) {
804 battery
->bat
.properties
= sbs_charge_battery_props
;
805 battery
->bat
.num_properties
=
806 ARRAY_SIZE(sbs_charge_battery_props
);
808 battery
->bat
.properties
= sbs_energy_battery_props
;
809 battery
->bat
.num_properties
=
810 ARRAY_SIZE(sbs_energy_battery_props
);
812 battery
->bat
.get_property
= acpi_sbs_battery_get_property
;
813 result
= power_supply_register(&sbs
->device
->dev
, &battery
->bat
);
816 result
= device_create_file(battery
->bat
.dev
, &alarm_attr
);
819 battery
->have_sysfs_alarm
= 1;
822 printk(KERN_INFO PREFIX
"%s [%s]: Battery Slot [%s] (battery %s)\n",
823 ACPI_SBS_DEVICE_NAME
, acpi_device_bid(sbs
->device
),
824 battery
->name
, battery
->present
? "present" : "absent");
828 static void acpi_battery_remove(struct acpi_sbs
*sbs
, int id
)
830 #if defined(CONFIG_ACPI_SYSFS_POWER) || defined(CONFIG_ACPI_PROCFS_POWER)
831 struct acpi_battery
*battery
= &sbs
->battery
[id
];
834 #ifdef CONFIG_ACPI_SYSFS_POWER
835 if (battery
->bat
.dev
) {
836 if (battery
->have_sysfs_alarm
)
837 device_remove_file(battery
->bat
.dev
, &alarm_attr
);
838 power_supply_unregister(&battery
->bat
);
841 #ifdef CONFIG_ACPI_PROCFS_POWER
842 if (battery
->proc_entry
)
843 acpi_sbs_remove_fs(&battery
->proc_entry
, acpi_battery_dir
);
847 static int acpi_charger_add(struct acpi_sbs
*sbs
)
851 result
= acpi_ac_get_present(sbs
);
854 #ifdef CONFIG_ACPI_PROCFS_POWER
855 result
= acpi_sbs_add_fs(&sbs
->charger_entry
, acpi_ac_dir
,
856 ACPI_AC_DIR_NAME
, NULL
,
857 &acpi_ac_state_fops
, NULL
, sbs
);
861 #ifdef CONFIG_ACPI_SYSFS_POWER
862 sbs
->charger
.name
= "sbs-charger";
863 sbs
->charger
.type
= POWER_SUPPLY_TYPE_MAINS
;
864 sbs
->charger
.properties
= sbs_ac_props
;
865 sbs
->charger
.num_properties
= ARRAY_SIZE(sbs_ac_props
);
866 sbs
->charger
.get_property
= sbs_get_ac_property
;
867 power_supply_register(&sbs
->device
->dev
, &sbs
->charger
);
869 printk(KERN_INFO PREFIX
"%s [%s]: AC Adapter [%s] (%s)\n",
870 ACPI_SBS_DEVICE_NAME
, acpi_device_bid(sbs
->device
),
871 ACPI_AC_DIR_NAME
, sbs
->charger_present
? "on-line" : "off-line");
876 static void acpi_charger_remove(struct acpi_sbs
*sbs
)
878 #ifdef CONFIG_ACPI_SYSFS_POWER
879 if (sbs
->charger
.dev
)
880 power_supply_unregister(&sbs
->charger
);
882 #ifdef CONFIG_ACPI_PROCFS_POWER
883 if (sbs
->charger_entry
)
884 acpi_sbs_remove_fs(&sbs
->charger_entry
, acpi_ac_dir
);
888 static void acpi_sbs_callback(void *context
)
891 struct acpi_sbs
*sbs
= context
;
892 struct acpi_battery
*bat
;
893 u8 saved_charger_state
= sbs
->charger_present
;
894 u8 saved_battery_state
;
895 acpi_ac_get_present(sbs
);
896 if (sbs
->charger_present
!= saved_charger_state
) {
897 #ifdef CONFIG_ACPI_PROC_EVENT
898 acpi_bus_generate_proc_event4(ACPI_AC_CLASS
, ACPI_AC_DIR_NAME
,
899 ACPI_SBS_NOTIFY_STATUS
,
900 sbs
->charger_present
);
902 #ifdef CONFIG_ACPI_SYSFS_POWER
903 kobject_uevent(&sbs
->charger
.dev
->kobj
, KOBJ_CHANGE
);
906 if (sbs
->manager_present
) {
907 for (id
= 0; id
< MAX_SBS_BAT
; ++id
) {
908 if (!(sbs
->batteries_supported
& (1 << id
)))
910 bat
= &sbs
->battery
[id
];
911 saved_battery_state
= bat
->present
;
912 acpi_battery_read(bat
);
913 if (saved_battery_state
== bat
->present
)
915 #ifdef CONFIG_ACPI_PROC_EVENT
916 acpi_bus_generate_proc_event4(ACPI_BATTERY_CLASS
,
918 ACPI_SBS_NOTIFY_STATUS
,
921 #ifdef CONFIG_ACPI_SYSFS_POWER
922 kobject_uevent(&bat
->bat
.dev
->kobj
, KOBJ_CHANGE
);
928 static int acpi_sbs_remove(struct acpi_device
*device
, int type
);
930 static int acpi_sbs_add(struct acpi_device
*device
)
932 struct acpi_sbs
*sbs
;
936 sbs
= kzalloc(sizeof(struct acpi_sbs
), GFP_KERNEL
);
942 mutex_init(&sbs
->lock
);
944 sbs
->hc
= acpi_driver_data(device
->parent
);
945 sbs
->device
= device
;
946 strcpy(acpi_device_name(device
), ACPI_SBS_DEVICE_NAME
);
947 strcpy(acpi_device_class(device
), ACPI_SBS_CLASS
);
948 device
->driver_data
= sbs
;
950 result
= acpi_charger_add(sbs
);
954 result
= acpi_manager_get_info(sbs
);
956 sbs
->manager_present
= 1;
957 for (id
= 0; id
< MAX_SBS_BAT
; ++id
)
958 if ((sbs
->batteries_supported
& (1 << id
)))
959 acpi_battery_add(sbs
, id
);
961 acpi_battery_add(sbs
, 0);
962 acpi_smbus_register_callback(sbs
->hc
, acpi_sbs_callback
, sbs
);
965 acpi_sbs_remove(device
, 0);
969 static int acpi_sbs_remove(struct acpi_device
*device
, int type
)
971 struct acpi_sbs
*sbs
;
976 sbs
= acpi_driver_data(device
);
979 mutex_lock(&sbs
->lock
);
980 acpi_smbus_unregister_callback(sbs
->hc
);
981 for (id
= 0; id
< MAX_SBS_BAT
; ++id
)
982 acpi_battery_remove(sbs
, id
);
983 acpi_charger_remove(sbs
);
984 mutex_unlock(&sbs
->lock
);
985 mutex_destroy(&sbs
->lock
);
990 static void acpi_sbs_rmdirs(void)
992 #ifdef CONFIG_ACPI_PROCFS_POWER
994 acpi_unlock_ac_dir(acpi_ac_dir
);
997 if (acpi_battery_dir
) {
998 acpi_unlock_battery_dir(acpi_battery_dir
);
999 acpi_battery_dir
= NULL
;
1004 static int acpi_sbs_resume(struct acpi_device
*device
)
1006 struct acpi_sbs
*sbs
;
1009 sbs
= device
->driver_data
;
1010 acpi_sbs_callback(sbs
);
1014 static struct acpi_driver acpi_sbs_driver
= {
1016 .class = ACPI_SBS_CLASS
,
1017 .ids
= sbs_device_ids
,
1019 .add
= acpi_sbs_add
,
1020 .remove
= acpi_sbs_remove
,
1021 .resume
= acpi_sbs_resume
,
1025 static int __init
acpi_sbs_init(void)
1031 #ifdef CONFIG_ACPI_PROCFS_POWER
1032 acpi_ac_dir
= acpi_lock_ac_dir();
1035 acpi_battery_dir
= acpi_lock_battery_dir();
1036 if (!acpi_battery_dir
) {
1041 result
= acpi_bus_register_driver(&acpi_sbs_driver
);
1049 static void __exit
acpi_sbs_exit(void)
1051 acpi_bus_unregister_driver(&acpi_sbs_driver
);
1056 module_init(acpi_sbs_init
);
1057 module_exit(acpi_sbs_exit
);