blob: c2f09ed35050a15d20148c4439614b8098ee90a7 [file] [log] [blame]
Marek Vašut4e9687d2008-09-11 19:37:32 +01001/*
2 * linux/drivers/power/wm97xx_battery.c
3 *
4 * Battery measurement code for WM97xx
5 *
6 * based on tosa_battery.c
7 *
8 * Copyright (C) 2008 Marek Vasut <marek.vasut@gmail.com>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 *
14 */
15
16#include <linux/init.h>
17#include <linux/kernel.h>
18#include <linux/module.h>
19#include <linux/platform_device.h>
20#include <linux/power_supply.h>
21#include <linux/wm97xx.h>
22#include <linux/spinlock.h>
23#include <linux/interrupt.h>
24#include <linux/gpio.h>
Marek Vasut7c879422009-07-23 16:02:08 +020025#include <linux/irq.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Marek Vašut4e9687d2008-09-11 19:37:32 +010027
Marek Vašut4e9687d2008-09-11 19:37:32 +010028static struct work_struct bat_work;
Axel Lindaf22c32011-11-28 22:37:35 +080029static DEFINE_MUTEX(work_lock);
Marek Vašut4e9687d2008-09-11 19:37:32 +010030static int bat_status = POWER_SUPPLY_STATUS_UNKNOWN;
Marek Vašut4e9687d2008-09-11 19:37:32 +010031static enum power_supply_property *prop;
32
33static unsigned long wm97xx_read_bat(struct power_supply *bat_ps)
34{
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +010035 struct wm97xx_pdata *wmdata = bat_ps->dev.parent->platform_data;
Marek Vasutb8bdc1d2009-08-31 06:20:12 +020036 struct wm97xx_batt_pdata *pdata = wmdata->batt_pdata;
37
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +010038 return wm97xx_read_aux_adc(dev_get_drvdata(bat_ps->dev.parent),
Marek Vašut4e9687d2008-09-11 19:37:32 +010039 pdata->batt_aux) * pdata->batt_mult /
40 pdata->batt_div;
41}
42
43static unsigned long wm97xx_read_temp(struct power_supply *bat_ps)
44{
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +010045 struct wm97xx_pdata *wmdata = bat_ps->dev.parent->platform_data;
Marek Vasutb8bdc1d2009-08-31 06:20:12 +020046 struct wm97xx_batt_pdata *pdata = wmdata->batt_pdata;
47
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +010048 return wm97xx_read_aux_adc(dev_get_drvdata(bat_ps->dev.parent),
Marek Vašut4e9687d2008-09-11 19:37:32 +010049 pdata->temp_aux) * pdata->temp_mult /
50 pdata->temp_div;
51}
52
53static int wm97xx_bat_get_property(struct power_supply *bat_ps,
54 enum power_supply_property psp,
55 union power_supply_propval *val)
56{
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +010057 struct wm97xx_pdata *wmdata = bat_ps->dev.parent->platform_data;
Marek Vasutb8bdc1d2009-08-31 06:20:12 +020058 struct wm97xx_batt_pdata *pdata = wmdata->batt_pdata;
59
Marek Vašut4e9687d2008-09-11 19:37:32 +010060 switch (psp) {
61 case POWER_SUPPLY_PROP_STATUS:
62 val->intval = bat_status;
63 break;
64 case POWER_SUPPLY_PROP_TECHNOLOGY:
65 val->intval = pdata->batt_tech;
66 break;
67 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
68 if (pdata->batt_aux >= 0)
69 val->intval = wm97xx_read_bat(bat_ps);
70 else
71 return -EINVAL;
72 break;
73 case POWER_SUPPLY_PROP_TEMP:
74 if (pdata->temp_aux >= 0)
75 val->intval = wm97xx_read_temp(bat_ps);
76 else
77 return -EINVAL;
78 break;
79 case POWER_SUPPLY_PROP_VOLTAGE_MAX:
80 if (pdata->max_voltage >= 0)
81 val->intval = pdata->max_voltage;
82 else
83 return -EINVAL;
84 break;
85 case POWER_SUPPLY_PROP_VOLTAGE_MIN:
86 if (pdata->min_voltage >= 0)
87 val->intval = pdata->min_voltage;
88 else
89 return -EINVAL;
90 break;
91 case POWER_SUPPLY_PROP_PRESENT:
92 val->intval = 1;
93 break;
94 default:
95 return -EINVAL;
96 }
97 return 0;
98}
99
100static void wm97xx_bat_external_power_changed(struct power_supply *bat_ps)
101{
102 schedule_work(&bat_work);
103}
104
105static void wm97xx_bat_update(struct power_supply *bat_ps)
106{
107 int old_status = bat_status;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100108 struct wm97xx_pdata *wmdata = bat_ps->dev.parent->platform_data;
Marek Vasutb8bdc1d2009-08-31 06:20:12 +0200109 struct wm97xx_batt_pdata *pdata = wmdata->batt_pdata;
Marek Vašut4e9687d2008-09-11 19:37:32 +0100110
111 mutex_lock(&work_lock);
112
113 bat_status = (pdata->charge_gpio >= 0) ?
114 (gpio_get_value(pdata->charge_gpio) ?
115 POWER_SUPPLY_STATUS_DISCHARGING :
116 POWER_SUPPLY_STATUS_CHARGING) :
117 POWER_SUPPLY_STATUS_UNKNOWN;
118
119 if (old_status != bat_status) {
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100120 pr_debug("%s: %i -> %i\n", bat_ps->desc->name, old_status,
Marek Vašut4e9687d2008-09-11 19:37:32 +0100121 bat_status);
122 power_supply_changed(bat_ps);
123 }
124
125 mutex_unlock(&work_lock);
126}
127
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100128static struct power_supply *bat_psy;
129static struct power_supply_desc bat_psy_desc = {
Marek Vašut4e9687d2008-09-11 19:37:32 +0100130 .type = POWER_SUPPLY_TYPE_BATTERY,
131 .get_property = wm97xx_bat_get_property,
132 .external_power_changed = wm97xx_bat_external_power_changed,
133 .use_for_apm = 1,
134};
135
136static void wm97xx_bat_work(struct work_struct *work)
137{
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100138 wm97xx_bat_update(bat_psy);
Marek Vašut4e9687d2008-09-11 19:37:32 +0100139}
140
Marek Vasut7c879422009-07-23 16:02:08 +0200141static irqreturn_t wm97xx_chrg_irq(int irq, void *data)
142{
143 schedule_work(&bat_work);
144 return IRQ_HANDLED;
145}
146
Marek Vašut4e9687d2008-09-11 19:37:32 +0100147#ifdef CONFIG_PM
Marek Vasut83a8af02009-08-22 00:36:43 +0200148static int wm97xx_bat_suspend(struct device *dev)
Marek Vašut4e9687d2008-09-11 19:37:32 +0100149{
Tejun Heo43829732012-08-20 14:51:24 -0700150 flush_work(&bat_work);
Marek Vašut4e9687d2008-09-11 19:37:32 +0100151 return 0;
152}
153
Marek Vasut83a8af02009-08-22 00:36:43 +0200154static int wm97xx_bat_resume(struct device *dev)
Marek Vašut4e9687d2008-09-11 19:37:32 +0100155{
156 schedule_work(&bat_work);
157 return 0;
158}
Marek Vasut83a8af02009-08-22 00:36:43 +0200159
Alexey Dobriyan47145212009-12-14 18:00:08 -0800160static const struct dev_pm_ops wm97xx_bat_pm_ops = {
Marek Vasut83a8af02009-08-22 00:36:43 +0200161 .suspend = wm97xx_bat_suspend,
162 .resume = wm97xx_bat_resume,
163};
Marek Vašut4e9687d2008-09-11 19:37:32 +0100164#endif
165
Bill Pembertonc8afa642012-11-19 13:22:23 -0500166static int wm97xx_bat_probe(struct platform_device *dev)
Marek Vašut4e9687d2008-09-11 19:37:32 +0100167{
168 int ret = 0;
169 int props = 1; /* POWER_SUPPLY_PROP_PRESENT */
170 int i = 0;
Marek Vasutb8bdc1d2009-08-31 06:20:12 +0200171 struct wm97xx_pdata *wmdata = dev->dev.platform_data;
172 struct wm97xx_batt_pdata *pdata;
173
Mark Brown12b336a2010-01-27 20:43:21 +0000174 if (!wmdata) {
175 dev_err(&dev->dev, "No platform data supplied\n");
176 return -EINVAL;
177 }
178
179 pdata = wmdata->batt_pdata;
Marek Vašut4e9687d2008-09-11 19:37:32 +0100180
181 if (dev->id != -1)
182 return -EINVAL;
183
Marek Vašut4e9687d2008-09-11 19:37:32 +0100184 if (!pdata) {
Marek Vasutb8bdc1d2009-08-31 06:20:12 +0200185 dev_err(&dev->dev, "No platform_data supplied\n");
Marek Vašut4e9687d2008-09-11 19:37:32 +0100186 return -EINVAL;
187 }
188
Marek Vasut7c879422009-07-23 16:02:08 +0200189 if (gpio_is_valid(pdata->charge_gpio)) {
Marek Vašut4e9687d2008-09-11 19:37:32 +0100190 ret = gpio_request(pdata->charge_gpio, "BATT CHRG");
191 if (ret)
192 goto err;
193 ret = gpio_direction_input(pdata->charge_gpio);
194 if (ret)
195 goto err2;
Marek Vasut7c879422009-07-23 16:02:08 +0200196 ret = request_irq(gpio_to_irq(pdata->charge_gpio),
Yong Zhang3b176b22011-09-22 16:59:11 +0800197 wm97xx_chrg_irq, 0,
Mark Brownf8d94eb2010-01-27 20:45:35 +0000198 "AC Detect", dev);
Marek Vasut7c879422009-07-23 16:02:08 +0200199 if (ret)
200 goto err2;
Marek Vašut4e9687d2008-09-11 19:37:32 +0100201 props++; /* POWER_SUPPLY_PROP_STATUS */
202 }
203
204 if (pdata->batt_tech >= 0)
205 props++; /* POWER_SUPPLY_PROP_TECHNOLOGY */
206 if (pdata->temp_aux >= 0)
207 props++; /* POWER_SUPPLY_PROP_TEMP */
208 if (pdata->batt_aux >= 0)
209 props++; /* POWER_SUPPLY_PROP_VOLTAGE_NOW */
210 if (pdata->max_voltage >= 0)
211 props++; /* POWER_SUPPLY_PROP_VOLTAGE_MAX */
212 if (pdata->min_voltage >= 0)
213 props++; /* POWER_SUPPLY_PROP_VOLTAGE_MIN */
214
215 prop = kzalloc(props * sizeof(*prop), GFP_KERNEL);
Julia Lawall588d4f02012-08-19 10:44:18 +0200216 if (!prop) {
217 ret = -ENOMEM;
Marek Vasut7c879422009-07-23 16:02:08 +0200218 goto err3;
Julia Lawall588d4f02012-08-19 10:44:18 +0200219 }
Marek Vašut4e9687d2008-09-11 19:37:32 +0100220
221 prop[i++] = POWER_SUPPLY_PROP_PRESENT;
222 if (pdata->charge_gpio >= 0)
223 prop[i++] = POWER_SUPPLY_PROP_STATUS;
224 if (pdata->batt_tech >= 0)
225 prop[i++] = POWER_SUPPLY_PROP_TECHNOLOGY;
226 if (pdata->temp_aux >= 0)
227 prop[i++] = POWER_SUPPLY_PROP_TEMP;
228 if (pdata->batt_aux >= 0)
229 prop[i++] = POWER_SUPPLY_PROP_VOLTAGE_NOW;
230 if (pdata->max_voltage >= 0)
231 prop[i++] = POWER_SUPPLY_PROP_VOLTAGE_MAX;
232 if (pdata->min_voltage >= 0)
233 prop[i++] = POWER_SUPPLY_PROP_VOLTAGE_MIN;
234
235 INIT_WORK(&bat_work, wm97xx_bat_work);
236
237 if (!pdata->batt_name) {
238 dev_info(&dev->dev, "Please consider setting proper battery "
239 "name in platform definition file, falling "
240 "back to name \"wm97xx-batt\"\n");
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100241 bat_psy_desc.name = "wm97xx-batt";
Marek Vašut4e9687d2008-09-11 19:37:32 +0100242 } else
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100243 bat_psy_desc.name = pdata->batt_name;
Marek Vašut4e9687d2008-09-11 19:37:32 +0100244
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100245 bat_psy_desc.properties = prop;
246 bat_psy_desc.num_properties = props;
Marek Vašut4e9687d2008-09-11 19:37:32 +0100247
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100248 bat_psy = power_supply_register(&dev->dev, &bat_psy_desc, NULL);
249 if (!IS_ERR(bat_psy)) {
Marek Vašut4e9687d2008-09-11 19:37:32 +0100250 schedule_work(&bat_work);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100251 } else {
252 ret = PTR_ERR(bat_psy);
Marek Vasut7c879422009-07-23 16:02:08 +0200253 goto err4;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100254 }
Marek Vašut4e9687d2008-09-11 19:37:32 +0100255
256 return 0;
Marek Vasut7c879422009-07-23 16:02:08 +0200257err4:
Marek Vašut4e9687d2008-09-11 19:37:32 +0100258 kfree(prop);
Marek Vasut7c879422009-07-23 16:02:08 +0200259err3:
260 if (gpio_is_valid(pdata->charge_gpio))
261 free_irq(gpio_to_irq(pdata->charge_gpio), dev);
Marek Vašut4e9687d2008-09-11 19:37:32 +0100262err2:
Marek Vasut7c879422009-07-23 16:02:08 +0200263 if (gpio_is_valid(pdata->charge_gpio))
264 gpio_free(pdata->charge_gpio);
Marek Vašut4e9687d2008-09-11 19:37:32 +0100265err:
266 return ret;
267}
268
Bill Pemberton415ec692012-11-19 13:26:07 -0500269static int wm97xx_bat_remove(struct platform_device *dev)
Marek Vašut4e9687d2008-09-11 19:37:32 +0100270{
Marek Vasutb8bdc1d2009-08-31 06:20:12 +0200271 struct wm97xx_pdata *wmdata = dev->dev.platform_data;
272 struct wm97xx_batt_pdata *pdata = wmdata->batt_pdata;
273
Marek Vasut7c879422009-07-23 16:02:08 +0200274 if (pdata && gpio_is_valid(pdata->charge_gpio)) {
275 free_irq(gpio_to_irq(pdata->charge_gpio), dev);
Marek Vašut4e9687d2008-09-11 19:37:32 +0100276 gpio_free(pdata->charge_gpio);
Marek Vasut7c879422009-07-23 16:02:08 +0200277 }
Tejun Heobc51e7f2010-12-11 17:51:45 +0100278 cancel_work_sync(&bat_work);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100279 power_supply_unregister(bat_psy);
Marek Vašut4e9687d2008-09-11 19:37:32 +0100280 kfree(prop);
281 return 0;
282}
283
284static struct platform_driver wm97xx_bat_driver = {
285 .driver = {
286 .name = "wm97xx-battery",
Marek Vasut83a8af02009-08-22 00:36:43 +0200287#ifdef CONFIG_PM
288 .pm = &wm97xx_bat_pm_ops,
289#endif
Marek Vašut4e9687d2008-09-11 19:37:32 +0100290 },
291 .probe = wm97xx_bat_probe,
Bill Pemberton28ea73f2012-11-19 13:20:40 -0500292 .remove = wm97xx_bat_remove,
Marek Vašut4e9687d2008-09-11 19:37:32 +0100293};
294
Axel Lin300bac72011-11-26 12:01:10 +0800295module_platform_driver(wm97xx_bat_driver);
Marek Vašut4e9687d2008-09-11 19:37:32 +0100296
297MODULE_LICENSE("GPL");
298MODULE_AUTHOR("Marek Vasut <marek.vasut@gmail.com>");
299MODULE_DESCRIPTION("WM97xx battery driver");