我有一个网站Hello world for bare metal ARM using QEMU,教授如何为versatilePB运行qemu
。
网站示例使用-kernel
选项将二进制图像加载到0x10000;我只是假设二进制文件在-kernel
内部加载到0x10000。
这是qemu-system-arm -M versatilepb -m 128M -kernel test.bin -serial stdio
命令,来源可以在 - https://dl.dropboxusercontent.com/u/10773282/2014/b1.zip
ld设置如下:
ENTRY(_Reset)
SECTIONS
{
. = 0x10000;
.startup . : { startup.o(.text) }
...
}
启动程序集很简单,如下所示:
.global _Reset
_Reset:
LDR sp, =stack_top
BL c_entry
B .
主要c代码(c_entry)如下:
volatile unsigned int * const UART0DR = (unsigned int *)0x101f1000;
void print_uart0(const char *s) {
while(*s != '\0') { /* Loop until end of string */
*UART0DR = (unsigned int)(*s); /* Transmit char */
s++; /* Next char */
}
}
void c_entry() {
print_uart0("Hello world!\n");
}
我需要修改代码以在没有-kernel
的情况下启动,但使用-pflash
来模拟,就好像从闪存驱动器读取二进制文件一样。这是我努力使其发挥作用的方法:
我刚刚使用了我示例的同一作者中的另一个示例:http://balau82.wordpress.com/2010/02/14/simplest-bare-metal-program-for-arm/ 这是启动代码:
.section INTERRUPT_VECTOR, "x"
.global _Reset
_Reset:
B Reset_Handler /* Reset */
B . /* Undefined */
B . /* SWI */
B . /* Prefetch Abort */
B . /* Data Abort */
B . /* reserved */
B . /* IRQ */
B . /* FIQ */
Reset_Handler:
LDR sp, =stack_top
BL c_entry
B .
这是test.ld
ENTRY(_Reset)
SECTIONS
{
. = 0x0;
.text : {
startup.o (INTERRUPT_VECTOR)
*(.text)
}
.data : { *(.data) }
.bss : { *(.bss COMMON) }
. = ALIGN(8);
. = . + 0x1000; /* 4kB of stack memory */
stack_top = .;
}
在构建以获取test.bin之后,我使用dd
命令创建了一个flash二进制文件。
arm-none-eabi-as -mcpu=arm926ej-s -g startup.s -o startup.o
arm-none-eabi-gcc -c -mcpu=arm926ej-s -g test.c -o test.o
arm-none-eabi-ld -T test.ld test.o startup.o -o test.elf
arm-none-eabi-objcopy -O binary test.elf test.bin
dd if=/dev/zero of=flash.bin bs=4096 count=4096
dd if=test.bin of=flash.bin bs=4096 conv=notrunc
执行qemu以获取此错误消息。
qemu-system-arm -M versatilepb -m 128M -pflash flash.bin -nographic
>> failed to read the initial flash content
>> Initialization of device cfi.pflash01 failed
可能有什么问题?我上传了示例和示例代码。
答案 0 :(得分:0)
似乎-M
选项会影响其他选项。
我尝试使用-M connex
来使用gumstix板,它运行正常。
我注意到的另一件事是-M versatilepb
,我必须使用-kernel
来加载和运行程序。