mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-02 07:32:38 +00:00
Add SoC support for the NXP i.MX8M Mini series MIMX8MM6 SoC. This SoC has a quad Cortex-A53 cluster and a single core Cortex-M4 core. Zephyr support is added to the Cortex-M4 core for running at 800MHz. More information about the SoC can be found here: https://www.nxp.com/products/processors-and-microcontrollers/arm-processors/i.mx-applications-processors/i.mx-8-processors/i.mx-8m-mini-arm-cortex-a53-cortex-m4-audio-voice-video:i.MX8MMINI Signed-off-by: Manivannan Sadhasivam <mani@kernel.org>
24 lines
559 B
Plaintext
24 lines
559 B
Plaintext
# Copyright (c) 2017-2020, NXP
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config SOC_FAMILY_IMX
|
|
bool
|
|
select HAS_SEGGER_RTT
|
|
|
|
if SOC_FAMILY_IMX
|
|
|
|
config SOC_FAMILY
|
|
string
|
|
default "nxp_imx"
|
|
|
|
source "soc/arm/nxp_imx/*/Kconfig.soc"
|
|
|
|
config SOC_PART_NUMBER
|
|
default SOC_PART_NUMBER_IMX_RT6XX if SOC_SERIES_IMX_RT6XX
|
|
default SOC_PART_NUMBER_IMX_RT if SOC_SERIES_IMX_RT
|
|
default SOC_PART_NUMBER_IMX_6X_M4 if SOC_SERIES_IMX_6X_M4
|
|
default SOC_PART_NUMBER_IMX7_M4 if SOC_SERIES_IMX7_M4
|
|
default SOC_PART_NUMBER_IMX8MM_M4 if SOC_SERIES_IMX8MM_M4
|
|
|
|
endif # SOC_FAMILY_IMX
|