Statistics
| Branch: | Revision:

root / hw / sun4m.c @ d9c32310

History | View | Annotate | Download (52.3 kB)

1
/*
2
 * QEMU Sun4m & Sun4d & Sun4c System Emulator
3
 *
4
 * Copyright (c) 2003-2005 Fabrice Bellard
5
 *
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 "sysbus.h"
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"
33
#include "firmware_abi.h"
34
#include "scsi.h"
35
#include "pc.h"
36
#include "isa.h"
37
#include "fw_cfg.h"
38
#include "escc.h"
39
#include "qdev-addr.h"
40

    
41
//#define DEBUG_IRQ
42

    
43
/*
44
 * Sun4m architecture was used in the following machines:
45
 *
46
 * SPARCserver 6xxMP/xx
47
 * SPARCclassic (SPARCclassic Server)(SPARCstation LC) (4/15),
48
 * SPARCclassic X (4/10)
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
 *
56
 * Sun4d architecture was used in the following machines:
57
 *
58
 * SPARCcenter 2000
59
 * SPARCserver 1000
60
 *
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
 *
68
 * See for example: http://www.sunhelp.org/faq/sunref1.html
69
 */
70

    
71
#ifdef DEBUG_IRQ
72
#define DPRINTF(fmt, ...)                                       \
73
    do { printf("CPUIRQ: " fmt , ## __VA_ARGS__); } while (0)
74
#else
75
#define DPRINTF(fmt, ...)
76
#endif
77

    
78
#define KERNEL_LOAD_ADDR     0x00004000
79
#define CMDLINE_ADDR         0x007ff000
80
#define INITRD_LOAD_ADDR     0x00800000
81
#define PROM_SIZE_MAX        (1024 * 1024)
82
#define PROM_VADDR           0xffd00000
83
#define PROM_FILENAME        "openbios-sparc32"
84
#define CFG_ADDR             0xd00000510ULL
85
#define FW_CFG_SUN4M_DEPTH   (FW_CFG_ARCH_LOCAL + 0x00)
86

    
87
#define MAX_CPUS 16
88
#define MAX_PILS 16
89

    
90
#define ESCC_CLOCK 4915200
91

    
92
struct sun4m_hwdef {
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;
96
    target_phys_addr_t idreg_base, dma_base, esp_base, le_base;
97
    target_phys_addr_t tcx_base, cs_base, apc_base, aux1_base, aux2_base;
98
    target_phys_addr_t ecc_base;
99
    uint32_t ecc_version;
100
    uint8_t nvram_machine_id;
101
    uint16_t machine_id;
102
    uint32_t iommu_version;
103
    uint64_t max_mem;
104
    const char * const default_cpu_model;
105
};
106

    
107
#define MAX_IOUNITS 5
108

    
109
struct 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;
117
    uint8_t nvram_machine_id;
118
    uint16_t machine_id;
119
    uint32_t iounit_version;
120
    uint64_t max_mem;
121
    const char * const default_cpu_model;
122
};
123

    
124
struct 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;
129
    target_phys_addr_t tcx_base, aux1_base;
130
    uint8_t nvram_machine_id;
131
    uint16_t machine_id;
132
    uint32_t iommu_version;
133
    uint64_t max_mem;
134
    const char * const default_cpu_model;
135
};
136

    
137
int DMA_get_channel_mode (int nchan)
138
{
139
    return 0;
140
}
141
int DMA_read_memory (int nchan, void *buf, int pos, int size)
142
{
143
    return 0;
144
}
145
int DMA_write_memory (int nchan, void *buf, int pos, int size)
146
{
147
    return 0;
148
}
149
void DMA_hold_DREQ (int nchan) {}
150
void DMA_release_DREQ (int nchan) {}
151
void DMA_schedule(int nchan) {}
152
void DMA_init (int high_page_enable) {}
153
void DMA_register_channel (int nchan,
154
                           DMA_transfer_handler transfer_handler,
155
                           void *opaque)
156
{
157
}
158

    
159
static int fw_cfg_boot_set(void *opaque, const char *boot_device)
160
{
161
    fw_cfg_add_i16(opaque, FW_CFG_BOOT_DEVICE, boot_device[0]);
162
    return 0;
163
}
164

    
165
static void nvram_init(m48t59_t *nvram, uint8_t *macaddr, const char *cmdline,
166
                       const char *boot_devices, ram_addr_t RAM_size,
167
                       uint32_t kernel_size,
168
                       int width, int height, int depth,
169
                       int nvram_machine_id, const char *arch)
