blob: 79fcc99b8988e6c41def2a17686bb5f9216714cd [file] [log] [blame]
Jagan Tekif5bc9922023-01-30 20:27:45 +05301if ROCKCHIP_RK3588
2
Kever Yangcf8658c2023-03-02 15:12:57 +08003config TARGET_EVB_RK3588
4 bool "Rockchip EVB1 v10"
5 select BOARD_LATE_INIT
6 help
7 RK3588 EVB is a evaluation board for Rockchp RK3588.
8
Jagan Teki15b2d1f2023-01-30 20:27:49 +05309config TARGET_RK3588_NEU6
10 bool "Edgeble Neural Compute Module 6(Neu6) SoM"
11 select BOARD_LATE_INIT
12 help
Jagan Teki6b9fc192023-06-11 12:27:09 +053013 Neu6A:
14 Neural Compute Module 6A(Neu6A) is a 96boards SoM-CB compute module
Jagan Teki15b2d1f2023-01-30 20:27:49 +053015 based on Rockchip RK3588 from Edgeble AI.
16
Jagan Teki6b9fc192023-06-11 12:27:09 +053017 Neu6A-IO:
18 Neural Compute Module 6A(Neu6A) IO board is an industrial form factor
Jagan Teki15b2d1f2023-01-30 20:27:49 +053019 IO board and Neu6a needs to mount on top of this IO board in order to
Jagan Teki6b9fc192023-06-11 12:27:09 +053020 create complete Edgeble Neural Compute Module 6A(Neu6A) IO platform.
Jagan Teki15b2d1f2023-01-30 20:27:49 +053021
Jagan Teki0a3a5742023-06-11 12:27:13 +053022 Neu6B:
23 Neural Compute Module 6B(Neu6B) is a 96boards SoM-CB compute module
24 based on Rockchip RK3588J from Edgeble AI.
25
26 Neu6A-IO:
27 Neural Compute Module 6B(Neu6B) IO board is an industrial form factor
28 IO board and Neu6a needs to mount on top of this IO board in order to
29 create complete Edgeble Neural Compute Module 6B(Neu6B) IO platform.
30
Eugen Hristevb8fc6542023-07-04 22:05:12 +030031config TARGET_ROCK5A_RK3588
32 bool "Radxa ROCK5A RK3588 board"
33 select BOARD_LATE_INIT
34 help
35 Radxa ROCK5A is a Rockchip RK3588S based SBC (Single Board Computer)
36 by Radxa.
37
38 There are tree variants depending on the DRAM size : 4G, 8G and 16G.
39
40 Specification:
41
42 Rockchip Rk3588S SoC
43 4x ARM Cortex-A76, 4x ARM Cortex-A55
44 4/8/16GB memory LPDDR4x
45 Mali G610MC4 GPU
46 MIPI CSI 2 multiple lanes connector
47 4-lane MIPI DSI connector
48 Audio 3.5mm earphone jack
49 eMMC module connector
50 uSD slot (up to 128GB)
51 2x USB 2.0, 2x USB 3.0
52 2x micro HDMI 2.1 ports, one up to 8Kp60, the other up to 4Kp60
53 Gigabit Ethernet RJ45 with optional PoE support
54 40-pin IO header including UART, SPI, I2C and 5V DC power in
55 USB PD over USB Type-C
56 Size: 85mm x 56mm (Raspberry Pi 4 form factor)
57
Eugen Hristev3bf8e402023-02-22 11:05:12 +020058config TARGET_ROCK5B_RK3588
59 bool "Radxa ROCK5B RK3588 board"
60 select BOARD_LATE_INIT
61 help
62 Radxa ROCK5B is a Rockchip RK3588 based SBC (Single Board Computer)
63 by Radxa.
64
65 There are tree variants depending on the DRAM size : 4G, 8G and 16G.
66
67 Specification:
68
69 Rockchip Rk3588 SoC
70 4x ARM Cortex-A76, 4x ARM Cortex-A55
71 4/8/16GB memory LPDDR4x
72 Mali G610MC4 GPU
Eugen Hristevd77d5302023-06-23 13:05:27 +030073 2x MIPI CSI 2 multiple lanes connector
Eugen Hristev3bf8e402023-02-22 11:05:12 +020074 eMMC module connector
75 uSD slot (up to 128GB)
Eugen Hristevd77d5302023-06-23 13:05:27 +030076 2x USB 2.0 Type-A, 2x USB 3.0 Type-A, 1x USB 3.0 Type-C
77 2x HDMI 2.1 output, 1x micro HDMI input
78 2.5 Gbps Ethernet port
Eugen Hristev3bf8e402023-02-22 11:05:12 +020079 40-pin IO header including UART, SPI, I2C and 5V DC power in
80 USB PD over USB Type-C
Eugen Hristevd77d5302023-06-23 13:05:27 +030081 Size: 100mm x 72mm (Pico-ITX form factor)
Eugen Hristev3bf8e402023-02-22 11:05:12 +020082
Jagan Tekif5bc9922023-01-30 20:27:45 +053083config ROCKCHIP_BOOT_MODE_REG
84 default 0xfd588080
85
86config ROCKCHIP_STIMER_BASE
87 default 0xfd8c8000
88
89config SYS_SOC
90 default "rk3588"
91
92config SYS_MALLOC_F_LEN
93 default 0x80000
94
Jagan Teki15b2d1f2023-01-30 20:27:49 +053095source board/edgeble/neural-compute-module-6/Kconfig
Kever Yangcf8658c2023-03-02 15:12:57 +080096source board/rockchip/evb_rk3588/Kconfig
Eugen Hristevb8fc6542023-07-04 22:05:12 +030097source board/radxa/rock5a-rk3588s/Kconfig
Eugen Hristev3bf8e402023-02-22 11:05:12 +020098source board/radxa/rock5b-rk3588/Kconfig
Jagan Teki15b2d1f2023-01-30 20:27:49 +053099
Jagan Tekif5bc9922023-01-30 20:27:45 +0530100endif