2019-07-18 07:34:15 +00:00
|
|
|
.. SPDX-License-Identifier: GPL-2.0+
|
|
|
|
.. Copyright (C) 2017, Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi>
|
2017-10-09 16:42:41 +00:00
|
|
|
|
2019-07-18 07:34:15 +00:00
|
|
|
QEMU ARM
|
|
|
|
========
|
2017-10-09 16:42:41 +00:00
|
|
|
|
|
|
|
QEMU for ARM supports a special 'virt' machine designed for emulation and
|
|
|
|
virtualization purposes. This document describes how to run U-Boot under it.
|
2018-01-11 14:11:24 +00:00
|
|
|
Both 32-bit ARM and AArch64 are supported.
|
2017-10-09 16:42:41 +00:00
|
|
|
|
|
|
|
The 'virt' platform provides the following as the basic functionality:
|
|
|
|
|
|
|
|
- A freely configurable amount of CPU cores
|
|
|
|
- U-Boot loaded and executing in the emulated flash at address 0x0
|
|
|
|
- A generated device tree blob placed at the start of RAM
|
|
|
|
- A freely configurable amount of RAM, described by the DTB
|
|
|
|
- A PL011 serial port, discoverable via the DTB
|
2018-01-11 14:11:24 +00:00
|
|
|
- An ARMv7/ARMv8 architected timer
|
2017-10-09 16:42:41 +00:00
|
|
|
- PSCI for rebooting the system
|
|
|
|
- A generic ECAM-based PCI host controller, discoverable via the DTB
|
|
|
|
|
|
|
|
Additionally, a number of optional peripherals can be added to the PCI bus.
|
|
|
|
|
|
|
|
Building U-Boot
|
|
|
|
---------------
|
2018-01-11 14:11:24 +00:00
|
|
|
Set the CROSS_COMPILE environment variable as usual, and run:
|
2017-10-09 16:42:41 +00:00
|
|
|
|
2019-07-18 07:34:15 +00:00
|
|
|
- For ARM::
|
|
|
|
|
2017-10-09 16:42:41 +00:00
|
|
|
make qemu_arm_defconfig
|
|
|
|
make
|
|
|
|
|
2019-07-18 07:34:15 +00:00
|
|
|
- For AArch64::
|
|
|
|
|
2018-01-11 14:11:24 +00:00
|
|
|
make qemu_arm64_defconfig
|
|
|
|
make
|
|
|
|
|
2017-10-09 16:42:41 +00:00
|
|
|
Running U-Boot
|
|
|
|
--------------
|
|
|
|
The minimal QEMU command line to get U-Boot up and running is:
|
|
|
|
|
2019-07-18 07:34:15 +00:00
|
|
|
- For ARM::
|
|
|
|
|
2018-05-14 15:47:52 +00:00
|
|
|
qemu-system-arm -machine virt -bios u-boot.bin
|
2017-10-09 16:42:41 +00:00
|
|
|
|
2019-07-18 07:34:15 +00:00
|
|
|
- For AArch64::
|
|
|
|
|
2018-05-14 15:47:52 +00:00
|
|
|
qemu-system-aarch64 -machine virt -cpu cortex-a57 -bios u-boot.bin
|
2018-01-11 14:11:24 +00:00
|
|
|
|
2018-05-14 15:47:52 +00:00
|
|
|
Note that for some odd reason qemu-system-aarch64 needs to be explicitly
|
2018-01-11 14:11:24 +00:00
|
|
|
told to use a 64-bit CPU or it will boot in 32-bit mode.
|
2017-10-09 16:42:41 +00:00
|
|
|
|
2018-11-26 11:20:17 +00:00
|
|
|
Additional persistent U-boot environment support can be added as follows:
|
2019-07-18 07:34:15 +00:00
|
|
|
|
|
|
|
- Create envstore.img using qemu-img::
|
|
|
|
|
2018-11-26 11:20:17 +00:00
|
|
|
qemu-img create -f raw envstore.img 64M
|
2019-07-18 07:34:15 +00:00
|
|
|
|
|
|
|
- Add a pflash drive parameter to the command line::
|
|
|
|
|
2018-11-26 11:20:17 +00:00
|
|
|
-drive if=pflash,format=raw,index=1,file=envstore.img
|
|
|
|
|
2017-10-09 16:42:41 +00:00
|
|
|
Additional peripherals that have been tested to work in both U-Boot and Linux
|
|
|
|
can be enabled with the following command line parameters:
|
|
|
|
|
2019-07-18 07:34:15 +00:00
|
|
|
- To add a Serial ATA disk via an Intel ICH9 AHCI controller, pass e.g.::
|
|
|
|
|
2017-10-09 16:42:41 +00:00
|
|
|
-drive if=none,file=disk.img,id=mydisk -device ich9-ahci,id=ahci -device ide-drive,drive=mydisk,bus=ahci.0
|
2019-07-18 07:34:15 +00:00
|
|
|
|
|
|
|
- To add an Intel E1000 network adapter, pass e.g.::
|
|
|
|
|
2017-10-09 16:42:41 +00:00
|
|
|
-netdev user,id=net0 -device e1000,netdev=net0
|
2019-07-18 07:34:15 +00:00
|
|
|
|
|
|
|
- To add an EHCI-compliant USB host controller, pass e.g.::
|
|
|
|
|
2017-10-09 16:42:41 +00:00
|
|
|
-device usb-ehci,id=ehci
|
2019-07-18 07:34:15 +00:00
|
|
|
|
|
|
|
- To add a NVMe disk, pass e.g.::
|
|
|
|
|
2017-10-09 16:42:41 +00:00
|
|
|
-drive if=none,file=disk.img,id=mydisk -device nvme,drive=mydisk,serial=foo
|
|
|
|
|
|
|
|
These have been tested in QEMU 2.9.0 but should work in at least 2.5.0 as well.
|
2020-09-15 22:17:55 +00:00
|
|
|
|
|
|
|
Debug UART
|
|
|
|
----------
|
|
|
|
|
|
|
|
The debug UART on the ARM virt board uses these settings::
|
|
|
|
|
|
|
|
CONFIG_DEBUG_UART=y
|
|
|
|
CONFIG_DEBUG_UART_PL010=y
|
|
|
|
CONFIG_DEBUG_UART_BASE=0x9000000
|
|
|
|
CONFIG_DEBUG_UART_CLOCK=0
|