]>
Commit | Line | Data |
---|---|---|
3cbee15b JM |
1 | /* |
2 | * QEMU PowerMac emulation shared definitions and prototypes | |
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 | */ | |
2a6a4076 MA |
25 | |
26 | #ifndef PPC_MAC_H | |
27 | #define PPC_MAC_H | |
3cbee15b | 28 | |
022c62cb | 29 | #include "exec/memory.h" |
95ed3b7c | 30 | #include "hw/sysbus.h" |
07a7484e | 31 | #include "hw/ide/internal.h" |
0d09e41a | 32 | #include "hw/input/adb.h" |
09a57347 | 33 | #include "hw/misc/mos6522.h" |
1e39101c | 34 | |
3cbee15b JM |
35 | /* SMP is not enabled, for now */ |
36 | #define MAX_CPUS 1 | |
37 | ||
bba831e8 | 38 | #define BIOS_SIZE (1024 * 1024) |
3cbee15b | 39 | #define NVRAM_SIZE 0x2000 |
e5d01b06 | 40 | #define PROM_FILENAME "openbios-ppc" |
992e5acd | 41 | #define PROM_ADDR 0xfff00000 |
3cbee15b JM |
42 | |
43 | #define KERNEL_LOAD_ADDR 0x01000000 | |
b9e17a34 | 44 | #define KERNEL_GAP 0x00100000 |
3cbee15b | 45 | |
7fa9ae1a BS |
46 | #define ESCC_CLOCK 3686400 |
47 | ||
09a57347 | 48 | |
3cbee15b | 49 | /* MacIO */ |
07a7484e AF |
50 | #define TYPE_MACIO_IDE "macio-ide" |
51 | #define MACIO_IDE(obj) OBJECT_CHECK(MACIOIDEState, (obj), TYPE_MACIO_IDE) | |
52 | ||
53 | typedef struct MACIOIDEState { | |
54 | /*< private >*/ | |
55 | SysBusDevice parent_obj; | |
56 | /*< public >*/ | |
0fc84331 | 57 | uint32_t channel; |
4f7265ff BH |
58 | qemu_irq real_ide_irq; |
59 | qemu_irq real_dma_irq; | |
60 | qemu_irq ide_irq; | |
07a7484e AF |
61 | qemu_irq dma_irq; |
62 | ||
63 | MemoryRegion mem; | |
64 | IDEBus bus; | |
4aa3510f AG |
65 | IDEDMA dma; |
66 | void *dbdma; | |
cae32357 | 67 | bool dma_active; |
4f7265ff BH |
68 | uint32_t timing_reg; |
69 | uint32_t irq_reg; | |
07a7484e AF |
70 | } MACIOIDEState; |
71 | ||
72 | void macio_ide_init_drives(MACIOIDEState *ide, DriveInfo **hd_table); | |
e451b85f | 73 | void macio_ide_register_dma(MACIOIDEState *ide); |
07a7484e | 74 | |
d037834a | 75 | void macio_init(PCIDevice *dev, |
343bd85a | 76 | MemoryRegion *pic_mem); |
3cbee15b | 77 | |
3cbee15b | 78 | /* Heathrow PIC */ |
c2964600 MCA |
79 | DeviceState *heathrow_pic_init(int nb_cpus, qemu_irq **irqs, |
80 | qemu_irq **pic_irqs); | |
3cbee15b JM |
81 | |
82 | /* Grackle PCI */ | |
0e655047 | 83 | #define TYPE_GRACKLE_PCI_HOST_BRIDGE "grackle-pcihost" |
1e39101c | 84 | PCIBus *pci_grackle_init(uint32_t base, qemu_irq *pic, |
aee97b84 AK |
85 | MemoryRegion *address_space_mem, |
86 | MemoryRegion *address_space_io); | |
3cbee15b JM |
87 | |
88 | /* UniNorth PCI */ | |
aee97b84 AK |
89 | PCIBus *pci_pmac_init(qemu_irq *pic, |
90 | MemoryRegion *address_space_mem, | |
91 | MemoryRegion *address_space_io); | |
92 | PCIBus *pci_pmac_u3_init(qemu_irq *pic, | |
93 | MemoryRegion *address_space_mem, | |
94 | MemoryRegion *address_space_io); | |
3cbee15b JM |
95 | |
96 | /* Mac NVRAM */ | |
95ed3b7c AF |
97 | #define TYPE_MACIO_NVRAM "macio-nvram" |
98 | #define MACIO_NVRAM(obj) \ | |
99 | OBJECT_CHECK(MacIONVRAMState, (obj), TYPE_MACIO_NVRAM) | |
100 | ||
101 | typedef struct MacIONVRAMState { | |
102 | /*< private >*/ | |
103 | SysBusDevice parent_obj; | |
104 | /*< public >*/ | |
105 | ||
106 | uint32_t size; | |
107 | uint32_t it_shift; | |
108 | ||
109 | MemoryRegion mem; | |
110 | uint8_t *data; | |
111 | } MacIONVRAMState; | |
3cbee15b | 112 | |
3cbee15b | 113 | void pmac_format_nvram_partition (MacIONVRAMState *nvr, int len); |
2a6a4076 | 114 | #endif /* PPC_MAC_H */ |