2 * QEMU Uninorth PCI host (for all Mac99 and newer machines)
4 * Copyright (c) 2006 Fabrice Bellard
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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
32 #define UNIN_DPRINTF(fmt, args...) \
33 do { printf("UNIN: " fmt , ##args); } while (0)
35 #define UNIN_DPRINTF(fmt, args...)
38 typedef target_phys_addr_t pci_addr_t
;
41 typedef PCIHostState UNINState
;
43 static void pci_unin_main_config_writel (void *opaque
, target_phys_addr_t addr
,
46 UNINState
*s
= opaque
;
48 UNIN_DPRINTF("config_writel addr " TARGET_FMT_plx
" val %x\n", addr
, val
);
49 #ifdef TARGET_WORDS_BIGENDIAN
56 static uint32_t pci_unin_main_config_readl (void *opaque
,
57 target_phys_addr_t addr
)
59 UNINState
*s
= opaque
;
63 #ifdef TARGET_WORDS_BIGENDIAN
66 UNIN_DPRINTF("config_readl addr " TARGET_FMT_plx
" val %x\n", addr
, val
);
71 static CPUWriteMemoryFunc
*pci_unin_main_config_write
[] = {
72 &pci_unin_main_config_writel
,
73 &pci_unin_main_config_writel
,
74 &pci_unin_main_config_writel
,
77 static CPUReadMemoryFunc
*pci_unin_main_config_read
[] = {
78 &pci_unin_main_config_readl
,
79 &pci_unin_main_config_readl
,
80 &pci_unin_main_config_readl
,
83 static CPUWriteMemoryFunc
*pci_unin_main_write
[] = {
84 &pci_host_data_writeb
,
85 &pci_host_data_writew
,
86 &pci_host_data_writel
,
89 static CPUReadMemoryFunc
*pci_unin_main_read
[] = {
97 static void pci_unin_config_writel (void *opaque
, target_phys_addr_t addr
,
100 UNINState
*s
= opaque
;
102 #ifdef TARGET_WORDS_BIGENDIAN
105 s
->config_reg
= 0x80000000 | (val
& ~0x00000001);
108 static uint32_t pci_unin_config_readl (void *opaque
,
109 target_phys_addr_t addr
)
111 UNINState
*s
= opaque
;
114 val
= (s
->config_reg
| 0x00000001) & ~0x80000000;
115 #ifdef TARGET_WORDS_BIGENDIAN
122 static CPUWriteMemoryFunc
*pci_unin_config_write
[] = {
123 &pci_unin_config_writel
,
124 &pci_unin_config_writel
,
125 &pci_unin_config_writel
,
128 static CPUReadMemoryFunc
*pci_unin_config_read
[] = {
129 &pci_unin_config_readl
,
130 &pci_unin_config_readl
,
131 &pci_unin_config_readl
,
134 static CPUWriteMemoryFunc
*pci_unin_write
[] = {
135 &pci_host_pci_writeb
,
136 &pci_host_pci_writew
,
137 &pci_host_pci_writel
,
140 static CPUReadMemoryFunc
*pci_unin_read
[] = {
147 /* Don't know if this matches real hardware, but it agrees with OHW. */
148 static int pci_unin_map_irq(PCIDevice
*pci_dev
, int irq_num
)
150 return (irq_num
+ (pci_dev
->devfn
>> 3)) & 3;
153 static void pci_unin_set_irq(qemu_irq
*pic
, int irq_num
, int level
)
155 qemu_set_irq(pic
[irq_num
+ 8], level
);
158 static void pci_unin_save(QEMUFile
* f
, void *opaque
)
160 PCIDevice
*d
= opaque
;
162 pci_device_save(d
, f
);
165 static int pci_unin_load(QEMUFile
* f
, void *opaque
, int version_id
)
167 PCIDevice
*d
= opaque
;
172 return pci_device_load(d
, f
);
175 static void pci_unin_reset(void *opaque
)
179 PCIBus
*pci_pmac_init(qemu_irq
*pic
)
183 int pci_mem_config
, pci_mem_data
;
185 /* Use values found on a real PowerMac */
186 /* Uninorth main bus */
187 s
= qemu_mallocz(sizeof(UNINState
));
188 s
->bus
= pci_register_bus(pci_unin_set_irq
, pci_unin_map_irq
,
191 pci_mem_config
= cpu_register_io_memory(0, pci_unin_main_config_read
,
192 pci_unin_main_config_write
, s
);
193 pci_mem_data
= cpu_register_io_memory(0, pci_unin_main_read
,
194 pci_unin_main_write
, s
);
195 cpu_register_physical_memory(0xf2800000, 0x1000, pci_mem_config
);
196 cpu_register_physical_memory(0xf2c00000, 0x1000, pci_mem_data
);
197 d
= pci_register_device(s
->bus
, "Uni-north main", sizeof(PCIDevice
),
198 11 << 3, NULL
, NULL
);
199 pci_config_set_vendor_id(d
->config
, PCI_VENDOR_ID_APPLE
);
200 pci_config_set_device_id(d
->config
, PCI_DEVICE_ID_APPLE_UNI_N_PCI
);
201 d
->config
[0x08] = 0x00; // revision
202 pci_config_set_class(d
->config
, PCI_CLASS_BRIDGE_HOST
);
203 d
->config
[0x0C] = 0x08; // cache_line_size
204 d
->config
[0x0D] = 0x10; // latency_timer
205 d
->config
[0x0E] = 0x00; // header_type
206 d
->config
[0x34] = 0x00; // capabilities_pointer
208 #if 0 // XXX: not activated as PPC BIOS doesn't handle multiple buses properly
209 /* pci-to-pci bridge */
210 d
= pci_register_device("Uni-north bridge", sizeof(PCIDevice
), 0, 13 << 3,
212 pci_config_set_vendor_id(d
->config
, PCI_VENDOR_ID_DEC
);
213 pci_config_set_device_id(d
->config
, PCI_DEVICE_ID_DEC_21154
);
214 d
->config
[0x08] = 0x05; // revision
215 pci_config_set_class(d
->config
, PCI_CLASS_BRIDGE_PCI
);
216 d
->config
[0x0C] = 0x08; // cache_line_size
217 d
->config
[0x0D] = 0x20; // latency_timer
218 d
->config
[0x0E] = 0x01; // header_type
220 d
->config
[0x18] = 0x01; // primary_bus
221 d
->config
[0x19] = 0x02; // secondary_bus
222 d
->config
[0x1A] = 0x02; // subordinate_bus
223 d
->config
[0x1B] = 0x20; // secondary_latency_timer
224 d
->config
[0x1C] = 0x11; // io_base
225 d
->config
[0x1D] = 0x01; // io_limit
226 d
->config
[0x20] = 0x00; // memory_base
227 d
->config
[0x21] = 0x80;
228 d
->config
[0x22] = 0x00; // memory_limit
229 d
->config
[0x23] = 0x80;
230 d
->config
[0x24] = 0x01; // prefetchable_memory_base
231 d
->config
[0x25] = 0x80;
232 d
->config
[0x26] = 0xF1; // prefectchable_memory_limit
233 d
->config
[0x27] = 0x7F;
234 // d->config[0x34] = 0xdc // capabilities_pointer
236 #if 0 // XXX: not needed for now
237 /* Uninorth AGP bus */
239 pci_mem_config
= cpu_register_io_memory(0, pci_unin_config_read
,
240 pci_unin_config_write
, s
);
241 pci_mem_data
= cpu_register_io_memory(0, pci_unin_read
,
243 cpu_register_physical_memory(0xf0800000, 0x1000, pci_mem_config
);
244 cpu_register_physical_memory(0xf0c00000, 0x1000, pci_mem_data
);
246 d
= pci_register_device("Uni-north AGP", sizeof(PCIDevice
), 0, 11 << 3,
248 pci_config_set_vendor_id(d
->config
, PCI_VENDOR_ID_APPLE
);
249 pci_config_set_device_id(d
->config
, PCI_DEVICE_ID_APPLE_UNI_N_AGP
);
250 d
->config
[0x08] = 0x00; // revision
251 pci_config_set_class(d
->config
, PCI_CLASS_BRIDGE_HOST
);
252 d
->config
[0x0C] = 0x08; // cache_line_size
253 d
->config
[0x0D] = 0x10; // latency_timer
254 d
->config
[0x0E] = 0x00; // header_type
255 // d->config[0x34] = 0x80; // capabilities_pointer
258 #if 0 // XXX: not needed for now
259 /* Uninorth internal bus */
261 pci_mem_config
= cpu_register_io_memory(0, pci_unin_config_read
,
262 pci_unin_config_write
, s
);
263 pci_mem_data
= cpu_register_io_memory(0, pci_unin_read
,
265 cpu_register_physical_memory(0xf4800000, 0x1000, pci_mem_config
);
266 cpu_register_physical_memory(0xf4c00000, 0x1000, pci_mem_data
);
268 d
= pci_register_device("Uni-north internal", sizeof(PCIDevice
),
269 3, 11 << 3, NULL
, NULL
);
270 pci_config_set_vendor_id(d
->config
, PCI_VENDOR_ID_APPLE
);
271 pci_config_set_device_id(d
->config
, PCI_DEVICE_ID_APPLE_UNI_N_I_PCI
);
272 d
->config
[0x08] = 0x00; // revision
273 pci_config_set_class(d
->config
, PCI_CLASS_BRIDGE_HOST
);
274 d
->config
[0x0C] = 0x08; // cache_line_size
275 d
->config
[0x0D] = 0x10; // latency_timer
276 d
->config
[0x0E] = 0x00; // header_type
277 d
->config
[0x34] = 0x00; // capabilities_pointer
279 register_savevm("uninorth", 0, 1, pci_unin_save
, pci_unin_load
, d
);
280 qemu_register_reset(pci_unin_reset
, d
);