]> git.proxmox.com Git - qemu.git/blame - hw/sun4m.c
New '-bios' option, used to select an alternate BIOS image from bios_dir.
[qemu.git] / hw / sun4m.c
CommitLineData
420557e8
FB
1/*
2 * QEMU Sun4m System Emulator
5fafdf24 3 *
b81b3b10 4 * Copyright (c) 2003-2005 Fabrice Bellard
5fafdf24 5 *
420557e8
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 */
24#include "vl.h"
b3a23197 25//#define DEBUG_IRQ
420557e8 26
36cd9210
BS
27/*
28 * Sun4m architecture was used in the following machines:
29 *
30 * SPARCserver 6xxMP/xx
31 * SPARCclassic (SPARCclassic Server)(SPARCstation LC) (4/15), SPARCclassic X (4/10)
32 * SPARCstation LX/ZX (4/30)
33 * SPARCstation Voyager
34 * SPARCstation 10/xx, SPARCserver 10/xx
35 * SPARCstation 5, SPARCserver 5
36 * SPARCstation 20/xx, SPARCserver 20
37 * SPARCstation 4
38 *
39 * See for example: http://www.sunhelp.org/faq/sunref1.html
40 */
41
b3a23197
BS
42#ifdef DEBUG_IRQ
43#define DPRINTF(fmt, args...) \
44 do { printf("CPUIRQ: " fmt , ##args); } while (0)
45#else
46#define DPRINTF(fmt, args...)
47#endif
48
420557e8 49#define KERNEL_LOAD_ADDR 0x00004000
b6f479d3 50#define CMDLINE_ADDR 0x007ff000
713c45fa 51#define INITRD_LOAD_ADDR 0x00800000
b3783731 52#define PROM_SIZE_MAX (256 * 1024)
40ce0a9a
BS
53#define PROM_PADDR 0xff0000000ULL
54#define PROM_VADDR 0xffd00000
0986ac3b 55#define PROM_FILENAME "openbios-sparc32"
b8174937 56
ba3c64fb 57#define MAX_CPUS 16
b3a23197 58#define MAX_PILS 16
420557e8 59
36cd9210 60struct hwdef {
5dcb6b91
BS
61 target_phys_addr_t iommu_base, slavio_base;
62 target_phys_addr_t intctl_base, counter_base, nvram_base, ms_kb_base;
63 target_phys_addr_t serial_base, fd_base;
64 target_phys_addr_t dma_base, esp_base, le_base;
65 target_phys_addr_t tcx_base, cs_base, power_base;
36cd9210
BS
66 long vram_size, nvram_size;
67 // IRQ numbers are not PIL ones, but master interrupt controller register
68 // bit numbers
d7edfd27 69 int intctl_g_intr, esp_irq, le_irq, clock_irq, clock1_irq;
36cd9210
BS
70 int ser_irq, ms_kb_irq, fd_irq, me_irq, cs_irq;
71 int machine_id; // For NVRAM
e0353fe2 72 uint32_t intbit_to_level[32];
36cd9210
BS
73};
74
420557e8
FB
75/* TSC handling */
76
77uint64_t cpu_get_tsc()
78{
79 return qemu_get_clock(vm_clock);
80}
81
6f7e9aec
FB
82int DMA_get_channel_mode (int nchan)
83{
84 return 0;
85}
86int DMA_read_memory (int nchan, void *buf, int pos, int size)
87{
88 return 0;
89}
90int DMA_write_memory (int nchan, void *buf, int pos, int size)
91{
92 return 0;
93}
94void DMA_hold_DREQ (int nchan) {}
95void DMA_release_DREQ (int nchan) {}
96void DMA_schedule(int nchan) {}
97void DMA_run (void) {}
98void DMA_init (int high_page_enable) {}
99void DMA_register_channel (int nchan,
100 DMA_transfer_handler transfer_handler,
101 void *opaque)
102{
103}
104
819385c5 105static void nvram_set_word (m48t59_t *nvram, uint32_t addr, uint16_t value)
6f7e9aec 106{
819385c5
FB
107 m48t59_write(nvram, addr++, (value >> 8) & 0xff);
108 m48t59_write(nvram, addr++, value & 0xff);
6f7e9aec
FB
109}
110
819385c5 111static void nvram_set_lword (m48t59_t *nvram, uint32_t addr, uint32_t value)
6f7e9aec 112{
819385c5
FB
113 m48t59_write(nvram, addr++, value >> 24);
114 m48t59_write(nvram, addr++, (value >> 16) & 0xff);
115 m48t59_write(nvram, addr++, (value >> 8) & 0xff);
116 m48t59_write(nvram, addr++, value & 0xff);
6f7e9aec
FB
117}
118
819385c5 119static void nvram_set_string (m48t59_t *nvram, uint32_t addr,
6f7e9aec
FB
120 const unsigned char *str, uint32_t max)
121{
122 unsigned int i;
123
124 for (i = 0; i < max && str[i] != '\0'; i++) {
819385c5 125 m48t59_write(nvram, addr + i, str[i]);
6f7e9aec 126 }
819385c5 127 m48t59_write(nvram, addr + max - 1, '\0');
6f7e9aec 128}
420557e8 129
66508601
BS
130static uint32_t nvram_set_var (m48t59_t *nvram, uint32_t addr,
131 const unsigned char *str)
132{
133 uint32_t len;
134
135 len = strlen(str) + 1;
136 nvram_set_string(nvram, addr, str, len);
137
138 return addr + len;
139}
140
141static void nvram_finish_partition (m48t59_t *nvram, uint32_t start,
142 uint32_t end)
143{
144 unsigned int i, sum;
145
146 // Length divided by 16
147 m48t59_write(nvram, start + 2, ((end - start) >> 12) & 0xff);
148 m48t59_write(nvram, start + 3, ((end - start) >> 4) & 0xff);
149 // Checksum
150 sum = m48t59_read(nvram, start);
151 for (i = 0; i < 14; i++) {
152 sum += m48t59_read(nvram, start + 2 + i);
153 sum = (sum + ((sum & 0xff00) >> 8)) & 0xff;
154 }
155 m48t59_write(nvram, start + 1, sum & 0xff);
156}
157
6f7e9aec
FB
158extern int nographic;
159
819385c5 160static void nvram_init(m48t59_t *nvram, uint8_t *macaddr, const char *cmdline,
6f7e9aec
FB
161 int boot_device, uint32_t RAM_size,
162 uint32_t kernel_size,
36cd9210
BS
163 int width, int height, int depth,
164 int machine_id)
e80cfcfc
FB
165{
166 unsigned char tmp = 0;
66508601
BS
167 unsigned int i, j;
168 uint32_t start, end;
e80cfcfc 169
6f7e9aec
FB
170 // Try to match PPC NVRAM
171 nvram_set_string(nvram, 0x00, "QEMU_BIOS", 16);
172 nvram_set_lword(nvram, 0x10, 0x00000001); /* structure v1 */
173 // NVRAM_size, arch not applicable
ba3c64fb
FB
174 m48t59_write(nvram, 0x2D, smp_cpus & 0xff);
175 m48t59_write(nvram, 0x2E, 0);
819385c5 176 m48t59_write(nvram, 0x2F, nographic & 0xff);
6f7e9aec 177 nvram_set_lword(nvram, 0x30, RAM_size);
819385c5 178 m48t59_write(nvram, 0x34, boot_device & 0xff);
6f7e9aec
FB
179 nvram_set_lword(nvram, 0x38, KERNEL_LOAD_ADDR);
180 nvram_set_lword(nvram, 0x3C, kernel_size);
b6f479d3 181 if (cmdline) {
b6f479d3 182 strcpy(phys_ram_base + CMDLINE_ADDR, cmdline);
6f7e9aec
FB
183 nvram_set_lword(nvram, 0x40, CMDLINE_ADDR);
184 nvram_set_lword(nvram, 0x44, strlen(cmdline));
b6f479d3 185 }
6f7e9aec
FB
186 // initrd_image, initrd_size passed differently
187 nvram_set_word(nvram, 0x54, width);
188 nvram_set_word(nvram, 0x56, height);
189 nvram_set_word(nvram, 0x58, depth);
b6f479d3 190
66508601
BS
191 // OpenBIOS nvram variables
192 // Variable partition
193 start = 252;
194 m48t59_write(nvram, start, 0x70);
195 nvram_set_string(nvram, start + 4, "system", 12);
196
197 end = start + 16;
198 for (i = 0; i < nb_prom_envs; i++)
199 end = nvram_set_var(nvram, end, prom_envs[i]);
200
201 m48t59_write(nvram, end++ , 0);
202 end = start + ((end - start + 15) & ~15);
203 nvram_finish_partition(nvram, start, end);
204
205 // free partition
206 start = end;
207 m48t59_write(nvram, start, 0x7f);
208 nvram_set_string(nvram, start + 4, "free", 12);
209
210 end = 0x1fd0;
211 nvram_finish_partition(nvram, start, end);
212
6f7e9aec 213 // Sun4m specific use
66508601 214 start = i = 0x1fd8;
819385c5 215 m48t59_write(nvram, i++, 0x01);
36cd9210 216 m48t59_write(nvram, i++, machine_id);
e80cfcfc 217 j = 0;
819385c5
FB
218 m48t59_write(nvram, i++, macaddr[j++]);
219 m48t59_write(nvram, i++, macaddr[j++]);
220 m48t59_write(nvram, i++, macaddr[j++]);
221 m48t59_write(nvram, i++, macaddr[j++]);
222 m48t59_write(nvram, i++, macaddr[j++]);
223 m48t59_write(nvram, i, macaddr[j]);
e80cfcfc
FB
224
225 /* Calculate checksum */
66508601
BS
226 for (i = start; i < start + 15; i++) {
227 tmp ^= m48t59_read(nvram, i);
e80cfcfc 228 }
66508601 229 m48t59_write(nvram, start + 15, tmp);
e80cfcfc
FB
230}
231
232static void *slavio_intctl;
233
234void pic_info()
235{
236 slavio_pic_info(slavio_intctl);
237}
238
239void irq_info()
240{
241 slavio_irq_info(slavio_intctl);
242}
243
327ac2e7
BS
244void cpu_check_irqs(CPUState *env)
245{
246 if (env->pil_in && (env->interrupt_index == 0 ||
247 (env->interrupt_index & ~15) == TT_EXTINT)) {
248 unsigned int i;
249
250 for (i = 15; i > 0; i--) {
251 if (env->pil_in & (1 << i)) {
252 int old_interrupt = env->interrupt_index;
253
254 env->interrupt_index = TT_EXTINT | i;
255 if (old_interrupt != env->interrupt_index)
256 cpu_interrupt(env, CPU_INTERRUPT_HARD);
257 break;
258 }
259 }
260 } else if (!env->pil_in && (env->interrupt_index & ~15) == TT_EXTINT) {
261 env->interrupt_index = 0;
262 cpu_reset_interrupt(env, CPU_INTERRUPT_HARD);
263 }
264}
265
b3a23197
BS
266static void cpu_set_irq(void *opaque, int irq, int level)
267{
268 CPUState *env = opaque;
269
270 if (level) {
271 DPRINTF("Raise CPU IRQ %d\n", irq);
b3a23197 272 env->halted = 0;
327ac2e7
BS
273 env->pil_in |= 1 << irq;
274 cpu_check_irqs(env);
b3a23197
BS
275 } else {
276 DPRINTF("Lower CPU IRQ %d\n", irq);
327ac2e7
BS
277 env->pil_in &= ~(1 << irq);
278 cpu_check_irqs(env);
b3a23197
BS
279 }
280}
281
282static void dummy_cpu_set_irq(void *opaque, int irq, int level)
283{
284}
285
3475187d
FB
286static void *slavio_misc;
287
288void qemu_system_powerdown(void)
289{
290 slavio_set_power_fail(slavio_misc, 1);
291}
292
c68ea704
FB
293static void main_cpu_reset(void *opaque)
294{
295 CPUState *env = opaque;
3d29fbef
BS
296
297 cpu_reset(env);
298 env->halted = 0;
299}
300
301static void secondary_cpu_reset(void *opaque)
302{
303 CPUState *env = opaque;
304
c68ea704 305 cpu_reset(env);
3d29fbef 306 env->halted = 1;
c68ea704
FB
307}
308
b3ceef24
BS
309static void *sun4m_hw_init(const struct hwdef *hwdef, int RAM_size,
310 DisplayState *ds, const char *cpu_model)
36cd9210 311
420557e8 312{
ba3c64fb 313 CPUState *env, *envs[MAX_CPUS];
713c45fa 314 unsigned int i;
b3ceef24 315 void *iommu, *espdma, *ledma, *main_esp, *nvram;
62724a37 316 const sparc_def_t *def;
b3a23197 317 qemu_irq *cpu_irqs[MAX_CPUS], *slavio_irq, *slavio_cpu_irq,
d7edfd27 318 *espdma_irq, *ledma_irq;
2d069bab 319 qemu_irq *esp_reset, *le_reset;
420557e8 320
ba3c64fb 321 /* init CPUs */
62724a37
BS
322 sparc_find_by_name(cpu_model, &def);
323 if (def == NULL) {
324 fprintf(stderr, "Unable to find Sparc CPU definition\n");
325 exit(1);
326 }
b3a23197 327
ba3c64fb
FB
328 for(i = 0; i < smp_cpus; i++) {
329 env = cpu_init();
62724a37 330 cpu_sparc_register(env, def);
ba3c64fb 331 envs[i] = env;
3d29fbef
BS
332 if (i == 0) {
333 qemu_register_reset(main_cpu_reset, env);
334 } else {
335 qemu_register_reset(secondary_cpu_reset, env);
ba3c64fb 336 env->halted = 1;
3d29fbef 337 }
ba3c64fb 338 register_savevm("cpu", i, 3, cpu_save, cpu_load, env);
b3a23197 339 cpu_irqs[i] = qemu_allocate_irqs(cpu_set_irq, envs[i], MAX_PILS);
ba3c64fb 340 }
b3a23197
BS
341
342 for (i = smp_cpus; i < MAX_CPUS; i++)
343 cpu_irqs[i] = qemu_allocate_irqs(dummy_cpu_set_irq, NULL, MAX_PILS);
344
420557e8 345 /* allocate RAM */
b3ceef24 346 cpu_register_physical_memory(0, RAM_size, 0);
420557e8 347
36cd9210
BS
348 iommu = iommu_init(hwdef->iommu_base);
349 slavio_intctl = slavio_intctl_init(hwdef->intctl_base,
5dcb6b91 350 hwdef->intctl_base + 0x10000ULL,
d537cf6c 351 &hwdef->intbit_to_level[0],
d7edfd27 352 &slavio_irq, &slavio_cpu_irq,
b3a23197 353 cpu_irqs,
d7edfd27 354 hwdef->clock_irq);
b3a23197 355
5aca8c3b 356 espdma = sparc32_dma_init(hwdef->dma_base, slavio_irq[hwdef->esp_irq],
2d069bab
BS
357 iommu, &espdma_irq, &esp_reset);
358
5aca8c3b 359 ledma = sparc32_dma_init(hwdef->dma_base + 16ULL,
2d069bab
BS
360 slavio_irq[hwdef->le_irq], iommu, &ledma_irq,
361 &le_reset);
ba3c64fb 362
eee0b836
BS
363 if (graphic_depth != 8 && graphic_depth != 24) {
364 fprintf(stderr, "qemu: Unsupported depth: %d\n", graphic_depth);
365 exit (1);
366 }
b3ceef24 367 tcx_init(ds, hwdef->tcx_base, phys_ram_base + RAM_size, RAM_size,
eee0b836 368 hwdef->vram_size, graphic_width, graphic_height, graphic_depth);
dbe06e18
BS
369
370 if (nd_table[0].model == NULL
371 || strcmp(nd_table[0].model, "lance") == 0) {
2d069bab 372 lance_init(&nd_table[0], hwdef->le_base, ledma, *ledma_irq, le_reset);
c4a7060c
BS
373 } else if (strcmp(nd_table[0].model, "?") == 0) {
374 fprintf(stderr, "qemu: Supported NICs: lance\n");
375 exit (1);
dbe06e18
BS
376 } else {
377 fprintf(stderr, "qemu: Unsupported NIC: %s\n", nd_table[0].model);
378 exit (1);
a41b2ff2 379 }
dbe06e18 380
d537cf6c
PB
381 nvram = m48t59_init(slavio_irq[0], hwdef->nvram_base, 0,
382 hwdef->nvram_size, 8);
ba3c64fb 383 for (i = 0; i < MAX_CPUS; i++) {
5dcb6b91
BS
384 slavio_timer_init(hwdef->counter_base +
385 (target_phys_addr_t)(i * TARGET_PAGE_SIZE),
d7edfd27 386 slavio_cpu_irq[i], 0);
ba3c64fb 387 }
d7edfd27
BS
388 slavio_timer_init(hwdef->counter_base + 0x10000ULL,
389 slavio_irq[hwdef->clock1_irq], 2);
d537cf6c 390 slavio_serial_ms_kbd_init(hwdef->ms_kb_base, slavio_irq[hwdef->ms_kb_irq]);
b81b3b10
FB
391 // Slavio TTYA (base+4, Linux ttyS0) is the first Qemu serial device
392 // Slavio TTYB (base+0, Linux ttyS1) is the second Qemu serial device
d537cf6c
PB
393 slavio_serial_init(hwdef->serial_base, slavio_irq[hwdef->ser_irq],
394 serial_hds[1], serial_hds[0]);
395 fdctrl_init(slavio_irq[hwdef->fd_irq], 0, 1, hwdef->fd_base, fd_table);
2d069bab
BS
396
397 main_esp = esp_init(bs_table, hwdef->esp_base, espdma, *espdma_irq,
398 esp_reset);
f1587550
TS
399
400 for (i = 0; i < MAX_DISKS; i++) {
401 if (bs_table[i]) {
402 esp_scsi_attach(main_esp, bs_table[i], i);
403 }
404 }
405
5dcb6b91 406 slavio_misc = slavio_misc_init(hwdef->slavio_base, hwdef->power_base,
d537cf6c 407 slavio_irq[hwdef->me_irq]);
5dcb6b91 408 if (hwdef->cs_base != (target_phys_addr_t)-1)
803b3c7b 409 cs_init(hwdef->cs_base, hwdef->cs_irq, slavio_intctl);
b3ceef24
BS
410
411 return nvram;
36cd9210
BS
412}
413
b3ceef24 414static void sun4m_load_kernel(long vram_size, int RAM_size, int boot_device,
36cd9210
BS
415 const char *kernel_filename,
416 const char *kernel_cmdline,
417 const char *initrd_filename,
b3ceef24
BS
418 int machine_id,
419 void *nvram)
36cd9210
BS
420{
421 int ret, linux_boot;
422 char buf[1024];
423 unsigned int i;
424 long prom_offset, initrd_size, kernel_size;
425
426 linux_boot = (kernel_filename != NULL);
420557e8 427
b3ceef24 428 prom_offset = RAM_size + vram_size;
40ce0a9a 429 cpu_register_physical_memory(PROM_PADDR,
5fafdf24 430 (PROM_SIZE_MAX + TARGET_PAGE_SIZE - 1) & TARGET_PAGE_MASK,
b3783731 431 prom_offset | IO_MEM_ROM);
e80cfcfc 432
1192dad8
JM
433 if (bios_name == NULL)
434 bios_name = PROM_FILENAME;
435 snprintf(buf, sizeof(buf), "%s/%s", bios_dir, bios_name);
40ce0a9a 436 ret = load_elf(buf, PROM_PADDR - PROM_VADDR, NULL, NULL, NULL);
e80cfcfc 437 if (ret < 0) {
5fafdf24 438 fprintf(stderr, "qemu: could not load prom '%s'\n",
e80cfcfc
FB
439 buf);
440 exit(1);
441 }
e80cfcfc 442
6f7e9aec 443 kernel_size = 0;
e80cfcfc 444 if (linux_boot) {
0bd5f4ce
BS
445 kernel_size = load_elf(kernel_filename, -0xf0000000ULL, NULL, NULL,
446 NULL);
6f7e9aec
FB
447 if (kernel_size < 0)
448 kernel_size = load_aout(kernel_filename, phys_ram_base + KERNEL_LOAD_ADDR);
449 if (kernel_size < 0)
450 kernel_size = load_image(kernel_filename, phys_ram_base + KERNEL_LOAD_ADDR);
451 if (kernel_size < 0) {
5fafdf24 452 fprintf(stderr, "qemu: could not load kernel '%s'\n",
e80cfcfc
FB
453 kernel_filename);
454 exit(1);
420557e8 455 }
713c45fa
FB
456
457 /* load initrd */
458 initrd_size = 0;
459 if (initrd_filename) {
460 initrd_size = load_image(initrd_filename, phys_ram_base + INITRD_LOAD_ADDR);
461 if (initrd_size < 0) {
5fafdf24 462 fprintf(stderr, "qemu: could not load initial ram disk '%s'\n",
713c45fa
FB
463 initrd_filename);
464 exit(1);
465 }
466 }
467 if (initrd_size > 0) {
468 for (i = 0; i < 64 * TARGET_PAGE_SIZE; i += TARGET_PAGE_SIZE) {
469 if (ldl_raw(phys_ram_base + KERNEL_LOAD_ADDR + i)
470 == 0x48647253) { // HdrS
471 stl_raw(phys_ram_base + KERNEL_LOAD_ADDR + i + 16, INITRD_LOAD_ADDR);
472 stl_raw(phys_ram_base + KERNEL_LOAD_ADDR + i + 20, initrd_size);
473 break;
474 }
475 }
476 }
420557e8 477 }
36cd9210 478 nvram_init(nvram, (uint8_t *)&nd_table[0].macaddr, kernel_cmdline,
b3ceef24 479 boot_device, RAM_size, kernel_size, graphic_width,
36cd9210
BS
480 graphic_height, graphic_depth, machine_id);
481}
482
483static const struct hwdef hwdefs[] = {
484 /* SS-5 */
485 {
486 .iommu_base = 0x10000000,
487 .tcx_base = 0x50000000,
488 .cs_base = 0x6c000000,
384ccb5d 489 .slavio_base = 0x70000000,
36cd9210
BS
490 .ms_kb_base = 0x71000000,
491 .serial_base = 0x71100000,
492 .nvram_base = 0x71200000,
493 .fd_base = 0x71400000,
494 .counter_base = 0x71d00000,
495 .intctl_base = 0x71e00000,
496 .dma_base = 0x78400000,
497 .esp_base = 0x78800000,
498 .le_base = 0x78c00000,
5dcb6b91 499 .power_base = 0x7a000000,
36cd9210
BS
500 .vram_size = 0x00100000,
501 .nvram_size = 0x2000,
502 .esp_irq = 18,
503 .le_irq = 16,
504 .clock_irq = 7,
505 .clock1_irq = 19,
506 .ms_kb_irq = 14,
507 .ser_irq = 15,
508 .fd_irq = 22,
509 .me_irq = 30,
510 .cs_irq = 5,
511 .machine_id = 0x80,
e0353fe2
BS
512 .intbit_to_level = {
513 2, 3, 5, 7, 9, 11, 0, 14, 3, 5, 7, 9, 11, 13, 12, 12,
514 6, 0, 4, 10, 8, 0, 11, 0, 0, 0, 0, 0, 15, 0, 15, 0,
515 },
516 },
517 /* SS-10 */
e0353fe2 518 {
5dcb6b91
BS
519 .iommu_base = 0xfe0000000ULL,
520 .tcx_base = 0xe20000000ULL,
803b3c7b 521 .cs_base = -1,
5dcb6b91
BS
522 .slavio_base = 0xff0000000ULL,
523 .ms_kb_base = 0xff1000000ULL,
524 .serial_base = 0xff1100000ULL,
525 .nvram_base = 0xff1200000ULL,
526 .fd_base = 0xff1700000ULL,
527 .counter_base = 0xff1300000ULL,
528 .intctl_base = 0xff1400000ULL,
529 .dma_base = 0xef0400000ULL,
530 .esp_base = 0xef0800000ULL,
531 .le_base = 0xef0c00000ULL,
532 .power_base = 0xefa000000ULL,
e0353fe2
BS
533 .vram_size = 0x00100000,
534 .nvram_size = 0x2000,
535 .esp_irq = 18,
536 .le_irq = 16,
537 .clock_irq = 7,
538 .clock1_irq = 19,
539 .ms_kb_irq = 14,
540 .ser_irq = 15,
541 .fd_irq = 22,
542 .me_irq = 30,
803b3c7b
BS
543 .cs_irq = -1,
544 .machine_id = 0x72,
e0353fe2
BS
545 .intbit_to_level = {
546 2, 3, 5, 7, 9, 11, 0, 14, 3, 5, 7, 9, 11, 13, 12, 12,
547 6, 0, 4, 10, 8, 0, 11, 0, 0, 0, 0, 0, 15, 0, 15, 0,
548 },
36cd9210
BS
549 },
550};
551
b3ceef24 552static void sun4m_common_init(int RAM_size, int boot_device, DisplayState *ds,
36cd9210
BS
553 const char *kernel_filename, const char *kernel_cmdline,
554 const char *initrd_filename, const char *cpu_model,
4edebb0e 555 unsigned int machine, int max_ram)
36cd9210 556{
b3ceef24
BS
557 void *nvram;
558
559 if ((unsigned int)RAM_size > (unsigned int)max_ram) {
4edebb0e 560 fprintf(stderr, "qemu: Too much memory for this machine: %d, maximum %d\n",
b3ceef24 561 (unsigned int)RAM_size / (1024 * 1024),
5dcb6b91 562 (unsigned int)max_ram / (1024 * 1024));
4edebb0e
BS
563 exit(1);
564 }
b3ceef24 565 nvram = sun4m_hw_init(&hwdefs[machine], RAM_size, ds, cpu_model);
36cd9210 566
b3ceef24 567 sun4m_load_kernel(hwdefs[machine].vram_size, RAM_size, boot_device,
36cd9210 568 kernel_filename, kernel_cmdline, initrd_filename,
b3ceef24 569 hwdefs[machine].machine_id, nvram);
36cd9210
BS
570}
571
572/* SPARCstation 5 hardware initialisation */
b3ceef24 573static void ss5_init(int RAM_size, int vga_ram_size, int boot_device,
36cd9210
BS
574 DisplayState *ds, const char **fd_filename, int snapshot,
575 const char *kernel_filename, const char *kernel_cmdline,
576 const char *initrd_filename, const char *cpu_model)
577{
578 if (cpu_model == NULL)
579 cpu_model = "Fujitsu MB86904";
b3ceef24 580 sun4m_common_init(RAM_size, boot_device, ds, kernel_filename,
36cd9210 581 kernel_cmdline, initrd_filename, cpu_model,
4edebb0e 582 0, 0x10000000);
420557e8 583}
c0e564d5 584
e0353fe2 585/* SPARCstation 10 hardware initialisation */
b3ceef24 586static void ss10_init(int RAM_size, int vga_ram_size, int boot_device,
e0353fe2
BS
587 DisplayState *ds, const char **fd_filename, int snapshot,
588 const char *kernel_filename, const char *kernel_cmdline,
589 const char *initrd_filename, const char *cpu_model)
590{
591 if (cpu_model == NULL)
592 cpu_model = "TI SuperSparc II";
b3ceef24 593 sun4m_common_init(RAM_size, boot_device, ds, kernel_filename,
e0353fe2 594 kernel_cmdline, initrd_filename, cpu_model,
40ce0a9a 595 1, 0xffffffff); // XXX actually first 62GB ok
e0353fe2
BS
596}
597
36cd9210
BS
598QEMUMachine ss5_machine = {
599 "SS-5",
600 "Sun4m platform, SPARCstation 5",
601 ss5_init,
c0e564d5 602};
e0353fe2
BS
603
604QEMUMachine ss10_machine = {
605 "SS-10",
606 "Sun4m platform, SPARCstation 10",
607 ss10_init,
608};