Zoltan, Gitlab is complaining about a missing file in one of the tests:
8/259 qemu:qtest+qtest-ppc / qtest-ppc/test-hmp ERROR 0.22s killed by signal 6 SIGABRT 4324>>> G_TEST_DBUS_DAEMON=/builds/danielhb/qemu/tests/dbus-vmstate-daemon.sh QTEST_QEMU_BINARY=./qemu-system-ppc MALLOC_PERTURB_=87 PYTHON=/builds/danielhb/qemu/build/pyvenv/bin/python3 /builds/danielhb/qemu/build/tests/qtest/test-hmp --tap -k 4325――――――――――――――――――――――――――――――――――――― ✀ ――――――――――――――――――――――――――――――――――――― 4326stderr: 4327qemu-system-ppc: Could not find firmware 'u-boot-amigaone.bin' 4328Broken pipe 4329../tests/qtest/libqtest.c:195: kill_qemu() tried to terminate QEMU process but encountered exit status 1 (expected 0) 4330(test program exited with status code -6) 4331TAP parsing error: Too few tests run (expected 13, got 0) You can reproduce it like this: $ make -j -C build && QTEST_QEMU_BINARY=./build/qemu-system-ppc64 ./build/tests/qtest/test-hmp I ended up amending in-tree (downloaded the firmware, put it under pc-bios, updated pc-bios/meson.build). My manual test now passes, but not sure if gitlab will nag about it. Let's wait and see. I told you: code freeze is a blast! Let's see if it's still sunny for the AmigaOne XE board emulation. Thanks, Daniel On 10/27/23 08:54, BALATON Zoltan wrote:
Changes in v7: - Increase default memory size to 512m to match pegasos2 and sam460ex and it's a better default for AmigaOS Changes in v6: - Dropped patch 1, now it's Based-on: <20231024224056.842607-1-mark.cave-ayl...@ilande.co.uk> ([PATCH v2 0/3] ide: implement simple legacy/native mode switching for PCI IDE controllers) - Added Tested-by from Rene Changes in v5: - Fixed avocado test Changes in v4: - Found typo in comment in patch 1 so ended up rewording it again trying to make it more concise. Also take the idea of using range_covers_byte from Mark's patch - Added RFC patch for avocado test (untested, I don't have Avocado) Changes in v3: - Update values, comment and commit message in patch 1 again Changes in v2: - Update comment and commit message in patch 1 (Mark) - Fix irq mapping in patch 2 (Volker) Regards, BALATON Zoltan BALATON Zoltan (3): hw/pci-host: Add emulation of Mai Logic Articia S hw/ppc: Add emulation of AmigaOne XE board tests/avocado: Add test for amigaone board MAINTAINERS | 8 + configs/devices/ppc-softmmu/default.mak | 1 + hw/pci-host/Kconfig | 5 + hw/pci-host/articia.c | 293 ++++++++++++++++++++++++ hw/pci-host/meson.build | 2 + hw/ppc/Kconfig | 7 + hw/ppc/amigaone.c | 164 +++++++++++++ hw/ppc/meson.build | 2 + include/hw/pci-host/articia.h | 17 ++ tests/avocado/ppc_amiga.py | 38 +++ 10 files changed, 537 insertions(+) create mode 100644 hw/pci-host/articia.c create mode 100644 hw/ppc/amigaone.c create mode 100644 include/hw/pci-host/articia.h create mode 100644 tests/avocado/ppc_amiga.py