2 * Battery driver for Marvell 88PM860x PMIC
4 * Copyright (c) 2012 Marvell International Ltd.
5 * Author: Jett Zhou <jtzhou@marvell.com>
6 * Haojian Zhuang <haojian.zhuang@marvell.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #include <linux/kernel.h>
14 #include <linux/module.h>
15 #include <linux/platform_device.h>
16 #include <linux/slab.h>
17 #include <linux/power_supply.h>
18 #include <linux/mfd/88pm860x.h>
19 #include <linux/delay.h>
20 #include <linux/uaccess.h>
21 #include <asm/div64.h>
23 /* bit definitions of Status Query Interface 2 */
24 #define STATUS2_CHG (1 << 2)
26 /* bit definitions of Reset Out Register */
27 #define RESET_SW_PD (1 << 7)
29 /* bit definitions of PreReg 1 */
30 #define PREREG1_90MA (0x0)
31 #define PREREG1_180MA (0x1)
32 #define PREREG1_450MA (0x4)
33 #define PREREG1_540MA (0x5)
34 #define PREREG1_1350MA (0xE)
35 #define PREREG1_VSYS_4_5V (3 << 4)
37 /* bit definitions of Charger Control 1 Register */
38 #define CC1_MODE_OFF (0)
39 #define CC1_MODE_PRECHARGE (1)
40 #define CC1_MODE_FASTCHARGE (2)
41 #define CC1_MODE_PULSECHARGE (3)
42 #define CC1_ITERM_20MA (0 << 2)
43 #define CC1_ITERM_60MA (2 << 2)
44 #define CC1_VFCHG_4_2V (9 << 4)
46 /* bit definitions of Charger Control 2 Register */
47 #define CC2_ICHG_100MA (0x1)
48 #define CC2_ICHG_500MA (0x9)
49 #define CC2_ICHG_1000MA (0x13)
51 /* bit definitions of Charger Control 3 Register */
52 #define CC3_180MIN_TIMEOUT (0x6 << 4)
53 #define CC3_270MIN_TIMEOUT (0x7 << 4)
54 #define CC3_360MIN_TIMEOUT (0xA << 4)
55 #define CC3_DISABLE_TIMEOUT (0xF << 4)
57 /* bit definitions of Charger Control 4 Register */
58 #define CC4_IPRE_40MA (7)
59 #define CC4_VPCHG_3_2V (3 << 4)
60 #define CC4_IFCHG_MON_EN (1 << 6)
61 #define CC4_BTEMP_MON_EN (1 << 7)
63 /* bit definitions of Charger Control 6 Register */
64 #define CC6_BAT_OV_EN (1 << 2)
65 #define CC6_BAT_UV_EN (1 << 3)
66 #define CC6_UV_VBAT_SET (0x3 << 6) /* 2.8v */
68 /* bit definitions of Charger Control 7 Register */
69 #define CC7_BAT_REM_EN (1 << 3)
70 #define CC7_IFSM_EN (1 << 7)
72 /* bit definitions of Measurement Enable 1 Register */
73 #define MEAS1_VBAT (1 << 0)
75 /* bit definitions of Measurement Enable 3 Register */
76 #define MEAS3_IBAT_EN (1 << 0)
77 #define MEAS3_CC_EN (1 << 2)
80 #define FSM_DISCHARGE 1
81 #define FSM_PRECHARGE 2
82 #define FSM_FASTCHARGE 3
84 #define PRECHARGE_THRESHOLD 3100
85 #define POWEROFF_THRESHOLD 3400
86 #define CHARGE_THRESHOLD 4000
87 #define DISCHARGE_THRESHOLD 4180
89 /* over-temperature on PM8606 setting */
90 #define OVER_TEMP_FLAG (1 << 6)
91 #define OVTEMP_AUTORECOVER (1 << 3)
93 /* over-voltage protect on vchg setting mv */
94 #define VCHG_NORMAL_LOW 4200
95 #define VCHG_NORMAL_CHECK 5800
96 #define VCHG_NORMAL_HIGH 6000
97 #define VCHG_OVP_LOW 5500
99 struct pm860x_charger_info
{
100 struct pm860x_chip
*chip
;
101 struct i2c_client
*i2c
;
102 struct i2c_client
*i2c_8606
;
105 struct power_supply usb
;
109 unsigned state
:3; /* fsm state */
110 unsigned online
:1; /* usb charger */
111 unsigned present
:1; /* battery present */
115 static char *pm860x_supplied_to
[] = {
119 static int measure_vchg(struct pm860x_charger_info
*info
, int *data
)
121 unsigned char buf
[2];
124 ret
= pm860x_bulk_read(info
->i2c
, PM8607_VCHG_MEAS1
, 2, buf
);
128 *data
= ((buf
[0] & 0xff) << 4) | (buf
[1] & 0x0f);
129 /* V_BATT_MEAS(mV) = value * 5 * 1.8 * 1000 / (2^12) */
130 *data
= ((*data
& 0xfff) * 9 * 125) >> 9;
132 dev_dbg(info
->dev
, "%s, vchg: %d mv\n", __func__
, *data
);
137 static void set_vchg_threshold(struct pm860x_charger_info
*info
,
142 /* (tmp << 8) * / 5 / 1800 */
146 data
= (min
<< 5) / 1125;
147 pm860x_reg_write(info
->i2c
, PM8607_VCHG_LOWTH
, data
);
148 dev_dbg(info
->dev
, "VCHG_LOWTH:%dmv, 0x%x\n", min
, data
);
153 data
= (max
<< 5) / 1125;
154 pm860x_reg_write(info
->i2c
, PM8607_VCHG_HIGHTH
, data
);
155 dev_dbg(info
->dev
, "VCHG_HIGHTH:%dmv, 0x%x\n", max
, data
);
159 static void set_vbatt_threshold(struct pm860x_charger_info
*info
,
164 /* (tmp << 8) * 3 / 1800 */
168 data
= (min
<< 5) / 675;
169 pm860x_reg_write(info
->i2c
, PM8607_VBAT_LOWTH
, data
);
170 dev_dbg(info
->dev
, "VBAT Min:%dmv, LOWTH:0x%x\n", min
, data
);
175 data
= (max
<< 5) / 675;
176 pm860x_reg_write(info
->i2c
, PM8607_VBAT_HIGHTH
, data
);
177 dev_dbg(info
->dev
, "VBAT Max:%dmv, HIGHTH:0x%x\n", max
, data
);
182 static int start_precharge(struct pm860x_charger_info
*info
)
186 dev_dbg(info
->dev
, "Start Pre-charging!\n");
187 set_vbatt_threshold(info
, 0, 0);
189 ret
= pm860x_reg_write(info
->i2c_8606
, PM8606_PREREGULATORA
,
190 PREREG1_1350MA
| PREREG1_VSYS_4_5V
);
194 ret
= pm860x_set_bits(info
->i2c
, PM8607_CHG_CTRL1
, 3,
198 /* set 270 minutes timeout */
199 ret
= pm860x_set_bits(info
->i2c
, PM8607_CHG_CTRL3
, (0xf << 4),
203 /* set precharge current, termination voltage, IBAT & TBAT monitor */
204 ret
= pm860x_reg_write(info
->i2c
, PM8607_CHG_CTRL4
,
205 CC4_IPRE_40MA
| CC4_VPCHG_3_2V
|
206 CC4_IFCHG_MON_EN
| CC4_BTEMP_MON_EN
);
209 ret
= pm860x_set_bits(info
->i2c
, PM8607_CHG_CTRL7
,
210 CC7_BAT_REM_EN
| CC7_IFSM_EN
,
211 CC7_BAT_REM_EN
| CC7_IFSM_EN
);
214 /* trigger precharge */
215 ret
= pm860x_set_bits(info
->i2c
, PM8607_CHG_CTRL1
, 3,
221 static int start_fastcharge(struct pm860x_charger_info
*info
)
225 dev_dbg(info
->dev
, "Start Fast-charging!\n");
227 /* set fastcharge termination current & voltage, disable charging */
228 ret
= pm860x_reg_write(info
->i2c
, PM8607_CHG_CTRL1
,
229 CC1_MODE_OFF
| CC1_ITERM_60MA
|
233 ret
= pm860x_reg_write(info
->i2c_8606
, PM8606_PREREGULATORA
,
234 PREREG1_540MA
| PREREG1_VSYS_4_5V
);
237 ret
= pm860x_set_bits(info
->i2c
, PM8607_CHG_CTRL2
, 0x1f,
241 /* set 270 minutes timeout */
242 ret
= pm860x_set_bits(info
->i2c
, PM8607_CHG_CTRL3
, (0xf << 4),
246 /* set IBAT & TBAT monitor */
247 ret
= pm860x_set_bits(info
->i2c
, PM8607_CHG_CTRL4
,
248 CC4_IFCHG_MON_EN
| CC4_BTEMP_MON_EN
,
249 CC4_IFCHG_MON_EN
| CC4_BTEMP_MON_EN
);
252 ret
= pm860x_set_bits(info
->i2c
, PM8607_CHG_CTRL6
,
253 CC6_BAT_OV_EN
| CC6_BAT_UV_EN
|
255 CC6_BAT_OV_EN
| CC6_BAT_UV_EN
|
259 ret
= pm860x_set_bits(info
->i2c
, PM8607_CHG_CTRL7
,
260 CC7_BAT_REM_EN
| CC7_IFSM_EN
,
261 CC7_BAT_REM_EN
| CC7_IFSM_EN
);
264 /* launch fast-charge */
265 ret
= pm860x_set_bits(info
->i2c
, PM8607_CHG_CTRL1
, 3,
266 CC1_MODE_FASTCHARGE
);
267 /* vchg threshold setting */
268 set_vchg_threshold(info
, VCHG_NORMAL_LOW
, VCHG_NORMAL_HIGH
);
273 static void stop_charge(struct pm860x_charger_info
*info
, int vbatt
)
275 dev_dbg(info
->dev
, "Stop charging!\n");
276 pm860x_set_bits(info
->i2c
, PM8607_CHG_CTRL1
, 3, CC1_MODE_OFF
);
277 if (vbatt
> CHARGE_THRESHOLD
&& info
->online
)
278 set_vbatt_threshold(info
, CHARGE_THRESHOLD
, 0);
281 static void power_off_notification(struct pm860x_charger_info
*info
)
283 dev_dbg(info
->dev
, "Power-off notification!\n");
286 static int set_charging_fsm(struct pm860x_charger_info
*info
)
288 struct power_supply
*psy
;
289 union power_supply_propval data
;
290 unsigned char fsm_state
[][16] = { "init", "discharge", "precharge",
296 psy
= power_supply_get_by_name(pm860x_supplied_to
[0]);
299 ret
= psy
->get_property(psy
, POWER_SUPPLY_PROP_VOLTAGE_NOW
, &data
);
302 vbatt
= data
.intval
/ 1000;
304 ret
= psy
->get_property(psy
, POWER_SUPPLY_PROP_PRESENT
, &data
);
308 mutex_lock(&info
->lock
);
309 info
->present
= data
.intval
;
311 dev_dbg(info
->dev
, "Entering FSM:%s, Charger:%s, Battery:%s, "
313 &fsm_state
[info
->state
][0],
314 (info
->online
) ? "online" : "N/A",
315 (info
->present
) ? "present" : "N/A", info
->allowed
);
316 dev_dbg(info
->dev
, "set_charging_fsm:vbatt:%d(mV)\n", vbatt
);
318 switch (info
->state
) {
320 if (info
->online
&& info
->present
&& info
->allowed
) {
321 if (vbatt
< PRECHARGE_THRESHOLD
) {
322 info
->state
= FSM_PRECHARGE
;
323 start_precharge(info
);
324 } else if (vbatt
> DISCHARGE_THRESHOLD
) {
325 info
->state
= FSM_DISCHARGE
;
326 stop_charge(info
, vbatt
);
327 } else if (vbatt
< DISCHARGE_THRESHOLD
) {
328 info
->state
= FSM_FASTCHARGE
;
329 start_fastcharge(info
);
332 if (vbatt
< POWEROFF_THRESHOLD
) {
333 power_off_notification(info
);
335 info
->state
= FSM_DISCHARGE
;
336 stop_charge(info
, vbatt
);
341 if (info
->online
&& info
->present
&& info
->allowed
) {
342 if (vbatt
> PRECHARGE_THRESHOLD
) {
343 info
->state
= FSM_FASTCHARGE
;
344 start_fastcharge(info
);
347 info
->state
= FSM_DISCHARGE
;
348 stop_charge(info
, vbatt
);
352 if (info
->online
&& info
->present
&& info
->allowed
) {
353 if (vbatt
< PRECHARGE_THRESHOLD
) {
354 info
->state
= FSM_PRECHARGE
;
355 start_precharge(info
);
358 info
->state
= FSM_DISCHARGE
;
359 stop_charge(info
, vbatt
);
363 if (info
->online
&& info
->present
&& info
->allowed
) {
364 if (vbatt
< PRECHARGE_THRESHOLD
) {
365 info
->state
= FSM_PRECHARGE
;
366 start_precharge(info
);
367 } else if (vbatt
< DISCHARGE_THRESHOLD
) {
368 info
->state
= FSM_FASTCHARGE
;
369 start_fastcharge(info
);
372 if (vbatt
< POWEROFF_THRESHOLD
)
373 power_off_notification(info
);
374 else if (vbatt
> CHARGE_THRESHOLD
&& info
->online
)
375 set_vbatt_threshold(info
, CHARGE_THRESHOLD
, 0);
379 dev_warn(info
->dev
, "FSM meets wrong state:%d\n",
384 "Out FSM:%s, Charger:%s, Battery:%s, Allowed:%d\n",
385 &fsm_state
[info
->state
][0],
386 (info
->online
) ? "online" : "N/A",
387 (info
->present
) ? "present" : "N/A", info
->allowed
);
388 mutex_unlock(&info
->lock
);
393 static irqreturn_t
pm860x_charger_handler(int irq
, void *data
)
395 struct pm860x_charger_info
*info
= data
;
398 mutex_lock(&info
->lock
);
399 ret
= pm860x_reg_read(info
->i2c
, PM8607_STATUS_2
);
401 mutex_unlock(&info
->lock
);
404 if (ret
& STATUS2_CHG
) {
411 mutex_unlock(&info
->lock
);
412 dev_dbg(info
->dev
, "%s, Charger:%s, Allowed:%d\n", __func__
,
413 (info
->online
) ? "online" : "N/A", info
->allowed
);
415 set_charging_fsm(info
);
417 power_supply_changed(&info
->usb
);
422 static irqreturn_t
pm860x_temp_handler(int irq
, void *data
)
424 struct power_supply
*psy
;
425 struct pm860x_charger_info
*info
= data
;
426 union power_supply_propval temp
;
430 psy
= power_supply_get_by_name(pm860x_supplied_to
[0]);
433 ret
= psy
->get_property(psy
, POWER_SUPPLY_PROP_TEMP
, &temp
);
436 value
= temp
.intval
/ 10;
438 mutex_lock(&info
->lock
);
439 /* Temperature < -10 C or >40 C, Will not allow charge */
440 if (value
< -10 || value
> 40)
444 dev_dbg(info
->dev
, "%s, Allowed: %d\n", __func__
, info
->allowed
);
445 mutex_unlock(&info
->lock
);
447 set_charging_fsm(info
);
452 static irqreturn_t
pm860x_exception_handler(int irq
, void *data
)
454 struct pm860x_charger_info
*info
= data
;
456 mutex_lock(&info
->lock
);
458 mutex_unlock(&info
->lock
);
459 dev_dbg(info
->dev
, "%s, irq: %d\n", __func__
, irq
);
461 set_charging_fsm(info
);
465 static irqreturn_t
pm860x_done_handler(int irq
, void *data
)
467 struct pm860x_charger_info
*info
= data
;
468 struct power_supply
*psy
;
469 union power_supply_propval val
;
473 mutex_lock(&info
->lock
);
474 /* pre-charge done, will transimit to fast-charge stage */
475 if (info
->state
== FSM_PRECHARGE
) {
480 * Fast charge done, delay to read
481 * the correct status of CHG_DET.
485 psy
= power_supply_get_by_name(pm860x_supplied_to
[0]);
488 ret
= psy
->get_property(psy
, POWER_SUPPLY_PROP_VOLTAGE_NOW
, &val
);
491 vbatt
= val
.intval
/ 1000;
493 * CHG_DONE interrupt is faster than CHG_DET interrupt when
494 * plug in/out usb, So we can not rely on info->online, we
495 * need check pm8607 status register to check usb is online
496 * or not, then we can decide it is real charge done
497 * automatically or it is triggered by usb plug out;
499 ret
= pm860x_reg_read(info
->i2c
, PM8607_STATUS_2
);
502 if (vbatt
> CHARGE_THRESHOLD
&& ret
& STATUS2_CHG
)
503 psy
->set_property(psy
, POWER_SUPPLY_PROP_CHARGE_FULL
, &val
);
506 mutex_unlock(&info
->lock
);
507 dev_dbg(info
->dev
, "%s, Allowed: %d\n", __func__
, info
->allowed
);
508 set_charging_fsm(info
);
513 static irqreturn_t
pm860x_vbattery_handler(int irq
, void *data
)
515 struct pm860x_charger_info
*info
= data
;
517 mutex_lock(&info
->lock
);
519 set_vbatt_threshold(info
, 0, 0);
521 if (info
->present
&& info
->online
)
525 mutex_unlock(&info
->lock
);
526 dev_dbg(info
->dev
, "%s, Allowed: %d\n", __func__
, info
->allowed
);
528 set_charging_fsm(info
);
533 static irqreturn_t
pm860x_vchg_handler(int irq
, void *data
)
535 struct pm860x_charger_info
*info
= data
;
541 measure_vchg(info
, &vchg
);
543 mutex_lock(&info
->lock
);
546 /* check if over-temp on pm8606 or not */
547 status
= pm860x_reg_read(info
->i2c_8606
, PM8606_FLAGS
);
548 if (status
& OVER_TEMP_FLAG
) {
549 /* clear over temp flag and set auto recover */
550 pm860x_set_bits(info
->i2c_8606
, PM8606_FLAGS
,
551 OVER_TEMP_FLAG
, OVER_TEMP_FLAG
);
552 pm860x_set_bits(info
->i2c_8606
,
557 "%s, pm8606 over-temp occure\n", __func__
);
561 if (vchg
> VCHG_NORMAL_CHECK
) {
562 set_vchg_threshold(info
, VCHG_OVP_LOW
, 0);
565 "%s,pm8607 over-vchg occure,vchg = %dmv\n",
567 } else if (vchg
< VCHG_OVP_LOW
) {
568 set_vchg_threshold(info
, VCHG_NORMAL_LOW
,
572 "%s,pm8607 over-vchg recover,vchg = %dmv\n",
575 mutex_unlock(&info
->lock
);
577 dev_dbg(info
->dev
, "%s, Allowed: %d\n", __func__
, info
->allowed
);
578 set_charging_fsm(info
);
583 static int pm860x_usb_get_prop(struct power_supply
*psy
,
584 enum power_supply_property psp
,
585 union power_supply_propval
*val
)
587 struct pm860x_charger_info
*info
=
588 dev_get_drvdata(psy
->dev
->parent
);
591 case POWER_SUPPLY_PROP_STATUS
:
592 if (info
->state
== FSM_FASTCHARGE
||
593 info
->state
== FSM_PRECHARGE
)
594 val
->intval
= POWER_SUPPLY_STATUS_CHARGING
;
596 val
->intval
= POWER_SUPPLY_STATUS_DISCHARGING
;
598 case POWER_SUPPLY_PROP_ONLINE
:
599 val
->intval
= info
->online
;
607 static enum power_supply_property pm860x_usb_props
[] = {
608 POWER_SUPPLY_PROP_STATUS
,
609 POWER_SUPPLY_PROP_ONLINE
,
612 static int pm860x_init_charger(struct pm860x_charger_info
*info
)
616 ret
= pm860x_reg_read(info
->i2c
, PM8607_STATUS_2
);
620 mutex_lock(&info
->lock
);
621 info
->state
= FSM_INIT
;
622 if (ret
& STATUS2_CHG
) {
629 mutex_unlock(&info
->lock
);
631 set_charging_fsm(info
);
635 static struct pm860x_irq_desc
{
637 irqreturn_t (*handler
)(int irq
, void *data
);
638 } pm860x_irq_descs
[] = {
639 { "usb supply detect", pm860x_charger_handler
},
640 { "charge done", pm860x_done_handler
},
641 { "charge timeout", pm860x_exception_handler
},
642 { "charge fault", pm860x_exception_handler
},
643 { "temperature", pm860x_temp_handler
},
644 { "vbatt", pm860x_vbattery_handler
},
645 { "vchg", pm860x_vchg_handler
},
648 static int pm860x_charger_probe(struct platform_device
*pdev
)
650 struct pm860x_chip
*chip
= dev_get_drvdata(pdev
->dev
.parent
);
651 struct pm860x_charger_info
*info
;
657 info
= devm_kzalloc(&pdev
->dev
, sizeof(*info
), GFP_KERNEL
);
661 count
= pdev
->num_resources
;
662 for (i
= 0, j
= 0; i
< count
; i
++) {
663 info
->irq
[j
] = platform_get_irq(pdev
, i
);
664 if (info
->irq
[j
] < 0)
672 (chip
->id
== CHIP_PM8607
) ? chip
->client
: chip
->companion
;
674 (chip
->id
== CHIP_PM8607
) ? chip
->companion
: chip
->client
;
675 if (!info
->i2c_8606
) {
676 dev_err(&pdev
->dev
, "Missed I2C address of 88PM8606!\n");
680 info
->dev
= &pdev
->dev
;
682 /* set init value for the case we are not using battery */
683 set_vchg_threshold(info
, VCHG_NORMAL_LOW
, VCHG_OVP_LOW
);
685 mutex_init(&info
->lock
);
686 platform_set_drvdata(pdev
, info
);
688 info
->usb
.name
= "usb";
689 info
->usb
.type
= POWER_SUPPLY_TYPE_USB
;
690 info
->usb
.supplied_to
= pm860x_supplied_to
;
691 info
->usb
.num_supplicants
= ARRAY_SIZE(pm860x_supplied_to
);
692 info
->usb
.properties
= pm860x_usb_props
;
693 info
->usb
.num_properties
= ARRAY_SIZE(pm860x_usb_props
);
694 info
->usb
.get_property
= pm860x_usb_get_prop
;
695 ret
= power_supply_register(&pdev
->dev
, &info
->usb
);
699 pm860x_init_charger(info
);
701 for (i
= 0; i
< ARRAY_SIZE(info
->irq
); i
++) {
702 ret
= request_threaded_irq(info
->irq
[i
], NULL
,
703 pm860x_irq_descs
[i
].handler
,
704 IRQF_ONESHOT
, pm860x_irq_descs
[i
].name
, info
);
706 dev_err(chip
->dev
, "Failed to request IRQ: #%d: %d\n",
714 power_supply_unregister(&info
->usb
);
716 free_irq(info
->irq
[i
], info
);
721 static int pm860x_charger_remove(struct platform_device
*pdev
)
723 struct pm860x_charger_info
*info
= platform_get_drvdata(pdev
);
726 platform_set_drvdata(pdev
, NULL
);
727 power_supply_unregister(&info
->usb
);
728 free_irq(info
->irq
[0], info
);
729 for (i
= 0; i
< info
->irq_nums
; i
++)
730 free_irq(info
->irq
[i
], info
);
734 static struct platform_driver pm860x_charger_driver
= {
736 .name
= "88pm860x-charger",
737 .owner
= THIS_MODULE
,
739 .probe
= pm860x_charger_probe
,
740 .remove
= pm860x_charger_remove
,
742 module_platform_driver(pm860x_charger_driver
);
744 MODULE_DESCRIPTION("Marvell 88PM860x Charger driver");
745 MODULE_LICENSE("GPL");