170
{
171
    unsigned int i;
172
    uint32_t start, end;
173
    uint8_t image[0x1ff0];
174
    struct OpenBIOS_nvpart_v1 *part_header;
175

    
176
    memset(image, '\0', sizeof(image));
177

    
178
    start = 0;
179

    
180
    // OpenBIOS nvram variables
181
    // Variable partition
182
    part_header = (struct OpenBIOS_nvpart_v1 *)&image[start];
183
    part_header->signature = OPENBIOS_PART_SYSTEM;
184
    pstrcpy(part_header->name, sizeof(part_header->name), "system");
185

    
186
    end = start + sizeof(struct OpenBIOS_nvpart_v1);
187
    for (i = 0; i < nb_prom_envs; i++)
188
        end = OpenBIOS_set_var(image, end, prom_envs[i]);
189

    
190
    // End marker
191
    image[end++] = '\0';
192

    
193
    end = start + ((end - start + 15) & ~15);
194
    OpenBIOS_finish_partition(part_header, end - start);
195

    
196
    // free partition
197
    start = end;
198
    part_header = (struct OpenBIOS_nvpart_v1 *)&image[start];
199
    part_header->signature = OPENBIOS_PART_FREE;
200
    pstrcpy(part_header->name, sizeof(part_header->name), "free");
201

    
202
    end = 0x1fd0;
203
    OpenBIOS_finish_partition(part_header, end - start);
204

    
205
    Sun_init_header((struct Sun_nvram *)&image[0x1fd8], macaddr,
206
                    nvram_machine_id);
207

    
208
    for (i = 0; i < sizeof(image); i++)
209
        m48t59_write(nvram, i, image[i]);
210
}
211

    
212
static void *slavio_intctl;
213

    
214
void pic_info(Monitor *mon)
215
{
216
    if (slavio_intctl)
217
        slavio_pic_info(mon, slavio_intctl);
218
}
219

    
220
void irq_info(Monitor *mon)
221
{
222
    if (slavio_intctl)
223
        slavio_irq_info(mon, slavio_intctl);
224
}
225

    
226
void 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;
237
                if (old_interrupt != env->interrupt_index) {
238
                    DPRINTF("Set CPU IRQ %d\n", i);
239
                    cpu_interrupt(env, CPU_INTERRUPT_HARD);
240
                }
241
                break;
242
            }
243
        }
244
    } else if (!env->pil_in && (env->interrupt_index & ~15) == TT_EXTINT) {
245
        DPRINTF("Reset CPU IRQ %d\n", env->interrupt_index & 15);
246
        env->interrupt_index = 0;
247
        cpu_reset_interrupt(env, CPU_INTERRUPT_HARD);
248
    }
249
}
250

    
251
static 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);
257
        env->halted = 0;
258
        env->pil_in |= 1 << irq;
259
        cpu_check_irqs(env);
260
    } else {
261
        DPRINTF("Lower CPU IRQ %d\n", irq);
262
        env->pil_in &= ~(1 << irq);
263
        cpu_check_irqs(env);
264
    }
265
}
266

    
267
static void dummy_cpu_set_irq(void *opaque, int irq, int level)
268
{
269
}
270

    
271
static void main_cpu_reset(void *opaque)
272
{
273
    CPUState *env = opaque;
274

    
275
    cpu_reset(env);
276
    env->halted = 0;
277
}
278

    
279
static void secondary_cpu_reset(void *opaque)
280
{
281
    CPUState *env = opaque;
282

    
283
    cpu_reset(env);
284
    env->halted = 1;
285
}
286

    
287
static 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

    
293
static unsigned long sun4m_load_kernel(const char *kernel_filename,
294
                                       const char *initrd_filename,
295
                                       ram_addr_t RAM_size)
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)
308
            kernel_size = load_aout(kernel_filename, KERNEL_LOAD_ADDR,
309
                                    RAM_size - KERNEL_LOAD_ADDR);
310
        if (kernel_size < 0)
311
            kernel_size = load_image_targphys(kernel_filename,
312
                                              KERNEL_LOAD_ADDR,
313
                                              RAM_size - KERNEL_LOAD_ADDR);
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) {
323
            initrd_size = load_image_targphys(initrd_filename,
324
                                              INITRD_LOAD_ADDR,
325
                                              RAM_size - INITRD_LOAD_ADDR);
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) {
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);
337
                    break;
338
                }
339
            }
340
        }
341
    }
342
    return kernel_size;
343
}
344

    
345
static 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

    
360
static 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

    
377
static void lance_init(NICInfo *nd, target_phys_addr_t leaddr,
378
                       void *dma_opaque, qemu_irq irq)
379
{
380
    DeviceState *dev;
381
    SysBusDevice *s;
382
    qemu_irq reset;
383

    
384
    qemu_check_nic_model(&nd_table[0], "lance");
385

    
386
    dev = qdev_create(NULL, "lance");
387
    dev->nd = nd;
388
    qdev_prop_set_ptr(dev, "dma", dma_opaque);
389
    qdev_init(dev);
390
    s = sysbus_from_qdev(dev);
391
    sysbus_mmio_map(s, 0, leaddr);
392
    sysbus_connect_irq(s, 0, irq);
393
    reset = qdev_get_gpio_in(dev, 0);
394
    qdev_connect_gpio_out(dma_opaque, 0, reset);
395
}
396

    
397
static DeviceState *slavio_intctl_init(target_phys_addr_t addr,
398
                                       target_phys_addr_t addrg,
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");
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

    
428
static 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

    
454
static 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)
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);
490
    qemu_system_powerdown = qdev_get_gpio_in(dev, 0);
