blob: 5b4caec95338396564f8138e5a78fe370307f1f8 [file] [log] [blame]
Simon Glass2444dae2015-08-30 16:55:38 -06001if ARCH_ROCKCHIP
2
Heiko Stübner041cdb52016-07-16 00:17:15 +02003config ROCKCHIP_RK3036
4 bool "Support Rockchip RK3036"
5 select CPU_V7
Kever Yanga381bcf2016-07-19 21:16:59 +08006 select SUPPORT_SPL
7 select SPL
Heiko Stübner041cdb52016-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
Heiko Stübner0a2be692017-02-18 19:46:36 +010014config ROCKCHIP_RK3188
15 bool "Support Rockchip RK3188"
16 select CPU_V7
17 select SUPPORT_SPL
18 select SUPPORT_TPL
19 select SPL
20 select TPL
Heiko Stübner008a6102017-04-06 00:19:36 +020021 select BOARD_LATE_INIT
Heiko Stübner0a2be692017-02-18 19:46:36 +010022 select ROCKCHIP_BROM_HELPER
23 help
24 The Rockchip RK3188 is a ARM-based SoC with a quad-core Cortex-A9
25 including NEON and GPU, 512KB L2 cache, Mali-400 graphics, two
26 video interfaces, several memory options and video codec support.
27 Peripherals include Fast Ethernet, USB2 host and OTG, SDIO, I2S,
28 UART, SPI, I2C and PWMs.
29
Simon Glass2444dae2015-08-30 16:55:38 -060030config ROCKCHIP_RK3288
31 bool "Support Rockchip RK3288"
Andreas Färbere0f5dbc2016-07-14 05:09:26 +020032 select CPU_V7
Kever Yanga381bcf2016-07-19 21:16:59 +080033 select SUPPORT_SPL
34 select SPL
Simon Glass2444dae2015-08-30 16:55:38 -060035 help
36 The Rockchip RK3288 is a ARM-based SoC with a quad-core Cortex-A17
37 including NEON and GPU, 1MB L2 cache, Mali-T7 graphics, two
38 video interfaces supporting HDMI and eDP, several DDR3 options
39 and video codec support. Peripherals include Gigabit Ethernet,
Andreas Färberef904bf2016-11-02 18:03:01 +010040 USB2 host and OTG, SDIO, I2S, UARTs, SPI, I2C and PWMs.
Simon Glass2444dae2015-08-30 16:55:38 -060041
Kever Yang85a3cfb2017-02-23 15:37:51 +080042config ROCKCHIP_RK3328
43 bool "Support Rockchip RK3328"
44 select ARM64
45 help
46 The Rockchip RK3328 is a ARM-based SoC with a quad-core Cortex-A53.
47 including NEON and GPU, 1MB L2 cache, Mali-T7 graphics, two
48 video interfaces supporting HDMI and eDP, several DDR3 options
49 and video codec support. Peripherals include Gigabit Ethernet,
50 USB2 host and OTG, SDIO, I2S, UARTs, SPI, I2C and PWMs.
51
Kever Yanga381bcf2016-07-19 21:16:59 +080052config ROCKCHIP_RK3399
53 bool "Support Rockchip RK3399"
54 select ARM64
Kever Yang66e87cc2017-02-22 16:56:38 +080055 select SUPPORT_SPL
56 select SPL
57 select SPL_SEPARATE_BSS
Philipp Tomsich3d54eab2017-03-15 12:08:44 +010058 select ENABLE_ARM_SOC_BOOT0_HOOK
Kever Yanga381bcf2016-07-19 21:16:59 +080059 help
60 The Rockchip RK3399 is a ARM-based SoC with a dual-core Cortex-A72
61 and quad-core Cortex-A53.
62 including NEON and GPU, 1MB L2 cache, Mali-T7 graphics, two
63 video interfaces supporting HDMI and eDP, several DDR3 options
64 and video codec support. Peripherals include Gigabit Ethernet,
65 USB2 host and OTG, SDIO, I2S, UARTs, SPI, I2C and PWMs.
66
Xu Ziyuanb47ea792016-07-12 19:09:49 +080067config ROCKCHIP_SPL_BACK_TO_BROM
68 bool "SPL returns to bootrom"
69 default y if ROCKCHIP_RK3036
Heiko Stübner1d845942017-02-18 19:46:25 +010070 select ROCKCHIP_BROM_HELPER
Xu Ziyuanb47ea792016-07-12 19:09:49 +080071 help
72 Rockchip SoCs have ability to load SPL & U-Boot binary. If enabled,
73 SPL will return to the boot rom, which will then load the U-Boot
74 binary to keep going on.
75
Heiko Stübner1d845942017-02-18 19:46:25 +010076config ROCKCHIP_BROM_HELPER
77 bool
78
Sandy Patterson230e0e02016-08-29 07:31:16 -040079config SPL_MMC_SUPPORT
80 default y if !ROCKCHIP_SPL_BACK_TO_BROM
81
huang linbe1d5e02015-11-17 14:20:27 +080082source "arch/arm/mach-rockchip/rk3036/Kconfig"
Heiko Stübner0a2be692017-02-18 19:46:36 +010083source "arch/arm/mach-rockchip/rk3188/Kconfig"
Heiko Stübner041cdb52016-07-16 00:17:15 +020084source "arch/arm/mach-rockchip/rk3288/Kconfig"
Kever Yang85a3cfb2017-02-23 15:37:51 +080085source "arch/arm/mach-rockchip/rk3328/Kconfig"
Kever Yanga381bcf2016-07-19 21:16:59 +080086source "arch/arm/mach-rockchip/rk3399/Kconfig"
Simon Glass2444dae2015-08-30 16:55:38 -060087endif