blob: e1dfb3e7aee4481e84ab01c5c48d3ba50a7e1a9a [file] [log] [blame]
Rhyland Kleina7640bf2010-09-05 15:31:23 -07001/*
Rhyland Klein3ddca0622011-12-05 17:50:46 -08002 * Gas Gauge driver for SBS Compliant Batteries
Rhyland Kleina7640bf2010-09-05 15:31:23 -07003 *
4 * Copyright (c) 2010, NVIDIA Corporation.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 */
20
21#include <linux/init.h>
22#include <linux/module.h>
23#include <linux/kernel.h>
24#include <linux/err.h>
25#include <linux/power_supply.h>
26#include <linux/i2c.h>
27#include <linux/slab.h>
Rhyland Kleinbb879102011-02-28 16:55:28 -080028#include <linux/interrupt.h>
29#include <linux/gpio.h>
Sachin Kamat075ed032013-03-14 15:49:46 +053030#include <linux/of.h>
Frans Klaverf4ed9502015-06-10 14:16:56 +020031#include <linux/stat.h>
Rhyland Kleinbb879102011-02-28 16:55:28 -080032
Rhyland Klein3ddca0622011-12-05 17:50:46 -080033#include <linux/power/sbs-battery.h>
Rhyland Kleina7640bf2010-09-05 15:31:23 -070034
35enum {
36 REG_MANUFACTURER_DATA,
37 REG_TEMPERATURE,
38 REG_VOLTAGE,
39 REG_CURRENT,
40 REG_CAPACITY,
41 REG_TIME_TO_EMPTY,
42 REG_TIME_TO_FULL,
43 REG_STATUS,
Joshua Clayton957cb722016-08-11 09:59:12 -070044 REG_CAPACITY_LEVEL,
Rhyland Kleina7640bf2010-09-05 15:31:23 -070045 REG_CYCLE_COUNT,
Rhyland Kleind3ab61e2010-09-21 15:33:55 -070046 REG_SERIAL_NUMBER,
47 REG_REMAINING_CAPACITY,
Rhyland Klein51d07562011-01-25 11:10:06 -080048 REG_REMAINING_CAPACITY_CHARGE,
Rhyland Kleind3ab61e2010-09-21 15:33:55 -070049 REG_FULL_CHARGE_CAPACITY,
Rhyland Klein51d07562011-01-25 11:10:06 -080050 REG_FULL_CHARGE_CAPACITY_CHARGE,
Rhyland Kleind3ab61e2010-09-21 15:33:55 -070051 REG_DESIGN_CAPACITY,
Rhyland Klein51d07562011-01-25 11:10:06 -080052 REG_DESIGN_CAPACITY_CHARGE,
Simon Que4495b0a2014-08-04 13:47:46 +020053 REG_DESIGN_VOLTAGE_MIN,
54 REG_DESIGN_VOLTAGE_MAX,
Cheng-Yi Chiang9ea89402014-08-04 13:47:45 +020055 REG_MANUFACTURER,
56 REG_MODEL_NAME,
Rhyland Kleina7640bf2010-09-05 15:31:23 -070057};
58
Rhyland Klein51d07562011-01-25 11:10:06 -080059/* Battery Mode defines */
60#define BATTERY_MODE_OFFSET 0x03
61#define BATTERY_MODE_MASK 0x8000
Rhyland Klein3ddca0622011-12-05 17:50:46 -080062enum sbs_battery_mode {
Rhyland Klein51d07562011-01-25 11:10:06 -080063 BATTERY_MODE_AMPS,
64 BATTERY_MODE_WATTS
65};
66
Rhyland Kleina7640bf2010-09-05 15:31:23 -070067/* manufacturer access defines */
68#define MANUFACTURER_ACCESS_STATUS 0x0006
69#define MANUFACTURER_ACCESS_SLEEP 0x0011
70
71/* battery status value bits */
Joshua Clayton957cb722016-08-11 09:59:12 -070072#define BATTERY_INITIALIZED 0x80
Rhyland Kleind3ab61e2010-09-21 15:33:55 -070073#define BATTERY_DISCHARGING 0x40
Rhyland Kleina7640bf2010-09-05 15:31:23 -070074#define BATTERY_FULL_CHARGED 0x20
75#define BATTERY_FULL_DISCHARGED 0x10
76
Cheng-Yi Chiang9ea89402014-08-04 13:47:45 +020077/* min_value and max_value are only valid for numerical data */
Rhyland Klein3ddca0622011-12-05 17:50:46 -080078#define SBS_DATA(_psp, _addr, _min_value, _max_value) { \
Rhyland Kleina7640bf2010-09-05 15:31:23 -070079 .psp = _psp, \
80 .addr = _addr, \
81 .min_value = _min_value, \
82 .max_value = _max_value, \
83}
84
Rhyland Klein3ddca0622011-12-05 17:50:46 -080085static const struct chip_data {
Rhyland Kleina7640bf2010-09-05 15:31:23 -070086 enum power_supply_property psp;
87 u8 addr;
88 int min_value;
89 int max_value;
Rhyland Klein3ddca0622011-12-05 17:50:46 -080090} sbs_data[] = {
Rhyland Kleina7640bf2010-09-05 15:31:23 -070091 [REG_MANUFACTURER_DATA] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -080092 SBS_DATA(POWER_SUPPLY_PROP_PRESENT, 0x00, 0, 65535),
Rhyland Kleina7640bf2010-09-05 15:31:23 -070093 [REG_TEMPERATURE] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -080094 SBS_DATA(POWER_SUPPLY_PROP_TEMP, 0x08, 0, 65535),
Rhyland Kleina7640bf2010-09-05 15:31:23 -070095 [REG_VOLTAGE] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -080096 SBS_DATA(POWER_SUPPLY_PROP_VOLTAGE_NOW, 0x09, 0, 20000),
Rhyland Kleina7640bf2010-09-05 15:31:23 -070097 [REG_CURRENT] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -080098 SBS_DATA(POWER_SUPPLY_PROP_CURRENT_NOW, 0x0A, -32768, 32767),
Rhyland Kleina7640bf2010-09-05 15:31:23 -070099 [REG_CAPACITY] =
Nikolaus Vossb1f092f2012-04-25 08:59:03 +0200100 SBS_DATA(POWER_SUPPLY_PROP_CAPACITY, 0x0D, 0, 100),
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700101 [REG_REMAINING_CAPACITY] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800102 SBS_DATA(POWER_SUPPLY_PROP_ENERGY_NOW, 0x0F, 0, 65535),
Rhyland Klein51d07562011-01-25 11:10:06 -0800103 [REG_REMAINING_CAPACITY_CHARGE] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800104 SBS_DATA(POWER_SUPPLY_PROP_CHARGE_NOW, 0x0F, 0, 65535),
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700105 [REG_FULL_CHARGE_CAPACITY] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800106 SBS_DATA(POWER_SUPPLY_PROP_ENERGY_FULL, 0x10, 0, 65535),
Rhyland Klein51d07562011-01-25 11:10:06 -0800107 [REG_FULL_CHARGE_CAPACITY_CHARGE] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800108 SBS_DATA(POWER_SUPPLY_PROP_CHARGE_FULL, 0x10, 0, 65535),
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700109 [REG_TIME_TO_EMPTY] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800110 SBS_DATA(POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG, 0x12, 0, 65535),
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700111 [REG_TIME_TO_FULL] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800112 SBS_DATA(POWER_SUPPLY_PROP_TIME_TO_FULL_AVG, 0x13, 0, 65535),
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700113 [REG_STATUS] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800114 SBS_DATA(POWER_SUPPLY_PROP_STATUS, 0x16, 0, 65535),
Joshua Clayton957cb722016-08-11 09:59:12 -0700115 [REG_CAPACITY_LEVEL] =
116 SBS_DATA(POWER_SUPPLY_PROP_CAPACITY_LEVEL, 0x16, 0, 65535),
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700117 [REG_CYCLE_COUNT] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800118 SBS_DATA(POWER_SUPPLY_PROP_CYCLE_COUNT, 0x17, 0, 65535),
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700119 [REG_DESIGN_CAPACITY] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800120 SBS_DATA(POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN, 0x18, 0, 65535),
Rhyland Klein51d07562011-01-25 11:10:06 -0800121 [REG_DESIGN_CAPACITY_CHARGE] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800122 SBS_DATA(POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN, 0x18, 0, 65535),
Simon Que4495b0a2014-08-04 13:47:46 +0200123 [REG_DESIGN_VOLTAGE_MIN] =
124 SBS_DATA(POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN, 0x19, 0, 65535),
125 [REG_DESIGN_VOLTAGE_MAX] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800126 SBS_DATA(POWER_SUPPLY_PROP_VOLTAGE_MAX_DESIGN, 0x19, 0, 65535),
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700127 [REG_SERIAL_NUMBER] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800128 SBS_DATA(POWER_SUPPLY_PROP_SERIAL_NUMBER, 0x1C, 0, 65535),
Cheng-Yi Chiang9ea89402014-08-04 13:47:45 +0200129 /* Properties of type `const char *' */
130 [REG_MANUFACTURER] =
131 SBS_DATA(POWER_SUPPLY_PROP_MANUFACTURER, 0x20, 0, 65535),
132 [REG_MODEL_NAME] =
133 SBS_DATA(POWER_SUPPLY_PROP_MODEL_NAME, 0x21, 0, 65535)
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700134};
135
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800136static enum power_supply_property sbs_properties[] = {
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700137 POWER_SUPPLY_PROP_STATUS,
Joshua Clayton957cb722016-08-11 09:59:12 -0700138 POWER_SUPPLY_PROP_CAPACITY_LEVEL,
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700139 POWER_SUPPLY_PROP_HEALTH,
140 POWER_SUPPLY_PROP_PRESENT,
141 POWER_SUPPLY_PROP_TECHNOLOGY,
142 POWER_SUPPLY_PROP_CYCLE_COUNT,
143 POWER_SUPPLY_PROP_VOLTAGE_NOW,
144 POWER_SUPPLY_PROP_CURRENT_NOW,
145 POWER_SUPPLY_PROP_CAPACITY,
146 POWER_SUPPLY_PROP_TEMP,
147 POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG,
148 POWER_SUPPLY_PROP_TIME_TO_FULL_AVG,
149 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Simon Que4495b0a2014-08-04 13:47:46 +0200150 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700151 POWER_SUPPLY_PROP_VOLTAGE_MAX_DESIGN,
152 POWER_SUPPLY_PROP_ENERGY_NOW,
153 POWER_SUPPLY_PROP_ENERGY_FULL,
154 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN,
Rhyland Klein51d07562011-01-25 11:10:06 -0800155 POWER_SUPPLY_PROP_CHARGE_NOW,
156 POWER_SUPPLY_PROP_CHARGE_FULL,
157 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
Cheng-Yi Chiang9ea89402014-08-04 13:47:45 +0200158 /* Properties of type `const char *' */
159 POWER_SUPPLY_PROP_MANUFACTURER,
160 POWER_SUPPLY_PROP_MODEL_NAME
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700161};
162
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800163struct sbs_info {
Rhyland Kleinbb879102011-02-28 16:55:28 -0800164 struct i2c_client *client;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100165 struct power_supply *power_supply;
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800166 struct sbs_platform_data *pdata;
Rhyland Kleinbb879102011-02-28 16:55:28 -0800167 bool is_present;
168 bool gpio_detect;
169 bool enable_detection;
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700170 int last_state;
171 int poll_time;
172 struct delayed_work work;
173 int ignore_changes;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700174};
175
Cheng-Yi Chiang9ea89402014-08-04 13:47:45 +0200176static char model_name[I2C_SMBUS_BLOCK_MAX + 1];
177static char manufacturer[I2C_SMBUS_BLOCK_MAX + 1];
Frans Klaverf4ed9502015-06-10 14:16:56 +0200178static bool force_load;
Cheng-Yi Chiang9ea89402014-08-04 13:47:45 +0200179
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800180static int sbs_read_word_data(struct i2c_client *client, u8 address)
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700181{
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800182 struct sbs_info *chip = i2c_get_clientdata(client);
Rhyland Kleinff28fce2011-02-28 16:55:29 -0800183 s32 ret = 0;
184 int retries = 1;
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700185
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800186 if (chip->pdata)
187 retries = max(chip->pdata->i2c_retry_count + 1, 1);
Rhyland Kleinff28fce2011-02-28 16:55:29 -0800188
189 while (retries > 0) {
190 ret = i2c_smbus_read_word_data(client, address);
191 if (ret >= 0)
192 break;
193 retries--;
194 }
195
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700196 if (ret < 0) {
Rhyland Kleina7d9ace2011-03-09 16:18:02 -0800197 dev_dbg(&client->dev,
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700198 "%s: i2c read at address 0x%x failed\n",
199 __func__, address);
200 return ret;
201 }
Rhyland Kleinff28fce2011-02-28 16:55:29 -0800202
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700203 return le16_to_cpu(ret);
204}
205
Cheng-Yi Chiang9ea89402014-08-04 13:47:45 +0200206static int sbs_read_string_data(struct i2c_client *client, u8 address,
207 char *values)
208{
209 struct sbs_info *chip = i2c_get_clientdata(client);
210 s32 ret = 0, block_length = 0;
211 int retries_length = 1, retries_block = 1;
212 u8 block_buffer[I2C_SMBUS_BLOCK_MAX + 1];
213
214 if (chip->pdata) {
215 retries_length = max(chip->pdata->i2c_retry_count + 1, 1);
216 retries_block = max(chip->pdata->i2c_retry_count + 1, 1);
217 }
218
219 /* Adapter needs to support these two functions */
220 if (!i2c_check_functionality(client->adapter,
221 I2C_FUNC_SMBUS_BYTE_DATA |
222 I2C_FUNC_SMBUS_I2C_BLOCK)){
223 return -ENODEV;
224 }
225
226 /* Get the length of block data */
227 while (retries_length > 0) {
228 ret = i2c_smbus_read_byte_data(client, address);
229 if (ret >= 0)
230 break;
231 retries_length--;
232 }
233
234 if (ret < 0) {
235 dev_dbg(&client->dev,
236 "%s: i2c read at address 0x%x failed\n",
237 __func__, address);
238 return ret;
239 }
240
241 /* block_length does not include NULL terminator */
242 block_length = ret;
243 if (block_length > I2C_SMBUS_BLOCK_MAX) {
244 dev_err(&client->dev,
245 "%s: Returned block_length is longer than 0x%x\n",
246 __func__, I2C_SMBUS_BLOCK_MAX);
247 return -EINVAL;
248 }
249
250 /* Get the block data */
251 while (retries_block > 0) {
252 ret = i2c_smbus_read_i2c_block_data(
253 client, address,
254 block_length + 1, block_buffer);
255 if (ret >= 0)
256 break;
257 retries_block--;
258 }
259
260 if (ret < 0) {
261 dev_dbg(&client->dev,
262 "%s: i2c read at address 0x%x failed\n",
263 __func__, address);
264 return ret;
265 }
266
267 /* block_buffer[0] == block_length */
268 memcpy(values, block_buffer + 1, block_length);
269 values[block_length] = '\0';
270
271 return le16_to_cpu(ret);
272}
273
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800274static int sbs_write_word_data(struct i2c_client *client, u8 address,
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700275 u16 value)
276{
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800277 struct sbs_info *chip = i2c_get_clientdata(client);
Rhyland Kleinff28fce2011-02-28 16:55:29 -0800278 s32 ret = 0;
279 int retries = 1;
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700280
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800281 if (chip->pdata)
282 retries = max(chip->pdata->i2c_retry_count + 1, 1);
Rhyland Kleinff28fce2011-02-28 16:55:29 -0800283
284 while (retries > 0) {
285 ret = i2c_smbus_write_word_data(client, address,
286 le16_to_cpu(value));
287 if (ret >= 0)
288 break;
289 retries--;
290 }
291
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700292 if (ret < 0) {
Rhyland Kleina7d9ace2011-03-09 16:18:02 -0800293 dev_dbg(&client->dev,
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700294 "%s: i2c write to address 0x%x failed\n",
295 __func__, address);
296 return ret;
297 }
Rhyland Kleinff28fce2011-02-28 16:55:29 -0800298
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700299 return 0;
300}
301
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800302static int sbs_get_battery_presence_and_health(
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700303 struct i2c_client *client, enum power_supply_property psp,
304 union power_supply_propval *val)
305{
306 s32 ret;
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800307 struct sbs_info *chip = i2c_get_clientdata(client);
Rhyland Kleinbb879102011-02-28 16:55:28 -0800308
309 if (psp == POWER_SUPPLY_PROP_PRESENT &&
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800310 chip->gpio_detect) {
311 ret = gpio_get_value(chip->pdata->battery_detect);
312 if (ret == chip->pdata->battery_detect_present)
Rhyland Kleinbb879102011-02-28 16:55:28 -0800313 val->intval = 1;
314 else
315 val->intval = 0;
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800316 chip->is_present = val->intval;
Rhyland Kleinbb879102011-02-28 16:55:28 -0800317 return ret;
318 }
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700319
320 /* Write to ManufacturerAccess with
321 * ManufacturerAccess command and then
322 * read the status */
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800323 ret = sbs_write_word_data(client, sbs_data[REG_MANUFACTURER_DATA].addr,
324 MANUFACTURER_ACCESS_STATUS);
Rhyland Kleinbb879102011-02-28 16:55:28 -0800325 if (ret < 0) {
326 if (psp == POWER_SUPPLY_PROP_PRESENT)
327 val->intval = 0; /* battery removed */
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700328 return ret;
Rhyland Kleinbb879102011-02-28 16:55:28 -0800329 }
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700330
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800331 ret = sbs_read_word_data(client, sbs_data[REG_MANUFACTURER_DATA].addr);
Rhyland Kleina7d9ace2011-03-09 16:18:02 -0800332 if (ret < 0)
333 return ret;
334
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800335 if (ret < sbs_data[REG_MANUFACTURER_DATA].min_value ||
336 ret > sbs_data[REG_MANUFACTURER_DATA].max_value) {
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700337 val->intval = 0;
338 return 0;
339 }
340
341 /* Mask the upper nibble of 2nd byte and
342 * lower byte of response then
343 * shift the result by 8 to get status*/
344 ret &= 0x0F00;
345 ret >>= 8;
346 if (psp == POWER_SUPPLY_PROP_PRESENT) {
347 if (ret == 0x0F)
348 /* battery removed */
349 val->intval = 0;
350 else
351 val->intval = 1;
352 } else if (psp == POWER_SUPPLY_PROP_HEALTH) {
353 if (ret == 0x09)
354 val->intval = POWER_SUPPLY_HEALTH_UNSPEC_FAILURE;
355 else if (ret == 0x0B)
356 val->intval = POWER_SUPPLY_HEALTH_OVERHEAT;
357 else if (ret == 0x0C)
358 val->intval = POWER_SUPPLY_HEALTH_DEAD;
359 else
360 val->intval = POWER_SUPPLY_HEALTH_GOOD;
361 }
362
363 return 0;
364}
365
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800366static int sbs_get_battery_property(struct i2c_client *client,
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700367 int reg_offset, enum power_supply_property psp,
368 union power_supply_propval *val)
369{
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800370 struct sbs_info *chip = i2c_get_clientdata(client);
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700371 s32 ret;
372
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800373 ret = sbs_read_word_data(client, sbs_data[reg_offset].addr);
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700374 if (ret < 0)
375 return ret;
376
377 /* returned values are 16 bit */
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800378 if (sbs_data[reg_offset].min_value < 0)
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700379 ret = (s16)ret;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700380
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800381 if (ret >= sbs_data[reg_offset].min_value &&
382 ret <= sbs_data[reg_offset].max_value) {
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700383 val->intval = ret;
Joshua Clayton957cb722016-08-11 09:59:12 -0700384 if (psp == POWER_SUPPLY_PROP_CAPACITY_LEVEL) {
385 if (!(ret & BATTERY_INITIALIZED))
386 val->intval =
387 POWER_SUPPLY_CAPACITY_LEVEL_UNKNOWN;
388 else if (ret & BATTERY_FULL_CHARGED)
389 val->intval =
390 POWER_SUPPLY_CAPACITY_LEVEL_FULL;
391 else if (ret & BATTERY_FULL_DISCHARGED)
392 val->intval =
393 POWER_SUPPLY_CAPACITY_LEVEL_CRITICAL;
394 else
395 val->intval =
396 POWER_SUPPLY_CAPACITY_LEVEL_NORMAL;
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700397 return 0;
Joshua Clayton957cb722016-08-11 09:59:12 -0700398 } else if (psp != POWER_SUPPLY_PROP_STATUS) {
399 return 0;
400 }
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700401
402 if (ret & BATTERY_FULL_CHARGED)
403 val->intval = POWER_SUPPLY_STATUS_FULL;
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700404 else if (ret & BATTERY_DISCHARGING)
405 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
406 else
407 val->intval = POWER_SUPPLY_STATUS_CHARGING;
408
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800409 if (chip->poll_time == 0)
410 chip->last_state = val->intval;
411 else if (chip->last_state != val->intval) {
412 cancel_delayed_work_sync(&chip->work);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100413 power_supply_changed(chip->power_supply);
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800414 chip->poll_time = 0;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700415 }
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700416 } else {
417 if (psp == POWER_SUPPLY_PROP_STATUS)
418 val->intval = POWER_SUPPLY_STATUS_UNKNOWN;
419 else
420 val->intval = 0;
421 }
422
423 return 0;
424}
425
Cheng-Yi Chiang9ea89402014-08-04 13:47:45 +0200426static int sbs_get_battery_string_property(struct i2c_client *client,
427 int reg_offset, enum power_supply_property psp, char *val)
428{
429 s32 ret;
430
431 ret = sbs_read_string_data(client, sbs_data[reg_offset].addr, val);
432
433 if (ret < 0)
434 return ret;
435
436 return 0;
437}
438
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800439static void sbs_unit_adjustment(struct i2c_client *client,
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700440 enum power_supply_property psp, union power_supply_propval *val)
441{
442#define BASE_UNIT_CONVERSION 1000
443#define BATTERY_MODE_CAP_MULT_WATT (10 * BASE_UNIT_CONVERSION)
Benson Leung909a78b2011-02-27 17:41:48 -0800444#define TIME_UNIT_CONVERSION 60
445#define TEMP_KELVIN_TO_CELSIUS 2731
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700446 switch (psp) {
447 case POWER_SUPPLY_PROP_ENERGY_NOW:
448 case POWER_SUPPLY_PROP_ENERGY_FULL:
449 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800450 /* sbs provides energy in units of 10mWh.
Benson Leung909a78b2011-02-27 17:41:48 -0800451 * Convert to µWh
452 */
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700453 val->intval *= BATTERY_MODE_CAP_MULT_WATT;
454 break;
455
456 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
Simon Que4495b0a2014-08-04 13:47:46 +0200457 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700458 case POWER_SUPPLY_PROP_VOLTAGE_MAX_DESIGN:
459 case POWER_SUPPLY_PROP_CURRENT_NOW:
Rhyland Klein51d07562011-01-25 11:10:06 -0800460 case POWER_SUPPLY_PROP_CHARGE_NOW:
461 case POWER_SUPPLY_PROP_CHARGE_FULL:
462 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700463 val->intval *= BASE_UNIT_CONVERSION;
464 break;
465
466 case POWER_SUPPLY_PROP_TEMP:
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800467 /* sbs provides battery temperature in 0.1K
Benson Leung909a78b2011-02-27 17:41:48 -0800468 * so convert it to 0.1°C
469 */
470 val->intval -= TEMP_KELVIN_TO_CELSIUS;
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700471 break;
472
473 case POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG:
474 case POWER_SUPPLY_PROP_TIME_TO_FULL_AVG:
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800475 /* sbs provides time to empty and time to full in minutes.
Benson Leung909a78b2011-02-27 17:41:48 -0800476 * Convert to seconds
477 */
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700478 val->intval *= TIME_UNIT_CONVERSION;
479 break;
480
481 default:
482 dev_dbg(&client->dev,
483 "%s: no need for unit conversion %d\n", __func__, psp);
484 }
485}
486
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800487static enum sbs_battery_mode sbs_set_battery_mode(struct i2c_client *client,
488 enum sbs_battery_mode mode)
Rhyland Klein51d07562011-01-25 11:10:06 -0800489{
490 int ret, original_val;
491
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800492 original_val = sbs_read_word_data(client, BATTERY_MODE_OFFSET);
Rhyland Klein51d07562011-01-25 11:10:06 -0800493 if (original_val < 0)
494 return original_val;
495
496 if ((original_val & BATTERY_MODE_MASK) == mode)
497 return mode;
498
499 if (mode == BATTERY_MODE_AMPS)
500 ret = original_val & ~BATTERY_MODE_MASK;
501 else
502 ret = original_val | BATTERY_MODE_MASK;
503
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800504 ret = sbs_write_word_data(client, BATTERY_MODE_OFFSET, ret);
Rhyland Klein51d07562011-01-25 11:10:06 -0800505 if (ret < 0)
506 return ret;
507
508 return original_val & BATTERY_MODE_MASK;
509}
510
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800511static int sbs_get_battery_capacity(struct i2c_client *client,
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700512 int reg_offset, enum power_supply_property psp,
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700513 union power_supply_propval *val)
514{
515 s32 ret;
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800516 enum sbs_battery_mode mode = BATTERY_MODE_WATTS;
Rhyland Klein51d07562011-01-25 11:10:06 -0800517
518 if (power_supply_is_amp_property(psp))
519 mode = BATTERY_MODE_AMPS;
520
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800521 mode = sbs_set_battery_mode(client, mode);
Rhyland Klein51d07562011-01-25 11:10:06 -0800522 if (mode < 0)
523 return mode;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700524
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800525 ret = sbs_read_word_data(client, sbs_data[reg_offset].addr);
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700526 if (ret < 0)
527 return ret;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700528
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700529 if (psp == POWER_SUPPLY_PROP_CAPACITY) {
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800530 /* sbs spec says that this can be >100 %
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700531 * even if max value is 100 % */
532 val->intval = min(ret, 100);
533 } else
534 val->intval = ret;
535
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800536 ret = sbs_set_battery_mode(client, mode);
Rhyland Klein51d07562011-01-25 11:10:06 -0800537 if (ret < 0)
538 return ret;
539
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700540 return 0;
541}
542
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800543static char sbs_serial[5];
544static int sbs_get_battery_serial_number(struct i2c_client *client,
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700545 union power_supply_propval *val)
546{
547 int ret;
548
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800549 ret = sbs_read_word_data(client, sbs_data[REG_SERIAL_NUMBER].addr);
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700550 if (ret < 0)
551 return ret;
552
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800553 ret = sprintf(sbs_serial, "%04x", ret);
554 val->strval = sbs_serial;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700555
556 return 0;
557}
558
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800559static int sbs_get_property_index(struct i2c_client *client,
Rhyland Klein51d07562011-01-25 11:10:06 -0800560 enum power_supply_property psp)
561{
562 int count;
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800563 for (count = 0; count < ARRAY_SIZE(sbs_data); count++)
564 if (psp == sbs_data[count].psp)
Rhyland Klein51d07562011-01-25 11:10:06 -0800565 return count;
566
567 dev_warn(&client->dev,
568 "%s: Invalid Property - %d\n", __func__, psp);
569
570 return -EINVAL;
571}
572
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800573static int sbs_get_property(struct power_supply *psy,
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700574 enum power_supply_property psp,
575 union power_supply_propval *val)
576{
Rhyland Kleinbb879102011-02-28 16:55:28 -0800577 int ret = 0;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100578 struct sbs_info *chip = power_supply_get_drvdata(psy);
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800579 struct i2c_client *client = chip->client;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700580
581 switch (psp) {
582 case POWER_SUPPLY_PROP_PRESENT:
583 case POWER_SUPPLY_PROP_HEALTH:
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800584 ret = sbs_get_battery_presence_and_health(client, psp, val);
Rhyland Kleina7d9ace2011-03-09 16:18:02 -0800585 if (psp == POWER_SUPPLY_PROP_PRESENT)
586 return 0;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700587 break;
588
589 case POWER_SUPPLY_PROP_TECHNOLOGY:
590 val->intval = POWER_SUPPLY_TECHNOLOGY_LION;
Nikolaus Voss5da50982012-05-09 08:30:44 +0200591 goto done; /* don't trigger power_supply_changed()! */
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700592
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700593 case POWER_SUPPLY_PROP_ENERGY_NOW:
594 case POWER_SUPPLY_PROP_ENERGY_FULL:
595 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
Rhyland Klein51d07562011-01-25 11:10:06 -0800596 case POWER_SUPPLY_PROP_CHARGE_NOW:
597 case POWER_SUPPLY_PROP_CHARGE_FULL:
598 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700599 case POWER_SUPPLY_PROP_CAPACITY:
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800600 ret = sbs_get_property_index(client, psp);
Rhyland Kleinbb879102011-02-28 16:55:28 -0800601 if (ret < 0)
602 break;
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700603
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800604 ret = sbs_get_battery_capacity(client, ret, psp, val);
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700605 break;
606
607 case POWER_SUPPLY_PROP_SERIAL_NUMBER:
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800608 ret = sbs_get_battery_serial_number(client, val);
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700609 break;
610
611 case POWER_SUPPLY_PROP_STATUS:
Joshua Clayton957cb722016-08-11 09:59:12 -0700612 case POWER_SUPPLY_PROP_CAPACITY_LEVEL:
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700613 case POWER_SUPPLY_PROP_CYCLE_COUNT:
614 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
615 case POWER_SUPPLY_PROP_CURRENT_NOW:
616 case POWER_SUPPLY_PROP_TEMP:
617 case POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG:
618 case POWER_SUPPLY_PROP_TIME_TO_FULL_AVG:
Simon Que4495b0a2014-08-04 13:47:46 +0200619 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700620 case POWER_SUPPLY_PROP_VOLTAGE_MAX_DESIGN:
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800621 ret = sbs_get_property_index(client, psp);
Rhyland Kleinbb879102011-02-28 16:55:28 -0800622 if (ret < 0)
623 break;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700624
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800625 ret = sbs_get_battery_property(client, ret, psp, val);
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700626 break;
627
Cheng-Yi Chiang9ea89402014-08-04 13:47:45 +0200628 case POWER_SUPPLY_PROP_MODEL_NAME:
629 ret = sbs_get_property_index(client, psp);
630 if (ret < 0)
631 break;
632
633 ret = sbs_get_battery_string_property(client, ret, psp,
634 model_name);
635 val->strval = model_name;
636 break;
637
638 case POWER_SUPPLY_PROP_MANUFACTURER:
639 ret = sbs_get_property_index(client, psp);
640 if (ret < 0)
641 break;
642
643 ret = sbs_get_battery_string_property(client, ret, psp,
644 manufacturer);
645 val->strval = manufacturer;
646 break;
647
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700648 default:
649 dev_err(&client->dev,
650 "%s: INVALID property\n", __func__);
651 return -EINVAL;
652 }
653
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800654 if (!chip->enable_detection)
Rhyland Kleinbb879102011-02-28 16:55:28 -0800655 goto done;
656
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800657 if (!chip->gpio_detect &&
658 chip->is_present != (ret >= 0)) {
659 chip->is_present = (ret >= 0);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100660 power_supply_changed(chip->power_supply);
Rhyland Kleinbb879102011-02-28 16:55:28 -0800661 }
662
663done:
664 if (!ret) {
665 /* Convert units to match requirements for power supply class */
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800666 sbs_unit_adjustment(client, psp, val);
Rhyland Kleinbb879102011-02-28 16:55:28 -0800667 }
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700668
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700669 dev_dbg(&client->dev,
Rhyland Kleina7d9ace2011-03-09 16:18:02 -0800670 "%s: property = %d, value = %x\n", __func__, psp, val->intval);
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700671
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800672 if (ret && chip->is_present)
Rhyland Kleina7d9ace2011-03-09 16:18:02 -0800673 return ret;
674
675 /* battery not present, so return NODATA for properties */
676 if (ret)
677 return -ENODATA;
678
679 return 0;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700680}
681
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800682static irqreturn_t sbs_irq(int irq, void *devid)
Rhyland Kleinbb879102011-02-28 16:55:28 -0800683{
Phil Reidd2cec822016-07-25 10:42:58 +0800684 struct sbs_info *chip = devid;
685 struct power_supply *battery = chip->power_supply;
Rhyland Kleinbb879102011-02-28 16:55:28 -0800686
687 power_supply_changed(battery);
688
689 return IRQ_HANDLED;
690}
691
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800692static void sbs_external_power_changed(struct power_supply *psy)
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700693{
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100694 struct sbs_info *chip = power_supply_get_drvdata(psy);
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700695
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800696 if (chip->ignore_changes > 0) {
697 chip->ignore_changes--;
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700698 return;
699 }
700
701 /* cancel outstanding work */
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800702 cancel_delayed_work_sync(&chip->work);
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700703
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800704 schedule_delayed_work(&chip->work, HZ);
705 chip->poll_time = chip->pdata->poll_retry_count;
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700706}
707
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800708static void sbs_delayed_work(struct work_struct *work)
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700709{
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800710 struct sbs_info *chip;
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700711 s32 ret;
712
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800713 chip = container_of(work, struct sbs_info, work.work);
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700714
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800715 ret = sbs_read_word_data(chip->client, sbs_data[REG_STATUS].addr);
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700716 /* if the read failed, give up on this work */
717 if (ret < 0) {
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800718 chip->poll_time = 0;
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700719 return;
720 }
721
722 if (ret & BATTERY_FULL_CHARGED)
723 ret = POWER_SUPPLY_STATUS_FULL;
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700724 else if (ret & BATTERY_DISCHARGING)
725 ret = POWER_SUPPLY_STATUS_DISCHARGING;
726 else
727 ret = POWER_SUPPLY_STATUS_CHARGING;
728
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800729 if (chip->last_state != ret) {
730 chip->poll_time = 0;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100731 power_supply_changed(chip->power_supply);
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700732 return;
733 }
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800734 if (chip->poll_time > 0) {
735 schedule_delayed_work(&chip->work, HZ);
736 chip->poll_time--;
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700737 return;
738 }
739}
740
Rhyland Klein6c75ea12011-09-14 13:19:07 -0700741#if defined(CONFIG_OF)
742
743#include <linux/of_device.h>
744#include <linux/of_gpio.h>
745
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800746static const struct of_device_id sbs_dt_ids[] = {
747 { .compatible = "sbs,sbs-battery" },
Rhyland Klein6c75ea12011-09-14 13:19:07 -0700748 { .compatible = "ti,bq20z75" },
749 { }
750};
Olof Johansson62df3932012-01-06 05:45:34 +0400751MODULE_DEVICE_TABLE(of, sbs_dt_ids);
Rhyland Klein6c75ea12011-09-14 13:19:07 -0700752
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800753static struct sbs_platform_data *sbs_of_populate_pdata(
Rhyland Klein6c75ea12011-09-14 13:19:07 -0700754 struct i2c_client *client)
755{
756 struct device_node *of_node = client->dev.of_node;
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800757 struct sbs_platform_data *pdata = client->dev.platform_data;
Rhyland Klein6c75ea12011-09-14 13:19:07 -0700758 enum of_gpio_flags gpio_flags;
759 int rc;
760 u32 prop;
761
762 /* verify this driver matches this device */
763 if (!of_node)
764 return NULL;
765
766 /* if platform data is set, honor it */
767 if (pdata)
768 return pdata;
769
770 /* first make sure at least one property is set, otherwise
771 * it won't change behavior from running without pdata.
772 */
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800773 if (!of_get_property(of_node, "sbs,i2c-retry-count", NULL) &&
774 !of_get_property(of_node, "sbs,poll-retry-count", NULL) &&
775 !of_get_property(of_node, "sbs,battery-detect-gpios", NULL))
Rhyland Klein6c75ea12011-09-14 13:19:07 -0700776 goto of_out;
777
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800778 pdata = devm_kzalloc(&client->dev, sizeof(struct sbs_platform_data),
Rhyland Klein6c75ea12011-09-14 13:19:07 -0700779 GFP_KERNEL);
780 if (!pdata)
781 goto of_out;
782
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800783 rc = of_property_read_u32(of_node, "sbs,i2c-retry-count", &prop);
Rhyland Klein6c75ea12011-09-14 13:19:07 -0700784 if (!rc)
785 pdata->i2c_retry_count = prop;
786
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800787 rc = of_property_read_u32(of_node, "sbs,poll-retry-count", &prop);
Rhyland Klein6c75ea12011-09-14 13:19:07 -0700788 if (!rc)
789 pdata->poll_retry_count = prop;
790
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800791 if (!of_get_property(of_node, "sbs,battery-detect-gpios", NULL)) {
Rhyland Klein6c75ea12011-09-14 13:19:07 -0700792 pdata->battery_detect = -1;
793 goto of_out;
794 }
795
796 pdata->battery_detect = of_get_named_gpio_flags(of_node,
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800797 "sbs,battery-detect-gpios", 0, &gpio_flags);
Rhyland Klein6c75ea12011-09-14 13:19:07 -0700798
799 if (gpio_flags & OF_GPIO_ACTIVE_LOW)
800 pdata->battery_detect_present = 0;
801 else
802 pdata->battery_detect_present = 1;
803
804of_out:
805 return pdata;
806}
807#else
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800808static struct sbs_platform_data *sbs_of_populate_pdata(
Rhyland Klein6c75ea12011-09-14 13:19:07 -0700809 struct i2c_client *client)
810{
811 return client->dev.platform_data;
812}
813#endif
814
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100815static const struct power_supply_desc sbs_default_desc = {
816 .type = POWER_SUPPLY_TYPE_BATTERY,
817 .properties = sbs_properties,
818 .num_properties = ARRAY_SIZE(sbs_properties),
819 .get_property = sbs_get_property,
820 .external_power_changed = sbs_external_power_changed,
821};
822
Bill Pembertonc8afa642012-11-19 13:22:23 -0500823static int sbs_probe(struct i2c_client *client,
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700824 const struct i2c_device_id *id)
825{
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800826 struct sbs_info *chip;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100827 struct power_supply_desc *sbs_desc;
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800828 struct sbs_platform_data *pdata = client->dev.platform_data;
Krzysztof Kozlowski2dc92152015-03-12 08:44:02 +0100829 struct power_supply_config psy_cfg = {};
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700830 int rc;
Rhyland Kleinbb879102011-02-28 16:55:28 -0800831 int irq;
Rhyland Klein52f56c62011-12-05 17:50:49 -0800832
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100833 sbs_desc = devm_kmemdup(&client->dev, &sbs_default_desc,
834 sizeof(*sbs_desc), GFP_KERNEL);
835 if (!sbs_desc)
Rhyland Klein52f56c62011-12-05 17:50:49 -0800836 return -ENOMEM;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100837
838 sbs_desc->name = devm_kasprintf(&client->dev, GFP_KERNEL, "sbs-%s",
839 dev_name(&client->dev));
840 if (!sbs_desc->name)
841 return -ENOMEM;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700842
Phil Reid9239a862016-07-25 10:42:57 +0800843 chip = devm_kzalloc(&client->dev, sizeof(struct sbs_info), GFP_KERNEL);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100844 if (!chip)
845 return -ENOMEM;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700846
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800847 chip->client = client;
848 chip->enable_detection = false;
849 chip->gpio_detect = false;
Krzysztof Kozlowski2dc92152015-03-12 08:44:02 +0100850 psy_cfg.of_node = client->dev.of_node;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100851 psy_cfg.drv_data = chip;
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700852 /* ignore first notification of external change, it is generated
853 * from the power_supply_register call back
854 */
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800855 chip->ignore_changes = 1;
856 chip->last_state = POWER_SUPPLY_STATUS_UNKNOWN;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700857
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800858 pdata = sbs_of_populate_pdata(client);
Rhyland Klein6c75ea12011-09-14 13:19:07 -0700859
Rhyland Kleinbb879102011-02-28 16:55:28 -0800860 if (pdata) {
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800861 chip->gpio_detect = gpio_is_valid(pdata->battery_detect);
862 chip->pdata = pdata;
Rhyland Kleinbb879102011-02-28 16:55:28 -0800863 }
864
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800865 i2c_set_clientdata(client, chip);
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700866
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800867 if (!chip->gpio_detect)
Rhyland Kleinbb879102011-02-28 16:55:28 -0800868 goto skip_gpio;
869
870 rc = gpio_request(pdata->battery_detect, dev_name(&client->dev));
871 if (rc) {
872 dev_warn(&client->dev, "Failed to request gpio: %d\n", rc);
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800873 chip->gpio_detect = false;
Rhyland Kleinbb879102011-02-28 16:55:28 -0800874 goto skip_gpio;
875 }
876
877 rc = gpio_direction_input(pdata->battery_detect);
878 if (rc) {
879 dev_warn(&client->dev, "Failed to get gpio as input: %d\n", rc);
880 gpio_free(pdata->battery_detect);
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800881 chip->gpio_detect = false;
Rhyland Kleinbb879102011-02-28 16:55:28 -0800882 goto skip_gpio;
883 }
884
885 irq = gpio_to_irq(pdata->battery_detect);
886 if (irq <= 0) {
887 dev_warn(&client->dev, "Failed to get gpio as irq: %d\n", irq);
888 gpio_free(pdata->battery_detect);
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800889 chip->gpio_detect = false;
Rhyland Kleinbb879102011-02-28 16:55:28 -0800890 goto skip_gpio;
891 }
892
Phil Reidd2cec822016-07-25 10:42:58 +0800893 rc = devm_request_threaded_irq(&client->dev, irq, NULL, sbs_irq,
Rhyland Kleinbb879102011-02-28 16:55:28 -0800894 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
Phil Reidd2cec822016-07-25 10:42:58 +0800895 dev_name(&client->dev), chip);
Rhyland Kleinbb879102011-02-28 16:55:28 -0800896 if (rc) {
897 dev_warn(&client->dev, "Failed to request irq: %d\n", rc);
898 gpio_free(pdata->battery_detect);
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800899 chip->gpio_detect = false;
Rhyland Kleinbb879102011-02-28 16:55:28 -0800900 goto skip_gpio;
901 }
902
Rhyland Kleinbb879102011-02-28 16:55:28 -0800903skip_gpio:
Olof Johanssona22b41a2012-09-06 11:32:29 -0700904 /*
Frans Klaverf4ed9502015-06-10 14:16:56 +0200905 * Before we register, we might need to make sure we can actually talk
Olof Johanssona22b41a2012-09-06 11:32:29 -0700906 * to the battery.
907 */
Frans Klaverf4ed9502015-06-10 14:16:56 +0200908 if (!force_load) {
909 rc = sbs_read_word_data(client, sbs_data[REG_STATUS].addr);
910
911 if (rc < 0) {
912 dev_err(&client->dev, "%s: Failed to get device status\n",
913 __func__);
914 goto exit_psupply;
915 }
Olof Johanssona22b41a2012-09-06 11:32:29 -0700916 }
Rhyland Kleinbb879102011-02-28 16:55:28 -0800917
Phil Reid492ff9d82016-07-25 10:42:59 +0800918 chip->power_supply = devm_power_supply_register(&client->dev, sbs_desc,
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100919 &psy_cfg);
920 if (IS_ERR(chip->power_supply)) {
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700921 dev_err(&client->dev,
922 "%s: Failed to register power supply\n", __func__);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100923 rc = PTR_ERR(chip->power_supply);
Rhyland Kleinbb879102011-02-28 16:55:28 -0800924 goto exit_psupply;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700925 }
926
927 dev_info(&client->dev,
928 "%s: battery gas gauge device registered\n", client->name);
929
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800930 INIT_DELAYED_WORK(&chip->work, sbs_delayed_work);
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700931
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800932 chip->enable_detection = true;
Rhyland Kleinee177d92011-05-24 12:06:50 -0700933
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700934 return 0;
Rhyland Kleinbb879102011-02-28 16:55:28 -0800935
936exit_psupply:
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800937 if (chip->gpio_detect)
Rhyland Kleinbb879102011-02-28 16:55:28 -0800938 gpio_free(pdata->battery_detect);
939
Rhyland Kleinbb879102011-02-28 16:55:28 -0800940 return rc;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700941}
942
Bill Pemberton415ec692012-11-19 13:26:07 -0500943static int sbs_remove(struct i2c_client *client)
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700944{
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800945 struct sbs_info *chip = i2c_get_clientdata(client);
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700946
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800947 if (chip->gpio_detect)
948 gpio_free(chip->pdata->battery_detect);
Rhyland Kleinbb879102011-02-28 16:55:28 -0800949
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800950 cancel_delayed_work_sync(&chip->work);
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700951
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700952 return 0;
953}
954
Lars-Peter Clausen9c1d1af2013-03-10 14:34:07 +0100955#if defined CONFIG_PM_SLEEP
956
957static int sbs_suspend(struct device *dev)
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700958{
Lars-Peter Clausen9c1d1af2013-03-10 14:34:07 +0100959 struct i2c_client *client = to_i2c_client(dev);
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800960 struct sbs_info *chip = i2c_get_clientdata(client);
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700961 s32 ret;
962
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800963 if (chip->poll_time > 0)
964 cancel_delayed_work_sync(&chip->work);
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700965
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700966 /* write to manufacturer access with sleep command */
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800967 ret = sbs_write_word_data(client, sbs_data[REG_MANUFACTURER_DATA].addr,
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700968 MANUFACTURER_ACCESS_SLEEP);
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800969 if (chip->is_present && ret < 0)
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700970 return ret;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700971
972 return 0;
973}
Lars-Peter Clausen9c1d1af2013-03-10 14:34:07 +0100974
975static SIMPLE_DEV_PM_OPS(sbs_pm_ops, sbs_suspend, NULL);
976#define SBS_PM_OPS (&sbs_pm_ops)
977
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700978#else
Lars-Peter Clausen9c1d1af2013-03-10 14:34:07 +0100979#define SBS_PM_OPS NULL
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700980#endif
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700981
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800982static const struct i2c_device_id sbs_id[] = {
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700983 { "bq20z75", 0 },
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800984 { "sbs-battery", 1 },
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700985 {}
986};
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800987MODULE_DEVICE_TABLE(i2c, sbs_id);
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700988
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800989static struct i2c_driver sbs_battery_driver = {
990 .probe = sbs_probe,
Bill Pemberton28ea73f2012-11-19 13:20:40 -0500991 .remove = sbs_remove,
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800992 .id_table = sbs_id,
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700993 .driver = {
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800994 .name = "sbs-battery",
Sachin Kamat075ed032013-03-14 15:49:46 +0530995 .of_match_table = of_match_ptr(sbs_dt_ids),
Lars-Peter Clausen9c1d1af2013-03-10 14:34:07 +0100996 .pm = SBS_PM_OPS,
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700997 },
998};
Axel Lin5ff92e72012-01-21 14:42:54 +0800999module_i2c_driver(sbs_battery_driver);
Rhyland Kleina7640bf2010-09-05 15:31:23 -07001000
Rhyland Klein3ddca0622011-12-05 17:50:46 -08001001MODULE_DESCRIPTION("SBS battery monitor driver");
Rhyland Kleina7640bf2010-09-05 15:31:23 -07001002MODULE_LICENSE("GPL");
Frans Klaverf4ed9502015-06-10 14:16:56 +02001003
1004module_param(force_load, bool, S_IRUSR | S_IRGRP | S_IROTH);
1005MODULE_PARM_DESC(force_load,
1006 "Attempt to load the driver even if no battery is connected");