]> git.proxmox.com Git - qemu.git/blame - hw/ppc_prep.c
Use qemu-log.h
[qemu.git] / hw / ppc_prep.c
CommitLineData
9a64fbe4 1/*
a541f297 2 * QEMU PPC PREP hardware System Emulator
5fafdf24 3 *
47103572 4 * Copyright (c) 2003-2007 Jocelyn Mayer
5fafdf24 5 *
a541f297
FB
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
9a64fbe4 23 */
87ecb68b
PB
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 "ppc.h"
33#include "boards.h"
3b3fb322 34#include "qemu-log.h"
9fddaa0c 35
9a64fbe4 36//#define HARD_DEBUG_PPC_IO
a541f297 37//#define DEBUG_PPC_IO
9a64fbe4 38
fe33cc71
JM
39/* SMP is not enabled, for now */
40#define MAX_CPUS 1
41
e4bcb14c
TS
42#define MAX_IDE_BUS 2
43
b6b8bd18
FB
44#define BIOS_FILENAME "ppc_rom.bin"
45#define KERNEL_LOAD_ADDR 0x01000000
46#define INITRD_LOAD_ADDR 0x01800000
64201201 47
9a64fbe4
FB
48#if defined (HARD_DEBUG_PPC_IO) && !defined (DEBUG_PPC_IO)
49#define DEBUG_PPC_IO
50#endif
51
52#if defined (HARD_DEBUG_PPC_IO)
53#define PPC_IO_DPRINTF(fmt, args...) \
54do { \
b6b8bd18 55 if (loglevel & CPU_LOG_IOPORT) { \
9a64fbe4
FB
56 fprintf(logfile, "%s: " fmt, __func__ , ##args); \
57 } else { \
58 printf("%s : " fmt, __func__ , ##args); \
59 } \
60} while (0)
61#elif defined (DEBUG_PPC_IO)
62#define PPC_IO_DPRINTF(fmt, args...) \
63do { \
b6b8bd18 64 if (loglevel & CPU_LOG_IOPORT) { \
9a64fbe4
FB
65 fprintf(logfile, "%s: " fmt, __func__ , ##args); \
66 } \
67} while (0)
68#else
69#define PPC_IO_DPRINTF(fmt, args...) do { } while (0)
70#endif
71
64201201 72/* Constants for devices init */
a541f297
FB
73static const int ide_iobase[2] = { 0x1f0, 0x170 };
74static const int ide_iobase2[2] = { 0x3f6, 0x376 };
75static const int ide_irq[2] = { 13, 13 };
76
77#define NE2000_NB_MAX 6
78
79static uint32_t ne2000_io[NE2000_NB_MAX] = { 0x300, 0x320, 0x340, 0x360, 0x280, 0x380 };
80static int ne2000_irq[NE2000_NB_MAX] = { 9, 10, 11, 3, 4, 5 };
9a64fbe4 81
64201201
FB
82//static PITState *pit;
83
84/* ISA IO ports bridge */
9a64fbe4
FB
85#define PPC_IO_BASE 0x80000000
86
64201201
FB
87/* Speaker port 0x61 */
88int speaker_data_on;
89int dummy_refresh_clock;
90
36081602 91static void speaker_ioport_write (void *opaque, uint32_t addr, uint32_t val)
9a64fbe4 92{
a541f297 93#if 0
64201201
FB
94 speaker_data_on = (val >> 1) & 1;
95 pit_set_gate(pit, 2, val & 1);
a541f297 96#endif
9a64fbe4
FB
97}
98
47103572 99static uint32_t speaker_ioport_read (void *opaque, uint32_t addr)
9a64fbe4 100{
a541f297 101#if 0
64201201
FB
102 int out;
103 out = pit_get_out(pit, 2, qemu_get_clock(vm_clock));
104 dummy_refresh_clock ^= 1;
105 return (speaker_data_on << 1) | pit_get_gate(pit, 2) | (out << 5) |
47103572 106 (dummy_refresh_clock << 4);
a541f297 107#endif
64201201 108 return 0;
9a64fbe4
FB
109}
110
64201201
FB
111/* PCI intack register */
112/* Read-only register (?) */
47103572
JM
113static void _PPC_intack_write (void *opaque,
114 target_phys_addr_t addr, uint32_t value)
64201201 115{
aae9366a 116// printf("%s: 0x" PADDRX " => 0x%08" PRIx32 "\n", __func__, addr, value);
64201201
FB
117}
118
b068d6a7 119static always_inline uint32_t _PPC_intack_read (target_phys_addr_t addr)
64201201
FB
120{
121 uint32_t retval = 0;
122
123 if (addr == 0xBFFFFFF0)
3de388f6 124 retval = pic_intack_read(isa_pic);
aae9366a 125// printf("%s: 0x" PADDRX " <= %08" PRIx32 "\n", __func__, addr, retval);
64201201
FB
126
127 return retval;
128}
129
a4193c8a 130static uint32_t PPC_intack_readb (void *opaque, target_phys_addr_t addr)
64201201
FB
131{
132 return _PPC_intack_read(addr);
133}
134
a4193c8a 135static uint32_t PPC_intack_readw (void *opaque, target_phys_addr_t addr)
9a64fbe4 136{
f658b4db 137#ifdef TARGET_WORDS_BIGENDIAN
64201201
FB
138 return bswap16(_PPC_intack_read(addr));
139#else
140 return _PPC_intack_read(addr);
f658b4db 141#endif
9a64fbe4
FB
142}
143
a4193c8a 144static uint32_t PPC_intack_readl (void *opaque, target_phys_addr_t addr)
9a64fbe4 145{
f658b4db 146#ifdef TARGET_WORDS_BIGENDIAN
64201201
FB
147 return bswap32(_PPC_intack_read(addr));
148#else
149 return _PPC_intack_read(addr);
f658b4db 150#endif
9a64fbe4
FB
151}
152
64201201
FB
153static CPUWriteMemoryFunc *PPC_intack_write[] = {
154 &_PPC_intack_write,
155 &_PPC_intack_write,
156 &_PPC_intack_write,
157};
158
159static CPUReadMemoryFunc *PPC_intack_read[] = {
160 &PPC_intack_readb,
161 &PPC_intack_readw,
162 &PPC_intack_readl,
163};
164
165/* PowerPC control and status registers */
166#if 0 // Not used
167static struct {
168 /* IDs */
169 uint32_t veni_devi;
170 uint32_t revi;
171 /* Control and status */
172 uint32_t gcsr;
173 uint32_t xcfr;
174 uint32_t ct32;
175 uint32_t mcsr;
176 /* General purpose registers */
177 uint32_t gprg[6];
178 /* Exceptions */
179 uint32_t feen;
180 uint32_t fest;
181 uint32_t fema;
182 uint32_t fecl;
183 uint32_t eeen;
184 uint32_t eest;
185 uint32_t eecl;
186 uint32_t eeint;
187 uint32_t eemck0;
188 uint32_t eemck1;
189 /* Error diagnostic */
190} XCSR;
64201201 191
36081602
JM
192static void PPC_XCSR_writeb (void *opaque,
193 target_phys_addr_t addr, uint32_t value)
64201201 194{
aae9366a 195 printf("%s: 0x" PADDRX " => 0x%08" PRIx32 "\n", __func__, addr, value);
64201201
FB
196}
197
36081602
JM
198static void PPC_XCSR_writew (void *opaque,
199 target_phys_addr_t addr, uint32_t value)
9a64fbe4 200{
f658b4db 201#ifdef TARGET_WORDS_BIGENDIAN
64201201 202 value = bswap16(value);
f658b4db 203#endif
aae9366a 204 printf("%s: 0x" PADDRX " => 0x%08" PRIx32 "\n", __func__, addr, value);
9a64fbe4
FB
205}
206
36081602
JM
207static void PPC_XCSR_writel (void *opaque,
208 target_phys_addr_t addr, uint32_t value)
9a64fbe4 209{
f658b4db 210#ifdef TARGET_WORDS_BIGENDIAN
64201201 211 value = bswap32(value);
f658b4db 212#endif
aae9366a 213 printf("%s: 0x" PADDRX " => 0x%08" PRIx32 "\n", __func__, addr, value);
9a64fbe4
FB
214}
215
a4193c8a 216static uint32_t PPC_XCSR_readb (void *opaque, target_phys_addr_t addr)
64201201
FB
217{
218 uint32_t retval = 0;
9a64fbe4 219
aae9366a 220 printf("%s: 0x" PADDRX " <= %08" PRIx32 "\n", __func__, addr, retval);
9a64fbe4 221
64201201
FB
222 return retval;
223}
224
a4193c8a 225static uint32_t PPC_XCSR_readw (void *opaque, target_phys_addr_t addr)
9a64fbe4 226{
64201201
FB
227 uint32_t retval = 0;
228
aae9366a 229 printf("%s: 0x" PADDRX " <= %08" PRIx32 "\n", __func__, addr, retval);
64201201
FB
230#ifdef TARGET_WORDS_BIGENDIAN
231 retval = bswap16(retval);
232#endif
233
234 return retval;
9a64fbe4
FB
235}
236
a4193c8a 237static uint32_t PPC_XCSR_readl (void *opaque, target_phys_addr_t addr)
9a64fbe4
FB
238{
239 uint32_t retval = 0;
240
aae9366a 241 printf("%s: 0x" PADDRX " <= %08" PRIx32 "\n", __func__, addr, retval);
64201201
FB
242#ifdef TARGET_WORDS_BIGENDIAN
243 retval = bswap32(retval);
244#endif
9a64fbe4
FB
245
246 return retval;
247}
248
64201201
FB
249static CPUWriteMemoryFunc *PPC_XCSR_write[] = {
250 &PPC_XCSR_writeb,
251 &PPC_XCSR_writew,
252 &PPC_XCSR_writel,
9a64fbe4
FB
253};
254
64201201
FB
255static CPUReadMemoryFunc *PPC_XCSR_read[] = {
256 &PPC_XCSR_readb,
257 &PPC_XCSR_readw,
258 &PPC_XCSR_readl,
9a64fbe4 259};
b6b8bd18 260#endif
9a64fbe4 261
64201201
FB
262/* Fake super-io ports for PREP platform (Intel 82378ZB) */
263typedef struct sysctrl_t {
c4781a51 264 qemu_irq reset_irq;
64201201
FB
265 m48t59_t *nvram;
266 uint8_t state;
267 uint8_t syscontrol;
268 uint8_t fake_io[2];
da9b266b 269 int contiguous_map;
fb3444b8 270 int endian;
64201201 271} sysctrl_t;
9a64fbe4 272
64201201
FB
273enum {
274 STATE_HARDFILE = 0x01,
9a64fbe4 275};
9a64fbe4 276
64201201 277static sysctrl_t *sysctrl;
9a64fbe4 278
a541f297 279static void PREP_io_write (void *opaque, uint32_t addr, uint32_t val)
9a64fbe4 280{
64201201
FB
281 sysctrl_t *sysctrl = opaque;
282
aae9366a
JM
283 PPC_IO_DPRINTF("0x%08" PRIx32 " => 0x%02" PRIx32 "\n", addr - PPC_IO_BASE,
284 val);
64201201 285 sysctrl->fake_io[addr - 0x0398] = val;
9a64fbe4
FB
286}
287
a541f297 288static uint32_t PREP_io_read (void *opaque, uint32_t addr)
9a64fbe4 289{
64201201 290 sysctrl_t *sysctrl = opaque;
9a64fbe4 291
aae9366a 292 PPC_IO_DPRINTF("0x%08" PRIx32 " <= 0x%02" PRIx32 "\n", addr - PPC_IO_BASE,
64201201
FB
293 sysctrl->fake_io[addr - 0x0398]);
294 return sysctrl->fake_io[addr - 0x0398];
295}
9a64fbe4 296
a541f297 297static void PREP_io_800_writeb (void *opaque, uint32_t addr, uint32_t val)
9a64fbe4 298{
64201201
FB
299 sysctrl_t *sysctrl = opaque;
300
aae9366a
JM
301 PPC_IO_DPRINTF("0x%08" PRIx32 " => 0x%02" PRIx32 "\n",
302 addr - PPC_IO_BASE, val);
9a64fbe4
FB
303 switch (addr) {
304 case 0x0092:
305 /* Special port 92 */
306 /* Check soft reset asked */
64201201 307 if (val & 0x01) {
c4781a51
JM
308 qemu_irq_raise(sysctrl->reset_irq);
309 } else {
310 qemu_irq_lower(sysctrl->reset_irq);
9a64fbe4
FB
311 }
312 /* Check LE mode */
64201201 313 if (val & 0x02) {
fb3444b8
FB
314 sysctrl->endian = 1;
315 } else {
316 sysctrl->endian = 0;
9a64fbe4
FB
317 }
318 break;
64201201
FB
319 case 0x0800:
320 /* Motorola CPU configuration register : read-only */
321 break;
322 case 0x0802:
323 /* Motorola base module feature register : read-only */
324 break;
325 case 0x0803:
326 /* Motorola base module status register : read-only */
327 break;
9a64fbe4 328 case 0x0808:
64201201
FB
329 /* Hardfile light register */
330 if (val & 1)
331 sysctrl->state |= STATE_HARDFILE;
332 else
333 sysctrl->state &= ~STATE_HARDFILE;
9a64fbe4
FB
334 break;
335 case 0x0810:
336 /* Password protect 1 register */
64201201
FB
337 if (sysctrl->nvram != NULL)
338 m48t59_toggle_lock(sysctrl->nvram, 1);
9a64fbe4
FB
339 break;
340 case 0x0812:
341 /* Password protect 2 register */
64201201
FB
342 if (sysctrl->nvram != NULL)
343 m48t59_toggle_lock(sysctrl->nvram, 2);
9a64fbe4
FB
344 break;
345 case 0x0814:
64201201 346 /* L2 invalidate register */
c68ea704 347 // tlb_flush(first_cpu, 1);
9a64fbe4
FB
348 break;
349 case 0x081C:
350 /* system control register */
64201201 351 sysctrl->syscontrol = val & 0x0F;
9a64fbe4
FB
352 break;
353 case 0x0850:
354 /* I/O map type register */
da9b266b 355 sysctrl->contiguous_map = val & 0x01;
9a64fbe4
FB
356 break;
357 default:
aae9366a
JM
358 printf("ERROR: unaffected IO port write: %04" PRIx32
359 " => %02" PRIx32"\n", addr, val);
9a64fbe4
FB
360 break;
361 }
362}
363
a541f297 364static uint32_t PREP_io_800_readb (void *opaque, uint32_t addr)
9a64fbe4 365{
64201201 366 sysctrl_t *sysctrl = opaque;
9a64fbe4
FB
367 uint32_t retval = 0xFF;
368
369 switch (addr) {
370 case 0x0092:
371 /* Special port 92 */
64201201
FB
372 retval = 0x00;
373 break;
374 case 0x0800:
375 /* Motorola CPU configuration register */
376 retval = 0xEF; /* MPC750 */
377 break;
378 case 0x0802:
379 /* Motorola Base module feature register */
380 retval = 0xAD; /* No ESCC, PMC slot neither ethernet */
381 break;
382 case 0x0803:
383 /* Motorola base module status register */
384 retval = 0xE0; /* Standard MPC750 */
9a64fbe4
FB
385 break;
386 case 0x080C:
387 /* Equipment present register:
388 * no L2 cache
389 * no upgrade processor
390 * no cards in PCI slots
391 * SCSI fuse is bad
392 */
64201201
FB
393 retval = 0x3C;
394 break;
395 case 0x0810:
396 /* Motorola base module extended feature register */
397 retval = 0x39; /* No USB, CF and PCI bridge. NVRAM present */
9a64fbe4 398 break;
da9b266b
FB
399 case 0x0814:
400 /* L2 invalidate: don't care */
401 break;
9a64fbe4
FB
402 case 0x0818:
403 /* Keylock */
404 retval = 0x00;
405 break;
406 case 0x081C:
407 /* system control register
408 * 7 - 6 / 1 - 0: L2 cache enable
409 */
64201201 410 retval = sysctrl->syscontrol;
9a64fbe4
FB
411 break;
412 case 0x0823:
413 /* */
414 retval = 0x03; /* no L2 cache */
415 break;
416 case 0x0850:
417 /* I/O map type register */
da9b266b 418 retval = sysctrl->contiguous_map;
9a64fbe4
FB
419 break;
420 default:
aae9366a 421 printf("ERROR: unaffected IO port: %04" PRIx32 " read\n", addr);
9a64fbe4
FB
422 break;
423 }
aae9366a
JM
424 PPC_IO_DPRINTF("0x%08" PRIx32 " <= 0x%02" PRIx32 "\n",
425 addr - PPC_IO_BASE, retval);
9a64fbe4
FB
426
427 return retval;
428}
429
b068d6a7
JM
430static always_inline target_phys_addr_t prep_IO_address (sysctrl_t *sysctrl,
431 target_phys_addr_t
432 addr)
da9b266b
FB
433{
434 if (sysctrl->contiguous_map == 0) {
435 /* 64 KB contiguous space for IOs */
436 addr &= 0xFFFF;
437 } else {
438 /* 8 MB non-contiguous space for IOs */
439 addr = (addr & 0x1F) | ((addr & 0x007FFF000) >> 7);
440 }
441
442 return addr;
443}
444
445static void PPC_prep_io_writeb (void *opaque, target_phys_addr_t addr,
446 uint32_t value)
447{
448 sysctrl_t *sysctrl = opaque;
449
450 addr = prep_IO_address(sysctrl, addr);
451 cpu_outb(NULL, addr, value);
452}
453
454static uint32_t PPC_prep_io_readb (void *opaque, target_phys_addr_t addr)
455{
456 sysctrl_t *sysctrl = opaque;
457 uint32_t ret;
458
459 addr = prep_IO_address(sysctrl, addr);
460 ret = cpu_inb(NULL, addr);
461
462 return ret;
463}
464
465static void PPC_prep_io_writew (void *opaque, target_phys_addr_t addr,
466 uint32_t value)
467{
468 sysctrl_t *sysctrl = opaque;
469
470 addr = prep_IO_address(sysctrl, addr);
471#ifdef TARGET_WORDS_BIGENDIAN
472 value = bswap16(value);
473#endif
aae9366a 474 PPC_IO_DPRINTF("0x" PADDRX " => 0x%08" PRIx32 "\n", addr, value);
da9b266b
FB
475 cpu_outw(NULL, addr, value);
476}
477
478static uint32_t PPC_prep_io_readw (void *opaque, target_phys_addr_t addr)
479{
480 sysctrl_t *sysctrl = opaque;
481 uint32_t ret;
482
483 addr = prep_IO_address(sysctrl, addr);
484 ret = cpu_inw(NULL, addr);
485#ifdef TARGET_WORDS_BIGENDIAN
486 ret = bswap16(ret);
487#endif
aae9366a 488 PPC_IO_DPRINTF("0x" PADDRX " <= 0x%08" PRIx32 "\n", addr, ret);
da9b266b
FB
489
490 return ret;
491}
492
493static void PPC_prep_io_writel (void *opaque, target_phys_addr_t addr,
494 uint32_t value)
495{
496 sysctrl_t *sysctrl = opaque;
497
498 addr = prep_IO_address(sysctrl, addr);
499#ifdef TARGET_WORDS_BIGENDIAN
500 value = bswap32(value);
501#endif
aae9366a 502 PPC_IO_DPRINTF("0x" PADDRX " => 0x%08" PRIx32 "\n", addr, value);
da9b266b
FB
503 cpu_outl(NULL, addr, value);
504}
505
506static uint32_t PPC_prep_io_readl (void *opaque, target_phys_addr_t addr)
507{
508 sysctrl_t *sysctrl = opaque;
509 uint32_t ret;
510
511 addr = prep_IO_address(sysctrl, addr);
512 ret = cpu_inl(NULL, addr);
513#ifdef TARGET_WORDS_BIGENDIAN
514 ret = bswap32(ret);
515#endif
aae9366a 516 PPC_IO_DPRINTF("0x" PADDRX " <= 0x%08" PRIx32 "\n", addr, ret);
da9b266b
FB
517
518 return ret;
519}
520
521CPUWriteMemoryFunc *PPC_prep_io_write[] = {
522 &PPC_prep_io_writeb,
523 &PPC_prep_io_writew,
524 &PPC_prep_io_writel,
525};
526
527CPUReadMemoryFunc *PPC_prep_io_read[] = {
528 &PPC_prep_io_readb,
529 &PPC_prep_io_readw,
530 &PPC_prep_io_readl,
531};
532
64201201 533#define NVRAM_SIZE 0x2000
a541f297 534
26aa7d72 535/* PowerPC PREP hardware initialisation */
00f82b8a 536static void ppc_prep_init (ram_addr_t ram_size, int vga_ram_size,
b881c2c6
BS
537 const char *boot_device, DisplayState *ds,
538 const char *kernel_filename,
94fc95cd
JM
539 const char *kernel_cmdline,
540 const char *initrd_filename,
541 const char *cpu_model)
a541f297 542{
0d913fdb 543 CPUState *env = NULL, *envs[MAX_CPUS];
a541f297 544 char buf[1024];
3cbee15b
JM
545 nvram_t nvram;
546 m48t59_t *m48t59;
a541f297 547 int PPC_io_memory;
4157a662 548 int linux_boot, i, nb_nics1, bios_size;
64201201
FB
549 unsigned long bios_offset;
550 uint32_t kernel_base, kernel_size, initrd_base, initrd_size;
46e50e9d 551 PCIBus *pci_bus;
d537cf6c 552 qemu_irq *i8259;
28c5af54 553 int ppc_boot_device;
e4bcb14c
TS
554 int index;
555 BlockDriverState *hd[MAX_IDE_BUS * MAX_IDE_DEVS];
556 BlockDriverState *fd[MAX_FD];
64201201
FB
557
558 sysctrl = qemu_mallocz(sizeof(sysctrl_t));
559 if (sysctrl == NULL)
0a032cbe 560 return;
a541f297
FB
561
562 linux_boot = (kernel_filename != NULL);
0a032cbe 563
c68ea704 564 /* init CPUs */
94fc95cd 565 if (cpu_model == NULL)
d12f4c38 566 cpu_model = "default";
fe33cc71 567 for (i = 0; i < smp_cpus; i++) {
aaed909a
FB
568 env = cpu_init(cpu_model);
569 if (!env) {
570 fprintf(stderr, "Unable to find PowerPC CPU definition\n");
571 exit(1);
572 }
4018bae9
JM
573 if (env->flags & POWERPC_FLAG_RTC_CLK) {
574 /* POWER / PowerPC 601 RTC clock frequency is 7.8125 MHz */
575 cpu_ppc_tb_init(env, 7812500UL);
576 } else {
577 /* Set time-base frequency to 100 Mhz */
578 cpu_ppc_tb_init(env, 100UL * 1000UL * 1000UL);
579 }
fe33cc71 580 qemu_register_reset(&cpu_ppc_reset, env);
fe33cc71
JM
581 envs[i] = env;
582 }
a541f297
FB
583
584 /* allocate RAM */
64201201
FB
585 cpu_register_physical_memory(0, ram_size, IO_MEM_RAM);
586
587 /* allocate and load BIOS */
588 bios_offset = ram_size + vga_ram_size;
1192dad8
JM
589 if (bios_name == NULL)
590 bios_name = BIOS_FILENAME;
591 snprintf(buf, sizeof(buf), "%s/%s", bios_dir, bios_name);
4157a662
FB
592 bios_size = load_image(buf, phys_ram_base + bios_offset);
593 if (bios_size < 0 || bios_size > BIOS_SIZE) {
4a057712 594 cpu_abort(env, "qemu: could not load PPC PREP bios '%s'\n", buf);
64201201
FB
595 exit(1);
596 }
4c823cff
JM
597 if (env->nip < 0xFFF80000 && bios_size < 0x00100000) {
598 cpu_abort(env, "PowerPC 601 / 620 / 970 need a 1MB BIOS\n");
599 }
4157a662 600 bios_size = (bios_size + 0xfff) & ~0xfff;
4a057712 601 cpu_register_physical_memory((uint32_t)(-bios_size),
4157a662 602 bios_size, bios_offset | IO_MEM_ROM);
26aa7d72 603
a541f297 604 if (linux_boot) {
64201201 605 kernel_base = KERNEL_LOAD_ADDR;
a541f297 606 /* now we can load the kernel */
64201201
FB
607 kernel_size = load_image(kernel_filename, phys_ram_base + kernel_base);
608 if (kernel_size < 0) {
4a057712
JM
609 cpu_abort(env, "qemu: could not load kernel '%s'\n",
610 kernel_filename);
a541f297
FB
611 exit(1);
612 }
613 /* load initrd */
a541f297 614 if (initrd_filename) {
64201201
FB
615 initrd_base = INITRD_LOAD_ADDR;
616 initrd_size = load_image(initrd_filename,
617 phys_ram_base + initrd_base);
a541f297 618 if (initrd_size < 0) {
4a057712
JM
619 cpu_abort(env, "qemu: could not load initial ram disk '%s'\n",
620 initrd_filename);
a541f297
FB
621 exit(1);
622 }
64201201
FB
623 } else {
624 initrd_base = 0;
625 initrd_size = 0;
a541f297 626 }
6ac0e82d 627 ppc_boot_device = 'm';
a541f297 628 } else {
64201201
FB
629 kernel_base = 0;
630 kernel_size = 0;
631 initrd_base = 0;
632 initrd_size = 0;
28c5af54
JM
633 ppc_boot_device = '\0';
634 /* For now, OHW cannot boot from the network. */
0d913fdb
JM
635 for (i = 0; boot_device[i] != '\0'; i++) {
636 if (boot_device[i] >= 'a' && boot_device[i] <= 'f') {
637 ppc_boot_device = boot_device[i];
28c5af54 638 break;
0d913fdb 639 }
28c5af54
JM
640 }
641 if (ppc_boot_device == '\0') {
642 fprintf(stderr, "No valid boot device for Mac99 machine\n");
643 exit(1);
644 }
a541f297
FB
645 }
646
64201201 647 isa_mem_base = 0xc0000000;
dd37a5e4
JM
648 if (PPC_INPUT(env) != PPC_FLAGS_INPUT_6xx) {
649 cpu_abort(env, "Only 6xx bus is supported on PREP machine\n");
650 exit(1);
651 }
24be5ae3 652 i8259 = i8259_init(first_cpu->irq_inputs[PPC6xx_INPUT_INT]);
d537cf6c 653 pci_bus = pci_prep_init(i8259);
da9b266b
FB
654 // pci_bus = i440fx_init();
655 /* Register 8 MB of ISA IO space (needed for non-contiguous map) */
656 PPC_io_memory = cpu_register_io_memory(0, PPC_prep_io_read,
657 PPC_prep_io_write, sysctrl);
658 cpu_register_physical_memory(0x80000000, 0x00800000, PPC_io_memory);
64201201 659
a541f297 660 /* init basic PC hardware */
5fafdf24 661 pci_vga_init(pci_bus, ds, phys_ram_base + ram_size, ram_size,
89b6b508 662 vga_ram_size, 0, 0);
64201201 663 // openpic = openpic_init(0x00000000, 0xF0000000, 1);
d537cf6c
PB
664 // pit = pit_init(0x40, i8259[0]);
665 rtc_init(0x70, i8259[8]);
a541f297 666
b6cd0ea1 667 serial_init(0x3f8, i8259[4], 115200, serial_hds[0]);
a541f297
FB
668 nb_nics1 = nb_nics;
669 if (nb_nics1 > NE2000_NB_MAX)
670 nb_nics1 = NE2000_NB_MAX;
671 for(i = 0; i < nb_nics1; i++) {
fce62c4e
JM
672 if (nd_table[i].model == NULL
673 || strcmp(nd_table[i].model, "ne2k_isa") == 0) {
d537cf6c 674 isa_ne2000_init(ne2000_io[i], i8259[ne2000_irq[i]], &nd_table[i]);
a41b2ff2 675 } else {
bd3e2c4e 676 pci_nic_init(pci_bus, &nd_table[i], -1);
a41b2ff2 677 }
a541f297 678 }
a541f297 679
e4bcb14c
TS
680 if (drive_get_max_bus(IF_IDE) >= MAX_IDE_BUS) {
681 fprintf(stderr, "qemu: too many IDE bus\n");
682 exit(1);
683 }
684
685 for(i = 0; i < MAX_IDE_BUS * MAX_IDE_DEVS; i++) {
686 index = drive_get_index(IF_IDE, i / MAX_IDE_DEVS, i % MAX_IDE_DEVS);
687 if (index != -1)
688 hd[i] = drives_table[index].bdrv;
689 else
690 hd[i] = NULL;
691 }
692
693 for(i = 0; i < MAX_IDE_BUS; i++) {
d537cf6c 694 isa_ide_init(ide_iobase[i], ide_iobase2[i], i8259[ide_irq[i]],
e4bcb14c
TS
695 hd[2 * i],
696 hd[2 * i + 1]);
a541f297 697 }
d537cf6c 698 i8042_init(i8259[1], i8259[12], 0x60);
b6b8bd18 699 DMA_init(1);
64201201 700 // AUD_init();
a541f297
FB
701 // SB16_init();
702
e4bcb14c
TS
703 for(i = 0; i < MAX_FD; i++) {
704 index = drive_get_index(IF_FLOPPY, 0, i);
705 if (index != -1)
706 fd[i] = drives_table[index].bdrv;
707 else
708 fd[i] = NULL;
709 }
710 fdctrl_init(i8259[6], 2, 0, 0x3f0, fd);
a541f297 711
64201201
FB
712 /* Register speaker port */
713 register_ioport_read(0x61, 1, 1, speaker_ioport_read, NULL);
714 register_ioport_write(0x61, 1, 1, speaker_ioport_write, NULL);
a541f297 715 /* Register fake IO ports for PREP */
c4781a51 716 sysctrl->reset_irq = first_cpu->irq_inputs[PPC6xx_INPUT_HRESET];
64201201
FB
717 register_ioport_read(0x398, 2, 1, &PREP_io_read, sysctrl);
718 register_ioport_write(0x398, 2, 1, &PREP_io_write, sysctrl);
a541f297 719 /* System control ports */
64201201
FB
720 register_ioport_read(0x0092, 0x01, 1, &PREP_io_800_readb, sysctrl);
721 register_ioport_write(0x0092, 0x01, 1, &PREP_io_800_writeb, sysctrl);
722 register_ioport_read(0x0800, 0x52, 1, &PREP_io_800_readb, sysctrl);
723 register_ioport_write(0x0800, 0x52, 1, &PREP_io_800_writeb, sysctrl);
724 /* PCI intack location */
725 PPC_io_memory = cpu_register_io_memory(0, PPC_intack_read,
a4193c8a 726 PPC_intack_write, NULL);
a541f297 727 cpu_register_physical_memory(0xBFFFFFF0, 0x4, PPC_io_memory);
64201201 728 /* PowerPC control and status register group */
b6b8bd18 729#if 0
36081602
JM
730 PPC_io_memory = cpu_register_io_memory(0, PPC_XCSR_read, PPC_XCSR_write,
731 NULL);
64201201 732 cpu_register_physical_memory(0xFEFF0000, 0x1000, PPC_io_memory);
b6b8bd18 733#endif
a541f297 734
0d92ed30 735 if (usb_enabled) {
e24ad6f1 736 usb_ohci_init_pci(pci_bus, 3, -1);
0d92ed30
PB
737 }
738
3cbee15b
JM
739 m48t59 = m48t59_init(i8259[8], 0, 0x0074, NVRAM_SIZE, 59);
740 if (m48t59 == NULL)
64201201 741 return;
3cbee15b 742 sysctrl->nvram = m48t59;
64201201
FB
743
744 /* Initialise NVRAM */
3cbee15b
JM
745 nvram.opaque = m48t59;
746 nvram.read_fn = &m48t59_read;
747 nvram.write_fn = &m48t59_write;
6ac0e82d 748 PPC_NVRAM_set_params(&nvram, NVRAM_SIZE, "PREP", ram_size, ppc_boot_device,
64201201 749 kernel_base, kernel_size,
b6b8bd18 750 kernel_cmdline,
64201201
FB
751 initrd_base, initrd_size,
752 /* XXX: need an option to load a NVRAM image */
b6b8bd18
FB
753 0,
754 graphic_width, graphic_height, graphic_depth);
c0e564d5
FB
755
756 /* Special port to get debug messages from Open-Firmware */
757 register_ioport_write(0x0F00, 4, 1, &PPC_debug_write, NULL);
a541f297 758}
c0e564d5
FB
759
760QEMUMachine prep_machine = {
761 "prep",
762 "PowerPC PREP platform",
763 ppc_prep_init,
7fb4fdcf 764 BIOS_SIZE + VGA_RAM_SIZE,
c0e564d5 765};