diff options
| author | Paul Barker <[email protected]> | 2024-02-27 20:40:33 +0000 |
|---|---|---|
| committer | Marek Vasut <[email protected]> | 2024-02-28 18:42:27 +0100 |
| commit | 167eb89a211a52c20d47b031a1053a74bbca1942 (patch) | |
| tree | 65a0f402f426cb243c57d4b5c09df9fcc18e4041 /drivers/sysreset/Kconfig | |
| parent | 0c25eaeba47226afc7e75569149d3a47119a7b08 (diff) | |
sysreset: Support reset via Renesas RAA215300 PMIC
This patch adds support for resetting a board via the RAA215300 PMIC.
Note that the RAA215300 documentation names the available reset types
differently to u-boot:
* A "warm" reset via the RAA215300 PMIC will fully reset the SoC
(CPU & GPIOs), so this corresponds to SYSRESET_COLD.
* A "cold" reset via the RAA215300 PMIC will cycle all power supply
rails, so this corresponds to SYSRESET_POWER.
Signed-off-by: Paul Barker <[email protected]>
Reviewed-by: Marek Vasut <[email protected]>
Diffstat (limited to 'drivers/sysreset/Kconfig')
| -rw-r--r-- | drivers/sysreset/Kconfig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/sysreset/Kconfig b/drivers/sysreset/Kconfig index 0e52f996283..49c0787b26d 100644 --- a/drivers/sysreset/Kconfig +++ b/drivers/sysreset/Kconfig @@ -229,6 +229,12 @@ config SYSRESET_MPC83XX help Reboot support for NXP MPC83xx SoCs. +config SYSRESET_RAA215300 + bool "Support sysreset via Renesas RAA215300 PMIC" + depends on PMIC_RAA215300 + help + Add support for the system reboot via the Renesas RAA215300 PMIC. + endif endmenu |
