希望fs.py
,但不一定。
例如,我有一些x86 BIOS示例在QEMU的屏幕上绘制一条线,我也希望看到它在gem5上工作。
对所有拱门感兴趣。
https://www.mail-archive.com/gem5-users@gem5.org/msg15455.html
答案 0 :(得分:1)
<强>臂强>
我设法在屏幕上为ARM获取图像。
这是highly automated setup,它执行以下步骤:
从https://gem5.googlesource.com/arm/linux/获取ARM gem5 Linux内核v4.15 fork并从那里使用配置文件arch / arm / configs / gem5_defconfig。
我认为提交drm: Add component-aware simple encoder
https://gem5.googlesource.com/arm/linux/需要fork,这会添加所需的选项CONFIG_DRM_VIRT_ENCODER=y
。
另一个必需选项是CONFIG_DRM_HDLCD=y
,它启用管理显示的HDLCD ARM IP:http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dui0541c/CHDBAIDI.html
在49f96e7b77925837aa5bc84d4c3453ab5f07408e运行gem5 使用类型命令:
M5_PATH='/data/git/linux-kernel-module-cheat/out/common/gem5/system' \
'/data/git/linux-kernel-module-cheat/out/common/gem5/build/ARM/gem5.opt' \
--debug-file=trace.txt \
-d '/data/git/linux-kernel-module-cheat/out/arm/gem5/m5out' \
'/data/git/linux-kernel-module-cheat/gem5/gem5/configs/example/fs.py' \
--disk-image='/data/git/linux-kernel-module-cheat/out/arm/buildroot/images/rootfs.ext2' \
--kernel='/data/git/linux-kernel-module-cheat/out/arm/buildroot/build/linux-custom/vmlinux' \
--mem-size='256MB' \
--num-cpus='1' \
--script='/data/git/linux-kernel-module-cheat/data/readfile' \
--command-line='earlyprintk=pl011,0x1c090000 console=ttyAMA0 lpj=19988480 rw loglevel=8 mem=256MB root=/dev/sda console_msg_format=syslog nokaslr norandmaps printk.devkmsg=on printk.time=y' \
--dtb-file='/data/git/linux-kernel-module-cheat/out/common/gem5/system/arm/dt/armv7_gem5_v1_1cpu.dtb' \
--machine-type=VExpress_GEM5_V1 \
连接到您最喜欢的客户端的gem5服务器。
在Ubuntu 18.04上,我喜欢:
sudo apt-get install vinagre
vinagre localhost:5900
该端口显示类型为
的gem5消息system.vncserver: Listening for connections on port 5900
它占用了从5900
开始的第一个空闲端口。
目前仅支持原始连接。
结果:
几秒钟后,VNC客户端在屏幕上显示一只小企鹅!这是因为我们的内核编译为:CONFIG_LOGO=y
。
最新的框架被转储到system.framebuffer.png
,它还包含小企鹅。
Linux内核dmesg在telnet 3456
终端上显示如下消息:
[ 0.152755] [drm] found ARM HDLCD version r0p0
[ 0.152790] hdlcd 2b000000.hdlcd: bound virt-encoder (ops 0x80935f94)
[ 0.152795] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[ 0.152799] [drm] No driver support for vblank timestamp query.
[ 0.215179] Console: switching to colour frame buffer device 240x67
[ 0.230389] hdlcd 2b000000.hdlcd: fb0: frame buffer device
[ 0.230509] [drm] Initialized hdlcd 1.0.0 20151021 for 2b000000.hdlcd on minor 0
表示HDLCD已启用。
当我们连接时,gem5显示在stdout:
info: VNC client attached
TODO:也让shell工作了。目前我只有一只小企鹅,我的击键什么都不做。可能必须调整console=
内核参数或在init上设置tty控制台? CONFIG_FRAMEBUFFER_CONSOLE=y
已设置。也许答案包含在:https://www.kernel.org/doc/Documentation/fb/fbcon.txt
<强> aarch64 强>
aarch64
gem5 defconfig没有附带所有必需选项,例如CONFIG_DRM_HDLCD=y
。
通过黑客攻击或使用配置片段添加以下选项使其正常工作:
CONFIG_DRM=y
CONFIG_DRM_HDLCD=y
CONFIG_DRM_VIRT_ENCODER=y