summaryrefslogtreecommitdiff
path: root/docs/platform/qemu_sifive_u.md
blob: 360f58d6691f4723aca2cad1b8eec15886a8dc23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
QEMU SiFive Unleashed Machine Platform
======================================

The **QEMU SiFive Unleashed Machine** is an emulation of the SiFive Unleashed
platform.

To build this platform specific library and firmwares, provide the
*PLATFORM=qemu/sifive_u* parameter to the top level `make` command line.

Platform Options
----------------

The *QEMU SiFive Unleashed Machine* platform does not have any platform specific
options.

Executing on QEMU RISC-V 64bit
------------------------------

**No Payload Case**

Build:
```
make PLATFORM=qemu/sifive_u
```

Run:
```
qemu-system-riscv64 -M sifive_u -m 256M -display none -serial stdio \
	-kernel build/platform/qemu/sifive_u/firmware/fw_payload.elf
```

**U-Boot as a Payload**

Note: the command line examples here assume that U-Boot was compiled using
the `sifive_fu540_defconfig` configuration.

Build:
```
make PLATFORM=qemu/sifive_u FW_PAYLOAD_PATH=<uboot_build_directory>/u-boot.bin
```

Run:
```
qemu-system-riscv64 -M sifive_u -m 256M -display none -serial stdio \
	-kernel build/platform/qemu/sifive_u/firmware/fw_payload.elf
```
or
```
qemu-system-riscv64 -M sifive_u -m 256M -display none -serial stdio \
	-kernel build/platform/qemu/sifive_u/firmware/fw_jump.elf \
	-device loader,file=<uboot_build_directory>/u-boot.bin,addr=0x80200000
```