blob: aa83073c96a737bc78a4d0d6d5ca54503229e188 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
|
#
# System reset devices
#
menu "System reset device drivers"
config SYSRESET
bool "Enable support for system reset drivers"
depends on DM
help
Enable system reset drivers which can be used to reset the CPU or
board. Each driver can provide a reset method which will be called
to effect a reset. The uclass will try all available drivers when
reset_walk() is called.
config SPL_SYSRESET
bool "Enable support for system reset drivers in SPL mode"
depends on SYSRESET && SPL_DM
help
Enable system reset drivers which can be used to reset the CPU or
board. Each driver can provide a reset method which will be called
to effect a reset. The uclass will try all available drivers when
reset_walk() is called.
config TPL_SYSRESET
bool "Enable support for system reset drivers in TPL mode"
depends on SYSRESET && TPL_DM
help
Enable system reset drivers which can be used to reset the CPU or
board. Each driver can provide a reset method which will be called
to effect a reset. The uclass will try all available drivers when
reset_walk() is called.
config VPL_SYSRESET
bool "Enable support for system reset drivers in VPL mode"
depends on SYSRESET && VPL_DM
default y if TPL_SYSRESET
help
Enable system reset drivers which can be used to reset the CPU or
board. Each driver can provide a reset method which will be called
to effect a reset. The uclass will try all available drivers when
reset_walk() is called.
if SYSRESET
config SYSRESET_CMD_RESET
bool "sysreset implementation of the reset command"
default y
help
Enable sysreset implementation of the reset command.
if CMD_POWEROFF
config SYSRESET_CMD_POWEROFF
bool "sysreset implementation of the poweroff command"
help
This should be selected by the appropriate PMIC driver if
the poweroff command is enabled.
endif
config SYSRESET_CV1800B
bool "Enable support for Sophgo cv1800b System Reset"
help
Enable system reset support for Sophgo cv1800b SoC.
config POWEROFF_GPIO
bool "Enable support for GPIO poweroff driver"
depends on DM_GPIO
help
Support for system poweroff using a GPIO pin. This can be used
for systems having a single GPIO to trigger a system poweroff.
config SPL_POWEROFF_GPIO
bool "Enable support for GPIO poweroff driver in SPL"
depends on DM_GPIO && SPL
help
Support for system poweroff using a GPIO pin in SPL. This can be used
for systems having a single GPIO to trigger a system poweroff.
config TPL_POWEROFF_GPIO
bool "Enable support for GPIO poweroff driver in TPL"
depends on DM_GPIO && TPL
help
Support for system poweroff using a GPIO pin in TPL. This can be used
for systems having a single GPIO to trigger a system poweroff.
config VPL_POWEROFF_GPIO
bool "Enable support for GPIO poweroff driver in VPL"
depends on DM_GPIO && VPL
help
Support for system poweroff using a GPIO pin in VPL. This can be used
for systems having a single GPIO to trigger a system poweroff.
config SYSRESET_GPIO
bool "Enable support for GPIO reset driver"
depends on DM_GPIO
help
Reset support via GPIO pin connected reset logic. This is used for
example on Microblaze where reset logic can be controlled via GPIO
pin which triggers cpu reset.
config SPL_SYSRESET_GPIO
bool "Enable support for GPIO reset driver in SPL"
depends on DM_GPIO && SPL
help
Reset support via GPIO pin connected reset logic in SPL. This is used
for example on Microblaze where reset logic can be controlled via
GPIO pin which triggers cpu reset.
config TPL_SYSRESET_GPIO
bool "Enable support for GPIO reset driver in TPL"
depends on DM_GPIO && TPL
help
Reset support via GPIO pin connected reset logic in TPL. This is used
for example on Microblaze where reset logic can be controlled via
GPIO pin which triggers cpu reset.
config VPL_SYSRESET_GPIO
bool "Enable support for GPIO reset driver in VPL"
depends on DM_GPIO && VPL
help
Reset support via GPIO pin connected reset logic in VPL. This is used
for example on Microblaze where reset logic can be controlled via
GPIO pin which triggers cpu reset.
config SYSRESET_MAX77663
bool "Enable support for MAX77663 PMIC System Reset"
depends on DM_PMIC_MAX77663
select SYSRESET_CMD_POWEROFF if CMD_POWEROFF
help
Enable system power management functions found in MAX77663 PMIC.
config SYSRESET_MAX8907
bool "Enable support for MAX8907 PMIC System Reset"
depends on DM_PMIC_MAX8907
select SYSRESET_CMD_POWEROFF if CMD_POWEROFF
help
Enable system power management functions found in MAX8907 PMIC.
config SYSRESET_MICROBLAZE
bool "Enable support for Microblaze soft reset"
depends on MICROBLAZE
help
This is soft reset on Microblaze which does jump to 0x0 address.
config SYSRESET_OCTEON
bool "Enable support for Marvell Octeon SoC family"
depends on ARCH_OCTEON
help
This enables the system reset driver support for Marvell Octeon
SoCs.
config SYSRESET_AT91
bool "Enable support for Microchip/Atmel reset driver"
depends on ARCH_AT91
select SYSRESET_SPL_AT91 if SPL && SPL_SYSRESET
help
This enables the system reset driver support for Microchip/Atmel
SoCs.
config SYSRESET_SPL_AT91
bool "Enable support for Microchip/Atmel reset driver in SPL"
depends on ARCH_AT91
help
This enables the system reset driver support for Microchip/Atmel
SoCs in SPL.
config SYSRESET_PALMAS
bool "Enable support for PALMAS System Reset"
depends on PMIC_PALMAS
select SYSRESET_CMD_POWEROFF if CMD_POWEROFF
help
Enable system power management functions found in PLAMAS PMIC family.
config SYSRESET_PSCI
bool "Enable support for PSCI System Reset"
depends on ARM_PSCI_FW
select SPL_ARM_PSCI_FW if SPL
help
Enable PSCI SYSTEM_RESET function call. To use this, PSCI firmware
must be running on your system.
config SYSRESET_SBI
bool "Enable support for SBI System Reset"
depends on RISCV_SMODE && SBI_V02
default y
select SYSRESET_CMD_POWEROFF if CMD_POWEROFF
help
Enable system reset and poweroff via the SBI system reset extension.
The extension was introduced in version 0.3 of the SBI specification.
If the SBI implementation provides the extension, is board specific.
The RISC-V platform specification mandates the extension for rich
operating system platforms.
config SYSRESET_SOCFPGA
bool "Enable support for Intel SOCFPGA family"
depends on ARCH_SOCFPGA && (TARGET_SOCFPGA_GEN5 || TARGET_SOCFPGA_ARRIA10)
help
This enables the system reset driver support for Intel SOCFPGA SoCs
(Cyclone 5, Arria 5 and Arria 10).
config SYSRESET_SOCFPGA_SOC64
bool "Enable support for Intel SOCFPGA SoC64 family (Stratix10/Agilex)"
depends on ARCH_SOCFPGA && TARGET_SOCFPGA_SOC64
help
This enables the system reset driver support for Intel SOCFPGA
SoC64 SoCs.
config SYSRESET_TEGRA
bool "Tegra PMC system reset driver"
depends on ARCH_TEGRA
help
This enables the system reset ability of PMC used in Tegra SoCs.
config SYSRESET_TI_SCI
bool "TI System Control Interface (TI SCI) system reset driver"
depends on TI_SCI_PROTOCOL
help
This enables the system reset driver support over TI System Control
Interface available on some new TI's SoCs.
config SYSRESET_TPS65910
bool "Enable support for TPS65910/TPS65911 PMIC System Reset"
depends on DM_PMIC_TPS65910
select SYSRESET_CMD_POWEROFF if CMD_POWEROFF
help
Enable system power management functions found in TPS65910/TPS65911
PMICs.
config SYSRESET_TPS80031
bool "Enable support for TPS80031/TPS80032 PMIC System Reset"
depends on DM_PMIC_TPS80031
select SYSRESET_CMD_POWEROFF if CMD_POWEROFF
help
Enable system power management functions found in TPS80031/TPS80032
PMICs.
config SYSRESET_SYSCON
bool "Enable support for mfd syscon reboot driver"
select REGMAP
select SYSCON
help
Reboot support for generic SYSCON mapped register reset.
config SYSRESET_WATCHDOG
bool "Enable support for watchdog reboot driver"
select WDT
help
Reboot support for generic watchdog reset.
config SYSRESET_WATCHDOG_AUTO
bool "Automatically register first watchdog with sysreset"
depends on SYSRESET_WATCHDOG
help
If enabled, the first watchdog (as selected by the watchdog uclass)
will automatically be registered with the watchdog reboot driver.
config SYSRESET_RESETCTL
bool "Enable support for reset controller reboot driver"
select DM_RESET
help
Reboot support using generic reset controller.
config SYSRESET_X86
bool "Enable support for x86 processor reboot driver"
depends on X86
help
Reboot support for generic x86 processor reset.
config SYSRESET_SPL_X86
bool "Enable support for x86 processor reboot driver in SPL"
depends on X86
help
Reboot support for generic x86 processor reset in SPL.
config SYSRESET_TPL_X86
bool "Enable support for x86 processor reboot driver in TPL"
depends on X86
help
Reboot support for generic x86 processor reset in TPL.
config SYSRESET_MPC83XX
bool "Enable support MPC83xx SoC family reboot driver"
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.
config SYSRESET_QCOM_PSHOLD
bool "Support sysreset for Qualcomm SoCs via PSHOLD"
help
Add support for the system reboot on Qualcomm SoCs via PSHOLD.
endif
endmenu
|