blob: baa51349f4be3efa2ed74c3bfd9643089067e6f4 [file] [log] [blame]
Joseph Chen2a950e32021-06-02 15:58:25 +08001if ROCKCHIP_RK3568
2
Chris Morgan6cf6fe22023-04-21 10:59:19 -05003choice
4 prompt "RK3568/RK3566 board select"
5
Joseph Chen2a950e32021-06-02 15:58:25 +08006config 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
Chris Morgan6cf6fe22023-04-21 10:59:19 -050012config 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
Jonas Karlman94da9292023-07-22 14:02:15 +000020config TARGET_ODROID_M1_RK3568
21 bool "ODROID-M1"
22 help
23 Hardkernel ODROID-M1 single board computer with a RK3568B2 SoC.
24
Jonas Karlman9c1b5d12023-07-30 12:26:42 +000025config TARGET_QUARTZ64_RK3566
26 bool "Pine64 Quartz64"
27 help
28 Pine64 Quartz64 single board computer with a RK3566 SoC.
29
Chris Morgan6cf6fe22023-04-21 10:59:19 -050030endchoice
31
Joseph Chen2a950e32021-06-02 15:58:25 +080032config ROCKCHIP_BOOT_MODE_REG
33 default 0xfdc20200
34
Johan Jonker54562042022-04-09 18:55:02 +020035config ROCKCHIP_STIMER_BASE
36 default 0xfdd1c020
37
Joseph Chen2a950e32021-06-02 15:58:25 +080038config SYS_SOC
39 default "rk3568"
40
41config SYS_MALLOC_F_LEN
Jonas Karlman52472502023-07-02 10:43:57 +000042 default 0x20000
Joseph Chen2a950e32021-06-02 15:58:25 +080043
44source "board/rockchip/evb_rk3568/Kconfig"
Chris Morgan6cf6fe22023-04-21 10:59:19 -050045source "board/anbernic/rgxx3_rk3566/Kconfig"
Jonas Karlman94da9292023-07-22 14:02:15 +000046source "board/hardkernel/odroid_m1/Kconfig"
Jonas Karlman9c1b5d12023-07-30 12:26:42 +000047source "board/pine64/quartz64_rk3566/Kconfig"
Joseph Chen2a950e32021-06-02 15:58:25 +080048
49endif