mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
476dcb6b43
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>
31 lines
469 B
Text
31 lines
469 B
Text
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
|