prep.c 20.5 KB
Newer Older
1
/*
2
 * QEMU PPC PREP hardware System Emulator
3
 *
4
 * Copyright (c) 2003-2007 Jocelyn Mayer
5
 *
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
23
 */
24
#include "hw/hw.h"
P
Paolo Bonzini 已提交
25 26 27 28
#include "hw/timer/m48t59.h"
#include "hw/i386/pc.h"
#include "hw/char/serial.h"
#include "hw/block/fdc.h"
P
Paolo Bonzini 已提交
29
#include "net/net.h"
30
#include "sysemu/sysemu.h"
P
Paolo Bonzini 已提交
31
#include "hw/isa/isa.h"
32 33
#include "hw/pci/pci.h"
#include "hw/pci/pci_host.h"
P
Paolo Bonzini 已提交
34
#include "hw/ppc/ppc.h"
35
#include "hw/boards.h"
36
#include "qemu/log.h"
37 38
#include "hw/ide.h"
#include "hw/loader.h"
P
Paolo Bonzini 已提交
39 40
#include "hw/timer/mc146818rtc.h"
#include "hw/isa/pc87312.h"
41 42
#include "sysemu/blockdev.h"
#include "sysemu/arch_init.h"
43
#include "sysemu/qtest.h"
44
#include "exec/address-spaces.h"
45
#include "elf.h"
46

47
//#define HARD_DEBUG_PPC_IO
48
//#define DEBUG_PPC_IO
49

50 51 52
/* SMP is not enabled, for now */
#define MAX_CPUS 1

T
ths 已提交
53 54
#define MAX_IDE_BUS 2

55
#define BIOS_SIZE (1024 * 1024)
B
bellard 已提交
56 57 58
#define BIOS_FILENAME "ppc_rom.bin"
#define KERNEL_LOAD_ADDR 0x01000000
#define INITRD_LOAD_ADDR 0x01800000
B
bellard 已提交
59

60 61 62 63 64
#if defined (HARD_DEBUG_PPC_IO) && !defined (DEBUG_PPC_IO)
#define DEBUG_PPC_IO
#endif

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

B
bellard 已提交
80
/* Constants for devices init */
81 82 83 84 85 86 87 88
static const int ide_iobase[2] = { 0x1f0, 0x170 };
static const int ide_iobase2[2] = { 0x3f6, 0x376 };
static const int ide_irq[2] = { 13, 13 };

#define NE2000_NB_MAX 6

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

B
bellard 已提交
90
/* ISA IO ports bridge */
91 92
#define PPC_IO_BASE 0x80000000

B
bellard 已提交
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
/* PowerPC control and status registers */
#if 0 // Not used
static struct {
    /* IDs */
    uint32_t veni_devi;
    uint32_t revi;
    /* Control and status */
    uint32_t gcsr;
    uint32_t xcfr;
    uint32_t ct32;
    uint32_t mcsr;
    /* General purpose registers */
    uint32_t gprg[6];
    /* Exceptions */
    uint32_t feen;
    uint32_t fest;
    uint32_t fema;
    uint32_t fecl;
    uint32_t eeen;
    uint32_t eest;
    uint32_t eecl;
    uint32_t eeint;
    uint32_t eemck0;
    uint32_t eemck1;
    /* Error diagnostic */
} XCSR;

120
static void PPC_XCSR_writeb (void *opaque,
A
Avi Kivity 已提交
121
                             hwaddr addr, uint32_t value)
B
bellard 已提交
122
{
123 124
    printf("%s: 0x" TARGET_FMT_plx " => 0x%08" PRIx32 "\n", __func__, addr,
           value);
B
bellard 已提交
125 126
}

127
static void PPC_XCSR_writew (void *opaque,
A
Avi Kivity 已提交
128
                             hwaddr addr, uint32_t value)
129
{
130 131
    printf("%s: 0x" TARGET_FMT_plx " => 0x%08" PRIx32 "\n", __func__, addr,
           value);
132 133
}

