diff options
author | Sebastian Reichel <sebastian.reichel@collabora.com> | 2023-05-04 19:36:09 +0200 |
---|---|---|
committer | Lee Jones <lee@kernel.org> | 2023-05-15 17:19:03 +0200 |
commit | c20e8c5b1203af3726561ee5649b147194e0618e (patch) | |
tree | 828773d0f7a917ef10591a68d348f13e9372abdd /drivers/mfd/Kconfig | |
parent | mfd: rk808: Replace 'struct i2c_client' with 'struct device' (diff) | |
download | linux-c20e8c5b1203af3726561ee5649b147194e0618e.tar.xz linux-c20e8c5b1203af3726561ee5649b147194e0618e.zip |
mfd: rk808: Split into core and i2c
Split rk808 into a core and an i2c part in preparation for
SPI support.
Acked-by: Alexandre Belloni <alexandre.belloni@bootlin.com> # for RTC
Tested-by: Diederik de Haas <didi.debian@cknow.org> # Rock64, Quartz64 Model A + B
Tested-by: Vincent Legoll <vincent.legoll@gmail.com> # Pine64 QuartzPro64
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Link: https://lore.kernel.org/r/20230504173618.142075-6-sebastian.reichel@collabora.com
Signed-off-by: Lee Jones <lee@kernel.org>
Diffstat (limited to 'drivers/mfd/Kconfig')
-rw-r--r-- | drivers/mfd/Kconfig | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig index e90463c4441c..de53e6c701fd 100644 --- a/drivers/mfd/Kconfig +++ b/drivers/mfd/Kconfig @@ -1183,12 +1183,17 @@ config MFD_RC5T583 Additional drivers must be enabled in order to use the different functionality of the device. -config MFD_RK808 +config MFD_RK8XX + bool + select MFD_CORE + +config MFD_RK8XX_I2C tristate "Rockchip RK805/RK808/RK809/RK817/RK818 Power Management Chip" depends on I2C && OF select MFD_CORE select REGMAP_I2C select REGMAP_IRQ + select MFD_RK8XX help If you say yes here you get support for the RK805, RK808, RK809, RK817 and RK818 Power Management chips. |