2 * Arnewsh 5206 ColdFire system emulation.
4 * Copyright (c) 2007 CodeSourcery.
6 * This code is licenced under the GPL
17 #define KERNEL_LOAD_ADDR 0x10000
18 #define AN5206_MBAR_ADDR 0x10000000
19 #define AN5206_RAMBAR_ADDR 0x20000000
21 /* Stub functions for hardware that doesn't exist. */
22 void pic_info(Monitor
*mon
)
26 void irq_info(Monitor
*mon
)
32 static void an5206_init(ram_addr_t ram_size
,
33 const char *boot_device
,
34 const char *kernel_filename
, const char *kernel_cmdline
,
35 const char *initrd_filename
, const char *cpu_model
)
40 target_phys_addr_t entry
;
44 env
= cpu_init(cpu_model
);
46 hw_error("Unable to find m68k CPU definition\n");
49 /* Initialize CPU registers. */
51 /* TODO: allow changing MBAR and RAMBAR. */
52 env
->mbar
= AN5206_MBAR_ADDR
| 1;
53 env
->rambar0
= AN5206_RAMBAR_ADDR
| 1;
55 /* DRAM at address zero */
56 cpu_register_physical_memory(0, ram_size
,
57 qemu_ram_alloc(NULL
, "an5206.ram", ram_size
) | IO_MEM_RAM
);
60 cpu_register_physical_memory(AN5206_RAMBAR_ADDR
, 512,
61 qemu_ram_alloc(NULL
, "an5206.sram", 512) | IO_MEM_RAM
);
63 mcf5206_init(AN5206_MBAR_ADDR
, env
);
66 if (!kernel_filename
) {
67 fprintf(stderr
, "Kernel image must be specified\n");
71 kernel_size
= load_elf(kernel_filename
, NULL
, NULL
, &elf_entry
,
72 NULL
, NULL
, 1, ELF_MACHINE
, 0);
74 if (kernel_size
< 0) {
75 kernel_size
= load_uimage(kernel_filename
, &entry
, NULL
, NULL
);
77 if (kernel_size
< 0) {
78 kernel_size
= load_image_targphys(kernel_filename
, KERNEL_LOAD_ADDR
,
79 ram_size
- KERNEL_LOAD_ADDR
);
80 entry
= KERNEL_LOAD_ADDR
;
82 if (kernel_size
< 0) {
83 fprintf(stderr
, "qemu: could not load kernel '%s'\n", kernel_filename
);
90 static QEMUMachine an5206_machine
= {
92 .desc
= "Arnewsh 5206",
96 static void an5206_machine_init(void)
98 qemu_register_machine(&an5206_machine
);
101 machine_init(an5206_machine_init
);