diff options
author | Jon Mason <jdmason@kudzu.us> | 2019-03-05 17:32:19 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-03-12 11:57:41 -0700 |
commit | 6acb45106dafaf6895ad1fb086b6977c256518f6 (patch) | |
tree | 536f137b75f4af05410a0819d4d205255c32bda0 /meta/conf/machine/qemuarm.conf | |
parent | 40c065800f0e84a860dc71f7690c596748b11a21 (diff) | |
download | poky-6acb45106dafaf6895ad1fb086b6977c256518f6.tar.gz |
qemuarm: Swap for an arm7ve (A15) configuration
Add new QEMU BSP for a Arm Cortex-A15 system and use this as qemuarm,
moving the old armv5te Versatile PB based machine to qemuarmv5.
The new machine uses the QEMU virt machine type, which should be
faster to emulate and updates the qemuarm support to a modern
architecture.
(From OE-Core rev: 6fc70eb4f3494bee2be10ee24fe3ea1c8b5ff988)
Signed-off-by: Jon Mason <jdmason@kudzu.us>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/machine/qemuarm.conf')
-rw-r--r-- | meta/conf/machine/qemuarm.conf | 34 |
1 files changed, 23 insertions, 11 deletions
diff --git a/meta/conf/machine/qemuarm.conf b/meta/conf/machine/qemuarm.conf index a544312627..9555046189 100644 --- a/meta/conf/machine/qemuarm.conf +++ b/meta/conf/machine/qemuarm.conf | |||
@@ -1,21 +1,33 @@ | |||
1 | #@TYPE: Machine | 1 | #@TYPE: Machine |
2 | #@NAME: arm_versatile_926ejs | 2 | #@NAME: generic Arm Cortex-A15 machine |
3 | #@DESCRIPTION: arm_versatile_926ejs | 3 | #@DESCRIPTION: Machine configuration for running a generic armv7 |
4 | 4 | ||
5 | require conf/machine/include/tune-cortexa15.inc | ||
5 | require conf/machine/include/qemu.inc | 6 | require conf/machine/include/qemu.inc |
6 | require conf/machine/include/tune-arm926ejs.inc | ||
7 | #require conf/machine/include/tune-arm1136jf-s.inc | ||
8 | 7 | ||
9 | KERNEL_IMAGETYPE = "zImage" | 8 | KERNEL_IMAGETYPE = "zImage" |
10 | 9 | ||
11 | SERIAL_CONSOLES ?= "115200;ttyAMA0 115200;ttyAMA1" | 10 | SERIAL_CONSOLES ?= "115200;ttyAMA0 115200;hvc0" |
12 | 11 | ||
13 | # For runqemu | 12 | # For runqemu |
14 | QB_SYSTEM_NAME = "qemu-system-arm" | 13 | QB_SYSTEM_NAME = "qemu-system-arm" |
15 | QB_MACHINE = "-machine versatilepb" | 14 | QB_MEM = "-m 512" |
16 | QB_KERNEL_CMDLINE_APPEND = "console=ttyAMA0,115200 console=tty" | 15 | QB_MACHINE = "-machine virt" |
17 | QB_OPT_APPEND = "-show-cursor -usb -device usb-tablet" | 16 | QB_CPU = "-cpu cortex-a15" |
18 | # Add the 'virtio-rng-pci' device otherwise the guest may run out of entropy | 17 | # Standard Serial console |
18 | QB_KERNEL_CMDLINE_APPEND = "console=ttyAMA0" | ||
19 | # For graphics to work we need to define the VGA device as well as the necessary USB devices | ||
20 | QB_OPT_APPEND = "-show-cursor -device VGA,edid=on" | ||
21 | QB_OPT_APPEND += "-device qemu-xhci -device usb-tablet -device usb-kbd" | ||
22 | # Add the virtio RNG | ||
19 | QB_OPT_APPEND += "-object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0" | 23 | QB_OPT_APPEND += "-object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0" |
20 | PREFERRED_VERSION_linux-yocto ??= "4.18%" | 24 | # Virtio Networking support |
21 | QB_DTB = "${@oe.utils.version_less_or_equal('PREFERRED_VERSION_linux-yocto', '4.7', '', 'zImage-versatile-pb.dtb', d)}" | 25 | QB_TAP_OPT = "-netdev tap,id=net0,ifname=@TAP@,script=no,downscript=no" |
26 | QB_NETWORK_DEVICE = "-device virtio-net-device,netdev=net0,mac=@MAC@" | ||
27 | # Virtio block device | ||
28 | QB_ROOTFS_OPT = "-drive id=disk0,file=@ROOTFS@,if=none,format=raw -device virtio-blk-device,drive=disk0" | ||
29 | # Virtio serial console | ||
30 | QB_SERIAL_OPT = "-device virtio-serial-device -chardev null,id=virtcon -device virtconsole,chardev=virtcon" | ||
31 | QB_TCPSERIAL_OPT = "-device virtio-serial-device -chardev socket,id=virtcon,port=@PORT@,host=127.0.0.1 -device virtconsole,chardev=virtcon" | ||
32 | |||
33 | KMACHINE_qemuarm = "qemuarma15" | ||