blob: aae65e8f70f358910eedc693a49a6a8677ed05f7 [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 Starikovskiy66e4b722007-09-26 19:43:54 +040032#ifdef CONFIG_ACPI_PROCFS
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 +040057enum acpi_sbs_device_addr {
58 ACPI_SBS_CHARGER = 0x9,
59 ACPI_SBS_MANAGER = 0xa,
60 ACPI_SBS_BATTERY = 0xb,
61};
62
63#define ACPI_SBS_NOTIFY_STATUS 0x80
64#define ACPI_SBS_NOTIFY_INFO 0x81
Rich Townsend3f86b832006-07-01 11:36:54 -040065
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +040066MODULE_AUTHOR("Alexey Starikovskiy <astarikovskiy@suse.de>");
Rich Townsend3f86b832006-07-01 11:36:54 -040067MODULE_DESCRIPTION("Smart Battery System ACPI interface driver");
68MODULE_LICENSE("GPL");
69
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +040070static unsigned int cache_time = 1000;
71module_param(cache_time, uint, 0644);
72MODULE_PARM_DESC(cache_time, "cache time in milliseconds");
Vladimir Lebedev6d157022007-03-19 17:45:50 +030073
74extern struct proc_dir_entry *acpi_lock_ac_dir(void);
75extern struct proc_dir_entry *acpi_lock_battery_dir(void);
76extern void acpi_unlock_ac_dir(struct proc_dir_entry *acpi_ac_dir);
77extern void acpi_unlock_battery_dir(struct proc_dir_entry *acpi_battery_dir);
78
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +040079#define MAX_SBS_BAT 4
Vladimir Lebedev6d157022007-03-19 17:45:50 +030080#define ACPI_SBS_BLOCK_MAX 32
81
Thomas Renninger1ba90e32007-07-23 14:44:41 +020082static const struct acpi_device_id sbs_device_ids[] = {
Alexey Starikovskiy91087df2007-09-26 19:43:28 +040083 {"ACPI0002", 0},
Thomas Renninger1ba90e32007-07-23 14:44:41 +020084 {"", 0},
85};
86MODULE_DEVICE_TABLE(acpi, sbs_device_ids);
87
Alexey Starikovskiy89862e32007-09-26 19:43:35 +040088struct acpi_battery {
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +040089 struct power_supply bat;
Alexey Starikovskiy89862e32007-09-26 19:43:35 +040090 struct acpi_sbs *sbs;
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +040091#ifdef CONFIG_ACPI_PROCFS
Alexey Starikovskiy89862e32007-09-26 19:43:35 +040092 struct proc_dir_entry *proc_entry;
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +040093#endif
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +040094 unsigned long update_time;
95 char name[8];
Alexey Starikovskiy89862e32007-09-26 19:43:35 +040096 char manufacturer_name[ACPI_SBS_BLOCK_MAX];
97 char device_name[ACPI_SBS_BLOCK_MAX];
98 char device_chemistry[ACPI_SBS_BLOCK_MAX];
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +040099 u16 alarm_capacity;
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400100 u16 full_charge_capacity;
101 u16 design_capacity;
102 u16 design_voltage;
103 u16 serial_number;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400104 u16 cycle_count;
105 u16 temp_now;
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400106 u16 voltage_now;
107 s16 current_now;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400108 s16 current_avg;
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400109 u16 capacity_now;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400110 u16 state_of_charge;
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400111 u16 state;
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400112 u16 mode;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400113 u16 spec;
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400114 u8 id;
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400115 u8 present:1;
Rich Townsend3f86b832006-07-01 11:36:54 -0400116};
117
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400118#define to_acpi_battery(x) container_of(x, struct acpi_battery, bat);
119
Rich Townsend3f86b832006-07-01 11:36:54 -0400120struct acpi_sbs {
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400121 struct power_supply charger;
Rich Townsend3f86b832006-07-01 11:36:54 -0400122 struct acpi_device *device;
Alexey Starikovskiy91087df2007-09-26 19:43:28 +0400123 struct acpi_smb_hc *hc;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400124 struct mutex lock;
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400125#ifdef CONFIG_ACPI_PROCFS
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400126 struct proc_dir_entry *charger_entry;
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400127#endif
Rich Townsend3f86b832006-07-01 11:36:54 -0400128 struct acpi_battery battery[MAX_SBS_BAT];
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400129 u8 batteries_supported:4;
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400130 u8 manager_present:1;
131 u8 charger_present:1;
Rich Townsend3f86b832006-07-01 11:36:54 -0400132};
133
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400134#define to_acpi_sbs(x) container_of(x, struct acpi_sbs, charger)
135
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400136static inline int battery_scale(int log)
Vladimir Lebedev72206232007-03-19 17:45:50 +0300137{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400138 int scale = 1;
139 while (log--)
140 scale *= 10;
141 return scale;
Vladimir Lebedev72206232007-03-19 17:45:50 +0300142}
143
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400144static inline int acpi_battery_vscale(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 & 0x0f00) >> 8);
Vladimir Lebedev72206232007-03-19 17:45:50 +0300147}
148
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400149static inline int acpi_battery_ipscale(struct acpi_battery *battery)
Vladimir Lebedev72206232007-03-19 17:45:50 +0300150{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400151 return battery_scale((battery->spec & 0xf000) >> 12);
152}
153
154static inline int acpi_battery_mode(struct acpi_battery *battery)
155{
156 return (battery->mode & 0x8000);
157}
158
159static inline int acpi_battery_scale(struct acpi_battery *battery)
160{
161 return (acpi_battery_mode(battery) ? 10 : 1) *
162 acpi_battery_ipscale(battery);
Vladimir Lebedev72206232007-03-19 17:45:50 +0300163}
164
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400165static int sbs_get_ac_property(struct power_supply *psy,
166 enum power_supply_property psp,
167 union power_supply_propval *val)
168{
169 struct acpi_sbs *sbs = to_acpi_sbs(psy);
170 switch (psp) {
171 case POWER_SUPPLY_PROP_ONLINE:
172 val->intval = sbs->charger_present;
173 break;
174 default:
175 return -EINVAL;
176 }
177 return 0;
178}
179
180static int acpi_battery_technology(struct acpi_battery *battery)
181{
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;
191}
192
193static int acpi_sbs_battery_get_property(struct power_supply *psy,
194 enum power_supply_property psp,
195 union power_supply_propval *val)
196{
197 struct acpi_battery *battery = to_acpi_battery(psy);
198
199 if ((!battery->present) && psp != POWER_SUPPLY_PROP_PRESENT)
200 return -ENODEV;
201 switch (psp) {
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;
207 else
208 val->intval = POWER_SUPPLY_STATUS_FULL;
209 break;
210 case POWER_SUPPLY_PROP_PRESENT:
211 val->intval = battery->present;
212 break;
213 case POWER_SUPPLY_PROP_TECHNOLOGY:
214 val->intval = acpi_battery_technology(battery);
215 break;
216 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
217 val->intval = battery->design_voltage *
218 acpi_battery_vscale(battery) * 1000;
219 break;
220 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
221 val->intval = battery->voltage_now *
222 acpi_battery_vscale(battery) * 1000;
223 break;
224 case POWER_SUPPLY_PROP_CURRENT_NOW:
225 val->intval = abs(battery->current_now) *
226 acpi_battery_ipscale(battery) * 1000;
227 break;
228 case POWER_SUPPLY_PROP_CURRENT_AVG:
229 val->intval = abs(battery->current_avg) *
230 acpi_battery_ipscale(battery) * 1000;
231 break;
232 case POWER_SUPPLY_PROP_CAPACITY:
233 val->intval = battery->state_of_charge;
234 break;
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;
239 break;
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;
244 break;
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;
249 break;
250 case POWER_SUPPLY_PROP_TEMP:
251 val->intval = battery->temp_now - 2730; // dK -> dC
252 break;
253 case POWER_SUPPLY_PROP_MODEL_NAME:
254 val->strval = battery->device_name;
255 break;
256 case POWER_SUPPLY_PROP_MANUFACTURER:
257 val->strval = battery->manufacturer_name;
258 break;
259 default:
260 return -EINVAL;
261 }
262 return 0;
263}
264
265static enum power_supply_property sbs_ac_props[] = {
266 POWER_SUPPLY_PROP_ONLINE,
267};
268
269static 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,
284};
285
286static 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,
301};
302
Rich Townsend3f86b832006-07-01 11:36:54 -0400303/* --------------------------------------------------------------------------
304 Smart Battery System Management
305 -------------------------------------------------------------------------- */
306
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400307struct 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 */
311};
Vladimir Lebedev72206232007-03-19 17:45:50 +0300312
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400313static 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)},
325};
Rich Townsend3f86b832006-07-01 11:36:54 -0400326
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400327static 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)},
335};
Rich Townsend3f86b832006-07-01 11:36:54 -0400336
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400337static int acpi_manager_get_info(struct acpi_sbs *sbs)
Rich Townsend3f86b832006-07-01 11:36:54 -0400338{
Rich Townsend3f86b832006-07-01 11:36:54 -0400339 int result = 0;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400340 u16 battery_system_info;
Rich Townsend3f86b832006-07-01 11:36:54 -0400341
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400342 result = acpi_smbus_read(sbs->hc, SMBUS_READ_WORD, ACPI_SBS_MANAGER,
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400343 0x04, (u8 *)&battery_system_info);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400344 if (!result)
345 sbs->batteries_supported = battery_system_info & 0x000f;
Len Brown635227e2006-07-01 16:48:23 -0400346 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400347}
348
349static int acpi_battery_get_info(struct acpi_battery *battery)
350{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400351 int i, result = 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400352
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400353 for (i = 0; i < ARRAY_SIZE(info_readers); ++i) {
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400354 result = acpi_smbus_read(battery->sbs->hc,
355 info_readers[i].mode,
356 ACPI_SBS_BATTERY,
357 info_readers[i].command,
358 (u8 *) battery +
359 info_readers[i].offset);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400360 if (result)
361 break;
Rich Townsend3f86b832006-07-01 11:36:54 -0400362 }
Len Brown635227e2006-07-01 16:48:23 -0400363 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400364}
365
Rich Townsend3f86b832006-07-01 11:36:54 -0400366static int acpi_battery_get_state(struct acpi_battery *battery)
367{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400368 int i, result = 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400369
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400370 if (battery->update_time &&
371 time_before(jiffies, battery->update_time +
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400372 msecs_to_jiffies(cache_time)))
373 return 0;
374 for (i = 0; i < ARRAY_SIZE(state_readers); ++i) {
375 result = acpi_smbus_read(battery->sbs->hc,
376 state_readers[i].mode,
377 ACPI_SBS_BATTERY,
378 state_readers[i].command,
379 (u8 *)battery +
380 state_readers[i].offset);
381 if (result)
382 goto end;
Rich Townsend3f86b832006-07-01 11:36:54 -0400383 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400384 end:
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400385 battery->update_time = jiffies;
Len Brown635227e2006-07-01 16:48:23 -0400386 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400387}
388
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400389#ifdef CONFIG_ACPI_PROCFS
390
Rich Townsend3f86b832006-07-01 11:36:54 -0400391static int acpi_battery_get_alarm(struct acpi_battery *battery)
392{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400393 return acpi_smbus_read(battery->sbs->hc, SMBUS_READ_WORD,
394 ACPI_SBS_BATTERY, 0x01,
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400395 (u8 *)&battery->alarm_capacity);
Rich Townsend3f86b832006-07-01 11:36:54 -0400396}
397
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400398static int acpi_battery_set_alarm(struct acpi_battery *battery)
Rich Townsend3f86b832006-07-01 11:36:54 -0400399{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400400 struct acpi_sbs *sbs = battery->sbs;
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400401 u16 value, sel = 1 << (battery->id + 12);
402
403 int ret;
404
Rich Townsend3f86b832006-07-01 11:36:54 -0400405
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400406 if (sbs->manager_present) {
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400407 ret = acpi_smbus_read(sbs->hc, SMBUS_READ_WORD, ACPI_SBS_MANAGER,
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400408 0x01, (u8 *)&value);
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400409 if (ret)
410 goto end;
411 if ((value & 0xf000) != sel) {
412 value &= 0x0fff;
413 value |= sel;
414 ret = acpi_smbus_write(sbs->hc, SMBUS_WRITE_WORD,
415 ACPI_SBS_MANAGER,
416 0x01, (u8 *)&value, 2);
417 if (ret)
418 goto end;
419 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400420 }
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400421 ret = acpi_smbus_write(sbs->hc, SMBUS_WRITE_WORD, ACPI_SBS_BATTERY,
422 0x01, (u8 *)&battery->alarm_capacity, 2);
423 end:
424 return ret;
Rich Townsend3f86b832006-07-01 11:36:54 -0400425}
426
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400427#endif
428
Rich Townsend3f86b832006-07-01 11:36:54 -0400429static int acpi_ac_get_present(struct acpi_sbs *sbs)
430{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400431 int result;
432 u16 status;
Rich Townsend3f86b832006-07-01 11:36:54 -0400433
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400434 result = acpi_smbus_read(sbs->hc, SMBUS_READ_WORD, ACPI_SBS_CHARGER,
435 0x13, (u8 *) & status);
436 if (!result)
437 sbs->charger_present = (status >> 15) & 0x1;
Len Brown635227e2006-07-01 16:48:23 -0400438 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400439}
440
441/* --------------------------------------------------------------------------
442 FS Interface (/proc/acpi)
443 -------------------------------------------------------------------------- */
444
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400445#ifdef CONFIG_ACPI_PROCFS
Rich Townsend3f86b832006-07-01 11:36:54 -0400446/* Generic Routines */
Rich Townsend3f86b832006-07-01 11:36:54 -0400447static int
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400448acpi_sbs_add_fs(struct proc_dir_entry **dir,
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400449 struct proc_dir_entry *parent_dir,
450 char *dir_name,
451 struct file_operations *info_fops,
452 struct file_operations *state_fops,
453 struct file_operations *alarm_fops, void *data)
Rich Townsend3f86b832006-07-01 11:36:54 -0400454{
455 struct proc_dir_entry *entry = NULL;
456
Rich Townsend3f86b832006-07-01 11:36:54 -0400457 if (!*dir) {
458 *dir = proc_mkdir(dir_name, parent_dir);
459 if (!*dir) {
Len Brown635227e2006-07-01 16:48:23 -0400460 return -ENODEV;
Rich Townsend3f86b832006-07-01 11:36:54 -0400461 }
462 (*dir)->owner = THIS_MODULE;
463 }
464
465 /* 'info' [R] */
466 if (info_fops) {
467 entry = create_proc_entry(ACPI_SBS_FILE_INFO, S_IRUGO, *dir);
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400468 if (entry) {
Rich Townsend3f86b832006-07-01 11:36:54 -0400469 entry->proc_fops = info_fops;
470 entry->data = data;
471 entry->owner = THIS_MODULE;
472 }
473 }
474
475 /* 'state' [R] */
476 if (state_fops) {
477 entry = create_proc_entry(ACPI_SBS_FILE_STATE, S_IRUGO, *dir);
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400478 if (entry) {
Rich Townsend3f86b832006-07-01 11:36:54 -0400479 entry->proc_fops = state_fops;
480 entry->data = data;
481 entry->owner = THIS_MODULE;
482 }
483 }
484
485 /* 'alarm' [R/W] */
486 if (alarm_fops) {
487 entry = create_proc_entry(ACPI_SBS_FILE_ALARM, S_IRUGO, *dir);
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400488 if (entry) {
Rich Townsend3f86b832006-07-01 11:36:54 -0400489 entry->proc_fops = alarm_fops;
490 entry->data = data;
491 entry->owner = THIS_MODULE;
492 }
493 }
Len Brown635227e2006-07-01 16:48:23 -0400494 return 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400495}
496
497static void
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400498acpi_sbs_remove_fs(struct proc_dir_entry **dir,
Rich Townsend3f86b832006-07-01 11:36:54 -0400499 struct proc_dir_entry *parent_dir)
500{
Rich Townsend3f86b832006-07-01 11:36:54 -0400501 if (*dir) {
502 remove_proc_entry(ACPI_SBS_FILE_INFO, *dir);
503 remove_proc_entry(ACPI_SBS_FILE_STATE, *dir);
504 remove_proc_entry(ACPI_SBS_FILE_ALARM, *dir);
505 remove_proc_entry((*dir)->name, parent_dir);
506 *dir = NULL;
507 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400508}
509
510/* Smart Battery Interface */
Rich Townsend3f86b832006-07-01 11:36:54 -0400511static struct proc_dir_entry *acpi_battery_dir = NULL;
512
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400513static inline char *acpi_battery_units(struct acpi_battery *battery)
514{
515 return acpi_battery_mode(battery) ? " mWh" : " mAh";
516}
517
518
Rich Townsend3f86b832006-07-01 11:36:54 -0400519static int acpi_battery_read_info(struct seq_file *seq, void *offset)
520{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200521 struct acpi_battery *battery = seq->private;
Vladimir Lebedev72206232007-03-19 17:45:50 +0300522 struct acpi_sbs *sbs = battery->sbs;
Rich Townsend3f86b832006-07-01 11:36:54 -0400523 int result = 0;
524
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400525 mutex_lock(&sbs->lock);
Rich Townsend3f86b832006-07-01 11:36:54 -0400526
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400527 seq_printf(seq, "present: %s\n",
528 (battery->present) ? "yes" : "no");
529 if (!battery->present)
Vladimir Lebedev72206232007-03-19 17:45:50 +0300530 goto end;
Rich Townsend3f86b832006-07-01 11:36:54 -0400531
Vladimir Lebedev72206232007-03-19 17:45:50 +0300532 seq_printf(seq, "design capacity: %i%s\n",
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400533 battery->design_capacity * acpi_battery_scale(battery),
534 acpi_battery_units(battery));
Vladimir Lebedev72206232007-03-19 17:45:50 +0300535 seq_printf(seq, "last full capacity: %i%s\n",
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400536 battery->full_charge_capacity * acpi_battery_scale(battery),
537 acpi_battery_units(battery));
Rich Townsend3f86b832006-07-01 11:36:54 -0400538 seq_printf(seq, "battery technology: rechargeable\n");
Rich Townsend3f86b832006-07-01 11:36:54 -0400539 seq_printf(seq, "design voltage: %i mV\n",
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400540 battery->design_voltage * acpi_battery_vscale(battery));
Rich Townsend3f86b832006-07-01 11:36:54 -0400541 seq_printf(seq, "design capacity warning: unknown\n");
542 seq_printf(seq, "design capacity low: unknown\n");
543 seq_printf(seq, "capacity granularity 1: unknown\n");
544 seq_printf(seq, "capacity granularity 2: unknown\n");
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400545 seq_printf(seq, "model number: %s\n", battery->device_name);
Rich Townsend3f86b832006-07-01 11:36:54 -0400546 seq_printf(seq, "serial number: %i\n",
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400547 battery->serial_number);
Rich Townsend3f86b832006-07-01 11:36:54 -0400548 seq_printf(seq, "battery type: %s\n",
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400549 battery->device_chemistry);
Rich Townsend3f86b832006-07-01 11:36:54 -0400550 seq_printf(seq, "OEM info: %s\n",
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400551 battery->manufacturer_name);
Rich Townsend3f86b832006-07-01 11:36:54 -0400552 end:
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400553 mutex_unlock(&sbs->lock);
Len Brown635227e2006-07-01 16:48:23 -0400554 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400555}
556
557static int acpi_battery_info_open_fs(struct inode *inode, struct file *file)
558{
559 return single_open(file, acpi_battery_read_info, PDE(inode)->data);
560}
561
562static int acpi_battery_read_state(struct seq_file *seq, void *offset)
563{
Vladimir Lebedev72206232007-03-19 17:45:50 +0300564 struct acpi_battery *battery = seq->private;
565 struct acpi_sbs *sbs = battery->sbs;
Rich Townsend3f86b832006-07-01 11:36:54 -0400566 int result = 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400567
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400568 mutex_lock(&sbs->lock);
569 seq_printf(seq, "present: %s\n",
570 (battery->present) ? "yes" : "no");
571 if (!battery->present)
Vladimir Lebedev72206232007-03-19 17:45:50 +0300572 goto end;
Rich Townsend3f86b832006-07-01 11:36:54 -0400573
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400574 acpi_battery_get_state(battery);
575 seq_printf(seq, "capacity state: %s\n",
576 (battery->state & 0x0010) ? "critical" : "ok");
577 seq_printf(seq, "charging state: %s\n",
578 (battery->current_now < 0) ? "discharging" :
579 ((battery->current_now > 0) ? "charging" : "charged"));
580 seq_printf(seq, "present rate: %d mA\n",
581 abs(battery->current_now) * acpi_battery_ipscale(battery));
Vladimir Lebedev72206232007-03-19 17:45:50 +0300582 seq_printf(seq, "remaining capacity: %i%s\n",
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400583 battery->capacity_now * acpi_battery_scale(battery),
584 acpi_battery_units(battery));
Rich Townsend3f86b832006-07-01 11:36:54 -0400585 seq_printf(seq, "present voltage: %i mV\n",
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400586 battery->voltage_now * acpi_battery_vscale(battery));
Rich Townsend3f86b832006-07-01 11:36:54 -0400587
588 end:
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400589 mutex_unlock(&sbs->lock);
Len Brown635227e2006-07-01 16:48:23 -0400590 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400591}
592
593static int acpi_battery_state_open_fs(struct inode *inode, struct file *file)
594{
595 return single_open(file, acpi_battery_read_state, PDE(inode)->data);
596}
597
598static int acpi_battery_read_alarm(struct seq_file *seq, void *offset)
599{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200600 struct acpi_battery *battery = seq->private;
Vladimir Lebedev72206232007-03-19 17:45:50 +0300601 struct acpi_sbs *sbs = battery->sbs;
Rich Townsend3f86b832006-07-01 11:36:54 -0400602 int result = 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400603
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400604 mutex_lock(&sbs->lock);
Rich Townsend3f86b832006-07-01 11:36:54 -0400605
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400606 if (!battery->present) {
Rich Townsend3f86b832006-07-01 11:36:54 -0400607 seq_printf(seq, "present: no\n");
608 goto end;
609 }
610
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400611 acpi_battery_get_alarm(battery);
Rich Townsend3f86b832006-07-01 11:36:54 -0400612 seq_printf(seq, "alarm: ");
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400613 if (battery->alarm_capacity)
Vladimir Lebedev72206232007-03-19 17:45:50 +0300614 seq_printf(seq, "%i%s\n",
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400615 battery->alarm_capacity *
616 acpi_battery_scale(battery),
617 acpi_battery_units(battery));
618 else
Rich Townsend3f86b832006-07-01 11:36:54 -0400619 seq_printf(seq, "disabled\n");
Rich Townsend3f86b832006-07-01 11:36:54 -0400620 end:
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400621 mutex_unlock(&sbs->lock);
Len Brown635227e2006-07-01 16:48:23 -0400622 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400623}
624
625static ssize_t
626acpi_battery_write_alarm(struct file *file, const char __user * buffer,
627 size_t count, loff_t * ppos)
628{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200629 struct seq_file *seq = file->private_data;
630 struct acpi_battery *battery = seq->private;
Vladimir Lebedev72206232007-03-19 17:45:50 +0300631 struct acpi_sbs *sbs = battery->sbs;
Rich Townsend3f86b832006-07-01 11:36:54 -0400632 char alarm_string[12] = { '\0' };
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400633 int result = 0;
634 mutex_lock(&sbs->lock);
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400635 if (!battery->present) {
Rich Townsend3f86b832006-07-01 11:36:54 -0400636 result = -ENODEV;
637 goto end;
638 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400639 if (count > sizeof(alarm_string) - 1) {
640 result = -EINVAL;
641 goto end;
642 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400643 if (copy_from_user(alarm_string, buffer, count)) {
644 result = -EFAULT;
645 goto end;
646 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400647 alarm_string[count] = 0;
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400648 battery->alarm_capacity = simple_strtoul(alarm_string, NULL, 0) /
649 acpi_battery_scale(battery);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400650 acpi_battery_set_alarm(battery);
Rich Townsend3f86b832006-07-01 11:36:54 -0400651 end:
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400652 mutex_unlock(&sbs->lock);
653 if (result)
Len Brown635227e2006-07-01 16:48:23 -0400654 return result;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400655 return count;
Rich Townsend3f86b832006-07-01 11:36:54 -0400656}
657
658static int acpi_battery_alarm_open_fs(struct inode *inode, struct file *file)
659{
660 return single_open(file, acpi_battery_read_alarm, PDE(inode)->data);
661}
662
663static struct file_operations acpi_battery_info_fops = {
664 .open = acpi_battery_info_open_fs,
665 .read = seq_read,
666 .llseek = seq_lseek,
667 .release = single_release,
668 .owner = THIS_MODULE,
669};
670
671static struct file_operations acpi_battery_state_fops = {
672 .open = acpi_battery_state_open_fs,
673 .read = seq_read,
674 .llseek = seq_lseek,
675 .release = single_release,
676 .owner = THIS_MODULE,
677};
678
679static struct file_operations acpi_battery_alarm_fops = {
680 .open = acpi_battery_alarm_open_fs,
681 .read = seq_read,
682 .write = acpi_battery_write_alarm,
683 .llseek = seq_lseek,
684 .release = single_release,
685 .owner = THIS_MODULE,
686};
687
688/* Legacy AC Adapter Interface */
689
690static struct proc_dir_entry *acpi_ac_dir = NULL;
691
692static int acpi_ac_read_state(struct seq_file *seq, void *offset)
693{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400694
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200695 struct acpi_sbs *sbs = seq->private;
Rich Townsend3f86b832006-07-01 11:36:54 -0400696
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400697 mutex_lock(&sbs->lock);
Rich Townsend3f86b832006-07-01 11:36:54 -0400698
699 seq_printf(seq, "state: %s\n",
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400700 sbs->charger_present ? "on-line" : "off-line");
Rich Townsend3f86b832006-07-01 11:36:54 -0400701
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400702 mutex_unlock(&sbs->lock);
Len Brown635227e2006-07-01 16:48:23 -0400703 return 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400704}
705
706static int acpi_ac_state_open_fs(struct inode *inode, struct file *file)
707{
708 return single_open(file, acpi_ac_read_state, PDE(inode)->data);
709}
710
711static struct file_operations acpi_ac_state_fops = {
712 .open = acpi_ac_state_open_fs,
713 .read = seq_read,
714 .llseek = seq_lseek,
715 .release = single_release,
716 .owner = THIS_MODULE,
717};
718
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400719#endif
720
Rich Townsend3f86b832006-07-01 11:36:54 -0400721/* --------------------------------------------------------------------------
722 Driver Interface
723 -------------------------------------------------------------------------- */
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400724static int acpi_battery_read(struct acpi_battery *battery)
725{
726 int result = 0, saved_present = battery->present;
727 u16 state;
728
729 if (battery->sbs->manager_present) {
730 result = acpi_smbus_read(battery->sbs->hc, SMBUS_READ_WORD,
731 ACPI_SBS_MANAGER, 0x01, (u8 *)&state);
732 if (!result)
733 battery->present = state & (1 << battery->id);
734 state &= 0x0fff;
735 state |= 1 << (battery->id + 12);
736 acpi_smbus_write(battery->sbs->hc, SMBUS_WRITE_WORD,
737 ACPI_SBS_MANAGER, 0x01, (u8 *)&state, 2);
738 } else if (battery->id == 0)
739 battery->present = 1;
740 if (result || !battery->present)
741 return result;
742
743 if (saved_present != battery->present) {
744 battery->update_time = 0;
745 result = acpi_battery_get_info(battery);
746 if (result)
747 return result;
748 }
749 result = acpi_battery_get_state(battery);
750 return result;
751}
752
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400753/* Smart Battery */
Rich Townsend3f86b832006-07-01 11:36:54 -0400754static int acpi_battery_add(struct acpi_sbs *sbs, int id)
755{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400756 struct acpi_battery *battery = &sbs->battery[id];
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400757 int result;
758
Rich Townsend3f86b832006-07-01 11:36:54 -0400759 battery->id = id;
760 battery->sbs = sbs;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400761 result = acpi_battery_read(battery);
762 if (result)
763 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400764
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400765 sprintf(battery->name, ACPI_BATTERY_DIR_NAME, id);
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400766#ifdef CONFIG_ACPI_PROCFS
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400767 acpi_sbs_add_fs(&battery->proc_entry, acpi_battery_dir,
768 battery->name, &acpi_battery_info_fops,
769 &acpi_battery_state_fops, &acpi_battery_alarm_fops,
770 battery);
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400771#endif
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400772 battery->bat.name = battery->name;
773 battery->bat.type = POWER_SUPPLY_TYPE_BATTERY;
774 if (!acpi_battery_mode(battery)) {
775 battery->bat.properties = sbs_charge_battery_props;
776 battery->bat.num_properties =
777 ARRAY_SIZE(sbs_charge_battery_props);
778 } else {
779 battery->bat.properties = sbs_energy_battery_props;
780 battery->bat.num_properties =
781 ARRAY_SIZE(sbs_energy_battery_props);
782 }
783 battery->bat.get_property = acpi_sbs_battery_get_property;
784 result = power_supply_register(&sbs->device->dev, &battery->bat);
Vladimir Lebedev72206232007-03-19 17:45:50 +0300785 printk(KERN_INFO PREFIX "%s [%s]: Battery Slot [%s] (battery %s)\n",
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400786 ACPI_SBS_DEVICE_NAME, acpi_device_bid(sbs->device),
787 battery->name, sbs->battery->present ? "present" : "absent");
Len Brown635227e2006-07-01 16:48:23 -0400788 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400789}
790
791static void acpi_battery_remove(struct acpi_sbs *sbs, int id)
792{
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400793 if (sbs->battery[id].bat.dev)
794 power_supply_unregister(&sbs->battery[id].bat);
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400795#ifdef CONFIG_ACPI_PROCFS
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400796 if (sbs->battery[id].proc_entry) {
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400797 acpi_sbs_remove_fs(&(sbs->battery[id].proc_entry),
798 acpi_battery_dir);
Rich Townsend3f86b832006-07-01 11:36:54 -0400799 }
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400800#endif
Rich Townsend3f86b832006-07-01 11:36:54 -0400801}
802
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400803static int acpi_charger_add(struct acpi_sbs *sbs)
Rich Townsend3f86b832006-07-01 11:36:54 -0400804{
805 int result;
806
Rich Townsend3f86b832006-07-01 11:36:54 -0400807 result = acpi_ac_get_present(sbs);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400808 if (result)
Rich Townsend3f86b832006-07-01 11:36:54 -0400809 goto end;
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400810#ifdef CONFIG_ACPI_PROCFS
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400811 result = acpi_sbs_add_fs(&sbs->charger_entry, acpi_ac_dir,
812 ACPI_AC_DIR_NAME, NULL,
813 &acpi_ac_state_fops, NULL, sbs);
814 if (result)
Rich Townsend3f86b832006-07-01 11:36:54 -0400815 goto end;
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400816#endif
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400817 sbs->charger.name = "sbs-charger";
818 sbs->charger.type = POWER_SUPPLY_TYPE_MAINS;
819 sbs->charger.properties = sbs_ac_props;
820 sbs->charger.num_properties = ARRAY_SIZE(sbs_ac_props);
821 sbs->charger.get_property = sbs_get_ac_property;
822 power_supply_register(&sbs->device->dev, &sbs->charger);
Vladimir Lebedev72206232007-03-19 17:45:50 +0300823 printk(KERN_INFO PREFIX "%s [%s]: AC Adapter [%s] (%s)\n",
824 ACPI_SBS_DEVICE_NAME, acpi_device_bid(sbs->device),
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400825 ACPI_AC_DIR_NAME, sbs->charger_present ? "on-line" : "off-line");
Rich Townsend3f86b832006-07-01 11:36:54 -0400826 end:
Len Brown635227e2006-07-01 16:48:23 -0400827 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400828}
829
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400830static void acpi_charger_remove(struct acpi_sbs *sbs)
Rich Townsend3f86b832006-07-01 11:36:54 -0400831{
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400832 if (sbs->charger.dev)
833 power_supply_unregister(&sbs->charger);
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400834#ifdef CONFIG_ACPI_PROCFS
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400835 if (sbs->charger_entry)
836 acpi_sbs_remove_fs(&sbs->charger_entry, acpi_ac_dir);
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400837#endif
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400838}
839
840void acpi_sbs_callback(void *context)
841{
842 int id;
843 struct acpi_sbs *sbs = context;
844 struct acpi_battery *bat;
845 u8 saved_charger_state = sbs->charger_present;
846 u8 saved_battery_state;
847 acpi_ac_get_present(sbs);
848 if (sbs->charger_present != saved_charger_state) {
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400849#ifdef CONFIG_ACPI_PROC_EVENT
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400850 acpi_bus_generate_proc_event4(ACPI_AC_CLASS, ACPI_AC_DIR_NAME,
851 ACPI_SBS_NOTIFY_STATUS,
852 sbs->charger_present);
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400853#endif
854 kobject_uevent(&sbs->charger.dev->kobj, KOBJ_CHANGE);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400855 }
856 if (sbs->manager_present) {
857 for (id = 0; id < MAX_SBS_BAT; ++id) {
858 if (!(sbs->batteries_supported & (1 << id)))
859 continue;
860 bat = &sbs->battery[id];
861 saved_battery_state = bat->present;
862 acpi_battery_read(bat);
863 if (saved_battery_state == bat->present)
864 continue;
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400865#ifdef CONFIG_ACPI_PROC_EVENT
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400866 acpi_bus_generate_proc_event4(ACPI_BATTERY_CLASS,
867 bat->name,
868 ACPI_SBS_NOTIFY_STATUS,
869 bat->present);
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400870#endif
871 kobject_uevent(&bat->bat.dev->kobj, KOBJ_CHANGE);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400872 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400873 }
874}
875
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400876static int acpi_sbs_remove(struct acpi_device *device, int type);
Rich Townsend3f86b832006-07-01 11:36:54 -0400877
878static int acpi_sbs_add(struct acpi_device *device)
879{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400880 struct acpi_sbs *sbs;
881 int result = 0;
Vladimir Lebedev6d157022007-03-19 17:45:50 +0300882 int id;
Rich Townsend3f86b832006-07-01 11:36:54 -0400883
Burman Yan36bcbec2006-12-19 12:56:11 -0800884 sbs = kzalloc(sizeof(struct acpi_sbs), GFP_KERNEL);
Rich Townsend3f86b832006-07-01 11:36:54 -0400885 if (!sbs) {
Vladimir Lebedev72206232007-03-19 17:45:50 +0300886 result = -ENOMEM;
887 goto end;
Rich Townsend3f86b832006-07-01 11:36:54 -0400888 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400889
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400890 mutex_init(&sbs->lock);
Vladimir Lebedev72206232007-03-19 17:45:50 +0300891
Alexey Starikovskiy91087df2007-09-26 19:43:28 +0400892 sbs->hc = acpi_driver_data(device->parent);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400893 sbs->device = device;
Rich Townsend3f86b832006-07-01 11:36:54 -0400894 strcpy(acpi_device_name(device), ACPI_SBS_DEVICE_NAME);
895 strcpy(acpi_device_class(device), ACPI_SBS_CLASS);
896 acpi_driver_data(device) = sbs;
897
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400898 result = acpi_charger_add(sbs);
Vladimir Lebedev72206232007-03-19 17:45:50 +0300899 if (result)
900 goto end;
Rich Townsend3f86b832006-07-01 11:36:54 -0400901
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400902 result = acpi_manager_get_info(sbs);
903 if (!result) {
904 sbs->manager_present = 1;
905 for (id = 0; id < MAX_SBS_BAT; ++id)
906 if ((sbs->batteries_supported & (1 << id)))
907 acpi_battery_add(sbs, id);
908 } else
909 acpi_battery_add(sbs, 0);
910 acpi_smbus_register_callback(sbs->hc, acpi_sbs_callback, sbs);
Rich Townsend3f86b832006-07-01 11:36:54 -0400911 end:
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400912 if (result)
913 acpi_sbs_remove(device, 0);
Len Brown635227e2006-07-01 16:48:23 -0400914 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400915}
916
Vladimir Lebedev72206232007-03-19 17:45:50 +0300917static int acpi_sbs_remove(struct acpi_device *device, int type)
Rich Townsend3f86b832006-07-01 11:36:54 -0400918{
Len Browncece9012006-12-16 01:04:27 -0500919 struct acpi_sbs *sbs;
Rich Townsend3f86b832006-07-01 11:36:54 -0400920 int id;
921
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400922 if (!device)
Lebedev, Vladimir P963497c2006-09-05 19:49:13 +0400923 return -EINVAL;
Vladimir Lebedev72206232007-03-19 17:45:50 +0300924 sbs = acpi_driver_data(device);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400925 if (!sbs)
Len Brown635227e2006-07-01 16:48:23 -0400926 return -EINVAL;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400927 mutex_lock(&sbs->lock);
928 acpi_smbus_unregister_callback(sbs->hc);
929 for (id = 0; id < MAX_SBS_BAT; ++id)
Rich Townsend3f86b832006-07-01 11:36:54 -0400930 acpi_battery_remove(sbs, id);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400931 acpi_charger_remove(sbs);
932 mutex_unlock(&sbs->lock);
933 mutex_destroy(&sbs->lock);
Rich Townsend3f86b832006-07-01 11:36:54 -0400934 kfree(sbs);
Len Brown635227e2006-07-01 16:48:23 -0400935 return 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400936}
937
Vladimir Lebedev72206232007-03-19 17:45:50 +0300938static void acpi_sbs_rmdirs(void)
939{
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400940#ifdef CONFIG_ACPI_PROCFS
Vladimir Lebedev72206232007-03-19 17:45:50 +0300941 if (acpi_ac_dir) {
942 acpi_unlock_ac_dir(acpi_ac_dir);
943 acpi_ac_dir = NULL;
944 }
945 if (acpi_battery_dir) {
946 acpi_unlock_battery_dir(acpi_battery_dir);
947 acpi_battery_dir = NULL;
948 }
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400949#endif
Vladimir Lebedev72206232007-03-19 17:45:50 +0300950}
951
952static int acpi_sbs_resume(struct acpi_device *device)
953{
954 struct acpi_sbs *sbs;
Vladimir Lebedev72206232007-03-19 17:45:50 +0300955 if (!device)
956 return -EINVAL;
Vladimir Lebedev72206232007-03-19 17:45:50 +0300957 sbs = device->driver_data;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400958 acpi_sbs_callback(sbs);
Vladimir Lebedev72206232007-03-19 17:45:50 +0300959 return 0;
960}
961
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400962static struct acpi_driver acpi_sbs_driver = {
963 .name = "sbs",
964 .class = ACPI_SBS_CLASS,
965 .ids = sbs_device_ids,
966 .ops = {
967 .add = acpi_sbs_add,
968 .remove = acpi_sbs_remove,
969 .resume = acpi_sbs_resume,
970 },
971};
972
Rich Townsend3f86b832006-07-01 11:36:54 -0400973static int __init acpi_sbs_init(void)
974{
975 int result = 0;
976
Len Brownb20d2ae2006-08-15 23:21:37 -0400977 if (acpi_disabled)
978 return -ENODEV;
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400979#ifdef CONFIG_ACPI_PROCFS
Rich Townsend3f86b832006-07-01 11:36:54 -0400980 acpi_ac_dir = acpi_lock_ac_dir();
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400981 if (!acpi_ac_dir)
Len Brown635227e2006-07-01 16:48:23 -0400982 return -ENODEV;
Rich Townsend3f86b832006-07-01 11:36:54 -0400983 acpi_battery_dir = acpi_lock_battery_dir();
984 if (!acpi_battery_dir) {
Vladimir Lebedev72206232007-03-19 17:45:50 +0300985 acpi_sbs_rmdirs();
Len Brown635227e2006-07-01 16:48:23 -0400986 return -ENODEV;
Rich Townsend3f86b832006-07-01 11:36:54 -0400987 }
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400988#endif
Rich Townsend3f86b832006-07-01 11:36:54 -0400989 result = acpi_bus_register_driver(&acpi_sbs_driver);
990 if (result < 0) {
Vladimir Lebedev72206232007-03-19 17:45:50 +0300991 acpi_sbs_rmdirs();
Len Brown635227e2006-07-01 16:48:23 -0400992 return -ENODEV;
Rich Townsend3f86b832006-07-01 11:36:54 -0400993 }
Len Brown635227e2006-07-01 16:48:23 -0400994 return 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400995}
996
997static void __exit acpi_sbs_exit(void)
998{
Rich Townsend3f86b832006-07-01 11:36:54 -0400999 acpi_bus_unregister_driver(&acpi_sbs_driver);
Vladimir Lebedev72206232007-03-19 17:45:50 +03001000 acpi_sbs_rmdirs();
Len Brown635227e2006-07-01 16:48:23 -04001001 return;
Rich Townsend3f86b832006-07-01 11:36:54 -04001002}
1003
1004module_init(acpi_sbs_init);
1005module_exit(acpi_sbs_exit);