linuxOS_D21X/source/uboot-2021.10/arch/riscv/mach-artinchip/Kconfig
2024-11-29 16:23:11 +08:00

36 lines
541 B
Plaintext

if ARCH_ARTINCHIP
config SYS_SOC
string "Set SoC"
default "d211"
config SYS_VENDOR
string "Set Vendor"
default "artinchip"
config SYS_CPU
string "Set CPU"
default "c906"
choice
prompt "ArtInChip SoC select"
depends on ARCH_ARTINCHIP
config TARGET_D211
bool "ArtInChip D211 SoC"
select ARCH_RV64I
help
The ArtInChip D211 is a RISC-V based SoC with T-Head C906
endchoice
config FPGA_BOARD_ARTINCHIP
bool "ArtInChip FPGA board"
depends on ARCH_ARTINCHIP
if TARGET_D211
source "board/artinchip/d211/Kconfig"
endif
endif