unicorn/qemu/hw/mips/mips_r4k.c

50 lines
1.2 KiB
C
Raw Normal View History

2015-08-21 09:04:50 +02:00
/*
* QEMU/MIPS pseudo-board
*
* emulates a simple machine with ISA-like bus.
* ISA IO space mapped to the 0x14000000 (PHYS) and
* ISA memory at the 0x10000000 (PHYS, 16Mb in size).
* All peripherial devices are attached to this "bus" with
* the standard PC ISA addresses.
*/
/* Unicorn Emulator Engine */
/* By Nguyen Anh Quynh, 2015 */
#include "qemu/osdep.h"
#include "qapi/error.h"
#include "qemu-common.h"
#include "cpu.h"
2015-08-21 09:04:50 +02:00
#include "hw/hw.h"
#include "hw/mips/mips.h"
#include "hw/mips/cpudevs.h"
#include "sysemu/sysemu.h"
#include "hw/boards.h"
#include "exec/address-spaces.h"
static int mips_r4k_init(struct uc_struct *uc, MachineState *machine)
2015-08-21 09:04:50 +02:00
{
uc->cpu = cpu_create(uc, machine->cpu_type);
2015-08-21 09:04:50 +02:00
2016-07-10 03:16:00 +02:00
if (uc->cpu == NULL) {
2015-08-21 09:04:50 +02:00
fprintf(stderr, "Unable to find CPU definition\n");
return -1;
2015-08-21 09:04:50 +02:00
}
return 0;
2015-08-21 09:04:50 +02:00
}
static void mips_machine_init(struct uc_struct *uc, MachineClass *mc)
2015-08-21 09:04:50 +02:00
{
mc->init = mips_r4k_init;
mc->is_default = 1;
mc->arch = UC_ARCH_MIPS;
#ifdef TARGET_MIPS64
mc->default_cpu_type = MIPS_CPU_TYPE_NAME("R4000");
#else
mc->default_cpu_type = MIPS_CPU_TYPE_NAME("24Kf");
#endif
2015-08-21 09:04:50 +02:00
}
DEFINE_MACHINE("mips", mips_machine_init)