]>
Commit | Line | Data |
---|---|---|
5fafdf24 | 1 | /* |
0633879f PB |
2 | * Arnewsh 5206 ColdFire system emulation. |
3 | * | |
4 | * Copyright (c) 2007 CodeSourcery. | |
5 | * | |
8e31bf38 | 6 | * This code is licensed under the GPL |
0633879f PB |
7 | */ |
8 | ||
87ecb68b PB |
9 | #include "hw.h" |
10 | #include "mcf.h" | |
87ecb68b | 11 | #include "boards.h" |
ca20cf32 BS |
12 | #include "loader.h" |
13 | #include "elf.h" | |
72e4d255 | 14 | #include "exec-memory.h" |
0633879f PB |
15 | |
16 | #define KERNEL_LOAD_ADDR 0x10000 | |
17 | #define AN5206_MBAR_ADDR 0x10000000 | |
18 | #define AN5206_RAMBAR_ADDR 0x20000000 | |
19 | ||
0633879f PB |
20 | /* Board init. */ |
21 | ||
c227f099 | 22 | static void an5206_init(ram_addr_t ram_size, |
3023f332 | 23 | const char *boot_device, |
0633879f PB |
24 | const char *kernel_filename, const char *kernel_cmdline, |
25 | const char *initrd_filename, const char *cpu_model) | |
26 | { | |
27 | CPUState *env; | |
28 | int kernel_size; | |
29 | uint64_t elf_entry; | |
c227f099 | 30 | target_phys_addr_t entry; |
72e4d255 AK |
31 | MemoryRegion *address_space_mem = get_system_memory(); |
32 | MemoryRegion *ram = g_new(MemoryRegion, 1); | |
33 | MemoryRegion *sram = g_new(MemoryRegion, 1); | |
0633879f | 34 | |
0633879f PB |
35 | if (!cpu_model) |
36 | cpu_model = "m5206"; | |
aaed909a FB |
37 | env = cpu_init(cpu_model); |
38 | if (!env) { | |
2ac71179 | 39 | hw_error("Unable to find m68k CPU definition\n"); |
20dcee94 | 40 | } |
0633879f PB |
41 | |
42 | /* Initialize CPU registers. */ | |
43 | env->vbr = 0; | |
44 | /* TODO: allow changing MBAR and RAMBAR. */ | |
45 | env->mbar = AN5206_MBAR_ADDR | 1; | |
46 | env->rambar0 = AN5206_RAMBAR_ADDR | 1; | |
47 | ||
48 | /* DRAM at address zero */ | |
72e4d255 AK |
49 | memory_region_init_ram(ram, NULL, "an5206.ram", ram_size); |
50 | memory_region_add_subregion(address_space_mem, 0, ram); | |
0633879f PB |
51 | |
52 | /* Internal SRAM. */ | |
72e4d255 AK |
53 | memory_region_init_ram(sram, NULL, "an5206.sram", 512); |
54 | memory_region_add_subregion(address_space_mem, AN5206_RAMBAR_ADDR, sram); | |
0633879f PB |
55 | |
56 | mcf5206_init(AN5206_MBAR_ADDR, env); | |
57 | ||
58 | /* Load kernel. */ | |
59 | if (!kernel_filename) { | |
60 | fprintf(stderr, "Kernel image must be specified\n"); | |
61 | exit(1); | |
62 | } | |
63 | ||
409dbce5 AJ |
64 | kernel_size = load_elf(kernel_filename, NULL, NULL, &elf_entry, |
65 | NULL, NULL, 1, ELF_MACHINE, 0); | |
0633879f PB |
66 | entry = elf_entry; |
67 | if (kernel_size < 0) { | |
5a9154e0 | 68 | kernel_size = load_uimage(kernel_filename, &entry, NULL, NULL); |
0633879f PB |
69 | } |
70 | if (kernel_size < 0) { | |
dcac9679 PB |
71 | kernel_size = load_image_targphys(kernel_filename, KERNEL_LOAD_ADDR, |
72 | ram_size - KERNEL_LOAD_ADDR); | |
0633879f PB |
73 | entry = KERNEL_LOAD_ADDR; |
74 | } | |
75 | if (kernel_size < 0) { | |
76 | fprintf(stderr, "qemu: could not load kernel '%s'\n", kernel_filename); | |
77 | exit(1); | |
78 | } | |
79 | ||
80 | env->pc = entry; | |
81 | } | |
82 | ||
f80f9ec9 | 83 | static QEMUMachine an5206_machine = { |
4b32e168 AL |
84 | .name = "an5206", |
85 | .desc = "Arnewsh 5206", | |
86 | .init = an5206_init, | |
0633879f | 87 | }; |
f80f9ec9 AL |
88 | |
89 | static void an5206_machine_init(void) | |
90 | { | |
91 | qemu_register_machine(&an5206_machine); | |
92 | } | |
93 | ||
94 | machine_init(an5206_machine_init); |