134
static void PPC_XCSR_writel (void *opaque,
A
Avi Kivity 已提交
135
                             hwaddr addr, uint32_t value)
136
{
137 138
    printf("%s: 0x" TARGET_FMT_plx " => 0x%08" PRIx32 "\n", __func__, addr,
           value);
139 140
}

A
Avi Kivity 已提交
141
static uint32_t PPC_XCSR_readb (void *opaque, hwaddr addr)
B
bellard 已提交
142 143
{
    uint32_t retval = 0;
144

145 146
    printf("%s: 0x" TARGET_FMT_plx " <= %08" PRIx32 "\n", __func__, addr,
           retval);
147

B
bellard 已提交
148 149 150
    return retval;
}

A
Avi Kivity 已提交
151
static uint32_t PPC_XCSR_readw (void *opaque, hwaddr addr)
152
{
B
bellard 已提交
153 154
    uint32_t retval = 0;

155 156
    printf("%s: 0x" TARGET_FMT_plx " <= %08" PRIx32 "\n", __func__, addr,
           retval);
B
bellard 已提交
157 158

    return retval;
159 160
}

A
Avi Kivity 已提交
161
static uint32_t PPC_XCSR_readl (void *opaque, hwaddr addr)
162 163 164
{
    uint32_t retval = 0;

165 166
    printf("%s: 0x" TARGET_FMT_plx " <= %08" PRIx32 "\n", __func__, addr,
           retval);
167 168 169 170

    return retval;
}

A
Avi Kivity 已提交
171 172 173 174 175 176
static const MemoryRegionOps PPC_XCSR_ops = {
    .old_mmio = {
        .read = { PPC_XCSR_readb, PPC_XCSR_readw, PPC_XCSR_readl, },
        .write = { PPC_XCSR_writeb, PPC_XCSR_writew, PPC_XCSR_writel, },
    },
    .endianness = DEVICE_LITTLE_ENDIAN,
177 178
};

B
bellard 已提交
179
#endif
180

B
bellard 已提交
181
/* Fake super-io ports for PREP platform (Intel 82378ZB) */
A
Anthony Liguori 已提交
182
typedef struct sysctrl_t {
J
j_mayer 已提交
183
    qemu_irq reset_irq;
184
    M48t59State *nvram;
B
bellard 已提交
185 186
    uint8_t state;
    uint8_t syscontrol;
B
bellard 已提交
187
    int contiguous_map;
B
bellard 已提交
188
    int endian;
A
Anthony Liguori 已提交
189
} sysctrl_t;
190

B
bellard 已提交
191 192
enum {
    STATE_HARDFILE = 0x01,
193 194
};

A
Anthony Liguori 已提交
195
static sysctrl_t *sysctrl;
196

