blob: 37fc4f632176135ad32cf23ac64f5ceb54bfc9d9 [file] [log] [blame]
Catalin Marinas9703d9d2012-03-05 11:49:27 +00001 Booting AArch64 Linux
2 =====================
3
4Author: Will Deacon <will.deacon@arm.com>
5Date : 07 September 2012
6
7This document is based on the ARM booting document by Russell King and
8is relevant to all public releases of the AArch64 Linux kernel.
9
10The AArch64 exception model is made up of a number of exception levels
11(EL0 - EL3), with EL0 and EL1 having a secure and a non-secure
12counterpart. EL2 is the hypervisor level and exists only in non-secure
13mode. EL3 is the highest priority level and exists only in secure mode.
14
15For the purposes of this document, we will use the term `boot loader'
16simply to define all software that executes on the CPU(s) before control
17is passed to the Linux kernel. This may include secure monitor and
18hypervisor code, or it may just be a handful of instructions for
19preparing a minimal boot environment.
20
21Essentially, the boot loader should provide (as a minimum) the
22following:
23
241. Setup and initialise the RAM
252. Setup the device tree
263. Decompress the kernel image
274. Call the kernel image
28
29
301. Setup and initialise RAM
31---------------------------
32
33Requirement: MANDATORY
34
35The boot loader is expected to find and initialise all RAM that the
36kernel will use for volatile data storage in the system. It performs
37this in a machine dependent manner. (It may use internal algorithms
38to automatically locate and size all RAM, or it may use knowledge of
39the RAM in the machine, or any other method the boot loader designer
40sees fit.)
41
42
432. Setup the device tree
44-------------------------
45
46Requirement: MANDATORY
47
Mark Salter4d5e0b12013-09-04 15:10:02 +010048The device tree blob (dtb) must be placed on an 8-byte boundary within
49the first 512 megabytes from the start of the kernel image and must not
50cross a 2-megabyte boundary. This is to allow the kernel to map the
Catalin Marinas9703d9d2012-03-05 11:49:27 +000051blob using a single section mapping in the initial page tables.
52
53
543. Decompress the kernel image
55------------------------------
56
57Requirement: OPTIONAL
58
59The AArch64 kernel does not currently provide a decompressor and
60therefore requires decompression (gzip etc.) to be performed by the boot
61loader if a compressed Image target (e.g. Image.gz) is used. For
62bootloaders that do not implement this requirement, the uncompressed
63Image target is available instead.
64
65
664. Call the kernel image
67------------------------
68
69Requirement: MANDATORY
70
Roy Franz4370eec2013-08-15 00:10:00 +010071The decompressed kernel image contains a 64-byte header as follows:
Catalin Marinas9703d9d2012-03-05 11:49:27 +000072
Roy Franz4370eec2013-08-15 00:10:00 +010073 u32 code0; /* Executable code */
74 u32 code1; /* Executable code */
Catalin Marinas9703d9d2012-03-05 11:49:27 +000075 u64 text_offset; /* Image load offset */
Roy Franz4370eec2013-08-15 00:10:00 +010076 u64 res0 = 0; /* reserved */
Catalin Marinas9703d9d2012-03-05 11:49:27 +000077 u64 res1 = 0; /* reserved */
78 u64 res2 = 0; /* reserved */
Roy Franz4370eec2013-08-15 00:10:00 +010079 u64 res3 = 0; /* reserved */
80 u64 res4 = 0; /* reserved */
81 u32 magic = 0x644d5241; /* Magic number, little endian, "ARM\x64" */
82 u32 res5 = 0; /* reserved */
83
84
85Header notes:
86
87- code0/code1 are responsible for branching to stext.
Mark Saltercdd78572013-11-29 16:00:14 -050088- when booting through EFI, code0/code1 are initially skipped.
89 res5 is an offset to the PE header and the PE header has the EFI
90 entry point (efi_stub_entry). When the stub has done its work, it
91 jumps to code0 to resume the normal boot process.
Catalin Marinas9703d9d2012-03-05 11:49:27 +000092
93The image must be placed at the specified offset (currently 0x80000)
94from the start of the system RAM and called there. The start of the
95system RAM must be aligned to 2MB.
96
97Before jumping into the kernel, the following conditions must be met:
98
99- Quiesce all DMA capable devices so that memory does not get
100 corrupted by bogus network packets or disk data. This will save
101 you many hours of debug.
102
103- Primary CPU general-purpose register settings
104 x0 = physical address of device tree blob (dtb) in system RAM.
105 x1 = 0 (reserved for future use)
106 x2 = 0 (reserved for future use)
107 x3 = 0 (reserved for future use)
108
109- CPU mode
110 All forms of interrupts must be masked in PSTATE.DAIF (Debug, SError,
111 IRQ and FIQ).
112 The CPU must be in either EL2 (RECOMMENDED in order to have access to
113 the virtualisation extensions) or non-secure EL1.
114
115- Caches, MMUs
116 The MMU must be off.
117 Instruction cache may be on or off.
Catalin Marinasc218bca2014-03-26 18:25:55 +0000118 The address range corresponding to the loaded kernel image must be
119 cleaned to the PoC. In the presence of a system cache or other
120 coherent masters with caches enabled, this will typically require
121 cache maintenance by VA rather than set/way operations.
122 System caches which respect the architected cache maintenance by VA
123 operations must be configured and may be enabled.
124 System caches which do not respect architected cache maintenance by VA
125 operations (not recommended) must be configured and disabled.
Catalin Marinas9703d9d2012-03-05 11:49:27 +0000126
127- Architected timers
Mark Rutland4fcd6e12013-10-11 14:52:07 +0100128 CNTFRQ must be programmed with the timer frequency and CNTVOFF must
129 be programmed with a consistent value on all CPUs. If entering the
130 kernel at EL1, CNTHCTL_EL2 must have EL1PCTEN (bit 0) set where
131 available.
Catalin Marinas9703d9d2012-03-05 11:49:27 +0000132
133- Coherency
134 All CPUs to be booted by the kernel must be part of the same coherency
135 domain on entry to the kernel. This may require IMPLEMENTATION DEFINED
136 initialisation to enable the receiving of maintenance operations on
137 each CPU.
138
139- System registers
140 All writable architected system registers at the exception level where
141 the kernel image will be entered must be initialised by software at a
142 higher exception level to prevent execution in an UNKNOWN state.
143
Mark Rutland4fcd6e12013-10-11 14:52:07 +0100144The requirements described above for CPU mode, caches, MMUs, architected
145timers, coherency and system registers apply to all CPUs. All CPUs must
146enter the kernel in the same exception level.
147
Catalin Marinas9703d9d2012-03-05 11:49:27 +0000148The boot loader is expected to enter the kernel on each CPU in the
149following manner:
150
151- The primary CPU must jump directly to the first instruction of the
152 kernel image. The device tree blob passed by this CPU must contain
Mark Rutland4fcd6e12013-10-11 14:52:07 +0100153 an 'enable-method' property for each cpu node. The supported
154 enable-methods are described below.
Catalin Marinas9703d9d2012-03-05 11:49:27 +0000155
156 It is expected that the bootloader will generate these device tree
157 properties and insert them into the blob prior to kernel entry.
158
Mark Rutland4fcd6e12013-10-11 14:52:07 +0100159- CPUs with a "spin-table" enable-method must have a 'cpu-release-addr'
160 property in their cpu node. This property identifies a
161 naturally-aligned 64-bit zero-initalised memory location.
162
163 These CPUs should spin outside of the kernel in a reserved area of
164 memory (communicated to the kernel by a /memreserve/ region in the
Catalin Marinas9703d9d2012-03-05 11:49:27 +0000165 device tree) polling their cpu-release-addr location, which must be
166 contained in the reserved region. A wfe instruction may be inserted
167 to reduce the overhead of the busy-loop and a sev will be issued by
168 the primary CPU. When a read of the location pointed to by the
Mark Rutland4fcd6e12013-10-11 14:52:07 +0100169 cpu-release-addr returns a non-zero value, the CPU must jump to this
170 value. The value will be written as a single 64-bit little-endian
171 value, so CPUs must convert the read value to their native endianness
172 before jumping to it.
173
174- CPUs with a "psci" enable method should remain outside of
175 the kernel (i.e. outside of the regions of memory described to the
176 kernel in the memory node, or in a reserved area of memory described
177 to the kernel by a /memreserve/ region in the device tree). The
178 kernel will issue CPU_ON calls as described in ARM document number ARM
179 DEN 0022A ("Power State Coordination Interface System Software on ARM
180 processors") to bring CPUs into the kernel.
181
182 The device tree should contain a 'psci' node, as described in
183 Documentation/devicetree/bindings/arm/psci.txt.
Catalin Marinas9703d9d2012-03-05 11:49:27 +0000184
185- Secondary CPU general-purpose register settings
186 x0 = 0 (reserved for future use)
187 x1 = 0 (reserved for future use)
188 x2 = 0 (reserved for future use)
189 x3 = 0 (reserved for future use)