mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
a381bcf529
RK3399 is a SoC from Rockchip with dual-core Cortex-A72 and quad-core Cortex-A53 CPU. It supports two USB3.0 type-C ports and two USB2.0 EHCI ports. Other interfaces are very much like RK3288, the DRAM are 32bit width address and support address from 0 to 4GB-128MB range. Signed-off-by: Kever Yang <kever.yang@rock-chips.com> Acked-by: Simon Glass <sjg@chromium.org>
23 lines
457 B
Text
23 lines
457 B
Text
if ROCKCHIP_RK3399
|
|
|
|
choice
|
|
prompt "RK3399 board select"
|
|
|
|
config TARGET_EVB_RK3399
|
|
bool "RK3399 evaluation board"
|
|
help
|
|
RK3399evb is a evaluation board for Rockchp rk3399,
|
|
with full function and phisical connectors support like type-C ports,
|
|
usb2.0 host ports, LVDS, JTAG, MAC, SDcard, HDMI, USB-2-serial...
|
|
|
|
endchoice
|
|
|
|
config SYS_SOC
|
|
default "rockchip"
|
|
|
|
config SYS_MALLOC_F_LEN
|
|
default 0x0800
|
|
|
|
source "board/rockchip/evb_rk3399/Kconfig"
|
|
|
|
endif
|