2 * Motorola ColdFire MCF5208 SoC emulation.
4 * Copyright (c) 2007 CodeSourcery.
6 * This code is licensed under the GPL
10 #include "qemu-timer.h"
17 #define SYS_FREQ 66000000
19 #define PCSR_EN 0x0001
20 #define PCSR_RLD 0x0002
21 #define PCSR_PIF 0x0004
22 #define PCSR_PIE 0x0008
23 #define PCSR_OVW 0x0010
24 #define PCSR_DBG 0x0020
25 #define PCSR_DOZE 0x0040
26 #define PCSR_PRE_SHIFT 8
27 #define PCSR_PRE_MASK 0x0f00
37 static void m5208_timer_update(m5208_timer_state
*s
)
39 if ((s
->pcsr
& (PCSR_PIE
| PCSR_PIF
)) == (PCSR_PIE
| PCSR_PIF
))
40 qemu_irq_raise(s
->irq
);
42 qemu_irq_lower(s
->irq
);
45 static void m5208_timer_write(void *opaque
, target_phys_addr_t offset
,
48 m5208_timer_state
*s
= (m5208_timer_state
*)opaque
;
53 /* The PIF bit is set-to-clear. */
54 if (value
& PCSR_PIF
) {
58 /* Avoid frobbing the timer if we're just twiddling IRQ bits. */
59 if (((s
->pcsr
^ value
) & ~PCSR_PIE
) == 0) {
61 m5208_timer_update(s
);
65 if (s
->pcsr
& PCSR_EN
)
66 ptimer_stop(s
->timer
);
70 prescale
= 1 << ((s
->pcsr
& PCSR_PRE_MASK
) >> PCSR_PRE_SHIFT
);
71 ptimer_set_freq(s
->timer
, (SYS_FREQ
/ 2) / prescale
);
72 if (s
->pcsr
& PCSR_RLD
)
76 ptimer_set_limit(s
->timer
, limit
, 0);
78 if (s
->pcsr
& PCSR_EN
)
79 ptimer_run(s
->timer
, 0);
84 if ((s
->pcsr
& PCSR_RLD
) == 0) {
85 if (s
->pcsr
& PCSR_OVW
)
86 ptimer_set_count(s
->timer
, value
);
88 ptimer_set_limit(s
->timer
, value
, s
->pcsr
& PCSR_OVW
);
94 hw_error("m5208_timer_write: Bad offset 0x%x\n", (int)offset
);
97 m5208_timer_update(s
);
100 static void m5208_timer_trigger(void *opaque
)
102 m5208_timer_state
*s
= (m5208_timer_state
*)opaque
;
104 m5208_timer_update(s
);
107 static uint32_t m5208_timer_read(void *opaque
, target_phys_addr_t addr
)
109 m5208_timer_state
*s
= (m5208_timer_state
*)opaque
;
116 return ptimer_get_count(s
->timer
);
118 hw_error("m5208_timer_read: Bad offset 0x%x\n", (int)addr
);
123 static CPUReadMemoryFunc
* const m5208_timer_readfn
[] = {
129 static CPUWriteMemoryFunc
* const m5208_timer_writefn
[] = {
135 static uint32_t m5208_sys_read(void *opaque
, target_phys_addr_t addr
)
138 case 0x110: /* SDCS0 */
141 for (n
= 0; n
< 32; n
++) {
142 if (ram_size
< (2u << n
))
145 return (n
- 1) | 0x40000000;
147 case 0x114: /* SDCS1 */
151 hw_error("m5208_sys_read: Bad offset 0x%x\n", (int)addr
);
156 static void m5208_sys_write(void *opaque
, target_phys_addr_t addr
,
159 hw_error("m5208_sys_write: Bad offset 0x%x\n", (int)addr
);
162 static CPUReadMemoryFunc
* const m5208_sys_readfn
[] = {
168 static CPUWriteMemoryFunc
* const m5208_sys_writefn
[] = {
174 static void mcf5208_sys_init(qemu_irq
*pic
)
177 m5208_timer_state
*s
;
181 iomemtype
= cpu_register_io_memory(m5208_sys_readfn
,
182 m5208_sys_writefn
, NULL
,
183 DEVICE_NATIVE_ENDIAN
);
185 cpu_register_physical_memory(0xfc0a8000, 0x00004000, iomemtype
);
187 for (i
= 0; i
< 2; i
++) {
188 s
= (m5208_timer_state
*)qemu_mallocz(sizeof(m5208_timer_state
));
189 bh
= qemu_bh_new(m5208_timer_trigger
, s
);
190 s
->timer
= ptimer_init(bh
);
191 iomemtype
= cpu_register_io_memory(m5208_timer_readfn
,
192 m5208_timer_writefn
, s
,
193 DEVICE_NATIVE_ENDIAN
);
194 cpu_register_physical_memory(0xfc080000 + 0x4000 * i
, 0x00004000,
200 static void mcf5208evb_init(ram_addr_t ram_size
,
201 const char *boot_device
,
202 const char *kernel_filename
, const char *kernel_cmdline
,
203 const char *initrd_filename
, const char *cpu_model
)
208 target_phys_addr_t entry
;
213 env
= cpu_init(cpu_model
);
215 fprintf(stderr
, "Unable to find m68k CPU definition\n");
219 /* Initialize CPU registers. */
221 /* TODO: Configure BARs. */
223 /* DRAM at 0x40000000 */
224 cpu_register_physical_memory(0x40000000, ram_size
,
225 qemu_ram_alloc(NULL
, "mcf5208.ram", ram_size
) | IO_MEM_RAM
);
228 cpu_register_physical_memory(0x80000000, 16384,
229 qemu_ram_alloc(NULL
, "mcf5208.sram", 16384) | IO_MEM_RAM
);
231 /* Internal peripherals. */
232 pic
= mcf_intc_init(0xfc048000, env
);
234 mcf_uart_mm_init(0xfc060000, pic
[26], serial_hds
[0]);
235 mcf_uart_mm_init(0xfc064000, pic
[27], serial_hds
[1]);
236 mcf_uart_mm_init(0xfc068000, pic
[28], serial_hds
[2]);
238 mcf5208_sys_init(pic
);
241 fprintf(stderr
, "Too many NICs\n");
244 if (nd_table
[0].vlan
)
245 mcf_fec_init(&nd_table
[0], 0xfc030000, pic
+ 36);
247 /* 0xfc000000 SCM. */
248 /* 0xfc004000 XBS. */
249 /* 0xfc008000 FlexBus CS. */
250 /* 0xfc030000 FEC. */
251 /* 0xfc040000 SCM + Power management. */
252 /* 0xfc044000 eDMA. */
253 /* 0xfc048000 INTC. */
254 /* 0xfc058000 I2C. */
255 /* 0xfc05c000 QSPI. */
256 /* 0xfc060000 UART0. */
257 /* 0xfc064000 UART0. */
258 /* 0xfc068000 UART0. */
259 /* 0xfc070000 DMA timers. */
260 /* 0xfc080000 PIT0. */
261 /* 0xfc084000 PIT1. */
262 /* 0xfc088000 EPORT. */
263 /* 0xfc08c000 Watchdog. */
264 /* 0xfc090000 clock module. */
265 /* 0xfc0a0000 CCM + reset. */
266 /* 0xfc0a4000 GPIO. */
267 /* 0xfc0a8000 SDRAM controller. */
270 if (!kernel_filename
) {
271 fprintf(stderr
, "Kernel image must be specified\n");
275 kernel_size
= load_elf(kernel_filename
, NULL
, NULL
, &elf_entry
,
276 NULL
, NULL
, 1, ELF_MACHINE
, 0);
278 if (kernel_size
< 0) {
279 kernel_size
= load_uimage(kernel_filename
, &entry
, NULL
, NULL
);
281 if (kernel_size
< 0) {
282 kernel_size
= load_image_targphys(kernel_filename
, 0x40000000,
286 if (kernel_size
< 0) {
287 fprintf(stderr
, "qemu: could not load kernel '%s'\n", kernel_filename
);
294 static QEMUMachine mcf5208evb_machine
= {
295 .name
= "mcf5208evb",
296 .desc
= "MCF5206EVB",
297 .init
= mcf5208evb_init
,
301 static void mcf5208evb_machine_init(void)
303 qemu_register_machine(&mcf5208evb_machine
);
306 machine_init(mcf5208evb_machine_init
);