Blue Swirl | e1c6bba | 2010-02-05 18:48:36 +0000 | [diff] [blame] | 1 | /* |
| 2 | * QEMU DEC 21154 PCI bridge |
| 3 | * |
| 4 | * Copyright (c) 2006-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 | |
Blue Swirl | d55380b | 2010-02-07 19:28:32 +0000 | [diff] [blame] | 26 | #include "dec_pci.h" |
Blue Swirl | e1c6bba | 2010-02-05 18:48:36 +0000 | [diff] [blame] | 27 | #include "sysbus.h" |
| 28 | #include "pci.h" |
| 29 | #include "pci_host.h" |
Isaku Yamahata | 783753f | 2010-07-13 13:01:39 +0900 | [diff] [blame] | 30 | #include "pci_bridge.h" |
Isaku Yamahata | 68f7999 | 2010-07-13 13:01:42 +0900 | [diff] [blame] | 31 | #include "pci_internals.h" |
Blue Swirl | e1c6bba | 2010-02-05 18:48:36 +0000 | [diff] [blame] | 32 | |
| 33 | /* debug DEC */ |
| 34 | //#define DEBUG_DEC |
| 35 | |
| 36 | #ifdef DEBUG_DEC |
| 37 | #define DEC_DPRINTF(fmt, ...) \ |
| 38 | do { printf("DEC: " fmt , ## __VA_ARGS__); } while (0) |
| 39 | #else |
| 40 | #define DEC_DPRINTF(fmt, ...) |
| 41 | #endif |
| 42 | |
Andreas Färber | ab61536 | 2012-08-20 19:07:59 +0200 | [diff] [blame] | 43 | #define DEC_21154(obj) OBJECT_CHECK(DECState, (obj), TYPE_DEC_21154) |
| 44 | |
Blue Swirl | e1c6bba | 2010-02-05 18:48:36 +0000 | [diff] [blame] | 45 | typedef struct DECState { |
Andreas Färber | 67c332f | 2012-08-20 19:08:09 +0200 | [diff] [blame] | 46 | PCIHostState parent_obj; |
Blue Swirl | e1c6bba | 2010-02-05 18:48:36 +0000 | [diff] [blame] | 47 | } DECState; |
| 48 | |
Blue Swirl | d55380b | 2010-02-07 19:28:32 +0000 | [diff] [blame] | 49 | static int dec_map_irq(PCIDevice *pci_dev, int irq_num) |
| 50 | { |
| 51 | return irq_num; |
| 52 | } |
| 53 | |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 54 | static void dec_21154_pci_bridge_class_init(ObjectClass *klass, void *data) |
| 55 | { |
Anthony Liguori | 39bffca | 2011-12-07 21:34:16 -0600 | [diff] [blame] | 56 | DeviceClass *dc = DEVICE_CLASS(klass); |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 57 | PCIDeviceClass *k = PCI_DEVICE_CLASS(klass); |
| 58 | |
| 59 | k->init = pci_bridge_initfn; |
| 60 | k->exit = pci_bridge_exitfn; |
| 61 | k->vendor_id = PCI_VENDOR_ID_DEC; |
| 62 | k->device_id = PCI_DEVICE_ID_DEC_21154; |
| 63 | k->config_write = pci_bridge_write_config; |
| 64 | k->is_bridge = 1; |
Anthony Liguori | 39bffca | 2011-12-07 21:34:16 -0600 | [diff] [blame] | 65 | dc->desc = "DEC 21154 PCI-PCI bridge"; |
| 66 | dc->reset = pci_bridge_reset; |
| 67 | dc->vmsd = &vmstate_pci_device; |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 68 | } |
| 69 | |
Andreas Färber | 4240abf | 2012-08-20 19:07:56 +0200 | [diff] [blame] | 70 | static const TypeInfo dec_21154_pci_bridge_info = { |
Anthony Liguori | 39bffca | 2011-12-07 21:34:16 -0600 | [diff] [blame] | 71 | .name = "dec-21154-p2p-bridge", |
| 72 | .parent = TYPE_PCI_DEVICE, |
| 73 | .instance_size = sizeof(PCIBridge), |
| 74 | .class_init = dec_21154_pci_bridge_class_init, |
Isaku Yamahata | 68f7999 | 2010-07-13 13:01:42 +0900 | [diff] [blame] | 75 | }; |
| 76 | |
Blue Swirl | d55380b | 2010-02-07 19:28:32 +0000 | [diff] [blame] | 77 | PCIBus *pci_dec_21154_init(PCIBus *parent_bus, int devfn) |
| 78 | { |
Isaku Yamahata | 68f7999 | 2010-07-13 13:01:42 +0900 | [diff] [blame] | 79 | PCIDevice *dev; |
| 80 | PCIBridge *br; |
Blue Swirl | d55380b | 2010-02-07 19:28:32 +0000 | [diff] [blame] | 81 | |
Isaku Yamahata | 68f7999 | 2010-07-13 13:01:42 +0900 | [diff] [blame] | 82 | dev = pci_create_multifunction(parent_bus, devfn, false, |
| 83 | "dec-21154-p2p-bridge"); |
| 84 | br = DO_UPCAST(PCIBridge, dev, dev); |
| 85 | pci_bridge_map_irq(br, "DEC 21154 PCI-PCI bridge", dec_map_irq); |
| 86 | qdev_init_nofail(&dev->qdev); |
| 87 | return pci_bridge_get_sec_bus(br); |
Blue Swirl | d55380b | 2010-02-07 19:28:32 +0000 | [diff] [blame] | 88 | } |
| 89 | |
Anthony Liguori | 999e12b | 2012-01-24 13:12:29 -0600 | [diff] [blame] | 90 | static int pci_dec_21154_device_init(SysBusDevice *dev) |
Blue Swirl | e1c6bba | 2010-02-05 18:48:36 +0000 | [diff] [blame] | 91 | { |
Andreas Färber | ab61536 | 2012-08-20 19:07:59 +0200 | [diff] [blame] | 92 | PCIHostState *phb; |
Blue Swirl | e1c6bba | 2010-02-05 18:48:36 +0000 | [diff] [blame] | 93 | |
Andreas Färber | 8558d94 | 2012-08-20 19:08:08 +0200 | [diff] [blame] | 94 | phb = PCI_HOST_BRIDGE(dev); |
Blue Swirl | e1c6bba | 2010-02-05 18:48:36 +0000 | [diff] [blame] | 95 | |
Andreas Färber | ab61536 | 2012-08-20 19:07:59 +0200 | [diff] [blame] | 96 | memory_region_init_io(&phb->conf_mem, &pci_host_conf_le_ops, |
| 97 | dev, "pci-conf-idx", 0x1000); |
| 98 | memory_region_init_io(&phb->data_mem, &pci_host_data_le_ops, |
| 99 | dev, "pci-data-idx", 0x1000); |
| 100 | sysbus_init_mmio(dev, &phb->conf_mem); |
| 101 | sysbus_init_mmio(dev, &phb->data_mem); |
Blue Swirl | e1c6bba | 2010-02-05 18:48:36 +0000 | [diff] [blame] | 102 | return 0; |
| 103 | } |
| 104 | |
| 105 | static int dec_21154_pci_host_init(PCIDevice *d) |
| 106 | { |
| 107 | /* PCI2PCI bridge same values as PearPC - check this */ |
Blue Swirl | e1c6bba | 2010-02-05 18:48:36 +0000 | [diff] [blame] | 108 | return 0; |
| 109 | } |
| 110 | |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 111 | static void dec_21154_pci_host_class_init(ObjectClass *klass, void *data) |
| 112 | { |
| 113 | PCIDeviceClass *k = PCI_DEVICE_CLASS(klass); |
| 114 | |
| 115 | k->init = dec_21154_pci_host_init; |
| 116 | k->vendor_id = PCI_VENDOR_ID_DEC; |
| 117 | k->device_id = PCI_DEVICE_ID_DEC_21154; |
| 118 | k->revision = 0x02; |
| 119 | k->class_id = PCI_CLASS_BRIDGE_PCI; |
| 120 | k->is_bridge = 1; |
| 121 | } |
| 122 | |
Andreas Färber | 4240abf | 2012-08-20 19:07:56 +0200 | [diff] [blame] | 123 | static const TypeInfo dec_21154_pci_host_info = { |
Anthony Liguori | 39bffca | 2011-12-07 21:34:16 -0600 | [diff] [blame] | 124 | .name = "dec-21154", |
| 125 | .parent = TYPE_PCI_DEVICE, |
| 126 | .instance_size = sizeof(PCIDevice), |
| 127 | .class_init = dec_21154_pci_host_class_init, |
Blue Swirl | e1c6bba | 2010-02-05 18:48:36 +0000 | [diff] [blame] | 128 | }; |
| 129 | |
Anthony Liguori | 999e12b | 2012-01-24 13:12:29 -0600 | [diff] [blame] | 130 | static void pci_dec_21154_device_class_init(ObjectClass *klass, void *data) |
| 131 | { |
| 132 | SysBusDeviceClass *sdc = SYS_BUS_DEVICE_CLASS(klass); |
| 133 | |
| 134 | sdc->init = pci_dec_21154_device_init; |
| 135 | } |
| 136 | |
Andreas Färber | 4240abf | 2012-08-20 19:07:56 +0200 | [diff] [blame] | 137 | static const TypeInfo pci_dec_21154_device_info = { |
Andreas Färber | ab61536 | 2012-08-20 19:07:59 +0200 | [diff] [blame] | 138 | .name = TYPE_DEC_21154, |
Andreas Färber | 8558d94 | 2012-08-20 19:08:08 +0200 | [diff] [blame] | 139 | .parent = TYPE_PCI_HOST_BRIDGE, |
Anthony Liguori | 39bffca | 2011-12-07 21:34:16 -0600 | [diff] [blame] | 140 | .instance_size = sizeof(DECState), |
| 141 | .class_init = pci_dec_21154_device_class_init, |
Anthony Liguori | 999e12b | 2012-01-24 13:12:29 -0600 | [diff] [blame] | 142 | }; |
| 143 | |
Andreas Färber | 83f7d43 | 2012-02-09 15:20:55 +0100 | [diff] [blame] | 144 | static void dec_register_types(void) |
Blue Swirl | e1c6bba | 2010-02-05 18:48:36 +0000 | [diff] [blame] | 145 | { |
Anthony Liguori | 39bffca | 2011-12-07 21:34:16 -0600 | [diff] [blame] | 146 | type_register_static(&pci_dec_21154_device_info); |
| 147 | type_register_static(&dec_21154_pci_host_info); |
| 148 | type_register_static(&dec_21154_pci_bridge_info); |
Blue Swirl | e1c6bba | 2010-02-05 18:48:36 +0000 | [diff] [blame] | 149 | } |
| 150 | |
Andreas Färber | 83f7d43 | 2012-02-09 15:20:55 +0100 | [diff] [blame] | 151 | type_init(dec_register_types) |