Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

```
git clone https://github.com/yli147/qemu.git -b dev-standalonemm-rmpirpmi
export WORKDIR=`pwd`
cd qemu
./configure --target-list=riscv64-softmmu
make -j $(nproc)
```

...

```
cd $WORKDIR
git clone https://github.com/yli147/edk2.git -b dev-standalonemm-rmpirpmi
cd edk2
git submodule update --init --recursive --depth=1
. edksetup.sh
make -C BaseTools
export GCC5_RISCV64_PREFIX=/usr/bin/riscv64-linux-gnu-
build -a RISCV64 -t GCC5 -p OvmfPkg/RiscVVirt/RiscVVirtQemu.dsc -b DEBUG -DSECURE_BOOT_ENABLE=TRUE
build -a RISCV64 -t GCC5 -p OvmfPkg/RiscVVirt/RiscVVirtQemuStandaloneMm.dsc -b DEBUG -D FW_BASE_ADDRESS=0x80C00000
cp Build/RiscVVirtQemu/DEBUG_GCC5/FV/RISCV_VIRT_CODE.fd $WORKDIR
cp Build/RiscVVirtQemu/DEBUG_GCC5/FV/RISCV_VIRT_VARS.fd $WORKDIR
cp Build/RiscVVirtQemuStandaloneMm/DEBUG_GCC5/FV/STANDALONE_MM.fd $WORKDIR
```

...

```
cd $WORKDIR
git clone https://github.com/Penglai-Enclave/opensbi.git -b dev-standalonemm-rpmi
cd opensbi
CROSS_COMPILE=riscv64-linux-gnu- make PLATFORM=generic FW_PAYLOADMM_PATH=../STANDALONE_MM.fd
cp build/platform/generic/firmware/fw_dynamic.elf $WORKDIR
```

...

Create a "run.sh" script with below content, or you can download it here

...

Code Block
nc -z

...

 127.0.0.1 54320 || /usr/bin/gnome-terminal -x ./soc_term.py 54320 &

...


nc -z

...

 127.0.0.1 54321 || /usr/bin/gnome-terminal -x ./soc_term.py 54321 &

...


while ! nc -z 127.0.0.1 54320 || ! nc -z 127.0.0.1 54321; do sleep 1; done

...


./qemu/build/qemu-system-riscv64 -d guest_errors -D guest_log.txt

...

 \
    -M virt,pflash0=pflash0,pflash1=pflash1,aia=aplic-imsic,acpi=off,hmat=on,rpmi=on

...

 \
    -dtb ./qemu-virt-new.dtb

...

 \
    -m 4G,slots=2,maxmem=8G -object memory-backend-ram,size=2G,id=m0 -object memory-backend-ram,size=2G,id=m1

...

 \
    -numa node,nodeid=0,memdev=m0 -numa node,nodeid=1,memdev=m1 -smp 2,sockets=2,maxcpus=2

...

 \
    -bios ./fw_dynamic.elf

...

 \
    -device loader,file=STANDALONE_MM.fd,addr=0x80C00000 \
    -blockdev node-name=pflash0,driver=file,read-only=on,filename=./RISCV_VIRT_CODE.fd

...

 \
    -blockdev node-name=pflash1,driver=file,filename=./RISCV_VIRT_VARS.fd

...

 \
    -serial tcp:localhost:54320 -serial tcp:localhost:54321

...

 \
    -drive file=fat:rw:~/src/fat,id=hd0 -device virtio-blk-device,drive=hd0

...

 \
    -nographic -device virtio-net-pci,netdev=usernet -netdev user,id=usernet,hostfwd=tcp::9990-:22

...

Then downlaod the soc_term.py script and run the run.sh script in Linux desktop GUI envrionment shell

...