36 lines
541 B
Plaintext
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
|