u-boot-brain/arch/arm/mach-rockchip/rk3036/Kconfig
Kever Yang 476dcb6b43 rockchip: Kconfig: move ROCKCHIP_BOOT_MODE_REG to soc Kconfig
Rockchip SoCs have different ROCKCHIP_BOOT_MODE_REG value,
move it to SoC's own Kconfig, and add address for rk3128 and
rk3328 so that all SoCs have available address.

Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
2019-07-20 23:59:44 +08:00

32 lines
469 B
Plaintext

if ROCKCHIP_RK3036
choice
prompt "RK3036 board select"
config TARGET_EVB_RK3036
bool "EVB_RK3036"
select BOARD_LATE_INIT
config TARGET_KYLIN_RK3036
bool "KYLIN_RK3036"
select BOARD_LATE_INIT
endchoice
config ROCKCHIP_BOOT_MODE_REG
default 0x200081c8
config SYS_SOC
default "rk3036"
config SYS_MALLOC_F_LEN
default 0x400
config SPL_SERIAL_SUPPORT
default y
source "board/rockchip/evb_rk3036/Kconfig"
source "board/rockchip/kylin_rk3036/Kconfig"
endif