Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 1 | .. SPDX-License-Identifier: GPL-2.0+ |
| 2 | .. Copyright (c) 2018 Heinrich Schuchardt |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 3 | |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 4 | UEFI on U-Boot |
| 5 | ============== |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 6 | |
| 7 | The Unified Extensible Firmware Interface Specification (UEFI) [1] has become |
| 8 | the default for booting on AArch64 and x86 systems. It provides a stable API for |
| 9 | the interaction of drivers and applications with the firmware. The API comprises |
| 10 | access to block storage, network, and console to name a few. The Linux kernel |
| 11 | and boot loaders like GRUB or the FreeBSD loader can be executed. |
| 12 | |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 13 | Development target |
| 14 | ------------------ |
Heinrich Schuchardt | a28d073 | 2019-03-28 08:09:16 +0100 | [diff] [blame] | 15 | |
Heinrich Schuchardt | 9ec8f5e | 2019-04-10 08:04:38 +0200 | [diff] [blame] | 16 | The implementation of UEFI in U-Boot strives to reach the requirements described |
| 17 | in the "Embedded Base Boot Requirements (EBBR) Specification - Release v1.0" |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 18 | [2]. The "Server Base Boot Requirements System Software on ARM Platforms" [3] |
Heinrich Schuchardt | 9ec8f5e | 2019-04-10 08:04:38 +0200 | [diff] [blame] | 19 | describes a superset of the EBBR specification and may be used as further |
| 20 | reference. |
Heinrich Schuchardt | a28d073 | 2019-03-28 08:09:16 +0100 | [diff] [blame] | 21 | |
| 22 | A full blown UEFI implementation would contradict the U-Boot design principle |
| 23 | "keep it small". |
| 24 | |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 25 | Building U-Boot for UEFI |
| 26 | ------------------------ |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 27 | |
Heinrich Schuchardt | 1028840 | 2018-12-30 12:54:36 +0100 | [diff] [blame] | 28 | The UEFI standard supports only little-endian systems. The UEFI support can be |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 29 | activated for ARM and x86 by specifying:: |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 30 | |
| 31 | CONFIG_CMD_BOOTEFI=y |
| 32 | CONFIG_EFI_LOADER=y |
| 33 | |
| 34 | in the .config file. |
| 35 | |
| 36 | Support for attaching virtual block devices, e.g. iSCSI drives connected by the |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 37 | loaded UEFI application [4], requires:: |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 38 | |
| 39 | CONFIG_BLK=y |
| 40 | CONFIG_PARTITIONS=y |
| 41 | |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 42 | Executing a UEFI binary |
| 43 | ~~~~~~~~~~~~~~~~~~~~~~~ |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 44 | |
| 45 | The bootefi command is used to start UEFI applications or to install UEFI |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 46 | drivers. It takes two parameters:: |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 47 | |
| 48 | bootefi <image address> [fdt address] |
| 49 | |
| 50 | * image address - the memory address of the UEFI binary |
| 51 | * fdt address - the memory address of the flattened device tree |
| 52 | |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 53 | Below you find the output of an example session starting GRUB:: |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 54 | |
| 55 | => load mmc 0:2 ${fdt_addr_r} boot/dtb |
| 56 | 29830 bytes read in 14 ms (2 MiB/s) |
| 57 | => load mmc 0:1 ${kernel_addr_r} efi/debian/grubaa64.efi |
| 58 | reading efi/debian/grubaa64.efi |
| 59 | 120832 bytes read in 7 ms (16.5 MiB/s) |
| 60 | => bootefi ${kernel_addr_r} ${fdt_addr_r} |
| 61 | |
Heinrich Schuchardt | 6b82159 | 2021-01-12 12:46:24 +0100 | [diff] [blame] | 62 | When booting from a memory location it is unknown from which file it was loaded. |
| 63 | Therefore the bootefi command uses the device path of the block device partition |
| 64 | or the network adapter and the file name of the most recently loaded PE-COFF |
| 65 | file when setting up the loaded image protocol. |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 66 | |
Cristian Ciocaltea | 62bb890 | 2019-12-24 18:05:41 +0200 | [diff] [blame] | 67 | Launching a UEFI binary from a FIT image |
| 68 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 69 | |
| 70 | A signed FIT image can be used to securely boot a UEFI image via the |
| 71 | bootm command. This feature is available if U-Boot is configured with:: |
| 72 | |
| 73 | CONFIG_BOOTM_EFI=y |
| 74 | |
| 75 | A sample configuration is provided as file doc/uImage.FIT/uefi.its. |
| 76 | |
| 77 | Below you find the output of an example session starting GRUB:: |
| 78 | |
| 79 | => load mmc 0:1 ${kernel_addr_r} image.fit |
| 80 | 4620426 bytes read in 83 ms (53.1 MiB/s) |
| 81 | => bootm ${kernel_addr_r}#config-grub-nofdt |
| 82 | ## Loading kernel from FIT Image at 40400000 ... |
| 83 | Using 'config-grub-nofdt' configuration |
| 84 | Verifying Hash Integrity ... sha256,rsa2048:dev+ OK |
| 85 | Trying 'efi-grub' kernel subimage |
| 86 | Description: GRUB EFI Firmware |
| 87 | Created: 2019-11-20 8:18:16 UTC |
| 88 | Type: Kernel Image (no loading done) |
| 89 | Compression: uncompressed |
| 90 | Data Start: 0x404000d0 |
| 91 | Data Size: 450560 Bytes = 440 KiB |
| 92 | Hash algo: sha256 |
| 93 | Hash value: 4dbee00021112df618f58b3f7cf5e1595533d543094064b9ce991e8b054a9eec |
| 94 | Verifying Hash Integrity ... sha256+ OK |
| 95 | XIP Kernel Image (no loading done) |
| 96 | ## Transferring control to EFI (at address 404000d0) ... |
| 97 | Welcome to GRUB! |
| 98 | |
| 99 | See doc/uImage.FIT/howto.txt for an introduction to FIT images. |
| 100 | |
AKASHI Takahiro | e674d8d | 2020-04-14 11:51:54 +0900 | [diff] [blame] | 101 | Configuring UEFI secure boot |
| 102 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 103 | |
Heinrich Schuchardt | 664ad18 | 2020-04-16 20:31:56 +0200 | [diff] [blame] | 104 | The UEFI specification[1] defines a secure way of executing UEFI images |
AKASHI Takahiro | e674d8d | 2020-04-14 11:51:54 +0900 | [diff] [blame] | 105 | by verifying a signature (or message digest) of image with certificates. |
| 106 | This feature on U-Boot is enabled with:: |
| 107 | |
| 108 | CONFIG_UEFI_SECURE_BOOT=y |
| 109 | |
| 110 | To make the boot sequence safe, you need to establish a chain of trust; |
Heinrich Schuchardt | 664ad18 | 2020-04-16 20:31:56 +0200 | [diff] [blame] | 111 | In UEFI secure boot the chain trust is defined by the following UEFI variables |
AKASHI Takahiro | e674d8d | 2020-04-14 11:51:54 +0900 | [diff] [blame] | 112 | |
Heinrich Schuchardt | 664ad18 | 2020-04-16 20:31:56 +0200 | [diff] [blame] | 113 | * PK - Platform Key |
| 114 | * KEK - Key Exchange Keys |
| 115 | * db - white list database |
| 116 | * dbx - black list database |
AKASHI Takahiro | e674d8d | 2020-04-14 11:51:54 +0900 | [diff] [blame] | 117 | |
Heinrich Schuchardt | 664ad18 | 2020-04-16 20:31:56 +0200 | [diff] [blame] | 118 | An in depth description of UEFI secure boot is beyond the scope of this |
| 119 | document. Please, refer to the UEFI specification and available online |
| 120 | documentation. Here is a simple example that you can follow for your initial |
| 121 | attempt (Please note that the actual steps will depend on your system and |
| 122 | environment.): |
AKASHI Takahiro | e674d8d | 2020-04-14 11:51:54 +0900 | [diff] [blame] | 123 | |
Heinrich Schuchardt | 664ad18 | 2020-04-16 20:31:56 +0200 | [diff] [blame] | 124 | Install the required tools on your host |
AKASHI Takahiro | e674d8d | 2020-04-14 11:51:54 +0900 | [diff] [blame] | 125 | |
Heinrich Schuchardt | 664ad18 | 2020-04-16 20:31:56 +0200 | [diff] [blame] | 126 | * openssl |
| 127 | * efitools |
| 128 | * sbsigntool |
AKASHI Takahiro | e674d8d | 2020-04-14 11:51:54 +0900 | [diff] [blame] | 129 | |
Heinrich Schuchardt | 664ad18 | 2020-04-16 20:31:56 +0200 | [diff] [blame] | 130 | Create signing keys and the key database on your host: |
AKASHI Takahiro | e674d8d | 2020-04-14 11:51:54 +0900 | [diff] [blame] | 131 | |
Heinrich Schuchardt | 664ad18 | 2020-04-16 20:31:56 +0200 | [diff] [blame] | 132 | The platform key |
AKASHI Takahiro | e674d8d | 2020-04-14 11:51:54 +0900 | [diff] [blame] | 133 | |
Heinrich Schuchardt | 664ad18 | 2020-04-16 20:31:56 +0200 | [diff] [blame] | 134 | .. code-block:: bash |
AKASHI Takahiro | e674d8d | 2020-04-14 11:51:54 +0900 | [diff] [blame] | 135 | |
Heinrich Schuchardt | 664ad18 | 2020-04-16 20:31:56 +0200 | [diff] [blame] | 136 | openssl req -x509 -sha256 -newkey rsa:2048 -subj /CN=TEST_PK/ \ |
| 137 | -keyout PK.key -out PK.crt -nodes -days 365 |
| 138 | cert-to-efi-sig-list -g 11111111-2222-3333-4444-123456789abc \ |
| 139 | PK.crt PK.esl; |
| 140 | sign-efi-sig-list -c PK.crt -k PK.key PK PK.esl PK.auth |
AKASHI Takahiro | e674d8d | 2020-04-14 11:51:54 +0900 | [diff] [blame] | 141 | |
Heinrich Schuchardt | 664ad18 | 2020-04-16 20:31:56 +0200 | [diff] [blame] | 142 | The key exchange keys |
AKASHI Takahiro | e674d8d | 2020-04-14 11:51:54 +0900 | [diff] [blame] | 143 | |
Heinrich Schuchardt | 664ad18 | 2020-04-16 20:31:56 +0200 | [diff] [blame] | 144 | .. code-block:: bash |
AKASHI Takahiro | e674d8d | 2020-04-14 11:51:54 +0900 | [diff] [blame] | 145 | |
Heinrich Schuchardt | 664ad18 | 2020-04-16 20:31:56 +0200 | [diff] [blame] | 146 | openssl req -x509 -sha256 -newkey rsa:2048 -subj /CN=TEST_KEK/ \ |
| 147 | -keyout KEK.key -out KEK.crt -nodes -days 365 |
| 148 | cert-to-efi-sig-list -g 11111111-2222-3333-4444-123456789abc \ |
| 149 | KEK.crt KEK.esl |
| 150 | sign-efi-sig-list -c PK.crt -k PK.key KEK KEK.esl KEK.auth |
AKASHI Takahiro | e674d8d | 2020-04-14 11:51:54 +0900 | [diff] [blame] | 151 | |
Heinrich Schuchardt | 664ad18 | 2020-04-16 20:31:56 +0200 | [diff] [blame] | 152 | The whitelist database |
AKASHI Takahiro | e674d8d | 2020-04-14 11:51:54 +0900 | [diff] [blame] | 153 | |
Heinrich Schuchardt | 664ad18 | 2020-04-16 20:31:56 +0200 | [diff] [blame] | 154 | .. code-block:: bash |
AKASHI Takahiro | e674d8d | 2020-04-14 11:51:54 +0900 | [diff] [blame] | 155 | |
Heinrich Schuchardt | 200584c | 2020-12-12 09:15:12 +0100 | [diff] [blame] | 156 | openssl req -x509 -sha256 -newkey rsa:2048 -subj /CN=TEST_db/ \ |
Heinrich Schuchardt | 664ad18 | 2020-04-16 20:31:56 +0200 | [diff] [blame] | 157 | -keyout db.key -out db.crt -nodes -days 365 |
Heinrich Schuchardt | 200584c | 2020-12-12 09:15:12 +0100 | [diff] [blame] | 158 | cert-to-efi-sig-list -g 11111111-2222-3333-4444-123456789abc \ |
Heinrich Schuchardt | 664ad18 | 2020-04-16 20:31:56 +0200 | [diff] [blame] | 159 | db.crt db.esl |
Heinrich Schuchardt | 200584c | 2020-12-12 09:15:12 +0100 | [diff] [blame] | 160 | sign-efi-sig-list -c KEK.crt -k KEK.key db db.esl db.auth |
AKASHI Takahiro | e674d8d | 2020-04-14 11:51:54 +0900 | [diff] [blame] | 161 | |
Heinrich Schuchardt | 664ad18 | 2020-04-16 20:31:56 +0200 | [diff] [blame] | 162 | Copy the \*.auth files to media, say mmc, that is accessible from U-Boot. |
AKASHI Takahiro | e674d8d | 2020-04-14 11:51:54 +0900 | [diff] [blame] | 163 | |
Heinrich Schuchardt | 664ad18 | 2020-04-16 20:31:56 +0200 | [diff] [blame] | 164 | Sign an image with one of the keys in "db" on your host |
AKASHI Takahiro | e674d8d | 2020-04-14 11:51:54 +0900 | [diff] [blame] | 165 | |
Heinrich Schuchardt | 664ad18 | 2020-04-16 20:31:56 +0200 | [diff] [blame] | 166 | .. code-block:: bash |
| 167 | |
| 168 | sbsign --key db.key --cert db.crt helloworld.efi |
| 169 | |
| 170 | Now in U-Boot install the keys on your board:: |
| 171 | |
| 172 | fatload mmc 0:1 <tmpaddr> PK.auth |
Heinrich Schuchardt | fa11c86 | 2020-08-24 08:27:49 +0200 | [diff] [blame] | 173 | setenv -e -nv -bs -rt -at -i <tmpaddr>:$filesize PK |
Heinrich Schuchardt | 664ad18 | 2020-04-16 20:31:56 +0200 | [diff] [blame] | 174 | fatload mmc 0:1 <tmpaddr> KEK.auth |
Heinrich Schuchardt | fa11c86 | 2020-08-24 08:27:49 +0200 | [diff] [blame] | 175 | setenv -e -nv -bs -rt -at -i <tmpaddr>:$filesize KEK |
Heinrich Schuchardt | 664ad18 | 2020-04-16 20:31:56 +0200 | [diff] [blame] | 176 | fatload mmc 0:1 <tmpaddr> db.auth |
Heinrich Schuchardt | fa11c86 | 2020-08-24 08:27:49 +0200 | [diff] [blame] | 177 | setenv -e -nv -bs -rt -at -i <tmpaddr>:$filesize db |
Heinrich Schuchardt | 664ad18 | 2020-04-16 20:31:56 +0200 | [diff] [blame] | 178 | |
| 179 | Set up boot parameters on your board:: |
| 180 | |
Ilias Apalodimas | 773c090 | 2021-03-17 21:55:01 +0200 | [diff] [blame] | 181 | efidebug boot add -b 1 HELLO mmc 0:1 /helloworld.efi.signed "" |
Heinrich Schuchardt | 664ad18 | 2020-04-16 20:31:56 +0200 | [diff] [blame] | 182 | |
Ilias Apalodimas | c92aa4b | 2021-03-17 21:55:02 +0200 | [diff] [blame] | 183 | Since kernel 5.7 there's an alternative way of loading an initrd using |
| 184 | LoadFile2 protocol if CONFIG_EFI_LOAD_FILE2_INITRD is enabled. |
| 185 | The initrd path can be specified with:: |
| 186 | |
| 187 | efidebug boot add -b ABE0 'kernel' mmc 0:1 Image -i mmc 0:1 initrd |
| 188 | |
Heinrich Schuchardt | 664ad18 | 2020-04-16 20:31:56 +0200 | [diff] [blame] | 189 | Now your board can run the signed image via the boot manager (see below). |
AKASHI Takahiro | e674d8d | 2020-04-14 11:51:54 +0900 | [diff] [blame] | 190 | You can also try this sequence by running Pytest, test_efi_secboot, |
Heinrich Schuchardt | 664ad18 | 2020-04-16 20:31:56 +0200 | [diff] [blame] | 191 | on the sandbox |
| 192 | |
| 193 | .. code-block:: bash |
AKASHI Takahiro | e674d8d | 2020-04-14 11:51:54 +0900 | [diff] [blame] | 194 | |
Heinrich Schuchardt | 664ad18 | 2020-04-16 20:31:56 +0200 | [diff] [blame] | 195 | cd <U-Boot source directory> |
| 196 | pytest.py test/py/tests/test_efi_secboot/test_signed.py --bd sandbox |
AKASHI Takahiro | e674d8d | 2020-04-14 11:51:54 +0900 | [diff] [blame] | 197 | |
Heinrich Schuchardt | 87f43de | 2020-07-14 12:52:51 +0200 | [diff] [blame] | 198 | UEFI binaries may be signed by Microsoft using the following certificates: |
| 199 | |
| 200 | * KEK: Microsoft Corporation KEK CA 2011 |
| 201 | http://go.microsoft.com/fwlink/?LinkId=321185. |
| 202 | * db: Microsoft Windows Production PCA 2011 |
| 203 | http://go.microsoft.com/fwlink/p/?linkid=321192. |
| 204 | * db: Microsoft Corporation UEFI CA 2011 |
| 205 | http://go.microsoft.com/fwlink/p/?linkid=321194. |
| 206 | |
Ilias Apalodimas | ef8bd41 | 2020-05-17 22:25:47 +0300 | [diff] [blame] | 207 | Using OP-TEE for EFI variables |
| 208 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 209 | |
| 210 | Instead of implementing UEFI variable services inside U-Boot they can |
| 211 | also be provided in the secure world by a module for OP-TEE[1]. The |
| 212 | interface between U-Boot and OP-TEE for variable services is enabled by |
| 213 | CONFIG_EFI_MM_COMM_TEE=y. |
| 214 | |
| 215 | Tianocore EDK II's standalone management mode driver for variables can |
| 216 | be linked to OP-TEE for this purpose. This module uses the Replay |
| 217 | Protected Memory Block (RPMB) of an eMMC device for persisting |
| 218 | non-volatile variables. When calling the variable services via the |
| 219 | OP-TEE API U-Boot's OP-TEE supplicant relays calls to the RPMB driver |
| 220 | which has to be enabled via CONFIG_SUPPORT_EMMC_RPMB=y. |
| 221 | |
Ilias Apalodimas | a300e44 | 2021-04-01 13:35:38 +0300 | [diff] [blame] | 222 | EDK2 Build instructions |
| 223 | *********************** |
| 224 | |
| 225 | .. code-block:: bash |
| 226 | |
| 227 | $ git clone https://github.com/tianocore/edk2.git |
| 228 | $ git clone https://github.com/tianocore/edk2-platforms.git |
| 229 | $ cd edk2 |
| 230 | $ git submodule init && git submodule update --init --recursive |
| 231 | $ cd .. |
| 232 | $ export WORKSPACE=$(pwd) |
| 233 | $ export PACKAGES_PATH=$WORKSPACE/edk2:$WORKSPACE/edk2-platforms |
| 234 | $ export ACTIVE_PLATFORM="Platform/StandaloneMm/PlatformStandaloneMmPkg/PlatformStandaloneMmRpmb.dsc" |
| 235 | $ export GCC5_AARCH64_PREFIX=aarch64-linux-gnu- |
| 236 | $ source edk2/edksetup.sh |
| 237 | $ make -C edk2/BaseTools |
| 238 | $ build -p $ACTIVE_PLATFORM -b RELEASE -a AARCH64 -t GCC5 -n `nproc` |
| 239 | |
| 240 | OP-TEE Build instructions |
| 241 | ************************* |
| 242 | |
| 243 | .. code-block:: bash |
| 244 | |
| 245 | $ git clone https://github.com/OP-TEE/optee_os.git |
| 246 | $ cd optee_os |
| 247 | $ ln -s ../Build/MmStandaloneRpmb/RELEASE_GCC5/FV/BL32_AP_MM.fd |
| 248 | $ export ARCH=arm |
| 249 | $ CROSS_COMPILE32=arm-linux-gnueabihf- make -j32 CFG_ARM64_core=y \ |
| 250 | PLATFORM=<myboard> CFG_STMM_PATH=BL32_AP_MM.fd CFG_RPMB_FS=y \ |
| 251 | CFG_RPMB_FS_DEV_ID=0 CFG_CORE_HEAP_SIZE=524288 CFG_RPMB_WRITE_KEY=1 \ |
| 252 | CFG_CORE_HEAP_SIZE=524288 CFG_CORE_DYN_SHM=y CFG_RPMB_TESTKEY=y \ |
| 253 | CFG_REE_FS=n CFG_CORE_ARM64_PA_BITS=48 CFG_TEE_CORE_LOG_LEVEL=1 \ |
| 254 | CFG_TEE_TA_LOG_LEVEL=1 CFG_SCTLR_ALIGNMENT_CHECK=n |
| 255 | |
| 256 | U-Boot Build instructions |
| 257 | ************************* |
| 258 | |
| 259 | Although the StandAloneMM binary comes from EDK2, using and storing the |
| 260 | variables is currently available in U-Boot only. |
| 261 | |
| 262 | .. code-block:: bash |
| 263 | |
| 264 | $ git clone https://github.com/u-boot/u-boot.git |
| 265 | $ cd u-boot |
| 266 | $ export CROSS_COMPILE=aarch64-linux-gnu- |
| 267 | $ export ARCH=<arch> |
| 268 | $ make <myboard>_defconfig |
| 269 | $ make menuconfig |
| 270 | |
| 271 | Enable ``CONFIG_OPTEE``, ``CONFIG_CMD_OPTEE_RPMB`` and ``CONFIG_EFI_MM_COMM_TEE`` |
| 272 | |
| 273 | .. warning:: |
| 274 | |
| 275 | - Your OP-TEE platform port must support Dynamic shared memory, since that's |
| 276 | the only kind of memory U-Boot supports for now. |
| 277 | |
| 278 | [1] https://optee.readthedocs.io/en/latest/building/efi_vars/stmm.html |
Ilias Apalodimas | ef8bd41 | 2020-05-17 22:25:47 +0300 | [diff] [blame] | 279 | |
Ilias Apalodimas | 5f4e130 | 2021-07-17 17:26:46 +0300 | [diff] [blame] | 280 | Enabling UEFI Capsule Update feature |
| 281 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 282 | |
| 283 | Support has been added for the UEFI capsule update feature which |
| 284 | enables updating the U-Boot image using the UEFI firmware management |
| 285 | protocol (FMP). The capsules are not passed to the firmware through |
| 286 | the UpdateCapsule runtime service. Instead, capsule-on-disk |
| 287 | functionality is used for fetching the capsule from the EFI System |
| 288 | Partition (ESP) by placing the capsule file under the |
| 289 | \EFI\UpdateCapsule directory. |
| 290 | |
| 291 | The directory \EFI\UpdateCapsule is checked for capsules only within the |
| 292 | EFI system partition on the device specified in the active boot option |
| 293 | determined by reference to BootNext variable or BootOrder variable processing. |
| 294 | The active Boot Variable is the variable with highest priority BootNext or |
| 295 | within BootOrder that refers to a device found to be present. Boot variables |
| 296 | in BootOrder but referring to devices not present are ignored when determining |
| 297 | active boot variable. |
| 298 | Before starting a capsule update make sure your capsules are installed in the |
| 299 | correct ESP partition or set BootNext. |
| 300 | |
| 301 | Performing the update |
| 302 | ********************* |
| 303 | |
| 304 | Since U-boot doesn't currently support SetVariable at runtime there's a Kconfig |
| 305 | option (CONFIG_EFI_IGNORE_OSINDICATIONS) to disable the OsIndications variable |
| 306 | check. If that option is enabled just copy your capsule to \EFI\UpdateCapsule. |
| 307 | |
| 308 | If that option is disabled, you'll need to set the OsIndications variable with:: |
| 309 | |
| 310 | => setenv -e -nv -bs -rt -v OsIndications =0x04 |
| 311 | |
| 312 | Finally, the capsule update can be initiated either by rebooting the board, |
| 313 | which is the preferred method, or by issuing the following command:: |
| 314 | |
| 315 | => efidebug capsule disk-update |
| 316 | |
| 317 | **The efidebug command is should only be used during debugging/development.** |
| 318 | |
| 319 | Enabling Capsule Authentication |
| 320 | ******************************* |
| 321 | |
| 322 | The UEFI specification defines a way of authenticating the capsule to |
| 323 | be updated by verifying the capsule signature. The capsule signature |
| 324 | is computed and prepended to the capsule payload at the time of |
| 325 | capsule generation. This signature is then verified by using the |
| 326 | public key stored as part of the X509 certificate. This certificate is |
| 327 | in the form of an efi signature list (esl) file, which is embedded as |
| 328 | part of U-Boot. |
| 329 | |
| 330 | The capsule authentication feature can be enabled through the |
| 331 | following config, in addition to the configs listed above for capsule |
| 332 | update:: |
| 333 | |
| 334 | CONFIG_EFI_CAPSULE_AUTHENTICATE=y |
| 335 | CONFIG_EFI_CAPSULE_KEY_PATH=<path to .esl cert> |
| 336 | |
| 337 | The public and private keys used for the signing process are generated |
| 338 | and used by the steps highlighted below:: |
| 339 | |
| 340 | 1. Install utility commands on your host |
| 341 | * OPENSSL |
| 342 | * efitools |
| 343 | |
| 344 | 2. Create signing keys and certificate files on your host |
| 345 | |
| 346 | $ openssl req -x509 -sha256 -newkey rsa:2048 -subj /CN=CRT/ \ |
| 347 | -keyout CRT.key -out CRT.crt -nodes -days 365 |
| 348 | $ cert-to-efi-sig-list CRT.crt CRT.esl |
| 349 | |
| 350 | $ openssl x509 -in CRT.crt -out CRT.cer -outform DER |
| 351 | $ openssl x509 -inform DER -in CRT.cer -outform PEM -out CRT.pub.pem |
| 352 | |
| 353 | $ openssl pkcs12 -export -out CRT.pfx -inkey CRT.key -in CRT.crt |
| 354 | $ openssl pkcs12 -in CRT.pfx -nodes -out CRT.pem |
| 355 | |
| 356 | The capsule file can be generated by using the GenerateCapsule.py |
| 357 | script in EDKII:: |
| 358 | |
| 359 | $ ./BaseTools/BinWrappers/PosixLike/GenerateCapsule -e -o \ |
| 360 | <capsule_file_name> --monotonic-count <val> --fw-version \ |
| 361 | <val> --lsv <val> --guid \ |
| 362 | e2bb9c06-70e9-4b14-97a3-5a7913176e3f --verbose \ |
| 363 | --update-image-index <val> --signer-private-cert \ |
| 364 | /path/to/CRT.pem --trusted-public-cert \ |
| 365 | /path/to/CRT.pub.pem --other-public-cert /path/to/CRT.pub.pem \ |
| 366 | <u-boot.bin> |
| 367 | |
| 368 | Place the capsule generated in the above step on the EFI System |
| 369 | Partition under the EFI/UpdateCapsule directory |
| 370 | |
| 371 | Testing on QEMU |
| 372 | *************** |
| 373 | |
| 374 | Currently, support has been added on the QEMU ARM64 virt platform for |
| 375 | updating the U-Boot binary as a raw image when the platform is booted |
| 376 | in non-secure mode, i.e. with CONFIG_TFABOOT disabled. For this |
| 377 | configuration, the QEMU platform needs to be booted with |
| 378 | 'secure=off'. The U-Boot binary placed on the first bank of the NOR |
| 379 | flash at offset 0x0. The U-Boot environment is placed on the second |
| 380 | NOR flash bank at offset 0x4000000. |
| 381 | |
| 382 | The capsule update feature is enabled with the following configuration |
| 383 | settings:: |
| 384 | |
| 385 | CONFIG_MTD=y |
| 386 | CONFIG_FLASH_CFI_MTD=y |
| 387 | CONFIG_CMD_MTDPARTS=y |
| 388 | CONFIG_CMD_DFU=y |
| 389 | CONFIG_DFU_MTD=y |
| 390 | CONFIG_PCI_INIT_R=y |
| 391 | CONFIG_EFI_CAPSULE_ON_DISK=y |
| 392 | CONFIG_EFI_CAPSULE_FIRMWARE_MANAGEMENT=y |
| 393 | CONFIG_EFI_CAPSULE_FIRMWARE=y |
| 394 | CONFIG_EFI_CAPSULE_FIRMWARE_RAW=y |
| 395 | CONFIG_EFI_CAPSULE_FMP_HEADER=y |
| 396 | |
| 397 | In addition, the following config needs to be disabled(QEMU ARM specific):: |
| 398 | |
| 399 | CONFIG_TFABOOT |
| 400 | |
| 401 | The capsule file can be generated by using the tools/mkeficapsule:: |
| 402 | |
| 403 | $ mkeficapsule --raw <u-boot.bin> --index 1 <capsule_file_name> |
| 404 | |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 405 | Executing the boot manager |
| 406 | ~~~~~~~~~~~~~~~~~~~~~~~~~~ |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 407 | |
Heinrich Schuchardt | 8d343f8 | 2020-08-16 12:27:19 +0200 | [diff] [blame] | 408 | The UEFI specification foresees to define boot entries and boot sequence via |
| 409 | UEFI variables. Booting according to these variables is possible via:: |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 410 | |
| 411 | bootefi bootmgr [fdt address] |
| 412 | |
Heinrich Schuchardt | 8d343f8 | 2020-08-16 12:27:19 +0200 | [diff] [blame] | 413 | As of U-Boot v2020.10 UEFI variables cannot be set at runtime. The U-Boot |
| 414 | command 'efidebug' can be used to set the variables. |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 415 | |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 416 | Executing the built in hello world application |
| 417 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 418 | |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 419 | A hello world UEFI application can be built with:: |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 420 | |
| 421 | CONFIG_CMD_BOOTEFI_HELLO_COMPILE=y |
| 422 | |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 423 | It can be embedded into the U-Boot binary with:: |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 424 | |
| 425 | CONFIG_CMD_BOOTEFI_HELLO=y |
| 426 | |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 427 | The bootefi command is used to start the embedded hello world application:: |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 428 | |
| 429 | bootefi hello [fdt address] |
| 430 | |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 431 | Below you find the output of an example session:: |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 432 | |
| 433 | => bootefi hello ${fdtcontroladdr} |
| 434 | ## Starting EFI application at 01000000 ... |
| 435 | WARNING: using memory device/image path, this may confuse some payloads! |
| 436 | Hello, world! |
| 437 | Running on UEFI 2.7 |
| 438 | Have SMBIOS table |
| 439 | Have device tree |
| 440 | Load options: root=/dev/sdb3 init=/sbin/init rootwait ro |
| 441 | ## Application terminated, r = 0 |
| 442 | |
| 443 | The environment variable fdtcontroladdr points to U-Boot's internal device tree |
| 444 | (if available). |
| 445 | |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 446 | Executing the built-in self-test |
| 447 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 448 | |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 449 | An UEFI self-test suite can be embedded in U-Boot by building with:: |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 450 | |
| 451 | CONFIG_CMD_BOOTEFI_SELFTEST=y |
| 452 | |
| 453 | For testing the UEFI implementation the bootefi command can be used to start the |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 454 | self-test:: |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 455 | |
| 456 | bootefi selftest [fdt address] |
| 457 | |
| 458 | The environment variable 'efi_selftest' can be used to select a single test. If |
| 459 | it is not provided all tests are executed except those marked as 'on request'. |
| 460 | If the environment variable is set to 'list' a list of all tests is shown. |
| 461 | |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 462 | Below you can find the output of an example session:: |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 463 | |
| 464 | => setenv efi_selftest simple network protocol |
| 465 | => bootefi selftest |
| 466 | Testing EFI API implementation |
| 467 | Selected test: 'simple network protocol' |
| 468 | Setting up 'simple network protocol' |
| 469 | Setting up 'simple network protocol' succeeded |
| 470 | Executing 'simple network protocol' |
| 471 | DHCP Discover |
| 472 | DHCP reply received from 192.168.76.2 (52:55:c0:a8:4c:02) |
| 473 | as broadcast message. |
| 474 | Executing 'simple network protocol' succeeded |
| 475 | Tearing down 'simple network protocol' |
| 476 | Tearing down 'simple network protocol' succeeded |
| 477 | Boot services terminated |
| 478 | Summary: 0 failures |
| 479 | Preparing for reset. Press any key. |
| 480 | |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 481 | The UEFI life cycle |
| 482 | ------------------- |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 483 | |
| 484 | After the U-Boot platform has been initialized the UEFI API provides two kinds |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 485 | of services: |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 486 | |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 487 | * boot services |
| 488 | * runtime services |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 489 | |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 490 | The API can be extended by loading UEFI drivers which come in two variants: |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 491 | |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 492 | * boot drivers |
| 493 | * runtime drivers |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 494 | |
| 495 | UEFI drivers are installed with U-Boot's bootefi command. With the same command |
| 496 | UEFI applications can be executed. |
| 497 | |
| 498 | Loaded images of UEFI drivers stay in memory after returning to U-Boot while |
| 499 | loaded images of applications are removed from memory. |
| 500 | |
| 501 | An UEFI application (e.g. an operating system) that wants to take full control |
| 502 | of the system calls ExitBootServices. After a UEFI application calls |
| 503 | ExitBootServices |
| 504 | |
| 505 | * boot services are not available anymore |
| 506 | * timer events are stopped |
| 507 | * the memory used by U-Boot except for runtime services is released |
| 508 | * the memory used by boot time drivers is released |
| 509 | |
| 510 | So this is a point of no return. Afterwards the UEFI application can only return |
| 511 | to U-Boot by rebooting. |
| 512 | |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 513 | The UEFI object model |
| 514 | --------------------- |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 515 | |
| 516 | UEFI offers a flexible and expandable object model. The objects in the UEFI API |
| 517 | are devices, drivers, and loaded images. These objects are referenced by |
| 518 | handles. |
| 519 | |
| 520 | The interfaces implemented by the objects are referred to as protocols. These |
| 521 | are identified by GUIDs. They can be installed and uninstalled by calling the |
| 522 | appropriate boot services. |
| 523 | |
| 524 | Handles are created by the InstallProtocolInterface or the |
| 525 | InstallMultipleProtocolinterfaces service if NULL is passed as handle. |
| 526 | |
| 527 | Handles are deleted when the last protocol has been removed with the |
| 528 | UninstallProtocolInterface or the UninstallMultipleProtocolInterfaces service. |
| 529 | |
| 530 | Devices offer the EFI_DEVICE_PATH_PROTOCOL. A device path is the concatenation |
| 531 | of device nodes. By their device paths all devices of a system are arranged in a |
| 532 | tree. |
| 533 | |
| 534 | Drivers offer the EFI_DRIVER_BINDING_PROTOCOL. This protocol is used to connect |
| 535 | a driver to devices (which are referenced as controllers in this context). |
| 536 | |
| 537 | Loaded images offer the EFI_LOADED_IMAGE_PROTOCOL. This protocol provides meta |
| 538 | information about the image and a pointer to the unload callback function. |
| 539 | |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 540 | The UEFI events |
| 541 | --------------- |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 542 | |
| 543 | In the UEFI terminology an event is a data object referencing a notification |
| 544 | function which is queued for calling when the event is signaled. The following |
| 545 | types of events exist: |
| 546 | |
| 547 | * periodic and single shot timer events |
| 548 | * exit boot services events, triggered by calling the ExitBootServices() service |
| 549 | * virtual address change events |
| 550 | * memory map change events |
| 551 | * read to boot events |
| 552 | * reset system events |
| 553 | * system table events |
| 554 | * events that are only triggered programmatically |
| 555 | |
| 556 | Events can be created with the CreateEvent service and deleted with CloseEvent |
| 557 | service. |
| 558 | |
| 559 | Events can be assigned to an event group. If any of the events in a group is |
| 560 | signaled, all other events in the group are also set to the signaled state. |
| 561 | |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 562 | The UEFI driver model |
| 563 | --------------------- |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 564 | |
| 565 | A driver is specific for a single protocol installed on a device. To install a |
| 566 | driver on a device the ConnectController service is called. In this context |
| 567 | controller refers to the device for which the driver is installed. |
| 568 | |
| 569 | The relevant drivers are identified using the EFI_DRIVER_BINDING_PROTOCOL. This |
| 570 | protocol has has three functions: |
| 571 | |
| 572 | * supported - determines if the driver is compatible with the device |
| 573 | * start - installs the driver by opening the relevant protocol with |
| 574 | attribute EFI_OPEN_PROTOCOL_BY_DRIVER |
| 575 | * stop - uninstalls the driver |
| 576 | |
| 577 | The driver may create child controllers (child devices). E.g. a driver for block |
| 578 | IO devices will create the device handles for the partitions. The child |
| 579 | controllers will open the supported protocol with the attribute |
| 580 | EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER. |
| 581 | |
| 582 | A driver can be detached from a device using the DisconnectController service. |
| 583 | |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 584 | U-Boot devices mapped as UEFI devices |
| 585 | ------------------------------------- |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 586 | |
| 587 | Some of the U-Boot devices are mapped as UEFI devices |
| 588 | |
| 589 | * block IO devices |
| 590 | * console |
| 591 | * graphical output |
| 592 | * network adapter |
| 593 | |
| 594 | As of U-Boot 2018.03 the logic for doing this is hard coded. |
| 595 | |
| 596 | The development target is to integrate the setup of these UEFI devices with the |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 597 | U-Boot driver model [5]. So when a U-Boot device is discovered a handle should |
| 598 | be created and the device path protocol and the relevant IO protocol should be |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 599 | installed. The UEFI driver then would be attached by calling ConnectController. |
| 600 | When a U-Boot device is removed DisconnectController should be called. |
| 601 | |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 602 | UEFI devices mapped as U-Boot devices |
| 603 | ------------------------------------- |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 604 | |
| 605 | UEFI drivers binaries and applications may create new (virtual) devices, install |
| 606 | a protocol and call the ConnectController service. Now the matching UEFI driver |
| 607 | is determined by iterating over the implementations of the |
| 608 | EFI_DRIVER_BINDING_PROTOCOL. |
| 609 | |
| 610 | It is the task of the UEFI driver to create a corresponding U-Boot device and to |
| 611 | proxy calls for this U-Boot device to the controller. |
| 612 | |
| 613 | In U-Boot 2018.03 this has only been implemented for block IO devices. |
| 614 | |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 615 | UEFI uclass |
| 616 | ~~~~~~~~~~~ |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 617 | |
| 618 | An UEFI uclass driver (lib/efi_driver/efi_uclass.c) has been created that |
| 619 | takes care of initializing the UEFI drivers and providing the |
| 620 | EFI_DRIVER_BINDING_PROTOCOL implementation for the UEFI drivers. |
| 621 | |
| 622 | A linker created list is used to keep track of the UEFI drivers. To create an |
| 623 | entry in the list the UEFI driver uses the U_BOOT_DRIVER macro specifying |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 624 | UCLASS_EFI as the ID of its uclass, e.g:: |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 625 | |
| 626 | /* Identify as UEFI driver */ |
| 627 | U_BOOT_DRIVER(efi_block) = { |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 628 | .name = "EFI block driver", |
| 629 | .id = UCLASS_EFI, |
| 630 | .ops = &driver_ops, |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 631 | }; |
| 632 | |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 633 | The available operations are defined via the structure struct efi_driver_ops:: |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 634 | |
| 635 | struct efi_driver_ops { |
| 636 | const efi_guid_t *protocol; |
| 637 | const efi_guid_t *child_protocol; |
| 638 | int (*bind)(efi_handle_t handle, void *interface); |
| 639 | }; |
| 640 | |
| 641 | When the supported() function of the EFI_DRIVER_BINDING_PROTOCOL is called the |
| 642 | uclass checks if the protocol GUID matches the protocol GUID of the UEFI driver. |
| 643 | In the start() function the bind() function of the UEFI driver is called after |
| 644 | checking the GUID. |
| 645 | The stop() function of the EFI_DRIVER_BINDING_PROTOCOL disconnects the child |
| 646 | controllers created by the UEFI driver and the UEFI driver. (In U-Boot v2013.03 |
| 647 | this is not yet completely implemented.) |
| 648 | |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 649 | UEFI block IO driver |
| 650 | ~~~~~~~~~~~~~~~~~~~~ |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 651 | |
| 652 | The UEFI block IO driver supports devices exposing the EFI_BLOCK_IO_PROTOCOL. |
| 653 | |
| 654 | When connected it creates a new U-Boot block IO device with interface type |
| 655 | IF_TYPE_EFI, adds child controllers mapping the partitions, and installs the |
| 656 | EFI_SIMPLE_FILE_SYSTEM_PROTOCOL on these. This can be used together with the |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 657 | software iPXE to boot from iSCSI network drives [4]. |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 658 | |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 659 | This driver is only available if U-Boot is configured with:: |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 660 | |
| 661 | CONFIG_BLK=y |
| 662 | CONFIG_PARTITIONS=y |
| 663 | |
Heinrich Schuchardt | c4d4542 | 2020-02-22 07:47:20 +0100 | [diff] [blame] | 664 | Miscellaneous |
| 665 | ------------- |
| 666 | |
| 667 | Load file 2 protocol |
| 668 | ~~~~~~~~~~~~~~~~~~~~ |
| 669 | |
| 670 | The load file 2 protocol can be used by the Linux kernel to load the initial |
| 671 | RAM disk. U-Boot can be configured to provide an implementation with:: |
| 672 | |
| 673 | EFI_LOAD_FILE2_INITRD=y |
Ilias Apalodimas | c92aa4b | 2021-03-17 21:55:02 +0200 | [diff] [blame] | 674 | |
| 675 | When the option is enabled the user can add the initrd path with the efidebug |
| 676 | command. |
| 677 | |
| 678 | Load options Boot#### have a FilePathList[] member. The first element of |
| 679 | the array (FilePathList[0]) is the EFI binary to execute. When an initrd |
| 680 | is specified the Device Path for the initrd is denoted by a VenMedia node |
| 681 | with the EFI_INITRD_MEDIA_GUID. Each entry of the array is terminated by the |
| 682 | 'end of entire device path' subtype (0xff). If a user wants to define multiple |
| 683 | initrds, those must by separated by the 'end of this instance' identifier of |
| 684 | the end node (0x01). |
| 685 | |
| 686 | So our final format of the FilePathList[] is:: |
| 687 | |
| 688 | Loaded image - end node (0xff) - VenMedia - initrd_1 - [end node (0x01) - initrd_n ...] - end node (0xff) |
Heinrich Schuchardt | c4d4542 | 2020-02-22 07:47:20 +0100 | [diff] [blame] | 689 | |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 690 | Links |
| 691 | ----- |
Heinrich Schuchardt | 5fa03de | 2018-03-02 19:58:50 +0100 | [diff] [blame] | 692 | |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 693 | * [1] http://uefi.org/specifications - UEFI specifications |
| 694 | * [2] https://github.com/ARM-software/ebbr/releases/download/v1.0/ebbr-v1.0.pdf - |
Heinrich Schuchardt | 9ec8f5e | 2019-04-10 08:04:38 +0200 | [diff] [blame] | 695 | Embedded Base Boot Requirements (EBBR) Specification - Release v1.0 |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 696 | * [3] https://developer.arm.com/docs/den0044/latest/server-base-boot-requirements-system-software-on-arm-platforms-version-11 - |
Heinrich Schuchardt | a28d073 | 2019-03-28 08:09:16 +0100 | [diff] [blame] | 697 | Server Base Boot Requirements System Software on ARM Platforms - Version 1.1 |
Heinrich Schuchardt | fd0b53f | 2019-07-26 06:46:08 +0200 | [diff] [blame] | 698 | * [4] :doc:`iscsi` |
| 699 | * [5] :doc:`../driver-model/index` |