qemuarm64.conf 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. #@TYPE: Machine
  2. #@NAME: QEMU ARMv8 machine
  3. #@DESCRIPTION: Machine configuration for running an ARMv8 system on QEMU
  4. require conf/machine/include/tune-cortexa57.inc
  5. require conf/machine/include/qemu.inc
  6. KERNEL_IMAGETYPE = "Image"
  7. UBOOT_MACHINE ?= "qemu_arm64_defconfig"
  8. SERIAL_CONSOLES ?= "115200;ttyAMA0 115200;hvc0"
  9. SERIAL_CONSOLES_CHECK = "${SERIAL_CONSOLES}"
  10. # For runqemu
  11. QB_SYSTEM_NAME = "qemu-system-aarch64"
  12. QB_MACHINE = "-machine virt"
  13. QB_CPU = "-cpu cortex-a57"
  14. QB_CPU_KVM = "-cpu host -machine gic-version=3"
  15. # Standard Serial console
  16. QB_KERNEL_CMDLINE_APPEND = "console=ttyAMA0"
  17. # For graphics to work we need to define the VGA device as well as the necessary USB devices
  18. QB_OPT_APPEND = "-device VGA,edid=on"
  19. QB_OPT_APPEND += "-device qemu-xhci -device usb-tablet -device usb-kbd"
  20. # Virtio Networking support
  21. QB_TAP_OPT = "-netdev tap,id=net0,ifname=@TAP@,script=no,downscript=no"
  22. QB_NETWORK_DEVICE = "-device virtio-net-device,netdev=net0,mac=@MAC@"
  23. # Virtio block device
  24. QB_ROOTFS_OPT = "-drive id=disk0,file=@ROOTFS@,if=none,format=raw -device virtio-blk-device,drive=disk0"
  25. # Virtio serial console
  26. QB_SERIAL_OPT = "-device virtio-serial-device -chardev null,id=virtcon -device virtconsole,chardev=virtcon"
  27. QB_TCPSERIAL_OPT = "-device virtio-serial-device -chardev socket,id=virtcon,port=@PORT@,host=127.0.0.1 -device virtconsole,chardev=virtcon"