blob: 5c4a4c229176d43bddb9ac103eaa670fbbc707dc [file] [log] [blame]
Simon Glass2cffe662015-08-30 16:55:38 -06001if ARCH_ROCKCHIP
2
Heiko Stübner5c91e2b2016-07-16 00:17:15 +02003config ROCKCHIP_RK3036
4 bool "Support Rockchip RK3036"
5 select CPU_V7
Kever Yang0d3d7832016-07-19 21:16:59 +08006 select SUPPORT_SPL
7 select SPL
Heiko Stübner5c91e2b2016-07-16 00:17:15 +02008 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
Simon Glass2cffe662015-08-30 16:55:38 -060014config ROCKCHIP_RK3288
15 bool "Support Rockchip RK3288"
Andreas Färber6c427032016-07-14 05:09:26 +020016 select CPU_V7
Kever Yang0d3d7832016-07-19 21:16:59 +080017 select SUPPORT_SPL
18 select SPL
Simon Glass2cffe662015-08-30 16:55:38 -060019 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,
Andreas Färber531e8e02016-11-02 18:03:01 +010024 USB2 host and OTG, SDIO, I2S, UARTs, SPI, I2C and PWMs.
Simon Glass2cffe662015-08-30 16:55:38 -060025
Kever Yang0d3d7832016-07-19 21:16:59 +080026config 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
Xu Ziyuan5401eb82016-07-12 19:09:49 +080037config 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
Sandy Pattersond70f0f32016-08-29 07:31:16 -040045config SPL_MMC_SUPPORT
46 default y if !ROCKCHIP_SPL_BACK_TO_BROM
47
huang lin1115b642015-11-17 14:20:27 +080048source "arch/arm/mach-rockchip/rk3036/Kconfig"
Heiko Stübner5c91e2b2016-07-16 00:17:15 +020049source "arch/arm/mach-rockchip/rk3288/Kconfig"
Kever Yang0d3d7832016-07-19 21:16:59 +080050source "arch/arm/mach-rockchip/rk3399/Kconfig"
Simon Glass2cffe662015-08-30 16:55:38 -060051endif