Confirmed with milkv, only the sd card version is sold by default for duo in the market. The spi pins are provided through stamp holes, so that users can solder the corresponding components on their baseboard during secondary development. In order to simplify maintenance work, the mainline will only support the sd-card version and no longer support spinor/spinand. Updated config files the same in this patch. Signed-off-by: Chen Wang <unicorn_wang@outlook.com>
70 lines
1.1 KiB
Plaintext
Executable File
70 lines
1.1 KiB
Plaintext
Executable File
mainmenu "RT-Thread Project Configuration"
|
|
|
|
BSP_DIR := .
|
|
|
|
RTT_DIR := ../../..
|
|
|
|
PKGS_DIR := packages
|
|
|
|
source "$(RTT_DIR)/Kconfig"
|
|
osource "$PKGS_DIR/Kconfig"
|
|
rsource "board/Kconfig"
|
|
|
|
config BSP_USING_C906_LITTLE
|
|
bool
|
|
select ARCH_RISCV64
|
|
select ARCH_RISCV_FPU_D
|
|
select RT_USING_COMPONENTS_INIT
|
|
select RT_USING_USER_MAIN
|
|
default y
|
|
|
|
config BSP_PLIC_PHY_ADDR
|
|
hex
|
|
default 0x70000000
|
|
|
|
config IRQ_MAX_NR
|
|
int
|
|
default 61
|
|
|
|
config BSP_TIMER_CLK_FREQ
|
|
int
|
|
default 25000000
|
|
|
|
config BSP_GPIO_IRQ_BASE
|
|
int
|
|
default 41
|
|
|
|
config BSP_SYS_GPIO_IRQ_BASE
|
|
int
|
|
default 47
|
|
|
|
config SOC_TYPE_CV180X
|
|
bool
|
|
default n
|
|
|
|
config SOC_TYPE_SG2000
|
|
bool
|
|
default n
|
|
|
|
config SOC_TYPE_SG2002
|
|
bool
|
|
default n
|
|
|
|
choice
|
|
prompt "Board Type"
|
|
default BOARD_TYPE_MILKV_DUO256M
|
|
|
|
config BOARD_TYPE_MILKV_DUO
|
|
select SOC_TYPE_CV180X
|
|
bool "milkv-duo"
|
|
|
|
config BOARD_TYPE_MILKV_DUO256M
|
|
select SOC_TYPE_SG2002
|
|
bool "milkv-duo256m"
|
|
|
|
config BOARD_TYPE_MILKV_DUOS
|
|
select SOC_TYPE_SG2000
|
|
bool "milkv-duos"
|
|
|
|
endchoice
|