Paul Beesley | f3653a6 | 2019-05-22 11:22:44 +0100 | [diff] [blame] | 1 | QEMU virt Armv8-A |
| 2 | ================= |
Douglas Raillard | d7c21b7 | 2017-06-28 15:23:03 +0100 | [diff] [blame] | 3 | |
Dan Handley | 610e7e1 | 2018-03-01 18:44:00 +0000 | [diff] [blame] | 4 | Trusted Firmware-A (TF-A) implements the EL3 firmware layer for QEMU virt |
| 5 | Armv8-A. BL1 is used as the BootROM, supplied with the -bios argument. |
Douglas Raillard | d7c21b7 | 2017-06-28 15:23:03 +0100 | [diff] [blame] | 6 | When QEMU starts all CPUs are released simultaneously, BL1 selects a |
| 7 | primary CPU to handle the boot and the secondaries are placed in a polling |
| 8 | loop to be released by normal world via PSCI. |
| 9 | |
| 10 | BL2 edits the Flattened Device Tree, FDT, generated by QEMU at run-time to |
| 11 | add a node describing PSCI and also enable methods for the CPUs. |
| 12 | |
Andrew Walbran | 9c4d069 | 2020-01-15 14:11:31 +0000 | [diff] [blame] | 13 | If ``ARM_LINUX_KERNEL_AS_BL33`` is set to 1 then this FDT will be passed to BL33 |
| 14 | via register x0, as expected by a Linux kernel. This allows a Linux kernel image |
| 15 | to be booted directly as BL33 rather than using a bootloader. |
| 16 | |
Masahiro Yamada | 894a38d | 2019-12-26 13:26:49 +0900 | [diff] [blame] | 17 | An ARM64 defconfig v5.5 Linux kernel is known to boot, FDT doesn't need to be |
Douglas Raillard | d7c21b7 | 2017-06-28 15:23:03 +0100 | [diff] [blame] | 18 | provided as it's generated by QEMU. |
| 19 | |
| 20 | Current limitations: |
| 21 | |
| 22 | - Only cold boot is supported |
| 23 | - No build instructions for QEMU\_EFI.fd and rootfs-arm64.cpio.gz |
Douglas Raillard | d7c21b7 | 2017-06-28 15:23:03 +0100 | [diff] [blame] | 24 | |
| 25 | ``QEMU_EFI.fd`` can be dowloaded from |
Masahiro Yamada | 894a38d | 2019-12-26 13:26:49 +0900 | [diff] [blame] | 26 | http://snapshots.linaro.org/components/kernel/leg-virt-tianocore-edk2-upstream/latest/QEMU-KERNEL-AARCH64/RELEASE_GCC5/QEMU_EFI.fd |
Douglas Raillard | d7c21b7 | 2017-06-28 15:23:03 +0100 | [diff] [blame] | 27 | |
Sumit Garg | 8aeb879 | 2019-11-15 20:16:58 +0530 | [diff] [blame] | 28 | Booting via semi-hosting option |
| 29 | ------------------------------- |
| 30 | |
Douglas Raillard | d7c21b7 | 2017-06-28 15:23:03 +0100 | [diff] [blame] | 31 | Boot binaries, except BL1, are primarily loaded via semi-hosting so all |
| 32 | binaries has to reside in the same directory as QEMU is started from. This |
| 33 | is conveniently achieved with symlinks the local names as: |
| 34 | |
| 35 | - ``bl2.bin`` -> BL2 |
| 36 | - ``bl31.bin`` -> BL31 |
| 37 | - ``bl33.bin`` -> BL33 (``QEMU_EFI.fd``) |
Masahiro Yamada | 894a38d | 2019-12-26 13:26:49 +0900 | [diff] [blame] | 38 | - ``Image`` -> linux/arch/arm64/boot/Image |
Douglas Raillard | d7c21b7 | 2017-06-28 15:23:03 +0100 | [diff] [blame] | 39 | |
| 40 | To build: |
| 41 | |
Paul Beesley | 493e349 | 2019-03-13 15:11:04 +0000 | [diff] [blame] | 42 | .. code:: shell |
Douglas Raillard | d7c21b7 | 2017-06-28 15:23:03 +0100 | [diff] [blame] | 43 | |
Paul Beesley | f3653a6 | 2019-05-22 11:22:44 +0100 | [diff] [blame] | 44 | make CROSS_COMPILE=aarch64-none-elf- PLAT=qemu |
Douglas Raillard | d7c21b7 | 2017-06-28 15:23:03 +0100 | [diff] [blame] | 45 | |
Masahiro Yamada | 894a38d | 2019-12-26 13:26:49 +0900 | [diff] [blame] | 46 | To start (QEMU v4.1.0): |
Douglas Raillard | d7c21b7 | 2017-06-28 15:23:03 +0100 | [diff] [blame] | 47 | |
Paul Beesley | 493e349 | 2019-03-13 15:11:04 +0000 | [diff] [blame] | 48 | .. code:: shell |
Douglas Raillard | d7c21b7 | 2017-06-28 15:23:03 +0100 | [diff] [blame] | 49 | |
| 50 | qemu-system-aarch64 -nographic -machine virt,secure=on -cpu cortex-a57 \ |
| 51 | -kernel Image \ |
Masahiro Yamada | 894a38d | 2019-12-26 13:26:49 +0900 | [diff] [blame] | 52 | -append "console=ttyAMA0,38400 keep_bootcon root=/dev/vda2" \ |
Douglas Raillard | d7c21b7 | 2017-06-28 15:23:03 +0100 | [diff] [blame] | 53 | -initrd rootfs-arm64.cpio.gz -smp 2 -m 1024 -bios bl1.bin \ |
| 54 | -d unimp -semihosting-config enable,target=native |
Sumit Garg | 8aeb879 | 2019-11-15 20:16:58 +0530 | [diff] [blame] | 55 | |
| 56 | Booting via flash based firmwares |
| 57 | --------------------------------- |
| 58 | |
| 59 | Boot firmwares are loaded via secure FLASH0 device so ``bl1.bin`` and |
| 60 | ``fip.bin`` should be concatenated to create a ``flash.bin`` that is flashed |
| 61 | onto secure FLASH0. |
| 62 | |
| 63 | - ``bl32.bin`` -> BL32 (``tee-header_v2.bin``) |
| 64 | - ``bl32_extra1.bin`` -> BL32 Extra1 (``tee-pager_v2.bin``) |
| 65 | - ``bl32_extra2.bin`` -> BL32 Extra2 (``tee-pageable_v2.bin``) |
| 66 | - ``bl33.bin`` -> BL33 (``QEMU_EFI.fd``) |
| 67 | - ``Image`` -> linux/arch/arm64/boot/Image |
| 68 | |
| 69 | To build: |
| 70 | |
| 71 | .. code:: shell |
| 72 | |
| 73 | make CROSS_COMPILE=aarch64-linux-gnu- PLAT=qemu BL32=bl32.bin \ |
| 74 | BL32_EXTRA1=bl32_extra1.bin BL32_EXTRA2=bl32_extra2.bin \ |
| 75 | BL33=bl33.bin BL32_RAM_LOCATION=tdram SPD=opteed all fip |
| 76 | |
| 77 | To build with TBBR enabled, BL31 and BL32 encrypted with test key: |
| 78 | |
| 79 | .. code:: shell |
| 80 | |
| 81 | make CROSS_COMPILE=aarch64-linux-gnu- PLAT=qemu BL32=bl32.bin \ |
| 82 | BL32_EXTRA1=bl32_extra1.bin BL32_EXTRA2=bl32_extra2.bin \ |
| 83 | BL33=bl33.bin BL32_RAM_LOCATION=tdram SPD=opteed all fip \ |
| 84 | MBEDTLS_DIR=<path-to-mbedtls-repo> TRUSTED_BOARD_BOOT=1 \ |
| 85 | GENERATE_COT=1 DECRYPTION_SUPPORT=aes_gcm FW_ENC_STATUS=0 \ |
| 86 | ENCRYPT_BL31=1 ENCRYPT_BL32=1 |
| 87 | |
| 88 | To build flash.bin: |
| 89 | |
| 90 | .. code:: shell |
| 91 | |
| 92 | dd if=build/qemu/release/bl1.bin of=flash.bin bs=4096 conv=notrunc |
| 93 | dd if=build/qemu/release/fip.bin of=flash.bin seek=64 bs=4096 conv=notrunc |
| 94 | |
| 95 | To start (QEMU v2.6.0): |
| 96 | |
| 97 | .. code:: shell |
| 98 | |
| 99 | qemu-system-aarch64 -nographic -machine virt,secure=on -cpu cortex-a57 \ |
| 100 | -kernel Image -no-acpi \ |
| 101 | -append 'console=ttyAMA0,38400 keep_bootcon root=/dev/vda2' \ |
| 102 | -initrd rootfs-arm64.cpio.gz -smp 2 -m 1024 -bios flash.bin \ |
| 103 | -d unimp |