491
}
492

    
493
static 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

    
509
static 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

    
522
static 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

    
555
/* NCR89C100/MACIO Internal ID register */
556
static const uint8_t idreg_data[] = { 0xfe, 0x81, 0x01, 0x03 };
557

    
558
static 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

    
571
static 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

    
579
static SysBusDeviceInfo idreg_info = {
580
    .init = idreg_init1,
581
    .qdev.name  = "macio_idreg",
582
    .qdev.size  = sizeof(SysBusDevice),
583
};
584

    
585
static void idreg_register_devices(void)
586
{
587
    sysbus_register_withprop(&idreg_info);
588
}
589

    
590
device_init(idreg_register_devices);
591

    
592
/* Boot PROM (OpenBIOS) */
593
static 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

    
626
static 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

    
634
static SysBusDeviceInfo prom_info = {
635
    .init = prom_init1,
636
    .qdev.name  = "openprom",
637
    .qdev.size  = sizeof(SysBusDevice),
638
    .qdev.props = (Property[]) {
639
        {/* end of property list */}
640
    }
641
};
642

    
643
static void prom_register_devices(void)
644
{
645
    sysbus_register_withprop(&prom_info);
646
}
647

    
648
device_init(prom_register_devices);
649

    
650
typedef struct RamDevice
651
{
652
    SysBusDevice busdev;
653
    uint64_t size;
654
} RamDevice;
655

    
656
/* System RAM */
657
static void ram_init1(SysBusDevice *dev)
658
{
659
    ram_addr_t RAM_size, ram_offset;
660
    RamDevice *d = FROM_SYSBUS(RamDevice, dev);
661

    
662
    RAM_size = d->size;
663

    
664
    ram_offset = qemu_ram_alloc(RAM_size);
665
    sysbus_init_mmio(dev, RAM_size, ram_offset);
666
}
667

    
668
static 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;
673
    RamDevice *d;
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");
684
    s = sysbus_from_qdev(dev);
685

    
686
    d = FROM_SYSBUS(RamDevice, s);
687
    d->size = RAM_size;
688
    qdev_init(dev);
689

    
690
    sysbus_mmio_map(s, 0, addr);
691
}
692

    
693
static SysBusDeviceInfo ram_info = {
694
    .init = ram_init1,
695
    .qdev.name  = "memory",
696
    .qdev.size  = sizeof(RamDevice),
697
    .qdev.props = (Property[]) {
698
        {
699
            .name = "size",
700
            .info = &qdev_prop_uint64,
701
            .offset = offsetof(RamDevice, size),
702
        },
703
        {/* end of property list */}
704
    }
705
};
706

    
707
static void ram_register_devices(void)
708
{
709
    sysbus_register_withprop(&ram_info);
710
}
711

    
712
device_init(ram_register_devices);
713

    
714
static 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

    
738
static void sun4m_hw_init(const struct sun4m_hwdef *hwdef, ram_addr_t RAM_size,
739
                          const char *boot_device,
740
                          const char *kernel_filename,
741
                          const char *kernel_cmdline,
742
                          const char *initrd_filename, const char *cpu_model)
743
{
744
    CPUState *envs[MAX_CPUS];
745
    unsigned int i;
746
    void *iommu, *espdma, *ledma, *nvram;
747
    qemu_irq *cpu_irqs[MAX_CPUS], slavio_irq[32], slavio_cpu_irq[MAX_CPUS],
748
        espdma_irq, ledma_irq;
749
    qemu_irq esp_reset;
750
    qemu_irq fdc_tc;
751
    qemu_irq *cpu_halt;
752
    unsigned long kernel_size;
753
    BlockDriverState *fd[MAX_FD];
754
    void *fw_cfg;
755
    DeviceState *dev;
756
    DriveInfo *dinfo;
757

    
758
    /* init CPUs */
759
    if (!cpu_model)
760
        cpu_model = hwdef->default_cpu_model;
761

    
762
    for(i = 0; i < smp_cpus; i++) {
763
        envs[i] = cpu_devinit(cpu_model, i, hwdef->slavio_base, &cpu_irqs[i]);
764
    }
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

    
769

    
770
    /* set up devices */
771
    ram_init(0, RAM_size, hwdef->max_mem);
772

    
773
    prom_init(hwdef->slavio_base, bios_name);
774

    
775
    dev = slavio_intctl_init(hwdef->intctl_base,
776
                             hwdef->intctl_base + 0x10000ULL,
777
                             cpu_irqs,
778
                             7);
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
    }
786

    
787
    if (hwdef->idreg_base) {
788
        idreg_init(hwdef->idreg_base);
789
    }
790

    
791
    iommu = iommu_init(hwdef->iommu_base, hwdef->iommu_version,
792
                       slavio_irq[30]);
793

    
794
    espdma = sparc32_dma_init(hwdef->dma_base, slavio_irq[18],
795
                              iommu, &espdma_irq);
796

    
797
    ledma = sparc32_dma_init(hwdef->dma_base + 16ULL,
798
                             slavio_irq[16], iommu, &ledma_irq);
799

    
800
    if (graphic_depth != 8 && graphic_depth != 24) {
801
        fprintf(stderr, "qemu: Unsupported depth: %d\n", graphic_depth);
802
        exit (1);
803
    }
804
    tcx_init(hwdef->tcx_base, 0x00100000, graphic_width, graphic_height,
805
             graphic_depth);
806

    
807
    lance_init(&nd_table[0], hwdef->le_base, ledma, ledma_irq);
808

    
809
    nvram = m48t59_init(slavio_irq[0], hwdef->nvram_base, 0, 0x2000, 8);
810

    
811
    slavio_timer_init_all(hwdef->counter_base, slavio_irq[19], slavio_cpu_irq, smp_cpus);
812

    
813
    slavio_serial_ms_kbd_init(hwdef->ms_kb_base, slavio_irq[14],
814
                              display_type == DT_NOGRAPHIC, ESCC_CLOCK, 1);
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
817
    escc_init(hwdef->serial_base, slavio_irq[15], slavio_irq[15],
818
              serial_hds[0], serial_hds[1], ESCC_CLOCK, 1);
