]> git.proxmox.com Git - qemu.git/blame - hw/ppc_newworld.c
Switch Mac99 to OpenBIOS
[qemu.git] / hw / ppc_newworld.c
CommitLineData
64201201 1/*
3cbee15b 2 * QEMU PowerPC CHRP (currently NewWorld PowerMac) hardware System Emulator
5fafdf24 3 *
47103572 4 * Copyright (c) 2004-2007 Fabrice Bellard
3cbee15b 5 * Copyright (c) 2007 Jocelyn Mayer
5fafdf24 6 *
64201201
FB
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:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
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
23 * THE SOFTWARE.
24 */
87ecb68b
PB
25#include "hw.h"
26#include "ppc.h"
3cbee15b 27#include "ppc_mac.h"
28ce5ce6 28#include "mac_dbdma.h"
87ecb68b
PB
29#include "nvram.h"
30#include "pc.h"
31#include "pci.h"
32#include "net.h"
33#include "sysemu.h"
34#include "boards.h"
006f3a48 35#include "fw_cfg.h"
7fa9ae1a 36#include "escc.h"
267002cd 37
e4bcb14c 38#define MAX_IDE_BUS 2
864c136a 39#define VGA_BIOS_SIZE 65536
006f3a48 40#define CFG_ADDR 0xf0000510
e4bcb14c 41
f3902383
BS
42/* debug UniNorth */
43//#define DEBUG_UNIN
44
45#ifdef DEBUG_UNIN
46#define UNIN_DPRINTF(fmt, args...) \
47do { printf("UNIN: " fmt , ##args); } while (0)
48#else
49#define UNIN_DPRINTF(fmt, args...)
50#endif
51
0aa6a4a2
FB
52/* UniN device */
53static void unin_writel (void *opaque, target_phys_addr_t addr, uint32_t value)
54{
f3902383 55 UNIN_DPRINTF("writel addr " TARGET_FMT_plx " val %x\n", addr, value);
0aa6a4a2
FB
56}
57
58static uint32_t unin_readl (void *opaque, target_phys_addr_t addr)
59{
f3902383
BS
60 uint32_t value;
61
62 value = 0;
63 UNIN_DPRINTF("readl addr " TARGET_FMT_plx " val %x\n", addr, value);
64
65 return value;
0aa6a4a2
FB
66}
67
68static CPUWriteMemoryFunc *unin_write[] = {
69 &unin_writel,
70 &unin_writel,
71 &unin_writel,
72};
73
74static CPUReadMemoryFunc *unin_read[] = {
75 &unin_readl,
76 &unin_readl,
77 &unin_readl,
78};
79
3cbee15b 80/* PowerPC Mac99 hardware initialisation */
00f82b8a 81static void ppc_core99_init (ram_addr_t ram_size, int vga_ram_size,
3023f332 82 const char *boot_device,
3cbee15b
JM
83 const char *kernel_filename,
84 const char *kernel_cmdline,
85 const char *initrd_filename,
86 const char *cpu_model)
64201201 87{
aaed909a 88 CPUState *env = NULL, *envs[MAX_CPUS];
64201201 89 char buf[1024];
e9df014c 90 qemu_irq *pic, **openpic_irqs;
aef445bd 91 int unin_memory;
d5295253 92 int linux_boot, i;
864c136a 93 ram_addr_t ram_offset, vga_ram_offset, bios_offset, vga_bios_offset;
b6b8bd18 94 uint32_t kernel_base, kernel_size, initrd_base, initrd_size;
46e50e9d 95 PCIBus *pci_bus;
3cbee15b
JM
96 nvram_t nvram;
97#if 0
98 MacIONVRAMState *nvr;
99 int nvram_mem_index;
100#endif
101 m48t59_t *m48t59;
d5295253 102 int vga_bios_size, bios_size;
d537cf6c 103 qemu_irq *dummy_irq;
7fa9ae1a 104 int pic_mem_index, dbdma_mem_index, cuda_mem_index, escc_mem_index;
28c5af54 105 int ppc_boot_device;
e4bcb14c
TS
106 int index;
107 BlockDriverState *hd[MAX_IDE_BUS * MAX_IDE_DEVS];
006f3a48 108 void *fw_cfg;
28ce5ce6 109 void *dbdma;
46e50e9d 110
64201201
FB
111 linux_boot = (kernel_filename != NULL);
112
c68ea704 113 /* init CPUs */
94fc95cd 114 if (cpu_model == NULL)
d12f4c38 115 cpu_model = "default";
e9df014c 116 for (i = 0; i < smp_cpus; i++) {
aaed909a
FB
117 env = cpu_init(cpu_model);
118 if (!env) {
119 fprintf(stderr, "Unable to find PowerPC CPU definition\n");
120 exit(1);
121 }
e9df014c
JM
122 /* Set time-base frequency to 100 Mhz */
123 cpu_ppc_tb_init(env, 100UL * 1000UL * 1000UL);
3cbee15b 124#if 0
e9df014c 125 env->osi_call = vga_osi_call;
3cbee15b 126#endif
fe33cc71 127 qemu_register_reset(&cpu_ppc_reset, env);
e9df014c
JM
128 envs[i] = env;
129 }
c68ea704 130
64201201 131 /* allocate RAM */
864c136a
BS
132 ram_offset = qemu_ram_alloc(ram_size);
133 cpu_register_physical_memory(0, ram_size, ram_offset);
134
135 /* allocate VGA RAM */
136 vga_ram_offset = qemu_ram_alloc(vga_ram_size);
64201201
FB
137
138 /* allocate and load BIOS */
864c136a 139 bios_offset = qemu_ram_alloc(BIOS_SIZE);
1192dad8 140 if (bios_name == NULL)
006f3a48 141 bios_name = PROM_FILENAME;
1192dad8 142 snprintf(buf, sizeof(buf), "%s/%s", bios_dir, bios_name);
006f3a48
BS
143 cpu_register_physical_memory(PROM_ADDR, BIOS_SIZE, bios_offset | IO_MEM_ROM);
144
145 /* Load OpenBIOS (ELF) */
146 bios_size = load_elf(buf, 0, NULL, NULL, NULL);
d5295253 147 if (bios_size < 0 || bios_size > BIOS_SIZE) {
4a057712 148 cpu_abort(env, "qemu: could not load PowerPC bios '%s'\n", buf);
64201201
FB
149 exit(1);
150 }
3b46e624 151
d5295253 152 /* allocate and load VGA BIOS */
864c136a 153 vga_bios_offset = qemu_ram_alloc(VGA_BIOS_SIZE);
d5295253
FB
154 snprintf(buf, sizeof(buf), "%s/%s", bios_dir, VGABIOS_FILENAME);
155 vga_bios_size = load_image(buf, phys_ram_base + vga_bios_offset + 8);
156 if (vga_bios_size < 0) {
157 /* if no bios is present, we can still work */
158 fprintf(stderr, "qemu: warning: could not load VGA bios '%s'\n", buf);
159 vga_bios_size = 0;
160 } else {
161 /* set a specific header (XXX: find real Apple format for NDRV
162 drivers) */
163 phys_ram_base[vga_bios_offset] = 'N';
164 phys_ram_base[vga_bios_offset + 1] = 'D';
165 phys_ram_base[vga_bios_offset + 2] = 'R';
166 phys_ram_base[vga_bios_offset + 3] = 'V';
5fafdf24 167 cpu_to_be32w((uint32_t *)(phys_ram_base + vga_bios_offset + 4),
d5295253
FB
168 vga_bios_size);
169 vga_bios_size += 8;
170 }
3b46e624 171
b6b8bd18
FB
172 if (linux_boot) {
173 kernel_base = KERNEL_LOAD_ADDR;
174 /* now we can load the kernel */
175 kernel_size = load_image(kernel_filename, phys_ram_base + kernel_base);
176 if (kernel_size < 0) {
4a057712
JM
177 cpu_abort(env, "qemu: could not load kernel '%s'\n",
178 kernel_filename);
b6b8bd18
FB
179 exit(1);
180 }
181 /* load initrd */
182 if (initrd_filename) {
183 initrd_base = INITRD_LOAD_ADDR;
184 initrd_size = load_image(initrd_filename,
185 phys_ram_base + initrd_base);
186 if (initrd_size < 0) {
4a057712
JM
187 cpu_abort(env, "qemu: could not load initial ram disk '%s'\n",
188 initrd_filename);
b6b8bd18
FB
189 exit(1);
190 }
191 } else {
192 initrd_base = 0;
193 initrd_size = 0;
194 }
6ac0e82d 195 ppc_boot_device = 'm';
b6b8bd18
FB
196 } else {
197 kernel_base = 0;
198 kernel_size = 0;
199 initrd_base = 0;
200 initrd_size = 0;
28c5af54
JM
201 ppc_boot_device = '\0';
202 /* We consider that NewWorld PowerMac never have any floppy drive
203 * For now, OHW cannot boot from the network.
204 */
0d913fdb
JM
205 for (i = 0; boot_device[i] != '\0'; i++) {
206 if (boot_device[i] >= 'c' && boot_device[i] <= 'f') {
207 ppc_boot_device = boot_device[i];
28c5af54 208 break;
0d913fdb 209 }
28c5af54
JM
210 }
211 if (ppc_boot_device == '\0') {
212 fprintf(stderr, "No valid boot device for Mac99 machine\n");
213 exit(1);
214 }
b6b8bd18 215 }
0aa6a4a2 216
3cbee15b 217 isa_mem_base = 0x80000000;
aef445bd 218
3cbee15b
JM
219 /* Register 8 MB of ISA IO space */
220 isa_mmio_init(0xf2000000, 0x00800000);
3b46e624 221
3cbee15b
JM
222 /* UniN init */
223 unin_memory = cpu_register_io_memory(0, unin_read, unin_write, NULL);
224 cpu_register_physical_memory(0xf8000000, 0x00001000, unin_memory);
47103572 225
3cbee15b
JM
226 openpic_irqs = qemu_mallocz(smp_cpus * sizeof(qemu_irq *));
227 openpic_irqs[0] =
228 qemu_mallocz(smp_cpus * sizeof(qemu_irq) * OPENPIC_OUTPUT_NB);
229 for (i = 0; i < smp_cpus; i++) {
230 /* Mac99 IRQ connection between OpenPIC outputs pins
231 * and PowerPC input pins
232 */
233 switch (PPC_INPUT(env)) {
234 case PPC_FLAGS_INPUT_6xx:
235 openpic_irqs[i] = openpic_irqs[0] + (i * OPENPIC_OUTPUT_NB);
236 openpic_irqs[i][OPENPIC_OUTPUT_INT] =
237 ((qemu_irq *)env->irq_inputs)[PPC6xx_INPUT_INT];
238 openpic_irqs[i][OPENPIC_OUTPUT_CINT] =
239 ((qemu_irq *)env->irq_inputs)[PPC6xx_INPUT_INT];
240 openpic_irqs[i][OPENPIC_OUTPUT_MCK] =
241 ((qemu_irq *)env->irq_inputs)[PPC6xx_INPUT_MCP];
242 /* Not connected ? */
243 openpic_irqs[i][OPENPIC_OUTPUT_DEBUG] = NULL;
244 /* Check this */
245 openpic_irqs[i][OPENPIC_OUTPUT_RESET] =
246 ((qemu_irq *)env->irq_inputs)[PPC6xx_INPUT_HRESET];
247 break;
00af685f 248#if defined(TARGET_PPC64)
3cbee15b
JM
249 case PPC_FLAGS_INPUT_970:
250 openpic_irqs[i] = openpic_irqs[0] + (i * OPENPIC_OUTPUT_NB);
251 openpic_irqs[i][OPENPIC_OUTPUT_INT] =
252 ((qemu_irq *)env->irq_inputs)[PPC970_INPUT_INT];
253 openpic_irqs[i][OPENPIC_OUTPUT_CINT] =
254 ((qemu_irq *)env->irq_inputs)[PPC970_INPUT_INT];
255 openpic_irqs[i][OPENPIC_OUTPUT_MCK] =
256 ((qemu_irq *)env->irq_inputs)[PPC970_INPUT_MCP];
257 /* Not connected ? */
258 openpic_irqs[i][OPENPIC_OUTPUT_DEBUG] = NULL;
259 /* Check this */
260 openpic_irqs[i][OPENPIC_OUTPUT_RESET] =
261 ((qemu_irq *)env->irq_inputs)[PPC970_INPUT_HRESET];
262 break;
00af685f 263#endif /* defined(TARGET_PPC64) */
3cbee15b
JM
264 default:
265 cpu_abort(env, "Bus model not supported on mac99 machine\n");
266 exit(1);
0aa6a4a2 267 }
3cbee15b
JM
268 }
269 pic = openpic_init(NULL, &pic_mem_index, smp_cpus, openpic_irqs, NULL);
270 pci_bus = pci_pmac_init(pic);
271 /* init basic PC hardware */
0a645949
BS
272 pci_vga_init(pci_bus, phys_ram_base + vga_ram_offset,
273 vga_ram_offset, vga_ram_size,
3cbee15b 274 vga_bios_offset, vga_bios_size);
aae9366a 275
3cbee15b
JM
276 /* XXX: suppress that */
277 dummy_irq = i8259_init(NULL);
278
aeeb69c7
AJ
279 escc_mem_index = escc_init(0x80013000, dummy_irq[4], dummy_irq[5],
280 serial_hds[0], serial_hds[1], ESCC_CLOCK, 4);
cb457d76
AL
281
282 for(i = 0; i < nb_nics; i++)
283 pci_nic_init(pci_bus, &nd_table[i], -1, "ne2k_pci");
284
e4bcb14c
TS
285 if (drive_get_max_bus(IF_IDE) >= MAX_IDE_BUS) {
286 fprintf(stderr, "qemu: too many IDE bus\n");
287 exit(1);
288 }
289 for(i = 0; i < MAX_IDE_BUS * MAX_IDE_DEVS; i++) {
290 index = drive_get_index(IF_IDE, i / MAX_IDE_DEVS, i % MAX_IDE_DEVS);
291 if (index != -1)
292 hd[i] = drives_table[index].bdrv;
293 else
294 hd[i] = NULL;
295 }
28ce5ce6 296 dbdma = DBDMA_init(&dbdma_mem_index);
77f0435e
BS
297 pci_cmd646_ide_init(pci_bus, hd, 0);
298
3cbee15b
JM
299 /* cuda also initialize ADB */
300 cuda_init(&cuda_mem_index, pic[0x19]);
aae9366a 301
3cbee15b
JM
302 adb_kbd_init(&adb_bus);
303 adb_mouse_init(&adb_bus);
3b46e624 304
3b46e624 305
4ebcf884 306 macio_init(pci_bus, PCI_DEVICE_ID_APPLE_UNI_N_KEYL, 0, pic_mem_index,
77f0435e 307 dbdma_mem_index, cuda_mem_index, NULL, 0, NULL,
4ebcf884 308 escc_mem_index);
0d92ed30
PB
309
310 if (usb_enabled) {
e24ad6f1 311 usb_ohci_init_pci(pci_bus, 3, -1);
0d92ed30
PB
312 }
313
b6b8bd18
FB
314 if (graphic_depth != 15 && graphic_depth != 32 && graphic_depth != 8)
315 graphic_depth = 15;
3cbee15b
JM
316#if 0 /* XXX: this is ugly but needed for now, or OHW won't boot */
317 /* The NewWorld NVRAM is not located in the MacIO device */
68af3f24 318 nvr = macio_nvram_init(&nvram_mem_index, 0x2000, 1);
3cbee15b 319 pmac_format_nvram_partition(nvr, 0x2000);
74e91155 320 macio_nvram_map(nvr, 0xFFF04000);
3cbee15b
JM
321 nvram.opaque = nvr;
322 nvram.read_fn = &macio_nvram_read;
323 nvram.write_fn = &macio_nvram_write;
324#else
325 m48t59 = m48t59_init(dummy_irq[8], 0xFFF04000, 0x0074, NVRAM_SIZE, 59);
326 nvram.opaque = m48t59;
327 nvram.read_fn = &m48t59_read;
328 nvram.write_fn = &m48t59_write;
329#endif
6ac0e82d
AZ
330 PPC_NVRAM_set_params(&nvram, NVRAM_SIZE, "MAC99", ram_size,
331 ppc_boot_device, kernel_base, kernel_size,
b6b8bd18
FB
332 kernel_cmdline,
333 initrd_base, initrd_size,
64201201 334 /* XXX: need an option to load a NVRAM image */
b6b8bd18
FB
335 0,
336 graphic_width, graphic_height, graphic_depth);
337 /* No PCI init: the BIOS will do it */
0aa6a4a2 338
006f3a48
BS
339 fw_cfg = fw_cfg_init(0, 0, CFG_ADDR, CFG_ADDR + 2);
340 fw_cfg_add_i32(fw_cfg, FW_CFG_ID, 1);
341 fw_cfg_add_i64(fw_cfg, FW_CFG_RAM_SIZE, (uint64_t)ram_size);
342 fw_cfg_add_i16(fw_cfg, FW_CFG_MACHINE_ID, ARCH_MAC99);
aae9366a 343}
0aa6a4a2
FB
344
345QEMUMachine core99_machine = {
4b32e168
AL
346 .name = "mac99",
347 .desc = "Mac99 based PowerMAC",
348 .init = ppc_core99_init,
864c136a 349 .ram_require = BIOS_SIZE + VGA_BIOS_SIZE + VGA_RAM_SIZE,
3d878caa 350 .max_cpus = MAX_CPUS,
0aa6a4a2 351};