]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - drivers/power/bq27x00_battery.c
bq27x00_battery: Introduce the use of the managed version of kzalloc
[mirror_ubuntu-bionic-kernel.git] / drivers / power / bq27x00_battery.c
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>
6 * Copyright (C) 2010-2011 Lars-Peter Clausen <lars@metafoo.de>
7 * Copyright (C) 2011 Pali Rohár <pali.rohar@gmail.com>
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 */
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
25 * http://www.ti.com/product/bq27425-g1
26 */
27
28 #include <linux/device.h>
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>
37 #include <linux/i2c.h>
38 #include <linux/slab.h>
39 #include <asm/unaligned.h>
40
41 #include <linux/power/bq27x00_battery.h>
42
43 #define DRIVER_VERSION "1.2.0"
44
45 #define BQ27x00_REG_TEMP 0x06
46 #define BQ27x00_REG_VOLT 0x08
47 #define BQ27x00_REG_AI 0x14
48 #define BQ27x00_REG_FLAGS 0x0A
49 #define BQ27x00_REG_TTE 0x16
50 #define BQ27x00_REG_TTF 0x18
51 #define BQ27x00_REG_TTECP 0x26
52 #define BQ27x00_REG_NAC 0x0C /* Nominal available capacity */
53 #define BQ27x00_REG_LMD 0x12 /* Last measured discharge */
54 #define BQ27x00_REG_CYCT 0x2A /* Cycle count total */
55 #define BQ27x00_REG_AE 0x22 /* Available energy */
56 #define BQ27x00_POWER_AVG 0x24
57
58 #define BQ27000_REG_RSOC 0x0B /* Relative State-of-Charge */
59 #define BQ27000_REG_ILMD 0x76 /* Initial last measured discharge */
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 */
62 #define BQ27000_FLAG_CI BIT(4) /* Capacity Inaccurate flag */
63 #define BQ27000_FLAG_FC BIT(5)
64 #define BQ27000_FLAG_CHGS BIT(7) /* Charge state flag */
65
66 #define BQ27500_REG_SOC 0x2C
67 #define BQ27500_REG_DCAP 0x3C /* Design capacity */
68 #define BQ27500_FLAG_DSC BIT(0)
69 #define BQ27500_FLAG_SOCF BIT(1) /* State-of-Charge threshold final */
70 #define BQ27500_FLAG_SOC1 BIT(2) /* State-of-Charge threshold 1 */
71 #define BQ27500_FLAG_FC BIT(9)
72 #define BQ27500_FLAG_OTC BIT(15)
73
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
78 #define BQ27000_RS 20 /* Resistor sense */
79 #define BQ27x00_POWER_CONSTANT (256 * 29200 / 1000)
80
81 struct bq27x00_device_info;
82 struct bq27x00_access_methods {
83 int (*read)(struct bq27x00_device_info *di, u8 reg, bool single);
84 };
85
86 enum bq27x00_chip { BQ27000, BQ27500, BQ27425};
87
88 struct bq27x00_reg_cache {
89 int temperature;
90 int time_to_empty;
91 int time_to_empty_avg;
92 int time_to_full;
93 int charge_full;
94 int cycle_count;
95 int capacity;
96 int energy;
97 int flags;
98 int power_avg;
99 int health;
100 };
101
102 struct bq27x00_device_info {
103 struct device *dev;
104 int id;
105 enum bq27x00_chip chip;
106
107 struct bq27x00_reg_cache cache;
108 int charge_design_full;
109
110 unsigned long last_update;
111 struct delayed_work work;
112
113 struct power_supply bat;
114
115 struct bq27x00_access_methods bus;
116
117 struct mutex lock;
118 };
119
120 static enum power_supply_property bq27x00_battery_props[] = {
121 POWER_SUPPLY_PROP_STATUS,
122 POWER_SUPPLY_PROP_PRESENT,
123 POWER_SUPPLY_PROP_VOLTAGE_NOW,
124 POWER_SUPPLY_PROP_CURRENT_NOW,
125 POWER_SUPPLY_PROP_CAPACITY,
126 POWER_SUPPLY_PROP_CAPACITY_LEVEL,
127 POWER_SUPPLY_PROP_TEMP,
128 POWER_SUPPLY_PROP_TIME_TO_EMPTY_NOW,
129 POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG,
130 POWER_SUPPLY_PROP_TIME_TO_FULL_NOW,
131 POWER_SUPPLY_PROP_TECHNOLOGY,
132 POWER_SUPPLY_PROP_CHARGE_FULL,
133 POWER_SUPPLY_PROP_CHARGE_NOW,
134 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
135 POWER_SUPPLY_PROP_CYCLE_COUNT,
136 POWER_SUPPLY_PROP_ENERGY_NOW,
137 POWER_SUPPLY_PROP_POWER_AVG,
138 POWER_SUPPLY_PROP_HEALTH,
139 };
140
141 static 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
155 static unsigned int poll_interval = 360;
156 module_param(poll_interval, uint, 0644);
157 MODULE_PARM_DESC(poll_interval, "battery poll interval in seconds - " \
158 "0 disables polling");
159
160 /*
161 * Common code for BQ27x00 devices
162 */
163
164 static inline int bq27x00_read(struct bq27x00_device_info *di, u8 reg,
165 bool single)
166 {
167 if (di->chip == BQ27425)
168 return di->bus.read(di, reg - BQ27425_REG_OFFSET, single);
169 return di->bus.read(di, reg, single);
170 }
171
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 */
177 static 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
184 /*
185 * Return the battery Relative State-of-Charge
186 * Or < 0 if something fails.
187 */
188 static int bq27x00_battery_read_rsoc(struct bq27x00_device_info *di)
189 {
190 int rsoc;
191
192 if (di->chip == BQ27500)
193 rsoc = bq27x00_read(di, BQ27500_REG_SOC, false);
194 else if (di->chip == BQ27425)
195 rsoc = bq27x00_read(di, BQ27425_REG_SOC, false);
196 else
197 rsoc = bq27x00_read(di, BQ27000_REG_RSOC, true);
198
199 if (rsoc < 0)
200 dev_dbg(di->dev, "error reading relative State-of-Charge\n");
201
202 return rsoc;
203 }
204
205 /*
206 * Return a battery charge value in µAh
207 * Or < 0 if something fails.
208 */
209 static 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) {
215 dev_dbg(di->dev, "error reading charge register %02x: %d\n",
216 reg, charge);
217 return charge;
218 }
219
220 if (bq27xxx_is_chip_version_higher(di))
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 */
232 static inline int bq27x00_battery_read_nac(struct bq27x00_device_info *di)
233 {
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
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 */
249 static 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 */
258 static int bq27x00_battery_read_ilmd(struct bq27x00_device_info *di)
259 {
260 int ilmd;
261
262 if (bq27xxx_is_chip_version_higher(di))
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) {
268 dev_dbg(di->dev, "error reading initial last measured discharge\n");
269 return ilmd;
270 }
271
272 if (bq27xxx_is_chip_version_higher(di))
273 ilmd *= 1000;
274 else
275 ilmd = ilmd * 256 * 3570 / BQ27000_RS;
276
277 return ilmd;
278 }
279
280 /*
281 * Return the battery Available energy in µWh
282 * Or < 0 if something fails.
283 */
284 static 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) {
290 dev_dbg(di->dev, "error reading available energy\n");
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
302 /*
303 * Return the battery temperature in tenths of degree Kelvin
304 * Or < 0 if something fails.
305 */
306 static 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
316 if (!bq27xxx_is_chip_version_higher(di))
317 temp = 5 * temp / 2;
318
319 return temp;
320 }
321
322 /*
323 * Return the battery Cycle count total
324 * Or < 0 if something fails.
325 */
326 static 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
337 /*
338 * Read a time register.
339 * Return < 0 if something fails.
340 */
341 static int bq27x00_battery_read_time(struct bq27x00_device_info *di, u8 reg)
342 {
343 int tval;
344
345 tval = bq27x00_read(di, reg, false);
346 if (tval < 0) {
347 dev_dbg(di->dev, "error reading time register %02x: %d\n",
348 reg, tval);
349 return tval;
350 }
351
352 if (tval == 65535)
353 return -ENODATA;
354
355 return tval * 60;
356 }
357
358 /*
359 * Read a power avg register.
360 * Return < 0 if something fails.
361 */
362 static 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 */
383 static 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
412 static void bq27x00_update(struct bq27x00_device_info *di)
413 {
414 struct bq27x00_reg_cache cache = {0, };
415 bool is_bq27500 = di->chip == BQ27500;
416 bool is_bq27425 = di->chip == BQ27425;
417
418 cache.flags = bq27x00_read(di, BQ27x00_REG_FLAGS, !is_bq27500);
419 if (cache.flags >= 0) {
420 if (!is_bq27500 && !is_bq27425
421 && (cache.flags & BQ27000_FLAG_CI)) {
422 dev_info(di->dev, "battery is not calibrated! ignoring capacity values\n");
423 cache.capacity = -ENODATA;
424 cache.energy = -ENODATA;
425 cache.time_to_empty = -ENODATA;
426 cache.time_to_empty_avg = -ENODATA;
427 cache.time_to_full = -ENODATA;
428 cache.charge_full = -ENODATA;
429 cache.health = -ENODATA;
430 } else {
431 cache.capacity = bq27x00_battery_read_rsoc(di);
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 }
444 cache.charge_full = bq27x00_battery_read_lmd(di);
445 cache.health = bq27x00_battery_read_health(di);
446 }
447 cache.temperature = bq27x00_battery_read_temperature(di);
448 if (!is_bq27425)
449 cache.cycle_count = bq27x00_battery_read_cyct(di);
450 cache.power_avg =
451 bq27x00_battery_read_pwr_avg(di, BQ27x00_POWER_AVG);
452
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);
456 }
457
458 if (memcmp(&di->cache, &cache, sizeof(cache)) != 0) {
459 di->cache = cache;
460 power_supply_changed(&di->bat);
461 }
462
463 di->last_update = jiffies;
464 }
465
466 static 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
480 /*
481 * Return the battery average current in µA
482 * Note that current can be negative signed as well
483 * Or 0 if something fails.
484 */
485 static int bq27x00_battery_current(struct bq27x00_device_info *di,
486 union power_supply_propval *val)
487 {
488 int curr;
489 int flags;
490
491 curr = bq27x00_read(di, BQ27x00_REG_AI, false);
492 if (curr < 0) {
493 dev_err(di->dev, "error reading current\n");
494 return curr;
495 }
496
497 if (bq27xxx_is_chip_version_higher(di)) {
498 /* bq27500 returns signed value */
499 val->intval = (int)((s16)curr) * 1000;
500 } else {
501 flags = bq27x00_read(di, BQ27x00_REG_FLAGS, false);
502 if (flags & BQ27000_FLAG_CHGS) {
503 dev_dbg(di->dev, "negative current!\n");
504 curr = -curr;
505 }
506
507 val->intval = curr * 3570 / BQ27000_RS;
508 }
509
510 return 0;
511 }
512
513 static int bq27x00_battery_status(struct bq27x00_device_info *di,
514 union power_supply_propval *val)
515 {
516 int status;
517
518 if (bq27xxx_is_chip_version_higher(di)) {
519 if (di->cache.flags & BQ27500_FLAG_FC)
520 status = POWER_SUPPLY_STATUS_FULL;
521 else if (di->cache.flags & BQ27500_FLAG_DSC)
522 status = POWER_SUPPLY_STATUS_DISCHARGING;
523 else
524 status = POWER_SUPPLY_STATUS_CHARGING;
525 } else {
526 if (di->cache.flags & BQ27000_FLAG_FC)
527 status = POWER_SUPPLY_STATUS_FULL;
528 else if (di->cache.flags & BQ27000_FLAG_CHGS)
529 status = POWER_SUPPLY_STATUS_CHARGING;
530 else if (power_supply_am_i_supplied(&di->bat))
531 status = POWER_SUPPLY_STATUS_NOT_CHARGING;
532 else
533 status = POWER_SUPPLY_STATUS_DISCHARGING;
534 }
535
536 val->intval = status;
537
538 return 0;
539 }
540
541 static int bq27x00_battery_capacity_level(struct bq27x00_device_info *di,
542 union power_supply_propval *val)
543 {
544 int level;
545
546 if (bq27xxx_is_chip_version_higher(di)) {
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
571 /*
572 * Return the battery Voltage in millivolts
573 * Or < 0 if something fails.
574 */
575 static int bq27x00_battery_voltage(struct bq27x00_device_info *di,
576 union power_supply_propval *val)
577 {
578 int volt;
579
580 volt = bq27x00_read(di, BQ27x00_REG_VOLT, false);
581 if (volt < 0) {
582 dev_err(di->dev, "error reading voltage\n");
583 return volt;
584 }
585
586 val->intval = volt * 1000;
587
588 return 0;
589 }
590
591 static 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;
598
599 return 0;
600 }
601
602 #define to_bq27x00_device_info(x) container_of((x), \
603 struct bq27x00_device_info, bat);
604
605 static int bq27x00_battery_get_property(struct power_supply *psy,
606 enum power_supply_property psp,
607 union power_supply_propval *val)
608 {
609 int ret = 0;
610 struct bq27x00_device_info *di = to_bq27x00_device_info(psy);
611
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);
618
619 if (psp != POWER_SUPPLY_PROP_PRESENT && di->cache.flags < 0)
620 return -ENODEV;
621
622 switch (psp) {
623 case POWER_SUPPLY_PROP_STATUS:
624 ret = bq27x00_battery_status(di, val);
625 break;
626 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
627 ret = bq27x00_battery_voltage(di, val);
628 break;
629 case POWER_SUPPLY_PROP_PRESENT:
630 val->intval = di->cache.flags < 0 ? 0 : 1;
631 break;
632 case POWER_SUPPLY_PROP_CURRENT_NOW:
633 ret = bq27x00_battery_current(di, val);
634 break;
635 case POWER_SUPPLY_PROP_CAPACITY:
636 ret = bq27x00_simple_value(di->cache.capacity, val);
637 break;
638 case POWER_SUPPLY_PROP_CAPACITY_LEVEL:
639 ret = bq27x00_battery_capacity_level(di, val);
640 break;
641 case POWER_SUPPLY_PROP_TEMP:
642 ret = bq27x00_simple_value(di->cache.temperature, val);
643 if (ret == 0)
644 val->intval -= 2731;
645 break;
646 case POWER_SUPPLY_PROP_TIME_TO_EMPTY_NOW:
647 ret = bq27x00_simple_value(di->cache.time_to_empty, val);
648 break;
649 case POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG:
650 ret = bq27x00_simple_value(di->cache.time_to_empty_avg, val);
651 break;
652 case POWER_SUPPLY_PROP_TIME_TO_FULL_NOW:
653 ret = bq27x00_simple_value(di->cache.time_to_full, val);
654 break;
655 case POWER_SUPPLY_PROP_TECHNOLOGY:
656 val->intval = POWER_SUPPLY_TECHNOLOGY_LION;
657 break;
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;
667 case POWER_SUPPLY_PROP_CYCLE_COUNT:
668 ret = bq27x00_simple_value(di->cache.cycle_count, val);
669 break;
670 case POWER_SUPPLY_PROP_ENERGY_NOW:
671 ret = bq27x00_simple_value(di->cache.energy, val);
672 break;
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;
679 default:
680 return -EINVAL;
681 }
682
683 return ret;
684 }
685
686 static 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
694 static int bq27x00_powersupply_init(struct bq27x00_device_info *di)
695 {
696 int ret;
697
698 di->bat.type = POWER_SUPPLY_TYPE_BATTERY;
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 }
706 di->bat.get_property = bq27x00_battery_get_property;
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);
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
720 bq27x00_update(di);
721
722 return 0;
723 }
724
725 static void bq27x00_powersupply_unregister(struct bq27x00_device_info *di)
726 {
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
735 cancel_delayed_work_sync(&di->work);
736
737 power_supply_unregister(&di->bat);
738
739 mutex_destroy(&di->lock);
740 }
741
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...
748 */
749 static DEFINE_IDR(battery_id);
750 static DEFINE_MUTEX(battery_mutex);
751
752 static int bq27x00_read_i2c(struct bq27x00_device_info *di, u8 reg, bool single)
753 {
754 struct i2c_client *client = to_i2c_client(di->dev);
755 struct i2c_msg msg[2];
756 unsigned char data[2];
757 int ret;
758
759 if (!client->adapter)
760 return -ENODEV;
761
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;
769 if (single)
770 msg[1].len = 1;
771 else
772 msg[1].len = 2;
773
774 ret = i2c_transfer(client->adapter, msg, ARRAY_SIZE(msg));
775 if (ret < 0)
776 return ret;
777
778 if (!single)
779 ret = get_unaligned_le16(data);
780 else
781 ret = data[0];
782
783 return ret;
784 }
785
786 static int bq27x00_battery_probe(struct i2c_client *client,
787 const struct i2c_device_id *id)
788 {
789 char *name;
790 struct bq27x00_device_info *di;
791 int num;
792 int retval = 0;
793
794 /* Get new ID for the new battery device */
795 mutex_lock(&battery_mutex);
796 num = idr_alloc(&battery_id, client, 0, 0, GFP_KERNEL);
797 mutex_unlock(&battery_mutex);
798 if (num < 0)
799 return num;
800
801 name = kasprintf(GFP_KERNEL, "%s-%d", id->name, num);
802 if (!name) {
803 dev_err(&client->dev, "failed to allocate device name\n");
804 retval = -ENOMEM;
805 goto batt_failed_1;
806 }
807
808 di = devm_kzalloc(&client->dev, sizeof(*di), GFP_KERNEL);
809 if (!di) {
810 dev_err(&client->dev, "failed to allocate device info data\n");
811 retval = -ENOMEM;
812 goto batt_failed_2;
813 }
814
815 di->id = num;
816 di->dev = &client->dev;
817 di->chip = id->driver_data;
818 di->bat.name = name;
819 di->bus.read = &bq27x00_read_i2c;
820
821 retval = bq27x00_powersupply_init(di);
822 if (retval)
823 goto batt_failed_2;
824
825 i2c_set_clientdata(client, di);
826
827 return 0;
828
829 batt_failed_2:
830 kfree(name);
831 batt_failed_1:
832 mutex_lock(&battery_mutex);
833 idr_remove(&battery_id, num);
834 mutex_unlock(&battery_mutex);
835
836 return retval;
837 }
838
839 static int bq27x00_battery_remove(struct i2c_client *client)
840 {
841 struct bq27x00_device_info *di = i2c_get_clientdata(client);
842
843 bq27x00_powersupply_unregister(di);
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
851 return 0;
852 }
853
854 static const struct i2c_device_id bq27x00_id[] = {
855 { "bq27200", BQ27000 }, /* bq27200 is same as bq27000, but with i2c */
856 { "bq27500", BQ27500 },
857 { "bq27425", BQ27425 },
858 {},
859 };
860 MODULE_DEVICE_TABLE(i2c, bq27x00_id);
861
862 static struct i2c_driver bq27x00_battery_driver = {
863 .driver = {
864 .name = "bq27x00-battery",
865 },
866 .probe = bq27x00_battery_probe,
867 .remove = bq27x00_battery_remove,
868 .id_table = bq27x00_id,
869 };
870
871 static 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
880 static inline void bq27x00_battery_i2c_exit(void)
881 {
882 i2c_del_driver(&bq27x00_battery_driver);
883 }
884
885 #else
886
887 static inline int bq27x00_battery_i2c_init(void) { return 0; }
888 static inline void bq27x00_battery_i2c_exit(void) {};
889
890 #endif
891
892 /* platform specific code */
893 #ifdef CONFIG_BATTERY_BQ27X00_PLATFORM
894
895 static int bq27000_read_platform(struct bq27x00_device_info *di, u8 reg,
896 bool single)
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
923 return (upper << 8) | lower;
924 }
925
926 return pdata->read(dev, reg);
927 }
928
929 static int 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
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
944 di = devm_kzalloc(&pdev->dev, sizeof(*di), GFP_KERNEL);
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
958 return bq27x00_powersupply_init(di);
959 }
960
961 static int bq27000_battery_remove(struct platform_device *pdev)
962 {
963 struct bq27x00_device_info *di = platform_get_drvdata(pdev);
964
965 bq27x00_powersupply_unregister(di);
966
967 return 0;
968 }
969
970 static struct platform_driver bq27000_battery_driver = {
971 .probe = bq27000_battery_probe,
972 .remove = bq27000_battery_remove,
973 .driver = {
974 .name = "bq27000-battery",
975 .owner = THIS_MODULE,
976 },
977 };
978
979 static 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
988 static inline void bq27x00_battery_platform_exit(void)
989 {
990 platform_driver_unregister(&bq27000_battery_driver);
991 }
992
993 #else
994
995 static inline int bq27x00_battery_platform_init(void) { return 0; }
996 static inline void bq27x00_battery_platform_exit(void) {};
997
998 #endif
999
1000 /*
1001 * Module stuff
1002 */
1003
1004 static int __init bq27x00_battery_init(void)
1005 {
1006 int ret;
1007
1008 ret = bq27x00_battery_i2c_init();
1009 if (ret)
1010 return ret;
1011
1012 ret = bq27x00_battery_platform_init();
1013 if (ret)
1014 bq27x00_battery_i2c_exit();
1015
1016 return ret;
1017 }
1018 module_init(bq27x00_battery_init);
1019
1020 static void __exit bq27x00_battery_exit(void)
1021 {
1022 bq27x00_battery_platform_exit();
1023 bq27x00_battery_i2c_exit();
1024 }
1025 module_exit(bq27x00_battery_exit);
1026
1027 MODULE_AUTHOR("Rodolfo Giometti <giometti@linux.it>");
1028 MODULE_DESCRIPTION("BQ27x00 battery monitor driver");
1029 MODULE_LICENSE("GPL");