:orphan: .. title:: ARC_NORMAL_FIRMWARE .. option:: CONFIG_ARC_NORMAL_FIRMWARE *Generate Normal Firmware* Type: ``bool`` Help ==== This option indicates that we are building a Zephyr image that is intended to execute in normal mode. Execution of this image is triggered by secure firmware that executes in secure mode. The option is only applicable to ARC processors that implement the SecureShield. This option enables Zephyr to include code that executes in normal mode only, as well as to exclude code that is designed to execute only in secure mode. Code executing in normal mode has no access to secure resources of the ARC processors, and, therefore, it shall avoid accessing them. Direct dependencies =================== !\ :option:`ARC_SECURE_FIRMWARE ` && \ :option:`ARC_HAS_SECURE ` && \ :option:`ARC ` *(Includes any dependencies from ifs and menus.)* Default ======= - y if \ :option:`TRUSTED_EXECUTION_NONSECURE ` Kconfig definition ================== .. highlight:: kconfig At ``arch/arc/Kconfig:252`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:29`` → ``arch/Kconfig:12`` Menu path: (Top) → ARC Options → ARCv2 Family Options .. parsed-literal:: config ARC_NORMAL_FIRMWARE bool "Generate Normal Firmware" default y if \ :option:`TRUSTED_EXECUTION_NONSECURE ` depends on !\ :option:`ARC_SECURE_FIRMWARE ` && \ :option:`ARC_HAS_SECURE ` && \ :option:`ARC ` help This option indicates that we are building a Zephyr image that is intended to execute in normal mode. Execution of this image is triggered by secure firmware that executes in secure mode. The option is only applicable to ARC processors that implement the SecureShield. This option enables Zephyr to include code that executes in normal mode only, as well as to exclude code that is designed to execute only in secure mode. Code executing in normal mode has no access to secure resources of the ARC processors, and, therefore, it shall avoid accessing them. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*