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
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 #include <linux/power_supply.h>
47 #define ACPI_SBS_CLASS "sbs"
48 #define ACPI_AC_CLASS "ac_adapter"
49 #define ACPI_BATTERY_CLASS "battery"
50 #define ACPI_SBS_DEVICE_NAME "Smart Battery System"
51 #define ACPI_SBS_FILE_INFO "info"
52 #define ACPI_SBS_FILE_STATE "state"
53 #define ACPI_SBS_FILE_ALARM "alarm"
54 #define ACPI_BATTERY_DIR_NAME "BAT%i"
55 #define ACPI_AC_DIR_NAME "AC0"
57 enum acpi_sbs_device_addr
{
58 ACPI_SBS_CHARGER
= 0x9,
59 ACPI_SBS_MANAGER
= 0xa,
60 ACPI_SBS_BATTERY
= 0xb,
63 #define ACPI_SBS_NOTIFY_STATUS 0x80
64 #define ACPI_SBS_NOTIFY_INFO 0x81
66 MODULE_AUTHOR("Alexey Starikovskiy <astarikovskiy@suse.de>");
67 MODULE_DESCRIPTION("Smart Battery System ACPI interface driver");
68 MODULE_LICENSE("GPL");
70 static unsigned int cache_time
= 1000;
71 module_param(cache_time
, uint
, 0644);
72 MODULE_PARM_DESC(cache_time
, "cache time in milliseconds");
74 extern struct proc_dir_entry
*acpi_lock_ac_dir(void);
75 extern struct proc_dir_entry
*acpi_lock_battery_dir(void);
76 extern void acpi_unlock_ac_dir(struct proc_dir_entry
*acpi_ac_dir
);
77 extern void acpi_unlock_battery_dir(struct proc_dir_entry
*acpi_battery_dir
);
80 #define ACPI_SBS_BLOCK_MAX 32
82 static const struct acpi_device_id sbs_device_ids
[] = {
86 MODULE_DEVICE_TABLE(acpi
, sbs_device_ids
);
89 struct power_supply bat
;
91 #ifdef CONFIG_ACPI_PROCFS
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
;
118 #define to_acpi_battery(x) container_of(x, struct acpi_battery, bat);
121 struct power_supply charger
;
122 struct acpi_device
*device
;
123 struct acpi_smb_hc
*hc
;
125 #ifdef CONFIG_ACPI_PROCFS
126 struct proc_dir_entry
*charger_entry
;
128 struct acpi_battery battery
[MAX_SBS_BAT
];
129 u8 batteries_supported
:4;
130 u8 manager_present
:1;
131 u8 charger_present
:1;
134 #define to_acpi_sbs(x) container_of(x, struct acpi_sbs, charger)
136 static inline int battery_scale(int log
)
144 static inline int acpi_battery_vscale(struct acpi_battery
*battery
)
146 return battery_scale((battery
->spec
& 0x0f00) >> 8);
149 static inline int acpi_battery_ipscale(struct acpi_battery
*battery
)
151 return battery_scale((battery
->spec
& 0xf000) >> 12);
154 static inline int acpi_battery_mode(struct acpi_battery
*battery
)
156 return (battery
->mode
& 0x8000);
159 static inline int acpi_battery_scale(struct acpi_battery
*battery
)
161 return (acpi_battery_mode(battery
) ? 10 : 1) *
162 acpi_battery_ipscale(battery
);
165 static int sbs_get_ac_property(struct power_supply
*psy
,
166 enum power_supply_property psp
,
167 union power_supply_propval
*val
)
169 struct acpi_sbs
*sbs
= to_acpi_sbs(psy
);
171 case POWER_SUPPLY_PROP_ONLINE
:
172 val
->intval
= sbs
->charger_present
;
180 static int acpi_battery_technology(struct acpi_battery
*battery
)
182 if (!strcasecmp("NiCd", battery
->device_chemistry
))
183 return POWER_SUPPLY_TECHNOLOGY_NiCd
;
184 if (!strcasecmp("NiMH", battery
->device_chemistry
))
185 return POWER_SUPPLY_TECHNOLOGY_NiMH
;
186 if (!strcasecmp("LION", battery
->device_chemistry
))
187 return POWER_SUPPLY_TECHNOLOGY_LION
;
188 if (!strcasecmp("LiP", battery
->device_chemistry
))
189 return POWER_SUPPLY_TECHNOLOGY_LIPO
;
190 return POWER_SUPPLY_TECHNOLOGY_UNKNOWN
;
193 static int acpi_sbs_battery_get_property(struct power_supply
*psy
,
194 enum power_supply_property psp
,
195 union power_supply_propval
*val
)
197 struct acpi_battery
*battery
= to_acpi_battery(psy
);
199 if ((!battery
->present
) && psp
!= POWER_SUPPLY_PROP_PRESENT
)
202 case POWER_SUPPLY_PROP_STATUS
:
203 if (battery
->current_now
< 0)
204 val
->intval
= POWER_SUPPLY_STATUS_DISCHARGING
;
205 else if (battery
->current_now
> 0)
206 val
->intval
= POWER_SUPPLY_STATUS_CHARGING
;
208 val
->intval
= POWER_SUPPLY_STATUS_FULL
;
210 case POWER_SUPPLY_PROP_PRESENT
:
211 val
->intval
= battery
->present
;
213 case POWER_SUPPLY_PROP_TECHNOLOGY
:
214 val
->intval
= acpi_battery_technology(battery
);
216 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN
:
217 val
->intval
= battery
->design_voltage
*
218 acpi_battery_vscale(battery
) * 1000;
220 case POWER_SUPPLY_PROP_VOLTAGE_NOW
:
221 val
->intval
= battery
->voltage_now
*
222 acpi_battery_vscale(battery
) * 1000;
224 case POWER_SUPPLY_PROP_CURRENT_NOW
:
225 val
->intval
= abs(battery
->current_now
) *
226 acpi_battery_ipscale(battery
) * 1000;
228 case POWER_SUPPLY_PROP_CURRENT_AVG
:
229 val
->intval
= abs(battery
->current_avg
) *
230 acpi_battery_ipscale(battery
) * 1000;
232 case POWER_SUPPLY_PROP_CAPACITY
:
233 val
->intval
= battery
->state_of_charge
;
235 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN
:
236 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN
:
237 val
->intval
= battery
->design_capacity
*
238 acpi_battery_scale(battery
) * 1000;
240 case POWER_SUPPLY_PROP_CHARGE_FULL
:
241 case POWER_SUPPLY_PROP_ENERGY_FULL
:
242 val
->intval
= battery
->full_charge_capacity
*
243 acpi_battery_scale(battery
) * 1000;
245 case POWER_SUPPLY_PROP_CHARGE_NOW
:
246 case POWER_SUPPLY_PROP_ENERGY_NOW
:
247 val
->intval
= battery
->capacity_now
*
248 acpi_battery_scale(battery
) * 1000;
250 case POWER_SUPPLY_PROP_TEMP
:
251 val
->intval
= battery
->temp_now
- 2730; // dK -> dC
253 case POWER_SUPPLY_PROP_MODEL_NAME
:
254 val
->strval
= battery
->device_name
;
256 case POWER_SUPPLY_PROP_MANUFACTURER
:
257 val
->strval
= battery
->manufacturer_name
;
265 static enum power_supply_property sbs_ac_props
[] = {
266 POWER_SUPPLY_PROP_ONLINE
,
269 static enum power_supply_property sbs_charge_battery_props
[] = {
270 POWER_SUPPLY_PROP_STATUS
,
271 POWER_SUPPLY_PROP_PRESENT
,
272 POWER_SUPPLY_PROP_TECHNOLOGY
,
273 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN
,
274 POWER_SUPPLY_PROP_VOLTAGE_NOW
,
275 POWER_SUPPLY_PROP_CURRENT_NOW
,
276 POWER_SUPPLY_PROP_CURRENT_AVG
,
277 POWER_SUPPLY_PROP_CAPACITY
,
278 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN
,
279 POWER_SUPPLY_PROP_CHARGE_FULL
,
280 POWER_SUPPLY_PROP_CHARGE_NOW
,
281 POWER_SUPPLY_PROP_TEMP
,
282 POWER_SUPPLY_PROP_MODEL_NAME
,
283 POWER_SUPPLY_PROP_MANUFACTURER
,
286 static enum power_supply_property sbs_energy_battery_props
[] = {
287 POWER_SUPPLY_PROP_STATUS
,
288 POWER_SUPPLY_PROP_PRESENT
,
289 POWER_SUPPLY_PROP_TECHNOLOGY
,
290 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN
,
291 POWER_SUPPLY_PROP_VOLTAGE_NOW
,
292 POWER_SUPPLY_PROP_CURRENT_NOW
,
293 POWER_SUPPLY_PROP_CURRENT_AVG
,
294 POWER_SUPPLY_PROP_CAPACITY
,
295 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN
,
296 POWER_SUPPLY_PROP_ENERGY_FULL
,
297 POWER_SUPPLY_PROP_ENERGY_NOW
,
298 POWER_SUPPLY_PROP_TEMP
,
299 POWER_SUPPLY_PROP_MODEL_NAME
,
300 POWER_SUPPLY_PROP_MANUFACTURER
,
303 /* --------------------------------------------------------------------------
304 Smart Battery System Management
305 -------------------------------------------------------------------------- */
307 struct acpi_battery_reader
{
308 u8 command
; /* command for battery */
309 u8 mode
; /* word or block? */
310 size_t offset
; /* offset inside struct acpi_sbs_battery */
313 static struct acpi_battery_reader info_readers
[] = {
314 {0x01, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, alarm_capacity
)},
315 {0x03, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, mode
)},
316 {0x10, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, full_charge_capacity
)},
317 {0x17, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, cycle_count
)},
318 {0x18, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, design_capacity
)},
319 {0x19, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, design_voltage
)},
320 {0x1a, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, spec
)},
321 {0x1c, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, serial_number
)},
322 {0x20, SMBUS_READ_BLOCK
, offsetof(struct acpi_battery
, manufacturer_name
)},
323 {0x21, SMBUS_READ_BLOCK
, offsetof(struct acpi_battery
, device_name
)},
324 {0x22, SMBUS_READ_BLOCK
, offsetof(struct acpi_battery
, device_chemistry
)},
327 static struct acpi_battery_reader state_readers
[] = {
328 {0x08, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, temp_now
)},
329 {0x09, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, voltage_now
)},
330 {0x0a, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, current_now
)},
331 {0x0b, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, current_avg
)},
332 {0x0f, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, capacity_now
)},
333 {0x0e, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, state_of_charge
)},
334 {0x16, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, state
)},
337 static int acpi_manager_get_info(struct acpi_sbs
*sbs
)
340 u16 battery_system_info
;
342 result
= acpi_smbus_read(sbs
->hc
, SMBUS_READ_WORD
, ACPI_SBS_MANAGER
,
343 0x04, (u8
*)&battery_system_info
);
345 sbs
->batteries_supported
= battery_system_info
& 0x000f;
349 static int acpi_battery_get_info(struct acpi_battery
*battery
)
353 for (i
= 0; i
< ARRAY_SIZE(info_readers
); ++i
) {
354 result
= acpi_smbus_read(battery
->sbs
->hc
,
355 info_readers
[i
].mode
,
357 info_readers
[i
].command
,
359 info_readers
[i
].offset
);
366 static int acpi_battery_get_state(struct acpi_battery
*battery
)
370 if (battery
->update_time
&&
371 time_before(jiffies
, battery
->update_time
+
372 msecs_to_jiffies(cache_time
)))
374 for (i
= 0; i
< ARRAY_SIZE(state_readers
); ++i
) {
375 result
= acpi_smbus_read(battery
->sbs
->hc
,
376 state_readers
[i
].mode
,
378 state_readers
[i
].command
,
380 state_readers
[i
].offset
);
385 battery
->update_time
= jiffies
;
389 static int acpi_battery_get_alarm(struct acpi_battery
*battery
)
391 return acpi_smbus_read(battery
->sbs
->hc
, SMBUS_READ_WORD
,
392 ACPI_SBS_BATTERY
, 0x01,
393 (u8
*)&battery
->alarm_capacity
);
396 static int acpi_battery_set_alarm(struct acpi_battery
*battery
)
398 struct acpi_sbs
*sbs
= battery
->sbs
;
399 u16 value
, sel
= 1 << (battery
->id
+ 12);
404 if (sbs
->manager_present
) {
405 ret
= acpi_smbus_read(sbs
->hc
, SMBUS_READ_WORD
, ACPI_SBS_MANAGER
,
409 if ((value
& 0xf000) != sel
) {
412 ret
= acpi_smbus_write(sbs
->hc
, SMBUS_WRITE_WORD
,
414 0x01, (u8
*)&value
, 2);
419 ret
= acpi_smbus_write(sbs
->hc
, SMBUS_WRITE_WORD
, ACPI_SBS_BATTERY
,
420 0x01, (u8
*)&battery
->alarm_capacity
, 2);
425 static int acpi_ac_get_present(struct acpi_sbs
*sbs
)
430 result
= acpi_smbus_read(sbs
->hc
, SMBUS_READ_WORD
, ACPI_SBS_CHARGER
,
431 0x13, (u8
*) & status
);
433 sbs
->charger_present
= (status
>> 15) & 0x1;
437 static ssize_t
acpi_battery_alarm_show(struct device
*dev
,
438 struct device_attribute
*attr
,
441 struct acpi_battery
*battery
= to_acpi_battery(dev_get_drvdata(dev
));
442 acpi_battery_get_alarm(battery
);
443 return sprintf(buf
, "%d\n", battery
->alarm_capacity
*
444 acpi_battery_scale(battery
) * 1000);
447 static ssize_t
acpi_battery_alarm_store(struct device
*dev
,
448 struct device_attribute
*attr
,
449 const char *buf
, size_t count
)
452 struct acpi_battery
*battery
= to_acpi_battery(dev_get_drvdata(dev
));
453 if (sscanf(buf
, "%ld\n", &x
) == 1)
454 battery
->alarm_capacity
= x
/
455 (1000 * acpi_battery_scale(battery
));
456 if (battery
->present
)
457 acpi_battery_set_alarm(battery
);
461 static struct device_attribute alarm_attr
= {
462 .attr
= {.name
= "alarm", .mode
= 0644, .owner
= THIS_MODULE
},
463 .show
= acpi_battery_alarm_show
,
464 .store
= acpi_battery_alarm_store
,
467 /* --------------------------------------------------------------------------
468 FS Interface (/proc/acpi)
469 -------------------------------------------------------------------------- */
471 #ifdef CONFIG_ACPI_PROCFS
472 /* Generic Routines */
474 acpi_sbs_add_fs(struct proc_dir_entry
**dir
,
475 struct proc_dir_entry
*parent_dir
,
477 struct file_operations
*info_fops
,
478 struct file_operations
*state_fops
,
479 struct file_operations
*alarm_fops
, void *data
)
481 struct proc_dir_entry
*entry
= NULL
;
484 *dir
= proc_mkdir(dir_name
, parent_dir
);
488 (*dir
)->owner
= THIS_MODULE
;
493 entry
= create_proc_entry(ACPI_SBS_FILE_INFO
, S_IRUGO
, *dir
);
495 entry
->proc_fops
= info_fops
;
497 entry
->owner
= THIS_MODULE
;
503 entry
= create_proc_entry(ACPI_SBS_FILE_STATE
, S_IRUGO
, *dir
);
505 entry
->proc_fops
= state_fops
;
507 entry
->owner
= THIS_MODULE
;
513 entry
= create_proc_entry(ACPI_SBS_FILE_ALARM
, S_IRUGO
, *dir
);
515 entry
->proc_fops
= alarm_fops
;
517 entry
->owner
= THIS_MODULE
;
524 acpi_sbs_remove_fs(struct proc_dir_entry
**dir
,
525 struct proc_dir_entry
*parent_dir
)
528 remove_proc_entry(ACPI_SBS_FILE_INFO
, *dir
);
529 remove_proc_entry(ACPI_SBS_FILE_STATE
, *dir
);
530 remove_proc_entry(ACPI_SBS_FILE_ALARM
, *dir
);
531 remove_proc_entry((*dir
)->name
, parent_dir
);
536 /* Smart Battery Interface */
537 static struct proc_dir_entry
*acpi_battery_dir
= NULL
;
539 static inline char *acpi_battery_units(struct acpi_battery
*battery
)
541 return acpi_battery_mode(battery
) ? " mWh" : " mAh";
545 static int acpi_battery_read_info(struct seq_file
*seq
, void *offset
)
547 struct acpi_battery
*battery
= seq
->private;
548 struct acpi_sbs
*sbs
= battery
->sbs
;
551 mutex_lock(&sbs
->lock
);
553 seq_printf(seq
, "present: %s\n",
554 (battery
->present
) ? "yes" : "no");
555 if (!battery
->present
)
558 seq_printf(seq
, "design capacity: %i%s\n",
559 battery
->design_capacity
* acpi_battery_scale(battery
),
560 acpi_battery_units(battery
));
561 seq_printf(seq
, "last full capacity: %i%s\n",
562 battery
->full_charge_capacity
* acpi_battery_scale(battery
),
563 acpi_battery_units(battery
));
564 seq_printf(seq
, "battery technology: rechargeable\n");
565 seq_printf(seq
, "design voltage: %i mV\n",
566 battery
->design_voltage
* acpi_battery_vscale(battery
));
567 seq_printf(seq
, "design capacity warning: unknown\n");
568 seq_printf(seq
, "design capacity low: unknown\n");
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
->current_now
< 0) ? "discharging" :
605 ((battery
->current_now
> 0) ? "charging" : "charged"));
606 seq_printf(seq
, "present rate: %d mA\n",
607 abs(battery
->current_now
) * acpi_battery_ipscale(battery
));
608 seq_printf(seq
, "remaining capacity: %i%s\n",
609 battery
->capacity_now
* acpi_battery_scale(battery
),
610 acpi_battery_units(battery
));
611 seq_printf(seq
, "present voltage: %i mV\n",
612 battery
->voltage_now
* acpi_battery_vscale(battery
));
615 mutex_unlock(&sbs
->lock
);
619 static int acpi_battery_state_open_fs(struct inode
*inode
, struct file
*file
)
621 return single_open(file
, acpi_battery_read_state
, PDE(inode
)->data
);
624 static int acpi_battery_read_alarm(struct seq_file
*seq
, void *offset
)
626 struct acpi_battery
*battery
= seq
->private;
627 struct acpi_sbs
*sbs
= battery
->sbs
;
630 mutex_lock(&sbs
->lock
);
632 if (!battery
->present
) {
633 seq_printf(seq
, "present: no\n");
637 acpi_battery_get_alarm(battery
);
638 seq_printf(seq
, "alarm: ");
639 if (battery
->alarm_capacity
)
640 seq_printf(seq
, "%i%s\n",
641 battery
->alarm_capacity
*
642 acpi_battery_scale(battery
),
643 acpi_battery_units(battery
));
645 seq_printf(seq
, "disabled\n");
647 mutex_unlock(&sbs
->lock
);
652 acpi_battery_write_alarm(struct file
*file
, const char __user
* buffer
,
653 size_t count
, loff_t
* ppos
)
655 struct seq_file
*seq
= file
->private_data
;
656 struct acpi_battery
*battery
= seq
->private;
657 struct acpi_sbs
*sbs
= battery
->sbs
;
658 char alarm_string
[12] = { '\0' };
660 mutex_lock(&sbs
->lock
);
661 if (!battery
->present
) {
665 if (count
> sizeof(alarm_string
) - 1) {
669 if (copy_from_user(alarm_string
, buffer
, count
)) {
673 alarm_string
[count
] = 0;
674 battery
->alarm_capacity
= simple_strtoul(alarm_string
, NULL
, 0) /
675 acpi_battery_scale(battery
);
676 acpi_battery_set_alarm(battery
);
678 mutex_unlock(&sbs
->lock
);
684 static int acpi_battery_alarm_open_fs(struct inode
*inode
, struct file
*file
)
686 return single_open(file
, acpi_battery_read_alarm
, PDE(inode
)->data
);
689 static struct file_operations acpi_battery_info_fops
= {
690 .open
= acpi_battery_info_open_fs
,
693 .release
= single_release
,
694 .owner
= THIS_MODULE
,
697 static struct file_operations acpi_battery_state_fops
= {
698 .open
= acpi_battery_state_open_fs
,
701 .release
= single_release
,
702 .owner
= THIS_MODULE
,
705 static struct file_operations acpi_battery_alarm_fops
= {
706 .open
= acpi_battery_alarm_open_fs
,
708 .write
= acpi_battery_write_alarm
,
710 .release
= single_release
,
711 .owner
= THIS_MODULE
,
714 /* Legacy AC Adapter Interface */
716 static struct proc_dir_entry
*acpi_ac_dir
= NULL
;
718 static int acpi_ac_read_state(struct seq_file
*seq
, void *offset
)
721 struct acpi_sbs
*sbs
= seq
->private;
723 mutex_lock(&sbs
->lock
);
725 seq_printf(seq
, "state: %s\n",
726 sbs
->charger_present
? "on-line" : "off-line");
728 mutex_unlock(&sbs
->lock
);
732 static int acpi_ac_state_open_fs(struct inode
*inode
, struct file
*file
)
734 return single_open(file
, acpi_ac_read_state
, PDE(inode
)->data
);
737 static struct file_operations acpi_ac_state_fops
= {
738 .open
= acpi_ac_state_open_fs
,
741 .release
= single_release
,
742 .owner
= THIS_MODULE
,
747 /* --------------------------------------------------------------------------
749 -------------------------------------------------------------------------- */
750 static int acpi_battery_read(struct acpi_battery
*battery
)
752 int result
= 0, saved_present
= battery
->present
;
755 if (battery
->sbs
->manager_present
) {
756 result
= acpi_smbus_read(battery
->sbs
->hc
, SMBUS_READ_WORD
,
757 ACPI_SBS_MANAGER
, 0x01, (u8
*)&state
);
759 battery
->present
= state
& (1 << battery
->id
);
761 state
|= 1 << (battery
->id
+ 12);
762 acpi_smbus_write(battery
->sbs
->hc
, SMBUS_WRITE_WORD
,
763 ACPI_SBS_MANAGER
, 0x01, (u8
*)&state
, 2);
764 } else if (battery
->id
== 0)
765 battery
->present
= 1;
766 if (result
|| !battery
->present
)
769 if (saved_present
!= battery
->present
) {
770 battery
->update_time
= 0;
771 result
= acpi_battery_get_info(battery
);
775 result
= acpi_battery_get_state(battery
);
780 static int acpi_battery_add(struct acpi_sbs
*sbs
, int id
)
782 struct acpi_battery
*battery
= &sbs
->battery
[id
];
787 result
= acpi_battery_read(battery
);
791 sprintf(battery
->name
, ACPI_BATTERY_DIR_NAME
, id
);
792 #ifdef CONFIG_ACPI_PROCFS
793 acpi_sbs_add_fs(&battery
->proc_entry
, acpi_battery_dir
,
794 battery
->name
, &acpi_battery_info_fops
,
795 &acpi_battery_state_fops
, &acpi_battery_alarm_fops
,
798 battery
->bat
.name
= battery
->name
;
799 battery
->bat
.type
= POWER_SUPPLY_TYPE_BATTERY
;
800 if (!acpi_battery_mode(battery
)) {
801 battery
->bat
.properties
= sbs_charge_battery_props
;
802 battery
->bat
.num_properties
=
803 ARRAY_SIZE(sbs_charge_battery_props
);
805 battery
->bat
.properties
= sbs_energy_battery_props
;
806 battery
->bat
.num_properties
=
807 ARRAY_SIZE(sbs_energy_battery_props
);
809 battery
->bat
.get_property
= acpi_sbs_battery_get_property
;
810 result
= power_supply_register(&sbs
->device
->dev
, &battery
->bat
);
811 device_create_file(battery
->bat
.dev
, &alarm_attr
);
812 printk(KERN_INFO PREFIX
"%s [%s]: Battery Slot [%s] (battery %s)\n",
813 ACPI_SBS_DEVICE_NAME
, acpi_device_bid(sbs
->device
),
814 battery
->name
, sbs
->battery
->present
? "present" : "absent");
818 static void acpi_battery_remove(struct acpi_sbs
*sbs
, int id
)
820 if (sbs
->battery
[id
].bat
.dev
)
821 device_remove_file(sbs
->battery
[id
].bat
.dev
, &alarm_attr
);
822 power_supply_unregister(&sbs
->battery
[id
].bat
);
823 #ifdef CONFIG_ACPI_PROCFS
824 if (sbs
->battery
[id
].proc_entry
) {
825 acpi_sbs_remove_fs(&(sbs
->battery
[id
].proc_entry
),
831 static int acpi_charger_add(struct acpi_sbs
*sbs
)
835 result
= acpi_ac_get_present(sbs
);
838 #ifdef CONFIG_ACPI_PROCFS
839 result
= acpi_sbs_add_fs(&sbs
->charger_entry
, acpi_ac_dir
,
840 ACPI_AC_DIR_NAME
, NULL
,
841 &acpi_ac_state_fops
, NULL
, sbs
);
845 sbs
->charger
.name
= "sbs-charger";
846 sbs
->charger
.type
= POWER_SUPPLY_TYPE_MAINS
;
847 sbs
->charger
.properties
= sbs_ac_props
;
848 sbs
->charger
.num_properties
= ARRAY_SIZE(sbs_ac_props
);
849 sbs
->charger
.get_property
= sbs_get_ac_property
;
850 power_supply_register(&sbs
->device
->dev
, &sbs
->charger
);
851 printk(KERN_INFO PREFIX
"%s [%s]: AC Adapter [%s] (%s)\n",
852 ACPI_SBS_DEVICE_NAME
, acpi_device_bid(sbs
->device
),
853 ACPI_AC_DIR_NAME
, sbs
->charger_present
? "on-line" : "off-line");
858 static void acpi_charger_remove(struct acpi_sbs
*sbs
)
860 if (sbs
->charger
.dev
)
861 power_supply_unregister(&sbs
->charger
);
862 #ifdef CONFIG_ACPI_PROCFS
863 if (sbs
->charger_entry
)
864 acpi_sbs_remove_fs(&sbs
->charger_entry
, acpi_ac_dir
);
868 void acpi_sbs_callback(void *context
)
871 struct acpi_sbs
*sbs
= context
;
872 struct acpi_battery
*bat
;
873 u8 saved_charger_state
= sbs
->charger_present
;
874 u8 saved_battery_state
;
875 acpi_ac_get_present(sbs
);
876 if (sbs
->charger_present
!= saved_charger_state
) {
877 #ifdef CONFIG_ACPI_PROC_EVENT
878 acpi_bus_generate_proc_event4(ACPI_AC_CLASS
, ACPI_AC_DIR_NAME
,
879 ACPI_SBS_NOTIFY_STATUS
,
880 sbs
->charger_present
);
882 kobject_uevent(&sbs
->charger
.dev
->kobj
, KOBJ_CHANGE
);
884 if (sbs
->manager_present
) {
885 for (id
= 0; id
< MAX_SBS_BAT
; ++id
) {
886 if (!(sbs
->batteries_supported
& (1 << id
)))
888 bat
= &sbs
->battery
[id
];
889 saved_battery_state
= bat
->present
;
890 acpi_battery_read(bat
);
891 if (saved_battery_state
== bat
->present
)
893 #ifdef CONFIG_ACPI_PROC_EVENT
894 acpi_bus_generate_proc_event4(ACPI_BATTERY_CLASS
,
896 ACPI_SBS_NOTIFY_STATUS
,
899 kobject_uevent(&bat
->bat
.dev
->kobj
, KOBJ_CHANGE
);
904 static int acpi_sbs_remove(struct acpi_device
*device
, int type
);
906 static int acpi_sbs_add(struct acpi_device
*device
)
908 struct acpi_sbs
*sbs
;
912 sbs
= kzalloc(sizeof(struct acpi_sbs
), GFP_KERNEL
);
918 mutex_init(&sbs
->lock
);
920 sbs
->hc
= acpi_driver_data(device
->parent
);
921 sbs
->device
= device
;
922 strcpy(acpi_device_name(device
), ACPI_SBS_DEVICE_NAME
);
923 strcpy(acpi_device_class(device
), ACPI_SBS_CLASS
);
924 acpi_driver_data(device
) = sbs
;
926 result
= acpi_charger_add(sbs
);
930 result
= acpi_manager_get_info(sbs
);
932 sbs
->manager_present
= 1;
933 for (id
= 0; id
< MAX_SBS_BAT
; ++id
)
934 if ((sbs
->batteries_supported
& (1 << id
)))
935 acpi_battery_add(sbs
, id
);
937 acpi_battery_add(sbs
, 0);
938 acpi_smbus_register_callback(sbs
->hc
, acpi_sbs_callback
, sbs
);
941 acpi_sbs_remove(device
, 0);
945 static int acpi_sbs_remove(struct acpi_device
*device
, int type
)
947 struct acpi_sbs
*sbs
;
952 sbs
= acpi_driver_data(device
);
955 mutex_lock(&sbs
->lock
);
956 acpi_smbus_unregister_callback(sbs
->hc
);
957 for (id
= 0; id
< MAX_SBS_BAT
; ++id
)
958 acpi_battery_remove(sbs
, id
);
959 acpi_charger_remove(sbs
);
960 mutex_unlock(&sbs
->lock
);
961 mutex_destroy(&sbs
->lock
);
966 static void acpi_sbs_rmdirs(void)
968 #ifdef CONFIG_ACPI_PROCFS
970 acpi_unlock_ac_dir(acpi_ac_dir
);
973 if (acpi_battery_dir
) {
974 acpi_unlock_battery_dir(acpi_battery_dir
);
975 acpi_battery_dir
= NULL
;
980 static int acpi_sbs_resume(struct acpi_device
*device
)
982 struct acpi_sbs
*sbs
;
985 sbs
= device
->driver_data
;
986 acpi_sbs_callback(sbs
);
990 static struct acpi_driver acpi_sbs_driver
= {
992 .class = ACPI_SBS_CLASS
,
993 .ids
= sbs_device_ids
,
996 .remove
= acpi_sbs_remove
,
997 .resume
= acpi_sbs_resume
,
1001 static int __init
acpi_sbs_init(void)
1007 #ifdef CONFIG_ACPI_PROCFS
1008 acpi_ac_dir
= acpi_lock_ac_dir();
1011 acpi_battery_dir
= acpi_lock_battery_dir();
1012 if (!acpi_battery_dir
) {
1017 result
= acpi_bus_register_driver(&acpi_sbs_driver
);
1025 static void __exit
acpi_sbs_exit(void)
1027 acpi_bus_unregister_driver(&acpi_sbs_driver
);
1032 module_init(acpi_sbs_init
);
1033 module_exit(acpi_sbs_exit
);