blob: 024404d51d022dbd8b9651d534bdbe70e87fd018 [file] [log] [blame]
Max Filippov88574052016-08-07 08:53:00 +03001#
2# System reset devices
3#
4
5menu "System reset device drivers"
6
7config SYSRESET
8 bool "Enable support for system reset drivers"
9 depends on DM
10 help
11 Enable system reset drivers which can be used to reset the CPU or
12 board. Each driver can provide a reset method which will be called
13 to effect a reset. The uclass will try all available drivers when
14 reset_walk() is called.
15
Kever Yang525ea472019-04-02 20:41:25 +080016config SPL_SYSRESET
17 bool "Enable support for system reset drivers in SPL mode"
18 depends on SYSRESET && SPL_DM
19 help
20 Enable system reset drivers which can be used to reset the CPU or
21 board. Each driver can provide a reset method which will be called
22 to effect a reset. The uclass will try all available drivers when
23 reset_walk() is called.
24
25config TPL_SYSRESET
26 bool "Enable support for system reset drivers in TPL mode"
27 depends on SYSRESET && TPL_DM
28 help
29 Enable system reset drivers which can be used to reset the CPU or
30 board. Each driver can provide a reset method which will be called
31 to effect a reset. The uclass will try all available drivers when
32 reset_walk() is called.
33
Masahiro Yamada836c55d2017-04-14 11:10:24 +090034if SYSRESET
35
Michal Simek8a196af2018-07-13 11:04:56 +020036config SYSRESET_GPIO
37 bool "Enable support for GPIO reset driver"
Chris Packhama373e512019-04-13 20:35:23 +120038 select DM_GPIO
Michal Simek8a196af2018-07-13 11:04:56 +020039 help
40 Reset support via GPIO pin connected reset logic. This is used for
41 example on Microblaze where reset logic can be controlled via GPIO
42 pin which triggers cpu reset.
43
Michal Simekd1c6d422018-07-13 17:00:13 +020044config SYSRESET_MICROBLAZE
45 bool "Enable support for Microblaze soft reset"
46 depends on MICROBLAZE
47 help
48 This is soft reset on Microblaze which does jump to 0x0 address.
49
Masahiro Yamada836c55d2017-04-14 11:10:24 +090050config SYSRESET_PSCI
51 bool "Enable support for PSCI System Reset"
52 depends on ARM_PSCI_FW
53 help
54 Enable PSCI SYSTEM_RESET function call. To use this, PSCI firmware
55 must be running on your system.
56
Simon Goldschmidtbe366392019-07-15 21:47:53 +020057config SYSRESET_SOCFPGA
58 bool "Enable support for Intel SOCFPGA family"
59 depends on ARCH_SOCFPGA && (TARGET_SOCFPGA_GEN5 || TARGET_SOCFPGA_ARRIA10)
60 help
61 This enables the system reset driver support for Intel SOCFPGA SoCs
62 (Cyclone 5, Arria 5 and Arria 10).
63
Simon Goldschmidtebfb9fb2019-07-15 21:47:54 +020064config SYSRESET_SOCFPGA_S10
65 bool "Enable support for Intel SOCFPGA Stratix 10"
66 depends on ARCH_SOCFPGA && TARGET_SOCFPGA_STRATIX10
67 help
68 This enables the system reset driver support for Intel SOCFPGA
69 Stratix SoCs.
70
Andreas Dannenbergebc68792018-08-27 15:57:46 +053071config SYSRESET_TI_SCI
72 bool "TI System Control Interface (TI SCI) system reset driver"
73 depends on TI_SCI_PROTOCOL
74 help
75 This enables the system reset driver support over TI System Control
76 Interface available on some new TI's SoCs.
77
Masahiro Yamada836c55d2017-04-14 11:10:24 +090078endif
Álvaro Fernández Rojasaa19aaf2017-04-25 00:39:14 +020079
80config SYSRESET_SYSCON
81 bool "Enable support for mfd syscon reboot driver"
82 select REGMAP
83 select SYSCON
84 help
85 Reboot support for generic SYSCON mapped register reset.
86
Álvaro Fernández Rojas0da081e2017-05-16 18:29:13 +020087config SYSRESET_WATCHDOG
88 bool "Enable support for watchdog reboot driver"
89 select WDT
90 help
91 Reboot support for generic watchdog reset.
92
Bin Mengd18cdd42018-07-03 02:48:40 -070093config SYSRESET_X86
94 bool "Enable support for x86 processor reboot driver"
95 depends on X86
96 help
97 Reboot support for generic x86 processor reset.
98
Mario Six82ef4ba2018-08-06 10:23:35 +020099config SYSRESET_MCP83XX
100 bool "Enable support MPC83xx SoC family reboot driver"
101 help
102 Reboot support for NXP MPC83xx SoCs.
103
Max Filippov88574052016-08-07 08:53:00 +0300104endmenu