blob: 51ae3794ec7f895f16cb2cf4545f6f146860909f [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Rich Townsend3f86b832006-07-01 11:36:54 -040029#include <linux/module.h>
30#include <linux/moduleparam.h>
31#include <linux/kernel.h>
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +040032
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +030033#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -040034#include <linux/proc_fs.h>
35#include <linux/seq_file.h>
36#include <asm/uaccess.h>
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +040037#endif
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +040038
Rich Townsend3f86b832006-07-01 11:36:54 -040039#include <linux/acpi.h>
Vladimir Lebedev6d157022007-03-19 17:45:50 +030040#include <linux/timer.h>
Vladimir Lebedev72206232007-03-19 17:45:50 +030041#include <linux/jiffies.h>
Rich Townsend3f86b832006-07-01 11:36:54 -040042#include <linux/delay.h>
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
Len Browna192a952009-07-28 16:45:54 -040047#define PREFIX "ACPI: "
48
Rich Townsend3f86b832006-07-01 11:36:54 -040049#define ACPI_SBS_CLASS "sbs"
50#define ACPI_AC_CLASS "ac_adapter"
51#define ACPI_BATTERY_CLASS "battery"
Rich Townsend3f86b832006-07-01 11:36:54 -040052#define ACPI_SBS_DEVICE_NAME "Smart Battery System"
53#define ACPI_SBS_FILE_INFO "info"
54#define ACPI_SBS_FILE_STATE "state"
55#define ACPI_SBS_FILE_ALARM "alarm"
56#define ACPI_BATTERY_DIR_NAME "BAT%i"
57#define ACPI_AC_DIR_NAME "AC0"
Rich Townsend3f86b832006-07-01 11:36:54 -040058
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +040059#define ACPI_SBS_NOTIFY_STATUS 0x80
60#define ACPI_SBS_NOTIFY_INFO 0x81
Rich Townsend3f86b832006-07-01 11:36:54 -040061
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +040062MODULE_AUTHOR("Alexey Starikovskiy <astarikovskiy@suse.de>");
Rich Townsend3f86b832006-07-01 11:36:54 -040063MODULE_DESCRIPTION("Smart Battery System ACPI interface driver");
64MODULE_LICENSE("GPL");
65
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +040066static unsigned int cache_time = 1000;
67module_param(cache_time, uint, 0644);
68MODULE_PARM_DESC(cache_time, "cache time in milliseconds");
Vladimir Lebedev6d157022007-03-19 17:45:50 +030069
70extern struct proc_dir_entry *acpi_lock_ac_dir(void);
71extern struct proc_dir_entry *acpi_lock_battery_dir(void);
72extern void acpi_unlock_ac_dir(struct proc_dir_entry *acpi_ac_dir);
73extern void acpi_unlock_battery_dir(struct proc_dir_entry *acpi_battery_dir);
74
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +040075#define MAX_SBS_BAT 4
Vladimir Lebedev6d157022007-03-19 17:45:50 +030076#define ACPI_SBS_BLOCK_MAX 32
77
Thomas Renninger1ba90e32007-07-23 14:44:41 +020078static const struct acpi_device_id sbs_device_ids[] = {
Alexey Starikovskiy91087df2007-09-26 19:43:28 +040079 {"ACPI0002", 0},
Thomas Renninger1ba90e32007-07-23 14:44:41 +020080 {"", 0},
81};
82MODULE_DEVICE_TABLE(acpi, sbs_device_ids);
83
Alexey Starikovskiy89862e32007-09-26 19:43:35 +040084struct acpi_battery {
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +040085 struct power_supply bat;
Alexey Starikovskiy89862e32007-09-26 19:43:35 +040086 struct acpi_sbs *sbs;
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +030087#ifdef CONFIG_ACPI_PROCFS_POWER
Alexey Starikovskiy89862e32007-09-26 19:43:35 +040088 struct proc_dir_entry *proc_entry;
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +040089#endif
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;
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400103 s16 rate_now;
104 s16 rate_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;
Jeff Garzik037cbc62007-11-18 00:32:31 +0300112 u8 have_sysfs_alarm:1;
Rich Townsend3f86b832006-07-01 11:36:54 -0400113};
114
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400115#define to_acpi_battery(x) container_of(x, struct acpi_battery, bat);
116
Rich Townsend3f86b832006-07-01 11:36:54 -0400117struct acpi_sbs {
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400118 struct power_supply charger;
Rich Townsend3f86b832006-07-01 11:36:54 -0400119 struct acpi_device *device;
Alexey Starikovskiy91087df2007-09-26 19:43:28 +0400120 struct acpi_smb_hc *hc;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400121 struct mutex lock;
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300122#ifdef CONFIG_ACPI_PROCFS_POWER
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400123 struct proc_dir_entry *charger_entry;
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400124#endif
Rich Townsend3f86b832006-07-01 11:36:54 -0400125 struct acpi_battery battery[MAX_SBS_BAT];
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400126 u8 batteries_supported:4;
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400127 u8 manager_present:1;
128 u8 charger_present:1;
Rich Townsend3f86b832006-07-01 11:36:54 -0400129};
130
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400131#define to_acpi_sbs(x) container_of(x, struct acpi_sbs, charger)
132
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400133static inline int battery_scale(int log)
Vladimir Lebedev72206232007-03-19 17:45:50 +0300134{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400135 int scale = 1;
136 while (log--)
137 scale *= 10;
138 return scale;
Vladimir Lebedev72206232007-03-19 17:45:50 +0300139}
140
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400141static inline int acpi_battery_vscale(struct acpi_battery *battery)
Vladimir Lebedev72206232007-03-19 17:45:50 +0300142{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400143 return battery_scale((battery->spec & 0x0f00) >> 8);
Vladimir Lebedev72206232007-03-19 17:45:50 +0300144}
145
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400146static inline int acpi_battery_ipscale(struct acpi_battery *battery)
Vladimir Lebedev72206232007-03-19 17:45:50 +0300147{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400148 return battery_scale((battery->spec & 0xf000) >> 12);
149}
150
151static inline int acpi_battery_mode(struct acpi_battery *battery)
152{
153 return (battery->mode & 0x8000);
154}
155
156static inline int acpi_battery_scale(struct acpi_battery *battery)
157{
158 return (acpi_battery_mode(battery) ? 10 : 1) *
159 acpi_battery_ipscale(battery);
Vladimir Lebedev72206232007-03-19 17:45:50 +0300160}
161
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400162static int sbs_get_ac_property(struct power_supply *psy,
163 enum power_supply_property psp,
164 union power_supply_propval *val)
165{
166 struct acpi_sbs *sbs = to_acpi_sbs(psy);
167 switch (psp) {
168 case POWER_SUPPLY_PROP_ONLINE:
169 val->intval = sbs->charger_present;
170 break;
171 default:
172 return -EINVAL;
173 }
174 return 0;
175}
176
177static int acpi_battery_technology(struct acpi_battery *battery)
178{
179 if (!strcasecmp("NiCd", battery->device_chemistry))
180 return POWER_SUPPLY_TECHNOLOGY_NiCd;
181 if (!strcasecmp("NiMH", battery->device_chemistry))
182 return POWER_SUPPLY_TECHNOLOGY_NiMH;
183 if (!strcasecmp("LION", battery->device_chemistry))
184 return POWER_SUPPLY_TECHNOLOGY_LION;
185 if (!strcasecmp("LiP", battery->device_chemistry))
186 return POWER_SUPPLY_TECHNOLOGY_LIPO;
187 return POWER_SUPPLY_TECHNOLOGY_UNKNOWN;
188}
189
190static int acpi_sbs_battery_get_property(struct power_supply *psy,
191 enum power_supply_property psp,
192 union power_supply_propval *val)
193{
194 struct acpi_battery *battery = to_acpi_battery(psy);
195
196 if ((!battery->present) && psp != POWER_SUPPLY_PROP_PRESENT)
197 return -ENODEV;
198 switch (psp) {
199 case POWER_SUPPLY_PROP_STATUS:
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400200 if (battery->rate_now < 0)
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400201 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400202 else if (battery->rate_now > 0)
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400203 val->intval = POWER_SUPPLY_STATUS_CHARGING;
204 else
205 val->intval = POWER_SUPPLY_STATUS_FULL;
206 break;
207 case POWER_SUPPLY_PROP_PRESENT:
208 val->intval = battery->present;
209 break;
210 case POWER_SUPPLY_PROP_TECHNOLOGY:
211 val->intval = acpi_battery_technology(battery);
212 break;
Alexey Starikovskiy16698852009-10-15 14:31:37 +0400213 case POWER_SUPPLY_PROP_CYCLE_COUNT:
214 val->intval = battery->cycle_count;
215 break;
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400216 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:
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400225 case POWER_SUPPLY_PROP_POWER_NOW:
226 val->intval = abs(battery->rate_now) *
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400227 acpi_battery_ipscale(battery) * 1000;
228 break;
229 case POWER_SUPPLY_PROP_CURRENT_AVG:
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400230 case POWER_SUPPLY_PROP_POWER_AVG:
231 val->intval = abs(battery->rate_avg) *
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400232 acpi_battery_ipscale(battery) * 1000;
233 break;
234 case POWER_SUPPLY_PROP_CAPACITY:
235 val->intval = battery->state_of_charge;
236 break;
237 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
238 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
239 val->intval = battery->design_capacity *
240 acpi_battery_scale(battery) * 1000;
241 break;
242 case POWER_SUPPLY_PROP_CHARGE_FULL:
243 case POWER_SUPPLY_PROP_ENERGY_FULL:
244 val->intval = battery->full_charge_capacity *
245 acpi_battery_scale(battery) * 1000;
246 break;
247 case POWER_SUPPLY_PROP_CHARGE_NOW:
248 case POWER_SUPPLY_PROP_ENERGY_NOW:
249 val->intval = battery->capacity_now *
250 acpi_battery_scale(battery) * 1000;
251 break;
252 case POWER_SUPPLY_PROP_TEMP:
253 val->intval = battery->temp_now - 2730; // dK -> dC
254 break;
255 case POWER_SUPPLY_PROP_MODEL_NAME:
256 val->strval = battery->device_name;
257 break;
258 case POWER_SUPPLY_PROP_MANUFACTURER:
259 val->strval = battery->manufacturer_name;
260 break;
261 default:
262 return -EINVAL;
263 }
264 return 0;
265}
266
267static enum power_supply_property sbs_ac_props[] = {
268 POWER_SUPPLY_PROP_ONLINE,
269};
270
271static enum power_supply_property sbs_charge_battery_props[] = {
272 POWER_SUPPLY_PROP_STATUS,
273 POWER_SUPPLY_PROP_PRESENT,
274 POWER_SUPPLY_PROP_TECHNOLOGY,
Alexey Starikovskiy16698852009-10-15 14:31:37 +0400275 POWER_SUPPLY_PROP_CYCLE_COUNT,
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400276 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
277 POWER_SUPPLY_PROP_VOLTAGE_NOW,
278 POWER_SUPPLY_PROP_CURRENT_NOW,
279 POWER_SUPPLY_PROP_CURRENT_AVG,
280 POWER_SUPPLY_PROP_CAPACITY,
281 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
282 POWER_SUPPLY_PROP_CHARGE_FULL,
283 POWER_SUPPLY_PROP_CHARGE_NOW,
284 POWER_SUPPLY_PROP_TEMP,
285 POWER_SUPPLY_PROP_MODEL_NAME,
286 POWER_SUPPLY_PROP_MANUFACTURER,
287};
288
289static enum power_supply_property sbs_energy_battery_props[] = {
290 POWER_SUPPLY_PROP_STATUS,
291 POWER_SUPPLY_PROP_PRESENT,
292 POWER_SUPPLY_PROP_TECHNOLOGY,
293 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
294 POWER_SUPPLY_PROP_VOLTAGE_NOW,
295 POWER_SUPPLY_PROP_CURRENT_NOW,
296 POWER_SUPPLY_PROP_CURRENT_AVG,
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400297 POWER_SUPPLY_PROP_POWER_NOW,
298 POWER_SUPPLY_PROP_POWER_AVG,
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400299 POWER_SUPPLY_PROP_CAPACITY,
300 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN,
301 POWER_SUPPLY_PROP_ENERGY_FULL,
302 POWER_SUPPLY_PROP_ENERGY_NOW,
303 POWER_SUPPLY_PROP_TEMP,
304 POWER_SUPPLY_PROP_MODEL_NAME,
305 POWER_SUPPLY_PROP_MANUFACTURER,
306};
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400307
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400308
Rich Townsend3f86b832006-07-01 11:36:54 -0400309/* --------------------------------------------------------------------------
310 Smart Battery System Management
311 -------------------------------------------------------------------------- */
312
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400313struct acpi_battery_reader {
314 u8 command; /* command for battery */
315 u8 mode; /* word or block? */
316 size_t offset; /* offset inside struct acpi_sbs_battery */
317};
Vladimir Lebedev72206232007-03-19 17:45:50 +0300318
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400319static struct acpi_battery_reader info_readers[] = {
320 {0x01, SMBUS_READ_WORD, offsetof(struct acpi_battery, alarm_capacity)},
321 {0x03, SMBUS_READ_WORD, offsetof(struct acpi_battery, mode)},
322 {0x10, SMBUS_READ_WORD, offsetof(struct acpi_battery, full_charge_capacity)},
323 {0x17, SMBUS_READ_WORD, offsetof(struct acpi_battery, cycle_count)},
324 {0x18, SMBUS_READ_WORD, offsetof(struct acpi_battery, design_capacity)},
325 {0x19, SMBUS_READ_WORD, offsetof(struct acpi_battery, design_voltage)},
326 {0x1a, SMBUS_READ_WORD, offsetof(struct acpi_battery, spec)},
327 {0x1c, SMBUS_READ_WORD, offsetof(struct acpi_battery, serial_number)},
328 {0x20, SMBUS_READ_BLOCK, offsetof(struct acpi_battery, manufacturer_name)},
329 {0x21, SMBUS_READ_BLOCK, offsetof(struct acpi_battery, device_name)},
330 {0x22, SMBUS_READ_BLOCK, offsetof(struct acpi_battery, device_chemistry)},
331};
Rich Townsend3f86b832006-07-01 11:36:54 -0400332
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400333static struct acpi_battery_reader state_readers[] = {
334 {0x08, SMBUS_READ_WORD, offsetof(struct acpi_battery, temp_now)},
335 {0x09, SMBUS_READ_WORD, offsetof(struct acpi_battery, voltage_now)},
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400336 {0x0a, SMBUS_READ_WORD, offsetof(struct acpi_battery, rate_now)},
337 {0x0b, SMBUS_READ_WORD, offsetof(struct acpi_battery, rate_avg)},
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400338 {0x0f, SMBUS_READ_WORD, offsetof(struct acpi_battery, capacity_now)},
339 {0x0e, SMBUS_READ_WORD, offsetof(struct acpi_battery, state_of_charge)},
340 {0x16, SMBUS_READ_WORD, offsetof(struct acpi_battery, state)},
341};
Rich Townsend3f86b832006-07-01 11:36:54 -0400342
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400343static int acpi_manager_get_info(struct acpi_sbs *sbs)
Rich Townsend3f86b832006-07-01 11:36:54 -0400344{
Rich Townsend3f86b832006-07-01 11:36:54 -0400345 int result = 0;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400346 u16 battery_system_info;
Rich Townsend3f86b832006-07-01 11:36:54 -0400347
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400348 result = acpi_smbus_read(sbs->hc, SMBUS_READ_WORD, ACPI_SBS_MANAGER,
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400349 0x04, (u8 *)&battery_system_info);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400350 if (!result)
351 sbs->batteries_supported = battery_system_info & 0x000f;
Len Brown635227e2006-07-01 16:48:23 -0400352 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400353}
354
355static int acpi_battery_get_info(struct acpi_battery *battery)
356{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400357 int i, result = 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400358
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400359 for (i = 0; i < ARRAY_SIZE(info_readers); ++i) {
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400360 result = acpi_smbus_read(battery->sbs->hc,
361 info_readers[i].mode,
362 ACPI_SBS_BATTERY,
363 info_readers[i].command,
364 (u8 *) battery +
365 info_readers[i].offset);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400366 if (result)
367 break;
Rich Townsend3f86b832006-07-01 11:36:54 -0400368 }
Len Brown635227e2006-07-01 16:48:23 -0400369 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400370}
371
Rich Townsend3f86b832006-07-01 11:36:54 -0400372static int acpi_battery_get_state(struct acpi_battery *battery)
373{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400374 int i, result = 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400375
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400376 if (battery->update_time &&
377 time_before(jiffies, battery->update_time +
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400378 msecs_to_jiffies(cache_time)))
379 return 0;
380 for (i = 0; i < ARRAY_SIZE(state_readers); ++i) {
381 result = acpi_smbus_read(battery->sbs->hc,
382 state_readers[i].mode,
383 ACPI_SBS_BATTERY,
384 state_readers[i].command,
385 (u8 *)battery +
386 state_readers[i].offset);
387 if (result)
388 goto end;
Rich Townsend3f86b832006-07-01 11:36:54 -0400389 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400390 end:
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400391 battery->update_time = jiffies;
Len Brown635227e2006-07-01 16:48:23 -0400392 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400393}
394
395static int acpi_battery_get_alarm(struct acpi_battery *battery)
396{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400397 return acpi_smbus_read(battery->sbs->hc, SMBUS_READ_WORD,
398 ACPI_SBS_BATTERY, 0x01,
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400399 (u8 *)&battery->alarm_capacity);
Rich Townsend3f86b832006-07-01 11:36:54 -0400400}
401
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400402static int acpi_battery_set_alarm(struct acpi_battery *battery)
Rich Townsend3f86b832006-07-01 11:36:54 -0400403{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400404 struct acpi_sbs *sbs = battery->sbs;
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400405 u16 value, sel = 1 << (battery->id + 12);
406
407 int ret;
408
Rich Townsend3f86b832006-07-01 11:36:54 -0400409
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400410 if (sbs->manager_present) {
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400411 ret = acpi_smbus_read(sbs->hc, SMBUS_READ_WORD, ACPI_SBS_MANAGER,
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400412 0x01, (u8 *)&value);
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400413 if (ret)
414 goto end;
415 if ((value & 0xf000) != sel) {
416 value &= 0x0fff;
417 value |= sel;
418 ret = acpi_smbus_write(sbs->hc, SMBUS_WRITE_WORD,
419 ACPI_SBS_MANAGER,
420 0x01, (u8 *)&value, 2);
421 if (ret)
422 goto end;
423 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400424 }
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400425 ret = acpi_smbus_write(sbs->hc, SMBUS_WRITE_WORD, ACPI_SBS_BATTERY,
426 0x01, (u8 *)&battery->alarm_capacity, 2);
427 end:
428 return ret;
Rich Townsend3f86b832006-07-01 11:36:54 -0400429}
430
431static int acpi_ac_get_present(struct acpi_sbs *sbs)
432{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400433 int result;
434 u16 status;
Rich Townsend3f86b832006-07-01 11:36:54 -0400435
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400436 result = acpi_smbus_read(sbs->hc, SMBUS_READ_WORD, ACPI_SBS_CHARGER,
437 0x13, (u8 *) & status);
438 if (!result)
439 sbs->charger_present = (status >> 15) & 0x1;
Len Brown635227e2006-07-01 16:48:23 -0400440 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400441}
442
Alexey Starikovskiy8bd95532007-09-26 19:44:00 +0400443static ssize_t acpi_battery_alarm_show(struct device *dev,
444 struct device_attribute *attr,
445 char *buf)
446{
447 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
448 acpi_battery_get_alarm(battery);
449 return sprintf(buf, "%d\n", battery->alarm_capacity *
450 acpi_battery_scale(battery) * 1000);
451}
452
453static ssize_t acpi_battery_alarm_store(struct device *dev,
454 struct device_attribute *attr,
455 const char *buf, size_t count)
456{
457 unsigned long x;
458 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
459 if (sscanf(buf, "%ld\n", &x) == 1)
460 battery->alarm_capacity = x /
461 (1000 * acpi_battery_scale(battery));
462 if (battery->present)
463 acpi_battery_set_alarm(battery);
464 return count;
465}
466
467static struct device_attribute alarm_attr = {
Parag Warudkar01e8ef12008-10-18 20:28:50 -0700468 .attr = {.name = "alarm", .mode = 0644},
Alexey Starikovskiy8bd95532007-09-26 19:44:00 +0400469 .show = acpi_battery_alarm_show,
470 .store = acpi_battery_alarm_store,
471};
472
Rich Townsend3f86b832006-07-01 11:36:54 -0400473/* --------------------------------------------------------------------------
474 FS Interface (/proc/acpi)
475 -------------------------------------------------------------------------- */
476
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300477#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400478/* Generic Routines */
Rich Townsend3f86b832006-07-01 11:36:54 -0400479static int
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400480acpi_sbs_add_fs(struct proc_dir_entry **dir,
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400481 struct proc_dir_entry *parent_dir,
482 char *dir_name,
Jan Engelhardt070d8eb2009-01-12 00:07:55 +0100483 const struct file_operations *info_fops,
484 const struct file_operations *state_fops,
485 const struct file_operations *alarm_fops, void *data)
Rich Townsend3f86b832006-07-01 11:36:54 -0400486{
Zhang Rui6d855fc2011-01-10 11:16:30 +0800487 printk(KERN_WARNING PREFIX "Deprecated procfs I/F for SBS is loaded,"
488 " please retry with CONFIG_ACPI_PROCFS_POWER cleared\n");
Rich Townsend3f86b832006-07-01 11:36:54 -0400489 if (!*dir) {
490 *dir = proc_mkdir(dir_name, parent_dir);
491 if (!*dir) {
Len Brown635227e2006-07-01 16:48:23 -0400492 return -ENODEV;
Rich Townsend3f86b832006-07-01 11:36:54 -0400493 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400494 }
495
496 /* 'info' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700497 if (info_fops)
498 proc_create_data(ACPI_SBS_FILE_INFO, S_IRUGO, *dir,
499 info_fops, data);
Rich Townsend3f86b832006-07-01 11:36:54 -0400500
501 /* 'state' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700502 if (state_fops)
503 proc_create_data(ACPI_SBS_FILE_STATE, S_IRUGO, *dir,
504 state_fops, data);
Rich Townsend3f86b832006-07-01 11:36:54 -0400505
506 /* 'alarm' [R/W] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700507 if (alarm_fops)
508 proc_create_data(ACPI_SBS_FILE_ALARM, S_IRUGO, *dir,
509 alarm_fops, data);
Len Brown635227e2006-07-01 16:48:23 -0400510 return 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400511}
512
513static void
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400514acpi_sbs_remove_fs(struct proc_dir_entry **dir,
Rich Townsend3f86b832006-07-01 11:36:54 -0400515 struct proc_dir_entry *parent_dir)
516{
Rich Townsend3f86b832006-07-01 11:36:54 -0400517 if (*dir) {
518 remove_proc_entry(ACPI_SBS_FILE_INFO, *dir);
519 remove_proc_entry(ACPI_SBS_FILE_STATE, *dir);
520 remove_proc_entry(ACPI_SBS_FILE_ALARM, *dir);
521 remove_proc_entry((*dir)->name, parent_dir);
522 *dir = NULL;
523 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400524}
525
526/* Smart Battery Interface */
Rich Townsend3f86b832006-07-01 11:36:54 -0400527static struct proc_dir_entry *acpi_battery_dir = NULL;
528
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400529static inline char *acpi_battery_units(struct acpi_battery *battery)
530{
Alexey Starikovskiy5a21e4f2007-12-08 13:02:46 +0300531 return acpi_battery_mode(battery) ? " mW" : " mA";
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400532}
533
534
Rich Townsend3f86b832006-07-01 11:36:54 -0400535static int acpi_battery_read_info(struct seq_file *seq, void *offset)
536{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200537 struct acpi_battery *battery = seq->private;
Vladimir Lebedev72206232007-03-19 17:45:50 +0300538 struct acpi_sbs *sbs = battery->sbs;
Rich Townsend3f86b832006-07-01 11:36:54 -0400539 int result = 0;
540
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400541 mutex_lock(&sbs->lock);
Rich Townsend3f86b832006-07-01 11:36:54 -0400542
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400543 seq_printf(seq, "present: %s\n",
544 (battery->present) ? "yes" : "no");
545 if (!battery->present)
Vladimir Lebedev72206232007-03-19 17:45:50 +0300546 goto end;
Rich Townsend3f86b832006-07-01 11:36:54 -0400547
Alexey Starikovskiy5a21e4f2007-12-08 13:02:46 +0300548 seq_printf(seq, "design capacity: %i%sh\n",
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400549 battery->design_capacity * acpi_battery_scale(battery),
550 acpi_battery_units(battery));
Alexey Starikovskiy5a21e4f2007-12-08 13:02:46 +0300551 seq_printf(seq, "last full capacity: %i%sh\n",
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400552 battery->full_charge_capacity * acpi_battery_scale(battery),
553 acpi_battery_units(battery));
Rich Townsend3f86b832006-07-01 11:36:54 -0400554 seq_printf(seq, "battery technology: rechargeable\n");
Rich Townsend3f86b832006-07-01 11:36:54 -0400555 seq_printf(seq, "design voltage: %i mV\n",
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400556 battery->design_voltage * acpi_battery_vscale(battery));
Rich Townsend3f86b832006-07-01 11:36:54 -0400557 seq_printf(seq, "design capacity warning: unknown\n");
558 seq_printf(seq, "design capacity low: unknown\n");
Alexey Starikovskiy16698852009-10-15 14:31:37 +0400559 seq_printf(seq, "cycle count: %i\n", battery->cycle_count);
Rich Townsend3f86b832006-07-01 11:36:54 -0400560 seq_printf(seq, "capacity granularity 1: unknown\n");
561 seq_printf(seq, "capacity granularity 2: unknown\n");
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400562 seq_printf(seq, "model number: %s\n", battery->device_name);
Rich Townsend3f86b832006-07-01 11:36:54 -0400563 seq_printf(seq, "serial number: %i\n",
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400564 battery->serial_number);
Rich Townsend3f86b832006-07-01 11:36:54 -0400565 seq_printf(seq, "battery type: %s\n",
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400566 battery->device_chemistry);
Rich Townsend3f86b832006-07-01 11:36:54 -0400567 seq_printf(seq, "OEM info: %s\n",
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400568 battery->manufacturer_name);
Rich Townsend3f86b832006-07-01 11:36:54 -0400569 end:
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400570 mutex_unlock(&sbs->lock);
Len Brown635227e2006-07-01 16:48:23 -0400571 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400572}
573
574static int acpi_battery_info_open_fs(struct inode *inode, struct file *file)
575{
576 return single_open(file, acpi_battery_read_info, PDE(inode)->data);
577}
578
579static int acpi_battery_read_state(struct seq_file *seq, void *offset)
580{
Vladimir Lebedev72206232007-03-19 17:45:50 +0300581 struct acpi_battery *battery = seq->private;
582 struct acpi_sbs *sbs = battery->sbs;
Alexey Starikovskiy5a21e4f2007-12-08 13:02:46 +0300583 int rate;
Rich Townsend3f86b832006-07-01 11:36:54 -0400584
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400585 mutex_lock(&sbs->lock);
586 seq_printf(seq, "present: %s\n",
587 (battery->present) ? "yes" : "no");
588 if (!battery->present)
Vladimir Lebedev72206232007-03-19 17:45:50 +0300589 goto end;
Rich Townsend3f86b832006-07-01 11:36:54 -0400590
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400591 acpi_battery_get_state(battery);
592 seq_printf(seq, "capacity state: %s\n",
593 (battery->state & 0x0010) ? "critical" : "ok");
594 seq_printf(seq, "charging state: %s\n",
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400595 (battery->rate_now < 0) ? "discharging" :
596 ((battery->rate_now > 0) ? "charging" : "charged"));
597 rate = abs(battery->rate_now) * acpi_battery_ipscale(battery);
Alexey Starikovskiy5a21e4f2007-12-08 13:02:46 +0300598 rate *= (acpi_battery_mode(battery))?(battery->voltage_now *
599 acpi_battery_vscale(battery)/1000):1;
600 seq_printf(seq, "present rate: %d%s\n", rate,
601 acpi_battery_units(battery));
602 seq_printf(seq, "remaining capacity: %i%sh\n",
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400603 battery->capacity_now * acpi_battery_scale(battery),
604 acpi_battery_units(battery));
Rich Townsend3f86b832006-07-01 11:36:54 -0400605 seq_printf(seq, "present voltage: %i mV\n",
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400606 battery->voltage_now * acpi_battery_vscale(battery));
Rich Townsend3f86b832006-07-01 11:36:54 -0400607
608 end:
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400609 mutex_unlock(&sbs->lock);
Alexey Starikovskiy5a21e4f2007-12-08 13:02:46 +0300610 return 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400611}
612
613static int acpi_battery_state_open_fs(struct inode *inode, struct file *file)
614{
615 return single_open(file, acpi_battery_read_state, PDE(inode)->data);
616}
617
618static int acpi_battery_read_alarm(struct seq_file *seq, void *offset)
619{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200620 struct acpi_battery *battery = seq->private;
Vladimir Lebedev72206232007-03-19 17:45:50 +0300621 struct acpi_sbs *sbs = battery->sbs;
Rich Townsend3f86b832006-07-01 11:36:54 -0400622 int result = 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400623
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400624 mutex_lock(&sbs->lock);
Rich Townsend3f86b832006-07-01 11:36:54 -0400625
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400626 if (!battery->present) {
Rich Townsend3f86b832006-07-01 11:36:54 -0400627 seq_printf(seq, "present: no\n");
628 goto end;
629 }
630
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400631 acpi_battery_get_alarm(battery);
Rich Townsend3f86b832006-07-01 11:36:54 -0400632 seq_printf(seq, "alarm: ");
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400633 if (battery->alarm_capacity)
Alexey Starikovskiy5a21e4f2007-12-08 13:02:46 +0300634 seq_printf(seq, "%i%sh\n",
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400635 battery->alarm_capacity *
636 acpi_battery_scale(battery),
637 acpi_battery_units(battery));
638 else
Rich Townsend3f86b832006-07-01 11:36:54 -0400639 seq_printf(seq, "disabled\n");
Rich Townsend3f86b832006-07-01 11:36:54 -0400640 end:
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400641 mutex_unlock(&sbs->lock);
Len Brown635227e2006-07-01 16:48:23 -0400642 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400643}
644
645static ssize_t
646acpi_battery_write_alarm(struct file *file, const char __user * buffer,
647 size_t count, loff_t * ppos)
648{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200649 struct seq_file *seq = file->private_data;
650 struct acpi_battery *battery = seq->private;
Vladimir Lebedev72206232007-03-19 17:45:50 +0300651 struct acpi_sbs *sbs = battery->sbs;
Rich Townsend3f86b832006-07-01 11:36:54 -0400652 char alarm_string[12] = { '\0' };
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400653 int result = 0;
654 mutex_lock(&sbs->lock);
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400655 if (!battery->present) {
Rich Townsend3f86b832006-07-01 11:36:54 -0400656 result = -ENODEV;
657 goto end;
658 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400659 if (count > sizeof(alarm_string) - 1) {
660 result = -EINVAL;
661 goto end;
662 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400663 if (copy_from_user(alarm_string, buffer, count)) {
664 result = -EFAULT;
665 goto end;
666 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400667 alarm_string[count] = 0;
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400668 battery->alarm_capacity = simple_strtoul(alarm_string, NULL, 0) /
669 acpi_battery_scale(battery);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400670 acpi_battery_set_alarm(battery);
Rich Townsend3f86b832006-07-01 11:36:54 -0400671 end:
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400672 mutex_unlock(&sbs->lock);
673 if (result)
Len Brown635227e2006-07-01 16:48:23 -0400674 return result;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400675 return count;
Rich Townsend3f86b832006-07-01 11:36:54 -0400676}
677
678static int acpi_battery_alarm_open_fs(struct inode *inode, struct file *file)
679{
680 return single_open(file, acpi_battery_read_alarm, PDE(inode)->data);
681}
682
Jan Engelhardt070d8eb2009-01-12 00:07:55 +0100683static const struct file_operations acpi_battery_info_fops = {
Rich Townsend3f86b832006-07-01 11:36:54 -0400684 .open = acpi_battery_info_open_fs,
685 .read = seq_read,
686 .llseek = seq_lseek,
687 .release = single_release,
688 .owner = THIS_MODULE,
689};
690
Jan Engelhardt070d8eb2009-01-12 00:07:55 +0100691static const struct file_operations acpi_battery_state_fops = {
Rich Townsend3f86b832006-07-01 11:36:54 -0400692 .open = acpi_battery_state_open_fs,
693 .read = seq_read,
694 .llseek = seq_lseek,
695 .release = single_release,
696 .owner = THIS_MODULE,
697};
698
Jan Engelhardt070d8eb2009-01-12 00:07:55 +0100699static const struct file_operations acpi_battery_alarm_fops = {
Rich Townsend3f86b832006-07-01 11:36:54 -0400700 .open = acpi_battery_alarm_open_fs,
701 .read = seq_read,
702 .write = acpi_battery_write_alarm,
703 .llseek = seq_lseek,
704 .release = single_release,
705 .owner = THIS_MODULE,
706};
707
708/* Legacy AC Adapter Interface */
709
710static struct proc_dir_entry *acpi_ac_dir = NULL;
711
712static int acpi_ac_read_state(struct seq_file *seq, void *offset)
713{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400714
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200715 struct acpi_sbs *sbs = seq->private;
Rich Townsend3f86b832006-07-01 11:36:54 -0400716
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400717 mutex_lock(&sbs->lock);
Rich Townsend3f86b832006-07-01 11:36:54 -0400718
719 seq_printf(seq, "state: %s\n",
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400720 sbs->charger_present ? "on-line" : "off-line");
Rich Townsend3f86b832006-07-01 11:36:54 -0400721
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400722 mutex_unlock(&sbs->lock);
Len Brown635227e2006-07-01 16:48:23 -0400723 return 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400724}
725
726static int acpi_ac_state_open_fs(struct inode *inode, struct file *file)
727{
728 return single_open(file, acpi_ac_read_state, PDE(inode)->data);
729}
730
Jan Engelhardt070d8eb2009-01-12 00:07:55 +0100731static const struct file_operations acpi_ac_state_fops = {
Rich Townsend3f86b832006-07-01 11:36:54 -0400732 .open = acpi_ac_state_open_fs,
733 .read = seq_read,
734 .llseek = seq_lseek,
735 .release = single_release,
736 .owner = THIS_MODULE,
737};
738
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400739#endif
740
Rich Townsend3f86b832006-07-01 11:36:54 -0400741/* --------------------------------------------------------------------------
742 Driver Interface
743 -------------------------------------------------------------------------- */
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400744static int acpi_battery_read(struct acpi_battery *battery)
745{
746 int result = 0, saved_present = battery->present;
747 u16 state;
748
749 if (battery->sbs->manager_present) {
750 result = acpi_smbus_read(battery->sbs->hc, SMBUS_READ_WORD,
751 ACPI_SBS_MANAGER, 0x01, (u8 *)&state);
752 if (!result)
753 battery->present = state & (1 << battery->id);
754 state &= 0x0fff;
755 state |= 1 << (battery->id + 12);
756 acpi_smbus_write(battery->sbs->hc, SMBUS_WRITE_WORD,
757 ACPI_SBS_MANAGER, 0x01, (u8 *)&state, 2);
758 } else if (battery->id == 0)
759 battery->present = 1;
760 if (result || !battery->present)
761 return result;
762
763 if (saved_present != battery->present) {
764 battery->update_time = 0;
765 result = acpi_battery_get_info(battery);
766 if (result)
767 return result;
768 }
769 result = acpi_battery_get_state(battery);
770 return result;
771}
772
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400773/* Smart Battery */
Rich Townsend3f86b832006-07-01 11:36:54 -0400774static int acpi_battery_add(struct acpi_sbs *sbs, int id)
775{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400776 struct acpi_battery *battery = &sbs->battery[id];
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400777 int result;
778
Rich Townsend3f86b832006-07-01 11:36:54 -0400779 battery->id = id;
780 battery->sbs = sbs;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400781 result = acpi_battery_read(battery);
782 if (result)
783 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400784
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400785 sprintf(battery->name, ACPI_BATTERY_DIR_NAME, id);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300786#ifdef CONFIG_ACPI_PROCFS_POWER
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400787 acpi_sbs_add_fs(&battery->proc_entry, acpi_battery_dir,
788 battery->name, &acpi_battery_info_fops,
789 &acpi_battery_state_fops, &acpi_battery_alarm_fops,
790 battery);
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400791#endif
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400792 battery->bat.name = battery->name;
793 battery->bat.type = POWER_SUPPLY_TYPE_BATTERY;
794 if (!acpi_battery_mode(battery)) {
795 battery->bat.properties = sbs_charge_battery_props;
796 battery->bat.num_properties =
797 ARRAY_SIZE(sbs_charge_battery_props);
798 } else {
799 battery->bat.properties = sbs_energy_battery_props;
800 battery->bat.num_properties =
801 ARRAY_SIZE(sbs_energy_battery_props);
802 }
803 battery->bat.get_property = acpi_sbs_battery_get_property;
804 result = power_supply_register(&sbs->device->dev, &battery->bat);
Jeff Garzik037cbc62007-11-18 00:32:31 +0300805 if (result)
806 goto end;
807 result = device_create_file(battery->bat.dev, &alarm_attr);
808 if (result)
809 goto end;
810 battery->have_sysfs_alarm = 1;
811 end:
Vladimir Lebedev72206232007-03-19 17:45:50 +0300812 printk(KERN_INFO PREFIX "%s [%s]: Battery Slot [%s] (battery %s)\n",
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400813 ACPI_SBS_DEVICE_NAME, acpi_device_bid(sbs->device),
Alexey Starikovskiybbafbec2008-02-09 03:22:13 -0500814 battery->name, battery->present ? "present" : "absent");
Len Brown635227e2006-07-01 16:48:23 -0400815 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400816}
817
818static void acpi_battery_remove(struct acpi_sbs *sbs, int id)
819{
Jeff Garzik037cbc62007-11-18 00:32:31 +0300820 struct acpi_battery *battery = &sbs->battery[id];
Rakib Mullickc19bdb62010-01-03 19:27:56 +0600821
Jeff Garzik037cbc62007-11-18 00:32:31 +0300822 if (battery->bat.dev) {
823 if (battery->have_sysfs_alarm)
824 device_remove_file(battery->bat.dev, &alarm_attr);
825 power_supply_unregister(&battery->bat);
Rich Townsend3f86b832006-07-01 11:36:54 -0400826 }
Len Brownc2e46d22007-11-20 01:20:00 -0500827#ifdef CONFIG_ACPI_PROCFS_POWER
Jeff Garzik037cbc62007-11-18 00:32:31 +0300828 if (battery->proc_entry)
829 acpi_sbs_remove_fs(&battery->proc_entry, acpi_battery_dir);
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400830#endif
Rich Townsend3f86b832006-07-01 11:36:54 -0400831}
832
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400833static int acpi_charger_add(struct acpi_sbs *sbs)
Rich Townsend3f86b832006-07-01 11:36:54 -0400834{
835 int result;
836
Rich Townsend3f86b832006-07-01 11:36:54 -0400837 result = acpi_ac_get_present(sbs);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400838 if (result)
Rich Townsend3f86b832006-07-01 11:36:54 -0400839 goto end;
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300840#ifdef CONFIG_ACPI_PROCFS_POWER
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400841 result = acpi_sbs_add_fs(&sbs->charger_entry, acpi_ac_dir,
842 ACPI_AC_DIR_NAME, NULL,
843 &acpi_ac_state_fops, NULL, sbs);
844 if (result)
Rich Townsend3f86b832006-07-01 11:36:54 -0400845 goto end;
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400846#endif
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400847 sbs->charger.name = "sbs-charger";
848 sbs->charger.type = POWER_SUPPLY_TYPE_MAINS;
849 sbs->charger.properties = sbs_ac_props;
850 sbs->charger.num_properties = ARRAY_SIZE(sbs_ac_props);
851 sbs->charger.get_property = sbs_get_ac_property;
852 power_supply_register(&sbs->device->dev, &sbs->charger);
Vladimir Lebedev72206232007-03-19 17:45:50 +0300853 printk(KERN_INFO PREFIX "%s [%s]: AC Adapter [%s] (%s)\n",
854 ACPI_SBS_DEVICE_NAME, acpi_device_bid(sbs->device),
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400855 ACPI_AC_DIR_NAME, sbs->charger_present ? "on-line" : "off-line");
Rich Townsend3f86b832006-07-01 11:36:54 -0400856 end:
Len Brown635227e2006-07-01 16:48:23 -0400857 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400858}
859
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400860static void acpi_charger_remove(struct acpi_sbs *sbs)
Rich Townsend3f86b832006-07-01 11:36:54 -0400861{
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400862 if (sbs->charger.dev)
863 power_supply_unregister(&sbs->charger);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300864#ifdef CONFIG_ACPI_PROCFS_POWER
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400865 if (sbs->charger_entry)
866 acpi_sbs_remove_fs(&sbs->charger_entry, acpi_ac_dir);
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400867#endif
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400868}
869
Adrian Bunke5685b92007-10-24 18:24:42 +0200870static void acpi_sbs_callback(void *context)
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400871{
872 int id;
873 struct acpi_sbs *sbs = context;
874 struct acpi_battery *bat;
875 u8 saved_charger_state = sbs->charger_present;
876 u8 saved_battery_state;
877 acpi_ac_get_present(sbs);
878 if (sbs->charger_present != saved_charger_state) {
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400879#ifdef CONFIG_ACPI_PROC_EVENT
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400880 acpi_bus_generate_proc_event4(ACPI_AC_CLASS, ACPI_AC_DIR_NAME,
881 ACPI_SBS_NOTIFY_STATUS,
882 sbs->charger_present);
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400883#endif
884 kobject_uevent(&sbs->charger.dev->kobj, KOBJ_CHANGE);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400885 }
886 if (sbs->manager_present) {
887 for (id = 0; id < MAX_SBS_BAT; ++id) {
888 if (!(sbs->batteries_supported & (1 << id)))
889 continue;
890 bat = &sbs->battery[id];
891 saved_battery_state = bat->present;
892 acpi_battery_read(bat);
893 if (saved_battery_state == bat->present)
894 continue;
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400895#ifdef CONFIG_ACPI_PROC_EVENT
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400896 acpi_bus_generate_proc_event4(ACPI_BATTERY_CLASS,
897 bat->name,
898 ACPI_SBS_NOTIFY_STATUS,
899 bat->present);
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400900#endif
901 kobject_uevent(&bat->bat.dev->kobj, KOBJ_CHANGE);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400902 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400903 }
904}
905
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400906static int acpi_sbs_remove(struct acpi_device *device, int type);
Rich Townsend3f86b832006-07-01 11:36:54 -0400907
908static int acpi_sbs_add(struct acpi_device *device)
909{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400910 struct acpi_sbs *sbs;
911 int result = 0;
Vladimir Lebedev6d157022007-03-19 17:45:50 +0300912 int id;
Rich Townsend3f86b832006-07-01 11:36:54 -0400913
Burman Yan36bcbec2006-12-19 12:56:11 -0800914 sbs = kzalloc(sizeof(struct acpi_sbs), GFP_KERNEL);
Rich Townsend3f86b832006-07-01 11:36:54 -0400915 if (!sbs) {
Vladimir Lebedev72206232007-03-19 17:45:50 +0300916 result = -ENOMEM;
917 goto end;
Rich Townsend3f86b832006-07-01 11:36:54 -0400918 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400919
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400920 mutex_init(&sbs->lock);
Vladimir Lebedev72206232007-03-19 17:45:50 +0300921
Alexey Starikovskiy91087df2007-09-26 19:43:28 +0400922 sbs->hc = acpi_driver_data(device->parent);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400923 sbs->device = device;
Rich Townsend3f86b832006-07-01 11:36:54 -0400924 strcpy(acpi_device_name(device), ACPI_SBS_DEVICE_NAME);
925 strcpy(acpi_device_class(device), ACPI_SBS_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700926 device->driver_data = sbs;
Rich Townsend3f86b832006-07-01 11:36:54 -0400927
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400928 result = acpi_charger_add(sbs);
Vladimir Lebedev72206232007-03-19 17:45:50 +0300929 if (result)
930 goto end;
Rich Townsend3f86b832006-07-01 11:36:54 -0400931
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400932 result = acpi_manager_get_info(sbs);
933 if (!result) {
934 sbs->manager_present = 1;
935 for (id = 0; id < MAX_SBS_BAT; ++id)
936 if ((sbs->batteries_supported & (1 << id)))
937 acpi_battery_add(sbs, id);
938 } else
939 acpi_battery_add(sbs, 0);
940 acpi_smbus_register_callback(sbs->hc, acpi_sbs_callback, sbs);
Rich Townsend3f86b832006-07-01 11:36:54 -0400941 end:
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400942 if (result)
943 acpi_sbs_remove(device, 0);
Len Brown635227e2006-07-01 16:48:23 -0400944 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400945}
946
Vladimir Lebedev72206232007-03-19 17:45:50 +0300947static int acpi_sbs_remove(struct acpi_device *device, int type)
Rich Townsend3f86b832006-07-01 11:36:54 -0400948{
Len Browncece9012006-12-16 01:04:27 -0500949 struct acpi_sbs *sbs;
Rich Townsend3f86b832006-07-01 11:36:54 -0400950 int id;
951
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400952 if (!device)
Lebedev, Vladimir P963497c2006-09-05 19:49:13 +0400953 return -EINVAL;
Vladimir Lebedev72206232007-03-19 17:45:50 +0300954 sbs = acpi_driver_data(device);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400955 if (!sbs)
Len Brown635227e2006-07-01 16:48:23 -0400956 return -EINVAL;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400957 mutex_lock(&sbs->lock);
958 acpi_smbus_unregister_callback(sbs->hc);
959 for (id = 0; id < MAX_SBS_BAT; ++id)
Rich Townsend3f86b832006-07-01 11:36:54 -0400960 acpi_battery_remove(sbs, id);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400961 acpi_charger_remove(sbs);
962 mutex_unlock(&sbs->lock);
963 mutex_destroy(&sbs->lock);
Rich Townsend3f86b832006-07-01 11:36:54 -0400964 kfree(sbs);
Len Brown635227e2006-07-01 16:48:23 -0400965 return 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400966}
967
Vladimir Lebedev72206232007-03-19 17:45:50 +0300968static void acpi_sbs_rmdirs(void)
969{
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300970#ifdef CONFIG_ACPI_PROCFS_POWER
Vladimir Lebedev72206232007-03-19 17:45:50 +0300971 if (acpi_ac_dir) {
972 acpi_unlock_ac_dir(acpi_ac_dir);
973 acpi_ac_dir = NULL;
974 }
975 if (acpi_battery_dir) {
976 acpi_unlock_battery_dir(acpi_battery_dir);
977 acpi_battery_dir = NULL;
978 }
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400979#endif
Vladimir Lebedev72206232007-03-19 17:45:50 +0300980}
981
982static int acpi_sbs_resume(struct acpi_device *device)
983{
984 struct acpi_sbs *sbs;
Vladimir Lebedev72206232007-03-19 17:45:50 +0300985 if (!device)
986 return -EINVAL;
Vladimir Lebedev72206232007-03-19 17:45:50 +0300987 sbs = device->driver_data;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400988 acpi_sbs_callback(sbs);
Vladimir Lebedev72206232007-03-19 17:45:50 +0300989 return 0;
990}
991
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400992static struct acpi_driver acpi_sbs_driver = {
993 .name = "sbs",
994 .class = ACPI_SBS_CLASS,
995 .ids = sbs_device_ids,
996 .ops = {
997 .add = acpi_sbs_add,
998 .remove = acpi_sbs_remove,
999 .resume = acpi_sbs_resume,
1000 },
1001};
1002
Rich Townsend3f86b832006-07-01 11:36:54 -04001003static int __init acpi_sbs_init(void)
1004{
1005 int result = 0;
1006
Len Brownb20d2ae2006-08-15 23:21:37 -04001007 if (acpi_disabled)
1008 return -ENODEV;
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +03001009#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -04001010 acpi_ac_dir = acpi_lock_ac_dir();
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +04001011 if (!acpi_ac_dir)
Len Brown635227e2006-07-01 16:48:23 -04001012 return -ENODEV;
Rich Townsend3f86b832006-07-01 11:36:54 -04001013 acpi_battery_dir = acpi_lock_battery_dir();
1014 if (!acpi_battery_dir) {
Vladimir Lebedev72206232007-03-19 17:45:50 +03001015 acpi_sbs_rmdirs();
Len Brown635227e2006-07-01 16:48:23 -04001016 return -ENODEV;
Rich Townsend3f86b832006-07-01 11:36:54 -04001017 }
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +04001018#endif
Rich Townsend3f86b832006-07-01 11:36:54 -04001019 result = acpi_bus_register_driver(&acpi_sbs_driver);
1020 if (result < 0) {
Vladimir Lebedev72206232007-03-19 17:45:50 +03001021 acpi_sbs_rmdirs();
Len Brown635227e2006-07-01 16:48:23 -04001022 return -ENODEV;
Rich Townsend3f86b832006-07-01 11:36:54 -04001023 }
Len Brown635227e2006-07-01 16:48:23 -04001024 return 0;
Rich Townsend3f86b832006-07-01 11:36:54 -04001025}
1026
1027static void __exit acpi_sbs_exit(void)
1028{
Rich Townsend3f86b832006-07-01 11:36:54 -04001029 acpi_bus_unregister_driver(&acpi_sbs_driver);
Vladimir Lebedev72206232007-03-19 17:45:50 +03001030 acpi_sbs_rmdirs();
Len Brown635227e2006-07-01 16:48:23 -04001031 return;
Rich Townsend3f86b832006-07-01 11:36:54 -04001032}
1033
1034module_init(acpi_sbs_init);
1035module_exit(acpi_sbs_exit);