:orphan: .. title:: CONFIG_ARM_MMU .. kconfig:: CONFIG_ARM_MMU CONFIG_ARM_MMU ############## *ARM MMU Support* Type: ``bool`` Help ==== .. code-block:: none Memory Management Unit support. Direct dependencies =================== (\ :kconfig:`CPU_CORTEX_A ` || \ :kconfig:`CPU_AARCH64_CORTEX_R `) && \ :kconfig:`ARM64 ` *(Includes any dependencies from ifs and menus.)* Defaults ======== - n if \ :kconfig:`CPU_AARCH64_CORTEX_R ` - y Symbols selected by this symbol =============================== - \ :kconfig:`MMU ` - \ :kconfig:`SRAM_REGION_PERMISSIONS ` - \ :kconfig:`ARCH_MEM_DOMAIN_SYNCHRONOUS_API ` if \ :kconfig:`USERSPACE ` - \ :kconfig:`ARCH_MEM_DOMAIN_DATA ` if \ :kconfig:`USERSPACE ` Kconfig definition ================== At ``/arm64/core/Kconfig:152`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:39`` → ``/Kconfig:12`` → ``/arm64/Kconfig:32`` Menu path: (Top) → ARM64 Options .. code-block:: kconfig config ARM_MMU bool "ARM MMU Support" default n if CPU_AARCH64_CORTEX_R default y select MMU select SRAM_REGION_PERMISSIONS select ARCH_MEM_DOMAIN_SYNCHRONOUS_API if USERSPACE select ARCH_MEM_DOMAIN_DATA if USERSPACE depends on (CPU_CORTEX_A || CPU_AARCH64_CORTEX_R) && ARM64 help Memory Management Unit support. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*