blob: 9c65f134d4474d843ffa907051191e2d8c484a24 [file] [log] [blame]
MyungJoo Ham359ab9f2011-01-14 14:46:11 +09001/*
2 * Fuel gauge driver for Maxim 17042 / 8966 / 8997
3 * Note that Maxim 8966 and 8997 are mfd and this is its subdevice.
4 *
5 * Copyright (C) 2011 Samsung Electronics
6 * MyungJoo Ham <myungjoo.ham@samsung.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 * This driver is based on max17040_battery.c
23 */
24
25#include <linux/init.h>
Paul Gortmaker7e6d62d2011-07-03 15:28:29 -040026#include <linux/module.h>
MyungJoo Ham359ab9f2011-01-14 14:46:11 +090027#include <linux/slab.h>
28#include <linux/i2c.h>
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +040029#include <linux/delay.h>
Ramakrishna Pallalae5f38722012-01-24 09:26:06 -080030#include <linux/interrupt.h>
Ramakrishna Pallala48bc1772012-03-27 02:23:40 +053031#include <linux/pm.h>
MyungJoo Ham359ab9f2011-01-14 14:46:11 +090032#include <linux/mod_devicetable.h>
33#include <linux/power_supply.h>
34#include <linux/power/max17042_battery.h>
Karol Lewandowski38322462012-02-22 19:06:22 +010035#include <linux/of.h>
Jonghwa Lee39e72132013-10-25 13:55:02 +090036#include <linux/regmap.h>
MyungJoo Ham359ab9f2011-01-14 14:46:11 +090037
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +040038/* Status register bits */
39#define STATUS_POR_BIT (1 << 1)
40#define STATUS_BST_BIT (1 << 3)
41#define STATUS_VMN_BIT (1 << 8)
42#define STATUS_TMN_BIT (1 << 9)
43#define STATUS_SMN_BIT (1 << 10)
44#define STATUS_BI_BIT (1 << 11)
45#define STATUS_VMX_BIT (1 << 12)
46#define STATUS_TMX_BIT (1 << 13)
47#define STATUS_SMX_BIT (1 << 14)
48#define STATUS_BR_BIT (1 << 15)
49
Ramakrishna Pallalae5f38722012-01-24 09:26:06 -080050/* Interrupt mask bits */
51#define CONFIG_ALRT_BIT_ENBL (1 << 2)
Ramakrishna Pallala5cdd4d72012-03-21 03:03:16 +053052#define STATUS_INTR_SOCMIN_BIT (1 << 10)
53#define STATUS_INTR_SOCMAX_BIT (1 << 14)
Ramakrishna Pallalae5f38722012-01-24 09:26:06 -080054
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +040055#define VFSOC0_LOCK 0x0000
56#define VFSOC0_UNLOCK 0x0080
57#define MODEL_UNLOCK1 0X0059
58#define MODEL_UNLOCK2 0X00C4
59#define MODEL_LOCK1 0X0000
60#define MODEL_LOCK2 0X0000
61
62#define dQ_ACC_DIV 0x4
63#define dP_ACC_100 0x1900
64#define dP_ACC_200 0x3200
65
Ramakrishna Pallalaedd4ab02015-05-24 09:11:58 +053066#define MAX17042_VMAX_TOLERANCE 50 /* 50 mV */
67
MyungJoo Ham359ab9f2011-01-14 14:46:11 +090068struct max17042_chip {
69 struct i2c_client *client;
Jonghwa Lee39e72132013-10-25 13:55:02 +090070 struct regmap *regmap;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +010071 struct power_supply *battery;
Ramakrishna Pallala9a8422d2012-05-05 14:34:26 +053072 enum max170xx_chip_type chip_type;
MyungJoo Ham359ab9f2011-01-14 14:46:11 +090073 struct max17042_platform_data *pdata;
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +040074 struct work_struct work;
75 int init_complete;
MyungJoo Ham359ab9f2011-01-14 14:46:11 +090076};
77
MyungJoo Ham359ab9f2011-01-14 14:46:11 +090078static enum power_supply_property max17042_battery_props[] = {
Donggeun Kim086ef502011-06-30 18:07:41 +090079 POWER_SUPPLY_PROP_PRESENT,
80 POWER_SUPPLY_PROP_CYCLE_COUNT,
81 POWER_SUPPLY_PROP_VOLTAGE_MAX,
82 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
MyungJoo Ham359ab9f2011-01-14 14:46:11 +090083 POWER_SUPPLY_PROP_VOLTAGE_NOW,
84 POWER_SUPPLY_PROP_VOLTAGE_AVG,
Ramakrishna Pallalaa2ebfe22012-04-10 16:21:20 +053085 POWER_SUPPLY_PROP_VOLTAGE_OCV,
MyungJoo Ham359ab9f2011-01-14 14:46:11 +090086 POWER_SUPPLY_PROP_CAPACITY,
Donggeun Kim086ef502011-06-30 18:07:41 +090087 POWER_SUPPLY_PROP_CHARGE_FULL,
Ramakrishna Pallala5fc55bc2012-05-07 10:25:58 +053088 POWER_SUPPLY_PROP_CHARGE_COUNTER,
Donggeun Kim086ef502011-06-30 18:07:41 +090089 POWER_SUPPLY_PROP_TEMP,
Ramakrishna Pallalaedd4ab02015-05-24 09:11:58 +053090 POWER_SUPPLY_PROP_TEMP_ALERT_MIN,
91 POWER_SUPPLY_PROP_TEMP_ALERT_MAX,
92 POWER_SUPPLY_PROP_TEMP_MIN,
93 POWER_SUPPLY_PROP_TEMP_MAX,
94 POWER_SUPPLY_PROP_HEALTH,
Donggeun Kim086ef502011-06-30 18:07:41 +090095 POWER_SUPPLY_PROP_CURRENT_NOW,
96 POWER_SUPPLY_PROP_CURRENT_AVG,
MyungJoo Ham359ab9f2011-01-14 14:46:11 +090097};
98
Ramakrishna Pallalaedd4ab02015-05-24 09:11:58 +053099static int max17042_get_temperature(struct max17042_chip *chip, int *temp)
100{
101 int ret;
102 u32 data;
103 struct regmap *map = chip->regmap;
104
105 ret = regmap_read(map, MAX17042_TEMP, &data);
106 if (ret < 0)
107 return ret;
108
109 *temp = data;
110 /* The value is signed. */
111 if (*temp & 0x8000) {
112 *temp = (0x7fff & ~*temp) + 1;
113 *temp *= -1;
114 }
115
116 /* The value is converted into deci-centigrade scale */
117 /* Units of LSB = 1 / 256 degree Celsius */
118 *temp = *temp * 10 / 256;
119 return 0;
120}
121
122static int max17042_get_battery_health(struct max17042_chip *chip, int *health)
123{
124 int temp, vavg, vbatt, ret;
125 u32 val;
126
127 ret = regmap_read(chip->regmap, MAX17042_AvgVCELL, &val);
128 if (ret < 0)
129 goto health_error;
130
131 /* bits [0-3] unused */
132 vavg = val * 625 / 8;
133 /* Convert to millivolts */
134 vavg /= 1000;
135
136 ret = regmap_read(chip->regmap, MAX17042_VCELL, &val);
137 if (ret < 0)
138 goto health_error;
139
140 /* bits [0-3] unused */
141 vbatt = val * 625 / 8;
142 /* Convert to millivolts */
143 vbatt /= 1000;
144
145 if (vavg < chip->pdata->vmin) {
146 *health = POWER_SUPPLY_HEALTH_DEAD;
147 goto out;
148 }
149
150 if (vbatt > chip->pdata->vmax + MAX17042_VMAX_TOLERANCE) {
151 *health = POWER_SUPPLY_HEALTH_OVERVOLTAGE;
152 goto out;
153 }
154
155 ret = max17042_get_temperature(chip, &temp);
156 if (ret < 0)
157 goto health_error;
158
159 if (temp <= chip->pdata->temp_min) {
160 *health = POWER_SUPPLY_HEALTH_COLD;
161 goto out;
162 }
163
164 if (temp >= chip->pdata->temp_max) {
165 *health = POWER_SUPPLY_HEALTH_OVERHEAT;
166 goto out;
167 }
168
169 *health = POWER_SUPPLY_HEALTH_GOOD;
170
171out:
172 return 0;
173
174health_error:
175 return ret;
176}
177
MyungJoo Ham359ab9f2011-01-14 14:46:11 +0900178static int max17042_get_property(struct power_supply *psy,
179 enum power_supply_property psp,
180 union power_supply_propval *val)
181{
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100182 struct max17042_chip *chip = power_supply_get_drvdata(psy);
Jonghwa Lee39e72132013-10-25 13:55:02 +0900183 struct regmap *map = chip->regmap;
Ramakrishna Pallala60a1f6e2011-11-26 04:11:15 +0400184 int ret;
Jonghwa Lee39e72132013-10-25 13:55:02 +0900185 u32 data;
MyungJoo Ham359ab9f2011-01-14 14:46:11 +0900186
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400187 if (!chip->init_complete)
188 return -EAGAIN;
189
MyungJoo Ham359ab9f2011-01-14 14:46:11 +0900190 switch (psp) {
Donggeun Kim086ef502011-06-30 18:07:41 +0900191 case POWER_SUPPLY_PROP_PRESENT:
Jonghwa Lee39e72132013-10-25 13:55:02 +0900192 ret = regmap_read(map, MAX17042_STATUS, &data);
Ramakrishna Pallala60a1f6e2011-11-26 04:11:15 +0400193 if (ret < 0)
194 return ret;
195
Jonghwa Lee39e72132013-10-25 13:55:02 +0900196 if (data & MAX17042_STATUS_BattAbsent)
Donggeun Kim086ef502011-06-30 18:07:41 +0900197 val->intval = 0;
198 else
199 val->intval = 1;
200 break;
201 case POWER_SUPPLY_PROP_CYCLE_COUNT:
Jonghwa Lee39e72132013-10-25 13:55:02 +0900202 ret = regmap_read(map, MAX17042_Cycles, &data);
Ramakrishna Pallala60a1f6e2011-11-26 04:11:15 +0400203 if (ret < 0)
204 return ret;
205
Jonghwa Lee39e72132013-10-25 13:55:02 +0900206 val->intval = data;
Donggeun Kim086ef502011-06-30 18:07:41 +0900207 break;
208 case POWER_SUPPLY_PROP_VOLTAGE_MAX:
Jonghwa Lee39e72132013-10-25 13:55:02 +0900209 ret = regmap_read(map, MAX17042_MinMaxVolt, &data);
Ramakrishna Pallala60a1f6e2011-11-26 04:11:15 +0400210 if (ret < 0)
211 return ret;
212
Jonghwa Lee39e72132013-10-25 13:55:02 +0900213 val->intval = data >> 8;
Donggeun Kim086ef502011-06-30 18:07:41 +0900214 val->intval *= 20000; /* Units of LSB = 20mV */
215 break;
216 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
Beomho Seo709c2c72015-04-03 17:26:08 +0900217 if (chip->chip_type == MAXIM_DEVICE_TYPE_MAX17042)
Jonghwa Lee39e72132013-10-25 13:55:02 +0900218 ret = regmap_read(map, MAX17042_V_empty, &data);
Ramakrishna Pallala9a8422d2012-05-05 14:34:26 +0530219 else
Jonghwa Lee39e72132013-10-25 13:55:02 +0900220 ret = regmap_read(map, MAX17047_V_empty, &data);
Ramakrishna Pallala60a1f6e2011-11-26 04:11:15 +0400221 if (ret < 0)
222 return ret;
223
Jonghwa Lee39e72132013-10-25 13:55:02 +0900224 val->intval = data >> 7;
Donggeun Kim086ef502011-06-30 18:07:41 +0900225 val->intval *= 10000; /* Units of LSB = 10mV */
226 break;
MyungJoo Ham359ab9f2011-01-14 14:46:11 +0900227 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
Jonghwa Lee39e72132013-10-25 13:55:02 +0900228 ret = regmap_read(map, MAX17042_VCELL, &data);
Ramakrishna Pallala60a1f6e2011-11-26 04:11:15 +0400229 if (ret < 0)
230 return ret;
231
Jonghwa Lee39e72132013-10-25 13:55:02 +0900232 val->intval = data * 625 / 8;
MyungJoo Ham359ab9f2011-01-14 14:46:11 +0900233 break;
234 case POWER_SUPPLY_PROP_VOLTAGE_AVG:
Jonghwa Lee39e72132013-10-25 13:55:02 +0900235 ret = regmap_read(map, MAX17042_AvgVCELL, &data);
Ramakrishna Pallala60a1f6e2011-11-26 04:11:15 +0400236 if (ret < 0)
237 return ret;
238
Jonghwa Lee39e72132013-10-25 13:55:02 +0900239 val->intval = data * 625 / 8;
MyungJoo Ham359ab9f2011-01-14 14:46:11 +0900240 break;
Ramakrishna Pallalaa2ebfe22012-04-10 16:21:20 +0530241 case POWER_SUPPLY_PROP_VOLTAGE_OCV:
Jonghwa Lee39e72132013-10-25 13:55:02 +0900242 ret = regmap_read(map, MAX17042_OCVInternal, &data);
Ramakrishna Pallalaa2ebfe22012-04-10 16:21:20 +0530243 if (ret < 0)
244 return ret;
245
Jonghwa Lee39e72132013-10-25 13:55:02 +0900246 val->intval = data * 625 / 8;
Ramakrishna Pallalaa2ebfe22012-04-10 16:21:20 +0530247 break;
MyungJoo Ham359ab9f2011-01-14 14:46:11 +0900248 case POWER_SUPPLY_PROP_CAPACITY:
Jonghwa Lee39e72132013-10-25 13:55:02 +0900249 ret = regmap_read(map, MAX17042_RepSOC, &data);
Ramakrishna Pallala60a1f6e2011-11-26 04:11:15 +0400250 if (ret < 0)
251 return ret;
252
Jonghwa Lee39e72132013-10-25 13:55:02 +0900253 val->intval = data >> 8;
MyungJoo Ham359ab9f2011-01-14 14:46:11 +0900254 break;
Donggeun Kim086ef502011-06-30 18:07:41 +0900255 case POWER_SUPPLY_PROP_CHARGE_FULL:
Jonghwa Lee39e72132013-10-25 13:55:02 +0900256 ret = regmap_read(map, MAX17042_FullCAP, &data);
Ramakrishna Pallala60a1f6e2011-11-26 04:11:15 +0400257 if (ret < 0)
258 return ret;
259
Jonghwa Lee39e72132013-10-25 13:55:02 +0900260 val->intval = data * 1000 / 2;
Donggeun Kim086ef502011-06-30 18:07:41 +0900261 break;
Ramakrishna Pallala5fc55bc2012-05-07 10:25:58 +0530262 case POWER_SUPPLY_PROP_CHARGE_COUNTER:
Jonghwa Lee39e72132013-10-25 13:55:02 +0900263 ret = regmap_read(map, MAX17042_QH, &data);
Ramakrishna Pallala5fc55bc2012-05-07 10:25:58 +0530264 if (ret < 0)
265 return ret;
266
Jonghwa Lee39e72132013-10-25 13:55:02 +0900267 val->intval = data * 1000 / 2;
Ramakrishna Pallala5fc55bc2012-05-07 10:25:58 +0530268 break;
Donggeun Kim086ef502011-06-30 18:07:41 +0900269 case POWER_SUPPLY_PROP_TEMP:
Ramakrishna Pallalaedd4ab02015-05-24 09:11:58 +0530270 ret = max17042_get_temperature(chip, &val->intval);
Ramakrishna Pallala60a1f6e2011-11-26 04:11:15 +0400271 if (ret < 0)
272 return ret;
Ramakrishna Pallalaedd4ab02015-05-24 09:11:58 +0530273 break;
274 case POWER_SUPPLY_PROP_TEMP_ALERT_MIN:
275 ret = regmap_read(map, MAX17042_TALRT_Th, &data);
276 if (ret < 0)
277 return ret;
278 /* LSB is Alert Minimum. In deci-centigrade */
279 val->intval = (data & 0xff) * 10;
280 break;
281 case POWER_SUPPLY_PROP_TEMP_ALERT_MAX:
282 ret = regmap_read(map, MAX17042_TALRT_Th, &data);
283 if (ret < 0)
284 return ret;
285 /* MSB is Alert Maximum. In deci-centigrade */
286 val->intval = (data >> 8) * 10;
287 break;
288 case POWER_SUPPLY_PROP_TEMP_MIN:
289 val->intval = chip->pdata->temp_min;
290 break;
291 case POWER_SUPPLY_PROP_TEMP_MAX:
292 val->intval = chip->pdata->temp_max;
293 break;
294 case POWER_SUPPLY_PROP_HEALTH:
295 ret = max17042_get_battery_health(chip, &val->intval);
296 if (ret < 0)
297 return ret;
Donggeun Kim086ef502011-06-30 18:07:41 +0900298 break;
299 case POWER_SUPPLY_PROP_CURRENT_NOW:
300 if (chip->pdata->enable_current_sense) {
Jonghwa Lee39e72132013-10-25 13:55:02 +0900301 ret = regmap_read(map, MAX17042_Current, &data);
Ramakrishna Pallala60a1f6e2011-11-26 04:11:15 +0400302 if (ret < 0)
303 return ret;
304
Jonghwa Lee39e72132013-10-25 13:55:02 +0900305 val->intval = data;
Donggeun Kim086ef502011-06-30 18:07:41 +0900306 if (val->intval & 0x8000) {
307 /* Negative */
308 val->intval = ~val->intval & 0x7fff;
309 val->intval++;
310 val->intval *= -1;
311 }
Philip Rakity91d8b0d2011-08-12 21:19:57 -0700312 val->intval *= 1562500 / chip->pdata->r_sns;
Donggeun Kim086ef502011-06-30 18:07:41 +0900313 } else {
314 return -EINVAL;
315 }
316 break;
317 case POWER_SUPPLY_PROP_CURRENT_AVG:
318 if (chip->pdata->enable_current_sense) {
Jonghwa Lee39e72132013-10-25 13:55:02 +0900319 ret = regmap_read(map, MAX17042_AvgCurrent, &data);
Ramakrishna Pallala60a1f6e2011-11-26 04:11:15 +0400320 if (ret < 0)
321 return ret;
322
Jonghwa Lee39e72132013-10-25 13:55:02 +0900323 val->intval = data;
Donggeun Kim086ef502011-06-30 18:07:41 +0900324 if (val->intval & 0x8000) {
325 /* Negative */
326 val->intval = ~val->intval & 0x7fff;
327 val->intval++;
328 val->intval *= -1;
329 }
330 val->intval *= 1562500 / chip->pdata->r_sns;
331 } else {
332 return -EINVAL;
333 }
334 break;
MyungJoo Ham359ab9f2011-01-14 14:46:11 +0900335 default:
336 return -EINVAL;
337 }
338 return 0;
339}
340
Ramakrishna Pallalaedd4ab02015-05-24 09:11:58 +0530341static int max17042_set_property(struct power_supply *psy,
342 enum power_supply_property psp,
343 const union power_supply_propval *val)
344{
345 struct max17042_chip *chip = power_supply_get_drvdata(psy);
346 struct regmap *map = chip->regmap;
347 int ret = 0;
348 u32 data;
349 int8_t temp;
350
351 switch (psp) {
352 case POWER_SUPPLY_PROP_TEMP_ALERT_MIN:
353 ret = regmap_read(map, MAX17042_TALRT_Th, &data);
354 if (ret < 0)
355 return ret;
356
357 /* Input in deci-centigrade, convert to centigrade */
358 temp = val->intval / 10;
359 /* force min < max */
360 if (temp >= (int8_t)(data >> 8))
361 temp = (int8_t)(data >> 8) - 1;
362 /* Write both MAX and MIN ALERT */
363 data = (data & 0xff00) + temp;
364 ret = regmap_write(map, MAX17042_TALRT_Th, data);
365 break;
366 case POWER_SUPPLY_PROP_TEMP_ALERT_MAX:
367 ret = regmap_read(map, MAX17042_TALRT_Th, &data);
368 if (ret < 0)
369 return ret;
370
371 /* Input in Deci-Centigrade, convert to centigrade */
372 temp = val->intval / 10;
373 /* force max > min */
374 if (temp <= (int8_t)(data & 0xff))
375 temp = (int8_t)(data & 0xff) + 1;
376 /* Write both MAX and MIN ALERT */
377 data = (data & 0xff) + (temp << 8);
378 ret = regmap_write(map, MAX17042_TALRT_Th, data);
379 break;
380 default:
381 ret = -EINVAL;
382 }
383
384 return ret;
385}
386
387static int max17042_property_is_writeable(struct power_supply *psy,
388 enum power_supply_property psp)
389{
390 int ret;
391
392 switch (psp) {
393 case POWER_SUPPLY_PROP_TEMP_ALERT_MIN:
394 case POWER_SUPPLY_PROP_TEMP_ALERT_MAX:
395 ret = 1;
396 break;
397 default:
398 ret = 0;
399 }
400
401 return ret;
402}
403
Jonghwa Lee39e72132013-10-25 13:55:02 +0900404static int max17042_write_verify_reg(struct regmap *map, u8 reg, u32 value)
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400405{
406 int retries = 8;
407 int ret;
Jonghwa Lee39e72132013-10-25 13:55:02 +0900408 u32 read_value;
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400409
410 do {
Jonghwa Lee39e72132013-10-25 13:55:02 +0900411 ret = regmap_write(map, reg, value);
412 regmap_read(map, reg, &read_value);
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400413 if (read_value != value) {
414 ret = -EIO;
415 retries--;
416 }
417 } while (retries && read_value != value);
418
419 if (ret < 0)
Jonghwa Lee39e72132013-10-25 13:55:02 +0900420 pr_err("%s: err %d\n", __func__, ret);
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400421
422 return ret;
423}
424
Jonghwa Lee39e72132013-10-25 13:55:02 +0900425static inline void max17042_override_por(struct regmap *map,
426 u8 reg, u16 value)
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400427{
428 if (value)
Jonghwa Lee39e72132013-10-25 13:55:02 +0900429 regmap_write(map, reg, value);
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400430}
431
432static inline void max10742_unlock_model(struct max17042_chip *chip)
433{
Jonghwa Lee39e72132013-10-25 13:55:02 +0900434 struct regmap *map = chip->regmap;
Beomho Seobbaeeaa2015-04-03 17:26:09 +0900435
Jonghwa Lee39e72132013-10-25 13:55:02 +0900436 regmap_write(map, MAX17042_MLOCKReg1, MODEL_UNLOCK1);
437 regmap_write(map, MAX17042_MLOCKReg2, MODEL_UNLOCK2);
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400438}
439
440static inline void max10742_lock_model(struct max17042_chip *chip)
441{
Jonghwa Lee39e72132013-10-25 13:55:02 +0900442 struct regmap *map = chip->regmap;
443
444 regmap_write(map, MAX17042_MLOCKReg1, MODEL_LOCK1);
445 regmap_write(map, MAX17042_MLOCKReg2, MODEL_LOCK2);
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400446}
447
448static inline void max17042_write_model_data(struct max17042_chip *chip,
449 u8 addr, int size)
450{
Jonghwa Lee39e72132013-10-25 13:55:02 +0900451 struct regmap *map = chip->regmap;
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400452 int i;
Beomho Seobbaeeaa2015-04-03 17:26:09 +0900453
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400454 for (i = 0; i < size; i++)
Jonghwa Lee39e72132013-10-25 13:55:02 +0900455 regmap_write(map, addr + i,
456 chip->pdata->config_data->cell_char_tbl[i]);
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400457}
458
459static inline void max17042_read_model_data(struct max17042_chip *chip,
Jonghwa Lee39e72132013-10-25 13:55:02 +0900460 u8 addr, u32 *data, int size)
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400461{
Jonghwa Lee39e72132013-10-25 13:55:02 +0900462 struct regmap *map = chip->regmap;
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400463 int i;
464
465 for (i = 0; i < size; i++)
Jonghwa Lee39e72132013-10-25 13:55:02 +0900466 regmap_read(map, addr + i, &data[i]);
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400467}
468
469static inline int max17042_model_data_compare(struct max17042_chip *chip,
470 u16 *data1, u16 *data2, int size)
471{
472 int i;
473
474 if (memcmp(data1, data2, size)) {
475 dev_err(&chip->client->dev, "%s compare failed\n", __func__);
476 for (i = 0; i < size; i++)
477 dev_info(&chip->client->dev, "0x%x, 0x%x",
478 data1[i], data2[i]);
479 dev_info(&chip->client->dev, "\n");
480 return -EINVAL;
481 }
482 return 0;
483}
484
485static int max17042_init_model(struct max17042_chip *chip)
486{
487 int ret;
Dan Carpenter1ef3d8f2012-03-15 14:37:32 +0300488 int table_size = ARRAY_SIZE(chip->pdata->config_data->cell_char_tbl);
Jonghwa Lee39e72132013-10-25 13:55:02 +0900489 u32 *temp_data;
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400490
Dan Carpenter1ef3d8f2012-03-15 14:37:32 +0300491 temp_data = kcalloc(table_size, sizeof(*temp_data), GFP_KERNEL);
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400492 if (!temp_data)
493 return -ENOMEM;
494
495 max10742_unlock_model(chip);
496 max17042_write_model_data(chip, MAX17042_MODELChrTbl,
497 table_size);
498 max17042_read_model_data(chip, MAX17042_MODELChrTbl, temp_data,
499 table_size);
500
501 ret = max17042_model_data_compare(
502 chip,
503 chip->pdata->config_data->cell_char_tbl,
Jonghwa Lee39e72132013-10-25 13:55:02 +0900504 (u16 *)temp_data,
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400505 table_size);
506
507 max10742_lock_model(chip);
508 kfree(temp_data);
509
510 return ret;
511}
512
513static int max17042_verify_model_lock(struct max17042_chip *chip)
514{
515 int i;
Dan Carpenter1ef3d8f2012-03-15 14:37:32 +0300516 int table_size = ARRAY_SIZE(chip->pdata->config_data->cell_char_tbl);
Jonghwa Lee39e72132013-10-25 13:55:02 +0900517 u32 *temp_data;
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400518 int ret = 0;
519
Dan Carpenter1ef3d8f2012-03-15 14:37:32 +0300520 temp_data = kcalloc(table_size, sizeof(*temp_data), GFP_KERNEL);
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400521 if (!temp_data)
522 return -ENOMEM;
523
524 max17042_read_model_data(chip, MAX17042_MODELChrTbl, temp_data,
525 table_size);
526 for (i = 0; i < table_size; i++)
527 if (temp_data[i])
528 ret = -EINVAL;
529
530 kfree(temp_data);
531 return ret;
532}
533
534static void max17042_write_config_regs(struct max17042_chip *chip)
535{
536 struct max17042_config_data *config = chip->pdata->config_data;
Jonghwa Lee39e72132013-10-25 13:55:02 +0900537 struct regmap *map = chip->regmap;
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400538
Jonghwa Lee39e72132013-10-25 13:55:02 +0900539 regmap_write(map, MAX17042_CONFIG, config->config);
540 regmap_write(map, MAX17042_LearnCFG, config->learn_cfg);
541 regmap_write(map, MAX17042_FilterCFG,
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400542 config->filter_cfg);
Jonghwa Lee39e72132013-10-25 13:55:02 +0900543 regmap_write(map, MAX17042_RelaxCFG, config->relax_cfg);
Beomho Seo709c2c72015-04-03 17:26:08 +0900544 if (chip->chip_type == MAXIM_DEVICE_TYPE_MAX17047 ||
545 chip->chip_type == MAXIM_DEVICE_TYPE_MAX17050)
Jonghwa Lee39e72132013-10-25 13:55:02 +0900546 regmap_write(map, MAX17047_FullSOCThr,
Ramakrishna Pallala9a8422d2012-05-05 14:34:26 +0530547 config->full_soc_thresh);
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400548}
549
550static void max17042_write_custom_regs(struct max17042_chip *chip)
551{
552 struct max17042_config_data *config = chip->pdata->config_data;
Jonghwa Lee39e72132013-10-25 13:55:02 +0900553 struct regmap *map = chip->regmap;
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400554
Jonghwa Lee39e72132013-10-25 13:55:02 +0900555 max17042_write_verify_reg(map, MAX17042_RCOMP0, config->rcomp0);
556 max17042_write_verify_reg(map, MAX17042_TempCo, config->tcompc0);
557 max17042_write_verify_reg(map, MAX17042_ICHGTerm, config->ichgt_term);
Beomho Seo709c2c72015-04-03 17:26:08 +0900558 if (chip->chip_type == MAXIM_DEVICE_TYPE_MAX17042) {
Jonghwa Lee39e72132013-10-25 13:55:02 +0900559 regmap_write(map, MAX17042_EmptyTempCo, config->empty_tempco);
560 max17042_write_verify_reg(map, MAX17042_K_empty0,
Ramakrishna Pallala9a8422d2012-05-05 14:34:26 +0530561 config->kempty0);
562 } else {
Jonghwa Lee39e72132013-10-25 13:55:02 +0900563 max17042_write_verify_reg(map, MAX17047_QRTbl00,
Ramakrishna Pallala9a8422d2012-05-05 14:34:26 +0530564 config->qrtbl00);
Jonghwa Lee39e72132013-10-25 13:55:02 +0900565 max17042_write_verify_reg(map, MAX17047_QRTbl10,
Ramakrishna Pallala9a8422d2012-05-05 14:34:26 +0530566 config->qrtbl10);
Jonghwa Lee39e72132013-10-25 13:55:02 +0900567 max17042_write_verify_reg(map, MAX17047_QRTbl20,
Ramakrishna Pallala9a8422d2012-05-05 14:34:26 +0530568 config->qrtbl20);
Jonghwa Lee39e72132013-10-25 13:55:02 +0900569 max17042_write_verify_reg(map, MAX17047_QRTbl30,
Ramakrishna Pallala9a8422d2012-05-05 14:34:26 +0530570 config->qrtbl30);
571 }
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400572}
573
574static void max17042_update_capacity_regs(struct max17042_chip *chip)
575{
576 struct max17042_config_data *config = chip->pdata->config_data;
Jonghwa Lee39e72132013-10-25 13:55:02 +0900577 struct regmap *map = chip->regmap;
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400578
Jonghwa Lee39e72132013-10-25 13:55:02 +0900579 max17042_write_verify_reg(map, MAX17042_FullCAP,
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400580 config->fullcap);
Jonghwa Lee39e72132013-10-25 13:55:02 +0900581 regmap_write(map, MAX17042_DesignCap, config->design_cap);
582 max17042_write_verify_reg(map, MAX17042_FullCAPNom,
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400583 config->fullcapnom);
584}
585
586static void max17042_reset_vfsoc0_reg(struct max17042_chip *chip)
587{
Jonghwa Lee39e72132013-10-25 13:55:02 +0900588 unsigned int vfSoc;
589 struct regmap *map = chip->regmap;
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400590
Jonghwa Lee39e72132013-10-25 13:55:02 +0900591 regmap_read(map, MAX17042_VFSOC, &vfSoc);
592 regmap_write(map, MAX17042_VFSOC0Enable, VFSOC0_UNLOCK);
593 max17042_write_verify_reg(map, MAX17042_VFSOC0, vfSoc);
594 regmap_write(map, MAX17042_VFSOC0Enable, VFSOC0_LOCK);
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400595}
596
597static void max17042_load_new_capacity_params(struct max17042_chip *chip)
598{
Jonghwa Lee39e72132013-10-25 13:55:02 +0900599 u32 full_cap0, rep_cap, dq_acc, vfSoc;
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400600 u32 rem_cap;
601
602 struct max17042_config_data *config = chip->pdata->config_data;
Jonghwa Lee39e72132013-10-25 13:55:02 +0900603 struct regmap *map = chip->regmap;
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400604
Jonghwa Lee39e72132013-10-25 13:55:02 +0900605 regmap_read(map, MAX17042_FullCAP0, &full_cap0);
606 regmap_read(map, MAX17042_VFSOC, &vfSoc);
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400607
608 /* fg_vfSoc needs to shifted by 8 bits to get the
609 * perc in 1% accuracy, to get the right rem_cap multiply
610 * full_cap0, fg_vfSoc and devide by 100
611 */
612 rem_cap = ((vfSoc >> 8) * full_cap0) / 100;
Jonghwa Lee39e72132013-10-25 13:55:02 +0900613 max17042_write_verify_reg(map, MAX17042_RemCap, rem_cap);
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400614
Jonghwa Lee39e72132013-10-25 13:55:02 +0900615 rep_cap = rem_cap;
616 max17042_write_verify_reg(map, MAX17042_RepCap, rep_cap);
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400617
618 /* Write dQ_acc to 200% of Capacity and dP_acc to 200% */
619 dq_acc = config->fullcap / dQ_ACC_DIV;
Jonghwa Lee39e72132013-10-25 13:55:02 +0900620 max17042_write_verify_reg(map, MAX17042_dQacc, dq_acc);
621 max17042_write_verify_reg(map, MAX17042_dPacc, dP_ACC_200);
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400622
Jonghwa Lee39e72132013-10-25 13:55:02 +0900623 max17042_write_verify_reg(map, MAX17042_FullCAP,
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400624 config->fullcap);
Jonghwa Lee39e72132013-10-25 13:55:02 +0900625 regmap_write(map, MAX17042_DesignCap,
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400626 config->design_cap);
Jonghwa Lee39e72132013-10-25 13:55:02 +0900627 max17042_write_verify_reg(map, MAX17042_FullCAPNom,
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400628 config->fullcapnom);
Ramakrishna Pallala9a8422d2012-05-05 14:34:26 +0530629 /* Update SOC register with new SOC */
Jonghwa Lee39e72132013-10-25 13:55:02 +0900630 regmap_write(map, MAX17042_RepSOC, vfSoc);
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400631}
632
633/*
634 * Block write all the override values coming from platform data.
635 * This function MUST be called before the POR initialization proceedure
636 * specified by maxim.
637 */
638static inline void max17042_override_por_values(struct max17042_chip *chip)
639{
Jonghwa Lee39e72132013-10-25 13:55:02 +0900640 struct regmap *map = chip->regmap;
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400641 struct max17042_config_data *config = chip->pdata->config_data;
642
Jonghwa Lee39e72132013-10-25 13:55:02 +0900643 max17042_override_por(map, MAX17042_TGAIN, config->tgain);
644 max17042_override_por(map, MAx17042_TOFF, config->toff);
645 max17042_override_por(map, MAX17042_CGAIN, config->cgain);
646 max17042_override_por(map, MAX17042_COFF, config->coff);
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400647
Jonghwa Lee39e72132013-10-25 13:55:02 +0900648 max17042_override_por(map, MAX17042_VALRT_Th, config->valrt_thresh);
649 max17042_override_por(map, MAX17042_TALRT_Th, config->talrt_thresh);
650 max17042_override_por(map, MAX17042_SALRT_Th,
651 config->soc_alrt_thresh);
652 max17042_override_por(map, MAX17042_CONFIG, config->config);
653 max17042_override_por(map, MAX17042_SHDNTIMER, config->shdntimer);
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400654
Jonghwa Lee39e72132013-10-25 13:55:02 +0900655 max17042_override_por(map, MAX17042_DesignCap, config->design_cap);
656 max17042_override_por(map, MAX17042_ICHGTerm, config->ichgt_term);
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400657
Jonghwa Lee39e72132013-10-25 13:55:02 +0900658 max17042_override_por(map, MAX17042_AtRate, config->at_rate);
659 max17042_override_por(map, MAX17042_LearnCFG, config->learn_cfg);
660 max17042_override_por(map, MAX17042_FilterCFG, config->filter_cfg);
661 max17042_override_por(map, MAX17042_RelaxCFG, config->relax_cfg);
662 max17042_override_por(map, MAX17042_MiscCFG, config->misc_cfg);
663 max17042_override_por(map, MAX17042_MaskSOC, config->masksoc);
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400664
Jonghwa Lee39e72132013-10-25 13:55:02 +0900665 max17042_override_por(map, MAX17042_FullCAP, config->fullcap);
666 max17042_override_por(map, MAX17042_FullCAPNom, config->fullcapnom);
Beomho Seo709c2c72015-04-03 17:26:08 +0900667 if (chip->chip_type == MAXIM_DEVICE_TYPE_MAX17042)
Jonghwa Lee39e72132013-10-25 13:55:02 +0900668 max17042_override_por(map, MAX17042_SOC_empty,
Ramakrishna Pallala9a8422d2012-05-05 14:34:26 +0530669 config->socempty);
Jonghwa Lee39e72132013-10-25 13:55:02 +0900670 max17042_override_por(map, MAX17042_LAvg_empty, config->lavg_empty);
671 max17042_override_por(map, MAX17042_dQacc, config->dqacc);
672 max17042_override_por(map, MAX17042_dPacc, config->dpacc);
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400673
Beomho Seo709c2c72015-04-03 17:26:08 +0900674 if (chip->chip_type == MAXIM_DEVICE_TYPE_MAX17042)
Jonghwa Lee39e72132013-10-25 13:55:02 +0900675 max17042_override_por(map, MAX17042_V_empty, config->vempty);
Ramakrishna Pallala9a8422d2012-05-05 14:34:26 +0530676 else
Jonghwa Lee39e72132013-10-25 13:55:02 +0900677 max17042_override_por(map, MAX17047_V_empty, config->vempty);
678 max17042_override_por(map, MAX17042_TempNom, config->temp_nom);
679 max17042_override_por(map, MAX17042_TempLim, config->temp_lim);
680 max17042_override_por(map, MAX17042_FCTC, config->fctc);
681 max17042_override_por(map, MAX17042_RCOMP0, config->rcomp0);
682 max17042_override_por(map, MAX17042_TempCo, config->tcompc0);
Ramakrishna Pallala9a8422d2012-05-05 14:34:26 +0530683 if (chip->chip_type) {
Jonghwa Lee39e72132013-10-25 13:55:02 +0900684 max17042_override_por(map, MAX17042_EmptyTempCo,
685 config->empty_tempco);
686 max17042_override_por(map, MAX17042_K_empty0,
687 config->kempty0);
Ramakrishna Pallala9a8422d2012-05-05 14:34:26 +0530688 }
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400689}
690
691static int max17042_init_chip(struct max17042_chip *chip)
692{
Jonghwa Lee39e72132013-10-25 13:55:02 +0900693 struct regmap *map = chip->regmap;
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400694 int ret;
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400695
696 max17042_override_por_values(chip);
697 /* After Power up, the MAX17042 requires 500mS in order
698 * to perform signal debouncing and initial SOC reporting
699 */
700 msleep(500);
701
702 /* Initialize configaration */
703 max17042_write_config_regs(chip);
704
705 /* write cell characterization data */
706 ret = max17042_init_model(chip);
707 if (ret) {
708 dev_err(&chip->client->dev, "%s init failed\n",
709 __func__);
710 return -EIO;
711 }
Alan Coxa879f192012-11-18 14:59:47 -0800712
713 ret = max17042_verify_model_lock(chip);
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400714 if (ret) {
715 dev_err(&chip->client->dev, "%s lock verify failed\n",
716 __func__);
717 return -EIO;
718 }
719 /* write custom parameters */
720 max17042_write_custom_regs(chip);
721
722 /* update capacity params */
723 max17042_update_capacity_regs(chip);
724
725 /* delay must be atleast 350mS to allow VFSOC
726 * to be calculated from the new configuration
727 */
728 msleep(350);
729
730 /* reset vfsoc0 reg */
731 max17042_reset_vfsoc0_reg(chip);
732
733 /* load new capacity params */
734 max17042_load_new_capacity_params(chip);
735
736 /* Init complete, Clear the POR bit */
Krzysztof Kozlowskibc352682015-02-24 10:54:47 +0100737 regmap_update_bits(map, MAX17042_STATUS, STATUS_POR_BIT, 0x0);
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400738 return 0;
739}
740
Ramakrishna Pallalae5f38722012-01-24 09:26:06 -0800741static void max17042_set_soc_threshold(struct max17042_chip *chip, u16 off)
742{
Jonghwa Lee39e72132013-10-25 13:55:02 +0900743 struct regmap *map = chip->regmap;
744 u32 soc, soc_tr;
Ramakrishna Pallalae5f38722012-01-24 09:26:06 -0800745
746 /* program interrupt thesholds such that we should
747 * get interrupt for every 'off' perc change in the soc
748 */
Jonghwa Lee39e72132013-10-25 13:55:02 +0900749 regmap_read(map, MAX17042_RepSOC, &soc);
750 soc >>= 8;
Ramakrishna Pallalae5f38722012-01-24 09:26:06 -0800751 soc_tr = (soc + off) << 8;
752 soc_tr |= (soc - off);
Jonghwa Lee39e72132013-10-25 13:55:02 +0900753 regmap_write(map, MAX17042_SALRT_Th, soc_tr);
Ramakrishna Pallalae5f38722012-01-24 09:26:06 -0800754}
755
Ramakrishna Pallalae5f38722012-01-24 09:26:06 -0800756static irqreturn_t max17042_thread_handler(int id, void *dev)
757{
758 struct max17042_chip *chip = dev;
Jonghwa Lee39e72132013-10-25 13:55:02 +0900759 u32 val;
Ramakrishna Pallalae5f38722012-01-24 09:26:06 -0800760
Jonghwa Lee39e72132013-10-25 13:55:02 +0900761 regmap_read(chip->regmap, MAX17042_STATUS, &val);
Ramakrishna Pallala5cdd4d72012-03-21 03:03:16 +0530762 if ((val & STATUS_INTR_SOCMIN_BIT) ||
763 (val & STATUS_INTR_SOCMAX_BIT)) {
Ramakrishna Pallalae5f38722012-01-24 09:26:06 -0800764 dev_info(&chip->client->dev, "SOC threshold INTR\n");
765 max17042_set_soc_threshold(chip, 1);
766 }
767
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100768 power_supply_changed(chip->battery);
Ramakrishna Pallalae5f38722012-01-24 09:26:06 -0800769 return IRQ_HANDLED;
770}
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400771
772static void max17042_init_worker(struct work_struct *work)
773{
774 struct max17042_chip *chip = container_of(work,
775 struct max17042_chip, work);
776 int ret;
777
778 /* Initialize registers according to values from the platform data */
779 if (chip->pdata->enable_por_init && chip->pdata->config_data) {
780 ret = max17042_init_chip(chip);
781 if (ret)
782 return;
783 }
784
785 chip->init_complete = 1;
786}
787
Karol Lewandowski38322462012-02-22 19:06:22 +0100788#ifdef CONFIG_OF
789static struct max17042_platform_data *
790max17042_get_pdata(struct device *dev)
791{
792 struct device_node *np = dev->of_node;
793 u32 prop;
794 struct max17042_platform_data *pdata;
795
796 if (!np)
797 return dev->platform_data;
798
799 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
800 if (!pdata)
801 return NULL;
802
803 /*
804 * Require current sense resistor value to be specified for
805 * current-sense functionality to be enabled at all.
806 */
807 if (of_property_read_u32(np, "maxim,rsns-microohm", &prop) == 0) {
808 pdata->r_sns = prop;
809 pdata->enable_current_sense = true;
810 }
811
Krzysztof Kozlowskia6e6b632015-06-08 10:11:38 +0900812 if (of_property_read_s32(np, "maxim,cold-temp", &pdata->temp_min))
813 pdata->temp_min = INT_MIN;
814 if (of_property_read_s32(np, "maxim,over-heat-temp", &pdata->temp_max))
815 pdata->temp_max = INT_MAX;
816 if (of_property_read_s32(np, "maxim,dead-volt", &pdata->vmin))
817 pdata->vmin = INT_MIN;
818 if (of_property_read_s32(np, "maxim,over-volt", &pdata->vmax))
819 pdata->vmax = INT_MAX;
820
Karol Lewandowski38322462012-02-22 19:06:22 +0100821 return pdata;
822}
823#else
824static struct max17042_platform_data *
825max17042_get_pdata(struct device *dev)
826{
827 return dev->platform_data;
828}
829#endif
830
Krzysztof Kozlowskie0291282015-01-05 09:50:17 +0100831static const struct regmap_config max17042_regmap_config = {
Jonghwa Lee39e72132013-10-25 13:55:02 +0900832 .reg_bits = 8,
833 .val_bits = 16,
834 .val_format_endian = REGMAP_ENDIAN_NATIVE,
835};
836
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100837static const struct power_supply_desc max17042_psy_desc = {
838 .name = "max170xx_battery",
839 .type = POWER_SUPPLY_TYPE_BATTERY,
840 .get_property = max17042_get_property,
Ramakrishna Pallalaedd4ab02015-05-24 09:11:58 +0530841 .set_property = max17042_set_property,
842 .property_is_writeable = max17042_property_is_writeable,
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100843 .properties = max17042_battery_props,
844 .num_properties = ARRAY_SIZE(max17042_battery_props),
845};
846
847static const struct power_supply_desc max17042_no_current_sense_psy_desc = {
848 .name = "max170xx_battery",
849 .type = POWER_SUPPLY_TYPE_BATTERY,
850 .get_property = max17042_get_property,
Ramakrishna Pallalaedd4ab02015-05-24 09:11:58 +0530851 .set_property = max17042_set_property,
852 .property_is_writeable = max17042_property_is_writeable,
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100853 .properties = max17042_battery_props,
854 .num_properties = ARRAY_SIZE(max17042_battery_props) - 2,
855};
856
Bill Pembertonc8afa642012-11-19 13:22:23 -0500857static int max17042_probe(struct i2c_client *client,
MyungJoo Ham359ab9f2011-01-14 14:46:11 +0900858 const struct i2c_device_id *id)
859{
860 struct i2c_adapter *adapter = to_i2c_adapter(client->dev.parent);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100861 const struct power_supply_desc *max17042_desc = &max17042_psy_desc;
862 struct power_supply_config psy_cfg = {};
MyungJoo Ham359ab9f2011-01-14 14:46:11 +0900863 struct max17042_chip *chip;
864 int ret;
Jonghwa Lee39e72132013-10-25 13:55:02 +0900865 int i;
866 u32 val;
MyungJoo Ham359ab9f2011-01-14 14:46:11 +0900867
868 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_WORD_DATA))
869 return -EIO;
870
Karol Lewandowski2f3b4342012-02-22 19:06:20 +0100871 chip = devm_kzalloc(&client->dev, sizeof(*chip), GFP_KERNEL);
MyungJoo Ham359ab9f2011-01-14 14:46:11 +0900872 if (!chip)
873 return -ENOMEM;
874
875 chip->client = client;
Jonghwa Lee39e72132013-10-25 13:55:02 +0900876 chip->regmap = devm_regmap_init_i2c(client, &max17042_regmap_config);
877 if (IS_ERR(chip->regmap)) {
878 dev_err(&client->dev, "Failed to initialize regmap\n");
879 return -EINVAL;
880 }
881
Karol Lewandowski38322462012-02-22 19:06:22 +0100882 chip->pdata = max17042_get_pdata(&client->dev);
883 if (!chip->pdata) {
884 dev_err(&client->dev, "no platform data provided\n");
885 return -EINVAL;
886 }
MyungJoo Ham359ab9f2011-01-14 14:46:11 +0900887
888 i2c_set_clientdata(client, chip);
Beomho Seo709c2c72015-04-03 17:26:08 +0900889 chip->chip_type = id->driver_data;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100890 psy_cfg.drv_data = chip;
MyungJoo Ham359ab9f2011-01-14 14:46:11 +0900891
Donggeun Kim086ef502011-06-30 18:07:41 +0900892 /* When current is not measured,
893 * CURRENT_NOW and CURRENT_AVG properties should be invisible. */
894 if (!chip->pdata->enable_current_sense)
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100895 max17042_desc = &max17042_no_current_sense_psy_desc;
Donggeun Kim086ef502011-06-30 18:07:41 +0900896
Philip Rakity4cfa8922011-08-12 21:18:18 -0700897 if (chip->pdata->r_sns == 0)
898 chip->pdata->r_sns = MAX17042_DEFAULT_SNS_RESISTOR;
899
Donggeun Kim086ef502011-06-30 18:07:41 +0900900 if (chip->pdata->init_data)
Jonghwa Lee39e72132013-10-25 13:55:02 +0900901 for (i = 0; i < chip->pdata->num_init_data; i++)
902 regmap_write(chip->regmap,
903 chip->pdata->init_data[i].addr,
904 chip->pdata->init_data[i].data);
Donggeun Kim086ef502011-06-30 18:07:41 +0900905
MyungJoo Ham359ab9f2011-01-14 14:46:11 +0900906 if (!chip->pdata->enable_current_sense) {
Jonghwa Lee39e72132013-10-25 13:55:02 +0900907 regmap_write(chip->regmap, MAX17042_CGAIN, 0x0000);
908 regmap_write(chip->regmap, MAX17042_MiscCFG, 0x0003);
909 regmap_write(chip->regmap, MAX17042_LearnCFG, 0x0007);
MyungJoo Ham359ab9f2011-01-14 14:46:11 +0900910 }
911
Vaishali Thakkar50bddb92015-09-17 18:27:52 +0530912 chip->battery = devm_power_supply_register(&client->dev, max17042_desc,
913 &psy_cfg);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100914 if (IS_ERR(chip->battery)) {
Ramakrishna Pallala243e3522012-05-05 03:08:37 +0530915 dev_err(&client->dev, "failed: power supply register\n");
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100916 return PTR_ERR(chip->battery);
Ramakrishna Pallala243e3522012-05-05 03:08:37 +0530917 }
918
Ramakrishna Pallalae5f38722012-01-24 09:26:06 -0800919 if (client->irq) {
Vaishali Thakkar50bddb92015-09-17 18:27:52 +0530920 ret = devm_request_threaded_irq(&client->dev, client->irq,
921 NULL,
922 max17042_thread_handler,
923 IRQF_TRIGGER_FALLING |
924 IRQF_ONESHOT,
925 chip->battery->desc->name,
926 chip);
Ramakrishna Pallalae5f38722012-01-24 09:26:06 -0800927 if (!ret) {
Krzysztof Kozlowskibc352682015-02-24 10:54:47 +0100928 regmap_update_bits(chip->regmap, MAX17042_CONFIG,
929 CONFIG_ALRT_BIT_ENBL,
930 CONFIG_ALRT_BIT_ENBL);
Ramakrishna Pallalae5f38722012-01-24 09:26:06 -0800931 max17042_set_soc_threshold(chip, 1);
Ramakrishna Pallalae5ba50b2012-05-05 04:43:10 +0530932 } else {
933 client->irq = 0;
Ramakrishna Pallalae5f38722012-01-24 09:26:06 -0800934 dev_err(&client->dev, "%s(): cannot get IRQ\n",
935 __func__);
Ramakrishna Pallalae5ba50b2012-05-05 04:43:10 +0530936 }
Ramakrishna Pallalae5f38722012-01-24 09:26:06 -0800937 }
938
Jonghwa Lee39e72132013-10-25 13:55:02 +0900939 regmap_read(chip->regmap, MAX17042_STATUS, &val);
940 if (val & STATUS_POR_BIT) {
Ramakrishna Pallalaf3a71a62012-03-13 22:03:52 +0400941 INIT_WORK(&chip->work, max17042_init_worker);
942 schedule_work(&chip->work);
943 } else {
944 chip->init_complete = 1;
945 }
946
Ramakrishna Pallala243e3522012-05-05 03:08:37 +0530947 return 0;
MyungJoo Ham359ab9f2011-01-14 14:46:11 +0900948}
949
Manish Badarkhe3d23c7f2013-10-14 10:56:51 +0530950#ifdef CONFIG_PM_SLEEP
Ramakrishna Pallala48bc1772012-03-27 02:23:40 +0530951static int max17042_suspend(struct device *dev)
952{
953 struct max17042_chip *chip = dev_get_drvdata(dev);
954
Anton Vorontsov48e41c72012-05-04 20:38:13 -0700955 /*
956 * disable the irq and enable irq_wake
Ramakrishna Pallala48bc1772012-03-27 02:23:40 +0530957 * capability to the interrupt line.
958 */
959 if (chip->client->irq) {
960 disable_irq(chip->client->irq);
961 enable_irq_wake(chip->client->irq);
962 }
963
964 return 0;
965}
966
967static int max17042_resume(struct device *dev)
968{
969 struct max17042_chip *chip = dev_get_drvdata(dev);
970
971 if (chip->client->irq) {
972 disable_irq_wake(chip->client->irq);
973 enable_irq(chip->client->irq);
974 /* re-program the SOC thresholds to 1% change */
975 max17042_set_soc_threshold(chip, 1);
976 }
977
978 return 0;
979}
Ramakrishna Pallala48bc1772012-03-27 02:23:40 +0530980#endif
981
Manish Badarkhe3d23c7f2013-10-14 10:56:51 +0530982static SIMPLE_DEV_PM_OPS(max17042_pm_ops, max17042_suspend,
983 max17042_resume);
984
Karol Lewandowski38322462012-02-22 19:06:22 +0100985#ifdef CONFIG_OF
986static const struct of_device_id max17042_dt_match[] = {
987 { .compatible = "maxim,max17042" },
Ramakrishna Pallala9a8422d2012-05-05 14:34:26 +0530988 { .compatible = "maxim,max17047" },
989 { .compatible = "maxim,max17050" },
Karol Lewandowski38322462012-02-22 19:06:22 +0100990 { },
991};
992MODULE_DEVICE_TABLE(of, max17042_dt_match);
993#endif
994
MyungJoo Ham359ab9f2011-01-14 14:46:11 +0900995static const struct i2c_device_id max17042_id[] = {
Beomho Seo709c2c72015-04-03 17:26:08 +0900996 { "max17042", MAXIM_DEVICE_TYPE_MAX17042 },
997 { "max17047", MAXIM_DEVICE_TYPE_MAX17047 },
998 { "max17050", MAXIM_DEVICE_TYPE_MAX17050 },
MyungJoo Ham359ab9f2011-01-14 14:46:11 +0900999 { }
1000};
1001MODULE_DEVICE_TABLE(i2c, max17042_id);
1002
1003static struct i2c_driver max17042_i2c_driver = {
1004 .driver = {
1005 .name = "max17042",
Karol Lewandowski38322462012-02-22 19:06:22 +01001006 .of_match_table = of_match_ptr(max17042_dt_match),
Manish Badarkhe3d23c7f2013-10-14 10:56:51 +05301007 .pm = &max17042_pm_ops,
MyungJoo Ham359ab9f2011-01-14 14:46:11 +09001008 },
1009 .probe = max17042_probe,
MyungJoo Ham359ab9f2011-01-14 14:46:11 +09001010 .id_table = max17042_id,
1011};
Axel Lin5ff92e72012-01-21 14:42:54 +08001012module_i2c_driver(max17042_i2c_driver);
MyungJoo Ham359ab9f2011-01-14 14:46:11 +09001013
1014MODULE_AUTHOR("MyungJoo Ham <myungjoo.ham@samsung.com>");
1015MODULE_DESCRIPTION("MAX17042 Fuel Gauge");
1016MODULE_LICENSE("GPL");