blob: 22cb95b349e49835be4b28599b23864634b13221 [file] [log] [blame]
Rich Townsend3f86b832006-07-01 11:36:54 -04001/*
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +04002 * sbs.c - ACPI Smart Battery System Driver ($Revision: 2.0 $)
Rich Townsend3f86b832006-07-01 11:36:54 -04003 *
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +04004 * Copyright (c) 2007 Alexey Starikovskiy <astarikovskiy@suse.de>
5 * Copyright (c) 2005-2007 Vladimir Lebedev <vladimir.p.lebedev@intel.com>
Rich Townsend3f86b832006-07-01 11:36:54 -04006 * Copyright (c) 2005 Rich Townsend <rhdt@bartol.udel.edu>
7 *
8 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9 *
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.
14 *
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.
19 *
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.
23 *
24 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
25 */
26
27#include <linux/init.h>
28#include <linux/module.h>
29#include <linux/moduleparam.h>
30#include <linux/kernel.h>
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +040031
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +030032#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -040033#include <linux/proc_fs.h>
34#include <linux/seq_file.h>
35#include <asm/uaccess.h>
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +040036#endif
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +040037
Rich Townsend3f86b832006-07-01 11:36:54 -040038#include <linux/acpi.h>
Vladimir Lebedev6d157022007-03-19 17:45:50 +030039#include <linux/timer.h>
Vladimir Lebedev72206232007-03-19 17:45:50 +030040#include <linux/jiffies.h>
Rich Townsend3f86b832006-07-01 11:36:54 -040041#include <linux/delay.h>
42
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +040043#include <linux/power_supply.h>
44
Alexey Starikovskiy91087df2007-09-26 19:43:28 +040045#include "sbshc.h"
46
Rich Townsend3f86b832006-07-01 11:36:54 -040047#define ACPI_SBS_CLASS "sbs"
48#define ACPI_AC_CLASS "ac_adapter"
49#define ACPI_BATTERY_CLASS "battery"
Rich Townsend3f86b832006-07-01 11:36:54 -040050#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"
Rich Townsend3f86b832006-07-01 11:36:54 -040056
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +040057#define ACPI_SBS_NOTIFY_STATUS 0x80
58#define ACPI_SBS_NOTIFY_INFO 0x81
Rich Townsend3f86b832006-07-01 11:36:54 -040059
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +040060MODULE_AUTHOR("Alexey Starikovskiy <astarikovskiy@suse.de>");
Rich Townsend3f86b832006-07-01 11:36:54 -040061MODULE_DESCRIPTION("Smart Battery System ACPI interface driver");
62MODULE_LICENSE("GPL");
63
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +040064static unsigned int cache_time = 1000;
65module_param(cache_time, uint, 0644);
66MODULE_PARM_DESC(cache_time, "cache time in milliseconds");
Vladimir Lebedev6d157022007-03-19 17:45:50 +030067
68extern struct proc_dir_entry *acpi_lock_ac_dir(void);
69extern struct proc_dir_entry *acpi_lock_battery_dir(void);
70extern void acpi_unlock_ac_dir(struct proc_dir_entry *acpi_ac_dir);
71extern void acpi_unlock_battery_dir(struct proc_dir_entry *acpi_battery_dir);
72
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +040073#define MAX_SBS_BAT 4
Vladimir Lebedev6d157022007-03-19 17:45:50 +030074#define ACPI_SBS_BLOCK_MAX 32
75
Thomas Renninger1ba90e32007-07-23 14:44:41 +020076static const struct acpi_device_id sbs_device_ids[] = {
Alexey Starikovskiy91087df2007-09-26 19:43:28 +040077 {"ACPI0002", 0},
Thomas Renninger1ba90e32007-07-23 14:44:41 +020078 {"", 0},
79};
80MODULE_DEVICE_TABLE(acpi, sbs_device_ids);
81
Alexey Starikovskiy89862e32007-09-26 19:43:35 +040082struct acpi_battery {
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +040083 struct power_supply bat;
Alexey Starikovskiy89862e32007-09-26 19:43:35 +040084 struct acpi_sbs *sbs;
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +030085#ifdef CONFIG_ACPI_PROCFS_POWER
Alexey Starikovskiy89862e32007-09-26 19:43:35 +040086 struct proc_dir_entry *proc_entry;
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +040087#endif
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +040088 unsigned long update_time;
89 char name[8];
Alexey Starikovskiy89862e32007-09-26 19:43:35 +040090 char manufacturer_name[ACPI_SBS_BLOCK_MAX];
91 char device_name[ACPI_SBS_BLOCK_MAX];
92 char device_chemistry[ACPI_SBS_BLOCK_MAX];
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +040093 u16 alarm_capacity;
Alexey Starikovskiy89862e32007-09-26 19:43:35 +040094 u16 full_charge_capacity;
95 u16 design_capacity;
96 u16 design_voltage;
97 u16 serial_number;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +040098 u16 cycle_count;
99 u16 temp_now;
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400100 u16 voltage_now;
101 s16 current_now;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400102 s16 current_avg;
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400103 u16 capacity_now;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400104 u16 state_of_charge;
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400105 u16 state;
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400106 u16 mode;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400107 u16 spec;
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400108 u8 id;
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400109 u8 present:1;
Jeff Garzik037cbc62007-11-18 00:32:31 +0300110 u8 have_sysfs_alarm:1;
Rich Townsend3f86b832006-07-01 11:36:54 -0400111};
112
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400113#define to_acpi_battery(x) container_of(x, struct acpi_battery, bat);
114
Rich Townsend3f86b832006-07-01 11:36:54 -0400115struct acpi_sbs {
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400116 struct power_supply charger;
Rich Townsend3f86b832006-07-01 11:36:54 -0400117 struct acpi_device *device;
Alexey Starikovskiy91087df2007-09-26 19:43:28 +0400118 struct acpi_smb_hc *hc;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400119 struct mutex lock;
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300120#ifdef CONFIG_ACPI_PROCFS_POWER
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400121 struct proc_dir_entry *charger_entry;
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400122#endif
Rich Townsend3f86b832006-07-01 11:36:54 -0400123 struct acpi_battery battery[MAX_SBS_BAT];
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400124 u8 batteries_supported:4;
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400125 u8 manager_present:1;
126 u8 charger_present:1;
Rich Townsend3f86b832006-07-01 11:36:54 -0400127};
128
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400129#define to_acpi_sbs(x) container_of(x, struct acpi_sbs, charger)
130
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400131static inline int battery_scale(int log)
Vladimir Lebedev72206232007-03-19 17:45:50 +0300132{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400133 int scale = 1;
134 while (log--)
135 scale *= 10;
136 return scale;
Vladimir Lebedev72206232007-03-19 17:45:50 +0300137}
138
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400139static inline int acpi_battery_vscale(struct acpi_battery *battery)
Vladimir Lebedev72206232007-03-19 17:45:50 +0300140{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400141 return battery_scale((battery->spec & 0x0f00) >> 8);
Vladimir Lebedev72206232007-03-19 17:45:50 +0300142}
143
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400144static inline int acpi_battery_ipscale(struct acpi_battery *battery)
Vladimir Lebedev72206232007-03-19 17:45:50 +0300145{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400146 return battery_scale((battery->spec & 0xf000) >> 12);
147}
148
149static inline int acpi_battery_mode(struct acpi_battery *battery)
150{
151 return (battery->mode & 0x8000);
152}
153
154static inline int acpi_battery_scale(struct acpi_battery *battery)
155{
156 return (acpi_battery_mode(battery) ? 10 : 1) *
157 acpi_battery_ipscale(battery);
Vladimir Lebedev72206232007-03-19 17:45:50 +0300158}
159
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400160static int sbs_get_ac_property(struct power_supply *psy,
161 enum power_supply_property psp,
162 union power_supply_propval *val)
163{
164 struct acpi_sbs *sbs = to_acpi_sbs(psy);
165 switch (psp) {
166 case POWER_SUPPLY_PROP_ONLINE:
167 val->intval = sbs->charger_present;
168 break;
169 default:
170 return -EINVAL;
171 }
172 return 0;
173}
174
175static int acpi_battery_technology(struct acpi_battery *battery)
176{
177 if (!strcasecmp("NiCd", battery->device_chemistry))
178 return POWER_SUPPLY_TECHNOLOGY_NiCd;
179 if (!strcasecmp("NiMH", battery->device_chemistry))
180 return POWER_SUPPLY_TECHNOLOGY_NiMH;
181 if (!strcasecmp("LION", battery->device_chemistry))
182 return POWER_SUPPLY_TECHNOLOGY_LION;
183 if (!strcasecmp("LiP", battery->device_chemistry))
184 return POWER_SUPPLY_TECHNOLOGY_LIPO;
185 return POWER_SUPPLY_TECHNOLOGY_UNKNOWN;
186}
187
188static int acpi_sbs_battery_get_property(struct power_supply *psy,
189 enum power_supply_property psp,
190 union power_supply_propval *val)
191{
192 struct acpi_battery *battery = to_acpi_battery(psy);
193
194 if ((!battery->present) && psp != POWER_SUPPLY_PROP_PRESENT)
195 return -ENODEV;
196 switch (psp) {
197 case POWER_SUPPLY_PROP_STATUS:
198 if (battery->current_now < 0)
199 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
200 else if (battery->current_now > 0)
201 val->intval = POWER_SUPPLY_STATUS_CHARGING;
202 else
203 val->intval = POWER_SUPPLY_STATUS_FULL;
204 break;
205 case POWER_SUPPLY_PROP_PRESENT:
206 val->intval = battery->present;
207 break;
208 case POWER_SUPPLY_PROP_TECHNOLOGY:
209 val->intval = acpi_battery_technology(battery);
210 break;
211 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
212 val->intval = battery->design_voltage *
213 acpi_battery_vscale(battery) * 1000;
214 break;
215 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
216 val->intval = battery->voltage_now *
217 acpi_battery_vscale(battery) * 1000;
218 break;
219 case POWER_SUPPLY_PROP_CURRENT_NOW:
220 val->intval = abs(battery->current_now) *
221 acpi_battery_ipscale(battery) * 1000;
222 break;
223 case POWER_SUPPLY_PROP_CURRENT_AVG:
224 val->intval = abs(battery->current_avg) *
225 acpi_battery_ipscale(battery) * 1000;
226 break;
227 case POWER_SUPPLY_PROP_CAPACITY:
228 val->intval = battery->state_of_charge;
229 break;
230 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
231 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
232 val->intval = battery->design_capacity *
233 acpi_battery_scale(battery) * 1000;
234 break;
235 case POWER_SUPPLY_PROP_CHARGE_FULL:
236 case POWER_SUPPLY_PROP_ENERGY_FULL:
237 val->intval = battery->full_charge_capacity *
238 acpi_battery_scale(battery) * 1000;
239 break;
240 case POWER_SUPPLY_PROP_CHARGE_NOW:
241 case POWER_SUPPLY_PROP_ENERGY_NOW:
242 val->intval = battery->capacity_now *
243 acpi_battery_scale(battery) * 1000;
244 break;
245 case POWER_SUPPLY_PROP_TEMP:
246 val->intval = battery->temp_now - 2730; // dK -> dC
247 break;
248 case POWER_SUPPLY_PROP_MODEL_NAME:
249 val->strval = battery->device_name;
250 break;
251 case POWER_SUPPLY_PROP_MANUFACTURER:
252 val->strval = battery->manufacturer_name;
253 break;
254 default:
255 return -EINVAL;
256 }
257 return 0;
258}
259
260static enum power_supply_property sbs_ac_props[] = {
261 POWER_SUPPLY_PROP_ONLINE,
262};
263
264static enum power_supply_property sbs_charge_battery_props[] = {
265 POWER_SUPPLY_PROP_STATUS,
266 POWER_SUPPLY_PROP_PRESENT,
267 POWER_SUPPLY_PROP_TECHNOLOGY,
268 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
269 POWER_SUPPLY_PROP_VOLTAGE_NOW,
270 POWER_SUPPLY_PROP_CURRENT_NOW,
271 POWER_SUPPLY_PROP_CURRENT_AVG,
272 POWER_SUPPLY_PROP_CAPACITY,
273 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
274 POWER_SUPPLY_PROP_CHARGE_FULL,
275 POWER_SUPPLY_PROP_CHARGE_NOW,
276 POWER_SUPPLY_PROP_TEMP,
277 POWER_SUPPLY_PROP_MODEL_NAME,
278 POWER_SUPPLY_PROP_MANUFACTURER,
279};
280
281static enum power_supply_property sbs_energy_battery_props[] = {
282 POWER_SUPPLY_PROP_STATUS,
283 POWER_SUPPLY_PROP_PRESENT,
284 POWER_SUPPLY_PROP_TECHNOLOGY,
285 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
286 POWER_SUPPLY_PROP_VOLTAGE_NOW,
287 POWER_SUPPLY_PROP_CURRENT_NOW,
288 POWER_SUPPLY_PROP_CURRENT_AVG,
289 POWER_SUPPLY_PROP_CAPACITY,
290 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN,
291 POWER_SUPPLY_PROP_ENERGY_FULL,
292 POWER_SUPPLY_PROP_ENERGY_NOW,
293 POWER_SUPPLY_PROP_TEMP,
294 POWER_SUPPLY_PROP_MODEL_NAME,
295 POWER_SUPPLY_PROP_MANUFACTURER,
296};
297
Rich Townsend3f86b832006-07-01 11:36:54 -0400298/* --------------------------------------------------------------------------
299 Smart Battery System Management
300 -------------------------------------------------------------------------- */
301
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400302struct acpi_battery_reader {
303 u8 command; /* command for battery */
304 u8 mode; /* word or block? */
305 size_t offset; /* offset inside struct acpi_sbs_battery */
306};
Vladimir Lebedev72206232007-03-19 17:45:50 +0300307
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400308static struct acpi_battery_reader info_readers[] = {
309 {0x01, SMBUS_READ_WORD, offsetof(struct acpi_battery, alarm_capacity)},
310 {0x03, SMBUS_READ_WORD, offsetof(struct acpi_battery, mode)},
311 {0x10, SMBUS_READ_WORD, offsetof(struct acpi_battery, full_charge_capacity)},
312 {0x17, SMBUS_READ_WORD, offsetof(struct acpi_battery, cycle_count)},
313 {0x18, SMBUS_READ_WORD, offsetof(struct acpi_battery, design_capacity)},
314 {0x19, SMBUS_READ_WORD, offsetof(struct acpi_battery, design_voltage)},
315 {0x1a, SMBUS_READ_WORD, offsetof(struct acpi_battery, spec)},
316 {0x1c, SMBUS_READ_WORD, offsetof(struct acpi_battery, serial_number)},
317 {0x20, SMBUS_READ_BLOCK, offsetof(struct acpi_battery, manufacturer_name)},
318 {0x21, SMBUS_READ_BLOCK, offsetof(struct acpi_battery, device_name)},
319 {0x22, SMBUS_READ_BLOCK, offsetof(struct acpi_battery, device_chemistry)},
320};
Rich Townsend3f86b832006-07-01 11:36:54 -0400321
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400322static struct acpi_battery_reader state_readers[] = {
323 {0x08, SMBUS_READ_WORD, offsetof(struct acpi_battery, temp_now)},
324 {0x09, SMBUS_READ_WORD, offsetof(struct acpi_battery, voltage_now)},
325 {0x0a, SMBUS_READ_WORD, offsetof(struct acpi_battery, current_now)},
326 {0x0b, SMBUS_READ_WORD, offsetof(struct acpi_battery, current_avg)},
327 {0x0f, SMBUS_READ_WORD, offsetof(struct acpi_battery, capacity_now)},
328 {0x0e, SMBUS_READ_WORD, offsetof(struct acpi_battery, state_of_charge)},
329 {0x16, SMBUS_READ_WORD, offsetof(struct acpi_battery, state)},
330};
Rich Townsend3f86b832006-07-01 11:36:54 -0400331
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400332static int acpi_manager_get_info(struct acpi_sbs *sbs)
Rich Townsend3f86b832006-07-01 11:36:54 -0400333{
Rich Townsend3f86b832006-07-01 11:36:54 -0400334 int result = 0;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400335 u16 battery_system_info;
Rich Townsend3f86b832006-07-01 11:36:54 -0400336
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400337 result = acpi_smbus_read(sbs->hc, SMBUS_READ_WORD, ACPI_SBS_MANAGER,
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400338 0x04, (u8 *)&battery_system_info);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400339 if (!result)
340 sbs->batteries_supported = battery_system_info & 0x000f;
Len Brown635227e2006-07-01 16:48:23 -0400341 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400342}
343
344static int acpi_battery_get_info(struct acpi_battery *battery)
345{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400346 int i, result = 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400347
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400348 for (i = 0; i < ARRAY_SIZE(info_readers); ++i) {
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400349 result = acpi_smbus_read(battery->sbs->hc,
350 info_readers[i].mode,
351 ACPI_SBS_BATTERY,
352 info_readers[i].command,
353 (u8 *) battery +
354 info_readers[i].offset);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400355 if (result)
356 break;
Rich Townsend3f86b832006-07-01 11:36:54 -0400357 }
Len Brown635227e2006-07-01 16:48:23 -0400358 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400359}
360
Rich Townsend3f86b832006-07-01 11:36:54 -0400361static int acpi_battery_get_state(struct acpi_battery *battery)
362{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400363 int i, result = 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400364
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400365 if (battery->update_time &&
366 time_before(jiffies, battery->update_time +
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400367 msecs_to_jiffies(cache_time)))
368 return 0;
369 for (i = 0; i < ARRAY_SIZE(state_readers); ++i) {
370 result = acpi_smbus_read(battery->sbs->hc,
371 state_readers[i].mode,
372 ACPI_SBS_BATTERY,
373 state_readers[i].command,
374 (u8 *)battery +
375 state_readers[i].offset);
376 if (result)
377 goto end;
Rich Townsend3f86b832006-07-01 11:36:54 -0400378 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400379 end:
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400380 battery->update_time = jiffies;
Len Brown635227e2006-07-01 16:48:23 -0400381 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400382}
383
384static int acpi_battery_get_alarm(struct acpi_battery *battery)
385{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400386 return acpi_smbus_read(battery->sbs->hc, SMBUS_READ_WORD,
387 ACPI_SBS_BATTERY, 0x01,
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400388 (u8 *)&battery->alarm_capacity);
Rich Townsend3f86b832006-07-01 11:36:54 -0400389}
390
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400391static int acpi_battery_set_alarm(struct acpi_battery *battery)
Rich Townsend3f86b832006-07-01 11:36:54 -0400392{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400393 struct acpi_sbs *sbs = battery->sbs;
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400394 u16 value, sel = 1 << (battery->id + 12);
395
396 int ret;
397
Rich Townsend3f86b832006-07-01 11:36:54 -0400398
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400399 if (sbs->manager_present) {
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400400 ret = acpi_smbus_read(sbs->hc, SMBUS_READ_WORD, ACPI_SBS_MANAGER,
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400401 0x01, (u8 *)&value);
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400402 if (ret)
403 goto end;
404 if ((value & 0xf000) != sel) {
405 value &= 0x0fff;
406 value |= sel;
407 ret = acpi_smbus_write(sbs->hc, SMBUS_WRITE_WORD,
408 ACPI_SBS_MANAGER,
409 0x01, (u8 *)&value, 2);
410 if (ret)
411 goto end;
412 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400413 }
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400414 ret = acpi_smbus_write(sbs->hc, SMBUS_WRITE_WORD, ACPI_SBS_BATTERY,
415 0x01, (u8 *)&battery->alarm_capacity, 2);
416 end:
417 return ret;
Rich Townsend3f86b832006-07-01 11:36:54 -0400418}
419
420static int acpi_ac_get_present(struct acpi_sbs *sbs)
421{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400422 int result;
423 u16 status;
Rich Townsend3f86b832006-07-01 11:36:54 -0400424
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400425 result = acpi_smbus_read(sbs->hc, SMBUS_READ_WORD, ACPI_SBS_CHARGER,
426 0x13, (u8 *) & status);
427 if (!result)
428 sbs->charger_present = (status >> 15) & 0x1;
Len Brown635227e2006-07-01 16:48:23 -0400429 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400430}
431
Alexey Starikovskiy8bd95532007-09-26 19:44:00 +0400432static ssize_t acpi_battery_alarm_show(struct device *dev,
433 struct device_attribute *attr,
434 char *buf)
435{
436 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
437 acpi_battery_get_alarm(battery);
438 return sprintf(buf, "%d\n", battery->alarm_capacity *
439 acpi_battery_scale(battery) * 1000);
440}
441
442static ssize_t acpi_battery_alarm_store(struct device *dev,
443 struct device_attribute *attr,
444 const char *buf, size_t count)
445{
446 unsigned long x;
447 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
448 if (sscanf(buf, "%ld\n", &x) == 1)
449 battery->alarm_capacity = x /
450 (1000 * acpi_battery_scale(battery));
451 if (battery->present)
452 acpi_battery_set_alarm(battery);
453 return count;
454}
455
456static struct device_attribute alarm_attr = {
457 .attr = {.name = "alarm", .mode = 0644, .owner = THIS_MODULE},
458 .show = acpi_battery_alarm_show,
459 .store = acpi_battery_alarm_store,
460};
461
Rich Townsend3f86b832006-07-01 11:36:54 -0400462/* --------------------------------------------------------------------------
463 FS Interface (/proc/acpi)
464 -------------------------------------------------------------------------- */
465
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300466#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400467/* Generic Routines */
Rich Townsend3f86b832006-07-01 11:36:54 -0400468static int
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400469acpi_sbs_add_fs(struct proc_dir_entry **dir,
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400470 struct proc_dir_entry *parent_dir,
471 char *dir_name,
472 struct file_operations *info_fops,
473 struct file_operations *state_fops,
474 struct file_operations *alarm_fops, void *data)
Rich Townsend3f86b832006-07-01 11:36:54 -0400475{
476 struct proc_dir_entry *entry = NULL;
477
Rich Townsend3f86b832006-07-01 11:36:54 -0400478 if (!*dir) {
479 *dir = proc_mkdir(dir_name, parent_dir);
480 if (!*dir) {
Len Brown635227e2006-07-01 16:48:23 -0400481 return -ENODEV;
Rich Townsend3f86b832006-07-01 11:36:54 -0400482 }
483 (*dir)->owner = THIS_MODULE;
484 }
485
486 /* 'info' [R] */
487 if (info_fops) {
488 entry = create_proc_entry(ACPI_SBS_FILE_INFO, S_IRUGO, *dir);
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400489 if (entry) {
Rich Townsend3f86b832006-07-01 11:36:54 -0400490 entry->proc_fops = info_fops;
491 entry->data = data;
492 entry->owner = THIS_MODULE;
493 }
494 }
495
496 /* 'state' [R] */
497 if (state_fops) {
498 entry = create_proc_entry(ACPI_SBS_FILE_STATE, S_IRUGO, *dir);
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400499 if (entry) {
Rich Townsend3f86b832006-07-01 11:36:54 -0400500 entry->proc_fops = state_fops;
501 entry->data = data;
502 entry->owner = THIS_MODULE;
503 }
504 }
505
506 /* 'alarm' [R/W] */
507 if (alarm_fops) {
508 entry = create_proc_entry(ACPI_SBS_FILE_ALARM, S_IRUGO, *dir);
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400509 if (entry) {
Rich Townsend3f86b832006-07-01 11:36:54 -0400510 entry->proc_fops = alarm_fops;
511 entry->data = data;
512 entry->owner = THIS_MODULE;
513 }
514 }
Len Brown635227e2006-07-01 16:48:23 -0400515 return 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400516}
517
518static void
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400519acpi_sbs_remove_fs(struct proc_dir_entry **dir,
Rich Townsend3f86b832006-07-01 11:36:54 -0400520 struct proc_dir_entry *parent_dir)
521{
Rich Townsend3f86b832006-07-01 11:36:54 -0400522 if (*dir) {
523 remove_proc_entry(ACPI_SBS_FILE_INFO, *dir);
524 remove_proc_entry(ACPI_SBS_FILE_STATE, *dir);
525 remove_proc_entry(ACPI_SBS_FILE_ALARM, *dir);
526 remove_proc_entry((*dir)->name, parent_dir);
527 *dir = NULL;
528 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400529}
530
531/* Smart Battery Interface */
Rich Townsend3f86b832006-07-01 11:36:54 -0400532static struct proc_dir_entry *acpi_battery_dir = NULL;
533
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400534static inline char *acpi_battery_units(struct acpi_battery *battery)
535{
Alexey Starikovskiy5a21e4f2007-12-08 13:02:46 +0300536 return acpi_battery_mode(battery) ? " mW" : " mA";
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400537}
538
539
Rich Townsend3f86b832006-07-01 11:36:54 -0400540static int acpi_battery_read_info(struct seq_file *seq, void *offset)
541{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200542 struct acpi_battery *battery = seq->private;
Vladimir Lebedev72206232007-03-19 17:45:50 +0300543 struct acpi_sbs *sbs = battery->sbs;
Rich Townsend3f86b832006-07-01 11:36:54 -0400544 int result = 0;
545
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400546 mutex_lock(&sbs->lock);
Rich Townsend3f86b832006-07-01 11:36:54 -0400547
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400548 seq_printf(seq, "present: %s\n",
549 (battery->present) ? "yes" : "no");
550 if (!battery->present)
Vladimir Lebedev72206232007-03-19 17:45:50 +0300551 goto end;
Rich Townsend3f86b832006-07-01 11:36:54 -0400552
Alexey Starikovskiy5a21e4f2007-12-08 13:02:46 +0300553 seq_printf(seq, "design capacity: %i%sh\n",
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400554 battery->design_capacity * acpi_battery_scale(battery),
555 acpi_battery_units(battery));
Alexey Starikovskiy5a21e4f2007-12-08 13:02:46 +0300556 seq_printf(seq, "last full capacity: %i%sh\n",
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400557 battery->full_charge_capacity * acpi_battery_scale(battery),
558 acpi_battery_units(battery));
Rich Townsend3f86b832006-07-01 11:36:54 -0400559 seq_printf(seq, "battery technology: rechargeable\n");
Rich Townsend3f86b832006-07-01 11:36:54 -0400560 seq_printf(seq, "design voltage: %i mV\n",
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400561 battery->design_voltage * acpi_battery_vscale(battery));
Rich Townsend3f86b832006-07-01 11:36:54 -0400562 seq_printf(seq, "design capacity warning: unknown\n");
563 seq_printf(seq, "design capacity low: unknown\n");
564 seq_printf(seq, "capacity granularity 1: unknown\n");
565 seq_printf(seq, "capacity granularity 2: unknown\n");
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400566 seq_printf(seq, "model number: %s\n", battery->device_name);
Rich Townsend3f86b832006-07-01 11:36:54 -0400567 seq_printf(seq, "serial number: %i\n",
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400568 battery->serial_number);
Rich Townsend3f86b832006-07-01 11:36:54 -0400569 seq_printf(seq, "battery type: %s\n",
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400570 battery->device_chemistry);
Rich Townsend3f86b832006-07-01 11:36:54 -0400571 seq_printf(seq, "OEM info: %s\n",
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400572 battery->manufacturer_name);
Rich Townsend3f86b832006-07-01 11:36:54 -0400573 end:
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400574 mutex_unlock(&sbs->lock);
Len Brown635227e2006-07-01 16:48:23 -0400575 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400576}
577
578static int acpi_battery_info_open_fs(struct inode *inode, struct file *file)
579{
580 return single_open(file, acpi_battery_read_info, PDE(inode)->data);
581}
582
583static int acpi_battery_read_state(struct seq_file *seq, void *offset)
584{
Vladimir Lebedev72206232007-03-19 17:45:50 +0300585 struct acpi_battery *battery = seq->private;
586 struct acpi_sbs *sbs = battery->sbs;
Alexey Starikovskiy5a21e4f2007-12-08 13:02:46 +0300587 int rate;
Rich Townsend3f86b832006-07-01 11:36:54 -0400588
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400589 mutex_lock(&sbs->lock);
590 seq_printf(seq, "present: %s\n",
591 (battery->present) ? "yes" : "no");
592 if (!battery->present)
Vladimir Lebedev72206232007-03-19 17:45:50 +0300593 goto end;
Rich Townsend3f86b832006-07-01 11:36:54 -0400594
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400595 acpi_battery_get_state(battery);
596 seq_printf(seq, "capacity state: %s\n",
597 (battery->state & 0x0010) ? "critical" : "ok");
598 seq_printf(seq, "charging state: %s\n",
599 (battery->current_now < 0) ? "discharging" :
600 ((battery->current_now > 0) ? "charging" : "charged"));
Alexey Starikovskiy5a21e4f2007-12-08 13:02:46 +0300601 rate = abs(battery->current_now) * acpi_battery_ipscale(battery);
602 rate *= (acpi_battery_mode(battery))?(battery->voltage_now *
603 acpi_battery_vscale(battery)/1000):1;
604 seq_printf(seq, "present rate: %d%s\n", rate,
605 acpi_battery_units(battery));
606 seq_printf(seq, "remaining capacity: %i%sh\n",
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400607 battery->capacity_now * acpi_battery_scale(battery),
608 acpi_battery_units(battery));
Rich Townsend3f86b832006-07-01 11:36:54 -0400609 seq_printf(seq, "present voltage: %i mV\n",
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400610 battery->voltage_now * acpi_battery_vscale(battery));
Rich Townsend3f86b832006-07-01 11:36:54 -0400611
612 end:
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400613 mutex_unlock(&sbs->lock);
Alexey Starikovskiy5a21e4f2007-12-08 13:02:46 +0300614 return 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400615}
616
617static int acpi_battery_state_open_fs(struct inode *inode, struct file *file)
618{
619 return single_open(file, acpi_battery_read_state, PDE(inode)->data);
620}
621
622static int acpi_battery_read_alarm(struct seq_file *seq, void *offset)
623{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200624 struct acpi_battery *battery = seq->private;
Vladimir Lebedev72206232007-03-19 17:45:50 +0300625 struct acpi_sbs *sbs = battery->sbs;
Rich Townsend3f86b832006-07-01 11:36:54 -0400626 int result = 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400627
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400628 mutex_lock(&sbs->lock);
Rich Townsend3f86b832006-07-01 11:36:54 -0400629
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400630 if (!battery->present) {
Rich Townsend3f86b832006-07-01 11:36:54 -0400631 seq_printf(seq, "present: no\n");
632 goto end;
633 }
634
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400635 acpi_battery_get_alarm(battery);
Rich Townsend3f86b832006-07-01 11:36:54 -0400636 seq_printf(seq, "alarm: ");
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400637 if (battery->alarm_capacity)
Alexey Starikovskiy5a21e4f2007-12-08 13:02:46 +0300638 seq_printf(seq, "%i%sh\n",
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400639 battery->alarm_capacity *
640 acpi_battery_scale(battery),
641 acpi_battery_units(battery));
642 else
Rich Townsend3f86b832006-07-01 11:36:54 -0400643 seq_printf(seq, "disabled\n");
Rich Townsend3f86b832006-07-01 11:36:54 -0400644 end:
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400645 mutex_unlock(&sbs->lock);
Len Brown635227e2006-07-01 16:48:23 -0400646 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400647}
648
649static ssize_t
650acpi_battery_write_alarm(struct file *file, const char __user * buffer,
651 size_t count, loff_t * ppos)
652{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200653 struct seq_file *seq = file->private_data;
654 struct acpi_battery *battery = seq->private;
Vladimir Lebedev72206232007-03-19 17:45:50 +0300655 struct acpi_sbs *sbs = battery->sbs;
Rich Townsend3f86b832006-07-01 11:36:54 -0400656 char alarm_string[12] = { '\0' };
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400657 int result = 0;
658 mutex_lock(&sbs->lock);
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400659 if (!battery->present) {
Rich Townsend3f86b832006-07-01 11:36:54 -0400660 result = -ENODEV;
661 goto end;
662 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400663 if (count > sizeof(alarm_string) - 1) {
664 result = -EINVAL;
665 goto end;
666 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400667 if (copy_from_user(alarm_string, buffer, count)) {
668 result = -EFAULT;
669 goto end;
670 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400671 alarm_string[count] = 0;
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400672 battery->alarm_capacity = simple_strtoul(alarm_string, NULL, 0) /
673 acpi_battery_scale(battery);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400674 acpi_battery_set_alarm(battery);
Rich Townsend3f86b832006-07-01 11:36:54 -0400675 end:
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400676 mutex_unlock(&sbs->lock);
677 if (result)
Len Brown635227e2006-07-01 16:48:23 -0400678 return result;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400679 return count;
Rich Townsend3f86b832006-07-01 11:36:54 -0400680}
681
682static int acpi_battery_alarm_open_fs(struct inode *inode, struct file *file)
683{
684 return single_open(file, acpi_battery_read_alarm, PDE(inode)->data);
685}
686
687static struct file_operations acpi_battery_info_fops = {
688 .open = acpi_battery_info_open_fs,
689 .read = seq_read,
690 .llseek = seq_lseek,
691 .release = single_release,
692 .owner = THIS_MODULE,
693};
694
695static struct file_operations acpi_battery_state_fops = {
696 .open = acpi_battery_state_open_fs,
697 .read = seq_read,
698 .llseek = seq_lseek,
699 .release = single_release,
700 .owner = THIS_MODULE,
701};
702
703static struct file_operations acpi_battery_alarm_fops = {
704 .open = acpi_battery_alarm_open_fs,
705 .read = seq_read,
706 .write = acpi_battery_write_alarm,
707 .llseek = seq_lseek,
708 .release = single_release,
709 .owner = THIS_MODULE,
710};
711
712/* Legacy AC Adapter Interface */
713
714static struct proc_dir_entry *acpi_ac_dir = NULL;
715
716static int acpi_ac_read_state(struct seq_file *seq, void *offset)
717{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400718
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200719 struct acpi_sbs *sbs = seq->private;
Rich Townsend3f86b832006-07-01 11:36:54 -0400720
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400721 mutex_lock(&sbs->lock);
Rich Townsend3f86b832006-07-01 11:36:54 -0400722
723 seq_printf(seq, "state: %s\n",
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400724 sbs->charger_present ? "on-line" : "off-line");
Rich Townsend3f86b832006-07-01 11:36:54 -0400725
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400726 mutex_unlock(&sbs->lock);
Len Brown635227e2006-07-01 16:48:23 -0400727 return 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400728}
729
730static int acpi_ac_state_open_fs(struct inode *inode, struct file *file)
731{
732 return single_open(file, acpi_ac_read_state, PDE(inode)->data);
733}
734
735static struct file_operations acpi_ac_state_fops = {
736 .open = acpi_ac_state_open_fs,
737 .read = seq_read,
738 .llseek = seq_lseek,
739 .release = single_release,
740 .owner = THIS_MODULE,
741};
742
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400743#endif
744
Rich Townsend3f86b832006-07-01 11:36:54 -0400745/* --------------------------------------------------------------------------
746 Driver Interface
747 -------------------------------------------------------------------------- */
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400748static int acpi_battery_read(struct acpi_battery *battery)
749{
750 int result = 0, saved_present = battery->present;
751 u16 state;
752
753 if (battery->sbs->manager_present) {
754 result = acpi_smbus_read(battery->sbs->hc, SMBUS_READ_WORD,
755 ACPI_SBS_MANAGER, 0x01, (u8 *)&state);
756 if (!result)
757 battery->present = state & (1 << battery->id);
758 state &= 0x0fff;
759 state |= 1 << (battery->id + 12);
760 acpi_smbus_write(battery->sbs->hc, SMBUS_WRITE_WORD,
761 ACPI_SBS_MANAGER, 0x01, (u8 *)&state, 2);
762 } else if (battery->id == 0)
763 battery->present = 1;
764 if (result || !battery->present)
765 return result;
766
767 if (saved_present != battery->present) {
768 battery->update_time = 0;
769 result = acpi_battery_get_info(battery);
770 if (result)
771 return result;
772 }
773 result = acpi_battery_get_state(battery);
774 return result;
775}
776
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400777/* Smart Battery */
Rich Townsend3f86b832006-07-01 11:36:54 -0400778static int acpi_battery_add(struct acpi_sbs *sbs, int id)
779{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400780 struct acpi_battery *battery = &sbs->battery[id];
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400781 int result;
782
Rich Townsend3f86b832006-07-01 11:36:54 -0400783 battery->id = id;
784 battery->sbs = sbs;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400785 result = acpi_battery_read(battery);
786 if (result)
787 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400788
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400789 sprintf(battery->name, ACPI_BATTERY_DIR_NAME, id);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300790#ifdef CONFIG_ACPI_PROCFS_POWER
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400791 acpi_sbs_add_fs(&battery->proc_entry, acpi_battery_dir,
792 battery->name, &acpi_battery_info_fops,
793 &acpi_battery_state_fops, &acpi_battery_alarm_fops,
794 battery);
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400795#endif
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400796 battery->bat.name = battery->name;
797 battery->bat.type = POWER_SUPPLY_TYPE_BATTERY;
798 if (!acpi_battery_mode(battery)) {
799 battery->bat.properties = sbs_charge_battery_props;
800 battery->bat.num_properties =
801 ARRAY_SIZE(sbs_charge_battery_props);
802 } else {
803 battery->bat.properties = sbs_energy_battery_props;
804 battery->bat.num_properties =
805 ARRAY_SIZE(sbs_energy_battery_props);
806 }
807 battery->bat.get_property = acpi_sbs_battery_get_property;
808 result = power_supply_register(&sbs->device->dev, &battery->bat);
Jeff Garzik037cbc62007-11-18 00:32:31 +0300809 if (result)
810 goto end;
811 result = device_create_file(battery->bat.dev, &alarm_attr);
812 if (result)
813 goto end;
814 battery->have_sysfs_alarm = 1;
815 end:
Vladimir Lebedev72206232007-03-19 17:45:50 +0300816 printk(KERN_INFO PREFIX "%s [%s]: Battery Slot [%s] (battery %s)\n",
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400817 ACPI_SBS_DEVICE_NAME, acpi_device_bid(sbs->device),
818 battery->name, sbs->battery->present ? "present" : "absent");
Len Brown635227e2006-07-01 16:48:23 -0400819 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400820}
821
822static void acpi_battery_remove(struct acpi_sbs *sbs, int id)
823{
Jeff Garzik037cbc62007-11-18 00:32:31 +0300824 struct acpi_battery *battery = &sbs->battery[id];
825
826 if (battery->bat.dev) {
827 if (battery->have_sysfs_alarm)
828 device_remove_file(battery->bat.dev, &alarm_attr);
829 power_supply_unregister(&battery->bat);
Rich Townsend3f86b832006-07-01 11:36:54 -0400830 }
Len Brownc2e46d22007-11-20 01:20:00 -0500831#ifdef CONFIG_ACPI_PROCFS_POWER
Jeff Garzik037cbc62007-11-18 00:32:31 +0300832 if (battery->proc_entry)
833 acpi_sbs_remove_fs(&battery->proc_entry, acpi_battery_dir);
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400834#endif
Rich Townsend3f86b832006-07-01 11:36:54 -0400835}
836
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400837static int acpi_charger_add(struct acpi_sbs *sbs)
Rich Townsend3f86b832006-07-01 11:36:54 -0400838{
839 int result;
840
Rich Townsend3f86b832006-07-01 11:36:54 -0400841 result = acpi_ac_get_present(sbs);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400842 if (result)
Rich Townsend3f86b832006-07-01 11:36:54 -0400843 goto end;
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300844#ifdef CONFIG_ACPI_PROCFS_POWER
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400845 result = acpi_sbs_add_fs(&sbs->charger_entry, acpi_ac_dir,
846 ACPI_AC_DIR_NAME, NULL,
847 &acpi_ac_state_fops, NULL, sbs);
848 if (result)
Rich Townsend3f86b832006-07-01 11:36:54 -0400849 goto end;
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400850#endif
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400851 sbs->charger.name = "sbs-charger";
852 sbs->charger.type = POWER_SUPPLY_TYPE_MAINS;
853 sbs->charger.properties = sbs_ac_props;
854 sbs->charger.num_properties = ARRAY_SIZE(sbs_ac_props);
855 sbs->charger.get_property = sbs_get_ac_property;
856 power_supply_register(&sbs->device->dev, &sbs->charger);
Vladimir Lebedev72206232007-03-19 17:45:50 +0300857 printk(KERN_INFO PREFIX "%s [%s]: AC Adapter [%s] (%s)\n",
858 ACPI_SBS_DEVICE_NAME, acpi_device_bid(sbs->device),
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400859 ACPI_AC_DIR_NAME, sbs->charger_present ? "on-line" : "off-line");
Rich Townsend3f86b832006-07-01 11:36:54 -0400860 end:
Len Brown635227e2006-07-01 16:48:23 -0400861 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400862}
863
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400864static void acpi_charger_remove(struct acpi_sbs *sbs)
Rich Townsend3f86b832006-07-01 11:36:54 -0400865{
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400866 if (sbs->charger.dev)
867 power_supply_unregister(&sbs->charger);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300868#ifdef CONFIG_ACPI_PROCFS_POWER
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400869 if (sbs->charger_entry)
870 acpi_sbs_remove_fs(&sbs->charger_entry, acpi_ac_dir);
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400871#endif
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400872}
873
874void acpi_sbs_callback(void *context)
875{
876 int id;
877 struct acpi_sbs *sbs = context;
878 struct acpi_battery *bat;
879 u8 saved_charger_state = sbs->charger_present;
880 u8 saved_battery_state;
881 acpi_ac_get_present(sbs);
882 if (sbs->charger_present != saved_charger_state) {
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400883#ifdef CONFIG_ACPI_PROC_EVENT
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400884 acpi_bus_generate_proc_event4(ACPI_AC_CLASS, ACPI_AC_DIR_NAME,
885 ACPI_SBS_NOTIFY_STATUS,
886 sbs->charger_present);
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400887#endif
888 kobject_uevent(&sbs->charger.dev->kobj, KOBJ_CHANGE);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400889 }
890 if (sbs->manager_present) {
891 for (id = 0; id < MAX_SBS_BAT; ++id) {
892 if (!(sbs->batteries_supported & (1 << id)))
893 continue;
894 bat = &sbs->battery[id];
895 saved_battery_state = bat->present;
896 acpi_battery_read(bat);
897 if (saved_battery_state == bat->present)
898 continue;
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400899#ifdef CONFIG_ACPI_PROC_EVENT
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400900 acpi_bus_generate_proc_event4(ACPI_BATTERY_CLASS,
901 bat->name,
902 ACPI_SBS_NOTIFY_STATUS,
903 bat->present);
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400904#endif
905 kobject_uevent(&bat->bat.dev->kobj, KOBJ_CHANGE);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400906 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400907 }
908}
909
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400910static int acpi_sbs_remove(struct acpi_device *device, int type);
Rich Townsend3f86b832006-07-01 11:36:54 -0400911
912static int acpi_sbs_add(struct acpi_device *device)
913{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400914 struct acpi_sbs *sbs;
915 int result = 0;
Vladimir Lebedev6d157022007-03-19 17:45:50 +0300916 int id;
Rich Townsend3f86b832006-07-01 11:36:54 -0400917
Burman Yan36bcbec2006-12-19 12:56:11 -0800918 sbs = kzalloc(sizeof(struct acpi_sbs), GFP_KERNEL);
Rich Townsend3f86b832006-07-01 11:36:54 -0400919 if (!sbs) {
Vladimir Lebedev72206232007-03-19 17:45:50 +0300920 result = -ENOMEM;
921 goto end;
Rich Townsend3f86b832006-07-01 11:36:54 -0400922 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400923
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400924 mutex_init(&sbs->lock);
Vladimir Lebedev72206232007-03-19 17:45:50 +0300925
Alexey Starikovskiy91087df2007-09-26 19:43:28 +0400926 sbs->hc = acpi_driver_data(device->parent);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400927 sbs->device = device;
Rich Townsend3f86b832006-07-01 11:36:54 -0400928 strcpy(acpi_device_name(device), ACPI_SBS_DEVICE_NAME);
929 strcpy(acpi_device_class(device), ACPI_SBS_CLASS);
930 acpi_driver_data(device) = sbs;
931
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400932 result = acpi_charger_add(sbs);
Vladimir Lebedev72206232007-03-19 17:45:50 +0300933 if (result)
934 goto end;
Rich Townsend3f86b832006-07-01 11:36:54 -0400935
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400936 result = acpi_manager_get_info(sbs);
937 if (!result) {
938 sbs->manager_present = 1;
939 for (id = 0; id < MAX_SBS_BAT; ++id)
940 if ((sbs->batteries_supported & (1 << id)))
941 acpi_battery_add(sbs, id);
942 } else
943 acpi_battery_add(sbs, 0);
944 acpi_smbus_register_callback(sbs->hc, acpi_sbs_callback, sbs);
Rich Townsend3f86b832006-07-01 11:36:54 -0400945 end:
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400946 if (result)
947 acpi_sbs_remove(device, 0);
Len Brown635227e2006-07-01 16:48:23 -0400948 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400949}
950
Vladimir Lebedev72206232007-03-19 17:45:50 +0300951static int acpi_sbs_remove(struct acpi_device *device, int type)
Rich Townsend3f86b832006-07-01 11:36:54 -0400952{
Len Browncece9012006-12-16 01:04:27 -0500953 struct acpi_sbs *sbs;
Rich Townsend3f86b832006-07-01 11:36:54 -0400954 int id;
955
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400956 if (!device)
Lebedev, Vladimir P963497c2006-09-05 19:49:13 +0400957 return -EINVAL;
Vladimir Lebedev72206232007-03-19 17:45:50 +0300958 sbs = acpi_driver_data(device);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400959 if (!sbs)
Len Brown635227e2006-07-01 16:48:23 -0400960 return -EINVAL;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400961 mutex_lock(&sbs->lock);
962 acpi_smbus_unregister_callback(sbs->hc);
963 for (id = 0; id < MAX_SBS_BAT; ++id)
Rich Townsend3f86b832006-07-01 11:36:54 -0400964 acpi_battery_remove(sbs, id);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400965 acpi_charger_remove(sbs);
966 mutex_unlock(&sbs->lock);
967 mutex_destroy(&sbs->lock);
Rich Townsend3f86b832006-07-01 11:36:54 -0400968 kfree(sbs);
Len Brown635227e2006-07-01 16:48:23 -0400969 return 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400970}
971
Vladimir Lebedev72206232007-03-19 17:45:50 +0300972static void acpi_sbs_rmdirs(void)
973{
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300974#ifdef CONFIG_ACPI_PROCFS_POWER
Vladimir Lebedev72206232007-03-19 17:45:50 +0300975 if (acpi_ac_dir) {
976 acpi_unlock_ac_dir(acpi_ac_dir);
977 acpi_ac_dir = NULL;
978 }
979 if (acpi_battery_dir) {
980 acpi_unlock_battery_dir(acpi_battery_dir);
981 acpi_battery_dir = NULL;
982 }
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400983#endif
Vladimir Lebedev72206232007-03-19 17:45:50 +0300984}
985
986static int acpi_sbs_resume(struct acpi_device *device)
987{
988 struct acpi_sbs *sbs;
Vladimir Lebedev72206232007-03-19 17:45:50 +0300989 if (!device)
990 return -EINVAL;
Vladimir Lebedev72206232007-03-19 17:45:50 +0300991 sbs = device->driver_data;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400992 acpi_sbs_callback(sbs);
Vladimir Lebedev72206232007-03-19 17:45:50 +0300993 return 0;
994}
995
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400996static struct acpi_driver acpi_sbs_driver = {
997 .name = "sbs",
998 .class = ACPI_SBS_CLASS,
999 .ids = sbs_device_ids,
1000 .ops = {
1001 .add = acpi_sbs_add,
1002 .remove = acpi_sbs_remove,
1003 .resume = acpi_sbs_resume,
1004 },
1005};
1006
Rich Townsend3f86b832006-07-01 11:36:54 -04001007static int __init acpi_sbs_init(void)
1008{
1009 int result = 0;
1010
Len Brownb20d2ae2006-08-15 23:21:37 -04001011 if (acpi_disabled)
1012 return -ENODEV;
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +03001013#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -04001014 acpi_ac_dir = acpi_lock_ac_dir();
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +04001015 if (!acpi_ac_dir)
Len Brown635227e2006-07-01 16:48:23 -04001016 return -ENODEV;
Rich Townsend3f86b832006-07-01 11:36:54 -04001017 acpi_battery_dir = acpi_lock_battery_dir();
1018 if (!acpi_battery_dir) {
Vladimir Lebedev72206232007-03-19 17:45:50 +03001019 acpi_sbs_rmdirs();
Len Brown635227e2006-07-01 16:48:23 -04001020 return -ENODEV;
Rich Townsend3f86b832006-07-01 11:36:54 -04001021 }
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +04001022#endif
Rich Townsend3f86b832006-07-01 11:36:54 -04001023 result = acpi_bus_register_driver(&acpi_sbs_driver);
1024 if (result < 0) {
Vladimir Lebedev72206232007-03-19 17:45:50 +03001025 acpi_sbs_rmdirs();
Len Brown635227e2006-07-01 16:48:23 -04001026 return -ENODEV;
Rich Townsend3f86b832006-07-01 11:36:54 -04001027 }
Len Brown635227e2006-07-01 16:48:23 -04001028 return 0;
Rich Townsend3f86b832006-07-01 11:36:54 -04001029}
1030
1031static void __exit acpi_sbs_exit(void)
1032{
Rich Townsend3f86b832006-07-01 11:36:54 -04001033 acpi_bus_unregister_driver(&acpi_sbs_driver);
Vladimir Lebedev72206232007-03-19 17:45:50 +03001034 acpi_sbs_rmdirs();
Len Brown635227e2006-07-01 16:48:23 -04001035 return;
Rich Townsend3f86b832006-07-01 11:36:54 -04001036}
1037
1038module_init(acpi_sbs_init);
1039module_exit(acpi_sbs_exit);