blob: 3f79d76ebae289df1395c559435c96e30c388025 [file] [log] [blame]
Paul Beesleyf3653a62019-05-22 11:22:44 +01001QEMU virt Armv8-A
2=================
Douglas Raillardd7c21b72017-06-28 15:23:03 +01003
Dan Handley610e7e12018-03-01 18:44:00 +00004Trusted Firmware-A (TF-A) implements the EL3 firmware layer for QEMU virt
5Armv8-A. BL1 is used as the BootROM, supplied with the -bios argument.
Douglas Raillardd7c21b72017-06-28 15:23:03 +01006When QEMU starts all CPUs are released simultaneously, BL1 selects a
7primary CPU to handle the boot and the secondaries are placed in a polling
8loop to be released by normal world via PSCI.
9
10BL2 edits the Flattened Device Tree, FDT, generated by QEMU at run-time to
11add a node describing PSCI and also enable methods for the CPUs.
12
Andrew Walbran9c4d0692020-01-15 14:11:31 +000013If ``ARM_LINUX_KERNEL_AS_BL33`` is set to 1 then this FDT will be passed to BL33
14via register x0, as expected by a Linux kernel. This allows a Linux kernel image
15to be booted directly as BL33 rather than using a bootloader.
16
Masahiro Yamada894a38d2019-12-26 13:26:49 +090017An ARM64 defconfig v5.5 Linux kernel is known to boot, FDT doesn't need to be
Douglas Raillardd7c21b72017-06-28 15:23:03 +010018provided as it's generated by QEMU.
19
20Current limitations:
21
22- Only cold boot is supported
Douglas Raillardd7c21b72017-06-28 15:23:03 +010023
Masahiro Yamadac88f22a2020-07-04 16:12:55 +090024Getting non-TF images
25---------------------
26
27``QEMU_EFI.fd`` can be downloaded from
Masahiro Yamada894a38d2019-12-26 13:26:49 +090028http://snapshots.linaro.org/components/kernel/leg-virt-tianocore-edk2-upstream/latest/QEMU-KERNEL-AARCH64/RELEASE_GCC5/QEMU_EFI.fd
Douglas Raillardd7c21b72017-06-28 15:23:03 +010029
Masahiro Yamadac88f22a2020-07-04 16:12:55 +090030or, can be built as follows:
31
32.. code:: shell
33
34 git clone https://github.com/tianocore/edk2.git
35 cd edk2
36 git submodule update --init
37 make -C BaseTools
38 source edksetup.sh
39 export GCC5_AARCH64_PREFIX=aarch64-linux-gnu-
40 build -a AARCH64 -t GCC5 -p ArmVirtPkg/ArmVirtQemuKernel.dsc
41
42````
43
44Then, you will get ``Build/ArmVirtQemuKernel-AARCH64/DEBUG_GCC5/FV/QEMU_EFI.fd``
45
46Please note you do not need to use GCC 5 in spite of the environment variable
47``GCC5_AARCH64_PREFIX``
48
49The rootfs can be built by using Buildroot as follows:
50
51.. code:: shell
52
53 git clone git://git.buildroot.net/buildroot.git
54 cd buildroot
55 make qemu_aarch64_virt_defconfig
56 utils/config -e BR2_TARGET_ROOTFS_CPIO
57 utils/config -e BR2_TARGET_ROOTFS_CPIO_GZIP
58 make olddefconfig
59 make
60
61Then, you will get ``output/images/rootfs.cpio.gz``.
62
Sumit Garg8aeb8792019-11-15 20:16:58 +053063Booting via semi-hosting option
64-------------------------------
65
Douglas Raillardd7c21b72017-06-28 15:23:03 +010066Boot binaries, except BL1, are primarily loaded via semi-hosting so all
67binaries has to reside in the same directory as QEMU is started from. This
68is conveniently achieved with symlinks the local names as:
69
70- ``bl2.bin`` -> BL2
71- ``bl31.bin`` -> BL31
72- ``bl33.bin`` -> BL33 (``QEMU_EFI.fd``)
Masahiro Yamada894a38d2019-12-26 13:26:49 +090073- ``Image`` -> linux/arch/arm64/boot/Image
Douglas Raillardd7c21b72017-06-28 15:23:03 +010074
75To build:
76
Paul Beesley493e3492019-03-13 15:11:04 +000077.. code:: shell
Douglas Raillardd7c21b72017-06-28 15:23:03 +010078
Paul Beesleyf3653a62019-05-22 11:22:44 +010079 make CROSS_COMPILE=aarch64-none-elf- PLAT=qemu
Douglas Raillardd7c21b72017-06-28 15:23:03 +010080
Masahiro Yamada894a38d2019-12-26 13:26:49 +090081To start (QEMU v4.1.0):
Douglas Raillardd7c21b72017-06-28 15:23:03 +010082
Paul Beesley493e3492019-03-13 15:11:04 +000083.. code:: shell
Douglas Raillardd7c21b72017-06-28 15:23:03 +010084
85 qemu-system-aarch64 -nographic -machine virt,secure=on -cpu cortex-a57 \
86 -kernel Image \
Masahiro Yamada1eae7242020-07-04 17:10:25 +090087 -append "console=ttyAMA0,38400 keep_bootcon" \
Masahiro Yamadac88f22a2020-07-04 16:12:55 +090088 -initrd rootfs.cpio.gz -smp 2 -m 1024 -bios bl1.bin \
Douglas Raillardd7c21b72017-06-28 15:23:03 +010089 -d unimp -semihosting-config enable,target=native
Sumit Garg8aeb8792019-11-15 20:16:58 +053090
91Booting via flash based firmwares
92---------------------------------
93
94Boot firmwares are loaded via secure FLASH0 device so ``bl1.bin`` and
95``fip.bin`` should be concatenated to create a ``flash.bin`` that is flashed
96onto secure FLASH0.
97
98- ``bl32.bin`` -> BL32 (``tee-header_v2.bin``)
99- ``bl32_extra1.bin`` -> BL32 Extra1 (``tee-pager_v2.bin``)
100- ``bl32_extra2.bin`` -> BL32 Extra2 (``tee-pageable_v2.bin``)
101- ``bl33.bin`` -> BL33 (``QEMU_EFI.fd``)
102- ``Image`` -> linux/arch/arm64/boot/Image
103
104To build:
105
106.. code:: shell
107
108 make CROSS_COMPILE=aarch64-linux-gnu- PLAT=qemu BL32=bl32.bin \
109 BL32_EXTRA1=bl32_extra1.bin BL32_EXTRA2=bl32_extra2.bin \
110 BL33=bl33.bin BL32_RAM_LOCATION=tdram SPD=opteed all fip
111
112To build with TBBR enabled, BL31 and BL32 encrypted with test key:
113
114.. code:: shell
115
116 make CROSS_COMPILE=aarch64-linux-gnu- PLAT=qemu BL32=bl32.bin \
117 BL32_EXTRA1=bl32_extra1.bin BL32_EXTRA2=bl32_extra2.bin \
118 BL33=bl33.bin BL32_RAM_LOCATION=tdram SPD=opteed all fip \
119 MBEDTLS_DIR=<path-to-mbedtls-repo> TRUSTED_BOARD_BOOT=1 \
120 GENERATE_COT=1 DECRYPTION_SUPPORT=aes_gcm FW_ENC_STATUS=0 \
121 ENCRYPT_BL31=1 ENCRYPT_BL32=1
122
123To build flash.bin:
124
125.. code:: shell
126
127 dd if=build/qemu/release/bl1.bin of=flash.bin bs=4096 conv=notrunc
128 dd if=build/qemu/release/fip.bin of=flash.bin seek=64 bs=4096 conv=notrunc
129
130To start (QEMU v2.6.0):
131
132.. code:: shell
133
134 qemu-system-aarch64 -nographic -machine virt,secure=on -cpu cortex-a57 \
135 -kernel Image -no-acpi \
Masahiro Yamada1eae7242020-07-04 17:10:25 +0900136 -append 'console=ttyAMA0,38400 keep_bootcon' \
Masahiro Yamadac88f22a2020-07-04 16:12:55 +0900137 -initrd rootfs.cpio.gz -smp 2 -m 1024 -bios flash.bin \
Sumit Garg8aeb8792019-11-15 20:16:58 +0530138 -d unimp