]> Git Repo - qemu.git/blame - hw/ppc_oldworld.c
Support multipart images as input to qemu-img (Salvador Fandino).
[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 */
25#include "vl.h"
26#include "ppc_mac.h"
27
28/* temporary frame buffer OSI calls for the video.x driver. The right
29 solution is to modify the driver to use VGA PCI I/Os */
30/* XXX: to be removed. This is no way related to emulation */
31static int vga_osi_call (CPUState *env)
32{
33 static int vga_vbl_enabled;
34 int linesize;
35
36 // printf("osi_call R5=%d\n", env->gpr[5]);
37
38 /* same handler as PearPC, coming from the original MOL video
39 driver. */
40 switch(env->gpr[5]) {
41 case 4:
42 break;
43 case 28: /* set_vmode */
44 if (env->gpr[6] != 1 || env->gpr[7] != 0)
45 env->gpr[3] = 1;
46 else
47 env->gpr[3] = 0;
48 break;
49 case 29: /* get_vmode_info */
50 if (env->gpr[6] != 0) {
51 if (env->gpr[6] != 1 || env->gpr[7] != 0) {
52 env->gpr[3] = 1;
53 break;
54 }
55 }
56 env->gpr[3] = 0;
57 env->gpr[4] = (1 << 16) | 1; /* num_vmodes, cur_vmode */
58 env->gpr[5] = (1 << 16) | 0; /* num_depths, cur_depth_mode */
59 env->gpr[6] = (graphic_width << 16) | graphic_height; /* w, h */
60 env->gpr[7] = 85 << 16; /* refresh rate */
61 env->gpr[8] = (graphic_depth + 7) & ~7; /* depth (round to byte) */
62 linesize = ((graphic_depth + 7) >> 3) * graphic_width;
63 linesize = (linesize + 3) & ~3;
64 env->gpr[9] = (linesize << 16) | 0; /* row_bytes, offset */
65 break;
66 case 31: /* set_video power */
67 env->gpr[3] = 0;
68 break;
69 case 39: /* video_ctrl */
70 if (env->gpr[6] == 0 || env->gpr[6] == 1)
71 vga_vbl_enabled = env->gpr[6];
72 env->gpr[3] = 0;
73 break;
74 case 47:
75 break;
76 case 59: /* set_color */
77 /* R6 = index, R7 = RGB */
78 env->gpr[3] = 0;
79 break;
80 case 64: /* get color */
81 /* R6 = index */
82 env->gpr[3] = 0;
83 break;
84 case 116: /* set hwcursor */
85 /* R6 = x, R7 = y, R8 = visible, R9 = data */
86 break;
87 default:
88 fprintf(stderr, "unsupported OSI call R5=" REGX "\n", env->gpr[5]);
89 break;
90 }
91
92 return 1; /* osi_call handled */
93}
94
95static void ppc_heathrow_init (int ram_size, int vga_ram_size, int boot_device,
96 DisplayState *ds, const char **fd_filename,
97 int snapshot,
98 const char *kernel_filename,
99 const char *kernel_cmdline,
100 const char *initrd_filename,
101 const char *cpu_model)
102{
103 CPUState *env, *envs[MAX_CPUS];
104 char buf[1024];
105 qemu_irq *pic, **heathrow_irqs;
106 nvram_t nvram;
107 m48t59_t *m48t59;
108 int linux_boot, i;
109 unsigned long bios_offset, vga_bios_offset;
110 uint32_t kernel_base, kernel_size, initrd_base, initrd_size;
111 ppc_def_t *def;
112 PCIBus *pci_bus;
113 MacIONVRAMState *nvr;
114 int vga_bios_size, bios_size;
115 qemu_irq *dummy_irq;
116 int pic_mem_index, nvram_mem_index, dbdma_mem_index, cuda_mem_index;
117
118 linux_boot = (kernel_filename != NULL);
119
120 /* init CPUs */
121 env = cpu_init();
122 if (cpu_model == NULL)
123 cpu_model = "default";
124 ppc_find_by_name(cpu_model, &def);
125 if (def == NULL) {
126 cpu_abort(env, "Unable to find PowerPC CPU definition\n");
127 }
128 for (i = 0; i < smp_cpus; i++) {
129 cpu_ppc_register(env, def);
130 cpu_ppc_reset(env);
131 /* Set time-base frequency to 100 Mhz */
132 cpu_ppc_tb_init(env, 100UL * 1000UL * 1000UL);
133 env->osi_call = vga_osi_call;
134 qemu_register_reset(&cpu_ppc_reset, env);
135 register_savevm("cpu", 0, 3, cpu_save, cpu_load, env);
136 envs[i] = env;
137 }
4c823cff
JM
138 if (env->nip < 0xFFF80000) {
139 /* Special test for PowerPC 601:
140 * the boot vector is at 0xFFF00100, then we need a 1MB BIOS.
141 * But the NVRAM is located at 0xFFF04000...
142 */
143 cpu_abort(env, "G3BW Mac hardware can not handle 1 MB BIOS\n");
144 }
3cbee15b
JM
145
146 /* allocate RAM */
147 cpu_register_physical_memory(0, ram_size, IO_MEM_RAM);
148
149 /* allocate and load BIOS */
150 bios_offset = ram_size + vga_ram_size;
151 if (bios_name == NULL)
152 bios_name = BIOS_FILENAME;
153 snprintf(buf, sizeof(buf), "%s/%s", bios_dir, bios_name);
154 bios_size = load_image(buf, phys_ram_base + bios_offset);
155 if (bios_size < 0 || bios_size > BIOS_SIZE) {
156 cpu_abort(env, "qemu: could not load PowerPC bios '%s'\n", buf);
157 exit(1);
158 }
159 bios_size = (bios_size + 0xfff) & ~0xfff;
4c823cff
JM
160 if (bios_size > 0x00080000) {
161 /* As the NVRAM is located at 0xFFF04000, we cannot use 1 MB BIOSes */
162 cpu_abort(env, "G3BW Mac hardware can not handle 1 MB BIOS\n");
163 }
3cbee15b
JM
164 cpu_register_physical_memory((uint32_t)(-bios_size),
165 bios_size, bios_offset | IO_MEM_ROM);
166
167 /* allocate and load VGA BIOS */
168 vga_bios_offset = bios_offset + bios_size;
169 snprintf(buf, sizeof(buf), "%s/%s", bios_dir, VGABIOS_FILENAME);
170 vga_bios_size = load_image(buf, phys_ram_base + vga_bios_offset + 8);
171 if (vga_bios_size < 0) {
172 /* if no bios is present, we can still work */
173 fprintf(stderr, "qemu: warning: could not load VGA bios '%s'\n", buf);
174 vga_bios_size = 0;
175 } else {
176 /* set a specific header (XXX: find real Apple format for NDRV
177 drivers) */
178 phys_ram_base[vga_bios_offset] = 'N';
179 phys_ram_base[vga_bios_offset + 1] = 'D';
180 phys_ram_base[vga_bios_offset + 2] = 'R';
181 phys_ram_base[vga_bios_offset + 3] = 'V';
182 cpu_to_be32w((uint32_t *)(phys_ram_base + vga_bios_offset + 4),
183 vga_bios_size);
184 vga_bios_size += 8;
185 }
186 vga_bios_size = (vga_bios_size + 0xfff) & ~0xfff;
187
188 if (linux_boot) {
189 kernel_base = KERNEL_LOAD_ADDR;
190 /* now we can load the kernel */
191 kernel_size = load_image(kernel_filename, phys_ram_base + kernel_base);
192 if (kernel_size < 0) {
193 cpu_abort(env, "qemu: could not load kernel '%s'\n",
194 kernel_filename);
195 exit(1);
196 }
197 /* load initrd */
198 if (initrd_filename) {
199 initrd_base = INITRD_LOAD_ADDR;
200 initrd_size = load_image(initrd_filename,
201 phys_ram_base + initrd_base);
202 if (initrd_size < 0) {
203 cpu_abort(env, "qemu: could not load initial ram disk '%s'\n",
204 initrd_filename);
205 exit(1);
206 }
207 } else {
208 initrd_base = 0;
209 initrd_size = 0;
210 }
211 boot_device = 'm';
212 } else {
213 kernel_base = 0;
214 kernel_size = 0;
215 initrd_base = 0;
216 initrd_size = 0;
217 }
218
219 isa_mem_base = 0x80000000;
220
221 /* Register 2 MB of ISA IO space */
222 isa_mmio_init(0xfe000000, 0x00200000);
223
224 /* XXX: we register only 1 output pin for heathrow PIC */
225 heathrow_irqs = qemu_mallocz(smp_cpus * sizeof(qemu_irq *));
226 heathrow_irqs[0] =
227 qemu_mallocz(smp_cpus * sizeof(qemu_irq) * 1);
228 /* Connect the heathrow PIC outputs to the 6xx bus */
229 for (i = 0; i < smp_cpus; i++) {
230 switch (PPC_INPUT(env)) {
231 case PPC_FLAGS_INPUT_6xx:
232 heathrow_irqs[i] = heathrow_irqs[0] + (i * 1);
233 heathrow_irqs[i][0] =
234 ((qemu_irq *)env->irq_inputs)[PPC6xx_INPUT_INT];
235 break;
236 default:
237 cpu_abort(env, "Bus model not supported on OldWorld Mac machine\n");
238 exit(1);
239 }
240 }
241
242 /* init basic PC hardware */
243 if (PPC_INPUT(env) != PPC_FLAGS_INPUT_6xx) {
244 cpu_abort(env, "Only 6xx bus is supported on heathrow machine\n");
245 exit(1);
246 }
247 pic = heathrow_pic_init(&pic_mem_index, 1, heathrow_irqs);
248 pci_bus = pci_grackle_init(0xfec00000, pic);
249 pci_vga_init(pci_bus, ds, phys_ram_base + ram_size,
250 ram_size, vga_ram_size,
251 vga_bios_offset, vga_bios_size);
252
253 /* XXX: suppress that */
254 dummy_irq = i8259_init(NULL);
255
256 /* XXX: use Mac Serial port */
257 serial_init(0x3f8, dummy_irq[4], serial_hds[0]);
258
259 for(i = 0; i < nb_nics; i++) {
260 if (!nd_table[i].model)
261 nd_table[i].model = "ne2k_pci";
262 pci_nic_init(pci_bus, &nd_table[i], -1);
263 }
264
265 pci_cmd646_ide_init(pci_bus, &bs_table[0], 0);
266
267 /* cuda also initialize ADB */
268 cuda_init(&cuda_mem_index, pic[0x12]);
269
270 adb_kbd_init(&adb_bus);
271 adb_mouse_init(&adb_bus);
272
273 nvr = macio_nvram_init(&nvram_mem_index);
274 pmac_format_nvram_partition(nvr, 0x2000);
275
276 dbdma_init(&dbdma_mem_index);
277
278 macio_init(pci_bus, 0x0017, 1, pic_mem_index, dbdma_mem_index,
279 cuda_mem_index, nvram_mem_index, 0, NULL);
280
281 if (usb_enabled) {
282 usb_ohci_init_pci(pci_bus, 3, -1);
283 }
284
285 if (graphic_depth != 15 && graphic_depth != 32 && graphic_depth != 8)
286 graphic_depth = 15;
287
288 m48t59 = m48t59_init(dummy_irq[8], 0xFFF04000, 0x0074, NVRAM_SIZE, 59);
289 nvram.opaque = m48t59;
290 nvram.read_fn = &m48t59_read;
291 nvram.write_fn = &m48t59_write;
292 PPC_NVRAM_set_params(&nvram, NVRAM_SIZE, "HEATHROW", ram_size, boot_device,
293 kernel_base, kernel_size,
294 kernel_cmdline,
295 initrd_base, initrd_size,
296 /* XXX: need an option to load a NVRAM image */
297 0,
298 graphic_width, graphic_height, graphic_depth);
299 /* No PCI init: the BIOS will do it */
300
301 /* Special port to get debug messages from Open-Firmware */
302 register_ioport_write(0x0F00, 4, 1, &PPC_debug_write, NULL);
303}
304
305QEMUMachine heathrow_machine = {
306 "g3bw",
307 "Heathrow based PowerMAC",
308 ppc_heathrow_init,
309};
This page took 0.052455 seconds and 4 git commands to generate.