memory.txt 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. ffffffbffbc00000 ffffffbffbdfffff 2MB earlyprintk device
  27. ffffffbffbe00000 ffffffbffbe0ffff 64KB PCI I/O space
  28. ffffffbbffff0000 ffffffbcffffffff ~2MB [guard]
  29. ffffffbffc000000 ffffffbfffffffff 64MB modules
  30. ffffffc000000000 ffffffffffffffff 256GB kernel logical memory map
  31. Translation table lookup with 4KB pages:
  32. +--------+--------+--------+--------+--------+--------+--------+--------+
  33. |63 56|55 48|47 40|39 32|31 24|23 16|15 8|7 0|
  34. +--------+--------+--------+--------+--------+--------+--------+--------+
  35. | | | | | |
  36. | | | | | v
  37. | | | | | [11:0] in-page offset
  38. | | | | +-> [20:12] L3 index
  39. | | | +-----------> [29:21] L2 index
  40. | | +---------------------> [38:30] L1 index
  41. | +-------------------------------> [47:39] L0 index (not used)
  42. +-------------------------------------------------> [63] TTBR0/1
  43. Translation table lookup with 64KB pages:
  44. +--------+--------+--------+--------+--------+--------+--------+--------+
  45. |63 56|55 48|47 40|39 32|31 24|23 16|15 8|7 0|
  46. +--------+--------+--------+--------+--------+--------+--------+--------+
  47. | | | | |
  48. | | | | v
  49. | | | | [15:0] in-page offset
  50. | | | +----------> [28:16] L3 index
  51. | | +--------------------------> [41:29] L2 index (only 38:29 used)
  52. | +-------------------------------> [47:42] L1 index (not used)
  53. +-------------------------------------------------> [63] TTBR0/1