diff options
Diffstat (limited to 'results/classifier/118/graphic/2945')
| -rw-r--r-- | results/classifier/118/graphic/2945 | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/results/classifier/118/graphic/2945 b/results/classifier/118/graphic/2945 new file mode 100644 index 000000000..9144095d6 --- /dev/null +++ b/results/classifier/118/graphic/2945 @@ -0,0 +1,59 @@ +graphic: 0.942 +device: 0.915 +PID: 0.888 +ppc: 0.885 +risc-v: 0.874 +architecture: 0.866 +user-level: 0.861 +performance: 0.852 +vnc: 0.835 +permissions: 0.834 +debug: 0.821 +kernel: 0.815 +boot: 0.806 +hypervisor: 0.769 +socket: 0.769 +peripherals: 0.766 +semantic: 0.764 +files: 0.759 +network: 0.725 +VMM: 0.722 +register: 0.709 +TCG: 0.697 +mistranslation: 0.662 +x86: 0.654 +arm: 0.585 +i386: 0.584 +virtual: 0.441 +KVM: 0.381 +assembly: 0.319 + +Commit da954d0e introduces a regression on sifive_unleashed when booting from SD card +Description of problem: +In U-Boot CI, we started to update from v8.2.0 to v9.2.3 and found that the sifive_unleashed target was failing to boot from SD card in our tests (we also test via SPI and this is fine). I have bisected the problem down to commit [da954d0e ("hw/sd/sdcard: Add spi_cmd_SEND_CSD/CID handlers (CMD9 & CMD10)")](https://gitlab.com/qemu-project/qemu/-/commit/da954d0e32444f122a41c24948d4d1c718bf66d4). + +When running QEMU we see the following output in the failure case as the only output: +``` +U-Boot SPL 2025.07-rc1-00033-gad60d9792896 (May 01 2025 - 17:08:34 +0000) +Trying to boot from MMC1 +spl: mmc init failed with error: -110 +Error: -110 +SPL: failed to boot from all boot devices +# +Steps to reproduce: +1. wget -O - https://github.com/pengutronix/genimage/releases/download/v14/genimage-14.tar.xz | tar -C /tmp -xJ ; cd /tmp/genimage-14 +2. ./configure && make -j$(nproc) +3. git clone https://source.denx.de/u-boot/u-boot.git; cd u-boot +4. wget -O - https://github.com/riscv-software-src/opensbi/releases/download/v1.3.1/opensbi-1.3.1-rv-bin.tar.xz | tar -C /tmp -xJ +5. export OPENSBI=/tmp/opensbi-1.3.1-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin +6. make O=/tmp/sifive_unleashed CROSS_COMPILE=riscv64-linux- sifive_unleashed_defconfig +7. make O=/tmp/sifive_unleashed CROSS_COMPILE=riscv64-linux- -sj$(nproc) +8. mkdir -p root +9. cp /tmp/sifive_unleashed/spl/u-boot-spl.bin . +10. cp /tmp/sifive_unleashed/u-boot.itb . +11. rm -rf tmp +12. genimage --inputpath . --config board/sifive/unleashed/genimage_sdcard.cfg +13. cp images/sdcard.img /tmp/sifive_unleashed/ +14. qemu-system-riscv64 -smp 5 -m 8G -nographic -M sifive_u,msel=11 -bios /tmp/sifive_unleashed/spl/u-boot-spl.bin -drive file=/tmp/sifive_unleashed/sdcard.img,format=raw,if=sd +Additional information: +The genimage tool is required for making the disk images used here. If building everything here is too much, I can provide the U-Boot binaries needed here out of band. |