Skip to content

Commit 76143ec

Browse files
committed
power: supply: add driver for LT8491
LT8491 High Voltage Buck-Boost Battery Charge Controller with I2C Signed-off-by: John Erasmus Mari Geronimo <johnerasmusmari.geronimo@analog.com>
1 parent 62596c7 commit 76143ec

File tree

3 files changed

+416
-0
lines changed

3 files changed

+416
-0
lines changed

drivers/power/supply/Kconfig

+9
Original file line numberDiff line numberDiff line change
@@ -533,6 +533,15 @@ config CHARGER_LT3651
533533
Say Y to include support for the Analog Devices (Linear Technology)
534534
LT3651 battery charger which reports its status via GPIO lines.
535535

536+
config CHARGER_LT8491
537+
tristate "Analog Devices LT8491 charger"
538+
depends on I2C
539+
help
540+
Say Y to include support for the Analog Devices (Linear Technology)
541+
LT8491 battery charge controller connected to I2C. The LT8491 is a
542+
high voltage buck-boost switching regulator battery charger
543+
controller.
544+
536545
config CHARGER_LTC4162L
537546
tristate "LTC4162-L charger"
538547
depends on I2C

drivers/power/supply/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ obj-$(CONFIG_CHARGER_LP8788) += lp8788-charger.o
7272
obj-$(CONFIG_CHARGER_GPIO) += gpio-charger.o
7373
obj-$(CONFIG_CHARGER_MANAGER) += charger-manager.o
7474
obj-$(CONFIG_CHARGER_LT3651) += lt3651-charger.o
75+
obj-$(CONFIG_CHARGER_LT8491) += lt8491_charger.o
7576
obj-$(CONFIG_CHARGER_LTC4162L) += ltc4162-l-charger.o
7677
obj-$(CONFIG_CHARGER_MAX14577) += max14577_charger.o
7778
obj-$(CONFIG_CHARGER_DETECTOR_MAX14656) += max14656_charger_detector.o

0 commit comments

Comments
 (0)