Skip to content

Commit 4aeae9c

Browse files
Laurentiu Palcusre
authored andcommitted
power_supply: Add support for TI BQ25890 charger chip
More details about the chip can be found here: http://www.ti.com/product/bq25890 Signed-off-by: Laurentiu Palcu <[email protected]> Reviewed-by: Krzysztof Kozlowski <[email protected]> Signed-off-by: Sebastian Reichel <[email protected]>
1 parent 7e9f8a2 commit 4aeae9c

File tree

3 files changed

+1007
-0
lines changed

3 files changed

+1007
-0
lines changed

drivers/power/Kconfig

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -401,6 +401,13 @@ config CHARGER_BQ24735
401401
help
402402
Say Y to enable support for the TI BQ24735 battery charger.
403403

404+
config CHARGER_BQ25890
405+
tristate "TI BQ25890 battery charger driver"
406+
depends on I2C && GPIOLIB
407+
select REGMAP_I2C
408+
help
409+
Say Y to enable support for the TI BQ25890 battery charger.
410+
404411
config CHARGER_SMB347
405412
tristate "Summit Microelectronics SMB347 Battery Charger"
406413
depends on I2C

drivers/power/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ obj-$(CONFIG_CHARGER_BQ2415X) += bq2415x_charger.o
6060
obj-$(CONFIG_CHARGER_BQ24190) += bq24190_charger.o
6161
obj-$(CONFIG_CHARGER_BQ24257) += bq24257_charger.o
6262
obj-$(CONFIG_CHARGER_BQ24735) += bq24735-charger.o
63+
obj-$(CONFIG_CHARGER_BQ25890) += bq25890_charger.o
6364
obj-$(CONFIG_POWER_AVS) += avs/
6465
obj-$(CONFIG_CHARGER_SMB347) += smb347-charger.o
6566
obj-$(CONFIG_CHARGER_TPS65090) += tps65090-charger.o

0 commit comments

Comments
 (0)