Browse Source
Ports the SoC configuration to hardware model version 2 Signed-off-by: Jamie McCrae <jamie.mccrae@nordicsemi.no>pull/69687/head
11 changed files with 27 additions and 53 deletions
@ -1,4 +0,0 @@ |
|||||||
# Copyright (c) 2024 Nordic Semiconductor |
|
||||||
# SPDX-License-Identifier: Apache-2.0 |
|
||||||
|
|
||||||
add_subdirectory(${SOC_SERIES}) |
|
@ -1,15 +0,0 @@ |
|||||||
# Copyright (c) 2024 Nordic Semiconductor ASA |
|
||||||
# SPDX-License-Identifier: Apache-2.0 |
|
||||||
|
|
||||||
config SOC_FAMILY_STARFIVE_JH71XX |
|
||||||
bool |
|
||||||
|
|
||||||
if SOC_FAMILY_STARFIVE_JH71XX |
|
||||||
|
|
||||||
config SOC_FAMILY |
|
||||||
string |
|
||||||
default "starfive_jh71xx" |
|
||||||
|
|
||||||
source "soc/soc_legacy/riscv/starfive_jh71xx/*/Kconfig.soc" |
|
||||||
|
|
||||||
endif # SOC_FAMILY_STARFIVE_JH71XX |
|
@ -1,4 +0,0 @@ |
|||||||
# Copyright (c) 2024 Nordic Semiconductor ASA |
|
||||||
# SPDX-License-Identifier: Apache-2.0 |
|
||||||
|
|
||||||
source "soc/soc_legacy/riscv/starfive_jh71xx/*/Kconfig.defconfig.series" |
|
@ -1,4 +0,0 @@ |
|||||||
# Copyright (c) 2024 Nordic Semiconductor ASA |
|
||||||
# SPDX-License-Identifier: Apache-2.0 |
|
||||||
|
|
||||||
source "soc/soc_legacy/riscv/starfive_jh71xx/*/Kconfig.series" |
|
@ -1,5 +0,0 @@ |
|||||||
# Copyright (c) 2024 Nordic Semiconductor ASA |
|
||||||
# SPDX-License-Identifier: Apache-2.0 |
|
||||||
|
|
||||||
config SOC |
|
||||||
default "jh7100" if SOC_JH7100 |
|
@ -1,10 +0,0 @@ |
|||||||
# Copyright (c) 2021 Rajnesh Kanwal <rajnesh.kanwal49@gmail.com> |
|
||||||
# SPDX-License-Identifier: Apache-2.0 |
|
||||||
|
|
||||||
config SOC_SERIES_STARFIVE_JH71XX |
|
||||||
bool "Starfive JH71XX series" |
|
||||||
select RISCV |
|
||||||
select RISCV_PRIVILEGED |
|
||||||
select RISCV_HAS_PLIC |
|
||||||
help |
|
||||||
Enable support for Starfive JH71XX SoC Series. |
|
@ -0,0 +1,19 @@ |
|||||||
|
# Copyright (c) 2024 Nordic Semiconductor ASA |
||||||
|
# SPDX-License-Identifier: Apache-2.0 |
||||||
|
|
||||||
|
config SOC_SERIES_STARFIVE_JH71XX |
||||||
|
bool |
||||||
|
help |
||||||
|
Starfive JH71XX series |
||||||
|
|
||||||
|
config SOC_JH7100 |
||||||
|
bool |
||||||
|
select SOC_SERIES_STARFIVE_JH71XX |
||||||
|
help |
||||||
|
Starfive JH7100 |
||||||
|
|
||||||
|
config SOC_SERIES |
||||||
|
default "starfive_jh71xx" if SOC_SERIES_STARFIVE_JH71XX |
||||||
|
|
||||||
|
config SOC |
||||||
|
default "jh7100" if SOC_JH7100 |
Loading…
Reference in new issue