blob: e7dd4e994d38f9d690769bd90fdf438ae6a3e812 [file] [log] [blame]
Bin Meng7a0c8342019-07-18 00:34:14 -07001.. SPDX-License-Identifier: GPL-2.0+
2.. sectionauthor:: Bin Meng <bmeng.cn@gmail.com>
3
4QEMU x86
5========
6
7Build instructions for bare mode
8--------------------------------
9
10To build u-boot.rom for QEMU x86 targets, just simply run::
11
12 $ make qemu-x86_defconfig (for 32-bit)
13 $ make qemu-x86_64_defconfig (for 64-bit)
14 $ make all
15
16Note this default configuration will build a U-Boot for the QEMU x86 i440FX
17board. To build a U-Boot against QEMU x86 Q35 board, you can change the build
18configuration during the 'make menuconfig' process like below::
19
20 Device Tree Control --->
21 ...
22 (qemu-x86_q35) Default Device Tree for DT control
23
24Test with QEMU for bare mode
25----------------------------
26
27QEMU is a fancy emulator that can enable us to test U-Boot without access to
28a real x86 board. Please make sure your QEMU version is 2.3.0 or above test
29U-Boot. To launch QEMU with u-boot.rom, call QEMU as follows::
30
31 $ qemu-system-i386 -nographic -bios path/to/u-boot.rom
32
33This will instantiate an emulated x86 board with i440FX and PIIX chipset. QEMU
34also supports emulating an x86 board with Q35 and ICH9 based chipset, which is
35also supported by U-Boot. To instantiate such a machine, call QEMU with::
36
37 $ qemu-system-i386 -nographic -bios path/to/u-boot.rom -M q35
38
39Note by default QEMU instantiated boards only have 128 MiB system memory. But
40it is enough to have U-Boot boot and function correctly. You can increase the
41system memory by pass '-m' parameter to QEMU if you want more memory::
42
43 $ qemu-system-i386 -nographic -bios path/to/u-boot.rom -m 1024
44
45This creates a board with 1 GiB system memory. Currently U-Boot for QEMU only
46supports 3 GiB maximum system memory and reserves the last 1 GiB address space
47for PCI device memory-mapped I/O and other stuff, so the maximum value of '-m'
48would be 3072.
49
50QEMU emulates a graphic card which U-Boot supports. Removing '-nographic' will
51show QEMU's VGA console window. Note this will disable QEMU's serial output.
52If you want to check both consoles, use '-serial stdio'.
53
54Multicore is also supported by QEMU via '-smp n' where n is the number of cores
55to instantiate. Note, the maximum supported CPU number in QEMU is 255.
56
Joshua Watt00f237e2019-07-03 12:45:32 -050057U-Boot uses 'distro_bootcmd' by default when booting on x86 QEMU. This tries to
58load a boot script, kernel, and ramdisk from several different interfaces. For
59the default boot order, see 'qemu-x86.h'. For more information, see
Dario Binacchi5ef229a2023-01-09 12:52:40 +010060'doc/develop/distro.rst'. Most Linux distros can be booted by writing a uboot
61script.
Joshua Watt00f237e2019-07-03 12:45:32 -050062For example, Debian (stretch) can be booted by creating a script file named
63'boot.txt' with the contents::
64
65 setenv bootargs root=/dev/sda1 ro
66 load ${devtype} ${devnum}:${distro_bootpart} ${kernel_addr_r} /vmlinuz
67 load ${devtype} ${devnum}:${distro_bootpart} ${ramdisk_addr_r} /initrd.img
68 zboot ${kernel_addr_r} - ${ramdisk_addr_r} ${filesize}
69
70Then compile and install it with::
71
72 $ apt install u-boot-tools && \
73 mkimage -T script -C none -n "Boot script" -d boot.txt /boot/boot.scr
74
Bin Meng7a0c8342019-07-18 00:34:14 -070075The fw_cfg interface in QEMU also provides information about kernel data,
76initrd, command-line arguments and more. U-Boot supports directly accessing
77these informtion from fw_cfg interface, which saves the time of loading them
78from hard disk or network again, through emulated devices. To use it , simply
79providing them in QEMU command line::
80
81 $ qemu-system-i386 -nographic -bios path/to/u-boot.rom -m 1024 \
82 -kernel /path/to/bzImage -append 'root=/dev/ram console=ttyS0' \
83 -initrd /path/to/initrd -smp 8
84
85Note: -initrd and -smp are both optional
86
87Then start QEMU, in U-Boot command line use the following U-Boot command to
88setup kernel::
89
90 => qfw
91 qfw - QEMU firmware interface
92
93 Usage:
94 qfw <command>
95 - list : print firmware(s) currently loaded
96 - cpus : print online cpu number
97 - load <kernel addr> <initrd addr> : load kernel and initrd (if any) and setup for zboot
98
99 => qfw load
100 loading kernel to address 01000000 size 5d9d30 initrd 04000000 size 1b1ab50
101
102Here the kernel (bzImage) is loaded to 01000000 and initrd is to 04000000. Then,
103'zboot' can be used to boot the kernel::
104
105 => zboot 01000000 - 04000000 1b1ab50
106
107To run 64-bit U-Boot, qemu-system-x86_64 should be used instead, e.g.::
108
109 $ qemu-system-x86_64 -nographic -bios path/to/u-boot.rom
110
111A specific CPU can be specified via the '-cpu' parameter but please make
112sure the specified CPU supports 64-bit like '-cpu core2duo'. Conversely
113'-cpu pentium' won't work for obvious reasons that the processor only
114supports 32-bit.
115
116Note 64-bit support is very preliminary at this point. Lots of features
117are missing in the 64-bit world. One notable feature is the VGA console
118support which is currently missing, so that you must specify '-nographic'
119to get 64-bit U-Boot up and running.