diff options
author | Ye Li | 2023-02-03 18:24:36 +0800 |
---|---|---|
committer | Stefano Babic | 2023-03-30 00:45:39 +0200 |
commit | 69c573ca899dec2a58b9d5d3e45177f3be2eba18 (patch) | |
tree | 46d8a5b075f9a8d128aa039437425b8d0cb8355b /include/power | |
parent | 20ba9f252a483d7c2da2e1cf5659e47401c5d77f (diff) |
power: pmic: Add NXP PCA9451A PMIC support
PCA9451A uses similar BUCKs and LDO regulators as PCA9450B/C but
has LDO2 and LDO3 removed. So reuse pca9450 PMIC and regulator driver
and add new type for PCA9451A.
Signed-off-by: Ye Li <ye.li@nxp.com>
Reviewed-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'include/power')
-rw-r--r-- | include/power/pca9450.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/power/pca9450.h b/include/power/pca9450.h index 6efecee96c8..b8219d535ad 100644 --- a/include/power/pca9450.h +++ b/include/power/pca9450.h @@ -59,6 +59,7 @@ int power_pca9450_init(unsigned char bus, unsigned char addr); enum { NXP_CHIP_TYPE_PCA9450A = 0, NXP_CHIP_TYPE_PCA9450BC, + NXP_CHIP_TYPE_PCA9451A, NXP_CHIP_TYPE_AMOUNT }; |