xref: /qemu/hw/pci-host/uninorth.c (revision e4418354)
1 /*
2  * QEMU Uninorth PCI host (for all Mac99 and newer machines)
3  *
4  * Copyright (c) 2006 Fabrice Bellard
5  *
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:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
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
22  * THE SOFTWARE.
23  */
24 
25 #include "qemu/osdep.h"
26 #include "hw/irq.h"
27 #include "hw/qdev-properties.h"
28 #include "qemu/module.h"
29 #include "hw/pci/pci_device.h"
30 #include "hw/pci/pci_host.h"
31 #include "hw/pci-host/uninorth.h"
32 #include "trace.h"
33 
34 static int pci_unin_map_irq(PCIDevice *pci_dev, int irq_num)
35 {
36     return (irq_num + (pci_dev->devfn >> 3)) & 3;
37 }
38 
39 static void pci_unin_set_irq(void *opaque, int irq_num, int level)
40 {
41     UNINHostState *s = opaque;
42 
43     trace_unin_set_irq(irq_num, level);
44     qemu_set_irq(s->irqs[irq_num], level);
45 }
46 
47 static uint32_t unin_get_config_reg(uint32_t reg, uint32_t addr)
48 {
49     uint32_t retval;
50 
51     if (reg & (1u << 31)) {
52         /* XXX OpenBIOS compatibility hack */
53         retval = reg | (addr & 3);
54     } else if (reg & 1) {
55         /* CFA1 style */
56         retval = (reg & ~7u) | (addr & 7);
57     } else {
58         uint32_t slot, func;
59 
60         /* Grab CFA0 style values */
61         slot = ctz32(reg & 0xfffff800);
62         if (slot == 32) {
63             slot = -1; /* XXX: should this be 0? */
64         }
65         func = PCI_FUNC(reg >> 8);
66 
67         /* ... and then convert them to x86 format */
68         /* config pointer */
69         retval = (reg & (0xff - 7)) | (addr & 7);
70         /* slot, fn */
71         retval |= PCI_DEVFN(slot, func) << 8;
72     }
73 
74     trace_unin_get_config_reg(reg, addr, retval);
75 
76     return retval;
77 }
78 
79 static void unin_data_write(void *opaque, hwaddr addr,
80                             uint64_t val, unsigned len)
81 {
82     UNINHostState *s = opaque;
83     PCIHostState *phb = PCI_HOST_BRIDGE(s);
84     trace_unin_data_write(addr, len, val);
85     pci_data_write(phb->bus,
86                    unin_get_config_reg(phb->config_reg, addr),
87                    val, len);
88 }
89 
90 static uint64_t unin_data_read(void *opaque, hwaddr addr,
91                                unsigned len)
92 {
93     UNINHostState *s = opaque;
94     PCIHostState *phb = PCI_HOST_BRIDGE(s);
95     uint32_t val;
96 
97     val = pci_data_read(phb->bus,
98                         unin_get_config_reg(phb->config_reg, addr),
99                         len);
100     trace_unin_data_read(addr, len, val);
101     return val;
102 }
103 
104 static const MemoryRegionOps unin_data_ops = {
105     .read = unin_data_read,
106     .write = unin_data_write,
107     .endianness = DEVICE_LITTLE_ENDIAN,
108 };
109 
110 static char *pci_unin_main_ofw_unit_address(const SysBusDevice *dev)
111 {
112     UNINHostState *s = UNI_NORTH_PCI_HOST_BRIDGE(dev);
113 
114     return g_strdup_printf("%x", s->ofw_addr);
115 }
116 
117 static void pci_unin_main_realize(DeviceState *dev, Error **errp)
118 {
119     UNINHostState *s = UNI_NORTH_PCI_HOST_BRIDGE(dev);
120     PCIHostState *h = PCI_HOST_BRIDGE(dev);
121 
122     h->bus = pci_register_root_bus(dev, NULL,
123                                    pci_unin_set_irq, pci_unin_map_irq,
124                                    s,
125                                    &s->pci_mmio,
126                                    &s->pci_io,
127                                    PCI_DEVFN(11, 0), 4, TYPE_PCI_BUS);
128 
129     pci_create_simple(h->bus, PCI_DEVFN(11, 0), "uni-north-pci");
130 
131     /*
132      * DEC 21154 bridge was unused for many years, this comment is
133      * a placeholder for whoever wishes to resurrect it
134      */
135 }
136 
137 static void pci_unin_main_init(Object *obj)
138 {
139     UNINHostState *s = UNI_NORTH_PCI_HOST_BRIDGE(obj);
140     SysBusDevice *sbd = SYS_BUS_DEVICE(obj);
141     PCIHostState *h = PCI_HOST_BRIDGE(obj);
142 
143     /* Use values found on a real PowerMac */
144     /* Uninorth main bus */
145     memory_region_init_io(&h->conf_mem, OBJECT(h), &pci_host_conf_le_ops,
146                           obj, "unin-pci-conf-idx", 0x1000);
147     memory_region_init_io(&h->data_mem, OBJECT(h), &unin_data_ops, obj,
148                           "unin-pci-conf-data", 0x1000);
149 
150     memory_region_init(&s->pci_mmio, OBJECT(s), "unin-pci-mmio",
151                        0x100000000ULL);
152     memory_region_init_io(&s->pci_io, OBJECT(s), &unassigned_io_ops, obj,
153                           "unin-pci-isa-mmio", 0x00800000);
154 
155     memory_region_init_alias(&s->pci_hole, OBJECT(s),
156                              "unin-pci-hole", &s->pci_mmio,
157                              0x80000000ULL, 0x10000000ULL);
158 
159     sysbus_init_mmio(sbd, &h->conf_mem);
160     sysbus_init_mmio(sbd, &h->data_mem);
161     sysbus_init_mmio(sbd, &s->pci_hole);
162     sysbus_init_mmio(sbd, &s->pci_io);
163 
164     qdev_init_gpio_out(DEVICE(obj), s->irqs, ARRAY_SIZE(s->irqs));
165 }
166 
167 static void pci_u3_agp_realize(DeviceState *dev, Error **errp)
168 {
169     UNINHostState *s = U3_AGP_HOST_BRIDGE(dev);
170     PCIHostState *h = PCI_HOST_BRIDGE(dev);
171 
172     h->bus = pci_register_root_bus(dev, NULL,
173                                    pci_unin_set_irq, pci_unin_map_irq,
174                                    s,
175                                    &s->pci_mmio,
176                                    &s->pci_io,
177                                    PCI_DEVFN(11, 0), 4, TYPE_PCI_BUS);
178 
179     pci_create_simple(h->bus, PCI_DEVFN(11, 0), "u3-agp");
180 }
181 
182 static void pci_u3_agp_init(Object *obj)
183 {
184     UNINHostState *s = U3_AGP_HOST_BRIDGE(obj);
185     SysBusDevice *sbd = SYS_BUS_DEVICE(obj);
186     PCIHostState *h = PCI_HOST_BRIDGE(obj);
187 
188     /* Uninorth U3 AGP bus */
189     memory_region_init_io(&h->conf_mem, OBJECT(h), &pci_host_conf_le_ops,
190                           obj, "unin-pci-conf-idx", 0x1000);
191     memory_region_init_io(&h->data_mem, OBJECT(h), &unin_data_ops, obj,
192                           "unin-pci-conf-data", 0x1000);
193 
194     memory_region_init(&s->pci_mmio, OBJECT(s), "unin-pci-mmio",
195                        0x100000000ULL);
196     memory_region_init_io(&s->pci_io, OBJECT(s), &unassigned_io_ops, obj,
197                           "unin-pci-isa-mmio", 0x00800000);
198 
199     memory_region_init_alias(&s->pci_hole, OBJECT(s),
200                              "unin-pci-hole", &s->pci_mmio,
201                              0x80000000ULL, 0x70000000ULL);
202 
203     sysbus_init_mmio(sbd, &h->conf_mem);
204     sysbus_init_mmio(sbd, &h->data_mem);
205     sysbus_init_mmio(sbd, &s->pci_hole);
206     sysbus_init_mmio(sbd, &s->pci_io);
207 
208     qdev_init_gpio_out(DEVICE(obj), s->irqs, ARRAY_SIZE(s->irqs));
209 }
210 
211 static void pci_unin_agp_realize(DeviceState *dev, Error **errp)
212 {
213     UNINHostState *s = UNI_NORTH_AGP_HOST_BRIDGE(dev);
214     PCIHostState *h = PCI_HOST_BRIDGE(dev);
215 
216     h->bus = pci_register_root_bus(dev, NULL,
217                                    pci_unin_set_irq, pci_unin_map_irq,
218                                    s,
219                                    &s->pci_mmio,
220                                    &s->pci_io,
221                                    PCI_DEVFN(11, 0), 4, TYPE_PCI_BUS);
222 
223     pci_create_simple(h->bus, PCI_DEVFN(11, 0), "uni-north-agp");
224 }
225 
226 static void pci_unin_agp_init(Object *obj)
227 {
228     UNINHostState *s = UNI_NORTH_AGP_HOST_BRIDGE(obj);
229     SysBusDevice *sbd = SYS_BUS_DEVICE(obj);
230     PCIHostState *h = PCI_HOST_BRIDGE(obj);
231 
232     /* Uninorth AGP bus */
233     memory_region_init_io(&h->conf_mem, OBJECT(h), &pci_host_conf_le_ops,
234                           obj, "unin-agp-conf-idx", 0x1000);
235     memory_region_init_io(&h->data_mem, OBJECT(h), &pci_host_data_le_ops,
236                           obj, "unin-agp-conf-data", 0x1000);
237 
238     sysbus_init_mmio(sbd, &h->conf_mem);
239     sysbus_init_mmio(sbd, &h->data_mem);
240 
241     qdev_init_gpio_out(DEVICE(obj), s->irqs, ARRAY_SIZE(s->irqs));
242 }
243 
244 static void pci_unin_internal_realize(DeviceState *dev, Error **errp)
245 {
246     UNINHostState *s = UNI_NORTH_INTERNAL_PCI_HOST_BRIDGE(dev);
247     PCIHostState *h = PCI_HOST_BRIDGE(dev);
248 
249     h->bus = pci_register_root_bus(dev, NULL,
250                                    pci_unin_set_irq, pci_unin_map_irq,
251                                    s,
252                                    &s->pci_mmio,
253                                    &s->pci_io,
254                                    PCI_DEVFN(14, 0), 4, TYPE_PCI_BUS);
255 
256     pci_create_simple(h->bus, PCI_DEVFN(14, 0), "uni-north-internal-pci");
257 }
258 
259 static void pci_unin_internal_init(Object *obj)
260 {
261     UNINHostState *s = UNI_NORTH_INTERNAL_PCI_HOST_BRIDGE(obj);
262     SysBusDevice *sbd = SYS_BUS_DEVICE(obj);
263     PCIHostState *h = PCI_HOST_BRIDGE(obj);
264 
265     /* Uninorth internal bus */
266     memory_region_init_io(&h->conf_mem, OBJECT(h), &pci_host_conf_le_ops,
267                           obj, "unin-pci-conf-idx", 0x1000);
268     memory_region_init_io(&h->data_mem, OBJECT(h), &pci_host_data_le_ops,
269                           obj, "unin-pci-conf-data", 0x1000);
270 
271     sysbus_init_mmio(sbd, &h->conf_mem);
272     sysbus_init_mmio(sbd, &h->data_mem);
273 
274     qdev_init_gpio_out(DEVICE(obj), s->irqs, ARRAY_SIZE(s->irqs));
275 }
276 
277 static void unin_main_pci_host_realize(PCIDevice *d, Error **errp)
278 {
279     /* cache_line_size */
280     d->config[0x0C] = 0x08;
281     /* latency_timer */
282     d->config[0x0D] = 0x10;
283     /* capabilities_pointer */
284     d->config[0x34] = 0x00;
285 
286     /*
287      * Set kMacRISCPCIAddressSelect (0x48) register to indicate PCI
288      * memory space with base 0x80000000, size 0x10000000 for Apple's
289      * AppleMacRiscPCI driver
290      */
291     d->config[0x48] = 0x0;
292     d->config[0x49] = 0x0;
293     d->config[0x4a] = 0x0;
294     d->config[0x4b] = 0x1;
295 }
296 
297 static void unin_agp_pci_host_realize(PCIDevice *d, Error **errp)
298 {
299     /* cache_line_size */
300     d->config[0x0C] = 0x08;
301     /* latency_timer */
302     d->config[0x0D] = 0x10;
303     /* capabilities_pointer
304     d->config[0x34] = 0x80; */
305 }
306 
307 static void u3_agp_pci_host_realize(PCIDevice *d, Error **errp)
308 {
309     /* cache line size */
310     d->config[0x0C] = 0x08;
311     /* latency timer */
312     d->config[0x0D] = 0x10;
313 }
314 
315 static void unin_internal_pci_host_realize(PCIDevice *d, Error **errp)
316 {
317     /* cache_line_size */
318     d->config[0x0C] = 0x08;
319     /* latency_timer */
320     d->config[0x0D] = 0x10;
321     /* capabilities_pointer */
322     d->config[0x34] = 0x00;
323 }
324 
325 static void unin_main_pci_host_class_init(ObjectClass *klass, void *data)
326 {
327     PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
328     DeviceClass *dc = DEVICE_CLASS(klass);
329 
330     k->realize   = unin_main_pci_host_realize;
331     k->vendor_id = PCI_VENDOR_ID_APPLE;
332     k->device_id = PCI_DEVICE_ID_APPLE_UNI_N_PCI;
333     k->revision  = 0x00;
334     k->class_id  = PCI_CLASS_BRIDGE_HOST;
335     /*
336      * PCI-facing part of the host bridge, not usable without the
337      * host-facing part, which can't be device_add'ed, yet.
338      */
339     dc->user_creatable = false;
340 }
341 
342 static const TypeInfo unin_main_pci_host_info = {
343     .name = "uni-north-pci",
344     .parent = TYPE_PCI_DEVICE,
345     .instance_size = sizeof(PCIDevice),
346     .class_init = unin_main_pci_host_class_init,
347     .interfaces = (InterfaceInfo[]) {
348         { INTERFACE_CONVENTIONAL_PCI_DEVICE },
349         { },
350     },
351 };
352 
353 static void u3_agp_pci_host_class_init(ObjectClass *klass, void *data)
354 {
355     PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
356     DeviceClass *dc = DEVICE_CLASS(klass);
357 
358     k->realize   = u3_agp_pci_host_realize;
359     k->vendor_id = PCI_VENDOR_ID_APPLE;
360     k->device_id = PCI_DEVICE_ID_APPLE_U3_AGP;
361     k->revision  = 0x00;
362     k->class_id  = PCI_CLASS_BRIDGE_HOST;
363     /*
364      * PCI-facing part of the host bridge, not usable without the
365      * host-facing part, which can't be device_add'ed, yet.
366      */
367     dc->user_creatable = false;
368 }
369 
370 static const TypeInfo u3_agp_pci_host_info = {
371     .name = "u3-agp",
372     .parent = TYPE_PCI_DEVICE,
373     .instance_size = sizeof(PCIDevice),
374     .class_init = u3_agp_pci_host_class_init,
375     .interfaces = (InterfaceInfo[]) {
376         { INTERFACE_CONVENTIONAL_PCI_DEVICE },
377         { },
378     },
379 };
380 
381 static void unin_agp_pci_host_class_init(ObjectClass *klass, void *data)
382 {
383     PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
384     DeviceClass *dc = DEVICE_CLASS(klass);
385 
386     k->realize   = unin_agp_pci_host_realize;
387     k->vendor_id = PCI_VENDOR_ID_APPLE;
388     k->device_id = PCI_DEVICE_ID_APPLE_UNI_N_AGP;
389     k->revision  = 0x00;
390     k->class_id  = PCI_CLASS_BRIDGE_HOST;
391     /*
392      * PCI-facing part of the host bridge, not usable without the
393      * host-facing part, which can't be device_add'ed, yet.
394      */
395     dc->user_creatable = false;
396 }
397 
398 static const TypeInfo unin_agp_pci_host_info = {
399     .name = "uni-north-agp",
400     .parent = TYPE_PCI_DEVICE,
401     .instance_size = sizeof(PCIDevice),
402     .class_init = unin_agp_pci_host_class_init,
403     .interfaces = (InterfaceInfo[]) {
404         { INTERFACE_CONVENTIONAL_PCI_DEVICE },
405         { },
406     },
407 };
408 
409 static void unin_internal_pci_host_class_init(ObjectClass *klass, void *data)
410 {
411     PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
412     DeviceClass *dc = DEVICE_CLASS(klass);
413 
414     k->realize   = unin_internal_pci_host_realize;
415     k->vendor_id = PCI_VENDOR_ID_APPLE;
416     k->device_id = PCI_DEVICE_ID_APPLE_UNI_N_I_PCI;
417     k->revision  = 0x00;
418     k->class_id  = PCI_CLASS_BRIDGE_HOST;
419     /*
420      * PCI-facing part of the host bridge, not usable without the
421      * host-facing part, which can't be device_add'ed, yet.
422      */
423     dc->user_creatable = false;
424 }
425 
426 static const TypeInfo unin_internal_pci_host_info = {
427     .name = "uni-north-internal-pci",
428     .parent = TYPE_PCI_DEVICE,
429     .instance_size = sizeof(PCIDevice),
430     .class_init = unin_internal_pci_host_class_init,
431     .interfaces = (InterfaceInfo[]) {
432         { INTERFACE_CONVENTIONAL_PCI_DEVICE },
433         { },
434     },
435 };
436 
437 static Property pci_unin_main_pci_host_props[] = {
438     DEFINE_PROP_UINT32("ofw-addr", UNINHostState, ofw_addr, -1),
439     DEFINE_PROP_END_OF_LIST()
440 };
441 
442 static void pci_unin_main_class_init(ObjectClass *klass, void *data)
443 {
444     DeviceClass *dc = DEVICE_CLASS(klass);
445     SysBusDeviceClass *sbc = SYS_BUS_DEVICE_CLASS(klass);
446 
447     dc->realize = pci_unin_main_realize;
448     device_class_set_props(dc, pci_unin_main_pci_host_props);
449     set_bit(DEVICE_CATEGORY_BRIDGE, dc->categories);
450     dc->fw_name = "pci";
451     sbc->explicit_ofw_unit_address = pci_unin_main_ofw_unit_address;
452 }
453 
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(UNINHostState),
458     .instance_init = pci_unin_main_init,
459     .class_init    = pci_unin_main_class_init,
460 };
461 
462 static void pci_u3_agp_class_init(ObjectClass *klass, void *data)
463 {
464     DeviceClass *dc = DEVICE_CLASS(klass);
465 
466     dc->realize = pci_u3_agp_realize;
467     set_bit(DEVICE_CATEGORY_BRIDGE, dc->categories);
468 }
469 
470 static const TypeInfo pci_u3_agp_info = {
471     .name          = TYPE_U3_AGP_HOST_BRIDGE,
472     .parent        = TYPE_PCI_HOST_BRIDGE,
473     .instance_size = sizeof(UNINHostState),
474     .instance_init = pci_u3_agp_init,
475     .class_init    = pci_u3_agp_class_init,
476 };
477 
478 static void pci_unin_agp_class_init(ObjectClass *klass, void *data)
479 {
480     DeviceClass *dc = DEVICE_CLASS(klass);
481 
482     dc->realize = pci_unin_agp_realize;
483     set_bit(DEVICE_CATEGORY_BRIDGE, dc->categories);
484 }
485 
486 static const TypeInfo pci_unin_agp_info = {
487     .name          = TYPE_UNI_NORTH_AGP_HOST_BRIDGE,
488     .parent        = TYPE_PCI_HOST_BRIDGE,
489     .instance_size = sizeof(UNINHostState),
490     .instance_init = pci_unin_agp_init,
491     .class_init    = pci_unin_agp_class_init,
492 };
493 
494 static void pci_unin_internal_class_init(ObjectClass *klass, void *data)
495 {
496     DeviceClass *dc = DEVICE_CLASS(klass);
497 
498     dc->realize = pci_unin_internal_realize;
499     set_bit(DEVICE_CATEGORY_BRIDGE, dc->categories);
500 }
501 
502 static const TypeInfo pci_unin_internal_info = {
503     .name          = TYPE_UNI_NORTH_INTERNAL_PCI_HOST_BRIDGE,
504     .parent        = TYPE_PCI_HOST_BRIDGE,
505     .instance_size = sizeof(UNINHostState),
506     .instance_init = pci_unin_internal_init,
507     .class_init    = pci_unin_internal_class_init,
508 };
509 
510 /* UniN device */
511 static void unin_write(void *opaque, hwaddr addr, uint64_t value,
512                        unsigned size)
513 {
514     trace_unin_write(addr, value);
515 }
516 
517 static uint64_t unin_read(void *opaque, hwaddr addr, unsigned size)
518 {
519     uint32_t value;
520 
521     switch (addr) {
522     case 0:
523         value = UNINORTH_VERSION_10A;
524         break;
525     default:
526         value = 0;
527     }
528 
529     trace_unin_read(addr, value);
530 
531     return value;
532 }
533 
534 static const MemoryRegionOps unin_ops = {
535     .read = unin_read,
536     .write = unin_write,
537     .endianness = DEVICE_BIG_ENDIAN,
538 };
539 
540 static void unin_init(Object *obj)
541 {
542     UNINState *s = UNI_NORTH(obj);
543     SysBusDevice *sbd = SYS_BUS_DEVICE(obj);
544 
545     memory_region_init_io(&s->mem, obj, &unin_ops, s, "unin", 0x1000);
546 
547     sysbus_init_mmio(sbd, &s->mem);
548 }
549 
550 static void unin_class_init(ObjectClass *klass, void *data)
551 {
552     DeviceClass *dc = DEVICE_CLASS(klass);
553 
554     set_bit(DEVICE_CATEGORY_BRIDGE, dc->categories);
555 }
556 
557 static const TypeInfo unin_info = {
558     .name          = TYPE_UNI_NORTH,
559     .parent        = TYPE_SYS_BUS_DEVICE,
560     .instance_size = sizeof(UNINState),
561     .instance_init = unin_init,
562     .class_init    = unin_class_init,
563 };
564 
565 static void unin_register_types(void)
566 {
567     type_register_static(&unin_main_pci_host_info);
568     type_register_static(&u3_agp_pci_host_info);
569     type_register_static(&unin_agp_pci_host_info);
570     type_register_static(&unin_internal_pci_host_info);
571 
572     type_register_static(&pci_unin_main_info);
573     type_register_static(&pci_u3_agp_info);
574     type_register_static(&pci_unin_agp_info);
575     type_register_static(&pci_unin_internal_info);
576 
577     type_register_static(&unin_info);
578 }
579 
580 type_init(unin_register_types)
581