197
static void PREP_io_800_writeb (void *opaque, uint32_t addr, uint32_t val)
198
{
A
Anthony Liguori 已提交
199
    sysctrl_t *sysctrl = opaque;
B
bellard 已提交
200

201 202
    PPC_IO_DPRINTF("0x%08" PRIx32 " => 0x%02" PRIx32 "\n",
                   addr - PPC_IO_BASE, val);
203 204 205 206
    switch (addr) {
    case 0x0092:
        /* Special port 92 */
        /* Check soft reset asked */
B
bellard 已提交
207
        if (val & 0x01) {
J
j_mayer 已提交
208 209 210
            qemu_irq_raise(sysctrl->reset_irq);
        } else {
            qemu_irq_lower(sysctrl->reset_irq);
211 212
        }
        /* Check LE mode */
B
bellard 已提交
213
        if (val & 0x02) {
B
bellard 已提交
214 215 216
            sysctrl->endian = 1;
        } else {
            sysctrl->endian = 0;
217 218
        }
        break;
B
bellard 已提交
219 220 221 222 223 224 225 226 227
    case 0x0800:
        /* Motorola CPU configuration register : read-only */
        break;
    case 0x0802:
        /* Motorola base module feature register : read-only */
        break;
    case 0x0803:
        /* Motorola base module status register : read-only */
        break;
228
    case 0x0808:
B
bellard 已提交
229 230 231 232 233
        /* Hardfile light register */
        if (val & 1)
            sysctrl->state |= STATE_HARDFILE;
        else
            sysctrl->state &= ~STATE_HARDFILE;
234 235 236
        break;
    case 0x0810:
        /* Password protect 1 register */
B
bellard 已提交
237 238
        if (sysctrl->nvram != NULL)
            m48t59_toggle_lock(sysctrl->nvram, 1);
239 240 241
        break;
    case 0x0812:
        /* Password protect 2 register */
B
bellard 已提交
242 243
        if (sysctrl->nvram != NULL)
            m48t59_toggle_lock(sysctrl->nvram, 2);
244 245
        break;
    case 0x0814:
B
bellard 已提交
246
        /* L2 invalidate register */
B
bellard 已提交
247
        //        tlb_flush(first_cpu, 1);
248 249 250
        break;
    case 0x081C:
        /* system control register */
B
bellard 已提交
251
        sysctrl->syscontrol = val & 0x0F;
252 253 254
        break;
    case 0x0850:
        /* I/O map type register */
B
bellard 已提交
255
        sysctrl->contiguous_map = val & 0x01;
256 257
        break;
    default:
258 259
        printf("ERROR: unaffected IO port write: %04" PRIx32
               " => %02" PRIx32"\n", addr, val);
260 261 262 263
        break;
    }
}

264
static uint32_t PREP_io_800_readb (void *opaque, uint32_t addr)
265
{
A
Anthony Liguori 已提交
266
    sysctrl_t *sysctrl = opaque;
267 268 269 270 271
    uint32_t retval = 0xFF;

    switch (addr) {
    case 0x0092:
        /* Special port 92 */
272
        retval = sysctrl->endian << 1;
B
bellard 已提交
273 274 275 276 277 278 279 280 281 282 283 284
        break;
    case 0x0800:
        /* Motorola CPU configuration register */
        retval = 0xEF; /* MPC750 */
        break;
    case 0x0802:
        /* Motorola Base module feature register */
        retval = 0xAD; /* No ESCC, PMC slot neither ethernet */
        break;
    case 0x0803:
        /* Motorola base module status register */
        retval = 0xE0; /* Standard MPC750 */
285 286 287 288 289 290 291 292
        break;
    case 0x080C:
        /* Equipment present register:
         *  no L2 cache
         *  no upgrade processor
         *  no cards in PCI slots
         *  SCSI fuse is bad
         */
B
bellard 已提交
293 294 295 296 297
        retval = 0x3C;
        break;
    case 0x0810:
        /* Motorola base module extended feature register */
        retval = 0x39; /* No USB, CF and PCI bridge. NVRAM present */
298
        break;
B
bellard 已提交
299 300 301
    case 0x0814:
        /* L2 invalidate: don't care */
        break;
302 303 304 305 306 307 308 309
    case 0x0818:
        /* Keylock */
        retval = 0x00;
        break;
    case 0x081C:
        /* system control register
         * 7 - 6 / 1 - 0: L2 cache enable
         */
B
bellard 已提交
310
        retval = sysctrl->syscontrol;
311 312 313 314 315 316 317
        break;
    case 0x0823:
        /* */
        retval = 0x03; /* no L2 cache */
        break;
    case 0x0850:
        /* I/O map type register */
B
bellard 已提交
318
        retval = sysctrl->contiguous_map;
319 320
        break;
    default:
321
        printf("ERROR: unaffected IO port: %04" PRIx32 " read\n", addr);
322 323
        break;
    }
324 325
    PPC_IO_DPRINTF("0x%08" PRIx32 " <= 0x%02" PRIx32 "\n",
                   addr - PPC_IO_BASE, retval);
326 327 328 329

    return retval;
}

