blob: 768b9fcb58eacdc533e8094f8f68327bfae518e2 [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,
44 REG_CYCLE_COUNT,
Rhyland Kleind3ab61e2010-09-21 15:33:55 -070045 REG_SERIAL_NUMBER,
46 REG_REMAINING_CAPACITY,
Rhyland Klein51d07562011-01-25 11:10:06 -080047 REG_REMAINING_CAPACITY_CHARGE,
Rhyland Kleind3ab61e2010-09-21 15:33:55 -070048 REG_FULL_CHARGE_CAPACITY,
Rhyland Klein51d07562011-01-25 11:10:06 -080049 REG_FULL_CHARGE_CAPACITY_CHARGE,
Rhyland Kleind3ab61e2010-09-21 15:33:55 -070050 REG_DESIGN_CAPACITY,
Rhyland Klein51d07562011-01-25 11:10:06 -080051 REG_DESIGN_CAPACITY_CHARGE,
Simon Que4495b0a2014-08-04 13:47:46 +020052 REG_DESIGN_VOLTAGE_MIN,
53 REG_DESIGN_VOLTAGE_MAX,
Cheng-Yi Chiang9ea89402014-08-04 13:47:45 +020054 REG_MANUFACTURER,
55 REG_MODEL_NAME,
Rhyland Kleina7640bf2010-09-05 15:31:23 -070056};
57
Rhyland Klein51d07562011-01-25 11:10:06 -080058/* Battery Mode defines */
59#define BATTERY_MODE_OFFSET 0x03
60#define BATTERY_MODE_MASK 0x8000
Rhyland Klein3ddca0622011-12-05 17:50:46 -080061enum sbs_battery_mode {
Rhyland Klein51d07562011-01-25 11:10:06 -080062 BATTERY_MODE_AMPS,
63 BATTERY_MODE_WATTS
64};
65
Rhyland Kleina7640bf2010-09-05 15:31:23 -070066/* manufacturer access defines */
67#define MANUFACTURER_ACCESS_STATUS 0x0006
68#define MANUFACTURER_ACCESS_SLEEP 0x0011
69
70/* battery status value bits */
Rhyland Kleind3ab61e2010-09-21 15:33:55 -070071#define BATTERY_DISCHARGING 0x40
Rhyland Kleina7640bf2010-09-05 15:31:23 -070072#define BATTERY_FULL_CHARGED 0x20
73#define BATTERY_FULL_DISCHARGED 0x10
74
Cheng-Yi Chiang9ea89402014-08-04 13:47:45 +020075/* min_value and max_value are only valid for numerical data */
Rhyland Klein3ddca0622011-12-05 17:50:46 -080076#define SBS_DATA(_psp, _addr, _min_value, _max_value) { \
Rhyland Kleina7640bf2010-09-05 15:31:23 -070077 .psp = _psp, \
78 .addr = _addr, \
79 .min_value = _min_value, \
80 .max_value = _max_value, \
81}
82
Rhyland Klein3ddca0622011-12-05 17:50:46 -080083static const struct chip_data {
Rhyland Kleina7640bf2010-09-05 15:31:23 -070084 enum power_supply_property psp;
85 u8 addr;
86 int min_value;
87 int max_value;
Rhyland Klein3ddca0622011-12-05 17:50:46 -080088} sbs_data[] = {
Rhyland Kleina7640bf2010-09-05 15:31:23 -070089 [REG_MANUFACTURER_DATA] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -080090 SBS_DATA(POWER_SUPPLY_PROP_PRESENT, 0x00, 0, 65535),
Rhyland Kleina7640bf2010-09-05 15:31:23 -070091 [REG_TEMPERATURE] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -080092 SBS_DATA(POWER_SUPPLY_PROP_TEMP, 0x08, 0, 65535),
Rhyland Kleina7640bf2010-09-05 15:31:23 -070093 [REG_VOLTAGE] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -080094 SBS_DATA(POWER_SUPPLY_PROP_VOLTAGE_NOW, 0x09, 0, 20000),
Rhyland Kleina7640bf2010-09-05 15:31:23 -070095 [REG_CURRENT] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -080096 SBS_DATA(POWER_SUPPLY_PROP_CURRENT_NOW, 0x0A, -32768, 32767),
Rhyland Kleina7640bf2010-09-05 15:31:23 -070097 [REG_CAPACITY] =
Nikolaus Vossb1f092f2012-04-25 08:59:03 +020098 SBS_DATA(POWER_SUPPLY_PROP_CAPACITY, 0x0D, 0, 100),
Rhyland Kleind3ab61e2010-09-21 15:33:55 -070099 [REG_REMAINING_CAPACITY] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800100 SBS_DATA(POWER_SUPPLY_PROP_ENERGY_NOW, 0x0F, 0, 65535),
Rhyland Klein51d07562011-01-25 11:10:06 -0800101 [REG_REMAINING_CAPACITY_CHARGE] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800102 SBS_DATA(POWER_SUPPLY_PROP_CHARGE_NOW, 0x0F, 0, 65535),
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700103 [REG_FULL_CHARGE_CAPACITY] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800104 SBS_DATA(POWER_SUPPLY_PROP_ENERGY_FULL, 0x10, 0, 65535),
Rhyland Klein51d07562011-01-25 11:10:06 -0800105 [REG_FULL_CHARGE_CAPACITY_CHARGE] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800106 SBS_DATA(POWER_SUPPLY_PROP_CHARGE_FULL, 0x10, 0, 65535),
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700107 [REG_TIME_TO_EMPTY] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800108 SBS_DATA(POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG, 0x12, 0, 65535),
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700109 [REG_TIME_TO_FULL] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800110 SBS_DATA(POWER_SUPPLY_PROP_TIME_TO_FULL_AVG, 0x13, 0, 65535),
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700111 [REG_STATUS] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800112 SBS_DATA(POWER_SUPPLY_PROP_STATUS, 0x16, 0, 65535),
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700113 [REG_CYCLE_COUNT] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800114 SBS_DATA(POWER_SUPPLY_PROP_CYCLE_COUNT, 0x17, 0, 65535),
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700115 [REG_DESIGN_CAPACITY] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800116 SBS_DATA(POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN, 0x18, 0, 65535),
Rhyland Klein51d07562011-01-25 11:10:06 -0800117 [REG_DESIGN_CAPACITY_CHARGE] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800118 SBS_DATA(POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN, 0x18, 0, 65535),
Simon Que4495b0a2014-08-04 13:47:46 +0200119 [REG_DESIGN_VOLTAGE_MIN] =
120 SBS_DATA(POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN, 0x19, 0, 65535),
121 [REG_DESIGN_VOLTAGE_MAX] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800122 SBS_DATA(POWER_SUPPLY_PROP_VOLTAGE_MAX_DESIGN, 0x19, 0, 65535),
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700123 [REG_SERIAL_NUMBER] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800124 SBS_DATA(POWER_SUPPLY_PROP_SERIAL_NUMBER, 0x1C, 0, 65535),
Cheng-Yi Chiang9ea89402014-08-04 13:47:45 +0200125 /* Properties of type `const char *' */
126 [REG_MANUFACTURER] =
127 SBS_DATA(POWER_SUPPLY_PROP_MANUFACTURER, 0x20, 0, 65535),
128 [REG_MODEL_NAME] =
129 SBS_DATA(POWER_SUPPLY_PROP_MODEL_NAME, 0x21, 0, 65535)
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700130};
131
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800132static enum power_supply_property sbs_properties[] = {
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700133 POWER_SUPPLY_PROP_STATUS,
134 POWER_SUPPLY_PROP_HEALTH,
135 POWER_SUPPLY_PROP_PRESENT,
136 POWER_SUPPLY_PROP_TECHNOLOGY,
137 POWER_SUPPLY_PROP_CYCLE_COUNT,
138 POWER_SUPPLY_PROP_VOLTAGE_NOW,
139 POWER_SUPPLY_PROP_CURRENT_NOW,
140 POWER_SUPPLY_PROP_CAPACITY,
141 POWER_SUPPLY_PROP_TEMP,
142 POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG,
143 POWER_SUPPLY_PROP_TIME_TO_FULL_AVG,
144 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Simon Que4495b0a2014-08-04 13:47:46 +0200145 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700146 POWER_SUPPLY_PROP_VOLTAGE_MAX_DESIGN,
147 POWER_SUPPLY_PROP_ENERGY_NOW,
148 POWER_SUPPLY_PROP_ENERGY_FULL,
149 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN,
Rhyland Klein51d07562011-01-25 11:10:06 -0800150 POWER_SUPPLY_PROP_CHARGE_NOW,
151 POWER_SUPPLY_PROP_CHARGE_FULL,
152 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
Cheng-Yi Chiang9ea89402014-08-04 13:47:45 +0200153 /* Properties of type `const char *' */
154 POWER_SUPPLY_PROP_MANUFACTURER,
155 POWER_SUPPLY_PROP_MODEL_NAME
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700156};
157
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800158struct sbs_info {
Rhyland Kleinbb879102011-02-28 16:55:28 -0800159 struct i2c_client *client;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100160 struct power_supply *power_supply;
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800161 struct sbs_platform_data *pdata;
Rhyland Kleinbb879102011-02-28 16:55:28 -0800162 bool is_present;
163 bool gpio_detect;
164 bool enable_detection;
165 int irq;
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700166 int last_state;
167 int poll_time;
168 struct delayed_work work;
169 int ignore_changes;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700170};
171
Cheng-Yi Chiang9ea89402014-08-04 13:47:45 +0200172static char model_name[I2C_SMBUS_BLOCK_MAX + 1];
173static char manufacturer[I2C_SMBUS_BLOCK_MAX + 1];
Frans Klaverf4ed9502015-06-10 14:16:56 +0200174static bool force_load;
Cheng-Yi Chiang9ea89402014-08-04 13:47:45 +0200175
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800176static int sbs_read_word_data(struct i2c_client *client, u8 address)
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700177{
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800178 struct sbs_info *chip = i2c_get_clientdata(client);
Rhyland Kleinff28fce2011-02-28 16:55:29 -0800179 s32 ret = 0;
180 int retries = 1;
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700181
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800182 if (chip->pdata)
183 retries = max(chip->pdata->i2c_retry_count + 1, 1);
Rhyland Kleinff28fce2011-02-28 16:55:29 -0800184
185 while (retries > 0) {
186 ret = i2c_smbus_read_word_data(client, address);
187 if (ret >= 0)
188 break;
189 retries--;
190 }
191
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700192 if (ret < 0) {
Rhyland Kleina7d9ace2011-03-09 16:18:02 -0800193 dev_dbg(&client->dev,
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700194 "%s: i2c read at address 0x%x failed\n",
195 __func__, address);
196 return ret;
197 }
Rhyland Kleinff28fce2011-02-28 16:55:29 -0800198
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700199 return le16_to_cpu(ret);
200}
201
Cheng-Yi Chiang9ea89402014-08-04 13:47:45 +0200202static int sbs_read_string_data(struct i2c_client *client, u8 address,
203 char *values)
204{
205 struct sbs_info *chip = i2c_get_clientdata(client);
206 s32 ret = 0, block_length = 0;
207 int retries_length = 1, retries_block = 1;
208 u8 block_buffer[I2C_SMBUS_BLOCK_MAX + 1];
209
210 if (chip->pdata) {
211 retries_length = max(chip->pdata->i2c_retry_count + 1, 1);
212 retries_block = max(chip->pdata->i2c_retry_count + 1, 1);
213 }
214
215 /* Adapter needs to support these two functions */
216 if (!i2c_check_functionality(client->adapter,
217 I2C_FUNC_SMBUS_BYTE_DATA |
218 I2C_FUNC_SMBUS_I2C_BLOCK)){
219 return -ENODEV;
220 }
221
222 /* Get the length of block data */
223 while (retries_length > 0) {
224 ret = i2c_smbus_read_byte_data(client, address);
225 if (ret >= 0)
226 break;
227 retries_length--;
228 }
229
230 if (ret < 0) {
231 dev_dbg(&client->dev,
232 "%s: i2c read at address 0x%x failed\n",
233 __func__, address);
234 return ret;
235 }
236
237 /* block_length does not include NULL terminator */
238 block_length = ret;
239 if (block_length > I2C_SMBUS_BLOCK_MAX) {
240 dev_err(&client->dev,
241 "%s: Returned block_length is longer than 0x%x\n",
242 __func__, I2C_SMBUS_BLOCK_MAX);
243 return -EINVAL;
244 }
245
246 /* Get the block data */
247 while (retries_block > 0) {
248 ret = i2c_smbus_read_i2c_block_data(
249 client, address,
250 block_length + 1, block_buffer);
251 if (ret >= 0)
252 break;
253 retries_block--;
254 }
255
256 if (ret < 0) {
257 dev_dbg(&client->dev,
258 "%s: i2c read at address 0x%x failed\n",
259 __func__, address);
260 return ret;
261 }
262
263 /* block_buffer[0] == block_length */
264 memcpy(values, block_buffer + 1, block_length);
265 values[block_length] = '\0';
266
267 return le16_to_cpu(ret);
268}
269
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800270static int sbs_write_word_data(struct i2c_client *client, u8 address,
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700271 u16 value)
272{
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800273 struct sbs_info *chip = i2c_get_clientdata(client);
Rhyland Kleinff28fce2011-02-28 16:55:29 -0800274 s32 ret = 0;
275 int retries = 1;
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700276
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800277 if (chip->pdata)
278 retries = max(chip->pdata->i2c_retry_count + 1, 1);
Rhyland Kleinff28fce2011-02-28 16:55:29 -0800279
280 while (retries > 0) {
281 ret = i2c_smbus_write_word_data(client, address,
282 le16_to_cpu(value));
283 if (ret >= 0)
284 break;
285 retries--;
286 }
287
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700288 if (ret < 0) {
Rhyland Kleina7d9ace2011-03-09 16:18:02 -0800289 dev_dbg(&client->dev,
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700290 "%s: i2c write to address 0x%x failed\n",
291 __func__, address);
292 return ret;
293 }
Rhyland Kleinff28fce2011-02-28 16:55:29 -0800294
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700295 return 0;
296}
297
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800298static int sbs_get_battery_presence_and_health(
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700299 struct i2c_client *client, enum power_supply_property psp,
300 union power_supply_propval *val)
301{
302 s32 ret;
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800303 struct sbs_info *chip = i2c_get_clientdata(client);
Rhyland Kleinbb879102011-02-28 16:55:28 -0800304
305 if (psp == POWER_SUPPLY_PROP_PRESENT &&
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800306 chip->gpio_detect) {
307 ret = gpio_get_value(chip->pdata->battery_detect);
308 if (ret == chip->pdata->battery_detect_present)
Rhyland Kleinbb879102011-02-28 16:55:28 -0800309 val->intval = 1;
310 else
311 val->intval = 0;
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800312 chip->is_present = val->intval;
Rhyland Kleinbb879102011-02-28 16:55:28 -0800313 return ret;
314 }
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700315
316 /* Write to ManufacturerAccess with
317 * ManufacturerAccess command and then
318 * read the status */
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800319 ret = sbs_write_word_data(client, sbs_data[REG_MANUFACTURER_DATA].addr,
320 MANUFACTURER_ACCESS_STATUS);
Rhyland Kleinbb879102011-02-28 16:55:28 -0800321 if (ret < 0) {
322 if (psp == POWER_SUPPLY_PROP_PRESENT)
323 val->intval = 0; /* battery removed */
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700324 return ret;
Rhyland Kleinbb879102011-02-28 16:55:28 -0800325 }
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700326
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800327 ret = sbs_read_word_data(client, sbs_data[REG_MANUFACTURER_DATA].addr);
Rhyland Kleina7d9ace2011-03-09 16:18:02 -0800328 if (ret < 0)
329 return ret;
330
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800331 if (ret < sbs_data[REG_MANUFACTURER_DATA].min_value ||
332 ret > sbs_data[REG_MANUFACTURER_DATA].max_value) {
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700333 val->intval = 0;
334 return 0;
335 }
336
337 /* Mask the upper nibble of 2nd byte and
338 * lower byte of response then
339 * shift the result by 8 to get status*/
340 ret &= 0x0F00;
341 ret >>= 8;
342 if (psp == POWER_SUPPLY_PROP_PRESENT) {
343 if (ret == 0x0F)
344 /* battery removed */
345 val->intval = 0;
346 else
347 val->intval = 1;
348 } else if (psp == POWER_SUPPLY_PROP_HEALTH) {
349 if (ret == 0x09)
350 val->intval = POWER_SUPPLY_HEALTH_UNSPEC_FAILURE;
351 else if (ret == 0x0B)
352 val->intval = POWER_SUPPLY_HEALTH_OVERHEAT;
353 else if (ret == 0x0C)
354 val->intval = POWER_SUPPLY_HEALTH_DEAD;
355 else
356 val->intval = POWER_SUPPLY_HEALTH_GOOD;
357 }
358
359 return 0;
360}
361
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800362static int sbs_get_battery_property(struct i2c_client *client,
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700363 int reg_offset, enum power_supply_property psp,
364 union power_supply_propval *val)
365{
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800366 struct sbs_info *chip = i2c_get_clientdata(client);
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700367 s32 ret;
368
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800369 ret = sbs_read_word_data(client, sbs_data[reg_offset].addr);
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700370 if (ret < 0)
371 return ret;
372
373 /* returned values are 16 bit */
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800374 if (sbs_data[reg_offset].min_value < 0)
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700375 ret = (s16)ret;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700376
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800377 if (ret >= sbs_data[reg_offset].min_value &&
378 ret <= sbs_data[reg_offset].max_value) {
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700379 val->intval = ret;
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700380 if (psp != POWER_SUPPLY_PROP_STATUS)
381 return 0;
382
383 if (ret & BATTERY_FULL_CHARGED)
384 val->intval = POWER_SUPPLY_STATUS_FULL;
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700385 else if (ret & BATTERY_DISCHARGING)
386 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
387 else
388 val->intval = POWER_SUPPLY_STATUS_CHARGING;
389
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800390 if (chip->poll_time == 0)
391 chip->last_state = val->intval;
392 else if (chip->last_state != val->intval) {
393 cancel_delayed_work_sync(&chip->work);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100394 power_supply_changed(chip->power_supply);
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800395 chip->poll_time = 0;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700396 }
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700397 } else {
398 if (psp == POWER_SUPPLY_PROP_STATUS)
399 val->intval = POWER_SUPPLY_STATUS_UNKNOWN;
400 else
401 val->intval = 0;
402 }
403
404 return 0;
405}
406
Cheng-Yi Chiang9ea89402014-08-04 13:47:45 +0200407static int sbs_get_battery_string_property(struct i2c_client *client,
408 int reg_offset, enum power_supply_property psp, char *val)
409{
410 s32 ret;
411
412 ret = sbs_read_string_data(client, sbs_data[reg_offset].addr, val);
413
414 if (ret < 0)
415 return ret;
416
417 return 0;
418}
419
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800420static void sbs_unit_adjustment(struct i2c_client *client,
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700421 enum power_supply_property psp, union power_supply_propval *val)
422{
423#define BASE_UNIT_CONVERSION 1000
424#define BATTERY_MODE_CAP_MULT_WATT (10 * BASE_UNIT_CONVERSION)
Benson Leung909a78b2011-02-27 17:41:48 -0800425#define TIME_UNIT_CONVERSION 60
426#define TEMP_KELVIN_TO_CELSIUS 2731
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700427 switch (psp) {
428 case POWER_SUPPLY_PROP_ENERGY_NOW:
429 case POWER_SUPPLY_PROP_ENERGY_FULL:
430 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800431 /* sbs provides energy in units of 10mWh.
Benson Leung909a78b2011-02-27 17:41:48 -0800432 * Convert to µWh
433 */
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700434 val->intval *= BATTERY_MODE_CAP_MULT_WATT;
435 break;
436
437 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
Simon Que4495b0a2014-08-04 13:47:46 +0200438 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700439 case POWER_SUPPLY_PROP_VOLTAGE_MAX_DESIGN:
440 case POWER_SUPPLY_PROP_CURRENT_NOW:
Rhyland Klein51d07562011-01-25 11:10:06 -0800441 case POWER_SUPPLY_PROP_CHARGE_NOW:
442 case POWER_SUPPLY_PROP_CHARGE_FULL:
443 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700444 val->intval *= BASE_UNIT_CONVERSION;
445 break;
446
447 case POWER_SUPPLY_PROP_TEMP:
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800448 /* sbs provides battery temperature in 0.1K
Benson Leung909a78b2011-02-27 17:41:48 -0800449 * so convert it to 0.1°C
450 */
451 val->intval -= TEMP_KELVIN_TO_CELSIUS;
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700452 break;
453
454 case POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG:
455 case POWER_SUPPLY_PROP_TIME_TO_FULL_AVG:
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800456 /* sbs provides time to empty and time to full in minutes.
Benson Leung909a78b2011-02-27 17:41:48 -0800457 * Convert to seconds
458 */
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700459 val->intval *= TIME_UNIT_CONVERSION;
460 break;
461
462 default:
463 dev_dbg(&client->dev,
464 "%s: no need for unit conversion %d\n", __func__, psp);
465 }
466}
467
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800468static enum sbs_battery_mode sbs_set_battery_mode(struct i2c_client *client,
469 enum sbs_battery_mode mode)
Rhyland Klein51d07562011-01-25 11:10:06 -0800470{
471 int ret, original_val;
472
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800473 original_val = sbs_read_word_data(client, BATTERY_MODE_OFFSET);
Rhyland Klein51d07562011-01-25 11:10:06 -0800474 if (original_val < 0)
475 return original_val;
476
477 if ((original_val & BATTERY_MODE_MASK) == mode)
478 return mode;
479
480 if (mode == BATTERY_MODE_AMPS)
481 ret = original_val & ~BATTERY_MODE_MASK;
482 else
483 ret = original_val | BATTERY_MODE_MASK;
484
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800485 ret = sbs_write_word_data(client, BATTERY_MODE_OFFSET, ret);
Rhyland Klein51d07562011-01-25 11:10:06 -0800486 if (ret < 0)
487 return ret;
488
489 return original_val & BATTERY_MODE_MASK;
490}
491
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800492static int sbs_get_battery_capacity(struct i2c_client *client,
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700493 int reg_offset, enum power_supply_property psp,
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700494 union power_supply_propval *val)
495{
496 s32 ret;
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800497 enum sbs_battery_mode mode = BATTERY_MODE_WATTS;
Rhyland Klein51d07562011-01-25 11:10:06 -0800498
499 if (power_supply_is_amp_property(psp))
500 mode = BATTERY_MODE_AMPS;
501
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800502 mode = sbs_set_battery_mode(client, mode);
Rhyland Klein51d07562011-01-25 11:10:06 -0800503 if (mode < 0)
504 return mode;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700505
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800506 ret = sbs_read_word_data(client, sbs_data[reg_offset].addr);
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700507 if (ret < 0)
508 return ret;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700509
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700510 if (psp == POWER_SUPPLY_PROP_CAPACITY) {
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800511 /* sbs spec says that this can be >100 %
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700512 * even if max value is 100 % */
513 val->intval = min(ret, 100);
514 } else
515 val->intval = ret;
516
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800517 ret = sbs_set_battery_mode(client, mode);
Rhyland Klein51d07562011-01-25 11:10:06 -0800518 if (ret < 0)
519 return ret;
520
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700521 return 0;
522}
523
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800524static char sbs_serial[5];
525static int sbs_get_battery_serial_number(struct i2c_client *client,
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700526 union power_supply_propval *val)
527{
528 int ret;
529
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800530 ret = sbs_read_word_data(client, sbs_data[REG_SERIAL_NUMBER].addr);
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700531 if (ret < 0)
532 return ret;
533
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800534 ret = sprintf(sbs_serial, "%04x", ret);
535 val->strval = sbs_serial;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700536
537 return 0;
538}
539
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800540static int sbs_get_property_index(struct i2c_client *client,
Rhyland Klein51d07562011-01-25 11:10:06 -0800541 enum power_supply_property psp)
542{
543 int count;
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800544 for (count = 0; count < ARRAY_SIZE(sbs_data); count++)
545 if (psp == sbs_data[count].psp)
Rhyland Klein51d07562011-01-25 11:10:06 -0800546 return count;
547
548 dev_warn(&client->dev,
549 "%s: Invalid Property - %d\n", __func__, psp);
550
551 return -EINVAL;
552}
553
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800554static int sbs_get_property(struct power_supply *psy,
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700555 enum power_supply_property psp,
556 union power_supply_propval *val)
557{
Rhyland Kleinbb879102011-02-28 16:55:28 -0800558 int ret = 0;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100559 struct sbs_info *chip = power_supply_get_drvdata(psy);
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800560 struct i2c_client *client = chip->client;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700561
562 switch (psp) {
563 case POWER_SUPPLY_PROP_PRESENT:
564 case POWER_SUPPLY_PROP_HEALTH:
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800565 ret = sbs_get_battery_presence_and_health(client, psp, val);
Rhyland Kleina7d9ace2011-03-09 16:18:02 -0800566 if (psp == POWER_SUPPLY_PROP_PRESENT)
567 return 0;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700568 break;
569
570 case POWER_SUPPLY_PROP_TECHNOLOGY:
571 val->intval = POWER_SUPPLY_TECHNOLOGY_LION;
Nikolaus Voss5da50982012-05-09 08:30:44 +0200572 goto done; /* don't trigger power_supply_changed()! */
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700573
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700574 case POWER_SUPPLY_PROP_ENERGY_NOW:
575 case POWER_SUPPLY_PROP_ENERGY_FULL:
576 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
Rhyland Klein51d07562011-01-25 11:10:06 -0800577 case POWER_SUPPLY_PROP_CHARGE_NOW:
578 case POWER_SUPPLY_PROP_CHARGE_FULL:
579 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700580 case POWER_SUPPLY_PROP_CAPACITY:
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800581 ret = sbs_get_property_index(client, psp);
Rhyland Kleinbb879102011-02-28 16:55:28 -0800582 if (ret < 0)
583 break;
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700584
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800585 ret = sbs_get_battery_capacity(client, ret, psp, val);
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700586 break;
587
588 case POWER_SUPPLY_PROP_SERIAL_NUMBER:
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800589 ret = sbs_get_battery_serial_number(client, val);
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700590 break;
591
592 case POWER_SUPPLY_PROP_STATUS:
593 case POWER_SUPPLY_PROP_CYCLE_COUNT:
594 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
595 case POWER_SUPPLY_PROP_CURRENT_NOW:
596 case POWER_SUPPLY_PROP_TEMP:
597 case POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG:
598 case POWER_SUPPLY_PROP_TIME_TO_FULL_AVG:
Simon Que4495b0a2014-08-04 13:47:46 +0200599 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700600 case POWER_SUPPLY_PROP_VOLTAGE_MAX_DESIGN:
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800601 ret = sbs_get_property_index(client, psp);
Rhyland Kleinbb879102011-02-28 16:55:28 -0800602 if (ret < 0)
603 break;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700604
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800605 ret = sbs_get_battery_property(client, ret, psp, val);
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700606 break;
607
Cheng-Yi Chiang9ea89402014-08-04 13:47:45 +0200608 case POWER_SUPPLY_PROP_MODEL_NAME:
609 ret = sbs_get_property_index(client, psp);
610 if (ret < 0)
611 break;
612
613 ret = sbs_get_battery_string_property(client, ret, psp,
614 model_name);
615 val->strval = model_name;
616 break;
617
618 case POWER_SUPPLY_PROP_MANUFACTURER:
619 ret = sbs_get_property_index(client, psp);
620 if (ret < 0)
621 break;
622
623 ret = sbs_get_battery_string_property(client, ret, psp,
624 manufacturer);
625 val->strval = manufacturer;
626 break;
627
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700628 default:
629 dev_err(&client->dev,
630 "%s: INVALID property\n", __func__);
631 return -EINVAL;
632 }
633
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800634 if (!chip->enable_detection)
Rhyland Kleinbb879102011-02-28 16:55:28 -0800635 goto done;
636
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800637 if (!chip->gpio_detect &&
638 chip->is_present != (ret >= 0)) {
639 chip->is_present = (ret >= 0);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100640 power_supply_changed(chip->power_supply);
Rhyland Kleinbb879102011-02-28 16:55:28 -0800641 }
642
643done:
644 if (!ret) {
645 /* Convert units to match requirements for power supply class */
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800646 sbs_unit_adjustment(client, psp, val);
Rhyland Kleinbb879102011-02-28 16:55:28 -0800647 }
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700648
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700649 dev_dbg(&client->dev,
Rhyland Kleina7d9ace2011-03-09 16:18:02 -0800650 "%s: property = %d, value = %x\n", __func__, psp, val->intval);
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700651
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800652 if (ret && chip->is_present)
Rhyland Kleina7d9ace2011-03-09 16:18:02 -0800653 return ret;
654
655 /* battery not present, so return NODATA for properties */
656 if (ret)
657 return -ENODATA;
658
659 return 0;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700660}
661
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800662static irqreturn_t sbs_irq(int irq, void *devid)
Rhyland Kleinbb879102011-02-28 16:55:28 -0800663{
664 struct power_supply *battery = devid;
665
666 power_supply_changed(battery);
667
668 return IRQ_HANDLED;
669}
670
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800671static void sbs_external_power_changed(struct power_supply *psy)
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700672{
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100673 struct sbs_info *chip = power_supply_get_drvdata(psy);
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700674
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800675 if (chip->ignore_changes > 0) {
676 chip->ignore_changes--;
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700677 return;
678 }
679
680 /* cancel outstanding work */
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800681 cancel_delayed_work_sync(&chip->work);
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700682
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800683 schedule_delayed_work(&chip->work, HZ);
684 chip->poll_time = chip->pdata->poll_retry_count;
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700685}
686
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800687static void sbs_delayed_work(struct work_struct *work)
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700688{
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800689 struct sbs_info *chip;
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700690 s32 ret;
691
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800692 chip = container_of(work, struct sbs_info, work.work);
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700693
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800694 ret = sbs_read_word_data(chip->client, sbs_data[REG_STATUS].addr);
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700695 /* if the read failed, give up on this work */
696 if (ret < 0) {
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800697 chip->poll_time = 0;
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700698 return;
699 }
700
701 if (ret & BATTERY_FULL_CHARGED)
702 ret = POWER_SUPPLY_STATUS_FULL;
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700703 else if (ret & BATTERY_DISCHARGING)
704 ret = POWER_SUPPLY_STATUS_DISCHARGING;
705 else
706 ret = POWER_SUPPLY_STATUS_CHARGING;
707
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800708 if (chip->last_state != ret) {
709 chip->poll_time = 0;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100710 power_supply_changed(chip->power_supply);
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700711 return;
712 }
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800713 if (chip->poll_time > 0) {
714 schedule_delayed_work(&chip->work, HZ);
715 chip->poll_time--;
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700716 return;
717 }
718}
719
Rhyland Klein6c75ea12011-09-14 13:19:07 -0700720#if defined(CONFIG_OF)
721
722#include <linux/of_device.h>
723#include <linux/of_gpio.h>
724
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800725static const struct of_device_id sbs_dt_ids[] = {
726 { .compatible = "sbs,sbs-battery" },
Rhyland Klein6c75ea12011-09-14 13:19:07 -0700727 { .compatible = "ti,bq20z75" },
728 { }
729};
Olof Johansson62df3932012-01-06 05:45:34 +0400730MODULE_DEVICE_TABLE(of, sbs_dt_ids);
Rhyland Klein6c75ea12011-09-14 13:19:07 -0700731
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800732static struct sbs_platform_data *sbs_of_populate_pdata(
Rhyland Klein6c75ea12011-09-14 13:19:07 -0700733 struct i2c_client *client)
734{
735 struct device_node *of_node = client->dev.of_node;
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800736 struct sbs_platform_data *pdata = client->dev.platform_data;
Rhyland Klein6c75ea12011-09-14 13:19:07 -0700737 enum of_gpio_flags gpio_flags;
738 int rc;
739 u32 prop;
740
741 /* verify this driver matches this device */
742 if (!of_node)
743 return NULL;
744
745 /* if platform data is set, honor it */
746 if (pdata)
747 return pdata;
748
749 /* first make sure at least one property is set, otherwise
750 * it won't change behavior from running without pdata.
751 */
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800752 if (!of_get_property(of_node, "sbs,i2c-retry-count", NULL) &&
753 !of_get_property(of_node, "sbs,poll-retry-count", NULL) &&
754 !of_get_property(of_node, "sbs,battery-detect-gpios", NULL))
Rhyland Klein6c75ea12011-09-14 13:19:07 -0700755 goto of_out;
756
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800757 pdata = devm_kzalloc(&client->dev, sizeof(struct sbs_platform_data),
Rhyland Klein6c75ea12011-09-14 13:19:07 -0700758 GFP_KERNEL);
759 if (!pdata)
760 goto of_out;
761
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800762 rc = of_property_read_u32(of_node, "sbs,i2c-retry-count", &prop);
Rhyland Klein6c75ea12011-09-14 13:19:07 -0700763 if (!rc)
764 pdata->i2c_retry_count = prop;
765
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800766 rc = of_property_read_u32(of_node, "sbs,poll-retry-count", &prop);
Rhyland Klein6c75ea12011-09-14 13:19:07 -0700767 if (!rc)
768 pdata->poll_retry_count = prop;
769
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800770 if (!of_get_property(of_node, "sbs,battery-detect-gpios", NULL)) {
Rhyland Klein6c75ea12011-09-14 13:19:07 -0700771 pdata->battery_detect = -1;
772 goto of_out;
773 }
774
775 pdata->battery_detect = of_get_named_gpio_flags(of_node,
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800776 "sbs,battery-detect-gpios", 0, &gpio_flags);
Rhyland Klein6c75ea12011-09-14 13:19:07 -0700777
778 if (gpio_flags & OF_GPIO_ACTIVE_LOW)
779 pdata->battery_detect_present = 0;
780 else
781 pdata->battery_detect_present = 1;
782
783of_out:
784 return pdata;
785}
786#else
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800787static struct sbs_platform_data *sbs_of_populate_pdata(
Rhyland Klein6c75ea12011-09-14 13:19:07 -0700788 struct i2c_client *client)
789{
790 return client->dev.platform_data;
791}
792#endif
793
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100794static const struct power_supply_desc sbs_default_desc = {
795 .type = POWER_SUPPLY_TYPE_BATTERY,
796 .properties = sbs_properties,
797 .num_properties = ARRAY_SIZE(sbs_properties),
798 .get_property = sbs_get_property,
799 .external_power_changed = sbs_external_power_changed,
800};
801
Bill Pembertonc8afa642012-11-19 13:22:23 -0500802static int sbs_probe(struct i2c_client *client,
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700803 const struct i2c_device_id *id)
804{
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800805 struct sbs_info *chip;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100806 struct power_supply_desc *sbs_desc;
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800807 struct sbs_platform_data *pdata = client->dev.platform_data;
Krzysztof Kozlowski2dc92152015-03-12 08:44:02 +0100808 struct power_supply_config psy_cfg = {};
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700809 int rc;
Rhyland Kleinbb879102011-02-28 16:55:28 -0800810 int irq;
Rhyland Klein52f56c62011-12-05 17:50:49 -0800811
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100812 sbs_desc = devm_kmemdup(&client->dev, &sbs_default_desc,
813 sizeof(*sbs_desc), GFP_KERNEL);
814 if (!sbs_desc)
Rhyland Klein52f56c62011-12-05 17:50:49 -0800815 return -ENOMEM;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100816
817 sbs_desc->name = devm_kasprintf(&client->dev, GFP_KERNEL, "sbs-%s",
818 dev_name(&client->dev));
819 if (!sbs_desc->name)
820 return -ENOMEM;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700821
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800822 chip = kzalloc(sizeof(struct sbs_info), GFP_KERNEL);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100823 if (!chip)
824 return -ENOMEM;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700825
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800826 chip->client = client;
827 chip->enable_detection = false;
828 chip->gpio_detect = false;
Krzysztof Kozlowski2dc92152015-03-12 08:44:02 +0100829 psy_cfg.of_node = client->dev.of_node;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100830 psy_cfg.drv_data = chip;
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700831 /* ignore first notification of external change, it is generated
832 * from the power_supply_register call back
833 */
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800834 chip->ignore_changes = 1;
835 chip->last_state = POWER_SUPPLY_STATUS_UNKNOWN;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700836
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800837 pdata = sbs_of_populate_pdata(client);
Rhyland Klein6c75ea12011-09-14 13:19:07 -0700838
Rhyland Kleinbb879102011-02-28 16:55:28 -0800839 if (pdata) {
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800840 chip->gpio_detect = gpio_is_valid(pdata->battery_detect);
841 chip->pdata = pdata;
Rhyland Kleinbb879102011-02-28 16:55:28 -0800842 }
843
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800844 i2c_set_clientdata(client, chip);
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700845
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800846 if (!chip->gpio_detect)
Rhyland Kleinbb879102011-02-28 16:55:28 -0800847 goto skip_gpio;
848
849 rc = gpio_request(pdata->battery_detect, dev_name(&client->dev));
850 if (rc) {
851 dev_warn(&client->dev, "Failed to request gpio: %d\n", rc);
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800852 chip->gpio_detect = false;
Rhyland Kleinbb879102011-02-28 16:55:28 -0800853 goto skip_gpio;
854 }
855
856 rc = gpio_direction_input(pdata->battery_detect);
857 if (rc) {
858 dev_warn(&client->dev, "Failed to get gpio as input: %d\n", rc);
859 gpio_free(pdata->battery_detect);
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800860 chip->gpio_detect = false;
Rhyland Kleinbb879102011-02-28 16:55:28 -0800861 goto skip_gpio;
862 }
863
864 irq = gpio_to_irq(pdata->battery_detect);
865 if (irq <= 0) {
866 dev_warn(&client->dev, "Failed to get gpio as irq: %d\n", irq);
867 gpio_free(pdata->battery_detect);
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800868 chip->gpio_detect = false;
Rhyland Kleinbb879102011-02-28 16:55:28 -0800869 goto skip_gpio;
870 }
871
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800872 rc = request_irq(irq, sbs_irq,
Rhyland Kleinbb879102011-02-28 16:55:28 -0800873 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100874 dev_name(&client->dev), chip->power_supply);
Rhyland Kleinbb879102011-02-28 16:55:28 -0800875 if (rc) {
876 dev_warn(&client->dev, "Failed to request irq: %d\n", rc);
877 gpio_free(pdata->battery_detect);
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800878 chip->gpio_detect = false;
Rhyland Kleinbb879102011-02-28 16:55:28 -0800879 goto skip_gpio;
880 }
881
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800882 chip->irq = irq;
Rhyland Kleinbb879102011-02-28 16:55:28 -0800883
884skip_gpio:
Olof Johanssona22b41a2012-09-06 11:32:29 -0700885 /*
Frans Klaverf4ed9502015-06-10 14:16:56 +0200886 * Before we register, we might need to make sure we can actually talk
Olof Johanssona22b41a2012-09-06 11:32:29 -0700887 * to the battery.
888 */
Frans Klaverf4ed9502015-06-10 14:16:56 +0200889 if (!force_load) {
890 rc = sbs_read_word_data(client, sbs_data[REG_STATUS].addr);
891
892 if (rc < 0) {
893 dev_err(&client->dev, "%s: Failed to get device status\n",
894 __func__);
895 goto exit_psupply;
896 }
Olof Johanssona22b41a2012-09-06 11:32:29 -0700897 }
Rhyland Kleinbb879102011-02-28 16:55:28 -0800898
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100899 chip->power_supply = power_supply_register(&client->dev, sbs_desc,
900 &psy_cfg);
901 if (IS_ERR(chip->power_supply)) {
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700902 dev_err(&client->dev,
903 "%s: Failed to register power supply\n", __func__);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100904 rc = PTR_ERR(chip->power_supply);
Rhyland Kleinbb879102011-02-28 16:55:28 -0800905 goto exit_psupply;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700906 }
907
908 dev_info(&client->dev,
909 "%s: battery gas gauge device registered\n", client->name);
910
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800911 INIT_DELAYED_WORK(&chip->work, sbs_delayed_work);
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700912
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800913 chip->enable_detection = true;
Rhyland Kleinee177d92011-05-24 12:06:50 -0700914
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700915 return 0;
Rhyland Kleinbb879102011-02-28 16:55:28 -0800916
917exit_psupply:
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800918 if (chip->irq)
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100919 free_irq(chip->irq, chip->power_supply);
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800920 if (chip->gpio_detect)
Rhyland Kleinbb879102011-02-28 16:55:28 -0800921 gpio_free(pdata->battery_detect);
922
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800923 kfree(chip);
Rhyland Kleinbb879102011-02-28 16:55:28 -0800924
925 return rc;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700926}
927
Bill Pemberton415ec692012-11-19 13:26:07 -0500928static int sbs_remove(struct i2c_client *client)
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700929{
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800930 struct sbs_info *chip = i2c_get_clientdata(client);
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700931
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800932 if (chip->irq)
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100933 free_irq(chip->irq, chip->power_supply);
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800934 if (chip->gpio_detect)
935 gpio_free(chip->pdata->battery_detect);
Rhyland Kleinbb879102011-02-28 16:55:28 -0800936
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100937 power_supply_unregister(chip->power_supply);
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700938
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800939 cancel_delayed_work_sync(&chip->work);
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700940
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800941 kfree(chip);
942 chip = NULL;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700943
944 return 0;
945}
946
Lars-Peter Clausen9c1d1af2013-03-10 14:34:07 +0100947#if defined CONFIG_PM_SLEEP
948
949static int sbs_suspend(struct device *dev)
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700950{
Lars-Peter Clausen9c1d1af2013-03-10 14:34:07 +0100951 struct i2c_client *client = to_i2c_client(dev);
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800952 struct sbs_info *chip = i2c_get_clientdata(client);
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700953 s32 ret;
954
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800955 if (chip->poll_time > 0)
956 cancel_delayed_work_sync(&chip->work);
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700957
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700958 /* write to manufacturer access with sleep command */
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800959 ret = sbs_write_word_data(client, sbs_data[REG_MANUFACTURER_DATA].addr,
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700960 MANUFACTURER_ACCESS_SLEEP);
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800961 if (chip->is_present && ret < 0)
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700962 return ret;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700963
964 return 0;
965}
Lars-Peter Clausen9c1d1af2013-03-10 14:34:07 +0100966
967static SIMPLE_DEV_PM_OPS(sbs_pm_ops, sbs_suspend, NULL);
968#define SBS_PM_OPS (&sbs_pm_ops)
969
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700970#else
Lars-Peter Clausen9c1d1af2013-03-10 14:34:07 +0100971#define SBS_PM_OPS NULL
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700972#endif
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700973
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800974static const struct i2c_device_id sbs_id[] = {
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700975 { "bq20z75", 0 },
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800976 { "sbs-battery", 1 },
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700977 {}
978};
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800979MODULE_DEVICE_TABLE(i2c, sbs_id);
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700980
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800981static struct i2c_driver sbs_battery_driver = {
982 .probe = sbs_probe,
Bill Pemberton28ea73f2012-11-19 13:20:40 -0500983 .remove = sbs_remove,
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800984 .id_table = sbs_id,
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700985 .driver = {
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800986 .name = "sbs-battery",
Sachin Kamat075ed032013-03-14 15:49:46 +0530987 .of_match_table = of_match_ptr(sbs_dt_ids),
Lars-Peter Clausen9c1d1af2013-03-10 14:34:07 +0100988 .pm = SBS_PM_OPS,
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700989 },
990};
Axel Lin5ff92e72012-01-21 14:42:54 +0800991module_i2c_driver(sbs_battery_driver);
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700992
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800993MODULE_DESCRIPTION("SBS battery monitor driver");
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700994MODULE_LICENSE("GPL");
Frans Klaverf4ed9502015-06-10 14:16:56 +0200995
996module_param(force_load, bool, S_IRUSR | S_IRGRP | S_IROTH);
997MODULE_PARM_DESC(force_load,
998 "Attempt to load the driver even if no battery is connected");