2019-02-08 21:13:33 +08:00
|
|
|
# Kconfig - general options signifying CPU capabilities of ARM SoCs
|
|
|
|
|
|
|
|
#
|
|
|
|
# Copyright (c) 2018 Nordic Semiconductor ASA.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#
|
|
|
|
|
2018-08-09 20:47:27 +08:00
|
|
|
config CPU_HAS_ARM_MPU
|
|
|
|
bool
|
|
|
|
# Omit prompt to signify "hidden" option
|
|
|
|
select CPU_HAS_MPU
|
|
|
|
help
|
|
|
|
This option is enabled when the CPU has a Memory Protection Unit (MPU)
|
2018-11-03 03:09:45 +08:00
|
|
|
in ARM flavor.
|
2018-08-09 20:47:27 +08:00
|
|
|
|
|
|
|
config CPU_HAS_NXP_MPU
|
|
|
|
bool
|
|
|
|
# Omit prompt to signify "hidden" option
|
|
|
|
select CPU_HAS_MPU
|
|
|
|
help
|
|
|
|
This option is enabled when the CPU has a Memory Protection Unit (MPU)
|
2018-11-03 03:09:45 +08:00
|
|
|
in NXP flavor.
|
2018-10-12 15:27:28 +08:00
|
|
|
|
|
|
|
config CPU_HAS_ARM_SAU
|
|
|
|
bool
|
|
|
|
# Omit prompt to signify "hidden" option
|
|
|
|
select CPU_HAS_TEE
|
|
|
|
help
|
|
|
|
MCU implements the ARM Security Attribution Unit (SAU).
|
2018-12-20 16:01:14 +08:00
|
|
|
|
2018-12-22 05:52:42 +08:00
|
|
|
config CPU_HAS_NRF_IDAU
|
|
|
|
bool
|
|
|
|
# Omit prompt to signify "hidden" option
|
|
|
|
depends on SOC_SERIES_NRF91X
|
|
|
|
select CPU_HAS_TEE
|
|
|
|
help
|
|
|
|
MCU implements the nRF (vendor-specific) Security Attribution Unit.
|
|
|
|
(IDAU: "Implementation-Defined Attribution Unit", in accordance with
|
|
|
|
ARM terminology).
|
|
|
|
|
2018-12-20 16:01:14 +08:00
|
|
|
config HAS_SWO
|
|
|
|
bool
|
|
|
|
# Omit prompt to signify "hidden" option
|
|
|
|
help
|
|
|
|
When enabled, indicates that SoC has an SWO output
|