我一直在尝试使用 QEMU : STM32F407 开发自定义计算机。我写了初始脚本,将-machine help
的计算机描述(例如定义 SRAM , cpu类型)添加到QEMU支持的计算机列表中等等。我在路径~/qemu/hw/arm
中将文件添加为stm32f407ve_scu.c
我还在 makefile.objs 文件中添加了行obj-$(CONFIG_STM32F407VE_SCU) += stm32f407ve_scu.o
。
.c文件具有以下代码:
struct stm32f407ve_scu {
DeviceState *soc;
struct arm_boot_info boot_info;
};
static void stm32f407ve_scu_init(MachineState *machine) { //create a space for the machine kernel
struct stm32f407ve_scu *s =g_new0(struct stm32f407ve_scu, 1);
if (!machine->kernel_filename){
fprintf(stderr," Guest image is missing (use -kernel)\n");
exit(1);
}
s->soc = qdev_create(NULL, "stm32f407-soc");
qdev_prop_set_string (s->soc, "cpu-type", ARM_CPU_TYPE_NAME("cortex-m4")); // assign cortex-m4 as the processor
object_property_set_bool(OBJECT(s->soc), true, "realized", &error_fatal);
MemoryRegion *sram =g_new(MemoryRegion,1); //creates new memory region
memory_region_init_ram(sram, NULL, "scu.sram", 1024 * 1024 * 128, &error_fatal); // ram area defined with size
vmstate_register_ram_global(sram);
//loads kernel of maximum size 2MB
armv7m_load_kernel(ARM_CPU(first_cpu), machine->kernel_filename, 2 * 1024 * 1024);
}
static void stm32f407ve_scu_machine_init(MachineClass *mc) //defines the machine init struct and description
{
mc->desc = "STM32F407 board with RAM";
mc->init = stm32f407ve_scu_init;
}
DEFINE_MACHINE("stm32f407ve_scu", stm32f407ve_scu_machine_init) //machine is defined with initialization clas
当我尝试配置并制作 QEMU 时,我没有收到任何错误,但是没有生成stm32f407ve_scu.o
和stm32f407ve_scu.d
。
为什么没有生成.o和.d文件?但是当我看到其他.c文件时,它们已经生成为.o和.c。
我在这里想念什么?我像添加其他文件一样添加了所有头文件,并使用相同的语法编写了机器描述。
答案 0 :(得分:1)
如果您使用的是obj-$(CONFIG_STM32F407VE_SCU) += stm32f407ve_scu.o
,则需要在某处启用CONFIG_STM32F407VE_SCU
来生成此文件。可以在configure
文件中进行编辑,也可以编辑default-configs/arm-softmmu.mak
并添加CONFIG_STM32F407VE_SCU=y
。
如果您只需要构建这个额外的文件,则可以像这样编辑Makefile.objs
:
obj-$(CONFIG_ARM_V7M) += armv7m.o stm32f407ve_scu.o
在使用ARMv7m(Cortex M4)时,将构建文件({CONFIG_ARM_V7M
等于y
)