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
33 #define UNIN_DPRINTF(fmt, ...) \
34 do { printf("UNIN: " fmt , ## __VA_ARGS__); } while (0)
36 #define UNIN_DPRINTF(fmt, ...)
39 static const int unin_irq_line
[] = { 0x1b, 0x1c, 0x1d, 0x1e };
41 typedef struct UNINState
{
42 PCIHostState host_state
;
43 MemoryRegion pci_mmio
;
44 MemoryRegion pci_hole
;
47 static int pci_unin_map_irq(PCIDevice
*pci_dev
, int irq_num
)
50 int devfn
= pci_dev
->devfn
& 0x00FFFFFF;
52 retval
= (((devfn
>> 11) & 0x1F) + irq_num
) & 3;
57 static void pci_unin_set_irq(void *opaque
, int irq_num
, int level
)
59 qemu_irq
*pic
= opaque
;
61 UNIN_DPRINTF("%s: setting INT %d = %d\n", __func__
,
62 unin_irq_line
[irq_num
], level
);
63 qemu_set_irq(pic
[unin_irq_line
[irq_num
]], level
);
66 static uint32_t unin_get_config_reg(uint32_t reg
, uint32_t addr
)
70 if (reg
& (1u << 31)) {
71 /* XXX OpenBIOS compatibility hack */
72 retval
= reg
| (addr
& 3);
75 retval
= (reg
& ~7u) | (addr
& 7);
79 /* Grab CFA0 style values */
80 slot
= ffs(reg
& 0xfffff800) - 1;
81 func
= (reg
>> 8) & 7;
83 /* ... and then convert them to x86 format */
85 retval
= (reg
& (0xff - 7)) | (addr
& 7);
93 UNIN_DPRINTF("Converted config space accessor %08x/%08x -> %08x\n",
99 static void unin_data_write(void *opaque
, target_phys_addr_t addr
,
100 uint64_t val
, unsigned len
)
102 UNINState
*s
= opaque
;
103 UNIN_DPRINTF("write addr %" TARGET_FMT_plx
" len %d val %"PRIx64
"\n",
105 pci_data_write(s
->host_state
.bus
,
106 unin_get_config_reg(s
->host_state
.config_reg
, addr
),
110 static uint64_t unin_data_read(void *opaque
, target_phys_addr_t addr
,
113 UNINState
*s
= opaque
;
116 val
= pci_data_read(s
->host_state
.bus
,
117 unin_get_config_reg(s
->host_state
.config_reg
, addr
),
119 UNIN_DPRINTF("read addr %" TARGET_FMT_plx
" len %d val %x\n",
124 static const MemoryRegionOps unin_data_ops
= {
125 .read
= unin_data_read
,
126 .write
= unin_data_write
,
127 .endianness
= DEVICE_LITTLE_ENDIAN
,
130 static int pci_unin_main_init_device(SysBusDevice
*dev
)
135 /* Use values found on a real PowerMac */
136 /* Uninorth main bus */
137 h
= FROM_SYSBUS(PCIHostState
, dev
);
138 s
= DO_UPCAST(UNINState
, host_state
, h
);
140 memory_region_init_io(&s
->host_state
.conf_mem
, &pci_host_conf_le_ops
,
141 &s
->host_state
, "pci-conf-idx", 0x1000);
142 memory_region_init_io(&s
->host_state
.data_mem
, &unin_data_ops
, s
,
143 "pci-conf-data", 0x1000);
144 sysbus_init_mmio(dev
, &s
->host_state
.conf_mem
);
145 sysbus_init_mmio(dev
, &s
->host_state
.data_mem
);
151 static int pci_u3_agp_init_device(SysBusDevice
*dev
)
156 /* Uninorth U3 AGP bus */
157 h
= FROM_SYSBUS(PCIHostState
, dev
);
158 s
= DO_UPCAST(UNINState
, host_state
, h
);
160 memory_region_init_io(&s
->host_state
.conf_mem
, &pci_host_conf_le_ops
,
161 &s
->host_state
, "pci-conf-idx", 0x1000);
162 memory_region_init_io(&s
->host_state
.data_mem
, &unin_data_ops
, s
,
163 "pci-conf-data", 0x1000);
164 sysbus_init_mmio(dev
, &s
->host_state
.conf_mem
);
165 sysbus_init_mmio(dev
, &s
->host_state
.data_mem
);
170 static int pci_unin_agp_init_device(SysBusDevice
*dev
)
175 /* Uninorth AGP bus */
176 h
= FROM_SYSBUS(PCIHostState
, dev
);
177 s
= DO_UPCAST(UNINState
, host_state
, h
);
179 memory_region_init_io(&s
->host_state
.conf_mem
, &pci_host_conf_le_ops
,
180 &s
->host_state
, "pci-conf-idx", 0x1000);
181 memory_region_init_io(&s
->host_state
.data_mem
, &pci_host_data_le_ops
,
182 &s
->host_state
, "pci-conf-data", 0x1000);
183 sysbus_init_mmio(dev
, &s
->host_state
.conf_mem
);
184 sysbus_init_mmio(dev
, &s
->host_state
.data_mem
);
188 static int pci_unin_internal_init_device(SysBusDevice
*dev
)
193 /* Uninorth internal bus */
194 h
= FROM_SYSBUS(PCIHostState
, dev
);
195 s
= DO_UPCAST(UNINState
, host_state
, h
);
197 memory_region_init_io(&s
->host_state
.conf_mem
, &pci_host_conf_le_ops
,
198 &s
->host_state
, "pci-conf-idx", 0x1000);
199 memory_region_init_io(&s
->host_state
.data_mem
, &pci_host_data_le_ops
,
200 &s
->host_state
, "pci-conf-data", 0x1000);
201 sysbus_init_mmio(dev
, &s
->host_state
.conf_mem
);
202 sysbus_init_mmio(dev
, &s
->host_state
.data_mem
);
206 PCIBus
*pci_pmac_init(qemu_irq
*pic
,
207 MemoryRegion
*address_space_mem
,
208 MemoryRegion
*address_space_io
)
215 /* Use values found on a real PowerMac */
216 /* Uninorth main bus */
217 dev
= qdev_create(NULL
, "uni-north-pci-pcihost");
218 qdev_init_nofail(dev
);
219 s
= sysbus_from_qdev(dev
);
220 h
= FROM_SYSBUS(PCIHostState
, s
);
221 d
= DO_UPCAST(UNINState
, host_state
, h
);
222 memory_region_init(&d
->pci_mmio
, "pci-mmio", 0x100000000ULL
);
223 memory_region_init_alias(&d
->pci_hole
, "pci-hole", &d
->pci_mmio
,
224 0x80000000ULL
, 0x70000000ULL
);
225 memory_region_add_subregion(address_space_mem
, 0x80000000ULL
,
228 d
->host_state
.bus
= pci_register_bus(dev
, "pci",
229 pci_unin_set_irq
, pci_unin_map_irq
,
233 PCI_DEVFN(11, 0), 4);
236 pci_create_simple(d
->host_state
.bus
, PCI_DEVFN(11, 0), "uni-north");
239 sysbus_mmio_map(s
, 0, 0xf2800000);
240 sysbus_mmio_map(s
, 1, 0xf2c00000);
242 /* DEC 21154 bridge */
244 /* XXX: not activated as PPC BIOS doesn't handle multiple buses properly */
245 pci_create_simple(d
->host_state
.bus
, PCI_DEVFN(12, 0), "dec-21154");
248 /* Uninorth AGP bus */
249 pci_create_simple(d
->host_state
.bus
, PCI_DEVFN(11, 0), "uni-north-agp");
250 dev
= qdev_create(NULL
, "uni-north-agp-pcihost");
251 qdev_init_nofail(dev
);
252 s
= sysbus_from_qdev(dev
);
253 sysbus_mmio_map(s
, 0, 0xf0800000);
254 sysbus_mmio_map(s
, 1, 0xf0c00000);
256 /* Uninorth internal bus */
258 /* XXX: not needed for now */
259 pci_create_simple(d
->host_state
.bus
, PCI_DEVFN(14, 0),
260 "uni-north-internal-pci");
261 dev
= qdev_create(NULL
, "uni-north-internal-pci-pcihost");
262 qdev_init_nofail(dev
);
263 s
= sysbus_from_qdev(dev
);
264 sysbus_mmio_map(s
, 0, 0xf4800000);
265 sysbus_mmio_map(s
, 1, 0xf4c00000);
268 return d
->host_state
.bus
;
271 PCIBus
*pci_pmac_u3_init(qemu_irq
*pic
,
272 MemoryRegion
*address_space_mem
,
273 MemoryRegion
*address_space_io
)
280 /* Uninorth AGP bus */
282 dev
= qdev_create(NULL
, "u3-agp-pcihost");
283 qdev_init_nofail(dev
);
284 s
= sysbus_from_qdev(dev
);
285 h
= FROM_SYSBUS(PCIHostState
, s
);
286 d
= DO_UPCAST(UNINState
, host_state
, h
);
288 memory_region_init(&d
->pci_mmio
, "pci-mmio", 0x100000000ULL
);
289 memory_region_init_alias(&d
->pci_hole
, "pci-hole", &d
->pci_mmio
,
290 0x80000000ULL
, 0x70000000ULL
);
291 memory_region_add_subregion(address_space_mem
, 0x80000000ULL
,
294 d
->host_state
.bus
= pci_register_bus(dev
, "pci",
295 pci_unin_set_irq
, pci_unin_map_irq
,
299 PCI_DEVFN(11, 0), 4);
301 sysbus_mmio_map(s
, 0, 0xf0800000);
302 sysbus_mmio_map(s
, 1, 0xf0c00000);
304 pci_create_simple(d
->host_state
.bus
, 11 << 3, "u3-agp");
306 return d
->host_state
.bus
;
309 static int unin_main_pci_host_init(PCIDevice
*d
)
311 d
->config
[0x0C] = 0x08; // cache_line_size
312 d
->config
[0x0D] = 0x10; // latency_timer
313 d
->config
[0x34] = 0x00; // capabilities_pointer
317 static int unin_agp_pci_host_init(PCIDevice
*d
)
319 d
->config
[0x0C] = 0x08; // cache_line_size
320 d
->config
[0x0D] = 0x10; // latency_timer
321 // d->config[0x34] = 0x80; // capabilities_pointer
325 static int u3_agp_pci_host_init(PCIDevice
*d
)
327 /* cache line size */
328 d
->config
[0x0C] = 0x08;
330 d
->config
[0x0D] = 0x10;
334 static int unin_internal_pci_host_init(PCIDevice
*d
)
336 d
->config
[0x0C] = 0x08; // cache_line_size
337 d
->config
[0x0D] = 0x10; // latency_timer
338 d
->config
[0x34] = 0x00; // capabilities_pointer
342 static void unin_main_pci_host_class_init(ObjectClass
*klass
, void *data
)
344 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
346 k
->init
= unin_main_pci_host_init
;
347 k
->vendor_id
= PCI_VENDOR_ID_APPLE
;
348 k
->device_id
= PCI_DEVICE_ID_APPLE_UNI_N_PCI
;
350 k
->class_id
= PCI_CLASS_BRIDGE_HOST
;
353 static TypeInfo unin_main_pci_host_info
= {
354 .name
= "uni-north-pci",
355 .parent
= TYPE_PCI_DEVICE
,
356 .instance_size
= sizeof(PCIDevice
),
357 .class_init
= unin_main_pci_host_class_init
,
360 static void u3_agp_pci_host_class_init(ObjectClass
*klass
, void *data
)
362 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
364 k
->init
= u3_agp_pci_host_init
;
365 k
->vendor_id
= PCI_VENDOR_ID_APPLE
;
366 k
->device_id
= PCI_DEVICE_ID_APPLE_U3_AGP
;
368 k
->class_id
= PCI_CLASS_BRIDGE_HOST
;
371 static TypeInfo u3_agp_pci_host_info
= {
373 .parent
= TYPE_PCI_DEVICE
,
374 .instance_size
= sizeof(PCIDevice
),
375 .class_init
= u3_agp_pci_host_class_init
,
378 static void unin_agp_pci_host_class_init(ObjectClass
*klass
, void *data
)
380 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
382 k
->init
= unin_agp_pci_host_init
;
383 k
->vendor_id
= PCI_VENDOR_ID_APPLE
;
384 k
->device_id
= PCI_DEVICE_ID_APPLE_UNI_N_AGP
;
386 k
->class_id
= PCI_CLASS_BRIDGE_HOST
;
389 static TypeInfo unin_agp_pci_host_info
= {
390 .name
= "uni-north-agp",
391 .parent
= TYPE_PCI_DEVICE
,
392 .instance_size
= sizeof(PCIDevice
),
393 .class_init
= unin_agp_pci_host_class_init
,
396 static void unin_internal_pci_host_class_init(ObjectClass
*klass
, void *data
)
398 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
400 k
->init
= unin_internal_pci_host_init
;
401 k
->vendor_id
= PCI_VENDOR_ID_APPLE
;
402 k
->device_id
= PCI_DEVICE_ID_APPLE_UNI_N_I_PCI
;
404 k
->class_id
= PCI_CLASS_BRIDGE_HOST
;
407 static TypeInfo unin_internal_pci_host_info
= {
408 .name
= "uni-north-internal-pci",
409 .parent
= TYPE_PCI_DEVICE
,
410 .instance_size
= sizeof(PCIDevice
),
411 .class_init
= unin_internal_pci_host_class_init
,
414 static void pci_unin_main_class_init(ObjectClass
*klass
, void *data
)
416 SysBusDeviceClass
*sbc
= SYS_BUS_DEVICE_CLASS(klass
);
418 sbc
->init
= pci_unin_main_init_device
;
421 static TypeInfo pci_unin_main_info
= {
422 .name
= "uni-north-pci-pcihost",
423 .parent
= TYPE_SYS_BUS_DEVICE
,
424 .instance_size
= sizeof(UNINState
),
425 .class_init
= pci_unin_main_class_init
,
428 static void pci_u3_agp_class_init(ObjectClass
*klass
, void *data
)
430 SysBusDeviceClass
*sbc
= SYS_BUS_DEVICE_CLASS(klass
);
432 sbc
->init
= pci_u3_agp_init_device
;
435 static TypeInfo pci_u3_agp_info
= {
436 .name
= "u3-agp-pcihost",
437 .parent
= TYPE_SYS_BUS_DEVICE
,
438 .instance_size
= sizeof(UNINState
),
439 .class_init
= pci_u3_agp_class_init
,
442 static void pci_unin_agp_class_init(ObjectClass
*klass
, void *data
)
444 SysBusDeviceClass
*sbc
= SYS_BUS_DEVICE_CLASS(klass
);
446 sbc
->init
= pci_unin_agp_init_device
;
449 static TypeInfo pci_unin_agp_info
= {
450 .name
= "uni-north-agp-pcihost",
451 .parent
= TYPE_SYS_BUS_DEVICE
,
452 .instance_size
= sizeof(UNINState
),
453 .class_init
= pci_unin_agp_class_init
,
456 static void pci_unin_internal_class_init(ObjectClass
*klass
, void *data
)
458 SysBusDeviceClass
*sbc
= SYS_BUS_DEVICE_CLASS(klass
);
460 sbc
->init
= pci_unin_internal_init_device
;
463 static TypeInfo pci_unin_internal_info
= {
464 .name
= "uni-north-internal-pci-pcihost",
465 .parent
= TYPE_SYS_BUS_DEVICE
,
466 .instance_size
= sizeof(UNINState
),
467 .class_init
= pci_unin_internal_class_init
,
470 static void unin_register_types(void)
472 type_register_static(&unin_main_pci_host_info
);
473 type_register_static(&u3_agp_pci_host_info
);
474 type_register_static(&unin_agp_pci_host_info
);
475 type_register_static(&unin_internal_pci_host_info
);
477 type_register_static(&pci_unin_main_info
);
478 type_register_static(&pci_u3_agp_info
);
479 type_register_static(&pci_unin_agp_info
);
480 type_register_static(&pci_unin_internal_info
);
483 type_init(unin_register_types
)