A
Avi Kivity 已提交
330 331
static inline hwaddr prep_IO_address(sysctrl_t *sysctrl,
                                                 hwaddr addr)
B
bellard 已提交
332 333 334 335 336 337 338 339 340 341 342 343
{
    if (sysctrl->contiguous_map == 0) {
        /* 64 KB contiguous space for IOs */
        addr &= 0xFFFF;
    } else {
        /* 8 MB non-contiguous space for IOs */
        addr = (addr & 0x1F) | ((addr & 0x007FFF000) >> 7);
    }

    return addr;
}

A
Avi Kivity 已提交
344
static void PPC_prep_io_writeb (void *opaque, hwaddr addr,
B
bellard 已提交
345 346
                                uint32_t value)
{
A
Anthony Liguori 已提交
347
    sysctrl_t *sysctrl = opaque;
B
bellard 已提交
348 349

    addr = prep_IO_address(sysctrl, addr);
350
    cpu_outb(addr, value);
B
bellard 已提交
351 352
}

A
Avi Kivity 已提交
353
static uint32_t PPC_prep_io_readb (void *opaque, hwaddr addr)
B
bellard 已提交
354
{
A
Anthony Liguori 已提交
355
    sysctrl_t *sysctrl = opaque;
B
bellard 已提交
356 357 358
    uint32_t ret;

    addr = prep_IO_address(sysctrl, addr);
359
    ret = cpu_inb(addr);
B
bellard 已提交
360 361 362 363

    return ret;
}

A
Avi Kivity 已提交
364
static void PPC_prep_io_writew (void *opaque, hwaddr addr,
B
bellard 已提交
365 366
                                uint32_t value)
{
A
Anthony Liguori 已提交
367
    sysctrl_t *sysctrl = opaque;
B
bellard 已提交
368 369

    addr = prep_IO_address(sysctrl, addr);
370
    PPC_IO_DPRINTF("0x" TARGET_FMT_plx " => 0x%08" PRIx32 "\n", addr, value);
371
    cpu_outw(addr, value);
B
bellard 已提交
372 373
}

A
Avi Kivity 已提交
374
static uint32_t PPC_prep_io_readw (void *opaque, hwaddr addr)
B
bellard 已提交
375
{
A
Anthony Liguori 已提交
376
    sysctrl_t *sysctrl = opaque;
B
bellard 已提交
377 378 379
    uint32_t ret;

    addr = prep_IO_address(sysctrl, addr);
380
    ret = cpu_inw(addr);
381
    PPC_IO_DPRINTF("0x" TARGET_FMT_plx " <= 0x%08" PRIx32 "\n", addr, ret);
B
bellard 已提交
382 383 384 385

    return ret;
}

A
Avi Kivity 已提交
386
static void PPC_prep_io_writel (void *opaque, hwaddr addr,
B
bellard 已提交
387 388
                                uint32_t value)
{
A
Anthony Liguori 已提交
389
    sysctrl_t *sysctrl = opaque;
B
bellard 已提交
390 391

    addr = prep_IO_address(sysctrl, addr);
392
    PPC_IO_DPRINTF("0x" TARGET_FMT_plx " => 0x%08" PRIx32 "\n", addr, value);
393
    cpu_outl(addr, value);
B
bellard 已提交
394 395
}

A
Avi Kivity 已提交
396
static uint32_t PPC_prep_io_readl (void *opaque, hwaddr addr)
B
bellard 已提交
397
{
A
Anthony Liguori 已提交
398
    sysctrl_t *sysctrl = opaque;
B
bellard 已提交
399 400 401
    uint32_t ret;

    addr = prep_IO_address(sysctrl, addr);
402
    ret = cpu_inl(addr);
403
    PPC_IO_DPRINTF("0x" TARGET_FMT_plx " <= 0x%08" PRIx32 "\n", addr, ret);
B
bellard 已提交
404 405 406 407

    return ret;
}

