]>
Commit | Line | Data |
---|---|---|
3cbee15b | 1 | /* |
4d7ca41e | 2 | * QEMU OldWorld PowerMac (currently ~G3 Beige) hardware System Emulator |
3cbee15b JM |
3 | * |
4 | * Copyright (c) 2004-2007 Fabrice Bellard | |
5 | * Copyright (c) 2007 Jocelyn Mayer | |
6 | * | |
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" |
87ecb68b PB |
28 | #include "nvram.h" |
29 | #include "pc.h" | |
30 | #include "sysemu.h" | |
31 | #include "net.h" | |
32 | #include "isa.h" | |
33 | #include "pci.h" | |
34 | #include "boards.h" | |
271dd5e0 | 35 | #include "fw_cfg.h" |
7fa9ae1a | 36 | #include "escc.h" |
3cbee15b | 37 | |
e4bcb14c | 38 | #define MAX_IDE_BUS 2 |
a748ab6d | 39 | #define VGA_BIOS_SIZE 65536 |
271dd5e0 BS |
40 | #define CFG_ADDR 0xf0000510 |
41 | ||
3cbee15b JM |
42 | /* temporary frame buffer OSI calls for the video.x driver. The right |
43 | solution is to modify the driver to use VGA PCI I/Os */ | |
44 | /* XXX: to be removed. This is no way related to emulation */ | |
45 | static int vga_osi_call (CPUState *env) | |
46 | { | |
47 | static int vga_vbl_enabled; | |
48 | int linesize; | |
49 | ||
aae9366a | 50 | // printf("osi_call R5=" REGX "\n", ppc_dump_gpr(env, 5)); |
3cbee15b JM |
51 | |
52 | /* same handler as PearPC, coming from the original MOL video | |
53 | driver. */ | |
54 | switch(env->gpr[5]) { | |
55 | case 4: | |
56 | break; | |
57 | case 28: /* set_vmode */ | |
58 | if (env->gpr[6] != 1 || env->gpr[7] != 0) | |
59 | env->gpr[3] = 1; | |
60 | else | |
61 | env->gpr[3] = 0; | |
62 | break; | |
63 | case 29: /* get_vmode_info */ | |
64 | if (env->gpr[6] != 0) { | |
65 | if (env->gpr[6] != 1 || env->gpr[7] != 0) { | |
66 | env->gpr[3] = 1; | |
67 | break; | |
68 | } | |
69 | } | |
70 | env->gpr[3] = 0; | |
71 | env->gpr[4] = (1 << 16) | 1; /* num_vmodes, cur_vmode */ | |
72 | env->gpr[5] = (1 << 16) | 0; /* num_depths, cur_depth_mode */ | |
73 | env->gpr[6] = (graphic_width << 16) | graphic_height; /* w, h */ | |
74 | env->gpr[7] = 85 << 16; /* refresh rate */ | |
75 | env->gpr[8] = (graphic_depth + 7) & ~7; /* depth (round to byte) */ | |
76 | linesize = ((graphic_depth + 7) >> 3) * graphic_width; | |
77 | linesize = (linesize + 3) & ~3; | |
78 | env->gpr[9] = (linesize << 16) | 0; /* row_bytes, offset */ | |
79 | break; | |
80 | case 31: /* set_video power */ | |
81 | env->gpr[3] = 0; | |
82 | break; | |
83 | case 39: /* video_ctrl */ | |
84 | if (env->gpr[6] == 0 || env->gpr[6] == 1) | |
85 | vga_vbl_enabled = env->gpr[6]; | |
86 | env->gpr[3] = 0; | |
87 | break; | |
88 | case 47: | |
89 | break; | |
90 | case 59: /* set_color */ | |
91 | /* R6 = index, R7 = RGB */ | |
92 | env->gpr[3] = 0; | |
93 | break; | |
94 | case 64: /* get color */ | |
95 | /* R6 = index */ | |
96 | env->gpr[3] = 0; | |
97 | break; | |
98 | case 116: /* set hwcursor */ | |
99 | /* R6 = x, R7 = y, R8 = visible, R9 = data */ | |
100 | break; | |
101 | default: | |
aae9366a JM |
102 | fprintf(stderr, "unsupported OSI call R5=" REGX "\n", |
103 | ppc_dump_gpr(env, 5)); | |
3cbee15b JM |
104 | break; |
105 | } | |
106 | ||
107 | return 1; /* osi_call handled */ | |
108 | } | |
109 | ||
00f82b8a | 110 | static void ppc_heathrow_init (ram_addr_t ram_size, int vga_ram_size, |
6ac0e82d | 111 | const char *boot_device, DisplayState *ds, |
3cbee15b JM |
112 | const char *kernel_filename, |
113 | const char *kernel_cmdline, | |
114 | const char *initrd_filename, | |
115 | const char *cpu_model) | |
116 | { | |
aaed909a | 117 | CPUState *env = NULL, *envs[MAX_CPUS]; |
3cbee15b JM |
118 | char buf[1024]; |
119 | qemu_irq *pic, **heathrow_irqs; | |
120 | nvram_t nvram; | |
121 | m48t59_t *m48t59; | |
122 | int linux_boot, i; | |
a748ab6d | 123 | ram_addr_t ram_offset, vga_ram_offset, bios_offset, vga_bios_offset; |
3cbee15b | 124 | uint32_t kernel_base, kernel_size, initrd_base, initrd_size; |
3cbee15b JM |
125 | PCIBus *pci_bus; |
126 | MacIONVRAMState *nvr; | |
127 | int vga_bios_size, bios_size; | |
128 | qemu_irq *dummy_irq; | |
129 | int pic_mem_index, nvram_mem_index, dbdma_mem_index, cuda_mem_index; | |
7fa9ae1a | 130 | int escc_mem_index, ide_mem_index[2]; |
28c5af54 | 131 | int ppc_boot_device; |
e4bcb14c TS |
132 | BlockDriverState *hd[MAX_IDE_BUS * MAX_IDE_DEVS]; |
133 | int index; | |
271dd5e0 | 134 | void *fw_cfg; |
3cbee15b JM |
135 | |
136 | linux_boot = (kernel_filename != NULL); | |
137 | ||
138 | /* init CPUs */ | |
3cbee15b | 139 | if (cpu_model == NULL) |
f2fde45a | 140 | cpu_model = "G3"; |
3cbee15b | 141 | for (i = 0; i < smp_cpus; i++) { |
aaed909a FB |
142 | env = cpu_init(cpu_model); |
143 | if (!env) { | |
144 | fprintf(stderr, "Unable to find PowerPC CPU definition\n"); | |
145 | exit(1); | |
146 | } | |
3cbee15b JM |
147 | /* Set time-base frequency to 100 Mhz */ |
148 | cpu_ppc_tb_init(env, 100UL * 1000UL * 1000UL); | |
149 | env->osi_call = vga_osi_call; | |
150 | qemu_register_reset(&cpu_ppc_reset, env); | |
3cbee15b JM |
151 | envs[i] = env; |
152 | } | |
4c823cff JM |
153 | if (env->nip < 0xFFF80000) { |
154 | /* Special test for PowerPC 601: | |
155 | * the boot vector is at 0xFFF00100, then we need a 1MB BIOS. | |
156 | * But the NVRAM is located at 0xFFF04000... | |
157 | */ | |
d45952a0 | 158 | cpu_abort(env, "G3 Beige Mac hardware can not handle 1 MB BIOS\n"); |
4c823cff | 159 | } |
3cbee15b JM |
160 | |
161 | /* allocate RAM */ | |
6b4079f8 AJ |
162 | if (ram_size > (2047 << 20)) { |
163 | fprintf(stderr, | |
164 | "qemu: Too much memory for this machine: %d MB, maximum 2047 MB\n", | |
165 | ((unsigned int)ram_size / (1 << 20))); | |
166 | exit(1); | |
167 | } | |
168 | ||
a748ab6d AJ |
169 | ram_offset = qemu_ram_alloc(ram_size); |
170 | cpu_register_physical_memory(0, ram_size, ram_offset); | |
171 | ||
172 | /* allocate VGA RAM */ | |
173 | vga_ram_offset = qemu_ram_alloc(vga_ram_size); | |
3cbee15b JM |
174 | |
175 | /* allocate and load BIOS */ | |
a748ab6d | 176 | bios_offset = qemu_ram_alloc(BIOS_SIZE); |
3cbee15b | 177 | if (bios_name == NULL) |
992e5acd | 178 | bios_name = PROM_FILENAME; |
3cbee15b | 179 | snprintf(buf, sizeof(buf), "%s/%s", bios_dir, bios_name); |
992e5acd BS |
180 | cpu_register_physical_memory(PROM_ADDR, BIOS_SIZE, bios_offset | IO_MEM_ROM); |
181 | ||
182 | /* Load OpenBIOS (ELF) */ | |
183 | bios_size = load_elf(buf, 0, NULL, NULL, NULL); | |
3cbee15b JM |
184 | if (bios_size < 0 || bios_size > BIOS_SIZE) { |
185 | cpu_abort(env, "qemu: could not load PowerPC bios '%s'\n", buf); | |
186 | exit(1); | |
187 | } | |
3cbee15b JM |
188 | |
189 | /* allocate and load VGA BIOS */ | |
a748ab6d | 190 | vga_bios_offset = qemu_ram_alloc(VGA_BIOS_SIZE); |
3cbee15b JM |
191 | snprintf(buf, sizeof(buf), "%s/%s", bios_dir, VGABIOS_FILENAME); |
192 | vga_bios_size = load_image(buf, phys_ram_base + vga_bios_offset + 8); | |
193 | if (vga_bios_size < 0) { | |
194 | /* if no bios is present, we can still work */ | |
195 | fprintf(stderr, "qemu: warning: could not load VGA bios '%s'\n", buf); | |
196 | vga_bios_size = 0; | |
197 | } else { | |
198 | /* set a specific header (XXX: find real Apple format for NDRV | |
199 | drivers) */ | |
200 | phys_ram_base[vga_bios_offset] = 'N'; | |
201 | phys_ram_base[vga_bios_offset + 1] = 'D'; | |
202 | phys_ram_base[vga_bios_offset + 2] = 'R'; | |
203 | phys_ram_base[vga_bios_offset + 3] = 'V'; | |
204 | cpu_to_be32w((uint32_t *)(phys_ram_base + vga_bios_offset + 4), | |
205 | vga_bios_size); | |
206 | vga_bios_size += 8; | |
207 | } | |
3cbee15b JM |
208 | |
209 | if (linux_boot) { | |
210 | kernel_base = KERNEL_LOAD_ADDR; | |
211 | /* now we can load the kernel */ | |
6b419964 | 212 | kernel_size = load_elf(kernel_filename, kernel_base - 0xc0000000ULL, |
52f163b7 BS |
213 | NULL, NULL, NULL); |
214 | if (kernel_size < 0) | |
215 | kernel_size = load_aout(kernel_filename, kernel_base, | |
216 | ram_size - kernel_base); | |
217 | if (kernel_size < 0) | |
218 | kernel_size = load_image_targphys(kernel_filename, | |
219 | kernel_base, | |
220 | ram_size - kernel_base); | |
3cbee15b JM |
221 | if (kernel_size < 0) { |
222 | cpu_abort(env, "qemu: could not load kernel '%s'\n", | |
223 | kernel_filename); | |
224 | exit(1); | |
225 | } | |
226 | /* load initrd */ | |
227 | if (initrd_filename) { | |
228 | initrd_base = INITRD_LOAD_ADDR; | |
229 | initrd_size = load_image(initrd_filename, | |
230 | phys_ram_base + initrd_base); | |
231 | if (initrd_size < 0) { | |
232 | cpu_abort(env, "qemu: could not load initial ram disk '%s'\n", | |
233 | initrd_filename); | |
234 | exit(1); | |
235 | } | |
236 | } else { | |
237 | initrd_base = 0; | |
238 | initrd_size = 0; | |
239 | } | |
6ac0e82d | 240 | ppc_boot_device = 'm'; |
3cbee15b JM |
241 | } else { |
242 | kernel_base = 0; | |
243 | kernel_size = 0; | |
244 | initrd_base = 0; | |
245 | initrd_size = 0; | |
28c5af54 | 246 | ppc_boot_device = '\0'; |
0d913fdb | 247 | for (i = 0; boot_device[i] != '\0'; i++) { |
28c5af54 | 248 | /* TOFIX: for now, the second IDE channel is not properly |
0d913fdb | 249 | * used by OHW. The Mac floppy disk are not emulated. |
28c5af54 JM |
250 | * For now, OHW cannot boot from the network. |
251 | */ | |
252 | #if 0 | |
0d913fdb JM |
253 | if (boot_device[i] >= 'a' && boot_device[i] <= 'f') { |
254 | ppc_boot_device = boot_device[i]; | |
28c5af54 | 255 | break; |
0d913fdb | 256 | } |
28c5af54 | 257 | #else |
0d913fdb JM |
258 | if (boot_device[i] >= 'c' && boot_device[i] <= 'd') { |
259 | ppc_boot_device = boot_device[i]; | |
28c5af54 | 260 | break; |
0d913fdb | 261 | } |
28c5af54 JM |
262 | #endif |
263 | } | |
264 | if (ppc_boot_device == '\0') { | |
8a901def | 265 | fprintf(stderr, "No valid boot device for G3 Beige machine\n"); |
28c5af54 JM |
266 | exit(1); |
267 | } | |
3cbee15b JM |
268 | } |
269 | ||
270 | isa_mem_base = 0x80000000; | |
aae9366a | 271 | |
3cbee15b JM |
272 | /* Register 2 MB of ISA IO space */ |
273 | isa_mmio_init(0xfe000000, 0x00200000); | |
274 | ||
275 | /* XXX: we register only 1 output pin for heathrow PIC */ | |
276 | heathrow_irqs = qemu_mallocz(smp_cpus * sizeof(qemu_irq *)); | |
277 | heathrow_irqs[0] = | |
278 | qemu_mallocz(smp_cpus * sizeof(qemu_irq) * 1); | |
279 | /* Connect the heathrow PIC outputs to the 6xx bus */ | |
280 | for (i = 0; i < smp_cpus; i++) { | |
281 | switch (PPC_INPUT(env)) { | |
282 | case PPC_FLAGS_INPUT_6xx: | |
283 | heathrow_irqs[i] = heathrow_irqs[0] + (i * 1); | |
284 | heathrow_irqs[i][0] = | |
285 | ((qemu_irq *)env->irq_inputs)[PPC6xx_INPUT_INT]; | |
286 | break; | |
287 | default: | |
288 | cpu_abort(env, "Bus model not supported on OldWorld Mac machine\n"); | |
289 | exit(1); | |
290 | } | |
291 | } | |
292 | ||
293 | /* init basic PC hardware */ | |
294 | if (PPC_INPUT(env) != PPC_FLAGS_INPUT_6xx) { | |
295 | cpu_abort(env, "Only 6xx bus is supported on heathrow machine\n"); | |
296 | exit(1); | |
297 | } | |
298 | pic = heathrow_pic_init(&pic_mem_index, 1, heathrow_irqs); | |
299 | pci_bus = pci_grackle_init(0xfec00000, pic); | |
a748ab6d AJ |
300 | pci_vga_init(pci_bus, ds, phys_ram_base + vga_ram_offset, |
301 | vga_ram_offset, vga_ram_size, | |
3cbee15b | 302 | vga_bios_offset, vga_bios_size); |
aae9366a | 303 | |
3cbee15b JM |
304 | /* XXX: suppress that */ |
305 | dummy_irq = i8259_init(NULL); | |
306 | ||
7fa9ae1a BS |
307 | escc_mem_index = escc_init(0x80013000, pic[0x10], serial_hds[0], |
308 | serial_hds[1], ESCC_CLOCK, 4); | |
aae9366a | 309 | |
3cbee15b JM |
310 | for(i = 0; i < nb_nics; i++) { |
311 | if (!nd_table[i].model) | |
312 | nd_table[i].model = "ne2k_pci"; | |
313 | pci_nic_init(pci_bus, &nd_table[i], -1); | |
314 | } | |
0d913fdb JM |
315 | |
316 | /* First IDE channel is a CMD646 on the PCI bus */ | |
e4bcb14c TS |
317 | |
318 | if (drive_get_max_bus(IF_IDE) >= MAX_IDE_BUS) { | |
319 | fprintf(stderr, "qemu: too many IDE bus\n"); | |
320 | exit(1); | |
321 | } | |
322 | index = drive_get_index(IF_IDE, 0, 0); | |
323 | if (index == -1) | |
324 | hd[0] = NULL; | |
325 | else | |
326 | hd[0] = drives_table[index].bdrv; | |
327 | index = drive_get_index(IF_IDE, 0, 1); | |
328 | if (index == -1) | |
329 | hd[1] = NULL; | |
330 | else | |
331 | hd[1] = drives_table[index].bdrv; | |
332 | hd[3] = hd[2] = NULL; | |
333 | pci_cmd646_ide_init(pci_bus, hd, 0); | |
334 | ||
0d913fdb | 335 | /* Second IDE channel is a MAC IDE on the MacIO bus */ |
e4bcb14c TS |
336 | index = drive_get_index(IF_IDE, 1, 0); |
337 | if (index == -1) | |
338 | hd[0] = NULL; | |
339 | else | |
340 | hd[0] = drives_table[index].bdrv; | |
341 | index = drive_get_index(IF_IDE, 1, 1); | |
342 | if (index == -1) | |
343 | hd[1] = NULL; | |
344 | else | |
345 | hd[1] = drives_table[index].bdrv; | |
0d913fdb | 346 | ide_mem_index[0] = -1; |
e4bcb14c | 347 | ide_mem_index[1] = pmac_ide_init(hd, pic[0x0D]); |
3cbee15b JM |
348 | |
349 | /* cuda also initialize ADB */ | |
350 | cuda_init(&cuda_mem_index, pic[0x12]); | |
351 | ||
352 | adb_kbd_init(&adb_bus); | |
353 | adb_mouse_init(&adb_bus); | |
aae9366a | 354 | |
74e91155 | 355 | nvr = macio_nvram_init(&nvram_mem_index, 0x2000); |
3cbee15b JM |
356 | pmac_format_nvram_partition(nvr, 0x2000); |
357 | ||
358 | dbdma_init(&dbdma_mem_index); | |
28c5af54 | 359 | |
4d7ca41e | 360 | macio_init(pci_bus, 0x0010, 1, pic_mem_index, dbdma_mem_index, |
7fa9ae1a | 361 | cuda_mem_index, nvr, 2, ide_mem_index, escc_mem_index); |
3cbee15b JM |
362 | |
363 | if (usb_enabled) { | |
364 | usb_ohci_init_pci(pci_bus, 3, -1); | |
365 | } | |
366 | ||
367 | if (graphic_depth != 15 && graphic_depth != 32 && graphic_depth != 8) | |
368 | graphic_depth = 15; | |
369 | ||
370 | m48t59 = m48t59_init(dummy_irq[8], 0xFFF04000, 0x0074, NVRAM_SIZE, 59); | |
371 | nvram.opaque = m48t59; | |
372 | nvram.read_fn = &m48t59_read; | |
373 | nvram.write_fn = &m48t59_write; | |
6ac0e82d AZ |
374 | PPC_NVRAM_set_params(&nvram, NVRAM_SIZE, "HEATHROW", ram_size, |
375 | ppc_boot_device, kernel_base, kernel_size, | |
3cbee15b JM |
376 | kernel_cmdline, |
377 | initrd_base, initrd_size, | |
378 | /* XXX: need an option to load a NVRAM image */ | |
379 | 0, | |
380 | graphic_width, graphic_height, graphic_depth); | |
381 | /* No PCI init: the BIOS will do it */ | |
382 | ||
383 | /* Special port to get debug messages from Open-Firmware */ | |
384 | register_ioport_write(0x0F00, 4, 1, &PPC_debug_write, NULL); | |
271dd5e0 BS |
385 | |
386 | fw_cfg = fw_cfg_init(0, 0, CFG_ADDR, CFG_ADDR + 2); | |
387 | fw_cfg_add_i32(fw_cfg, FW_CFG_ID, 1); | |
388 | fw_cfg_add_i64(fw_cfg, FW_CFG_RAM_SIZE, (uint64_t)ram_size); | |
389 | fw_cfg_add_i16(fw_cfg, FW_CFG_MACHINE_ID, ARCH_HEATHROW); | |
3cbee15b JM |
390 | } |
391 | ||
392 | QEMUMachine heathrow_machine = { | |
4d7ca41e | 393 | .name = "g3beige", |
4b32e168 AL |
394 | .desc = "Heathrow based PowerMAC", |
395 | .init = ppc_heathrow_init, | |
a748ab6d | 396 | .ram_require = BIOS_SIZE + VGA_BIOS_SIZE + VGA_RAM_SIZE, |
3d878caa | 397 | .max_cpus = MAX_CPUS, |
3cbee15b | 398 | }; |