blob: 3364dcf0421b30c1bafcd422daf91cc5b5aef7bf [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001#@TYPE: Machine
Brad Bishop19323692019-04-05 15:28:33 -04002#@NAME: QEMU Arm Cortex-A15 machine
3#@DESCRIPTION: Machine configuration for running an ARMv7 system on QEMU
Patrick Williamsc124f4f2015-09-15 14:41:29 -05004
Brad Bishop19323692019-04-05 15:28:33 -04005require conf/machine/include/tune-cortexa15.inc
Patrick Williamsc124f4f2015-09-15 14:41:29 -05006require conf/machine/include/qemu.inc
Patrick Williamsc124f4f2015-09-15 14:41:29 -05007
8KERNEL_IMAGETYPE = "zImage"
9
Andrew Geissler635e0e42020-08-21 15:58:33 -050010UBOOT_MACHINE ?= "qemu_arm_defconfig"
11
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 Williamsc124f4f2015-09-15 14:41:29 -050014
Patrick Williamsc0f7c042017-02-23 20:41:17 -060015# For runqemu
16QB_SYSTEM_NAME = "qemu-system-arm"
Andrew Geissler82c905d2020-04-13 13:39:40 -050017QB_MACHINE = "-machine virt,highmem=off"
Brad Bishop19323692019-04-05 15:28:33 -040018QB_CPU = "-cpu cortex-a15"
19# Standard Serial console
20QB_KERNEL_CMDLINE_APPEND = "console=ttyAMA0"
21# For graphics to work we need to define the VGA device as well as the necessary USB devices
Andrew Geisslerd25ed322020-06-27 00:28:28 -050022QB_OPT_APPEND = "-device VGA,edid=on"
Brad Bishop19323692019-04-05 15:28:33 -040023QB_OPT_APPEND += "-device qemu-xhci -device usb-tablet -device usb-kbd"
24# Add the virtio RNG
25QB_OPT_APPEND += "-object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0"
26# Virtio Networking support
27QB_TAP_OPT = "-netdev tap,id=net0,ifname=@TAP@,script=no,downscript=no"
28QB_NETWORK_DEVICE = "-device virtio-net-device,netdev=net0,mac=@MAC@"
29# Virtio block device
30QB_ROOTFS_OPT = "-drive id=disk0,file=@ROOTFS@,if=none,format=raw -device virtio-blk-device,drive=disk0"
31# Virtio serial console
32QB_SERIAL_OPT = "-device virtio-serial-device -chardev null,id=virtcon -device virtconsole,chardev=virtcon"
33QB_TCPSERIAL_OPT = "-device virtio-serial-device -chardev socket,id=virtcon,port=@PORT@,host=127.0.0.1 -device virtconsole,chardev=virtcon"
34
35KMACHINE_qemuarm = "qemuarma15"