Statistics
| Branch: | Revision:

root / hw / ppc_prep.c @ 0c90c52f

History | View | Annotate | Download (21.3 kB)

1
/*
2
 * QEMU PPC PREP hardware System Emulator
3
 *
4
 * Copyright (c) 2003-2007 Jocelyn Mayer
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 "hw.h"
25
#include "nvram.h"
26
#include "pc.h"
27
#include "fdc.h"
28
#include "net.h"
29
#include "sysemu.h"
30
#include "isa.h"
31
#include "pci.h"
32
#include "prep_pci.h"
33
#include "usb-ohci.h"
34
#include "ppc.h"
35
#include "boards.h"
36
#include "qemu-log.h"
37
#include "ide.h"
38
#include "loader.h"
39
#include "mc146818rtc.h"
40
#include "blockdev.h"
41
#include "exec-memory.h"
42

    
43
//#define HARD_DEBUG_PPC_IO
44
//#define DEBUG_PPC_IO
45

    
46
/* SMP is not enabled, for now */
47
#define MAX_CPUS 1
48

    
49
#define MAX_IDE_BUS 2
50

    
51
#define BIOS_SIZE (1024 * 1024)
52
#define BIOS_FILENAME "ppc_rom.bin"
53
#define KERNEL_LOAD_ADDR 0x01000000
54
#define INITRD_LOAD_ADDR 0x01800000
55

    
56
#if defined (HARD_DEBUG_PPC_IO) && !defined (DEBUG_PPC_IO)
57
#define DEBUG_PPC_IO
58
#endif
59

    
60
#if defined (HARD_DEBUG_PPC_IO)
61
#define PPC_IO_DPRINTF(fmt, ...)                         \
62
do {                                                     \
63
    if (qemu_loglevel_mask(CPU_LOG_IOPORT)) {            \
64
        qemu_log("%s: " fmt, __func__ , ## __VA_ARGS__); \
65
    } else {                                             \
66
        printf("%s : " fmt, __func__ , ## __VA_ARGS__);  \
67
    }                                                    \
68
} while (0)
69
#elif defined (DEBUG_PPC_IO)
70
#define PPC_IO_DPRINTF(fmt, ...) \
71
qemu_log_mask(CPU_LOG_IOPORT, fmt, ## __VA_ARGS__)
72
#else
73
#define PPC_IO_DPRINTF(fmt, ...) do { } while (0)
74
#endif
75

    
76
/* Constants for devices init */
77
static const int ide_iobase[2] = { 0x1f0, 0x170 };
78
static const int ide_iobase2[2] = { 0x3f6, 0x376 };
79
static const int ide_irq[2] = { 13, 13 };
80

    
81
#define NE2000_NB_MAX 6
82

    
83
static uint32_t ne2000_io[NE2000_NB_MAX] = { 0x300, 0x320, 0x340, 0x360, 0x280, 0x380 };
84
static int ne2000_irq[NE2000_NB_MAX] = { 9, 10, 11, 3, 4, 5 };
85

    
86
//static ISADevice *pit;
87

    
88
/* ISA IO ports bridge */
89
#define PPC_IO_BASE 0x80000000
90

    
91
#if 0
92
/* Speaker port 0x61 */
93
static int speaker_data_on;
94
static int dummy_refresh_clock;
95
#endif
96

    
97
static void speaker_ioport_write (void *opaque, uint32_t addr, uint32_t val)
98
{
99
#if 0
100
    speaker_data_on = (val >> 1) & 1;
101
    pit_set_gate(pit, 2, val & 1);
102
#endif
103
}
104

    
105
static uint32_t speaker_ioport_read (void *opaque, uint32_t addr)
106
{
107
#if 0
108
    int out;
109
    out = pit_get_out(pit, 2, qemu_get_clock_ns(vm_clock));
110
    dummy_refresh_clock ^= 1;
111
    return (speaker_data_on << 1) | pit_get_gate(pit, 2) | (out << 5) |
112
        (dummy_refresh_clock << 4);
113
#endif
114
    return 0;
115
}
116

    
117
/* PCI intack register */
118
/* Read-only register (?) */
119
static void PPC_intack_write (void *opaque, target_phys_addr_t addr,
120
                              uint64_t value, unsigned size)
121
{
122
#if 0
123
    printf("%s: 0x" TARGET_FMT_plx " => 0x%08" PRIx64 "\n", __func__, addr,
124
           value);
125
#endif
126
}
127

    
128
static uint64_t PPC_intack_read(void *opaque, target_phys_addr_t addr,
129
                                unsigned size)
130
{
131
    uint32_t retval = 0;
132

    
133
    if ((addr & 0xf) == 0)
134
        retval = pic_read_irq(isa_pic);
135
#if 0
136
    printf("%s: 0x" TARGET_FMT_plx " <= %08" PRIx32 "\n", __func__, addr,
137
           retval);
138
#endif
139

    
140
    return retval;
141
}
142

    
143
static const MemoryRegionOps PPC_intack_ops = {
144
    .read = PPC_intack_read,
145
    .write = PPC_intack_write,
146
    .endianness = DEVICE_LITTLE_ENDIAN,
147
};
148

    
149
/* PowerPC control and status registers */
150
#if 0 // Not used
151
static struct {
152
    /* IDs */
153
    uint32_t veni_devi;
154
    uint32_t revi;
155
    /* Control and status */
156
    uint32_t gcsr;
157
    uint32_t xcfr;
158
    uint32_t ct32;
159
    uint32_t mcsr;
160
    /* General purpose registers */
161
    uint32_t gprg[6];
162
    /* Exceptions */
163
    uint32_t feen;
164
    uint32_t fest;
165
    uint32_t fema;
166
    uint32_t fecl;
167
    uint32_t eeen;
168
    uint32_t eest;
169
    uint32_t eecl;
170
    uint32_t eeint;
171
    uint32_t eemck0;
172
    uint32_t eemck1;
173
    /* Error diagnostic */
174
} XCSR;
175

176
static void PPC_XCSR_writeb (void *opaque,
177
                             target_phys_addr_t addr, uint32_t value)
178
{
179
    printf("%s: 0x" TARGET_FMT_plx " => 0x%08" PRIx32 "\n", __func__, addr,
180
           value);
181
}
182

183
static void PPC_XCSR_writew (void *opaque,
184
                             target_phys_addr_t addr, uint32_t value)
185
{
186
    printf("%s: 0x" TARGET_FMT_plx " => 0x%08" PRIx32 "\n", __func__, addr,
187
           value);
188
}
189

190
static void PPC_XCSR_writel (void *opaque,
191
                             target_phys_addr_t addr, uint32_t value)
192
{
193
    printf("%s: 0x" TARGET_FMT_plx " => 0x%08" PRIx32 "\n", __func__, addr,
194
           value);
195
}
196

197
static uint32_t PPC_XCSR_readb (void *opaque, target_phys_addr_t addr)
198
{
199
    uint32_t retval = 0;
200

201
    printf("%s: 0x" TARGET_FMT_plx " <= %08" PRIx32 "\n", __func__, addr,
202
           retval);
203

204
    return retval;
205
}
206

207
static uint32_t PPC_XCSR_readw (void *opaque, target_phys_addr_t addr)
208
{
209
    uint32_t retval = 0;
210

211
    printf("%s: 0x" TARGET_FMT_plx " <= %08" PRIx32 "\n", __func__, addr,
212
           retval);
213

214
    return retval;
215
}
216

217
static uint32_t PPC_XCSR_readl (void *opaque, target_phys_addr_t addr)
218
{
219
    uint32_t retval = 0;
220

221
    printf("%s: 0x" TARGET_FMT_plx " <= %08" PRIx32 "\n", __func__, addr,
222
           retval);
223

224
    return retval;
225
}
226

227
static const MemoryRegionOps PPC_XCSR_ops = {
228
    .old_mmio = {
229
        .read = { PPC_XCSR_readb, PPC_XCSR_readw, PPC_XCSR_readl, },
230
        .write = { PPC_XCSR_writeb, PPC_XCSR_writew, PPC_XCSR_writel, },
231
    },
232
    .endianness = DEVICE_LITTLE_ENDIAN,
233
};
234

235
#endif
236

    
237
/* Fake super-io ports for PREP platform (Intel 82378ZB) */
238
typedef struct sysctrl_t {
239
    qemu_irq reset_irq;
240
    M48t59State *nvram;
241
    uint8_t state;
242
    uint8_t syscontrol;
243
    uint8_t fake_io[2];
244
    int contiguous_map;
245
    int endian;
246
} sysctrl_t;
247

    
248
enum {
249
    STATE_HARDFILE = 0x01,
250
};
251

    
252
static sysctrl_t *sysctrl;
253

    
254
static void PREP_io_write (void *opaque, uint32_t addr, uint32_t val)
255
{
256
    sysctrl_t *sysctrl = opaque;
257

    
258
    PPC_IO_DPRINTF("0x%08" PRIx32 " => 0x%02" PRIx32 "\n", addr - PPC_IO_BASE,
259
                   val);
260
    sysctrl->fake_io[addr - 0x0398] = val;
261
}
262

    
263
static uint32_t PREP_io_read (void *opaque, uint32_t addr)
264
{
265
    sysctrl_t *sysctrl = opaque;
266

    
267
    PPC_IO_DPRINTF("0x%08" PRIx32 " <= 0x%02" PRIx32 "\n", addr - PPC_IO_BASE,
268
                   sysctrl->fake_io[addr - 0x0398]);
269
    return sysctrl->fake_io[addr - 0x0398];
270
}
271

    
272
static void PREP_io_800_writeb (void *opaque, uint32_t addr, uint32_t val)
273
{
274
    sysctrl_t *sysctrl = opaque;
275

    
276
    PPC_IO_DPRINTF("0x%08" PRIx32 " => 0x%02" PRIx32 "\n",
277
                   addr - PPC_IO_BASE, val);
278
    switch (addr) {
279
    case 0x0092:
280
        /* Special port 92 */
281
        /* Check soft reset asked */
282
        if (val & 0x01) {
283
            qemu_irq_raise(sysctrl->reset_irq);
284
        } else {
285
            qemu_irq_lower(sysctrl->reset_irq);
286
        }
287
        /* Check LE mode */
288
        if (val & 0x02) {
289
            sysctrl->endian = 1;
290
        } else {
291
            sysctrl->endian = 0;
292
        }
293
        break;
294
    case 0x0800:
295
        /* Motorola CPU configuration register : read-only */
296
        break;
297
    case 0x0802:
298
        /* Motorola base module feature register : read-only */
299
        break;
300
    case 0x0803:
301
        /* Motorola base module status register : read-only */
302
        break;
303
    case 0x0808:
304
        /* Hardfile light register */
305
        if (val & 1)
306
            sysctrl->state |= STATE_HARDFILE;
307
        else
308
            sysctrl->state &= ~STATE_HARDFILE;
309
        break;
310
    case 0x0810:
311
        /* Password protect 1 register */
312
        if (sysctrl->nvram != NULL)
313
            m48t59_toggle_lock(sysctrl->nvram, 1);
314
        break;
315
    case 0x0812:
316
        /* Password protect 2 register */
317
        if (sysctrl->nvram != NULL)
318
            m48t59_toggle_lock(sysctrl->nvram, 2);
319
        break;
320
    case 0x0814:
321
        /* L2 invalidate register */
322
        //        tlb_flush(first_cpu, 1);
323
        break;
324
    case 0x081C:
325
        /* system control register */
326
        sysctrl->syscontrol = val & 0x0F;
327
        break;
328
    case 0x0850:
329
        /* I/O map type register */
330
        sysctrl->contiguous_map = val & 0x01;
331
        break;
332
    default:
333
        printf("ERROR: unaffected IO port write: %04" PRIx32
334
               " => %02" PRIx32"\n", addr, val);
335
        break;
336
    }
337
}
338

    
339
static uint32_t PREP_io_800_readb (void *opaque, uint32_t addr)
340
{
341
    sysctrl_t *sysctrl = opaque;
342
    uint32_t retval = 0xFF;
343

    
344
    switch (addr) {
345
    case 0x0092:
346
        /* Special port 92 */
347
        retval = 0x00;
348
        break;
349
    case 0x0800:
350
        /* Motorola CPU configuration register */
351
        retval = 0xEF; /* MPC750 */
352
        break;
353
    case 0x0802:
354
        /* Motorola Base module feature register */
355
        retval = 0xAD; /* No ESCC, PMC slot neither ethernet */
356
        break;
357
    case 0x0803:
358
        /* Motorola base module status register */
359
        retval = 0xE0; /* Standard MPC750 */
360
        break;
361
    case 0x080C:
362
        /* Equipment present register:
363
         *  no L2 cache
364
         *  no upgrade processor
365
         *  no cards in PCI slots
366
         *  SCSI fuse is bad
367
         */
368
        retval = 0x3C;
369
        break;
370
    case 0x0810:
371
        /* Motorola base module extended feature register */
372
        retval = 0x39; /* No USB, CF and PCI bridge. NVRAM present */
373
        break;
374
    case 0x0814:
375
        /* L2 invalidate: don't care */
376
        break;
377
    case 0x0818:
378
        /* Keylock */
379
        retval = 0x00;
380
        break;
381
    case 0x081C:
382
        /* system control register
383
         * 7 - 6 / 1 - 0: L2 cache enable
384
         */
385
        retval = sysctrl->syscontrol;
386
        break;
387
    case 0x0823:
388
        /* */
389
        retval = 0x03; /* no L2 cache */
390
        break;
391
    case 0x0850:
392
        /* I/O map type register */
393
        retval = sysctrl->contiguous_map;
394
        break;
395
    default:
396
        printf("ERROR: unaffected IO port: %04" PRIx32 " read\n", addr);
397
        break;
398
    }
399
    PPC_IO_DPRINTF("0x%08" PRIx32 " <= 0x%02" PRIx32 "\n",
400
                   addr - PPC_IO_BASE, retval);
401

    
402
    return retval;
403
}
404

    
405
static inline target_phys_addr_t prep_IO_address(sysctrl_t *sysctrl,
406
                                                 target_phys_addr_t addr)
407
{
408
    if (sysctrl->contiguous_map == 0) {
409
        /* 64 KB contiguous space for IOs */
410
        addr &= 0xFFFF;
411
    } else {
412
        /* 8 MB non-contiguous space for IOs */
413
        addr = (addr & 0x1F) | ((addr & 0x007FFF000) >> 7);
414
    }
415

    
416
    return addr;
417
}
418

    
419
static void PPC_prep_io_writeb (void *opaque, target_phys_addr_t addr,
420
                                uint32_t value)
421
{
422
    sysctrl_t *sysctrl = opaque;
423

    
424
    addr = prep_IO_address(sysctrl, addr);
425
    cpu_outb(addr, value);
426
}
427

    
428
static uint32_t PPC_prep_io_readb (void *opaque, target_phys_addr_t addr)
429
{
430
    sysctrl_t *sysctrl = opaque;
431
    uint32_t ret;
432

    
433
    addr = prep_IO_address(sysctrl, addr);
434
    ret = cpu_inb(addr);
435

    
436
    return ret;
437
}
438

    
439
static void PPC_prep_io_writew (void *opaque, target_phys_addr_t addr,
440
                                uint32_t value)
441
{
442
    sysctrl_t *sysctrl = opaque;
443

    
444
    addr = prep_IO_address(sysctrl, addr);
445
    PPC_IO_DPRINTF("0x" TARGET_FMT_plx " => 0x%08" PRIx32 "\n", addr, value);
446
    cpu_outw(addr, value);
447
}
448

    
449
static uint32_t PPC_prep_io_readw (void *opaque, target_phys_addr_t addr)
450
{
451
    sysctrl_t *sysctrl = opaque;
452
    uint32_t ret;
453

    
454
    addr = prep_IO_address(sysctrl, addr);
455
    ret = cpu_inw(addr);
456
    PPC_IO_DPRINTF("0x" TARGET_FMT_plx " <= 0x%08" PRIx32 "\n", addr, ret);
457

    
458
    return ret;
459
}
460

    
461
static void PPC_prep_io_writel (void *opaque, target_phys_addr_t addr,
462
                                uint32_t value)
463
{
464
    sysctrl_t *sysctrl = opaque;
465

    
466
    addr = prep_IO_address(sysctrl, addr);
467
    PPC_IO_DPRINTF("0x" TARGET_FMT_plx " => 0x%08" PRIx32 "\n", addr, value);
468
    cpu_outl(addr, value);
469
}
470

    
471
static uint32_t PPC_prep_io_readl (void *opaque, target_phys_addr_t addr)
472
{
473
    sysctrl_t *sysctrl = opaque;
474
    uint32_t ret;
475

    
476
    addr = prep_IO_address(sysctrl, addr);
477
    ret = cpu_inl(addr);
478
    PPC_IO_DPRINTF("0x" TARGET_FMT_plx " <= 0x%08" PRIx32 "\n", addr, ret);
479

    
480
    return ret;
481
}
482

    
483
static const MemoryRegionOps PPC_prep_io_ops = {
484
    .old_mmio = {
485
        .read = { PPC_prep_io_readb, PPC_prep_io_readw, PPC_prep_io_readl },
486
        .write = { PPC_prep_io_writeb, PPC_prep_io_writew, PPC_prep_io_writel },
487
    },
488
    .endianness = DEVICE_LITTLE_ENDIAN,
489
};
490

    
491
#define NVRAM_SIZE        0x2000
492

    
493
static void cpu_request_exit(void *opaque, int irq, int level)
494
{
495
    CPUState *env = cpu_single_env;
496

    
497
    if (env && level) {
498
        cpu_exit(env);
499
    }
500
}
501

    
502
/* PowerPC PREP hardware initialisation */
503
static void ppc_prep_init (ram_addr_t ram_size,
504
                           const char *boot_device,
505
                           const char *kernel_filename,
506
                           const char *kernel_cmdline,
507
                           const char *initrd_filename,
508
                           const char *cpu_model)
509
{
510
    MemoryRegion *sysmem = get_system_memory();
511
    CPUState *env = NULL;
512
    char *filename;
513
    nvram_t nvram;
514
    M48t59State *m48t59;
515
    MemoryRegion *PPC_io_memory = g_new(MemoryRegion, 1);
516
    MemoryRegion *intack = g_new(MemoryRegion, 1);
517
#if 0
518
    MemoryRegion *xcsr = g_new(MemoryRegion, 1);
519
#endif
520
    int linux_boot, i, nb_nics1, bios_size;
521
    MemoryRegion *ram = g_new(MemoryRegion, 1);
522
    MemoryRegion *bios = g_new(MemoryRegion, 1);
523
    uint32_t kernel_base, initrd_base;
524
    long kernel_size, initrd_size;
525
    PCIBus *pci_bus;
526
    qemu_irq *i8259;
527
    qemu_irq *cpu_exit_irq;
528
    int ppc_boot_device;
529
    DriveInfo *hd[MAX_IDE_BUS * MAX_IDE_DEVS];
530
    DriveInfo *fd[MAX_FD];
531

    
532
    sysctrl = g_malloc0(sizeof(sysctrl_t));
533

    
534
    linux_boot = (kernel_filename != NULL);
535

    
536
    /* init CPUs */
537
    if (cpu_model == NULL)
538
        cpu_model = "602";
539
    for (i = 0; i < smp_cpus; i++) {
540
        env = cpu_init(cpu_model);
541
        if (!env) {
542
            fprintf(stderr, "Unable to find PowerPC CPU definition\n");
543
            exit(1);
544
        }
545
        if (env->flags & POWERPC_FLAG_RTC_CLK) {
546
            /* POWER / PowerPC 601 RTC clock frequency is 7.8125 MHz */
547
            cpu_ppc_tb_init(env, 7812500UL);
548
        } else {
549
            /* Set time-base frequency to 100 Mhz */
550
            cpu_ppc_tb_init(env, 100UL * 1000UL * 1000UL);
551
        }
552
        qemu_register_reset((QEMUResetHandler*)&cpu_reset, env);
553
    }
554

    
555
    /* allocate RAM */
556
    memory_region_init_ram(ram, NULL, "ppc_prep.ram", ram_size);
557
    memory_region_add_subregion(sysmem, 0, ram);
558

    
559
    /* allocate and load BIOS */
560
    memory_region_init_ram(bios, NULL, "ppc_prep.bios", BIOS_SIZE);
561
    if (bios_name == NULL)
562
        bios_name = BIOS_FILENAME;
563
    filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name);
564
    if (filename) {
565
        bios_size = get_image_size(filename);
566
    } else {
567
        bios_size = -1;
568
    }
569
    if (bios_size > 0 && bios_size <= BIOS_SIZE) {
570
        target_phys_addr_t bios_addr;
571
        bios_size = (bios_size + 0xfff) & ~0xfff;
572
        bios_addr = (uint32_t)(-bios_size);
573
        memory_region_set_readonly(bios, true);
574
        memory_region_add_subregion(sysmem, bios_addr, bios);
575
        bios_size = load_image_targphys(filename, bios_addr, bios_size);
576
    }
577
    if (bios_size < 0 || bios_size > BIOS_SIZE) {
578
        hw_error("qemu: could not load PPC PREP bios '%s'\n", bios_name);
579
    }
580
    if (filename) {
581
        g_free(filename);
582
    }
583

    
584
    if (linux_boot) {
585
        kernel_base = KERNEL_LOAD_ADDR;
586
        /* now we can load the kernel */
587
        kernel_size = load_image_targphys(kernel_filename, kernel_base,
588
                                          ram_size - kernel_base);
589
        if (kernel_size < 0) {
590
            hw_error("qemu: could not load kernel '%s'\n", kernel_filename);
591
            exit(1);
592
        }
593
        /* load initrd */
594
        if (initrd_filename) {
595
            initrd_base = INITRD_LOAD_ADDR;
596
            initrd_size = load_image_targphys(initrd_filename, initrd_base,
597
                                              ram_size - initrd_base);
598
            if (initrd_size < 0) {
599
                hw_error("qemu: could not load initial ram disk '%s'\n",
600
                          initrd_filename);
601
            }
602
        } else {
603
            initrd_base = 0;
604
            initrd_size = 0;
605
        }
606
        ppc_boot_device = 'm';
607
    } else {
608
        kernel_base = 0;
609
        kernel_size = 0;
610
        initrd_base = 0;
611
        initrd_size = 0;
612
        ppc_boot_device = '\0';
613
        /* For now, OHW cannot boot from the network. */
614
        for (i = 0; boot_device[i] != '\0'; i++) {
615
            if (boot_device[i] >= 'a' && boot_device[i] <= 'f') {
616
                ppc_boot_device = boot_device[i];
617
                break;
618
            }
619
        }
620
        if (ppc_boot_device == '\0') {
621
            fprintf(stderr, "No valid boot device for Mac99 machine\n");
622
            exit(1);
623
        }
624
    }
625

    
626
    isa_mem_base = 0xc0000000;
627
    if (PPC_INPUT(env) != PPC_FLAGS_INPUT_6xx) {
628
        hw_error("Only 6xx bus is supported on PREP machine\n");
629
    }
630
    /* Hmm, prep has no pci-isa bridge ??? */
631
    isa_bus_new(NULL, get_system_io());
632
    i8259 = i8259_init(first_cpu->irq_inputs[PPC6xx_INPUT_INT]);
633
    pci_bus = pci_prep_init(i8259, get_system_memory(), get_system_io());
634
    isa_bus_irqs(i8259);
635
    //    pci_bus = i440fx_init();
636
    /* Register 8 MB of ISA IO space (needed for non-contiguous map) */
637
    memory_region_init_io(PPC_io_memory, &PPC_prep_io_ops, sysctrl,
638
                          "ppc-io", 0x00800000);
639
    memory_region_add_subregion(sysmem, 0x80000000, PPC_io_memory);
640

    
641
    /* init basic PC hardware */
642
    pci_vga_init(pci_bus);
643
    //    openpic = openpic_init(0x00000000, 0xF0000000, 1);
644
    //    pit = pit_init(0x40, 0);
645
    rtc_init(2000, NULL);
646

    
647
    if (serial_hds[0])
648
        serial_isa_init(0, serial_hds[0]);
649
    nb_nics1 = nb_nics;
650
    if (nb_nics1 > NE2000_NB_MAX)
651
        nb_nics1 = NE2000_NB_MAX;
652
    for(i = 0; i < nb_nics1; i++) {
653
        if (nd_table[i].model == NULL) {
654
            nd_table[i].model = g_strdup("ne2k_isa");
655
        }
656
        if (strcmp(nd_table[i].model, "ne2k_isa") == 0) {
657
            isa_ne2000_init(ne2000_io[i], ne2000_irq[i], &nd_table[i]);
658
        } else {
659
            pci_nic_init_nofail(&nd_table[i], "ne2k_pci", NULL);
660
        }
661
    }
662

    
663
    ide_drive_get(hd, MAX_IDE_BUS);
664
    for(i = 0; i < MAX_IDE_BUS; i++) {
665
        isa_ide_init(ide_iobase[i], ide_iobase2[i], ide_irq[i],
666
                     hd[2 * i],
667
                     hd[2 * i + 1]);
668
    }
669
    isa_create_simple("i8042");
670

    
671
    cpu_exit_irq = qemu_allocate_irqs(cpu_request_exit, NULL, 1);
672
    DMA_init(1, cpu_exit_irq);
673

    
674
    //    SB16_init();
675

    
676
    for(i = 0; i < MAX_FD; i++) {
677
        fd[i] = drive_get(IF_FLOPPY, 0, i);
678
    }
679
    fdctrl_init_isa(fd);
680

    
681
    /* Register speaker port */
682
    register_ioport_read(0x61, 1, 1, speaker_ioport_read, NULL);
683
    register_ioport_write(0x61, 1, 1, speaker_ioport_write, NULL);
684
    /* Register fake IO ports for PREP */
685
    sysctrl->reset_irq = first_cpu->irq_inputs[PPC6xx_INPUT_HRESET];
686
    register_ioport_read(0x398, 2, 1, &PREP_io_read, sysctrl);
687
    register_ioport_write(0x398, 2, 1, &PREP_io_write, sysctrl);
688
    /* System control ports */
689
    register_ioport_read(0x0092, 0x01, 1, &PREP_io_800_readb, sysctrl);
690
    register_ioport_write(0x0092, 0x01, 1, &PREP_io_800_writeb, sysctrl);
691
    register_ioport_read(0x0800, 0x52, 1, &PREP_io_800_readb, sysctrl);
692
    register_ioport_write(0x0800, 0x52, 1, &PREP_io_800_writeb, sysctrl);
693
    /* PCI intack location */
694
    memory_region_init_io(intack, &PPC_intack_ops, NULL, "ppc-intack", 4);
695
    memory_region_add_subregion(sysmem, 0xBFFFFFF0, intack);
696
    /* PowerPC control and status register group */
697
#if 0
698
    memory_region_init_io(xcsr, &PPC_XCSR_ops, NULL, "ppc-xcsr", 0x1000);
699
    memory_region_add_subregion(sysmem, 0xFEFF0000, xcsr);
700
#endif
701

    
702
    if (usb_enabled) {
703
        usb_ohci_init_pci(pci_bus, -1);
704
    }
705

    
706
    m48t59 = m48t59_init(i8259[8], 0, 0x0074, NVRAM_SIZE, 59);
707
    if (m48t59 == NULL)
708
        return;
709
    sysctrl->nvram = m48t59;
710

    
711
    /* Initialise NVRAM */
712
    nvram.opaque = m48t59;
713
    nvram.read_fn = &m48t59_read;
714
    nvram.write_fn = &m48t59_write;
715
    PPC_NVRAM_set_params(&nvram, NVRAM_SIZE, "PREP", ram_size, ppc_boot_device,
716
                         kernel_base, kernel_size,
717
                         kernel_cmdline,
718
                         initrd_base, initrd_size,
719
                         /* XXX: need an option to load a NVRAM image */
720
                         0,
721
                         graphic_width, graphic_height, graphic_depth);
722

    
723
    /* Special port to get debug messages from Open-Firmware */
724
    register_ioport_write(0x0F00, 4, 1, &PPC_debug_write, NULL);
725
}
726

    
727
static QEMUMachine prep_machine = {
728
    .name = "prep",
729
    .desc = "PowerPC PREP platform",
730
    .init = ppc_prep_init,
731
    .max_cpus = MAX_CPUS,
732
};
733

    
734
static void prep_machine_init(void)
735
{
736
    qemu_register_machine(&prep_machine);
737
}
738

    
739
machine_init(prep_machine_init);