Kconfig 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. # General options signifying CPU capabilities of ARM SoCs
  2. # Copyright (c) 2018 Nordic Semiconductor ASA.
  3. # SPDX-License-Identifier: Apache-2.0
  4. config CPU_HAS_ARM_MPU
  5. bool
  6. select CPU_HAS_MPU
  7. help
  8. This option is enabled when the CPU has a Memory Protection Unit (MPU)
  9. in ARM flavor.
  10. config CPU_HAS_NXP_MPU
  11. bool
  12. select CPU_HAS_MPU
  13. help
  14. This option is enabled when the CPU has a Memory Protection Unit (MPU)
  15. in NXP flavor.
  16. config CPU_HAS_CUSTOM_FIXED_SOC_MPU_REGIONS
  17. bool "Custom fixed SoC MPU region definition"
  18. help
  19. If enabled, this option signifies that the SoC will
  20. define and configure its own fixed MPU regions in the
  21. SoC definition. These fixed MPU regions are currently
  22. used to set Flash and SRAM default access policies and
  23. they are programmed at boot time.
  24. config CPU_HAS_ARM_SAU
  25. bool
  26. select CPU_HAS_TEE
  27. help
  28. MCU implements the ARM Security Attribution Unit (SAU).
  29. config CPU_HAS_NRF_IDAU
  30. bool
  31. depends on SOC_SERIES_NRF91X || SOC_NRF5340_CPUAPP
  32. select CPU_HAS_TEE
  33. help
  34. MCU implements the nRF (vendor-specific) Security Attribution Unit.
  35. (IDAU: "Implementation-Defined Attribution Unit", in accordance with
  36. ARM terminology).
  37. if CPU_HAS_NRF_IDAU
  38. config NRF_SPU_FLASH_REGION_SIZE
  39. hex
  40. default 0x8000 if SOC_NRF9160
  41. default 0x4000 if SOC_NRF5340_CPUAPP
  42. help
  43. FLASH region size for the NRF_SPU peripheral
  44. config NRF_SPU_RAM_REGION_SIZE
  45. hex
  46. default 0x2000 if SOC_NRF9160 || SOC_NRF5340_CPUAPP
  47. help
  48. RAM region size for the NRF_SPU peripheral
  49. endif
  50. config HAS_SWO
  51. bool
  52. help
  53. When enabled, indicates that SoC has an SWO output
  54. config SOC_PART_NUMBER
  55. string
  56. help
  57. This string holds the full part number of the SoC. It is a hidden option
  58. that you should not set directly. The part number selection choice defines
  59. the default value for this string.