Joseph Chen | 72cd879 | 2021-06-02 15:58:25 +0800 | [diff] [blame] | 1 | if ROCKCHIP_RK3568 |
| 2 | |
Chris Morgan | 8c4e304 | 2023-04-21 10:59:19 -0500 | [diff] [blame] | 3 | choice |
| 4 | prompt "RK3568/RK3566 board select" |
| 5 | |
Joseph Chen | 72cd879 | 2021-06-02 15:58:25 +0800 | [diff] [blame] | 6 | config 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 Morgan | 8c4e304 | 2023-04-21 10:59:19 -0500 | [diff] [blame] | 12 | config 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 Karlman | 12e2e7e | 2023-07-22 14:02:15 +0000 | [diff] [blame] | 20 | config TARGET_ODROID_M1_RK3568 |
| 21 | bool "ODROID-M1" |
| 22 | help |
| 23 | Hardkernel ODROID-M1 single board computer with a RK3568B2 SoC. |
| 24 | |
Jonas Karlman | 062572c | 2024-10-08 20:06:35 +0000 | [diff] [blame] | 25 | config TARGET_ODROID_M1S_RK3566 |
| 26 | bool "ODROID-M1S" |
| 27 | help |
| 28 | Hardkernel ODROID-M1S single board computer with a RK3566 SoC. |
| 29 | |
Chris Morgan | c56a7b2 | 2024-05-21 10:25:33 -0500 | [diff] [blame] | 30 | config TARGET_POWKIDDY_X55_RK3566 |
| 31 | bool "Powkiddy X55" |
| 32 | help |
| 33 | Powkiddy X55 handheld gaming console with an RK3566 SoC. |
| 34 | |
Jonas Karlman | 4278557 | 2023-07-30 12:26:42 +0000 | [diff] [blame] | 35 | config TARGET_QUARTZ64_RK3566 |
| 36 | bool "Pine64 Quartz64" |
| 37 | help |
| 38 | Pine64 Quartz64 single board computer with a RK3566 SoC. |
| 39 | |
Jonas Karlman | cf865ff | 2024-08-02 22:12:23 +0000 | [diff] [blame] | 40 | config TARGET_RADXA_ZERO_3_RK3566 |
| 41 | bool "Radxa ZERO 3W/3E" |
| 42 | help |
| 43 | Radxa ZERO 3W/3E single board computers with a RK3566 SoC. |
| 44 | |
Ricardo Pardini | 7cfbe20 | 2024-07-31 09:03:31 +0000 | [diff] [blame] | 45 | config TARGET_ORANGEPI_3B_RK3566 |
| 46 | bool "Xunlong Orange Pi 3B" |
| 47 | help |
| 48 | Xunlong Orange Pi 3B single board computer with a RK3566 SoC. |
| 49 | |
Chris Morgan | 8c4e304 | 2023-04-21 10:59:19 -0500 | [diff] [blame] | 50 | endchoice |
| 51 | |
Joseph Chen | 72cd879 | 2021-06-02 15:58:25 +0800 | [diff] [blame] | 52 | config ROCKCHIP_BOOT_MODE_REG |
| 53 | default 0xfdc20200 |
| 54 | |
Johan Jonker | f6fc895 | 2022-04-09 18:55:02 +0200 | [diff] [blame] | 55 | config ROCKCHIP_STIMER_BASE |
| 56 | default 0xfdd1c020 |
| 57 | |
Joseph Chen | 72cd879 | 2021-06-02 15:58:25 +0800 | [diff] [blame] | 58 | config SYS_SOC |
| 59 | default "rk3568" |
| 60 | |
Jonas Karlman | 8ffa86b | 2024-03-02 19:16:15 +0000 | [diff] [blame] | 61 | config ROCKCHIP_COMMON_STACK_ADDR |
| 62 | default y |
| 63 | |
| 64 | config TEXT_BASE |
| 65 | default 0x00a00000 |
Joseph Chen | 72cd879 | 2021-06-02 15:58:25 +0800 | [diff] [blame] | 66 | |
| 67 | source "board/rockchip/evb_rk3568/Kconfig" |
Chris Morgan | 8c4e304 | 2023-04-21 10:59:19 -0500 | [diff] [blame] | 68 | source "board/anbernic/rgxx3_rk3566/Kconfig" |
Jonas Karlman | 12e2e7e | 2023-07-22 14:02:15 +0000 | [diff] [blame] | 69 | source "board/hardkernel/odroid_m1/Kconfig" |
Jonas Karlman | 062572c | 2024-10-08 20:06:35 +0000 | [diff] [blame] | 70 | source "board/hardkernel/odroid_m1s/Kconfig" |
Jonas Karlman | 4278557 | 2023-07-30 12:26:42 +0000 | [diff] [blame] | 71 | source "board/pine64/quartz64_rk3566/Kconfig" |
Chris Morgan | c56a7b2 | 2024-05-21 10:25:33 -0500 | [diff] [blame] | 72 | source "board/powkiddy/x55/Kconfig" |
Jonas Karlman | cf865ff | 2024-08-02 22:12:23 +0000 | [diff] [blame] | 73 | source "board/radxa/zero3-rk3566/Kconfig" |
Ricardo Pardini | 7cfbe20 | 2024-07-31 09:03:31 +0000 | [diff] [blame] | 74 | source "board/xunlong/orangepi-3b-rk3566/Kconfig" |
Joseph Chen | 72cd879 | 2021-06-02 15:58:25 +0800 | [diff] [blame] | 75 | |
| 76 | endif |