]> Git Repo - qemu.git/blame - hw/sun4m.c
qdev/prop: convert sparc32_dma.c to helper macros.
[qemu.git] / hw / sun4m.c
CommitLineData
420557e8 1/*
ee76f82e 2 * QEMU Sun4m & Sun4d & Sun4c 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 */
9d07d757 24#include "sysbus.h"
87ecb68b
PB
25#include "qemu-timer.h"
26#include "sun4m.h"
27#include "nvram.h"
28#include "sparc32_dma.h"
29#include "fdc.h"
30#include "sysemu.h"
31#include "net.h"
32#include "boards.h"
d2c63fc1 33#include "firmware_abi.h"
8b17de88 34#include "scsi.h"
22548760
BS
35#include "pc.h"
36#include "isa.h"
3cce6243 37#include "fw_cfg.h"
b4ed08e0 38#include "escc.h"
4b48bf05 39#include "qdev-addr.h"
d2c63fc1 40
b3a23197 41//#define DEBUG_IRQ
420557e8 42
36cd9210
BS
43/*
44 * Sun4m architecture was used in the following machines:
45 *
46 * SPARCserver 6xxMP/xx
77f193da
BS
47 * SPARCclassic (SPARCclassic Server)(SPARCstation LC) (4/15),
48 * SPARCclassic X (4/10)
36cd9210
BS
49 * SPARCstation LX/ZX (4/30)
50 * SPARCstation Voyager
51 * SPARCstation 10/xx, SPARCserver 10/xx
52 * SPARCstation 5, SPARCserver 5
53 * SPARCstation 20/xx, SPARCserver 20
54 * SPARCstation 4
55 *
7d85892b
BS
56 * Sun4d architecture was used in the following machines:
57 *
58 * SPARCcenter 2000
59 * SPARCserver 1000
60 *
ee76f82e
BS
61 * Sun4c architecture was used in the following machines:
62 * SPARCstation 1/1+, SPARCserver 1/1+
63 * SPARCstation SLC
64 * SPARCstation IPC
65 * SPARCstation ELC
66 * SPARCstation IPX
67 *
36cd9210
BS
68 * See for example: http://www.sunhelp.org/faq/sunref1.html
69 */
70
b3a23197 71#ifdef DEBUG_IRQ
001faf32
BS
72#define DPRINTF(fmt, ...) \
73 do { printf("CPUIRQ: " fmt , ## __VA_ARGS__); } while (0)
b3a23197 74#else
001faf32 75#define DPRINTF(fmt, ...)
b3a23197
BS
76#endif
77
420557e8 78#define KERNEL_LOAD_ADDR 0x00004000
b6f479d3 79#define CMDLINE_ADDR 0x007ff000
713c45fa 80#define INITRD_LOAD_ADDR 0x00800000
a7227727 81#define PROM_SIZE_MAX (1024 * 1024)
40ce0a9a 82#define PROM_VADDR 0xffd00000
f930d07e 83#define PROM_FILENAME "openbios-sparc32"
3cce6243 84#define CFG_ADDR 0xd00000510ULL
fbfcf955 85#define FW_CFG_SUN4M_DEPTH (FW_CFG_ARCH_LOCAL + 0x00)
b8174937 86
ba3c64fb 87#define MAX_CPUS 16
b3a23197 88#define MAX_PILS 16
420557e8 89
b4ed08e0
BS
90#define ESCC_CLOCK 4915200
91
8137cde8 92struct sun4m_hwdef {
5dcb6b91
BS
93 target_phys_addr_t iommu_base, slavio_base;
94 target_phys_addr_t intctl_base, counter_base, nvram_base, ms_kb_base;
95 target_phys_addr_t serial_base, fd_base;
4c2485de 96 target_phys_addr_t idreg_base, dma_base, esp_base, le_base;
0019ad53 97 target_phys_addr_t tcx_base, cs_base, apc_base, aux1_base, aux2_base;
7eb0c8e8
BS
98 target_phys_addr_t ecc_base;
99 uint32_t ecc_version;
905fdcb5
BS
100 uint8_t nvram_machine_id;
101 uint16_t machine_id;
7fbfb139 102 uint32_t iommu_version;
3ebf5aaf
BS
103 uint64_t max_mem;
104 const char * const default_cpu_model;
36cd9210
BS
105};
106
7d85892b
BS
107#define MAX_IOUNITS 5
108
109struct sun4d_hwdef {
110 target_phys_addr_t iounit_bases[MAX_IOUNITS], slavio_base;
111 target_phys_addr_t counter_base, nvram_base, ms_kb_base;
112 target_phys_addr_t serial_base;
113 target_phys_addr_t espdma_base, esp_base;
114 target_phys_addr_t ledma_base, le_base;
115 target_phys_addr_t tcx_base;
116 target_phys_addr_t sbi_base;
905fdcb5
BS
117 uint8_t nvram_machine_id;
118 uint16_t machine_id;
7d85892b
BS
119 uint32_t iounit_version;
120 uint64_t max_mem;
121 const char * const default_cpu_model;
122};
123
8137cde8
BS
124struct sun4c_hwdef {
125 target_phys_addr_t iommu_base, slavio_base;
126 target_phys_addr_t intctl_base, counter_base, nvram_base, ms_kb_base;
127 target_phys_addr_t serial_base, fd_base;
128 target_phys_addr_t idreg_base, dma_base, esp_base, le_base;
1572a18c 129 target_phys_addr_t tcx_base, aux1_base;
8137cde8
BS
130 uint8_t nvram_machine_id;
131 uint16_t machine_id;
132 uint32_t iommu_version;
8137cde8
BS
133 uint64_t max_mem;
134 const char * const default_cpu_model;
135};
136
6f7e9aec
FB
137int DMA_get_channel_mode (int nchan)
138{
139 return 0;
140}
141int DMA_read_memory (int nchan, void *buf, int pos, int size)
142{
143 return 0;
144}
145int DMA_write_memory (int nchan, void *buf, int pos, int size)
146{
147 return 0;
148}
149void DMA_hold_DREQ (int nchan) {}
150void DMA_release_DREQ (int nchan) {}
151void DMA_schedule(int nchan) {}
6f7e9aec
FB
152void DMA_init (int high_page_enable) {}
153void DMA_register_channel (int nchan,
154 DMA_transfer_handler transfer_handler,
155 void *opaque)
156{
157}
158
513f789f 159static int fw_cfg_boot_set(void *opaque, const char *boot_device)
81864572 160{
513f789f 161 fw_cfg_add_i16(opaque, FW_CFG_BOOT_DEVICE, boot_device[0]);
81864572
BS
162 return 0;
163}
164
819385c5 165static void nvram_init(m48t59_t *nvram, uint8_t *macaddr, const char *cmdline,
6ef05b95 166 const char *boot_devices, ram_addr_t RAM_size,
f930d07e
BS
167 uint32_t kernel_size,
168 int width, int height, int depth,
905fdcb5 169 int nvram_machine_id, const char *arch)
e80cfcfc 170{
d2c63fc1 171 unsigned int i;
66508601 172 uint32_t start, end;
d2c63fc1 173 uint8_t image[0x1ff0];
d2c63fc1
BS
174 struct OpenBIOS_nvpart_v1 *part_header;
175
176 memset(image, '\0', sizeof(image));
e80cfcfc 177
513f789f 178 start = 0;
b6f479d3 179
66508601
BS
180 // OpenBIOS nvram variables
181 // Variable partition
d2c63fc1
BS
182 part_header = (struct OpenBIOS_nvpart_v1 *)&image[start];
183 part_header->signature = OPENBIOS_PART_SYSTEM;
363a37d5 184 pstrcpy(part_header->name, sizeof(part_header->name), "system");
66508601 185
d2c63fc1 186 end = start + sizeof(struct OpenBIOS_nvpart_v1);
66508601 187 for (i = 0; i < nb_prom_envs; i++)
d2c63fc1
BS
188 end = OpenBIOS_set_var(image, end, prom_envs[i]);
189
190 // End marker
191 image[end++] = '\0';
66508601 192
66508601 193 end = start + ((end - start + 15) & ~15);
d2c63fc1 194 OpenBIOS_finish_partition(part_header, end - start);
66508601
BS
195
196 // free partition
197 start = end;
d2c63fc1
BS
198 part_header = (struct OpenBIOS_nvpart_v1 *)&image[start];
199 part_header->signature = OPENBIOS_PART_FREE;
363a37d5 200 pstrcpy(part_header->name, sizeof(part_header->name), "free");
66508601
BS
201
202 end = 0x1fd0;
d2c63fc1
BS
203 OpenBIOS_finish_partition(part_header, end - start);
204
905fdcb5
BS
205 Sun_init_header((struct Sun_nvram *)&image[0x1fd8], macaddr,
206 nvram_machine_id);
d2c63fc1
BS
207
208 for (i = 0; i < sizeof(image); i++)
209 m48t59_write(nvram, i, image[i]);
e80cfcfc
FB
210}
211
212static void *slavio_intctl;
213
376253ec 214void pic_info(Monitor *mon)
e80cfcfc 215{
7d85892b 216 if (slavio_intctl)
376253ec 217 slavio_pic_info(mon, slavio_intctl);
e80cfcfc
FB
218}
219
376253ec 220void irq_info(Monitor *mon)
e80cfcfc 221{
7d85892b 222 if (slavio_intctl)
376253ec 223 slavio_irq_info(mon, slavio_intctl);
e80cfcfc
FB
224}
225
327ac2e7
BS
226void cpu_check_irqs(CPUState *env)
227{
228 if (env->pil_in && (env->interrupt_index == 0 ||
229 (env->interrupt_index & ~15) == TT_EXTINT)) {
230 unsigned int i;
231
232 for (i = 15; i > 0; i--) {
233 if (env->pil_in & (1 << i)) {
234 int old_interrupt = env->interrupt_index;
235
236 env->interrupt_index = TT_EXTINT | i;
f32d7ec5
BS
237 if (old_interrupt != env->interrupt_index) {
238 DPRINTF("Set CPU IRQ %d\n", i);
327ac2e7 239 cpu_interrupt(env, CPU_INTERRUPT_HARD);
f32d7ec5 240 }
327ac2e7
BS
241 break;
242 }
243 }
244 } else if (!env->pil_in && (env->interrupt_index & ~15) == TT_EXTINT) {
f32d7ec5 245 DPRINTF("Reset CPU IRQ %d\n", env->interrupt_index & 15);
327ac2e7
BS
246 env->interrupt_index = 0;
247 cpu_reset_interrupt(env, CPU_INTERRUPT_HARD);
248 }
249}
250
b3a23197
BS
251static void cpu_set_irq(void *opaque, int irq, int level)
252{
253 CPUState *env = opaque;
254
255 if (level) {
256 DPRINTF("Raise CPU IRQ %d\n", irq);
b3a23197 257 env->halted = 0;
327ac2e7
BS
258 env->pil_in |= 1 << irq;
259 cpu_check_irqs(env);
b3a23197
BS
260 } else {
261 DPRINTF("Lower CPU IRQ %d\n", irq);
327ac2e7
BS
262 env->pil_in &= ~(1 << irq);
263 cpu_check_irqs(env);
b3a23197
BS
264 }
265}
266
267static void dummy_cpu_set_irq(void *opaque, int irq, int level)
268{
269}
270
c68ea704
FB
271static void main_cpu_reset(void *opaque)
272{
273 CPUState *env = opaque;
3d29fbef
BS
274
275 cpu_reset(env);
276 env->halted = 0;
277}
278
279static void secondary_cpu_reset(void *opaque)
280{
281 CPUState *env = opaque;
282
c68ea704 283 cpu_reset(env);
3d29fbef 284 env->halted = 1;
c68ea704
FB
285}
286
6d0c293d
BS
287static void cpu_halt_signal(void *opaque, int irq, int level)
288{
289 if (level && cpu_single_env)
290 cpu_interrupt(cpu_single_env, CPU_INTERRUPT_HALT);
291}
292
3ebf5aaf 293static unsigned long sun4m_load_kernel(const char *kernel_filename,
293f78bc
BS
294 const char *initrd_filename,
295 ram_addr_t RAM_size)
3ebf5aaf
BS
296{
297 int linux_boot;
298 unsigned int i;
299 long initrd_size, kernel_size;
300
301 linux_boot = (kernel_filename != NULL);
302
303 kernel_size = 0;
304 if (linux_boot) {
305 kernel_size = load_elf(kernel_filename, -0xf0000000ULL, NULL, NULL,
306 NULL);
307 if (kernel_size < 0)
293f78bc
BS
308 kernel_size = load_aout(kernel_filename, KERNEL_LOAD_ADDR,
309 RAM_size - KERNEL_LOAD_ADDR);
3ebf5aaf 310 if (kernel_size < 0)
293f78bc
BS
311 kernel_size = load_image_targphys(kernel_filename,
312 KERNEL_LOAD_ADDR,
313 RAM_size - KERNEL_LOAD_ADDR);
3ebf5aaf
BS
314 if (kernel_size < 0) {
315 fprintf(stderr, "qemu: could not load kernel '%s'\n",
316 kernel_filename);
317 exit(1);
318 }
319
320 /* load initrd */
321 initrd_size = 0;
322 if (initrd_filename) {
293f78bc
BS
323 initrd_size = load_image_targphys(initrd_filename,
324 INITRD_LOAD_ADDR,
325 RAM_size - INITRD_LOAD_ADDR);
3ebf5aaf
BS
326 if (initrd_size < 0) {
327 fprintf(stderr, "qemu: could not load initial ram disk '%s'\n",
328 initrd_filename);
329 exit(1);
330 }
331 }
332 if (initrd_size > 0) {
333 for (i = 0; i < 64 * TARGET_PAGE_SIZE; i += TARGET_PAGE_SIZE) {
293f78bc
BS
334 if (ldl_phys(KERNEL_LOAD_ADDR + i) == 0x48647253) { // HdrS
335 stl_phys(KERNEL_LOAD_ADDR + i + 16, INITRD_LOAD_ADDR);
336 stl_phys(KERNEL_LOAD_ADDR + i + 20, initrd_size);
3ebf5aaf
BS
337 break;
338 }
339 }
340 }
341 }
342 return kernel_size;
343}
344
4b48bf05
BS
345static void *iommu_init(target_phys_addr_t addr, uint32_t version, qemu_irq irq)
346{
347 DeviceState *dev;
348 SysBusDevice *s;
349
350 dev = qdev_create(NULL, "iommu");
351 qdev_prop_set_uint32(dev, "version", version);
352 qdev_init(dev);
353 s = sysbus_from_qdev(dev);
354 sysbus_connect_irq(s, 0, irq);
355 sysbus_mmio_map(s, 0, addr);
356
357 return s;
358}
359
74ff8d90
BS
360static void *sparc32_dma_init(target_phys_addr_t daddr, qemu_irq parent_irq,
361 void *iommu, qemu_irq *dev_irq)
362{
363 DeviceState *dev;
364 SysBusDevice *s;
365
366 dev = qdev_create(NULL, "sparc32_dma");
367 qdev_prop_set_ptr(dev, "iommu_opaque", iommu);
368 qdev_init(dev);
369 s = sysbus_from_qdev(dev);
370 sysbus_connect_irq(s, 0, parent_irq);
371 *dev_irq = qdev_get_gpio_in(dev, 0);
372 sysbus_mmio_map(s, 0, daddr);
373
374 return s;
375}
376
9d07d757 377static void lance_init(NICInfo *nd, target_phys_addr_t leaddr,
74ff8d90 378 void *dma_opaque, qemu_irq irq)
9d07d757
PB
379{
380 DeviceState *dev;
381 SysBusDevice *s;
74ff8d90 382 qemu_irq reset;
9d07d757
PB
383
384 qemu_check_nic_model(&nd_table[0], "lance");
385
386 dev = qdev_create(NULL, "lance");
ee6847d1 387 dev->nd = nd;
daa65491 388 qdev_prop_set_ptr(dev, "dma", dma_opaque);
9d07d757
PB
389 qdev_init(dev);
390 s = sysbus_from_qdev(dev);
391 sysbus_mmio_map(s, 0, leaddr);
392 sysbus_connect_irq(s, 0, irq);
74ff8d90
BS
393 reset = qdev_get_gpio_in(dev, 0);
394 qdev_connect_gpio_out(dma_opaque, 0, reset);
9d07d757
PB
395}
396
4b48bf05
BS
397static DeviceState *slavio_intctl_init(target_phys_addr_t addr,
398 target_phys_addr_t addrg,
4b48bf05
BS
399 qemu_irq **parent_irq,
400 unsigned int cputimer)
401{
402 DeviceState *dev;
403 SysBusDevice *s;
404 unsigned int i, j;
405
406 dev = qdev_create(NULL, "slavio_intctl");
4b48bf05
BS
407 qdev_prop_set_uint32(dev, "cputimer_bit", cputimer);
408 qdev_init(dev);
409
410 s = sysbus_from_qdev(dev);
411
412 for (i = 0; i < MAX_CPUS; i++) {
413 for (j = 0; j < MAX_PILS; j++) {
414 sysbus_connect_irq(s, i * MAX_PILS + j, parent_irq[i][j]);
415 }
416 }
417 sysbus_mmio_map(s, 0, addrg);
418 for (i = 0; i < MAX_CPUS; i++) {
419 sysbus_mmio_map(s, i + 1, addr + i * TARGET_PAGE_SIZE);
420 }
421
422 return dev;
423}
424
425#define SYS_TIMER_OFFSET 0x10000ULL
426#define CPU_TIMER_OFFSET(cpu) (0x1000ULL * cpu)
427
428static void slavio_timer_init_all(target_phys_addr_t addr, qemu_irq master_irq,
429 qemu_irq *cpu_irqs, unsigned int num_cpus)
430{
431 DeviceState *dev;
432 SysBusDevice *s;
433 unsigned int i;
434
435 dev = qdev_create(NULL, "slavio_timer");
436 qdev_prop_set_uint32(dev, "num_cpus", num_cpus);
437 qdev_init(dev);
438 s = sysbus_from_qdev(dev);
439 sysbus_connect_irq(s, 0, master_irq);
440 sysbus_mmio_map(s, 0, addr + SYS_TIMER_OFFSET);
441
442 for (i = 0; i < MAX_CPUS; i++) {
443 sysbus_mmio_map(s, i + 1, addr + (target_phys_addr_t)CPU_TIMER_OFFSET(i));
444 sysbus_connect_irq(s, i + 1, cpu_irqs[i]);
445 }
446}
447
448#define MISC_LEDS 0x01600000
449#define MISC_CFG 0x01800000
450#define MISC_DIAG 0x01a00000
451#define MISC_MDM 0x01b00000
452#define MISC_SYS 0x01f00000
453
b2b6f6ec
BS
454static void slavio_misc_init(target_phys_addr_t base,
455 target_phys_addr_t aux1_base,
456 target_phys_addr_t aux2_base, qemu_irq irq,
457 qemu_irq fdc_tc)
4b48bf05
BS
458{
459 DeviceState *dev;
460 SysBusDevice *s;
461
462 dev = qdev_create(NULL, "slavio_misc");
463 qdev_init(dev);
464 s = sysbus_from_qdev(dev);
465 if (base) {
466 /* 8 bit registers */
467 /* Slavio control */
468 sysbus_mmio_map(s, 0, base + MISC_CFG);
469 /* Diagnostics */
470 sysbus_mmio_map(s, 1, base + MISC_DIAG);
471 /* Modem control */
472 sysbus_mmio_map(s, 2, base + MISC_MDM);
473 /* 16 bit registers */
474 /* ss600mp diag LEDs */
475 sysbus_mmio_map(s, 3, base + MISC_LEDS);
476 /* 32 bit registers */
477 /* System control */
478 sysbus_mmio_map(s, 4, base + MISC_SYS);
479 }
480 if (aux1_base) {
481 /* AUX 1 (Misc System Functions) */
482 sysbus_mmio_map(s, 5, aux1_base);
483 }
484 if (aux2_base) {
485 /* AUX 2 (Software Powerdown Control) */
486 sysbus_mmio_map(s, 6, aux2_base);
487 }
488 sysbus_connect_irq(s, 0, irq);
489 sysbus_connect_irq(s, 1, fdc_tc);
d9c32310 490 qemu_system_powerdown = qdev_get_gpio_in(dev, 0);
4b48bf05
BS
491}
492
493static void ecc_init(target_phys_addr_t base, qemu_irq irq, uint32_t version)
494{
495 DeviceState *dev;
496 SysBusDevice *s;
497
498 dev = qdev_create(NULL, "eccmemctl");
499 qdev_prop_set_uint32(dev, "version", version);
500 qdev_init(dev);
501 s = sysbus_from_qdev(dev);
502 sysbus_connect_irq(s, 0, irq);
503 sysbus_mmio_map(s, 0, base);
504 if (version == 0) { // SS-600MP only
505 sysbus_mmio_map(s, 1, base + 0x1000);
506 }
507}
508
509static void apc_init(target_phys_addr_t power_base, qemu_irq cpu_halt)
510{
511 DeviceState *dev;
512 SysBusDevice *s;
513
514 dev = qdev_create(NULL, "apc");
515 qdev_init(dev);
516 s = sysbus_from_qdev(dev);
517 /* Power management (APC) XXX: not a Slavio device */
518 sysbus_mmio_map(s, 0, power_base);
519 sysbus_connect_irq(s, 0, cpu_halt);
520}
521
522static void tcx_init(target_phys_addr_t addr, int vram_size, int width,
523 int height, int depth)
524{
525 DeviceState *dev;
526 SysBusDevice *s;
527
528 dev = qdev_create(NULL, "SUNW,tcx");
529 qdev_prop_set_taddr(dev, "addr", addr);
530 qdev_prop_set_uint32(dev, "vram_size", vram_size);
531 qdev_prop_set_uint16(dev, "width", width);
532 qdev_prop_set_uint16(dev, "height", height);
533 qdev_prop_set_uint16(dev, "depth", depth);
534 qdev_init(dev);
535 s = sysbus_from_qdev(dev);
536 /* 8-bit plane */
537 sysbus_mmio_map(s, 0, addr + 0x00800000ULL);
538 /* DAC */
539 sysbus_mmio_map(s, 1, addr + 0x00200000ULL);
540 /* TEC (dummy) */
541 sysbus_mmio_map(s, 2, addr + 0x00700000ULL);
542 /* THC 24 bit: NetBSD writes here even with 8-bit display: dummy */
543 sysbus_mmio_map(s, 3, addr + 0x00301000ULL);
544 if (depth == 24) {
545 /* 24-bit plane */
546 sysbus_mmio_map(s, 4, addr + 0x02000000ULL);
547 /* Control plane */
548 sysbus_mmio_map(s, 5, addr + 0x0a000000ULL);
549 } else {
550 /* THC 8 bit (dummy) */
551 sysbus_mmio_map(s, 4, addr + 0x00300000ULL);
552 }
553}
554
325f2747
BS
555/* NCR89C100/MACIO Internal ID register */
556static const uint8_t idreg_data[] = { 0xfe, 0x81, 0x01, 0x03 };
557
558static void idreg_init(target_phys_addr_t addr)
559{
560 DeviceState *dev;
561 SysBusDevice *s;
562
563 dev = qdev_create(NULL, "macio_idreg");
564 qdev_init(dev);
565 s = sysbus_from_qdev(dev);
566
567 sysbus_mmio_map(s, 0, addr);
568 cpu_physical_memory_write_rom(addr, idreg_data, sizeof(idreg_data));
569}
570
571static void idreg_init1(SysBusDevice *dev)
572{
573 ram_addr_t idreg_offset;
574
575 idreg_offset = qemu_ram_alloc(sizeof(idreg_data));
576 sysbus_init_mmio(dev, sizeof(idreg_data), idreg_offset | IO_MEM_ROM);
577}
578
579static SysBusDeviceInfo idreg_info = {
580 .init = idreg_init1,
581 .qdev.name = "macio_idreg",
582 .qdev.size = sizeof(SysBusDevice),
325f2747
BS
583};
584
585static void idreg_register_devices(void)
586{
587 sysbus_register_withprop(&idreg_info);
588}
589
590device_init(idreg_register_devices);
591
f48f6569
BS
592/* Boot PROM (OpenBIOS) */
593static void prom_init(target_phys_addr_t addr, const char *bios_name)
594{
595 DeviceState *dev;
596 SysBusDevice *s;
597 char *filename;
598 int ret;
599
600 dev = qdev_create(NULL, "openprom");
601 qdev_init(dev);
602 s = sysbus_from_qdev(dev);
603
604 sysbus_mmio_map(s, 0, addr);
605
606 /* load boot prom */
607 if (bios_name == NULL) {
608 bios_name = PROM_FILENAME;
609 }
610 filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name);
611 if (filename) {
612 ret = load_elf(filename, addr - PROM_VADDR, NULL, NULL, NULL);
613 if (ret < 0 || ret > PROM_SIZE_MAX) {
614 ret = load_image_targphys(filename, addr, PROM_SIZE_MAX);
615 }
616 qemu_free(filename);
617 } else {
618 ret = -1;
619 }
620 if (ret < 0 || ret > PROM_SIZE_MAX) {
621 fprintf(stderr, "qemu: could not load prom '%s'\n", bios_name);
622 exit(1);
623 }
624}
625
626static void prom_init1(SysBusDevice *dev)
627{
628 ram_addr_t prom_offset;
629
630 prom_offset = qemu_ram_alloc(PROM_SIZE_MAX);
631 sysbus_init_mmio(dev, PROM_SIZE_MAX, prom_offset | IO_MEM_ROM);
632}
633
634static SysBusDeviceInfo prom_info = {
635 .init = prom_init1,
636 .qdev.name = "openprom",
637 .qdev.size = sizeof(SysBusDevice),
ee6847d1
GH
638 .qdev.props = (Property[]) {
639 {/* end of property list */}
f48f6569
BS
640 }
641};
642
643static void prom_register_devices(void)
644{
645 sysbus_register_withprop(&prom_info);
646}
647
648device_init(prom_register_devices);
649
ee6847d1
GH
650typedef struct RamDevice
651{
652 SysBusDevice busdev;
04843626 653 uint64_t size;
ee6847d1
GH
654} RamDevice;
655
a350db85
BS
656/* System RAM */
657static void ram_init1(SysBusDevice *dev)
658{
659 ram_addr_t RAM_size, ram_offset;
ee6847d1 660 RamDevice *d = FROM_SYSBUS(RamDevice, dev);
a350db85 661
ee6847d1 662 RAM_size = d->size;
a350db85
BS
663
664 ram_offset = qemu_ram_alloc(RAM_size);
665 sysbus_init_mmio(dev, RAM_size, ram_offset);
666}
667
668static void ram_init(target_phys_addr_t addr, ram_addr_t RAM_size,
669 uint64_t max_mem)
670{
671 DeviceState *dev;
672 SysBusDevice *s;
ee6847d1 673 RamDevice *d;
a350db85
BS
674
675 /* allocate RAM */
676 if ((uint64_t)RAM_size > max_mem) {
677 fprintf(stderr,
678 "qemu: Too much memory for this machine: %d, maximum %d\n",
679 (unsigned int)(RAM_size / (1024 * 1024)),
680 (unsigned int)(max_mem / (1024 * 1024)));
681 exit(1);
682 }
683 dev = qdev_create(NULL, "memory");
a350db85
BS
684 s = sysbus_from_qdev(dev);
685
ee6847d1
GH
686 d = FROM_SYSBUS(RamDevice, s);
687 d->size = RAM_size;
f6e097e7 688 qdev_init(dev);
ee6847d1 689
a350db85
BS
690 sysbus_mmio_map(s, 0, addr);
691}
692
693static SysBusDeviceInfo ram_info = {
694 .init = ram_init1,
695 .qdev.name = "memory",
ee6847d1
GH
696 .qdev.size = sizeof(RamDevice),
697 .qdev.props = (Property[]) {
698 {
699 .name = "size",
04843626 700 .info = &qdev_prop_uint64,
ee6847d1
GH
701 .offset = offsetof(RamDevice, size),
702 },
703 {/* end of property list */}
a350db85
BS
704 }
705};
706
707static void ram_register_devices(void)
708{
709 sysbus_register_withprop(&ram_info);
710}
711
712device_init(ram_register_devices);
713
666713c0
BS
714static CPUState *cpu_devinit(const char *cpu_model, unsigned int id,
715 uint64_t prom_addr, qemu_irq **cpu_irqs)
716{
717 CPUState *env;
718
719 env = cpu_init(cpu_model);
720 if (!env) {
721 fprintf(stderr, "qemu: Unable to find Sparc CPU definition\n");
722 exit(1);
723 }
724
725 cpu_sparc_set_id(env, id);
726 if (id == 0) {
727 qemu_register_reset(main_cpu_reset, env);
728 } else {
729 qemu_register_reset(secondary_cpu_reset, env);
730 env->halted = 1;
731 }
732 *cpu_irqs = qemu_allocate_irqs(cpu_set_irq, env, MAX_PILS);
733 env->prom_addr = prom_addr;
734
735 return env;
736}
737
8137cde8 738static void sun4m_hw_init(const struct sun4m_hwdef *hwdef, ram_addr_t RAM_size,
3ebf5aaf 739 const char *boot_device,
3023f332 740 const char *kernel_filename,
3ebf5aaf
BS
741 const char *kernel_cmdline,
742 const char *initrd_filename, const char *cpu_model)
420557e8 743{
666713c0 744 CPUState *envs[MAX_CPUS];
713c45fa 745 unsigned int i;
cfb9de9c 746 void *iommu, *espdma, *ledma, *nvram;
a1961a4b 747 qemu_irq *cpu_irqs[MAX_CPUS], slavio_irq[32], slavio_cpu_irq[MAX_CPUS],
6f6260c7 748 espdma_irq, ledma_irq;
74ff8d90 749 qemu_irq esp_reset;
2582cfa0 750 qemu_irq fdc_tc;
6d0c293d 751 qemu_irq *cpu_halt;
5c6602c5 752 unsigned long kernel_size;
e4bcb14c 753 BlockDriverState *fd[MAX_FD];
3cce6243 754 void *fw_cfg;
a1961a4b 755 DeviceState *dev;
751c6a17 756 DriveInfo *dinfo;
420557e8 757
ba3c64fb 758 /* init CPUs */
3ebf5aaf
BS
759 if (!cpu_model)
760 cpu_model = hwdef->default_cpu_model;
b3a23197 761
ba3c64fb 762 for(i = 0; i < smp_cpus; i++) {
666713c0 763 envs[i] = cpu_devinit(cpu_model, i, hwdef->slavio_base, &cpu_irqs[i]);
ba3c64fb 764 }
b3a23197
BS
765
766 for (i = smp_cpus; i < MAX_CPUS; i++)
767 cpu_irqs[i] = qemu_allocate_irqs(dummy_cpu_set_irq, NULL, MAX_PILS);
768
3ebf5aaf 769
3ebf5aaf 770 /* set up devices */
a350db85
BS
771 ram_init(0, RAM_size, hwdef->max_mem);
772
f48f6569
BS
773 prom_init(hwdef->slavio_base, bios_name);
774
a1961a4b
BS
775 dev = slavio_intctl_init(hwdef->intctl_base,
776 hwdef->intctl_base + 0x10000ULL,
a1961a4b 777 cpu_irqs,
c533e0b3 778 7);
a1961a4b
BS
779
780 for (i = 0; i < 32; i++) {
781 slavio_irq[i] = qdev_get_gpio_in(dev, i);
782 }
783 for (i = 0; i < MAX_CPUS; i++) {
784 slavio_cpu_irq[i] = qdev_get_gpio_in(dev, 32 + i);
785 }
b3a23197 786
fe096129 787 if (hwdef->idreg_base) {
325f2747 788 idreg_init(hwdef->idreg_base);
4c2485de
BS
789 }
790
ff403da6 791 iommu = iommu_init(hwdef->iommu_base, hwdef->iommu_version,
c533e0b3 792 slavio_irq[30]);
ff403da6 793
c533e0b3 794 espdma = sparc32_dma_init(hwdef->dma_base, slavio_irq[18],
74ff8d90 795 iommu, &espdma_irq);
2d069bab 796
5aca8c3b 797 ledma = sparc32_dma_init(hwdef->dma_base + 16ULL,
74ff8d90 798 slavio_irq[16], iommu, &ledma_irq);
ba3c64fb 799
eee0b836
BS
800 if (graphic_depth != 8 && graphic_depth != 24) {
801 fprintf(stderr, "qemu: Unsupported depth: %d\n", graphic_depth);
802 exit (1);
803 }
d95d8f1c 804 tcx_init(hwdef->tcx_base, 0x00100000, graphic_width, graphic_height,
dc828ca1 805 graphic_depth);
dbe06e18 806
74ff8d90 807 lance_init(&nd_table[0], hwdef->le_base, ledma, ledma_irq);
dbe06e18 808
d95d8f1c 809 nvram = m48t59_init(slavio_irq[0], hwdef->nvram_base, 0, 0x2000, 8);
81732d19 810
c533e0b3 811 slavio_timer_init_all(hwdef->counter_base, slavio_irq[19], slavio_cpu_irq, smp_cpus);
81732d19 812
c533e0b3 813 slavio_serial_ms_kbd_init(hwdef->ms_kb_base, slavio_irq[14],
993fbfdb 814 display_type == DT_NOGRAPHIC, ESCC_CLOCK, 1);
b81b3b10
FB
815 // Slavio TTYA (base+4, Linux ttyS0) is the first Qemu serial device
816 // Slavio TTYB (base+0, Linux ttyS1) is the second Qemu serial device
c533e0b3 817 escc_init(hwdef->serial_base, slavio_irq[15], slavio_irq[15],
aeeb69c7 818 serial_hds[0], serial_hds[1], ESCC_CLOCK, 1);
741402f9 819
6d0c293d 820 cpu_halt = qemu_allocate_irqs(cpu_halt_signal, NULL, 1);
b2b6f6ec
BS
821 slavio_misc_init(hwdef->slavio_base, hwdef->aux1_base, hwdef->aux2_base,
822 slavio_irq[30], fdc_tc);
823
2582cfa0
BS
824 if (hwdef->apc_base) {
825 apc_init(hwdef->apc_base, cpu_halt[0]);
826 }
2be17ebd 827
fe096129 828 if (hwdef->fd_base) {
e4bcb14c 829 /* there is zero or one floppy drive */
309e60bd 830 memset(fd, 0, sizeof(fd));
751c6a17
GH
831 dinfo = drive_get(IF_FLOPPY, 0, 0);
832 if (dinfo)
833 fd[0] = dinfo->bdrv;
2d069bab 834
c533e0b3 835 sun4m_fdctrl_init(slavio_irq[22], hwdef->fd_base, fd,
2582cfa0 836 &fdc_tc);
e4bcb14c
TS
837 }
838
839 if (drive_get_max_bus(IF_SCSI) > 0) {
840 fprintf(stderr, "qemu: too many SCSI bus\n");
841 exit(1);
842 }
843
74ff8d90 844 esp_reset = qdev_get_gpio_in(espdma, 0);
cfb9de9c
PB
845 esp_init(hwdef->esp_base, 2,
846 espdma_memory_read, espdma_memory_write,
74ff8d90
BS
847 espdma, espdma_irq, &esp_reset);
848
f1587550 849
fa28ec52
BS
850 if (hwdef->cs_base) {
851 sysbus_create_simple("SUNW,CS4231", hwdef->cs_base,
c533e0b3 852 slavio_irq[5]);
fa28ec52 853 }
b3ceef24 854
293f78bc
BS
855 kernel_size = sun4m_load_kernel(kernel_filename, initrd_filename,
856 RAM_size);
36cd9210 857
36cd9210 858 nvram_init(nvram, (uint8_t *)&nd_table[0].macaddr, kernel_cmdline,
b3ceef24 859 boot_device, RAM_size, kernel_size, graphic_width,
905fdcb5
BS
860 graphic_height, graphic_depth, hwdef->nvram_machine_id,
861 "Sun4m");
7eb0c8e8 862
fe096129 863 if (hwdef->ecc_base)
c533e0b3 864 ecc_init(hwdef->ecc_base, slavio_irq[28],
e42c20b4 865 hwdef->ecc_version);
3cce6243
BS
866
867 fw_cfg = fw_cfg_init(0, 0, CFG_ADDR, CFG_ADDR + 2);
868 fw_cfg_add_i32(fw_cfg, FW_CFG_ID, 1);
905fdcb5
BS
869 fw_cfg_add_i64(fw_cfg, FW_CFG_RAM_SIZE, (uint64_t)ram_size);
870 fw_cfg_add_i16(fw_cfg, FW_CFG_MACHINE_ID, hwdef->machine_id);
fbfcf955 871 fw_cfg_add_i16(fw_cfg, FW_CFG_SUN4M_DEPTH, graphic_depth);
513f789f
BS
872 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_ADDR, KERNEL_LOAD_ADDR);
873 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_SIZE, kernel_size);
874 if (kernel_cmdline) {
875 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_CMDLINE, CMDLINE_ADDR);
876 pstrcpy_targphys(CMDLINE_ADDR, TARGET_PAGE_SIZE, kernel_cmdline);
877 } else {
878 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_CMDLINE, 0);
879 }
880 fw_cfg_add_i32(fw_cfg, FW_CFG_INITRD_ADDR, INITRD_LOAD_ADDR);
881 fw_cfg_add_i32(fw_cfg, FW_CFG_INITRD_SIZE, 0); // not used
882 fw_cfg_add_i16(fw_cfg, FW_CFG_BOOT_DEVICE, boot_device[0]);
883 qemu_register_boot_set(fw_cfg_boot_set, fw_cfg);
36cd9210
BS
884}
885
905fdcb5
BS
886enum {
887 ss2_id = 0,
888 ss5_id = 32,
889 vger_id,
890 lx_id,
891 ss4_id,
892 scls_id,
893 sbook_id,
894 ss10_id = 64,
895 ss20_id,
896 ss600mp_id,
897 ss1000_id = 96,
898 ss2000_id,
899};
900
8137cde8 901static const struct sun4m_hwdef sun4m_hwdefs[] = {
36cd9210
BS
902 /* SS-5 */
903 {
904 .iommu_base = 0x10000000,
905 .tcx_base = 0x50000000,
906 .cs_base = 0x6c000000,
384ccb5d 907 .slavio_base = 0x70000000,
36cd9210
BS
908 .ms_kb_base = 0x71000000,
909 .serial_base = 0x71100000,
910 .nvram_base = 0x71200000,
911 .fd_base = 0x71400000,
912 .counter_base = 0x71d00000,
913 .intctl_base = 0x71e00000,
4c2485de 914 .idreg_base = 0x78000000,
36cd9210
BS
915 .dma_base = 0x78400000,
916 .esp_base = 0x78800000,
917 .le_base = 0x78c00000,
127fc407 918 .apc_base = 0x6a000000,
0019ad53
BS
919 .aux1_base = 0x71900000,
920 .aux2_base = 0x71910000,
905fdcb5
BS
921 .nvram_machine_id = 0x80,
922 .machine_id = ss5_id,
cf3102ac 923 .iommu_version = 0x05000000,
3ebf5aaf
BS
924 .max_mem = 0x10000000,
925 .default_cpu_model = "Fujitsu MB86904",
e0353fe2
BS
926 },
927 /* SS-10 */
e0353fe2 928 {
5dcb6b91
BS
929 .iommu_base = 0xfe0000000ULL,
930 .tcx_base = 0xe20000000ULL,
5dcb6b91
BS
931 .slavio_base = 0xff0000000ULL,
932 .ms_kb_base = 0xff1000000ULL,
933 .serial_base = 0xff1100000ULL,
934 .nvram_base = 0xff1200000ULL,
935 .fd_base = 0xff1700000ULL,
936 .counter_base = 0xff1300000ULL,
937 .intctl_base = 0xff1400000ULL,
4c2485de 938 .idreg_base = 0xef0000000ULL,
5dcb6b91
BS
939 .dma_base = 0xef0400000ULL,
940 .esp_base = 0xef0800000ULL,
941 .le_base = 0xef0c00000ULL,
0019ad53 942 .apc_base = 0xefa000000ULL, // XXX should not exist
127fc407
BS
943 .aux1_base = 0xff1800000ULL,
944 .aux2_base = 0xff1a01000ULL,
7eb0c8e8
BS
945 .ecc_base = 0xf00000000ULL,
946 .ecc_version = 0x10000000, // version 0, implementation 1
905fdcb5
BS
947 .nvram_machine_id = 0x72,
948 .machine_id = ss10_id,
7fbfb139 949 .iommu_version = 0x03000000,
6ef05b95 950 .max_mem = 0xf00000000ULL,
3ebf5aaf 951 .default_cpu_model = "TI SuperSparc II",
36cd9210 952 },
6a3b9cc9
BS
953 /* SS-600MP */
954 {
955 .iommu_base = 0xfe0000000ULL,
956 .tcx_base = 0xe20000000ULL,
6a3b9cc9
BS
957 .slavio_base = 0xff0000000ULL,
958 .ms_kb_base = 0xff1000000ULL,
959 .serial_base = 0xff1100000ULL,
960 .nvram_base = 0xff1200000ULL,
6a3b9cc9
BS
961 .counter_base = 0xff1300000ULL,
962 .intctl_base = 0xff1400000ULL,
963 .dma_base = 0xef0081000ULL,
964 .esp_base = 0xef0080000ULL,
965 .le_base = 0xef0060000ULL,
0019ad53 966 .apc_base = 0xefa000000ULL, // XXX should not exist
127fc407
BS
967 .aux1_base = 0xff1800000ULL,
968 .aux2_base = 0xff1a01000ULL, // XXX should not exist
7eb0c8e8
BS
969 .ecc_base = 0xf00000000ULL,
970 .ecc_version = 0x00000000, // version 0, implementation 0
905fdcb5
BS
971 .nvram_machine_id = 0x71,
972 .machine_id = ss600mp_id,
7fbfb139 973 .iommu_version = 0x01000000,
6ef05b95 974 .max_mem = 0xf00000000ULL,
3ebf5aaf 975 .default_cpu_model = "TI SuperSparc II",
6a3b9cc9 976 },
ae40972f
BS
977 /* SS-20 */
978 {
979 .iommu_base = 0xfe0000000ULL,
980 .tcx_base = 0xe20000000ULL,
ae40972f
BS
981 .slavio_base = 0xff0000000ULL,
982 .ms_kb_base = 0xff1000000ULL,
983 .serial_base = 0xff1100000ULL,
984 .nvram_base = 0xff1200000ULL,
985 .fd_base = 0xff1700000ULL,
986 .counter_base = 0xff1300000ULL,
987 .intctl_base = 0xff1400000ULL,
4c2485de 988 .idreg_base = 0xef0000000ULL,
ae40972f
BS
989 .dma_base = 0xef0400000ULL,
990 .esp_base = 0xef0800000ULL,
991 .le_base = 0xef0c00000ULL,
0019ad53 992 .apc_base = 0xefa000000ULL, // XXX should not exist
577d8dd4
BS
993 .aux1_base = 0xff1800000ULL,
994 .aux2_base = 0xff1a01000ULL,
ae40972f
BS
995 .ecc_base = 0xf00000000ULL,
996 .ecc_version = 0x20000000, // version 0, implementation 2
905fdcb5
BS
997 .nvram_machine_id = 0x72,
998 .machine_id = ss20_id,
ae40972f 999 .iommu_version = 0x13000000,
6ef05b95 1000 .max_mem = 0xf00000000ULL,
ae40972f
BS
1001 .default_cpu_model = "TI SuperSparc II",
1002 },
a526a31c
BS
1003 /* Voyager */
1004 {
1005 .iommu_base = 0x10000000,
1006 .tcx_base = 0x50000000,
a526a31c
BS
1007 .slavio_base = 0x70000000,
1008 .ms_kb_base = 0x71000000,
1009 .serial_base = 0x71100000,
1010 .nvram_base = 0x71200000,
1011 .fd_base = 0x71400000,
1012 .counter_base = 0x71d00000,
1013 .intctl_base = 0x71e00000,
1014 .idreg_base = 0x78000000,
1015 .dma_base = 0x78400000,
1016 .esp_base = 0x78800000,
1017 .le_base = 0x78c00000,
1018 .apc_base = 0x71300000, // pmc
1019 .aux1_base = 0x71900000,
1020 .aux2_base = 0x71910000,
905fdcb5
BS
1021 .nvram_machine_id = 0x80,
1022 .machine_id = vger_id,
a526a31c 1023 .iommu_version = 0x05000000,
a526a31c
BS
1024 .max_mem = 0x10000000,
1025 .default_cpu_model = "Fujitsu MB86904",
1026 },
1027 /* LX */
1028 {
1029 .iommu_base = 0x10000000,
1030 .tcx_base = 0x50000000,
a526a31c
BS
1031 .slavio_base = 0x70000000,
1032 .ms_kb_base = 0x71000000,
1033 .serial_base = 0x71100000,
1034 .nvram_base = 0x71200000,
1035 .fd_base = 0x71400000,
1036 .counter_base = 0x71d00000,
1037 .intctl_base = 0x71e00000,
1038 .idreg_base = 0x78000000,
1039 .dma_base = 0x78400000,
1040 .esp_base = 0x78800000,
1041 .le_base = 0x78c00000,
a526a31c
BS
1042 .aux1_base = 0x71900000,
1043 .aux2_base = 0x71910000,
905fdcb5
BS
1044 .nvram_machine_id = 0x80,
1045 .machine_id = lx_id,
a526a31c 1046 .iommu_version = 0x04000000,
a526a31c
BS
1047 .max_mem = 0x10000000,
1048 .default_cpu_model = "TI MicroSparc I",
1049 },
1050 /* SS-4 */
1051 {
1052 .iommu_base = 0x10000000,
1053 .tcx_base = 0x50000000,
1054 .cs_base = 0x6c000000,
1055 .slavio_base = 0x70000000,
1056 .ms_kb_base = 0x71000000,
1057 .serial_base = 0x71100000,
1058 .nvram_base = 0x71200000,
1059 .fd_base = 0x71400000,
1060 .counter_base = 0x71d00000,
1061 .intctl_base = 0x71e00000,
1062 .idreg_base = 0x78000000,
1063 .dma_base = 0x78400000,
1064 .esp_base = 0x78800000,
1065 .le_base = 0x78c00000,
1066 .apc_base = 0x6a000000,
1067 .aux1_base = 0x71900000,
1068 .aux2_base = 0x71910000,
905fdcb5
BS
1069 .nvram_machine_id = 0x80,
1070 .machine_id = ss4_id,
a526a31c 1071 .iommu_version = 0x05000000,
a526a31c
BS
1072 .max_mem = 0x10000000,
1073 .default_cpu_model = "Fujitsu MB86904",
1074 },
1075 /* SPARCClassic */
1076 {
1077 .iommu_base = 0x10000000,
1078 .tcx_base = 0x50000000,
a526a31c
BS
1079 .slavio_base = 0x70000000,
1080 .ms_kb_base = 0x71000000,
1081 .serial_base = 0x71100000,
1082 .nvram_base = 0x71200000,
1083 .fd_base = 0x71400000,
1084 .counter_base = 0x71d00000,
1085 .intctl_base = 0x71e00000,
1086 .idreg_base = 0x78000000,
1087 .dma_base = 0x78400000,
1088 .esp_base = 0x78800000,
1089 .le_base = 0x78c00000,
1090 .apc_base = 0x6a000000,
1091 .aux1_base = 0x71900000,
1092 .aux2_base = 0x71910000,
905fdcb5
BS
1093 .nvram_machine_id = 0x80,
1094 .machine_id = scls_id,
a526a31c 1095 .iommu_version = 0x05000000,
a526a31c
BS
1096 .max_mem = 0x10000000,
1097 .default_cpu_model = "TI MicroSparc I",
1098 },
1099 /* SPARCbook */
1100 {
1101 .iommu_base = 0x10000000,
1102 .tcx_base = 0x50000000, // XXX
a526a31c
BS
1103 .slavio_base = 0x70000000,
1104 .ms_kb_base = 0x71000000,
1105 .serial_base = 0x71100000,
1106 .nvram_base = 0x71200000,
1107 .fd_base = 0x71400000,
1108 .counter_base = 0x71d00000,
1109 .intctl_base = 0x71e00000,
1110 .idreg_base = 0x78000000,
1111 .dma_base = 0x78400000,
1112 .esp_base = 0x78800000,
1113 .le_base = 0x78c00000,
1114 .apc_base = 0x6a000000,
1115 .aux1_base = 0x71900000,
1116 .aux2_base = 0x71910000,
905fdcb5
BS
1117 .nvram_machine_id = 0x80,
1118 .machine_id = sbook_id,
a526a31c 1119 .iommu_version = 0x05000000,
a526a31c
BS
1120 .max_mem = 0x10000000,
1121 .default_cpu_model = "TI MicroSparc I",
1122 },
36cd9210
BS
1123};
1124
36cd9210 1125/* SPARCstation 5 hardware initialisation */
fbe1b595 1126static void ss5_init(ram_addr_t RAM_size,
3023f332 1127 const char *boot_device,
b881c2c6
BS
1128 const char *kernel_filename, const char *kernel_cmdline,
1129 const char *initrd_filename, const char *cpu_model)
36cd9210 1130{
3023f332 1131 sun4m_hw_init(&sun4m_hwdefs[0], RAM_size, boot_device, kernel_filename,
3ebf5aaf 1132 kernel_cmdline, initrd_filename, cpu_model);
420557e8 1133}
c0e564d5 1134
e0353fe2 1135/* SPARCstation 10 hardware initialisation */
fbe1b595 1136static void ss10_init(ram_addr_t RAM_size,
3023f332 1137 const char *boot_device,
b881c2c6
BS
1138 const char *kernel_filename, const char *kernel_cmdline,
1139 const char *initrd_filename, const char *cpu_model)
e0353fe2 1140{
3023f332 1141 sun4m_hw_init(&sun4m_hwdefs[1], RAM_size, boot_device, kernel_filename,
3ebf5aaf 1142 kernel_cmdline, initrd_filename, cpu_model);
e0353fe2
BS
1143}
1144
6a3b9cc9 1145/* SPARCserver 600MP hardware initialisation */
fbe1b595 1146static void ss600mp_init(ram_addr_t RAM_size,
3023f332 1147 const char *boot_device,
77f193da
BS
1148 const char *kernel_filename,
1149 const char *kernel_cmdline,
6a3b9cc9
BS
1150 const char *initrd_filename, const char *cpu_model)
1151{
3023f332 1152 sun4m_hw_init(&sun4m_hwdefs[2], RAM_size, boot_device, kernel_filename,
3ebf5aaf 1153 kernel_cmdline, initrd_filename, cpu_model);
6a3b9cc9
BS
1154}
1155
ae40972f 1156/* SPARCstation 20 hardware initialisation */
fbe1b595 1157static void ss20_init(ram_addr_t RAM_size,
3023f332 1158 const char *boot_device,
ae40972f
BS
1159 const char *kernel_filename, const char *kernel_cmdline,
1160 const char *initrd_filename, const char *cpu_model)
1161{
3023f332 1162 sun4m_hw_init(&sun4m_hwdefs[3], RAM_size, boot_device, kernel_filename,
ee76f82e
BS
1163 kernel_cmdline, initrd_filename, cpu_model);
1164}
1165
a526a31c 1166/* SPARCstation Voyager hardware initialisation */
fbe1b595 1167static void vger_init(ram_addr_t RAM_size,
3023f332 1168 const char *boot_device,
a526a31c
BS
1169 const char *kernel_filename, const char *kernel_cmdline,
1170 const char *initrd_filename, const char *cpu_model)
1171{
3023f332 1172 sun4m_hw_init(&sun4m_hwdefs[4], RAM_size, boot_device, kernel_filename,
a526a31c
BS
1173 kernel_cmdline, initrd_filename, cpu_model);
1174}
1175
1176/* SPARCstation LX hardware initialisation */
fbe1b595 1177static void ss_lx_init(ram_addr_t RAM_size,
3023f332 1178 const char *boot_device,
a526a31c
BS
1179 const char *kernel_filename, const char *kernel_cmdline,
1180 const char *initrd_filename, const char *cpu_model)
1181{
3023f332 1182 sun4m_hw_init(&sun4m_hwdefs[5], RAM_size, boot_device, kernel_filename,
a526a31c
BS
1183 kernel_cmdline, initrd_filename, cpu_model);
1184}
1185
1186/* SPARCstation 4 hardware initialisation */
fbe1b595 1187static void ss4_init(ram_addr_t RAM_size,
3023f332 1188 const char *boot_device,
a526a31c
BS
1189 const char *kernel_filename, const char *kernel_cmdline,
1190 const char *initrd_filename, const char *cpu_model)
1191{
3023f332 1192 sun4m_hw_init(&sun4m_hwdefs[6], RAM_size, boot_device, kernel_filename,
a526a31c
BS
1193 kernel_cmdline, initrd_filename, cpu_model);
1194}
1195
1196/* SPARCClassic hardware initialisation */
fbe1b595 1197static void scls_init(ram_addr_t RAM_size,
3023f332 1198 const char *boot_device,
a526a31c
BS
1199 const char *kernel_filename, const char *kernel_cmdline,
1200 const char *initrd_filename, const char *cpu_model)
1201{
3023f332 1202 sun4m_hw_init(&sun4m_hwdefs[7], RAM_size, boot_device, kernel_filename,
a526a31c
BS
1203 kernel_cmdline, initrd_filename, cpu_model);
1204}
1205
1206/* SPARCbook hardware initialisation */
fbe1b595 1207static void sbook_init(ram_addr_t RAM_size,
3023f332 1208 const char *boot_device,
a526a31c
BS
1209 const char *kernel_filename, const char *kernel_cmdline,
1210 const char *initrd_filename, const char *cpu_model)
1211{
3023f332 1212 sun4m_hw_init(&sun4m_hwdefs[8], RAM_size, boot_device, kernel_filename,
a526a31c
BS
1213 kernel_cmdline, initrd_filename, cpu_model);
1214}
1215
f80f9ec9 1216static QEMUMachine ss5_machine = {
66de733b
BS
1217 .name = "SS-5",
1218 .desc = "Sun4m platform, SPARCstation 5",
1219 .init = ss5_init,
c9b1ae2c 1220 .use_scsi = 1,
0c257437 1221 .is_default = 1,
c0e564d5 1222};
e0353fe2 1223
f80f9ec9 1224static QEMUMachine ss10_machine = {
66de733b
BS
1225 .name = "SS-10",
1226 .desc = "Sun4m platform, SPARCstation 10",
1227 .init = ss10_init,
c9b1ae2c 1228 .use_scsi = 1,
1bcee014 1229 .max_cpus = 4,
e0353fe2 1230};
6a3b9cc9 1231
f80f9ec9 1232static QEMUMachine ss600mp_machine = {
66de733b
BS
1233 .name = "SS-600MP",
1234 .desc = "Sun4m platform, SPARCserver 600MP",
1235 .init = ss600mp_init,
c9b1ae2c 1236 .use_scsi = 1,
1bcee014 1237 .max_cpus = 4,
6a3b9cc9 1238};
ae40972f 1239
f80f9ec9 1240static QEMUMachine ss20_machine = {
66de733b
BS
1241 .name = "SS-20",
1242 .desc = "Sun4m platform, SPARCstation 20",
1243 .init = ss20_init,
c9b1ae2c 1244 .use_scsi = 1,
1bcee014 1245 .max_cpus = 4,
ae40972f
BS
1246};
1247
f80f9ec9 1248static QEMUMachine voyager_machine = {
66de733b
BS
1249 .name = "Voyager",
1250 .desc = "Sun4m platform, SPARCstation Voyager",
1251 .init = vger_init,
c9b1ae2c 1252 .use_scsi = 1,
a526a31c
BS
1253};
1254
f80f9ec9 1255static QEMUMachine ss_lx_machine = {
66de733b
BS
1256 .name = "LX",
1257 .desc = "Sun4m platform, SPARCstation LX",
1258 .init = ss_lx_init,
c9b1ae2c 1259 .use_scsi = 1,
a526a31c
BS
1260};
1261
f80f9ec9 1262static QEMUMachine ss4_machine = {
66de733b
BS
1263 .name = "SS-4",
1264 .desc = "Sun4m platform, SPARCstation 4",
1265 .init = ss4_init,
c9b1ae2c 1266 .use_scsi = 1,
a526a31c
BS
1267};
1268
f80f9ec9 1269static QEMUMachine scls_machine = {
66de733b
BS
1270 .name = "SPARCClassic",
1271 .desc = "Sun4m platform, SPARCClassic",
1272 .init = scls_init,
c9b1ae2c 1273 .use_scsi = 1,
a526a31c
BS
1274};
1275
f80f9ec9 1276static QEMUMachine sbook_machine = {
66de733b
BS
1277 .name = "SPARCbook",
1278 .desc = "Sun4m platform, SPARCbook",
1279 .init = sbook_init,
c9b1ae2c 1280 .use_scsi = 1,
a526a31c
BS
1281};
1282
7d85892b
BS
1283static const struct sun4d_hwdef sun4d_hwdefs[] = {
1284 /* SS-1000 */
1285 {
1286 .iounit_bases = {
1287 0xfe0200000ULL,
1288 0xfe1200000ULL,
1289 0xfe2200000ULL,
1290 0xfe3200000ULL,
1291 -1,
1292 },
1293 .tcx_base = 0x820000000ULL,
1294 .slavio_base = 0xf00000000ULL,
1295 .ms_kb_base = 0xf00240000ULL,
1296 .serial_base = 0xf00200000ULL,
1297 .nvram_base = 0xf00280000ULL,
1298 .counter_base = 0xf00300000ULL,
1299 .espdma_base = 0x800081000ULL,
1300 .esp_base = 0x800080000ULL,
1301 .ledma_base = 0x800040000ULL,
1302 .le_base = 0x800060000ULL,
1303 .sbi_base = 0xf02800000ULL,
905fdcb5
BS
1304 .nvram_machine_id = 0x80,
1305 .machine_id = ss1000_id,
7d85892b 1306 .iounit_version = 0x03000000,
6ef05b95 1307 .max_mem = 0xf00000000ULL,
7d85892b
BS
1308 .default_cpu_model = "TI SuperSparc II",
1309 },
1310 /* SS-2000 */
1311 {
1312 .iounit_bases = {
1313 0xfe0200000ULL,
1314 0xfe1200000ULL,
1315 0xfe2200000ULL,
1316 0xfe3200000ULL,
1317 0xfe4200000ULL,
1318 },
1319 .tcx_base = 0x820000000ULL,
1320 .slavio_base = 0xf00000000ULL,
1321 .ms_kb_base = 0xf00240000ULL,
1322 .serial_base = 0xf00200000ULL,
1323 .nvram_base = 0xf00280000ULL,
1324 .counter_base = 0xf00300000ULL,
1325 .espdma_base = 0x800081000ULL,
1326 .esp_base = 0x800080000ULL,
1327 .ledma_base = 0x800040000ULL,
1328 .le_base = 0x800060000ULL,
1329 .sbi_base = 0xf02800000ULL,
905fdcb5
BS
1330 .nvram_machine_id = 0x80,
1331 .machine_id = ss2000_id,
7d85892b 1332 .iounit_version = 0x03000000,
6ef05b95 1333 .max_mem = 0xf00000000ULL,
7d85892b
BS
1334 .default_cpu_model = "TI SuperSparc II",
1335 },
1336};
1337
4b48bf05
BS
1338static DeviceState *sbi_init(target_phys_addr_t addr, qemu_irq **parent_irq)
1339{
1340 DeviceState *dev;
1341 SysBusDevice *s;
1342 unsigned int i;
1343
1344 dev = qdev_create(NULL, "sbi");
1345 qdev_init(dev);
1346
1347 s = sysbus_from_qdev(dev);
1348
1349 for (i = 0; i < MAX_CPUS; i++) {
1350 sysbus_connect_irq(s, i, *parent_irq[i]);
1351 }
1352
1353 sysbus_mmio_map(s, 0, addr);
1354
1355 return dev;
1356}
1357
6ef05b95 1358static void sun4d_hw_init(const struct sun4d_hwdef *hwdef, ram_addr_t RAM_size,
7d85892b 1359 const char *boot_device,
3023f332 1360 const char *kernel_filename,
7d85892b
BS
1361 const char *kernel_cmdline,
1362 const char *initrd_filename, const char *cpu_model)
1363{
666713c0 1364 CPUState *envs[MAX_CPUS];
7d85892b 1365 unsigned int i;
7fc06735
BS
1366 void *iounits[MAX_IOUNITS], *espdma, *ledma, *nvram;
1367 qemu_irq *cpu_irqs[MAX_CPUS], sbi_irq[32], sbi_cpu_irq[MAX_CPUS],
6f6260c7 1368 espdma_irq, ledma_irq;
74ff8d90 1369 qemu_irq esp_reset;
5c6602c5 1370 unsigned long kernel_size;
3cce6243 1371 void *fw_cfg;
7fc06735 1372 DeviceState *dev;
7d85892b
BS
1373
1374 /* init CPUs */
1375 if (!cpu_model)
1376 cpu_model = hwdef->default_cpu_model;
1377
666713c0
BS
1378 for(i = 0; i < smp_cpus; i++) {
1379 envs[i] = cpu_devinit(cpu_model, i, hwdef->slavio_base, &cpu_irqs[i]);
7d85892b
BS
1380 }
1381
1382 for (i = smp_cpus; i < MAX_CPUS; i++)
1383 cpu_irqs[i] = qemu_allocate_irqs(dummy_cpu_set_irq, NULL, MAX_PILS);
1384
7d85892b 1385 /* set up devices */
a350db85
BS
1386 ram_init(0, RAM_size, hwdef->max_mem);
1387
f48f6569
BS
1388 prom_init(hwdef->slavio_base, bios_name);
1389
7fc06735
BS
1390 dev = sbi_init(hwdef->sbi_base, cpu_irqs);
1391
1392 for (i = 0; i < 32; i++) {
1393 sbi_irq[i] = qdev_get_gpio_in(dev, i);
1394 }
1395 for (i = 0; i < MAX_CPUS; i++) {
1396 sbi_cpu_irq[i] = qdev_get_gpio_in(dev, 32 + i);
1397 }
7d85892b
BS
1398
1399 for (i = 0; i < MAX_IOUNITS; i++)
1400 if (hwdef->iounit_bases[i] != (target_phys_addr_t)-1)
ff403da6
BS
1401 iounits[i] = iommu_init(hwdef->iounit_bases[i],
1402 hwdef->iounit_version,
c533e0b3 1403 sbi_irq[0]);
7d85892b 1404
c533e0b3 1405 espdma = sparc32_dma_init(hwdef->espdma_base, sbi_irq[3],
74ff8d90 1406 iounits[0], &espdma_irq);
7d85892b 1407
c533e0b3 1408 ledma = sparc32_dma_init(hwdef->ledma_base, sbi_irq[4],
74ff8d90 1409 iounits[0], &ledma_irq);
7d85892b
BS
1410
1411 if (graphic_depth != 8 && graphic_depth != 24) {
1412 fprintf(stderr, "qemu: Unsupported depth: %d\n", graphic_depth);
1413 exit (1);
1414 }
d95d8f1c 1415 tcx_init(hwdef->tcx_base, 0x00100000, graphic_width, graphic_height,
dc828ca1 1416 graphic_depth);
7d85892b 1417
74ff8d90 1418 lance_init(&nd_table[0], hwdef->le_base, ledma, ledma_irq);
7d85892b 1419
d95d8f1c 1420 nvram = m48t59_init(sbi_irq[0], hwdef->nvram_base, 0, 0x2000, 8);
7d85892b 1421
c533e0b3 1422 slavio_timer_init_all(hwdef->counter_base, sbi_irq[10], sbi_cpu_irq, smp_cpus);
7d85892b 1423
c533e0b3 1424 slavio_serial_ms_kbd_init(hwdef->ms_kb_base, sbi_irq[12],
993fbfdb 1425 display_type == DT_NOGRAPHIC, ESCC_CLOCK, 1);
7d85892b
BS
1426 // Slavio TTYA (base+4, Linux ttyS0) is the first Qemu serial device
1427 // Slavio TTYB (base+0, Linux ttyS1) is the second Qemu serial device
c533e0b3 1428 escc_init(hwdef->serial_base, sbi_irq[12], sbi_irq[12],
aeeb69c7 1429 serial_hds[0], serial_hds[1], ESCC_CLOCK, 1);
7d85892b
BS
1430
1431 if (drive_get_max_bus(IF_SCSI) > 0) {
1432 fprintf(stderr, "qemu: too many SCSI bus\n");
1433 exit(1);
1434 }
1435
74ff8d90 1436 esp_reset = qdev_get_gpio_in(espdma, 0);
cfb9de9c
PB
1437 esp_init(hwdef->esp_base, 2,
1438 espdma_memory_read, espdma_memory_write,
74ff8d90 1439 espdma, espdma_irq, &esp_reset);
7d85892b 1440
293f78bc
BS
1441 kernel_size = sun4m_load_kernel(kernel_filename, initrd_filename,
1442 RAM_size);
7d85892b
BS
1443
1444 nvram_init(nvram, (uint8_t *)&nd_table[0].macaddr, kernel_cmdline,
1445 boot_device, RAM_size, kernel_size, graphic_width,
905fdcb5
BS
1446 graphic_height, graphic_depth, hwdef->nvram_machine_id,
1447 "Sun4d");
3cce6243
BS
1448
1449 fw_cfg = fw_cfg_init(0, 0, CFG_ADDR, CFG_ADDR + 2);
1450 fw_cfg_add_i32(fw_cfg, FW_CFG_ID, 1);
905fdcb5
BS
1451 fw_cfg_add_i64(fw_cfg, FW_CFG_RAM_SIZE, (uint64_t)ram_size);
1452 fw_cfg_add_i16(fw_cfg, FW_CFG_MACHINE_ID, hwdef->machine_id);
513f789f
BS
1453 fw_cfg_add_i16(fw_cfg, FW_CFG_SUN4M_DEPTH, graphic_depth);
1454 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_ADDR, KERNEL_LOAD_ADDR);
1455 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_SIZE, kernel_size);
1456 if (kernel_cmdline) {
1457 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_CMDLINE, CMDLINE_ADDR);
1458 pstrcpy_targphys(CMDLINE_ADDR, TARGET_PAGE_SIZE, kernel_cmdline);
1459 } else {
1460 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_CMDLINE, 0);
1461 }
1462 fw_cfg_add_i32(fw_cfg, FW_CFG_INITRD_ADDR, INITRD_LOAD_ADDR);
1463 fw_cfg_add_i32(fw_cfg, FW_CFG_INITRD_SIZE, 0); // not used
1464 fw_cfg_add_i16(fw_cfg, FW_CFG_BOOT_DEVICE, boot_device[0]);
1465 qemu_register_boot_set(fw_cfg_boot_set, fw_cfg);
7d85892b
BS
1466}
1467
1468/* SPARCserver 1000 hardware initialisation */
fbe1b595 1469static void ss1000_init(ram_addr_t RAM_size,
3023f332 1470 const char *boot_device,
7d85892b
BS
1471 const char *kernel_filename, const char *kernel_cmdline,
1472 const char *initrd_filename, const char *cpu_model)
1473{
3023f332 1474 sun4d_hw_init(&sun4d_hwdefs[0], RAM_size, boot_device, kernel_filename,
7d85892b
BS
1475 kernel_cmdline, initrd_filename, cpu_model);
1476}
1477
1478/* SPARCcenter 2000 hardware initialisation */
fbe1b595 1479static void ss2000_init(ram_addr_t RAM_size,
3023f332 1480 const char *boot_device,
7d85892b
BS
1481 const char *kernel_filename, const char *kernel_cmdline,
1482 const char *initrd_filename, const char *cpu_model)
1483{
3023f332 1484 sun4d_hw_init(&sun4d_hwdefs[1], RAM_size, boot_device, kernel_filename,
7d85892b
BS
1485 kernel_cmdline, initrd_filename, cpu_model);
1486}
1487
f80f9ec9 1488static QEMUMachine ss1000_machine = {
66de733b
BS
1489 .name = "SS-1000",
1490 .desc = "Sun4d platform, SPARCserver 1000",
1491 .init = ss1000_init,
c9b1ae2c 1492 .use_scsi = 1,
1bcee014 1493 .max_cpus = 8,
7d85892b
BS
1494};
1495
f80f9ec9 1496static QEMUMachine ss2000_machine = {
66de733b
BS
1497 .name = "SS-2000",
1498 .desc = "Sun4d platform, SPARCcenter 2000",
1499 .init = ss2000_init,
c9b1ae2c 1500 .use_scsi = 1,
1bcee014 1501 .max_cpus = 20,
7d85892b 1502};
8137cde8
BS
1503
1504static const struct sun4c_hwdef sun4c_hwdefs[] = {
1505 /* SS-2 */
1506 {
1507 .iommu_base = 0xf8000000,
1508 .tcx_base = 0xfe000000,
8137cde8
BS
1509 .slavio_base = 0xf6000000,
1510 .intctl_base = 0xf5000000,
1511 .counter_base = 0xf3000000,
1512 .ms_kb_base = 0xf0000000,
1513 .serial_base = 0xf1000000,
1514 .nvram_base = 0xf2000000,
1515 .fd_base = 0xf7200000,
1516 .dma_base = 0xf8400000,
1517 .esp_base = 0xf8800000,
1518 .le_base = 0xf8c00000,
8137cde8 1519 .aux1_base = 0xf7400003,
8137cde8
BS
1520 .nvram_machine_id = 0x55,
1521 .machine_id = ss2_id,
1522 .max_mem = 0x10000000,
1523 .default_cpu_model = "Cypress CY7C601",
1524 },
1525};
1526
4b48bf05
BS
1527static DeviceState *sun4c_intctl_init(target_phys_addr_t addr,
1528 qemu_irq *parent_irq)
1529{
1530 DeviceState *dev;
1531 SysBusDevice *s;
1532 unsigned int i;
1533
1534 dev = qdev_create(NULL, "sun4c_intctl");
1535 qdev_init(dev);
1536
1537 s = sysbus_from_qdev(dev);
1538
1539 for (i = 0; i < MAX_PILS; i++) {
1540 sysbus_connect_irq(s, i, parent_irq[i]);
1541 }
1542 sysbus_mmio_map(s, 0, addr);
1543
1544 return dev;
1545}
1546
8137cde8
BS
1547static void sun4c_hw_init(const struct sun4c_hwdef *hwdef, ram_addr_t RAM_size,
1548 const char *boot_device,
3023f332 1549 const char *kernel_filename,
8137cde8
BS
1550 const char *kernel_cmdline,
1551 const char *initrd_filename, const char *cpu_model)
1552{
1553 CPUState *env;
cfb9de9c 1554 void *iommu, *espdma, *ledma, *nvram;
e32cba29 1555 qemu_irq *cpu_irqs, slavio_irq[8], espdma_irq, ledma_irq;
74ff8d90 1556 qemu_irq esp_reset;
2582cfa0 1557 qemu_irq fdc_tc;
5c6602c5 1558 unsigned long kernel_size;
8137cde8 1559 BlockDriverState *fd[MAX_FD];
8137cde8 1560 void *fw_cfg;
e32cba29
BS
1561 DeviceState *dev;
1562 unsigned int i;
751c6a17 1563 DriveInfo *dinfo;
8137cde8
BS
1564
1565 /* init CPU */
1566 if (!cpu_model)
1567 cpu_model = hwdef->default_cpu_model;
1568
666713c0 1569 env = cpu_devinit(cpu_model, 0, hwdef->slavio_base, &cpu_irqs);
8137cde8 1570
8137cde8 1571 /* set up devices */
a350db85
BS
1572 ram_init(0, RAM_size, hwdef->max_mem);
1573
f48f6569
BS
1574 prom_init(hwdef->slavio_base, bios_name);
1575
e32cba29
BS
1576 dev = sun4c_intctl_init(hwdef->intctl_base, cpu_irqs);
1577
1578 for (i = 0; i < 8; i++) {
1579 slavio_irq[i] = qdev_get_gpio_in(dev, i);
1580 }
8137cde8
BS
1581
1582 iommu = iommu_init(hwdef->iommu_base, hwdef->iommu_version,
c533e0b3 1583 slavio_irq[1]);
8137cde8 1584
c533e0b3 1585 espdma = sparc32_dma_init(hwdef->dma_base, slavio_irq[2],
74ff8d90 1586 iommu, &espdma_irq);
8137cde8
BS
1587
1588 ledma = sparc32_dma_init(hwdef->dma_base + 16ULL,
74ff8d90 1589 slavio_irq[3], iommu, &ledma_irq);
8137cde8
BS
1590
1591 if (graphic_depth != 8 && graphic_depth != 24) {
1592 fprintf(stderr, "qemu: Unsupported depth: %d\n", graphic_depth);
1593 exit (1);
1594 }
d95d8f1c 1595 tcx_init(hwdef->tcx_base, 0x00100000, graphic_width, graphic_height,
dc828ca1 1596 graphic_depth);
8137cde8 1597
74ff8d90 1598 lance_init(&nd_table[0], hwdef->le_base, ledma, ledma_irq);
8137cde8 1599
d95d8f1c 1600 nvram = m48t59_init(slavio_irq[0], hwdef->nvram_base, 0, 0x800, 2);
8137cde8 1601
c533e0b3 1602 slavio_serial_ms_kbd_init(hwdef->ms_kb_base, slavio_irq[1],
993fbfdb 1603 display_type == DT_NOGRAPHIC, ESCC_CLOCK, 1);
8137cde8
BS
1604 // Slavio TTYA (base+4, Linux ttyS0) is the first Qemu serial device
1605 // Slavio TTYB (base+0, Linux ttyS1) is the second Qemu serial device
c533e0b3
BS
1606 escc_init(hwdef->serial_base, slavio_irq[1],
1607 slavio_irq[1], serial_hds[0], serial_hds[1],
aeeb69c7 1608 ESCC_CLOCK, 1);
8137cde8 1609
b2b6f6ec 1610 slavio_misc_init(0, hwdef->aux1_base, 0, slavio_irq[1], fdc_tc);
8137cde8
BS
1611
1612 if (hwdef->fd_base != (target_phys_addr_t)-1) {
1613 /* there is zero or one floppy drive */
ce802585 1614 memset(fd, 0, sizeof(fd));
751c6a17
GH
1615 dinfo = drive_get(IF_FLOPPY, 0, 0);
1616 if (dinfo)
1617 fd[0] = dinfo->bdrv;
8137cde8 1618
c533e0b3 1619 sun4m_fdctrl_init(slavio_irq[1], hwdef->fd_base, fd,
2582cfa0 1620 &fdc_tc);
8137cde8
BS
1621 }
1622
1623 if (drive_get_max_bus(IF_SCSI) > 0) {
1624 fprintf(stderr, "qemu: too many SCSI bus\n");
1625 exit(1);
1626 }
1627
74ff8d90 1628 esp_reset = qdev_get_gpio_in(espdma, 0);
cfb9de9c
PB
1629 esp_init(hwdef->esp_base, 2,
1630 espdma_memory_read, espdma_memory_write,
74ff8d90 1631 espdma, espdma_irq, &esp_reset);
8137cde8
BS
1632
1633 kernel_size = sun4m_load_kernel(kernel_filename, initrd_filename,
1634 RAM_size);
1635
1636 nvram_init(nvram, (uint8_t *)&nd_table[0].macaddr, kernel_cmdline,
1637 boot_device, RAM_size, kernel_size, graphic_width,
1638 graphic_height, graphic_depth, hwdef->nvram_machine_id,
1639 "Sun4c");
1640
1641 fw_cfg = fw_cfg_init(0, 0, CFG_ADDR, CFG_ADDR + 2);
1642 fw_cfg_add_i32(fw_cfg, FW_CFG_ID, 1);
1643 fw_cfg_add_i64(fw_cfg, FW_CFG_RAM_SIZE, (uint64_t)ram_size);
1644 fw_cfg_add_i16(fw_cfg, FW_CFG_MACHINE_ID, hwdef->machine_id);
513f789f
BS
1645 fw_cfg_add_i16(fw_cfg, FW_CFG_SUN4M_DEPTH, graphic_depth);
1646 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_ADDR, KERNEL_LOAD_ADDR);
1647 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_SIZE, kernel_size);
1648 if (kernel_cmdline) {
1649 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_CMDLINE, CMDLINE_ADDR);
1650 pstrcpy_targphys(CMDLINE_ADDR, TARGET_PAGE_SIZE, kernel_cmdline);
1651 } else {
1652 fw_cfg_add_i32(fw_cfg, FW_CFG_KERNEL_CMDLINE, 0);
1653 }
1654 fw_cfg_add_i32(fw_cfg, FW_CFG_INITRD_ADDR, INITRD_LOAD_ADDR);
1655 fw_cfg_add_i32(fw_cfg, FW_CFG_INITRD_SIZE, 0); // not used
1656 fw_cfg_add_i16(fw_cfg, FW_CFG_BOOT_DEVICE, boot_device[0]);
1657 qemu_register_boot_set(fw_cfg_boot_set, fw_cfg);
8137cde8
BS
1658}
1659
1660/* SPARCstation 2 hardware initialisation */
fbe1b595 1661static void ss2_init(ram_addr_t RAM_size,
3023f332 1662 const char *boot_device,
8137cde8
BS
1663 const char *kernel_filename, const char *kernel_cmdline,
1664 const char *initrd_filename, const char *cpu_model)
1665{
3023f332 1666 sun4c_hw_init(&sun4c_hwdefs[0], RAM_size, boot_device, kernel_filename,
8137cde8
BS
1667 kernel_cmdline, initrd_filename, cpu_model);
1668}
1669
f80f9ec9 1670static QEMUMachine ss2_machine = {
8137cde8
BS
1671 .name = "SS-2",
1672 .desc = "Sun4c platform, SPARCstation 2",
1673 .init = ss2_init,
8137cde8 1674 .use_scsi = 1,
8137cde8 1675};
f80f9ec9
AL
1676
1677static void ss2_machine_init(void)
1678{
1679 qemu_register_machine(&ss5_machine);
1680 qemu_register_machine(&ss10_machine);
1681 qemu_register_machine(&ss600mp_machine);
1682 qemu_register_machine(&ss20_machine);
1683 qemu_register_machine(&voyager_machine);
1684 qemu_register_machine(&ss_lx_machine);
1685 qemu_register_machine(&ss4_machine);
1686 qemu_register_machine(&scls_machine);
1687 qemu_register_machine(&sbook_machine);
1688 qemu_register_machine(&ss1000_machine);
1689 qemu_register_machine(&ss2000_machine);
1690 qemu_register_machine(&ss2_machine);
1691}
1692
1693machine_init(ss2_machine_init);
This page took 0.587896 seconds and 4 git commands to generate.