Skip to content

Commit f62a89a

Browse files
committed
rk3566 bsp:
* Add RK3566 Code (Forked from rt-thread/tree/master/bsp/rockchip/rk3500). * Added to the original RK3566 documentation, more detailed usage instructions. Signed-off-by: lipeng <[email protected]>
1 parent a1c642a commit f62a89a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+17626
-0
lines changed

bsp/rockchip/rk3566/.config

Lines changed: 1707 additions & 0 deletions
Large diffs are not rendered by default.

bsp/rockchip/rk3566/Kconfig

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
mainmenu "RT-Thread Project Configuration"
2+
3+
config BSP_DIR
4+
string
5+
option env="BSP_ROOT"
6+
default "."
7+
8+
config RTT_DIR
9+
string
10+
option env="RTT_ROOT"
11+
default "../../.."
12+
13+
config PKGS_DIR
14+
string
15+
option env="PKGS_ROOT"
16+
default "packages"
17+
18+
source "$RTT_DIR/Kconfig"
19+
source "$PKGS_DIR/Kconfig"
20+
source "$BSP_DIR/driver/Kconfig"
21+
22+
config SOC_RK3568
23+
bool
24+
select ARCH_ARMV8
25+
select ARCH_CPU_64BIT
26+
select RT_USING_CACHE
27+
select RT_USING_COMPONENTS_INIT
28+
select RT_USING_USER_MAIN
29+
select ARCH_ARM_BOOTWITH_FLUSH_CACHE
30+
default y
31+

0 commit comments

Comments
 (0)