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/slab.h>
29 #include <linux/module.h>
30 #include <linux/moduleparam.h>
31 #include <linux/kernel.h>
33 #ifdef CONFIG_ACPI_PROCFS_POWER
34 #include <linux/proc_fs.h>
35 #include <linux/seq_file.h>
36 #include <asm/uaccess.h>
39 #include <linux/acpi.h>
40 #include <linux/timer.h>
41 #include <linux/jiffies.h>
42 #include <linux/delay.h>
44 #ifdef CONFIG_ACPI_SYSFS_POWER
45 #include <linux/power_supply.h>
50 #define PREFIX "ACPI: "
52 #define ACPI_SBS_CLASS "sbs"
53 #define ACPI_AC_CLASS "ac_adapter"
54 #define ACPI_BATTERY_CLASS "battery"
55 #define ACPI_SBS_DEVICE_NAME "Smart Battery System"
56 #define ACPI_SBS_FILE_INFO "info"
57 #define ACPI_SBS_FILE_STATE "state"
58 #define ACPI_SBS_FILE_ALARM "alarm"
59 #define ACPI_BATTERY_DIR_NAME "BAT%i"
60 #define ACPI_AC_DIR_NAME "AC0"
62 #define ACPI_SBS_NOTIFY_STATUS 0x80
63 #define ACPI_SBS_NOTIFY_INFO 0x81
65 MODULE_AUTHOR("Alexey Starikovskiy <astarikovskiy@suse.de>");
66 MODULE_DESCRIPTION("Smart Battery System ACPI interface driver");
67 MODULE_LICENSE("GPL");
69 static unsigned int cache_time
= 1000;
70 module_param(cache_time
, uint
, 0644);
71 MODULE_PARM_DESC(cache_time
, "cache time in milliseconds");
73 extern struct proc_dir_entry
*acpi_lock_ac_dir(void);
74 extern struct proc_dir_entry
*acpi_lock_battery_dir(void);
75 extern void acpi_unlock_ac_dir(struct proc_dir_entry
*acpi_ac_dir
);
76 extern void acpi_unlock_battery_dir(struct proc_dir_entry
*acpi_battery_dir
);
79 #define ACPI_SBS_BLOCK_MAX 32
81 static const struct acpi_device_id sbs_device_ids
[] = {
85 MODULE_DEVICE_TABLE(acpi
, sbs_device_ids
);
88 #ifdef CONFIG_ACPI_SYSFS_POWER
89 struct power_supply bat
;
92 #ifdef CONFIG_ACPI_PROCFS_POWER
93 struct proc_dir_entry
*proc_entry
;
95 unsigned long update_time
;
97 char manufacturer_name
[ACPI_SBS_BLOCK_MAX
];
98 char device_name
[ACPI_SBS_BLOCK_MAX
];
99 char device_chemistry
[ACPI_SBS_BLOCK_MAX
];
101 u16 full_charge_capacity
;
117 u8 have_sysfs_alarm
:1;
120 #define to_acpi_battery(x) container_of(x, struct acpi_battery, bat);
123 #ifdef CONFIG_ACPI_SYSFS_POWER
124 struct power_supply charger
;
126 struct acpi_device
*device
;
127 struct acpi_smb_hc
*hc
;
129 #ifdef CONFIG_ACPI_PROCFS_POWER
130 struct proc_dir_entry
*charger_entry
;
132 struct acpi_battery battery
[MAX_SBS_BAT
];
133 u8 batteries_supported
:4;
134 u8 manager_present
:1;
135 u8 charger_present
:1;
138 #define to_acpi_sbs(x) container_of(x, struct acpi_sbs, charger)
140 static inline int battery_scale(int log
)
148 static inline int acpi_battery_vscale(struct acpi_battery
*battery
)
150 return battery_scale((battery
->spec
& 0x0f00) >> 8);
153 static inline int acpi_battery_ipscale(struct acpi_battery
*battery
)
155 return battery_scale((battery
->spec
& 0xf000) >> 12);
158 static inline int acpi_battery_mode(struct acpi_battery
*battery
)
160 return (battery
->mode
& 0x8000);
163 static inline int acpi_battery_scale(struct acpi_battery
*battery
)
165 return (acpi_battery_mode(battery
) ? 10 : 1) *
166 acpi_battery_ipscale(battery
);
169 #ifdef CONFIG_ACPI_SYSFS_POWER
170 static int sbs_get_ac_property(struct power_supply
*psy
,
171 enum power_supply_property psp
,
172 union power_supply_propval
*val
)
174 struct acpi_sbs
*sbs
= to_acpi_sbs(psy
);
176 case POWER_SUPPLY_PROP_ONLINE
:
177 val
->intval
= sbs
->charger_present
;
185 static int acpi_battery_technology(struct acpi_battery
*battery
)
187 if (!strcasecmp("NiCd", battery
->device_chemistry
))
188 return POWER_SUPPLY_TECHNOLOGY_NiCd
;
189 if (!strcasecmp("NiMH", battery
->device_chemistry
))
190 return POWER_SUPPLY_TECHNOLOGY_NiMH
;
191 if (!strcasecmp("LION", battery
->device_chemistry
))
192 return POWER_SUPPLY_TECHNOLOGY_LION
;
193 if (!strcasecmp("LiP", battery
->device_chemistry
))
194 return POWER_SUPPLY_TECHNOLOGY_LIPO
;
195 return POWER_SUPPLY_TECHNOLOGY_UNKNOWN
;
198 static int acpi_sbs_battery_get_property(struct power_supply
*psy
,
199 enum power_supply_property psp
,
200 union power_supply_propval
*val
)
202 struct acpi_battery
*battery
= to_acpi_battery(psy
);
204 if ((!battery
->present
) && psp
!= POWER_SUPPLY_PROP_PRESENT
)
207 case POWER_SUPPLY_PROP_STATUS
:
208 if (battery
->rate_now
< 0)
209 val
->intval
= POWER_SUPPLY_STATUS_DISCHARGING
;
210 else if (battery
->rate_now
> 0)
211 val
->intval
= POWER_SUPPLY_STATUS_CHARGING
;
213 val
->intval
= POWER_SUPPLY_STATUS_FULL
;
215 case POWER_SUPPLY_PROP_PRESENT
:
216 val
->intval
= battery
->present
;
218 case POWER_SUPPLY_PROP_TECHNOLOGY
:
219 val
->intval
= acpi_battery_technology(battery
);
221 case POWER_SUPPLY_PROP_CYCLE_COUNT
:
222 val
->intval
= battery
->cycle_count
;
224 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN
:
225 val
->intval
= battery
->design_voltage
*
226 acpi_battery_vscale(battery
) * 1000;
228 case POWER_SUPPLY_PROP_VOLTAGE_NOW
:
229 val
->intval
= battery
->voltage_now
*
230 acpi_battery_vscale(battery
) * 1000;
232 case POWER_SUPPLY_PROP_CURRENT_NOW
:
233 case POWER_SUPPLY_PROP_POWER_NOW
:
234 val
->intval
= abs(battery
->rate_now
) *
235 acpi_battery_ipscale(battery
) * 1000;
237 case POWER_SUPPLY_PROP_CURRENT_AVG
:
238 case POWER_SUPPLY_PROP_POWER_AVG
:
239 val
->intval
= abs(battery
->rate_avg
) *
240 acpi_battery_ipscale(battery
) * 1000;
242 case POWER_SUPPLY_PROP_CAPACITY
:
243 val
->intval
= battery
->state_of_charge
;
245 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN
:
246 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN
:
247 val
->intval
= battery
->design_capacity
*
248 acpi_battery_scale(battery
) * 1000;
250 case POWER_SUPPLY_PROP_CHARGE_FULL
:
251 case POWER_SUPPLY_PROP_ENERGY_FULL
:
252 val
->intval
= battery
->full_charge_capacity
*
253 acpi_battery_scale(battery
) * 1000;
255 case POWER_SUPPLY_PROP_CHARGE_NOW
:
256 case POWER_SUPPLY_PROP_ENERGY_NOW
:
257 val
->intval
= battery
->capacity_now
*
258 acpi_battery_scale(battery
) * 1000;
260 case POWER_SUPPLY_PROP_TEMP
:
261 val
->intval
= battery
->temp_now
- 2730; // dK -> dC
263 case POWER_SUPPLY_PROP_MODEL_NAME
:
264 val
->strval
= battery
->device_name
;
266 case POWER_SUPPLY_PROP_MANUFACTURER
:
267 val
->strval
= battery
->manufacturer_name
;
275 static enum power_supply_property sbs_ac_props
[] = {
276 POWER_SUPPLY_PROP_ONLINE
,
279 static enum power_supply_property sbs_charge_battery_props
[] = {
280 POWER_SUPPLY_PROP_STATUS
,
281 POWER_SUPPLY_PROP_PRESENT
,
282 POWER_SUPPLY_PROP_TECHNOLOGY
,
283 POWER_SUPPLY_PROP_CYCLE_COUNT
,
284 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN
,
285 POWER_SUPPLY_PROP_VOLTAGE_NOW
,
286 POWER_SUPPLY_PROP_CURRENT_NOW
,
287 POWER_SUPPLY_PROP_CURRENT_AVG
,
288 POWER_SUPPLY_PROP_CAPACITY
,
289 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN
,
290 POWER_SUPPLY_PROP_CHARGE_FULL
,
291 POWER_SUPPLY_PROP_CHARGE_NOW
,
292 POWER_SUPPLY_PROP_TEMP
,
293 POWER_SUPPLY_PROP_MODEL_NAME
,
294 POWER_SUPPLY_PROP_MANUFACTURER
,
297 static enum power_supply_property sbs_energy_battery_props
[] = {
298 POWER_SUPPLY_PROP_STATUS
,
299 POWER_SUPPLY_PROP_PRESENT
,
300 POWER_SUPPLY_PROP_TECHNOLOGY
,
301 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN
,
302 POWER_SUPPLY_PROP_VOLTAGE_NOW
,
303 POWER_SUPPLY_PROP_CURRENT_NOW
,
304 POWER_SUPPLY_PROP_CURRENT_AVG
,
305 POWER_SUPPLY_PROP_POWER_NOW
,
306 POWER_SUPPLY_PROP_POWER_AVG
,
307 POWER_SUPPLY_PROP_CAPACITY
,
308 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN
,
309 POWER_SUPPLY_PROP_ENERGY_FULL
,
310 POWER_SUPPLY_PROP_ENERGY_NOW
,
311 POWER_SUPPLY_PROP_TEMP
,
312 POWER_SUPPLY_PROP_MODEL_NAME
,
313 POWER_SUPPLY_PROP_MANUFACTURER
,
318 /* --------------------------------------------------------------------------
319 Smart Battery System Management
320 -------------------------------------------------------------------------- */
322 struct acpi_battery_reader
{
323 u8 command
; /* command for battery */
324 u8 mode
; /* word or block? */
325 size_t offset
; /* offset inside struct acpi_sbs_battery */
328 static struct acpi_battery_reader info_readers
[] = {
329 {0x01, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, alarm_capacity
)},
330 {0x03, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, mode
)},
331 {0x10, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, full_charge_capacity
)},
332 {0x17, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, cycle_count
)},
333 {0x18, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, design_capacity
)},
334 {0x19, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, design_voltage
)},
335 {0x1a, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, spec
)},
336 {0x1c, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, serial_number
)},
337 {0x20, SMBUS_READ_BLOCK
, offsetof(struct acpi_battery
, manufacturer_name
)},
338 {0x21, SMBUS_READ_BLOCK
, offsetof(struct acpi_battery
, device_name
)},
339 {0x22, SMBUS_READ_BLOCK
, offsetof(struct acpi_battery
, device_chemistry
)},
342 static struct acpi_battery_reader state_readers
[] = {
343 {0x08, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, temp_now
)},
344 {0x09, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, voltage_now
)},
345 {0x0a, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, rate_now
)},
346 {0x0b, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, rate_avg
)},
347 {0x0f, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, capacity_now
)},
348 {0x0e, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, state_of_charge
)},
349 {0x16, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, state
)},
352 static int acpi_manager_get_info(struct acpi_sbs
*sbs
)
355 u16 battery_system_info
;
357 result
= acpi_smbus_read(sbs
->hc
, SMBUS_READ_WORD
, ACPI_SBS_MANAGER
,
358 0x04, (u8
*)&battery_system_info
);
360 sbs
->batteries_supported
= battery_system_info
& 0x000f;
364 static int acpi_battery_get_info(struct acpi_battery
*battery
)
368 for (i
= 0; i
< ARRAY_SIZE(info_readers
); ++i
) {
369 result
= acpi_smbus_read(battery
->sbs
->hc
,
370 info_readers
[i
].mode
,
372 info_readers
[i
].command
,
374 info_readers
[i
].offset
);
381 static int acpi_battery_get_state(struct acpi_battery
*battery
)
385 if (battery
->update_time
&&
386 time_before(jiffies
, battery
->update_time
+
387 msecs_to_jiffies(cache_time
)))
389 for (i
= 0; i
< ARRAY_SIZE(state_readers
); ++i
) {
390 result
= acpi_smbus_read(battery
->sbs
->hc
,
391 state_readers
[i
].mode
,
393 state_readers
[i
].command
,
395 state_readers
[i
].offset
);
400 battery
->update_time
= jiffies
;
404 static int acpi_battery_get_alarm(struct acpi_battery
*battery
)
406 return acpi_smbus_read(battery
->sbs
->hc
, SMBUS_READ_WORD
,
407 ACPI_SBS_BATTERY
, 0x01,
408 (u8
*)&battery
->alarm_capacity
);
411 static int acpi_battery_set_alarm(struct acpi_battery
*battery
)
413 struct acpi_sbs
*sbs
= battery
->sbs
;
414 u16 value
, sel
= 1 << (battery
->id
+ 12);
419 if (sbs
->manager_present
) {
420 ret
= acpi_smbus_read(sbs
->hc
, SMBUS_READ_WORD
, ACPI_SBS_MANAGER
,
424 if ((value
& 0xf000) != sel
) {
427 ret
= acpi_smbus_write(sbs
->hc
, SMBUS_WRITE_WORD
,
429 0x01, (u8
*)&value
, 2);
434 ret
= acpi_smbus_write(sbs
->hc
, SMBUS_WRITE_WORD
, ACPI_SBS_BATTERY
,
435 0x01, (u8
*)&battery
->alarm_capacity
, 2);
440 static int acpi_ac_get_present(struct acpi_sbs
*sbs
)
445 result
= acpi_smbus_read(sbs
->hc
, SMBUS_READ_WORD
, ACPI_SBS_CHARGER
,
446 0x13, (u8
*) & status
);
448 sbs
->charger_present
= (status
>> 15) & 0x1;
452 #ifdef CONFIG_ACPI_SYSFS_POWER
453 static ssize_t
acpi_battery_alarm_show(struct device
*dev
,
454 struct device_attribute
*attr
,
457 struct acpi_battery
*battery
= to_acpi_battery(dev_get_drvdata(dev
));
458 acpi_battery_get_alarm(battery
);
459 return sprintf(buf
, "%d\n", battery
->alarm_capacity
*
460 acpi_battery_scale(battery
) * 1000);
463 static ssize_t
acpi_battery_alarm_store(struct device
*dev
,
464 struct device_attribute
*attr
,
465 const char *buf
, size_t count
)
468 struct acpi_battery
*battery
= to_acpi_battery(dev_get_drvdata(dev
));
469 if (sscanf(buf
, "%ld\n", &x
) == 1)
470 battery
->alarm_capacity
= x
/
471 (1000 * acpi_battery_scale(battery
));
472 if (battery
->present
)
473 acpi_battery_set_alarm(battery
);
477 static struct device_attribute alarm_attr
= {
478 .attr
= {.name
= "alarm", .mode
= 0644},
479 .show
= acpi_battery_alarm_show
,
480 .store
= acpi_battery_alarm_store
,
484 /* --------------------------------------------------------------------------
485 FS Interface (/proc/acpi)
486 -------------------------------------------------------------------------- */
488 #ifdef CONFIG_ACPI_PROCFS_POWER
489 /* Generic Routines */
491 acpi_sbs_add_fs(struct proc_dir_entry
**dir
,
492 struct proc_dir_entry
*parent_dir
,
494 const struct file_operations
*info_fops
,
495 const struct file_operations
*state_fops
,
496 const struct file_operations
*alarm_fops
, void *data
)
499 *dir
= proc_mkdir(dir_name
, parent_dir
);
507 proc_create_data(ACPI_SBS_FILE_INFO
, S_IRUGO
, *dir
,
512 proc_create_data(ACPI_SBS_FILE_STATE
, S_IRUGO
, *dir
,
517 proc_create_data(ACPI_SBS_FILE_ALARM
, S_IRUGO
, *dir
,
523 acpi_sbs_remove_fs(struct proc_dir_entry
**dir
,
524 struct proc_dir_entry
*parent_dir
)
527 remove_proc_entry(ACPI_SBS_FILE_INFO
, *dir
);
528 remove_proc_entry(ACPI_SBS_FILE_STATE
, *dir
);
529 remove_proc_entry(ACPI_SBS_FILE_ALARM
, *dir
);
530 remove_proc_entry((*dir
)->name
, parent_dir
);
535 /* Smart Battery Interface */
536 static struct proc_dir_entry
*acpi_battery_dir
= NULL
;
538 static inline char *acpi_battery_units(struct acpi_battery
*battery
)
540 return acpi_battery_mode(battery
) ? " mW" : " mA";
544 static int acpi_battery_read_info(struct seq_file
*seq
, void *offset
)
546 struct acpi_battery
*battery
= seq
->private;
547 struct acpi_sbs
*sbs
= battery
->sbs
;
550 mutex_lock(&sbs
->lock
);
552 seq_printf(seq
, "present: %s\n",
553 (battery
->present
) ? "yes" : "no");
554 if (!battery
->present
)
557 seq_printf(seq
, "design capacity: %i%sh\n",
558 battery
->design_capacity
* acpi_battery_scale(battery
),
559 acpi_battery_units(battery
));
560 seq_printf(seq
, "last full capacity: %i%sh\n",
561 battery
->full_charge_capacity
* acpi_battery_scale(battery
),
562 acpi_battery_units(battery
));
563 seq_printf(seq
, "battery technology: rechargeable\n");
564 seq_printf(seq
, "design voltage: %i mV\n",
565 battery
->design_voltage
* acpi_battery_vscale(battery
));
566 seq_printf(seq
, "design capacity warning: unknown\n");
567 seq_printf(seq
, "design capacity low: unknown\n");
568 seq_printf(seq
, "cycle count: %i\n", battery
->cycle_count
);
569 seq_printf(seq
, "capacity granularity 1: unknown\n");
570 seq_printf(seq
, "capacity granularity 2: unknown\n");
571 seq_printf(seq
, "model number: %s\n", battery
->device_name
);
572 seq_printf(seq
, "serial number: %i\n",
573 battery
->serial_number
);
574 seq_printf(seq
, "battery type: %s\n",
575 battery
->device_chemistry
);
576 seq_printf(seq
, "OEM info: %s\n",
577 battery
->manufacturer_name
);
579 mutex_unlock(&sbs
->lock
);
583 static int acpi_battery_info_open_fs(struct inode
*inode
, struct file
*file
)
585 return single_open(file
, acpi_battery_read_info
, PDE(inode
)->data
);
588 static int acpi_battery_read_state(struct seq_file
*seq
, void *offset
)
590 struct acpi_battery
*battery
= seq
->private;
591 struct acpi_sbs
*sbs
= battery
->sbs
;
594 mutex_lock(&sbs
->lock
);
595 seq_printf(seq
, "present: %s\n",
596 (battery
->present
) ? "yes" : "no");
597 if (!battery
->present
)
600 acpi_battery_get_state(battery
);
601 seq_printf(seq
, "capacity state: %s\n",
602 (battery
->state
& 0x0010) ? "critical" : "ok");
603 seq_printf(seq
, "charging state: %s\n",
604 (battery
->rate_now
< 0) ? "discharging" :
605 ((battery
->rate_now
> 0) ? "charging" : "charged"));
606 rate
= abs(battery
->rate_now
) * acpi_battery_ipscale(battery
);
607 rate
*= (acpi_battery_mode(battery
))?(battery
->voltage_now
*
608 acpi_battery_vscale(battery
)/1000):1;
609 seq_printf(seq
, "present rate: %d%s\n", rate
,
610 acpi_battery_units(battery
));
611 seq_printf(seq
, "remaining capacity: %i%sh\n",
612 battery
->capacity_now
* acpi_battery_scale(battery
),
613 acpi_battery_units(battery
));
614 seq_printf(seq
, "present voltage: %i mV\n",
615 battery
->voltage_now
* acpi_battery_vscale(battery
));
618 mutex_unlock(&sbs
->lock
);
622 static int acpi_battery_state_open_fs(struct inode
*inode
, struct file
*file
)
624 return single_open(file
, acpi_battery_read_state
, PDE(inode
)->data
);
627 static int acpi_battery_read_alarm(struct seq_file
*seq
, void *offset
)
629 struct acpi_battery
*battery
= seq
->private;
630 struct acpi_sbs
*sbs
= battery
->sbs
;
633 mutex_lock(&sbs
->lock
);
635 if (!battery
->present
) {
636 seq_printf(seq
, "present: no\n");
640 acpi_battery_get_alarm(battery
);
641 seq_printf(seq
, "alarm: ");
642 if (battery
->alarm_capacity
)
643 seq_printf(seq
, "%i%sh\n",
644 battery
->alarm_capacity
*
645 acpi_battery_scale(battery
),
646 acpi_battery_units(battery
));
648 seq_printf(seq
, "disabled\n");
650 mutex_unlock(&sbs
->lock
);
655 acpi_battery_write_alarm(struct file
*file
, const char __user
* buffer
,
656 size_t count
, loff_t
* ppos
)
658 struct seq_file
*seq
= file
->private_data
;
659 struct acpi_battery
*battery
= seq
->private;
660 struct acpi_sbs
*sbs
= battery
->sbs
;
661 char alarm_string
[12] = { '\0' };
663 mutex_lock(&sbs
->lock
);
664 if (!battery
->present
) {
668 if (count
> sizeof(alarm_string
) - 1) {
672 if (copy_from_user(alarm_string
, buffer
, count
)) {
676 alarm_string
[count
] = 0;
677 battery
->alarm_capacity
= simple_strtoul(alarm_string
, NULL
, 0) /
678 acpi_battery_scale(battery
);
679 acpi_battery_set_alarm(battery
);
681 mutex_unlock(&sbs
->lock
);
687 static int acpi_battery_alarm_open_fs(struct inode
*inode
, struct file
*file
)
689 return single_open(file
, acpi_battery_read_alarm
, PDE(inode
)->data
);
692 static const struct file_operations acpi_battery_info_fops
= {
693 .open
= acpi_battery_info_open_fs
,
696 .release
= single_release
,
697 .owner
= THIS_MODULE
,
700 static const struct file_operations acpi_battery_state_fops
= {
701 .open
= acpi_battery_state_open_fs
,
704 .release
= single_release
,
705 .owner
= THIS_MODULE
,
708 static const struct file_operations acpi_battery_alarm_fops
= {
709 .open
= acpi_battery_alarm_open_fs
,
711 .write
= acpi_battery_write_alarm
,
713 .release
= single_release
,
714 .owner
= THIS_MODULE
,
717 /* Legacy AC Adapter Interface */
719 static struct proc_dir_entry
*acpi_ac_dir
= NULL
;
721 static int acpi_ac_read_state(struct seq_file
*seq
, void *offset
)
724 struct acpi_sbs
*sbs
= seq
->private;
726 mutex_lock(&sbs
->lock
);
728 seq_printf(seq
, "state: %s\n",
729 sbs
->charger_present
? "on-line" : "off-line");
731 mutex_unlock(&sbs
->lock
);
735 static int acpi_ac_state_open_fs(struct inode
*inode
, struct file
*file
)
737 return single_open(file
, acpi_ac_read_state
, PDE(inode
)->data
);
740 static const struct file_operations acpi_ac_state_fops
= {
741 .open
= acpi_ac_state_open_fs
,
744 .release
= single_release
,
745 .owner
= THIS_MODULE
,
750 /* --------------------------------------------------------------------------
752 -------------------------------------------------------------------------- */
753 static int acpi_battery_read(struct acpi_battery
*battery
)
755 int result
= 0, saved_present
= battery
->present
;
758 if (battery
->sbs
->manager_present
) {
759 result
= acpi_smbus_read(battery
->sbs
->hc
, SMBUS_READ_WORD
,
760 ACPI_SBS_MANAGER
, 0x01, (u8
*)&state
);
762 battery
->present
= state
& (1 << battery
->id
);
764 state
|= 1 << (battery
->id
+ 12);
765 acpi_smbus_write(battery
->sbs
->hc
, SMBUS_WRITE_WORD
,
766 ACPI_SBS_MANAGER
, 0x01, (u8
*)&state
, 2);
767 } else if (battery
->id
== 0)
768 battery
->present
= 1;
769 if (result
|| !battery
->present
)
772 if (saved_present
!= battery
->present
) {
773 battery
->update_time
= 0;
774 result
= acpi_battery_get_info(battery
);
778 result
= acpi_battery_get_state(battery
);
783 static int acpi_battery_add(struct acpi_sbs
*sbs
, int id
)
785 struct acpi_battery
*battery
= &sbs
->battery
[id
];
790 result
= acpi_battery_read(battery
);
794 sprintf(battery
->name
, ACPI_BATTERY_DIR_NAME
, id
);
795 #ifdef CONFIG_ACPI_PROCFS_POWER
796 acpi_sbs_add_fs(&battery
->proc_entry
, acpi_battery_dir
,
797 battery
->name
, &acpi_battery_info_fops
,
798 &acpi_battery_state_fops
, &acpi_battery_alarm_fops
,
801 #ifdef CONFIG_ACPI_SYSFS_POWER
802 battery
->bat
.name
= battery
->name
;
803 battery
->bat
.type
= POWER_SUPPLY_TYPE_BATTERY
;
804 if (!acpi_battery_mode(battery
)) {
805 battery
->bat
.properties
= sbs_charge_battery_props
;
806 battery
->bat
.num_properties
=
807 ARRAY_SIZE(sbs_charge_battery_props
);
809 battery
->bat
.properties
= sbs_energy_battery_props
;
810 battery
->bat
.num_properties
=
811 ARRAY_SIZE(sbs_energy_battery_props
);
813 battery
->bat
.get_property
= acpi_sbs_battery_get_property
;
814 result
= power_supply_register(&sbs
->device
->dev
, &battery
->bat
);
817 result
= device_create_file(battery
->bat
.dev
, &alarm_attr
);
820 battery
->have_sysfs_alarm
= 1;
823 printk(KERN_INFO PREFIX
"%s [%s]: Battery Slot [%s] (battery %s)\n",
824 ACPI_SBS_DEVICE_NAME
, acpi_device_bid(sbs
->device
),
825 battery
->name
, battery
->present
? "present" : "absent");
829 static void acpi_battery_remove(struct acpi_sbs
*sbs
, int id
)
831 #if defined(CONFIG_ACPI_SYSFS_POWER) || defined(CONFIG_ACPI_PROCFS_POWER)
832 struct acpi_battery
*battery
= &sbs
->battery
[id
];
835 #ifdef CONFIG_ACPI_SYSFS_POWER
836 if (battery
->bat
.dev
) {
837 if (battery
->have_sysfs_alarm
)
838 device_remove_file(battery
->bat
.dev
, &alarm_attr
);
839 power_supply_unregister(&battery
->bat
);
842 #ifdef CONFIG_ACPI_PROCFS_POWER
843 if (battery
->proc_entry
)
844 acpi_sbs_remove_fs(&battery
->proc_entry
, acpi_battery_dir
);
848 static int acpi_charger_add(struct acpi_sbs
*sbs
)
852 result
= acpi_ac_get_present(sbs
);
855 #ifdef CONFIG_ACPI_PROCFS_POWER
856 result
= acpi_sbs_add_fs(&sbs
->charger_entry
, acpi_ac_dir
,
857 ACPI_AC_DIR_NAME
, NULL
,
858 &acpi_ac_state_fops
, NULL
, sbs
);
862 #ifdef CONFIG_ACPI_SYSFS_POWER
863 sbs
->charger
.name
= "sbs-charger";
864 sbs
->charger
.type
= POWER_SUPPLY_TYPE_MAINS
;
865 sbs
->charger
.properties
= sbs_ac_props
;
866 sbs
->charger
.num_properties
= ARRAY_SIZE(sbs_ac_props
);
867 sbs
->charger
.get_property
= sbs_get_ac_property
;
868 power_supply_register(&sbs
->device
->dev
, &sbs
->charger
);
870 printk(KERN_INFO PREFIX
"%s [%s]: AC Adapter [%s] (%s)\n",
871 ACPI_SBS_DEVICE_NAME
, acpi_device_bid(sbs
->device
),
872 ACPI_AC_DIR_NAME
, sbs
->charger_present
? "on-line" : "off-line");
877 static void acpi_charger_remove(struct acpi_sbs
*sbs
)
879 #ifdef CONFIG_ACPI_SYSFS_POWER
880 if (sbs
->charger
.dev
)
881 power_supply_unregister(&sbs
->charger
);
883 #ifdef CONFIG_ACPI_PROCFS_POWER
884 if (sbs
->charger_entry
)
885 acpi_sbs_remove_fs(&sbs
->charger_entry
, acpi_ac_dir
);
889 static void acpi_sbs_callback(void *context
)
892 struct acpi_sbs
*sbs
= context
;
893 struct acpi_battery
*bat
;
894 u8 saved_charger_state
= sbs
->charger_present
;
895 u8 saved_battery_state
;
896 acpi_ac_get_present(sbs
);
897 if (sbs
->charger_present
!= saved_charger_state
) {
898 #ifdef CONFIG_ACPI_PROC_EVENT
899 acpi_bus_generate_proc_event4(ACPI_AC_CLASS
, ACPI_AC_DIR_NAME
,
900 ACPI_SBS_NOTIFY_STATUS
,
901 sbs
->charger_present
);
903 #ifdef CONFIG_ACPI_SYSFS_POWER
904 kobject_uevent(&sbs
->charger
.dev
->kobj
, KOBJ_CHANGE
);
907 if (sbs
->manager_present
) {
908 for (id
= 0; id
< MAX_SBS_BAT
; ++id
) {
909 if (!(sbs
->batteries_supported
& (1 << id
)))
911 bat
= &sbs
->battery
[id
];
912 saved_battery_state
= bat
->present
;
913 acpi_battery_read(bat
);
914 if (saved_battery_state
== bat
->present
)
916 #ifdef CONFIG_ACPI_PROC_EVENT
917 acpi_bus_generate_proc_event4(ACPI_BATTERY_CLASS
,
919 ACPI_SBS_NOTIFY_STATUS
,
922 #ifdef CONFIG_ACPI_SYSFS_POWER
923 kobject_uevent(&bat
->bat
.dev
->kobj
, KOBJ_CHANGE
);
929 static int acpi_sbs_remove(struct acpi_device
*device
, int type
);
931 static int acpi_sbs_add(struct acpi_device
*device
)
933 struct acpi_sbs
*sbs
;
937 sbs
= kzalloc(sizeof(struct acpi_sbs
), GFP_KERNEL
);
943 mutex_init(&sbs
->lock
);
945 sbs
->hc
= acpi_driver_data(device
->parent
);
946 sbs
->device
= device
;
947 strcpy(acpi_device_name(device
), ACPI_SBS_DEVICE_NAME
);
948 strcpy(acpi_device_class(device
), ACPI_SBS_CLASS
);
949 device
->driver_data
= sbs
;
951 result
= acpi_charger_add(sbs
);
955 result
= acpi_manager_get_info(sbs
);
957 sbs
->manager_present
= 1;
958 for (id
= 0; id
< MAX_SBS_BAT
; ++id
)
959 if ((sbs
->batteries_supported
& (1 << id
)))
960 acpi_battery_add(sbs
, id
);
962 acpi_battery_add(sbs
, 0);
963 acpi_smbus_register_callback(sbs
->hc
, acpi_sbs_callback
, sbs
);
966 acpi_sbs_remove(device
, 0);
970 static int acpi_sbs_remove(struct acpi_device
*device
, int type
)
972 struct acpi_sbs
*sbs
;
977 sbs
= acpi_driver_data(device
);
980 mutex_lock(&sbs
->lock
);
981 acpi_smbus_unregister_callback(sbs
->hc
);
982 for (id
= 0; id
< MAX_SBS_BAT
; ++id
)
983 acpi_battery_remove(sbs
, id
);
984 acpi_charger_remove(sbs
);
985 mutex_unlock(&sbs
->lock
);
986 mutex_destroy(&sbs
->lock
);
991 static void acpi_sbs_rmdirs(void)
993 #ifdef CONFIG_ACPI_PROCFS_POWER
995 acpi_unlock_ac_dir(acpi_ac_dir
);
998 if (acpi_battery_dir
) {
999 acpi_unlock_battery_dir(acpi_battery_dir
);
1000 acpi_battery_dir
= NULL
;
1005 static int acpi_sbs_resume(struct acpi_device
*device
)
1007 struct acpi_sbs
*sbs
;
1010 sbs
= device
->driver_data
;
1011 acpi_sbs_callback(sbs
);
1015 static struct acpi_driver acpi_sbs_driver
= {
1017 .class = ACPI_SBS_CLASS
,
1018 .ids
= sbs_device_ids
,
1020 .add
= acpi_sbs_add
,
1021 .remove
= acpi_sbs_remove
,
1022 .resume
= acpi_sbs_resume
,
1026 static int __init
acpi_sbs_init(void)
1032 #ifdef CONFIG_ACPI_PROCFS_POWER
1033 acpi_ac_dir
= acpi_lock_ac_dir();
1036 acpi_battery_dir
= acpi_lock_battery_dir();
1037 if (!acpi_battery_dir
) {
1042 result
= acpi_bus_register_driver(&acpi_sbs_driver
);
1050 static void __exit
acpi_sbs_exit(void)
1052 acpi_bus_unregister_driver(&acpi_sbs_driver
);
1057 module_init(acpi_sbs_init
);
1058 module_exit(acpi_sbs_exit
);