819

    
820
    cpu_halt = qemu_allocate_irqs(cpu_halt_signal, NULL, 1);
821
    slavio_misc_init(hwdef->slavio_base, hwdef->aux1_base, hwdef->aux2_base,
822
                     slavio_irq[30], fdc_tc);
823

    
824
    if (hwdef->apc_base) {
825
        apc_init(hwdef->apc_base, cpu_halt[0]);
826
    }
827

    
828
    if (hwdef->fd_base) {
829
        /* there is zero or one floppy drive */
830
        memset(fd, 0, sizeof(fd));
831
        dinfo = drive_get(IF_FLOPPY, 0, 0);
832
        if (dinfo)
833
            fd[0] = dinfo->bdrv;
834

    
835
        sun4m_fdctrl_init(slavio_irq[22], hwdef->fd_base, fd,
836
                          &fdc_tc);
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

    
844
    esp_reset = qdev_get_gpio_in(espdma, 0);
845
    esp_init(hwdef->esp_base, 2,
846
             espdma_memory_read, espdma_memory_write,
847
             espdma, espdma_irq, &esp_reset);
848

    
849

    
850
    if (hwdef->cs_base) {
851
        sysbus_create_simple("SUNW,CS4231", hwdef->cs_base,
852
                             slavio_irq[5]);
853
    }
854

    
855
    kernel_size = sun4m_load_kernel(kernel_filename, initrd_filename,
856
                                    RAM_size);
857

    
858
    nvram_init(nvram, (uint8_t *)&nd_table[0].macaddr, kernel_cmdline,
859
               boot_device, RAM_size, kernel_size, graphic_width,
860
               graphic_height, graphic_depth, hwdef->nvram_machine_id,
861
               "Sun4m");
862

    
863
    if (hwdef->ecc_base)
864
        ecc_init(hwdef->ecc_base, slavio_irq[28],
865
                 hwdef->ecc_version);
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);
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);
871
    fw_cfg_add_i16(fw_cfg, FW_CFG_SUN4M_DEPTH, graphic_depth);
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);
884
}
885

    
886
enum {
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

    
901
static const struct sun4m_hwdef sun4m_hwdefs[] = {
902
    /* SS-5 */
903
    {
904
        .iommu_base   = 0x10000000,
905
        .tcx_base     = 0x50000000,
906
        .cs_base      = 0x6c000000,
907
        .slavio_base  = 0x70000000,
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,
914
        .idreg_base   = 0x78000000,
915
        .dma_base     = 0x78400000,
916
        .esp_base     = 0x78800000,
917
        .le_base      = 0x78c00000,
918
        .apc_base     = 0x6a000000,
919
        .aux1_base    = 0x71900000,
920
        .aux2_base    = 0x71910000,
921
        .nvram_machine_id = 0x80,
922
        .machine_id = ss5_id,
923
        .iommu_version = 0x05000000,
924
        .max_mem = 0x10000000,
925
        .default_cpu_model = "Fujitsu MB86904",
926
    },
927
    /* SS-10 */
928
    {
929
        .iommu_base   = 0xfe0000000ULL,
930
        .tcx_base     = 0xe20000000ULL,
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,
938
        .idreg_base   = 0xef0000000ULL,
939
        .dma_base     = 0xef0400000ULL,
940
        .esp_base     = 0xef0800000ULL,
941
        .le_base      = 0xef0c00000ULL,
942
        .apc_base     = 0xefa000000ULL, // XXX should not exist
943
        .aux1_base    = 0xff1800000ULL,
944
        .aux2_base    = 0xff1a01000ULL,
945
        .ecc_base     = 0xf00000000ULL,
946
        .ecc_version  = 0x10000000, // version 0, implementation 1
947
        .nvram_machine_id = 0x72,
948
        .machine_id = ss10_id,
949
        .iommu_version = 0x03000000,
950
        .max_mem = 0xf00000000ULL,
951
        .default_cpu_model = "TI SuperSparc II",
952
    },
953
    /* SS-600MP */
954
    {
955
        .iommu_base   = 0xfe0000000ULL,
956
        .tcx_base     = 0xe20000000ULL,
957
        .slavio_base  = 0xff0000000ULL,
958
        .ms_kb_base   = 0xff1000000ULL,
959
        .serial_base  = 0xff1100000ULL,
960
        .nvram_base   = 0xff1200000ULL,
961
        .counter_base = 0xff1300000ULL,
962
        .intctl_base  = 0xff1400000ULL,
963
        .dma_base     = 0xef0081000ULL,
964
        .esp_base     = 0xef0080000ULL,
965
        .le_base      = 0xef0060000ULL,
966
        .apc_base     = 0xefa000000ULL, // XXX should not exist
967
        .aux1_base    = 0xff1800000ULL,
968
        .aux2_base    = 0xff1a01000ULL, // XXX should not exist
969
        .ecc_base     = 0xf00000000ULL,
970
        .ecc_version  = 0x00000000, // version 0, implementation 0
971
        .nvram_machine_id = 0x71,
972
        .machine_id = ss600mp_id,
973
        .iommu_version = 0x01000000,
974
        .max_mem = 0xf00000000ULL,
975
        .default_cpu_model = "TI SuperSparc II",
976
    },
977
    /* SS-20 */
978
    {
979
        .iommu_base   = 0xfe0000000ULL,
980
        .tcx_base     = 0xe20000000ULL,
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,
988
        .idreg_base   = 0xef0000000ULL,
989
        .dma_base     = 0xef0400000ULL,
990
        .esp_base     = 0xef0800000ULL,
991
        .le_base      = 0xef0c00000ULL,
992
        .apc_base     = 0xefa000000ULL, // XXX should not exist
993
        .aux1_base    = 0xff1800000ULL,
994
        .aux2_base    = 0xff1a01000ULL,
995
        .ecc_base     = 0xf00000000ULL,
996
        .ecc_version  = 0x20000000, // version 0, implementation 2
997
        .nvram_machine_id = 0x72,
998
        .machine_id = ss20_id,
999
        .iommu_version = 0x13000000,
1000
        .max_mem = 0xf00000000ULL,
1001
        .default_cpu_model = "TI SuperSparc II",
1002
    },
1003
    /* Voyager */
1004
    {
1005
        .iommu_base   = 0x10000000,
1006
        .tcx_base     = 0x50000000,
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,
1021
        .nvram_machine_id = 0x80,
1022
        .machine_id = vger_id,
1023
        .iommu_version = 0x05000000,
1024
        .max_mem = 0x10000000,
1025
        .default_cpu_model = "Fujitsu MB86904",
1026
    },
1027
    /* LX */
1028
    {
1029
        .iommu_base   = 0x10000000,
1030
        .tcx_base     = 0x50000000,
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,
1042
        .aux1_base    = 0x71900000,
1043
        .aux2_base    = 0x71910000,
1044
        .nvram_machine_id = 0x80,
1045
        .machine_id = lx_id,
1046
        .iommu_version = 0x04000000,
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,
1069
        .nvram_machine_id = 0x80,
1070
        .machine_id = ss4_id,
1071
        .iommu_version = 0x05000000,
1072
        .max_mem = 0x10000000,
1073
        .default_cpu_model = "Fujitsu MB86904",
1074
    },
1075
    /* SPARCClassic */
1076
    {
1077
        .iommu_base   = 0x10000000,
1078
        .tcx_base     = 0x50000000,
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,
1093
        .nvram_machine_id = 0x80,
1094
        .machine_id = scls_id,
1095
        .iommu_version = 0x05000000,
1096
        .max_mem = 0x10000000,
1097
        .default_cpu_model = "TI MicroSparc I",
1098
    },
1099
    /* SPARCbook */
1100
    {
1101
        .iommu_base   = 0x10000000,
1102
        .tcx_base     = 0x50000000, // XXX
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,
1117
        .nvram_machine_id = 0x80,
1118
        .machine_id = sbook_id,
1119
        .iommu_version = 0x05000000,
1120
        .max_mem = 0x10000000,
1121
        .default_cpu_model = "TI MicroSparc I",
1122
    },
1123
};
1124

    
1125
/* SPARCstation 5 hardware initialisation */
1126
static void ss5_init(ram_addr_t RAM_size,
1127
                     const char *boot_device,
1128
                     const char *kernel_filename, const char *kernel_cmdline,
1129
                     const char *initrd_filename, const char *cpu_model)
1130
{
1131
    sun4m_hw_init(&sun4m_hwdefs[0], RAM_size, boot_device, kernel_filename,
1132
                  kernel_cmdline, initrd_filename, cpu_model);
1133
}
1134

    
1135
/* SPARCstation 10 hardware initialisation */
1136
static void ss10_init(ram_addr_t RAM_size,
1137
                      const char *boot_device,
1138
                      const char *kernel_filename, const char *kernel_cmdline,
1139
                      const char *initrd_filename, const char *cpu_model)
1140
{
1141
    sun4m_hw_init(&sun4m_hwdefs[1], RAM_size, boot_device, kernel_filename,
1142
                  kernel_cmdline, initrd_filename, cpu_model);
1143
}
1144

    
1145
/* SPARCserver 600MP hardware initialisation */
1146
static void ss600mp_init(ram_addr_t RAM_size,
1147
                         const char *boot_device,
1148
                         const char *kernel_filename,
1149
                         const char *kernel_cmdline,
1150
                         const char *initrd_filename, const char *cpu_model)
1151
{
1152
    sun4m_hw_init(&sun4m_hwdefs[2], RAM_size, boot_device, kernel_filename,
1153
                  kernel_cmdline, initrd_filename, cpu_model);
1154
}
1155

    
1156
/* SPARCstation 20 hardware initialisation */
1157
static void ss20_init(ram_addr_t RAM_size,
1158
                      const char *boot_device,
1159
                      const char *kernel_filename, const char *kernel_cmdline,
1160
                      const char *initrd_filename, const char *cpu_model)
1161
{
1162
    sun4m_hw_init(&sun4m_hwdefs[3], RAM_size, boot_device, kernel_filename,
1163
                  kernel_cmdline, initrd_filename, cpu_model);
1164
}
1165

    
1166
/* SPARCstation Voyager hardware initialisation */
1167
static void vger_init(ram_addr_t RAM_size,
1168
                      const char *boot_device,
1169
                      const char *kernel_filename, const char *kernel_cmdline,
1170
                      const char *initrd_filename, const char *cpu_model)
1171
{
1172
    sun4m_hw_init(&sun4m_hwdefs[4], RAM_size, boot_device, kernel_filename,
1173
                  kernel_cmdline, initrd_filename, cpu_model);
1174
}
1175

    
1176
/* SPARCstation LX hardware initialisation */
1177
static void ss_lx_init(ram_addr_t RAM_size,
1178
                       const char *boot_device,
1179
                       const char *kernel_filename, const char *kernel_cmdline,
1180
                       const char *initrd_filename, const char *cpu_model)
1181
{
1182
    sun4m_hw_init(&sun4m_hwdefs[5], RAM_size, boot_device, kernel_filename,
1183
                  kernel_cmdline, initrd_filename, cpu_model);
1184
}
1185

    
1186
/* SPARCstation 4 hardware initialisation */
1187
static void ss4_init(ram_addr_t RAM_size,
1188
                     const char *boot_device,
1189
                     const char *kernel_filename, const char *kernel_cmdline,
1190
                     const char *initrd_filename, const char *cpu_model)
1191
{
1192
    sun4m_hw_init(&sun4m_hwdefs[6], RAM_size, boot_device, kernel_filename,
1193
                  kernel_cmdline, initrd_filename, cpu_model);
1194
}
1195

    
1196
/* SPARCClassic hardware initialisation */
1197
static void scls_init(ram_addr_t RAM_size,
1198
                      const char *boot_device,
1199
                      const char *kernel_filename, const char *kernel_cmdline,
1200
                      const char *initrd_filename, const char *cpu_model)
1201
{
1202
    sun4m_hw_init(&sun4m_hwdefs[7], RAM_size, boot_device, kernel_filename,
1203
                  kernel_cmdline, initrd_filename, cpu_model);
1204
}
1205

    
1206
/* SPARCbook hardware initialisation */
1207
static void sbook_init(ram_addr_t RAM_size,
1208
                       const char *boot_device,
1209
                       const char *kernel_filename, const char *kernel_cmdline,
1210
                       const char *initrd_filename, const char *cpu_model)
1211
{
1212
    sun4m_hw_init(&sun4m_hwdefs[8], RAM_size, boot_device, kernel_filename,
1213
                  kernel_cmdline, initrd_filename, cpu_model);
1214
}
1215

    
1216
static QEMUMachine ss5_machine = {
1217
    .name = "SS-5",
1218
    .desc = "Sun4m platform, SPARCstation 5",
1219
    .init = ss5_init,
1220
    .use_scsi = 1,
1221
    .is_default = 1,
1222
};
1223

    
1224
static QEMUMachine ss10_machine = {
1225
    .name = "SS-10",
1226
    .desc = "Sun4m platform, SPARCstation 10",
1227
    .init = ss10_init,
1228
    .use_scsi = 1,
1229
    .max_cpus = 4,
1230
};
1231

    
1232
static QEMUMachine ss600mp_machine = {
1233
    .name = "SS-600MP",
1234
    .desc = "Sun4m platform, SPARCserver 600MP",
1235
    .init = ss600mp_init,
1236
    .use_scsi = 1,
1237
    .max_cpus = 4,
1238
};
1239

    
1240
static QEMUMachine ss20_machine = {
1241
    .name = "SS-20",
1242
    .desc = "Sun4m platform, SPARCstation 20",
1243
    .init = ss20_init,
1244
    .use_scsi = 1,
1245
    .max_cpus = 4,
1246
};
1247

    
1248
static QEMUMachine voyager_machine = {
1249
    .name = "Voyager",
1250
    .desc = "Sun4m platform, SPARCstation Voyager",
1251
    .init = vger_init,
1252
    .use_scsi = 1,
1253
};
1254

    
1255
static QEMUMachine ss_lx_machine = {
1256
    .name = "LX",
1257
    .desc = "Sun4m platform, SPARCstation LX",
1258
    .init = ss_lx_init,
1259
    .use_scsi = 1,
1260
};
1261

    
1262
static QEMUMachine ss4_machine = {
1263
    .name = "SS-4",
1264
    .desc = "Sun4m platform, SPARCstation 4",
1265
    .init = ss4_init,
1266
    .use_scsi = 1,
1267
};
1268

    
1269
static QEMUMachine scls_machine = {
1270
    .name = "SPARCClassic",
1271
    .desc = "Sun4m platform, SPARCClassic",
1272
    .init = scls_init,
1273
    .use_scsi = 1,
1274
};
1275

    
1276
static QEMUMachine sbook_machine = {
1277
    .name = "SPARCbook",
1278
    .desc = "Sun4m platform, SPARCbook",
1279
    .init = sbook_init,
1280
    .use_scsi = 1,
1281
};
1282

    
1283
static 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,
1304
        .nvram_machine_id = 0x80,
1305
        .machine_id = ss1000_id,
1306
        .iounit_version = 0x03000000,
1307
        .max_mem = 0xf00000000ULL,
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,
1330
        .nvram_machine_id = 0x80,
1331
        .machine_id = ss2000_id,
1332
        .iounit_version = 0x03000000,
1333
        .max_mem = 0xf00000000ULL,
1334
        .default_cpu_model = "TI SuperSparc II",
1335
    },
