dec: convert to realize()
[qemu/ar7.git] / hw / pci-bridge / dec.c
blob840c96198a8e233149afa36fc1174634c25f91e8
1 /*
2 * QEMU DEC 21154 PCI bridge
4 * Copyright (c) 2006-2007 Fabrice Bellard
5 * Copyright (c) 2007 Jocelyn Mayer
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:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
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.
26 #include "qemu/osdep.h"
27 #include "dec.h"
28 #include "hw/sysbus.h"
29 #include "hw/pci/pci.h"
30 #include "hw/pci/pci_host.h"
31 #include "hw/pci/pci_bridge.h"
32 #include "hw/pci/pci_bus.h"
34 /* debug DEC */
35 //#define DEBUG_DEC
37 #ifdef DEBUG_DEC
38 #define DEC_DPRINTF(fmt, ...) \
39 do { printf("DEC: " fmt , ## __VA_ARGS__); } while (0)
40 #else
41 #define DEC_DPRINTF(fmt, ...)
42 #endif
44 #define DEC_21154(obj) OBJECT_CHECK(DECState, (obj), TYPE_DEC_21154)
46 typedef struct DECState {
47 PCIHostState parent_obj;
48 } DECState;
50 static int dec_map_irq(PCIDevice *pci_dev, int irq_num)
52 return irq_num;
55 static void dec_pci_bridge_realize(PCIDevice *pci_dev, Error **errp)
57 pci_bridge_initfn(pci_dev, TYPE_PCI_BUS);
60 static void dec_21154_pci_bridge_class_init(ObjectClass *klass, void *data)
62 DeviceClass *dc = DEVICE_CLASS(klass);
63 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
65 k->realize = dec_pci_bridge_realize;
66 k->exit = pci_bridge_exitfn;
67 k->vendor_id = PCI_VENDOR_ID_DEC;
68 k->device_id = PCI_DEVICE_ID_DEC_21154;
69 k->config_write = pci_bridge_write_config;
70 k->is_bridge = 1;
71 dc->desc = "DEC 21154 PCI-PCI bridge";
72 dc->reset = pci_bridge_reset;
73 dc->vmsd = &vmstate_pci_device;
76 static const TypeInfo dec_21154_pci_bridge_info = {
77 .name = "dec-21154-p2p-bridge",
78 .parent = TYPE_PCI_BRIDGE,
79 .instance_size = sizeof(PCIBridge),
80 .class_init = dec_21154_pci_bridge_class_init,
83 PCIBus *pci_dec_21154_init(PCIBus *parent_bus, int devfn)
85 PCIDevice *dev;
86 PCIBridge *br;
88 dev = pci_create_multifunction(parent_bus, devfn, false,
89 "dec-21154-p2p-bridge");
90 br = PCI_BRIDGE(dev);
91 pci_bridge_map_irq(br, "DEC 21154 PCI-PCI bridge", dec_map_irq);
92 qdev_init_nofail(&dev->qdev);
93 return pci_bridge_get_sec_bus(br);
96 static int pci_dec_21154_device_init(SysBusDevice *dev)
98 PCIHostState *phb;
100 phb = PCI_HOST_BRIDGE(dev);
102 memory_region_init_io(&phb->conf_mem, OBJECT(dev), &pci_host_conf_le_ops,
103 dev, "pci-conf-idx", 0x1000);
104 memory_region_init_io(&phb->data_mem, OBJECT(dev), &pci_host_data_le_ops,
105 dev, "pci-data-idx", 0x1000);
106 sysbus_init_mmio(dev, &phb->conf_mem);
107 sysbus_init_mmio(dev, &phb->data_mem);
108 return 0;
111 static void dec_21154_pci_host_realize(PCIDevice *d, Error **errp)
113 /* PCI2PCI bridge same values as PearPC - check this */
116 static void dec_21154_pci_host_class_init(ObjectClass *klass, void *data)
118 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
119 DeviceClass *dc = DEVICE_CLASS(klass);
121 k->realize = dec_21154_pci_host_realize;
122 k->vendor_id = PCI_VENDOR_ID_DEC;
123 k->device_id = PCI_DEVICE_ID_DEC_21154;
124 k->revision = 0x02;
125 k->class_id = PCI_CLASS_BRIDGE_PCI;
126 k->is_bridge = 1;
128 * PCI-facing part of the host bridge, not usable without the
129 * host-facing part, which can't be device_add'ed, yet.
131 dc->cannot_instantiate_with_device_add_yet = true;
134 static const TypeInfo dec_21154_pci_host_info = {
135 .name = "dec-21154",
136 .parent = TYPE_PCI_DEVICE,
137 .instance_size = sizeof(PCIDevice),
138 .class_init = dec_21154_pci_host_class_init,
141 static void pci_dec_21154_device_class_init(ObjectClass *klass, void *data)
143 SysBusDeviceClass *sdc = SYS_BUS_DEVICE_CLASS(klass);
145 sdc->init = pci_dec_21154_device_init;
148 static const TypeInfo pci_dec_21154_device_info = {
149 .name = TYPE_DEC_21154,
150 .parent = TYPE_PCI_HOST_BRIDGE,
151 .instance_size = sizeof(DECState),
152 .class_init = pci_dec_21154_device_class_init,
155 static void dec_register_types(void)
157 type_register_static(&pci_dec_21154_device_info);
158 type_register_static(&dec_21154_pci_host_info);
159 type_register_static(&dec_21154_pci_bridge_info);
162 type_init(dec_register_types)