blob: a7be30bbd89785d3b61bb291820a9456e60b44d1 [file] [log] [blame]
Andreas Färber9e3ad682017-05-15 17:51:18 +08001if ROCKCHIP_RK3368
2
Andy Yane0c21b82017-05-15 17:53:50 +08003choice
4 prompt "RK3368 board"
5
6config TARGET_SHEEP
7 bool "Sheep board"
8 help
9 Sheep board is designed by Rockchip as a EVB board
10 for rk3368.
Andreas Färber81be6802017-05-15 17:54:26 +080011
12config TARGET_GEEKBOX
13 bool "GeekBox"
14
Andy Yanad63aac2017-05-15 17:54:48 +080015config TARGET_EVB_PX5
16 bool "Evb-PX5"
Tom Rinidd96cef2023-02-15 22:36:50 -050017 select ARCH_EARLY_INIT_R
Andy Yanad63aac2017-05-15 17:54:48 +080018 help
19 PX5 EVB is designed by Rockchip for automotive field
20 with integrated CVBS (TP2825) / MIPI DSI / CSI / LVDS
21 HDMI video input/output interface, audio codec ES8396,
22 WIFI/BT (on RTL8723BS), Gsensor BMA250E and light&proximity
23 sensor STK3410.
Andy Yane0c21b82017-05-15 17:53:50 +080024endchoice
25
Kever Yang70e558d2019-07-09 22:14:20 +080026config ROCKCHIP_BOOT_MODE_REG
27 default 0xff738200
28
Johan Jonkerf6fc8952022-04-09 18:55:02 +020029config ROCKCHIP_STIMER_BASE
30 default 0xff830020
31
Andreas Färber9e3ad682017-05-15 17:51:18 +080032config SYS_SOC
Kever Yang3a8dcfb2019-03-28 11:01:24 +080033 default "rk3368"
Andreas Färber9e3ad682017-05-15 17:51:18 +080034
Kever Yang3320a282019-07-09 22:14:25 +080035config SYS_MALLOC_F_LEN
Heiko Stuebner5204a372021-02-09 14:47:05 +010036 default 0x4000
Kever Yang3320a282019-07-09 22:14:25 +080037
Kever Yangfa990ef2019-07-09 22:14:29 +080038config SPL_LIBCOMMON_SUPPORT
39 default y
40
41config SPL_LIBGENERIC_SUPPORT
42 default y
43
Andy Yane0c21b82017-05-15 17:53:50 +080044source "board/rockchip/sheep_rk3368/Kconfig"
Andreas Färber81be6802017-05-15 17:54:26 +080045source "board/geekbuying/geekbox/Kconfig"
Andy Yanad63aac2017-05-15 17:54:48 +080046source "board/rockchip/evb_px5/Kconfig"
47
Heiko Stuebner1859ea72021-02-09 14:47:06 +010048config SPL_STACK_R_ADDR
49 default 0x04000000
50
Kever Yang46b0b152019-07-09 22:14:18 +080051config TPL_STACK
52 default 0xff8cffff
53
54config TPL_TEXT_BASE
55 default 0xff8c1000
56
Andreas Färber9e3ad682017-05-15 17:51:18 +080057endif