1336
};
1337

    
1338
static 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

    
1358
static void sun4d_hw_init(const struct sun4d_hwdef *hwdef, ram_addr_t RAM_size,
1359
                          const char *boot_device,
1360
                          const char *kernel_filename,
1361
                          const char *kernel_cmdline,
1362
                          const char *initrd_filename, const char *cpu_model)
1363
{
1364
    CPUState *envs[MAX_CPUS];
1365
    unsigned int i;
1366
    void *iounits[MAX_IOUNITS], *espdma, *ledma, *nvram;
1367
    qemu_irq *cpu_irqs[MAX_CPUS], sbi_irq[32], sbi_cpu_irq[MAX_CPUS],
1368
        espdma_irq, ledma_irq;
1369
    qemu_irq esp_reset;
1370
    unsigned long kernel_size;
1371
    void *fw_cfg;
1372
    DeviceState *dev;
1373

    
1374
    /* init CPUs */
1375
    if (!cpu_model)
1376
        cpu_model = hwdef->default_cpu_model;
1377

    
1378
    for(i = 0; i < smp_cpus; i++) {
1379
        envs[i] = cpu_devinit(cpu_model, i, hwdef->slavio_base, &cpu_irqs[i]);
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

    
1385
    /* set up devices */
1386
    ram_init(0, RAM_size, hwdef->max_mem);
1387

    
1388
    prom_init(hwdef->slavio_base, bios_name);
1389

    
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
    }
1398

    
1399
    for (i = 0; i < MAX_IOUNITS; i++)
1400
        if (hwdef->iounit_bases[i] != (target_phys_addr_t)-1)
1401
            iounits[i] = iommu_init(hwdef->iounit_bases[i],
1402
                                    hwdef->iounit_version,
1403
                                    sbi_irq[0]);
1404

    
1405
    espdma = sparc32_dma_init(hwdef->espdma_base, sbi_irq[3],
1406
                              iounits[0], &espdma_irq);
1407

    
1408
    ledma = sparc32_dma_init(hwdef->ledma_base, sbi_irq[4],
1409
                             iounits[0], &ledma_irq);
1410

    
1411
    if (graphic_depth != 8 && graphic_depth != 24) {
1412
        fprintf(stderr, "qemu: Unsupported depth: %d\n", graphic_depth);
1413
        exit (1);
1414
    }
1415
    tcx_init(hwdef->tcx_base, 0x00100000, graphic_width, graphic_height,
1416
             graphic_depth);
1417

    
1418
    lance_init(&nd_table[0], hwdef->le_base, ledma, ledma_irq);
1419

    
1420
    nvram = m48t59_init(sbi_irq[0], hwdef->nvram_base, 0, 0x2000, 8);
1421

    
1422
    slavio_timer_init_all(hwdef->counter_base, sbi_irq[10], sbi_cpu_irq, smp_cpus);
1423

    
1424
    slavio_serial_ms_kbd_init(hwdef->ms_kb_base, sbi_irq[12],
1425
                              display_type == DT_NOGRAPHIC, ESCC_CLOCK, 1);
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
1428
    escc_init(hwdef->serial_base, sbi_irq[12], sbi_irq[12],
1429
              serial_hds[0], serial_hds[1], ESCC_CLOCK, 1);
1430

    
1431
    if (drive_get_max_bus(IF_SCSI) > 0) {
1432
        fprintf(stderr, "qemu: too many SCSI bus\n");
1433
        exit(1);
1434
    }
1435

    
1436
    esp_reset = qdev_get_gpio_in(espdma, 0);
1437
    esp_init(hwdef->esp_base, 2,
1438
             espdma_memory_read, espdma_memory_write,
1439
             espdma, espdma_irq, &esp_reset);
1440

    
1441
    kernel_size = sun4m_load_kernel(kernel_filename, initrd_filename,
1442
                                    RAM_size);
1443

    
1444
    nvram_init(nvram, (uint8_t *)&nd_table[0].macaddr, kernel_cmdline,
1445
               boot_device, RAM_size, kernel_size, graphic_width,
1446
               graphic_height, graphic_depth, hwdef->nvram_machine_id,
1447
               "Sun4d");
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);
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);
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);
1466
}
1467

    
1468
/* SPARCserver 1000 hardware initialisation */
1469
static void ss1000_init(ram_addr_t RAM_size,
1470
                        const char *boot_device,
1471
                        const char *kernel_filename, const char *kernel_cmdline,
1472
                        const char *initrd_filename, const char *cpu_model)
