]> git.proxmox.com Git - mirror_qemu.git/blame - hw/sun4u.c
xen_pt: use separate MemoryListeners for memory and I/O
[mirror_qemu.git] / hw / sun4u.c
CommitLineData
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"
2446333c 40#include "blockdev.h"
39186d8a 41#include "exec-memory.h"
3475187d 42
9d926598 43//#define DEBUG_IRQ
b430a225 44//#define DEBUG_EBUS
8f4efc55 45//#define DEBUG_TIMER
9d926598
BS
46
47#ifdef DEBUG_IRQ
b430a225 48#define CPUIRQ_DPRINTF(fmt, ...) \
001faf32 49 do { printf("CPUIRQ: " fmt , ## __VA_ARGS__); } while (0)
9d926598 50#else
b430a225
BS
51#define CPUIRQ_DPRINTF(fmt, ...)
52#endif
53
54#ifdef DEBUG_EBUS
55#define EBUS_DPRINTF(fmt, ...) \
56 do { printf("EBUS: " fmt , ## __VA_ARGS__); } while (0)
57#else
58#define EBUS_DPRINTF(fmt, ...)
9d926598
BS
59#endif
60
8f4efc55
IK
61#ifdef DEBUG_TIMER
62#define TIMER_DPRINTF(fmt, ...) \
63 do { printf("TIMER: " fmt , ## __VA_ARGS__); } while (0)
64#else
65#define TIMER_DPRINTF(fmt, ...)
66#endif
67
83469015
FB
68#define KERNEL_LOAD_ADDR 0x00404000
69#define CMDLINE_ADDR 0x003ff000
ac2e9d66 70#define PROM_SIZE_MAX (4 * 1024 * 1024)
f930d07e 71#define PROM_VADDR 0x000ffd00000ULL
83469015 72#define APB_SPECIAL_BASE 0x1fe00000000ULL
f930d07e 73#define APB_MEM_BASE 0x1ff00000000ULL
d63baf92 74#define APB_PCI_IO_BASE (APB_SPECIAL_BASE + 0x02000000ULL)
f930d07e 75#define PROM_FILENAME "openbios-sparc64"
83469015 76#define NVRAM_SIZE 0x2000
e4bcb14c 77#define MAX_IDE_BUS 2
3cce6243 78#define BIOS_CFG_IOPORT 0x510
7589690c
BS
79#define FW_CFG_SPARC64_WIDTH (FW_CFG_ARCH_LOCAL + 0x00)
80#define FW_CFG_SPARC64_HEIGHT (FW_CFG_ARCH_LOCAL + 0x01)
81#define FW_CFG_SPARC64_DEPTH (FW_CFG_ARCH_LOCAL + 0x02)
3475187d 82
361dea40 83#define IVEC_MAX 0x30
9d926598 84
8fa211e8
BS
85#define TICK_MAX 0x7fffffffffffffffULL
86
c7ba218d
BS
87struct hwdef {
88 const char * const default_cpu_model;
905fdcb5 89 uint16_t machine_id;
e87231d4
BS
90 uint64_t prom_addr;
91 uint64_t console_serial_base;
c7ba218d
BS
92};
93
c5e6fb7e
AK
94typedef struct EbusState {
95 PCIDevice pci_dev;
96 MemoryRegion bar0;
97 MemoryRegion bar1;
98} EbusState;
99
3475187d
FB
100int DMA_get_channel_mode (int nchan)
101{
102 return 0;
103}
104int DMA_read_memory (int nchan, void *buf, int pos, int size)
105{
106 return 0;
107}
108int DMA_write_memory (int nchan, void *buf, int pos, int size)
109{
110 return 0;
111}
112void DMA_hold_DREQ (int nchan) {}
113void DMA_release_DREQ (int nchan) {}
114void DMA_schedule(int nchan) {}
4556bd8b
BS
115
116void DMA_init(int high_page_enable, qemu_irq *cpu_request_exit)
117{
118}
119
3475187d
FB
120void DMA_register_channel (int nchan,
121 DMA_transfer_handler transfer_handler,
122 void *opaque)
123{
124}
125
513f789f 126static int fw_cfg_boot_set(void *opaque, const char *boot_device)
81864572 127{
513f789f 128 fw_cfg_add_i16(opaque, FW_CFG_BOOT_DEVICE, boot_device[0]);
81864572
BS
129 return 0;
130}
131
43a34704
BS
132static int sun4u_NVRAM_set_params(M48t59State *nvram, uint16_t NVRAM_size,
133 const char *arch, ram_addr_t RAM_size,
134 const char *boot_devices,
135 uint32_t kernel_image, uint32_t kernel_size,
136 const char *cmdline,
137 uint32_t initrd_image, uint32_t initrd_size,
138 uint32_t NVRAM_image,
139 int width, int height, int depth,
140 const uint8_t *macaddr)
83469015 141{
66508601
BS
142 unsigned int i;
143 uint32_t start, end;
d2c63fc1 144 uint8_t image[0x1ff0];
d2c63fc1
BS
145 struct OpenBIOS_nvpart_v1 *part_header;
146
147 memset(image, '\0', sizeof(image));
148
513f789f 149 start = 0;
83469015 150
66508601
BS
151 // OpenBIOS nvram variables
152 // Variable partition
d2c63fc1
BS
153 part_header = (struct OpenBIOS_nvpart_v1 *)&image[start];
154 part_header->signature = OPENBIOS_PART_SYSTEM;
363a37d5 155 pstrcpy(part_header->name, sizeof(part_header->name), "system");
66508601 156
d2c63fc1 157 end = start + sizeof(struct OpenBIOS_nvpart_v1);
66508601 158 for (i = 0; i < nb_prom_envs; i++)
d2c63fc1
BS
159 end = OpenBIOS_set_var(image, end, prom_envs[i]);
160
161 // End marker
162 image[end++] = '\0';
66508601 163
66508601 164 end = start + ((end - start + 15) & ~15);
d2c63fc1 165 OpenBIOS_finish_partition(part_header, end - start);
66508601
BS
166
167 // free partition
168 start = end;
d2c63fc1
BS
169 part_header = (struct OpenBIOS_nvpart_v1 *)&image[start];
170 part_header->signature = OPENBIOS_PART_FREE;
363a37d5 171 pstrcpy(part_header->name, sizeof(part_header->name), "free");
66508601
BS
172
173 end = 0x1fd0;
d2c63fc1
BS
174 OpenBIOS_finish_partition(part_header, end - start);
175
0d31cb99
BS
176 Sun_init_header((struct Sun_nvram *)&image[0x1fd8], macaddr, 0x80);
177
d2c63fc1
BS
178 for (i = 0; i < sizeof(image); i++)
179 m48t59_write(nvram, i, image[i]);
66508601 180
83469015 181 return 0;
3475187d 182}
5f2bf0fe
BS
183
184static uint64_t sun4u_load_kernel(const char *kernel_filename,
185 const char *initrd_filename,
186 ram_addr_t RAM_size, uint64_t *initrd_size,
187 uint64_t *initrd_addr, uint64_t *kernel_addr,
188 uint64_t *kernel_entry)
636aa70a
BS
189{
190 int linux_boot;
191 unsigned int i;
192 long kernel_size;
6908d9ce 193 uint8_t *ptr;
5f2bf0fe 194 uint64_t kernel_top;
636aa70a
BS
195
196 linux_boot = (kernel_filename != NULL);
197
198 kernel_size = 0;
199 if (linux_boot) {
ca20cf32
BS
200 int bswap_needed;
201
202#ifdef BSWAP_NEEDED
203 bswap_needed = 1;
204#else
205 bswap_needed = 0;
206#endif
5f2bf0fe
BS
207 kernel_size = load_elf(kernel_filename, NULL, NULL, kernel_entry,
208 kernel_addr, &kernel_top, 1, ELF_MACHINE, 0);
209 if (kernel_size < 0) {
210 *kernel_addr = KERNEL_LOAD_ADDR;
211 *kernel_entry = KERNEL_LOAD_ADDR;
636aa70a 212 kernel_size = load_aout(kernel_filename, KERNEL_LOAD_ADDR,
ca20cf32
BS
213 RAM_size - KERNEL_LOAD_ADDR, bswap_needed,
214 TARGET_PAGE_SIZE);
5f2bf0fe
BS
215 }
216 if (kernel_size < 0) {
636aa70a
BS
217 kernel_size = load_image_targphys(kernel_filename,
218 KERNEL_LOAD_ADDR,
219 RAM_size - KERNEL_LOAD_ADDR);
5f2bf0fe 220 }
636aa70a
BS
221 if (kernel_size < 0) {
222 fprintf(stderr, "qemu: could not load kernel '%s'\n",
223 kernel_filename);
224 exit(1);
225 }
5f2bf0fe 226 /* load initrd above kernel */
636aa70a
BS
227 *initrd_size = 0;
228 if (initrd_filename) {
5f2bf0fe
BS
229 *initrd_addr = TARGET_PAGE_ALIGN(kernel_top);
230
636aa70a 231 *initrd_size = load_image_targphys(initrd_filename,
5f2bf0fe
BS
232 *initrd_addr,
233 RAM_size - *initrd_addr);
234 if ((int)*initrd_size < 0) {
636aa70a
BS
235 fprintf(stderr, "qemu: could not load initial ram disk '%s'\n",
236 initrd_filename);
237 exit(1);
238 }
239 }
240 if (*initrd_size > 0) {
241 for (i = 0; i < 64 * TARGET_PAGE_SIZE; i += TARGET_PAGE_SIZE) {
5f2bf0fe 242 ptr = rom_ptr(*kernel_addr + i);
6908d9ce 243 if (ldl_p(ptr + 8) == 0x48647253) { /* HdrS */
5f2bf0fe 244 stl_p(ptr + 24, *initrd_addr + *kernel_addr);
6908d9ce 245 stl_p(ptr + 28, *initrd_size);
636aa70a
BS
246 break;
247 }
248 }
249 }
250 }
251 return kernel_size;
252}
3475187d 253
98cec4a2 254void cpu_check_irqs(CPUSPARCState *env)
9d926598 255{
d532b26c
IK
256 uint32_t pil = env->pil_in |
257 (env->softint & ~(SOFTINT_TIMER | SOFTINT_STIMER));
258
a7be9bad
AT
259 /* TT_IVEC has a higher priority (16) than TT_EXTINT (31..17) */
260 if (env->ivec_status & 0x20) {
261 return;
262 }
d532b26c
IK
263 /* check if TM or SM in SOFTINT are set
264 setting these also causes interrupt 14 */
265 if (env->softint & (SOFTINT_TIMER | SOFTINT_STIMER)) {
266 pil |= 1 << 14;
267 }
268
9f94778c
AT
269 /* The bit corresponding to psrpil is (1<< psrpil), the next bit
270 is (2 << psrpil). */
271 if (pil < (2 << env->psrpil)){
d532b26c
IK
272 if (env->interrupt_request & CPU_INTERRUPT_HARD) {
273 CPUIRQ_DPRINTF("Reset CPU IRQ (current interrupt %x)\n",
274 env->interrupt_index);
275 env->interrupt_index = 0;
276 cpu_reset_interrupt(env, CPU_INTERRUPT_HARD);
277 }
278 return;
279 }
280
281 if (cpu_interrupts_enabled(env)) {
9d926598 282
9d926598
BS
283 unsigned int i;
284
d532b26c 285 for (i = 15; i > env->psrpil; i--) {
9d926598
BS
286 if (pil & (1 << i)) {
287 int old_interrupt = env->interrupt_index;
d532b26c
IK
288 int new_interrupt = TT_EXTINT | i;
289
a7be9bad
AT
290 if (unlikely(env->tl > 0 && cpu_tsptr(env)->tt > new_interrupt
291 && ((cpu_tsptr(env)->tt & 0x1f0) == TT_EXTINT))) {
d532b26c
IK
292 CPUIRQ_DPRINTF("Not setting CPU IRQ: TL=%d "
293 "current %x >= pending %x\n",
294 env->tl, cpu_tsptr(env)->tt, new_interrupt);
295 } else if (old_interrupt != new_interrupt) {
296 env->interrupt_index = new_interrupt;
297 CPUIRQ_DPRINTF("Set CPU IRQ %d old=%x new=%x\n", i,
298 old_interrupt, new_interrupt);
9d926598
BS
299 cpu_interrupt(env, CPU_INTERRUPT_HARD);
300 }
301 break;
302 }
303 }
9f94778c 304 } else if (env->interrupt_request & CPU_INTERRUPT_HARD) {
d532b26c
IK
305 CPUIRQ_DPRINTF("Interrupts disabled, pil=%08x pil_in=%08x softint=%08x "
306 "current interrupt %x\n",
307 pil, env->pil_in, env->softint, env->interrupt_index);
9f94778c
AT
308 env->interrupt_index = 0;
309 cpu_reset_interrupt(env, CPU_INTERRUPT_HARD);
9d926598
BS
310 }
311}
312
ce18c558 313static void cpu_kick_irq(SPARCCPU *cpu)
8f4efc55 314{
ce18c558
AF
315 CPUSPARCState *env = &cpu->env;
316
8f4efc55
IK
317 env->halted = 0;
318 cpu_check_irqs(env);
94ad5b00 319 qemu_cpu_kick(env);
8f4efc55
IK
320}
321
361dea40 322static void cpu_set_ivec_irq(void *opaque, int irq, int level)
9d926598 323{
b64ba4b2
AF
324 SPARCCPU *cpu = opaque;
325 CPUSPARCState *env = &cpu->env;
9d926598
BS
326
327 if (level) {
23cf96e1
AT
328 if (!(env->ivec_status & 0x20)) {
329 CPUIRQ_DPRINTF("Raise IVEC IRQ %d\n", irq);
330 env->halted = 0;
331 env->interrupt_index = TT_IVEC;
332 env->ivec_status |= 0x20;
333 env->ivec_data[0] = (0x1f << 6) | irq;
334 env->ivec_data[1] = 0;
335 env->ivec_data[2] = 0;
336 cpu_interrupt(env, CPU_INTERRUPT_HARD);
337 }
338 } else {
339 if (env->ivec_status & 0x20) {
340 CPUIRQ_DPRINTF("Lower IVEC IRQ %d\n", irq);
341 env->ivec_status &= ~0x20;
342 cpu_reset_interrupt(env, CPU_INTERRUPT_HARD);
343 }
9d926598
BS
344 }
345}
346
e87231d4 347typedef struct ResetData {
403d7a2d 348 SPARCCPU *cpu;
44a99354 349 uint64_t prom_addr;
e87231d4
BS
350} ResetData;
351
8f4efc55
IK
352void cpu_put_timer(QEMUFile *f, CPUTimer *s)
353{
354 qemu_put_be32s(f, &s->frequency);
355 qemu_put_be32s(f, &s->disabled);
356 qemu_put_be64s(f, &s->disabled_mask);
357 qemu_put_sbe64s(f, &s->clock_offset);
358
359 qemu_put_timer(f, s->qtimer);
360}
361
362void cpu_get_timer(QEMUFile *f, CPUTimer *s)
363{
364 qemu_get_be32s(f, &s->frequency);
365 qemu_get_be32s(f, &s->disabled);
366 qemu_get_be64s(f, &s->disabled_mask);
367 qemu_get_sbe64s(f, &s->clock_offset);
368
369 qemu_get_timer(f, s->qtimer);
370}
371
6b678e1f 372static CPUTimer *cpu_timer_create(const char *name, SPARCCPU *cpu,
8f4efc55
IK
373 QEMUBHFunc *cb, uint32_t frequency,
374 uint64_t disabled_mask)
375{
7267c094 376 CPUTimer *timer = g_malloc0(sizeof (CPUTimer));
8f4efc55
IK
377
378 timer->name = name;
379 timer->frequency = frequency;
380 timer->disabled_mask = disabled_mask;
381
382 timer->disabled = 1;
74475455 383 timer->clock_offset = qemu_get_clock_ns(vm_clock);
8f4efc55 384
6b678e1f 385 timer->qtimer = qemu_new_timer_ns(vm_clock, cb, cpu);
8f4efc55
IK
386
387 return timer;
388}
389
390static void cpu_timer_reset(CPUTimer *timer)
391{
392 timer->disabled = 1;
74475455 393 timer->clock_offset = qemu_get_clock_ns(vm_clock);
8f4efc55
IK
394
395 qemu_del_timer(timer->qtimer);
396}
397
c68ea704
FB
398static void main_cpu_reset(void *opaque)
399{
e87231d4 400 ResetData *s = (ResetData *)opaque;
403d7a2d 401 CPUSPARCState *env = &s->cpu->env;
44a99354 402 static unsigned int nr_resets;
20c9f095 403
403d7a2d 404 cpu_reset(CPU(s->cpu));
8f4efc55
IK
405
406 cpu_timer_reset(env->tick);
407 cpu_timer_reset(env->stick);
408 cpu_timer_reset(env->hstick);
409
e87231d4
BS
410 env->gregs[1] = 0; // Memory start
411 env->gregs[2] = ram_size; // Memory size
412 env->gregs[3] = 0; // Machine description XXX
44a99354
BS
413 if (nr_resets++ == 0) {
414 /* Power on reset */
415 env->pc = s->prom_addr + 0x20ULL;
416 } else {
417 env->pc = s->prom_addr + 0x40ULL;
418 }
e87231d4 419 env->npc = env->pc + 4;
20c9f095
BS
420}
421
22548760 422static void tick_irq(void *opaque)
20c9f095 423{
6b678e1f
AF
424 SPARCCPU *cpu = opaque;
425 CPUSPARCState *env = &cpu->env;
20c9f095 426
8f4efc55
IK
427 CPUTimer* timer = env->tick;
428
429 if (timer->disabled) {
430 CPUIRQ_DPRINTF("tick_irq: softint disabled\n");
431 return;
432 } else {
433 CPUIRQ_DPRINTF("tick: fire\n");
8fa211e8 434 }
8f4efc55
IK
435
436 env->softint |= SOFTINT_TIMER;
ce18c558 437 cpu_kick_irq(cpu);
20c9f095
BS
438}
439
22548760 440static void stick_irq(void *opaque)
20c9f095 441{
6b678e1f
AF
442 SPARCCPU *cpu = opaque;
443 CPUSPARCState *env = &cpu->env;
20c9f095 444
8f4efc55
IK
445 CPUTimer* timer = env->stick;
446
447 if (timer->disabled) {
448 CPUIRQ_DPRINTF("stick_irq: softint disabled\n");
449 return;
450 } else {
451 CPUIRQ_DPRINTF("stick: fire\n");
8fa211e8 452 }
8f4efc55
IK
453
454 env->softint |= SOFTINT_STIMER;
ce18c558 455 cpu_kick_irq(cpu);
20c9f095
BS
456}
457
22548760 458static void hstick_irq(void *opaque)
20c9f095 459{
6b678e1f
AF
460 SPARCCPU *cpu = opaque;
461 CPUSPARCState *env = &cpu->env;
20c9f095 462
8f4efc55
IK
463 CPUTimer* timer = env->hstick;
464
465 if (timer->disabled) {
466 CPUIRQ_DPRINTF("hstick_irq: softint disabled\n");
467 return;
468 } else {
469 CPUIRQ_DPRINTF("hstick: fire\n");
8fa211e8 470 }
8f4efc55
IK
471
472 env->softint |= SOFTINT_STIMER;
ce18c558 473 cpu_kick_irq(cpu);
8f4efc55
IK
474}
475
476static int64_t cpu_to_timer_ticks(int64_t cpu_ticks, uint32_t frequency)
477{
478 return muldiv64(cpu_ticks, get_ticks_per_sec(), frequency);
479}
480
481static uint64_t timer_to_cpu_ticks(int64_t timer_ticks, uint32_t frequency)
482{
483 return muldiv64(timer_ticks, frequency, get_ticks_per_sec());
c68ea704
FB
484}
485
8f4efc55 486void cpu_tick_set_count(CPUTimer *timer, uint64_t count)
f4b1a842 487{
8f4efc55
IK
488 uint64_t real_count = count & ~timer->disabled_mask;
489 uint64_t disabled_bit = count & timer->disabled_mask;
490
74475455 491 int64_t vm_clock_offset = qemu_get_clock_ns(vm_clock) -
8f4efc55
IK
492 cpu_to_timer_ticks(real_count, timer->frequency);
493
494 TIMER_DPRINTF("%s set_count count=0x%016lx (%s) p=%p\n",
495 timer->name, real_count,
496 timer->disabled?"disabled":"enabled", timer);
497
498 timer->disabled = disabled_bit ? 1 : 0;
499 timer->clock_offset = vm_clock_offset;
f4b1a842
BS
500}
501
8f4efc55 502uint64_t cpu_tick_get_count(CPUTimer *timer)
f4b1a842 503{
8f4efc55 504 uint64_t real_count = timer_to_cpu_ticks(
74475455 505 qemu_get_clock_ns(vm_clock) - timer->clock_offset,
8f4efc55
IK
506 timer->frequency);
507
508 TIMER_DPRINTF("%s get_count count=0x%016lx (%s) p=%p\n",
509 timer->name, real_count,
510 timer->disabled?"disabled":"enabled", timer);
511
512 if (timer->disabled)
513 real_count |= timer->disabled_mask;
514
515 return real_count;
f4b1a842
BS
516}
517
8f4efc55 518void cpu_tick_set_limit(CPUTimer *timer, uint64_t limit)
f4b1a842 519{
74475455 520 int64_t now = qemu_get_clock_ns(vm_clock);
8f4efc55
IK
521
522 uint64_t real_limit = limit & ~timer->disabled_mask;
523 timer->disabled = (limit & timer->disabled_mask) ? 1 : 0;
524
525 int64_t expires = cpu_to_timer_ticks(real_limit, timer->frequency) +
526 timer->clock_offset;
527
528 if (expires < now) {
529 expires = now + 1;
530 }
531
532 TIMER_DPRINTF("%s set_limit limit=0x%016lx (%s) p=%p "
533 "called with limit=0x%016lx at 0x%016lx (delta=0x%016lx)\n",
534 timer->name, real_limit,
535 timer->disabled?"disabled":"enabled",
536 timer, limit,
537 timer_to_cpu_ticks(now - timer->clock_offset,
538 timer->frequency),
539 timer_to_cpu_ticks(expires - now, timer->frequency));
540
541 if (!real_limit) {
542 TIMER_DPRINTF("%s set_limit limit=ZERO - not starting timer\n",
543 timer->name);
544 qemu_del_timer(timer->qtimer);
545 } else if (timer->disabled) {
546 qemu_del_timer(timer->qtimer);
547 } else {
548 qemu_mod_timer(timer->qtimer, expires);
549 }
f4b1a842
BS
550}
551
361dea40 552static void isa_irq_handler(void *opaque, int n, int level)
1387fe4a 553{
361dea40
BS
554 static const int isa_irq_to_ivec[16] = {
555 [1] = 0x29, /* keyboard */
556 [4] = 0x2b, /* serial */
557 [6] = 0x27, /* floppy */
558 [7] = 0x22, /* parallel */
559 [12] = 0x2a, /* mouse */
560 };
561 qemu_irq *irqs = opaque;
562 int ivec;
563
564 assert(n < 16);
565 ivec = isa_irq_to_ivec[n];
566 EBUS_DPRINTF("Set ISA IRQ %d level %d -> ivec 0x%x\n", n, level, ivec);
567 if (ivec) {
568 qemu_set_irq(irqs[ivec], level);
569 }
1387fe4a
BS
570}
571
c190ea07 572/* EBUS (Eight bit bus) bridge */
48a18b3c 573static ISABus *
361dea40 574pci_ebus_init(PCIBus *bus, int devfn, qemu_irq *irqs)
c190ea07 575{
1387fe4a 576 qemu_irq *isa_irq;
ab953e28 577 PCIDevice *pci_dev;
48a18b3c 578 ISABus *isa_bus;
1387fe4a 579
ab953e28
HP
580 pci_dev = pci_create_simple(bus, devfn, "ebus");
581 isa_bus = DO_UPCAST(ISABus, qbus,
582 qdev_get_child_bus(&pci_dev->qdev, "isa.0"));
361dea40 583 isa_irq = qemu_allocate_irqs(isa_irq_handler, irqs, 16);
48a18b3c
HP
584 isa_bus_irqs(isa_bus, isa_irq);
585 return isa_bus;
53e3c4f9 586}
c190ea07 587
81a322d4 588static int
c5e6fb7e 589pci_ebus_init1(PCIDevice *pci_dev)
53e3c4f9 590{
c5e6fb7e
AK
591 EbusState *s = DO_UPCAST(EbusState, pci_dev, pci_dev);
592
c2d0d012 593 isa_bus_new(&pci_dev->qdev, pci_address_space_io(pci_dev));
c5e6fb7e
AK
594
595 pci_dev->config[0x04] = 0x06; // command = bus master, pci mem
596 pci_dev->config[0x05] = 0x00;
597 pci_dev->config[0x06] = 0xa0; // status = fast back-to-back, 66MHz, no error
598 pci_dev->config[0x07] = 0x03; // status = medium devsel
599 pci_dev->config[0x09] = 0x00; // programming i/f
600 pci_dev->config[0x0D] = 0x0a; // latency_timer
601
602 isa_mmio_setup(&s->bar0, 0x1000000);
e824b2cc 603 pci_register_bar(pci_dev, 0, PCI_BASE_ADDRESS_SPACE_MEMORY, &s->bar0);
c5e6fb7e 604 isa_mmio_setup(&s->bar1, 0x800000);
e824b2cc 605 pci_register_bar(pci_dev, 1, PCI_BASE_ADDRESS_SPACE_MEMORY, &s->bar1);
81a322d4 606 return 0;
c190ea07
BS
607}
608
40021f08
AL
609static void ebus_class_init(ObjectClass *klass, void *data)
610{
611 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
612
613 k->init = pci_ebus_init1;
614 k->vendor_id = PCI_VENDOR_ID_SUN;
615 k->device_id = PCI_DEVICE_ID_SUN_EBUS;
616 k->revision = 0x01;
617 k->class_id = PCI_CLASS_BRIDGE_OTHER;
618}
619
39bffca2
AL
620static TypeInfo ebus_info = {
621 .name = "ebus",
622 .parent = TYPE_PCI_DEVICE,
623 .instance_size = sizeof(EbusState),
624 .class_init = ebus_class_init,
53e3c4f9
BS
625};
626
d4edce38
AK
627typedef struct PROMState {
628 SysBusDevice busdev;
629 MemoryRegion prom;
630} PROMState;
631
409dbce5
AJ
632static uint64_t translate_prom_address(void *opaque, uint64_t addr)
633{
634 target_phys_addr_t *base_addr = (target_phys_addr_t *)opaque;
635 return addr + *base_addr - PROM_VADDR;
636}
637
1baffa46 638/* Boot PROM (OpenBIOS) */
c227f099 639static void prom_init(target_phys_addr_t addr, const char *bios_name)
1baffa46
BS
640{
641 DeviceState *dev;
642 SysBusDevice *s;
643 char *filename;
644 int ret;
645
646 dev = qdev_create(NULL, "openprom");
e23a1b33 647 qdev_init_nofail(dev);
1baffa46
BS
648 s = sysbus_from_qdev(dev);
649
650 sysbus_mmio_map(s, 0, addr);
651
652 /* load boot prom */
653 if (bios_name == NULL) {
654 bios_name = PROM_FILENAME;
655 }
656 filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name);
657 if (filename) {
409dbce5
AJ
658 ret = load_elf(filename, translate_prom_address, &addr,
659 NULL, NULL, NULL, 1, ELF_MACHINE, 0);
1baffa46
BS
660 if (ret < 0 || ret > PROM_SIZE_MAX) {
661 ret = load_image_targphys(filename, addr, PROM_SIZE_MAX);
662 }
7267c094 663 g_free(filename);
1baffa46
BS
664 } else {
665 ret = -1;
666 }
667 if (ret < 0 || ret > PROM_SIZE_MAX) {
668 fprintf(stderr, "qemu: could not load prom '%s'\n", bios_name);
669 exit(1);
670 }
671}
672
81a322d4 673static int prom_init1(SysBusDevice *dev)
1baffa46 674{
d4edce38 675 PROMState *s = FROM_SYSBUS(PROMState, dev);
1baffa46 676
c5705a77
AK
677 memory_region_init_ram(&s->prom, "sun4u.prom", PROM_SIZE_MAX);
678 vmstate_register_ram_global(&s->prom);
d4edce38 679 memory_region_set_readonly(&s->prom, true);
750ecd44 680 sysbus_init_mmio(dev, &s->prom);
81a322d4 681 return 0;
1baffa46
BS
682}
683
999e12bb
AL
684static Property prom_properties[] = {
685 {/* end of property list */},
686};
687
688static void prom_class_init(ObjectClass *klass, void *data)
689{
39bffca2 690 DeviceClass *dc = DEVICE_CLASS(klass);
999e12bb
AL
691 SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);
692
693 k->init = prom_init1;
39bffca2 694 dc->props = prom_properties;
999e12bb
AL
695}
696
39bffca2
AL
697static TypeInfo prom_info = {
698 .name = "openprom",
699 .parent = TYPE_SYS_BUS_DEVICE,
700 .instance_size = sizeof(PROMState),
701 .class_init = prom_class_init,
1baffa46
BS
702};
703
bda42033
BS
704
705typedef struct RamDevice
706{
707 SysBusDevice busdev;
d4edce38 708 MemoryRegion ram;
04843626 709 uint64_t size;
bda42033
BS
710} RamDevice;
711
712/* System RAM */
81a322d4 713static int ram_init1(SysBusDevice *dev)
bda42033 714{
bda42033
BS
715 RamDevice *d = FROM_SYSBUS(RamDevice, dev);
716
c5705a77
AK
717 memory_region_init_ram(&d->ram, "sun4u.ram", d->size);
718 vmstate_register_ram_global(&d->ram);
750ecd44 719 sysbus_init_mmio(dev, &d->ram);
81a322d4 720 return 0;
bda42033
BS
721}
722
c227f099 723static void ram_init(target_phys_addr_t addr, ram_addr_t RAM_size)
bda42033
BS
724{
725 DeviceState *dev;
726 SysBusDevice *s;
727 RamDevice *d;
728
729 /* allocate RAM */
730 dev = qdev_create(NULL, "memory");
731 s = sysbus_from_qdev(dev);
732
733 d = FROM_SYSBUS(RamDevice, s);
734 d->size = RAM_size;
e23a1b33 735 qdev_init_nofail(dev);
bda42033
BS
736
737 sysbus_mmio_map(s, 0, addr);
738}
739
999e12bb
AL
740static Property ram_properties[] = {
741 DEFINE_PROP_UINT64("size", RamDevice, size, 0),
742 DEFINE_PROP_END_OF_LIST(),
743};
744
745static void ram_class_init(ObjectClass *klass, void *data)
746{
39bffca2 747 DeviceClass *dc = DEVICE_CLASS(klass);
999e12bb
AL
748 SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);
749
750 k->init = ram_init1;
39bffca2 751 dc->props = ram_properties;
999e12bb
AL
752}
753
39bffca2
AL
754static TypeInfo ram_info = {
755 .name = "memory",
756 .parent = TYPE_SYS_BUS_DEVICE,
757 .instance_size = sizeof(RamDevice),
758 .class_init = ram_class_init,
bda42033
BS
759};
760
f9d1465f 761static SPARCCPU *cpu_devinit(const char *cpu_model, const struct hwdef *hwdef)
3475187d 762{
8ebdf9dc 763 SPARCCPU *cpu;
98cec4a2 764 CPUSPARCState *env;
e87231d4 765 ResetData *reset_info;
3475187d 766
8f4efc55
IK
767 uint32_t tick_frequency = 100*1000000;
768 uint32_t stick_frequency = 100*1000000;
769 uint32_t hstick_frequency = 100*1000000;
770
8ebdf9dc 771 if (cpu_model == NULL) {
c7ba218d 772 cpu_model = hwdef->default_cpu_model;
8ebdf9dc
AF
773 }
774 cpu = cpu_sparc_init(cpu_model);
775 if (cpu == NULL) {
62724a37
BS
776 fprintf(stderr, "Unable to find Sparc CPU definition\n");
777 exit(1);
778 }
8ebdf9dc 779 env = &cpu->env;
20c9f095 780
6b678e1f 781 env->tick = cpu_timer_create("tick", cpu, tick_irq,
8f4efc55
IK
782 tick_frequency, TICK_NPT_MASK);
783
6b678e1f 784 env->stick = cpu_timer_create("stick", cpu, stick_irq,
8f4efc55 785 stick_frequency, TICK_INT_DIS);
20c9f095 786
6b678e1f 787 env->hstick = cpu_timer_create("hstick", cpu, hstick_irq,
8f4efc55 788 hstick_frequency, TICK_INT_DIS);
e87231d4 789
7267c094 790 reset_info = g_malloc0(sizeof(ResetData));
403d7a2d 791 reset_info->cpu = cpu;
44a99354 792 reset_info->prom_addr = hwdef->prom_addr;
a08d4367 793 qemu_register_reset(main_cpu_reset, reset_info);
c68ea704 794
f9d1465f 795 return cpu;
7b833f5b
BS
796}
797
38bc50f7
RH
798static void sun4uv_init(MemoryRegion *address_space_mem,
799 ram_addr_t RAM_size,
7b833f5b
BS
800 const char *boot_devices,
801 const char *kernel_filename, const char *kernel_cmdline,
802 const char *initrd_filename, const char *cpu_model,
803 const struct hwdef *hwdef)
804{
f9d1465f 805 SPARCCPU *cpu;
43a34704 806 M48t59State *nvram;
7b833f5b 807 unsigned int i;
5f2bf0fe 808 uint64_t initrd_addr, initrd_size, kernel_addr, kernel_size, kernel_entry;
7b833f5b 809 PCIBus *pci_bus, *pci_bus2, *pci_bus3;
48a18b3c 810 ISABus *isa_bus;
361dea40 811 qemu_irq *ivec_irqs, *pbm_irqs;
f455e98c 812 DriveInfo *hd[MAX_IDE_BUS * MAX_IDE_DEVS];
fd8014e1 813 DriveInfo *fd[MAX_FD];
7b833f5b
BS
814 void *fw_cfg;
815
7b833f5b 816 /* init CPUs */
f9d1465f 817 cpu = cpu_devinit(cpu_model, hwdef);
7b833f5b 818
bda42033
BS
819 /* set up devices */
820 ram_init(0, RAM_size);
3475187d 821
1baffa46 822 prom_init(hwdef->prom_addr, bios_name);
3475187d 823
b64ba4b2 824 ivec_irqs = qemu_allocate_irqs(cpu_set_ivec_irq, cpu, IVEC_MAX);
361dea40
BS
825 pci_bus = pci_apb_init(APB_SPECIAL_BASE, APB_MEM_BASE, ivec_irqs, &pci_bus2,
826 &pci_bus3, &pbm_irqs);
f2898771 827 pci_vga_init(pci_bus);
83469015 828
c190ea07 829 // XXX Should be pci_bus3
361dea40 830 isa_bus = pci_ebus_init(pci_bus, -1, pbm_irqs);
c190ea07 831
e87231d4
BS
832 i = 0;
833 if (hwdef->console_serial_base) {
38bc50f7 834 serial_mm_init(address_space_mem, hwdef->console_serial_base, 0,
39186d8a 835 NULL, 115200, serial_hds[i], DEVICE_BIG_ENDIAN);
e87231d4
BS
836 i++;
837 }
838 for(; i < MAX_SERIAL_PORTS; i++) {
83469015 839 if (serial_hds[i]) {
48a18b3c 840 serial_isa_init(isa_bus, i, serial_hds[i]);
83469015
FB
841 }
842 }
843
844 for(i = 0; i < MAX_PARALLEL_PORTS; i++) {
845 if (parallel_hds[i]) {
48a18b3c 846 parallel_init(isa_bus, i, parallel_hds[i]);
83469015
FB
847 }
848 }
849
cb457d76 850 for(i = 0; i < nb_nics; i++)
07caea31 851 pci_nic_init_nofail(&nd_table[i], "ne2k_pci", NULL);
83469015 852
75717903 853 ide_drive_get(hd, MAX_IDE_BUS);
e4bcb14c 854
3b898dda
BS
855 pci_cmd646_ide_init(pci_bus, hd, 1);
856
48a18b3c 857 isa_create_simple(isa_bus, "i8042");
e4bcb14c 858 for(i = 0; i < MAX_FD; i++) {
fd8014e1 859 fd[i] = drive_get(IF_FLOPPY, 0, i);
e4bcb14c 860 }
48a18b3c
HP
861 fdctrl_init_isa(isa_bus, fd);
862 nvram = m48t59_init_isa(isa_bus, 0x0074, NVRAM_SIZE, 59);
636aa70a
BS
863
864 initrd_size = 0;
5f2bf0fe 865 initrd_addr = 0;
636aa70a 866 kernel_size = sun4u_load_kernel(kernel_filename, initrd_filename,
5f2bf0fe
BS
867 ram_size, &initrd_size, &initrd_addr,
868 &kernel_addr, &kernel_entry);
636aa70a 869
22548760 870 sun4u_NVRAM_set_params(nvram, NVRAM_SIZE, "Sun4u", RAM_size, boot_devices,
5f2bf0fe 871 kernel_addr, kernel_size,
0d31cb99 872 kernel_cmdline,
5f2bf0fe 873 initrd_addr, initrd_size,
0d31cb99
BS
874 /* XXX: need an option to load a NVRAM image */
875 0,
876 graphic_width, graphic_height, graphic_depth,
877 (uint8_t *)&nd_table[0].macaddr);
83469015 878
3cce6243
BS
879 fw_cfg = fw_cfg_init(BIOS_CFG_IOPORT, BIOS_CFG_IOPORT + 1, 0, 0);
880 fw_cfg_add_i32(fw_cfg, FW_CFG_ID, 1);
905fdcb5
BS
881 fw_cfg_add_i64(fw_cfg, FW_CFG_RAM_SIZE, (uint64_t)ram_size);
882 fw_cfg_add_i16(fw_cfg, FW_CFG_MACHINE_ID, hwdef->machine_id);
5f2bf0fe
BS
883 fw_cfg_add_i64(fw_cfg, FW_CFG_KERNEL_ADDR, kernel_entry);
884 fw_cfg_add_i64(fw_cfg, FW_CFG_KERNEL_SIZE, kernel_size);
513f789f 885 if (kernel_cmdline) {
9c9b0512
BS
886 fw_cfg_add_i32(fw_cfg, FW_CFG_CMDLINE_SIZE,
887 strlen(kernel_cmdline) + 1);
6bb4ca57
BS
888 fw_cfg_add_bytes(fw_cfg, FW_CFG_CMDLINE_DATA,
889 (uint8_t*)strdup(kernel_cmdline),
890 strlen(kernel_cmdline) + 1);
513f789f 891 } else {
9c9b0512 892 fw_cfg_add_i32(fw_cfg, FW_CFG_CMDLINE_SIZE, 0);
513f789f 893 }
5f2bf0fe
BS
894 fw_cfg_add_i64(fw_cfg, FW_CFG_INITRD_ADDR, initrd_addr);
895 fw_cfg_add_i64(fw_cfg, FW_CFG_INITRD_SIZE, initrd_size);
513f789f 896 fw_cfg_add_i16(fw_cfg, FW_CFG_BOOT_DEVICE, boot_devices[0]);
7589690c
BS
897
898 fw_cfg_add_i16(fw_cfg, FW_CFG_SPARC64_WIDTH, graphic_width);
899 fw_cfg_add_i16(fw_cfg, FW_CFG_SPARC64_HEIGHT, graphic_height);
900 fw_cfg_add_i16(fw_cfg, FW_CFG_SPARC64_DEPTH, graphic_depth);
901
513f789f 902 qemu_register_boot_set(fw_cfg_boot_set, fw_cfg);
3475187d
FB
903}
904
905fdcb5
BS
905enum {
906 sun4u_id = 0,
907 sun4v_id = 64,
e87231d4 908 niagara_id,
905fdcb5
BS
909};
910
c7ba218d
BS
911static const struct hwdef hwdefs[] = {
912 /* Sun4u generic PC-like machine */
913 {
5910b047 914 .default_cpu_model = "TI UltraSparc IIi",
905fdcb5 915 .machine_id = sun4u_id,
e87231d4
BS
916 .prom_addr = 0x1fff0000000ULL,
917 .console_serial_base = 0,
c7ba218d
BS
918 },
919 /* Sun4v generic PC-like machine */
920 {
921 .default_cpu_model = "Sun UltraSparc T1",
905fdcb5 922 .machine_id = sun4v_id,
e87231d4
BS
923 .prom_addr = 0x1fff0000000ULL,
924 .console_serial_base = 0,
925 },
926 /* Sun4v generic Niagara machine */
927 {
928 .default_cpu_model = "Sun UltraSparc T1",
929 .machine_id = niagara_id,
930 .prom_addr = 0xfff0000000ULL,
931 .console_serial_base = 0xfff0c2c000ULL,
c7ba218d
BS
932 },
933};
934
935/* Sun4u hardware initialisation */
c227f099 936static void sun4u_init(ram_addr_t RAM_size,
3023f332 937 const char *boot_devices,
c7ba218d
BS
938 const char *kernel_filename, const char *kernel_cmdline,
939 const char *initrd_filename, const char *cpu_model)
940{
38bc50f7 941 sun4uv_init(get_system_memory(), RAM_size, boot_devices, kernel_filename,
c7ba218d
BS
942 kernel_cmdline, initrd_filename, cpu_model, &hwdefs[0]);
943}
944
945/* Sun4v hardware initialisation */
c227f099 946static void sun4v_init(ram_addr_t RAM_size,
3023f332 947 const char *boot_devices,
c7ba218d
BS
948 const char *kernel_filename, const char *kernel_cmdline,
949 const char *initrd_filename, const char *cpu_model)
950{
38bc50f7 951 sun4uv_init(get_system_memory(), RAM_size, boot_devices, kernel_filename,
c7ba218d
BS
952 kernel_cmdline, initrd_filename, cpu_model, &hwdefs[1]);
953}
954
e87231d4 955/* Niagara hardware initialisation */
c227f099 956static void niagara_init(ram_addr_t RAM_size,
3023f332 957 const char *boot_devices,
e87231d4
BS
958 const char *kernel_filename, const char *kernel_cmdline,
959 const char *initrd_filename, const char *cpu_model)
960{
38bc50f7 961 sun4uv_init(get_system_memory(), RAM_size, boot_devices, kernel_filename,
e87231d4
BS
962 kernel_cmdline, initrd_filename, cpu_model, &hwdefs[2]);
963}
964
f80f9ec9 965static QEMUMachine sun4u_machine = {
66de733b
BS
966 .name = "sun4u",
967 .desc = "Sun4u platform",
968 .init = sun4u_init,
1bcee014 969 .max_cpus = 1, // XXX for now
0c257437 970 .is_default = 1,
3475187d 971};
c7ba218d 972
f80f9ec9 973static QEMUMachine sun4v_machine = {
66de733b
BS
974 .name = "sun4v",
975 .desc = "Sun4v platform",
976 .init = sun4v_init,
1bcee014 977 .max_cpus = 1, // XXX for now
c7ba218d 978};
e87231d4 979
f80f9ec9 980static QEMUMachine niagara_machine = {
e87231d4
BS
981 .name = "Niagara",
982 .desc = "Sun4v platform, Niagara",
983 .init = niagara_init,
1bcee014 984 .max_cpus = 1, // XXX for now
e87231d4 985};
f80f9ec9 986
83f7d43a
AF
987static void sun4u_register_types(void)
988{
989 type_register_static(&ebus_info);
990 type_register_static(&prom_info);
991 type_register_static(&ram_info);
992}
993
f80f9ec9
AL
994static void sun4u_machine_init(void)
995{
996 qemu_register_machine(&sun4u_machine);
997 qemu_register_machine(&sun4v_machine);
998 qemu_register_machine(&niagara_machine);
999}
1000
83f7d43a 1001type_init(sun4u_register_types)
f80f9ec9 1002machine_init(sun4u_machine_init);