forked from Mirrors/opensbi

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>
39 lines
630 B
Plaintext
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
|