blob: 7965fac71e6e84629a2903a3fe7d42975765a86d [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001#@TYPE: Machine
Brad Bishop19323692019-04-05 15:28:33 -04002#@NAME: QEMU ARMv8 machine
3#@DESCRIPTION: Machine configuration for running an ARMv8 system on QEMU
Patrick Williamsc124f4f2015-09-15 14:41:29 -05004
Andrew Geissler1e34c2d2020-05-29 16:02:59 -05005require conf/machine/include/tune-cortexa57.inc
Patrick Williamsc124f4f2015-09-15 14:41:29 -05006require conf/machine/include/qemu.inc
7
Patrick Williamsc124f4f2015-09-15 14:41:29 -05008KERNEL_IMAGETYPE = "Image"
9
Brad Bishop19323692019-04-05 15:28:33 -040010SERIAL_CONSOLES ?= "115200;ttyAMA0 115200;hvc0"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060011
12# For runqemu
13QB_SYSTEM_NAME = "qemu-system-aarch64"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060014QB_MACHINE = "-machine virt"
15QB_CPU = "-cpu cortex-a57"
Andrew Geissler82c905d2020-04-13 13:39:40 -050016QB_CPU_KVM = "-cpu host -machine gic-version=3"
Brad Bishop19323692019-04-05 15:28:33 -040017# Standard Serial console
18QB_KERNEL_CMDLINE_APPEND = "console=ttyAMA0"
19# For graphics to work we need to define the VGA device as well as the necessary USB devices
20QB_OPT_APPEND = "-show-cursor -device VGA,edid=on"
21QB_OPT_APPEND += "-device qemu-xhci -device usb-tablet -device usb-kbd"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060022# Add the 'virtio-rng-pci' device otherwise the guest may run out of entropy
Brad Bishop19323692019-04-05 15:28:33 -040023QB_OPT_APPEND += "-object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0"
24# Virtio Networking support
Brad Bishop6e60e8b2018-02-01 10:27:11 -050025QB_TAP_OPT = "-netdev tap,id=net0,ifname=@TAP@,script=no,downscript=no"
26QB_NETWORK_DEVICE = "-device virtio-net-device,netdev=net0,mac=@MAC@"
Brad Bishop19323692019-04-05 15:28:33 -040027# Virtio block device
Patrick Williamsc0f7c042017-02-23 20:41:17 -060028QB_ROOTFS_OPT = "-drive id=disk0,file=@ROOTFS@,if=none,format=raw -device virtio-blk-device,drive=disk0"
Brad Bishop19323692019-04-05 15:28:33 -040029# Virtio serial console
Patrick Williamsc0f7c042017-02-23 20:41:17 -060030QB_SERIAL_OPT = "-device virtio-serial-device -chardev null,id=virtcon -device virtconsole,chardev=virtcon"
Brad Bishop19323692019-04-05 15:28:33 -040031QB_TCPSERIAL_OPT = "-device virtio-serial-device -chardev socket,id=virtcon,port=@PORT@,host=127.0.0.1 -device virtconsole,chardev=virtcon"