Browse Source
Ports the fvp_aemv8* SoC configuration to hardware model version 2 Signed-off-by: Jamie McCrae <jamie.mccrae@nordicsemi.no>pull/69687/head
21 changed files with 73 additions and 71 deletions
@ -1,4 +0,0 @@ |
|||||||
# Copyright (c) 2021 Arm Limited (or its affiliates). All rights reserved. |
|
||||||
# SPDX-License-Identifier: Apache-2.0 |
|
||||||
|
|
||||||
add_subdirectory(${SOC_SERIES}) |
|
@ -1,16 +0,0 @@ |
|||||||
# ARM LTD SoC configuration options |
|
||||||
|
|
||||||
# Copyright (c) 2016 Linaro Limited |
|
||||||
# Copyright (c) 2021 Arm Limited (or its affiliates). All rights reserved. |
|
||||||
# SPDX-License-Identifier: Apache-2.0 |
|
||||||
|
|
||||||
config SOC_FAMILY_ARM64 |
|
||||||
bool |
|
||||||
|
|
||||||
if SOC_FAMILY_ARM64 |
|
||||||
config SOC_FAMILY |
|
||||||
string |
|
||||||
default "arm" |
|
||||||
|
|
||||||
source "soc/arm64/arm/*/Kconfig.soc" |
|
||||||
endif # SOC_FAMILY_ARM |
|
@ -1,7 +0,0 @@ |
|||||||
# ARM LTD SoC configuration options |
|
||||||
|
|
||||||
# Copyright (c) 2016 Linaro Limited |
|
||||||
# Copyright (c) 2021 Arm Limited (or its affiliates). All rights reserved. |
|
||||||
# SPDX-License-Identifier: Apache-2.0 |
|
||||||
|
|
||||||
source "soc/arm64/arm/*/Kconfig.defconfig.series" |
|
@ -1,7 +0,0 @@ |
|||||||
# ARM LTD SoC configuration options |
|
||||||
|
|
||||||
# Copyright (c) 2016 Linaro Limited |
|
||||||
# Copyright (c) 2021 Arm Limited (or its affiliates). All rights reserved. |
|
||||||
# SPDX-License-Identifier: Apache-2.0 |
|
||||||
|
|
||||||
source "soc/arm64/arm/*/Kconfig.series" |
|
@ -1,12 +0,0 @@ |
|||||||
# Copyright (c) 2021 Carlo Caione <ccaione@baylibre.com> |
|
||||||
# SPDX-License-Identifier: Apache-2.0 |
|
||||||
|
|
||||||
choice |
|
||||||
prompt "ARM FVP AEMv8A AArch64 SoCs" |
|
||||||
depends on SOC_SERIES_FVP_AEMV8A |
|
||||||
|
|
||||||
config SOC_FVP_BASE_REVC_2XAEMV8A |
|
||||||
bool "ARM FVP Base RevC 2xAEMv8A AArch64 simulation" |
|
||||||
select CPU_CORTEX_A53 |
|
||||||
|
|
||||||
endchoice |
|
@ -0,0 +1,4 @@ |
|||||||
|
# Copyright (c) 2024 Nordic Semiconductor ASA |
||||||
|
# SPDX-License-Identifier: Apache-2.0 |
||||||
|
|
||||||
|
add_subdirectory(${SOC_SERIES}) |
@ -0,0 +1,4 @@ |
|||||||
|
# Copyright (c) 2024 Nordic Semiconductor ASA |
||||||
|
# SPDX-License-Identifier: Apache-2.0 |
||||||
|
|
||||||
|
rsource "*/Kconfig" |
@ -0,0 +1,8 @@ |
|||||||
|
# Copyright (c) 2024 Nordic Semiconductor ASA |
||||||
|
# SPDX-License-Identifier: Apache-2.0 |
||||||
|
|
||||||
|
if SOC_FAMILY_ARM64 |
||||||
|
|
||||||
|
rsource "*/Kconfig.defconfig" |
||||||
|
|
||||||
|
endif # SOC_FAMILY_ARM64 |
@ -0,0 +1,10 @@ |
|||||||
|
# Copyright (c) 2024 Nordic Semiconductor ASA |
||||||
|
# SPDX-License-Identifier: Apache-2.0 |
||||||
|
|
||||||
|
config SOC_FAMILY_ARM64 |
||||||
|
bool |
||||||
|
|
||||||
|
config SOC_FAMILY |
||||||
|
default "arm64" if SOC_FAMILY_ARM64 |
||||||
|
|
||||||
|
rsource "*/Kconfig.soc" |
@ -0,0 +1,15 @@ |
|||||||
|
# Copyright (c) 2021 Carlo Caione <ccaione@baylibre.com> |
||||||
|
# SPDX-License-Identifier: Apache-2.0 |
||||||
|
|
||||||
|
config SOC_SERIES_FVP_AEMV8A |
||||||
|
bool |
||||||
|
select SOC_FAMILY_ARM64 |
||||||
|
|
||||||
|
config SOC_FVP_BASE_REVC_2XAEMV8A |
||||||
|
bool |
||||||
|
|
||||||
|
config SOC |
||||||
|
default "fvp_base_revc_2xaemv8a" if SOC_FVP_BASE_REVC_2XAEMV8A |
||||||
|
|
||||||
|
config SOC_SERIES |
||||||
|
default "fvp_aemv8a" if SOC_SERIES_FVP_AEMV8A |
Loading…
Reference in new issue