1b25732c2SMax Filippov# 2b25732c2SMax Filippov# System reset devices 3b25732c2SMax Filippov# 4b25732c2SMax Filippov 5b25732c2SMax Filippovmenu "System reset device drivers" 6b25732c2SMax Filippov 7b25732c2SMax Filippovconfig SYSRESET 8b25732c2SMax Filippov bool "Enable support for system reset drivers" 9b25732c2SMax Filippov depends on DM 10b25732c2SMax Filippov help 11b25732c2SMax Filippov Enable system reset drivers which can be used to reset the CPU or 12b25732c2SMax Filippov board. Each driver can provide a reset method which will be called 13b25732c2SMax Filippov to effect a reset. The uclass will try all available drivers when 14b25732c2SMax Filippov reset_walk() is called. 15b25732c2SMax Filippov 16573a3811SMasahiro Yamadaif SYSRESET 17573a3811SMasahiro Yamada 18573a3811SMasahiro Yamadaconfig SYSRESET_PSCI 19573a3811SMasahiro Yamada bool "Enable support for PSCI System Reset" 20573a3811SMasahiro Yamada depends on ARM_PSCI_FW 21573a3811SMasahiro Yamada help 22573a3811SMasahiro Yamada Enable PSCI SYSTEM_RESET function call. To use this, PSCI firmware 23573a3811SMasahiro Yamada must be running on your system. 24573a3811SMasahiro Yamada 25573a3811SMasahiro Yamadaendif 26e3889691SÁlvaro Fernández Rojas 27e3889691SÁlvaro Fernández Rojasconfig SYSRESET_SYSCON 28e3889691SÁlvaro Fernández Rojas bool "Enable support for mfd syscon reboot driver" 29e3889691SÁlvaro Fernández Rojas select REGMAP 30e3889691SÁlvaro Fernández Rojas select SYSCON 31e3889691SÁlvaro Fernández Rojas help 32e3889691SÁlvaro Fernández Rojas Reboot support for generic SYSCON mapped register reset. 33e3889691SÁlvaro Fernández Rojas 34*17a0c141SÁlvaro Fernández Rojasconfig SYSRESET_WATCHDOG 35*17a0c141SÁlvaro Fernández Rojas bool "Enable support for watchdog reboot driver" 36*17a0c141SÁlvaro Fernández Rojas select WDT 37*17a0c141SÁlvaro Fernández Rojas help 38*17a0c141SÁlvaro Fernández Rojas Reboot support for generic watchdog reset. 39*17a0c141SÁlvaro Fernández Rojas 40b25732c2SMax Filippovendmenu 41