:orphan: .. title:: CONFIG_ARM_MMU_NUM_L2_TABLES .. kconfig:: CONFIG_ARM_MMU_NUM_L2_TABLES CONFIG_ARM_MMU_NUM_L2_TABLES ############################ *Number of L2 translation tables available to the MMU* Type: ``int`` Help ==== .. code-block:: none Number of level 2 translation tables. Each level 2 table covers 1 MB of address space. Direct dependencies =================== \ :kconfig:`ARM_AARCH32_MMU ` && \ :kconfig:`CPU_HAS_MMU ` && \ :kconfig:`ARM ` *(Includes any dependencies from ifs and menus.)* Default ======= - 64 Kconfig definition ================== At ``/arm/core/aarch32/mmu/Kconfig:20`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:39`` → ``/Kconfig:12`` → ``/arm/Kconfig:57`` → ``/arm/core/aarch32/Kconfig:309`` Menu path: (Top) → ARM Options → ARMv7 Cortex-A MMU Support .. code-block:: kconfig config ARM_MMU_NUM_L2_TABLES int "Number of L2 translation tables available to the MMU" default 64 depends on ARM_AARCH32_MMU && CPU_HAS_MMU && ARM help Number of level 2 translation tables. Each level 2 table covers 1 MB of address space. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*