blob: 49c3508a6b799bb4cf2fadc9fad62329ba965660 [file] [log] [blame]
Thomas Gleixnerc942fdd2019-05-27 08:55:06 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Rhyland Kleina7640bf2010-09-05 15:31:23 -07002/*
Rhyland Klein3ddca0622011-12-05 17:50:46 -08003 * Gas Gauge driver for SBS Compliant Batteries
Rhyland Kleina7640bf2010-09-05 15:31:23 -07004 *
5 * Copyright (c) 2010, NVIDIA Corporation.
Rhyland Kleina7640bf2010-09-05 15:31:23 -07006 */
7
Jean-Francois Dagenaise2ec6ae2019-11-01 15:07:03 -04008#include <linux/bits.h>
Phil Reidadcf04c2017-07-11 17:43:43 +08009#include <linux/delay.h>
Rhyland Kleina7640bf2010-09-05 15:31:23 -070010#include <linux/err.h>
Phil Reid3b5dd3a2016-09-01 15:50:52 +080011#include <linux/gpio/consumer.h>
Phil Reidb70f0a22017-07-11 17:43:42 +080012#include <linux/i2c.h>
13#include <linux/init.h>
14#include <linux/interrupt.h>
15#include <linux/kernel.h>
16#include <linux/module.h>
Sebastian Reichel03b758b2020-05-13 20:56:12 +020017#include <linux/property.h>
Brian Norris76b16f4c2018-06-12 13:20:41 -070018#include <linux/of_device.h>
Rhyland Klein3ddca0622011-12-05 17:50:46 -080019#include <linux/power/sbs-battery.h>
Phil Reidb70f0a22017-07-11 17:43:42 +080020#include <linux/power_supply.h>
21#include <linux/slab.h>
22#include <linux/stat.h>
Rhyland Kleina7640bf2010-09-05 15:31:23 -070023
24enum {
25 REG_MANUFACTURER_DATA,
Sebastian Reichel6f72a072020-05-13 20:56:09 +020026 REG_BATTERY_MODE,
Rhyland Kleina7640bf2010-09-05 15:31:23 -070027 REG_TEMPERATURE,
28 REG_VOLTAGE,
Sebastian Reichel8ce6ee42020-05-13 20:56:05 +020029 REG_CURRENT_NOW,
30 REG_CURRENT_AVG,
Sebastian Reicheld6f56322020-05-13 20:56:02 +020031 REG_MAX_ERR,
Rhyland Kleina7640bf2010-09-05 15:31:23 -070032 REG_CAPACITY,
33 REG_TIME_TO_EMPTY,
34 REG_TIME_TO_FULL,
35 REG_STATUS,
Joshua Clayton957cb722016-08-11 09:59:12 -070036 REG_CAPACITY_LEVEL,
Rhyland Kleina7640bf2010-09-05 15:31:23 -070037 REG_CYCLE_COUNT,
Rhyland Kleind3ab61e2010-09-21 15:33:55 -070038 REG_SERIAL_NUMBER,
39 REG_REMAINING_CAPACITY,
Rhyland Klein51d07562011-01-25 11:10:06 -080040 REG_REMAINING_CAPACITY_CHARGE,
Rhyland Kleind3ab61e2010-09-21 15:33:55 -070041 REG_FULL_CHARGE_CAPACITY,
Rhyland Klein51d07562011-01-25 11:10:06 -080042 REG_FULL_CHARGE_CAPACITY_CHARGE,
Rhyland Kleind3ab61e2010-09-21 15:33:55 -070043 REG_DESIGN_CAPACITY,
Rhyland Klein51d07562011-01-25 11:10:06 -080044 REG_DESIGN_CAPACITY_CHARGE,
Simon Que4495b0a2014-08-04 13:47:46 +020045 REG_DESIGN_VOLTAGE_MIN,
46 REG_DESIGN_VOLTAGE_MAX,
Sebastian Reichel3e9544f2020-05-13 20:56:06 +020047 REG_CHEMISTRY,
Cheng-Yi Chiang9ea89402014-08-04 13:47:45 +020048 REG_MANUFACTURER,
49 REG_MODEL_NAME,
Sebastian Reichel787fdbc2020-05-13 20:56:07 +020050 REG_CHARGE_CURRENT,
51 REG_CHARGE_VOLTAGE,
Rhyland Kleina7640bf2010-09-05 15:31:23 -070052};
53
Sebastian Reichel7222bd62020-06-06 01:06:25 +020054#define REG_ADDR_SPEC_INFO 0x1A
55#define SPEC_INFO_VERSION_MASK GENMASK(7, 4)
56#define SPEC_INFO_VERSION_SHIFT 4
57
58#define SBS_VERSION_1_0 1
59#define SBS_VERSION_1_1 2
60#define SBS_VERSION_1_1_WITH_PEC 3
61
Sebastian Reichel7721c2f2020-05-13 20:56:08 +020062#define REG_ADDR_MANUFACTURE_DATE 0x1B
63
Rhyland Klein51d07562011-01-25 11:10:06 -080064/* Battery Mode defines */
65#define BATTERY_MODE_OFFSET 0x03
Jean-Francois Dagenaise2ec6ae2019-11-01 15:07:03 -040066#define BATTERY_MODE_CAPACITY_MASK BIT(15)
67enum sbs_capacity_mode {
68 CAPACITY_MODE_AMPS = 0,
69 CAPACITY_MODE_WATTS = BATTERY_MODE_CAPACITY_MASK
Rhyland Klein51d07562011-01-25 11:10:06 -080070};
Jean-Francois Dagenais182fc882020-05-13 20:56:11 +020071#define BATTERY_MODE_CHARGER_MASK (1<<14)
Rhyland Klein51d07562011-01-25 11:10:06 -080072
Rhyland Kleina7640bf2010-09-05 15:31:23 -070073/* manufacturer access defines */
74#define MANUFACTURER_ACCESS_STATUS 0x0006
75#define MANUFACTURER_ACCESS_SLEEP 0x0011
76
77/* battery status value bits */
Joshua Clayton957cb722016-08-11 09:59:12 -070078#define BATTERY_INITIALIZED 0x80
Rhyland Kleind3ab61e2010-09-21 15:33:55 -070079#define BATTERY_DISCHARGING 0x40
Rhyland Kleina7640bf2010-09-05 15:31:23 -070080#define BATTERY_FULL_CHARGED 0x20
81#define BATTERY_FULL_DISCHARGED 0x10
82
Cheng-Yi Chiang9ea89402014-08-04 13:47:45 +020083/* min_value and max_value are only valid for numerical data */
Rhyland Klein3ddca0622011-12-05 17:50:46 -080084#define SBS_DATA(_psp, _addr, _min_value, _max_value) { \
Rhyland Kleina7640bf2010-09-05 15:31:23 -070085 .psp = _psp, \
86 .addr = _addr, \
87 .min_value = _min_value, \
88 .max_value = _max_value, \
89}
90
Rhyland Klein3ddca0622011-12-05 17:50:46 -080091static const struct chip_data {
Rhyland Kleina7640bf2010-09-05 15:31:23 -070092 enum power_supply_property psp;
93 u8 addr;
94 int min_value;
95 int max_value;
Rhyland Klein3ddca0622011-12-05 17:50:46 -080096} sbs_data[] = {
Rhyland Kleina7640bf2010-09-05 15:31:23 -070097 [REG_MANUFACTURER_DATA] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -080098 SBS_DATA(POWER_SUPPLY_PROP_PRESENT, 0x00, 0, 65535),
Sebastian Reichel6f72a072020-05-13 20:56:09 +020099 [REG_BATTERY_MODE] =
100 SBS_DATA(-1, 0x03, 0, 65535),
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700101 [REG_TEMPERATURE] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800102 SBS_DATA(POWER_SUPPLY_PROP_TEMP, 0x08, 0, 65535),
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700103 [REG_VOLTAGE] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800104 SBS_DATA(POWER_SUPPLY_PROP_VOLTAGE_NOW, 0x09, 0, 20000),
Sebastian Reichel8ce6ee42020-05-13 20:56:05 +0200105 [REG_CURRENT_NOW] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800106 SBS_DATA(POWER_SUPPLY_PROP_CURRENT_NOW, 0x0A, -32768, 32767),
Sebastian Reichel8ce6ee42020-05-13 20:56:05 +0200107 [REG_CURRENT_AVG] =
108 SBS_DATA(POWER_SUPPLY_PROP_CURRENT_AVG, 0x0B, -32768, 32767),
Sebastian Reicheld6f56322020-05-13 20:56:02 +0200109 [REG_MAX_ERR] =
110 SBS_DATA(POWER_SUPPLY_PROP_CAPACITY_ERROR_MARGIN, 0x0c, 0, 100),
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700111 [REG_CAPACITY] =
Nikolaus Vossb1f092f2012-04-25 08:59:03 +0200112 SBS_DATA(POWER_SUPPLY_PROP_CAPACITY, 0x0D, 0, 100),
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700113 [REG_REMAINING_CAPACITY] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800114 SBS_DATA(POWER_SUPPLY_PROP_ENERGY_NOW, 0x0F, 0, 65535),
Rhyland Klein51d07562011-01-25 11:10:06 -0800115 [REG_REMAINING_CAPACITY_CHARGE] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800116 SBS_DATA(POWER_SUPPLY_PROP_CHARGE_NOW, 0x0F, 0, 65535),
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700117 [REG_FULL_CHARGE_CAPACITY] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800118 SBS_DATA(POWER_SUPPLY_PROP_ENERGY_FULL, 0x10, 0, 65535),
Rhyland Klein51d07562011-01-25 11:10:06 -0800119 [REG_FULL_CHARGE_CAPACITY_CHARGE] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800120 SBS_DATA(POWER_SUPPLY_PROP_CHARGE_FULL, 0x10, 0, 65535),
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700121 [REG_TIME_TO_EMPTY] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800122 SBS_DATA(POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG, 0x12, 0, 65535),
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700123 [REG_TIME_TO_FULL] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800124 SBS_DATA(POWER_SUPPLY_PROP_TIME_TO_FULL_AVG, 0x13, 0, 65535),
Sebastian Reichel787fdbc2020-05-13 20:56:07 +0200125 [REG_CHARGE_CURRENT] =
126 SBS_DATA(POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT_MAX, 0x14, 0, 65535),
127 [REG_CHARGE_VOLTAGE] =
128 SBS_DATA(POWER_SUPPLY_PROP_CONSTANT_CHARGE_VOLTAGE_MAX, 0x15, 0, 65535),
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700129 [REG_STATUS] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800130 SBS_DATA(POWER_SUPPLY_PROP_STATUS, 0x16, 0, 65535),
Joshua Clayton957cb722016-08-11 09:59:12 -0700131 [REG_CAPACITY_LEVEL] =
132 SBS_DATA(POWER_SUPPLY_PROP_CAPACITY_LEVEL, 0x16, 0, 65535),
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700133 [REG_CYCLE_COUNT] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800134 SBS_DATA(POWER_SUPPLY_PROP_CYCLE_COUNT, 0x17, 0, 65535),
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700135 [REG_DESIGN_CAPACITY] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800136 SBS_DATA(POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN, 0x18, 0, 65535),
Rhyland Klein51d07562011-01-25 11:10:06 -0800137 [REG_DESIGN_CAPACITY_CHARGE] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800138 SBS_DATA(POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN, 0x18, 0, 65535),
Simon Que4495b0a2014-08-04 13:47:46 +0200139 [REG_DESIGN_VOLTAGE_MIN] =
140 SBS_DATA(POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN, 0x19, 0, 65535),
141 [REG_DESIGN_VOLTAGE_MAX] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800142 SBS_DATA(POWER_SUPPLY_PROP_VOLTAGE_MAX_DESIGN, 0x19, 0, 65535),
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700143 [REG_SERIAL_NUMBER] =
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800144 SBS_DATA(POWER_SUPPLY_PROP_SERIAL_NUMBER, 0x1C, 0, 65535),
Cheng-Yi Chiang9ea89402014-08-04 13:47:45 +0200145 /* Properties of type `const char *' */
146 [REG_MANUFACTURER] =
147 SBS_DATA(POWER_SUPPLY_PROP_MANUFACTURER, 0x20, 0, 65535),
148 [REG_MODEL_NAME] =
Sebastian Reichel3e9544f2020-05-13 20:56:06 +0200149 SBS_DATA(POWER_SUPPLY_PROP_MODEL_NAME, 0x21, 0, 65535),
150 [REG_CHEMISTRY] =
151 SBS_DATA(POWER_SUPPLY_PROP_TECHNOLOGY, 0x22, 0, 65535)
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700152};
153
Sebastian Reichel68956db2020-05-13 20:56:14 +0200154static const enum power_supply_property sbs_properties[] = {
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700155 POWER_SUPPLY_PROP_STATUS,
Joshua Clayton957cb722016-08-11 09:59:12 -0700156 POWER_SUPPLY_PROP_CAPACITY_LEVEL,
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700157 POWER_SUPPLY_PROP_HEALTH,
158 POWER_SUPPLY_PROP_PRESENT,
159 POWER_SUPPLY_PROP_TECHNOLOGY,
160 POWER_SUPPLY_PROP_CYCLE_COUNT,
161 POWER_SUPPLY_PROP_VOLTAGE_NOW,
162 POWER_SUPPLY_PROP_CURRENT_NOW,
Sebastian Reichel8ce6ee42020-05-13 20:56:05 +0200163 POWER_SUPPLY_PROP_CURRENT_AVG,
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700164 POWER_SUPPLY_PROP_CAPACITY,
Sebastian Reicheld6f56322020-05-13 20:56:02 +0200165 POWER_SUPPLY_PROP_CAPACITY_ERROR_MARGIN,
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700166 POWER_SUPPLY_PROP_TEMP,
167 POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG,
168 POWER_SUPPLY_PROP_TIME_TO_FULL_AVG,
169 POWER_SUPPLY_PROP_SERIAL_NUMBER,
Simon Que4495b0a2014-08-04 13:47:46 +0200170 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700171 POWER_SUPPLY_PROP_VOLTAGE_MAX_DESIGN,
172 POWER_SUPPLY_PROP_ENERGY_NOW,
173 POWER_SUPPLY_PROP_ENERGY_FULL,
174 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN,
Rhyland Klein51d07562011-01-25 11:10:06 -0800175 POWER_SUPPLY_PROP_CHARGE_NOW,
176 POWER_SUPPLY_PROP_CHARGE_FULL,
177 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN,
Sebastian Reichel787fdbc2020-05-13 20:56:07 +0200178 POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT_MAX,
179 POWER_SUPPLY_PROP_CONSTANT_CHARGE_VOLTAGE_MAX,
Sebastian Reichel7721c2f2020-05-13 20:56:08 +0200180 POWER_SUPPLY_PROP_MANUFACTURE_YEAR,
181 POWER_SUPPLY_PROP_MANUFACTURE_MONTH,
182 POWER_SUPPLY_PROP_MANUFACTURE_DAY,
Cheng-Yi Chiang9ea89402014-08-04 13:47:45 +0200183 /* Properties of type `const char *' */
184 POWER_SUPPLY_PROP_MANUFACTURER,
185 POWER_SUPPLY_PROP_MODEL_NAME
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700186};
187
Sebastian Reichel0ff96912020-05-13 20:56:01 +0200188/* Supports special manufacturer commands from TI BQ20Z65 and BQ20Z75 IC. */
189#define SBS_FLAGS_TI_BQ20ZX5 BIT(0)
Brian Norris76b16f4c2018-06-12 13:20:41 -0700190
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800191struct sbs_info {
Rhyland Kleinbb879102011-02-28 16:55:28 -0800192 struct i2c_client *client;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100193 struct power_supply *power_supply;
Rhyland Kleinbb879102011-02-28 16:55:28 -0800194 bool is_present;
Phil Reid3b5dd3a2016-09-01 15:50:52 +0800195 struct gpio_desc *gpio_detect;
Rhyland Kleinbb879102011-02-28 16:55:28 -0800196 bool enable_detection;
Jean-Francois Dagenais182fc882020-05-13 20:56:11 +0200197 bool charger_broadcasts;
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700198 int last_state;
199 int poll_time;
Phil Reid389958b2016-09-20 09:01:12 +0800200 u32 i2c_retry_count;
201 u32 poll_retry_count;
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700202 struct delayed_work work;
Shawn Nematbakhshfe8a6532017-06-13 10:53:25 -0700203 struct mutex mode_lock;
Brian Norris76b16f4c2018-06-12 13:20:41 -0700204 u32 flags;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700205};
206
Cheng-Yi Chiang9ea89402014-08-04 13:47:45 +0200207static char model_name[I2C_SMBUS_BLOCK_MAX + 1];
208static char manufacturer[I2C_SMBUS_BLOCK_MAX + 1];
Sebastian Reichel3e9544f2020-05-13 20:56:06 +0200209static char chemistry[I2C_SMBUS_BLOCK_MAX + 1];
Frans Klaverf4ed9502015-06-10 14:16:56 +0200210static bool force_load;
Cheng-Yi Chiang9ea89402014-08-04 13:47:45 +0200211
Jean-Francois Dagenais182fc882020-05-13 20:56:11 +0200212static int sbs_read_word_data(struct i2c_client *client, u8 address);
213static int sbs_write_word_data(struct i2c_client *client, u8 address, u16 value);
214
215static void sbs_disable_charger_broadcasts(struct sbs_info *chip)
216{
217 int val = sbs_read_word_data(chip->client, BATTERY_MODE_OFFSET);
218 if (val < 0)
219 goto exit;
220
221 val |= BATTERY_MODE_CHARGER_MASK;
222
223 val = sbs_write_word_data(chip->client, BATTERY_MODE_OFFSET, val);
224
225exit:
226 if (val < 0)
227 dev_err(&chip->client->dev,
228 "Failed to disable charger broadcasting: %d\n", val);
229 else
230 dev_dbg(&chip->client->dev, "%s\n", __func__);
231}
232
Sebastian Reichel79bcd5a2020-05-13 20:56:04 +0200233static int sbs_update_presence(struct sbs_info *chip, bool is_present)
234{
Sebastian Reichel7222bd62020-06-06 01:06:25 +0200235 struct i2c_client *client = chip->client;
236 int retries = chip->i2c_retry_count;
237 s32 ret = 0;
238 u8 version;
239
Sebastian Reichel79bcd5a2020-05-13 20:56:04 +0200240 if (chip->is_present == is_present)
241 return 0;
242
243 if (!is_present) {
244 chip->is_present = false;
Sebastian Reichel7222bd62020-06-06 01:06:25 +0200245 /* Disable PEC when no device is present */
246 client->flags &= ~I2C_CLIENT_PEC;
Sebastian Reichel79bcd5a2020-05-13 20:56:04 +0200247 return 0;
248 }
249
Sebastian Reichel7222bd62020-06-06 01:06:25 +0200250 /* Check if device supports packet error checking and use it */
251 while (retries > 0) {
252 ret = i2c_smbus_read_word_data(client, REG_ADDR_SPEC_INFO);
253 if (ret >= 0)
254 break;
255
256 /*
257 * Some batteries trigger the detection pin before the
258 * I2C bus is properly connected. This works around the
259 * issue.
260 */
261 msleep(100);
262
263 retries--;
264 }
265
266 if (ret < 0) {
267 dev_dbg(&client->dev, "failed to read spec info: %d\n", ret);
268
269 /* fallback to old behaviour */
270 client->flags &= ~I2C_CLIENT_PEC;
271 chip->is_present = true;
272
273 return ret;
274 }
275
276 version = (ret & SPEC_INFO_VERSION_MASK) >> SPEC_INFO_VERSION_SHIFT;
277
278 if (version == SBS_VERSION_1_1_WITH_PEC)
279 client->flags |= I2C_CLIENT_PEC;
280 else
281 client->flags &= ~I2C_CLIENT_PEC;
282
283 dev_dbg(&client->dev, "PEC: %s\n", (client->flags & I2C_CLIENT_PEC) ?
284 "enabled" : "disabled");
285
Jean-Francois Dagenais182fc882020-05-13 20:56:11 +0200286 if (!chip->is_present && is_present && !chip->charger_broadcasts)
287 sbs_disable_charger_broadcasts(chip);
288
Sebastian Reichel79bcd5a2020-05-13 20:56:04 +0200289 chip->is_present = true;
290
291 return 0;
292}
293
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800294static int sbs_read_word_data(struct i2c_client *client, u8 address)
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700295{
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800296 struct sbs_info *chip = i2c_get_clientdata(client);
Wolfram Sang9410b7d2017-10-29 00:42:10 +0200297 int retries = chip->i2c_retry_count;
Rhyland Kleinff28fce2011-02-28 16:55:29 -0800298 s32 ret = 0;
Rhyland Kleinff28fce2011-02-28 16:55:29 -0800299
300 while (retries > 0) {
301 ret = i2c_smbus_read_word_data(client, address);
302 if (ret >= 0)
303 break;
304 retries--;
305 }
306
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700307 if (ret < 0) {
Rhyland Kleina7d9ace2011-03-09 16:18:02 -0800308 dev_dbg(&client->dev,
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700309 "%s: i2c read at address 0x%x failed\n",
310 __func__, address);
311 return ret;
312 }
Rhyland Kleinff28fce2011-02-28 16:55:29 -0800313
Phil Reida1bbec72017-06-15 21:59:29 +0800314 return ret;
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700315}
316
Sebastian Reichel05e04302020-06-06 01:06:24 +0200317static int sbs_read_string_data_fallback(struct i2c_client *client, u8 address, char *values)
Cheng-Yi Chiang9ea89402014-08-04 13:47:45 +0200318{
319 struct sbs_info *chip = i2c_get_clientdata(client);
Sebastian Reichel972eabb2020-06-02 16:49:08 +0200320 s32 ret = 0, block_length = 0;
321 int retries_length, retries_block;
322 u8 block_buffer[I2C_SMBUS_BLOCK_MAX + 1];
Cheng-Yi Chiang9ea89402014-08-04 13:47:45 +0200323
Sebastian Reichel972eabb2020-06-02 16:49:08 +0200324 retries_length = chip->i2c_retry_count;
325 retries_block = chip->i2c_retry_count;
326
Sebastian Reichel7222bd62020-06-06 01:06:25 +0200327 dev_warn_once(&client->dev, "I2C adapter does not support I2C_FUNC_SMBUS_READ_BLOCK_DATA.\n"
328 "Fallback method does not support PEC.\n");
Sebastian Reichel05e04302020-06-06 01:06:24 +0200329
Sebastian Reichel972eabb2020-06-02 16:49:08 +0200330 /* Adapter needs to support these two functions */
Cheng-Yi Chiang9ea89402014-08-04 13:47:45 +0200331 if (!i2c_check_functionality(client->adapter,
Sebastian Reichel972eabb2020-06-02 16:49:08 +0200332 I2C_FUNC_SMBUS_BYTE_DATA |
333 I2C_FUNC_SMBUS_I2C_BLOCK)){
Cheng-Yi Chiang9ea89402014-08-04 13:47:45 +0200334 return -ENODEV;
335 }
336
Sebastian Reichel972eabb2020-06-02 16:49:08 +0200337 /* Get the length of block data */
338 while (retries_length > 0) {
339 ret = i2c_smbus_read_byte_data(client, address);
Cheng-Yi Chiang9ea89402014-08-04 13:47:45 +0200340 if (ret >= 0)
341 break;
Sebastian Reichel972eabb2020-06-02 16:49:08 +0200342 retries_length--;
Cheng-Yi Chiang9ea89402014-08-04 13:47:45 +0200343 }
344
345 if (ret < 0) {
Sebastian Reichel972eabb2020-06-02 16:49:08 +0200346 dev_dbg(&client->dev,
347 "%s: i2c read at address 0x%x failed\n",
348 __func__, address);
Cheng-Yi Chiang9ea89402014-08-04 13:47:45 +0200349 return ret;
350 }
351
Sebastian Reichel972eabb2020-06-02 16:49:08 +0200352 /* block_length does not include NULL terminator */
353 block_length = ret;
354 if (block_length > I2C_SMBUS_BLOCK_MAX) {
355 dev_err(&client->dev,
356 "%s: Returned block_length is longer than 0x%x\n",
357 __func__, I2C_SMBUS_BLOCK_MAX);
358 return -EINVAL;
359 }
Cheng-Yi Chiang9ea89402014-08-04 13:47:45 +0200360
Sebastian Reichel972eabb2020-06-02 16:49:08 +0200361 /* Get the block data */
362 while (retries_block > 0) {
363 ret = i2c_smbus_read_i2c_block_data(
364 client, address,
365 block_length + 1, block_buffer);
366 if (ret >= 0)
367 break;
368 retries_block--;
369 }
370
371 if (ret < 0) {
372 dev_dbg(&client->dev,
373 "%s: i2c read at address 0x%x failed\n",
374 __func__, address);
375 return ret;
376 }
377
378 /* block_buffer[0] == block_length */
379 memcpy(values, block_buffer + 1, block_length);
380 values[block_length] = '\0';
381
382 return ret;
Cheng-Yi Chiang9ea89402014-08-04 13:47:45 +0200383}
384
Sebastian Reichel05e04302020-06-06 01:06:24 +0200385static int sbs_read_string_data(struct i2c_client *client, u8 address, char *values)
386{
387 struct sbs_info *chip = i2c_get_clientdata(client);
388 int retries = chip->i2c_retry_count;
389 int ret = 0;
390
Sebastian Reichel7222bd62020-06-06 01:06:25 +0200391 if (!i2c_check_functionality(client->adapter, I2C_FUNC_SMBUS_READ_BLOCK_DATA)) {
392 bool pec = client->flags & I2C_CLIENT_PEC;
393 client->flags &= ~I2C_CLIENT_PEC;
394 ret = sbs_read_string_data_fallback(client, address, values);
395 if (pec)
396 client->flags |= I2C_CLIENT_PEC;
397 return ret;
398 }
Sebastian Reichel05e04302020-06-06 01:06:24 +0200399
400 while (retries > 0) {
401 ret = i2c_smbus_read_block_data(client, address, values);
402 if (ret >= 0)
403 break;
404 retries--;
405 }
406
407 if (ret < 0) {
408 dev_dbg(&client->dev, "failed to read block 0x%x: %d\n", address, ret);
409 return ret;
410 }
411
412 /* add string termination */
413 values[ret] = '\0';
414 return ret;
415}
416
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800417static int sbs_write_word_data(struct i2c_client *client, u8 address,
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700418 u16 value)
419{
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800420 struct sbs_info *chip = i2c_get_clientdata(client);
Wolfram Sang9410b7d2017-10-29 00:42:10 +0200421 int retries = chip->i2c_retry_count;
Rhyland Kleinff28fce2011-02-28 16:55:29 -0800422 s32 ret = 0;
Rhyland Kleinff28fce2011-02-28 16:55:29 -0800423
424 while (retries > 0) {
Phil Reida1bbec72017-06-15 21:59:29 +0800425 ret = i2c_smbus_write_word_data(client, address, value);
Rhyland Kleinff28fce2011-02-28 16:55:29 -0800426 if (ret >= 0)
427 break;
428 retries--;
429 }
430
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700431 if (ret < 0) {
Rhyland Kleina7d9ace2011-03-09 16:18:02 -0800432 dev_dbg(&client->dev,
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700433 "%s: i2c write to address 0x%x failed\n",
434 __func__, address);
435 return ret;
436 }
Rhyland Kleinff28fce2011-02-28 16:55:29 -0800437
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700438 return 0;
439}
440
Paul Kocialkowski7f93e1f2017-04-25 17:09:05 +0200441static int sbs_status_correct(struct i2c_client *client, int *intval)
442{
443 int ret;
444
Sebastian Reichel8ce6ee42020-05-13 20:56:05 +0200445 ret = sbs_read_word_data(client, sbs_data[REG_CURRENT_NOW].addr);
Paul Kocialkowski7f93e1f2017-04-25 17:09:05 +0200446 if (ret < 0)
447 return ret;
448
449 ret = (s16)ret;
450
Sebastian Reichelf0318bc2020-05-13 20:56:10 +0200451 /* Not drawing current -> not charging (i.e. idle) */
452 if (*intval != POWER_SUPPLY_STATUS_FULL && ret == 0)
453 *intval = POWER_SUPPLY_STATUS_NOT_CHARGING;
Paul Kocialkowski7f93e1f2017-04-25 17:09:05 +0200454
455 if (*intval == POWER_SUPPLY_STATUS_FULL) {
456 /* Drawing or providing current when full */
457 if (ret > 0)
458 *intval = POWER_SUPPLY_STATUS_CHARGING;
459 else if (ret < 0)
460 *intval = POWER_SUPPLY_STATUS_DISCHARGING;
461 }
462
463 return 0;
464}
465
Sebastian Reichel6f72a072020-05-13 20:56:09 +0200466static bool sbs_bat_needs_calibration(struct i2c_client *client)
467{
468 int ret;
469
470 ret = sbs_read_word_data(client, sbs_data[REG_BATTERY_MODE].addr);
471 if (ret < 0)
472 return false;
473
474 return !!(ret & BIT(7));
475}
476
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800477static int sbs_get_battery_presence_and_health(
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700478 struct i2c_client *client, enum power_supply_property psp,
479 union power_supply_propval *val)
480{
Brian Norris76b16f4c2018-06-12 13:20:41 -0700481 int ret;
482
Michael Nosthofffe55e772019-08-16 09:58:42 +0200483 /* Dummy command; if it succeeds, battery is present. */
484 ret = sbs_read_word_data(client, sbs_data[REG_STATUS].addr);
485
486 if (ret < 0) { /* battery not present*/
487 if (psp == POWER_SUPPLY_PROP_PRESENT) {
488 val->intval = 0;
489 return 0;
490 }
491 return ret;
492 }
493
494 if (psp == POWER_SUPPLY_PROP_PRESENT)
495 val->intval = 1; /* battery present */
Sebastian Reichel6f72a072020-05-13 20:56:09 +0200496 else { /* POWER_SUPPLY_PROP_HEALTH */
497 if (sbs_bat_needs_calibration(client)) {
498 val->intval = POWER_SUPPLY_HEALTH_CALIBRATION_REQUIRED;
499 } else {
500 /* SBS spec doesn't have a general health command. */
501 val->intval = POWER_SUPPLY_HEALTH_UNKNOWN;
502 }
503 }
Brian Norris76b16f4c2018-06-12 13:20:41 -0700504
505 return 0;
506}
507
508static int sbs_get_ti_battery_presence_and_health(
509 struct i2c_client *client, enum power_supply_property psp,
510 union power_supply_propval *val)
511{
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700512 s32 ret;
513
Guenter Roeck17c6d392016-09-08 19:10:00 -0700514 /*
515 * Write to ManufacturerAccess with ManufacturerAccess command
Brian Norris76b16f4c2018-06-12 13:20:41 -0700516 * and then read the status.
Guenter Roeck17c6d392016-09-08 19:10:00 -0700517 */
Brian Norris76b16f4c2018-06-12 13:20:41 -0700518 ret = sbs_write_word_data(client, sbs_data[REG_MANUFACTURER_DATA].addr,
519 MANUFACTURER_ACCESS_STATUS);
520 if (ret < 0) {
521 if (psp == POWER_SUPPLY_PROP_PRESENT)
522 val->intval = 0; /* battery removed */
523 return ret;
524 }
Guenter Roeck17c6d392016-09-08 19:10:00 -0700525
526 ret = sbs_read_word_data(client, sbs_data[REG_MANUFACTURER_DATA].addr);
Rhyland Kleinbb879102011-02-28 16:55:28 -0800527 if (ret < 0) {
528 if (psp == POWER_SUPPLY_PROP_PRESENT)
529 val->intval = 0; /* battery removed */
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700530 return ret;
Rhyland Kleinbb879102011-02-28 16:55:28 -0800531 }
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700532
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800533 if (ret < sbs_data[REG_MANUFACTURER_DATA].min_value ||
534 ret > sbs_data[REG_MANUFACTURER_DATA].max_value) {
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700535 val->intval = 0;
536 return 0;
537 }
538
539 /* Mask the upper nibble of 2nd byte and
540 * lower byte of response then
541 * shift the result by 8 to get status*/
542 ret &= 0x0F00;
543 ret >>= 8;
544 if (psp == POWER_SUPPLY_PROP_PRESENT) {
545 if (ret == 0x0F)
546 /* battery removed */
547 val->intval = 0;
548 else
549 val->intval = 1;
550 } else if (psp == POWER_SUPPLY_PROP_HEALTH) {
551 if (ret == 0x09)
552 val->intval = POWER_SUPPLY_HEALTH_UNSPEC_FAILURE;
553 else if (ret == 0x0B)
554 val->intval = POWER_SUPPLY_HEALTH_OVERHEAT;
555 else if (ret == 0x0C)
556 val->intval = POWER_SUPPLY_HEALTH_DEAD;
Sebastian Reichel6f72a072020-05-13 20:56:09 +0200557 else if (sbs_bat_needs_calibration(client))
558 val->intval = POWER_SUPPLY_HEALTH_CALIBRATION_REQUIRED;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700559 else
560 val->intval = POWER_SUPPLY_HEALTH_GOOD;
561 }
562
563 return 0;
564}
565
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800566static int sbs_get_battery_property(struct i2c_client *client,
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700567 int reg_offset, enum power_supply_property psp,
568 union power_supply_propval *val)
569{
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800570 struct sbs_info *chip = i2c_get_clientdata(client);
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700571 s32 ret;
572
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800573 ret = sbs_read_word_data(client, sbs_data[reg_offset].addr);
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700574 if (ret < 0)
575 return ret;
576
577 /* returned values are 16 bit */
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800578 if (sbs_data[reg_offset].min_value < 0)
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700579 ret = (s16)ret;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700580
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800581 if (ret >= sbs_data[reg_offset].min_value &&
582 ret <= sbs_data[reg_offset].max_value) {
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700583 val->intval = ret;
Joshua Clayton957cb722016-08-11 09:59:12 -0700584 if (psp == POWER_SUPPLY_PROP_CAPACITY_LEVEL) {
585 if (!(ret & BATTERY_INITIALIZED))
586 val->intval =
587 POWER_SUPPLY_CAPACITY_LEVEL_UNKNOWN;
588 else if (ret & BATTERY_FULL_CHARGED)
589 val->intval =
590 POWER_SUPPLY_CAPACITY_LEVEL_FULL;
591 else if (ret & BATTERY_FULL_DISCHARGED)
592 val->intval =
593 POWER_SUPPLY_CAPACITY_LEVEL_CRITICAL;
594 else
595 val->intval =
596 POWER_SUPPLY_CAPACITY_LEVEL_NORMAL;
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700597 return 0;
Joshua Clayton957cb722016-08-11 09:59:12 -0700598 } else if (psp != POWER_SUPPLY_PROP_STATUS) {
599 return 0;
600 }
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700601
602 if (ret & BATTERY_FULL_CHARGED)
603 val->intval = POWER_SUPPLY_STATUS_FULL;
Rhyland Klein58ddafa2011-05-24 12:05:59 -0700604 else if (ret & BATTERY_DISCHARGING)
605 val->intval = POWER_SUPPLY_STATUS_DISCHARGING;
606 else
607 val->intval = POWER_SUPPLY_STATUS_CHARGING;
608
Paul Kocialkowski7f93e1f2017-04-25 17:09:05 +0200609 sbs_status_correct(client, &val->intval);
610
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800611 if (chip->poll_time == 0)
612 chip->last_state = val->intval;
613 else if (chip->last_state != val->intval) {
614 cancel_delayed_work_sync(&chip->work);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100615 power_supply_changed(chip->power_supply);
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800616 chip->poll_time = 0;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700617 }
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700618 } else {
619 if (psp == POWER_SUPPLY_PROP_STATUS)
620 val->intval = POWER_SUPPLY_STATUS_UNKNOWN;
Shawn Nematbakhshbfa953d2017-06-13 10:53:26 -0700621 else if (psp == POWER_SUPPLY_PROP_CAPACITY)
622 /* sbs spec says that this can be >100 %
623 * even if max value is 100 %
624 */
625 val->intval = min(ret, 100);
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700626 else
627 val->intval = 0;
628 }
629
630 return 0;
631}
632
Cheng-Yi Chiang9ea89402014-08-04 13:47:45 +0200633static int sbs_get_battery_string_property(struct i2c_client *client,
634 int reg_offset, enum power_supply_property psp, char *val)
635{
Sebastian Reichel972eabb2020-06-02 16:49:08 +0200636 s32 ret;
637
638 ret = sbs_read_string_data(client, sbs_data[reg_offset].addr, val);
639
640 if (ret < 0)
641 return ret;
642
643 return 0;
Cheng-Yi Chiang9ea89402014-08-04 13:47:45 +0200644}
645
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800646static void sbs_unit_adjustment(struct i2c_client *client,
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700647 enum power_supply_property psp, union power_supply_propval *val)
648{
649#define BASE_UNIT_CONVERSION 1000
650#define BATTERY_MODE_CAP_MULT_WATT (10 * BASE_UNIT_CONVERSION)
Benson Leung909a78b2011-02-27 17:41:48 -0800651#define TIME_UNIT_CONVERSION 60
652#define TEMP_KELVIN_TO_CELSIUS 2731
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700653 switch (psp) {
654 case POWER_SUPPLY_PROP_ENERGY_NOW:
655 case POWER_SUPPLY_PROP_ENERGY_FULL:
656 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800657 /* sbs provides energy in units of 10mWh.
Benson Leung909a78b2011-02-27 17:41:48 -0800658 * Convert to µWh
659 */
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700660 val->intval *= BATTERY_MODE_CAP_MULT_WATT;
661 break;
662
663 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
Simon Que4495b0a2014-08-04 13:47:46 +0200664 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700665 case POWER_SUPPLY_PROP_VOLTAGE_MAX_DESIGN:
666 case POWER_SUPPLY_PROP_CURRENT_NOW:
Sebastian Reichel8ce6ee42020-05-13 20:56:05 +0200667 case POWER_SUPPLY_PROP_CURRENT_AVG:
Rhyland Klein51d07562011-01-25 11:10:06 -0800668 case POWER_SUPPLY_PROP_CHARGE_NOW:
Sebastian Reichel787fdbc2020-05-13 20:56:07 +0200669 case POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT_MAX:
670 case POWER_SUPPLY_PROP_CONSTANT_CHARGE_VOLTAGE_MAX:
Rhyland Klein51d07562011-01-25 11:10:06 -0800671 case POWER_SUPPLY_PROP_CHARGE_FULL:
672 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700673 val->intval *= BASE_UNIT_CONVERSION;
674 break;
675
676 case POWER_SUPPLY_PROP_TEMP:
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800677 /* sbs provides battery temperature in 0.1K
Benson Leung909a78b2011-02-27 17:41:48 -0800678 * so convert it to 0.1°C
679 */
680 val->intval -= TEMP_KELVIN_TO_CELSIUS;
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700681 break;
682
683 case POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG:
684 case POWER_SUPPLY_PROP_TIME_TO_FULL_AVG:
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800685 /* sbs provides time to empty and time to full in minutes.
Benson Leung909a78b2011-02-27 17:41:48 -0800686 * Convert to seconds
687 */
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700688 val->intval *= TIME_UNIT_CONVERSION;
689 break;
690
691 default:
692 dev_dbg(&client->dev,
693 "%s: no need for unit conversion %d\n", __func__, psp);
694 }
695}
696
Jean-Francois Dagenaise2ec6ae2019-11-01 15:07:03 -0400697static enum sbs_capacity_mode sbs_set_capacity_mode(struct i2c_client *client,
698 enum sbs_capacity_mode mode)
Rhyland Klein51d07562011-01-25 11:10:06 -0800699{
700 int ret, original_val;
701
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800702 original_val = sbs_read_word_data(client, BATTERY_MODE_OFFSET);
Rhyland Klein51d07562011-01-25 11:10:06 -0800703 if (original_val < 0)
704 return original_val;
705
Jean-Francois Dagenaise2ec6ae2019-11-01 15:07:03 -0400706 if ((original_val & BATTERY_MODE_CAPACITY_MASK) == mode)
Rhyland Klein51d07562011-01-25 11:10:06 -0800707 return mode;
708
Jean-Francois Dagenaise2ec6ae2019-11-01 15:07:03 -0400709 if (mode == CAPACITY_MODE_AMPS)
710 ret = original_val & ~BATTERY_MODE_CAPACITY_MASK;
Rhyland Klein51d07562011-01-25 11:10:06 -0800711 else
Jean-Francois Dagenaise2ec6ae2019-11-01 15:07:03 -0400712 ret = original_val | BATTERY_MODE_CAPACITY_MASK;
Rhyland Klein51d07562011-01-25 11:10:06 -0800713
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800714 ret = sbs_write_word_data(client, BATTERY_MODE_OFFSET, ret);
Rhyland Klein51d07562011-01-25 11:10:06 -0800715 if (ret < 0)
716 return ret;
717
Phil Reidadcf04c2017-07-11 17:43:43 +0800718 usleep_range(1000, 2000);
719
Jean-Francois Dagenaise2ec6ae2019-11-01 15:07:03 -0400720 return original_val & BATTERY_MODE_CAPACITY_MASK;
Rhyland Klein51d07562011-01-25 11:10:06 -0800721}
722
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800723static int sbs_get_battery_capacity(struct i2c_client *client,
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700724 int reg_offset, enum power_supply_property psp,
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700725 union power_supply_propval *val)
726{
727 s32 ret;
Jean-Francois Dagenaise2ec6ae2019-11-01 15:07:03 -0400728 enum sbs_capacity_mode mode = CAPACITY_MODE_WATTS;
Rhyland Klein51d07562011-01-25 11:10:06 -0800729
730 if (power_supply_is_amp_property(psp))
Jean-Francois Dagenaise2ec6ae2019-11-01 15:07:03 -0400731 mode = CAPACITY_MODE_AMPS;
Rhyland Klein51d07562011-01-25 11:10:06 -0800732
Jean-Francois Dagenaise2ec6ae2019-11-01 15:07:03 -0400733 mode = sbs_set_capacity_mode(client, mode);
Dan Carpentereb368de2019-09-25 14:01:28 +0300734 if ((int)mode < 0)
Rhyland Klein51d07562011-01-25 11:10:06 -0800735 return mode;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700736
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800737 ret = sbs_read_word_data(client, sbs_data[reg_offset].addr);
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700738 if (ret < 0)
739 return ret;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700740
Shawn Nematbakhshbfa953d2017-06-13 10:53:26 -0700741 val->intval = ret;
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700742
Jean-Francois Dagenaise2ec6ae2019-11-01 15:07:03 -0400743 ret = sbs_set_capacity_mode(client, mode);
Rhyland Klein51d07562011-01-25 11:10:06 -0800744 if (ret < 0)
745 return ret;
746
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700747 return 0;
748}
749
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800750static char sbs_serial[5];
751static int sbs_get_battery_serial_number(struct i2c_client *client,
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700752 union power_supply_propval *val)
753{
754 int ret;
755
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800756 ret = sbs_read_word_data(client, sbs_data[REG_SERIAL_NUMBER].addr);
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700757 if (ret < 0)
758 return ret;
759
Wolfram Sang5e9bee52017-10-29 00:45:59 +0200760 sprintf(sbs_serial, "%04x", ret);
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800761 val->strval = sbs_serial;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700762
763 return 0;
764}
765
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800766static int sbs_get_property_index(struct i2c_client *client,
Rhyland Klein51d07562011-01-25 11:10:06 -0800767 enum power_supply_property psp)
768{
769 int count;
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800770 for (count = 0; count < ARRAY_SIZE(sbs_data); count++)
771 if (psp == sbs_data[count].psp)
Rhyland Klein51d07562011-01-25 11:10:06 -0800772 return count;
773
774 dev_warn(&client->dev,
775 "%s: Invalid Property - %d\n", __func__, psp);
776
777 return -EINVAL;
778}
779
Sebastian Reichel3e9544f2020-05-13 20:56:06 +0200780static int sbs_get_chemistry(struct i2c_client *client,
781 union power_supply_propval *val)
782{
783 enum power_supply_property psp = POWER_SUPPLY_PROP_TECHNOLOGY;
784 int ret;
785
786 ret = sbs_get_property_index(client, psp);
787 if (ret < 0)
788 return ret;
789
790 ret = sbs_get_battery_string_property(client, ret, psp,
791 chemistry);
792 if (ret < 0)
793 return ret;
794
795 if (!strncasecmp(chemistry, "LION", 4))
796 val->intval = POWER_SUPPLY_TECHNOLOGY_LION;
797 else if (!strncasecmp(chemistry, "LiP", 3))
798 val->intval = POWER_SUPPLY_TECHNOLOGY_LIPO;
799 else if (!strncasecmp(chemistry, "NiCd", 4))
800 val->intval = POWER_SUPPLY_TECHNOLOGY_NiCd;
801 else if (!strncasecmp(chemistry, "NiMH", 4))
802 val->intval = POWER_SUPPLY_TECHNOLOGY_NiMH;
803 else
804 val->intval = POWER_SUPPLY_TECHNOLOGY_UNKNOWN;
805
806 if (val->intval == POWER_SUPPLY_TECHNOLOGY_UNKNOWN)
807 dev_warn(&client->dev, "Unknown chemistry: %s\n", chemistry);
808
809 return 0;
810}
811
Sebastian Reichel7721c2f2020-05-13 20:56:08 +0200812static int sbs_get_battery_manufacture_date(struct i2c_client *client,
813 enum power_supply_property psp,
814 union power_supply_propval *val)
815{
816 int ret;
817 u16 day, month, year;
818
819 ret = sbs_read_word_data(client, REG_ADDR_MANUFACTURE_DATE);
820 if (ret < 0)
821 return ret;
822
823 day = ret & GENMASK(4, 0);
824 month = (ret & GENMASK(8, 5)) >> 5;
825 year = ((ret & GENMASK(15, 9)) >> 9) + 1980;
826
827 switch (psp) {
828 case POWER_SUPPLY_PROP_MANUFACTURE_YEAR:
829 val->intval = year;
830 break;
831 case POWER_SUPPLY_PROP_MANUFACTURE_MONTH:
832 val->intval = month;
833 break;
834 case POWER_SUPPLY_PROP_MANUFACTURE_DAY:
835 val->intval = day;
836 break;
837 default:
838 return -EINVAL;
839 }
840
841 return 0;
842}
843
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800844static int sbs_get_property(struct power_supply *psy,
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700845 enum power_supply_property psp,
846 union power_supply_propval *val)
847{
Rhyland Kleinbb879102011-02-28 16:55:28 -0800848 int ret = 0;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100849 struct sbs_info *chip = power_supply_get_drvdata(psy);
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800850 struct i2c_client *client = chip->client;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700851
Phil Reid1cf85552017-08-24 17:31:10 +0800852 if (chip->gpio_detect) {
853 ret = gpiod_get_value_cansleep(chip->gpio_detect);
854 if (ret < 0)
855 return ret;
856 if (psp == POWER_SUPPLY_PROP_PRESENT) {
857 val->intval = ret;
Sebastian Reichel79bcd5a2020-05-13 20:56:04 +0200858 sbs_update_presence(chip, ret);
Phil Reid1cf85552017-08-24 17:31:10 +0800859 return 0;
860 }
861 if (ret == 0)
862 return -ENODATA;
863 }
864
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700865 switch (psp) {
866 case POWER_SUPPLY_PROP_PRESENT:
867 case POWER_SUPPLY_PROP_HEALTH:
Sebastian Reichel0ff96912020-05-13 20:56:01 +0200868 if (chip->flags & SBS_FLAGS_TI_BQ20ZX5)
Brian Norris76b16f4c2018-06-12 13:20:41 -0700869 ret = sbs_get_ti_battery_presence_and_health(client,
870 psp, val);
871 else
872 ret = sbs_get_battery_presence_and_health(client, psp,
873 val);
Michael Nosthofffe55e772019-08-16 09:58:42 +0200874
875 /* this can only be true if no gpio is used */
Rhyland Kleina7d9ace2011-03-09 16:18:02 -0800876 if (psp == POWER_SUPPLY_PROP_PRESENT)
877 return 0;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700878 break;
879
880 case POWER_SUPPLY_PROP_TECHNOLOGY:
Sebastian Reichel3e9544f2020-05-13 20:56:06 +0200881 ret = sbs_get_chemistry(client, val);
882 if (ret < 0)
883 break;
884
Nikolaus Voss5da50982012-05-09 08:30:44 +0200885 goto done; /* don't trigger power_supply_changed()! */
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700886
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700887 case POWER_SUPPLY_PROP_ENERGY_NOW:
888 case POWER_SUPPLY_PROP_ENERGY_FULL:
889 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN:
Rhyland Klein51d07562011-01-25 11:10:06 -0800890 case POWER_SUPPLY_PROP_CHARGE_NOW:
891 case POWER_SUPPLY_PROP_CHARGE_FULL:
892 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN:
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800893 ret = sbs_get_property_index(client, psp);
Rhyland Kleinbb879102011-02-28 16:55:28 -0800894 if (ret < 0)
895 break;
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700896
Shawn Nematbakhshfe8a6532017-06-13 10:53:25 -0700897 /* sbs_get_battery_capacity() will change the battery mode
898 * temporarily to read the requested attribute. Ensure we stay
899 * in the desired mode for the duration of the attribute read.
900 */
901 mutex_lock(&chip->mode_lock);
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800902 ret = sbs_get_battery_capacity(client, ret, psp, val);
Shawn Nematbakhshfe8a6532017-06-13 10:53:25 -0700903 mutex_unlock(&chip->mode_lock);
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700904 break;
905
906 case POWER_SUPPLY_PROP_SERIAL_NUMBER:
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800907 ret = sbs_get_battery_serial_number(client, val);
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700908 break;
909
910 case POWER_SUPPLY_PROP_STATUS:
Joshua Clayton957cb722016-08-11 09:59:12 -0700911 case POWER_SUPPLY_PROP_CAPACITY_LEVEL:
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700912 case POWER_SUPPLY_PROP_CYCLE_COUNT:
913 case POWER_SUPPLY_PROP_VOLTAGE_NOW:
914 case POWER_SUPPLY_PROP_CURRENT_NOW:
Sebastian Reichel8ce6ee42020-05-13 20:56:05 +0200915 case POWER_SUPPLY_PROP_CURRENT_AVG:
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700916 case POWER_SUPPLY_PROP_TEMP:
917 case POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG:
918 case POWER_SUPPLY_PROP_TIME_TO_FULL_AVG:
Simon Que4495b0a2014-08-04 13:47:46 +0200919 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700920 case POWER_SUPPLY_PROP_VOLTAGE_MAX_DESIGN:
Sebastian Reichel787fdbc2020-05-13 20:56:07 +0200921 case POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT_MAX:
922 case POWER_SUPPLY_PROP_CONSTANT_CHARGE_VOLTAGE_MAX:
Shawn Nematbakhshbfa953d2017-06-13 10:53:26 -0700923 case POWER_SUPPLY_PROP_CAPACITY:
Sebastian Reicheld6f56322020-05-13 20:56:02 +0200924 case POWER_SUPPLY_PROP_CAPACITY_ERROR_MARGIN:
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800925 ret = sbs_get_property_index(client, psp);
Rhyland Kleinbb879102011-02-28 16:55:28 -0800926 if (ret < 0)
927 break;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700928
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800929 ret = sbs_get_battery_property(client, ret, psp, val);
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700930 break;
931
Cheng-Yi Chiang9ea89402014-08-04 13:47:45 +0200932 case POWER_SUPPLY_PROP_MODEL_NAME:
933 ret = sbs_get_property_index(client, psp);
934 if (ret < 0)
935 break;
936
937 ret = sbs_get_battery_string_property(client, ret, psp,
938 model_name);
939 val->strval = model_name;
940 break;
941
942 case POWER_SUPPLY_PROP_MANUFACTURER:
943 ret = sbs_get_property_index(client, psp);
944 if (ret < 0)
945 break;
946
947 ret = sbs_get_battery_string_property(client, ret, psp,
948 manufacturer);
949 val->strval = manufacturer;
950 break;
951
Sebastian Reichel7721c2f2020-05-13 20:56:08 +0200952 case POWER_SUPPLY_PROP_MANUFACTURE_YEAR:
953 case POWER_SUPPLY_PROP_MANUFACTURE_MONTH:
954 case POWER_SUPPLY_PROP_MANUFACTURE_DAY:
955 ret = sbs_get_battery_manufacture_date(client, psp, val);
956 break;
957
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700958 default:
959 dev_err(&client->dev,
960 "%s: INVALID property\n", __func__);
961 return -EINVAL;
962 }
963
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800964 if (!chip->enable_detection)
Rhyland Kleinbb879102011-02-28 16:55:28 -0800965 goto done;
966
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800967 if (!chip->gpio_detect &&
968 chip->is_present != (ret >= 0)) {
Sebastian Reichel79bcd5a2020-05-13 20:56:04 +0200969 sbs_update_presence(chip, (ret >= 0));
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +0100970 power_supply_changed(chip->power_supply);
Rhyland Kleinbb879102011-02-28 16:55:28 -0800971 }
972
973done:
974 if (!ret) {
975 /* Convert units to match requirements for power supply class */
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800976 sbs_unit_adjustment(client, psp, val);
Rhyland Kleinbb879102011-02-28 16:55:28 -0800977 }
Rhyland Kleind3ab61e2010-09-21 15:33:55 -0700978
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700979 dev_dbg(&client->dev,
Rhyland Kleina7d9ace2011-03-09 16:18:02 -0800980 "%s: property = %d, value = %x\n", __func__, psp, val->intval);
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700981
Rhyland Klein3ddca0622011-12-05 17:50:46 -0800982 if (ret && chip->is_present)
Rhyland Kleina7d9ace2011-03-09 16:18:02 -0800983 return ret;
984
985 /* battery not present, so return NODATA for properties */
986 if (ret)
987 return -ENODATA;
988
989 return 0;
Rhyland Kleina7640bf2010-09-05 15:31:23 -0700990}
991
Phil Reidcda3b012017-05-01 16:49:58 +0800992static void sbs_supply_changed(struct sbs_info *chip)
Rhyland Kleinbb879102011-02-28 16:55:28 -0800993{
Phil Reidd2cec822016-07-25 10:42:58 +0800994 struct power_supply *battery = chip->power_supply;
Phil Reid3b5dd3a2016-09-01 15:50:52 +0800995 int ret;
Rhyland Kleinbb879102011-02-28 16:55:28 -0800996
Phil Reid3b5dd3a2016-09-01 15:50:52 +0800997 ret = gpiod_get_value_cansleep(chip->gpio_detect);
998 if (ret < 0)
Phil Reidcda3b012017-05-01 16:49:58 +0800999 return;
Sebastian Reichel79bcd5a2020-05-13 20:56:04 +02001000 sbs_update_presence(chip, ret);
Rhyland Kleinbb879102011-02-28 16:55:28 -08001001 power_supply_changed(battery);
Phil Reidcda3b012017-05-01 16:49:58 +08001002}
Rhyland Kleinbb879102011-02-28 16:55:28 -08001003
Phil Reidcda3b012017-05-01 16:49:58 +08001004static irqreturn_t sbs_irq(int irq, void *devid)
1005{
1006 sbs_supply_changed(devid);
Rhyland Kleinbb879102011-02-28 16:55:28 -08001007 return IRQ_HANDLED;
1008}
1009
Phil Reidcda3b012017-05-01 16:49:58 +08001010static void sbs_alert(struct i2c_client *client, enum i2c_alert_protocol prot,
1011 unsigned int data)
1012{
1013 sbs_supply_changed(i2c_get_clientdata(client));
1014}
1015
Rhyland Klein3ddca0622011-12-05 17:50:46 -08001016static void sbs_external_power_changed(struct power_supply *psy)
Rhyland Klein58ddafa2011-05-24 12:05:59 -07001017{
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001018 struct sbs_info *chip = power_supply_get_drvdata(psy);
Rhyland Klein58ddafa2011-05-24 12:05:59 -07001019
Rhyland Klein58ddafa2011-05-24 12:05:59 -07001020 /* cancel outstanding work */
Rhyland Klein3ddca0622011-12-05 17:50:46 -08001021 cancel_delayed_work_sync(&chip->work);
Rhyland Klein58ddafa2011-05-24 12:05:59 -07001022
Rhyland Klein3ddca0622011-12-05 17:50:46 -08001023 schedule_delayed_work(&chip->work, HZ);
Phil Reid389958b2016-09-20 09:01:12 +08001024 chip->poll_time = chip->poll_retry_count;
Rhyland Klein58ddafa2011-05-24 12:05:59 -07001025}
1026
Rhyland Klein3ddca0622011-12-05 17:50:46 -08001027static void sbs_delayed_work(struct work_struct *work)
Rhyland Klein58ddafa2011-05-24 12:05:59 -07001028{
Rhyland Klein3ddca0622011-12-05 17:50:46 -08001029 struct sbs_info *chip;
Rhyland Klein58ddafa2011-05-24 12:05:59 -07001030 s32 ret;
1031
Rhyland Klein3ddca0622011-12-05 17:50:46 -08001032 chip = container_of(work, struct sbs_info, work.work);
Rhyland Klein58ddafa2011-05-24 12:05:59 -07001033
Rhyland Klein3ddca0622011-12-05 17:50:46 -08001034 ret = sbs_read_word_data(chip->client, sbs_data[REG_STATUS].addr);
Rhyland Klein58ddafa2011-05-24 12:05:59 -07001035 /* if the read failed, give up on this work */
1036 if (ret < 0) {
Rhyland Klein3ddca0622011-12-05 17:50:46 -08001037 chip->poll_time = 0;
Rhyland Klein58ddafa2011-05-24 12:05:59 -07001038 return;
1039 }
1040
1041 if (ret & BATTERY_FULL_CHARGED)
1042 ret = POWER_SUPPLY_STATUS_FULL;
Rhyland Klein58ddafa2011-05-24 12:05:59 -07001043 else if (ret & BATTERY_DISCHARGING)
1044 ret = POWER_SUPPLY_STATUS_DISCHARGING;
1045 else
1046 ret = POWER_SUPPLY_STATUS_CHARGING;
1047
Paul Kocialkowski7f93e1f2017-04-25 17:09:05 +02001048 sbs_status_correct(chip->client, &ret);
1049
Rhyland Klein3ddca0622011-12-05 17:50:46 -08001050 if (chip->last_state != ret) {
1051 chip->poll_time = 0;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001052 power_supply_changed(chip->power_supply);
Rhyland Klein58ddafa2011-05-24 12:05:59 -07001053 return;
1054 }
Rhyland Klein3ddca0622011-12-05 17:50:46 -08001055 if (chip->poll_time > 0) {
1056 schedule_delayed_work(&chip->work, HZ);
1057 chip->poll_time--;
Rhyland Klein58ddafa2011-05-24 12:05:59 -07001058 return;
1059 }
1060}
1061
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001062static const struct power_supply_desc sbs_default_desc = {
1063 .type = POWER_SUPPLY_TYPE_BATTERY,
1064 .properties = sbs_properties,
1065 .num_properties = ARRAY_SIZE(sbs_properties),
1066 .get_property = sbs_get_property,
1067 .external_power_changed = sbs_external_power_changed,
1068};
1069
Sebastian Reichelf9ca07a2020-05-13 20:56:13 +02001070static int sbs_probe(struct i2c_client *client)
Rhyland Kleina7640bf2010-09-05 15:31:23 -07001071{
Rhyland Klein3ddca0622011-12-05 17:50:46 -08001072 struct sbs_info *chip;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001073 struct power_supply_desc *sbs_desc;
Rhyland Klein3ddca0622011-12-05 17:50:46 -08001074 struct sbs_platform_data *pdata = client->dev.platform_data;
Krzysztof Kozlowski2dc92152015-03-12 08:44:02 +01001075 struct power_supply_config psy_cfg = {};
Rhyland Kleina7640bf2010-09-05 15:31:23 -07001076 int rc;
Rhyland Kleinbb879102011-02-28 16:55:28 -08001077 int irq;
Rhyland Klein52f56c62011-12-05 17:50:49 -08001078
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001079 sbs_desc = devm_kmemdup(&client->dev, &sbs_default_desc,
1080 sizeof(*sbs_desc), GFP_KERNEL);
1081 if (!sbs_desc)
Rhyland Klein52f56c62011-12-05 17:50:49 -08001082 return -ENOMEM;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001083
1084 sbs_desc->name = devm_kasprintf(&client->dev, GFP_KERNEL, "sbs-%s",
1085 dev_name(&client->dev));
1086 if (!sbs_desc->name)
1087 return -ENOMEM;
Rhyland Kleina7640bf2010-09-05 15:31:23 -07001088
Phil Reid9239a862016-07-25 10:42:57 +08001089 chip = devm_kzalloc(&client->dev, sizeof(struct sbs_info), GFP_KERNEL);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001090 if (!chip)
1091 return -ENOMEM;
Rhyland Kleina7640bf2010-09-05 15:31:23 -07001092
Sebastian Reichel03b758b2020-05-13 20:56:12 +02001093 chip->flags = (u32)(uintptr_t)device_get_match_data(&client->dev);
Rhyland Klein3ddca0622011-12-05 17:50:46 -08001094 chip->client = client;
1095 chip->enable_detection = false;
Krzysztof Kozlowski2dc92152015-03-12 08:44:02 +01001096 psy_cfg.of_node = client->dev.of_node;
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001097 psy_cfg.drv_data = chip;
Rhyland Klein3ddca0622011-12-05 17:50:46 -08001098 chip->last_state = POWER_SUPPLY_STATUS_UNKNOWN;
Shawn Nematbakhshfe8a6532017-06-13 10:53:25 -07001099 mutex_init(&chip->mode_lock);
Rhyland Kleina7640bf2010-09-05 15:31:23 -07001100
Arnd Bergmann9edeaad2016-09-06 15:16:33 +02001101 /* use pdata if available, fall back to DT properties,
1102 * or hardcoded defaults if not
1103 */
Sebastian Reichel03b758b2020-05-13 20:56:12 +02001104 rc = device_property_read_u32(&client->dev, "sbs,i2c-retry-count",
1105 &chip->i2c_retry_count);
Arnd Bergmann9edeaad2016-09-06 15:16:33 +02001106 if (rc)
Phil Reid389958b2016-09-20 09:01:12 +08001107 chip->i2c_retry_count = 0;
Rhyland Klein6c75ea12011-09-14 13:19:07 -07001108
Sebastian Reichel03b758b2020-05-13 20:56:12 +02001109 rc = device_property_read_u32(&client->dev, "sbs,poll-retry-count",
1110 &chip->poll_retry_count);
Arnd Bergmann9edeaad2016-09-06 15:16:33 +02001111 if (rc)
1112 chip->poll_retry_count = 0;
Phil Reid3b5dd3a2016-09-01 15:50:52 +08001113
Arnd Bergmann9edeaad2016-09-06 15:16:33 +02001114 if (pdata) {
1115 chip->poll_retry_count = pdata->poll_retry_count;
1116 chip->i2c_retry_count = pdata->i2c_retry_count;
1117 }
Phil Reid389958b2016-09-20 09:01:12 +08001118 chip->i2c_retry_count = chip->i2c_retry_count + 1;
Phil Reid3b5dd3a2016-09-01 15:50:52 +08001119
Sebastian Reichel03b758b2020-05-13 20:56:12 +02001120 chip->charger_broadcasts = !device_property_read_bool(&client->dev,
Jean-Francois Dagenais182fc882020-05-13 20:56:11 +02001121 "sbs,disable-charger-broadcasts");
1122
Phil Reid3b5dd3a2016-09-01 15:50:52 +08001123 chip->gpio_detect = devm_gpiod_get_optional(&client->dev,
1124 "sbs,battery-detect", GPIOD_IN);
1125 if (IS_ERR(chip->gpio_detect)) {
1126 dev_err(&client->dev, "Failed to get gpio: %ld\n",
1127 PTR_ERR(chip->gpio_detect));
1128 return PTR_ERR(chip->gpio_detect);
Rhyland Kleinbb879102011-02-28 16:55:28 -08001129 }
1130
Rhyland Klein3ddca0622011-12-05 17:50:46 -08001131 i2c_set_clientdata(client, chip);
Rhyland Kleina7640bf2010-09-05 15:31:23 -07001132
Rhyland Klein3ddca0622011-12-05 17:50:46 -08001133 if (!chip->gpio_detect)
Rhyland Kleinbb879102011-02-28 16:55:28 -08001134 goto skip_gpio;
1135
Phil Reid3b5dd3a2016-09-01 15:50:52 +08001136 irq = gpiod_to_irq(chip->gpio_detect);
Rhyland Kleinbb879102011-02-28 16:55:28 -08001137 if (irq <= 0) {
1138 dev_warn(&client->dev, "Failed to get gpio as irq: %d\n", irq);
Rhyland Kleinbb879102011-02-28 16:55:28 -08001139 goto skip_gpio;
1140 }
1141
Phil Reidd2cec822016-07-25 10:42:58 +08001142 rc = devm_request_threaded_irq(&client->dev, irq, NULL, sbs_irq,
Ryosuke Saitobb8fe8e2017-04-21 12:13:17 +09001143 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
Phil Reidd2cec822016-07-25 10:42:58 +08001144 dev_name(&client->dev), chip);
Rhyland Kleinbb879102011-02-28 16:55:28 -08001145 if (rc) {
1146 dev_warn(&client->dev, "Failed to request irq: %d\n", rc);
Rhyland Kleinbb879102011-02-28 16:55:28 -08001147 goto skip_gpio;
1148 }
1149
Rhyland Kleinbb879102011-02-28 16:55:28 -08001150skip_gpio:
Olof Johanssona22b41a2012-09-06 11:32:29 -07001151 /*
Frans Klaverf4ed9502015-06-10 14:16:56 +02001152 * Before we register, we might need to make sure we can actually talk
Olof Johanssona22b41a2012-09-06 11:32:29 -07001153 * to the battery.
1154 */
Phil Reid3b5dd3a2016-09-01 15:50:52 +08001155 if (!(force_load || chip->gpio_detect)) {
Frans Klaverf4ed9502015-06-10 14:16:56 +02001156 rc = sbs_read_word_data(client, sbs_data[REG_STATUS].addr);
1157
1158 if (rc < 0) {
1159 dev_err(&client->dev, "%s: Failed to get device status\n",
1160 __func__);
1161 goto exit_psupply;
1162 }
Olof Johanssona22b41a2012-09-06 11:32:29 -07001163 }
Rhyland Kleinbb879102011-02-28 16:55:28 -08001164
Phil Reid492ff9d82016-07-25 10:42:59 +08001165 chip->power_supply = devm_power_supply_register(&client->dev, sbs_desc,
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001166 &psy_cfg);
1167 if (IS_ERR(chip->power_supply)) {
Rhyland Kleina7640bf2010-09-05 15:31:23 -07001168 dev_err(&client->dev,
1169 "%s: Failed to register power supply\n", __func__);
Krzysztof Kozlowski297d7162015-03-12 08:44:11 +01001170 rc = PTR_ERR(chip->power_supply);
Rhyland Kleinbb879102011-02-28 16:55:28 -08001171 goto exit_psupply;
Rhyland Kleina7640bf2010-09-05 15:31:23 -07001172 }
1173
1174 dev_info(&client->dev,
1175 "%s: battery gas gauge device registered\n", client->name);
1176
Rhyland Klein3ddca0622011-12-05 17:50:46 -08001177 INIT_DELAYED_WORK(&chip->work, sbs_delayed_work);
Rhyland Klein58ddafa2011-05-24 12:05:59 -07001178
Rhyland Klein3ddca0622011-12-05 17:50:46 -08001179 chip->enable_detection = true;
Rhyland Kleinee177d92011-05-24 12:06:50 -07001180
Rhyland Kleina7640bf2010-09-05 15:31:23 -07001181 return 0;
Rhyland Kleinbb879102011-02-28 16:55:28 -08001182
1183exit_psupply:
Rhyland Kleinbb879102011-02-28 16:55:28 -08001184 return rc;
Rhyland Kleina7640bf2010-09-05 15:31:23 -07001185}
1186
Bill Pemberton415ec692012-11-19 13:26:07 -05001187static int sbs_remove(struct i2c_client *client)
Rhyland Kleina7640bf2010-09-05 15:31:23 -07001188{
Rhyland Klein3ddca0622011-12-05 17:50:46 -08001189 struct sbs_info *chip = i2c_get_clientdata(client);
Rhyland Kleina7640bf2010-09-05 15:31:23 -07001190
Rhyland Klein3ddca0622011-12-05 17:50:46 -08001191 cancel_delayed_work_sync(&chip->work);
Rhyland Klein58ddafa2011-05-24 12:05:59 -07001192
Rhyland Kleina7640bf2010-09-05 15:31:23 -07001193 return 0;
1194}
1195
Lars-Peter Clausen9c1d1af2013-03-10 14:34:07 +01001196#if defined CONFIG_PM_SLEEP
1197
1198static int sbs_suspend(struct device *dev)
Rhyland Kleina7640bf2010-09-05 15:31:23 -07001199{
Lars-Peter Clausen9c1d1af2013-03-10 14:34:07 +01001200 struct i2c_client *client = to_i2c_client(dev);
Rhyland Klein3ddca0622011-12-05 17:50:46 -08001201 struct sbs_info *chip = i2c_get_clientdata(client);
Brian Norris76b16f4c2018-06-12 13:20:41 -07001202 int ret;
Rhyland Kleina7640bf2010-09-05 15:31:23 -07001203
Rhyland Klein3ddca0622011-12-05 17:50:46 -08001204 if (chip->poll_time > 0)
1205 cancel_delayed_work_sync(&chip->work);
Rhyland Klein58ddafa2011-05-24 12:05:59 -07001206
Sebastian Reichel0ff96912020-05-13 20:56:01 +02001207 if (chip->flags & SBS_FLAGS_TI_BQ20ZX5) {
Brian Norris76b16f4c2018-06-12 13:20:41 -07001208 /* Write to manufacturer access with sleep command. */
1209 ret = sbs_write_word_data(client,
1210 sbs_data[REG_MANUFACTURER_DATA].addr,
1211 MANUFACTURER_ACCESS_SLEEP);
1212 if (chip->is_present && ret < 0)
1213 return ret;
1214 }
Rhyland Kleina7640bf2010-09-05 15:31:23 -07001215
1216 return 0;
1217}
Lars-Peter Clausen9c1d1af2013-03-10 14:34:07 +01001218
1219static SIMPLE_DEV_PM_OPS(sbs_pm_ops, sbs_suspend, NULL);
1220#define SBS_PM_OPS (&sbs_pm_ops)
1221
Rhyland Kleina7640bf2010-09-05 15:31:23 -07001222#else
Lars-Peter Clausen9c1d1af2013-03-10 14:34:07 +01001223#define SBS_PM_OPS NULL
Rhyland Kleina7640bf2010-09-05 15:31:23 -07001224#endif
Rhyland Kleina7640bf2010-09-05 15:31:23 -07001225
Rhyland Klein3ddca0622011-12-05 17:50:46 -08001226static const struct i2c_device_id sbs_id[] = {
Sebastian Reichel0ff96912020-05-13 20:56:01 +02001227 { "bq20z65", 0 },
Rhyland Kleina7640bf2010-09-05 15:31:23 -07001228 { "bq20z75", 0 },
Rhyland Klein3ddca0622011-12-05 17:50:46 -08001229 { "sbs-battery", 1 },
Rhyland Kleina7640bf2010-09-05 15:31:23 -07001230 {}
1231};
Rhyland Klein3ddca0622011-12-05 17:50:46 -08001232MODULE_DEVICE_TABLE(i2c, sbs_id);
Rhyland Kleina7640bf2010-09-05 15:31:23 -07001233
Arnd Bergmann9edeaad2016-09-06 15:16:33 +02001234static const struct of_device_id sbs_dt_ids[] = {
1235 { .compatible = "sbs,sbs-battery" },
Brian Norris76b16f4c2018-06-12 13:20:41 -07001236 {
Sebastian Reichel0ff96912020-05-13 20:56:01 +02001237 .compatible = "ti,bq20z65",
1238 .data = (void *)SBS_FLAGS_TI_BQ20ZX5,
1239 },
1240 {
Brian Norris76b16f4c2018-06-12 13:20:41 -07001241 .compatible = "ti,bq20z75",
Sebastian Reichel0ff96912020-05-13 20:56:01 +02001242 .data = (void *)SBS_FLAGS_TI_BQ20ZX5,
Brian Norris76b16f4c2018-06-12 13:20:41 -07001243 },
Arnd Bergmann9edeaad2016-09-06 15:16:33 +02001244 { }
1245};
1246MODULE_DEVICE_TABLE(of, sbs_dt_ids);
1247
Rhyland Klein3ddca0622011-12-05 17:50:46 -08001248static struct i2c_driver sbs_battery_driver = {
Sebastian Reichelf9ca07a2020-05-13 20:56:13 +02001249 .probe_new = sbs_probe,
Bill Pemberton28ea73f2012-11-19 13:20:40 -05001250 .remove = sbs_remove,
Phil Reidcda3b012017-05-01 16:49:58 +08001251 .alert = sbs_alert,
Rhyland Klein3ddca0622011-12-05 17:50:46 -08001252 .id_table = sbs_id,
Rhyland Kleina7640bf2010-09-05 15:31:23 -07001253 .driver = {
Rhyland Klein3ddca0622011-12-05 17:50:46 -08001254 .name = "sbs-battery",
Arnd Bergmann9edeaad2016-09-06 15:16:33 +02001255 .of_match_table = sbs_dt_ids,
Lars-Peter Clausen9c1d1af2013-03-10 14:34:07 +01001256 .pm = SBS_PM_OPS,
Rhyland Kleina7640bf2010-09-05 15:31:23 -07001257 },
1258};
Axel Lin5ff92e72012-01-21 14:42:54 +08001259module_i2c_driver(sbs_battery_driver);
Rhyland Kleina7640bf2010-09-05 15:31:23 -07001260
Rhyland Klein3ddca0622011-12-05 17:50:46 -08001261MODULE_DESCRIPTION("SBS battery monitor driver");
Rhyland Kleina7640bf2010-09-05 15:31:23 -07001262MODULE_LICENSE("GPL");
Frans Klaverf4ed9502015-06-10 14:16:56 +02001263
Jean-Francois Dagenais75d8a842019-11-01 15:06:59 -04001264module_param(force_load, bool, 0444);
Frans Klaverf4ed9502015-06-10 14:16:56 +02001265MODULE_PARM_DESC(force_load,
1266 "Attempt to load the driver even if no battery is connected");