Documentation/translations/zh_TW/arch/arm64/booting.txt

Source file repositories/reference/linux-study-clean/Documentation/translations/zh_TW/arch/arm64/booting.txt

File Facts

System
Linux kernel
Corpus path
Documentation/translations/zh_TW/arch/arm64/booting.txt
Extension
.txt
Size
11097 bytes
Lines
252
Domain
Support Tooling And Documentation
Bucket
Documentation
Inferred role
Support Tooling And Documentation: documentation
Status
atlas-only

Why This File Exists

Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.

Dependency Surface

Detected Declarations

Annotated Snippet

SPDX-License-Identifier: GPL-2.0

Chinese translated version of Documentation/arch/arm64/booting.rst

If you have any comment or update to the content, please contact the
original document maintainer directly.  However, if you have a problem
communicating in English you can also ask the Chinese maintainer for
help.  Contact the Chinese maintainer if this translation is outdated
or if there is a problem with the translation.

M:	Will Deacon <will.deacon@arm.com>
zh_CN:	Fu Wei <wefu@redhat.com>
zh_TW:	Hu Haowen <2023002089@link.tyut.edu.cn>
C:	55f058e7574c3615dea4615573a19bdb258696c6
---------------------------------------------------------------------
Documentation/arch/arm64/booting.rst 的中文翻譯

如果想評論或更新本文的內容,請直接聯繫原文檔的維護者。如果你使用英文
交流有困難的話,也可以向中文版維護者求助。如果本翻譯更新不及時或者翻
譯存在問題,請聯繫中文版維護者。

英文版維護者: Will Deacon <will.deacon@arm.com>
中文版維護者: 傅煒  Fu Wei <wefu@redhat.com>
中文版翻譯者: 傅煒  Fu Wei <wefu@redhat.com>
中文版校譯者: 傅煒  Fu Wei <wefu@redhat.com>
繁體中文版校譯者: 胡皓文  Hu Haowen <2023002089@link.tyut.edu.cn>
本文翻譯提交時的 Git 檢出點爲: 55f058e7574c3615dea4615573a19bdb258696c6

以下爲正文
---------------------------------------------------------------------
			啓動 AArch64 Linux
			==================

作者: Will Deacon <will.deacon@arm.com>
日期: 2012 年 09 月 07 日

本文檔基於 Russell King 的 ARM 啓動文檔,且適用於所有公開發布的
AArch64 Linux 內核代碼。

AArch64 異常模型由多個異常級(EL0 - EL3)組成,對於 EL0 和 EL1 異常級
有對應的安全和非安全模式。EL2 是系統管理級,且僅存在於非安全模式下。
EL3 是最高特權級,且僅存在於安全模式下。

基於本文檔的目的,我們將簡單地使用‘引導裝載程序’(‘boot loader’)
這個術語來定義在將控制權交給 Linux 內核前 CPU 上執行的所有軟件。
這可能包含安全監控和系統管理代碼,或者它可能只是一些用於準備最小啓動
環境的指令。

基本上,引導裝載程序(至少)應實現以下操作:

1、設置和初始化 RAM
2、設置設備樹數據
3、解壓內核映像
4、調用內核映像


1、設置和初始化 RAM
-----------------

必要性: 強制

引導裝載程序應該找到並初始化系統中所有內核用於保持系統變量數據的 RAM。
這個操作的執行方式因設備而異。(它可能使用內部算法來自動定位和計算所有
RAM,或可能使用對這個設備已知的 RAM 信息,還可能是引導裝載程序設計者
想到的任何合適的方法。)


2、設置設備樹數據
---------------

Annotation

Implementation Notes