:orphan: .. title:: ARM_NSC_REGION_BASE_ADDRESS .. option:: CONFIG_ARM_NSC_REGION_BASE_ADDRESS *ARM Non-Secure Callable Region base address* Type: ``hex`` Help ==== Start address of Non-Secure Callable section. Notes: - The default value (i.e. when the user does not configure the option explicitly) instructs the linker script to place the Non-Secure Callable section, automatically, inside the .text area. - Certain requirements/restrictions may apply regarding the size and the alignment of the starting address for a Non-Secure Callable section, depending on the available security attribution unit (SAU or IDAU) for a given SOC. Direct dependencies =================== \ :option:`ARM_FIRMWARE_HAS_SECURE_ENTRY_FUNCS ` && (\ :option:`ARM_SECURE_FIRMWARE ` || \ :option:`ARM_NONSECURE_FIRMWARE `) && \ :option:`ARM_TRUSTZONE_M ` && \ :option:`CPU_CORTEX_M ` && !\ :option:`ARM64 ` && \ :option:`ARM ` *(Includes any dependencies from ifs and menus.)* Default ======= - 0 Kconfig definition ================== .. highlight:: kconfig At ``arch/arm/core/aarch32/cortex_m/tz/Kconfig:40`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:29`` → ``arch/Kconfig:12`` → ``arch/arm/Kconfig:42`` → ``arch/arm/core/aarch32/Kconfig:237`` → ``arch/arm/core/aarch32/cortex_m/Kconfig:309`` Menu path: (Top) → ARM Options → ARM TrustZone-M support → ARM TrustZone-M Options → Secure Firmware has Secure Entry functions .. parsed-literal:: config ARM_NSC_REGION_BASE_ADDRESS hex "ARM Non-Secure Callable Region base address" default 0 depends on \ :option:`ARM_FIRMWARE_HAS_SECURE_ENTRY_FUNCS ` && (\ :option:`ARM_SECURE_FIRMWARE ` || \ :option:`ARM_NONSECURE_FIRMWARE `) && \ :option:`ARM_TRUSTZONE_M ` && \ :option:`CPU_CORTEX_M ` && !\ :option:`ARM64 ` && \ :option:`ARM ` help Start address of Non-Secure Callable section. Notes: - The default value (i.e. when the user does not configure the option explicitly) instructs the linker script to place the Non-Secure Callable section, automatically, inside the .text area. - Certain requirements/restrictions may apply regarding the size and the alignment of the starting address for a Non-Secure Callable section, depending on the available security attribution unit (SAU or IDAU) for a given SOC. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*