:orphan: .. title:: CONFIG_ARM_NSC_REGION_BASE_ADDRESS .. kconfig:: CONFIG_ARM_NSC_REGION_BASE_ADDRESS CONFIG_ARM_NSC_REGION_BASE_ADDRESS ################################## *ARM Non-Secure Callable Region base address* Type: ``hex`` Help ==== .. code-block:: none 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 =================== \ :kconfig:`ARM_FIRMWARE_HAS_SECURE_ENTRY_FUNCS ` && (\ :kconfig:`ARM_SECURE_FIRMWARE ` || \ :kconfig:`ARM_NONSECURE_FIRMWARE `) && \ :kconfig:`ARM_TRUSTZONE_M ` && \ :kconfig:`CPU_CORTEX_M ` && \ :kconfig:`ARM ` *(Includes any dependencies from ifs and menus.)* Default ======= - 0 Kconfig definition ================== At ``/arm/core/aarch32/cortex_m/tz/Kconfig:40`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:39`` → ``/Kconfig:12`` → ``/arm/Kconfig:57`` → ``/arm/core/aarch32/Kconfig:305`` → ``/arm/core/aarch32/cortex_m/Kconfig:438`` Menu path: (Top) → ARM Options → ARM TrustZone-M support → ARM TrustZone-M Options → Secure Firmware has Secure Entry functions .. code-block:: kconfig config ARM_NSC_REGION_BASE_ADDRESS hex "ARM Non-Secure Callable Region base address" default 0 depends on ARM_FIRMWARE_HAS_SECURE_ENTRY_FUNCS && (ARM_SECURE_FIRMWARE || ARM_NONSECURE_FIRMWARE) && ARM_TRUSTZONE_M && CPU_CORTEX_M && 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.)*