blob: c4f9641147c4cefc81ccaa990f1733bc0bca8008 [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
Rich Townsend3f86b832006-07-01 11:36:54 -040032#include <linux/proc_fs.h>
33#include <linux/seq_file.h>
34#include <asm/uaccess.h>
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +040035
Rich Townsend3f86b832006-07-01 11:36:54 -040036#include <linux/acpi.h>
Vladimir Lebedev6d157022007-03-19 17:45:50 +030037#include <linux/timer.h>
Vladimir Lebedev72206232007-03-19 17:45:50 +030038#include <linux/jiffies.h>
Rich Townsend3f86b832006-07-01 11:36:54 -040039#include <linux/delay.h>
40
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +040041#include <linux/power_supply.h>
42
Alexey Starikovskiy91087df2007-09-26 19:43:28 +040043#include "sbshc.h"
44
Rich Townsend3f86b832006-07-01 11:36:54 -040045#define ACPI_SBS_CLASS "sbs"
46#define ACPI_AC_CLASS "ac_adapter"
47#define ACPI_BATTERY_CLASS "battery"
Rich Townsend3f86b832006-07-01 11:36:54 -040048#define ACPI_SBS_DEVICE_NAME "Smart Battery System"
49#define ACPI_SBS_FILE_INFO "info"
50#define ACPI_SBS_FILE_STATE "state"
51#define ACPI_SBS_FILE_ALARM "alarm"
52#define ACPI_BATTERY_DIR_NAME "BAT%i"
53#define ACPI_AC_DIR_NAME "AC0"
Rich Townsend3f86b832006-07-01 11:36:54 -040054
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +040055enum acpi_sbs_device_addr {
56 ACPI_SBS_CHARGER = 0x9,
57 ACPI_SBS_MANAGER = 0xa,
58 ACPI_SBS_BATTERY = 0xb,
59};
60
61#define ACPI_SBS_NOTIFY_STATUS 0x80
62#define ACPI_SBS_NOTIFY_INFO 0x81
Rich Townsend3f86b832006-07-01 11:36:54 -040063
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +040064MODULE_AUTHOR("Alexey Starikovskiy <astarikovskiy@suse.de>");
Rich Townsend3f86b832006-07-01 11:36:54 -040065MODULE_DESCRIPTION("Smart Battery System ACPI interface driver");
66MODULE_LICENSE("GPL");
67
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +040068static unsigned int cache_time = 1000;
69module_param(cache_time, uint, 0644);
70MODULE_PARM_DESC(cache_time, "cache time in milliseconds");
Vladimir Lebedev6d157022007-03-19 17:45:50 +030071
72extern struct proc_dir_entry *acpi_lock_ac_dir(void);
73extern struct proc_dir_entry *acpi_lock_battery_dir(void);
74extern void acpi_unlock_ac_dir(struct proc_dir_entry *acpi_ac_dir);
75extern void acpi_unlock_battery_dir(struct proc_dir_entry *acpi_battery_dir);
76
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +040077#define MAX_SBS_BAT 4
Vladimir Lebedev6d157022007-03-19 17:45:50 +030078#define ACPI_SBS_BLOCK_MAX 32
79
Thomas Renninger1ba90e32007-07-23 14:44:41 +020080static const struct acpi_device_id sbs_device_ids[] = {
Alexey Starikovskiy91087df2007-09-26 19:43:28 +040081 {"ACPI0002", 0},
Thomas Renninger1ba90e32007-07-23 14:44:41 +020082 {"", 0},
83};
84MODULE_DEVICE_TABLE(acpi, sbs_device_ids);
85
Alexey Starikovskiy89862e32007-09-26 19:43:35 +040086struct acpi_battery {
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +040087 struct power_supply bat;
Alexey Starikovskiy89862e32007-09-26 19:43:35 +040088 struct acpi_sbs *sbs;
89 struct proc_dir_entry *proc_entry;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +040090 unsigned long update_time;
91 char name[8];
Alexey Starikovskiy89862e32007-09-26 19:43:35 +040092 char manufacturer_name[ACPI_SBS_BLOCK_MAX];
93 char device_name[ACPI_SBS_BLOCK_MAX];
94 char device_chemistry[ACPI_SBS_BLOCK_MAX];
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +040095 u16 alarm_capacity;
Alexey Starikovskiy89862e32007-09-26 19:43:35 +040096 u16 full_charge_capacity;
97 u16 design_capacity;
98 u16 design_voltage;
99 u16 serial_number;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400100 u16 cycle_count;
101 u16 temp_now;
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400102 u16 voltage_now;
103 s16 current_now;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400104 s16 current_avg;
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400105 u16 capacity_now;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400106 u16 state_of_charge;
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400107 u16 state;
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400108 u16 mode;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400109 u16 spec;
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400110 u8 id;
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400111 u8 present:1;
Rich Townsend3f86b832006-07-01 11:36:54 -0400112};
113
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400114#define to_acpi_battery(x) container_of(x, struct acpi_battery, bat);
115
Rich Townsend3f86b832006-07-01 11:36:54 -0400116struct acpi_sbs {
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400117 struct power_supply charger;
Rich Townsend3f86b832006-07-01 11:36:54 -0400118 struct acpi_device *device;
Alexey Starikovskiy91087df2007-09-26 19:43:28 +0400119 struct acpi_smb_hc *hc;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400120 struct mutex lock;
121 struct proc_dir_entry *charger_entry;
Rich Townsend3f86b832006-07-01 11:36:54 -0400122 struct acpi_battery battery[MAX_SBS_BAT];
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400123 u8 batteries_supported:4;
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400124 u8 manager_present:1;
125 u8 charger_present:1;
Rich Townsend3f86b832006-07-01 11:36:54 -0400126};
127
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400128#define to_acpi_sbs(x) container_of(x, struct acpi_sbs, charger)
129
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400130static inline int battery_scale(int log)
Vladimir Lebedev72206232007-03-19 17:45:50 +0300131{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400132 int scale = 1;
133 while (log--)
134 scale *= 10;
135 return scale;
Vladimir Lebedev72206232007-03-19 17:45:50 +0300136}
137
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400138static inline int acpi_battery_vscale(struct acpi_battery *battery)
Vladimir Lebedev72206232007-03-19 17:45:50 +0300139{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400140 return battery_scale((battery->spec & 0x0f00) >> 8);
Vladimir Lebedev72206232007-03-19 17:45:50 +0300141}
142
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400143static inline int acpi_battery_ipscale(struct acpi_battery *battery)
Vladimir Lebedev72206232007-03-19 17:45:50 +0300144{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400145 return battery_scale((battery->spec & 0xf000) >> 12);
146}
147
148static inline int acpi_battery_mode(struct acpi_battery *battery)
149{
150 return (battery->mode & 0x8000);
151}
152
153static inline int acpi_battery_scale(struct acpi_battery *battery)
154{
155 return (acpi_battery_mode(battery) ? 10 : 1) *
156 acpi_battery_ipscale(battery);
Vladimir Lebedev72206232007-03-19 17:45:50 +0300157}
158
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400159static int sbs_get_ac_property(struct power_supply *psy,
160 enum power_supply_property psp,
161 union power_supply_propval *val)
162{
163 struct acpi_sbs *sbs = to_acpi_sbs(psy);
164 switch (psp) {
165 case POWER_SUPPLY_PROP_ONLINE:
166 val->intval = sbs->charger_present;
167 break;
168 default:
169 return -EINVAL;
170 }
171 return 0;
172}
173
174static int acpi_battery_technology(struct acpi_battery *battery)
175{
176 if (!strcasecmp("NiCd", battery->device_chemistry))
177 return POWER_SUPPLY_TECHNOLOGY_NiCd;
178 if (!strcasecmp("NiMH", battery->device_chemistry))
179 return POWER_SUPPLY_TECHNOLOGY_NiMH;
180 if (!strcasecmp("LION", battery->device_chemistry))
181 return POWER_SUPPLY_TECHNOLOGY_LION;
182 if (!strcasecmp("LiP", battery->device_chemistry))
183 return POWER_SUPPLY_TECHNOLOGY_LIPO;
184 return POWER_SUPPLY_TECHNOLOGY_UNKNOWN;
185}
186
187static int acpi_sbs_battery_get_property(struct power_supply *psy,
188 enum power_supply_property psp,
189 union power_supply_propval *val)
190{
191 struct acpi_battery *battery = to_acpi_battery(psy);
192
193 if ((!battery->present) && psp != POWER_SUPPLY_PROP_PRESENT)
194 return -ENODEV;
195 switch (psp) {
196 case POWER_SUPPLY_PROP_STATUS:
197 if (battery->current_now < 0)
198 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
199 else if (battery->current_now > 0)
200 val->intval = POWER_SUPPLY_STATUS_CHARGING;
201 else
202 val->intval = POWER_SUPPLY_STATUS_FULL;
203 break;
204 case POWER_SUPPLY_PROP_PRESENT:
205 val->intval = battery->present;
206 break;
207 case POWER_SUPPLY_PROP_TECHNOLOGY:
208 val->intval = acpi_battery_technology(battery);
209 break;
210 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
211 val->intval = battery->design_voltage *
212 acpi_battery_vscale(battery) * 1000;
213 break;
214 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
215 val->intval = battery->voltage_now *
216 acpi_battery_vscale(battery) * 1000;
217 break;
218 case POWER_SUPPLY_PROP_CURRENT_NOW:
219 val->intval = abs(battery->current_now) *
220 acpi_battery_ipscale(battery) * 1000;
221 break;
222 case POWER_SUPPLY_PROP_CURRENT_AVG:
223 val->intval = abs(battery->current_avg) *
224 acpi_battery_ipscale(battery) * 1000;
225 break;
226 case POWER_SUPPLY_PROP_CAPACITY:
227 val->intval = battery->state_of_charge;
228 break;
229 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
230 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
231 val->intval = battery->design_capacity *
232 acpi_battery_scale(battery) * 1000;
233 break;
234 case POWER_SUPPLY_PROP_CHARGE_FULL:
235 case POWER_SUPPLY_PROP_ENERGY_FULL:
236 val->intval = battery->full_charge_capacity *
237 acpi_battery_scale(battery) * 1000;
238 break;
239 case POWER_SUPPLY_PROP_CHARGE_NOW:
240 case POWER_SUPPLY_PROP_ENERGY_NOW:
241 val->intval = battery->capacity_now *
242 acpi_battery_scale(battery) * 1000;
243 break;
244 case POWER_SUPPLY_PROP_TEMP:
245 val->intval = battery->temp_now - 2730; // dK -> dC
246 break;
247 case POWER_SUPPLY_PROP_MODEL_NAME:
248 val->strval = battery->device_name;
249 break;
250 case POWER_SUPPLY_PROP_MANUFACTURER:
251 val->strval = battery->manufacturer_name;
252 break;
253 default:
254 return -EINVAL;
255 }
256 return 0;
257}
258
259static enum power_supply_property sbs_ac_props[] = {
260 POWER_SUPPLY_PROP_ONLINE,
261};
262
263static enum power_supply_property sbs_charge_battery_props[] = {
264 POWER_SUPPLY_PROP_STATUS,
265 POWER_SUPPLY_PROP_PRESENT,
266 POWER_SUPPLY_PROP_TECHNOLOGY,
267 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
268 POWER_SUPPLY_PROP_VOLTAGE_NOW,
269 POWER_SUPPLY_PROP_CURRENT_NOW,
270 POWER_SUPPLY_PROP_CURRENT_AVG,
271 POWER_SUPPLY_PROP_CAPACITY,
272 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
273 POWER_SUPPLY_PROP_CHARGE_FULL,
274 POWER_SUPPLY_PROP_CHARGE_NOW,
275 POWER_SUPPLY_PROP_TEMP,
276 POWER_SUPPLY_PROP_MODEL_NAME,
277 POWER_SUPPLY_PROP_MANUFACTURER,
278};
279
280static enum power_supply_property sbs_energy_battery_props[] = {
281 POWER_SUPPLY_PROP_STATUS,
282 POWER_SUPPLY_PROP_PRESENT,
283 POWER_SUPPLY_PROP_TECHNOLOGY,
284 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
285 POWER_SUPPLY_PROP_VOLTAGE_NOW,
286 POWER_SUPPLY_PROP_CURRENT_NOW,
287 POWER_SUPPLY_PROP_CURRENT_AVG,
288 POWER_SUPPLY_PROP_CAPACITY,
289 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN,
290 POWER_SUPPLY_PROP_ENERGY_FULL,
291 POWER_SUPPLY_PROP_ENERGY_NOW,
292 POWER_SUPPLY_PROP_TEMP,
293 POWER_SUPPLY_PROP_MODEL_NAME,
294 POWER_SUPPLY_PROP_MANUFACTURER,
295};
296
Rich Townsend3f86b832006-07-01 11:36:54 -0400297/* --------------------------------------------------------------------------
298 Smart Battery System Management
299 -------------------------------------------------------------------------- */
300
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400301struct acpi_battery_reader {
302 u8 command; /* command for battery */
303 u8 mode; /* word or block? */
304 size_t offset; /* offset inside struct acpi_sbs_battery */
305};
Vladimir Lebedev72206232007-03-19 17:45:50 +0300306
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400307static struct acpi_battery_reader info_readers[] = {
308 {0x01, SMBUS_READ_WORD, offsetof(struct acpi_battery, alarm_capacity)},
309 {0x03, SMBUS_READ_WORD, offsetof(struct acpi_battery, mode)},
310 {0x10, SMBUS_READ_WORD, offsetof(struct acpi_battery, full_charge_capacity)},
311 {0x17, SMBUS_READ_WORD, offsetof(struct acpi_battery, cycle_count)},
312 {0x18, SMBUS_READ_WORD, offsetof(struct acpi_battery, design_capacity)},
313 {0x19, SMBUS_READ_WORD, offsetof(struct acpi_battery, design_voltage)},
314 {0x1a, SMBUS_READ_WORD, offsetof(struct acpi_battery, spec)},
315 {0x1c, SMBUS_READ_WORD, offsetof(struct acpi_battery, serial_number)},
316 {0x20, SMBUS_READ_BLOCK, offsetof(struct acpi_battery, manufacturer_name)},
317 {0x21, SMBUS_READ_BLOCK, offsetof(struct acpi_battery, device_name)},
318 {0x22, SMBUS_READ_BLOCK, offsetof(struct acpi_battery, device_chemistry)},
319};
Rich Townsend3f86b832006-07-01 11:36:54 -0400320
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400321static struct acpi_battery_reader state_readers[] = {
322 {0x08, SMBUS_READ_WORD, offsetof(struct acpi_battery, temp_now)},
323 {0x09, SMBUS_READ_WORD, offsetof(struct acpi_battery, voltage_now)},
324 {0x0a, SMBUS_READ_WORD, offsetof(struct acpi_battery, current_now)},
325 {0x0b, SMBUS_READ_WORD, offsetof(struct acpi_battery, current_avg)},
326 {0x0f, SMBUS_READ_WORD, offsetof(struct acpi_battery, capacity_now)},
327 {0x0e, SMBUS_READ_WORD, offsetof(struct acpi_battery, state_of_charge)},
328 {0x16, SMBUS_READ_WORD, offsetof(struct acpi_battery, state)},
329};
Rich Townsend3f86b832006-07-01 11:36:54 -0400330
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400331static int acpi_manager_get_info(struct acpi_sbs *sbs)
Rich Townsend3f86b832006-07-01 11:36:54 -0400332{
Rich Townsend3f86b832006-07-01 11:36:54 -0400333 int result = 0;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400334 u16 battery_system_info;
Rich Townsend3f86b832006-07-01 11:36:54 -0400335
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400336 result = acpi_smbus_read(sbs->hc, SMBUS_READ_WORD, ACPI_SBS_MANAGER,
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400337 0x04, (u8 *)&battery_system_info);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400338 if (!result)
339 sbs->batteries_supported = battery_system_info & 0x000f;
Len Brown635227e2006-07-01 16:48:23 -0400340 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400341}
342
343static int acpi_battery_get_info(struct acpi_battery *battery)
344{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400345 int i, result = 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400346
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400347 for (i = 0; i < ARRAY_SIZE(info_readers); ++i) {
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400348 result = acpi_smbus_read(battery->sbs->hc,
349 info_readers[i].mode,
350 ACPI_SBS_BATTERY,
351 info_readers[i].command,
352 (u8 *) battery +
353 info_readers[i].offset);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400354 if (result)
355 break;
Rich Townsend3f86b832006-07-01 11:36:54 -0400356 }
Len Brown635227e2006-07-01 16:48:23 -0400357 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400358}
359
Rich Townsend3f86b832006-07-01 11:36:54 -0400360static int acpi_battery_get_state(struct acpi_battery *battery)
361{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400362 int i, result = 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400363
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400364 if (battery->update_time &&
365 time_before(jiffies, battery->update_time +
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400366 msecs_to_jiffies(cache_time)))
367 return 0;
368 for (i = 0; i < ARRAY_SIZE(state_readers); ++i) {
369 result = acpi_smbus_read(battery->sbs->hc,
370 state_readers[i].mode,
371 ACPI_SBS_BATTERY,
372 state_readers[i].command,
373 (u8 *)battery +
374 state_readers[i].offset);
375 if (result)
376 goto end;
Rich Townsend3f86b832006-07-01 11:36:54 -0400377 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400378 end:
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400379 battery->update_time = jiffies;
Len Brown635227e2006-07-01 16:48:23 -0400380 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400381}
382
383static int acpi_battery_get_alarm(struct acpi_battery *battery)
384{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400385 return acpi_smbus_read(battery->sbs->hc, SMBUS_READ_WORD,
386 ACPI_SBS_BATTERY, 0x01,
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400387 (u8 *)&battery->alarm_capacity);
Rich Townsend3f86b832006-07-01 11:36:54 -0400388}
389
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400390static int acpi_battery_set_alarm(struct acpi_battery *battery)
Rich Townsend3f86b832006-07-01 11:36:54 -0400391{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400392 struct acpi_sbs *sbs = battery->sbs;
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400393 u16 value, sel = 1 << (battery->id + 12);
394
395 int ret;
396
Rich Townsend3f86b832006-07-01 11:36:54 -0400397
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400398 if (sbs->manager_present) {
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400399 ret = acpi_smbus_read(sbs->hc, SMBUS_READ_WORD, ACPI_SBS_MANAGER,
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400400 0x01, (u8 *)&value);
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400401 if (ret)
402 goto end;
403 if ((value & 0xf000) != sel) {
404 value &= 0x0fff;
405 value |= sel;
406 ret = acpi_smbus_write(sbs->hc, SMBUS_WRITE_WORD,
407 ACPI_SBS_MANAGER,
408 0x01, (u8 *)&value, 2);
409 if (ret)
410 goto end;
411 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400412 }
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400413 ret = acpi_smbus_write(sbs->hc, SMBUS_WRITE_WORD, ACPI_SBS_BATTERY,
414 0x01, (u8 *)&battery->alarm_capacity, 2);
415 end:
416 return ret;
Rich Townsend3f86b832006-07-01 11:36:54 -0400417}
418
419static int acpi_ac_get_present(struct acpi_sbs *sbs)
420{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400421 int result;
422 u16 status;
Rich Townsend3f86b832006-07-01 11:36:54 -0400423
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400424 result = acpi_smbus_read(sbs->hc, SMBUS_READ_WORD, ACPI_SBS_CHARGER,
425 0x13, (u8 *) & status);
426 if (!result)
427 sbs->charger_present = (status >> 15) & 0x1;
Len Brown635227e2006-07-01 16:48:23 -0400428 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400429}
430
431/* --------------------------------------------------------------------------
432 FS Interface (/proc/acpi)
433 -------------------------------------------------------------------------- */
434
435/* Generic Routines */
Rich Townsend3f86b832006-07-01 11:36:54 -0400436static int
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400437acpi_sbs_add_fs(struct proc_dir_entry **dir,
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400438 struct proc_dir_entry *parent_dir,
439 char *dir_name,
440 struct file_operations *info_fops,
441 struct file_operations *state_fops,
442 struct file_operations *alarm_fops, void *data)
Rich Townsend3f86b832006-07-01 11:36:54 -0400443{
444 struct proc_dir_entry *entry = NULL;
445
Rich Townsend3f86b832006-07-01 11:36:54 -0400446 if (!*dir) {
447 *dir = proc_mkdir(dir_name, parent_dir);
448 if (!*dir) {
Len Brown635227e2006-07-01 16:48:23 -0400449 return -ENODEV;
Rich Townsend3f86b832006-07-01 11:36:54 -0400450 }
451 (*dir)->owner = THIS_MODULE;
452 }
453
454 /* 'info' [R] */
455 if (info_fops) {
456 entry = create_proc_entry(ACPI_SBS_FILE_INFO, S_IRUGO, *dir);
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400457 if (entry) {
Rich Townsend3f86b832006-07-01 11:36:54 -0400458 entry->proc_fops = info_fops;
459 entry->data = data;
460 entry->owner = THIS_MODULE;
461 }
462 }
463
464 /* 'state' [R] */
465 if (state_fops) {
466 entry = create_proc_entry(ACPI_SBS_FILE_STATE, S_IRUGO, *dir);
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400467 if (entry) {
Rich Townsend3f86b832006-07-01 11:36:54 -0400468 entry->proc_fops = state_fops;
469 entry->data = data;
470 entry->owner = THIS_MODULE;
471 }
472 }
473
474 /* 'alarm' [R/W] */
475 if (alarm_fops) {
476 entry = create_proc_entry(ACPI_SBS_FILE_ALARM, S_IRUGO, *dir);
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400477 if (entry) {
Rich Townsend3f86b832006-07-01 11:36:54 -0400478 entry->proc_fops = alarm_fops;
479 entry->data = data;
480 entry->owner = THIS_MODULE;
481 }
482 }
Len Brown635227e2006-07-01 16:48:23 -0400483 return 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400484}
485
486static void
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400487acpi_sbs_remove_fs(struct proc_dir_entry **dir,
Rich Townsend3f86b832006-07-01 11:36:54 -0400488 struct proc_dir_entry *parent_dir)
489{
Rich Townsend3f86b832006-07-01 11:36:54 -0400490 if (*dir) {
491 remove_proc_entry(ACPI_SBS_FILE_INFO, *dir);
492 remove_proc_entry(ACPI_SBS_FILE_STATE, *dir);
493 remove_proc_entry(ACPI_SBS_FILE_ALARM, *dir);
494 remove_proc_entry((*dir)->name, parent_dir);
495 *dir = NULL;
496 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400497}
498
499/* Smart Battery Interface */
Rich Townsend3f86b832006-07-01 11:36:54 -0400500static struct proc_dir_entry *acpi_battery_dir = NULL;
501
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400502static inline char *acpi_battery_units(struct acpi_battery *battery)
503{
504 return acpi_battery_mode(battery) ? " mWh" : " mAh";
505}
506
507
Rich Townsend3f86b832006-07-01 11:36:54 -0400508static int acpi_battery_read_info(struct seq_file *seq, void *offset)
509{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200510 struct acpi_battery *battery = seq->private;
Vladimir Lebedev72206232007-03-19 17:45:50 +0300511 struct acpi_sbs *sbs = battery->sbs;
Rich Townsend3f86b832006-07-01 11:36:54 -0400512 int result = 0;
513
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400514 mutex_lock(&sbs->lock);
Rich Townsend3f86b832006-07-01 11:36:54 -0400515
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400516 seq_printf(seq, "present: %s\n",
517 (battery->present) ? "yes" : "no");
518 if (!battery->present)
Vladimir Lebedev72206232007-03-19 17:45:50 +0300519 goto end;
Rich Townsend3f86b832006-07-01 11:36:54 -0400520
Vladimir Lebedev72206232007-03-19 17:45:50 +0300521 seq_printf(seq, "design capacity: %i%s\n",
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400522 battery->design_capacity * acpi_battery_scale(battery),
523 acpi_battery_units(battery));
Vladimir Lebedev72206232007-03-19 17:45:50 +0300524 seq_printf(seq, "last full capacity: %i%s\n",
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400525 battery->full_charge_capacity * acpi_battery_scale(battery),
526 acpi_battery_units(battery));
Rich Townsend3f86b832006-07-01 11:36:54 -0400527 seq_printf(seq, "battery technology: rechargeable\n");
Rich Townsend3f86b832006-07-01 11:36:54 -0400528 seq_printf(seq, "design voltage: %i mV\n",
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400529 battery->design_voltage * acpi_battery_vscale(battery));
Rich Townsend3f86b832006-07-01 11:36:54 -0400530 seq_printf(seq, "design capacity warning: unknown\n");
531 seq_printf(seq, "design capacity low: unknown\n");
532 seq_printf(seq, "capacity granularity 1: unknown\n");
533 seq_printf(seq, "capacity granularity 2: unknown\n");
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400534 seq_printf(seq, "model number: %s\n", battery->device_name);
Rich Townsend3f86b832006-07-01 11:36:54 -0400535 seq_printf(seq, "serial number: %i\n",
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400536 battery->serial_number);
Rich Townsend3f86b832006-07-01 11:36:54 -0400537 seq_printf(seq, "battery type: %s\n",
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400538 battery->device_chemistry);
Rich Townsend3f86b832006-07-01 11:36:54 -0400539 seq_printf(seq, "OEM info: %s\n",
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400540 battery->manufacturer_name);
Rich Townsend3f86b832006-07-01 11:36:54 -0400541 end:
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400542 mutex_unlock(&sbs->lock);
Len Brown635227e2006-07-01 16:48:23 -0400543 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400544}
545
546static int acpi_battery_info_open_fs(struct inode *inode, struct file *file)
547{
548 return single_open(file, acpi_battery_read_info, PDE(inode)->data);
549}
550
551static int acpi_battery_read_state(struct seq_file *seq, void *offset)
552{
Vladimir Lebedev72206232007-03-19 17:45:50 +0300553 struct acpi_battery *battery = seq->private;
554 struct acpi_sbs *sbs = battery->sbs;
Rich Townsend3f86b832006-07-01 11:36:54 -0400555 int result = 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400556
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400557 mutex_lock(&sbs->lock);
558 seq_printf(seq, "present: %s\n",
559 (battery->present) ? "yes" : "no");
560 if (!battery->present)
Vladimir Lebedev72206232007-03-19 17:45:50 +0300561 goto end;
Rich Townsend3f86b832006-07-01 11:36:54 -0400562
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400563 acpi_battery_get_state(battery);
564 seq_printf(seq, "capacity state: %s\n",
565 (battery->state & 0x0010) ? "critical" : "ok");
566 seq_printf(seq, "charging state: %s\n",
567 (battery->current_now < 0) ? "discharging" :
568 ((battery->current_now > 0) ? "charging" : "charged"));
569 seq_printf(seq, "present rate: %d mA\n",
570 abs(battery->current_now) * acpi_battery_ipscale(battery));
Vladimir Lebedev72206232007-03-19 17:45:50 +0300571 seq_printf(seq, "remaining capacity: %i%s\n",
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400572 battery->capacity_now * acpi_battery_scale(battery),
573 acpi_battery_units(battery));
Rich Townsend3f86b832006-07-01 11:36:54 -0400574 seq_printf(seq, "present voltage: %i mV\n",
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400575 battery->voltage_now * acpi_battery_vscale(battery));
Rich Townsend3f86b832006-07-01 11:36:54 -0400576
577 end:
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400578 mutex_unlock(&sbs->lock);
Len Brown635227e2006-07-01 16:48:23 -0400579 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400580}
581
582static int acpi_battery_state_open_fs(struct inode *inode, struct file *file)
583{
584 return single_open(file, acpi_battery_read_state, PDE(inode)->data);
585}
586
587static int acpi_battery_read_alarm(struct seq_file *seq, void *offset)
588{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200589 struct acpi_battery *battery = seq->private;
Vladimir Lebedev72206232007-03-19 17:45:50 +0300590 struct acpi_sbs *sbs = battery->sbs;
Rich Townsend3f86b832006-07-01 11:36:54 -0400591 int result = 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400592
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400593 mutex_lock(&sbs->lock);
Rich Townsend3f86b832006-07-01 11:36:54 -0400594
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400595 if (!battery->present) {
Rich Townsend3f86b832006-07-01 11:36:54 -0400596 seq_printf(seq, "present: no\n");
597 goto end;
598 }
599
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400600 acpi_battery_get_alarm(battery);
Rich Townsend3f86b832006-07-01 11:36:54 -0400601 seq_printf(seq, "alarm: ");
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400602 if (battery->alarm_capacity)
Vladimir Lebedev72206232007-03-19 17:45:50 +0300603 seq_printf(seq, "%i%s\n",
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400604 battery->alarm_capacity *
605 acpi_battery_scale(battery),
606 acpi_battery_units(battery));
607 else
Rich Townsend3f86b832006-07-01 11:36:54 -0400608 seq_printf(seq, "disabled\n");
Rich Townsend3f86b832006-07-01 11:36:54 -0400609 end:
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400610 mutex_unlock(&sbs->lock);
Len Brown635227e2006-07-01 16:48:23 -0400611 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400612}
613
614static ssize_t
615acpi_battery_write_alarm(struct file *file, const char __user * buffer,
616 size_t count, loff_t * ppos)
617{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200618 struct seq_file *seq = file->private_data;
619 struct acpi_battery *battery = seq->private;
Vladimir Lebedev72206232007-03-19 17:45:50 +0300620 struct acpi_sbs *sbs = battery->sbs;
Rich Townsend3f86b832006-07-01 11:36:54 -0400621 char alarm_string[12] = { '\0' };
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400622 int result = 0;
623 mutex_lock(&sbs->lock);
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400624 if (!battery->present) {
Rich Townsend3f86b832006-07-01 11:36:54 -0400625 result = -ENODEV;
626 goto end;
627 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400628 if (count > sizeof(alarm_string) - 1) {
629 result = -EINVAL;
630 goto end;
631 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400632 if (copy_from_user(alarm_string, buffer, count)) {
633 result = -EFAULT;
634 goto end;
635 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400636 alarm_string[count] = 0;
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400637 battery->alarm_capacity = simple_strtoul(alarm_string, NULL, 0) /
638 acpi_battery_scale(battery);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400639 acpi_battery_set_alarm(battery);
Rich Townsend3f86b832006-07-01 11:36:54 -0400640 end:
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400641 mutex_unlock(&sbs->lock);
642 if (result)
Len Brown635227e2006-07-01 16:48:23 -0400643 return result;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400644 return count;
Rich Townsend3f86b832006-07-01 11:36:54 -0400645}
646
647static int acpi_battery_alarm_open_fs(struct inode *inode, struct file *file)
648{
649 return single_open(file, acpi_battery_read_alarm, PDE(inode)->data);
650}
651
652static struct file_operations acpi_battery_info_fops = {
653 .open = acpi_battery_info_open_fs,
654 .read = seq_read,
655 .llseek = seq_lseek,
656 .release = single_release,
657 .owner = THIS_MODULE,
658};
659
660static struct file_operations acpi_battery_state_fops = {
661 .open = acpi_battery_state_open_fs,
662 .read = seq_read,
663 .llseek = seq_lseek,
664 .release = single_release,
665 .owner = THIS_MODULE,
666};
667
668static struct file_operations acpi_battery_alarm_fops = {
669 .open = acpi_battery_alarm_open_fs,
670 .read = seq_read,
671 .write = acpi_battery_write_alarm,
672 .llseek = seq_lseek,
673 .release = single_release,
674 .owner = THIS_MODULE,
675};
676
677/* Legacy AC Adapter Interface */
678
679static struct proc_dir_entry *acpi_ac_dir = NULL;
680
681static int acpi_ac_read_state(struct seq_file *seq, void *offset)
682{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400683
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200684 struct acpi_sbs *sbs = seq->private;
Rich Townsend3f86b832006-07-01 11:36:54 -0400685
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400686 mutex_lock(&sbs->lock);
Rich Townsend3f86b832006-07-01 11:36:54 -0400687
688 seq_printf(seq, "state: %s\n",
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400689 sbs->charger_present ? "on-line" : "off-line");
Rich Townsend3f86b832006-07-01 11:36:54 -0400690
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400691 mutex_unlock(&sbs->lock);
Len Brown635227e2006-07-01 16:48:23 -0400692 return 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400693}
694
695static int acpi_ac_state_open_fs(struct inode *inode, struct file *file)
696{
697 return single_open(file, acpi_ac_read_state, PDE(inode)->data);
698}
699
700static struct file_operations acpi_ac_state_fops = {
701 .open = acpi_ac_state_open_fs,
702 .read = seq_read,
703 .llseek = seq_lseek,
704 .release = single_release,
705 .owner = THIS_MODULE,
706};
707
708/* --------------------------------------------------------------------------
709 Driver Interface
710 -------------------------------------------------------------------------- */
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400711static int acpi_battery_read(struct acpi_battery *battery)
712{
713 int result = 0, saved_present = battery->present;
714 u16 state;
715
716 if (battery->sbs->manager_present) {
717 result = acpi_smbus_read(battery->sbs->hc, SMBUS_READ_WORD,
718 ACPI_SBS_MANAGER, 0x01, (u8 *)&state);
719 if (!result)
720 battery->present = state & (1 << battery->id);
721 state &= 0x0fff;
722 state |= 1 << (battery->id + 12);
723 acpi_smbus_write(battery->sbs->hc, SMBUS_WRITE_WORD,
724 ACPI_SBS_MANAGER, 0x01, (u8 *)&state, 2);
725 } else if (battery->id == 0)
726 battery->present = 1;
727 if (result || !battery->present)
728 return result;
729
730 if (saved_present != battery->present) {
731 battery->update_time = 0;
732 result = acpi_battery_get_info(battery);
733 if (result)
734 return result;
735 }
736 result = acpi_battery_get_state(battery);
737 return result;
738}
739
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400740/* Smart Battery */
Rich Townsend3f86b832006-07-01 11:36:54 -0400741static int acpi_battery_add(struct acpi_sbs *sbs, int id)
742{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400743 struct acpi_battery *battery = &sbs->battery[id];
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400744 int result;
745
Rich Townsend3f86b832006-07-01 11:36:54 -0400746 battery->id = id;
747 battery->sbs = sbs;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400748 result = acpi_battery_read(battery);
749 if (result)
750 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400751
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400752 sprintf(battery->name, ACPI_BATTERY_DIR_NAME, id);
753 acpi_sbs_add_fs(&battery->proc_entry, acpi_battery_dir,
754 battery->name, &acpi_battery_info_fops,
755 &acpi_battery_state_fops, &acpi_battery_alarm_fops,
756 battery);
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400757 battery->bat.name = battery->name;
758 battery->bat.type = POWER_SUPPLY_TYPE_BATTERY;
759 if (!acpi_battery_mode(battery)) {
760 battery->bat.properties = sbs_charge_battery_props;
761 battery->bat.num_properties =
762 ARRAY_SIZE(sbs_charge_battery_props);
763 } else {
764 battery->bat.properties = sbs_energy_battery_props;
765 battery->bat.num_properties =
766 ARRAY_SIZE(sbs_energy_battery_props);
767 }
768 battery->bat.get_property = acpi_sbs_battery_get_property;
769 result = power_supply_register(&sbs->device->dev, &battery->bat);
Vladimir Lebedev72206232007-03-19 17:45:50 +0300770 printk(KERN_INFO PREFIX "%s [%s]: Battery Slot [%s] (battery %s)\n",
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400771 ACPI_SBS_DEVICE_NAME, acpi_device_bid(sbs->device),
772 battery->name, sbs->battery->present ? "present" : "absent");
Len Brown635227e2006-07-01 16:48:23 -0400773 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400774}
775
776static void acpi_battery_remove(struct acpi_sbs *sbs, int id)
777{
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400778 if (sbs->battery[id].bat.dev)
779 power_supply_unregister(&sbs->battery[id].bat);
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400780 if (sbs->battery[id].proc_entry) {
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400781 acpi_sbs_remove_fs(&(sbs->battery[id].proc_entry),
782 acpi_battery_dir);
Rich Townsend3f86b832006-07-01 11:36:54 -0400783 }
784}
785
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400786static int acpi_charger_add(struct acpi_sbs *sbs)
Rich Townsend3f86b832006-07-01 11:36:54 -0400787{
788 int result;
789
Rich Townsend3f86b832006-07-01 11:36:54 -0400790 result = acpi_ac_get_present(sbs);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400791 if (result)
Rich Townsend3f86b832006-07-01 11:36:54 -0400792 goto end;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400793 result = acpi_sbs_add_fs(&sbs->charger_entry, acpi_ac_dir,
794 ACPI_AC_DIR_NAME, NULL,
795 &acpi_ac_state_fops, NULL, sbs);
796 if (result)
Rich Townsend3f86b832006-07-01 11:36:54 -0400797 goto end;
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400798 sbs->charger.name = "sbs-charger";
799 sbs->charger.type = POWER_SUPPLY_TYPE_MAINS;
800 sbs->charger.properties = sbs_ac_props;
801 sbs->charger.num_properties = ARRAY_SIZE(sbs_ac_props);
802 sbs->charger.get_property = sbs_get_ac_property;
803 power_supply_register(&sbs->device->dev, &sbs->charger);
Vladimir Lebedev72206232007-03-19 17:45:50 +0300804 printk(KERN_INFO PREFIX "%s [%s]: AC Adapter [%s] (%s)\n",
805 ACPI_SBS_DEVICE_NAME, acpi_device_bid(sbs->device),
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400806 ACPI_AC_DIR_NAME, sbs->charger_present ? "on-line" : "off-line");
Rich Townsend3f86b832006-07-01 11:36:54 -0400807 end:
Len Brown635227e2006-07-01 16:48:23 -0400808 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400809}
810
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400811static void acpi_charger_remove(struct acpi_sbs *sbs)
Rich Townsend3f86b832006-07-01 11:36:54 -0400812{
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400813 if (sbs->charger.dev)
814 power_supply_unregister(&sbs->charger);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400815 if (sbs->charger_entry)
816 acpi_sbs_remove_fs(&sbs->charger_entry, acpi_ac_dir);
817}
818
819void acpi_sbs_callback(void *context)
820{
821 int id;
822 struct acpi_sbs *sbs = context;
823 struct acpi_battery *bat;
824 u8 saved_charger_state = sbs->charger_present;
825 u8 saved_battery_state;
826 acpi_ac_get_present(sbs);
827 if (sbs->charger_present != saved_charger_state) {
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400828#ifdef CONFIG_ACPI_PROC_EVENT
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400829 acpi_bus_generate_proc_event4(ACPI_AC_CLASS, ACPI_AC_DIR_NAME,
830 ACPI_SBS_NOTIFY_STATUS,
831 sbs->charger_present);
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400832#endif
833 kobject_uevent(&sbs->charger.dev->kobj, KOBJ_CHANGE);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400834 }
835 if (sbs->manager_present) {
836 for (id = 0; id < MAX_SBS_BAT; ++id) {
837 if (!(sbs->batteries_supported & (1 << id)))
838 continue;
839 bat = &sbs->battery[id];
840 saved_battery_state = bat->present;
841 acpi_battery_read(bat);
842 if (saved_battery_state == bat->present)
843 continue;
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400844#ifdef CONFIG_ACPI_PROC_EVENT
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400845 acpi_bus_generate_proc_event4(ACPI_BATTERY_CLASS,
846 bat->name,
847 ACPI_SBS_NOTIFY_STATUS,
848 bat->present);
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400849#endif
850 kobject_uevent(&bat->bat.dev->kobj, KOBJ_CHANGE);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400851 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400852 }
853}
854
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400855static int acpi_sbs_remove(struct acpi_device *device, int type);
Rich Townsend3f86b832006-07-01 11:36:54 -0400856
857static int acpi_sbs_add(struct acpi_device *device)
858{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400859 struct acpi_sbs *sbs;
860 int result = 0;
Vladimir Lebedev6d157022007-03-19 17:45:50 +0300861 int id;
Rich Townsend3f86b832006-07-01 11:36:54 -0400862
Burman Yan36bcbec2006-12-19 12:56:11 -0800863 sbs = kzalloc(sizeof(struct acpi_sbs), GFP_KERNEL);
Rich Townsend3f86b832006-07-01 11:36:54 -0400864 if (!sbs) {
Vladimir Lebedev72206232007-03-19 17:45:50 +0300865 result = -ENOMEM;
866 goto end;
Rich Townsend3f86b832006-07-01 11:36:54 -0400867 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400868
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400869 mutex_init(&sbs->lock);
Vladimir Lebedev72206232007-03-19 17:45:50 +0300870
Alexey Starikovskiy91087df2007-09-26 19:43:28 +0400871 sbs->hc = acpi_driver_data(device->parent);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400872 sbs->device = device;
Rich Townsend3f86b832006-07-01 11:36:54 -0400873 strcpy(acpi_device_name(device), ACPI_SBS_DEVICE_NAME);
874 strcpy(acpi_device_class(device), ACPI_SBS_CLASS);
875 acpi_driver_data(device) = sbs;
876
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400877 result = acpi_charger_add(sbs);
Vladimir Lebedev72206232007-03-19 17:45:50 +0300878 if (result)
879 goto end;
Rich Townsend3f86b832006-07-01 11:36:54 -0400880
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400881 result = acpi_manager_get_info(sbs);
882 if (!result) {
883 sbs->manager_present = 1;
884 for (id = 0; id < MAX_SBS_BAT; ++id)
885 if ((sbs->batteries_supported & (1 << id)))
886 acpi_battery_add(sbs, id);
887 } else
888 acpi_battery_add(sbs, 0);
889 acpi_smbus_register_callback(sbs->hc, acpi_sbs_callback, sbs);
Rich Townsend3f86b832006-07-01 11:36:54 -0400890 end:
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400891 if (result)
892 acpi_sbs_remove(device, 0);
Len Brown635227e2006-07-01 16:48:23 -0400893 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400894}
895
Vladimir Lebedev72206232007-03-19 17:45:50 +0300896static int acpi_sbs_remove(struct acpi_device *device, int type)
Rich Townsend3f86b832006-07-01 11:36:54 -0400897{
Len Browncece9012006-12-16 01:04:27 -0500898 struct acpi_sbs *sbs;
Rich Townsend3f86b832006-07-01 11:36:54 -0400899 int id;
900
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400901 if (!device)
Lebedev, Vladimir P963497c2006-09-05 19:49:13 +0400902 return -EINVAL;
Vladimir Lebedev72206232007-03-19 17:45:50 +0300903 sbs = acpi_driver_data(device);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400904 if (!sbs)
Len Brown635227e2006-07-01 16:48:23 -0400905 return -EINVAL;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400906 mutex_lock(&sbs->lock);
907 acpi_smbus_unregister_callback(sbs->hc);
908 for (id = 0; id < MAX_SBS_BAT; ++id)
Rich Townsend3f86b832006-07-01 11:36:54 -0400909 acpi_battery_remove(sbs, id);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400910 acpi_charger_remove(sbs);
911 mutex_unlock(&sbs->lock);
912 mutex_destroy(&sbs->lock);
Rich Townsend3f86b832006-07-01 11:36:54 -0400913 kfree(sbs);
Len Brown635227e2006-07-01 16:48:23 -0400914 return 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400915}
916
Vladimir Lebedev72206232007-03-19 17:45:50 +0300917static void acpi_sbs_rmdirs(void)
918{
919 if (acpi_ac_dir) {
920 acpi_unlock_ac_dir(acpi_ac_dir);
921 acpi_ac_dir = NULL;
922 }
923 if (acpi_battery_dir) {
924 acpi_unlock_battery_dir(acpi_battery_dir);
925 acpi_battery_dir = NULL;
926 }
927}
928
929static int acpi_sbs_resume(struct acpi_device *device)
930{
931 struct acpi_sbs *sbs;
Vladimir Lebedev72206232007-03-19 17:45:50 +0300932 if (!device)
933 return -EINVAL;
Vladimir Lebedev72206232007-03-19 17:45:50 +0300934 sbs = device->driver_data;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400935 acpi_sbs_callback(sbs);
Vladimir Lebedev72206232007-03-19 17:45:50 +0300936 return 0;
937}
938
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400939static struct acpi_driver acpi_sbs_driver = {
940 .name = "sbs",
941 .class = ACPI_SBS_CLASS,
942 .ids = sbs_device_ids,
943 .ops = {
944 .add = acpi_sbs_add,
945 .remove = acpi_sbs_remove,
946 .resume = acpi_sbs_resume,
947 },
948};
949
Rich Townsend3f86b832006-07-01 11:36:54 -0400950static int __init acpi_sbs_init(void)
951{
952 int result = 0;
953
Len Brownb20d2ae2006-08-15 23:21:37 -0400954 if (acpi_disabled)
955 return -ENODEV;
Rich Townsend3f86b832006-07-01 11:36:54 -0400956 acpi_ac_dir = acpi_lock_ac_dir();
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400957 if (!acpi_ac_dir)
Len Brown635227e2006-07-01 16:48:23 -0400958 return -ENODEV;
Rich Townsend3f86b832006-07-01 11:36:54 -0400959 acpi_battery_dir = acpi_lock_battery_dir();
960 if (!acpi_battery_dir) {
Vladimir Lebedev72206232007-03-19 17:45:50 +0300961 acpi_sbs_rmdirs();
Len Brown635227e2006-07-01 16:48:23 -0400962 return -ENODEV;
Rich Townsend3f86b832006-07-01 11:36:54 -0400963 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400964 result = acpi_bus_register_driver(&acpi_sbs_driver);
965 if (result < 0) {
Vladimir Lebedev72206232007-03-19 17:45:50 +0300966 acpi_sbs_rmdirs();
Len Brown635227e2006-07-01 16:48:23 -0400967 return -ENODEV;
Rich Townsend3f86b832006-07-01 11:36:54 -0400968 }
Len Brown635227e2006-07-01 16:48:23 -0400969 return 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400970}
971
972static void __exit acpi_sbs_exit(void)
973{
Rich Townsend3f86b832006-07-01 11:36:54 -0400974 acpi_bus_unregister_driver(&acpi_sbs_driver);
Vladimir Lebedev72206232007-03-19 17:45:50 +0300975 acpi_sbs_rmdirs();
Len Brown635227e2006-07-01 16:48:23 -0400976 return;
Rich Townsend3f86b832006-07-01 11:36:54 -0400977}
978
979module_init(acpi_sbs_init);
980module_exit(acpi_sbs_exit);