Bin Meng | 40046df | 2019-07-18 00:34:16 -0700 | [diff] [blame] | 1 | .. SPDX-License-Identifier: GPL-2.0+ |
| 2 | .. Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com> |
Bin Meng | 510e379 | 2018-09-26 06:55:21 -0700 | [diff] [blame] | 3 | |
Bin Meng | 40046df | 2019-07-18 00:34:16 -0700 | [diff] [blame] | 4 | QEMU RISC-V |
| 5 | =========== |
Bin Meng | 510e379 | 2018-09-26 06:55:21 -0700 | [diff] [blame] | 6 | |
Anup Patel | 7c08680 | 2022-01-27 11:41:10 +0530 | [diff] [blame] | 7 | QEMU for RISC-V supports a special 'virt' machine and 'spike' machine designed |
| 8 | for emulation and virtualization purposes. This document describes how to run |
| 9 | U-Boot under it. Both 32-bit and 64-bit targets are supported, running in |
| 10 | either machine or supervisor mode. |
Bin Meng | 510e379 | 2018-09-26 06:55:21 -0700 | [diff] [blame] | 11 | |
| 12 | The QEMU virt machine models a generic RISC-V virtual machine with support for |
| 13 | the VirtIO standard networking and block storage devices. It has CLINT, PLIC, |
| 14 | 16550A UART devices in addition to VirtIO and it also uses device-tree to pass |
Anup Patel | 7c08680 | 2022-01-27 11:41:10 +0530 | [diff] [blame] | 15 | configuration information to guest software. It implements the latest RISC-V |
| 16 | privileged architecture. |
Simon Glass | c3c1614 | 2021-12-16 20:59:09 -0700 | [diff] [blame] | 17 | |
| 18 | See :doc:`../../develop/devicetree/dt_qemu` for information on how to see |
| 19 | the devicetree actually generated by QEMU. |
Anup Patel | 7c08680 | 2022-01-27 11:41:10 +0530 | [diff] [blame] | 20 | |
| 21 | The QEMU spike machine models a minimalistic RISC-V virtual machine with |
| 22 | only CLINT and HTIF devices. It also uses device-tree to pass configuration |
| 23 | information to guest software and implements the latest RISC-V privileged |
| 24 | architecture. |
Bin Meng | 510e379 | 2018-09-26 06:55:21 -0700 | [diff] [blame] | 25 | |
| 26 | Building U-Boot |
| 27 | --------------- |
| 28 | Set the CROSS_COMPILE environment variable as usual, and run: |
| 29 | |
Bin Meng | 40046df | 2019-07-18 00:34:16 -0700 | [diff] [blame] | 30 | - For 32-bit RISC-V:: |
| 31 | |
Bin Meng | 510e379 | 2018-09-26 06:55:21 -0700 | [diff] [blame] | 32 | make qemu-riscv32_defconfig |
| 33 | make |
| 34 | |
Bin Meng | 40046df | 2019-07-18 00:34:16 -0700 | [diff] [blame] | 35 | - For 64-bit RISC-V:: |
| 36 | |
Bin Meng | 510e379 | 2018-09-26 06:55:21 -0700 | [diff] [blame] | 37 | make qemu-riscv64_defconfig |
| 38 | make |
| 39 | |
Lukas Auer | 8313fcd | 2019-08-21 21:14:50 +0200 | [diff] [blame] | 40 | This will compile U-Boot for machine mode. To build supervisor mode binaries, |
| 41 | use the configurations qemu-riscv32_smode_defconfig and |
| 42 | qemu-riscv64_smode_defconfig instead. Note that U-Boot running in supervisor |
| 43 | mode requires a supervisor binary interface (SBI), such as RISC-V OpenSBI. |
| 44 | |
Bin Meng | 510e379 | 2018-09-26 06:55:21 -0700 | [diff] [blame] | 45 | Running U-Boot |
| 46 | -------------- |
| 47 | The minimal QEMU command line to get U-Boot up and running is: |
| 48 | |
Anup Patel | 7c08680 | 2022-01-27 11:41:10 +0530 | [diff] [blame] | 49 | - For 32-bit RISC-V virt machine:: |
Bin Meng | 40046df | 2019-07-18 00:34:16 -0700 | [diff] [blame] | 50 | |
Anup Patel | 7c08680 | 2022-01-27 11:41:10 +0530 | [diff] [blame] | 51 | qemu-system-riscv32 -nographic -machine virt -bios u-boot.bin |
Bin Meng | 510e379 | 2018-09-26 06:55:21 -0700 | [diff] [blame] | 52 | |
Anup Patel | 7c08680 | 2022-01-27 11:41:10 +0530 | [diff] [blame] | 53 | - For 64-bit RISC-V virt machine:: |
Bin Meng | 40046df | 2019-07-18 00:34:16 -0700 | [diff] [blame] | 54 | |
Anup Patel | 7c08680 | 2022-01-27 11:41:10 +0530 | [diff] [blame] | 55 | qemu-system-riscv64 -nographic -machine virt -bios u-boot.bin |
| 56 | |
| 57 | - For 64-bit RISC-V spike machine:: |
| 58 | |
| 59 | qemu-system-riscv64 -nographic -machine spike -bios u-boot.bin |
Bin Meng | 510e379 | 2018-09-26 06:55:21 -0700 | [diff] [blame] | 60 | |
| 61 | The commands above create targets with 128MiB memory by default. |
| 62 | A freely configurable amount of RAM can be created via the '-m' |
| 63 | parameter. For example, '-m 2G' creates 2GiB memory for the target, |
| 64 | and the memory node in the embedded DTB created by QEMU reflects |
| 65 | the new setting. |
| 66 | |
Lukas Auer | 8313fcd | 2019-08-21 21:14:50 +0200 | [diff] [blame] | 67 | For instructions on how to run U-Boot in supervisor mode on QEMU |
| 68 | with OpenSBI, see the documentation available with OpenSBI: |
| 69 | https://github.com/riscv/opensbi/blob/master/docs/platform/qemu_virt.md |
Anup Patel | 7c08680 | 2022-01-27 11:41:10 +0530 | [diff] [blame] | 70 | https://github.com/riscv/opensbi/blob/master/docs/platform/spike.md |
Lukas Auer | 8313fcd | 2019-08-21 21:14:50 +0200 | [diff] [blame] | 71 | |
Bin Meng | ba51269 | 2020-06-23 05:23:15 -0700 | [diff] [blame] | 72 | These have been tested in QEMU 5.0.0. |
Lukas Auer | 8313fcd | 2019-08-21 21:14:50 +0200 | [diff] [blame] | 73 | |
| 74 | Running U-Boot SPL |
| 75 | ------------------ |
| 76 | In the default SPL configuration, U-Boot SPL starts in machine mode. U-Boot |
| 77 | proper and OpenSBI (FW_DYNAMIC firmware) are bundled as FIT image and made |
| 78 | available to U-Boot SPL. Both are then loaded by U-Boot SPL and the location |
| 79 | of U-Boot proper is passed to OpenSBI. After initialization, U-Boot proper is |
| 80 | started in supervisor mode by OpenSBI. |
| 81 | |
| 82 | OpenSBI must be compiled before compiling U-Boot. Version 0.4 and higher is |
| 83 | supported by U-Boot. Clone the OpenSBI repository and run the following command. |
| 84 | |
| 85 | .. code-block:: console |
| 86 | |
| 87 | git clone https://github.com/riscv/opensbi.git |
| 88 | cd opensbi |
Atish Patra | 24c5689 | 2020-12-22 11:50:01 -0800 | [diff] [blame] | 89 | make PLATFORM=generic |
Lukas Auer | 8313fcd | 2019-08-21 21:14:50 +0200 | [diff] [blame] | 90 | |
| 91 | See the OpenSBI documentation for full details: |
| 92 | https://github.com/riscv/opensbi/blob/master/docs/platform/qemu_virt.md |
Anup Patel | 7c08680 | 2022-01-27 11:41:10 +0530 | [diff] [blame] | 93 | https://github.com/riscv/opensbi/blob/master/docs/platform/spike.md |
Lukas Auer | 8313fcd | 2019-08-21 21:14:50 +0200 | [diff] [blame] | 94 | |
Anup Patel | 7c08680 | 2022-01-27 11:41:10 +0530 | [diff] [blame] | 95 | To make the FW_DYNAMIC binary (build/platform/generic/firmware/fw_dynamic.bin) |
Lukas Auer | 8313fcd | 2019-08-21 21:14:50 +0200 | [diff] [blame] | 96 | available to U-Boot, either copy it into the U-Boot root directory or specify |
| 97 | its location with the OPENSBI environment variable. Afterwards, compile U-Boot |
| 98 | with the following commands. |
| 99 | |
| 100 | - For 32-bit RISC-V:: |
| 101 | |
| 102 | make qemu-riscv32_spl_defconfig |
| 103 | make |
| 104 | |
| 105 | - For 64-bit RISC-V:: |
| 106 | |
| 107 | make qemu-riscv64_spl_defconfig |
| 108 | make |
| 109 | |
| 110 | The minimal QEMU commands to run U-Boot SPL in both 32-bit and 64-bit |
| 111 | configurations are: |
| 112 | |
Anup Patel | 7c08680 | 2022-01-27 11:41:10 +0530 | [diff] [blame] | 113 | - For 32-bit RISC-V virt machine:: |
Lukas Auer | 8313fcd | 2019-08-21 21:14:50 +0200 | [diff] [blame] | 114 | |
Anup Patel | 7c08680 | 2022-01-27 11:41:10 +0530 | [diff] [blame] | 115 | qemu-system-riscv32 -nographic -machine virt -bios spl/u-boot-spl.bin \ |
Lukas Auer | 8313fcd | 2019-08-21 21:14:50 +0200 | [diff] [blame] | 116 | -device loader,file=u-boot.itb,addr=0x80200000 |
| 117 | |
Anup Patel | 7c08680 | 2022-01-27 11:41:10 +0530 | [diff] [blame] | 118 | - For 64-bit RISC-V virt machine:: |
Lukas Auer | 8313fcd | 2019-08-21 21:14:50 +0200 | [diff] [blame] | 119 | |
Anup Patel | 7c08680 | 2022-01-27 11:41:10 +0530 | [diff] [blame] | 120 | qemu-system-riscv64 -nographic -machine virt -bios spl/u-boot-spl.bin \ |
Lukas Auer | 8313fcd | 2019-08-21 21:14:50 +0200 | [diff] [blame] | 121 | -device loader,file=u-boot.itb,addr=0x80200000 |
Heinrich Schuchardt | f0b1831 | 2020-11-04 12:59:13 +0100 | [diff] [blame] | 122 | |
Anup Patel | 7c08680 | 2022-01-27 11:41:10 +0530 | [diff] [blame] | 123 | - For 64-bit RISC-V spike machine:: |
| 124 | |
| 125 | qemu-system-riscv64 -nographic -machine spike -bios spl/u-boot-spl.bin \ |
| 126 | -device loader,file=u-boot.itb,addr=0x80200000 |
| 127 | |
| 128 | An attached disk can be emulated in RISC-V virt machine by adding:: |
Heinrich Schuchardt | f0b1831 | 2020-11-04 12:59:13 +0100 | [diff] [blame] | 129 | |
| 130 | -device ich9-ahci,id=ahci \ |
| 131 | -drive if=none,file=riscv64.img,format=raw,id=mydisk \ |
| 132 | -device ide-hd,drive=mydisk,bus=ahci.0 |
| 133 | |
Bin Meng | 3555c92 | 2023-10-11 21:15:52 +0800 | [diff] [blame] | 134 | or alternatively attach an emulated UFS:: |
| 135 | |
| 136 | -device ufs,id=ufs0 \ |
| 137 | -drive if=none,file=test.img,format=raw,id=lun0 \ |
| 138 | -device ufs-lu,drive=lun0,bus=ufs0 |
| 139 | |
| 140 | You will have to run 'scsi scan' to use them. |
Heinrich Schuchardt | 16736c2 | 2022-04-05 16:14:27 +0200 | [diff] [blame] | 141 | |
Bin Meng | 7161616 | 2023-07-23 12:40:33 +0800 | [diff] [blame] | 142 | A video console can be emulated in RISC-V virt machine by removing "-nographic" |
| 143 | and adding:: |
| 144 | |
| 145 | -serial stdio -device VGA |
| 146 | |
Bin Meng | 02be57c | 2023-07-23 12:40:41 +0800 | [diff] [blame] | 147 | In addition, a usb keyboard can be attached to an emulated xHCI controller in |
| 148 | RISC-V virt machine as an option of input devices by adding:: |
| 149 | |
| 150 | -device qemu-xhci,id=xhci -device usb-kbd,bus=xhci.0 |
| 151 | |
Heinrich Schuchardt | 7556927 | 2022-08-14 16:13:49 +0200 | [diff] [blame] | 152 | Running with KVM |
| 153 | ---------------- |
| 154 | |
| 155 | Running with QEMU using KVM requires an S-mode U-Boot binary as created by |
| 156 | qemu-riscv64_smode_defconfig. |
| 157 | |
| 158 | Provide the U-Boot S-mode ELF image as *-kernel* parameter and do not add a |
| 159 | *-bios* parameter, e.g. |
| 160 | |
| 161 | .. code-block:: bash |
| 162 | |
| 163 | qemu-system-riscv64 -accel kvm -nographic -machine virt -kernel u-boot |
| 164 | |
Heinrich Schuchardt | 16736c2 | 2022-04-05 16:14:27 +0200 | [diff] [blame] | 165 | Debug UART |
| 166 | ---------- |
| 167 | |
| 168 | The following settings provide a debug UART for the virt machine:: |
| 169 | |
| 170 | CONFIG_DEBUG_UART=y |
| 171 | CONFIG_DEBUG_UART_NS16550=y |
| 172 | CONFIG_DEBUG_UART_BASE=0x10000000 |
| 173 | CONFIG_DEBUG_UART_CLOCK=3686400 |