1if ROCKCHIP_RK3328
2
3choice
4	prompt "RK3328 board select"
5
6config TARGET_EVB_RK3328
7	bool "RK3328 evaluation board"
8	help
9	  RK3328evb is a evaluation board for Rockchip rk3328,
10	  with full function and phisical connectors support like
11	  usb2.0 host ports, LVDS, JTAG, MAC, SDcard, HDMI, USB-2-serial...
12
13endchoice
14
15config ROCKCHIP_BOOT_MODE_REG
16	default 0xff1005c8
17
18config ROCKCHIP_STIMER_BASE
19	default 0xff1d0020
20
21config SYS_SOC
22	default "rk3328"
23
24config ROCKCHIP_COMMON_STACK_ADDR
25	default y
26
27config TPL_LDSCRIPT
28	default "arch/arm/mach-rockchip/u-boot-tpl-v8.lds"
29
30config TPL_TEXT_BASE
31	default 0xff091000
32
33config TPL_STACK
34	default 0xff098000
35
36config TPL_SYS_MALLOC_F_LEN
37	default 0x800
38
39source "board/rockchip/evb_rk3328/Kconfig"
40
41endif
42