blob: a2263451dc2c4085b328007fd8acb9db523e9032 [file] [log] [blame]
Mauro Carvalho Chehabdc7a12b2019-04-14 15:51:10 -03001=================
2Booting ARM Linux
3=================
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
5Author: Russell King
Mauro Carvalho Chehabdc7a12b2019-04-14 15:51:10 -03006
Linus Torvalds1da177e2005-04-16 15:20:36 -07007Date : 18 May 2002
8
9The following documentation is relevant to 2.4.18-rmk6 and beyond.
10
11In order to boot ARM Linux, you require a boot loader, which is a small
12program that runs before the main kernel. The boot loader is expected
13to initialise various devices, and eventually call the Linux kernel,
14passing information to the kernel.
15
16Essentially, the boot loader should provide (as a minimum) the
17following:
18
191. Setup and initialise the RAM.
202. Initialise one serial port.
213. Detect the machine type.
224. Setup the kernel tagged list.
Ian Campbell83d26d12013-08-21 11:41:42 +0100235. Load initramfs.
246. Call the kernel image.
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26
271. Setup and initialise RAM
28---------------------------
29
Mauro Carvalho Chehabdc7a12b2019-04-14 15:51:10 -030030Existing boot loaders:
31 MANDATORY
32New boot loaders:
33 MANDATORY
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
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. Initialise one serial port
44-----------------------------
45
Mauro Carvalho Chehabdc7a12b2019-04-14 15:51:10 -030046Existing boot loaders:
47 OPTIONAL, RECOMMENDED
48New boot loaders:
49 OPTIONAL, RECOMMENDED
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51The boot loader should initialise and enable one serial port on the
52target. This allows the kernel serial driver to automatically detect
53which serial port it should use for the kernel console (generally
54used for debugging purposes, or communication with the target.)
55
56As an alternative, the boot loader can pass the relevant 'console='
57option to the kernel via the tagged lists specifying the port, and
58serial format options as described in
59
Mauro Carvalho Chehab8c27ceff32016-10-18 10:12:27 -020060 Documentation/admin-guide/kernel-parameters.rst.
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62
633. Detect the machine type
64--------------------------
65
Mauro Carvalho Chehabdc7a12b2019-04-14 15:51:10 -030066Existing boot loaders:
67 OPTIONAL
68New boot loaders:
69 MANDATORY except for DT-only platforms
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71The boot loader should detect the machine type its running on by some
72method. Whether this is a hard coded value or some algorithm that
73looks at the connected hardware is beyond the scope of this document.
74The boot loader must ultimately be able to provide a MACH_TYPE_xxx
Gregory Fongdce12392015-02-03 18:49:26 -080075value to the kernel. (see linux/arch/arm/tools/mach-types). This
76should be passed to the kernel in register r1.
77
78For DT-only platforms, the machine type will be determined by device
79tree. set the machine type to all ones (~0). This is not strictly
80necessary, but assures that it will not match any existing types.
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Grant Likelyede338f2011-04-28 14:27:23 -0600824. Setup boot data
83------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Mauro Carvalho Chehabdc7a12b2019-04-14 15:51:10 -030085Existing boot loaders:
86 OPTIONAL, HIGHLY RECOMMENDED
87New boot loaders:
88 MANDATORY
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Grant Likelyede338f2011-04-28 14:27:23 -060090The boot loader must provide either a tagged list or a dtb image for
91passing configuration data to the kernel. The physical address of the
92boot data is passed to the kernel in register r2.
93
944a. Setup the kernel tagged list
95--------------------------------
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097The boot loader must create and initialise the kernel tagged list.
98A valid tagged list starts with ATAG_CORE and ends with ATAG_NONE.
99The ATAG_CORE tag may or may not be empty. An empty ATAG_CORE tag
100has the size field set to '2' (0x00000002). The ATAG_NONE must set
101the size field to zero.
102
103Any number of tags can be placed in the list. It is undefined
104whether a repeated tag appends to the information carried by the
105previous tag, or whether it replaces the information in its
106entirety; some tags behave as the former, others the latter.
107
108The boot loader must pass at a minimum the size and location of
109the system memory, and root filesystem location. Therefore, the
Mauro Carvalho Chehabdc7a12b2019-04-14 15:51:10 -0300110minimum tagged list should look::
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Mauro Carvalho Chehabdc7a12b2019-04-14 15:51:10 -0300112 +-----------+
113 base -> | ATAG_CORE | |
114 +-----------+ |
115 | ATAG_MEM | | increasing address
116 +-----------+ |
117 | ATAG_NONE | |
118 +-----------+ v
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120The tagged list should be stored in system RAM.
121
122The tagged list must be placed in a region of memory where neither
123the kernel decompressor nor initrd 'bootp' program will overwrite
124it. The recommended placement is in the first 16KiB of RAM.
125
Grant Likelyede338f2011-04-28 14:27:23 -06001264b. Setup the device tree
127-------------------------
128
129The boot loader must load a device tree image (dtb) into system ram
130at a 64bit aligned address and initialize it with the boot data. The
Mauro Carvalho Chehab691462f2020-06-23 15:31:34 +0200131dtb format is documented in Documentation/devicetree/booting-without-of.rst.
Grant Likelyede338f2011-04-28 14:27:23 -0600132The kernel will look for the dtb magic value of 0xd00dfeed at the dtb
133physical address to determine if a dtb has been passed instead of a
134tagged list.
135
136The boot loader must pass at a minimum the size and location of the
137system memory, and the root filesystem location. The dtb must be
138placed in a region of memory where the kernel decompressor will not
Will Deacon806654a2018-11-19 11:02:45 +0000139overwrite it, while remaining within the region which will be covered
Ian Campbell83d26d12013-08-21 11:41:42 +0100140by the kernel's low-memory mapping.
Grant Likelyede338f2011-04-28 14:27:23 -0600141
Ian Campbell83d26d12013-08-21 11:41:42 +0100142A safe location is just above the 128MiB boundary from start of RAM.
143
1445. Load initramfs.
145------------------
146
Mauro Carvalho Chehabdc7a12b2019-04-14 15:51:10 -0300147Existing boot loaders:
148 OPTIONAL
149New boot loaders:
150 OPTIONAL
Ian Campbell83d26d12013-08-21 11:41:42 +0100151
152If an initramfs is in use then, as with the dtb, it must be placed in
153a region of memory where the kernel decompressor will not overwrite it
154while also with the region which will be covered by the kernel's
155low-memory mapping.
156
157A safe location is just above the device tree blob which itself will
158be loaded just above the 128MiB boundary from the start of RAM as
159recommended above.
160
1616. Calling the kernel image
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162---------------------------
163
Mauro Carvalho Chehabdc7a12b2019-04-14 15:51:10 -0300164Existing boot loaders:
165 MANDATORY
166New boot loaders:
167 MANDATORY
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169There are two options for calling the kernel zImage. If the zImage
170is stored in flash, and is linked correctly to be run from flash,
171then it is legal for the boot loader to call the zImage in flash
172directly.
173
Ian Campbell83d26d12013-08-21 11:41:42 +0100174The zImage may also be placed in system RAM and called there. The
175kernel should be placed in the first 128MiB of RAM. It is recommended
176that it is loaded above 32MiB in order to avoid the need to relocate
177prior to decompression, which will make the boot process slightly
178faster.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Ian Campbell83d26d12013-08-21 11:41:42 +0100180When booting a raw (non-zImage) kernel the constraints are tighter.
181In this case the kernel must be loaded at an offset into system equal
182to TEXT_OFFSET - PAGE_OFFSET.
183
184In any case, the following conditions must be met:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Andrzej Zaborowski13fce802006-03-24 18:13:37 +0100186- Quiesce all DMA capable devices so that memory does not get
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 corrupted by bogus network packets or disk data. This will save
188 you many hours of debug.
189
190- CPU register settings
Mauro Carvalho Chehabdc7a12b2019-04-14 15:51:10 -0300191
192 - r0 = 0,
193 - r1 = machine type number discovered in (3) above.
194 - r2 = physical address of tagged list in system RAM, or
195 physical address of device tree block (dtb) in system RAM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197- CPU mode
Mauro Carvalho Chehabdc7a12b2019-04-14 15:51:10 -0300198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 All forms of interrupts must be disabled (IRQs and FIQs)
Dave Martin6a6d55c2012-02-10 18:07:07 -0800200
201 For CPUs which do not include the ARM virtualization extensions, the
202 CPU must be in SVC mode. (A special exception exists for Angel)
203
204 CPUs which include support for the virtualization extensions can be
205 entered in HYP mode in order to enable the kernel to make full use of
206 these extensions. This is the recommended boot method for such CPUs,
207 unless the virtualisations are already in use by a pre-installed
208 hypervisor.
209
210 If the kernel is not entered in HYP mode for any reason, it must be
211 entered in SVC mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213- Caches, MMUs
Mauro Carvalho Chehabdc7a12b2019-04-14 15:51:10 -0300214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 The MMU must be off.
Mauro Carvalho Chehabdc7a12b2019-04-14 15:51:10 -0300216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 Instruction cache may be on or off.
Mauro Carvalho Chehabdc7a12b2019-04-14 15:51:10 -0300218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 Data cache must be off.
220
Dave Martin6a6d55c2012-02-10 18:07:07 -0800221 If the kernel is entered in HYP mode, the above requirements apply to
222 the HYP mode configuration in addition to the ordinary PL1 (privileged
223 kernel modes) configuration. In addition, all traps into the
224 hypervisor must be disabled, and PL1 access must be granted for all
225 peripherals and CPU resources for which this is architecturally
226 possible. Except for entering in HYP mode, the system configuration
227 should be such that a kernel which does not include support for the
228 virtualization extensions can boot correctly without extra help.
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230- The boot loader is expected to call the kernel image by jumping
231 directly to the first instruction of the kernel image.
232
Dave Martin540b5732011-07-13 15:53:30 +0100233 On CPUs supporting the ARM instruction set, the entry must be
234 made in ARM state, even for a Thumb-2 kernel.
235
236 On CPUs supporting only the Thumb instruction set such as
237 Cortex-M class CPUs, the entry must be made in Thumb state.