soc: mps3: Fix missing family
Fixes an issue with a missing family in the mp3 soc Signed-off-by: Jamie McCrae <jamie.mccrae@nordicsemi.no>
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
# Copyright (c) 2024 Nordic Semiconductor ASA
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
if SOC_FAMILY_ARM64
|
||||
if SOC_FAMILY_ARM || SOC_FAMILY_ARM64
|
||||
|
||||
rsource "*/Kconfig.defconfig"
|
||||
|
||||
endif # SOC_FAMILY_ARM64
|
||||
endif # SOC_FAMILY_ARM || SOC_FAMILY_ARM64
|
||||
|
||||
@@ -1,10 +1,14 @@
|
||||
# Copyright (c) 2024 Nordic Semiconductor ASA
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
config SOC_FAMILY_ARM
|
||||
bool
|
||||
|
||||
config SOC_FAMILY_ARM64
|
||||
bool
|
||||
|
||||
config SOC_FAMILY
|
||||
default "arm" if SOC_FAMILY_ARM
|
||||
default "arm64" if SOC_FAMILY_ARM64
|
||||
|
||||
rsource "*/Kconfig.soc"
|
||||
|
||||
@@ -3,7 +3,6 @@
|
||||
|
||||
config SOC_SERIES_MPS3
|
||||
select ARM
|
||||
select SOC_FAMILY_ARM
|
||||
select GPIO_MMIO32 if GPIO
|
||||
|
||||
config SOC_MPS3_AN547
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
|
||||
config SOC_SERIES_MPS3
|
||||
bool
|
||||
select SOC_FAMILY_ARM
|
||||
help
|
||||
Enable support for ARM MPS3 MCU Series
|
||||
|
||||
|
||||
@@ -1,4 +0,0 @@
|
||||
series:
|
||||
- name: mps3
|
||||
socs:
|
||||
- name: an547
|
||||
@@ -1,4 +1,9 @@
|
||||
family:
|
||||
- name: arm
|
||||
series:
|
||||
- name: mps3
|
||||
socs:
|
||||
- name: an547
|
||||
- name: arm64
|
||||
series:
|
||||
- name: fvp_aemv8a
|
||||
|
||||
Reference in New Issue
Block a user