:orphan: .. title:: CONFIG_NRF_ENABLE_CACHE .. kconfig:: CONFIG_NRF_ENABLE_CACHE CONFIG_NRF_ENABLE_CACHE ####################### *Enable cache* Type: ``bool`` Help ==== .. code-block:: none Instruction and Data cache is available on nRF5340 CPUAPP (Application MCU). It may only be accessed by Secure code. Instruction cache only (I-Cache) is available in nRF5340 CPUNET (Network MCU). Direct dependencies =================== ((\ :kconfig:`SOC_NRF5340_CPUAPP ` && (!\ :kconfig:`TRUSTED_EXECUTION_NONSECURE ` || \ :kconfig:`BUILD_WITH_TFM `)) || \ :kconfig:`SOC_NRF5340_CPUNET `) && \ :kconfig:`SOC_SERIES_NRF53X ` && \ :kconfig:`SOC_FAMILY_NRF ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Symbols that select this symbol =============================== - \ :kconfig:`BUILD_WITH_TFM ` Kconfig definition ================== At ``/arm/nordic_nrf/nrf53/Kconfig.soc:214`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:38`` → ``/Kconfig:18`` → ``/arm/nordic_nrf/Kconfig:17`` Menu path: (Top) → Hardware Configuration .. code-block:: kconfig config NRF_ENABLE_CACHE bool "Enable cache" default y depends on ((SOC_NRF5340_CPUAPP && (!TRUSTED_EXECUTION_NONSECURE || BUILD_WITH_TFM)) || SOC_NRF5340_CPUNET) && SOC_SERIES_NRF53X && SOC_FAMILY_NRF help Instruction and Data cache is available on nRF5340 CPUAPP (Application MCU). It may only be accessed by Secure code. Instruction cache only (I-Cache) is available in nRF5340 CPUNET (Network MCU). *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*