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>
48 lines
804 B
Plaintext
48 lines
804 B
Plaintext
mainmenu "RT-Thread Project Configuration"
|
|
|
|
BSP_DIR := .
|
|
|
|
RTT_DIR := ../../..
|
|
|
|
PKGS_DIR := packages
|
|
|
|
source "$(RTT_DIR)/Kconfig"
|
|
osource "$PKGS_DIR/Kconfig"
|
|
|
|
config SOC_CV18XX_AARCH64
|
|
bool
|
|
select ARCH_ARMV8
|
|
select ARCH_CPU_64BIT
|
|
select ARCH_ARM_MMU
|
|
select RT_USING_CACHE
|
|
select RT_USING_COMPONENTS_INIT
|
|
select RT_USING_USER_MAIN
|
|
select RT_USING_GIC
|
|
select BSP_USING_GIC
|
|
select ARCH_MM_MMU
|
|
default y
|
|
|
|
config BSP_GPIO_IRQ_BASE
|
|
int
|
|
default 76
|
|
|
|
config BSP_SYS_GPIO_IRQ_BASE
|
|
int
|
|
default 86
|
|
|
|
config SOC_TYPE_SG2002
|
|
bool
|
|
default n
|
|
|
|
choice
|
|
prompt "Board Type"
|
|
default BOARD_TYPE_MILKV_DUO256M
|
|
|
|
config BOARD_TYPE_MILKV_DUO256M
|
|
select SOC_TYPE_SG2002
|
|
bool "milkv-duo256m"
|
|
|
|
endchoice
|
|
|
|
source "$(BSP_DIR)/board/Kconfig"
|