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
25 #include "hw/ppc/mac.h"
26 #include "hw/pci/pci.h"
27 #include "hw/pci/pci_host.h"
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 #define TYPE_UNI_NORTH_PCI_HOST_BRIDGE "uni-north-pci-pcihost"
42 #define TYPE_UNI_NORTH_AGP_HOST_BRIDGE "uni-north-agp-pcihost"
43 #define TYPE_UNI_NORTH_INTERNAL_PCI_HOST_BRIDGE "uni-north-internal-pci-pcihost"
44 #define TYPE_U3_AGP_HOST_BRIDGE "u3-agp-pcihost"
46 #define UNI_NORTH_PCI_HOST_BRIDGE(obj) \
47 OBJECT_CHECK(UNINState, (obj), TYPE_UNI_NORTH_PCI_HOST_BRIDGE)
48 #define UNI_NORTH_AGP_HOST_BRIDGE(obj) \
49 OBJECT_CHECK(UNINState, (obj), TYPE_UNI_NORTH_AGP_HOST_BRIDGE)
50 #define UNI_NORTH_INTERNAL_PCI_HOST_BRIDGE(obj) \
51 OBJECT_CHECK(UNINState, (obj), TYPE_UNI_NORTH_INTERNAL_PCI_HOST_BRIDGE)
52 #define U3_AGP_HOST_BRIDGE(obj) \
53 OBJECT_CHECK(UNINState, (obj), TYPE_U3_AGP_HOST_BRIDGE)
55 typedef struct UNINState
{
56 PCIHostState parent_obj
;
58 MemoryRegion pci_mmio
;
59 MemoryRegion pci_hole
;
62 static int pci_unin_map_irq(PCIDevice
*pci_dev
, int irq_num
)
65 int devfn
= pci_dev
->devfn
& 0x00FFFFFF;
67 retval
= (((devfn
>> 11) & 0x1F) + irq_num
) & 3;
72 static void pci_unin_set_irq(void *opaque
, int irq_num
, int level
)
74 qemu_irq
*pic
= opaque
;
76 UNIN_DPRINTF("%s: setting INT %d = %d\n", __func__
,
77 unin_irq_line
[irq_num
], level
);
78 qemu_set_irq(pic
[unin_irq_line
[irq_num
]], level
);
81 static uint32_t unin_get_config_reg(uint32_t reg
, uint32_t addr
)
85 if (reg
& (1u << 31)) {
86 /* XXX OpenBIOS compatibility hack */
87 retval
= reg
| (addr
& 3);
90 retval
= (reg
& ~7u) | (addr
& 7);
94 /* Grab CFA0 style values */
95 slot
= ffs(reg
& 0xfffff800) - 1;
96 func
= (reg
>> 8) & 7;
98 /* ... and then convert them to x86 format */
100 retval
= (reg
& (0xff - 7)) | (addr
& 7);
102 retval
|= slot
<< 11;
108 UNIN_DPRINTF("Converted config space accessor %08x/%08x -> %08x\n",
114 static void unin_data_write(void *opaque
, hwaddr addr
,
115 uint64_t val
, unsigned len
)
117 UNINState
*s
= opaque
;
118 PCIHostState
*phb
= PCI_HOST_BRIDGE(s
);
119 UNIN_DPRINTF("write addr %" TARGET_FMT_plx
" len %d val %"PRIx64
"\n",
121 pci_data_write(phb
->bus
,
122 unin_get_config_reg(phb
->config_reg
, addr
),
126 static uint64_t unin_data_read(void *opaque
, hwaddr addr
,
129 UNINState
*s
= opaque
;
130 PCIHostState
*phb
= PCI_HOST_BRIDGE(s
);
133 val
= pci_data_read(phb
->bus
,
134 unin_get_config_reg(phb
->config_reg
, addr
),
136 UNIN_DPRINTF("read addr %" TARGET_FMT_plx
" len %d val %x\n",
141 static const MemoryRegionOps unin_data_ops
= {
142 .read
= unin_data_read
,
143 .write
= unin_data_write
,
144 .endianness
= DEVICE_LITTLE_ENDIAN
,
147 static int pci_unin_main_init_device(SysBusDevice
*dev
)
151 /* Use values found on a real PowerMac */
152 /* Uninorth main bus */
153 h
= PCI_HOST_BRIDGE(dev
);
155 memory_region_init_io(&h
->conf_mem
, OBJECT(h
), &pci_host_conf_le_ops
,
156 dev
, "pci-conf-idx", 0x1000);
157 memory_region_init_io(&h
->data_mem
, OBJECT(h
), &unin_data_ops
, dev
,
158 "pci-conf-data", 0x1000);
159 sysbus_init_mmio(dev
, &h
->conf_mem
);
160 sysbus_init_mmio(dev
, &h
->data_mem
);
166 static int pci_u3_agp_init_device(SysBusDevice
*dev
)
170 /* Uninorth U3 AGP bus */
171 h
= PCI_HOST_BRIDGE(dev
);
173 memory_region_init_io(&h
->conf_mem
, OBJECT(h
), &pci_host_conf_le_ops
,
174 dev
, "pci-conf-idx", 0x1000);
175 memory_region_init_io(&h
->data_mem
, OBJECT(h
), &unin_data_ops
, dev
,
176 "pci-conf-data", 0x1000);
177 sysbus_init_mmio(dev
, &h
->conf_mem
);
178 sysbus_init_mmio(dev
, &h
->data_mem
);
183 static int pci_unin_agp_init_device(SysBusDevice
*dev
)
187 /* Uninorth AGP bus */
188 h
= PCI_HOST_BRIDGE(dev
);
190 memory_region_init_io(&h
->conf_mem
, OBJECT(h
), &pci_host_conf_le_ops
,
191 dev
, "pci-conf-idx", 0x1000);
192 memory_region_init_io(&h
->data_mem
, OBJECT(h
), &pci_host_data_le_ops
,
193 dev
, "pci-conf-data", 0x1000);
194 sysbus_init_mmio(dev
, &h
->conf_mem
);
195 sysbus_init_mmio(dev
, &h
->data_mem
);
199 static int pci_unin_internal_init_device(SysBusDevice
*dev
)
203 /* Uninorth internal bus */
204 h
= PCI_HOST_BRIDGE(dev
);
206 memory_region_init_io(&h
->conf_mem
, OBJECT(h
), &pci_host_conf_le_ops
,
207 dev
, "pci-conf-idx", 0x1000);
208 memory_region_init_io(&h
->data_mem
, OBJECT(h
), &pci_host_data_le_ops
,
209 dev
, "pci-conf-data", 0x1000);
210 sysbus_init_mmio(dev
, &h
->conf_mem
);
211 sysbus_init_mmio(dev
, &h
->data_mem
);
215 PCIBus
*pci_pmac_init(qemu_irq
*pic
,
216 MemoryRegion
*address_space_mem
,
217 MemoryRegion
*address_space_io
)
224 /* Use values found on a real PowerMac */
225 /* Uninorth main bus */
226 dev
= qdev_create(NULL
, TYPE_UNI_NORTH_PCI_HOST_BRIDGE
);
227 qdev_init_nofail(dev
);
228 s
= SYS_BUS_DEVICE(dev
);
229 h
= PCI_HOST_BRIDGE(s
);
230 d
= UNI_NORTH_PCI_HOST_BRIDGE(dev
);
231 memory_region_init(&d
->pci_mmio
, OBJECT(d
), "pci-mmio", 0x100000000ULL
);
232 memory_region_init_alias(&d
->pci_hole
, OBJECT(d
), "pci-hole", &d
->pci_mmio
,
233 0x80000000ULL
, 0x10000000ULL
);
234 memory_region_add_subregion(address_space_mem
, 0x80000000ULL
,
237 h
->bus
= pci_register_bus(dev
, NULL
,
238 pci_unin_set_irq
, pci_unin_map_irq
,
242 PCI_DEVFN(11, 0), 4, TYPE_PCI_BUS
);
245 pci_create_simple(h
->bus
, PCI_DEVFN(11, 0), "uni-north");
248 sysbus_mmio_map(s
, 0, 0xf2800000);
249 sysbus_mmio_map(s
, 1, 0xf2c00000);
251 /* DEC 21154 bridge */
253 /* XXX: not activated as PPC BIOS doesn't handle multiple buses properly */
254 pci_create_simple(h
->bus
, PCI_DEVFN(12, 0), "dec-21154");
257 /* Uninorth AGP bus */
258 pci_create_simple(h
->bus
, PCI_DEVFN(11, 0), "uni-north-agp");
259 dev
= qdev_create(NULL
, TYPE_UNI_NORTH_AGP_HOST_BRIDGE
);
260 qdev_init_nofail(dev
);
261 s
= SYS_BUS_DEVICE(dev
);
262 sysbus_mmio_map(s
, 0, 0xf0800000);
263 sysbus_mmio_map(s
, 1, 0xf0c00000);
265 /* Uninorth internal bus */
267 /* XXX: not needed for now */
268 pci_create_simple(h
->bus
, PCI_DEVFN(14, 0),
269 "uni-north-internal-pci");
270 dev
= qdev_create(NULL
, TYPE_UNI_NORTH_INTERNAL_PCI_HOST_BRIDGE
);
271 qdev_init_nofail(dev
);
272 s
= SYS_BUS_DEVICE(dev
);
273 sysbus_mmio_map(s
, 0, 0xf4800000);
274 sysbus_mmio_map(s
, 1, 0xf4c00000);
280 PCIBus
*pci_pmac_u3_init(qemu_irq
*pic
,
281 MemoryRegion
*address_space_mem
,
282 MemoryRegion
*address_space_io
)
289 /* Uninorth AGP bus */
291 dev
= qdev_create(NULL
, TYPE_U3_AGP_HOST_BRIDGE
);
292 qdev_init_nofail(dev
);
293 s
= SYS_BUS_DEVICE(dev
);
294 h
= PCI_HOST_BRIDGE(dev
);
295 d
= U3_AGP_HOST_BRIDGE(dev
);
297 memory_region_init(&d
->pci_mmio
, OBJECT(d
), "pci-mmio", 0x100000000ULL
);
298 memory_region_init_alias(&d
->pci_hole
, OBJECT(d
), "pci-hole", &d
->pci_mmio
,
299 0x80000000ULL
, 0x70000000ULL
);
300 memory_region_add_subregion(address_space_mem
, 0x80000000ULL
,
303 h
->bus
= pci_register_bus(dev
, NULL
,
304 pci_unin_set_irq
, pci_unin_map_irq
,
308 PCI_DEVFN(11, 0), 4, TYPE_PCI_BUS
);
310 sysbus_mmio_map(s
, 0, 0xf0800000);
311 sysbus_mmio_map(s
, 1, 0xf0c00000);
313 pci_create_simple(h
->bus
, 11 << 3, "u3-agp");
318 static int unin_main_pci_host_init(PCIDevice
*d
)
320 d
->config
[0x0C] = 0x08; // cache_line_size
321 d
->config
[0x0D] = 0x10; // latency_timer
322 d
->config
[0x34] = 0x00; // capabilities_pointer
326 static int unin_agp_pci_host_init(PCIDevice
*d
)
328 d
->config
[0x0C] = 0x08; // cache_line_size
329 d
->config
[0x0D] = 0x10; // latency_timer
330 // d->config[0x34] = 0x80; // capabilities_pointer
334 static int u3_agp_pci_host_init(PCIDevice
*d
)
336 /* cache line size */
337 d
->config
[0x0C] = 0x08;
339 d
->config
[0x0D] = 0x10;
343 static int unin_internal_pci_host_init(PCIDevice
*d
)
345 d
->config
[0x0C] = 0x08; // cache_line_size
346 d
->config
[0x0D] = 0x10; // latency_timer
347 d
->config
[0x34] = 0x00; // capabilities_pointer
351 static void unin_main_pci_host_class_init(ObjectClass
*klass
, void *data
)
353 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
354 DeviceClass
*dc
= DEVICE_CLASS(klass
);
356 k
->init
= unin_main_pci_host_init
;
357 k
->vendor_id
= PCI_VENDOR_ID_APPLE
;
358 k
->device_id
= PCI_DEVICE_ID_APPLE_UNI_N_PCI
;
360 k
->class_id
= PCI_CLASS_BRIDGE_HOST
;
362 * PCI-facing part of the host bridge, not usable without the
363 * host-facing part, which can't be device_add'ed, yet.
365 dc
->cannot_instantiate_with_device_add_yet
= true;
368 static const TypeInfo unin_main_pci_host_info
= {
369 .name
= "uni-north-pci",
370 .parent
= TYPE_PCI_DEVICE
,
371 .instance_size
= sizeof(PCIDevice
),
372 .class_init
= unin_main_pci_host_class_init
,
375 static void u3_agp_pci_host_class_init(ObjectClass
*klass
, void *data
)
377 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
378 DeviceClass
*dc
= DEVICE_CLASS(klass
);
380 k
->init
= u3_agp_pci_host_init
;
381 k
->vendor_id
= PCI_VENDOR_ID_APPLE
;
382 k
->device_id
= PCI_DEVICE_ID_APPLE_U3_AGP
;
384 k
->class_id
= PCI_CLASS_BRIDGE_HOST
;
386 * PCI-facing part of the host bridge, not usable without the
387 * host-facing part, which can't be device_add'ed, yet.
389 dc
->cannot_instantiate_with_device_add_yet
= true;
392 static const TypeInfo u3_agp_pci_host_info
= {
394 .parent
= TYPE_PCI_DEVICE
,
395 .instance_size
= sizeof(PCIDevice
),
396 .class_init
= u3_agp_pci_host_class_init
,
399 static void unin_agp_pci_host_class_init(ObjectClass
*klass
, void *data
)
401 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
402 DeviceClass
*dc
= DEVICE_CLASS(klass
);
404 k
->init
= unin_agp_pci_host_init
;
405 k
->vendor_id
= PCI_VENDOR_ID_APPLE
;
406 k
->device_id
= PCI_DEVICE_ID_APPLE_UNI_N_AGP
;
408 k
->class_id
= PCI_CLASS_BRIDGE_HOST
;
410 * PCI-facing part of the host bridge, not usable without the
411 * host-facing part, which can't be device_add'ed, yet.
413 dc
->cannot_instantiate_with_device_add_yet
= true;
416 static const TypeInfo unin_agp_pci_host_info
= {
417 .name
= "uni-north-agp",
418 .parent
= TYPE_PCI_DEVICE
,
419 .instance_size
= sizeof(PCIDevice
),
420 .class_init
= unin_agp_pci_host_class_init
,
423 static void unin_internal_pci_host_class_init(ObjectClass
*klass
, void *data
)
425 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
426 DeviceClass
*dc
= DEVICE_CLASS(klass
);
428 k
->init
= unin_internal_pci_host_init
;
429 k
->vendor_id
= PCI_VENDOR_ID_APPLE
;
430 k
->device_id
= PCI_DEVICE_ID_APPLE_UNI_N_I_PCI
;
432 k
->class_id
= PCI_CLASS_BRIDGE_HOST
;
434 * PCI-facing part of the host bridge, not usable without the
435 * host-facing part, which can't be device_add'ed, yet.
437 dc
->cannot_instantiate_with_device_add_yet
= true;
440 static const TypeInfo unin_internal_pci_host_info
= {
441 .name
= "uni-north-internal-pci",
442 .parent
= TYPE_PCI_DEVICE
,
443 .instance_size
= sizeof(PCIDevice
),
444 .class_init
= unin_internal_pci_host_class_init
,
447 static void pci_unin_main_class_init(ObjectClass
*klass
, void *data
)
449 SysBusDeviceClass
*sbc
= SYS_BUS_DEVICE_CLASS(klass
);
451 sbc
->init
= pci_unin_main_init_device
;
454 static const TypeInfo pci_unin_main_info
= {
455 .name
= TYPE_UNI_NORTH_PCI_HOST_BRIDGE
,
456 .parent
= TYPE_PCI_HOST_BRIDGE
,
457 .instance_size
= sizeof(UNINState
),
458 .class_init
= pci_unin_main_class_init
,
461 static void pci_u3_agp_class_init(ObjectClass
*klass
, void *data
)
463 SysBusDeviceClass
*sbc
= SYS_BUS_DEVICE_CLASS(klass
);
465 sbc
->init
= pci_u3_agp_init_device
;
468 static const TypeInfo pci_u3_agp_info
= {
469 .name
= TYPE_U3_AGP_HOST_BRIDGE
,
470 .parent
= TYPE_PCI_HOST_BRIDGE
,
471 .instance_size
= sizeof(UNINState
),
472 .class_init
= pci_u3_agp_class_init
,
475 static void pci_unin_agp_class_init(ObjectClass
*klass
, void *data
)
477 SysBusDeviceClass
*sbc
= SYS_BUS_DEVICE_CLASS(klass
);
479 sbc
->init
= pci_unin_agp_init_device
;
482 static const TypeInfo pci_unin_agp_info
= {
483 .name
= TYPE_UNI_NORTH_AGP_HOST_BRIDGE
,
484 .parent
= TYPE_PCI_HOST_BRIDGE
,
485 .instance_size
= sizeof(UNINState
),
486 .class_init
= pci_unin_agp_class_init
,
489 static void pci_unin_internal_class_init(ObjectClass
*klass
, void *data
)
491 SysBusDeviceClass
*sbc
= SYS_BUS_DEVICE_CLASS(klass
);
493 sbc
->init
= pci_unin_internal_init_device
;
496 static const TypeInfo pci_unin_internal_info
= {
497 .name
= TYPE_UNI_NORTH_INTERNAL_PCI_HOST_BRIDGE
,
498 .parent
= TYPE_PCI_HOST_BRIDGE
,
499 .instance_size
= sizeof(UNINState
),
500 .class_init
= pci_unin_internal_class_init
,
503 static void unin_register_types(void)
505 type_register_static(&unin_main_pci_host_info
);
506 type_register_static(&u3_agp_pci_host_info
);
507 type_register_static(&unin_agp_pci_host_info
);
508 type_register_static(&unin_internal_pci_host_info
);
510 type_register_static(&pci_unin_main_info
);
511 type_register_static(&pci_u3_agp_info
);
512 type_register_static(&pci_unin_agp_info
);
513 type_register_static(&pci_unin_internal_info
);
516 type_init(unin_register_types
)