]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/mach-rockchip/Kconfig
ARM64: rockchip: add support for rk3399 SoC based evb
[people/ms/u-boot.git] / arch / arm / mach-rockchip / Kconfig
CommitLineData
2444dae5
SG
1if ARCH_ROCKCHIP
2
041cdb5f
HS
3config ROCKCHIP_RK3036
4 bool "Support Rockchip RK3036"
5 select CPU_V7
a381bcf5
KY
6 select SUPPORT_SPL
7 select SPL
041cdb5f
HS
8 help
9 The Rockchip RK3036 is a ARM-based SoC with a dual-core Cortex-A7
10 including NEON and GPU, Mali-400 graphics, several DDR3 options
11 and video codec support. Peripherals include Gigabit Ethernet,
12 USB2 host and OTG, SDIO, I2S, UART, SPI, I2C and PWMs.
13
2444dae5
SG
14config ROCKCHIP_RK3288
15 bool "Support Rockchip RK3288"
e0f5dbcb 16 select CPU_V7
a381bcf5
KY
17 select SUPPORT_SPL
18 select SPL
2444dae5
SG
19 help
20 The Rockchip RK3288 is a ARM-based SoC with a quad-core Cortex-A17
21 including NEON and GPU, 1MB L2 cache, Mali-T7 graphics, two
22 video interfaces supporting HDMI and eDP, several DDR3 options
23 and video codec support. Peripherals include Gigabit Ethernet,
24 USB2 host and OTG, SDIO, I2S, UART,s, SPI, I2C and PWMs.
25
a381bcf5
KY
26config ROCKCHIP_RK3399
27 bool "Support Rockchip RK3399"
28 select ARM64
29 help
30 The Rockchip RK3399 is a ARM-based SoC with a dual-core Cortex-A72
31 and quad-core Cortex-A53.
32 including NEON and GPU, 1MB L2 cache, Mali-T7 graphics, two
33 video interfaces supporting HDMI and eDP, several DDR3 options
34 and video codec support. Peripherals include Gigabit Ethernet,
35 USB2 host and OTG, SDIO, I2S, UARTs, SPI, I2C and PWMs.
36
b47ea792
XZ
37config ROCKCHIP_SPL_BACK_TO_BROM
38 bool "SPL returns to bootrom"
39 default y if ROCKCHIP_RK3036
40 help
41 Rockchip SoCs have ability to load SPL & U-Boot binary. If enabled,
42 SPL will return to the boot rom, which will then load the U-Boot
43 binary to keep going on.
44
be1d5e03 45source "arch/arm/mach-rockchip/rk3036/Kconfig"
041cdb5f 46source "arch/arm/mach-rockchip/rk3288/Kconfig"
a381bcf5 47source "arch/arm/mach-rockchip/rk3399/Kconfig"
2444dae5 48endif