1if ROCKCHIP_RV1108
2
3choice
4	prompt "RV1108 board select"
5
6config TARGET_EVB_RV1108
7	bool "EVB_RV1108"
8	help
9	  RV1108 EVB is a evaluation board for Rockchp RV1108.
10
11	  Key features of the board include:
12	   * one macro USB OTG port
13	   * one USB HOST port
14	   * one RS232 to USB port route to UART2 as debug port
15	   * MIPI screen with resolution 720 x 1280
16	   * 128M DDR3
17	   * 64M SPI Nor Flash
18	   * macro SD card interface
19	   * HDMI output
20	   * 10/100 Mbps Ethernet
21	   * camera interface compatible with imx323 / ov2710 / ov4689
22
23config TARGET_ELGIN_RV1108
24	bool "ELGIN_RV1108"
25	help
26	  RV1108 ELGIN is a board based on the Rockchip RV1108.
27
28endchoice
29
30config ROCKCHIP_BOOT_MODE_REG
31	default 0x10300580
32
33config SYS_SOC
34	default "rv1108"
35
36config SYS_MALLOC_F_LEN
37	default 0x400
38
39source "board/rockchip/evb_rv1108/Kconfig"
40source "board/elgin/elgin_rv1108/Kconfig"
41
42endif
43