booting.txt 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. Booting AArch64 Linux
  2. =====================
  3. Author: Will Deacon <will.deacon@arm.com>
  4. Date : 07 September 2012
  5. This document is based on the ARM booting document by Russell King and
  6. is relevant to all public releases of the AArch64 Linux kernel.
  7. The AArch64 exception model is made up of a number of exception levels
  8. (EL0 - EL3), with EL0 and EL1 having a secure and a non-secure
  9. counterpart. EL2 is the hypervisor level and exists only in non-secure
  10. mode. EL3 is the highest priority level and exists only in secure mode.
  11. For the purposes of this document, we will use the term `boot loader'
  12. simply to define all software that executes on the CPU(s) before control
  13. is passed to the Linux kernel. This may include secure monitor and
  14. hypervisor code, or it may just be a handful of instructions for
  15. preparing a minimal boot environment.
  16. Essentially, the boot loader should provide (as a minimum) the
  17. following:
  18. 1. Setup and initialise the RAM
  19. 2. Setup the device tree
  20. 3. Decompress the kernel image
  21. 4. Call the kernel image
  22. 1. Setup and initialise RAM
  23. ---------------------------
  24. Requirement: MANDATORY
  25. The boot loader is expected to find and initialise all RAM that the
  26. kernel will use for volatile data storage in the system. It performs
  27. this in a machine dependent manner. (It may use internal algorithms
  28. to automatically locate and size all RAM, or it may use knowledge of
  29. the RAM in the machine, or any other method the boot loader designer
  30. sees fit.)
  31. 2. Setup the device tree
  32. -------------------------
  33. Requirement: MANDATORY
  34. The device tree blob (dtb) must be placed on an 8-byte boundary and must
  35. not exceed 2 megabytes in size. Since the dtb will be mapped cacheable
  36. using blocks of up to 2 megabytes in size, it must not be placed within
  37. any 2M region which must be mapped with any specific attributes.
  38. NOTE: versions prior to v4.2 also require that the DTB be placed within
  39. the 512 MB region starting at text_offset bytes below the kernel Image.
  40. 3. Decompress the kernel image
  41. ------------------------------
  42. Requirement: OPTIONAL
  43. The AArch64 kernel does not currently provide a decompressor and
  44. therefore requires decompression (gzip etc.) to be performed by the boot
  45. loader if a compressed Image target (e.g. Image.gz) is used. For
  46. bootloaders that do not implement this requirement, the uncompressed
  47. Image target is available instead.
  48. 4. Call the kernel image
  49. ------------------------
  50. Requirement: MANDATORY
  51. The decompressed kernel image contains a 64-byte header as follows:
  52. u32 code0; /* Executable code */
  53. u32 code1; /* Executable code */
  54. u64 text_offset; /* Image load offset, little endian */
  55. u64 image_size; /* Effective Image size, little endian */
  56. u64 flags; /* kernel flags, little endian */
  57. u64 res2 = 0; /* reserved */
  58. u64 res3 = 0; /* reserved */
  59. u64 res4 = 0; /* reserved */
  60. u32 magic = 0x644d5241; /* Magic number, little endian, "ARM\x64" */
  61. u32 res5; /* reserved (used for PE COFF offset) */
  62. Header notes:
  63. - As of v3.17, all fields are little endian unless stated otherwise.
  64. - code0/code1 are responsible for branching to stext.
  65. - when booting through EFI, code0/code1 are initially skipped.
  66. res5 is an offset to the PE header and the PE header has the EFI
  67. entry point (efi_stub_entry). When the stub has done its work, it
  68. jumps to code0 to resume the normal boot process.
  69. - Prior to v3.17, the endianness of text_offset was not specified. In
  70. these cases image_size is zero and text_offset is 0x80000 in the
  71. endianness of the kernel. Where image_size is non-zero image_size is
  72. little-endian and must be respected. Where image_size is zero,
  73. text_offset can be assumed to be 0x80000.
  74. - The flags field (introduced in v3.17) is a little-endian 64-bit field
  75. composed as follows:
  76. Bit 0: Kernel endianness. 1 if BE, 0 if LE.
  77. Bit 1-2: Kernel Page size.
  78. 0 - Unspecified.
  79. 1 - 4K
  80. 2 - 16K
  81. 3 - 64K
  82. Bits 3-63: Reserved.
  83. - When image_size is zero, a bootloader should attempt to keep as much
  84. memory as possible free for use by the kernel immediately after the
  85. end of the kernel image. The amount of space required will vary
  86. depending on selected features, and is effectively unbound.
  87. The Image must be placed text_offset bytes from a 2MB aligned base
  88. address near the start of usable system RAM and called there. Memory
  89. below that base address is currently unusable by Linux, and therefore it
  90. is strongly recommended that this location is the start of system RAM.
  91. The region between the 2 MB aligned base address and the start of the
  92. image has no special significance to the kernel, and may be used for
  93. other purposes.
  94. At least image_size bytes from the start of the image must be free for
  95. use by the kernel.
  96. Any memory described to the kernel (even that below the start of the
  97. image) which is not marked as reserved from the kernel (e.g., with a
  98. memreserve region in the device tree) will be considered as available to
  99. the kernel.
  100. Before jumping into the kernel, the following conditions must be met:
  101. - Quiesce all DMA capable devices so that memory does not get
  102. corrupted by bogus network packets or disk data. This will save
  103. you many hours of debug.
  104. - Primary CPU general-purpose register settings
  105. x0 = physical address of device tree blob (dtb) in system RAM.
  106. x1 = 0 (reserved for future use)
  107. x2 = 0 (reserved for future use)
  108. x3 = 0 (reserved for future use)
  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. - Caches, MMUs
  115. The MMU must be off.
  116. Instruction cache may be on or off.
  117. The address range corresponding to the loaded kernel image must be
  118. cleaned to the PoC. In the presence of a system cache or other
  119. coherent masters with caches enabled, this will typically require
  120. cache maintenance by VA rather than set/way operations.
  121. System caches which respect the architected cache maintenance by VA
  122. operations must be configured and may be enabled.
  123. System caches which do not respect architected cache maintenance by VA
  124. operations (not recommended) must be configured and disabled.
  125. - Architected timers
  126. CNTFRQ must be programmed with the timer frequency and CNTVOFF must
  127. be programmed with a consistent value on all CPUs. If entering the
  128. kernel at EL1, CNTHCTL_EL2 must have EL1PCTEN (bit 0) set where
  129. available.
  130. - Coherency
  131. All CPUs to be booted by the kernel must be part of the same coherency
  132. domain on entry to the kernel. This may require IMPLEMENTATION DEFINED
  133. initialisation to enable the receiving of maintenance operations on
  134. each CPU.
  135. - System registers
  136. All writable architected system registers at the exception level where
  137. the kernel image will be entered must be initialised by software at a
  138. higher exception level to prevent execution in an UNKNOWN state.
  139. For systems with a GICv3 interrupt controller to be used in v3 mode:
  140. - If EL3 is present:
  141. ICC_SRE_EL3.Enable (bit 3) must be initialiased to 0b1.
  142. ICC_SRE_EL3.SRE (bit 0) must be initialised to 0b1.
  143. - If the kernel is entered at EL1:
  144. ICC.SRE_EL2.Enable (bit 3) must be initialised to 0b1
  145. ICC_SRE_EL2.SRE (bit 0) must be initialised to 0b1.
  146. - The DT or ACPI tables must describe a GICv3 interrupt controller.
  147. For systems with a GICv3 interrupt controller to be used in
  148. compatibility (v2) mode:
  149. - If EL3 is present:
  150. ICC_SRE_EL3.SRE (bit 0) must be initialised to 0b0.
  151. - If the kernel is entered at EL1:
  152. ICC_SRE_EL2.SRE (bit 0) must be initialised to 0b0.
  153. - The DT or ACPI tables must describe a GICv2 interrupt controller.
  154. The requirements described above for CPU mode, caches, MMUs, architected
  155. timers, coherency and system registers apply to all CPUs. All CPUs must
  156. enter the kernel in the same exception level.
  157. The boot loader is expected to enter the kernel on each CPU in the
  158. following manner:
  159. - The primary CPU must jump directly to the first instruction of the
  160. kernel image. The device tree blob passed by this CPU must contain
  161. an 'enable-method' property for each cpu node. The supported
  162. enable-methods are described below.
  163. It is expected that the bootloader will generate these device tree
  164. properties and insert them into the blob prior to kernel entry.
  165. - CPUs with a "spin-table" enable-method must have a 'cpu-release-addr'
  166. property in their cpu node. This property identifies a
  167. naturally-aligned 64-bit zero-initalised memory location.
  168. These CPUs should spin outside of the kernel in a reserved area of
  169. memory (communicated to the kernel by a /memreserve/ region in the
  170. device tree) polling their cpu-release-addr location, which must be
  171. contained in the reserved region. A wfe instruction may be inserted
  172. to reduce the overhead of the busy-loop and a sev will be issued by
  173. the primary CPU. When a read of the location pointed to by the
  174. cpu-release-addr returns a non-zero value, the CPU must jump to this
  175. value. The value will be written as a single 64-bit little-endian
  176. value, so CPUs must convert the read value to their native endianness
  177. before jumping to it.
  178. - CPUs with a "psci" enable method should remain outside of
  179. the kernel (i.e. outside of the regions of memory described to the
  180. kernel in the memory node, or in a reserved area of memory described
  181. to the kernel by a /memreserve/ region in the device tree). The
  182. kernel will issue CPU_ON calls as described in ARM document number ARM
  183. DEN 0022A ("Power State Coordination Interface System Software on ARM
  184. processors") to bring CPUs into the kernel.
  185. The device tree should contain a 'psci' node, as described in
  186. Documentation/devicetree/bindings/arm/psci.txt.
  187. - Secondary CPU general-purpose register settings
  188. x0 = 0 (reserved for future use)
  189. x1 = 0 (reserved for future use)
  190. x2 = 0 (reserved for future use)
  191. x3 = 0 (reserved for future use)