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