blob: 3dcb0d1b1ef1ff87bf55711c3829faee69ed8bba [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
Patrick Williams213cb262021-08-07 19:21:33 -050010UBOOT_MACHINE ?= "qemu:arm64_defconfig"
Andrew Geissler635e0e42020-08-21 15:58:33 -050011
Brad Bishop19323692019-04-05 15:28:33 -040012SERIAL_CONSOLES ?= "115200;ttyAMA0 115200;hvc0"
Andrew Geissler4ed12e12020-06-05 18:00:41 -050013SERIAL_CONSOLES_CHECK = "${SERIAL_CONSOLES}"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060014
15# For runqemu
16QB_SYSTEM_NAME = "qemu-system-aarch64"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060017QB_MACHINE = "-machine virt"
18QB_CPU = "-cpu cortex-a57"
William A. Kennington IIIac69b482021-06-02 12:28:27 -070019QB_SMP = "-smp 4"
Andrew Geissler82c905d2020-04-13 13:39:40 -050020QB_CPU_KVM = "-cpu host -machine gic-version=3"
Brad Bishop19323692019-04-05 15:28:33 -040021# For graphics to work we need to define the VGA device as well as the necessary USB devices
Andrew Geissler95ac1b82021-03-31 14:34:31 -050022QB_GRAPHICS = "-device VGA,edid=on"
23QB_OPT_APPEND = "-device qemu-xhci -device usb-tablet -device usb-kbd"
Brad Bishop19323692019-04-05 15:28:33 -040024# 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"