1if ROCKCHIP_RK3568
2
3choice
4	prompt "RK3568/RK3566 board select"
5
6config TARGET_EVB_RK3568
7	bool "RK3568 evaluation board"
8	select BOARD_LATE_INIT
9	help
10	  RK3568 EVB is a evaluation board for Rockchp RK3568.
11
12config TARGET_ANBERNIC_RGXX3_RK3566
13	bool "Anbernic RGXX3"
14	help
15	  Anbernic RGXX3 gaming device with Rockchip RK3566. This
16	  config can be used with the RG353M, RG353P, RG353V, RG353VS,
17	  and RG503. The correct device tree name will automatically
18	  be selected by the bootloader.
19
20config TARGET_ODROID_M1_RK3568
21	bool "ODROID-M1"
22	help
23	  Hardkernel ODROID-M1 single board computer with a RK3568B2 SoC.
24
25config TARGET_POWKIDDY_X55_RK3566
26	bool "Powkiddy X55"
27	help
28	  Powkiddy X55 handheld gaming console with an RK3566 SoC.
29
30config TARGET_QUARTZ64_RK3566
31	bool "Pine64 Quartz64"
32	help
33	  Pine64 Quartz64 single board computer with a RK3566 SoC.
34
35endchoice
36
37config ROCKCHIP_BOOT_MODE_REG
38	default 0xfdc20200
39
40config ROCKCHIP_STIMER_BASE
41	default 0xfdd1c020
42
43config SYS_SOC
44	default "rk3568"
45
46config ROCKCHIP_COMMON_STACK_ADDR
47	default y
48
49config TEXT_BASE
50	default 0x00a00000
51
52source "board/rockchip/evb_rk3568/Kconfig"
53source "board/anbernic/rgxx3_rk3566/Kconfig"
54source "board/hardkernel/odroid_m1/Kconfig"
55source "board/pine64/quartz64_rk3566/Kconfig"
56source "board/powkiddy/x55/Kconfig"
57
58endif
59