2 * Battery driver for Maxim MAX8925
4 * Copyright (c) 2009-2010 Marvell International Ltd.
5 * Haojian Zhuang <haojian.zhuang@marvell.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #include <linux/module.h>
13 #include <linux/err.h>
14 #include <linux/slab.h>
16 #include <linux/i2c.h>
17 #include <linux/interrupt.h>
18 #include <linux/platform_device.h>
19 #include <linux/power_supply.h>
20 #include <linux/mfd/max8925.h>
22 /* registers in GPM */
23 #define MAX8925_OUT5VEN 0x54
24 #define MAX8925_OUT3VEN 0x58
25 #define MAX8925_CHG_CNTL1 0x7c
28 #define MAX8925_CHG_STAT_VSYSLOW (1 << 0)
29 #define MAX8925_CHG_STAT_MODE_MASK (3 << 2)
30 #define MAX8925_CHG_STAT_EN_MASK (1 << 4)
31 #define MAX8925_CHG_MBDET (1 << 1)
32 #define MAX8925_CHG_AC_RANGE_MASK (3 << 6)
34 /* registers in ADC */
35 #define MAX8925_ADC_RES_CNFG1 0x06
36 #define MAX8925_ADC_AVG_CNFG1 0x07
37 #define MAX8925_ADC_ACQ_CNFG1 0x08
38 #define MAX8925_ADC_ACQ_CNFG2 0x09
39 /* 2 bytes registers in below. MSB is 1st, LSB is 2nd. */
40 #define MAX8925_ADC_AUX2 0x62
41 #define MAX8925_ADC_VCHG 0x64
42 #define MAX8925_ADC_VBBATT 0x66
43 #define MAX8925_ADC_VMBATT 0x68
44 #define MAX8925_ADC_ISNS 0x6a
45 #define MAX8925_ADC_THM 0x6c
46 #define MAX8925_ADC_TDIE 0x6e
47 #define MAX8925_CMD_AUX2 0xc8
48 #define MAX8925_CMD_VCHG 0xd0
49 #define MAX8925_CMD_VBBATT 0xd8
50 #define MAX8925_CMD_VMBATT 0xe0
51 #define MAX8925_CMD_ISNS 0xe8
52 #define MAX8925_CMD_THM 0xf0
53 #define MAX8925_CMD_TDIE 0xf8
66 struct max8925_power_info
{
67 struct max8925_chip
*chip
;
68 struct i2c_client
*gpm
;
69 struct i2c_client
*adc
;
71 struct power_supply ac
;
72 struct power_supply usb
;
73 struct power_supply battery
;
76 unsigned usb_online
:1;
77 unsigned bat_online
:1;
79 unsigned batt_detect
:1; /* detecing MB by ID pin */
80 unsigned topoff_threshold
:2;
81 unsigned fast_charge
:3;
82 unsigned no_temp_support
:1;
83 unsigned no_insert_detect
:1;
85 int (*set_charger
) (int);
88 static int __set_charger(struct max8925_power_info
*info
, int enable
)
90 struct max8925_chip
*chip
= info
->chip
;
92 /* enable charger in platform */
93 if (info
->set_charger
)
96 max8925_set_bits(info
->gpm
, MAX8925_CHG_CNTL1
, 1 << 7, 0);
99 max8925_set_bits(info
->gpm
, MAX8925_CHG_CNTL1
, 1 << 7, 1 << 7);
100 if (info
->set_charger
)
101 info
->set_charger(0);
103 dev_dbg(chip
->dev
, "%s\n", (enable
) ? "Enable charger"
104 : "Disable charger");
108 static irqreturn_t
max8925_charger_handler(int irq
, void *data
)
110 struct max8925_power_info
*info
= (struct max8925_power_info
*)data
;
111 struct max8925_chip
*chip
= info
->chip
;
113 switch (irq
- chip
->irq_base
) {
114 case MAX8925_IRQ_VCHG_DC_R
:
116 __set_charger(info
, 1);
117 dev_dbg(chip
->dev
, "Adapter inserted\n");
119 case MAX8925_IRQ_VCHG_DC_F
:
121 __set_charger(info
, 0);
122 dev_dbg(chip
->dev
, "Adapter removed\n");
124 case MAX8925_IRQ_VCHG_THM_OK_F
:
125 /* Battery is not ready yet */
126 dev_dbg(chip
->dev
, "Battery temperature is out of range\n");
127 case MAX8925_IRQ_VCHG_DC_OVP
:
128 dev_dbg(chip
->dev
, "Error detection\n");
129 __set_charger(info
, 0);
131 case MAX8925_IRQ_VCHG_THM_OK_R
:
132 /* Battery is ready now */
133 dev_dbg(chip
->dev
, "Battery temperature is in range\n");
135 case MAX8925_IRQ_VCHG_SYSLOW_R
:
137 dev_info(chip
->dev
, "Sys power is too low\n");
139 case MAX8925_IRQ_VCHG_SYSLOW_F
:
140 dev_dbg(chip
->dev
, "Sys power is above low threshold\n");
142 case MAX8925_IRQ_VCHG_DONE
:
143 __set_charger(info
, 0);
144 dev_dbg(chip
->dev
, "Charging is done\n");
146 case MAX8925_IRQ_VCHG_TOPOFF
:
147 dev_dbg(chip
->dev
, "Charging in top-off mode\n");
149 case MAX8925_IRQ_VCHG_TMR_FAULT
:
150 __set_charger(info
, 0);
151 dev_dbg(chip
->dev
, "Safe timer is expired\n");
153 case MAX8925_IRQ_VCHG_RST
:
154 __set_charger(info
, 0);
155 dev_dbg(chip
->dev
, "Charger is reset\n");
161 static int start_measure(struct max8925_power_info
*info
, int type
)
163 unsigned char buf
[2] = {0, 0};
165 int meas_reg
= 0, ret
;
169 meas_cmd
= MAX8925_CMD_VCHG
;
170 meas_reg
= MAX8925_ADC_VCHG
;
173 meas_cmd
= MAX8925_CMD_VBBATT
;
174 meas_reg
= MAX8925_ADC_VBBATT
;
177 meas_cmd
= MAX8925_CMD_VMBATT
;
178 meas_reg
= MAX8925_ADC_VMBATT
;
181 meas_cmd
= MAX8925_CMD_ISNS
;
182 meas_reg
= MAX8925_ADC_ISNS
;
188 max8925_reg_write(info
->adc
, meas_cmd
, 0);
189 max8925_bulk_read(info
->adc
, meas_reg
, 2, buf
);
190 ret
= ((buf
[0]<<8) | buf
[1]) >> 4;
195 static int max8925_ac_get_prop(struct power_supply
*psy
,
196 enum power_supply_property psp
,
197 union power_supply_propval
*val
)
199 struct max8925_power_info
*info
= dev_get_drvdata(psy
->dev
->parent
);
203 case POWER_SUPPLY_PROP_ONLINE
:
204 val
->intval
= info
->ac_online
;
206 case POWER_SUPPLY_PROP_VOLTAGE_NOW
:
207 if (info
->ac_online
) {
208 ret
= start_measure(info
, MEASURE_VCHG
);
210 val
->intval
= ret
* 2000; /* unit is uV */
224 static enum power_supply_property max8925_ac_props
[] = {
225 POWER_SUPPLY_PROP_ONLINE
,
226 POWER_SUPPLY_PROP_VOLTAGE_NOW
,
229 static int max8925_usb_get_prop(struct power_supply
*psy
,
230 enum power_supply_property psp
,
231 union power_supply_propval
*val
)
233 struct max8925_power_info
*info
= dev_get_drvdata(psy
->dev
->parent
);
237 case POWER_SUPPLY_PROP_ONLINE
:
238 val
->intval
= info
->usb_online
;
240 case POWER_SUPPLY_PROP_VOLTAGE_NOW
:
241 if (info
->usb_online
) {
242 ret
= start_measure(info
, MEASURE_VCHG
);
244 val
->intval
= ret
* 2000; /* unit is uV */
258 static enum power_supply_property max8925_usb_props
[] = {
259 POWER_SUPPLY_PROP_ONLINE
,
260 POWER_SUPPLY_PROP_VOLTAGE_NOW
,
263 static int max8925_bat_get_prop(struct power_supply
*psy
,
264 enum power_supply_property psp
,
265 union power_supply_propval
*val
)
267 struct max8925_power_info
*info
= dev_get_drvdata(psy
->dev
->parent
);
271 case POWER_SUPPLY_PROP_ONLINE
:
272 val
->intval
= info
->bat_online
;
274 case POWER_SUPPLY_PROP_VOLTAGE_NOW
:
275 if (info
->bat_online
) {
276 ret
= start_measure(info
, MEASURE_VMBATT
);
278 val
->intval
= ret
* 2000; /* unit is uV */
285 case POWER_SUPPLY_PROP_CURRENT_NOW
:
286 if (info
->bat_online
) {
287 ret
= start_measure(info
, MEASURE_ISNS
);
289 /* assume r_sns is 0.02 */
290 ret
= ((ret
* 6250) - 3125) /* uA */;
293 val
->intval
= ret
; /* unit is mA */
300 case POWER_SUPPLY_PROP_CHARGE_TYPE
:
301 if (!info
->bat_online
) {
305 ret
= max8925_reg_read(info
->gpm
, MAX8925_CHG_STATUS
);
306 ret
= (ret
& MAX8925_CHG_STAT_MODE_MASK
) >> 2;
309 val
->intval
= POWER_SUPPLY_CHARGE_TYPE_FAST
;
313 val
->intval
= POWER_SUPPLY_CHARGE_TYPE_TRICKLE
;
316 val
->intval
= POWER_SUPPLY_CHARGE_TYPE_NONE
;
321 case POWER_SUPPLY_PROP_STATUS
:
322 if (!info
->bat_online
) {
326 ret
= max8925_reg_read(info
->gpm
, MAX8925_CHG_STATUS
);
327 if (info
->usb_online
|| info
->ac_online
) {
328 val
->intval
= POWER_SUPPLY_STATUS_NOT_CHARGING
;
329 if (ret
& MAX8925_CHG_STAT_EN_MASK
)
330 val
->intval
= POWER_SUPPLY_STATUS_CHARGING
;
332 val
->intval
= POWER_SUPPLY_STATUS_DISCHARGING
;
342 static enum power_supply_property max8925_battery_props
[] = {
343 POWER_SUPPLY_PROP_ONLINE
,
344 POWER_SUPPLY_PROP_VOLTAGE_NOW
,
345 POWER_SUPPLY_PROP_CURRENT_NOW
,
346 POWER_SUPPLY_PROP_CHARGE_TYPE
,
347 POWER_SUPPLY_PROP_STATUS
,
350 #define REQUEST_IRQ(_irq, _name) \
352 ret = request_threaded_irq(chip->irq_base + _irq, NULL, \
353 max8925_charger_handler, \
354 IRQF_ONESHOT, _name, info); \
356 dev_err(chip->dev, "Failed to request IRQ #%d: %d\n", \
360 static int max8925_init_charger(struct max8925_chip
*chip
,
361 struct max8925_power_info
*info
)
365 REQUEST_IRQ(MAX8925_IRQ_VCHG_DC_OVP
, "ac-ovp");
366 if (!info
->no_insert_detect
) {
367 REQUEST_IRQ(MAX8925_IRQ_VCHG_DC_F
, "ac-remove");
368 REQUEST_IRQ(MAX8925_IRQ_VCHG_DC_R
, "ac-insert");
370 if (!info
->no_temp_support
) {
371 REQUEST_IRQ(MAX8925_IRQ_VCHG_THM_OK_R
, "batt-temp-in-range");
372 REQUEST_IRQ(MAX8925_IRQ_VCHG_THM_OK_F
, "batt-temp-out-range");
374 REQUEST_IRQ(MAX8925_IRQ_VCHG_SYSLOW_F
, "vsys-high");
375 REQUEST_IRQ(MAX8925_IRQ_VCHG_SYSLOW_R
, "vsys-low");
376 REQUEST_IRQ(MAX8925_IRQ_VCHG_RST
, "charger-reset");
377 REQUEST_IRQ(MAX8925_IRQ_VCHG_DONE
, "charger-done");
378 REQUEST_IRQ(MAX8925_IRQ_VCHG_TOPOFF
, "charger-topoff");
379 REQUEST_IRQ(MAX8925_IRQ_VCHG_TMR_FAULT
, "charger-timer-expire");
381 info
->usb_online
= 0;
382 info
->bat_online
= 0;
384 /* check for power - can miss interrupt at boot time */
385 if (start_measure(info
, MEASURE_VCHG
) * 2000 > 500000)
390 ret
= max8925_reg_read(info
->gpm
, MAX8925_CHG_STATUS
);
393 * If battery detection is enabled, ID pin of battery is
394 * connected to MBDET pin of MAX8925. It could be used to
395 * detect battery presence.
396 * Otherwise, we have to assume that battery is always on.
398 if (info
->batt_detect
)
399 info
->bat_online
= (ret
& MAX8925_CHG_MBDET
) ? 0 : 1;
401 info
->bat_online
= 1;
402 if (ret
& MAX8925_CHG_AC_RANGE_MASK
)
408 max8925_set_bits(info
->gpm
, MAX8925_CHG_CNTL1
, 1 << 7, 1 << 7);
409 /* set charging current in charge topoff mode */
410 max8925_set_bits(info
->gpm
, MAX8925_CHG_CNTL1
, 3 << 5,
411 info
->topoff_threshold
<< 5);
412 /* set charing current in fast charge mode */
413 max8925_set_bits(info
->gpm
, MAX8925_CHG_CNTL1
, 7, info
->fast_charge
);
418 static int max8925_deinit_charger(struct max8925_power_info
*info
)
420 struct max8925_chip
*chip
= info
->chip
;
423 irq
= chip
->irq_base
+ MAX8925_IRQ_VCHG_DC_OVP
;
424 for (; irq
<= chip
->irq_base
+ MAX8925_IRQ_VCHG_TMR_FAULT
; irq
++)
431 static struct max8925_power_pdata
*
432 max8925_power_dt_init(struct platform_device
*pdev
)
434 struct device_node
*nproot
= pdev
->dev
.parent
->of_node
;
435 struct device_node
*np
;
437 int topoff_threshold
;
440 int no_insert_detect
;
441 struct max8925_power_pdata
*pdata
;
444 return pdev
->dev
.platform_data
;
446 np
= of_find_node_by_name(nproot
, "charger");
448 dev_err(&pdev
->dev
, "failed to find charger node\n");
452 pdata
= devm_kzalloc(&pdev
->dev
,
453 sizeof(struct max8925_power_pdata
),
456 of_property_read_u32(np
, "topoff-threshold", &topoff_threshold
);
457 of_property_read_u32(np
, "batt-detect", &batt_detect
);
458 of_property_read_u32(np
, "fast-charge", &fast_charge
);
459 of_property_read_u32(np
, "no-insert-detect", &no_insert_detect
);
460 of_property_read_u32(np
, "no-temp-support", &no_temp_support
);
463 pdata
->batt_detect
= batt_detect
;
464 pdata
->fast_charge
= fast_charge
;
465 pdata
->topoff_threshold
= topoff_threshold
;
466 pdata
->no_insert_detect
= no_insert_detect
;
467 pdata
->no_temp_support
= no_temp_support
;
472 static struct max8925_power_pdata
*
473 max8925_power_dt_init(struct platform_device
*pdev
)
475 return pdev
->dev
.platform_data
;
479 static int max8925_power_probe(struct platform_device
*pdev
)
481 struct max8925_chip
*chip
= dev_get_drvdata(pdev
->dev
.parent
);
482 struct max8925_power_pdata
*pdata
= NULL
;
483 struct max8925_power_info
*info
;
486 pdata
= max8925_power_dt_init(pdev
);
488 dev_err(&pdev
->dev
, "platform data isn't assigned to "
493 info
= devm_kzalloc(&pdev
->dev
, sizeof(struct max8925_power_info
),
498 info
->gpm
= chip
->i2c
;
499 info
->adc
= chip
->adc
;
500 platform_set_drvdata(pdev
, info
);
502 info
->ac
.name
= "max8925-ac";
503 info
->ac
.type
= POWER_SUPPLY_TYPE_MAINS
;
504 info
->ac
.properties
= max8925_ac_props
;
505 info
->ac
.num_properties
= ARRAY_SIZE(max8925_ac_props
);
506 info
->ac
.get_property
= max8925_ac_get_prop
;
507 info
->ac
.supplied_to
= pdata
->supplied_to
;
508 info
->ac
.num_supplicants
= pdata
->num_supplicants
;
509 ret
= power_supply_register(&pdev
->dev
, &info
->ac
);
512 info
->ac
.dev
->parent
= &pdev
->dev
;
514 info
->usb
.name
= "max8925-usb";
515 info
->usb
.type
= POWER_SUPPLY_TYPE_USB
;
516 info
->usb
.properties
= max8925_usb_props
;
517 info
->usb
.num_properties
= ARRAY_SIZE(max8925_usb_props
);
518 info
->usb
.get_property
= max8925_usb_get_prop
;
519 info
->usb
.supplied_to
= pdata
->supplied_to
;
520 info
->usb
.num_supplicants
= pdata
->num_supplicants
;
522 ret
= power_supply_register(&pdev
->dev
, &info
->usb
);
525 info
->usb
.dev
->parent
= &pdev
->dev
;
527 info
->battery
.name
= "max8925-battery";
528 info
->battery
.type
= POWER_SUPPLY_TYPE_BATTERY
;
529 info
->battery
.properties
= max8925_battery_props
;
530 info
->battery
.num_properties
= ARRAY_SIZE(max8925_battery_props
);
531 info
->battery
.get_property
= max8925_bat_get_prop
;
532 ret
= power_supply_register(&pdev
->dev
, &info
->battery
);
535 info
->battery
.dev
->parent
= &pdev
->dev
;
537 info
->batt_detect
= pdata
->batt_detect
;
538 info
->topoff_threshold
= pdata
->topoff_threshold
;
539 info
->fast_charge
= pdata
->fast_charge
;
540 info
->set_charger
= pdata
->set_charger
;
541 info
->no_temp_support
= pdata
->no_temp_support
;
542 info
->no_insert_detect
= pdata
->no_insert_detect
;
544 max8925_init_charger(chip
, info
);
547 power_supply_unregister(&info
->battery
);
549 power_supply_unregister(&info
->ac
);
554 static int max8925_power_remove(struct platform_device
*pdev
)
556 struct max8925_power_info
*info
= platform_get_drvdata(pdev
);
559 power_supply_unregister(&info
->ac
);
560 power_supply_unregister(&info
->usb
);
561 power_supply_unregister(&info
->battery
);
562 max8925_deinit_charger(info
);
567 static struct platform_driver max8925_power_driver
= {
568 .probe
= max8925_power_probe
,
569 .remove
= max8925_power_remove
,
571 .name
= "max8925-power",
575 module_platform_driver(max8925_power_driver
);
577 MODULE_LICENSE("GPL");
578 MODULE_DESCRIPTION("Power supply driver for MAX8925");
579 MODULE_ALIAS("platform:max8925-power");