A
Avi Kivity 已提交
408 409 410 411 412 413
static const MemoryRegionOps PPC_prep_io_ops = {
    .old_mmio = {
        .read = { PPC_prep_io_readb, PPC_prep_io_readw, PPC_prep_io_readl },
        .write = { PPC_prep_io_writeb, PPC_prep_io_writew, PPC_prep_io_writel },
    },
    .endianness = DEVICE_LITTLE_ENDIAN,
B
bellard 已提交
414 415
};

B
bellard 已提交
416
#define NVRAM_SIZE        0x2000
417

B
Blue Swirl 已提交
418 419
static void cpu_request_exit(void *opaque, int irq, int level)
{
420
    CPUState *cpu = current_cpu;
B
Blue Swirl 已提交
421

422 423
    if (cpu && level) {
        cpu_exit(cpu);
B
Blue Swirl 已提交
424 425 426
    }
}

427 428
static void ppc_prep_reset(void *opaque)
{
429
    PowerPCCPU *cpu = opaque;
430

431
    cpu_reset(CPU(cpu));
F
Fabien Chouteau 已提交
432 433 434

    /* Reset address */
    cpu->env.nip = 0xfffffffc;
435 436
}

J
Jan Kiszka 已提交
437 438 439 440 441 442 443 444 445 446
static const MemoryRegionPortio prep_portio_list[] = {
    /* System control ports */
    { 0x0092, 1, 1, .read = PREP_io_800_readb, .write = PREP_io_800_writeb, },
    { 0x0800, 0x52, 1,
      .read = PREP_io_800_readb, .write = PREP_io_800_writeb, },
    /* Special port to get debug messages from Open-Firmware */
    { 0x0F00, 4, 1, .write = PPC_debug_write, },
    PORTIO_END_OF_LIST(),
};

