soc: rockchip: added the rk35 series and moved relevant soc
added the rk35 series and moved the rk3568 under it Signed-off-by: Esteban Aguililla Klein <esteban.aguililla.klein.pro@outlook.com>
This commit is contained in:
parent
4cb8761b22
commit
3fe4e53c10
11 changed files with 44 additions and 12 deletions
6
soc/rockchip/rk35/CMakeLists.txt
Normal file
6
soc/rockchip/rk35/CMakeLists.txt
Normal file
|
@ -0,0 +1,6 @@
|
|||
# Copyright 2024 Université Gustave Eiffel
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
if(CONFIG_SOC_RK3568)
|
||||
add_subdirectory(rk3568)
|
||||
endif()
|
11
soc/rockchip/rk35/Kconfig
Normal file
11
soc/rockchip/rk35/Kconfig
Normal file
|
@ -0,0 +1,11 @@
|
|||
#
|
||||
# Copyright 2021 Huawei France Technologies SASU
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
if SOC_FAMILY_ROCKCHIP
|
||||
|
||||
rsource "*/Kconfig"
|
||||
|
||||
endif # SOC_FAMILY_ROCKCHIP
|
11
soc/rockchip/rk35/Kconfig.defconfig
Normal file
11
soc/rockchip/rk35/Kconfig.defconfig
Normal file
|
@ -0,0 +1,11 @@
|
|||
#
|
||||
# Copyright 2021 Huawei France Technologies SASU
|
||||
#
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
if SOC_FAMILY_ROCKCHIP
|
||||
|
||||
rsource "*/Kconfig.defconfig"
|
||||
|
||||
endif
|
11
soc/rockchip/rk35/Kconfig.soc
Normal file
11
soc/rockchip/rk35/Kconfig.soc
Normal file
|
@ -0,0 +1,11 @@
|
|||
# Copyright 2024 Université Gustave Eiffel
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
config SOC_SERIES_RK35
|
||||
bool
|
||||
select SOC_FAMILY_ROCKCHIP
|
||||
|
||||
config SOC_SERIES
|
||||
default "rk35" if SOC_SERIES_RK35
|
||||
|
||||
rsource "*/Kconfig.soc"
|
|
@ -2,10 +2,10 @@
|
|||
# Copyright 2022 openEuler SIG-Zephyr
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
config SOC_SERIES_RK3568
|
||||
config SOC_RK3568
|
||||
select ARM64
|
||||
select CPU_CORTEX_A55
|
||||
select ARM_ARCH_TIMER
|
||||
|
||||
config SOC_PART_NUMBER
|
||||
default "RK3568" if SOC_SERIES_RK3568
|
||||
default "RK3568" if SOC_RK3568
|
|
@ -2,7 +2,7 @@
|
|||
# Copyright 2022 openEuler SIG-Zephyr
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
if SOC_SERIES_RK3568
|
||||
if SOC_RK3568
|
||||
|
||||
rsource "Kconfig.defconfig.rk3568"
|
||||
|
|
@ -2,16 +2,9 @@
|
|||
# Copyright 2022 openEuler SIG-Zephyr
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
config SOC_SERIES_RK3568
|
||||
bool
|
||||
select SOC_FAMILY_ROCKCHIP
|
||||
|
||||
config SOC_RK3568
|
||||
bool
|
||||
select SOC_SERIES_RK3568
|
||||
select SOC_SERIES_RK35
|
||||
|
||||
config SOC
|
||||
default "rk3568" if SOC_RK3568
|
||||
|
||||
config SOC_SERIES
|
||||
default "rk3568" if SOC_RK3568
|
|
@ -4,6 +4,6 @@ family:
|
|||
- name: rk3399
|
||||
socs:
|
||||
- name: rk3399
|
||||
- name: rk3568
|
||||
- name: rk35
|
||||
socs:
|
||||
- name: rk3568
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue