blob: e5dbedb16bbfdde815170acbea225b69c65224fd [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{
Rich Townsend3f86b832006-07-01 11:36:54 -0400487 if (!*dir) {
488 *dir = proc_mkdir(dir_name, parent_dir);
489 if (!*dir) {
Len Brown635227e2006-07-01 16:48:23 -0400490 return -ENODEV;
Rich Townsend3f86b832006-07-01 11:36:54 -0400491 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400492 }
493
494 /* 'info' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700495 if (info_fops)
496 proc_create_data(ACPI_SBS_FILE_INFO, S_IRUGO, *dir,
497 info_fops, data);
Rich Townsend3f86b832006-07-01 11:36:54 -0400498
499 /* 'state' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700500 if (state_fops)
501 proc_create_data(ACPI_SBS_FILE_STATE, S_IRUGO, *dir,
502 state_fops, data);
Rich Townsend3f86b832006-07-01 11:36:54 -0400503
504 /* 'alarm' [R/W] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700505 if (alarm_fops)
506 proc_create_data(ACPI_SBS_FILE_ALARM, S_IRUGO, *dir,
507 alarm_fops, data);
Len Brown635227e2006-07-01 16:48:23 -0400508 return 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400509}
510
511static void
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400512acpi_sbs_remove_fs(struct proc_dir_entry **dir,
Rich Townsend3f86b832006-07-01 11:36:54 -0400513 struct proc_dir_entry *parent_dir)
514{
Rich Townsend3f86b832006-07-01 11:36:54 -0400515 if (*dir) {
516 remove_proc_entry(ACPI_SBS_FILE_INFO, *dir);
517 remove_proc_entry(ACPI_SBS_FILE_STATE, *dir);
518 remove_proc_entry(ACPI_SBS_FILE_ALARM, *dir);
519 remove_proc_entry((*dir)->name, parent_dir);
520 *dir = NULL;
521 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400522}
523
524/* Smart Battery Interface */
Rich Townsend3f86b832006-07-01 11:36:54 -0400525static struct proc_dir_entry *acpi_battery_dir = NULL;
526
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400527static inline char *acpi_battery_units(struct acpi_battery *battery)
528{
Alexey Starikovskiy5a21e4f2007-12-08 13:02:46 +0300529 return acpi_battery_mode(battery) ? " mW" : " mA";
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400530}
531
532
Rich Townsend3f86b832006-07-01 11:36:54 -0400533static int acpi_battery_read_info(struct seq_file *seq, void *offset)
534{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200535 struct acpi_battery *battery = seq->private;
Vladimir Lebedev72206232007-03-19 17:45:50 +0300536 struct acpi_sbs *sbs = battery->sbs;
Rich Townsend3f86b832006-07-01 11:36:54 -0400537 int result = 0;
538
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400539 mutex_lock(&sbs->lock);
Rich Townsend3f86b832006-07-01 11:36:54 -0400540
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400541 seq_printf(seq, "present: %s\n",
542 (battery->present) ? "yes" : "no");
543 if (!battery->present)
Vladimir Lebedev72206232007-03-19 17:45:50 +0300544 goto end;
Rich Townsend3f86b832006-07-01 11:36:54 -0400545
Alexey Starikovskiy5a21e4f2007-12-08 13:02:46 +0300546 seq_printf(seq, "design capacity: %i%sh\n",
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400547 battery->design_capacity * acpi_battery_scale(battery),
548 acpi_battery_units(battery));
Alexey Starikovskiy5a21e4f2007-12-08 13:02:46 +0300549 seq_printf(seq, "last full capacity: %i%sh\n",
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400550 battery->full_charge_capacity * acpi_battery_scale(battery),
551 acpi_battery_units(battery));
Rich Townsend3f86b832006-07-01 11:36:54 -0400552 seq_printf(seq, "battery technology: rechargeable\n");
Rich Townsend3f86b832006-07-01 11:36:54 -0400553 seq_printf(seq, "design voltage: %i mV\n",
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400554 battery->design_voltage * acpi_battery_vscale(battery));
Rich Townsend3f86b832006-07-01 11:36:54 -0400555 seq_printf(seq, "design capacity warning: unknown\n");
556 seq_printf(seq, "design capacity low: unknown\n");
Alexey Starikovskiy16698852009-10-15 14:31:37 +0400557 seq_printf(seq, "cycle count: %i\n", battery->cycle_count);
Rich Townsend3f86b832006-07-01 11:36:54 -0400558 seq_printf(seq, "capacity granularity 1: unknown\n");
559 seq_printf(seq, "capacity granularity 2: unknown\n");
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400560 seq_printf(seq, "model number: %s\n", battery->device_name);
Rich Townsend3f86b832006-07-01 11:36:54 -0400561 seq_printf(seq, "serial number: %i\n",
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400562 battery->serial_number);
Rich Townsend3f86b832006-07-01 11:36:54 -0400563 seq_printf(seq, "battery type: %s\n",
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400564 battery->device_chemistry);
Rich Townsend3f86b832006-07-01 11:36:54 -0400565 seq_printf(seq, "OEM info: %s\n",
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400566 battery->manufacturer_name);
Rich Townsend3f86b832006-07-01 11:36:54 -0400567 end:
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400568 mutex_unlock(&sbs->lock);
Len Brown635227e2006-07-01 16:48:23 -0400569 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400570}
571
572static int acpi_battery_info_open_fs(struct inode *inode, struct file *file)
573{
574 return single_open(file, acpi_battery_read_info, PDE(inode)->data);
575}
576
577static int acpi_battery_read_state(struct seq_file *seq, void *offset)
578{
Vladimir Lebedev72206232007-03-19 17:45:50 +0300579 struct acpi_battery *battery = seq->private;
580 struct acpi_sbs *sbs = battery->sbs;
Alexey Starikovskiy5a21e4f2007-12-08 13:02:46 +0300581 int rate;
Rich Townsend3f86b832006-07-01 11:36:54 -0400582
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400583 mutex_lock(&sbs->lock);
584 seq_printf(seq, "present: %s\n",
585 (battery->present) ? "yes" : "no");
586 if (!battery->present)
Vladimir Lebedev72206232007-03-19 17:45:50 +0300587 goto end;
Rich Townsend3f86b832006-07-01 11:36:54 -0400588
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400589 acpi_battery_get_state(battery);
590 seq_printf(seq, "capacity state: %s\n",
591 (battery->state & 0x0010) ? "critical" : "ok");
592 seq_printf(seq, "charging state: %s\n",
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400593 (battery->rate_now < 0) ? "discharging" :
594 ((battery->rate_now > 0) ? "charging" : "charged"));
595 rate = abs(battery->rate_now) * acpi_battery_ipscale(battery);
Alexey Starikovskiy5a21e4f2007-12-08 13:02:46 +0300596 rate *= (acpi_battery_mode(battery))?(battery->voltage_now *
597 acpi_battery_vscale(battery)/1000):1;
598 seq_printf(seq, "present rate: %d%s\n", rate,
599 acpi_battery_units(battery));
600 seq_printf(seq, "remaining capacity: %i%sh\n",
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400601 battery->capacity_now * acpi_battery_scale(battery),
602 acpi_battery_units(battery));
Rich Townsend3f86b832006-07-01 11:36:54 -0400603 seq_printf(seq, "present voltage: %i mV\n",
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400604 battery->voltage_now * acpi_battery_vscale(battery));
Rich Townsend3f86b832006-07-01 11:36:54 -0400605
606 end:
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400607 mutex_unlock(&sbs->lock);
Alexey Starikovskiy5a21e4f2007-12-08 13:02:46 +0300608 return 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400609}
610
611static int acpi_battery_state_open_fs(struct inode *inode, struct file *file)
612{
613 return single_open(file, acpi_battery_read_state, PDE(inode)->data);
614}
615
616static int acpi_battery_read_alarm(struct seq_file *seq, void *offset)
617{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200618 struct acpi_battery *battery = seq->private;
Vladimir Lebedev72206232007-03-19 17:45:50 +0300619 struct acpi_sbs *sbs = battery->sbs;
Rich Townsend3f86b832006-07-01 11:36:54 -0400620 int result = 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400621
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400622 mutex_lock(&sbs->lock);
Rich Townsend3f86b832006-07-01 11:36:54 -0400623
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400624 if (!battery->present) {
Rich Townsend3f86b832006-07-01 11:36:54 -0400625 seq_printf(seq, "present: no\n");
626 goto end;
627 }
628
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400629 acpi_battery_get_alarm(battery);
Rich Townsend3f86b832006-07-01 11:36:54 -0400630 seq_printf(seq, "alarm: ");
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400631 if (battery->alarm_capacity)
Alexey Starikovskiy5a21e4f2007-12-08 13:02:46 +0300632 seq_printf(seq, "%i%sh\n",
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400633 battery->alarm_capacity *
634 acpi_battery_scale(battery),
635 acpi_battery_units(battery));
636 else
Rich Townsend3f86b832006-07-01 11:36:54 -0400637 seq_printf(seq, "disabled\n");
Rich Townsend3f86b832006-07-01 11:36:54 -0400638 end:
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400639 mutex_unlock(&sbs->lock);
Len Brown635227e2006-07-01 16:48:23 -0400640 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400641}
642
643static ssize_t
644acpi_battery_write_alarm(struct file *file, const char __user * buffer,
645 size_t count, loff_t * ppos)
646{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200647 struct seq_file *seq = file->private_data;
648 struct acpi_battery *battery = seq->private;
Vladimir Lebedev72206232007-03-19 17:45:50 +0300649 struct acpi_sbs *sbs = battery->sbs;
Rich Townsend3f86b832006-07-01 11:36:54 -0400650 char alarm_string[12] = { '\0' };
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400651 int result = 0;
652 mutex_lock(&sbs->lock);
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400653 if (!battery->present) {
Rich Townsend3f86b832006-07-01 11:36:54 -0400654 result = -ENODEV;
655 goto end;
656 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400657 if (count > sizeof(alarm_string) - 1) {
658 result = -EINVAL;
659 goto end;
660 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400661 if (copy_from_user(alarm_string, buffer, count)) {
662 result = -EFAULT;
663 goto end;
664 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400665 alarm_string[count] = 0;
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400666 battery->alarm_capacity = simple_strtoul(alarm_string, NULL, 0) /
667 acpi_battery_scale(battery);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400668 acpi_battery_set_alarm(battery);
Rich Townsend3f86b832006-07-01 11:36:54 -0400669 end:
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400670 mutex_unlock(&sbs->lock);
671 if (result)
Len Brown635227e2006-07-01 16:48:23 -0400672 return result;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400673 return count;
Rich Townsend3f86b832006-07-01 11:36:54 -0400674}
675
676static int acpi_battery_alarm_open_fs(struct inode *inode, struct file *file)
677{
678 return single_open(file, acpi_battery_read_alarm, PDE(inode)->data);
679}
680
Jan Engelhardt070d8eb2009-01-12 00:07:55 +0100681static const struct file_operations acpi_battery_info_fops = {
Rich Townsend3f86b832006-07-01 11:36:54 -0400682 .open = acpi_battery_info_open_fs,
683 .read = seq_read,
684 .llseek = seq_lseek,
685 .release = single_release,
686 .owner = THIS_MODULE,
687};
688
Jan Engelhardt070d8eb2009-01-12 00:07:55 +0100689static const struct file_operations acpi_battery_state_fops = {
Rich Townsend3f86b832006-07-01 11:36:54 -0400690 .open = acpi_battery_state_open_fs,
691 .read = seq_read,
692 .llseek = seq_lseek,
693 .release = single_release,
694 .owner = THIS_MODULE,
695};
696
Jan Engelhardt070d8eb2009-01-12 00:07:55 +0100697static const struct file_operations acpi_battery_alarm_fops = {
Rich Townsend3f86b832006-07-01 11:36:54 -0400698 .open = acpi_battery_alarm_open_fs,
699 .read = seq_read,
700 .write = acpi_battery_write_alarm,
701 .llseek = seq_lseek,
702 .release = single_release,
703 .owner = THIS_MODULE,
704};
705
706/* Legacy AC Adapter Interface */
707
708static struct proc_dir_entry *acpi_ac_dir = NULL;
709
710static int acpi_ac_read_state(struct seq_file *seq, void *offset)
711{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400712
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200713 struct acpi_sbs *sbs = seq->private;
Rich Townsend3f86b832006-07-01 11:36:54 -0400714
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400715 mutex_lock(&sbs->lock);
Rich Townsend3f86b832006-07-01 11:36:54 -0400716
717 seq_printf(seq, "state: %s\n",
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400718 sbs->charger_present ? "on-line" : "off-line");
Rich Townsend3f86b832006-07-01 11:36:54 -0400719
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400720 mutex_unlock(&sbs->lock);
Len Brown635227e2006-07-01 16:48:23 -0400721 return 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400722}
723
724static int acpi_ac_state_open_fs(struct inode *inode, struct file *file)
725{
726 return single_open(file, acpi_ac_read_state, PDE(inode)->data);
727}
728
Jan Engelhardt070d8eb2009-01-12 00:07:55 +0100729static const struct file_operations acpi_ac_state_fops = {
Rich Townsend3f86b832006-07-01 11:36:54 -0400730 .open = acpi_ac_state_open_fs,
731 .read = seq_read,
732 .llseek = seq_lseek,
733 .release = single_release,
734 .owner = THIS_MODULE,
735};
736
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400737#endif
738
Rich Townsend3f86b832006-07-01 11:36:54 -0400739/* --------------------------------------------------------------------------
740 Driver Interface
741 -------------------------------------------------------------------------- */
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400742static int acpi_battery_read(struct acpi_battery *battery)
743{
744 int result = 0, saved_present = battery->present;
745 u16 state;
746
747 if (battery->sbs->manager_present) {
748 result = acpi_smbus_read(battery->sbs->hc, SMBUS_READ_WORD,
749 ACPI_SBS_MANAGER, 0x01, (u8 *)&state);
750 if (!result)
751 battery->present = state & (1 << battery->id);
752 state &= 0x0fff;
753 state |= 1 << (battery->id + 12);
754 acpi_smbus_write(battery->sbs->hc, SMBUS_WRITE_WORD,
755 ACPI_SBS_MANAGER, 0x01, (u8 *)&state, 2);
756 } else if (battery->id == 0)
757 battery->present = 1;
758 if (result || !battery->present)
759 return result;
760
761 if (saved_present != battery->present) {
762 battery->update_time = 0;
763 result = acpi_battery_get_info(battery);
764 if (result)
765 return result;
766 }
767 result = acpi_battery_get_state(battery);
768 return result;
769}
770
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400771/* Smart Battery */
Rich Townsend3f86b832006-07-01 11:36:54 -0400772static int acpi_battery_add(struct acpi_sbs *sbs, int id)
773{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400774 struct acpi_battery *battery = &sbs->battery[id];
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400775 int result;
776
Rich Townsend3f86b832006-07-01 11:36:54 -0400777 battery->id = id;
778 battery->sbs = sbs;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400779 result = acpi_battery_read(battery);
780 if (result)
781 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400782
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400783 sprintf(battery->name, ACPI_BATTERY_DIR_NAME, id);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300784#ifdef CONFIG_ACPI_PROCFS_POWER
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400785 acpi_sbs_add_fs(&battery->proc_entry, acpi_battery_dir,
786 battery->name, &acpi_battery_info_fops,
787 &acpi_battery_state_fops, &acpi_battery_alarm_fops,
788 battery);
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400789#endif
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400790 battery->bat.name = battery->name;
791 battery->bat.type = POWER_SUPPLY_TYPE_BATTERY;
792 if (!acpi_battery_mode(battery)) {
793 battery->bat.properties = sbs_charge_battery_props;
794 battery->bat.num_properties =
795 ARRAY_SIZE(sbs_charge_battery_props);
796 } else {
797 battery->bat.properties = sbs_energy_battery_props;
798 battery->bat.num_properties =
799 ARRAY_SIZE(sbs_energy_battery_props);
800 }
801 battery->bat.get_property = acpi_sbs_battery_get_property;
802 result = power_supply_register(&sbs->device->dev, &battery->bat);
Jeff Garzik037cbc62007-11-18 00:32:31 +0300803 if (result)
804 goto end;
805 result = device_create_file(battery->bat.dev, &alarm_attr);
806 if (result)
807 goto end;
808 battery->have_sysfs_alarm = 1;
809 end:
Vladimir Lebedev72206232007-03-19 17:45:50 +0300810 printk(KERN_INFO PREFIX "%s [%s]: Battery Slot [%s] (battery %s)\n",
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400811 ACPI_SBS_DEVICE_NAME, acpi_device_bid(sbs->device),
Alexey Starikovskiybbafbec2008-02-09 03:22:13 -0500812 battery->name, battery->present ? "present" : "absent");
Len Brown635227e2006-07-01 16:48:23 -0400813 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400814}
815
816static void acpi_battery_remove(struct acpi_sbs *sbs, int id)
817{
Jeff Garzik037cbc62007-11-18 00:32:31 +0300818 struct acpi_battery *battery = &sbs->battery[id];
Rakib Mullickc19bdb62010-01-03 19:27:56 +0600819
Jeff Garzik037cbc62007-11-18 00:32:31 +0300820 if (battery->bat.dev) {
821 if (battery->have_sysfs_alarm)
822 device_remove_file(battery->bat.dev, &alarm_attr);
823 power_supply_unregister(&battery->bat);
Rich Townsend3f86b832006-07-01 11:36:54 -0400824 }
Len Brownc2e46d22007-11-20 01:20:00 -0500825#ifdef CONFIG_ACPI_PROCFS_POWER
Jeff Garzik037cbc62007-11-18 00:32:31 +0300826 if (battery->proc_entry)
827 acpi_sbs_remove_fs(&battery->proc_entry, acpi_battery_dir);
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400828#endif
Rich Townsend3f86b832006-07-01 11:36:54 -0400829}
830
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400831static int acpi_charger_add(struct acpi_sbs *sbs)
Rich Townsend3f86b832006-07-01 11:36:54 -0400832{
833 int result;
834
Rich Townsend3f86b832006-07-01 11:36:54 -0400835 result = acpi_ac_get_present(sbs);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400836 if (result)
Rich Townsend3f86b832006-07-01 11:36:54 -0400837 goto end;
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300838#ifdef CONFIG_ACPI_PROCFS_POWER
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400839 result = acpi_sbs_add_fs(&sbs->charger_entry, acpi_ac_dir,
840 ACPI_AC_DIR_NAME, NULL,
841 &acpi_ac_state_fops, NULL, sbs);
842 if (result)
Rich Townsend3f86b832006-07-01 11:36:54 -0400843 goto end;
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400844#endif
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400845 sbs->charger.name = "sbs-charger";
846 sbs->charger.type = POWER_SUPPLY_TYPE_MAINS;
847 sbs->charger.properties = sbs_ac_props;
848 sbs->charger.num_properties = ARRAY_SIZE(sbs_ac_props);
849 sbs->charger.get_property = sbs_get_ac_property;
850 power_supply_register(&sbs->device->dev, &sbs->charger);
Vladimir Lebedev72206232007-03-19 17:45:50 +0300851 printk(KERN_INFO PREFIX "%s [%s]: AC Adapter [%s] (%s)\n",
852 ACPI_SBS_DEVICE_NAME, acpi_device_bid(sbs->device),
Alexey Starikovskiy89862e32007-09-26 19:43:35 +0400853 ACPI_AC_DIR_NAME, sbs->charger_present ? "on-line" : "off-line");
Rich Townsend3f86b832006-07-01 11:36:54 -0400854 end:
Len Brown635227e2006-07-01 16:48:23 -0400855 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400856}
857
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400858static void acpi_charger_remove(struct acpi_sbs *sbs)
Rich Townsend3f86b832006-07-01 11:36:54 -0400859{
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400860 if (sbs->charger.dev)
861 power_supply_unregister(&sbs->charger);
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300862#ifdef CONFIG_ACPI_PROCFS_POWER
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400863 if (sbs->charger_entry)
864 acpi_sbs_remove_fs(&sbs->charger_entry, acpi_ac_dir);
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400865#endif
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400866}
867
Adrian Bunke5685b92007-10-24 18:24:42 +0200868static void acpi_sbs_callback(void *context)
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400869{
870 int id;
871 struct acpi_sbs *sbs = context;
872 struct acpi_battery *bat;
873 u8 saved_charger_state = sbs->charger_present;
874 u8 saved_battery_state;
875 acpi_ac_get_present(sbs);
876 if (sbs->charger_present != saved_charger_state) {
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400877#ifdef CONFIG_ACPI_PROC_EVENT
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400878 acpi_bus_generate_proc_event4(ACPI_AC_CLASS, ACPI_AC_DIR_NAME,
879 ACPI_SBS_NOTIFY_STATUS,
880 sbs->charger_present);
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400881#endif
882 kobject_uevent(&sbs->charger.dev->kobj, KOBJ_CHANGE);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400883 }
884 if (sbs->manager_present) {
885 for (id = 0; id < MAX_SBS_BAT; ++id) {
886 if (!(sbs->batteries_supported & (1 << id)))
887 continue;
888 bat = &sbs->battery[id];
889 saved_battery_state = bat->present;
890 acpi_battery_read(bat);
891 if (saved_battery_state == bat->present)
892 continue;
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400893#ifdef CONFIG_ACPI_PROC_EVENT
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400894 acpi_bus_generate_proc_event4(ACPI_BATTERY_CLASS,
895 bat->name,
896 ACPI_SBS_NOTIFY_STATUS,
897 bat->present);
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400898#endif
899 kobject_uevent(&bat->bat.dev->kobj, KOBJ_CHANGE);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400900 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400901 }
902}
903
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400904static int acpi_sbs_remove(struct acpi_device *device, int type);
Rich Townsend3f86b832006-07-01 11:36:54 -0400905
906static int acpi_sbs_add(struct acpi_device *device)
907{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400908 struct acpi_sbs *sbs;
909 int result = 0;
Vladimir Lebedev6d157022007-03-19 17:45:50 +0300910 int id;
Rich Townsend3f86b832006-07-01 11:36:54 -0400911
Burman Yan36bcbec2006-12-19 12:56:11 -0800912 sbs = kzalloc(sizeof(struct acpi_sbs), GFP_KERNEL);
Rich Townsend3f86b832006-07-01 11:36:54 -0400913 if (!sbs) {
Vladimir Lebedev72206232007-03-19 17:45:50 +0300914 result = -ENOMEM;
915 goto end;
Rich Townsend3f86b832006-07-01 11:36:54 -0400916 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400917
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400918 mutex_init(&sbs->lock);
Vladimir Lebedev72206232007-03-19 17:45:50 +0300919
Alexey Starikovskiy91087df2007-09-26 19:43:28 +0400920 sbs->hc = acpi_driver_data(device->parent);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400921 sbs->device = device;
Rich Townsend3f86b832006-07-01 11:36:54 -0400922 strcpy(acpi_device_name(device), ACPI_SBS_DEVICE_NAME);
923 strcpy(acpi_device_class(device), ACPI_SBS_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700924 device->driver_data = sbs;
Rich Townsend3f86b832006-07-01 11:36:54 -0400925
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400926 result = acpi_charger_add(sbs);
Vladimir Lebedev72206232007-03-19 17:45:50 +0300927 if (result)
928 goto end;
Rich Townsend3f86b832006-07-01 11:36:54 -0400929
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400930 result = acpi_manager_get_info(sbs);
931 if (!result) {
932 sbs->manager_present = 1;
933 for (id = 0; id < MAX_SBS_BAT; ++id)
934 if ((sbs->batteries_supported & (1 << id)))
935 acpi_battery_add(sbs, id);
936 } else
937 acpi_battery_add(sbs, 0);
938 acpi_smbus_register_callback(sbs->hc, acpi_sbs_callback, sbs);
Rich Townsend3f86b832006-07-01 11:36:54 -0400939 end:
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400940 if (result)
941 acpi_sbs_remove(device, 0);
Len Brown635227e2006-07-01 16:48:23 -0400942 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400943}
944
Vladimir Lebedev72206232007-03-19 17:45:50 +0300945static int acpi_sbs_remove(struct acpi_device *device, int type)
Rich Townsend3f86b832006-07-01 11:36:54 -0400946{
Len Browncece9012006-12-16 01:04:27 -0500947 struct acpi_sbs *sbs;
Rich Townsend3f86b832006-07-01 11:36:54 -0400948 int id;
949
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400950 if (!device)
Lebedev, Vladimir P963497c2006-09-05 19:49:13 +0400951 return -EINVAL;
Vladimir Lebedev72206232007-03-19 17:45:50 +0300952 sbs = acpi_driver_data(device);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400953 if (!sbs)
Len Brown635227e2006-07-01 16:48:23 -0400954 return -EINVAL;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400955 mutex_lock(&sbs->lock);
956 acpi_smbus_unregister_callback(sbs->hc);
957 for (id = 0; id < MAX_SBS_BAT; ++id)
Rich Townsend3f86b832006-07-01 11:36:54 -0400958 acpi_battery_remove(sbs, id);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400959 acpi_charger_remove(sbs);
960 mutex_unlock(&sbs->lock);
961 mutex_destroy(&sbs->lock);
Rich Townsend3f86b832006-07-01 11:36:54 -0400962 kfree(sbs);
Len Brown635227e2006-07-01 16:48:23 -0400963 return 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400964}
965
Vladimir Lebedev72206232007-03-19 17:45:50 +0300966static void acpi_sbs_rmdirs(void)
967{
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300968#ifdef CONFIG_ACPI_PROCFS_POWER
Vladimir Lebedev72206232007-03-19 17:45:50 +0300969 if (acpi_ac_dir) {
970 acpi_unlock_ac_dir(acpi_ac_dir);
971 acpi_ac_dir = NULL;
972 }
973 if (acpi_battery_dir) {
974 acpi_unlock_battery_dir(acpi_battery_dir);
975 acpi_battery_dir = NULL;
976 }
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400977#endif
Vladimir Lebedev72206232007-03-19 17:45:50 +0300978}
979
980static int acpi_sbs_resume(struct acpi_device *device)
981{
982 struct acpi_sbs *sbs;
Vladimir Lebedev72206232007-03-19 17:45:50 +0300983 if (!device)
984 return -EINVAL;
Vladimir Lebedev72206232007-03-19 17:45:50 +0300985 sbs = device->driver_data;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400986 acpi_sbs_callback(sbs);
Vladimir Lebedev72206232007-03-19 17:45:50 +0300987 return 0;
988}
989
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400990static struct acpi_driver acpi_sbs_driver = {
991 .name = "sbs",
992 .class = ACPI_SBS_CLASS,
993 .ids = sbs_device_ids,
994 .ops = {
995 .add = acpi_sbs_add,
996 .remove = acpi_sbs_remove,
997 .resume = acpi_sbs_resume,
998 },
999};
1000
Rich Townsend3f86b832006-07-01 11:36:54 -04001001static int __init acpi_sbs_init(void)
1002{
1003 int result = 0;
1004
Len Brownb20d2ae2006-08-15 23:21:37 -04001005 if (acpi_disabled)
1006 return -ENODEV;
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +03001007#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -04001008 acpi_ac_dir = acpi_lock_ac_dir();
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +04001009 if (!acpi_ac_dir)
Len Brown635227e2006-07-01 16:48:23 -04001010 return -ENODEV;
Rich Townsend3f86b832006-07-01 11:36:54 -04001011 acpi_battery_dir = acpi_lock_battery_dir();
1012 if (!acpi_battery_dir) {
Vladimir Lebedev72206232007-03-19 17:45:50 +03001013 acpi_sbs_rmdirs();
Len Brown635227e2006-07-01 16:48:23 -04001014 return -ENODEV;
Rich Townsend3f86b832006-07-01 11:36:54 -04001015 }
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +04001016#endif
Rich Townsend3f86b832006-07-01 11:36:54 -04001017 result = acpi_bus_register_driver(&acpi_sbs_driver);
1018 if (result < 0) {
Vladimir Lebedev72206232007-03-19 17:45:50 +03001019 acpi_sbs_rmdirs();
Len Brown635227e2006-07-01 16:48:23 -04001020 return -ENODEV;
Rich Townsend3f86b832006-07-01 11:36:54 -04001021 }
Len Brown635227e2006-07-01 16:48:23 -04001022 return 0;
Rich Townsend3f86b832006-07-01 11:36:54 -04001023}
1024
1025static void __exit acpi_sbs_exit(void)
1026{
Rich Townsend3f86b832006-07-01 11:36:54 -04001027 acpi_bus_unregister_driver(&acpi_sbs_driver);
Vladimir Lebedev72206232007-03-19 17:45:50 +03001028 acpi_sbs_rmdirs();
Len Brown635227e2006-07-01 16:48:23 -04001029 return;
Rich Townsend3f86b832006-07-01 11:36:54 -04001030}
1031
1032module_init(acpi_sbs_init);
1033module_exit(acpi_sbs_exit);