2 * QEMU PowerPC CHRP (currently NewWorld PowerMac) hardware System Emulator
4 * Copyright (c) 2004-2007 Fabrice Bellard
5 * Copyright (c) 2007 Jocelyn Mayer
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
38 static void unin_writel (void *opaque
, target_phys_addr_t addr
, uint32_t value
)
42 static uint32_t unin_readl (void *opaque
, target_phys_addr_t addr
)
47 static CPUWriteMemoryFunc
*unin_write
[] = {
53 static CPUReadMemoryFunc
*unin_read
[] = {
59 /* PowerPC Mac99 hardware initialisation */
60 static void ppc_core99_init (ram_addr_t ram_size
, int vga_ram_size
,
61 const char *boot_device
, DisplayState
*ds
,
62 const char *kernel_filename
,
63 const char *kernel_cmdline
,
64 const char *initrd_filename
,
65 const char *cpu_model
)
67 CPUState
*env
= NULL
, *envs
[MAX_CPUS
];
69 qemu_irq
*pic
, **openpic_irqs
;
72 unsigned long bios_offset
, vga_bios_offset
;
73 uint32_t kernel_base
, kernel_size
, initrd_base
, initrd_size
;
81 int vga_bios_size
, bios_size
;
83 int pic_mem_index
, dbdma_mem_index
, cuda_mem_index
;
87 BlockDriverState
*hd
[MAX_IDE_BUS
* MAX_IDE_DEVS
];
89 linux_boot
= (kernel_filename
!= NULL
);
92 if (cpu_model
== NULL
)
93 cpu_model
= "default";
94 for (i
= 0; i
< smp_cpus
; i
++) {
95 env
= cpu_init(cpu_model
);
97 fprintf(stderr
, "Unable to find PowerPC CPU definition\n");
100 /* Set time-base frequency to 100 Mhz */
101 cpu_ppc_tb_init(env
, 100UL * 1000UL * 1000UL);
103 env
->osi_call
= vga_osi_call
;
105 qemu_register_reset(&cpu_ppc_reset
, env
);
108 if (env
->nip
< 0xFFF80000) {
109 /* Special test for PowerPC 601:
110 * the boot vector is at 0xFFF00100, then we need a 1MB BIOS.
111 * But the NVRAM is located at 0xFFF04000...
113 cpu_abort(env
, "Mac99 hardware can not handle 1 MB BIOS\n");
117 cpu_register_physical_memory(0, ram_size
, IO_MEM_RAM
);
119 /* allocate and load BIOS */
120 bios_offset
= ram_size
+ vga_ram_size
;
121 if (bios_name
== NULL
)
122 bios_name
= BIOS_FILENAME
;
123 snprintf(buf
, sizeof(buf
), "%s/%s", bios_dir
, bios_name
);
124 bios_size
= load_image(buf
, phys_ram_base
+ bios_offset
);
125 if (bios_size
< 0 || bios_size
> BIOS_SIZE
) {
126 cpu_abort(env
, "qemu: could not load PowerPC bios '%s'\n", buf
);
129 bios_size
= (bios_size
+ 0xfff) & ~0xfff;
130 if (bios_size
> 0x00080000) {
131 /* As the NVRAM is located at 0xFFF04000, we cannot use 1 MB BIOSes */
132 cpu_abort(env
, "Mac99 hardware can not handle 1 MB BIOS\n");
134 cpu_register_physical_memory((uint32_t)(-bios_size
),
135 bios_size
, bios_offset
| IO_MEM_ROM
);
137 /* allocate and load VGA BIOS */
138 vga_bios_offset
= bios_offset
+ bios_size
;
139 snprintf(buf
, sizeof(buf
), "%s/%s", bios_dir
, VGABIOS_FILENAME
);
140 vga_bios_size
= load_image(buf
, phys_ram_base
+ vga_bios_offset
+ 8);
141 if (vga_bios_size
< 0) {
142 /* if no bios is present, we can still work */
143 fprintf(stderr
, "qemu: warning: could not load VGA bios '%s'\n", buf
);
146 /* set a specific header (XXX: find real Apple format for NDRV
148 phys_ram_base
[vga_bios_offset
] = 'N';
149 phys_ram_base
[vga_bios_offset
+ 1] = 'D';
150 phys_ram_base
[vga_bios_offset
+ 2] = 'R';
151 phys_ram_base
[vga_bios_offset
+ 3] = 'V';
152 cpu_to_be32w((uint32_t *)(phys_ram_base
+ vga_bios_offset
+ 4),
156 vga_bios_size
= (vga_bios_size
+ 0xfff) & ~0xfff;
159 kernel_base
= KERNEL_LOAD_ADDR
;
160 /* now we can load the kernel */
161 kernel_size
= load_image(kernel_filename
, phys_ram_base
+ kernel_base
);
162 if (kernel_size
< 0) {
163 cpu_abort(env
, "qemu: could not load kernel '%s'\n",
168 if (initrd_filename
) {
169 initrd_base
= INITRD_LOAD_ADDR
;
170 initrd_size
= load_image(initrd_filename
,
171 phys_ram_base
+ initrd_base
);
172 if (initrd_size
< 0) {
173 cpu_abort(env
, "qemu: could not load initial ram disk '%s'\n",
181 ppc_boot_device
= 'm';
187 ppc_boot_device
= '\0';
188 /* We consider that NewWorld PowerMac never have any floppy drive
189 * For now, OHW cannot boot from the network.
191 for (i
= 0; boot_device
[i
] != '\0'; i
++) {
192 if (boot_device
[i
] >= 'c' && boot_device
[i
] <= 'f') {
193 ppc_boot_device
= boot_device
[i
];
197 if (ppc_boot_device
== '\0') {
198 fprintf(stderr
, "No valid boot device for Mac99 machine\n");
203 isa_mem_base
= 0x80000000;
205 /* Register 8 MB of ISA IO space */
206 isa_mmio_init(0xf2000000, 0x00800000);
209 unin_memory
= cpu_register_io_memory(0, unin_read
, unin_write
, NULL
);
210 cpu_register_physical_memory(0xf8000000, 0x00001000, unin_memory
);
212 openpic_irqs
= qemu_mallocz(smp_cpus
* sizeof(qemu_irq
*));
214 qemu_mallocz(smp_cpus
* sizeof(qemu_irq
) * OPENPIC_OUTPUT_NB
);
215 for (i
= 0; i
< smp_cpus
; i
++) {
216 /* Mac99 IRQ connection between OpenPIC outputs pins
217 * and PowerPC input pins
219 switch (PPC_INPUT(env
)) {
220 case PPC_FLAGS_INPUT_6xx
:
221 openpic_irqs
[i
] = openpic_irqs
[0] + (i
* OPENPIC_OUTPUT_NB
);
222 openpic_irqs
[i
][OPENPIC_OUTPUT_INT
] =
223 ((qemu_irq
*)env
->irq_inputs
)[PPC6xx_INPUT_INT
];
224 openpic_irqs
[i
][OPENPIC_OUTPUT_CINT
] =
225 ((qemu_irq
*)env
->irq_inputs
)[PPC6xx_INPUT_INT
];
226 openpic_irqs
[i
][OPENPIC_OUTPUT_MCK
] =
227 ((qemu_irq
*)env
->irq_inputs
)[PPC6xx_INPUT_MCP
];
228 /* Not connected ? */
229 openpic_irqs
[i
][OPENPIC_OUTPUT_DEBUG
] = NULL
;
231 openpic_irqs
[i
][OPENPIC_OUTPUT_RESET
] =
232 ((qemu_irq
*)env
->irq_inputs
)[PPC6xx_INPUT_HRESET
];
234 #if defined(TARGET_PPC64)
235 case PPC_FLAGS_INPUT_970
:
236 openpic_irqs
[i
] = openpic_irqs
[0] + (i
* OPENPIC_OUTPUT_NB
);
237 openpic_irqs
[i
][OPENPIC_OUTPUT_INT
] =
238 ((qemu_irq
*)env
->irq_inputs
)[PPC970_INPUT_INT
];
239 openpic_irqs
[i
][OPENPIC_OUTPUT_CINT
] =
240 ((qemu_irq
*)env
->irq_inputs
)[PPC970_INPUT_INT
];
241 openpic_irqs
[i
][OPENPIC_OUTPUT_MCK
] =
242 ((qemu_irq
*)env
->irq_inputs
)[PPC970_INPUT_MCP
];
243 /* Not connected ? */
244 openpic_irqs
[i
][OPENPIC_OUTPUT_DEBUG
] = NULL
;
246 openpic_irqs
[i
][OPENPIC_OUTPUT_RESET
] =
247 ((qemu_irq
*)env
->irq_inputs
)[PPC970_INPUT_HRESET
];
249 #endif /* defined(TARGET_PPC64) */
251 cpu_abort(env
, "Bus model not supported on mac99 machine\n");
255 pic
= openpic_init(NULL
, &pic_mem_index
, smp_cpus
, openpic_irqs
, NULL
);
256 pci_bus
= pci_pmac_init(pic
);
257 /* init basic PC hardware */
258 pci_vga_init(pci_bus
, ds
, phys_ram_base
+ ram_size
,
259 ram_size
, vga_ram_size
,
260 vga_bios_offset
, vga_bios_size
);
262 /* XXX: suppress that */
263 dummy_irq
= i8259_init(NULL
);
265 /* XXX: use Mac Serial port */
266 serial_init(0x3f8, dummy_irq
[4], 115200, serial_hds
[0]);
267 for(i
= 0; i
< nb_nics
; i
++) {
268 if (!nd_table
[i
].model
)
269 nd_table
[i
].model
= "ne2k_pci";
270 if (!pci_nic_init(pci_bus
, &nd_table
[i
], -1))
273 if (drive_get_max_bus(IF_IDE
) >= MAX_IDE_BUS
) {
274 fprintf(stderr
, "qemu: too many IDE bus\n");
277 for(i
= 0; i
< MAX_IDE_BUS
* MAX_IDE_DEVS
; i
++) {
278 index
= drive_get_index(IF_IDE
, i
/ MAX_IDE_DEVS
, i
% MAX_IDE_DEVS
);
280 hd
[i
] = drives_table
[index
].bdrv
;
285 ide_mem_index
[0] = pmac_ide_init(&hd
[0], pic
[0x13]);
286 ide_mem_index
[1] = pmac_ide_init(&hd
[2], pic
[0x14]);
288 pci_cmd646_ide_init(pci_bus
, &hd
[0], 0);
290 /* cuda also initialize ADB */
291 cuda_init(&cuda_mem_index
, pic
[0x19]);
293 adb_kbd_init(&adb_bus
);
294 adb_mouse_init(&adb_bus
);
296 dbdma_init(&dbdma_mem_index
);
298 macio_init(pci_bus
, 0x0022, 0, pic_mem_index
, dbdma_mem_index
,
299 cuda_mem_index
, NULL
, 2, ide_mem_index
);
302 usb_ohci_init_pci(pci_bus
, 3, -1);
305 if (graphic_depth
!= 15 && graphic_depth
!= 32 && graphic_depth
!= 8)
307 #if 0 /* XXX: this is ugly but needed for now, or OHW won't boot */
308 /* The NewWorld NVRAM is not located in the MacIO device */
309 nvr
= macio_nvram_init(&nvram_mem_index
, 0x2000);
310 pmac_format_nvram_partition(nvr
, 0x2000);
311 macio_nvram_map(nvr
, 0xFFF04000);
313 nvram
.read_fn
= &macio_nvram_read
;
314 nvram
.write_fn
= &macio_nvram_write
;
316 m48t59
= m48t59_init(dummy_irq
[8], 0xFFF04000, 0x0074, NVRAM_SIZE
, 59);
317 nvram
.opaque
= m48t59
;
318 nvram
.read_fn
= &m48t59_read
;
319 nvram
.write_fn
= &m48t59_write
;
321 PPC_NVRAM_set_params(&nvram
, NVRAM_SIZE
, "MAC99", ram_size
,
322 ppc_boot_device
, kernel_base
, kernel_size
,
324 initrd_base
, initrd_size
,
325 /* XXX: need an option to load a NVRAM image */
327 graphic_width
, graphic_height
, graphic_depth
);
328 /* No PCI init: the BIOS will do it */
330 /* Special port to get debug messages from Open-Firmware */
331 register_ioport_write(0x0F00, 4, 1, &PPC_debug_write
, NULL
);
334 QEMUMachine core99_machine
= {
336 "Mac99 based PowerMAC",
338 BIOS_SIZE
+ VGA_RAM_SIZE
,