diff options
| author | Shree Ramamoorthy <s-ramamoorthy@ti.com> | 2025-04-25 15:57:34 -0500 |
|---|---|---|
| committer | Mark Brown <broonie@kernel.org> | 2025-05-02 05:39:04 +0900 |
| commit | 3f2e457efdad5af4164f155bd7ac902258a9b1ce (patch) | |
| tree | e8bc2c115c6ca013d6888c7bd3686dd275b556e0 /drivers/regulator/Kconfig | |
| parent | 8c04144e156b49980a786e80c855e41f6c71685c (diff) | |
| download | linux-next-3f2e457efdad5af4164f155bd7ac902258a9b1ce.tar.gz linux-next-3f2e457efdad5af4164f155bd7ac902258a9b1ce.zip | |
regulator: tps65219: Add support for TPS65215 regulator resources
Isolate all changes involving TPS65215 regulator desc and range resources.
- 'chipid' will identify which PMIC to support, and the corresponding
chip_data struct element to use in probe(). The chip_data struct is
helpful for any new PMICs added to this driver. The goal is to add future
PMIC info to necessary structs and minimize probe() function edits.
- The probe() will now loop through common (overlapping) regulators first,
then device-specific structs identified in the chip_data struct.
- Add TI TPS65215 PMIC to the existing platform_device_id struct, so the
regulator probe() can handle which PMIC chip_data information to use.
Signed-off-by: Shree Ramamoorthy <s-ramamoorthy@ti.com>
Link: https://patch.msgid.link/20250425205736.76433-3-s-ramamoorthy@ti.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator/Kconfig')
| -rw-r--r-- | drivers/regulator/Kconfig | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/regulator/Kconfig b/drivers/regulator/Kconfig index ad37f274dd8e..8180e56aa5a0 100644 --- a/drivers/regulator/Kconfig +++ b/drivers/regulator/Kconfig @@ -1590,10 +1590,11 @@ config REGULATOR_TPS65219 tristate "TI TPS65219 Power regulators" depends on MFD_TPS65219 && OF help - This driver supports TPS65219 voltage regulator chips. + This driver supports TPS65219 series and TPS65215 voltage regulator chips. TPS65219 series of PMICs have 3 single phase BUCKs & 4 LDOs - voltage regulators. It supports software based voltage control - for different voltage domains. + voltage regulators. + TPS65215 PMIC has 3 single phase BUCKs & 2 LDOs. + Both PMICs support software based voltage control for different voltage domains. config REGULATOR_TPS6594 tristate "TI TPS6594 Power regulators" |
