:orphan: .. title:: ARC_SECURE_FIRMWARE .. option:: CONFIG_ARC_SECURE_FIRMWARE *Generate Secure Firmware* Type: ``bool`` Help ==== This option indicates that we are building a Zephyr image that is intended to execute 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 secure mode, as well as to exclude code that is designed to execute only in normal mode. Code executing in secure mode has access to both the secure and normal resources of the ARC processors. Direct dependencies =================== \ :option:`ARC_HAS_SECURE ` && \ :option:`ARC ` *(Includes any dependencies from ifs and menus.)* Default ======= - y if \ :option:`TRUSTED_EXECUTION_SECURE ` Kconfig definition ================== .. highlight:: kconfig At ``arch/arc/Kconfig:236`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:29`` → ``arch/Kconfig:12`` Menu path: (Top) → ARC Options → ARCv2 Family Options .. parsed-literal:: config ARC_SECURE_FIRMWARE bool "Generate Secure Firmware" default y if \ :option:`TRUSTED_EXECUTION_SECURE ` depends on \ :option:`ARC_HAS_SECURE ` && \ :option:`ARC ` help This option indicates that we are building a Zephyr image that is intended to execute 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 secure mode, as well as to exclude code that is designed to execute only in normal mode. Code executing in secure mode has access to both the secure and normal resources of the ARC processors. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*