~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/translations/zh_TW/arch/arm64/memory.txt

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 SPDX-License-Identifier: GPL-2.0
  2 
  3 Chinese translated version of Documentation/arch/arm64/memory.rst
  4 
  5 If you have any comment or update to the content, please contact the
  6 original document maintainer directly.  However, if you have a problem
  7 communicating in English you can also ask the Chinese maintainer for
  8 help.  Contact the Chinese maintainer if this translation is outdated
  9 or if there is a problem with the translation.
 10 
 11 Maintainer: Catalin Marinas <catalin.marinas@arm.com>
 12 Chinese maintainer: Fu Wei <wefu@redhat.com>
 13 Traditional Chinese maintainer: Hu Haowen <2023002089@link.tyut.edu.cn>
 14 ---------------------------------------------------------------------
 15 Documentation/arch/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 <2023002089@link.tyut.edu.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 
 39 AArch64 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 地址被寫入
 46 TTBR1 中,且從不寫入 TTBR0。
 47 
 48 
 49 AArch64 Linux 在頁大小爲 4KB,並使用 3 級轉換表時的內存佈局:
 50 
 51 起始地址                    結束地址                    大小          用途
 52 -----------------------------------------------------------------------
 53 0000000000000000        0000007fffffffff         512GB          用戶空間
 54 ffffff8000000000        ffffffffffffffff         512GB          內核空間
 55 
 56 
 57 AArch64 Linux 在頁大小爲 4KB,並使用 4 級轉換表時的內存佈局:
 58 
 59 起始地址                    結束地址                    大小          用途
 60 -----------------------------------------------------------------------
 61 0000000000000000        0000ffffffffffff         256TB          用戶空間
 62 ffff000000000000        ffffffffffffffff         256TB          內核空間
 63 
 64 
 65 AArch64 Linux 在頁大小爲 64KB,並使用 2 級轉換表時的內存佈局:
 66 
 67 起始地址                    結束地址                    大小          用途
 68 -----------------------------------------------------------------------
 69 0000000000000000        000003ffffffffff           4TB          用戶空間
 70 fffffc0000000000        ffffffffffffffff           4TB          內核空間
 71 
 72 
 73 AArch64 Linux 在頁大小爲 64KB,並使用 3 級轉換表時的內存佈局:
 74 
 75 起始地址                    結束地址                    大小          用途
 76 -----------------------------------------------------------------------
 77 0000000000000000        0000ffffffffffff         256TB          用戶空間
 78 ffff000000000000        ffffffffffffffff         256TB          內核空間
 79 
 80 
 81 更詳細的內核虛擬內存佈局,請參閱內核啓動信息。
 82 
 83 
 84 4KB 頁大小的轉換表查找:
 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 
 99 64KB 頁大小的轉換表查找:
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 -----------------------------------------------------------------------
118 0000004000000000        0000007fffffffff         256GB          在 HYP 中映射的內核對象
119 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php