1473
{
1474
    sun4d_hw_init(&sun4d_hwdefs[0], RAM_size, boot_device, kernel_filename,
1475
                  kernel_cmdline, initrd_filename, cpu_model);
1476
}
1477

    
1478
/* SPARCcenter 2000 hardware initialisation */
1479
static void ss2000_init(ram_addr_t RAM_size,
1480
                        const char *boot_device,
1481
                        const char *kernel_filename, const char *kernel_cmdline,
1482
                        const char *initrd_filename, const char *cpu_model)
1483
{
1484
    sun4d_hw_init(&sun4d_hwdefs[1], RAM_size, boot_device, kernel_filename,
1485
                  kernel_cmdline, initrd_filename, cpu_model);
1486
}
1487

    
1488
static QEMUMachine ss1000_machine = {
1489
    .name = "SS-1000",
1490
    .desc = "Sun4d platform, SPARCserver 1000",
1491
    .init = ss1000_init,
1492
    .use_scsi = 1,
1493
    .max_cpus = 8,
1494
};
1495

    
1496
static QEMUMachine ss2000_machine = {
1497
    .name = "SS-2000",
1498
    .desc = "Sun4d platform, SPARCcenter 2000",
1499
    .init = ss2000_init,
1500
    .use_scsi = 1,
1501
    .max_cpus = 20,
1502
};
1503

    
1504
static const struct sun4c_hwdef sun4c_hwdefs[] = {
1505
    /* SS-2 */
1506
    {
1507
        .iommu_base   = 0xf8000000,
1508
        .tcx_base     = 0xfe000000,
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,
1519
        .aux1_base    = 0xf7400003,
1520
        .nvram_machine_id = 0x55,
1521
        .machine_id = ss2_id,
1522
        .max_mem = 0x10000000,
1523
        .default_cpu_model = "Cypress CY7C601",
1524
    },
1525
};
1526

    
1527
static 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

    
1547
static void sun4c_hw_init(const struct sun4c_hwdef *hwdef, ram_addr_t RAM_size,
1548
                          const char *boot_device,
1549
                          const char *kernel_filename,
1550
                          const char *kernel_cmdline,
1551
                          const char *initrd_filename, const char *cpu_model)
