linuxOS_D21X/source/uboot-2021.10/arch/riscv/mach-artinchip/Kconfig

36 lines
541 B
Plaintext
Raw Normal View History

2024-11-29 08:13:19 +00:00
if ARCH_ARTINCHIP
config SYS_SOC
2024-11-29 08:23:11 +00:00
string "Set SoC"
default "d211"
2024-11-29 08:13:19 +00:00
config SYS_VENDOR
2024-11-29 08:23:11 +00:00
string "Set Vendor"
2024-11-29 08:13:19 +00:00
default "artinchip"
config SYS_CPU
2024-11-29 08:23:11 +00:00
string "Set CPU"
2024-11-29 08:13:19 +00:00
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
2024-11-29 08:23:11 +00:00
if TARGET_D211
2024-11-29 08:13:19 +00:00
source "board/artinchip/d211/Kconfig"
2024-11-29 08:23:11 +00:00
endif
2024-11-29 08:13:19 +00:00
endif