Add functional coverage using prebuilt HSS and SD card images. Boot HSS and U-Boot with five harts and 2 GiB of RAM. Connect the test console to MMUART1 and let U-Boot start Linux.
The complete boot exercises the SDHCI controller in the DMA modes used at each stage. HSS uses Version 4 64-bit SDMA to load U-Boot. U-Boot uses ADMA2-64 to read the boot script and the large FIT image. Linux then selects 64-bit ADMA for SD card and rootfs I/O. Check the machine identity, kernel ADMA initialization, root filesystem mount, and login prompt. Signed-off-by: Bin Meng <[email protected]> Reviewed-by: Chao Liu <[email protected]> --- (no changes since v1) MAINTAINERS | 1 + tests/functional/riscv64/meson.build | 2 + .../riscv64/test_microchip_icicle_kit.py | 56 +++++++++++++++++++ 3 files changed, 59 insertions(+) create mode 100644 tests/functional/riscv64/test_microchip_icicle_kit.py diff --git a/MAINTAINERS b/MAINTAINERS index 1856c67feb..319b436480 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -1805,6 +1805,7 @@ F: include/hw/misc/mchp_pfsoc_ioscb.h F: include/hw/misc/mchp_pfsoc_l2cc.h F: include/hw/misc/mchp_pfsoc_sysreg.h F: include/hw/rtc/mchp_pfsoc_rtc.h +F: tests/functional/riscv64/test_microchip_icicle_kit.py F: tests/qtest/mchp_pfsoc_l2cc_test.c F: tests/qtest/mchp_pfsoc_rtc_test.c diff --git a/tests/functional/riscv64/meson.build b/tests/functional/riscv64/meson.build index d1a3e6c2bf..cbf61d9535 100644 --- a/tests/functional/riscv64/meson.build +++ b/tests/functional/riscv64/meson.build @@ -3,6 +3,7 @@ test_riscv64_timeouts = { 'boston' : 120, 'k230' : 120, + 'microchip_icicle_kit' : 180, 'tuxrun' : 120, } @@ -15,6 +16,7 @@ tests_riscv64_system_thorough = [ 'endianness', 'boston', 'k230', + 'microchip_icicle_kit', 'sifive_u', 'tt_atlantis', 'tuxrun', diff --git a/tests/functional/riscv64/test_microchip_icicle_kit.py b/tests/functional/riscv64/test_microchip_icicle_kit.py new file mode 100644 index 0000000000..559ae1f651 --- /dev/null +++ b/tests/functional/riscv64/test_microchip_icicle_kit.py @@ -0,0 +1,56 @@ +#!/usr/bin/env python3 +# +# Functional test that boots HSS, U-Boot, and Linux on an Icicle Kit. +# +# Copyright (c) 2026 Process Mission +# +# Author: +# Bin Meng <[email protected]> +# +# SPDX-License-Identifier: GPL-2.0-or-later + +from qemu_test import Asset, LinuxKernelTest, skipIfMissingCommands + + +class MicrochipIcicleKitMachine(LinuxKernelTest): + + ASSET_IMAGES = Asset( + ('https://github.com/processmission/qemu-machine-images/releases/' + 'download/v1.0.0/' + 'riscv64-microchip-icicle-kit-v1.0.0.tar.zst'), + 'fe7eb3ee737fd15d6d5a8480822b070923ae4d611b19ed03983e11f35b6aac04') + + @skipIfMissingCommands('zstd') + def test_microchip_icicle_kit_boot(self): + self.set_machine('microchip-icicle-kit') + + archive_path = self.uncompress( + self.ASSET_IMAGES, + target='microchip_icicle_kit_images.tar', + format='zstd') + self.archive_extract(archive_path, format='tar') + firmware_path = self.scratch_file('images', 'hss.bin') + sdcard_path = self.scratch_file('images', 'sdcard.img') + + self.vm.set_console(console_index=1) + self.vm.add_args( + '-smp', '5', + '-m', '2G', + '-display', 'none', + '-bios', firmware_path, + '-snapshot', + '-drive', f'file={sdcard_path},format=raw,if=sd,index=0', + '-no-reboot') + self.vm.launch() + + self.wait_for_console_pattern('U-Boot ') + self.wait_for_console_pattern('Starting kernel ...') + self.wait_for_console_pattern( + 'Machine model: Microchip PolarFire-SoC Icicle Kit') + self.wait_for_console_pattern('using ADMA 64-bit') + self.wait_for_console_pattern('VFS: Mounted root') + self.wait_for_console_pattern('mpfs_icicle login:') + + +if __name__ == '__main__': + LinuxKernelTest.main() -- 2.53.0
