mirror of
https://github.com/openhwgroup/cvw
synced 2025-02-02 09:45:18 +00:00
b6e2710f5d
When a timer interrupt occurs it should be routed to the machine interrupt pending MTIP even if MIDELEG[5] = 1 when the current privilege mode is Machine. This is true for all the interrupts. The interrupt should not be masked even though it is delegated to a lower privilege. Since the CPU is currently in machine mode the interrupt must be taken if MIE. Additionally added a new qemu script which pipes together all the parsing and post processing scripts to produce the singular all.txt trace without the massivie intermediate files.
19 lines
1.3 KiB
Bash
Executable File
19 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
# Oftentimes this script runs so long you'll go to sleep.
|
|
# But you don't want the script to die when your computer goes to sleep.
|
|
# So consider invoking this with nohup (i.e. "nohup ./logAllBuildroot.sh")
|
|
# You can run "tail -f nohup.out" to see what would've
|
|
# outputted to the terminal if you didn't use nohup
|
|
|
|
#customQemu="/courses/e190ax/qemu_sim/rv64_initrd/qemu_experimental/qemu/build/qemu-system-riscv64"
|
|
customQemu="qemu-system-riscv64"
|
|
imageDir="../buildroot-image-output"
|
|
intermedDir="../linux-testvectors/intermediate-outputs"
|
|
outDir="../linux-testvectors"
|
|
|
|
# - Logs info needed by buildroot testbench
|
|
#($customQemu -M virt -nographic -bios $imageDir/fw_jump.elf -kernel $imageDir/Image -append "root=/dev/vda ro" -initrd $imageDir/rootfs.cpio -d nochain,cpu,in_asm -serial /dev/null -singlestep -gdb tcp::1236 -S 2>&1 >/dev/null | ./parseNew.py "$outDir") & riscv64-unknown-elf-gdb -x gdbinit_qemulog
|
|
#./fix_csrs.py "$outDir"
|
|
|
|
($customQemu -M virt -nographic -bios $imageDir/fw_jump.elf -kernel $imageDir/Image -append "root=/dev/vda ro" -initrd $imageDir/rootfs.cpio -d nochain,cpu,in_asm -serial /dev/null -singlestep -gdb tcp::1236 -S 2>&1 >/dev/null | ./parse_qemu.py | ./parseNew.py | ./remove_dup.awk > allNew2.txt) & riscv64-unknown-elf-gdb -x gdbinit_qemulog
|