]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/power/bq27x00_battery.c
tipc: set sk_err correctly when connection fails
[mirror_ubuntu-artful-kernel.git] / drivers / power / bq27x00_battery.c
CommitLineData
b996ad0e
RG
1/*
2 * BQ27x00 battery driver
3 *
4 * Copyright (C) 2008 Rodolfo Giometti <giometti@linux.it>
5 * Copyright (C) 2008 Eurotech S.p.A. <info@eurotech.it>
7fb7ba58 6 * Copyright (C) 2010-2011 Lars-Peter Clausen <lars@metafoo.de>
73c244a8 7 * Copyright (C) 2011 Pali Rohár <pali.rohar@gmail.com>
b996ad0e
RG
8 *
9 * Based on a previous work by Copyright (C) 2008 Texas Instruments, Inc.
10 *
11 * This package is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 *
15 * THIS PACKAGE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
17 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
18 *
19 */
631c17ee
PR
20
21/*
22 * Datasheets:
23 * http://focus.ti.com/docs/prod/folders/print/bq27000.html
24 * http://focus.ti.com/docs/prod/folders/print/bq27500.html
a66f59ba 25 * http://www.ti.com/product/bq27425-g1
631c17ee
PR
26 */
27
b996ad0e
RG
28#include <linux/module.h>
29#include <linux/param.h>
30#include <linux/jiffies.h>
31#include <linux/workqueue.h>
32#include <linux/delay.h>
33#include <linux/platform_device.h>
34#include <linux/power_supply.h>
35#include <linux/idr.h>
b996ad0e 36#include <linux/i2c.h>
5a0e3ad6 37#include <linux/slab.h>
8aef7e8f 38#include <asm/unaligned.h>
b996ad0e 39
7fb7ba58
LPC
40#include <linux/power/bq27x00_battery.h>
41
631c17ee 42#define DRIVER_VERSION "1.2.0"
b996ad0e
RG
43
44#define BQ27x00_REG_TEMP 0x06
45#define BQ27x00_REG_VOLT 0x08
b996ad0e
RG
46#define BQ27x00_REG_AI 0x14
47#define BQ27x00_REG_FLAGS 0x0A
4e924a81
GI
48#define BQ27x00_REG_TTE 0x16
49#define BQ27x00_REG_TTF 0x18
50#define BQ27x00_REG_TTECP 0x26
202e0116 51#define BQ27x00_REG_NAC 0x0C /* Nominal available capacity */
631c17ee
PR
52#define BQ27x00_REG_LMD 0x12 /* Last measured discharge */
53#define BQ27x00_REG_CYCT 0x2A /* Cycle count total */
202e0116 54#define BQ27x00_REG_AE 0x22 /* Available energy */
9903e627 55#define BQ27x00_POWER_AVG 0x24
b996ad0e 56
e20908d9 57#define BQ27000_REG_RSOC 0x0B /* Relative State-of-Charge */
631c17ee 58#define BQ27000_REG_ILMD 0x76 /* Initial last measured discharge */
d66bab3f
PR
59#define BQ27000_FLAG_EDVF BIT(0) /* Final End-of-Discharge-Voltage flag */
60#define BQ27000_FLAG_EDV1 BIT(1) /* First End-of-Discharge-Voltage flag */
4b226c2c 61#define BQ27000_FLAG_CI BIT(4) /* Capacity Inaccurate flag */
c1b9ab67 62#define BQ27000_FLAG_FC BIT(5)
d66bab3f 63#define BQ27000_FLAG_CHGS BIT(7) /* Charge state flag */
e20908d9 64
bf7d4140 65#define BQ27500_REG_SOC 0x2C
631c17ee 66#define BQ27500_REG_DCAP 0x3C /* Design capacity */
b7aaacf5 67#define BQ27500_FLAG_DSC BIT(0)
d66bab3f
PR
68#define BQ27500_FLAG_SOCF BIT(1) /* State-of-Charge threshold final */
69#define BQ27500_FLAG_SOC1 BIT(2) /* State-of-Charge threshold 1 */
b7aaacf5 70#define BQ27500_FLAG_FC BIT(9)
9903e627 71#define BQ27500_FLAG_OTC BIT(15)
e20908d9 72
a66f59ba
SG
73/* bq27425 register addresses are same as bq27x00 addresses minus 4 */
74#define BQ27425_REG_OFFSET 0x04
75#define BQ27425_REG_SOC 0x18 /* Register address plus offset */
76
a2e5118c 77#define BQ27000_RS 20 /* Resistor sense */
9903e627 78#define BQ27x00_POWER_CONSTANT (256 * 29200 / 1000)
a2e5118c 79
b996ad0e
RG
80struct bq27x00_device_info;
81struct bq27x00_access_methods {
297a533b 82 int (*read)(struct bq27x00_device_info *di, u8 reg, bool single);
b996ad0e
RG
83};
84
a66f59ba 85enum bq27x00_chip { BQ27000, BQ27500, BQ27425};
e20908d9 86
297a533b
LPC
87struct bq27x00_reg_cache {
88 int temperature;
89 int time_to_empty;
90 int time_to_empty_avg;
91 int time_to_full;
631c17ee 92 int charge_full;
73c244a8 93 int cycle_count;
297a533b 94 int capacity;
a8f6bd23 95 int energy;
297a533b 96 int flags;
9903e627
SR
97 int power_avg;
98 int health;
297a533b
LPC
99};
100
b996ad0e
RG
101struct bq27x00_device_info {
102 struct device *dev;
103 int id;
e20908d9 104 enum bq27x00_chip chip;
b996ad0e 105
297a533b 106 struct bq27x00_reg_cache cache;
631c17ee
PR
107 int charge_design_full;
108
297a533b 109 unsigned long last_update;
740b755a 110 struct delayed_work work;
297a533b 111
a40402ef
LPC
112 struct power_supply bat;
113
114 struct bq27x00_access_methods bus;
740b755a
LPC
115
116 struct mutex lock;
b996ad0e
RG
117};
118
119static enum power_supply_property bq27x00_battery_props[] = {
4e924a81 120 POWER_SUPPLY_PROP_STATUS,
b996ad0e
RG
121 POWER_SUPPLY_PROP_PRESENT,
122 POWER_SUPPLY_PROP_VOLTAGE_NOW,
123 POWER_SUPPLY_PROP_CURRENT_NOW,
124 POWER_SUPPLY_PROP_CAPACITY,
d66bab3f 125 POWER_SUPPLY_PROP_CAPACITY_LEVEL,
b996ad0e 126 POWER_SUPPLY_PROP_TEMP,
4e924a81
GI
127 POWER_SUPPLY_PROP_TIME_TO_EMPTY_NOW,
128 POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG,
129 POWER_SUPPLY_PROP_TIME_TO_FULL_NOW,
5661f334 130 POWER_SUPPLY_PROP_TECHNOLOGY,
631c17ee
PR
131 POWER_SUPPLY_PROP_CHARGE_FULL,
132 POWER_SUPPLY_PROP_CHARGE_NOW,
133 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
73c244a8 134 POWER_SUPPLY_PROP_CYCLE_COUNT,
631c17ee 135 POWER_SUPPLY_PROP_ENERGY_NOW,
9903e627
SR
136 POWER_SUPPLY_PROP_POWER_AVG,
137 POWER_SUPPLY_PROP_HEALTH,
b996ad0e
RG
138};
139
a66f59ba
SG
140static enum power_supply_property bq27425_battery_props[] = {
141 POWER_SUPPLY_PROP_STATUS,
142 POWER_SUPPLY_PROP_PRESENT,
143 POWER_SUPPLY_PROP_VOLTAGE_NOW,
144 POWER_SUPPLY_PROP_CURRENT_NOW,
145 POWER_SUPPLY_PROP_CAPACITY,
146 POWER_SUPPLY_PROP_CAPACITY_LEVEL,
147 POWER_SUPPLY_PROP_TEMP,
148 POWER_SUPPLY_PROP_TECHNOLOGY,
149 POWER_SUPPLY_PROP_CHARGE_FULL,
150 POWER_SUPPLY_PROP_CHARGE_NOW,
151 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
152};
153
740b755a
LPC
154static unsigned int poll_interval = 360;
155module_param(poll_interval, uint, 0644);
156MODULE_PARM_DESC(poll_interval, "battery poll interval in seconds - " \
157 "0 disables polling");
158
b996ad0e
RG
159/*
160 * Common code for BQ27x00 devices
161 */
162
a40402ef 163static inline int bq27x00_read(struct bq27x00_device_info *di, u8 reg,
297a533b 164 bool single)
b996ad0e 165{
a66f59ba
SG
166 if (di->chip == BQ27425)
167 return di->bus.read(di, reg - BQ27425_REG_OFFSET, single);
297a533b 168 return di->bus.read(di, reg, single);
b996ad0e
RG
169}
170
a66f59ba
SG
171/*
172 * Higher versions of the chip like BQ27425 and BQ27500
173 * differ from BQ27000 and BQ27200 in calculation of certain
174 * parameters. Hence we need to check for the chip type.
175 */
176static bool bq27xxx_is_chip_version_higher(struct bq27x00_device_info *di)
177{
178 if (di->chip == BQ27425 || di->chip == BQ27500)
179 return true;
180 return false;
181}
182
b996ad0e 183/*
297a533b 184 * Return the battery Relative State-of-Charge
b996ad0e
RG
185 * Or < 0 if something fails.
186 */
297a533b 187static int bq27x00_battery_read_rsoc(struct bq27x00_device_info *di)
b996ad0e 188{
297a533b 189 int rsoc;
b996ad0e 190
e20908d9 191 if (di->chip == BQ27500)
297a533b 192 rsoc = bq27x00_read(di, BQ27500_REG_SOC, false);
a66f59ba
SG
193 else if (di->chip == BQ27425)
194 rsoc = bq27x00_read(di, BQ27425_REG_SOC, false);
e20908d9 195 else
297a533b
LPC
196 rsoc = bq27x00_read(di, BQ27000_REG_RSOC, true);
197
198 if (rsoc < 0)
c6cd4f26 199 dev_dbg(di->dev, "error reading relative State-of-Charge\n");
297a533b
LPC
200
201 return rsoc;
b996ad0e
RG
202}
203
631c17ee
PR
204/*
205 * Return a battery charge value in µAh
206 * Or < 0 if something fails.
207 */
208static int bq27x00_battery_read_charge(struct bq27x00_device_info *di, u8 reg)
209{
210 int charge;
211
212 charge = bq27x00_read(di, reg, false);
213 if (charge < 0) {
c6cd4f26
PR
214 dev_dbg(di->dev, "error reading charge register %02x: %d\n",
215 reg, charge);
631c17ee
PR
216 return charge;
217 }
218
a66f59ba 219 if (bq27xxx_is_chip_version_higher(di))
631c17ee
PR
220 charge *= 1000;
221 else
222 charge = charge * 3570 / BQ27000_RS;
223
224 return charge;
225}
226
227/*
228 * Return the battery Nominal available capaciy in µAh
229 * Or < 0 if something fails.
230 */
231static inline int bq27x00_battery_read_nac(struct bq27x00_device_info *di)
232{
e59ec4a1
PR
233 int flags;
234 bool is_bq27500 = di->chip == BQ27500;
235 bool is_higher = bq27xxx_is_chip_version_higher(di);
236
237 flags = bq27x00_read(di, BQ27x00_REG_FLAGS, !is_bq27500);
238 if (flags >= 0 && !is_higher && (flags & BQ27000_FLAG_CI))
239 return -ENODATA;
240
631c17ee
PR
241 return bq27x00_battery_read_charge(di, BQ27x00_REG_NAC);
242}
243
244/*
245 * Return the battery Last measured discharge in µAh
246 * Or < 0 if something fails.
247 */
248static inline int bq27x00_battery_read_lmd(struct bq27x00_device_info *di)
249{
250 return bq27x00_battery_read_charge(di, BQ27x00_REG_LMD);
251}
252
253/*
254 * Return the battery Initial last measured discharge in µAh
255 * Or < 0 if something fails.
256 */
257static int bq27x00_battery_read_ilmd(struct bq27x00_device_info *di)
258{
259 int ilmd;
260
a66f59ba 261 if (bq27xxx_is_chip_version_higher(di))
631c17ee
PR
262 ilmd = bq27x00_read(di, BQ27500_REG_DCAP, false);
263 else
264 ilmd = bq27x00_read(di, BQ27000_REG_ILMD, true);
265
266 if (ilmd < 0) {
c6cd4f26 267 dev_dbg(di->dev, "error reading initial last measured discharge\n");
631c17ee
PR
268 return ilmd;
269 }
270
a66f59ba 271 if (bq27xxx_is_chip_version_higher(di))
631c17ee
PR
272 ilmd *= 1000;
273 else
274 ilmd = ilmd * 256 * 3570 / BQ27000_RS;
275
276 return ilmd;
277}
278
a8f6bd23
PR
279/*
280 * Return the battery Available energy in µWh
281 * Or < 0 if something fails.
282 */
283static int bq27x00_battery_read_energy(struct bq27x00_device_info *di)
284{
285 int ae;
286
287 ae = bq27x00_read(di, BQ27x00_REG_AE, false);
288 if (ae < 0) {
c6cd4f26 289 dev_dbg(di->dev, "error reading available energy\n");
a8f6bd23
PR
290 return ae;
291 }
292
293 if (di->chip == BQ27500)
294 ae *= 1000;
295 else
296 ae = ae * 29200 / BQ27000_RS;
297
298 return ae;
299}
300
d149e98e 301/*
5dc3443e 302 * Return the battery temperature in tenths of degree Kelvin
d149e98e
PR
303 * Or < 0 if something fails.
304 */
305static int bq27x00_battery_read_temperature(struct bq27x00_device_info *di)
306{
307 int temp;
308
309 temp = bq27x00_read(di, BQ27x00_REG_TEMP, false);
310 if (temp < 0) {
311 dev_err(di->dev, "error reading temperature\n");
312 return temp;
313 }
314
5dc3443e
PR
315 if (!bq27xxx_is_chip_version_higher(di))
316 temp = 5 * temp / 2;
d149e98e
PR
317
318 return temp;
319}
320
631c17ee
PR
321/*
322 * Return the battery Cycle count total
323 * Or < 0 if something fails.
324 */
325static int bq27x00_battery_read_cyct(struct bq27x00_device_info *di)
326{
327 int cyct;
328
329 cyct = bq27x00_read(di, BQ27x00_REG_CYCT, false);
330 if (cyct < 0)
331 dev_err(di->dev, "error reading cycle count total\n");
332
333 return cyct;
334}
335
b996ad0e 336/*
297a533b
LPC
337 * Read a time register.
338 * Return < 0 if something fails.
b996ad0e 339 */
297a533b 340static int bq27x00_battery_read_time(struct bq27x00_device_info *di, u8 reg)
b996ad0e 341{
297a533b 342 int tval;
b996ad0e 343
297a533b
LPC
344 tval = bq27x00_read(di, reg, false);
345 if (tval < 0) {
c6cd4f26
PR
346 dev_dbg(di->dev, "error reading time register %02x: %d\n",
347 reg, tval);
297a533b 348 return tval;
b996ad0e
RG
349 }
350
297a533b
LPC
351 if (tval == 65535)
352 return -ENODATA;
353
354 return tval * 60;
355}
356
9903e627
SR
357/*
358 * Read a power avg register.
359 * Return < 0 if something fails.
360 */
361static int bq27x00_battery_read_pwr_avg(struct bq27x00_device_info *di, u8 reg)
362{
363 int tval;
364
365 tval = bq27x00_read(di, reg, false);
366 if (tval < 0) {
367 dev_err(di->dev, "error reading power avg rgister %02x: %d\n",
368 reg, tval);
369 return tval;
370 }
371
372 if (di->chip == BQ27500)
373 return tval;
374 else
375 return (tval * BQ27x00_POWER_CONSTANT) / BQ27000_RS;
376}
377
378/*
379 * Read flag register.
380 * Return < 0 if something fails.
381 */
382static int bq27x00_battery_read_health(struct bq27x00_device_info *di)
383{
384 int tval;
385
386 tval = bq27x00_read(di, BQ27x00_REG_FLAGS, false);
387 if (tval < 0) {
388 dev_err(di->dev, "error reading flag register:%d\n", tval);
389 return tval;
390 }
391
392 if ((di->chip == BQ27500)) {
393 if (tval & BQ27500_FLAG_SOCF)
394 tval = POWER_SUPPLY_HEALTH_DEAD;
395 else if (tval & BQ27500_FLAG_OTC)
396 tval = POWER_SUPPLY_HEALTH_OVERHEAT;
397 else
398 tval = POWER_SUPPLY_HEALTH_GOOD;
399 return tval;
400 } else {
401 if (tval & BQ27000_FLAG_EDV1)
402 tval = POWER_SUPPLY_HEALTH_DEAD;
403 else
404 tval = POWER_SUPPLY_HEALTH_GOOD;
405 return tval;
406 }
407
408 return -1;
409}
410
297a533b
LPC
411static void bq27x00_update(struct bq27x00_device_info *di)
412{
413 struct bq27x00_reg_cache cache = {0, };
414 bool is_bq27500 = di->chip == BQ27500;
a66f59ba 415 bool is_bq27425 = di->chip == BQ27425;
297a533b 416
4d403659 417 cache.flags = bq27x00_read(di, BQ27x00_REG_FLAGS, !is_bq27500);
297a533b 418 if (cache.flags >= 0) {
a66f59ba
SG
419 if (!is_bq27500 && !is_bq27425
420 && (cache.flags & BQ27000_FLAG_CI)) {
c6cd4f26 421 dev_info(di->dev, "battery is not calibrated! ignoring capacity values\n");
4b226c2c 422 cache.capacity = -ENODATA;
a8f6bd23 423 cache.energy = -ENODATA;
4b226c2c
PR
424 cache.time_to_empty = -ENODATA;
425 cache.time_to_empty_avg = -ENODATA;
426 cache.time_to_full = -ENODATA;
427 cache.charge_full = -ENODATA;
9903e627 428 cache.health = -ENODATA;
4b226c2c
PR
429 } else {
430 cache.capacity = bq27x00_battery_read_rsoc(di);
a66f59ba
SG
431 if (!is_bq27425) {
432 cache.energy = bq27x00_battery_read_energy(di);
433 cache.time_to_empty =
434 bq27x00_battery_read_time(di,
435 BQ27x00_REG_TTE);
436 cache.time_to_empty_avg =
437 bq27x00_battery_read_time(di,
438 BQ27x00_REG_TTECP);
439 cache.time_to_full =
440 bq27x00_battery_read_time(di,
441 BQ27x00_REG_TTF);
442 }
4b226c2c 443 cache.charge_full = bq27x00_battery_read_lmd(di);
9903e627 444 cache.health = bq27x00_battery_read_health(di);
4b226c2c 445 }
d149e98e 446 cache.temperature = bq27x00_battery_read_temperature(di);
a66f59ba
SG
447 if (!is_bq27425)
448 cache.cycle_count = bq27x00_battery_read_cyct(di);
9903e627
SR
449 cache.power_avg =
450 bq27x00_battery_read_pwr_avg(di, BQ27x00_POWER_AVG);
297a533b 451
631c17ee
PR
452 /* We only have to read charge design full once */
453 if (di->charge_design_full <= 0)
454 di->charge_design_full = bq27x00_battery_read_ilmd(di);
297a533b
LPC
455 }
456
b68f6216 457 if (memcmp(&di->cache, &cache, sizeof(cache)) != 0) {
297a533b
LPC
458 di->cache = cache;
459 power_supply_changed(&di->bat);
460 }
461
462 di->last_update = jiffies;
463}
464
740b755a
LPC
465static void bq27x00_battery_poll(struct work_struct *work)
466{
467 struct bq27x00_device_info *di =
468 container_of(work, struct bq27x00_device_info, work.work);
469
470 bq27x00_update(di);
471
472 if (poll_interval > 0) {
473 /* The timer does not have to be accurate. */
474 set_timer_slack(&di->work.timer, poll_interval * HZ / 4);
475 schedule_delayed_work(&di->work, poll_interval * HZ);
476 }
477}
478
b996ad0e 479/*
bf7d4140 480 * Return the battery average current in µA
b996ad0e
RG
481 * Note that current can be negative signed as well
482 * Or 0 if something fails.
483 */
297a533b
LPC
484static int bq27x00_battery_current(struct bq27x00_device_info *di,
485 union power_supply_propval *val)
b996ad0e 486{
297a533b 487 int curr;
b68f6216 488 int flags;
b996ad0e 489
b68f6216 490 curr = bq27x00_read(di, BQ27x00_REG_AI, false);
c6cd4f26
PR
491 if (curr < 0) {
492 dev_err(di->dev, "error reading current\n");
297a533b 493 return curr;
c6cd4f26 494 }
e20908d9 495
a66f59ba 496 if (bq27xxx_is_chip_version_higher(di)) {
e20908d9 497 /* bq27500 returns signed value */
297a533b 498 val->intval = (int)((s16)curr) * 1000;
e20908d9 499 } else {
b68f6216
PR
500 flags = bq27x00_read(di, BQ27x00_REG_FLAGS, false);
501 if (flags & BQ27000_FLAG_CHGS) {
e20908d9 502 dev_dbg(di->dev, "negative current!\n");
afbc74fd 503 curr = -curr;
e20908d9 504 }
b996ad0e 505
297a533b 506 val->intval = curr * 3570 / BQ27000_RS;
b996ad0e
RG
507 }
508
297a533b 509 return 0;
b996ad0e
RG
510}
511
4e924a81 512static int bq27x00_battery_status(struct bq27x00_device_info *di,
297a533b 513 union power_supply_propval *val)
4e924a81 514{
4e924a81 515 int status;
4e924a81 516
a66f59ba 517 if (bq27xxx_is_chip_version_higher(di)) {
297a533b 518 if (di->cache.flags & BQ27500_FLAG_FC)
4e924a81 519 status = POWER_SUPPLY_STATUS_FULL;
b7aaacf5 520 else if (di->cache.flags & BQ27500_FLAG_DSC)
4e924a81 521 status = POWER_SUPPLY_STATUS_DISCHARGING;
270968c0 522 else
b7aaacf5 523 status = POWER_SUPPLY_STATUS_CHARGING;
4e924a81 524 } else {
c1b9ab67
LPC
525 if (di->cache.flags & BQ27000_FLAG_FC)
526 status = POWER_SUPPLY_STATUS_FULL;
527 else if (di->cache.flags & BQ27000_FLAG_CHGS)
4e924a81 528 status = POWER_SUPPLY_STATUS_CHARGING;
c1b9ab67
LPC
529 else if (power_supply_am_i_supplied(&di->bat))
530 status = POWER_SUPPLY_STATUS_NOT_CHARGING;
4e924a81
GI
531 else
532 status = POWER_SUPPLY_STATUS_DISCHARGING;
533 }
534
535 val->intval = status;
297a533b 536
4e924a81
GI
537 return 0;
538}
539
d66bab3f
PR
540static int bq27x00_battery_capacity_level(struct bq27x00_device_info *di,
541 union power_supply_propval *val)
542{
543 int level;
544
a66f59ba 545 if (bq27xxx_is_chip_version_higher(di)) {
d66bab3f
PR
546 if (di->cache.flags & BQ27500_FLAG_FC)
547 level = POWER_SUPPLY_CAPACITY_LEVEL_FULL;
548 else if (di->cache.flags & BQ27500_FLAG_SOC1)
549 level = POWER_SUPPLY_CAPACITY_LEVEL_LOW;
550 else if (di->cache.flags & BQ27500_FLAG_SOCF)
551 level = POWER_SUPPLY_CAPACITY_LEVEL_CRITICAL;
552 else
553 level = POWER_SUPPLY_CAPACITY_LEVEL_NORMAL;
554 } else {
555 if (di->cache.flags & BQ27000_FLAG_FC)
556 level = POWER_SUPPLY_CAPACITY_LEVEL_FULL;
557 else if (di->cache.flags & BQ27000_FLAG_EDV1)
558 level = POWER_SUPPLY_CAPACITY_LEVEL_LOW;
559 else if (di->cache.flags & BQ27000_FLAG_EDVF)
560 level = POWER_SUPPLY_CAPACITY_LEVEL_CRITICAL;
561 else
562 level = POWER_SUPPLY_CAPACITY_LEVEL_NORMAL;
563 }
564
565 val->intval = level;
566
567 return 0;
568}
569
4e924a81 570/*
91fe4d50 571 * Return the battery Voltage in millivolts
297a533b 572 * Or < 0 if something fails.
4e924a81 573 */
297a533b
LPC
574static int bq27x00_battery_voltage(struct bq27x00_device_info *di,
575 union power_supply_propval *val)
4e924a81 576{
297a533b 577 int volt;
4e924a81 578
297a533b 579 volt = bq27x00_read(di, BQ27x00_REG_VOLT, false);
c6cd4f26
PR
580 if (volt < 0) {
581 dev_err(di->dev, "error reading voltage\n");
297a533b 582 return volt;
c6cd4f26 583 }
4e924a81 584
297a533b
LPC
585 val->intval = volt * 1000;
586
587 return 0;
588}
589
590static int bq27x00_simple_value(int value,
591 union power_supply_propval *val)
592{
593 if (value < 0)
594 return value;
595
596 val->intval = value;
4e924a81 597
4e924a81
GI
598 return 0;
599}
600
b996ad0e
RG
601#define to_bq27x00_device_info(x) container_of((x), \
602 struct bq27x00_device_info, bat);
603
604static int bq27x00_battery_get_property(struct power_supply *psy,
605 enum power_supply_property psp,
606 union power_supply_propval *val)
607{
4e924a81 608 int ret = 0;
b996ad0e 609 struct bq27x00_device_info *di = to_bq27x00_device_info(psy);
3413b4ea 610
740b755a
LPC
611 mutex_lock(&di->lock);
612 if (time_is_before_jiffies(di->last_update + 5 * HZ)) {
613 cancel_delayed_work_sync(&di->work);
614 bq27x00_battery_poll(&di->work.work);
615 }
616 mutex_unlock(&di->lock);
297a533b
LPC
617
618 if (psp != POWER_SUPPLY_PROP_PRESENT && di->cache.flags < 0)
3413b4ea 619 return -ENODEV;
b996ad0e
RG
620
621 switch (psp) {
4e924a81
GI
622 case POWER_SUPPLY_PROP_STATUS:
623 ret = bq27x00_battery_status(di, val);
624 break;
b996ad0e 625 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
297a533b 626 ret = bq27x00_battery_voltage(di, val);
3413b4ea 627 break;
b996ad0e 628 case POWER_SUPPLY_PROP_PRESENT:
297a533b 629 val->intval = di->cache.flags < 0 ? 0 : 1;
b996ad0e
RG
630 break;
631 case POWER_SUPPLY_PROP_CURRENT_NOW:
297a533b 632 ret = bq27x00_battery_current(di, val);
b996ad0e
RG
633 break;
634 case POWER_SUPPLY_PROP_CAPACITY:
297a533b 635 ret = bq27x00_simple_value(di->cache.capacity, val);
b996ad0e 636 break;
d66bab3f
PR
637 case POWER_SUPPLY_PROP_CAPACITY_LEVEL:
638 ret = bq27x00_battery_capacity_level(di, val);
639 break;
b996ad0e 640 case POWER_SUPPLY_PROP_TEMP:
d149e98e 641 ret = bq27x00_simple_value(di->cache.temperature, val);
5dc3443e
PR
642 if (ret == 0)
643 val->intval -= 2731;
b996ad0e 644 break;
4e924a81 645 case POWER_SUPPLY_PROP_TIME_TO_EMPTY_NOW:
297a533b 646 ret = bq27x00_simple_value(di->cache.time_to_empty, val);
4e924a81
GI
647 break;
648 case POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG:
297a533b 649 ret = bq27x00_simple_value(di->cache.time_to_empty_avg, val);
4e924a81
GI
650 break;
651 case POWER_SUPPLY_PROP_TIME_TO_FULL_NOW:
297a533b 652 ret = bq27x00_simple_value(di->cache.time_to_full, val);
4e924a81 653 break;
5661f334
LPC
654 case POWER_SUPPLY_PROP_TECHNOLOGY:
655 val->intval = POWER_SUPPLY_TECHNOLOGY_LION;
656 break;
631c17ee
PR
657 case POWER_SUPPLY_PROP_CHARGE_NOW:
658 ret = bq27x00_simple_value(bq27x00_battery_read_nac(di), val);
659 break;
660 case POWER_SUPPLY_PROP_CHARGE_FULL:
661 ret = bq27x00_simple_value(di->cache.charge_full, val);
662 break;
663 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
664 ret = bq27x00_simple_value(di->charge_design_full, val);
665 break;
73c244a8
PR
666 case POWER_SUPPLY_PROP_CYCLE_COUNT:
667 ret = bq27x00_simple_value(di->cache.cycle_count, val);
631c17ee
PR
668 break;
669 case POWER_SUPPLY_PROP_ENERGY_NOW:
a8f6bd23 670 ret = bq27x00_simple_value(di->cache.energy, val);
631c17ee 671 break;
9903e627
SR
672 case POWER_SUPPLY_PROP_POWER_AVG:
673 ret = bq27x00_simple_value(di->cache.power_avg, val);
674 break;
675 case POWER_SUPPLY_PROP_HEALTH:
676 ret = bq27x00_simple_value(di->cache.health, val);
677 break;
b996ad0e
RG
678 default:
679 return -EINVAL;
680 }
681
4e924a81 682 return ret;
b996ad0e
RG
683}
684
740b755a
LPC
685static void bq27x00_external_power_changed(struct power_supply *psy)
686{
687 struct bq27x00_device_info *di = to_bq27x00_device_info(psy);
688
689 cancel_delayed_work_sync(&di->work);
690 schedule_delayed_work(&di->work, 0);
691}
692
a40402ef 693static int bq27x00_powersupply_init(struct bq27x00_device_info *di)
b996ad0e 694{
a40402ef
LPC
695 int ret;
696
b996ad0e 697 di->bat.type = POWER_SUPPLY_TYPE_BATTERY;
a66f59ba
SG
698 if (di->chip == BQ27425) {
699 di->bat.properties = bq27425_battery_props;
700 di->bat.num_properties = ARRAY_SIZE(bq27425_battery_props);
701 } else {
702 di->bat.properties = bq27x00_battery_props;
703 di->bat.num_properties = ARRAY_SIZE(bq27x00_battery_props);
704 }
b996ad0e 705 di->bat.get_property = bq27x00_battery_get_property;
740b755a
LPC
706 di->bat.external_power_changed = bq27x00_external_power_changed;
707
708 INIT_DELAYED_WORK(&di->work, bq27x00_battery_poll);
709 mutex_init(&di->lock);
a40402ef
LPC
710
711 ret = power_supply_register(di->dev, &di->bat);
712 if (ret) {
713 dev_err(di->dev, "failed to register battery: %d\n", ret);
714 return ret;
715 }
716
717 dev_info(di->dev, "support ver. %s enabled\n", DRIVER_VERSION);
718
297a533b
LPC
719 bq27x00_update(di);
720
a40402ef 721 return 0;
b996ad0e
RG
722}
723
740b755a
LPC
724static void bq27x00_powersupply_unregister(struct bq27x00_device_info *di)
725{
8cfaaa81
PR
726 /*
727 * power_supply_unregister call bq27x00_battery_get_property which
728 * call bq27x00_battery_poll.
729 * Make sure that bq27x00_battery_poll will not call
730 * schedule_delayed_work again after unregister (which cause OOPS).
731 */
732 poll_interval = 0;
733
740b755a
LPC
734 cancel_delayed_work_sync(&di->work);
735
736 power_supply_unregister(&di->bat);
737
738 mutex_destroy(&di->lock);
739}
740
7fb7ba58
LPC
741
742/* i2c specific code */
743#ifdef CONFIG_BATTERY_BQ27X00_I2C
744
745/* If the system has several batteries we need a different name for each
746 * of them...
b996ad0e 747 */
7fb7ba58
LPC
748static DEFINE_IDR(battery_id);
749static DEFINE_MUTEX(battery_mutex);
b996ad0e 750
297a533b 751static int bq27x00_read_i2c(struct bq27x00_device_info *di, u8 reg, bool single)
b996ad0e 752{
a40402ef 753 struct i2c_client *client = to_i2c_client(di->dev);
9e912f45 754 struct i2c_msg msg[2];
b996ad0e 755 unsigned char data[2];
297a533b 756 int ret;
b996ad0e
RG
757
758 if (!client->adapter)
759 return -ENODEV;
760
9e912f45
GI
761 msg[0].addr = client->addr;
762 msg[0].flags = 0;
763 msg[0].buf = &reg;
764 msg[0].len = sizeof(reg);
765 msg[1].addr = client->addr;
766 msg[1].flags = I2C_M_RD;
767 msg[1].buf = data;
2ec523a8 768 if (single)
9e912f45 769 msg[1].len = 1;
2ec523a8 770 else
9e912f45 771 msg[1].len = 2;
2ec523a8 772
9e912f45 773 ret = i2c_transfer(client->adapter, msg, ARRAY_SIZE(msg));
2ec523a8
LPC
774 if (ret < 0)
775 return ret;
776
777 if (!single)
778 ret = get_unaligned_le16(data);
779 else
780 ret = data[0];
b996ad0e 781
297a533b 782 return ret;
b996ad0e
RG
783}
784
e20908d9 785static int bq27x00_battery_probe(struct i2c_client *client,
b996ad0e
RG
786 const struct i2c_device_id *id)
787{
788 char *name;
789 struct bq27x00_device_info *di;
b996ad0e
RG
790 int num;
791 int retval = 0;
792
793 /* Get new ID for the new battery device */
b996ad0e 794 mutex_lock(&battery_mutex);
05e2cefa 795 num = idr_alloc(&battery_id, client, 0, 0, GFP_KERNEL);
b996ad0e 796 mutex_unlock(&battery_mutex);
05e2cefa
TH
797 if (num < 0)
798 return num;
b996ad0e 799
e20908d9 800 name = kasprintf(GFP_KERNEL, "%s-%d", id->name, num);
b996ad0e
RG
801 if (!name) {
802 dev_err(&client->dev, "failed to allocate device name\n");
803 retval = -ENOMEM;
804 goto batt_failed_1;
805 }
806
807 di = kzalloc(sizeof(*di), GFP_KERNEL);
808 if (!di) {
809 dev_err(&client->dev, "failed to allocate device info data\n");
810 retval = -ENOMEM;
811 goto batt_failed_2;
812 }
a40402ef 813
b996ad0e 814 di->id = num;
a40402ef 815 di->dev = &client->dev;
e20908d9 816 di->chip = id->driver_data;
a40402ef
LPC
817 di->bat.name = name;
818 di->bus.read = &bq27x00_read_i2c;
b996ad0e 819
f7760995
JL
820 retval = bq27x00_powersupply_init(di);
821 if (retval)
b996ad0e 822 goto batt_failed_3;
b996ad0e
RG
823
824 i2c_set_clientdata(client, di);
b996ad0e
RG
825
826 return 0;
827
b996ad0e
RG
828batt_failed_3:
829 kfree(di);
830batt_failed_2:
831 kfree(name);
832batt_failed_1:
833 mutex_lock(&battery_mutex);
834 idr_remove(&battery_id, num);
835 mutex_unlock(&battery_mutex);
836
837 return retval;
838}
839
e20908d9 840static int bq27x00_battery_remove(struct i2c_client *client)
b996ad0e
RG
841{
842 struct bq27x00_device_info *di = i2c_get_clientdata(client);
843
740b755a 844 bq27x00_powersupply_unregister(di);
b996ad0e
RG
845
846 kfree(di->bat.name);
847
848 mutex_lock(&battery_mutex);
849 idr_remove(&battery_id, di->id);
850 mutex_unlock(&battery_mutex);
851
852 kfree(di);
853
854 return 0;
855}
856
e20908d9
GI
857static const struct i2c_device_id bq27x00_id[] = {
858 { "bq27200", BQ27000 }, /* bq27200 is same as bq27000, but with i2c */
859 { "bq27500", BQ27500 },
a66f59ba 860 { "bq27425", BQ27425 },
b996ad0e
RG
861 {},
862};
fd9b958c 863MODULE_DEVICE_TABLE(i2c, bq27x00_id);
b996ad0e 864
e20908d9 865static struct i2c_driver bq27x00_battery_driver = {
b996ad0e 866 .driver = {
e20908d9 867 .name = "bq27x00-battery",
b996ad0e 868 },
e20908d9
GI
869 .probe = bq27x00_battery_probe,
870 .remove = bq27x00_battery_remove,
871 .id_table = bq27x00_id,
b996ad0e
RG
872};
873
7fb7ba58
LPC
874static inline int bq27x00_battery_i2c_init(void)
875{
876 int ret = i2c_add_driver(&bq27x00_battery_driver);
877 if (ret)
878 printk(KERN_ERR "Unable to register BQ27x00 i2c driver\n");
879
880 return ret;
881}
882
883static inline void bq27x00_battery_i2c_exit(void)
884{
885 i2c_del_driver(&bq27x00_battery_driver);
886}
887
888#else
889
890static inline int bq27x00_battery_i2c_init(void) { return 0; }
891static inline void bq27x00_battery_i2c_exit(void) {};
892
893#endif
894
895/* platform specific code */
896#ifdef CONFIG_BATTERY_BQ27X00_PLATFORM
897
898static int bq27000_read_platform(struct bq27x00_device_info *di, u8 reg,
297a533b 899 bool single)
7fb7ba58
LPC
900{
901 struct device *dev = di->dev;
902 struct bq27000_platform_data *pdata = dev->platform_data;
903 unsigned int timeout = 3;
904 int upper, lower;
905 int temp;
906
907 if (!single) {
908 /* Make sure the value has not changed in between reading the
909 * lower and the upper part */
910 upper = pdata->read(dev, reg + 1);
911 do {
912 temp = upper;
913 if (upper < 0)
914 return upper;
915
916 lower = pdata->read(dev, reg);
917 if (lower < 0)
918 return lower;
919
920 upper = pdata->read(dev, reg + 1);
921 } while (temp != upper && --timeout);
922
923 if (timeout == 0)
924 return -EIO;
925
297a533b 926 return (upper << 8) | lower;
7fb7ba58 927 }
297a533b
LPC
928
929 return pdata->read(dev, reg);
7fb7ba58
LPC
930}
931
c8afa640 932static int bq27000_battery_probe(struct platform_device *pdev)
7fb7ba58
LPC
933{
934 struct bq27x00_device_info *di;
935 struct bq27000_platform_data *pdata = pdev->dev.platform_data;
936 int ret;
937
938 if (!pdata) {
939 dev_err(&pdev->dev, "no platform_data supplied\n");
940 return -EINVAL;
941 }
942
943 if (!pdata->read) {
944 dev_err(&pdev->dev, "no hdq read callback supplied\n");
945 return -EINVAL;
946 }
947
948 di = kzalloc(sizeof(*di), GFP_KERNEL);
949 if (!di) {
950 dev_err(&pdev->dev, "failed to allocate device info data\n");
951 return -ENOMEM;
952 }
953
954 platform_set_drvdata(pdev, di);
955
956 di->dev = &pdev->dev;
957 di->chip = BQ27000;
958
959 di->bat.name = pdata->name ?: dev_name(&pdev->dev);
960 di->bus.read = &bq27000_read_platform;
961
962 ret = bq27x00_powersupply_init(di);
963 if (ret)
964 goto err_free;
965
966 return 0;
967
968err_free:
7fb7ba58
LPC
969 kfree(di);
970
971 return ret;
972}
973
415ec69f 974static int bq27000_battery_remove(struct platform_device *pdev)
7fb7ba58
LPC
975{
976 struct bq27x00_device_info *di = platform_get_drvdata(pdev);
977
740b755a
LPC
978 bq27x00_powersupply_unregister(di);
979
7fb7ba58
LPC
980 kfree(di);
981
982 return 0;
983}
984
985static struct platform_driver bq27000_battery_driver = {
986 .probe = bq27000_battery_probe,
28ea73f4 987 .remove = bq27000_battery_remove,
7fb7ba58
LPC
988 .driver = {
989 .name = "bq27000-battery",
990 .owner = THIS_MODULE,
991 },
992};
993
994static inline int bq27x00_battery_platform_init(void)
995{
996 int ret = platform_driver_register(&bq27000_battery_driver);
997 if (ret)
998 printk(KERN_ERR "Unable to register BQ27000 platform driver\n");
999
1000 return ret;
1001}
1002
1003static inline void bq27x00_battery_platform_exit(void)
1004{
1005 platform_driver_unregister(&bq27000_battery_driver);
1006}
1007
1008#else
1009
1010static inline int bq27x00_battery_platform_init(void) { return 0; }
1011static inline void bq27x00_battery_platform_exit(void) {};
1012
1013#endif
1014
1015/*
1016 * Module stuff
1017 */
1018
b996ad0e
RG
1019static int __init bq27x00_battery_init(void)
1020{
1021 int ret;
1022
7fb7ba58
LPC
1023 ret = bq27x00_battery_i2c_init();
1024 if (ret)
1025 return ret;
1026
1027 ret = bq27x00_battery_platform_init();
b996ad0e 1028 if (ret)
7fb7ba58 1029 bq27x00_battery_i2c_exit();
b996ad0e
RG
1030
1031 return ret;
1032}
1033module_init(bq27x00_battery_init);
1034
1035static void __exit bq27x00_battery_exit(void)
1036{
7fb7ba58
LPC
1037 bq27x00_battery_platform_exit();
1038 bq27x00_battery_i2c_exit();
b996ad0e
RG
1039}
1040module_exit(bq27x00_battery_exit);
1041
1042MODULE_AUTHOR("Rodolfo Giometti <giometti@linux.it>");
1043MODULE_DESCRIPTION("BQ27x00 battery monitor driver");
1044MODULE_LICENSE("GPL");