]>
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 | */ | |
25 | #if !defined(__PPC_MAC_H__) | |
26 | #define __PPC_MAC_H__ | |
27 | ||
022c62cb | 28 | #include "exec/memory.h" |
95ed3b7c | 29 | #include "hw/sysbus.h" |
07a7484e | 30 | #include "hw/ide/internal.h" |
1e39101c | 31 | |
3cbee15b JM |
32 | /* SMP is not enabled, for now */ |
33 | #define MAX_CPUS 1 | |
34 | ||
bba831e8 | 35 | #define BIOS_SIZE (1024 * 1024) |
3cbee15b | 36 | #define BIOS_FILENAME "ppc_rom.bin" |
3cbee15b | 37 | #define NVRAM_SIZE 0x2000 |
e5d01b06 | 38 | #define PROM_FILENAME "openbios-ppc" |
992e5acd | 39 | #define PROM_ADDR 0xfff00000 |
3cbee15b JM |
40 | |
41 | #define KERNEL_LOAD_ADDR 0x01000000 | |
b9e17a34 | 42 | #define KERNEL_GAP 0x00100000 |
3cbee15b | 43 | |
7fa9ae1a BS |
44 | #define ESCC_CLOCK 3686400 |
45 | ||
3cbee15b | 46 | /* Cuda */ |
45fa67fb AF |
47 | #define TYPE_CUDA "cuda" |
48 | #define CUDA(obj) OBJECT_CHECK(CUDAState, (obj), TYPE_CUDA) | |
49 | ||
50 | /** | |
51 | * CUDATimer: | |
52 | * @counter_value: counter value at load time | |
53 | */ | |
54 | typedef struct CUDATimer { | |
55 | int index; | |
56 | uint16_t latch; | |
57 | uint16_t counter_value; | |
58 | int64_t load_time; | |
59 | int64_t next_irq_time; | |
60 | QEMUTimer *timer; | |
61 | } CUDATimer; | |
62 | ||
63 | /** | |
64 | * CUDAState: | |
65 | * @b: B-side data | |
66 | * @a: A-side data | |
67 | * @dirb: B-side direction (1=output) | |
68 | * @dira: A-side direction (1=output) | |
69 | * @sr: Shift register | |
70 | * @acr: Auxiliary control register | |
71 | * @pcr: Peripheral control register | |
72 | * @ifr: Interrupt flag register | |
73 | * @ier: Interrupt enable register | |
74 | * @anh: A-side data, no handshake | |
75 | * @last_b: last value of B register | |
76 | * @last_acr: last value of ACR register | |
77 | */ | |
78 | typedef struct CUDAState { | |
79 | /*< private >*/ | |
80 | SysBusDevice parent_obj; | |
81 | /*< public >*/ | |
82 | ||
83 | MemoryRegion mem; | |
84 | /* cuda registers */ | |
85 | uint8_t b; | |
86 | uint8_t a; | |
87 | uint8_t dirb; | |
88 | uint8_t dira; | |
89 | uint8_t sr; | |
90 | uint8_t acr; | |
91 | uint8_t pcr; | |
92 | uint8_t ifr; | |
93 | uint8_t ier; | |
94 | uint8_t anh; | |
95 | ||
96 | CUDATimer timers[2]; | |
97 | ||
98 | uint32_t tick_offset; | |
99 | ||
100 | uint8_t last_b; | |
101 | uint8_t last_acr; | |
102 | ||
103 | int data_in_size; | |
104 | int data_in_index; | |
105 | int data_out_index; | |
106 | ||
107 | qemu_irq irq; | |
108 | uint8_t autopoll; | |
109 | uint8_t data_in[128]; | |
110 | uint8_t data_out[16]; | |
111 | QEMUTimer *adb_poll_timer; | |
112 | } CUDAState; | |
3cbee15b JM |
113 | |
114 | /* MacIO */ | |
d037834a AF |
115 | #define TYPE_OLDWORLD_MACIO "macio-oldworld" |
116 | #define TYPE_NEWWORLD_MACIO "macio-newworld" | |
07a7484e AF |
117 | |
118 | #define TYPE_MACIO_IDE "macio-ide" | |
119 | #define MACIO_IDE(obj) OBJECT_CHECK(MACIOIDEState, (obj), TYPE_MACIO_IDE) | |
120 | ||
121 | typedef struct MACIOIDEState { | |
122 | /*< private >*/ | |
123 | SysBusDevice parent_obj; | |
124 | /*< public >*/ | |
125 | ||
126 | qemu_irq irq; | |
127 | qemu_irq dma_irq; | |
128 | ||
129 | MemoryRegion mem; | |
130 | IDEBus bus; | |
131 | BlockDriverAIOCB *aiocb; | |
132 | } MACIOIDEState; | |
133 | ||
134 | void macio_ide_init_drives(MACIOIDEState *ide, DriveInfo **hd_table); | |
135 | void macio_ide_register_dma(MACIOIDEState *ide, void *dbdma, int channel); | |
136 | ||
d037834a | 137 | void macio_init(PCIDevice *dev, |
07a7484e | 138 | MemoryRegion *pic_mem, |
07a7484e | 139 | MemoryRegion *escc_mem); |
3cbee15b | 140 | |
3cbee15b | 141 | /* Heathrow PIC */ |
23c5e4ca | 142 | qemu_irq *heathrow_pic_init(MemoryRegion **pmem, |
3cbee15b JM |
143 | int nb_cpus, qemu_irq **irqs); |
144 | ||
145 | /* Grackle PCI */ | |
0e655047 | 146 | #define TYPE_GRACKLE_PCI_HOST_BRIDGE "grackle-pcihost" |
1e39101c | 147 | PCIBus *pci_grackle_init(uint32_t base, qemu_irq *pic, |
aee97b84 AK |
148 | MemoryRegion *address_space_mem, |
149 | MemoryRegion *address_space_io); | |
3cbee15b JM |
150 | |
151 | /* UniNorth PCI */ | |
aee97b84 AK |
152 | PCIBus *pci_pmac_init(qemu_irq *pic, |
153 | MemoryRegion *address_space_mem, | |
154 | MemoryRegion *address_space_io); | |
155 | PCIBus *pci_pmac_u3_init(qemu_irq *pic, | |
156 | MemoryRegion *address_space_mem, | |
157 | MemoryRegion *address_space_io); | |
3cbee15b JM |
158 | |
159 | /* Mac NVRAM */ | |
95ed3b7c AF |
160 | #define TYPE_MACIO_NVRAM "macio-nvram" |
161 | #define MACIO_NVRAM(obj) \ | |
162 | OBJECT_CHECK(MacIONVRAMState, (obj), TYPE_MACIO_NVRAM) | |
163 | ||
164 | typedef struct MacIONVRAMState { | |
165 | /*< private >*/ | |
166 | SysBusDevice parent_obj; | |
167 | /*< public >*/ | |
168 | ||
169 | uint32_t size; | |
170 | uint32_t it_shift; | |
171 | ||
172 | MemoryRegion mem; | |
173 | uint8_t *data; | |
174 | } MacIONVRAMState; | |
3cbee15b | 175 | |
3cbee15b | 176 | void pmac_format_nvram_partition (MacIONVRAMState *nvr, int len); |
3743cca7 AF |
177 | uint8_t macio_nvram_read(MacIONVRAMState *s, uint32_t addr); |
178 | void macio_nvram_write(MacIONVRAMState *s, uint32_t addr, uint8_t val); | |
3cbee15b | 179 | #endif /* !defined(__PPC_MAC_H__) */ |