2 * Battery charger driver for TI's tps65217
4 * Copyright (c) 2015, Collabora Ltd.
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 * Battery charger driver for TI's tps65217
22 #include <linux/kernel.h>
23 #include <linux/kthread.h>
24 #include <linux/device.h>
25 #include <linux/module.h>
26 #include <linux/platform_device.h>
27 #include <linux/init.h>
28 #include <linux/interrupt.h>
29 #include <linux/slab.h>
30 #include <linux/err.h>
32 #include <linux/of_device.h>
33 #include <linux/power_supply.h>
35 #include <linux/mfd/core.h>
36 #include <linux/mfd/tps65217.h>
38 #define POLL_INTERVAL (HZ * 2)
40 struct tps65217_charger {
43 struct power_supply *ac;
48 struct task_struct *poll_task;
51 static enum power_supply_property tps65217_ac_props[] = {
52 POWER_SUPPLY_PROP_ONLINE,
55 static int tps65217_config_charger(struct tps65217_charger *charger)
59 dev_dbg(charger->dev, "%s\n", __func__);
62 * tps65217 rev. G, p. 31 (see p. 32 for NTC schematic)
64 * The device can be configured to support a 100k NTC (B = 3960) by
65 * setting the the NTC_TYPE bit in register CHGCONFIG1 to 1. However it
66 * is not recommended to do so. In sleep mode, the charger continues
67 * charging the battery, but all register values are reset to default
68 * values. Therefore, the charger would get the wrong temperature
69 * information. If 100k NTC setting is required, please contact the
72 * ATTENTION, conflicting information, from p. 46
74 * NTC TYPE (for battery temperature measurement)
75 * 0 – 100k (curve 1, B = 3960)
76 * 1 – 10k (curve 2, B = 3480) (default on reset)
79 ret = tps65217_clear_bits(charger->tps, TPS65217_REG_CHGCONFIG1,
80 TPS65217_CHGCONFIG1_NTC_TYPE,
81 TPS65217_PROTECT_NONE);
84 "failed to set 100k NTC setting: %d\n", ret);
91 static int tps65217_enable_charging(struct tps65217_charger *charger)
95 /* charger already enabled */
96 if (charger->ac_online)
99 dev_dbg(charger->dev, "%s: enable charging\n", __func__);
100 ret = tps65217_set_bits(charger->tps, TPS65217_REG_CHGCONFIG1,
101 TPS65217_CHGCONFIG1_CHG_EN,
102 TPS65217_CHGCONFIG1_CHG_EN,
103 TPS65217_PROTECT_NONE);
105 dev_err(charger->dev,
106 "%s: Error in writing CHG_EN in reg 0x%x: %d\n",
107 __func__, TPS65217_REG_CHGCONFIG1, ret);
111 charger->ac_online = 1;
116 static int tps65217_ac_get_property(struct power_supply *psy,
117 enum power_supply_property psp,
118 union power_supply_propval *val)
120 struct tps65217_charger *charger = power_supply_get_drvdata(psy);
122 if (psp == POWER_SUPPLY_PROP_ONLINE) {
123 val->intval = charger->ac_online;
129 static irqreturn_t tps65217_charger_irq(int irq, void *dev)
132 struct tps65217_charger *charger = dev;
134 charger->prev_ac_online = charger->ac_online;
136 ret = tps65217_reg_read(charger->tps, TPS65217_REG_STATUS, &val);
138 dev_err(charger->dev, "%s: Error in reading reg 0x%x\n",
139 __func__, TPS65217_REG_STATUS);
143 dev_dbg(charger->dev, "%s: 0x%x\n", __func__, val);
145 /* check for AC status bit */
146 if (val & TPS65217_STATUS_ACPWR) {
147 ret = tps65217_enable_charging(charger);
149 dev_err(charger->dev,
150 "failed to enable charger: %d\n", ret);
154 charger->ac_online = 0;
157 if (charger->prev_ac_online != charger->ac_online)
158 power_supply_changed(charger->ac);
160 ret = tps65217_reg_read(charger->tps, TPS65217_REG_CHGCONFIG0, &val);
162 dev_err(charger->dev, "%s: Error in reading reg 0x%x\n",
163 __func__, TPS65217_REG_CHGCONFIG0);
167 if (val & TPS65217_CHGCONFIG0_ACTIVE)
168 dev_dbg(charger->dev, "%s: charger is charging\n", __func__);
170 dev_dbg(charger->dev,
171 "%s: charger is NOT charging\n", __func__);
176 static int tps65217_charger_poll_task(void *data)
180 while (!kthread_should_stop()) {
181 schedule_timeout_interruptible(POLL_INTERVAL);
183 tps65217_charger_irq(-1, data);
188 static const struct power_supply_desc tps65217_charger_desc = {
189 .name = "tps65217-ac",
190 .type = POWER_SUPPLY_TYPE_MAINS,
191 .get_property = tps65217_ac_get_property,
192 .properties = tps65217_ac_props,
193 .num_properties = ARRAY_SIZE(tps65217_ac_props),
196 static int tps65217_charger_probe(struct platform_device *pdev)
198 struct tps65217 *tps = dev_get_drvdata(pdev->dev.parent);
199 struct tps65217_charger *charger;
200 struct power_supply_config cfg = {};
203 dev_dbg(&pdev->dev, "%s\n", __func__);
205 charger = devm_kzalloc(&pdev->dev, sizeof(*charger), GFP_KERNEL);
209 platform_set_drvdata(pdev, charger);
211 charger->dev = &pdev->dev;
213 cfg.of_node = pdev->dev.of_node;
214 cfg.drv_data = charger;
216 charger->ac = devm_power_supply_register(&pdev->dev,
217 &tps65217_charger_desc,
219 if (IS_ERR(charger->ac)) {
220 dev_err(&pdev->dev, "failed: power supply register\n");
221 return PTR_ERR(charger->ac);
224 ret = tps65217_config_charger(charger);
226 dev_err(charger->dev, "charger config failed, err %d\n", ret);
230 charger->poll_task = kthread_run(tps65217_charger_poll_task,
231 charger, "ktps65217charger");
232 if (IS_ERR(charger->poll_task)) {
233 ret = PTR_ERR(charger->poll_task);
234 dev_err(charger->dev, "Unable to run kthread err %d\n", ret);
241 static int tps65217_charger_remove(struct platform_device *pdev)
243 struct tps65217_charger *charger = platform_get_drvdata(pdev);
245 kthread_stop(charger->poll_task);
250 static const struct of_device_id tps65217_charger_match_table[] = {
251 { .compatible = "ti,tps65217-charger", },
254 MODULE_DEVICE_TABLE(of, tps65217_charger_match_table);
256 static struct platform_driver tps65217_charger_driver = {
257 .probe = tps65217_charger_probe,
258 .remove = tps65217_charger_remove,
260 .name = "tps65217-charger",
261 .of_match_table = of_match_ptr(tps65217_charger_match_table),
265 module_platform_driver(tps65217_charger_driver);
267 MODULE_LICENSE("GPL v2");
268 MODULE_AUTHOR("Enric Balletbo Serra <enric.balletbo@collabora.com>");
269 MODULE_DESCRIPTION("TPS65217 battery charger driver");