]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
kunit: qemu_configs: Add riscv32 config
authorThomas Weißschuh <thomas.weissschuh@linutronix.de>
Mon, 7 Apr 2025 08:17:12 +0000 (10:17 +0200)
committerShuah Khan <skhan@linuxfoundation.org>
Mon, 14 Apr 2025 16:02:37 +0000 (10:02 -0600)
Add a basic config to run kunit tests on riscv32.

Link: https://lore.kernel.org/r/20250407-kunit-qemu-riscv32-v1-1-7b9800034a35@linutronix.de
Signed-off-by: Thomas Weißschuh <thomas.weissschuh@linutronix.de>
Reviewed-by: David Gow <davidgow@google.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
tools/testing/kunit/qemu_configs/riscv32.py [new file with mode: 0644]

diff --git a/tools/testing/kunit/qemu_configs/riscv32.py b/tools/testing/kunit/qemu_configs/riscv32.py
new file mode 100644 (file)
index 0000000..b79ba0a
--- /dev/null
@@ -0,0 +1,17 @@
+# SPDX-License-Identifier: GPL-2.0
+
+from ..qemu_config import QemuArchParams
+
+QEMU_ARCH = QemuArchParams(linux_arch='riscv',
+                          kconfig='''
+CONFIG_NONPORTABLE=y
+CONFIG_ARCH_RV32I=y
+CONFIG_ARCH_VIRT=y
+CONFIG_SERIAL_8250=y
+CONFIG_SERIAL_8250_CONSOLE=y
+CONFIG_SERIAL_OF_PLATFORM=y
+''',
+                          qemu_arch='riscv32',
+                          kernel_path='arch/riscv/boot/Image',
+                          kernel_command_line='console=ttyS0',
+                          extra_qemu_params=['-machine', 'virt'])