Files
buildroot/board/qemu/ppc64le-powernv10
Julien Olivain 98e6dcd05b configs/qemu_ppc64le_powernv10: new defconfig
The Power10 CPU is supported by the Linux Kernel since v5.8
(see upstream commit [1]), and the Powernv10 machine is supported
in qemu since version v5.0.0 (see upstream commit [2]).

[1] https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=a3ea40d5c7365e7e5c7c85b6f30b15142b397571
[2] 2b548a4255

Signed-off-by: Julien Olivain <ju.o@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2026-05-30 16:51:34 +02:00
..

Run the emulation with:

qemu-system-ppc64 \
    -M powernv10 \
    -kernel output/images/vmlinux \
    -append "console=hvc0 rootwait root=/dev/nvme0n1" \
    -device nvme,bus=pcie.3,addr=0x0,drive=drive0,serial=1234 \
    -drive file=output/images/rootfs.ext2,if=none,id=drive0,format=raw,cache=none \
    -device e1000e,netdev=net0,mac=C0:FF:EE:00:01:03,bus=pcie.1,addr=0x0 \
    -netdev user,id=net0 \
    -serial mon:stdio \
    -nographic # qemu_ppc64le_powernv10_defconfig

The login prompt will appear in the terminal window.