memory.txt 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. Memory Layout on AArch64 Linux
  2. ==============================
  3. Author: Catalin Marinas <catalin.marinas@arm.com>
  4. Date : 20 February 2012
  5. This document describes the virtual memory layout used by the AArch64
  6. Linux kernel. The architecture allows up to 4 levels of translation
  7. tables with a 4KB page size and up to 3 levels with a 64KB page size.
  8. AArch64 Linux uses 3 levels of translation tables with the 4KB page
  9. configuration, allowing 39-bit (512GB) virtual addresses for both user
  10. and kernel. With 64KB pages, only 2 levels of translation tables are
  11. used but the memory layout is the same.
  12. User addresses have bits 63:39 set to 0 while the kernel addresses have
  13. the same bits set to 1. TTBRx selection is given by bit 63 of the
  14. virtual address. The swapper_pg_dir contains only kernel (global)
  15. mappings while the user pgd contains only user (non-global) mappings.
  16. The swapper_pgd_dir address is written to TTBR1 and never written to
  17. TTBR0.
  18. AArch64 Linux memory layout:
  19. Start End Size Use
  20. -----------------------------------------------------------------------
  21. 0000000000000000 0000007fffffffff 512GB user
  22. ffffff8000000000 ffffffbbfffeffff ~240GB vmalloc
  23. ffffffbbffff0000 ffffffbbffffffff 64KB [guard page]
  24. ffffffbc00000000 ffffffbdffffffff 8GB vmemmap
  25. ffffffbe00000000 ffffffbffbbfffff ~8GB [guard, future vmmemap]
  26. ffffffbffbe00000 ffffffbffbe0ffff 64KB PCI I/O space
  27. ffffffbbffff0000 ffffffbcffffffff ~2MB [guard]
  28. ffffffbffc000000 ffffffbfffffffff 64MB modules
  29. ffffffc000000000 ffffffffffffffff 256GB kernel logical memory map
  30. Translation table lookup with 4KB pages:
  31. +--------+--------+--------+--------+--------+--------+--------+--------+
  32. |63 56|55 48|47 40|39 32|31 24|23 16|15 8|7 0|
  33. +--------+--------+--------+--------+--------+--------+--------+--------+
  34. | | | | | |
  35. | | | | | v
  36. | | | | | [11:0] in-page offset
  37. | | | | +-> [20:12] L3 index
  38. | | | +-----------> [29:21] L2 index
  39. | | +---------------------> [38:30] L1 index
  40. | +-------------------------------> [47:39] L0 index (not used)
  41. +-------------------------------------------------> [63] TTBR0/1
  42. Translation table lookup with 64KB pages:
  43. +--------+--------+--------+--------+--------+--------+--------+--------+
  44. |63 56|55 48|47 40|39 32|31 24|23 16|15 8|7 0|
  45. +--------+--------+--------+--------+--------+--------+--------+--------+
  46. | | | | |
  47. | | | | v
  48. | | | | [15:0] in-page offset
  49. | | | +----------> [28:16] L3 index
  50. | | +--------------------------> [41:29] L2 index (only 38:29 used)
  51. | +-------------------------------> [47:42] L1 index (not used)
  52. +-------------------------------------------------> [63] TTBR0/1