2 * QEMU PPC PREP hardware System Emulator
4 * Copyright (c) 2003-2007 Jocelyn Mayer
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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
38 #include "mc146818rtc.h"
40 #include "exec-memory.h"
42 //#define HARD_DEBUG_PPC_IO
43 //#define DEBUG_PPC_IO
45 /* SMP is not enabled, for now */
50 #define BIOS_SIZE (1024 * 1024)
51 #define BIOS_FILENAME "ppc_rom.bin"
52 #define KERNEL_LOAD_ADDR 0x01000000
53 #define INITRD_LOAD_ADDR 0x01800000
55 #if defined (HARD_DEBUG_PPC_IO) && !defined (DEBUG_PPC_IO)
59 #if defined (HARD_DEBUG_PPC_IO)
60 #define PPC_IO_DPRINTF(fmt, ...) \
62 if (qemu_loglevel_mask(CPU_LOG_IOPORT)) { \
63 qemu_log("%s: " fmt, __func__ , ## __VA_ARGS__); \
65 printf("%s : " fmt, __func__ , ## __VA_ARGS__); \
68 #elif defined (DEBUG_PPC_IO)
69 #define PPC_IO_DPRINTF(fmt, ...) \
70 qemu_log_mask(CPU_LOG_IOPORT, fmt, ## __VA_ARGS__)
72 #define PPC_IO_DPRINTF(fmt, ...) do { } while (0)
75 /* Constants for devices init */
76 static const int ide_iobase
[2] = { 0x1f0, 0x170 };
77 static const int ide_iobase2
[2] = { 0x3f6, 0x376 };
78 static const int ide_irq
[2] = { 13, 13 };
80 #define NE2000_NB_MAX 6
82 static uint32_t ne2000_io
[NE2000_NB_MAX
] = { 0x300, 0x320, 0x340, 0x360, 0x280, 0x380 };
83 static int ne2000_irq
[NE2000_NB_MAX
] = { 9, 10, 11, 3, 4, 5 };
85 /* ISA IO ports bridge */
86 #define PPC_IO_BASE 0x80000000
88 /* PCI intack register */
89 /* Read-only register (?) */
90 static void PPC_intack_write (void *opaque
, target_phys_addr_t addr
,
91 uint64_t value
, unsigned size
)
94 printf("%s: 0x" TARGET_FMT_plx
" => 0x%08" PRIx64
"\n", __func__
, addr
,
99 static uint64_t PPC_intack_read(void *opaque
, target_phys_addr_t addr
,
104 if ((addr
& 0xf) == 0)
105 retval
= pic_read_irq(isa_pic
);
107 printf("%s: 0x" TARGET_FMT_plx
" <= %08" PRIx32
"\n", __func__
, addr
,
114 static const MemoryRegionOps PPC_intack_ops
= {
115 .read
= PPC_intack_read
,
116 .write
= PPC_intack_write
,
117 .endianness
= DEVICE_LITTLE_ENDIAN
,
120 /* PowerPC control and status registers */
126 /* Control and status */
131 /* General purpose registers */
144 /* Error diagnostic */
147 static void PPC_XCSR_writeb (void *opaque
,
148 target_phys_addr_t addr
, uint32_t value
)
150 printf("%s: 0x" TARGET_FMT_plx
" => 0x%08" PRIx32
"\n", __func__
, addr
,
154 static void PPC_XCSR_writew (void *opaque
,
155 target_phys_addr_t addr
, uint32_t value
)
157 printf("%s: 0x" TARGET_FMT_plx
" => 0x%08" PRIx32
"\n", __func__
, addr
,
161 static void PPC_XCSR_writel (void *opaque
,
162 target_phys_addr_t addr
, uint32_t value
)
164 printf("%s: 0x" TARGET_FMT_plx
" => 0x%08" PRIx32
"\n", __func__
, addr
,
168 static uint32_t PPC_XCSR_readb (void *opaque
, target_phys_addr_t addr
)
172 printf("%s: 0x" TARGET_FMT_plx
" <= %08" PRIx32
"\n", __func__
, addr
,
178 static uint32_t PPC_XCSR_readw (void *opaque
, target_phys_addr_t addr
)
182 printf("%s: 0x" TARGET_FMT_plx
" <= %08" PRIx32
"\n", __func__
, addr
,
188 static uint32_t PPC_XCSR_readl (void *opaque
, target_phys_addr_t addr
)
192 printf("%s: 0x" TARGET_FMT_plx
" <= %08" PRIx32
"\n", __func__
, addr
,
198 static const MemoryRegionOps PPC_XCSR_ops
= {
200 .read
= { PPC_XCSR_readb
, PPC_XCSR_readw
, PPC_XCSR_readl
, },
201 .write
= { PPC_XCSR_writeb
, PPC_XCSR_writew
, PPC_XCSR_writel
, },
203 .endianness
= DEVICE_LITTLE_ENDIAN
,
208 /* Fake super-io ports for PREP platform (Intel 82378ZB) */
209 typedef struct sysctrl_t
{
220 STATE_HARDFILE
= 0x01,
223 static sysctrl_t
*sysctrl
;
225 static void PREP_io_write (void *opaque
, uint32_t addr
, uint32_t val
)
227 sysctrl_t
*sysctrl
= opaque
;
229 PPC_IO_DPRINTF("0x%08" PRIx32
" => 0x%02" PRIx32
"\n", addr
- PPC_IO_BASE
,
231 sysctrl
->fake_io
[addr
- 0x0398] = val
;
234 static uint32_t PREP_io_read (void *opaque
, uint32_t addr
)
236 sysctrl_t
*sysctrl
= opaque
;
238 PPC_IO_DPRINTF("0x%08" PRIx32
" <= 0x%02" PRIx32
"\n", addr
- PPC_IO_BASE
,
239 sysctrl
->fake_io
[addr
- 0x0398]);
240 return sysctrl
->fake_io
[addr
- 0x0398];
243 static void PREP_io_800_writeb (void *opaque
, uint32_t addr
, uint32_t val
)
245 sysctrl_t
*sysctrl
= opaque
;
247 PPC_IO_DPRINTF("0x%08" PRIx32
" => 0x%02" PRIx32
"\n",
248 addr
- PPC_IO_BASE
, val
);
251 /* Special port 92 */
252 /* Check soft reset asked */
254 qemu_irq_raise(sysctrl
->reset_irq
);
256 qemu_irq_lower(sysctrl
->reset_irq
);
266 /* Motorola CPU configuration register : read-only */
269 /* Motorola base module feature register : read-only */
272 /* Motorola base module status register : read-only */
275 /* Hardfile light register */
277 sysctrl
->state
|= STATE_HARDFILE
;
279 sysctrl
->state
&= ~STATE_HARDFILE
;
282 /* Password protect 1 register */
283 if (sysctrl
->nvram
!= NULL
)
284 m48t59_toggle_lock(sysctrl
->nvram
, 1);
287 /* Password protect 2 register */
288 if (sysctrl
->nvram
!= NULL
)
289 m48t59_toggle_lock(sysctrl
->nvram
, 2);
292 /* L2 invalidate register */
293 // tlb_flush(first_cpu, 1);
296 /* system control register */
297 sysctrl
->syscontrol
= val
& 0x0F;
300 /* I/O map type register */
301 sysctrl
->contiguous_map
= val
& 0x01;
304 printf("ERROR: unaffected IO port write: %04" PRIx32
305 " => %02" PRIx32
"\n", addr
, val
);
310 static uint32_t PREP_io_800_readb (void *opaque
, uint32_t addr
)
312 sysctrl_t
*sysctrl
= opaque
;
313 uint32_t retval
= 0xFF;
317 /* Special port 92 */
321 /* Motorola CPU configuration register */
322 retval
= 0xEF; /* MPC750 */
325 /* Motorola Base module feature register */
326 retval
= 0xAD; /* No ESCC, PMC slot neither ethernet */
329 /* Motorola base module status register */
330 retval
= 0xE0; /* Standard MPC750 */
333 /* Equipment present register:
335 * no upgrade processor
336 * no cards in PCI slots
342 /* Motorola base module extended feature register */
343 retval
= 0x39; /* No USB, CF and PCI bridge. NVRAM present */
346 /* L2 invalidate: don't care */
353 /* system control register
354 * 7 - 6 / 1 - 0: L2 cache enable
356 retval
= sysctrl
->syscontrol
;
360 retval
= 0x03; /* no L2 cache */
363 /* I/O map type register */
364 retval
= sysctrl
->contiguous_map
;
367 printf("ERROR: unaffected IO port: %04" PRIx32
" read\n", addr
);
370 PPC_IO_DPRINTF("0x%08" PRIx32
" <= 0x%02" PRIx32
"\n",
371 addr
- PPC_IO_BASE
, retval
);
376 static inline target_phys_addr_t
prep_IO_address(sysctrl_t
*sysctrl
,
377 target_phys_addr_t addr
)
379 if (sysctrl
->contiguous_map
== 0) {
380 /* 64 KB contiguous space for IOs */
383 /* 8 MB non-contiguous space for IOs */
384 addr
= (addr
& 0x1F) | ((addr
& 0x007FFF000) >> 7);
390 static void PPC_prep_io_writeb (void *opaque
, target_phys_addr_t addr
,
393 sysctrl_t
*sysctrl
= opaque
;
395 addr
= prep_IO_address(sysctrl
, addr
);
396 cpu_outb(addr
, value
);
399 static uint32_t PPC_prep_io_readb (void *opaque
, target_phys_addr_t addr
)
401 sysctrl_t
*sysctrl
= opaque
;
404 addr
= prep_IO_address(sysctrl
, addr
);
410 static void PPC_prep_io_writew (void *opaque
, target_phys_addr_t addr
,
413 sysctrl_t
*sysctrl
= opaque
;
415 addr
= prep_IO_address(sysctrl
, addr
);
416 PPC_IO_DPRINTF("0x" TARGET_FMT_plx
" => 0x%08" PRIx32
"\n", addr
, value
);
417 cpu_outw(addr
, value
);
420 static uint32_t PPC_prep_io_readw (void *opaque
, target_phys_addr_t addr
)
422 sysctrl_t
*sysctrl
= opaque
;
425 addr
= prep_IO_address(sysctrl
, addr
);
427 PPC_IO_DPRINTF("0x" TARGET_FMT_plx
" <= 0x%08" PRIx32
"\n", addr
, ret
);
432 static void PPC_prep_io_writel (void *opaque
, target_phys_addr_t addr
,
435 sysctrl_t
*sysctrl
= opaque
;
437 addr
= prep_IO_address(sysctrl
, addr
);
438 PPC_IO_DPRINTF("0x" TARGET_FMT_plx
" => 0x%08" PRIx32
"\n", addr
, value
);
439 cpu_outl(addr
, value
);
442 static uint32_t PPC_prep_io_readl (void *opaque
, target_phys_addr_t addr
)
444 sysctrl_t
*sysctrl
= opaque
;
447 addr
= prep_IO_address(sysctrl
, addr
);
449 PPC_IO_DPRINTF("0x" TARGET_FMT_plx
" <= 0x%08" PRIx32
"\n", addr
, ret
);
454 static const MemoryRegionOps PPC_prep_io_ops
= {
456 .read
= { PPC_prep_io_readb
, PPC_prep_io_readw
, PPC_prep_io_readl
},
457 .write
= { PPC_prep_io_writeb
, PPC_prep_io_writew
, PPC_prep_io_writel
},
459 .endianness
= DEVICE_LITTLE_ENDIAN
,
462 #define NVRAM_SIZE 0x2000
464 static void cpu_request_exit(void *opaque
, int irq
, int level
)
466 CPUPPCState
*env
= cpu_single_env
;
473 static void ppc_prep_reset(void *opaque
)
475 CPUPPCState
*env
= opaque
;
477 cpu_state_reset(env
);
480 /* PowerPC PREP hardware initialisation */
481 static void ppc_prep_init (ram_addr_t ram_size
,
482 const char *boot_device
,
483 const char *kernel_filename
,
484 const char *kernel_cmdline
,
485 const char *initrd_filename
,
486 const char *cpu_model
)
488 MemoryRegion
*sysmem
= get_system_memory();
489 CPUPPCState
*env
= NULL
;
493 MemoryRegion
*PPC_io_memory
= g_new(MemoryRegion
, 1);
494 MemoryRegion
*intack
= g_new(MemoryRegion
, 1);
496 MemoryRegion
*xcsr
= g_new(MemoryRegion
, 1);
498 int linux_boot
, i
, nb_nics1
, bios_size
;
499 MemoryRegion
*ram
= g_new(MemoryRegion
, 1);
500 MemoryRegion
*bios
= g_new(MemoryRegion
, 1);
501 uint32_t kernel_base
, initrd_base
;
502 long kernel_size
, initrd_size
;
505 PCIHostState
*pcihost
;
509 qemu_irq
*cpu_exit_irq
;
511 DriveInfo
*hd
[MAX_IDE_BUS
* MAX_IDE_DEVS
];
512 DriveInfo
*fd
[MAX_FD
];
514 sysctrl
= g_malloc0(sizeof(sysctrl_t
));
516 linux_boot
= (kernel_filename
!= NULL
);
519 if (cpu_model
== NULL
)
521 for (i
= 0; i
< smp_cpus
; i
++) {
522 env
= cpu_init(cpu_model
);
524 fprintf(stderr
, "Unable to find PowerPC CPU definition\n");
527 if (env
->flags
& POWERPC_FLAG_RTC_CLK
) {
528 /* POWER / PowerPC 601 RTC clock frequency is 7.8125 MHz */
529 cpu_ppc_tb_init(env
, 7812500UL);
531 /* Set time-base frequency to 100 Mhz */
532 cpu_ppc_tb_init(env
, 100UL * 1000UL * 1000UL);
534 qemu_register_reset(ppc_prep_reset
, env
);
538 memory_region_init_ram(ram
, "ppc_prep.ram", ram_size
);
539 vmstate_register_ram_global(ram
);
540 memory_region_add_subregion(sysmem
, 0, ram
);
542 /* allocate and load BIOS */
543 memory_region_init_ram(bios
, "ppc_prep.bios", BIOS_SIZE
);
544 memory_region_set_readonly(bios
, true);
545 memory_region_add_subregion(sysmem
, (uint32_t)(-BIOS_SIZE
), bios
);
546 vmstate_register_ram_global(bios
);
547 if (bios_name
== NULL
)
548 bios_name
= BIOS_FILENAME
;
549 filename
= qemu_find_file(QEMU_FILE_TYPE_BIOS
, bios_name
);
551 bios_size
= get_image_size(filename
);
555 if (bios_size
> 0 && bios_size
<= BIOS_SIZE
) {
556 target_phys_addr_t bios_addr
;
557 bios_size
= (bios_size
+ 0xfff) & ~0xfff;
558 bios_addr
= (uint32_t)(-bios_size
);
559 bios_size
= load_image_targphys(filename
, bios_addr
, bios_size
);
561 if (bios_size
< 0 || bios_size
> BIOS_SIZE
) {
562 hw_error("qemu: could not load PPC PREP bios '%s'\n", bios_name
);
569 kernel_base
= KERNEL_LOAD_ADDR
;
570 /* now we can load the kernel */
571 kernel_size
= load_image_targphys(kernel_filename
, kernel_base
,
572 ram_size
- kernel_base
);
573 if (kernel_size
< 0) {
574 hw_error("qemu: could not load kernel '%s'\n", kernel_filename
);
578 if (initrd_filename
) {
579 initrd_base
= INITRD_LOAD_ADDR
;
580 initrd_size
= load_image_targphys(initrd_filename
, initrd_base
,
581 ram_size
- initrd_base
);
582 if (initrd_size
< 0) {
583 hw_error("qemu: could not load initial ram disk '%s'\n",
590 ppc_boot_device
= 'm';
596 ppc_boot_device
= '\0';
597 /* For now, OHW cannot boot from the network. */
598 for (i
= 0; boot_device
[i
] != '\0'; i
++) {
599 if (boot_device
[i
] >= 'a' && boot_device
[i
] <= 'f') {
600 ppc_boot_device
= boot_device
[i
];
604 if (ppc_boot_device
== '\0') {
605 fprintf(stderr
, "No valid boot device for Mac99 machine\n");
610 if (PPC_INPUT(env
) != PPC_FLAGS_INPUT_6xx
) {
611 hw_error("Only 6xx bus is supported on PREP machine\n");
614 dev
= qdev_create(NULL
, "raven-pcihost");
615 sys
= sysbus_from_qdev(dev
);
616 pcihost
= DO_UPCAST(PCIHostState
, busdev
, sys
);
617 pcihost
->address_space
= get_system_memory();
618 object_property_add_child(qdev_get_machine(), "raven", OBJECT(dev
), NULL
);
619 qdev_init_nofail(dev
);
620 pci_bus
= (PCIBus
*)qdev_get_child_bus(dev
, "pci.0");
621 if (pci_bus
== NULL
) {
622 fprintf(stderr
, "Couldn't create PCI host controller.\n");
626 /* PCI -> ISA bridge */
627 pci
= pci_create_simple(pci_bus
, PCI_DEVFN(1, 0), "i82378");
628 cpu_exit_irq
= qemu_allocate_irqs(cpu_request_exit
, NULL
, 1);
629 qdev_connect_gpio_out(&pci
->qdev
, 0,
630 first_cpu
->irq_inputs
[PPC6xx_INPUT_INT
]);
631 qdev_connect_gpio_out(&pci
->qdev
, 1, *cpu_exit_irq
);
632 sysbus_connect_irq(&pcihost
->busdev
, 0, qdev_get_gpio_in(&pci
->qdev
, 9));
633 sysbus_connect_irq(&pcihost
->busdev
, 1, qdev_get_gpio_in(&pci
->qdev
, 11));
634 sysbus_connect_irq(&pcihost
->busdev
, 2, qdev_get_gpio_in(&pci
->qdev
, 9));
635 sysbus_connect_irq(&pcihost
->busdev
, 3, qdev_get_gpio_in(&pci
->qdev
, 11));
636 isa_bus
= DO_UPCAST(ISABus
, qbus
, qdev_get_child_bus(&pci
->qdev
, "isa.0"));
638 /* Register 8 MB of ISA IO space (needed for non-contiguous map) */
639 memory_region_init_io(PPC_io_memory
, &PPC_prep_io_ops
, sysctrl
,
640 "ppc-io", 0x00800000);
641 memory_region_add_subregion(sysmem
, 0x80000000, PPC_io_memory
);
643 /* init basic PC hardware */
644 pci_vga_init(pci_bus
);
647 serial_isa_init(isa_bus
, 0, serial_hds
[0]);
649 if (nb_nics1
> NE2000_NB_MAX
)
650 nb_nics1
= NE2000_NB_MAX
;
651 for(i
= 0; i
< nb_nics1
; i
++) {
652 if (nd_table
[i
].model
== NULL
) {
653 nd_table
[i
].model
= g_strdup("ne2k_isa");
655 if (strcmp(nd_table
[i
].model
, "ne2k_isa") == 0) {
656 isa_ne2000_init(isa_bus
, ne2000_io
[i
], ne2000_irq
[i
],
659 pci_nic_init_nofail(&nd_table
[i
], "ne2k_pci", NULL
);
663 ide_drive_get(hd
, MAX_IDE_BUS
);
664 for(i
= 0; i
< MAX_IDE_BUS
; i
++) {
665 isa_ide_init(isa_bus
, ide_iobase
[i
], ide_iobase2
[i
], ide_irq
[i
],
669 isa_create_simple(isa_bus
, "i8042");
673 for(i
= 0; i
< MAX_FD
; i
++) {
674 fd
[i
] = drive_get(IF_FLOPPY
, 0, i
);
676 fdctrl_init_isa(isa_bus
, fd
);
678 /* Register fake IO ports for PREP */
679 sysctrl
->reset_irq
= first_cpu
->irq_inputs
[PPC6xx_INPUT_HRESET
];
680 register_ioport_read(0x398, 2, 1, &PREP_io_read
, sysctrl
);
681 register_ioport_write(0x398, 2, 1, &PREP_io_write
, sysctrl
);
682 /* System control ports */
683 register_ioport_read(0x0092, 0x01, 1, &PREP_io_800_readb
, sysctrl
);
684 register_ioport_write(0x0092, 0x01, 1, &PREP_io_800_writeb
, sysctrl
);
685 register_ioport_read(0x0800, 0x52, 1, &PREP_io_800_readb
, sysctrl
);
686 register_ioport_write(0x0800, 0x52, 1, &PREP_io_800_writeb
, sysctrl
);
687 /* PCI intack location */
688 memory_region_init_io(intack
, &PPC_intack_ops
, NULL
, "ppc-intack", 4);
689 memory_region_add_subregion(sysmem
, 0xBFFFFFF0, intack
);
690 /* PowerPC control and status register group */
692 memory_region_init_io(xcsr
, &PPC_XCSR_ops
, NULL
, "ppc-xcsr", 0x1000);
693 memory_region_add_subregion(sysmem
, 0xFEFF0000, xcsr
);
697 pci_create_simple(pci_bus
, -1, "pci-ohci");
700 m48t59
= m48t59_init_isa(isa_bus
, 0x0074, NVRAM_SIZE
, 59);
703 sysctrl
->nvram
= m48t59
;
705 /* Initialise NVRAM */
706 nvram
.opaque
= m48t59
;
707 nvram
.read_fn
= &m48t59_read
;
708 nvram
.write_fn
= &m48t59_write
;
709 PPC_NVRAM_set_params(&nvram
, NVRAM_SIZE
, "PREP", ram_size
, ppc_boot_device
,
710 kernel_base
, kernel_size
,
712 initrd_base
, initrd_size
,
713 /* XXX: need an option to load a NVRAM image */
715 graphic_width
, graphic_height
, graphic_depth
);
717 /* Special port to get debug messages from Open-Firmware */
718 register_ioport_write(0x0F00, 4, 1, &PPC_debug_write
, NULL
);
721 static QEMUMachine prep_machine
= {
723 .desc
= "PowerPC PREP platform",
724 .init
= ppc_prep_init
,
725 .max_cpus
= MAX_CPUS
,
728 static void prep_machine_init(void)
730 qemu_register_machine(&prep_machine
);
733 machine_init(prep_machine_init
);