447
/* PowerPC PREP hardware initialisation */
448
static void ppc_prep_init(QEMUMachineInitArgs *args)
449
{
450 451 452 453 454 455
    ram_addr_t ram_size = args->ram_size;
    const char *cpu_model = args->cpu_model;
    const char *kernel_filename = args->kernel_filename;
    const char *kernel_cmdline = args->kernel_cmdline;
    const char *initrd_filename = args->initrd_filename;
    const char *boot_device = args->boot_device;
A
Avi Kivity 已提交
456
    MemoryRegion *sysmem = get_system_memory();
457
    PowerPCCPU *cpu = NULL;
A
Andreas Färber 已提交
458
    CPUPPCState *env = NULL;
P
Paul Brook 已提交
459
    char *filename;
A
Anthony Liguori 已提交
460
    nvram_t nvram;
461
    M48t59State *m48t59;
A
Avi Kivity 已提交
462
    MemoryRegion *PPC_io_memory = g_new(MemoryRegion, 1);
J
Jan Kiszka 已提交
463
    PortioList *port_list = g_new(PortioList, 1);
A
Avi Kivity 已提交
464 465 466
#if 0
    MemoryRegion *xcsr = g_new(MemoryRegion, 1);
#endif
B
bellard 已提交
467
    int linux_boot, i, nb_nics1, bios_size;
A
Avi Kivity 已提交
468 469
    MemoryRegion *ram = g_new(MemoryRegion, 1);
    MemoryRegion *bios = g_new(MemoryRegion, 1);
470 471
    uint32_t kernel_base, initrd_base;
    long kernel_size, initrd_size;
472 473
    DeviceState *dev;
    PCIHostState *pcihost;
B
bellard 已提交
474
    PCIBus *pci_bus;
475
    PCIDevice *pci;
476
    ISABus *isa_bus;
477
    ISADevice *isa;
B
Blue Swirl 已提交
478
    qemu_irq *cpu_exit_irq;
479
    int ppc_boot_device;
480
    DriveInfo *hd[MAX_IDE_BUS * MAX_IDE_DEVS];
B
bellard 已提交
481

482
    sysctrl = g_malloc0(sizeof(sysctrl_t));
483 484

    linux_boot = (kernel_filename != NULL);
J
j_mayer 已提交
485

B
bellard 已提交
486
    /* init CPUs */
487
    if (cpu_model == NULL)
G
Gerd Hoffmann 已提交
488
        cpu_model = "602";
489
    for (i = 0; i < smp_cpus; i++) {
490 491
        cpu = cpu_ppc_init(cpu_model);
        if (cpu == NULL) {
B
bellard 已提交
492 493 494
            fprintf(stderr, "Unable to find PowerPC CPU definition\n");
            exit(1);
        }
495 496
        env = &cpu->env;

497 498 499 500 501 502 503
        if (env->flags & POWERPC_FLAG_RTC_CLK) {
            /* POWER / PowerPC 601 RTC clock frequency is 7.8125 MHz */
            cpu_ppc_tb_init(env, 7812500UL);
        } else {
            /* Set time-base frequency to 100 Mhz */
            cpu_ppc_tb_init(env, 100UL * 1000UL * 1000UL);
        }
504
        qemu_register_reset(ppc_prep_reset, cpu);
505
    }
506 507

    /* allocate RAM */
508
    memory_region_init_ram(ram, NULL, "ppc_prep.ram", ram_size);
509
    vmstate_register_ram_global(ram);
A
Avi Kivity 已提交
510
    memory_region_add_subregion(sysmem, 0, ram);
B
blueswir1 已提交
511

B
bellard 已提交
512
    /* allocate and load BIOS */
513
    memory_region_init_ram(bios, NULL, "ppc_prep.bios", BIOS_SIZE);
514 515
    memory_region_set_readonly(bios, true);
    memory_region_add_subregion(sysmem, (uint32_t)(-BIOS_SIZE), bios);
516
    vmstate_register_ram_global(bios);
517 518
    if (bios_name == NULL)
        bios_name = BIOS_FILENAME;
P
Paul Brook 已提交
519 520
    filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name);
    if (filename) {
521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536
        bios_size = load_elf(filename, NULL, NULL, NULL,
                             NULL, NULL, 1, ELF_MACHINE, 0);
        if (bios_size < 0) {
            bios_size = get_image_size(filename);
            if (bios_size > 0 && bios_size <= BIOS_SIZE) {
                hwaddr bios_addr;
                bios_size = (bios_size + 0xfff) & ~0xfff;
                bios_addr = (uint32_t)(-bios_size);
                bios_size = load_image_targphys(filename, bios_addr, bios_size);
            }
            if (bios_size > BIOS_SIZE) {
                fprintf(stderr, "qemu: PReP bios '%s' is too large (0x%x)\n",
                        bios_name, bios_size);
                exit(1);
            }
        }
P
Paul Brook 已提交
537 538 539
    } else {
        bios_size = -1;
    }
540 541 542 543
    if (bios_size < 0 && !qtest_enabled()) {
        fprintf(stderr, "qemu: could not load PPC PReP bios '%s'\n",
                bios_name);
        exit(1);
P
Paul Brook 已提交
544 545
    }
    if (filename) {
546
        g_free(filename);
B
bellard 已提交
547
    }
548