1552
{
1553
    CPUState *env;
1554
    void *iommu, *espdma, *ledma, *nvram;
1555
    qemu_irq *cpu_irqs, slavio_irq[8], espdma_irq, ledma_irq;
1556
    qemu_irq esp_reset;
1557
    qemu_irq fdc_tc;
1558
    unsigned long kernel_size;
1559
    BlockDriverState *fd[MAX_FD];
1560
    void *fw_cfg;
1561
    DeviceState *dev;
1562
    unsigned int i;
1563
    DriveInfo *dinfo;
1564

    
1565
    /* init CPU */
1566
    if (!cpu_model)
1567
        cpu_model = hwdef->default_cpu_model;
1568

    
1569
    env = cpu_devinit(cpu_model, 0, hwdef->slavio_base, &cpu_irqs);
1570

    
1571
    /* set up devices */
1572
    ram_init(0, RAM_size, hwdef->max_mem);
1573

    
1574
    prom_init(hwdef->slavio_base, bios_name);
1575

    
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
    }
1581

    
1582
    iommu = iommu_init(hwdef->iommu_base, hwdef->iommu_version,
1583
                       slavio_irq[1]);
1584

    
1585
    espdma = sparc32_dma_init(hwdef->dma_base, slavio_irq[2],
1586
                              iommu, &espdma_irq);
