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 #include <linux/acpi.h>
34 #include <linux/timer.h>
35 #include <linux/jiffies.h>
36 #include <linux/delay.h>
37 #include <linux/power_supply.h>
38 #include <linux/dmi.h>
43 #define PREFIX "ACPI: "
45 #define ACPI_SBS_CLASS "sbs"
46 #define ACPI_AC_CLASS "ac_adapter"
47 #define ACPI_SBS_DEVICE_NAME "Smart Battery System"
48 #define ACPI_SBS_FILE_INFO "info"
49 #define ACPI_SBS_FILE_STATE "state"
50 #define ACPI_SBS_FILE_ALARM "alarm"
51 #define ACPI_BATTERY_DIR_NAME "BAT%i"
52 #define ACPI_AC_DIR_NAME "AC0"
54 #define ACPI_SBS_NOTIFY_STATUS 0x80
55 #define ACPI_SBS_NOTIFY_INFO 0x81
57 MODULE_AUTHOR("Alexey Starikovskiy <astarikovskiy@suse.de>");
58 MODULE_DESCRIPTION("Smart Battery System ACPI interface driver");
59 MODULE_LICENSE("GPL");
61 static unsigned int cache_time
= 1000;
62 module_param(cache_time
, uint
, 0644);
63 MODULE_PARM_DESC(cache_time
, "cache time in milliseconds");
65 static bool sbs_manager_broken
;
68 #define ACPI_SBS_BLOCK_MAX 32
70 static const struct acpi_device_id sbs_device_ids
[] = {
74 MODULE_DEVICE_TABLE(acpi
, sbs_device_ids
);
77 struct power_supply bat
;
79 unsigned long update_time
;
81 char manufacturer_name
[ACPI_SBS_BLOCK_MAX
];
82 char device_name
[ACPI_SBS_BLOCK_MAX
];
83 char device_chemistry
[ACPI_SBS_BLOCK_MAX
];
85 u16 full_charge_capacity
;
101 u8 have_sysfs_alarm
:1;
104 #define to_acpi_battery(x) container_of(x, struct acpi_battery, bat)
107 struct power_supply charger
;
108 struct acpi_device
*device
;
109 struct acpi_smb_hc
*hc
;
111 struct acpi_battery battery
[MAX_SBS_BAT
];
112 u8 batteries_supported
:4;
113 u8 manager_present
:1;
114 u8 charger_present
:1;
118 #define to_acpi_sbs(x) container_of(x, struct acpi_sbs, charger)
120 static int acpi_sbs_remove(struct acpi_device
*device
);
121 static int acpi_battery_get_state(struct acpi_battery
*battery
);
123 static inline int battery_scale(int log
)
131 static inline int acpi_battery_vscale(struct acpi_battery
*battery
)
133 return battery_scale((battery
->spec
& 0x0f00) >> 8);
136 static inline int acpi_battery_ipscale(struct acpi_battery
*battery
)
138 return battery_scale((battery
->spec
& 0xf000) >> 12);
141 static inline int acpi_battery_mode(struct acpi_battery
*battery
)
143 return (battery
->mode
& 0x8000);
146 static inline int acpi_battery_scale(struct acpi_battery
*battery
)
148 return (acpi_battery_mode(battery
) ? 10 : 1) *
149 acpi_battery_ipscale(battery
);
152 static int sbs_get_ac_property(struct power_supply
*psy
,
153 enum power_supply_property psp
,
154 union power_supply_propval
*val
)
156 struct acpi_sbs
*sbs
= to_acpi_sbs(psy
);
158 case POWER_SUPPLY_PROP_ONLINE
:
159 val
->intval
= sbs
->charger_present
;
167 static int acpi_battery_technology(struct acpi_battery
*battery
)
169 if (!strcasecmp("NiCd", battery
->device_chemistry
))
170 return POWER_SUPPLY_TECHNOLOGY_NiCd
;
171 if (!strcasecmp("NiMH", battery
->device_chemistry
))
172 return POWER_SUPPLY_TECHNOLOGY_NiMH
;
173 if (!strcasecmp("LION", battery
->device_chemistry
))
174 return POWER_SUPPLY_TECHNOLOGY_LION
;
175 if (!strcasecmp("LiP", battery
->device_chemistry
))
176 return POWER_SUPPLY_TECHNOLOGY_LIPO
;
177 return POWER_SUPPLY_TECHNOLOGY_UNKNOWN
;
180 static int acpi_sbs_battery_get_property(struct power_supply
*psy
,
181 enum power_supply_property psp
,
182 union power_supply_propval
*val
)
184 struct acpi_battery
*battery
= to_acpi_battery(psy
);
186 if ((!battery
->present
) && psp
!= POWER_SUPPLY_PROP_PRESENT
)
189 acpi_battery_get_state(battery
);
191 case POWER_SUPPLY_PROP_STATUS
:
192 if (battery
->rate_now
< 0)
193 val
->intval
= POWER_SUPPLY_STATUS_DISCHARGING
;
194 else if (battery
->rate_now
> 0)
195 val
->intval
= POWER_SUPPLY_STATUS_CHARGING
;
197 val
->intval
= POWER_SUPPLY_STATUS_FULL
;
199 case POWER_SUPPLY_PROP_PRESENT
:
200 val
->intval
= battery
->present
;
202 case POWER_SUPPLY_PROP_TECHNOLOGY
:
203 val
->intval
= acpi_battery_technology(battery
);
205 case POWER_SUPPLY_PROP_CYCLE_COUNT
:
206 val
->intval
= battery
->cycle_count
;
208 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN
:
209 val
->intval
= battery
->design_voltage
*
210 acpi_battery_vscale(battery
) * 1000;
212 case POWER_SUPPLY_PROP_VOLTAGE_NOW
:
213 val
->intval
= battery
->voltage_now
*
214 acpi_battery_vscale(battery
) * 1000;
216 case POWER_SUPPLY_PROP_CURRENT_NOW
:
217 case POWER_SUPPLY_PROP_POWER_NOW
:
218 val
->intval
= abs(battery
->rate_now
) *
219 acpi_battery_ipscale(battery
) * 1000;
220 val
->intval
*= (acpi_battery_mode(battery
)) ?
221 (battery
->voltage_now
*
222 acpi_battery_vscale(battery
) / 1000) : 1;
224 case POWER_SUPPLY_PROP_CURRENT_AVG
:
225 case POWER_SUPPLY_PROP_POWER_AVG
:
226 val
->intval
= abs(battery
->rate_avg
) *
227 acpi_battery_ipscale(battery
) * 1000;
228 val
->intval
*= (acpi_battery_mode(battery
)) ?
229 (battery
->voltage_now
*
230 acpi_battery_vscale(battery
) / 1000) : 1;
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_CYCLE_COUNT
,
274 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN
,
275 POWER_SUPPLY_PROP_VOLTAGE_NOW
,
276 POWER_SUPPLY_PROP_CURRENT_NOW
,
277 POWER_SUPPLY_PROP_CURRENT_AVG
,
278 POWER_SUPPLY_PROP_CAPACITY
,
279 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN
,
280 POWER_SUPPLY_PROP_CHARGE_FULL
,
281 POWER_SUPPLY_PROP_CHARGE_NOW
,
282 POWER_SUPPLY_PROP_TEMP
,
283 POWER_SUPPLY_PROP_MODEL_NAME
,
284 POWER_SUPPLY_PROP_MANUFACTURER
,
287 static enum power_supply_property sbs_energy_battery_props
[] = {
288 POWER_SUPPLY_PROP_STATUS
,
289 POWER_SUPPLY_PROP_PRESENT
,
290 POWER_SUPPLY_PROP_TECHNOLOGY
,
291 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN
,
292 POWER_SUPPLY_PROP_VOLTAGE_NOW
,
293 POWER_SUPPLY_PROP_CURRENT_NOW
,
294 POWER_SUPPLY_PROP_CURRENT_AVG
,
295 POWER_SUPPLY_PROP_POWER_NOW
,
296 POWER_SUPPLY_PROP_POWER_AVG
,
297 POWER_SUPPLY_PROP_CAPACITY
,
298 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN
,
299 POWER_SUPPLY_PROP_ENERGY_FULL
,
300 POWER_SUPPLY_PROP_ENERGY_NOW
,
301 POWER_SUPPLY_PROP_TEMP
,
302 POWER_SUPPLY_PROP_MODEL_NAME
,
303 POWER_SUPPLY_PROP_MANUFACTURER
,
307 /* --------------------------------------------------------------------------
308 Smart Battery System Management
309 -------------------------------------------------------------------------- */
311 struct acpi_battery_reader
{
312 u8 command
; /* command for battery */
313 u8 mode
; /* word or block? */
314 size_t offset
; /* offset inside struct acpi_sbs_battery */
317 static struct acpi_battery_reader info_readers
[] = {
318 {0x01, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, alarm_capacity
)},
319 {0x03, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, mode
)},
320 {0x10, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, full_charge_capacity
)},
321 {0x17, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, cycle_count
)},
322 {0x18, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, design_capacity
)},
323 {0x19, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, design_voltage
)},
324 {0x1a, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, spec
)},
325 {0x1c, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, serial_number
)},
326 {0x20, SMBUS_READ_BLOCK
, offsetof(struct acpi_battery
, manufacturer_name
)},
327 {0x21, SMBUS_READ_BLOCK
, offsetof(struct acpi_battery
, device_name
)},
328 {0x22, SMBUS_READ_BLOCK
, offsetof(struct acpi_battery
, device_chemistry
)},
331 static struct acpi_battery_reader state_readers
[] = {
332 {0x08, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, temp_now
)},
333 {0x09, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, voltage_now
)},
334 {0x0a, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, rate_now
)},
335 {0x0b, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, rate_avg
)},
336 {0x0f, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, capacity_now
)},
337 {0x0e, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, state_of_charge
)},
338 {0x16, SMBUS_READ_WORD
, offsetof(struct acpi_battery
, state
)},
341 static int acpi_manager_get_info(struct acpi_sbs
*sbs
)
344 u16 battery_system_info
;
346 result
= acpi_smbus_read(sbs
->hc
, SMBUS_READ_WORD
, ACPI_SBS_MANAGER
,
347 0x04, (u8
*)&battery_system_info
);
349 sbs
->batteries_supported
= battery_system_info
& 0x000f;
353 static int acpi_battery_get_info(struct acpi_battery
*battery
)
357 for (i
= 0; i
< ARRAY_SIZE(info_readers
); ++i
) {
358 result
= acpi_smbus_read(battery
->sbs
->hc
,
359 info_readers
[i
].mode
,
361 info_readers
[i
].command
,
363 info_readers
[i
].offset
);
370 static int acpi_battery_get_state(struct acpi_battery
*battery
)
374 if (battery
->update_time
&&
375 time_before(jiffies
, battery
->update_time
+
376 msecs_to_jiffies(cache_time
)))
378 for (i
= 0; i
< ARRAY_SIZE(state_readers
); ++i
) {
379 result
= acpi_smbus_read(battery
->sbs
->hc
,
380 state_readers
[i
].mode
,
382 state_readers
[i
].command
,
384 state_readers
[i
].offset
);
389 battery
->update_time
= jiffies
;
393 static int acpi_battery_get_alarm(struct acpi_battery
*battery
)
395 return acpi_smbus_read(battery
->sbs
->hc
, SMBUS_READ_WORD
,
396 ACPI_SBS_BATTERY
, 0x01,
397 (u8
*)&battery
->alarm_capacity
);
400 static int acpi_battery_set_alarm(struct acpi_battery
*battery
)
402 struct acpi_sbs
*sbs
= battery
->sbs
;
403 u16 value
, sel
= 1 << (battery
->id
+ 12);
408 if (sbs
->manager_present
) {
409 ret
= acpi_smbus_read(sbs
->hc
, SMBUS_READ_WORD
, ACPI_SBS_MANAGER
,
413 if ((value
& 0xf000) != sel
) {
416 ret
= acpi_smbus_write(sbs
->hc
, SMBUS_WRITE_WORD
,
418 0x01, (u8
*)&value
, 2);
423 ret
= acpi_smbus_write(sbs
->hc
, SMBUS_WRITE_WORD
, ACPI_SBS_BATTERY
,
424 0x01, (u8
*)&battery
->alarm_capacity
, 2);
429 static int acpi_ac_get_present(struct acpi_sbs
*sbs
)
434 result
= acpi_smbus_read(sbs
->hc
, SMBUS_READ_WORD
, ACPI_SBS_CHARGER
,
435 0x13, (u8
*) & status
);
441 * The spec requires that bit 4 always be 1. If it's not set, assume
442 * that the implementation doesn't support an SBS charger
444 if (!((status
>> 4) & 0x1))
447 sbs
->charger_present
= (status
>> 15) & 0x1;
451 static ssize_t
acpi_battery_alarm_show(struct device
*dev
,
452 struct device_attribute
*attr
,
455 struct acpi_battery
*battery
= to_acpi_battery(dev_get_drvdata(dev
));
456 acpi_battery_get_alarm(battery
);
457 return sprintf(buf
, "%d\n", battery
->alarm_capacity
*
458 acpi_battery_scale(battery
) * 1000);
461 static ssize_t
acpi_battery_alarm_store(struct device
*dev
,
462 struct device_attribute
*attr
,
463 const char *buf
, size_t count
)
466 struct acpi_battery
*battery
= to_acpi_battery(dev_get_drvdata(dev
));
467 if (sscanf(buf
, "%lu\n", &x
) == 1)
468 battery
->alarm_capacity
= x
/
469 (1000 * acpi_battery_scale(battery
));
470 if (battery
->present
)
471 acpi_battery_set_alarm(battery
);
475 static struct device_attribute alarm_attr
= {
476 .attr
= {.name
= "alarm", .mode
= 0644},
477 .show
= acpi_battery_alarm_show
,
478 .store
= acpi_battery_alarm_store
,
481 /* --------------------------------------------------------------------------
483 -------------------------------------------------------------------------- */
484 static int acpi_battery_read(struct acpi_battery
*battery
)
486 int result
= 0, saved_present
= battery
->present
;
489 if (battery
->sbs
->manager_present
) {
490 result
= acpi_smbus_read(battery
->sbs
->hc
, SMBUS_READ_WORD
,
491 ACPI_SBS_MANAGER
, 0x01, (u8
*)&state
);
493 battery
->present
= state
& (1 << battery
->id
);
495 state
|= 1 << (battery
->id
+ 12);
496 acpi_smbus_write(battery
->sbs
->hc
, SMBUS_WRITE_WORD
,
497 ACPI_SBS_MANAGER
, 0x01, (u8
*)&state
, 2);
498 } else if (battery
->id
== 0)
499 battery
->present
= 1;
501 if (result
|| !battery
->present
)
504 if (saved_present
!= battery
->present
) {
505 battery
->update_time
= 0;
506 result
= acpi_battery_get_info(battery
);
508 battery
->present
= 0;
512 result
= acpi_battery_get_state(battery
);
514 battery
->present
= 0;
519 static int acpi_battery_add(struct acpi_sbs
*sbs
, int id
)
521 struct acpi_battery
*battery
= &sbs
->battery
[id
];
526 result
= acpi_battery_read(battery
);
530 sprintf(battery
->name
, ACPI_BATTERY_DIR_NAME
, id
);
531 battery
->bat
.name
= battery
->name
;
532 battery
->bat
.type
= POWER_SUPPLY_TYPE_BATTERY
;
533 if (!acpi_battery_mode(battery
)) {
534 battery
->bat
.properties
= sbs_charge_battery_props
;
535 battery
->bat
.num_properties
=
536 ARRAY_SIZE(sbs_charge_battery_props
);
538 battery
->bat
.properties
= sbs_energy_battery_props
;
539 battery
->bat
.num_properties
=
540 ARRAY_SIZE(sbs_energy_battery_props
);
542 battery
->bat
.get_property
= acpi_sbs_battery_get_property
;
543 result
= power_supply_register(&sbs
->device
->dev
, &battery
->bat
);
547 result
= device_create_file(battery
->bat
.dev
, &alarm_attr
);
550 battery
->have_sysfs_alarm
= 1;
552 printk(KERN_INFO PREFIX
"%s [%s]: Battery Slot [%s] (battery %s)\n",
553 ACPI_SBS_DEVICE_NAME
, acpi_device_bid(sbs
->device
),
554 battery
->name
, battery
->present
? "present" : "absent");
558 static void acpi_battery_remove(struct acpi_sbs
*sbs
, int id
)
560 struct acpi_battery
*battery
= &sbs
->battery
[id
];
562 if (battery
->bat
.dev
) {
563 if (battery
->have_sysfs_alarm
)
564 device_remove_file(battery
->bat
.dev
, &alarm_attr
);
565 power_supply_unregister(&battery
->bat
);
569 static int acpi_charger_add(struct acpi_sbs
*sbs
)
573 result
= acpi_ac_get_present(sbs
);
577 sbs
->charger_exists
= 1;
578 sbs
->charger
.name
= "sbs-charger";
579 sbs
->charger
.type
= POWER_SUPPLY_TYPE_MAINS
;
580 sbs
->charger
.properties
= sbs_ac_props
;
581 sbs
->charger
.num_properties
= ARRAY_SIZE(sbs_ac_props
);
582 sbs
->charger
.get_property
= sbs_get_ac_property
;
583 power_supply_register(&sbs
->device
->dev
, &sbs
->charger
);
584 printk(KERN_INFO PREFIX
"%s [%s]: AC Adapter [%s] (%s)\n",
585 ACPI_SBS_DEVICE_NAME
, acpi_device_bid(sbs
->device
),
586 ACPI_AC_DIR_NAME
, sbs
->charger_present
? "on-line" : "off-line");
591 static void acpi_charger_remove(struct acpi_sbs
*sbs
)
593 if (sbs
->charger
.dev
)
594 power_supply_unregister(&sbs
->charger
);
597 static void acpi_sbs_callback(void *context
)
600 struct acpi_sbs
*sbs
= context
;
601 struct acpi_battery
*bat
;
602 u8 saved_charger_state
= sbs
->charger_present
;
603 u8 saved_battery_state
;
605 if (sbs
->charger_exists
) {
606 acpi_ac_get_present(sbs
);
607 if (sbs
->charger_present
!= saved_charger_state
)
608 kobject_uevent(&sbs
->charger
.dev
->kobj
, KOBJ_CHANGE
);
611 if (sbs
->manager_present
) {
612 for (id
= 0; id
< MAX_SBS_BAT
; ++id
) {
613 if (!(sbs
->batteries_supported
& (1 << id
)))
615 bat
= &sbs
->battery
[id
];
616 saved_battery_state
= bat
->present
;
617 acpi_battery_read(bat
);
618 if (saved_battery_state
== bat
->present
)
620 kobject_uevent(&bat
->bat
.dev
->kobj
, KOBJ_CHANGE
);
625 static int disable_sbs_manager(const struct dmi_system_id
*d
)
627 sbs_manager_broken
= true;
631 static struct dmi_system_id acpi_sbs_dmi_table
[] = {
633 .callback
= disable_sbs_manager
,
636 DMI_MATCH(DMI_SYS_VENDOR
, "Apple Inc.")
642 static int acpi_sbs_add(struct acpi_device
*device
)
644 struct acpi_sbs
*sbs
;
648 dmi_check_system(acpi_sbs_dmi_table
);
650 sbs
= kzalloc(sizeof(struct acpi_sbs
), GFP_KERNEL
);
656 mutex_init(&sbs
->lock
);
658 sbs
->hc
= acpi_driver_data(device
->parent
);
659 sbs
->device
= device
;
660 strcpy(acpi_device_name(device
), ACPI_SBS_DEVICE_NAME
);
661 strcpy(acpi_device_class(device
), ACPI_SBS_CLASS
);
662 device
->driver_data
= sbs
;
664 result
= acpi_charger_add(sbs
);
665 if (result
&& result
!= -ENODEV
)
670 if (!sbs_manager_broken
) {
671 result
= acpi_manager_get_info(sbs
);
673 sbs
->manager_present
= 0;
674 for (id
= 0; id
< MAX_SBS_BAT
; ++id
)
675 if ((sbs
->batteries_supported
& (1 << id
)))
676 acpi_battery_add(sbs
, id
);
680 if (!sbs
->manager_present
)
681 acpi_battery_add(sbs
, 0);
683 acpi_smbus_register_callback(sbs
->hc
, acpi_sbs_callback
, sbs
);
686 acpi_sbs_remove(device
);
690 static int acpi_sbs_remove(struct acpi_device
*device
)
692 struct acpi_sbs
*sbs
;
697 sbs
= acpi_driver_data(device
);
700 mutex_lock(&sbs
->lock
);
701 acpi_smbus_unregister_callback(sbs
->hc
);
702 for (id
= 0; id
< MAX_SBS_BAT
; ++id
)
703 acpi_battery_remove(sbs
, id
);
704 acpi_charger_remove(sbs
);
705 mutex_unlock(&sbs
->lock
);
706 mutex_destroy(&sbs
->lock
);
711 #ifdef CONFIG_PM_SLEEP
712 static int acpi_sbs_resume(struct device
*dev
)
714 struct acpi_sbs
*sbs
;
717 sbs
= to_acpi_device(dev
)->driver_data
;
718 acpi_sbs_callback(sbs
);
722 #define acpi_sbs_resume NULL
725 static SIMPLE_DEV_PM_OPS(acpi_sbs_pm
, NULL
, acpi_sbs_resume
);
727 static struct acpi_driver acpi_sbs_driver
= {
729 .class = ACPI_SBS_CLASS
,
730 .ids
= sbs_device_ids
,
733 .remove
= acpi_sbs_remove
,
735 .drv
.pm
= &acpi_sbs_pm
,
738 static int __init
acpi_sbs_init(void)
745 result
= acpi_bus_register_driver(&acpi_sbs_driver
);
752 static void __exit
acpi_sbs_exit(void)
754 acpi_bus_unregister_driver(&acpi_sbs_driver
);
758 module_init(acpi_sbs_init
);
759 module_exit(acpi_sbs_exit
);