]> git.proxmox.com Git - mirror_qemu.git/blob - hw/ppc_prep.c
prep: Use ISA m48t59
[mirror_qemu.git] / hw / ppc_prep.c
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 ISABus *isa_bus;
527 qemu_irq *i8259;
528 qemu_irq *cpu_exit_irq;
529 int ppc_boot_device;
530 DriveInfo *hd[MAX_IDE_BUS * MAX_IDE_DEVS];
531 DriveInfo *fd[MAX_FD];
532
533 sysctrl = g_malloc0(sizeof(sysctrl_t));
534
535 linux_boot = (kernel_filename != NULL);
536
537 /* init CPUs */
538 if (cpu_model == NULL)
539 cpu_model = "602";
540 for (i = 0; i < smp_cpus; i++) {
541 env = cpu_init(cpu_model);
542 if (!env) {
543 fprintf(stderr, "Unable to find PowerPC CPU definition\n");
544 exit(1);
545 }
546 if (env->flags & POWERPC_FLAG_RTC_CLK) {
547 /* POWER / PowerPC 601 RTC clock frequency is 7.8125 MHz */
548 cpu_ppc_tb_init(env, 7812500UL);
549 } else {
550 /* Set time-base frequency to 100 Mhz */
551 cpu_ppc_tb_init(env, 100UL * 1000UL * 1000UL);
552 }
553 qemu_register_reset((QEMUResetHandler*)&cpu_reset, env);
554 }
555
556 /* allocate RAM */
557 memory_region_init_ram(ram, "ppc_prep.ram", ram_size);
558 vmstate_register_ram_global(ram);
559 memory_region_add_subregion(sysmem, 0, ram);
560
561 /* allocate and load BIOS */
562 memory_region_init_ram(bios, "ppc_prep.bios", BIOS_SIZE);
563 memory_region_set_readonly(bios, true);
564 memory_region_add_subregion(sysmem, (uint32_t)(-BIOS_SIZE), bios);
565 vmstate_register_ram_global(bios);
566 if (bios_name == NULL)
567 bios_name = BIOS_FILENAME;
568 filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name);
569 if (filename) {
570 bios_size = get_image_size(filename);
571 } else {
572 bios_size = -1;
573 }
574 if (bios_size > 0 && bios_size <= BIOS_SIZE) {
575 target_phys_addr_t bios_addr;
576 bios_size = (bios_size + 0xfff) & ~0xfff;
577 bios_addr = (uint32_t)(-bios_size);
578 bios_size = load_image_targphys(filename, bios_addr, bios_size);
579 }
580 if (bios_size < 0 || bios_size > BIOS_SIZE) {
581 hw_error("qemu: could not load PPC PREP bios '%s'\n", bios_name);
582 }
583 if (filename) {
584 g_free(filename);
585 }
586
587 if (linux_boot) {
588 kernel_base = KERNEL_LOAD_ADDR;
589 /* now we can load the kernel */
590 kernel_size = load_image_targphys(kernel_filename, kernel_base,
591 ram_size - kernel_base);
592 if (kernel_size < 0) {
593 hw_error("qemu: could not load kernel '%s'\n", kernel_filename);
594 exit(1);
595 }
596 /* load initrd */
597 if (initrd_filename) {
598 initrd_base = INITRD_LOAD_ADDR;
599 initrd_size = load_image_targphys(initrd_filename, initrd_base,
600 ram_size - initrd_base);
601 if (initrd_size < 0) {
602 hw_error("qemu: could not load initial ram disk '%s'\n",
603 initrd_filename);
604 }
605 } else {
606 initrd_base = 0;
607 initrd_size = 0;
608 }
609 ppc_boot_device = 'm';
610 } else {
611 kernel_base = 0;
612 kernel_size = 0;
613 initrd_base = 0;
614 initrd_size = 0;
615 ppc_boot_device = '\0';
616 /* For now, OHW cannot boot from the network. */
617 for (i = 0; boot_device[i] != '\0'; i++) {
618 if (boot_device[i] >= 'a' && boot_device[i] <= 'f') {
619 ppc_boot_device = boot_device[i];
620 break;
621 }
622 }
623 if (ppc_boot_device == '\0') {
624 fprintf(stderr, "No valid boot device for Mac99 machine\n");
625 exit(1);
626 }
627 }
628
629 isa_mem_base = 0xc0000000;
630 if (PPC_INPUT(env) != PPC_FLAGS_INPUT_6xx) {
631 hw_error("Only 6xx bus is supported on PREP machine\n");
632 }
633 /* Hmm, prep has no pci-isa bridge ??? */
634 isa_bus = isa_bus_new(NULL, get_system_io());
635 i8259 = i8259_init(isa_bus, first_cpu->irq_inputs[PPC6xx_INPUT_INT]);
636 pci_bus = pci_prep_init(i8259, get_system_memory(), get_system_io());
637 isa_bus_irqs(isa_bus, i8259);
638 // pci_bus = i440fx_init();
639 /* Register 8 MB of ISA IO space (needed for non-contiguous map) */
640 memory_region_init_io(PPC_io_memory, &PPC_prep_io_ops, sysctrl,
641 "ppc-io", 0x00800000);
642 memory_region_add_subregion(sysmem, 0x80000000, PPC_io_memory);
643
644 /* init basic PC hardware */
645 pci_vga_init(pci_bus);
646 // openpic = openpic_init(0x00000000, 0xF0000000, 1);
647 // pit = pit_init(0x40, 0);
648 rtc_init(isa_bus, 2000, NULL);
649
650 if (serial_hds[0])
651 serial_isa_init(isa_bus, 0, serial_hds[0]);
652 nb_nics1 = nb_nics;
653 if (nb_nics1 > NE2000_NB_MAX)
654 nb_nics1 = NE2000_NB_MAX;
655 for(i = 0; i < nb_nics1; i++) {
656 if (nd_table[i].model == NULL) {
657 nd_table[i].model = g_strdup("ne2k_isa");
658 }
659 if (strcmp(nd_table[i].model, "ne2k_isa") == 0) {
660 isa_ne2000_init(isa_bus, ne2000_io[i], ne2000_irq[i],
661 &nd_table[i]);
662 } else {
663 pci_nic_init_nofail(&nd_table[i], "ne2k_pci", NULL);
664 }
665 }
666
667 ide_drive_get(hd, MAX_IDE_BUS);
668 for(i = 0; i < MAX_IDE_BUS; i++) {
669 isa_ide_init(isa_bus, ide_iobase[i], ide_iobase2[i], ide_irq[i],
670 hd[2 * i],
671 hd[2 * i + 1]);
672 }
673 isa_create_simple(isa_bus, "i8042");
674
675 cpu_exit_irq = qemu_allocate_irqs(cpu_request_exit, NULL, 1);
676 DMA_init(1, cpu_exit_irq);
677
678 // SB16_init();
679
680 for(i = 0; i < MAX_FD; i++) {
681 fd[i] = drive_get(IF_FLOPPY, 0, i);
682 }
683 fdctrl_init_isa(isa_bus, fd);
684
685 /* Register speaker port */
686 register_ioport_read(0x61, 1, 1, speaker_ioport_read, NULL);
687 register_ioport_write(0x61, 1, 1, speaker_ioport_write, NULL);
688 /* Register fake IO ports for PREP */
689 sysctrl->reset_irq = first_cpu->irq_inputs[PPC6xx_INPUT_HRESET];
690 register_ioport_read(0x398, 2, 1, &PREP_io_read, sysctrl);
691 register_ioport_write(0x398, 2, 1, &PREP_io_write, sysctrl);
692 /* System control ports */
693 register_ioport_read(0x0092, 0x01, 1, &PREP_io_800_readb, sysctrl);
694 register_ioport_write(0x0092, 0x01, 1, &PREP_io_800_writeb, sysctrl);
695 register_ioport_read(0x0800, 0x52, 1, &PREP_io_800_readb, sysctrl);
696 register_ioport_write(0x0800, 0x52, 1, &PREP_io_800_writeb, sysctrl);
697 /* PCI intack location */
698 memory_region_init_io(intack, &PPC_intack_ops, NULL, "ppc-intack", 4);
699 memory_region_add_subregion(sysmem, 0xBFFFFFF0, intack);
700 /* PowerPC control and status register group */
701 #if 0
702 memory_region_init_io(xcsr, &PPC_XCSR_ops, NULL, "ppc-xcsr", 0x1000);
703 memory_region_add_subregion(sysmem, 0xFEFF0000, xcsr);
704 #endif
705
706 if (usb_enabled) {
707 usb_ohci_init_pci(pci_bus, -1);
708 }
709
710 m48t59 = m48t59_init_isa(isa_bus, 0x0074, NVRAM_SIZE, 59);
711 if (m48t59 == NULL)
712 return;
713 sysctrl->nvram = m48t59;
714
715 /* Initialise NVRAM */
716 nvram.opaque = m48t59;
717 nvram.read_fn = &m48t59_read;
718 nvram.write_fn = &m48t59_write;
719 PPC_NVRAM_set_params(&nvram, NVRAM_SIZE, "PREP", ram_size, ppc_boot_device,
720 kernel_base, kernel_size,
721 kernel_cmdline,
722 initrd_base, initrd_size,
723 /* XXX: need an option to load a NVRAM image */
724 0,
725 graphic_width, graphic_height, graphic_depth);
726
727 /* Special port to get debug messages from Open-Firmware */
728 register_ioport_write(0x0F00, 4, 1, &PPC_debug_write, NULL);
729 }
730
731 static QEMUMachine prep_machine = {
732 .name = "prep",
733 .desc = "PowerPC PREP platform",
734 .init = ppc_prep_init,
735 .max_cpus = MAX_CPUS,
736 };
737
738 static void prep_machine_init(void)
739 {
740 qemu_register_machine(&prep_machine);
741 }
742
743 machine_init(prep_machine_init);