1587

    
1588
    ledma = sparc32_dma_init(hwdef->dma_base + 16ULL,
1589
                             slavio_irq[3], iommu, &ledma_irq);
1590

    
1591
    if (graphic_depth != 8 && graphic_depth != 24) {
1592
        fprintf(stderr, "qemu: Unsupported depth: %d\n", graphic_depth);
1593
        exit (1);
1594
    }
1595
    tcx_init(hwdef->tcx_base, 0x00100000, graphic_width, graphic_height,
1596
             graphic_depth);
1597

    
1598
    lance_init(&nd_table[0], hwdef->le_base, ledma, ledma_irq);
1599

    
1600
    nvram = m48t59_init(slavio_irq[0], hwdef->nvram_base, 0, 0x800, 2);
1601

    
1602
    slavio_serial_ms_kbd_init(hwdef->ms_kb_base, slavio_irq[1],
1603
                              display_type == DT_NOGRAPHIC, ESCC_CLOCK, 1);
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
1606
    escc_init(hwdef->serial_base, slavio_irq[1],
1607
              slavio_irq[1], serial_hds[0], serial_hds[1],
1608
              ESCC_CLOCK, 1);
1609

    
1610
    slavio_misc_init(0, hwdef->aux1_base, 0, slavio_irq[1], fdc_tc);
1611

    
1612
    if (hwdef->fd_base != (target_phys_addr_t)-1) {
1613
        /* there is zero or one floppy drive */
1614
        memset(fd, 0, sizeof(fd));
1615
        dinfo = drive_get(IF_FLOPPY, 0, 0);
1616
        if (dinfo)
1617
            fd[0] = dinfo->bdrv;
1618

    
1619
        sun4m_fdctrl_init(slavio_irq[1], hwdef->fd_base, fd,
1620
                          &fdc_tc);
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

    
1628
    esp_reset = qdev_get_gpio_in(espdma, 0);
1629
    esp_init(hwdef->esp_base, 2,
1630
             espdma_memory_read, espdma_memory_write,
1631
             espdma, espdma_irq, &esp_reset);
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);
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);
1658
}
1659

    
1660
/* SPARCstation 2 hardware initialisation */
1661
static void ss2_init(ram_addr_t RAM_size,
1662
                     const char *boot_device,
1663
                     const char *kernel_filename, const char *kernel_cmdline,
1664
                     const char *initrd_filename, const char *cpu_model)
1665
{
1666
    sun4c_hw_init(&sun4c_hwdefs[0], RAM_size, boot_device, kernel_filename,
1667
                  kernel_cmdline, initrd_filename, cpu_model);
1668
}
1669

    
1670
static QEMUMachine ss2_machine = {
1671
    .name = "SS-2",
1672
    .desc = "Sun4c platform, SPARCstation 2",
1673
    .init = ss2_init,
1674
    .use_scsi = 1,
1675
};
1676

    
1677
static 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

    
1693
machine_init(ss2_machine_init);