1if ROCKCHIP_RK3368
2
3choice
4	prompt "RK3368 board"
5
6config TARGET_LION_RK3368
7        bool "Theobroma Systems RK3368-uQ7 (Lion) module"
8	help
9	  The RK3368-uQ7 is a micro-Qseven form-factor (40mm x 70mm,
10	  MXM-230 connector) system-on-module designed by Theobroma
11	  Systems for industrial applications.
12
13	  It provides the following features:
14	   - 8x Cortex-A53 (in 2 clusters of 4 cores each)
15	   - (on-module) up to 4GB of DDR3 memory
16	   - (on-module) SPI-NOR flash
17	   - (on-module) eMMC
18	   - Gigabit Ethernet (with an on-module KSZ9031 PHY)
19	   - USB
20	   - HDMI
21	   - MIPI-DSI/single-channel LVDS (muxed on the 'LVDS-A' pin-group)
22	   - various 'slow' interfaces (e.g. UART, SPI, I2C, I2S, ...)
23	   - on-module STM32 providing CAN, RTC and fan-control
24	   - (optional on-module) EAL4+-certified security module
25
26config TARGET_SHEEP
27	bool "Sheep board"
28	help
29	  Sheep board is designed by Rockchip as a EVB board
30	  for rk3368.
31
32config TARGET_GEEKBOX
33	bool "GeekBox"
34
35config TARGET_EVB_PX5
36        bool "Evb-PX5"
37        help
38	 PX5 EVB is designed by Rockchip for automotive field
39         with integrated CVBS (TP2825) / MIPI DSI / CSI / LVDS
40         HDMI video input/output interface, audio codec ES8396,
41         WIFI/BT (on RTL8723BS), Gsensor BMA250E and light&proximity
42         sensor STK3410.
43endchoice
44
45config SYS_SOC
46	default "rockchip"
47
48source "board/theobroma-systems/lion_rk3368/Kconfig"
49source "board/rockchip/sheep_rk3368/Kconfig"
50source "board/geekbuying/geekbox/Kconfig"
51source "board/rockchip/evb_px5/Kconfig"
52
53config SPL_LDSCRIPT
54	default "arch/arm/cpu/armv8/u-boot-spl.lds"
55
56endif
57