aboutsummaryrefslogtreecommitdiff
path: root/include/power/pca9450.h
diff options
context:
space:
mode:
authorMarek Vasut <marex@denx.de>2022-12-09 20:35:46 +0100
committerStefano Babic <sbabic@denx.de>2023-01-30 23:23:01 +0100
commit910c7a881f5b64dc92d3ba9232ce59ae54fd6486 (patch)
treedbca00482ee4ff762328d6249d2e1c3bc1ee982c /include/power/pca9450.h
parentf75e92f7f7bffe724dccd6769b37f95e0aa7842c (diff)
downloadu-boot-910c7a881f5b64dc92d3ba9232ce59ae54fd6486.zip
u-boot-910c7a881f5b64dc92d3ba9232ce59ae54fd6486.tar.gz
u-boot-910c7a881f5b64dc92d3ba9232ce59ae54fd6486.tar.bz2
pmic: pca9450: Make warm reset on WDOG_B assertion
The default configuration of the PMIC behavior makes the PMIC power cycle most regulators on WDOG_B assertion. This power cycling causes the memory contents of OCRAM to be lost. Some systems neeeds some memory that survives reset and reboot, therefore this patch is created. The implementation is taken almost verbatim from Linux commit 2364a64d0673f ("regulator: pca9450: Make warm reset on WDOG_B assertion") Signed-off-by: Marek Vasut <marex@denx.de> Reviewed-by: Fabio Estevam <festevam@denx.de> Reviewed-by: Peng Fan <peng.fan@nxp.com>
Diffstat (limited to 'include/power/pca9450.h')
-rw-r--r--include/power/pca9450.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/power/pca9450.h b/include/power/pca9450.h
index fa0405fc..6efecee 100644
--- a/include/power/pca9450.h
+++ b/include/power/pca9450.h
@@ -67,4 +67,8 @@ enum {
#define PCA9450_LDO34_MASK 0x1f
#define PCA9450_LDO5_MASK 0x0f
+#define PCA9450_PMIC_RESET_WDOG_B_CFG_MASK 0xc0
+#define PCA9450_PMIC_RESET_WDOG_B_CFG_WARM 0x40
+#define PCA9450_PMIC_RESET_WDOG_B_CFG_COLD_LDO12 0x80
+
#endif