]>
Commit | Line | Data |
---|---|---|
3475187d | 1 | /* |
c7ba218d | 2 | * QEMU Sun4u/Sun4v System Emulator |
5fafdf24 | 3 | * |
3475187d | 4 | * Copyright (c) 2005 Fabrice Bellard |
5fafdf24 | 5 | * |
3475187d FB |
6 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
7 | * of this software and associated documentation files (the "Software"), to deal | |
8 | * in the Software without restriction, including without limitation the rights | |
9 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
10 | * copies of the Software, and to permit persons to whom the Software is | |
11 | * furnished to do so, subject to the following conditions: | |
12 | * | |
13 | * The above copyright notice and this permission notice shall be included in | |
14 | * all copies or substantial portions of the Software. | |
15 | * | |
16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | |
19 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
21 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | |
22 | * THE SOFTWARE. | |
23 | */ | |
87ecb68b PB |
24 | #include "hw.h" |
25 | #include "pci.h" | |
18e08a55 | 26 | #include "apb_pci.h" |
87ecb68b PB |
27 | #include "pc.h" |
28 | #include "nvram.h" | |
29 | #include "fdc.h" | |
30 | #include "net.h" | |
31 | #include "qemu-timer.h" | |
32 | #include "sysemu.h" | |
33 | #include "boards.h" | |
d2c63fc1 | 34 | #include "firmware_abi.h" |
3cce6243 | 35 | #include "fw_cfg.h" |
1baffa46 | 36 | #include "sysbus.h" |
977e1244 | 37 | #include "ide.h" |
ca20cf32 BS |
38 | #include "loader.h" |
39 | #include "elf.h" | |
3475187d | 40 | |
9d926598 | 41 | //#define DEBUG_IRQ |
b430a225 | 42 | //#define DEBUG_EBUS |
8f4efc55 | 43 | //#define DEBUG_TIMER |
9d926598 BS |
44 | |
45 | #ifdef DEBUG_IRQ | |
b430a225 | 46 | #define CPUIRQ_DPRINTF(fmt, ...) \ |
001faf32 | 47 | do { printf("CPUIRQ: " fmt , ## __VA_ARGS__); } while (0) |
9d926598 | 48 | #else |
b430a225 BS |
49 | #define CPUIRQ_DPRINTF(fmt, ...) |
50 | #endif | |
51 | ||
52 | #ifdef DEBUG_EBUS | |
53 | #define EBUS_DPRINTF(fmt, ...) \ | |
54 | do { printf("EBUS: " fmt , ## __VA_ARGS__); } while (0) | |
55 | #else | |
56 | #define EBUS_DPRINTF(fmt, ...) | |
9d926598 BS |
57 | #endif |
58 | ||
8f4efc55 IK |
59 | #ifdef DEBUG_TIMER |
60 | #define TIMER_DPRINTF(fmt, ...) \ | |
61 | do { printf("TIMER: " fmt , ## __VA_ARGS__); } while (0) | |
62 | #else | |
63 | #define TIMER_DPRINTF(fmt, ...) | |
64 | #endif | |
65 | ||
83469015 FB |
66 | #define KERNEL_LOAD_ADDR 0x00404000 |
67 | #define CMDLINE_ADDR 0x003ff000 | |
68 | #define INITRD_LOAD_ADDR 0x00300000 | |
ac2e9d66 | 69 | #define PROM_SIZE_MAX (4 * 1024 * 1024) |
f930d07e | 70 | #define PROM_VADDR 0x000ffd00000ULL |
83469015 | 71 | #define APB_SPECIAL_BASE 0x1fe00000000ULL |
f930d07e BS |
72 | #define APB_MEM_BASE 0x1ff00000000ULL |
73 | #define VGA_BASE (APB_MEM_BASE + 0x400000ULL) | |
74 | #define PROM_FILENAME "openbios-sparc64" | |
83469015 | 75 | #define NVRAM_SIZE 0x2000 |
e4bcb14c | 76 | #define MAX_IDE_BUS 2 |
3cce6243 | 77 | #define BIOS_CFG_IOPORT 0x510 |
7589690c BS |
78 | #define FW_CFG_SPARC64_WIDTH (FW_CFG_ARCH_LOCAL + 0x00) |
79 | #define FW_CFG_SPARC64_HEIGHT (FW_CFG_ARCH_LOCAL + 0x01) | |
80 | #define FW_CFG_SPARC64_DEPTH (FW_CFG_ARCH_LOCAL + 0x02) | |
3475187d | 81 | |
9d926598 BS |
82 | #define MAX_PILS 16 |
83 | ||
8fa211e8 BS |
84 | #define TICK_MAX 0x7fffffffffffffffULL |
85 | ||
c7ba218d BS |
86 | struct hwdef { |
87 | const char * const default_cpu_model; | |
905fdcb5 | 88 | uint16_t machine_id; |
e87231d4 BS |
89 | uint64_t prom_addr; |
90 | uint64_t console_serial_base; | |
c7ba218d BS |
91 | }; |
92 | ||
3475187d FB |
93 | int DMA_get_channel_mode (int nchan) |
94 | { | |
95 | return 0; | |
96 | } | |
97 | int DMA_read_memory (int nchan, void *buf, int pos, int size) | |
98 | { | |
99 | return 0; | |
100 | } | |
101 | int DMA_write_memory (int nchan, void *buf, int pos, int size) | |
102 | { | |
103 | return 0; | |
104 | } | |
105 | void DMA_hold_DREQ (int nchan) {} | |
106 | void DMA_release_DREQ (int nchan) {} | |
107 | void DMA_schedule(int nchan) {} | |
4556bd8b BS |
108 | |
109 | void DMA_init(int high_page_enable, qemu_irq *cpu_request_exit) | |
110 | { | |
111 | } | |
112 | ||
3475187d FB |
113 | void DMA_register_channel (int nchan, |
114 | DMA_transfer_handler transfer_handler, | |
115 | void *opaque) | |
116 | { | |
117 | } | |
118 | ||
513f789f | 119 | static int fw_cfg_boot_set(void *opaque, const char *boot_device) |
81864572 | 120 | { |
513f789f | 121 | fw_cfg_add_i16(opaque, FW_CFG_BOOT_DEVICE, boot_device[0]); |
81864572 BS |
122 | return 0; |
123 | } | |
124 | ||
43a34704 BS |
125 | static int sun4u_NVRAM_set_params(M48t59State *nvram, uint16_t NVRAM_size, |
126 | const char *arch, ram_addr_t RAM_size, | |
127 | const char *boot_devices, | |
128 | uint32_t kernel_image, uint32_t kernel_size, | |
129 | const char *cmdline, | |
130 | uint32_t initrd_image, uint32_t initrd_size, | |
131 | uint32_t NVRAM_image, | |
132 | int width, int height, int depth, | |
133 | const uint8_t *macaddr) | |
83469015 | 134 | { |
66508601 BS |
135 | unsigned int i; |
136 | uint32_t start, end; | |
d2c63fc1 | 137 | uint8_t image[0x1ff0]; |
d2c63fc1 BS |
138 | struct OpenBIOS_nvpart_v1 *part_header; |
139 | ||
140 | memset(image, '\0', sizeof(image)); | |
141 | ||
513f789f | 142 | start = 0; |
83469015 | 143 | |
66508601 BS |
144 | // OpenBIOS nvram variables |
145 | // Variable partition | |
d2c63fc1 BS |
146 | part_header = (struct OpenBIOS_nvpart_v1 *)&image[start]; |
147 | part_header->signature = OPENBIOS_PART_SYSTEM; | |
363a37d5 | 148 | pstrcpy(part_header->name, sizeof(part_header->name), "system"); |
66508601 | 149 | |
d2c63fc1 | 150 | end = start + sizeof(struct OpenBIOS_nvpart_v1); |
66508601 | 151 | for (i = 0; i < nb_prom_envs; i++) |
d2c63fc1 BS |
152 | end = OpenBIOS_set_var(image, end, prom_envs[i]); |
153 | ||
154 | // End marker | |
155 | image[end++] = '\0'; | |
66508601 | 156 | |
66508601 | 157 | end = start + ((end - start + 15) & ~15); |
d2c63fc1 | 158 | OpenBIOS_finish_partition(part_header, end - start); |
66508601 BS |
159 | |
160 | // free partition | |
161 | start = end; | |
d2c63fc1 BS |
162 | part_header = (struct OpenBIOS_nvpart_v1 *)&image[start]; |
163 | part_header->signature = OPENBIOS_PART_FREE; | |
363a37d5 | 164 | pstrcpy(part_header->name, sizeof(part_header->name), "free"); |
66508601 BS |
165 | |
166 | end = 0x1fd0; | |
d2c63fc1 BS |
167 | OpenBIOS_finish_partition(part_header, end - start); |
168 | ||
0d31cb99 BS |
169 | Sun_init_header((struct Sun_nvram *)&image[0x1fd8], macaddr, 0x80); |
170 | ||
d2c63fc1 BS |
171 | for (i = 0; i < sizeof(image); i++) |
172 | m48t59_write(nvram, i, image[i]); | |
66508601 | 173 | |
83469015 | 174 | return 0; |
3475187d | 175 | } |
636aa70a BS |
176 | static unsigned long sun4u_load_kernel(const char *kernel_filename, |
177 | const char *initrd_filename, | |
c227f099 | 178 | ram_addr_t RAM_size, long *initrd_size) |
636aa70a BS |
179 | { |
180 | int linux_boot; | |
181 | unsigned int i; | |
182 | long kernel_size; | |
6908d9ce | 183 | uint8_t *ptr; |
636aa70a BS |
184 | |
185 | linux_boot = (kernel_filename != NULL); | |
186 | ||
187 | kernel_size = 0; | |
188 | if (linux_boot) { | |
ca20cf32 BS |
189 | int bswap_needed; |
190 | ||
191 | #ifdef BSWAP_NEEDED | |
192 | bswap_needed = 1; | |
193 | #else | |
194 | bswap_needed = 0; | |
195 | #endif | |
409dbce5 AJ |
196 | kernel_size = load_elf(kernel_filename, NULL, NULL, NULL, |
197 | NULL, NULL, 1, ELF_MACHINE, 0); | |
636aa70a BS |
198 | if (kernel_size < 0) |
199 | kernel_size = load_aout(kernel_filename, KERNEL_LOAD_ADDR, | |
ca20cf32 BS |
200 | RAM_size - KERNEL_LOAD_ADDR, bswap_needed, |
201 | TARGET_PAGE_SIZE); | |
636aa70a BS |
202 | if (kernel_size < 0) |
203 | kernel_size = load_image_targphys(kernel_filename, | |
204 | KERNEL_LOAD_ADDR, | |
205 | RAM_size - KERNEL_LOAD_ADDR); | |
206 | if (kernel_size < 0) { | |
207 | fprintf(stderr, "qemu: could not load kernel '%s'\n", | |
208 | kernel_filename); | |
209 | exit(1); | |
210 | } | |
211 | ||
212 | /* load initrd */ | |
213 | *initrd_size = 0; | |
214 | if (initrd_filename) { | |
215 | *initrd_size = load_image_targphys(initrd_filename, | |
216 | INITRD_LOAD_ADDR, | |
217 | RAM_size - INITRD_LOAD_ADDR); | |
218 | if (*initrd_size < 0) { | |
219 | fprintf(stderr, "qemu: could not load initial ram disk '%s'\n", | |
220 | initrd_filename); | |
221 | exit(1); | |
222 | } | |
223 | } | |
224 | if (*initrd_size > 0) { | |
225 | for (i = 0; i < 64 * TARGET_PAGE_SIZE; i += TARGET_PAGE_SIZE) { | |
6908d9ce BS |
226 | ptr = rom_ptr(KERNEL_LOAD_ADDR + i); |
227 | if (ldl_p(ptr + 8) == 0x48647253) { /* HdrS */ | |
228 | stl_p(ptr + 24, INITRD_LOAD_ADDR + KERNEL_LOAD_ADDR - 0x4000); | |
229 | stl_p(ptr + 28, *initrd_size); | |
636aa70a BS |
230 | break; |
231 | } | |
232 | } | |
233 | } | |
234 | } | |
235 | return kernel_size; | |
236 | } | |
3475187d | 237 | |
b4950060 | 238 | void pic_info(Monitor *mon) |
3475187d FB |
239 | { |
240 | } | |
241 | ||
b4950060 | 242 | void irq_info(Monitor *mon) |
3475187d FB |
243 | { |
244 | } | |
245 | ||
9d926598 BS |
246 | void cpu_check_irqs(CPUState *env) |
247 | { | |
d532b26c IK |
248 | uint32_t pil = env->pil_in | |
249 | (env->softint & ~(SOFTINT_TIMER | SOFTINT_STIMER)); | |
250 | ||
251 | /* check if TM or SM in SOFTINT are set | |
252 | setting these also causes interrupt 14 */ | |
253 | if (env->softint & (SOFTINT_TIMER | SOFTINT_STIMER)) { | |
254 | pil |= 1 << 14; | |
255 | } | |
256 | ||
257 | if (!pil) { | |
258 | if (env->interrupt_request & CPU_INTERRUPT_HARD) { | |
259 | CPUIRQ_DPRINTF("Reset CPU IRQ (current interrupt %x)\n", | |
260 | env->interrupt_index); | |
261 | env->interrupt_index = 0; | |
262 | cpu_reset_interrupt(env, CPU_INTERRUPT_HARD); | |
263 | } | |
264 | return; | |
265 | } | |
266 | ||
267 | if (cpu_interrupts_enabled(env)) { | |
9d926598 | 268 | |
9d926598 BS |
269 | unsigned int i; |
270 | ||
d532b26c | 271 | for (i = 15; i > env->psrpil; i--) { |
9d926598 BS |
272 | if (pil & (1 << i)) { |
273 | int old_interrupt = env->interrupt_index; | |
d532b26c IK |
274 | int new_interrupt = TT_EXTINT | i; |
275 | ||
276 | if (env->tl > 0 && cpu_tsptr(env)->tt > new_interrupt) { | |
277 | CPUIRQ_DPRINTF("Not setting CPU IRQ: TL=%d " | |
278 | "current %x >= pending %x\n", | |
279 | env->tl, cpu_tsptr(env)->tt, new_interrupt); | |
280 | } else if (old_interrupt != new_interrupt) { | |
281 | env->interrupt_index = new_interrupt; | |
282 | CPUIRQ_DPRINTF("Set CPU IRQ %d old=%x new=%x\n", i, | |
283 | old_interrupt, new_interrupt); | |
9d926598 BS |
284 | cpu_interrupt(env, CPU_INTERRUPT_HARD); |
285 | } | |
286 | break; | |
287 | } | |
288 | } | |
d532b26c IK |
289 | } else { |
290 | CPUIRQ_DPRINTF("Interrupts disabled, pil=%08x pil_in=%08x softint=%08x " | |
291 | "current interrupt %x\n", | |
292 | pil, env->pil_in, env->softint, env->interrupt_index); | |
9d926598 BS |
293 | } |
294 | } | |
295 | ||
8f4efc55 IK |
296 | static void cpu_kick_irq(CPUState *env) |
297 | { | |
298 | env->halted = 0; | |
299 | cpu_check_irqs(env); | |
300 | } | |
301 | ||
9d926598 BS |
302 | static void cpu_set_irq(void *opaque, int irq, int level) |
303 | { | |
304 | CPUState *env = opaque; | |
305 | ||
306 | if (level) { | |
b430a225 | 307 | CPUIRQ_DPRINTF("Raise CPU IRQ %d\n", irq); |
9d926598 BS |
308 | env->halted = 0; |
309 | env->pil_in |= 1 << irq; | |
310 | cpu_check_irqs(env); | |
311 | } else { | |
b430a225 | 312 | CPUIRQ_DPRINTF("Lower CPU IRQ %d\n", irq); |
9d926598 BS |
313 | env->pil_in &= ~(1 << irq); |
314 | cpu_check_irqs(env); | |
315 | } | |
316 | } | |
317 | ||
e87231d4 BS |
318 | typedef struct ResetData { |
319 | CPUState *env; | |
44a99354 | 320 | uint64_t prom_addr; |
e87231d4 BS |
321 | } ResetData; |
322 | ||
8f4efc55 IK |
323 | void cpu_put_timer(QEMUFile *f, CPUTimer *s) |
324 | { | |
325 | qemu_put_be32s(f, &s->frequency); | |
326 | qemu_put_be32s(f, &s->disabled); | |
327 | qemu_put_be64s(f, &s->disabled_mask); | |
328 | qemu_put_sbe64s(f, &s->clock_offset); | |
329 | ||
330 | qemu_put_timer(f, s->qtimer); | |
331 | } | |
332 | ||
333 | void cpu_get_timer(QEMUFile *f, CPUTimer *s) | |
334 | { | |
335 | qemu_get_be32s(f, &s->frequency); | |
336 | qemu_get_be32s(f, &s->disabled); | |
337 | qemu_get_be64s(f, &s->disabled_mask); | |
338 | qemu_get_sbe64s(f, &s->clock_offset); | |
339 | ||
340 | qemu_get_timer(f, s->qtimer); | |
341 | } | |
342 | ||
343 | static CPUTimer* cpu_timer_create(const char* name, CPUState *env, | |
344 | QEMUBHFunc *cb, uint32_t frequency, | |
345 | uint64_t disabled_mask) | |
346 | { | |
347 | CPUTimer *timer = qemu_mallocz(sizeof (CPUTimer)); | |
348 | ||
349 | timer->name = name; | |
350 | timer->frequency = frequency; | |
351 | timer->disabled_mask = disabled_mask; | |
352 | ||
353 | timer->disabled = 1; | |
354 | timer->clock_offset = qemu_get_clock(vm_clock); | |
355 | ||
356 | timer->qtimer = qemu_new_timer(vm_clock, cb, env); | |
357 | ||
358 | return timer; | |
359 | } | |
360 | ||
361 | static void cpu_timer_reset(CPUTimer *timer) | |
362 | { | |
363 | timer->disabled = 1; | |
364 | timer->clock_offset = qemu_get_clock(vm_clock); | |
365 | ||
366 | qemu_del_timer(timer->qtimer); | |
367 | } | |
368 | ||
c68ea704 FB |
369 | static void main_cpu_reset(void *opaque) |
370 | { | |
e87231d4 BS |
371 | ResetData *s = (ResetData *)opaque; |
372 | CPUState *env = s->env; | |
44a99354 | 373 | static unsigned int nr_resets; |
20c9f095 | 374 | |
c68ea704 | 375 | cpu_reset(env); |
8f4efc55 IK |
376 | |
377 | cpu_timer_reset(env->tick); | |
378 | cpu_timer_reset(env->stick); | |
379 | cpu_timer_reset(env->hstick); | |
380 | ||
e87231d4 BS |
381 | env->gregs[1] = 0; // Memory start |
382 | env->gregs[2] = ram_size; // Memory size | |
383 | env->gregs[3] = 0; // Machine description XXX | |
44a99354 BS |
384 | if (nr_resets++ == 0) { |
385 | /* Power on reset */ | |
386 | env->pc = s->prom_addr + 0x20ULL; | |
387 | } else { | |
388 | env->pc = s->prom_addr + 0x40ULL; | |
389 | } | |
e87231d4 | 390 | env->npc = env->pc + 4; |
20c9f095 BS |
391 | } |
392 | ||
22548760 | 393 | static void tick_irq(void *opaque) |
20c9f095 BS |
394 | { |
395 | CPUState *env = opaque; | |
396 | ||
8f4efc55 IK |
397 | CPUTimer* timer = env->tick; |
398 | ||
399 | if (timer->disabled) { | |
400 | CPUIRQ_DPRINTF("tick_irq: softint disabled\n"); | |
401 | return; | |
402 | } else { | |
403 | CPUIRQ_DPRINTF("tick: fire\n"); | |
8fa211e8 | 404 | } |
8f4efc55 IK |
405 | |
406 | env->softint |= SOFTINT_TIMER; | |
407 | cpu_kick_irq(env); | |
20c9f095 BS |
408 | } |
409 | ||
22548760 | 410 | static void stick_irq(void *opaque) |
20c9f095 BS |
411 | { |
412 | CPUState *env = opaque; | |
413 | ||
8f4efc55 IK |
414 | CPUTimer* timer = env->stick; |
415 | ||
416 | if (timer->disabled) { | |
417 | CPUIRQ_DPRINTF("stick_irq: softint disabled\n"); | |
418 | return; | |
419 | } else { | |
420 | CPUIRQ_DPRINTF("stick: fire\n"); | |
8fa211e8 | 421 | } |
8f4efc55 IK |
422 | |
423 | env->softint |= SOFTINT_STIMER; | |
424 | cpu_kick_irq(env); | |
20c9f095 BS |
425 | } |
426 | ||
22548760 | 427 | static void hstick_irq(void *opaque) |
20c9f095 BS |
428 | { |
429 | CPUState *env = opaque; | |
430 | ||
8f4efc55 IK |
431 | CPUTimer* timer = env->hstick; |
432 | ||
433 | if (timer->disabled) { | |
434 | CPUIRQ_DPRINTF("hstick_irq: softint disabled\n"); | |
435 | return; | |
436 | } else { | |
437 | CPUIRQ_DPRINTF("hstick: fire\n"); | |
8fa211e8 | 438 | } |
8f4efc55 IK |
439 | |
440 | env->softint |= SOFTINT_STIMER; | |
441 | cpu_kick_irq(env); | |
442 | } | |
443 | ||
444 | static int64_t cpu_to_timer_ticks(int64_t cpu_ticks, uint32_t frequency) | |
445 | { | |
446 | return muldiv64(cpu_ticks, get_ticks_per_sec(), frequency); | |
447 | } | |
448 | ||
449 | static uint64_t timer_to_cpu_ticks(int64_t timer_ticks, uint32_t frequency) | |
450 | { | |
451 | return muldiv64(timer_ticks, frequency, get_ticks_per_sec()); | |
c68ea704 FB |
452 | } |
453 | ||
8f4efc55 | 454 | void cpu_tick_set_count(CPUTimer *timer, uint64_t count) |
f4b1a842 | 455 | { |
8f4efc55 IK |
456 | uint64_t real_count = count & ~timer->disabled_mask; |
457 | uint64_t disabled_bit = count & timer->disabled_mask; | |
458 | ||
459 | int64_t vm_clock_offset = qemu_get_clock(vm_clock) - | |
460 | cpu_to_timer_ticks(real_count, timer->frequency); | |
461 | ||
462 | TIMER_DPRINTF("%s set_count count=0x%016lx (%s) p=%p\n", | |
463 | timer->name, real_count, | |
464 | timer->disabled?"disabled":"enabled", timer); | |
465 | ||
466 | timer->disabled = disabled_bit ? 1 : 0; | |
467 | timer->clock_offset = vm_clock_offset; | |
f4b1a842 BS |
468 | } |
469 | ||
8f4efc55 | 470 | uint64_t cpu_tick_get_count(CPUTimer *timer) |
f4b1a842 | 471 | { |
8f4efc55 IK |
472 | uint64_t real_count = timer_to_cpu_ticks( |
473 | qemu_get_clock(vm_clock) - timer->clock_offset, | |
474 | timer->frequency); | |
475 | ||
476 | TIMER_DPRINTF("%s get_count count=0x%016lx (%s) p=%p\n", | |
477 | timer->name, real_count, | |
478 | timer->disabled?"disabled":"enabled", timer); | |
479 | ||
480 | if (timer->disabled) | |
481 | real_count |= timer->disabled_mask; | |
482 | ||
483 | return real_count; | |
f4b1a842 BS |
484 | } |
485 | ||
8f4efc55 | 486 | void cpu_tick_set_limit(CPUTimer *timer, uint64_t limit) |
f4b1a842 | 487 | { |
8f4efc55 IK |
488 | int64_t now = qemu_get_clock(vm_clock); |
489 | ||
490 | uint64_t real_limit = limit & ~timer->disabled_mask; | |
491 | timer->disabled = (limit & timer->disabled_mask) ? 1 : 0; | |
492 | ||
493 | int64_t expires = cpu_to_timer_ticks(real_limit, timer->frequency) + | |
494 | timer->clock_offset; | |
495 | ||
496 | if (expires < now) { | |
497 | expires = now + 1; | |
498 | } | |
499 | ||
500 | TIMER_DPRINTF("%s set_limit limit=0x%016lx (%s) p=%p " | |
501 | "called with limit=0x%016lx at 0x%016lx (delta=0x%016lx)\n", | |
502 | timer->name, real_limit, | |
503 | timer->disabled?"disabled":"enabled", | |
504 | timer, limit, | |
505 | timer_to_cpu_ticks(now - timer->clock_offset, | |
506 | timer->frequency), | |
507 | timer_to_cpu_ticks(expires - now, timer->frequency)); | |
508 | ||
509 | if (!real_limit) { | |
510 | TIMER_DPRINTF("%s set_limit limit=ZERO - not starting timer\n", | |
511 | timer->name); | |
512 | qemu_del_timer(timer->qtimer); | |
513 | } else if (timer->disabled) { | |
514 | qemu_del_timer(timer->qtimer); | |
515 | } else { | |
516 | qemu_mod_timer(timer->qtimer, expires); | |
517 | } | |
f4b1a842 BS |
518 | } |
519 | ||
c190ea07 | 520 | static void ebus_mmio_mapfunc(PCIDevice *pci_dev, int region_num, |
6e355d90 | 521 | pcibus_t addr, pcibus_t size, int type) |
c190ea07 | 522 | { |
b430a225 BS |
523 | EBUS_DPRINTF("Mapping region %d registers at %" FMT_PCIBUS "\n", |
524 | region_num, addr); | |
c190ea07 BS |
525 | switch (region_num) { |
526 | case 0: | |
84108e12 | 527 | isa_mmio_init(addr, 0x1000000, 1); |
c190ea07 BS |
528 | break; |
529 | case 1: | |
84108e12 | 530 | isa_mmio_init(addr, 0x800000, 1); |
c190ea07 BS |
531 | break; |
532 | } | |
533 | } | |
534 | ||
1387fe4a BS |
535 | static void dummy_isa_irq_handler(void *opaque, int n, int level) |
536 | { | |
537 | } | |
538 | ||
c190ea07 BS |
539 | /* EBUS (Eight bit bus) bridge */ |
540 | static void | |
541 | pci_ebus_init(PCIBus *bus, int devfn) | |
542 | { | |
1387fe4a BS |
543 | qemu_irq *isa_irq; |
544 | ||
53e3c4f9 | 545 | pci_create_simple(bus, devfn, "ebus"); |
1387fe4a BS |
546 | isa_irq = qemu_allocate_irqs(dummy_isa_irq_handler, NULL, 16); |
547 | isa_bus_irqs(isa_irq); | |
53e3c4f9 | 548 | } |
c190ea07 | 549 | |
81a322d4 | 550 | static int |
53e3c4f9 BS |
551 | pci_ebus_init1(PCIDevice *s) |
552 | { | |
0c5b8d83 BS |
553 | isa_bus_new(&s->qdev); |
554 | ||
deb54399 AL |
555 | pci_config_set_vendor_id(s->config, PCI_VENDOR_ID_SUN); |
556 | pci_config_set_device_id(s->config, PCI_DEVICE_ID_SUN_EBUS); | |
c190ea07 BS |
557 | s->config[0x04] = 0x06; // command = bus master, pci mem |
558 | s->config[0x05] = 0x00; | |
559 | s->config[0x06] = 0xa0; // status = fast back-to-back, 66MHz, no error | |
560 | s->config[0x07] = 0x03; // status = medium devsel | |
561 | s->config[0x08] = 0x01; // revision | |
562 | s->config[0x09] = 0x00; // programming i/f | |
173a543b | 563 | pci_config_set_class(s->config, PCI_CLASS_BRIDGE_OTHER); |
c190ea07 | 564 | s->config[0x0D] = 0x0a; // latency_timer |
6407f373 | 565 | s->config[PCI_HEADER_TYPE] = PCI_HEADER_TYPE_NORMAL; // header_type |
c190ea07 | 566 | |
0392a017 | 567 | pci_register_bar(s, 0, 0x1000000, PCI_BASE_ADDRESS_SPACE_MEMORY, |
c190ea07 | 568 | ebus_mmio_mapfunc); |
0392a017 | 569 | pci_register_bar(s, 1, 0x800000, PCI_BASE_ADDRESS_SPACE_MEMORY, |
c190ea07 | 570 | ebus_mmio_mapfunc); |
81a322d4 | 571 | return 0; |
c190ea07 BS |
572 | } |
573 | ||
53e3c4f9 BS |
574 | static PCIDeviceInfo ebus_info = { |
575 | .qdev.name = "ebus", | |
576 | .qdev.size = sizeof(PCIDevice), | |
577 | .init = pci_ebus_init1, | |
578 | }; | |
579 | ||
580 | static void pci_ebus_register(void) | |
581 | { | |
582 | pci_qdev_register(&ebus_info); | |
583 | } | |
584 | ||
585 | device_init(pci_ebus_register); | |
586 | ||
409dbce5 AJ |
587 | static uint64_t translate_prom_address(void *opaque, uint64_t addr) |
588 | { | |
589 | target_phys_addr_t *base_addr = (target_phys_addr_t *)opaque; | |
590 | return addr + *base_addr - PROM_VADDR; | |
591 | } | |
592 | ||
1baffa46 | 593 | /* Boot PROM (OpenBIOS) */ |
c227f099 | 594 | static void prom_init(target_phys_addr_t addr, const char *bios_name) |
1baffa46 BS |
595 | { |
596 | DeviceState *dev; | |
597 | SysBusDevice *s; | |
598 | char *filename; | |
599 | int ret; | |
600 | ||
601 | dev = qdev_create(NULL, "openprom"); | |
e23a1b33 | 602 | qdev_init_nofail(dev); |
1baffa46 BS |
603 | s = sysbus_from_qdev(dev); |
604 | ||
605 | sysbus_mmio_map(s, 0, addr); | |
606 | ||
607 | /* load boot prom */ | |
608 | if (bios_name == NULL) { | |
609 | bios_name = PROM_FILENAME; | |
610 | } | |
611 | filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name); | |
612 | if (filename) { | |
409dbce5 AJ |
613 | ret = load_elf(filename, translate_prom_address, &addr, |
614 | NULL, NULL, NULL, 1, ELF_MACHINE, 0); | |
1baffa46 BS |
615 | if (ret < 0 || ret > PROM_SIZE_MAX) { |
616 | ret = load_image_targphys(filename, addr, PROM_SIZE_MAX); | |
617 | } | |
618 | qemu_free(filename); | |
619 | } else { | |
620 | ret = -1; | |
621 | } | |
622 | if (ret < 0 || ret > PROM_SIZE_MAX) { | |
623 | fprintf(stderr, "qemu: could not load prom '%s'\n", bios_name); | |
624 | exit(1); | |
625 | } | |
626 | } | |
627 | ||
81a322d4 | 628 | static int prom_init1(SysBusDevice *dev) |
1baffa46 | 629 | { |
c227f099 | 630 | ram_addr_t prom_offset; |
1baffa46 BS |
631 | |
632 | prom_offset = qemu_ram_alloc(PROM_SIZE_MAX); | |
633 | sysbus_init_mmio(dev, PROM_SIZE_MAX, prom_offset | IO_MEM_ROM); | |
81a322d4 | 634 | return 0; |
1baffa46 BS |
635 | } |
636 | ||
637 | static SysBusDeviceInfo prom_info = { | |
638 | .init = prom_init1, | |
639 | .qdev.name = "openprom", | |
640 | .qdev.size = sizeof(SysBusDevice), | |
641 | .qdev.props = (Property[]) { | |
642 | {/* end of property list */} | |
643 | } | |
644 | }; | |
645 | ||
646 | static void prom_register_devices(void) | |
647 | { | |
648 | sysbus_register_withprop(&prom_info); | |
649 | } | |
650 | ||
651 | device_init(prom_register_devices); | |
652 | ||
bda42033 BS |
653 | |
654 | typedef struct RamDevice | |
655 | { | |
656 | SysBusDevice busdev; | |
04843626 | 657 | uint64_t size; |
bda42033 BS |
658 | } RamDevice; |
659 | ||
660 | /* System RAM */ | |
81a322d4 | 661 | static int ram_init1(SysBusDevice *dev) |
bda42033 | 662 | { |
c227f099 | 663 | ram_addr_t RAM_size, ram_offset; |
bda42033 BS |
664 | RamDevice *d = FROM_SYSBUS(RamDevice, dev); |
665 | ||
666 | RAM_size = d->size; | |
667 | ||
668 | ram_offset = qemu_ram_alloc(RAM_size); | |
669 | sysbus_init_mmio(dev, RAM_size, ram_offset); | |
81a322d4 | 670 | return 0; |
bda42033 BS |
671 | } |
672 | ||
c227f099 | 673 | static void ram_init(target_phys_addr_t addr, ram_addr_t RAM_size) |
bda42033 BS |
674 | { |
675 | DeviceState *dev; | |
676 | SysBusDevice *s; | |
677 | RamDevice *d; | |
678 | ||
679 | /* allocate RAM */ | |
680 | dev = qdev_create(NULL, "memory"); | |
681 | s = sysbus_from_qdev(dev); | |
682 | ||
683 | d = FROM_SYSBUS(RamDevice, s); | |
684 | d->size = RAM_size; | |
e23a1b33 | 685 | qdev_init_nofail(dev); |
bda42033 BS |
686 | |
687 | sysbus_mmio_map(s, 0, addr); | |
688 | } | |
689 | ||
690 | static SysBusDeviceInfo ram_info = { | |
691 | .init = ram_init1, | |
692 | .qdev.name = "memory", | |
693 | .qdev.size = sizeof(RamDevice), | |
694 | .qdev.props = (Property[]) { | |
32a7ee98 GH |
695 | DEFINE_PROP_UINT64("size", RamDevice, size, 0), |
696 | DEFINE_PROP_END_OF_LIST(), | |
bda42033 BS |
697 | } |
698 | }; | |
699 | ||
700 | static void ram_register_devices(void) | |
701 | { | |
702 | sysbus_register_withprop(&ram_info); | |
703 | } | |
704 | ||
705 | device_init(ram_register_devices); | |
706 | ||
7b833f5b | 707 | static CPUState *cpu_devinit(const char *cpu_model, const struct hwdef *hwdef) |
3475187d | 708 | { |
c68ea704 | 709 | CPUState *env; |
e87231d4 | 710 | ResetData *reset_info; |
3475187d | 711 | |
8f4efc55 IK |
712 | uint32_t tick_frequency = 100*1000000; |
713 | uint32_t stick_frequency = 100*1000000; | |
714 | uint32_t hstick_frequency = 100*1000000; | |
715 | ||
c7ba218d BS |
716 | if (!cpu_model) |
717 | cpu_model = hwdef->default_cpu_model; | |
aaed909a FB |
718 | env = cpu_init(cpu_model); |
719 | if (!env) { | |
62724a37 BS |
720 | fprintf(stderr, "Unable to find Sparc CPU definition\n"); |
721 | exit(1); | |
722 | } | |
20c9f095 | 723 | |
8f4efc55 IK |
724 | env->tick = cpu_timer_create("tick", env, tick_irq, |
725 | tick_frequency, TICK_NPT_MASK); | |
726 | ||
727 | env->stick = cpu_timer_create("stick", env, stick_irq, | |
728 | stick_frequency, TICK_INT_DIS); | |
20c9f095 | 729 | |
8f4efc55 IK |
730 | env->hstick = cpu_timer_create("hstick", env, hstick_irq, |
731 | hstick_frequency, TICK_INT_DIS); | |
e87231d4 BS |
732 | |
733 | reset_info = qemu_mallocz(sizeof(ResetData)); | |
734 | reset_info->env = env; | |
44a99354 | 735 | reset_info->prom_addr = hwdef->prom_addr; |
a08d4367 | 736 | qemu_register_reset(main_cpu_reset, reset_info); |
c68ea704 | 737 | |
7b833f5b BS |
738 | return env; |
739 | } | |
740 | ||
c227f099 | 741 | static void sun4uv_init(ram_addr_t RAM_size, |
7b833f5b BS |
742 | const char *boot_devices, |
743 | const char *kernel_filename, const char *kernel_cmdline, | |
744 | const char *initrd_filename, const char *cpu_model, | |
745 | const struct hwdef *hwdef) | |
746 | { | |
747 | CPUState *env; | |
43a34704 | 748 | M48t59State *nvram; |
7b833f5b BS |
749 | unsigned int i; |
750 | long initrd_size, kernel_size; | |
751 | PCIBus *pci_bus, *pci_bus2, *pci_bus3; | |
752 | qemu_irq *irq; | |
f455e98c | 753 | DriveInfo *hd[MAX_IDE_BUS * MAX_IDE_DEVS]; |
fd8014e1 | 754 | DriveInfo *fd[MAX_FD]; |
7b833f5b BS |
755 | void *fw_cfg; |
756 | ||
7b833f5b BS |
757 | /* init CPUs */ |
758 | env = cpu_devinit(cpu_model, hwdef); | |
759 | ||
bda42033 BS |
760 | /* set up devices */ |
761 | ram_init(0, RAM_size); | |
3475187d | 762 | |
1baffa46 | 763 | prom_init(hwdef->prom_addr, bios_name); |
3475187d | 764 | |
7d55273f IK |
765 | |
766 | irq = qemu_allocate_irqs(cpu_set_irq, env, MAX_PILS); | |
767 | pci_bus = pci_apb_init(APB_SPECIAL_BASE, APB_MEM_BASE, irq, &pci_bus2, | |
c190ea07 | 768 | &pci_bus3); |
83469015 | 769 | isa_mem_base = VGA_BASE; |
fbe1b595 | 770 | pci_vga_init(pci_bus, 0, 0); |
83469015 | 771 | |
c190ea07 BS |
772 | // XXX Should be pci_bus3 |
773 | pci_ebus_init(pci_bus, -1); | |
774 | ||
e87231d4 BS |
775 | i = 0; |
776 | if (hwdef->console_serial_base) { | |
777 | serial_mm_init(hwdef->console_serial_base, 0, NULL, 115200, | |
2d48377a | 778 | serial_hds[i], 1, 1); |
e87231d4 BS |
779 | i++; |
780 | } | |
781 | for(; i < MAX_SERIAL_PORTS; i++) { | |
83469015 | 782 | if (serial_hds[i]) { |
ac0be998 | 783 | serial_isa_init(i, serial_hds[i]); |
83469015 FB |
784 | } |
785 | } | |
786 | ||
787 | for(i = 0; i < MAX_PARALLEL_PORTS; i++) { | |
788 | if (parallel_hds[i]) { | |
021f0674 | 789 | parallel_init(i, parallel_hds[i]); |
83469015 FB |
790 | } |
791 | } | |
792 | ||
cb457d76 | 793 | for(i = 0; i < nb_nics; i++) |
07caea31 | 794 | pci_nic_init_nofail(&nd_table[i], "ne2k_pci", NULL); |
83469015 | 795 | |
e4bcb14c TS |
796 | if (drive_get_max_bus(IF_IDE) >= MAX_IDE_BUS) { |
797 | fprintf(stderr, "qemu: too many IDE bus\n"); | |
798 | exit(1); | |
799 | } | |
800 | for(i = 0; i < MAX_IDE_BUS * MAX_IDE_DEVS; i++) { | |
f455e98c | 801 | hd[i] = drive_get(IF_IDE, i / MAX_IDE_DEVS, |
751c6a17 | 802 | i % MAX_IDE_DEVS); |
e4bcb14c TS |
803 | } |
804 | ||
3b898dda BS |
805 | pci_cmd646_ide_init(pci_bus, hd, 1); |
806 | ||
2e15e23b | 807 | isa_create_simple("i8042"); |
e4bcb14c | 808 | for(i = 0; i < MAX_FD; i++) { |
fd8014e1 | 809 | fd[i] = drive_get(IF_FLOPPY, 0, i); |
e4bcb14c | 810 | } |
86c86157 | 811 | fdctrl_init_isa(fd); |
f80237d4 | 812 | nvram = m48t59_init_isa(0x0074, NVRAM_SIZE, 59); |
636aa70a BS |
813 | |
814 | initrd_size = 0; | |
815 | kernel_size = sun4u_load_kernel(kernel_filename, initrd_filename, | |
816 | ram_size, &initrd_size); | |
817 | ||
22548760 | 818 | sun4u_NVRAM_set_params(nvram, NVRAM_SIZE, "Sun4u", RAM_size, boot_devices, |
0d31cb99 BS |
819 | KERNEL_LOAD_ADDR, kernel_size, |
820 | kernel_cmdline, | |
821 | INITRD_LOAD_ADDR, initrd_size, | |
822 | /* XXX: need an option to load a NVRAM image */ | |
823 | 0, | |
824 | graphic_width, graphic_height, graphic_depth, | |
825 | (uint8_t *)&nd_table[0].macaddr); | |
83469015 | 826 | |
3cce6243 BS |
827 | fw_cfg = fw_cfg_init(BIOS_CFG_IOPORT, BIOS_CFG_IOPORT + 1, 0, 0); |
828 | fw_cfg_add_i32(fw_cfg, FW_CFG_ID, 1); | |
905fdcb5 BS |
829 | fw_cfg_add_i64(fw_cfg, FW_CFG_RAM_SIZE, (uint64_t)ram_size); |
830 | fw_cfg_add_i16(fw_cfg, FW_CFG_MACHINE_ID, hwdef->machine_id); | |
513f789f BS |
831 | fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_ADDR, KERNEL_LOAD_ADDR); |
832 | fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_SIZE, kernel_size); | |
833 | if (kernel_cmdline) { | |
9c9b0512 BS |
834 | fw_cfg_add_i32(fw_cfg, FW_CFG_CMDLINE_SIZE, |
835 | strlen(kernel_cmdline) + 1); | |
6bb4ca57 BS |
836 | fw_cfg_add_bytes(fw_cfg, FW_CFG_CMDLINE_DATA, |
837 | (uint8_t*)strdup(kernel_cmdline), | |
838 | strlen(kernel_cmdline) + 1); | |
513f789f | 839 | } else { |
9c9b0512 | 840 | fw_cfg_add_i32(fw_cfg, FW_CFG_CMDLINE_SIZE, 0); |
513f789f BS |
841 | } |
842 | fw_cfg_add_i32(fw_cfg, FW_CFG_INITRD_ADDR, INITRD_LOAD_ADDR); | |
843 | fw_cfg_add_i32(fw_cfg, FW_CFG_INITRD_SIZE, initrd_size); | |
844 | fw_cfg_add_i16(fw_cfg, FW_CFG_BOOT_DEVICE, boot_devices[0]); | |
7589690c BS |
845 | |
846 | fw_cfg_add_i16(fw_cfg, FW_CFG_SPARC64_WIDTH, graphic_width); | |
847 | fw_cfg_add_i16(fw_cfg, FW_CFG_SPARC64_HEIGHT, graphic_height); | |
848 | fw_cfg_add_i16(fw_cfg, FW_CFG_SPARC64_DEPTH, graphic_depth); | |
849 | ||
513f789f | 850 | qemu_register_boot_set(fw_cfg_boot_set, fw_cfg); |
3475187d FB |
851 | } |
852 | ||
905fdcb5 BS |
853 | enum { |
854 | sun4u_id = 0, | |
855 | sun4v_id = 64, | |
e87231d4 | 856 | niagara_id, |
905fdcb5 BS |
857 | }; |
858 | ||
c7ba218d BS |
859 | static const struct hwdef hwdefs[] = { |
860 | /* Sun4u generic PC-like machine */ | |
861 | { | |
862 | .default_cpu_model = "TI UltraSparc II", | |
905fdcb5 | 863 | .machine_id = sun4u_id, |
e87231d4 BS |
864 | .prom_addr = 0x1fff0000000ULL, |
865 | .console_serial_base = 0, | |
c7ba218d BS |
866 | }, |
867 | /* Sun4v generic PC-like machine */ | |
868 | { | |
869 | .default_cpu_model = "Sun UltraSparc T1", | |
905fdcb5 | 870 | .machine_id = sun4v_id, |
e87231d4 BS |
871 | .prom_addr = 0x1fff0000000ULL, |
872 | .console_serial_base = 0, | |
873 | }, | |
874 | /* Sun4v generic Niagara machine */ | |
875 | { | |
876 | .default_cpu_model = "Sun UltraSparc T1", | |
877 | .machine_id = niagara_id, | |
878 | .prom_addr = 0xfff0000000ULL, | |
879 | .console_serial_base = 0xfff0c2c000ULL, | |
c7ba218d BS |
880 | }, |
881 | }; | |
882 | ||
883 | /* Sun4u hardware initialisation */ | |
c227f099 | 884 | static void sun4u_init(ram_addr_t RAM_size, |
3023f332 | 885 | const char *boot_devices, |
c7ba218d BS |
886 | const char *kernel_filename, const char *kernel_cmdline, |
887 | const char *initrd_filename, const char *cpu_model) | |
888 | { | |
fbe1b595 | 889 | sun4uv_init(RAM_size, boot_devices, kernel_filename, |
c7ba218d BS |
890 | kernel_cmdline, initrd_filename, cpu_model, &hwdefs[0]); |
891 | } | |
892 | ||
893 | /* Sun4v hardware initialisation */ | |
c227f099 | 894 | static void sun4v_init(ram_addr_t RAM_size, |
3023f332 | 895 | const char *boot_devices, |
c7ba218d BS |
896 | const char *kernel_filename, const char *kernel_cmdline, |
897 | const char *initrd_filename, const char *cpu_model) | |
898 | { | |
fbe1b595 | 899 | sun4uv_init(RAM_size, boot_devices, kernel_filename, |
c7ba218d BS |
900 | kernel_cmdline, initrd_filename, cpu_model, &hwdefs[1]); |
901 | } | |
902 | ||
e87231d4 | 903 | /* Niagara hardware initialisation */ |
c227f099 | 904 | static void niagara_init(ram_addr_t RAM_size, |
3023f332 | 905 | const char *boot_devices, |
e87231d4 BS |
906 | const char *kernel_filename, const char *kernel_cmdline, |
907 | const char *initrd_filename, const char *cpu_model) | |
908 | { | |
fbe1b595 | 909 | sun4uv_init(RAM_size, boot_devices, kernel_filename, |
e87231d4 BS |
910 | kernel_cmdline, initrd_filename, cpu_model, &hwdefs[2]); |
911 | } | |
912 | ||
f80f9ec9 | 913 | static QEMUMachine sun4u_machine = { |
66de733b BS |
914 | .name = "sun4u", |
915 | .desc = "Sun4u platform", | |
916 | .init = sun4u_init, | |
1bcee014 | 917 | .max_cpus = 1, // XXX for now |
0c257437 | 918 | .is_default = 1, |
3475187d | 919 | }; |
c7ba218d | 920 | |
f80f9ec9 | 921 | static QEMUMachine sun4v_machine = { |
66de733b BS |
922 | .name = "sun4v", |
923 | .desc = "Sun4v platform", | |
924 | .init = sun4v_init, | |
1bcee014 | 925 | .max_cpus = 1, // XXX for now |
c7ba218d | 926 | }; |
e87231d4 | 927 | |
f80f9ec9 | 928 | static QEMUMachine niagara_machine = { |
e87231d4 BS |
929 | .name = "Niagara", |
930 | .desc = "Sun4v platform, Niagara", | |
931 | .init = niagara_init, | |
1bcee014 | 932 | .max_cpus = 1, // XXX for now |
e87231d4 | 933 | }; |
f80f9ec9 AL |
934 | |
935 | static void sun4u_machine_init(void) | |
936 | { | |
937 | qemu_register_machine(&sun4u_machine); | |
938 | qemu_register_machine(&sun4v_machine); | |
939 | qemu_register_machine(&niagara_machine); | |
940 | } | |
941 | ||
942 | machine_init(sun4u_machine_init); |