2 * Batttery Driver for Dialog DA9052 PMICs
4 * Copyright(c) 2011 Dialog Semiconductor Ltd.
6 * Author: David Dajun Chen <dchen@diasemi.com>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
14 #include <linux/delay.h>
15 #include <linux/freezer.h>
17 #include <linux/jiffies.h>
18 #include <linux/module.h>
19 #include <linux/timer.h>
20 #include <linux/uaccess.h>
21 #include <linux/platform_device.h>
22 #include <linux/power_supply.h>
24 #include <linux/mfd/da9052/da9052.h>
25 #include <linux/mfd/da9052/pdata.h>
26 #include <linux/mfd/da9052/reg.h>
28 /* STATIC CONFIGURATION */
29 #define DA9052_BAT_CUTOFF_VOLT 2800
30 #define DA9052_BAT_TSH 62000
31 #define DA9052_BAT_LOW_CAP 4
32 #define DA9052_AVG_SZ 4
33 #define DA9052_VC_TBL_SZ 68
34 #define DA9052_VC_TBL_REF_SZ 3
36 #define DA9052_ISET_USB_MASK 0x0F
37 #define DA9052_CHG_USB_ILIM_MASK 0x40
38 #define DA9052_CHG_LIM_COLS 16
40 #define DA9052_MEAN(x, y) ((x + y) / 2)
42 enum charger_type_enum
{
47 static const u16 da9052_chg_current_lim
[2][DA9052_CHG_LIM_COLS
] = {
48 {70, 80, 90, 100, 110, 120, 400, 450,
49 500, 550, 600, 650, 700, 900, 1100, 1300},
50 {80, 90, 100, 110, 120, 400, 450, 500,
51 550, 600, 800, 1000, 1200, 1400, 1600, 1800},
54 static const u16 vc_tbl_ref
[3] = {10, 25, 40};
55 /* Lookup table for voltage vs capacity */
56 static u32
const vc_tbl
[3][68][2] = {
57 /* For temperature 10 degree Celsius */
59 {4082, 100}, {4036, 98},
60 {4020, 96}, {4008, 95},
61 {3997, 93}, {3983, 91},
62 {3964, 90}, {3943, 88},
63 {3926, 87}, {3912, 85},
64 {3900, 84}, {3890, 82},
65 {3881, 80}, {3873, 79},
66 {3865, 77}, {3857, 76},
67 {3848, 74}, {3839, 73},
68 {3829, 71}, {3820, 70},
69 {3811, 68}, {3802, 67},
70 {3794, 65}, {3785, 64},
71 {3778, 62}, {3770, 61},
72 {3763, 59}, {3756, 58},
73 {3750, 56}, {3744, 55},
74 {3738, 53}, {3732, 52},
75 {3727, 50}, {3722, 49},
76 {3717, 47}, {3712, 46},
77 {3708, 44}, {3703, 43},
78 {3700, 41}, {3696, 40},
79 {3693, 38}, {3691, 37},
80 {3688, 35}, {3686, 34},
81 {3683, 32}, {3681, 31},
82 {3678, 29}, {3675, 28},
83 {3672, 26}, {3669, 25},
84 {3665, 23}, {3661, 22},
85 {3656, 21}, {3651, 19},
86 {3645, 18}, {3639, 16},
87 {3631, 15}, {3622, 13},
88 {3611, 12}, {3600, 10},
94 /* For temperature 25 degree Celsius */
96 {4102, 100}, {4065, 98},
97 {4048, 96}, {4034, 95},
98 {4021, 93}, {4011, 92},
99 {4001, 90}, {3986, 88},
100 {3968, 87}, {3952, 85},
101 {3938, 84}, {3926, 82},
102 {3916, 81}, {3908, 79},
103 {3900, 77}, {3892, 76},
104 {3883, 74}, {3874, 73},
105 {3864, 71}, {3855, 70},
106 {3846, 68}, {3836, 67},
107 {3827, 65}, {3819, 64},
108 {3810, 62}, {3801, 61},
109 {3793, 59}, {3786, 58},
110 {3778, 56}, {3772, 55},
111 {3765, 53}, {3759, 52},
112 {3754, 50}, {3748, 49},
113 {3743, 47}, {3738, 46},
114 {3733, 44}, {3728, 43},
115 {3724, 41}, {3720, 40},
116 {3716, 38}, {3712, 37},
117 {3709, 35}, {3706, 34},
118 {3703, 33}, {3701, 31},
119 {3698, 30}, {3696, 28},
120 {3693, 27}, {3690, 25},
121 {3687, 24}, {3683, 22},
122 {3680, 21}, {3675, 19},
123 {3671, 18}, {3666, 17},
124 {3660, 15}, {3654, 14},
125 {3647, 12}, {3639, 11},
126 {3630, 9}, {3621, 8},
127 {3613, 6}, {3606, 5},
128 {3597, 4}, {3582, 2},
131 /* For temperature 40 degree Celsius */
133 {4114, 100}, {4081, 98},
134 {4065, 96}, {4050, 95},
135 {4036, 93}, {4024, 92},
136 {4013, 90}, {4002, 88},
137 {3990, 87}, {3976, 85},
138 {3962, 84}, {3950, 82},
139 {3939, 81}, {3930, 79},
140 {3921, 77}, {3912, 76},
141 {3902, 74}, {3893, 73},
142 {3883, 71}, {3874, 70},
143 {3865, 68}, {3856, 67},
144 {3847, 65}, {3838, 64},
145 {3829, 62}, {3820, 61},
146 {3812, 59}, {3803, 58},
147 {3795, 56}, {3787, 55},
148 {3780, 53}, {3773, 52},
149 {3767, 50}, {3761, 49},
150 {3756, 47}, {3751, 46},
151 {3746, 44}, {3741, 43},
152 {3736, 41}, {3732, 40},
153 {3728, 38}, {3724, 37},
154 {3720, 35}, {3716, 34},
155 {3713, 33}, {3710, 31},
156 {3707, 30}, {3704, 28},
157 {3701, 27}, {3698, 25},
158 {3695, 24}, {3691, 22},
159 {3686, 21}, {3681, 19},
160 {3676, 18}, {3671, 17},
161 {3666, 15}, {3661, 14},
162 {3655, 12}, {3648, 11},
163 {3640, 9}, {3632, 8},
164 {3622, 6}, {3616, 5},
165 {3611, 4}, {3604, 2},
170 struct da9052_battery
{
171 struct da9052
*da9052
;
172 struct power_supply psy
;
173 struct notifier_block nb
;
179 static inline int volt_reg_to_mV(int value
)
181 return ((value
* 1000) / 512) + 2500;
184 static inline int ichg_reg_to_mA(int value
)
186 return (value
* 3900) / 1000;
189 static int da9052_read_chgend_current(struct da9052_battery
*bat
,
194 if (bat
->status
== POWER_SUPPLY_STATUS_DISCHARGING
)
197 ret
= da9052_reg_read(bat
->da9052
, DA9052_ICHG_END_REG
);
201 *current_mA
= ichg_reg_to_mA(ret
& DA9052_ICHGEND_ICHGEND
);
206 static int da9052_read_chg_current(struct da9052_battery
*bat
, int *current_mA
)
210 if (bat
->status
== POWER_SUPPLY_STATUS_DISCHARGING
)
213 ret
= da9052_reg_read(bat
->da9052
, DA9052_ICHG_AV_REG
);
217 *current_mA
= ichg_reg_to_mA(ret
& DA9052_ICHGAV_ICHGAV
);
222 static int da9052_bat_check_status(struct da9052_battery
*bat
, int *status
)
237 ret
= da9052_group_read(bat
->da9052
, DA9052_STATUS_A_REG
, 2, v
);
244 dcinsel
= bat_status
& DA9052_STATUSA_DCINSEL
;
245 dcindet
= bat_status
& DA9052_STATUSA_DCINDET
;
246 vbussel
= bat_status
& DA9052_STATUSA_VBUSSEL
;
247 vbusdet
= bat_status
& DA9052_STATUSA_VBUSDET
;
248 dc
= dcinsel
&& dcindet
;
249 vbus
= vbussel
&& vbusdet
;
251 /* Preference to WALL(DCIN) charger unit */
253 bat
->charger_type
= DA9052_CHARGER
;
255 /* If charging end flag is set and Charging current is greater
256 * than charging end limit then battery is charging
258 if ((chg_end
& DA9052_STATUSB_CHGEND
) != 0) {
259 ret
= da9052_read_chg_current(bat
, &chg_current
);
262 ret
= da9052_read_chgend_current(bat
, &chg_end_current
);
266 if (chg_current
>= chg_end_current
)
267 bat
->status
= POWER_SUPPLY_STATUS_CHARGING
;
269 bat
->status
= POWER_SUPPLY_STATUS_NOT_CHARGING
;
271 /* If Charging end flag is cleared then battery is
274 bat
->status
= POWER_SUPPLY_STATUS_CHARGING
;
276 } else if (dcindet
|| vbusdet
) {
277 bat
->charger_type
= DA9052_CHARGER
;
278 bat
->status
= POWER_SUPPLY_STATUS_NOT_CHARGING
;
280 bat
->charger_type
= DA9052_NOCHARGER
;
281 bat
->status
= POWER_SUPPLY_STATUS_DISCHARGING
;
285 *status
= bat
->status
;
289 static int da9052_bat_read_volt(struct da9052_battery
*bat
, int *volt_mV
)
293 volt
= da9052_adc_manual_read(bat
->da9052
, DA9052_ADC_MAN_MUXSEL_VBAT
);
297 *volt_mV
= volt_reg_to_mV(volt
);
302 static int da9052_bat_check_presence(struct da9052_battery
*bat
, int *illegal
)
306 bat_temp
= da9052_adc_read_temp(bat
->da9052
);
310 if (bat_temp
> DA9052_BAT_TSH
)
318 static int da9052_bat_interpolate(int vbat_lower
, int vbat_upper
,
319 int level_lower
, int level_upper
,
324 tmp
= ((level_upper
- level_lower
) * 1000) / (vbat_upper
- vbat_lower
);
325 tmp
= level_lower
+ (((bat_voltage
- vbat_lower
) * tmp
) / 1000);
330 static unsigned char da9052_determine_vc_tbl_index(unsigned char adc_temp
)
334 if (adc_temp
<= vc_tbl_ref
[0])
337 if (adc_temp
> vc_tbl_ref
[DA9052_VC_TBL_REF_SZ
- 1])
338 return DA9052_VC_TBL_REF_SZ
- 1;
340 for (i
= 0; i
< DA9052_VC_TBL_REF_SZ
- 1; i
++) {
341 if ((adc_temp
> vc_tbl_ref
[i
]) &&
342 (adc_temp
<= DA9052_MEAN(vc_tbl_ref
[i
], vc_tbl_ref
[i
+ 1])))
344 if ((adc_temp
> DA9052_MEAN(vc_tbl_ref
[i
], vc_tbl_ref
[i
+ 1]))
345 && (adc_temp
<= vc_tbl_ref
[i
]))
349 * For some reason authors of the driver didn't presume that we can
350 * end up here. It might be OK, but might be not, no one knows for
351 * sure. Go check your battery, is it on fire?
357 static int da9052_bat_read_capacity(struct da9052_battery
*bat
, int *capacity
)
370 ret
= da9052_bat_read_volt(bat
, &bat_voltage
);
374 adc_temp
= da9052_adc_read_temp(bat
->da9052
);
378 i
= da9052_determine_vc_tbl_index(adc_temp
);
380 if (bat_voltage
>= vc_tbl
[i
][0][0]) {
384 if (bat_voltage
<= vc_tbl
[i
][DA9052_VC_TBL_SZ
- 1][0]) {
390 for (j
= 0; j
< (DA9052_VC_TBL_SZ
-1); j
++) {
391 if ((bat_voltage
<= vc_tbl
[i
][j
][0]) &&
392 (bat_voltage
>= vc_tbl
[i
][j
+ 1][0])) {
393 vbat_upper
= vc_tbl
[i
][j
][0];
394 vbat_lower
= vc_tbl
[i
][j
+ 1][0];
395 level_upper
= vc_tbl
[i
][j
][1];
396 level_lower
= vc_tbl
[i
][j
+ 1][1];
404 *capacity
= da9052_bat_interpolate(vbat_lower
, vbat_upper
, level_lower
,
405 level_upper
, bat_voltage
);
410 static int da9052_bat_check_health(struct da9052_battery
*bat
, int *health
)
416 ret
= da9052_bat_check_presence(bat
, &bat_illegal
);
421 bat
->health
= POWER_SUPPLY_HEALTH_UNKNOWN
;
425 if (bat
->health
!= POWER_SUPPLY_HEALTH_OVERHEAT
) {
426 ret
= da9052_bat_read_capacity(bat
, &capacity
);
429 if (capacity
< DA9052_BAT_LOW_CAP
)
430 bat
->health
= POWER_SUPPLY_HEALTH_DEAD
;
432 bat
->health
= POWER_SUPPLY_HEALTH_GOOD
;
435 *health
= bat
->health
;
440 static irqreturn_t
da9052_bat_irq(int irq
, void *data
)
442 struct da9052_battery
*bat
= data
;
445 virq
= regmap_irq_get_virq(bat
->da9052
->irq_data
, irq
);
448 if (irq
== DA9052_IRQ_CHGEND
)
449 bat
->status
= POWER_SUPPLY_STATUS_FULL
;
451 da9052_bat_check_status(bat
, NULL
);
453 if (irq
== DA9052_IRQ_CHGEND
|| irq
== DA9052_IRQ_DCIN
||
454 irq
== DA9052_IRQ_VBUS
|| irq
== DA9052_IRQ_TBAT
) {
455 power_supply_changed(&bat
->psy
);
461 static int da9052_USB_current_notifier(struct notifier_block
*nb
,
462 unsigned long events
, void *data
)
466 int *current_mA
= data
;
468 struct da9052_battery
*bat
= container_of(nb
, struct da9052_battery
,
471 if (bat
->status
== POWER_SUPPLY_STATUS_DISCHARGING
)
474 ret
= da9052_reg_read(bat
->da9052
, DA9052_CHGBUCK_REG
);
475 if (ret
& DA9052_CHG_USB_ILIM_MASK
)
478 if (bat
->da9052
->chip_id
== DA9052
)
483 if (*current_mA
< da9052_chg_current_lim
[row
][0] ||
484 *current_mA
> da9052_chg_current_lim
[row
][DA9052_CHG_LIM_COLS
- 1])
487 for (col
= 0; col
<= DA9052_CHG_LIM_COLS
- 1 ; col
++) {
488 if (*current_mA
<= da9052_chg_current_lim
[row
][col
])
492 return da9052_reg_update(bat
->da9052
, DA9052_ISET_REG
,
493 DA9052_ISET_USB_MASK
, col
);
496 static int da9052_bat_get_property(struct power_supply
*psy
,
497 enum power_supply_property psp
,
498 union power_supply_propval
*val
)
502 struct da9052_battery
*bat
= container_of(psy
, struct da9052_battery
,
505 ret
= da9052_bat_check_presence(bat
, &illegal
);
509 if (illegal
&& psp
!= POWER_SUPPLY_PROP_PRESENT
)
513 case POWER_SUPPLY_PROP_STATUS
:
514 ret
= da9052_bat_check_status(bat
, &val
->intval
);
516 case POWER_SUPPLY_PROP_ONLINE
:
518 (bat
->charger_type
== DA9052_NOCHARGER
) ? 0 : 1;
520 case POWER_SUPPLY_PROP_PRESENT
:
521 ret
= da9052_bat_check_presence(bat
, &val
->intval
);
523 case POWER_SUPPLY_PROP_HEALTH
:
524 ret
= da9052_bat_check_health(bat
, &val
->intval
);
526 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN
:
527 val
->intval
= DA9052_BAT_CUTOFF_VOLT
* 1000;
529 case POWER_SUPPLY_PROP_VOLTAGE_AVG
:
530 ret
= da9052_bat_read_volt(bat
, &val
->intval
);
532 case POWER_SUPPLY_PROP_CURRENT_AVG
:
533 ret
= da9052_read_chg_current(bat
, &val
->intval
);
535 case POWER_SUPPLY_PROP_CAPACITY
:
536 ret
= da9052_bat_read_capacity(bat
, &val
->intval
);
538 case POWER_SUPPLY_PROP_TEMP
:
539 val
->intval
= da9052_adc_read_temp(bat
->da9052
);
542 case POWER_SUPPLY_PROP_TECHNOLOGY
:
543 val
->intval
= POWER_SUPPLY_TECHNOLOGY_LION
;
551 static enum power_supply_property da9052_bat_props
[] = {
552 POWER_SUPPLY_PROP_STATUS
,
553 POWER_SUPPLY_PROP_ONLINE
,
554 POWER_SUPPLY_PROP_PRESENT
,
555 POWER_SUPPLY_PROP_HEALTH
,
556 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN
,
557 POWER_SUPPLY_PROP_VOLTAGE_AVG
,
558 POWER_SUPPLY_PROP_CURRENT_AVG
,
559 POWER_SUPPLY_PROP_CAPACITY
,
560 POWER_SUPPLY_PROP_TEMP
,
561 POWER_SUPPLY_PROP_TECHNOLOGY
,
564 static struct power_supply template_battery
= {
565 .name
= "da9052-bat",
566 .type
= POWER_SUPPLY_TYPE_BATTERY
,
567 .properties
= da9052_bat_props
,
568 .num_properties
= ARRAY_SIZE(da9052_bat_props
),
569 .get_property
= da9052_bat_get_property
,
572 static char *da9052_bat_irqs
[] = {
581 static int da9052_bat_irq_bits
[] = {
590 static s32
da9052_bat_probe(struct platform_device
*pdev
)
592 struct da9052_pdata
*pdata
;
593 struct da9052_battery
*bat
;
597 bat
= devm_kzalloc(&pdev
->dev
, sizeof(struct da9052_battery
),
602 bat
->da9052
= dev_get_drvdata(pdev
->dev
.parent
);
603 bat
->psy
= template_battery
;
604 bat
->charger_type
= DA9052_NOCHARGER
;
605 bat
->status
= POWER_SUPPLY_STATUS_UNKNOWN
;
606 bat
->health
= POWER_SUPPLY_HEALTH_UNKNOWN
;
607 bat
->nb
.notifier_call
= da9052_USB_current_notifier
;
609 pdata
= bat
->da9052
->dev
->platform_data
;
610 if (pdata
!= NULL
&& pdata
->use_for_apm
)
611 bat
->psy
.use_for_apm
= pdata
->use_for_apm
;
613 bat
->psy
.use_for_apm
= 1;
615 for (i
= 0; i
< ARRAY_SIZE(da9052_bat_irqs
); i
++) {
616 ret
= da9052_request_irq(bat
->da9052
,
617 da9052_bat_irq_bits
[i
], da9052_bat_irqs
[i
],
618 da9052_bat_irq
, bat
);
621 dev_err(bat
->da9052
->dev
,
622 "DA9052 failed to request %s IRQ: %d\n",
623 da9052_bat_irqs
[i
], ret
);
628 ret
= power_supply_register(&pdev
->dev
, &bat
->psy
);
632 platform_set_drvdata(pdev
, bat
);
637 da9052_free_irq(bat
->da9052
, da9052_bat_irq_bits
[i
], bat
);
641 static int da9052_bat_remove(struct platform_device
*pdev
)
644 struct da9052_battery
*bat
= platform_get_drvdata(pdev
);
646 for (i
= 0; i
< ARRAY_SIZE(da9052_bat_irqs
); i
++)
647 da9052_free_irq(bat
->da9052
, da9052_bat_irq_bits
[i
], bat
);
649 power_supply_unregister(&bat
->psy
);
654 static struct platform_driver da9052_bat_driver
= {
655 .probe
= da9052_bat_probe
,
656 .remove
= da9052_bat_remove
,
658 .name
= "da9052-bat",
659 .owner
= THIS_MODULE
,
662 module_platform_driver(da9052_bat_driver
);
664 MODULE_DESCRIPTION("DA9052 BAT Device Driver");
665 MODULE_AUTHOR("David Dajun Chen <dchen@diasemi.com>");
666 MODULE_LICENSE("GPL");
667 MODULE_ALIAS("platform:da9052-bat");