blob: aef7e1cd1e5d62f95512484935e4fea9b11af961 [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
Phil Carmody497888c2011-07-14 15:07:13 +0300115#define to_acpi_battery(x) container_of(x, struct acpi_battery, bat)
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400116
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
Rafael J. Wysocki51fac832013-01-24 00:24:48 +0100133static int acpi_sbs_remove(struct acpi_device *device);
Lan Tianyu1dd5c712011-07-01 16:03:15 +0800134static int acpi_battery_get_state(struct acpi_battery *battery);
135
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400136static inline int battery_scale(int log)
Vladimir Lebedev72206232007-03-19 17:45:50 +0300137{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400138 int scale = 1;
139 while (log--)
140 scale *= 10;
141 return scale;
Vladimir Lebedev72206232007-03-19 17:45:50 +0300142}
143
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400144static inline int acpi_battery_vscale(struct acpi_battery *battery)
Vladimir Lebedev72206232007-03-19 17:45:50 +0300145{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400146 return battery_scale((battery->spec & 0x0f00) >> 8);
Vladimir Lebedev72206232007-03-19 17:45:50 +0300147}
148
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400149static inline int acpi_battery_ipscale(struct acpi_battery *battery)
Vladimir Lebedev72206232007-03-19 17:45:50 +0300150{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400151 return battery_scale((battery->spec & 0xf000) >> 12);
152}
153
154static inline int acpi_battery_mode(struct acpi_battery *battery)
155{
156 return (battery->mode & 0x8000);
157}
158
159static inline int acpi_battery_scale(struct acpi_battery *battery)
160{
161 return (acpi_battery_mode(battery) ? 10 : 1) *
162 acpi_battery_ipscale(battery);
Vladimir Lebedev72206232007-03-19 17:45:50 +0300163}
164
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400165static int sbs_get_ac_property(struct power_supply *psy,
166 enum power_supply_property psp,
167 union power_supply_propval *val)
168{
169 struct acpi_sbs *sbs = to_acpi_sbs(psy);
170 switch (psp) {
171 case POWER_SUPPLY_PROP_ONLINE:
172 val->intval = sbs->charger_present;
173 break;
174 default:
175 return -EINVAL;
176 }
177 return 0;
178}
179
180static int acpi_battery_technology(struct acpi_battery *battery)
181{
182 if (!strcasecmp("NiCd", battery->device_chemistry))
183 return POWER_SUPPLY_TECHNOLOGY_NiCd;
184 if (!strcasecmp("NiMH", battery->device_chemistry))
185 return POWER_SUPPLY_TECHNOLOGY_NiMH;
186 if (!strcasecmp("LION", battery->device_chemistry))
187 return POWER_SUPPLY_TECHNOLOGY_LION;
188 if (!strcasecmp("LiP", battery->device_chemistry))
189 return POWER_SUPPLY_TECHNOLOGY_LIPO;
190 return POWER_SUPPLY_TECHNOLOGY_UNKNOWN;
191}
192
193static int acpi_sbs_battery_get_property(struct power_supply *psy,
194 enum power_supply_property psp,
195 union power_supply_propval *val)
196{
197 struct acpi_battery *battery = to_acpi_battery(psy);
198
199 if ((!battery->present) && psp != POWER_SUPPLY_PROP_PRESENT)
200 return -ENODEV;
Lan Tianyu1dd5c712011-07-01 16:03:15 +0800201
202 acpi_battery_get_state(battery);
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400203 switch (psp) {
204 case POWER_SUPPLY_PROP_STATUS:
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400205 if (battery->rate_now < 0)
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400206 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400207 else if (battery->rate_now > 0)
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400208 val->intval = POWER_SUPPLY_STATUS_CHARGING;
209 else
210 val->intval = POWER_SUPPLY_STATUS_FULL;
211 break;
212 case POWER_SUPPLY_PROP_PRESENT:
213 val->intval = battery->present;
214 break;
215 case POWER_SUPPLY_PROP_TECHNOLOGY:
216 val->intval = acpi_battery_technology(battery);
217 break;
Alexey Starikovskiy16698852009-10-15 14:31:37 +0400218 case POWER_SUPPLY_PROP_CYCLE_COUNT:
219 val->intval = battery->cycle_count;
220 break;
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400221 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
222 val->intval = battery->design_voltage *
223 acpi_battery_vscale(battery) * 1000;
224 break;
225 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
226 val->intval = battery->voltage_now *
227 acpi_battery_vscale(battery) * 1000;
228 break;
229 case POWER_SUPPLY_PROP_CURRENT_NOW:
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400230 case POWER_SUPPLY_PROP_POWER_NOW:
231 val->intval = abs(battery->rate_now) *
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400232 acpi_battery_ipscale(battery) * 1000;
Lan Tianyue4108292011-07-01 16:03:39 +0800233 val->intval *= (acpi_battery_mode(battery)) ?
234 (battery->voltage_now *
235 acpi_battery_vscale(battery) / 1000) : 1;
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400236 break;
237 case POWER_SUPPLY_PROP_CURRENT_AVG:
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400238 case POWER_SUPPLY_PROP_POWER_AVG:
239 val->intval = abs(battery->rate_avg) *
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400240 acpi_battery_ipscale(battery) * 1000;
Lan Tianyue4108292011-07-01 16:03:39 +0800241 val->intval *= (acpi_battery_mode(battery)) ?
242 (battery->voltage_now *
243 acpi_battery_vscale(battery) / 1000) : 1;
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400244 break;
245 case POWER_SUPPLY_PROP_CAPACITY:
246 val->intval = battery->state_of_charge;
247 break;
248 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
249 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
250 val->intval = battery->design_capacity *
251 acpi_battery_scale(battery) * 1000;
252 break;
253 case POWER_SUPPLY_PROP_CHARGE_FULL:
254 case POWER_SUPPLY_PROP_ENERGY_FULL:
255 val->intval = battery->full_charge_capacity *
256 acpi_battery_scale(battery) * 1000;
257 break;
258 case POWER_SUPPLY_PROP_CHARGE_NOW:
259 case POWER_SUPPLY_PROP_ENERGY_NOW:
260 val->intval = battery->capacity_now *
261 acpi_battery_scale(battery) * 1000;
262 break;
263 case POWER_SUPPLY_PROP_TEMP:
264 val->intval = battery->temp_now - 2730; // dK -> dC
265 break;
266 case POWER_SUPPLY_PROP_MODEL_NAME:
267 val->strval = battery->device_name;
268 break;
269 case POWER_SUPPLY_PROP_MANUFACTURER:
270 val->strval = battery->manufacturer_name;
271 break;
272 default:
273 return -EINVAL;
274 }
275 return 0;
276}
277
278static enum power_supply_property sbs_ac_props[] = {
279 POWER_SUPPLY_PROP_ONLINE,
280};
281
282static enum power_supply_property sbs_charge_battery_props[] = {
283 POWER_SUPPLY_PROP_STATUS,
284 POWER_SUPPLY_PROP_PRESENT,
285 POWER_SUPPLY_PROP_TECHNOLOGY,
Alexey Starikovskiy16698852009-10-15 14:31:37 +0400286 POWER_SUPPLY_PROP_CYCLE_COUNT,
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400287 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
288 POWER_SUPPLY_PROP_VOLTAGE_NOW,
289 POWER_SUPPLY_PROP_CURRENT_NOW,
290 POWER_SUPPLY_PROP_CURRENT_AVG,
291 POWER_SUPPLY_PROP_CAPACITY,
292 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
293 POWER_SUPPLY_PROP_CHARGE_FULL,
294 POWER_SUPPLY_PROP_CHARGE_NOW,
295 POWER_SUPPLY_PROP_TEMP,
296 POWER_SUPPLY_PROP_MODEL_NAME,
297 POWER_SUPPLY_PROP_MANUFACTURER,
298};
299
300static enum power_supply_property sbs_energy_battery_props[] = {
301 POWER_SUPPLY_PROP_STATUS,
302 POWER_SUPPLY_PROP_PRESENT,
303 POWER_SUPPLY_PROP_TECHNOLOGY,
304 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
305 POWER_SUPPLY_PROP_VOLTAGE_NOW,
306 POWER_SUPPLY_PROP_CURRENT_NOW,
307 POWER_SUPPLY_PROP_CURRENT_AVG,
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400308 POWER_SUPPLY_PROP_POWER_NOW,
309 POWER_SUPPLY_PROP_POWER_AVG,
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400310 POWER_SUPPLY_PROP_CAPACITY,
311 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN,
312 POWER_SUPPLY_PROP_ENERGY_FULL,
313 POWER_SUPPLY_PROP_ENERGY_NOW,
314 POWER_SUPPLY_PROP_TEMP,
315 POWER_SUPPLY_PROP_MODEL_NAME,
316 POWER_SUPPLY_PROP_MANUFACTURER,
317};
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400318
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400319
Rich Townsend3f86b832006-07-01 11:36:54 -0400320/* --------------------------------------------------------------------------
321 Smart Battery System Management
322 -------------------------------------------------------------------------- */
323
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400324struct acpi_battery_reader {
325 u8 command; /* command for battery */
326 u8 mode; /* word or block? */
327 size_t offset; /* offset inside struct acpi_sbs_battery */
328};
Vladimir Lebedev72206232007-03-19 17:45:50 +0300329
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400330static struct acpi_battery_reader info_readers[] = {
331 {0x01, SMBUS_READ_WORD, offsetof(struct acpi_battery, alarm_capacity)},
332 {0x03, SMBUS_READ_WORD, offsetof(struct acpi_battery, mode)},
333 {0x10, SMBUS_READ_WORD, offsetof(struct acpi_battery, full_charge_capacity)},
334 {0x17, SMBUS_READ_WORD, offsetof(struct acpi_battery, cycle_count)},
335 {0x18, SMBUS_READ_WORD, offsetof(struct acpi_battery, design_capacity)},
336 {0x19, SMBUS_READ_WORD, offsetof(struct acpi_battery, design_voltage)},
337 {0x1a, SMBUS_READ_WORD, offsetof(struct acpi_battery, spec)},
338 {0x1c, SMBUS_READ_WORD, offsetof(struct acpi_battery, serial_number)},
339 {0x20, SMBUS_READ_BLOCK, offsetof(struct acpi_battery, manufacturer_name)},
340 {0x21, SMBUS_READ_BLOCK, offsetof(struct acpi_battery, device_name)},
341 {0x22, SMBUS_READ_BLOCK, offsetof(struct acpi_battery, device_chemistry)},
342};
Rich Townsend3f86b832006-07-01 11:36:54 -0400343
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400344static struct acpi_battery_reader state_readers[] = {
345 {0x08, SMBUS_READ_WORD, offsetof(struct acpi_battery, temp_now)},
346 {0x09, SMBUS_READ_WORD, offsetof(struct acpi_battery, voltage_now)},
Alexey Starikovskiy7faa1442009-03-27 22:23:52 -0400347 {0x0a, SMBUS_READ_WORD, offsetof(struct acpi_battery, rate_now)},
348 {0x0b, SMBUS_READ_WORD, offsetof(struct acpi_battery, rate_avg)},
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400349 {0x0f, SMBUS_READ_WORD, offsetof(struct acpi_battery, capacity_now)},
350 {0x0e, SMBUS_READ_WORD, offsetof(struct acpi_battery, state_of_charge)},
351 {0x16, SMBUS_READ_WORD, offsetof(struct acpi_battery, state)},
352};
Rich Townsend3f86b832006-07-01 11:36:54 -0400353
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400354static int acpi_manager_get_info(struct acpi_sbs *sbs)
Rich Townsend3f86b832006-07-01 11:36:54 -0400355{
Rich Townsend3f86b832006-07-01 11:36:54 -0400356 int result = 0;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400357 u16 battery_system_info;
Rich Townsend3f86b832006-07-01 11:36:54 -0400358
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400359 result = acpi_smbus_read(sbs->hc, SMBUS_READ_WORD, ACPI_SBS_MANAGER,
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400360 0x04, (u8 *)&battery_system_info);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400361 if (!result)
362 sbs->batteries_supported = battery_system_info & 0x000f;
Len Brown635227e2006-07-01 16:48:23 -0400363 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400364}
365
366static int acpi_battery_get_info(struct acpi_battery *battery)
367{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400368 int i, result = 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400369
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400370 for (i = 0; i < ARRAY_SIZE(info_readers); ++i) {
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400371 result = acpi_smbus_read(battery->sbs->hc,
372 info_readers[i].mode,
373 ACPI_SBS_BATTERY,
374 info_readers[i].command,
375 (u8 *) battery +
376 info_readers[i].offset);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400377 if (result)
378 break;
Rich Townsend3f86b832006-07-01 11:36:54 -0400379 }
Len Brown635227e2006-07-01 16:48:23 -0400380 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400381}
382
Rich Townsend3f86b832006-07-01 11:36:54 -0400383static int acpi_battery_get_state(struct acpi_battery *battery)
384{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400385 int i, result = 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400386
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400387 if (battery->update_time &&
388 time_before(jiffies, battery->update_time +
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400389 msecs_to_jiffies(cache_time)))
390 return 0;
391 for (i = 0; i < ARRAY_SIZE(state_readers); ++i) {
392 result = acpi_smbus_read(battery->sbs->hc,
393 state_readers[i].mode,
394 ACPI_SBS_BATTERY,
395 state_readers[i].command,
396 (u8 *)battery +
397 state_readers[i].offset);
398 if (result)
399 goto end;
Rich Townsend3f86b832006-07-01 11:36:54 -0400400 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400401 end:
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400402 battery->update_time = jiffies;
Len Brown635227e2006-07-01 16:48:23 -0400403 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400404}
405
406static int acpi_battery_get_alarm(struct acpi_battery *battery)
407{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400408 return acpi_smbus_read(battery->sbs->hc, SMBUS_READ_WORD,
409 ACPI_SBS_BATTERY, 0x01,
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400410 (u8 *)&battery->alarm_capacity);
Rich Townsend3f86b832006-07-01 11:36:54 -0400411}
412
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400413static int acpi_battery_set_alarm(struct acpi_battery *battery)
Rich Townsend3f86b832006-07-01 11:36:54 -0400414{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400415 struct acpi_sbs *sbs = battery->sbs;
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400416 u16 value, sel = 1 << (battery->id + 12);
417
418 int ret;
419
Rich Townsend3f86b832006-07-01 11:36:54 -0400420
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400421 if (sbs->manager_present) {
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400422 ret = acpi_smbus_read(sbs->hc, SMBUS_READ_WORD, ACPI_SBS_MANAGER,
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400423 0x01, (u8 *)&value);
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400424 if (ret)
425 goto end;
426 if ((value & 0xf000) != sel) {
427 value &= 0x0fff;
428 value |= sel;
429 ret = acpi_smbus_write(sbs->hc, SMBUS_WRITE_WORD,
430 ACPI_SBS_MANAGER,
431 0x01, (u8 *)&value, 2);
432 if (ret)
433 goto end;
434 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400435 }
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400436 ret = acpi_smbus_write(sbs->hc, SMBUS_WRITE_WORD, ACPI_SBS_BATTERY,
437 0x01, (u8 *)&battery->alarm_capacity, 2);
438 end:
439 return ret;
Rich Townsend3f86b832006-07-01 11:36:54 -0400440}
441
442static int acpi_ac_get_present(struct acpi_sbs *sbs)
443{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400444 int result;
445 u16 status;
Rich Townsend3f86b832006-07-01 11:36:54 -0400446
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400447 result = acpi_smbus_read(sbs->hc, SMBUS_READ_WORD, ACPI_SBS_CHARGER,
448 0x13, (u8 *) & status);
449 if (!result)
450 sbs->charger_present = (status >> 15) & 0x1;
Len Brown635227e2006-07-01 16:48:23 -0400451 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400452}
453
Alexey Starikovskiy8bd95532007-09-26 19:44:00 +0400454static ssize_t acpi_battery_alarm_show(struct device *dev,
455 struct device_attribute *attr,
456 char *buf)
457{
458 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
459 acpi_battery_get_alarm(battery);
460 return sprintf(buf, "%d\n", battery->alarm_capacity *
461 acpi_battery_scale(battery) * 1000);
462}
463
464static ssize_t acpi_battery_alarm_store(struct device *dev,
465 struct device_attribute *attr,
466 const char *buf, size_t count)
467{
468 unsigned long x;
469 struct acpi_battery *battery = to_acpi_battery(dev_get_drvdata(dev));
470 if (sscanf(buf, "%ld\n", &x) == 1)
471 battery->alarm_capacity = x /
472 (1000 * acpi_battery_scale(battery));
473 if (battery->present)
474 acpi_battery_set_alarm(battery);
475 return count;
476}
477
478static struct device_attribute alarm_attr = {
Parag Warudkar01e8ef12008-10-18 20:28:50 -0700479 .attr = {.name = "alarm", .mode = 0644},
Alexey Starikovskiy8bd95532007-09-26 19:44:00 +0400480 .show = acpi_battery_alarm_show,
481 .store = acpi_battery_alarm_store,
482};
483
Rich Townsend3f86b832006-07-01 11:36:54 -0400484/* --------------------------------------------------------------------------
485 FS Interface (/proc/acpi)
486 -------------------------------------------------------------------------- */
487
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300488#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400489/* Generic Routines */
Rich Townsend3f86b832006-07-01 11:36:54 -0400490static int
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400491acpi_sbs_add_fs(struct proc_dir_entry **dir,
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400492 struct proc_dir_entry *parent_dir,
493 char *dir_name,
Jan Engelhardt070d8eb2009-01-12 00:07:55 +0100494 const struct file_operations *info_fops,
495 const struct file_operations *state_fops,
496 const struct file_operations *alarm_fops, void *data)
Rich Townsend3f86b832006-07-01 11:36:54 -0400497{
Zhang Rui6d855fc2011-01-10 11:16:30 +0800498 printk(KERN_WARNING PREFIX "Deprecated procfs I/F for SBS is loaded,"
499 " please retry with CONFIG_ACPI_PROCFS_POWER cleared\n");
Rich Townsend3f86b832006-07-01 11:36:54 -0400500 if (!*dir) {
501 *dir = proc_mkdir(dir_name, parent_dir);
502 if (!*dir) {
Len Brown635227e2006-07-01 16:48:23 -0400503 return -ENODEV;
Rich Townsend3f86b832006-07-01 11:36:54 -0400504 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400505 }
506
507 /* 'info' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700508 if (info_fops)
509 proc_create_data(ACPI_SBS_FILE_INFO, S_IRUGO, *dir,
510 info_fops, data);
Rich Townsend3f86b832006-07-01 11:36:54 -0400511
512 /* 'state' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700513 if (state_fops)
514 proc_create_data(ACPI_SBS_FILE_STATE, S_IRUGO, *dir,
515 state_fops, data);
Rich Townsend3f86b832006-07-01 11:36:54 -0400516
517 /* 'alarm' [R/W] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700518 if (alarm_fops)
519 proc_create_data(ACPI_SBS_FILE_ALARM, S_IRUGO, *dir,
520 alarm_fops, data);
Len Brown635227e2006-07-01 16:48:23 -0400521 return 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400522}
523
Rich Townsend3f86b832006-07-01 11:36:54 -0400524/* 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{
Al Virod9dda782013-03-31 18:16:14 -0400574 return single_open(file, acpi_battery_read_info, PDE_DATA(inode));
Rich Townsend3f86b832006-07-01 11:36:54 -0400575}
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{
Al Virod9dda782013-03-31 18:16:14 -0400613 return single_open(file, acpi_battery_read_state, PDE_DATA(inode));
Rich Townsend3f86b832006-07-01 11:36:54 -0400614}
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{
Al Virod9dda782013-03-31 18:16:14 -0400678 return single_open(file, acpi_battery_read_alarm, PDE_DATA(inode));
Rich Townsend3f86b832006-07-01 11:36:54 -0400679}
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{
Al Virod9dda782013-03-31 18:16:14 -0400726 return single_open(file, acpi_ac_read_state, PDE_DATA(inode));
Rich Townsend3f86b832006-07-01 11:36:54 -0400727}
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
David Howellsa8ca16e2013-04-12 17:27:28 +0100826 proc_remove(battery->proc_entry);
827 battery->proc_entry = NULL;
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
David Howellsa8ca16e2013-04-12 17:27:28 +0100863 proc_remove(sbs->charger_entry);
864 sbs->charger_entry = NULL;
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);
Thomas Renninger1696d9d2013-07-15 10:15:09 +0200876 if (sbs->charger_present != saved_charger_state)
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400877 kobject_uevent(&sbs->charger.dev->kobj, KOBJ_CHANGE);
Thomas Renninger1696d9d2013-07-15 10:15:09 +0200878
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400879 if (sbs->manager_present) {
880 for (id = 0; id < MAX_SBS_BAT; ++id) {
881 if (!(sbs->batteries_supported & (1 << id)))
882 continue;
883 bat = &sbs->battery[id];
884 saved_battery_state = bat->present;
885 acpi_battery_read(bat);
886 if (saved_battery_state == bat->present)
887 continue;
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400888 kobject_uevent(&bat->bat.dev->kobj, KOBJ_CHANGE);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400889 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400890 }
891}
892
Rich Townsend3f86b832006-07-01 11:36:54 -0400893static int acpi_sbs_add(struct acpi_device *device)
894{
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400895 struct acpi_sbs *sbs;
896 int result = 0;
Vladimir Lebedev6d157022007-03-19 17:45:50 +0300897 int id;
Rich Townsend3f86b832006-07-01 11:36:54 -0400898
Burman Yan36bcbec2006-12-19 12:56:11 -0800899 sbs = kzalloc(sizeof(struct acpi_sbs), GFP_KERNEL);
Rich Townsend3f86b832006-07-01 11:36:54 -0400900 if (!sbs) {
Vladimir Lebedev72206232007-03-19 17:45:50 +0300901 result = -ENOMEM;
902 goto end;
Rich Townsend3f86b832006-07-01 11:36:54 -0400903 }
Rich Townsend3f86b832006-07-01 11:36:54 -0400904
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400905 mutex_init(&sbs->lock);
Vladimir Lebedev72206232007-03-19 17:45:50 +0300906
Alexey Starikovskiy91087df2007-09-26 19:43:28 +0400907 sbs->hc = acpi_driver_data(device->parent);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400908 sbs->device = device;
Rich Townsend3f86b832006-07-01 11:36:54 -0400909 strcpy(acpi_device_name(device), ACPI_SBS_DEVICE_NAME);
910 strcpy(acpi_device_class(device), ACPI_SBS_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700911 device->driver_data = sbs;
Rich Townsend3f86b832006-07-01 11:36:54 -0400912
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400913 result = acpi_charger_add(sbs);
Vladimir Lebedev72206232007-03-19 17:45:50 +0300914 if (result)
915 goto end;
Rich Townsend3f86b832006-07-01 11:36:54 -0400916
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400917 result = acpi_manager_get_info(sbs);
918 if (!result) {
919 sbs->manager_present = 1;
920 for (id = 0; id < MAX_SBS_BAT; ++id)
921 if ((sbs->batteries_supported & (1 << id)))
922 acpi_battery_add(sbs, id);
923 } else
924 acpi_battery_add(sbs, 0);
925 acpi_smbus_register_callback(sbs->hc, acpi_sbs_callback, sbs);
Rich Townsend3f86b832006-07-01 11:36:54 -0400926 end:
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400927 if (result)
Rafael J. Wysocki51fac832013-01-24 00:24:48 +0100928 acpi_sbs_remove(device);
Len Brown635227e2006-07-01 16:48:23 -0400929 return result;
Rich Townsend3f86b832006-07-01 11:36:54 -0400930}
931
Rafael J. Wysocki51fac832013-01-24 00:24:48 +0100932static int acpi_sbs_remove(struct acpi_device *device)
Rich Townsend3f86b832006-07-01 11:36:54 -0400933{
Len Browncece9012006-12-16 01:04:27 -0500934 struct acpi_sbs *sbs;
Rich Townsend3f86b832006-07-01 11:36:54 -0400935 int id;
936
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400937 if (!device)
Lebedev, Vladimir P963497c2006-09-05 19:49:13 +0400938 return -EINVAL;
Vladimir Lebedev72206232007-03-19 17:45:50 +0300939 sbs = acpi_driver_data(device);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400940 if (!sbs)
Len Brown635227e2006-07-01 16:48:23 -0400941 return -EINVAL;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400942 mutex_lock(&sbs->lock);
943 acpi_smbus_unregister_callback(sbs->hc);
944 for (id = 0; id < MAX_SBS_BAT; ++id)
Rich Townsend3f86b832006-07-01 11:36:54 -0400945 acpi_battery_remove(sbs, id);
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400946 acpi_charger_remove(sbs);
947 mutex_unlock(&sbs->lock);
948 mutex_destroy(&sbs->lock);
Rich Townsend3f86b832006-07-01 11:36:54 -0400949 kfree(sbs);
Len Brown635227e2006-07-01 16:48:23 -0400950 return 0;
Rich Townsend3f86b832006-07-01 11:36:54 -0400951}
952
Vladimir Lebedev72206232007-03-19 17:45:50 +0300953static void acpi_sbs_rmdirs(void)
954{
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300955#ifdef CONFIG_ACPI_PROCFS_POWER
Vladimir Lebedev72206232007-03-19 17:45:50 +0300956 if (acpi_ac_dir) {
957 acpi_unlock_ac_dir(acpi_ac_dir);
958 acpi_ac_dir = NULL;
959 }
960 if (acpi_battery_dir) {
961 acpi_unlock_battery_dir(acpi_battery_dir);
962 acpi_battery_dir = NULL;
963 }
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +0400964#endif
Vladimir Lebedev72206232007-03-19 17:45:50 +0300965}
966
Rafael J. Wysocki90692402012-08-09 23:00:02 +0200967#ifdef CONFIG_PM_SLEEP
Rafael J. Wysockid202f772012-06-27 23:27:07 +0200968static int acpi_sbs_resume(struct device *dev)
Vladimir Lebedev72206232007-03-19 17:45:50 +0300969{
970 struct acpi_sbs *sbs;
Rafael J. Wysockid202f772012-06-27 23:27:07 +0200971 if (!dev)
Vladimir Lebedev72206232007-03-19 17:45:50 +0300972 return -EINVAL;
Rafael J. Wysockid202f772012-06-27 23:27:07 +0200973 sbs = to_acpi_device(dev)->driver_data;
Alexey Starikovskiydb1c2912007-09-26 19:43:41 +0400974 acpi_sbs_callback(sbs);
Vladimir Lebedev72206232007-03-19 17:45:50 +0300975 return 0;
976}
Rafael J. Wysocki90692402012-08-09 23:00:02 +0200977#endif
Vladimir Lebedev72206232007-03-19 17:45:50 +0300978
Rafael J. Wysockid202f772012-06-27 23:27:07 +0200979static SIMPLE_DEV_PM_OPS(acpi_sbs_pm, NULL, acpi_sbs_resume);
980
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400981static struct acpi_driver acpi_sbs_driver = {
982 .name = "sbs",
983 .class = ACPI_SBS_CLASS,
984 .ids = sbs_device_ids,
985 .ops = {
986 .add = acpi_sbs_add,
987 .remove = acpi_sbs_remove,
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400988 },
Rafael J. Wysockid202f772012-06-27 23:27:07 +0200989 .drv.pm = &acpi_sbs_pm,
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +0400990};
991
Rich Townsend3f86b832006-07-01 11:36:54 -0400992static int __init acpi_sbs_init(void)
993{
994 int result = 0;
995
Len Brownb20d2ae2006-08-15 23:21:37 -0400996 if (acpi_disabled)
997 return -ENODEV;
Alexey Starikovskiyfdcedbb2007-11-19 16:33:45 +0300998#ifdef CONFIG_ACPI_PROCFS_POWER
Rich Townsend3f86b832006-07-01 11:36:54 -0400999 acpi_ac_dir = acpi_lock_ac_dir();
Alexey Starikovskiy94f6c082007-09-26 19:43:48 +04001000 if (!acpi_ac_dir)
Len Brown635227e2006-07-01 16:48:23 -04001001 return -ENODEV;
Rich Townsend3f86b832006-07-01 11:36:54 -04001002 acpi_battery_dir = acpi_lock_battery_dir();
1003 if (!acpi_battery_dir) {
Vladimir Lebedev72206232007-03-19 17:45:50 +03001004 acpi_sbs_rmdirs();
Len Brown635227e2006-07-01 16:48:23 -04001005 return -ENODEV;
Rich Townsend3f86b832006-07-01 11:36:54 -04001006 }
Alexey Starikovskiy66e4b722007-09-26 19:43:54 +04001007#endif
Rich Townsend3f86b832006-07-01 11:36:54 -04001008 result = acpi_bus_register_driver(&acpi_sbs_driver);
1009 if (result < 0) {
Vladimir Lebedev72206232007-03-19 17:45:50 +03001010 acpi_sbs_rmdirs();
Len Brown635227e2006-07-01 16:48:23 -04001011 return -ENODEV;
Rich Townsend3f86b832006-07-01 11:36:54 -04001012 }
Len Brown635227e2006-07-01 16:48:23 -04001013 return 0;
Rich Townsend3f86b832006-07-01 11:36:54 -04001014}
1015
1016static void __exit acpi_sbs_exit(void)
1017{
Rich Townsend3f86b832006-07-01 11:36:54 -04001018 acpi_bus_unregister_driver(&acpi_sbs_driver);
Vladimir Lebedev72206232007-03-19 17:45:50 +03001019 acpi_sbs_rmdirs();
Len Brown635227e2006-07-01 16:48:23 -04001020 return;
Rich Townsend3f86b832006-07-01 11:36:54 -04001021}
1022
1023module_init(acpi_sbs_init);
1024module_exit(acpi_sbs_exit);