1SPDX-License-Identifier: GPL-2.0 2 3Chinese translated version of Documentation/arm64/memory.rst 4 5If you have any comment or update to the content, please contact the 6original document maintainer directly. However, if you have a problem 7communicating in English you can also ask the Chinese maintainer for 8help. Contact the Chinese maintainer if this translation is outdated 9or if there is a problem with the translation. 10 11Maintainer: Catalin Marinas <catalin.marinas@arm.com> 12Chinese maintainer: Fu Wei <wefu@redhat.com> 13Traditional Chinese maintainer: Hu Haowen <src.res@email.cn> 14--------------------------------------------------------------------- 15Documentation/arm64/memory.rst 的中文翻譯 16 17如果想評論或更新本文的內容,請直接聯繫原文檔的維護者。如果你使用英文 18交流有困難的話,也可以向中文版維護者求助。如果本翻譯更新不及時或者翻 19譯存在問題,請聯繫中文版維護者。 20 21本文翻譯提交時的 Git 檢出點爲: bc465aa9d045feb0e13b4a8f32cc33c1943f62d6 22 23英文版維護者: Catalin Marinas <catalin.marinas@arm.com> 24中文版維護者: 傅煒 Fu Wei <wefu@redhat.com> 25中文版翻譯者: 傅煒 Fu Wei <wefu@redhat.com> 26中文版校譯者: 傅煒 Fu Wei <wefu@redhat.com> 27繁體中文版校譯者: 胡皓文 Hu Haowen <src.res@email.cn> 28 29以下爲正文 30--------------------------------------------------------------------- 31 Linux 在 AArch64 中的內存布局 32 =========================== 33 34作者: Catalin Marinas <catalin.marinas@arm.com> 35 36本文檔描述 AArch64 Linux 內核所使用的虛擬內存布局。此構架可以實現 37頁大小爲 4KB 的 4 級轉換表和頁大小爲 64KB 的 3 級轉換表。 38 39AArch64 Linux 使用 3 級或 4 級轉換表,其頁大小配置爲 4KB,對於用戶和內核 40分別都有 39-bit (512GB) 或 48-bit (256TB) 的虛擬地址空間。 41對於頁大小爲 64KB的配置,僅使用 2 級轉換表,有 42-bit (4TB) 的虛擬地址空間,但內存布局相同。 42 43用戶地址空間的 63:48 位爲 0,而內核地址空間的相應位爲 1。TTBRx 的 44選擇由虛擬地址的 63 位給出。swapper_pg_dir 僅包含內核(全局)映射, 45而用戶 pgd 僅包含用戶(非全局)映射。swapper_pg_dir 地址被寫入 46TTBR1 中,且從不寫入 TTBR0。 47 48 49AArch64 Linux 在頁大小爲 4KB,並使用 3 級轉換表時的內存布局: 50 51起始地址 結束地址 大小 用途 52----------------------------------------------------------------------- 530000000000000000 0000007fffffffff 512GB 用戶空間 54ffffff8000000000 ffffffffffffffff 512GB 內核空間 55 56 57AArch64 Linux 在頁大小爲 4KB,並使用 4 級轉換表時的內存布局: 58 59起始地址 結束地址 大小 用途 60----------------------------------------------------------------------- 610000000000000000 0000ffffffffffff 256TB 用戶空間 62ffff000000000000 ffffffffffffffff 256TB 內核空間 63 64 65AArch64 Linux 在頁大小爲 64KB,並使用 2 級轉換表時的內存布局: 66 67起始地址 結束地址 大小 用途 68----------------------------------------------------------------------- 690000000000000000 000003ffffffffff 4TB 用戶空間 70fffffc0000000000 ffffffffffffffff 4TB 內核空間 71 72 73AArch64 Linux 在頁大小爲 64KB,並使用 3 級轉換表時的內存布局: 74 75起始地址 結束地址 大小 用途 76----------------------------------------------------------------------- 770000000000000000 0000ffffffffffff 256TB 用戶空間 78ffff000000000000 ffffffffffffffff 256TB 內核空間 79 80 81更詳細的內核虛擬內存布局,請參閱內核啓動信息。 82 83 844KB 頁大小的轉換表查找: 85 86+--------+--------+--------+--------+--------+--------+--------+--------+ 87|63 56|55 48|47 40|39 32|31 24|23 16|15 8|7 0| 88+--------+--------+--------+--------+--------+--------+--------+--------+ 89 | | | | | | 90 | | | | | v 91 | | | | | [11:0] 頁內偏移 92 | | | | +-> [20:12] L3 索引 93 | | | +-----------> [29:21] L2 索引 94 | | +---------------------> [38:30] L1 索引 95 | +-------------------------------> [47:39] L0 索引 96 +-------------------------------------------------> [63] TTBR0/1 97 98 9964KB 頁大小的轉換表查找: 100 101+--------+--------+--------+--------+--------+--------+--------+--------+ 102|63 56|55 48|47 40|39 32|31 24|23 16|15 8|7 0| 103+--------+--------+--------+--------+--------+--------+--------+--------+ 104 | | | | | 105 | | | | v 106 | | | | [15:0] 頁內偏移 107 | | | +----------> [28:16] L3 索引 108 | | +--------------------------> [41:29] L2 索引 109 | +-------------------------------> [47:42] L1 索引 110 +-------------------------------------------------> [63] TTBR0/1 111 112 113當使用 KVM 時, 管理程序(hypervisor)在 EL2 中通過相對內核虛擬地址的 114一個固定偏移來映射內核頁(內核虛擬地址的高 24 位設爲零): 115 116起始地址 結束地址 大小 用途 117----------------------------------------------------------------------- 1180000004000000000 0000007fffffffff 256GB 在 HYP 中映射的內核對象 119 120