Files
opensbi/lib/utils/reset/Kconfig
Guo Ren d1e0f7f25b utils/reset: Remove fdt_reset_thead
In the past, we used fdt_reset_thead to help customers with prototype
verification. However, with the emergence of the Big-little SoC system,
it can no longer meet the demand. Therefore, we use zero_stage_boot
instead of fdt_reset_thead. It cleans up the opensbi code and ends the
disputation of reset_sample's dts.

This patch removes the fdt_reset_thead component and updates the related
doc.

Signed-off-by: Guo Ren <guoren@linux.alibaba.com>
Signed-off-by: Guo Ren <guoren@kernel.org>
Reviewed-by: Anup Patel <anup@brainfault.org>
2023-11-16 16:25:23 +05:30

39 lines
630 B
Plaintext

# SPDX-License-Identifier: BSD-2-Clause
menu "System Reset Support"
config FDT_RESET
bool "FDT based reset drivers"
depends on FDT
default n
if FDT_RESET
config FDT_RESET_ATCWDT200
bool "Andes WDT FDT reset driver"
depends on SYS_ATCSMU
default n
config FDT_RESET_GPIO
bool "GPIO FDT reset driver"
depends on FDT_GPIO
default n
config FDT_RESET_HTIF
bool "Host transfer interface (HTIF) FDT reset driver"
select SYS_HTIF
default n
config FDT_RESET_SUNXI_WDT
bool "Sunxi WDT FDT reset driver"
default n
config FDT_RESET_SYSCON
bool "Syscon FDT reset driver"
depends on FDT_REGMAP
default n
endif
endmenu