diff options
| author | Andre Przywara <andre.przywara@arm.com> | 2023-10-17 14:12:44 +0100 |
|---|---|---|
| committer | Andre Przywara <andre.przywara@arm.com> | 2023-11-12 16:47:16 +0000 |
| commit | fafedff35015c8cca7c537b68deb57b22c3ead73 (patch) | |
| tree | 7a270694c21d5b3c6603b76c3d3f7dba6b38cd18 /drivers/power/pmic/axp.c | |
| parent | d17d051c540a97b8d0b38236dd7fef2294db4e48 (diff) | |
power: regulator: add AXP313 support
The X-Powers AXP313a is a small PMIC with just three buck converters and
three LDOs, one of which is actually fixed (so not modelled here).
Add the compatible string and the respective regulator ranges to allow
drivers to adjust voltages.
Signed-off-by: Andre Przywara <andre.przywara@arm.com>
Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
Diffstat (limited to 'drivers/power/pmic/axp.c')
| -rw-r--r-- | drivers/power/pmic/axp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/power/pmic/axp.c b/drivers/power/pmic/axp.c index 025dac24f28..0e1e45fba74 100644 --- a/drivers/power/pmic/axp.c +++ b/drivers/power/pmic/axp.c @@ -87,6 +87,7 @@ static const struct udevice_id axp_pmic_ids[] = { { .compatible = "x-powers,axp209", .data = AXP209_ID }, { .compatible = "x-powers,axp221", .data = AXP221_ID }, { .compatible = "x-powers,axp223", .data = AXP223_ID }, + { .compatible = "x-powers,axp313a", .data = AXP313_ID }, { .compatible = "x-powers,axp803", .data = AXP803_ID }, { .compatible = "x-powers,axp806", .data = AXP806_ID }, { .compatible = "x-powers,axp809", .data = AXP809_ID }, |
