Unify IRQ handling.
[qemu] / hw / ppc_chrp.c
1 /*
2  * QEMU PPC CHRP/PMAC hardware System Emulator
3  * 
4  * Copyright (c) 2004-2007 Fabrice Bellard
5  * 
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to deal
8  * in the Software without restriction, including without limitation the rights
9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10  * copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22  * THE SOFTWARE.
23  */
24 #include "vl.h"
25
26 #define BIOS_FILENAME "ppc_rom.bin"
27 #define VGABIOS_FILENAME "video.x"
28 #define NVRAM_SIZE        0x2000
29
30 #define KERNEL_LOAD_ADDR 0x01000000
31 #define INITRD_LOAD_ADDR 0x01800000
32
33 /* MacIO devices (mapped inside the MacIO address space): CUDA, DBDMA,
34    NVRAM */
35
36 static int dbdma_mem_index;
37 static int cuda_mem_index;
38 static int ide0_mem_index = -1;
39 static int ide1_mem_index = -1;
40 static int openpic_mem_index = -1;
41 static int heathrow_pic_mem_index = -1;
42 static int macio_nvram_mem_index = -1;
43
44 /* DBDMA: currently no op - should suffice right now */
45
46 static void dbdma_writeb (void *opaque, target_phys_addr_t addr, uint32_t value)
47 {
48     printf("%s: 0x%08x <= 0x%08x\n", __func__, addr, value);
49 }
50
51 static void dbdma_writew (void *opaque, target_phys_addr_t addr, uint32_t value)
52 {
53 }
54
55 static void dbdma_writel (void *opaque, target_phys_addr_t addr, uint32_t value)
56 {
57 }
58
59 static uint32_t dbdma_readb (void *opaque, target_phys_addr_t addr)
60 {
61     printf("%s: 0x%08x => 0x00000000\n", __func__, addr);
62     return 0;
63 }
64
65 static uint32_t dbdma_readw (void *opaque, target_phys_addr_t addr)
66 {
67     return 0;
68 }
69
70 static uint32_t dbdma_readl (void *opaque, target_phys_addr_t addr)
71 {
72     return 0;
73 }
74
75 static CPUWriteMemoryFunc *dbdma_write[] = {
76     &dbdma_writeb,
77     &dbdma_writew,
78     &dbdma_writel,
79 };
80
81 static CPUReadMemoryFunc *dbdma_read[] = {
82     &dbdma_readb,
83     &dbdma_readw,
84     &dbdma_readl,
85 };
86
87 /* macio style NVRAM device */
88 typedef struct MacIONVRAMState {
89     uint8_t data[0x2000];
90 } MacIONVRAMState;
91
92 static void macio_nvram_writeb (void *opaque, target_phys_addr_t addr, uint32_t value)
93 {
94     MacIONVRAMState *s = opaque;
95     addr = (addr >> 4) & 0x1fff;
96     s->data[addr] = value;
97     //    printf("macio_nvram_writeb %04x = %02x\n", addr, value);
98 }
99
100 static uint32_t macio_nvram_readb (void *opaque, target_phys_addr_t addr)
101 {
102     MacIONVRAMState *s = opaque;
103     uint32_t value;
104
105     addr = (addr >> 4) & 0x1fff;
106     value = s->data[addr];
107     //    printf("macio_nvram_readb %04x = %02x\n", addr, value);
108     return value;
109 }
110
111 static CPUWriteMemoryFunc *macio_nvram_write[] = {
112     &macio_nvram_writeb,
113     &macio_nvram_writeb,
114     &macio_nvram_writeb,
115 };
116
117 static CPUReadMemoryFunc *macio_nvram_read[] = {
118     &macio_nvram_readb,
119     &macio_nvram_readb,
120     &macio_nvram_readb,
121 };
122
123 static MacIONVRAMState *macio_nvram_init(void)
124 {
125     MacIONVRAMState *s;
126     s = qemu_mallocz(sizeof(MacIONVRAMState));
127     if (!s)
128         return NULL;
129     macio_nvram_mem_index = cpu_register_io_memory(0, macio_nvram_read, 
130                                                    macio_nvram_write, s);
131     return s;
132 }
133
134 static void macio_map(PCIDevice *pci_dev, int region_num, 
135                       uint32_t addr, uint32_t size, int type)
136 {
137     if (heathrow_pic_mem_index >= 0) {
138         cpu_register_physical_memory(addr + 0x00000, 0x1000, 
139                                      heathrow_pic_mem_index);
140     }
141     cpu_register_physical_memory(addr + 0x08000, 0x1000, dbdma_mem_index);
142     cpu_register_physical_memory(addr + 0x16000, 0x2000, cuda_mem_index);
143     if (ide0_mem_index >= 0)
144         cpu_register_physical_memory(addr + 0x1f000, 0x1000, ide0_mem_index);
145     if (ide1_mem_index >= 0)
146         cpu_register_physical_memory(addr + 0x20000, 0x1000, ide1_mem_index);
147     if (openpic_mem_index >= 0) {
148         cpu_register_physical_memory(addr + 0x40000, 0x40000, 
149                                      openpic_mem_index);
150     }
151     if (macio_nvram_mem_index >= 0)
152         cpu_register_physical_memory(addr + 0x60000, 0x20000, macio_nvram_mem_index);
153 }
154
155 static void macio_init(PCIBus *bus, int device_id)
156 {
157     PCIDevice *d;
158
159     d = pci_register_device(bus, "macio", sizeof(PCIDevice),
160                             -1, NULL, NULL);
161     /* Note: this code is strongly inspirated from the corresponding code
162        in PearPC */
163     d->config[0x00] = 0x6b; // vendor_id
164     d->config[0x01] = 0x10;
165     d->config[0x02] = device_id;
166     d->config[0x03] = device_id >> 8;
167
168     d->config[0x0a] = 0x00; // class_sub = pci2pci
169     d->config[0x0b] = 0xff; // class_base = bridge
170     d->config[0x0e] = 0x00; // header_type
171
172     d->config[0x3d] = 0x01; // interrupt on pin 1
173     
174     dbdma_mem_index = cpu_register_io_memory(0, dbdma_read, dbdma_write, NULL);
175
176     pci_register_io_region(d, 0, 0x80000, 
177                            PCI_ADDRESS_SPACE_MEM, macio_map);
178 }
179
180 /* UniN device */
181 static void unin_writel (void *opaque, target_phys_addr_t addr, uint32_t value)
182 {
183 }
184
185 static uint32_t unin_readl (void *opaque, target_phys_addr_t addr)
186 {
187     return 0;
188 }
189
190 static CPUWriteMemoryFunc *unin_write[] = {
191     &unin_writel,
192     &unin_writel,
193     &unin_writel,
194 };
195
196 static CPUReadMemoryFunc *unin_read[] = {
197     &unin_readl,
198     &unin_readl,
199     &unin_readl,
200 };
201
202 /* temporary frame buffer OSI calls for the video.x driver. The right
203    solution is to modify the driver to use VGA PCI I/Os */
204 static int vga_osi_call(CPUState *env)
205 {
206     static int vga_vbl_enabled;
207     int linesize;
208     
209     //    printf("osi_call R5=%d\n", env->gpr[5]);
210
211     /* same handler as PearPC, coming from the original MOL video
212        driver. */
213     switch(env->gpr[5]) {
214     case 4:
215         break;
216     case 28: /* set_vmode */
217         if (env->gpr[6] != 1 || env->gpr[7] != 0)
218             env->gpr[3] = 1;
219         else
220             env->gpr[3] = 0;
221         break;
222     case 29: /* get_vmode_info */
223         if (env->gpr[6] != 0) {
224             if (env->gpr[6] != 1 || env->gpr[7] != 0) {
225                 env->gpr[3] = 1;
226                 break;
227             }
228         }
229         env->gpr[3] = 0; 
230         env->gpr[4] = (1 << 16) | 1; /* num_vmodes, cur_vmode */
231         env->gpr[5] = (1 << 16) | 0; /* num_depths, cur_depth_mode */
232         env->gpr[6] = (graphic_width << 16) | graphic_height; /* w, h */
233         env->gpr[7] = 85 << 16; /* refresh rate */
234         env->gpr[8] = (graphic_depth + 7) & ~7; /* depth (round to byte) */
235         linesize = ((graphic_depth + 7) >> 3) * graphic_width;
236         linesize = (linesize + 3) & ~3;
237         env->gpr[9] = (linesize << 16) | 0; /* row_bytes, offset */
238         break;
239     case 31: /* set_video power */
240         env->gpr[3] = 0;
241         break;
242     case 39: /* video_ctrl */
243         if (env->gpr[6] == 0 || env->gpr[6] == 1)
244             vga_vbl_enabled = env->gpr[6];
245         env->gpr[3] = 0;
246         break;
247     case 47:
248         break;
249     case 59: /* set_color */
250         /* R6 = index, R7 = RGB */
251         env->gpr[3] = 0;
252         break;
253     case 64: /* get color */
254         /* R6 = index */
255         env->gpr[3] = 0; 
256         break;
257     case 116: /* set hwcursor */
258         /* R6 = x, R7 = y, R8 = visible, R9 = data */
259         break;
260     default:
261         fprintf(stderr, "unsupported OSI call R5=%08x\n", env->gpr[5]);
262         break;
263     }
264     return 1; /* osi_call handled */
265 }
266
267 static uint8_t nvram_chksum(const uint8_t *buf, int n)
268 {
269     int sum, i;
270     sum = 0;
271     for(i = 0; i < n; i++)
272         sum += buf[i];
273     return (sum & 0xff) + (sum >> 8);
274 }
275
276 /* set a free Mac OS NVRAM partition */
277 void pmac_format_nvram_partition(uint8_t *buf, int len)
278 {
279     char partition_name[12] = "wwwwwwwwwwww";
280     
281     buf[0] = 0x7f; /* free partition magic */
282     buf[1] = 0; /* checksum */
283     buf[2] = len >> 8;
284     buf[3] = len;
285     memcpy(buf + 4, partition_name, 12);
286     buf[1] = nvram_chksum(buf, 16);
287 }    
288
289 /* PowerPC CHRP hardware initialisation */
290 static void ppc_chrp_init (int ram_size, int vga_ram_size, int boot_device,
291                            DisplayState *ds, const char **fd_filename,
292                            int snapshot,
293                            const char *kernel_filename,
294                            const char *kernel_cmdline,
295                            const char *initrd_filename,
296                            const char *cpu_model,
297                            int is_heathrow)
298 {
299     CPUState *env;
300     char buf[1024];
301     qemu_irq *pic;
302     m48t59_t *nvram;
303     int unin_memory;
304     int linux_boot, i;
305     unsigned long bios_offset, vga_bios_offset;
306     uint32_t kernel_base, kernel_size, initrd_base, initrd_size;
307     ppc_def_t *def;
308     PCIBus *pci_bus;
309     const char *arch_name;
310     int vga_bios_size, bios_size;
311     qemu_irq *dummy_irq;
312
313     linux_boot = (kernel_filename != NULL);
314
315     /* init CPUs */
316     env = cpu_init();
317     register_savevm("cpu", 0, 3, cpu_save, cpu_load, env);
318
319     /* Default CPU is a generic 74x/75x */
320     if (cpu_model == NULL)
321         cpu_model = "750";
322     /* XXX: CPU model (or PVR) should be provided on command line */
323     //    ppc_find_by_name("750gx", &def); // Linux boot OK
324     //    ppc_find_by_name("750fx", &def); // Linux boot OK
325     /* Linux does not boot on 750cxe (and probably other 750cx based)
326      * because it assumes it has 8 IBAT & DBAT pairs as it only have 4.
327      */
328     ppc_find_by_name(cpu_model, &def);
329     if (def == NULL) {
330         cpu_abort(env, "Unable to find PowerPC CPU definition\n");
331     }
332     cpu_ppc_register(env, def);
333     cpu_ppc_irq_init_cpu(env);
334
335     /* Set time-base frequency to 100 Mhz */
336     cpu_ppc_tb_init(env, 100UL * 1000UL * 1000UL);
337     
338     env->osi_call = vga_osi_call;
339
340     /* allocate RAM */
341     cpu_register_physical_memory(0, ram_size, IO_MEM_RAM);
342
343     /* allocate and load BIOS */
344     bios_offset = ram_size + vga_ram_size;
345     snprintf(buf, sizeof(buf), "%s/%s", bios_dir, BIOS_FILENAME);
346     bios_size = load_image(buf, phys_ram_base + bios_offset);
347     if (bios_size < 0 || bios_size > BIOS_SIZE) {
348         fprintf(stderr, "qemu: could not load PowerPC bios '%s'\n", buf);
349         exit(1);
350     }
351     bios_size = (bios_size + 0xfff) & ~0xfff;
352     cpu_register_physical_memory((uint32_t)(-bios_size), 
353                                  bios_size, bios_offset | IO_MEM_ROM);
354     
355     /* allocate and load VGA BIOS */
356     vga_bios_offset = bios_offset + bios_size;
357     snprintf(buf, sizeof(buf), "%s/%s", bios_dir, VGABIOS_FILENAME);
358     vga_bios_size = load_image(buf, phys_ram_base + vga_bios_offset + 8);
359     if (vga_bios_size < 0) {
360         /* if no bios is present, we can still work */
361         fprintf(stderr, "qemu: warning: could not load VGA bios '%s'\n", buf);
362         vga_bios_size = 0;
363     } else {
364         /* set a specific header (XXX: find real Apple format for NDRV
365            drivers) */
366         phys_ram_base[vga_bios_offset] = 'N';
367         phys_ram_base[vga_bios_offset + 1] = 'D';
368         phys_ram_base[vga_bios_offset + 2] = 'R';
369         phys_ram_base[vga_bios_offset + 3] = 'V';
370         cpu_to_be32w((uint32_t *)(phys_ram_base + vga_bios_offset + 4), 
371                      vga_bios_size);
372         vga_bios_size += 8;
373     }
374     vga_bios_size = (vga_bios_size + 0xfff) & ~0xfff;
375     
376     if (linux_boot) {
377         kernel_base = KERNEL_LOAD_ADDR;
378         /* now we can load the kernel */
379         kernel_size = load_image(kernel_filename, phys_ram_base + kernel_base);
380         if (kernel_size < 0) {
381             fprintf(stderr, "qemu: could not load kernel '%s'\n", 
382                     kernel_filename);
383             exit(1);
384         }
385         /* load initrd */
386         if (initrd_filename) {
387             initrd_base = INITRD_LOAD_ADDR;
388             initrd_size = load_image(initrd_filename,
389                                      phys_ram_base + initrd_base);
390             if (initrd_size < 0) {
391                 fprintf(stderr, "qemu: could not load initial ram disk '%s'\n", 
392                         initrd_filename);
393                 exit(1);
394             }
395         } else {
396             initrd_base = 0;
397             initrd_size = 0;
398         }
399         boot_device = 'm';
400     } else {
401         kernel_base = 0;
402         kernel_size = 0;
403         initrd_base = 0;
404         initrd_size = 0;
405     }
406
407     if (is_heathrow) {
408         isa_mem_base = 0x80000000;
409         
410         /* Register 2 MB of ISA IO space */
411         isa_mmio_init(0xfe000000, 0x00200000);
412
413         /* init basic PC hardware */
414         pic = heathrow_pic_init(&heathrow_pic_mem_index);
415         pci_bus = pci_grackle_init(0xfec00000, pic);
416         pci_vga_init(pci_bus, ds, phys_ram_base + ram_size, 
417                      ram_size, vga_ram_size,
418                      vga_bios_offset, vga_bios_size);
419
420         /* XXX: suppress that */
421         dummy_irq = i8259_init(NULL);
422         
423         /* XXX: use Mac Serial port */
424         serial_init(0x3f8, dummy_irq[4], serial_hds[0]);
425         
426         for(i = 0; i < nb_nics; i++) {
427             if (!nd_table[i].model)
428                 nd_table[i].model = "ne2k_pci";
429             pci_nic_init(pci_bus, &nd_table[i], -1);
430         }
431         
432         pci_cmd646_ide_init(pci_bus, &bs_table[0], 0);
433
434         /* cuda also initialize ADB */
435         cuda_mem_index = cuda_init(pic[0x12]);
436         
437         adb_kbd_init(&adb_bus);
438         adb_mouse_init(&adb_bus);
439         
440         {
441             MacIONVRAMState *nvr;
442             nvr = macio_nvram_init();
443             pmac_format_nvram_partition(nvr->data, 0x2000);
444         }
445
446         macio_init(pci_bus, 0x0017);
447
448         nvram = m48t59_init(dummy_irq[8], 0xFFF04000, 0x0074, NVRAM_SIZE, 59);
449
450         arch_name = "HEATHROW";
451     } else {
452         isa_mem_base = 0x80000000;
453
454         /* Register 8 MB of ISA IO space */
455         isa_mmio_init(0xf2000000, 0x00800000);
456
457         /* UniN init */
458         unin_memory = cpu_register_io_memory(0, unin_read, unin_write, NULL);
459         cpu_register_physical_memory(0xf8000000, 0x00001000, unin_memory);
460
461         pic = openpic_init(NULL, &ppc_openpic_irq, &openpic_mem_index, 1, &env);
462         pci_bus = pci_pmac_init(pic);
463         /* init basic PC hardware */
464         pci_vga_init(pci_bus, ds, phys_ram_base + ram_size,
465                      ram_size, vga_ram_size,
466                      vga_bios_offset, vga_bios_size);
467
468         /* XXX: suppress that */
469         dummy_irq = i8259_init(NULL);
470
471         /* XXX: use Mac Serial port */
472         serial_init(0x3f8, dummy_irq[4], serial_hds[0]);
473         for(i = 0; i < nb_nics; i++) {
474             if (!nd_table[i].model)
475                 nd_table[i].model = "ne2k_pci";
476             pci_nic_init(pci_bus, &nd_table[i], -1);
477         }
478 #if 1
479         ide0_mem_index = pmac_ide_init(&bs_table[0], pic[0x13]);
480         ide1_mem_index = pmac_ide_init(&bs_table[2], pic[0x14]);
481 #else
482         pci_cmd646_ide_init(pci_bus, &bs_table[0], 0);
483 #endif
484         /* cuda also initialize ADB */
485         cuda_mem_index = cuda_init(pic[0x19]);
486         
487         adb_kbd_init(&adb_bus);
488         adb_mouse_init(&adb_bus);
489         
490         macio_init(pci_bus, 0x0022);
491         
492         nvram = m48t59_init(dummy_irq[8], 0xFFF04000, 0x0074, NVRAM_SIZE, 59);
493         
494         arch_name = "MAC99";
495     }
496
497     if (usb_enabled) {
498         usb_ohci_init_pci(pci_bus, 3, -1);
499     }
500
501     if (graphic_depth != 15 && graphic_depth != 32 && graphic_depth != 8)
502         graphic_depth = 15;
503
504     PPC_NVRAM_set_params(nvram, NVRAM_SIZE, arch_name, ram_size, boot_device,
505                          kernel_base, kernel_size,
506                          kernel_cmdline,
507                          initrd_base, initrd_size,
508                          /* XXX: need an option to load a NVRAM image */
509                          0,
510                          graphic_width, graphic_height, graphic_depth);
511     /* No PCI init: the BIOS will do it */
512
513     /* Special port to get debug messages from Open-Firmware */
514     register_ioport_write(0x0F00, 4, 1, &PPC_debug_write, NULL);
515 }
516
517 static void ppc_core99_init (int ram_size, int vga_ram_size, int boot_device,
518                              DisplayState *ds, const char **fd_filename,
519                              int snapshot,
520                              const char *kernel_filename,
521                              const char *kernel_cmdline,
522                              const char *initrd_filename,
523                              const char *cpu_model)
524 {
525     ppc_chrp_init(ram_size, vga_ram_size, boot_device,
526                   ds, fd_filename, snapshot,
527                   kernel_filename, kernel_cmdline,
528                   initrd_filename, cpu_model, 0);
529 }
530     
531 static void ppc_heathrow_init (int ram_size, int vga_ram_size, int boot_device,
532                                DisplayState *ds, const char **fd_filename,
533                                int snapshot,
534                                const char *kernel_filename,
535                                const char *kernel_cmdline,
536                                const char *initrd_filename,
537                                const char *cpu_model)
538 {
539     ppc_chrp_init(ram_size, vga_ram_size, boot_device,
540                   ds, fd_filename, snapshot,
541                   kernel_filename, kernel_cmdline,
542                   initrd_filename, cpu_model, 1);
543 }
544
545 QEMUMachine core99_machine = {
546     "mac99",
547     "Mac99 based PowerMAC",
548     ppc_core99_init,
549 };
550
551 QEMUMachine heathrow_machine = {
552     "g3bw",
553     "Heathrow based PowerMAC",
554     ppc_heathrow_init,
555 };