diff options
author | Tudor Ambarus <tudor.ambarus@microchip.com> | 2022-02-25 10:13:56 +0200 |
---|---|---|
committer | Eugen Hristev <eugen.hristev@microchip.com> | 2022-04-01 15:42:46 +0300 |
commit | af612ee4184d9fe9b17a9d81e65beeb8fceb8949 (patch) | |
tree | b7855ff45d98e406d160c7f68212388ab3ff702f /arch | |
parent | 5576bb36ad7954af31474b778bfe037f5ef39ec6 (diff) | |
download | u-boot-af612ee4184d9fe9b17a9d81e65beeb8fceb8949.zip u-boot-af612ee4184d9fe9b17a9d81e65beeb8fceb8949.tar.gz u-boot-af612ee4184d9fe9b17a9d81e65beeb8fceb8949.tar.bz2 |
configs: Convert AT91RESET_EXTRST to Kconfig
Convert AT91RESET_EXTRST to Kconfig for easier integration. The symbol is
not configurable from menuconfig, it will be automatically selected by SoCs
that select it explicitly via the "select" directive.
AT91RESET_EXTRST sets the Reset Controller's RSTC_CR.EXTRST bit which
asserts the nrst_out pin that resets external devices.
Signed-off-by: Tudor Ambarus <tudor.ambarus@microchip.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-at91/Kconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-at91/Kconfig b/arch/arm/mach-at91/Kconfig index 145c4b2..6558950 100644 --- a/arch/arm/mach-at91/Kconfig +++ b/arch/arm/mach-at91/Kconfig @@ -306,6 +306,9 @@ endchoice config ATMEL_SFR bool +config AT91RESET_EXTRST + bool + config SYS_SOC default "at91" |