Heinrich Schuchardt | 7fe3901 | 2023-07-28 22:37:40 +0200 | [diff] [blame] | 1 | .. SPDX-License-Identifier: GPL-2.0-or-later |
| 2 | |
| 3 | Falcon Mode |
| 4 | =========== |
| 5 | |
| 6 | Introduction |
| 7 | ------------ |
| 8 | |
| 9 | This document provides an overview of how to add support for Falcon Mode |
| 10 | to a board. |
| 11 | |
| 12 | Falcon Mode is introduced to speed up the booting process, allowing |
| 13 | to boot a Linux kernel (or whatever image) without a full blown U-Boot. |
| 14 | |
| 15 | Falcon Mode relies on the SPL framework. In fact, to make booting faster, |
| 16 | U-Boot is split into two parts: the SPL (Secondary Program Loader) and U-Boot |
| 17 | image. In most implementations, SPL is used to start U-Boot when booting from |
| 18 | a mass storage, such as NAND or SD-Card. SPL has now support for other media, |
| 19 | and can generally be seen as a way to start an image performing the minimum |
| 20 | required initialization. SPL mainly initializes the RAM controller, and then |
| 21 | copies U-Boot image into the memory. |
| 22 | |
| 23 | The Falcon Mode extends this way allowing to start the Linux kernel directly |
| 24 | from SPL. A new command is added to U-Boot to prepare the parameters that SPL |
| 25 | must pass to the kernel, using ATAGS or Device Tree. |
| 26 | |
| 27 | In normal mode, these parameters are generated each time before |
| 28 | loading the kernel, passing to Linux the address in memory where |
| 29 | the parameters can be read. |
| 30 | With Falcon Mode, this snapshot can be saved into persistent storage and SPL is |
| 31 | informed to load it before running the kernel. |
| 32 | |
| 33 | To boot the kernel, these steps under a Falcon-aware U-Boot are required: |
| 34 | |
| 35 | 1. Boot the board into U-Boot. |
| 36 | After loading the desired legacy-format kernel image into memory (and DT as |
| 37 | well, if used), use the "spl export" command to generate the kernel |
| 38 | parameters area or the DT. U-Boot runs as when it boots the kernel, but |
| 39 | stops before passing the control to the kernel. |
| 40 | |
| 41 | 2. Save the prepared snapshot into persistent media. |
| 42 | The address where to save it must be configured into board configuration |
| 43 | file (CONFIG_CMD_SPL_NAND_OFS for NAND). |
| 44 | |
| 45 | 3. Boot the board into Falcon Mode. SPL will load the kernel and copy |
| 46 | the parameters which are saved in the persistent area to the required |
| 47 | address. If a valid uImage is not found at the defined location, U-Boot |
| 48 | will be booted instead. |
| 49 | |
| 50 | It is required to implement a custom mechanism to select if SPL loads U-Boot |
| 51 | or another image. |
| 52 | |
| 53 | The value of a GPIO is a simple way to operate the selection, as well as |
| 54 | reading a character from the SPL console if CONFIG_SPL_CONSOLE is set. |
| 55 | |
| 56 | Falcon Mode is generally activated by setting CONFIG_SPL_OS_BOOT. This tells |
| 57 | SPL that U-Boot is not the only available image that SPL is able to start. |
| 58 | |
| 59 | Configuration |
| 60 | ------------- |
| 61 | |
| 62 | CONFIG_CMD_SPL |
| 63 | Enable the "spl export" command. |
| 64 | The command "spl export" is then available in U-Boot mode. |
| 65 | |
Simon Glass | 9cbdc3a | 2023-09-26 08:14:17 -0600 | [diff] [blame^] | 66 | CONFIG_SPL_PAYLOAD_ARGS_ADDR |
Heinrich Schuchardt | 7fe3901 | 2023-07-28 22:37:40 +0200 | [diff] [blame] | 67 | Address in RAM where the parameters must be copied by SPL. |
| 68 | In most cases, it is <start_of_ram> + 0x100. |
| 69 | |
| 70 | CONFIG_SYS_NAND_SPL_KERNEL_OFFS |
| 71 | Offset in NAND where the kernel is stored |
| 72 | |
| 73 | CONFIG_CMD_SPL_NAND_OFS |
| 74 | Offset in NAND where the parameters area was saved. |
| 75 | |
| 76 | CONFIG_CMD_SPL_NOR_OFS |
| 77 | Offset in NOR where the parameters area was saved. |
| 78 | |
| 79 | CONFIG_CMD_SPL_WRITE_SIZE |
| 80 | Size of the parameters area to be copied |
| 81 | |
| 82 | CONFIG_SPL_OS_BOOT |
| 83 | Activate Falcon Mode. |
| 84 | |
| 85 | Function that a board must implement |
| 86 | ------------------------------------ |
| 87 | |
| 88 | void spl_board_prepare_for_linux(void) |
| 89 | optional, called from SPL before starting the kernel |
| 90 | |
| 91 | spl_start_uboot() |
| 92 | required, returns "0" if SPL should start the kernel, "1" if U-Boot |
| 93 | must be started. |
| 94 | |
| 95 | Environment variables |
| 96 | --------------------- |
| 97 | |
| 98 | A board may chose to look at the environment for decisions about falcon |
| 99 | mode. In this case the following variables may be supported: |
| 100 | |
| 101 | boot_os |
| 102 | Set to yes/Yes/true/True/1 to enable booting to OS, |
| 103 | any other value to fall back to U-Boot (including unset) |
| 104 | |
| 105 | falcon_args_file |
| 106 | Filename to load as the 'args' portion of falcon mode rather than the |
| 107 | hard-coded value. |
| 108 | |
| 109 | falcon_image_file |
| 110 | Filename to load as the OS image portion of falcon mode rather than the |
| 111 | hard-coded value. |
| 112 | |
| 113 | Using spl command |
| 114 | ----------------- |
| 115 | |
| 116 | spl - SPL configuration |
| 117 | |
| 118 | Usage:: |
| 119 | |
| 120 | spl export <img=atags|fdt> [kernel_addr] [initrd_addr] [fdt_addr ] |
| 121 | |
| 122 | img |
| 123 | "atags" or "fdt" |
| 124 | |
| 125 | kernel_addr |
| 126 | kernel is loaded as part of the boot process, but it is not started. |
| 127 | This is the address where a kernel image is stored. |
| 128 | |
| 129 | initrd_addr |
| 130 | Address of initial ramdisk |
| 131 | can be set to "-" if fdt_addr without initrd_addr is used |
| 132 | |
| 133 | fdt_addr |
| 134 | in case of fdt, the address of the device tree. |
| 135 | |
| 136 | The *spl export* command does not write to a storage media. The user is |
| 137 | responsible to transfer the gathered information (assembled ATAGS list |
| 138 | or prepared FDT) from temporary storage in RAM into persistent storage |
| 139 | after each run of *spl export*. Unfortunately the position of temporary |
| 140 | storage can not be predicted nor provided at command line, it depends |
| 141 | highly on your system setup and your provided data (ATAGS or FDT). |
| 142 | However at the end of an successful *spl export* run it will print the |
| 143 | RAM address of temporary storage. The RAM address of FDT will also be |
| 144 | set in the environment variable *fdtargsaddr*, the new length of the |
| 145 | prepared FDT will be set in the environment variable *fdtargslen*. |
| 146 | These environment variables can be used in scripts for writing updated |
| 147 | FDT to persistent storage. |
| 148 | |
| 149 | Now the user have to save the generated BLOB from that printed address |
| 150 | to the pre-defined address in persistent storage |
| 151 | (CONFIG_CMD_SPL_NAND_OFS in case of NAND). |
| 152 | The following example shows how to prepare the data for Falcon Mode on |
| 153 | twister board with ATAGS BLOB. |
| 154 | |
| 155 | The *spl export* command is prepared to work with ATAGS and FDT. However, |
| 156 | using FDT is at the moment untested. The ppc port (see a3m071 example |
| 157 | later) prepares the fdt blob with the fdt command instead. |
| 158 | |
| 159 | |
| 160 | Usage on the twister board |
| 161 | -------------------------- |
| 162 | |
| 163 | Using mtd names with the following (default) configuration |
| 164 | for mtdparts:: |
| 165 | |
| 166 | device nand0 <omap2-nand.0>, # parts = 9 |
| 167 | #: name size offset mask_flags |
| 168 | 0: MLO 0x00080000 0x00000000 0 |
| 169 | 1: u-boot 0x00100000 0x00080000 0 |
| 170 | 2: env1 0x00040000 0x00180000 0 |
| 171 | 3: env2 0x00040000 0x001c0000 0 |
| 172 | 4: kernel 0x00600000 0x00200000 0 |
| 173 | 5: bootparms 0x00040000 0x00800000 0 |
| 174 | 6: splashimg 0x00200000 0x00840000 0 |
| 175 | 7: mini 0x02800000 0x00a40000 0 |
| 176 | 8: rootfs 0x1cdc0000 0x03240000 0 |
| 177 | |
| 178 | :: |
| 179 | |
| 180 | twister => nand read 82000000 kernel |
| 181 | |
| 182 | NAND read: device 0 offset 0x200000, size 0x600000 |
| 183 | 6291456 bytes read: OK |
| 184 | |
| 185 | Now the kernel is in RAM at address 0x82000000:: |
| 186 | |
| 187 | twister => spl export atags 0x82000000 |
| 188 | ## Booting kernel from Legacy Image at 82000000 ... |
| 189 | Image Name: Linux-3.5.0-rc4-14089-gda0b7f4 |
| 190 | Image Type: ARM Linux Kernel Image (uncompressed) |
| 191 | Data Size: 3654808 Bytes = 3.5 MiB |
| 192 | Load Address: 80008000 |
| 193 | Entry Point: 80008000 |
| 194 | Verifying Checksum ... OK |
| 195 | Loading Kernel Image ... OK |
| 196 | OK |
| 197 | cmdline subcommand not supported |
| 198 | bdt subcommand not supported |
| 199 | Argument image is now in RAM at: 0x80000100 |
| 200 | |
| 201 | The result can be checked at address 0x80000100:: |
| 202 | |
| 203 | twister => md 0x80000100 |
| 204 | 80000100: 00000005 54410001 00000000 00000000 ......AT........ |
| 205 | 80000110: 00000000 00000067 54410009 746f6f72 ....g.....ATroot |
| 206 | 80000120: 65642f3d 666e2f76 77722073 73666e20 =/dev/nfs rw nfs |
| 207 | |
| 208 | The parameters generated with this step can be saved into NAND at the offset |
| 209 | 0x800000 (value for twister for CONFIG_CMD_SPL_NAND_OFS):: |
| 210 | |
| 211 | nand erase.part bootparms |
| 212 | nand write 0x80000100 bootparms 0x4000 |
| 213 | |
| 214 | Now the parameters are stored into the NAND flash at the address |
| 215 | CONFIG_CMD_SPL_NAND_OFS (=0x800000). |
| 216 | |
| 217 | Next time, the board can be started into Falcon Mode moving the |
| 218 | setting the GPIO (on twister GPIO 55 is used) to kernel mode. |
| 219 | |
| 220 | The kernel is loaded directly by the SPL without passing through U-Boot. |
| 221 | |
| 222 | Example with FDT: a3m071 board |
| 223 | ------------------------------- |
| 224 | |
| 225 | To boot the Linux kernel from the SPL, the DT blob (fdt) needs to get |
| 226 | prepared/patched first. U-Boot usually inserts some dynamic values into |
| 227 | the DT binary (blob), e.g. autodetected memory size, MAC addresses, |
| 228 | clocks speeds etc. To generate this patched DT blob, you can use |
| 229 | the following command: |
| 230 | |
| 231 | 1. Load fdt blob to SDRAM:: |
| 232 | |
| 233 | => tftp 1800000 a3m071/a3m071.dtb |
| 234 | |
| 235 | 2. Set bootargs as desired for Linux booting (e.g. flash_mtd):: |
| 236 | |
| 237 | => run mtdargs addip2 addtty |
| 238 | |
| 239 | 3. Use "fdt" commands to patch the DT blob:: |
| 240 | |
| 241 | => fdt addr 1800000 |
| 242 | => fdt boardsetup |
| 243 | => fdt chosen |
| 244 | |
| 245 | 4. Display patched DT blob (optional):: |
| 246 | |
| 247 | => fdt print |
| 248 | |
| 249 | 5. Save fdt to NOR flash:: |
| 250 | |
| 251 | => erase fc060000 fc07ffff |
| 252 | => cp.b 1800000 fc060000 10000 |
| 253 | ... |
| 254 | |
| 255 | |
| 256 | Falcon Mode was presented at the RMLL 2012. Slides are available at: |
| 257 | |
| 258 | http://schedule2012.rmll.info/IMG/pdf/LSM2012_UbootFalconMode_Babic.pdf |