diff options
author | Svyatoslav Ryhel <clamor95@gmail.com> | 2023-10-27 11:26:08 +0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-11-03 12:37:15 -0400 |
commit | 8ab09b92dcac9f9ef0c78498f174ab87e9e286b0 (patch) | |
tree | f50a089819c8757938102d5cbc934a3468d12312 /drivers/power | |
parent | 21484f21149024c8ed68737774afdb739f566f3c (diff) | |
download | u-boot-8ab09b92dcac9f9ef0c78498f174ab87e9e286b0.tar.gz u-boot-8ab09b92dcac9f9ef0c78498f174ab87e9e286b0.tar.bz2 u-boot-8ab09b92dcac9f9ef0c78498f174ab87e9e286b0.zip |
power: pmic: palmas: support TI TPS65913 PMIC
Existing PALMAS PMIC driver is fully compatible with TI TPS65913
PMIC found in many Tegra 4 devices, like Tegra Note 7 and ASUS
TF701T. TPS65913 shares same structure of regulators like TPS659038
so data can be reused.
Tested-by: Svyatoslav Ryhel <clamor95@gmail.com> # NVIDIA Tegratab
Signed-off-by: Svyatoslav Ryhel <clamor95@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
Diffstat (limited to 'drivers/power')
-rw-r--r-- | drivers/power/pmic/palmas.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/power/pmic/palmas.c b/drivers/power/pmic/palmas.c index eb83c88d56..b2e8a2930c 100644 --- a/drivers/power/pmic/palmas.c +++ b/drivers/power/pmic/palmas.c @@ -88,6 +88,7 @@ static struct dm_pmic_ops palmas_ops = { static const struct udevice_id palmas_ids[] = { { .compatible = "ti,tps659038", .data = TPS659038 }, + { .compatible = "ti,tps65913" , .data = TPS659038 }, { .compatible = "ti,tps65917" , .data = TPS65917 }, { } }; |