549
    if (linux_boot) {
B
bellard 已提交
550
        kernel_base = KERNEL_LOAD_ADDR;
551
        /* now we can load the kernel */
552 553
        kernel_size = load_image_targphys(kernel_filename, kernel_base,
                                          ram_size - kernel_base);
B
bellard 已提交
554
        if (kernel_size < 0) {
P
Paul Brook 已提交
555
            hw_error("qemu: could not load kernel '%s'\n", kernel_filename);
556 557 558 559
            exit(1);
        }
        /* load initrd */
        if (initrd_filename) {
B
bellard 已提交
560
            initrd_base = INITRD_LOAD_ADDR;
561 562
            initrd_size = load_image_targphys(initrd_filename, initrd_base,
                                              ram_size - initrd_base);
563
            if (initrd_size < 0) {
P
Paul Brook 已提交
564
                hw_error("qemu: could not load initial ram disk '%s'\n",
J
j_mayer 已提交
565
                          initrd_filename);
566
            }
B
bellard 已提交
567 568 569
        } else {
            initrd_base = 0;
            initrd_size = 0;
570
        }
571
        ppc_boot_device = 'm';
572
    } else {
B
bellard 已提交
573 574 575 576
        kernel_base = 0;
        kernel_size = 0;
        initrd_base = 0;
        initrd_size = 0;
577 578
        ppc_boot_device = '\0';
        /* For now, OHW cannot boot from the network. */
J
j_mayer 已提交
579 580 581
        for (i = 0; boot_device[i] != '\0'; i++) {
            if (boot_device[i] >= 'a' && boot_device[i] <= 'f') {
                ppc_boot_device = boot_device[i];
582
                break;
J
j_mayer 已提交
583
            }
584 585 586 587 588
        }
        if (ppc_boot_device == '\0') {
            fprintf(stderr, "No valid boot device for Mac99 machine\n");
            exit(1);
        }
589 590
    }

591
    if (PPC_INPUT(env) != PPC_FLAGS_INPUT_6xx) {
P
Paul Brook 已提交
592
        hw_error("Only 6xx bus is supported on PREP machine\n");
593
    }
594 595

    dev = qdev_create(NULL, "raven-pcihost");
596
    pcihost = PCI_HOST_BRIDGE(dev);
597
    object_property_add_child(qdev_get_machine(), "raven", OBJECT(dev), NULL);
598
    qdev_init_nofail(dev);
599 600 601 602 603 604
    pci_bus = (PCIBus *)qdev_get_child_bus(dev, "pci.0");
    if (pci_bus == NULL) {
        fprintf(stderr, "Couldn't create PCI host controller.\n");
        exit(1);
    }

605 606 607 608 609 610 611 612 613 614
    /* PCI -> ISA bridge */
    pci = pci_create_simple(pci_bus, PCI_DEVFN(1, 0), "i82378");
    cpu_exit_irq = qemu_allocate_irqs(cpu_request_exit, NULL, 1);
    qdev_connect_gpio_out(&pci->qdev, 0,
                          first_cpu->irq_inputs[PPC6xx_INPUT_INT]);
    qdev_connect_gpio_out(&pci->qdev, 1, *cpu_exit_irq);
    sysbus_connect_irq(&pcihost->busdev, 0, qdev_get_gpio_in(&pci->qdev, 9));
    sysbus_connect_irq(&pcihost->busdev, 1, qdev_get_gpio_in(&pci->qdev, 11));
    sysbus_connect_irq(&pcihost->busdev, 2, qdev_get_gpio_in(&pci->qdev, 9));
    sysbus_connect_irq(&pcihost->busdev, 3, qdev_get_gpio_in(&pci->qdev, 11));
A
Andreas Färber 已提交
615
    isa_bus = ISA_BUS(qdev_get_child_bus(DEVICE(pci), "isa.0"));
616

617 618
    /* Super I/O (parallel + serial ports) */
    isa = isa_create(isa_bus, TYPE_PC87312);
A
Andreas Färber 已提交
619 620 621
    dev = DEVICE(isa);
    qdev_prop_set_uint8(dev, "config", 13); /* fdc, ser0, ser1, par0 */
    qdev_init_nofail(dev);
622

B
bellard 已提交
623
    /* Register 8 MB of ISA IO space (needed for non-contiguous map) */
624
    memory_region_init_io(PPC_io_memory, NULL, &PPC_prep_io_ops, sysctrl,
A
Avi Kivity 已提交
625 626
                          "ppc-io", 0x00800000);
    memory_region_add_subregion(sysmem, 0x80000000, PPC_io_memory);
B
bellard 已提交
627

