2 * Gas Gauge driver for SBS Compliant Batteries
4 * Copyright (c) 2010, NVIDIA Corporation.
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.
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
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.
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>
28 #include <linux/interrupt.h>
29 #include <linux/gpio.h>
32 #include <linux/power/sbs-battery.h>
35 REG_MANUFACTURER_DATA
,
45 REG_REMAINING_CAPACITY
,
46 REG_REMAINING_CAPACITY_CHARGE
,
47 REG_FULL_CHARGE_CAPACITY
,
48 REG_FULL_CHARGE_CAPACITY_CHARGE
,
50 REG_DESIGN_CAPACITY_CHARGE
,
51 REG_DESIGN_VOLTAGE_MIN
,
52 REG_DESIGN_VOLTAGE_MAX
,
57 /* Battery Mode defines */
58 #define BATTERY_MODE_OFFSET 0x03
59 #define BATTERY_MODE_MASK 0x8000
60 enum sbs_battery_mode
{
65 /* manufacturer access defines */
66 #define MANUFACTURER_ACCESS_STATUS 0x0006
67 #define MANUFACTURER_ACCESS_SLEEP 0x0011
69 /* battery status value bits */
70 #define BATTERY_DISCHARGING 0x40
71 #define BATTERY_FULL_CHARGED 0x20
72 #define BATTERY_FULL_DISCHARGED 0x10
74 /* min_value and max_value are only valid for numerical data */
75 #define SBS_DATA(_psp, _addr, _min_value, _max_value) { \
78 .min_value = _min_value, \
79 .max_value = _max_value, \
82 static const struct chip_data
{
83 enum power_supply_property psp
;
88 [REG_MANUFACTURER_DATA
] =
89 SBS_DATA(POWER_SUPPLY_PROP_PRESENT
, 0x00, 0, 65535),
91 SBS_DATA(POWER_SUPPLY_PROP_TEMP
, 0x08, 0, 65535),
93 SBS_DATA(POWER_SUPPLY_PROP_VOLTAGE_NOW
, 0x09, 0, 20000),
95 SBS_DATA(POWER_SUPPLY_PROP_CURRENT_NOW
, 0x0A, -32768, 32767),
97 SBS_DATA(POWER_SUPPLY_PROP_CAPACITY
, 0x0D, 0, 100),
98 [REG_REMAINING_CAPACITY
] =
99 SBS_DATA(POWER_SUPPLY_PROP_ENERGY_NOW
, 0x0F, 0, 65535),
100 [REG_REMAINING_CAPACITY_CHARGE
] =
101 SBS_DATA(POWER_SUPPLY_PROP_CHARGE_NOW
, 0x0F, 0, 65535),
102 [REG_FULL_CHARGE_CAPACITY
] =
103 SBS_DATA(POWER_SUPPLY_PROP_ENERGY_FULL
, 0x10, 0, 65535),
104 [REG_FULL_CHARGE_CAPACITY_CHARGE
] =
105 SBS_DATA(POWER_SUPPLY_PROP_CHARGE_FULL
, 0x10, 0, 65535),
106 [REG_TIME_TO_EMPTY
] =
107 SBS_DATA(POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG
, 0x12, 0, 65535),
109 SBS_DATA(POWER_SUPPLY_PROP_TIME_TO_FULL_AVG
, 0x13, 0, 65535),
111 SBS_DATA(POWER_SUPPLY_PROP_STATUS
, 0x16, 0, 65535),
113 SBS_DATA(POWER_SUPPLY_PROP_CYCLE_COUNT
, 0x17, 0, 65535),
114 [REG_DESIGN_CAPACITY
] =
115 SBS_DATA(POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN
, 0x18, 0, 65535),
116 [REG_DESIGN_CAPACITY_CHARGE
] =
117 SBS_DATA(POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN
, 0x18, 0, 65535),
118 [REG_DESIGN_VOLTAGE_MIN
] =
119 SBS_DATA(POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN
, 0x19, 0, 65535),
120 [REG_DESIGN_VOLTAGE_MAX
] =
121 SBS_DATA(POWER_SUPPLY_PROP_VOLTAGE_MAX_DESIGN
, 0x19, 0, 65535),
122 [REG_SERIAL_NUMBER
] =
123 SBS_DATA(POWER_SUPPLY_PROP_SERIAL_NUMBER
, 0x1C, 0, 65535),
124 /* Properties of type `const char *' */
126 SBS_DATA(POWER_SUPPLY_PROP_MANUFACTURER
, 0x20, 0, 65535),
128 SBS_DATA(POWER_SUPPLY_PROP_MODEL_NAME
, 0x21, 0, 65535)
131 static enum power_supply_property sbs_properties
[] = {
132 POWER_SUPPLY_PROP_STATUS
,
133 POWER_SUPPLY_PROP_HEALTH
,
134 POWER_SUPPLY_PROP_PRESENT
,
135 POWER_SUPPLY_PROP_TECHNOLOGY
,
136 POWER_SUPPLY_PROP_CYCLE_COUNT
,
137 POWER_SUPPLY_PROP_VOLTAGE_NOW
,
138 POWER_SUPPLY_PROP_CURRENT_NOW
,
139 POWER_SUPPLY_PROP_CAPACITY
,
140 POWER_SUPPLY_PROP_TEMP
,
141 POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG
,
142 POWER_SUPPLY_PROP_TIME_TO_FULL_AVG
,
143 POWER_SUPPLY_PROP_SERIAL_NUMBER
,
144 POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN
,
145 POWER_SUPPLY_PROP_VOLTAGE_MAX_DESIGN
,
146 POWER_SUPPLY_PROP_ENERGY_NOW
,
147 POWER_SUPPLY_PROP_ENERGY_FULL
,
148 POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN
,
149 POWER_SUPPLY_PROP_CHARGE_NOW
,
150 POWER_SUPPLY_PROP_CHARGE_FULL
,
151 POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN
,
152 /* Properties of type `const char *' */
153 POWER_SUPPLY_PROP_MANUFACTURER
,
154 POWER_SUPPLY_PROP_MODEL_NAME
158 struct i2c_client
*client
;
159 struct power_supply power_supply
;
160 struct sbs_platform_data
*pdata
;
163 bool enable_detection
;
167 struct delayed_work work
;
171 static char model_name
[I2C_SMBUS_BLOCK_MAX
+ 1];
172 static char manufacturer
[I2C_SMBUS_BLOCK_MAX
+ 1];
174 static int sbs_read_word_data(struct i2c_client
*client
, u8 address
)
176 struct sbs_info
*chip
= i2c_get_clientdata(client
);
181 retries
= max(chip
->pdata
->i2c_retry_count
+ 1, 1);
183 while (retries
> 0) {
184 ret
= i2c_smbus_read_word_data(client
, address
);
191 dev_dbg(&client
->dev
,
192 "%s: i2c read at address 0x%x failed\n",
197 return le16_to_cpu(ret
);
200 static int sbs_read_string_data(struct i2c_client
*client
, u8 address
,
203 struct sbs_info
*chip
= i2c_get_clientdata(client
);
204 s32 ret
= 0, block_length
= 0;
205 int retries_length
= 1, retries_block
= 1;
206 u8 block_buffer
[I2C_SMBUS_BLOCK_MAX
+ 1];
209 retries_length
= max(chip
->pdata
->i2c_retry_count
+ 1, 1);
210 retries_block
= max(chip
->pdata
->i2c_retry_count
+ 1, 1);
213 /* Adapter needs to support these two functions */
214 if (!i2c_check_functionality(client
->adapter
,
215 I2C_FUNC_SMBUS_BYTE_DATA
|
216 I2C_FUNC_SMBUS_I2C_BLOCK
)){
220 /* Get the length of block data */
221 while (retries_length
> 0) {
222 ret
= i2c_smbus_read_byte_data(client
, address
);
229 dev_dbg(&client
->dev
,
230 "%s: i2c read at address 0x%x failed\n",
235 /* block_length does not include NULL terminator */
237 if (block_length
> I2C_SMBUS_BLOCK_MAX
) {
238 dev_err(&client
->dev
,
239 "%s: Returned block_length is longer than 0x%x\n",
240 __func__
, I2C_SMBUS_BLOCK_MAX
);
244 /* Get the block data */
245 while (retries_block
> 0) {
246 ret
= i2c_smbus_read_i2c_block_data(
248 block_length
+ 1, block_buffer
);
255 dev_dbg(&client
->dev
,
256 "%s: i2c read at address 0x%x failed\n",
261 /* block_buffer[0] == block_length */
262 memcpy(values
, block_buffer
+ 1, block_length
);
263 values
[block_length
] = '\0';
265 return le16_to_cpu(ret
);
268 static int sbs_write_word_data(struct i2c_client
*client
, u8 address
,
271 struct sbs_info
*chip
= i2c_get_clientdata(client
);
276 retries
= max(chip
->pdata
->i2c_retry_count
+ 1, 1);
278 while (retries
> 0) {
279 ret
= i2c_smbus_write_word_data(client
, address
,
287 dev_dbg(&client
->dev
,
288 "%s: i2c write to address 0x%x failed\n",
296 static int sbs_get_battery_presence_and_health(
297 struct i2c_client
*client
, enum power_supply_property psp
,
298 union power_supply_propval
*val
)
301 struct sbs_info
*chip
= i2c_get_clientdata(client
);
303 if (psp
== POWER_SUPPLY_PROP_PRESENT
&&
305 ret
= gpio_get_value(chip
->pdata
->battery_detect
);
306 if (ret
== chip
->pdata
->battery_detect_present
)
310 chip
->is_present
= val
->intval
;
314 /* Write to ManufacturerAccess with
315 * ManufacturerAccess command and then
317 ret
= sbs_write_word_data(client
, sbs_data
[REG_MANUFACTURER_DATA
].addr
,
318 MANUFACTURER_ACCESS_STATUS
);
320 if (psp
== POWER_SUPPLY_PROP_PRESENT
)
321 val
->intval
= 0; /* battery removed */
325 ret
= sbs_read_word_data(client
, sbs_data
[REG_MANUFACTURER_DATA
].addr
);
329 if (ret
< sbs_data
[REG_MANUFACTURER_DATA
].min_value
||
330 ret
> sbs_data
[REG_MANUFACTURER_DATA
].max_value
) {
335 /* Mask the upper nibble of 2nd byte and
336 * lower byte of response then
337 * shift the result by 8 to get status*/
340 if (psp
== POWER_SUPPLY_PROP_PRESENT
) {
342 /* battery removed */
346 } else if (psp
== POWER_SUPPLY_PROP_HEALTH
) {
348 val
->intval
= POWER_SUPPLY_HEALTH_UNSPEC_FAILURE
;
349 else if (ret
== 0x0B)
350 val
->intval
= POWER_SUPPLY_HEALTH_OVERHEAT
;
351 else if (ret
== 0x0C)
352 val
->intval
= POWER_SUPPLY_HEALTH_DEAD
;
354 val
->intval
= POWER_SUPPLY_HEALTH_GOOD
;
360 static int sbs_get_battery_property(struct i2c_client
*client
,
361 int reg_offset
, enum power_supply_property psp
,
362 union power_supply_propval
*val
)
364 struct sbs_info
*chip
= i2c_get_clientdata(client
);
367 ret
= sbs_read_word_data(client
, sbs_data
[reg_offset
].addr
);
371 /* returned values are 16 bit */
372 if (sbs_data
[reg_offset
].min_value
< 0)
375 if (ret
>= sbs_data
[reg_offset
].min_value
&&
376 ret
<= sbs_data
[reg_offset
].max_value
) {
378 if (psp
!= POWER_SUPPLY_PROP_STATUS
)
381 if (ret
& BATTERY_FULL_CHARGED
)
382 val
->intval
= POWER_SUPPLY_STATUS_FULL
;
383 else if (ret
& BATTERY_FULL_DISCHARGED
)
384 val
->intval
= POWER_SUPPLY_STATUS_NOT_CHARGING
;
385 else if (ret
& BATTERY_DISCHARGING
)
386 val
->intval
= POWER_SUPPLY_STATUS_DISCHARGING
;
388 val
->intval
= POWER_SUPPLY_STATUS_CHARGING
;
390 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
);
394 power_supply_changed(&chip
->power_supply
);
398 if (psp
== POWER_SUPPLY_PROP_STATUS
)
399 val
->intval
= POWER_SUPPLY_STATUS_UNKNOWN
;
407 static int sbs_get_battery_string_property(struct i2c_client
*client
,
408 int reg_offset
, enum power_supply_property psp
, char *val
)
412 ret
= sbs_read_string_data(client
, sbs_data
[reg_offset
].addr
, val
);
420 static void sbs_unit_adjustment(struct i2c_client
*client
,
421 enum power_supply_property psp
, union power_supply_propval
*val
)
423 #define BASE_UNIT_CONVERSION 1000
424 #define BATTERY_MODE_CAP_MULT_WATT (10 * BASE_UNIT_CONVERSION)
425 #define TIME_UNIT_CONVERSION 60
426 #define TEMP_KELVIN_TO_CELSIUS 2731
428 case POWER_SUPPLY_PROP_ENERGY_NOW
:
429 case POWER_SUPPLY_PROP_ENERGY_FULL
:
430 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN
:
431 /* sbs provides energy in units of 10mWh.
434 val
->intval
*= BATTERY_MODE_CAP_MULT_WATT
;
437 case POWER_SUPPLY_PROP_VOLTAGE_NOW
:
438 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN
:
439 case POWER_SUPPLY_PROP_VOLTAGE_MAX_DESIGN
:
440 case POWER_SUPPLY_PROP_CURRENT_NOW
:
441 case POWER_SUPPLY_PROP_CHARGE_NOW
:
442 case POWER_SUPPLY_PROP_CHARGE_FULL
:
443 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN
:
444 val
->intval
*= BASE_UNIT_CONVERSION
;
447 case POWER_SUPPLY_PROP_TEMP
:
448 /* sbs provides battery temperature in 0.1K
449 * so convert it to 0.1°C
451 val
->intval
-= TEMP_KELVIN_TO_CELSIUS
;
454 case POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG
:
455 case POWER_SUPPLY_PROP_TIME_TO_FULL_AVG
:
456 /* sbs provides time to empty and time to full in minutes.
459 val
->intval
*= TIME_UNIT_CONVERSION
;
463 dev_dbg(&client
->dev
,
464 "%s: no need for unit conversion %d\n", __func__
, psp
);
468 static enum sbs_battery_mode
sbs_set_battery_mode(struct i2c_client
*client
,
469 enum sbs_battery_mode mode
)
471 int ret
, original_val
;
473 original_val
= sbs_read_word_data(client
, BATTERY_MODE_OFFSET
);
474 if (original_val
< 0)
477 if ((original_val
& BATTERY_MODE_MASK
) == mode
)
480 if (mode
== BATTERY_MODE_AMPS
)
481 ret
= original_val
& ~BATTERY_MODE_MASK
;
483 ret
= original_val
| BATTERY_MODE_MASK
;
485 ret
= sbs_write_word_data(client
, BATTERY_MODE_OFFSET
, ret
);
489 return original_val
& BATTERY_MODE_MASK
;
492 static int sbs_get_battery_capacity(struct i2c_client
*client
,
493 int reg_offset
, enum power_supply_property psp
,
494 union power_supply_propval
*val
)
497 enum sbs_battery_mode mode
= BATTERY_MODE_WATTS
;
499 if (power_supply_is_amp_property(psp
))
500 mode
= BATTERY_MODE_AMPS
;
502 mode
= sbs_set_battery_mode(client
, mode
);
506 ret
= sbs_read_word_data(client
, sbs_data
[reg_offset
].addr
);
510 if (psp
== POWER_SUPPLY_PROP_CAPACITY
) {
511 /* sbs spec says that this can be >100 %
512 * even if max value is 100 % */
513 val
->intval
= min(ret
, 100);
517 ret
= sbs_set_battery_mode(client
, mode
);
524 static char sbs_serial
[5];
525 static int sbs_get_battery_serial_number(struct i2c_client
*client
,
526 union power_supply_propval
*val
)
530 ret
= sbs_read_word_data(client
, sbs_data
[REG_SERIAL_NUMBER
].addr
);
534 ret
= sprintf(sbs_serial
, "%04x", ret
);
535 val
->strval
= sbs_serial
;
540 static int sbs_get_property_index(struct i2c_client
*client
,
541 enum power_supply_property psp
)
544 for (count
= 0; count
< ARRAY_SIZE(sbs_data
); count
++)
545 if (psp
== sbs_data
[count
].psp
)
548 dev_warn(&client
->dev
,
549 "%s: Invalid Property - %d\n", __func__
, psp
);
554 static int sbs_get_property(struct power_supply
*psy
,
555 enum power_supply_property psp
,
556 union power_supply_propval
*val
)
559 struct sbs_info
*chip
= container_of(psy
,
560 struct sbs_info
, power_supply
);
561 struct i2c_client
*client
= chip
->client
;
564 case POWER_SUPPLY_PROP_PRESENT
:
565 case POWER_SUPPLY_PROP_HEALTH
:
566 ret
= sbs_get_battery_presence_and_health(client
, psp
, val
);
567 if (psp
== POWER_SUPPLY_PROP_PRESENT
)
571 case POWER_SUPPLY_PROP_TECHNOLOGY
:
572 val
->intval
= POWER_SUPPLY_TECHNOLOGY_LION
;
573 goto done
; /* don't trigger power_supply_changed()! */
575 case POWER_SUPPLY_PROP_ENERGY_NOW
:
576 case POWER_SUPPLY_PROP_ENERGY_FULL
:
577 case POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN
:
578 case POWER_SUPPLY_PROP_CHARGE_NOW
:
579 case POWER_SUPPLY_PROP_CHARGE_FULL
:
580 case POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN
:
581 case POWER_SUPPLY_PROP_CAPACITY
:
582 ret
= sbs_get_property_index(client
, psp
);
586 ret
= sbs_get_battery_capacity(client
, ret
, psp
, val
);
589 case POWER_SUPPLY_PROP_SERIAL_NUMBER
:
590 ret
= sbs_get_battery_serial_number(client
, val
);
593 case POWER_SUPPLY_PROP_STATUS
:
594 case POWER_SUPPLY_PROP_CYCLE_COUNT
:
595 case POWER_SUPPLY_PROP_VOLTAGE_NOW
:
596 case POWER_SUPPLY_PROP_CURRENT_NOW
:
597 case POWER_SUPPLY_PROP_TEMP
:
598 case POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG
:
599 case POWER_SUPPLY_PROP_TIME_TO_FULL_AVG
:
600 case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN
:
601 case POWER_SUPPLY_PROP_VOLTAGE_MAX_DESIGN
:
602 ret
= sbs_get_property_index(client
, psp
);
606 ret
= sbs_get_battery_property(client
, ret
, psp
, val
);
609 case POWER_SUPPLY_PROP_MODEL_NAME
:
610 ret
= sbs_get_property_index(client
, psp
);
614 ret
= sbs_get_battery_string_property(client
, ret
, psp
,
616 val
->strval
= model_name
;
619 case POWER_SUPPLY_PROP_MANUFACTURER
:
620 ret
= sbs_get_property_index(client
, psp
);
624 ret
= sbs_get_battery_string_property(client
, ret
, psp
,
626 val
->strval
= manufacturer
;
630 dev_err(&client
->dev
,
631 "%s: INVALID property\n", __func__
);
635 if (!chip
->enable_detection
)
638 if (!chip
->gpio_detect
&&
639 chip
->is_present
!= (ret
>= 0)) {
640 chip
->is_present
= (ret
>= 0);
641 power_supply_changed(&chip
->power_supply
);
646 /* Convert units to match requirements for power supply class */
647 sbs_unit_adjustment(client
, psp
, val
);
650 dev_dbg(&client
->dev
,
651 "%s: property = %d, value = %x\n", __func__
, psp
, val
->intval
);
653 if (ret
&& chip
->is_present
)
656 /* battery not present, so return NODATA for properties */
663 static irqreturn_t
sbs_irq(int irq
, void *devid
)
665 struct power_supply
*battery
= devid
;
667 power_supply_changed(battery
);
672 static void sbs_external_power_changed(struct power_supply
*psy
)
674 struct sbs_info
*chip
;
676 chip
= container_of(psy
, struct sbs_info
, power_supply
);
678 if (chip
->ignore_changes
> 0) {
679 chip
->ignore_changes
--;
683 /* cancel outstanding work */
684 cancel_delayed_work_sync(&chip
->work
);
686 schedule_delayed_work(&chip
->work
, HZ
);
687 chip
->poll_time
= chip
->pdata
->poll_retry_count
;
690 static void sbs_delayed_work(struct work_struct
*work
)
692 struct sbs_info
*chip
;
695 chip
= container_of(work
, struct sbs_info
, work
.work
);
697 ret
= sbs_read_word_data(chip
->client
, sbs_data
[REG_STATUS
].addr
);
698 /* if the read failed, give up on this work */
704 if (ret
& BATTERY_FULL_CHARGED
)
705 ret
= POWER_SUPPLY_STATUS_FULL
;
706 else if (ret
& BATTERY_FULL_DISCHARGED
)
707 ret
= POWER_SUPPLY_STATUS_NOT_CHARGING
;
708 else if (ret
& BATTERY_DISCHARGING
)
709 ret
= POWER_SUPPLY_STATUS_DISCHARGING
;
711 ret
= POWER_SUPPLY_STATUS_CHARGING
;
713 if (chip
->last_state
!= ret
) {
715 power_supply_changed(&chip
->power_supply
);
718 if (chip
->poll_time
> 0) {
719 schedule_delayed_work(&chip
->work
, HZ
);
725 #if defined(CONFIG_OF)
727 #include <linux/of_device.h>
728 #include <linux/of_gpio.h>
730 static const struct of_device_id sbs_dt_ids
[] = {
731 { .compatible
= "sbs,sbs-battery" },
732 { .compatible
= "ti,bq20z75" },
735 MODULE_DEVICE_TABLE(of
, sbs_dt_ids
);
737 static struct sbs_platform_data
*sbs_of_populate_pdata(
738 struct i2c_client
*client
)
740 struct device_node
*of_node
= client
->dev
.of_node
;
741 struct sbs_platform_data
*pdata
= client
->dev
.platform_data
;
742 enum of_gpio_flags gpio_flags
;
746 /* verify this driver matches this device */
750 /* if platform data is set, honor it */
754 /* first make sure at least one property is set, otherwise
755 * it won't change behavior from running without pdata.
757 if (!of_get_property(of_node
, "sbs,i2c-retry-count", NULL
) &&
758 !of_get_property(of_node
, "sbs,poll-retry-count", NULL
) &&
759 !of_get_property(of_node
, "sbs,battery-detect-gpios", NULL
))
762 pdata
= devm_kzalloc(&client
->dev
, sizeof(struct sbs_platform_data
),
767 rc
= of_property_read_u32(of_node
, "sbs,i2c-retry-count", &prop
);
769 pdata
->i2c_retry_count
= prop
;
771 rc
= of_property_read_u32(of_node
, "sbs,poll-retry-count", &prop
);
773 pdata
->poll_retry_count
= prop
;
775 if (!of_get_property(of_node
, "sbs,battery-detect-gpios", NULL
)) {
776 pdata
->battery_detect
= -1;
780 pdata
->battery_detect
= of_get_named_gpio_flags(of_node
,
781 "sbs,battery-detect-gpios", 0, &gpio_flags
);
783 if (gpio_flags
& OF_GPIO_ACTIVE_LOW
)
784 pdata
->battery_detect_present
= 0;
786 pdata
->battery_detect_present
= 1;
792 static struct sbs_platform_data
*sbs_of_populate_pdata(
793 struct i2c_client
*client
)
795 return client
->dev
.platform_data
;
799 static int sbs_probe(struct i2c_client
*client
,
800 const struct i2c_device_id
*id
)
802 struct sbs_info
*chip
;
803 struct sbs_platform_data
*pdata
= client
->dev
.platform_data
;
808 name
= kasprintf(GFP_KERNEL
, "sbs-%s", dev_name(&client
->dev
));
810 dev_err(&client
->dev
, "Failed to allocate device name\n");
814 chip
= kzalloc(sizeof(struct sbs_info
), GFP_KERNEL
);
820 chip
->client
= client
;
821 chip
->enable_detection
= false;
822 chip
->gpio_detect
= false;
823 chip
->power_supply
.name
= name
;
824 chip
->power_supply
.type
= POWER_SUPPLY_TYPE_BATTERY
;
825 chip
->power_supply
.properties
= sbs_properties
;
826 chip
->power_supply
.num_properties
= ARRAY_SIZE(sbs_properties
);
827 chip
->power_supply
.get_property
= sbs_get_property
;
828 chip
->power_supply
.of_node
= client
->dev
.of_node
;
829 /* ignore first notification of external change, it is generated
830 * from the power_supply_register call back
832 chip
->ignore_changes
= 1;
833 chip
->last_state
= POWER_SUPPLY_STATUS_UNKNOWN
;
834 chip
->power_supply
.external_power_changed
= sbs_external_power_changed
;
836 pdata
= sbs_of_populate_pdata(client
);
839 chip
->gpio_detect
= gpio_is_valid(pdata
->battery_detect
);
843 i2c_set_clientdata(client
, chip
);
845 if (!chip
->gpio_detect
)
848 rc
= gpio_request(pdata
->battery_detect
, dev_name(&client
->dev
));
850 dev_warn(&client
->dev
, "Failed to request gpio: %d\n", rc
);
851 chip
->gpio_detect
= false;
855 rc
= gpio_direction_input(pdata
->battery_detect
);
857 dev_warn(&client
->dev
, "Failed to get gpio as input: %d\n", rc
);
858 gpio_free(pdata
->battery_detect
);
859 chip
->gpio_detect
= false;
863 irq
= gpio_to_irq(pdata
->battery_detect
);
865 dev_warn(&client
->dev
, "Failed to get gpio as irq: %d\n", irq
);
866 gpio_free(pdata
->battery_detect
);
867 chip
->gpio_detect
= false;
871 rc
= request_irq(irq
, sbs_irq
,
872 IRQF_TRIGGER_RISING
| IRQF_TRIGGER_FALLING
,
873 dev_name(&client
->dev
), &chip
->power_supply
);
875 dev_warn(&client
->dev
, "Failed to request irq: %d\n", rc
);
876 gpio_free(pdata
->battery_detect
);
877 chip
->gpio_detect
= false;
885 * Before we register, we need to make sure we can actually talk
888 rc
= sbs_read_word_data(client
, sbs_data
[REG_STATUS
].addr
);
890 dev_err(&client
->dev
, "%s: Failed to get device status\n",
895 rc
= power_supply_register(&client
->dev
, &chip
->power_supply
);
897 dev_err(&client
->dev
,
898 "%s: Failed to register power supply\n", __func__
);
902 dev_info(&client
->dev
,
903 "%s: battery gas gauge device registered\n", client
->name
);
905 INIT_DELAYED_WORK(&chip
->work
, sbs_delayed_work
);
907 chip
->enable_detection
= true;
913 free_irq(chip
->irq
, &chip
->power_supply
);
914 if (chip
->gpio_detect
)
915 gpio_free(pdata
->battery_detect
);
925 static int sbs_remove(struct i2c_client
*client
)
927 struct sbs_info
*chip
= i2c_get_clientdata(client
);
930 free_irq(chip
->irq
, &chip
->power_supply
);
931 if (chip
->gpio_detect
)
932 gpio_free(chip
->pdata
->battery_detect
);
934 power_supply_unregister(&chip
->power_supply
);
936 cancel_delayed_work_sync(&chip
->work
);
938 kfree(chip
->power_supply
.name
);
945 #if defined CONFIG_PM_SLEEP
947 static int sbs_suspend(struct device
*dev
)
949 struct i2c_client
*client
= to_i2c_client(dev
);
950 struct sbs_info
*chip
= i2c_get_clientdata(client
);
953 if (chip
->poll_time
> 0)
954 cancel_delayed_work_sync(&chip
->work
);
956 /* write to manufacturer access with sleep command */
957 ret
= sbs_write_word_data(client
, sbs_data
[REG_MANUFACTURER_DATA
].addr
,
958 MANUFACTURER_ACCESS_SLEEP
);
959 if (chip
->is_present
&& ret
< 0)
965 static SIMPLE_DEV_PM_OPS(sbs_pm_ops
, sbs_suspend
, NULL
);
966 #define SBS_PM_OPS (&sbs_pm_ops)
969 #define SBS_PM_OPS NULL
972 static const struct i2c_device_id sbs_id
[] = {
974 { "sbs-battery", 1 },
977 MODULE_DEVICE_TABLE(i2c
, sbs_id
);
979 static struct i2c_driver sbs_battery_driver
= {
981 .remove
= sbs_remove
,
984 .name
= "sbs-battery",
985 .of_match_table
= of_match_ptr(sbs_dt_ids
),
989 module_i2c_driver(sbs_battery_driver
);
991 MODULE_DESCRIPTION("SBS battery monitor driver");
992 MODULE_LICENSE("GPL");