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