memory.txt 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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 with 4KB pages:
  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. ffffffbffbe10000 ffffffbcffffffff ~2MB [guard]
  29. ffffffbffc000000 ffffffbfffffffff 64MB modules
  30. ffffffc000000000 ffffffffffffffff 256GB kernel logical memory map
  31. AArch64 Linux memory layout with 64KB pages:
  32. Start End Size Use
  33. -----------------------------------------------------------------------
  34. 0000000000000000 000003ffffffffff 4TB user
  35. fffffc0000000000 fffffdfbfffeffff ~2TB vmalloc
  36. fffffdfbffff0000 fffffdfbffffffff 64KB [guard page]
  37. fffffdfc00000000 fffffdfdffffffff 8GB vmemmap
  38. fffffdfe00000000 fffffdfffbbfffff ~8GB [guard, future vmmemap]
  39. fffffdfffbc00000 fffffdfffbdfffff 2MB earlyprintk device
  40. fffffdfffbe00000 fffffdfffbe0ffff 64KB PCI I/O space
  41. fffffdfffbe10000 fffffdfffbffffff ~2MB [guard]
  42. fffffdfffc000000 fffffdffffffffff 64MB modules
  43. fffffe0000000000 ffffffffffffffff 2TB kernel logical memory map
  44. Translation table lookup with 4KB pages:
  45. +--------+--------+--------+--------+--------+--------+--------+--------+
  46. |63 56|55 48|47 40|39 32|31 24|23 16|15 8|7 0|
  47. +--------+--------+--------+--------+--------+--------+--------+--------+
  48. | | | | | |
  49. | | | | | v
  50. | | | | | [11:0] in-page offset
  51. | | | | +-> [20:12] L3 index
  52. | | | +-----------> [29:21] L2 index
  53. | | +---------------------> [38:30] L1 index
  54. | +-------------------------------> [47:39] L0 index (not used)
  55. +-------------------------------------------------> [63] TTBR0/1
  56. Translation table lookup with 64KB pages:
  57. +--------+--------+--------+--------+--------+--------+--------+--------+
  58. |63 56|55 48|47 40|39 32|31 24|23 16|15 8|7 0|
  59. +--------+--------+--------+--------+--------+--------+--------+--------+
  60. | | | | |
  61. | | | | v
  62. | | | | [15:0] in-page offset
  63. | | | +----------> [28:16] L3 index
  64. | | +--------------------------> [41:29] L2 index (only 38:29 used)
  65. | +-------------------------------> [47:42] L1 index (not used)
  66. +-------------------------------------------------> [63] TTBR0/1
  67. When using KVM, the hypervisor maps kernel pages in EL2, at a fixed
  68. offset from the kernel VA (top 24bits of the kernel VA set to zero):
  69. Start End Size Use
  70. -----------------------------------------------------------------------
  71. 0000004000000000 0000007fffffffff 256GB kernel objects mapped in HYP