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