blob: 899cf909fbb91d023ab5fb4015c4e1e60b8140b4 [file] [log] [blame]
Joseph Chen72cd8792021-06-02 15:58:25 +08001if ROCKCHIP_RK3568
2
Chris Morgan8c4e3042023-04-21 10:59:19 -05003choice
4 prompt "RK3568/RK3566 board select"
5
Joseph Chen72cd8792021-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 Morgan8c4e3042023-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 Karlman12e2e7e2023-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
Chris Morganc56a7b22024-05-21 10:25:33 -050025config TARGET_POWKIDDY_X55_RK3566
26 bool "Powkiddy X55"
27 help
28 Powkiddy X55 handheld gaming console with an RK3566 SoC.
29
Jonas Karlman42785572023-07-30 12:26:42 +000030config TARGET_QUARTZ64_RK3566
31 bool "Pine64 Quartz64"
32 help
33 Pine64 Quartz64 single board computer with a RK3566 SoC.
34
Jonas Karlmancf865ff2024-08-02 22:12:23 +000035config TARGET_RADXA_ZERO_3_RK3566
36 bool "Radxa ZERO 3W/3E"
37 help
38 Radxa ZERO 3W/3E single board computers with a RK3566 SoC.
39
Ricardo Pardini7cfbe202024-07-31 09:03:31 +000040config TARGET_ORANGEPI_3B_RK3566
41 bool "Xunlong Orange Pi 3B"
42 help
43 Xunlong Orange Pi 3B single board computer with a RK3566 SoC.
44
Chris Morgan8c4e3042023-04-21 10:59:19 -050045endchoice
46
Joseph Chen72cd8792021-06-02 15:58:25 +080047config ROCKCHIP_BOOT_MODE_REG
48 default 0xfdc20200
49
Johan Jonkerf6fc8952022-04-09 18:55:02 +020050config ROCKCHIP_STIMER_BASE
51 default 0xfdd1c020
52
Joseph Chen72cd8792021-06-02 15:58:25 +080053config SYS_SOC
54 default "rk3568"
55
Jonas Karlman8ffa86b2024-03-02 19:16:15 +000056config ROCKCHIP_COMMON_STACK_ADDR
57 default y
58
59config TEXT_BASE
60 default 0x00a00000
Joseph Chen72cd8792021-06-02 15:58:25 +080061
62source "board/rockchip/evb_rk3568/Kconfig"
Chris Morgan8c4e3042023-04-21 10:59:19 -050063source "board/anbernic/rgxx3_rk3566/Kconfig"
Jonas Karlman12e2e7e2023-07-22 14:02:15 +000064source "board/hardkernel/odroid_m1/Kconfig"
Jonas Karlman42785572023-07-30 12:26:42 +000065source "board/pine64/quartz64_rk3566/Kconfig"
Chris Morganc56a7b22024-05-21 10:25:33 -050066source "board/powkiddy/x55/Kconfig"
Jonas Karlmancf865ff2024-08-02 22:12:23 +000067source "board/radxa/zero3-rk3566/Kconfig"
Ricardo Pardini7cfbe202024-07-31 09:03:31 +000068source "board/xunlong/orangepi-3b-rk3566/Kconfig"
Joseph Chen72cd8792021-06-02 15:58:25 +080069
70endif