bq27x00_battery: Fix error return code
[deliverable/linux.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{
233 return bq27x00_battery_read_charge(di, BQ27x00_REG_NAC);
234}
235
236/*
237 * Return the battery Last measured discharge in µAh
238 * Or < 0 if something fails.
239 */
240static inline int bq27x00_battery_read_lmd(struct bq27x00_device_info *di)
241{
242 return bq27x00_battery_read_charge(di, BQ27x00_REG_LMD);
243}
244
245/*
246 * Return the battery Initial last measured discharge in µAh
247 * Or < 0 if something fails.
248 */
249static int bq27x00_battery_read_ilmd(struct bq27x00_device_info *di)
250{
251 int ilmd;
252
a66f59ba 253 if (bq27xxx_is_chip_version_higher(di))
631c17ee
PR
254 ilmd = bq27x00_read(di, BQ27500_REG_DCAP, false);
255 else
256 ilmd = bq27x00_read(di, BQ27000_REG_ILMD, true);
257
258 if (ilmd < 0) {
c6cd4f26 259 dev_dbg(di->dev, "error reading initial last measured discharge\n");
631c17ee
PR
260 return ilmd;
261 }
262
a66f59ba 263 if (bq27xxx_is_chip_version_higher(di))
631c17ee
PR
264 ilmd *= 1000;
265 else
266 ilmd = ilmd * 256 * 3570 / BQ27000_RS;
267
268 return ilmd;
269}
270
a8f6bd23
PR
271/*
272 * Return the battery Available energy in µWh
273 * Or < 0 if something fails.
274 */
275static int bq27x00_battery_read_energy(struct bq27x00_device_info *di)
276{
277 int ae;
278
279 ae = bq27x00_read(di, BQ27x00_REG_AE, false);
280 if (ae < 0) {
c6cd4f26 281 dev_dbg(di->dev, "error reading available energy\n");
a8f6bd23
PR
282 return ae;
283 }
284
285 if (di->chip == BQ27500)
286 ae *= 1000;
287 else
288 ae = ae * 29200 / BQ27000_RS;
289
290 return ae;
291}
292
d149e98e
PR
293/*
294 * Return the battery temperature in tenths of degree Celsius
295 * Or < 0 if something fails.
296 */
297static int bq27x00_battery_read_temperature(struct bq27x00_device_info *di)
298{
299 int temp;
300
301 temp = bq27x00_read(di, BQ27x00_REG_TEMP, false);
302 if (temp < 0) {
303 dev_err(di->dev, "error reading temperature\n");
304 return temp;
305 }
306
a66f59ba 307 if (bq27xxx_is_chip_version_higher(di))
d149e98e
PR
308 temp -= 2731;
309 else
310 temp = ((temp * 5) - 5463) / 2;
311
312 return temp;
313}
314
631c17ee
PR
315/*
316 * Return the battery Cycle count total
317 * Or < 0 if something fails.
318 */
319static int bq27x00_battery_read_cyct(struct bq27x00_device_info *di)
320{
321 int cyct;
322
323 cyct = bq27x00_read(di, BQ27x00_REG_CYCT, false);
324 if (cyct < 0)
325 dev_err(di->dev, "error reading cycle count total\n");
326
327 return cyct;
328}
329
b996ad0e 330/*
297a533b
LPC
331 * Read a time register.
332 * Return < 0 if something fails.
b996ad0e 333 */
297a533b 334static int bq27x00_battery_read_time(struct bq27x00_device_info *di, u8 reg)
b996ad0e 335{
297a533b 336 int tval;
b996ad0e 337
297a533b
LPC
338 tval = bq27x00_read(di, reg, false);
339 if (tval < 0) {
c6cd4f26
PR
340 dev_dbg(di->dev, "error reading time register %02x: %d\n",
341 reg, tval);
297a533b 342 return tval;
b996ad0e
RG
343 }
344
297a533b
LPC
345 if (tval == 65535)
346 return -ENODATA;
347
348 return tval * 60;
349}
350
9903e627
SR
351/*
352 * Read a power avg register.
353 * Return < 0 if something fails.
354 */
355static int bq27x00_battery_read_pwr_avg(struct bq27x00_device_info *di, u8 reg)
356{
357 int tval;
358
359 tval = bq27x00_read(di, reg, false);
360 if (tval < 0) {
361 dev_err(di->dev, "error reading power avg rgister %02x: %d\n",
362 reg, tval);
363 return tval;
364 }
365
366 if (di->chip == BQ27500)
367 return tval;
368 else
369 return (tval * BQ27x00_POWER_CONSTANT) / BQ27000_RS;
370}
371
372/*
373 * Read flag register.
374 * Return < 0 if something fails.
375 */
376static int bq27x00_battery_read_health(struct bq27x00_device_info *di)
377{
378 int tval;
379
380 tval = bq27x00_read(di, BQ27x00_REG_FLAGS, false);
381 if (tval < 0) {
382 dev_err(di->dev, "error reading flag register:%d\n", tval);
383 return tval;
384 }
385
386 if ((di->chip == BQ27500)) {
387 if (tval & BQ27500_FLAG_SOCF)
388 tval = POWER_SUPPLY_HEALTH_DEAD;
389 else if (tval & BQ27500_FLAG_OTC)
390 tval = POWER_SUPPLY_HEALTH_OVERHEAT;
391 else
392 tval = POWER_SUPPLY_HEALTH_GOOD;
393 return tval;
394 } else {
395 if (tval & BQ27000_FLAG_EDV1)
396 tval = POWER_SUPPLY_HEALTH_DEAD;
397 else
398 tval = POWER_SUPPLY_HEALTH_GOOD;
399 return tval;
400 }
401
402 return -1;
403}
404
297a533b
LPC
405static void bq27x00_update(struct bq27x00_device_info *di)
406{
407 struct bq27x00_reg_cache cache = {0, };
408 bool is_bq27500 = di->chip == BQ27500;
a66f59ba 409 bool is_bq27425 = di->chip == BQ27425;
297a533b 410
4d403659 411 cache.flags = bq27x00_read(di, BQ27x00_REG_FLAGS, !is_bq27500);
297a533b 412 if (cache.flags >= 0) {
a66f59ba
SG
413 if (!is_bq27500 && !is_bq27425
414 && (cache.flags & BQ27000_FLAG_CI)) {
c6cd4f26 415 dev_info(di->dev, "battery is not calibrated! ignoring capacity values\n");
4b226c2c 416 cache.capacity = -ENODATA;
a8f6bd23 417 cache.energy = -ENODATA;
4b226c2c
PR
418 cache.time_to_empty = -ENODATA;
419 cache.time_to_empty_avg = -ENODATA;
420 cache.time_to_full = -ENODATA;
421 cache.charge_full = -ENODATA;
9903e627 422 cache.health = -ENODATA;
4b226c2c
PR
423 } else {
424 cache.capacity = bq27x00_battery_read_rsoc(di);
a66f59ba
SG
425 if (!is_bq27425) {
426 cache.energy = bq27x00_battery_read_energy(di);
427 cache.time_to_empty =
428 bq27x00_battery_read_time(di,
429 BQ27x00_REG_TTE);
430 cache.time_to_empty_avg =
431 bq27x00_battery_read_time(di,
432 BQ27x00_REG_TTECP);
433 cache.time_to_full =
434 bq27x00_battery_read_time(di,
435 BQ27x00_REG_TTF);
436 }
4b226c2c 437 cache.charge_full = bq27x00_battery_read_lmd(di);
9903e627 438 cache.health = bq27x00_battery_read_health(di);
4b226c2c 439 }
d149e98e 440 cache.temperature = bq27x00_battery_read_temperature(di);
a66f59ba
SG
441 if (!is_bq27425)
442 cache.cycle_count = bq27x00_battery_read_cyct(di);
73c244a8 443 cache.cycle_count = bq27x00_battery_read_cyct(di);
9903e627
SR
444 cache.power_avg =
445 bq27x00_battery_read_pwr_avg(di, BQ27x00_POWER_AVG);
297a533b 446
631c17ee
PR
447 /* We only have to read charge design full once */
448 if (di->charge_design_full <= 0)
449 di->charge_design_full = bq27x00_battery_read_ilmd(di);
297a533b
LPC
450 }
451
b68f6216 452 if (memcmp(&di->cache, &cache, sizeof(cache)) != 0) {
297a533b
LPC
453 di->cache = cache;
454 power_supply_changed(&di->bat);
455 }
456
457 di->last_update = jiffies;
458}
459
740b755a
LPC
460static void bq27x00_battery_poll(struct work_struct *work)
461{
462 struct bq27x00_device_info *di =
463 container_of(work, struct bq27x00_device_info, work.work);
464
465 bq27x00_update(di);
466
467 if (poll_interval > 0) {
468 /* The timer does not have to be accurate. */
469 set_timer_slack(&di->work.timer, poll_interval * HZ / 4);
470 schedule_delayed_work(&di->work, poll_interval * HZ);
471 }
472}
473
b996ad0e 474/*
bf7d4140 475 * Return the battery average current in µA
b996ad0e
RG
476 * Note that current can be negative signed as well
477 * Or 0 if something fails.
478 */
297a533b
LPC
479static int bq27x00_battery_current(struct bq27x00_device_info *di,
480 union power_supply_propval *val)
b996ad0e 481{
297a533b 482 int curr;
b68f6216 483 int flags;
b996ad0e 484
b68f6216 485 curr = bq27x00_read(di, BQ27x00_REG_AI, false);
c6cd4f26
PR
486 if (curr < 0) {
487 dev_err(di->dev, "error reading current\n");
297a533b 488 return curr;
c6cd4f26 489 }
e20908d9 490
a66f59ba 491 if (bq27xxx_is_chip_version_higher(di)) {
e20908d9 492 /* bq27500 returns signed value */
297a533b 493 val->intval = (int)((s16)curr) * 1000;
e20908d9 494 } else {
b68f6216
PR
495 flags = bq27x00_read(di, BQ27x00_REG_FLAGS, false);
496 if (flags & BQ27000_FLAG_CHGS) {
e20908d9 497 dev_dbg(di->dev, "negative current!\n");
afbc74fd 498 curr = -curr;
e20908d9 499 }
b996ad0e 500
297a533b 501 val->intval = curr * 3570 / BQ27000_RS;
b996ad0e
RG
502 }
503
297a533b 504 return 0;
b996ad0e
RG
505}
506
4e924a81 507static int bq27x00_battery_status(struct bq27x00_device_info *di,
297a533b 508 union power_supply_propval *val)
4e924a81 509{
4e924a81 510 int status;
4e924a81 511
a66f59ba 512 if (bq27xxx_is_chip_version_higher(di)) {
297a533b 513 if (di->cache.flags & BQ27500_FLAG_FC)
4e924a81 514 status = POWER_SUPPLY_STATUS_FULL;
b7aaacf5 515 else if (di->cache.flags & BQ27500_FLAG_DSC)
4e924a81 516 status = POWER_SUPPLY_STATUS_DISCHARGING;
270968c0 517 else
b7aaacf5 518 status = POWER_SUPPLY_STATUS_CHARGING;
4e924a81 519 } else {
c1b9ab67
LPC
520 if (di->cache.flags & BQ27000_FLAG_FC)
521 status = POWER_SUPPLY_STATUS_FULL;
522 else if (di->cache.flags & BQ27000_FLAG_CHGS)
4e924a81 523 status = POWER_SUPPLY_STATUS_CHARGING;
c1b9ab67
LPC
524 else if (power_supply_am_i_supplied(&di->bat))
525 status = POWER_SUPPLY_STATUS_NOT_CHARGING;
4e924a81
GI
526 else
527 status = POWER_SUPPLY_STATUS_DISCHARGING;
528 }
529
530 val->intval = status;
297a533b 531
4e924a81
GI
532 return 0;
533}
534
d66bab3f
PR
535static int bq27x00_battery_capacity_level(struct bq27x00_device_info *di,
536 union power_supply_propval *val)
537{
538 int level;
539
a66f59ba 540 if (bq27xxx_is_chip_version_higher(di)) {
d66bab3f
PR
541 if (di->cache.flags & BQ27500_FLAG_FC)
542 level = POWER_SUPPLY_CAPACITY_LEVEL_FULL;
543 else if (di->cache.flags & BQ27500_FLAG_SOC1)
544 level = POWER_SUPPLY_CAPACITY_LEVEL_LOW;
545 else if (di->cache.flags & BQ27500_FLAG_SOCF)
546 level = POWER_SUPPLY_CAPACITY_LEVEL_CRITICAL;
547 else
548 level = POWER_SUPPLY_CAPACITY_LEVEL_NORMAL;
549 } else {
550 if (di->cache.flags & BQ27000_FLAG_FC)
551 level = POWER_SUPPLY_CAPACITY_LEVEL_FULL;
552 else if (di->cache.flags & BQ27000_FLAG_EDV1)
553 level = POWER_SUPPLY_CAPACITY_LEVEL_LOW;
554 else if (di->cache.flags & BQ27000_FLAG_EDVF)
555 level = POWER_SUPPLY_CAPACITY_LEVEL_CRITICAL;
556 else
557 level = POWER_SUPPLY_CAPACITY_LEVEL_NORMAL;
558 }
559
560 val->intval = level;
561
562 return 0;
563}
564
4e924a81 565/*
91fe4d50 566 * Return the battery Voltage in millivolts
297a533b 567 * Or < 0 if something fails.
4e924a81 568 */
297a533b
LPC
569static int bq27x00_battery_voltage(struct bq27x00_device_info *di,
570 union power_supply_propval *val)
4e924a81 571{
297a533b 572 int volt;
4e924a81 573
297a533b 574 volt = bq27x00_read(di, BQ27x00_REG_VOLT, false);
c6cd4f26
PR
575 if (volt < 0) {
576 dev_err(di->dev, "error reading voltage\n");
297a533b 577 return volt;
c6cd4f26 578 }
4e924a81 579
297a533b
LPC
580 val->intval = volt * 1000;
581
582 return 0;
583}
584
585static int bq27x00_simple_value(int value,
586 union power_supply_propval *val)
587{
588 if (value < 0)
589 return value;
590
591 val->intval = value;
4e924a81 592
4e924a81
GI
593 return 0;
594}
595
b996ad0e
RG
596#define to_bq27x00_device_info(x) container_of((x), \
597 struct bq27x00_device_info, bat);
598
599static int bq27x00_battery_get_property(struct power_supply *psy,
600 enum power_supply_property psp,
601 union power_supply_propval *val)
602{
4e924a81 603 int ret = 0;
b996ad0e 604 struct bq27x00_device_info *di = to_bq27x00_device_info(psy);
3413b4ea 605
740b755a
LPC
606 mutex_lock(&di->lock);
607 if (time_is_before_jiffies(di->last_update + 5 * HZ)) {
608 cancel_delayed_work_sync(&di->work);
609 bq27x00_battery_poll(&di->work.work);
610 }
611 mutex_unlock(&di->lock);
297a533b
LPC
612
613 if (psp != POWER_SUPPLY_PROP_PRESENT && di->cache.flags < 0)
3413b4ea 614 return -ENODEV;
b996ad0e
RG
615
616 switch (psp) {
4e924a81
GI
617 case POWER_SUPPLY_PROP_STATUS:
618 ret = bq27x00_battery_status(di, val);
619 break;
b996ad0e 620 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
297a533b 621 ret = bq27x00_battery_voltage(di, val);
3413b4ea 622 break;
b996ad0e 623 case POWER_SUPPLY_PROP_PRESENT:
297a533b 624 val->intval = di->cache.flags < 0 ? 0 : 1;
b996ad0e
RG
625 break;
626 case POWER_SUPPLY_PROP_CURRENT_NOW:
297a533b 627 ret = bq27x00_battery_current(di, val);
b996ad0e
RG
628 break;
629 case POWER_SUPPLY_PROP_CAPACITY:
297a533b 630 ret = bq27x00_simple_value(di->cache.capacity, val);
b996ad0e 631 break;
d66bab3f
PR
632 case POWER_SUPPLY_PROP_CAPACITY_LEVEL:
633 ret = bq27x00_battery_capacity_level(di, val);
634 break;
b996ad0e 635 case POWER_SUPPLY_PROP_TEMP:
d149e98e 636 ret = bq27x00_simple_value(di->cache.temperature, val);
b996ad0e 637 break;
4e924a81 638 case POWER_SUPPLY_PROP_TIME_TO_EMPTY_NOW:
297a533b 639 ret = bq27x00_simple_value(di->cache.time_to_empty, val);
4e924a81
GI
640 break;
641 case POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG:
297a533b 642 ret = bq27x00_simple_value(di->cache.time_to_empty_avg, val);
4e924a81
GI
643 break;
644 case POWER_SUPPLY_PROP_TIME_TO_FULL_NOW:
297a533b 645 ret = bq27x00_simple_value(di->cache.time_to_full, val);
4e924a81 646 break;
5661f334
LPC
647 case POWER_SUPPLY_PROP_TECHNOLOGY:
648 val->intval = POWER_SUPPLY_TECHNOLOGY_LION;
649 break;
631c17ee
PR
650 case POWER_SUPPLY_PROP_CHARGE_NOW:
651 ret = bq27x00_simple_value(bq27x00_battery_read_nac(di), val);
652 break;
653 case POWER_SUPPLY_PROP_CHARGE_FULL:
654 ret = bq27x00_simple_value(di->cache.charge_full, val);
655 break;
656 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
657 ret = bq27x00_simple_value(di->charge_design_full, val);
658 break;
73c244a8
PR
659 case POWER_SUPPLY_PROP_CYCLE_COUNT:
660 ret = bq27x00_simple_value(di->cache.cycle_count, val);
631c17ee
PR
661 break;
662 case POWER_SUPPLY_PROP_ENERGY_NOW:
a8f6bd23 663 ret = bq27x00_simple_value(di->cache.energy, val);
631c17ee 664 break;
9903e627
SR
665 case POWER_SUPPLY_PROP_POWER_AVG:
666 ret = bq27x00_simple_value(di->cache.power_avg, val);
667 break;
668 case POWER_SUPPLY_PROP_HEALTH:
669 ret = bq27x00_simple_value(di->cache.health, val);
670 break;
b996ad0e
RG
671 default:
672 return -EINVAL;
673 }
674
4e924a81 675 return ret;
b996ad0e
RG
676}
677
740b755a
LPC
678static void bq27x00_external_power_changed(struct power_supply *psy)
679{
680 struct bq27x00_device_info *di = to_bq27x00_device_info(psy);
681
682 cancel_delayed_work_sync(&di->work);
683 schedule_delayed_work(&di->work, 0);
684}
685
a40402ef 686static int bq27x00_powersupply_init(struct bq27x00_device_info *di)
b996ad0e 687{
a40402ef
LPC
688 int ret;
689
b996ad0e 690 di->bat.type = POWER_SUPPLY_TYPE_BATTERY;
a66f59ba
SG
691 di->chip = BQ27425;
692 if (di->chip == BQ27425) {
693 di->bat.properties = bq27425_battery_props;
694 di->bat.num_properties = ARRAY_SIZE(bq27425_battery_props);
695 } else {
696 di->bat.properties = bq27x00_battery_props;
697 di->bat.num_properties = ARRAY_SIZE(bq27x00_battery_props);
698 }
b996ad0e 699 di->bat.get_property = bq27x00_battery_get_property;
740b755a
LPC
700 di->bat.external_power_changed = bq27x00_external_power_changed;
701
702 INIT_DELAYED_WORK(&di->work, bq27x00_battery_poll);
703 mutex_init(&di->lock);
a40402ef
LPC
704
705 ret = power_supply_register(di->dev, &di->bat);
706 if (ret) {
707 dev_err(di->dev, "failed to register battery: %d\n", ret);
708 return ret;
709 }
710
711 dev_info(di->dev, "support ver. %s enabled\n", DRIVER_VERSION);
712
297a533b
LPC
713 bq27x00_update(di);
714
a40402ef 715 return 0;
b996ad0e
RG
716}
717
740b755a
LPC
718static void bq27x00_powersupply_unregister(struct bq27x00_device_info *di)
719{
8cfaaa81
PR
720 /*
721 * power_supply_unregister call bq27x00_battery_get_property which
722 * call bq27x00_battery_poll.
723 * Make sure that bq27x00_battery_poll will not call
724 * schedule_delayed_work again after unregister (which cause OOPS).
725 */
726 poll_interval = 0;
727
740b755a
LPC
728 cancel_delayed_work_sync(&di->work);
729
730 power_supply_unregister(&di->bat);
731
732 mutex_destroy(&di->lock);
733}
734
7fb7ba58
LPC
735
736/* i2c specific code */
737#ifdef CONFIG_BATTERY_BQ27X00_I2C
738
739/* If the system has several batteries we need a different name for each
740 * of them...
b996ad0e 741 */
7fb7ba58
LPC
742static DEFINE_IDR(battery_id);
743static DEFINE_MUTEX(battery_mutex);
b996ad0e 744
297a533b 745static int bq27x00_read_i2c(struct bq27x00_device_info *di, u8 reg, bool single)
b996ad0e 746{
a40402ef 747 struct i2c_client *client = to_i2c_client(di->dev);
9e912f45 748 struct i2c_msg msg[2];
b996ad0e 749 unsigned char data[2];
297a533b 750 int ret;
b996ad0e
RG
751
752 if (!client->adapter)
753 return -ENODEV;
754
9e912f45
GI
755 msg[0].addr = client->addr;
756 msg[0].flags = 0;
757 msg[0].buf = &reg;
758 msg[0].len = sizeof(reg);
759 msg[1].addr = client->addr;
760 msg[1].flags = I2C_M_RD;
761 msg[1].buf = data;
2ec523a8 762 if (single)
9e912f45 763 msg[1].len = 1;
2ec523a8 764 else
9e912f45 765 msg[1].len = 2;
2ec523a8 766
9e912f45 767 ret = i2c_transfer(client->adapter, msg, ARRAY_SIZE(msg));
2ec523a8
LPC
768 if (ret < 0)
769 return ret;
770
771 if (!single)
772 ret = get_unaligned_le16(data);
773 else
774 ret = data[0];
b996ad0e 775
297a533b 776 return ret;
b996ad0e
RG
777}
778
e20908d9 779static int bq27x00_battery_probe(struct i2c_client *client,
b996ad0e
RG
780 const struct i2c_device_id *id)
781{
782 char *name;
783 struct bq27x00_device_info *di;
b996ad0e
RG
784 int num;
785 int retval = 0;
786
787 /* Get new ID for the new battery device */
788 retval = idr_pre_get(&battery_id, GFP_KERNEL);
789 if (retval == 0)
790 return -ENOMEM;
791 mutex_lock(&battery_mutex);
792 retval = idr_get_new(&battery_id, client, &num);
793 mutex_unlock(&battery_mutex);
794 if (retval < 0)
795 return retval;
796
e20908d9 797 name = kasprintf(GFP_KERNEL, "%s-%d", id->name, num);
b996ad0e
RG
798 if (!name) {
799 dev_err(&client->dev, "failed to allocate device name\n");
800 retval = -ENOMEM;
801 goto batt_failed_1;
802 }
803
804 di = kzalloc(sizeof(*di), GFP_KERNEL);
805 if (!di) {
806 dev_err(&client->dev, "failed to allocate device info data\n");
807 retval = -ENOMEM;
808 goto batt_failed_2;
809 }
a40402ef 810
b996ad0e 811 di->id = num;
a40402ef 812 di->dev = &client->dev;
e20908d9 813 di->chip = id->driver_data;
a40402ef
LPC
814 di->bat.name = name;
815 di->bus.read = &bq27x00_read_i2c;
b996ad0e 816
f7760995
JL
817 retval = bq27x00_powersupply_init(di);
818 if (retval)
b996ad0e 819 goto batt_failed_3;
b996ad0e
RG
820
821 i2c_set_clientdata(client, di);
b996ad0e
RG
822
823 return 0;
824
b996ad0e
RG
825batt_failed_3:
826 kfree(di);
827batt_failed_2:
828 kfree(name);
829batt_failed_1:
830 mutex_lock(&battery_mutex);
831 idr_remove(&battery_id, num);
832 mutex_unlock(&battery_mutex);
833
834 return retval;
835}
836
e20908d9 837static int bq27x00_battery_remove(struct i2c_client *client)
b996ad0e
RG
838{
839 struct bq27x00_device_info *di = i2c_get_clientdata(client);
840
740b755a 841 bq27x00_powersupply_unregister(di);
b996ad0e
RG
842
843 kfree(di->bat.name);
844
845 mutex_lock(&battery_mutex);
846 idr_remove(&battery_id, di->id);
847 mutex_unlock(&battery_mutex);
848
849 kfree(di);
850
851 return 0;
852}
853
e20908d9
GI
854static const struct i2c_device_id bq27x00_id[] = {
855 { "bq27200", BQ27000 }, /* bq27200 is same as bq27000, but with i2c */
856 { "bq27500", BQ27500 },
a66f59ba 857 { "bq27425", BQ27425 },
b996ad0e
RG
858 {},
859};
fd9b958c 860MODULE_DEVICE_TABLE(i2c, bq27x00_id);
b996ad0e 861
e20908d9 862static struct i2c_driver bq27x00_battery_driver = {
b996ad0e 863 .driver = {
e20908d9 864 .name = "bq27x00-battery",
b996ad0e 865 },
e20908d9
GI
866 .probe = bq27x00_battery_probe,
867 .remove = bq27x00_battery_remove,
868 .id_table = bq27x00_id,
b996ad0e
RG
869};
870
7fb7ba58
LPC
871static inline int bq27x00_battery_i2c_init(void)
872{
873 int ret = i2c_add_driver(&bq27x00_battery_driver);
874 if (ret)
875 printk(KERN_ERR "Unable to register BQ27x00 i2c driver\n");
876
877 return ret;
878}
879
880static inline void bq27x00_battery_i2c_exit(void)
881{
882 i2c_del_driver(&bq27x00_battery_driver);
883}
884
885#else
886
887static inline int bq27x00_battery_i2c_init(void) { return 0; }
888static inline void bq27x00_battery_i2c_exit(void) {};
889
890#endif
891
892/* platform specific code */
893#ifdef CONFIG_BATTERY_BQ27X00_PLATFORM
894
895static int bq27000_read_platform(struct bq27x00_device_info *di, u8 reg,
297a533b 896 bool single)
7fb7ba58
LPC
897{
898 struct device *dev = di->dev;
899 struct bq27000_platform_data *pdata = dev->platform_data;
900 unsigned int timeout = 3;
901 int upper, lower;
902 int temp;
903
904 if (!single) {
905 /* Make sure the value has not changed in between reading the
906 * lower and the upper part */
907 upper = pdata->read(dev, reg + 1);
908 do {
909 temp = upper;
910 if (upper < 0)
911 return upper;
912
913 lower = pdata->read(dev, reg);
914 if (lower < 0)
915 return lower;
916
917 upper = pdata->read(dev, reg + 1);
918 } while (temp != upper && --timeout);
919
920 if (timeout == 0)
921 return -EIO;
922
297a533b 923 return (upper << 8) | lower;
7fb7ba58 924 }
297a533b
LPC
925
926 return pdata->read(dev, reg);
7fb7ba58
LPC
927}
928
929static int __devinit bq27000_battery_probe(struct platform_device *pdev)
930{
931 struct bq27x00_device_info *di;
932 struct bq27000_platform_data *pdata = pdev->dev.platform_data;
933 int ret;
934
935 if (!pdata) {
936 dev_err(&pdev->dev, "no platform_data supplied\n");
937 return -EINVAL;
938 }
939
940 if (!pdata->read) {
941 dev_err(&pdev->dev, "no hdq read callback supplied\n");
942 return -EINVAL;
943 }
944
945 di = kzalloc(sizeof(*di), GFP_KERNEL);
946 if (!di) {
947 dev_err(&pdev->dev, "failed to allocate device info data\n");
948 return -ENOMEM;
949 }
950
951 platform_set_drvdata(pdev, di);
952
953 di->dev = &pdev->dev;
954 di->chip = BQ27000;
955
956 di->bat.name = pdata->name ?: dev_name(&pdev->dev);
957 di->bus.read = &bq27000_read_platform;
958
959 ret = bq27x00_powersupply_init(di);
960 if (ret)
961 goto err_free;
962
963 return 0;
964
965err_free:
966 platform_set_drvdata(pdev, NULL);
967 kfree(di);
968
969 return ret;
970}
971
972static int __devexit bq27000_battery_remove(struct platform_device *pdev)
973{
974 struct bq27x00_device_info *di = platform_get_drvdata(pdev);
975
740b755a
LPC
976 bq27x00_powersupply_unregister(di);
977
7fb7ba58
LPC
978 platform_set_drvdata(pdev, NULL);
979 kfree(di);
980
981 return 0;
982}
983
984static struct platform_driver bq27000_battery_driver = {
985 .probe = bq27000_battery_probe,
986 .remove = __devexit_p(bq27000_battery_remove),
987 .driver = {
988 .name = "bq27000-battery",
989 .owner = THIS_MODULE,
990 },
991};
992
993static inline int bq27x00_battery_platform_init(void)
994{
995 int ret = platform_driver_register(&bq27000_battery_driver);
996 if (ret)
997 printk(KERN_ERR "Unable to register BQ27000 platform driver\n");
998
999 return ret;
1000}
1001
1002static inline void bq27x00_battery_platform_exit(void)
1003{
1004 platform_driver_unregister(&bq27000_battery_driver);
1005}
1006
1007#else
1008
1009static inline int bq27x00_battery_platform_init(void) { return 0; }
1010static inline void bq27x00_battery_platform_exit(void) {};
1011
1012#endif
1013
1014/*
1015 * Module stuff
1016 */
1017
b996ad0e
RG
1018static int __init bq27x00_battery_init(void)
1019{
1020 int ret;
1021
7fb7ba58
LPC
1022 ret = bq27x00_battery_i2c_init();
1023 if (ret)
1024 return ret;
1025
1026 ret = bq27x00_battery_platform_init();
b996ad0e 1027 if (ret)
7fb7ba58 1028 bq27x00_battery_i2c_exit();
b996ad0e
RG
1029
1030 return ret;
1031}
1032module_init(bq27x00_battery_init);
1033
1034static void __exit bq27x00_battery_exit(void)
1035{
7fb7ba58
LPC
1036 bq27x00_battery_platform_exit();
1037 bq27x00_battery_i2c_exit();
b996ad0e
RG
1038}
1039module_exit(bq27x00_battery_exit);
1040
1041MODULE_AUTHOR("Rodolfo Giometti <giometti@linux.it>");
1042MODULE_DESCRIPTION("BQ27x00 battery monitor driver");
1043MODULE_LICENSE("GPL");
This page took 0.293831 seconds and 5 git commands to generate.