Merge remote-tracking branch 'remotes/kraxel/tags/pull-sdl-20150312-2' into staging
[qemu/ar7.git] / hw / m68k / an5206.c
blobf1f13504c0660c98bdd63fd72f7f77728c3d351a
1 /*
2 * Arnewsh 5206 ColdFire system emulation.
4 * Copyright (c) 2007 CodeSourcery.
6 * This code is licensed under the GPL
7 */
9 #include "hw/hw.h"
10 #include "hw/m68k/mcf.h"
11 #include "hw/boards.h"
12 #include "hw/loader.h"
13 #include "elf.h"
14 #include "exec/address-spaces.h"
15 #include "sysemu/qtest.h"
17 #define KERNEL_LOAD_ADDR 0x10000
18 #define AN5206_MBAR_ADDR 0x10000000
19 #define AN5206_RAMBAR_ADDR 0x20000000
21 /* Board init. */
23 static void an5206_init(MachineState *machine)
25 ram_addr_t ram_size = machine->ram_size;
26 const char *cpu_model = machine->cpu_model;
27 const char *kernel_filename = machine->kernel_filename;
28 M68kCPU *cpu;
29 CPUM68KState *env;
30 int kernel_size;
31 uint64_t elf_entry;
32 hwaddr entry;
33 MemoryRegion *address_space_mem = get_system_memory();
34 MemoryRegion *ram = g_new(MemoryRegion, 1);
35 MemoryRegion *sram = g_new(MemoryRegion, 1);
37 if (!cpu_model) {
38 cpu_model = "m5206";
40 cpu = cpu_m68k_init(cpu_model);
41 if (!cpu) {
42 hw_error("Unable to find m68k CPU definition\n");
44 env = &cpu->env;
46 /* Initialize CPU registers. */
47 env->vbr = 0;
48 /* TODO: allow changing MBAR and RAMBAR. */
49 env->mbar = AN5206_MBAR_ADDR | 1;
50 env->rambar0 = AN5206_RAMBAR_ADDR | 1;
52 /* DRAM at address zero */
53 memory_region_init_ram(ram, NULL, "an5206.ram", ram_size, &error_abort);
54 vmstate_register_ram_global(ram);
55 memory_region_add_subregion(address_space_mem, 0, ram);
57 /* Internal SRAM. */
58 memory_region_init_ram(sram, NULL, "an5206.sram", 512, &error_abort);
59 vmstate_register_ram_global(sram);
60 memory_region_add_subregion(address_space_mem, AN5206_RAMBAR_ADDR, sram);
62 mcf5206_init(address_space_mem, AN5206_MBAR_ADDR, cpu);
64 /* Load kernel. */
65 if (!kernel_filename) {
66 if (qtest_enabled()) {
67 return;
69 fprintf(stderr, "Kernel image must be specified\n");
70 exit(1);
73 kernel_size = load_elf(kernel_filename, NULL, NULL, &elf_entry,
74 NULL, NULL, 1, ELF_MACHINE, 0);
75 entry = elf_entry;
76 if (kernel_size < 0) {
77 kernel_size = load_uimage(kernel_filename, &entry, NULL, NULL,
78 NULL, NULL);
80 if (kernel_size < 0) {
81 kernel_size = load_image_targphys(kernel_filename, KERNEL_LOAD_ADDR,
82 ram_size - KERNEL_LOAD_ADDR);
83 entry = KERNEL_LOAD_ADDR;
85 if (kernel_size < 0) {
86 fprintf(stderr, "qemu: could not load kernel '%s'\n", kernel_filename);
87 exit(1);
90 env->pc = entry;
93 static QEMUMachine an5206_machine = {
94 .name = "an5206",
95 .desc = "Arnewsh 5206",
96 .init = an5206_init,
99 static void an5206_machine_init(void)
101 qemu_register_machine(&an5206_machine);
104 machine_init(an5206_machine_init);