Fix DEBUG_TB_CHECK build failure (balrog).
[qemu/mini2440.git] / hw / mips_r4k.c
blobeaaaad284fd9ef1d9691d3c46f0bbe97d2bc9235
1 #include "vl.h"
3 #define BIOS_FILENAME "mips_bios.bin"
4 //#define BIOS_FILENAME "system.bin"
5 #define KERNEL_LOAD_ADDR 0x80010000
6 #define INITRD_LOAD_ADDR 0x80800000
8 extern FILE *logfile;
10 static PITState *pit;
12 static void pic_irq_request(void *opaque, int level)
14 CPUState *env = first_cpu;
15 if (level) {
16 env->CP0_Cause |= 0x00000400;
17 cpu_interrupt(env, CPU_INTERRUPT_HARD);
18 } else {
19 env->CP0_Cause &= ~0x00000400;
20 cpu_reset_interrupt(env, CPU_INTERRUPT_HARD);
24 void cpu_mips_irqctrl_init (void)
28 uint32_t cpu_mips_get_random (CPUState *env)
30 uint32_t now = qemu_get_clock(vm_clock);
32 return now % (MIPS_TLB_NB - env->CP0_Wired) + env->CP0_Wired;
35 /* MIPS R4K timer */
36 uint32_t cpu_mips_get_count (CPUState *env)
38 return env->CP0_Count +
39 (uint32_t)muldiv64(qemu_get_clock(vm_clock),
40 100 * 1000 * 1000, ticks_per_sec);
43 static void cpu_mips_update_count (CPUState *env, uint32_t count,
44 uint32_t compare)
46 uint64_t now, next;
47 uint32_t tmp;
49 tmp = count;
50 if (count == compare)
51 tmp++;
52 now = qemu_get_clock(vm_clock);
53 next = now + muldiv64(compare - tmp, ticks_per_sec, 100 * 1000 * 1000);
54 if (next == now)
55 next++;
56 #if 0
57 if (logfile) {
58 fprintf(logfile, "%s: 0x%08llx %08x %08x => 0x%08llx\n",
59 __func__, now, count, compare, next - now);
61 #endif
62 /* Store new count and compare registers */
63 env->CP0_Compare = compare;
64 env->CP0_Count =
65 count - (uint32_t)muldiv64(now, 100 * 1000 * 1000, ticks_per_sec);
66 /* Adjust timer */
67 qemu_mod_timer(env->timer, next);
70 void cpu_mips_store_count (CPUState *env, uint32_t value)
72 cpu_mips_update_count(env, value, env->CP0_Compare);
75 void cpu_mips_store_compare (CPUState *env, uint32_t value)
77 cpu_mips_update_count(env, cpu_mips_get_count(env), value);
78 env->CP0_Cause &= ~0x00008000;
79 cpu_reset_interrupt(env, CPU_INTERRUPT_HARD);
82 static void mips_timer_cb (void *opaque)
84 CPUState *env;
86 env = opaque;
87 #if 0
88 if (logfile) {
89 fprintf(logfile, "%s\n", __func__);
91 #endif
92 cpu_mips_update_count(env, cpu_mips_get_count(env), env->CP0_Compare);
93 env->CP0_Cause |= 0x00008000;
94 cpu_interrupt(env, CPU_INTERRUPT_HARD);
97 void cpu_mips_clock_init (CPUState *env)
99 env->timer = qemu_new_timer(vm_clock, &mips_timer_cb, env);
100 env->CP0_Compare = 0;
101 cpu_mips_update_count(env, 1, 0);
104 static void io_writeb (void *opaque, target_phys_addr_t addr, uint32_t value)
106 #if 0
107 if (logfile)
108 fprintf(logfile, "%s: addr %08x val %08x\n", __func__, addr, value);
109 #endif
110 cpu_outb(NULL, addr & 0xffff, value);
113 static uint32_t io_readb (void *opaque, target_phys_addr_t addr)
115 uint32_t ret = cpu_inb(NULL, addr & 0xffff);
116 #if 0
117 if (logfile)
118 fprintf(logfile, "%s: addr %08x val %08x\n", __func__, addr, ret);
119 #endif
120 return ret;
123 static void io_writew (void *opaque, target_phys_addr_t addr, uint32_t value)
125 #if 0
126 if (logfile)
127 fprintf(logfile, "%s: addr %08x val %08x\n", __func__, addr, value);
128 #endif
129 #ifdef TARGET_WORDS_BIGENDIAN
130 value = bswap16(value);
131 #endif
132 cpu_outw(NULL, addr & 0xffff, value);
135 static uint32_t io_readw (void *opaque, target_phys_addr_t addr)
137 uint32_t ret = cpu_inw(NULL, addr & 0xffff);
138 #ifdef TARGET_WORDS_BIGENDIAN
139 ret = bswap16(ret);
140 #endif
141 #if 0
142 if (logfile)
143 fprintf(logfile, "%s: addr %08x val %08x\n", __func__, addr, ret);
144 #endif
145 return ret;
148 static void io_writel (void *opaque, target_phys_addr_t addr, uint32_t value)
150 #if 0
151 if (logfile)
152 fprintf(logfile, "%s: addr %08x val %08x\n", __func__, addr, value);
153 #endif
154 #ifdef TARGET_WORDS_BIGENDIAN
155 value = bswap32(value);
156 #endif
157 cpu_outl(NULL, addr & 0xffff, value);
160 static uint32_t io_readl (void *opaque, target_phys_addr_t addr)
162 uint32_t ret = cpu_inl(NULL, addr & 0xffff);
164 #ifdef TARGET_WORDS_BIGENDIAN
165 ret = bswap32(ret);
166 #endif
167 #if 0
168 if (logfile)
169 fprintf(logfile, "%s: addr %08x val %08x\n", __func__, addr, ret);
170 #endif
171 return ret;
174 CPUWriteMemoryFunc *io_write[] = {
175 &io_writeb,
176 &io_writew,
177 &io_writel,
180 CPUReadMemoryFunc *io_read[] = {
181 &io_readb,
182 &io_readw,
183 &io_readl,
186 void mips_r4k_init (int ram_size, int vga_ram_size, int boot_device,
187 DisplayState *ds, const char **fd_filename, int snapshot,
188 const char *kernel_filename, const char *kernel_cmdline,
189 const char *initrd_filename)
191 char buf[1024];
192 target_ulong kernel_base, kernel_size, initrd_base, initrd_size;
193 unsigned long bios_offset;
194 int io_memory;
195 int linux_boot;
196 int ret;
197 CPUState *env;
199 printf("%s: start\n", __func__);
200 linux_boot = (kernel_filename != NULL);
202 env = cpu_init();
203 register_savevm("cpu", 0, 3, cpu_save, cpu_load, env);
205 /* allocate RAM */
206 cpu_register_physical_memory(0, ram_size, IO_MEM_RAM);
207 bios_offset = ram_size + vga_ram_size;
208 snprintf(buf, sizeof(buf), "%s/%s", bios_dir, BIOS_FILENAME);
209 printf("%s: load BIOS '%s' size %d\n", __func__, buf, BIOS_SIZE);
210 ret = load_image(buf, phys_ram_base + bios_offset);
211 if (ret != BIOS_SIZE) {
212 fprintf(stderr, "qemu: could not load MIPS bios '%s'\n", buf);
213 exit(1);
215 cpu_register_physical_memory((uint32_t)(0x1fc00000),
216 BIOS_SIZE, bios_offset | IO_MEM_ROM);
217 #if 0
218 memcpy(phys_ram_base + 0x10000, phys_ram_base + bios_offset, BIOS_SIZE);
219 env->PC = 0x80010004;
220 #else
221 env->PC = 0xBFC00004;
222 #endif
223 if (linux_boot) {
224 kernel_base = KERNEL_LOAD_ADDR;
225 /* now we can load the kernel */
226 kernel_size = load_image(kernel_filename,
227 phys_ram_base + (kernel_base - 0x80000000));
228 if (kernel_size == (target_ulong) -1) {
229 fprintf(stderr, "qemu: could not load kernel '%s'\n",
230 kernel_filename);
231 exit(1);
233 /* load initrd */
234 if (initrd_filename) {
235 initrd_base = INITRD_LOAD_ADDR;
236 initrd_size = load_image(initrd_filename,
237 phys_ram_base + initrd_base);
238 if (initrd_size == (target_ulong) -1) {
239 fprintf(stderr, "qemu: could not load initial ram disk '%s'\n",
240 initrd_filename);
241 exit(1);
243 } else {
244 initrd_base = 0;
245 initrd_size = 0;
247 env->PC = KERNEL_LOAD_ADDR;
248 /* Store command line. */
249 strcpy (phys_ram_base + (16 << 20) - 256, kernel_cmdline);
250 /* FIXME: little endian support */
251 *(int *)(phys_ram_base + (16 << 20) - 260) = tswap32 (0x12345678);
252 *(int *)(phys_ram_base + (16 << 20) - 264) = tswap32 (ram_size);
253 } else {
254 kernel_base = 0;
255 kernel_size = 0;
256 initrd_base = 0;
257 initrd_size = 0;
260 /* Init internal devices */
261 cpu_mips_clock_init(env);
262 cpu_mips_irqctrl_init();
264 /* Register 64 KB of ISA IO space at 0x14000000 */
265 io_memory = cpu_register_io_memory(0, io_read, io_write, NULL);
266 cpu_register_physical_memory(0x14000000, 0x00010000, io_memory);
267 isa_mem_base = 0x10000000;
269 isa_pic = pic_init(pic_irq_request, env);
270 pit = pit_init(0x40, 0);
271 serial_init(&pic_set_irq_new, isa_pic, 0x3f8, 4, serial_hds[0]);
272 vga_initialize(NULL, ds, phys_ram_base + ram_size, ram_size,
273 vga_ram_size, 0, 0);
275 if (nd_table[0].vlan) {
276 if (nd_table[0].model == NULL
277 || strcmp(nd_table[0].model, "ne2k_isa") == 0) {
278 isa_ne2000_init(0x300, 9, &nd_table[0]);
279 } else {
280 fprintf(stderr, "qemu: Unsupported NIC: %s\n", nd_table[0].model);
281 exit (1);
286 QEMUMachine mips_machine = {
287 "mips",
288 "mips r4k platform",
289 mips_r4k_init,