diff options
author | Andrew F. Davis <afd@ti.com> | 2016-01-25 09:43:45 -0600 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2016-02-11 16:30:59 +0000 |
commit | 796f5692daac4ea47fa5252af742976cd1955f0b (patch) | |
tree | 3a500e08e0cfa98e534da43fbe1679d88ee592ae /drivers/mfd/Kconfig | |
parent | 65b6555971d0498b18a0b2fdc6dd7c822f2d69b7 (diff) | |
download | op-kernel-dev-796f5692daac4ea47fa5252af742976cd1955f0b.zip op-kernel-dev-796f5692daac4ea47fa5252af742976cd1955f0b.tar.gz |
mfd: tps65912: Add driver for the TPS65912 PMIC
This patch adds support for TPS65912 PMIC MFD core. It provides
communication through the I2C and SPI interfaces. It contains
the following components:
- Regulators
- GPIO controller
Signed-off-by: Andrew F. Davis <afd@ti.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/Kconfig')
-rw-r--r-- | drivers/mfd/Kconfig | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig index dd2fc01..1bc97c2 100644 --- a/drivers/mfd/Kconfig +++ b/drivers/mfd/Kconfig @@ -1180,6 +1180,30 @@ config MFD_TPS65910 if you say yes here you get support for the TPS65910 series of Power Management chips. +config MFD_TPS65912 + tristate + select MFD_CORE + select REGMAP + select REGMAP_IRQ + +config MFD_TPS65912_I2C + tristate "TI TPS65912 Power Management chip with I2C" + select MFD_TPS65912 + select REGMAP_I2C + depends on I2C + help + If you say yes here you get support for the TPS65912 series of + PM chips with I2C interface. + +config MFD_TPS65912_SPI + tristate "TI TPS65912 Power Management chip with SPI" + select MFD_TPS65912 + select REGMAP_SPI + depends on SPI_MASTER + help + If you say yes here you get support for the TPS65912 series of + PM chips with SPI interface. + config MFD_TPS80031 bool "TI TPS80031/TPS80032 Power Management chips" depends on I2C=y |