kunit: qemu_configs: Add LoongArch config
authorThomas Weißschuh <thomas.weissschuh@linutronix.de>
Mon, 11 Nov 2024 05:29:18 +0000 (06:29 +0100)
committerShuah Khan <skhan@linuxfoundation.org>
Tue, 19 Nov 2024 22:26:30 +0000 (15:26 -0700)
Add a basic config to run kunit tests on LoongArch.
This requires QEMU 9.1.0 or later for the necessary direct kernel boot
support.

Link: https://lore.kernel.org/r/20241111-kunit-loongarch-v2-1-7676eb5f2da3@linutronix.de
Signed-off-by: Thomas Weißschuh <thomas.weissschuh@linutronix.de>
Reviewed-by: Bibo Mao <maobibo@loongson.cn>
Reviewed-by: David Gow <davidgow@google.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
tools/testing/kunit/qemu_configs/loongarch.py [new file with mode: 0644]

diff --git a/tools/testing/kunit/qemu_configs/loongarch.py b/tools/testing/kunit/qemu_configs/loongarch.py
new file mode 100644 (file)
index 0000000..a874a21
--- /dev/null
@@ -0,0 +1,18 @@
+# SPDX-License-Identifier: GPL-2.0
+
+from ..qemu_config import QemuArchParams
+
+QEMU_ARCH = QemuArchParams(linux_arch='loongarch',
+                          kconfig='''
+CONFIG_EFI_STUB=n
+CONFIG_PCI_HOST_GENERIC=y
+CONFIG_SERIAL_8250=y
+CONFIG_SERIAL_8250_CONSOLE=y
+CONFIG_SERIAL_OF_PLATFORM=y
+''',
+                          qemu_arch='loongarch64',
+                          kernel_path='arch/loongarch/boot/vmlinux.elf',
+                          kernel_command_line='console=ttyS0',
+                          extra_qemu_params=[
+                                          '-machine', 'virt',
+                                          '-cpu', 'max',])