628
    /* init basic PC hardware */
G
Gerd Hoffmann 已提交
629
    pci_vga_init(pci_bus);
630 631 632 633 634

    nb_nics1 = nb_nics;
    if (nb_nics1 > NE2000_NB_MAX)
        nb_nics1 = NE2000_NB_MAX;
    for(i = 0; i < nb_nics1; i++) {
635
        if (nd_table[i].model == NULL) {
636
	    nd_table[i].model = g_strdup("ne2k_isa");
637 638
        }
        if (strcmp(nd_table[i].model, "ne2k_isa") == 0) {
639 640
            isa_ne2000_init(isa_bus, ne2000_io[i], ne2000_irq[i],
                            &nd_table[i]);
641
        } else {
642
            pci_nic_init_nofail(&nd_table[i], pci_bus, "ne2k_pci", NULL);
643
        }
644 645
    }

646
    ide_drive_get(hd, MAX_IDE_BUS);
647
    for(i = 0; i < MAX_IDE_BUS; i++) {
648
        isa_ide_init(isa_bus, ide_iobase[i], ide_iobase2[i], ide_irq[i],
T
ths 已提交
649 650
                     hd[2 * i],
		     hd[2 * i + 1]);
651
    }
652
    isa_create_simple(isa_bus, "i8042");
B
Blue Swirl 已提交
653

J
j_mayer 已提交
654
    sysctrl->reset_irq = first_cpu->irq_inputs[PPC6xx_INPUT_HRESET];
J
Jan Kiszka 已提交
655

656
    portio_list_init(port_list, NULL, prep_portio_list, sysctrl, "prep");
J
Jan Kiszka 已提交
657 658
    portio_list_add(port_list, get_system_io(), 0x0);

B
bellard 已提交
659
    /* PowerPC control and status register group */
B
bellard 已提交
660
#if 0
661
    memory_region_init_io(xcsr, NULL, &PPC_XCSR_ops, NULL, "ppc-xcsr", 0x1000);
A
Avi Kivity 已提交
662
    memory_region_add_subregion(sysmem, 0xFEFF0000, xcsr);
B
bellard 已提交
663
#endif
664

665
    if (usb_enabled(false)) {
666
        pci_create_simple(pci_bus, -1, "pci-ohci");
P
pbrook 已提交
667 668
    }

A
Andreas Färber 已提交
669
    m48t59 = m48t59_init_isa(isa_bus, 0x0074, NVRAM_SIZE, 59);
J
j_mayer 已提交
670
    if (m48t59 == NULL)
B
bellard 已提交
671
        return;
J
j_mayer 已提交
672
    sysctrl->nvram = m48t59;
B
bellard 已提交
673 674

    /* Initialise NVRAM */
J
j_mayer 已提交
675 676 677
    nvram.opaque = m48t59;
    nvram.read_fn = &m48t59_read;
    nvram.write_fn = &m48t59_write;
678
    PPC_NVRAM_set_params(&nvram, NVRAM_SIZE, "PREP", ram_size, ppc_boot_device,
B
bellard 已提交
679
                         kernel_base, kernel_size,
B
bellard 已提交
680
                         kernel_cmdline,
B
bellard 已提交
681 682
                         initrd_base, initrd_size,
                         /* XXX: need an option to load a NVRAM image */
B
bellard 已提交
683 684
                         0,
                         graphic_width, graphic_height, graphic_depth);
685
}
B
bellard 已提交
686

687
static QEMUMachine prep_machine = {
688 689 690
    .name = "prep",
    .desc = "PowerPC PREP platform",
    .init = ppc_prep_init,
B
balrog 已提交
691
    .max_cpus = MAX_CPUS,
692
    DEFAULT_MACHINE_OPTIONS,
B
bellard 已提交
693
};
694 695 696 697 698 699 700

static void prep_machine_init(void)
{
    qemu_register_machine(&prep_machine);
}

machine_init(prep_machine_init);