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