]> git.proxmox.com Git - qemu.git/blame - hw/prep_pci.c
virtio-blk: cleanup: init and exit functions.
[qemu.git] / hw / prep_pci.c
CommitLineData
502a5395
PB
1/*
2 * QEMU PREP PCI host
3 *
4 * Copyright (c) 2006 Fabrice Bellard
98aca3c8 5 * Copyright (c) 2011-2013 Andreas Färber
5fafdf24 6 *
502a5395
PB
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
83c9f4ca
PB
26#include "hw/hw.h"
27#include "hw/pci/pci.h"
28#include "hw/pci/pci_bus.h"
29#include "hw/pci/pci_host.h"
30#include "hw/pc.h"
022c62cb 31#include "exec/address-spaces.h"
502a5395 32
98aca3c8 33#define TYPE_RAVEN_PCI_DEVICE "raven"
03a6b667
AF
34#define TYPE_RAVEN_PCI_HOST_BRIDGE "raven-pcihost"
35
98aca3c8
AF
36#define RAVEN_PCI_DEVICE(obj) \
37 OBJECT_CHECK(RavenPCIState, (obj), TYPE_RAVEN_PCI_DEVICE)
38
39typedef struct RavenPCIState {
40 PCIDevice dev;
41} RavenPCIState;
42
03a6b667
AF
43#define RAVEN_PCI_HOST_BRIDGE(obj) \
44 OBJECT_CHECK(PREPPCIState, (obj), TYPE_RAVEN_PCI_HOST_BRIDGE)
45
8ca8c7bc 46typedef struct PRePPCIState {
67c332fd 47 PCIHostState parent_obj;
03a6b667 48
6c84ce0d 49 MemoryRegion intack;
8ca8c7bc 50 qemu_irq irq[4];
98aca3c8
AF
51 PCIBus pci_bus;
52 RavenPCIState pci_dev;
8ca8c7bc 53} PREPPCIState;
502a5395 54
a8170e5e 55static inline uint32_t PPC_PCIIO_config(hwaddr addr)
502a5395
PB
56{
57 int i;
58
03a6b667
AF
59 for (i = 0; i < 11; i++) {
60 if ((addr & (1 << (11 + i))) != 0) {
502a5395 61 break;
03a6b667 62 }
502a5395
PB
63 }
64 return (addr & 0x7ff) | (i << 11);
65}
66
a8170e5e 67static void ppc_pci_io_write(void *opaque, hwaddr addr,
7e5610ff 68 uint64_t val, unsigned int size)
502a5395
PB
69{
70 PREPPCIState *s = opaque;
67c332fd
AF
71 PCIHostState *phb = PCI_HOST_BRIDGE(s);
72 pci_data_write(phb->bus, PPC_PCIIO_config(addr), val, size);
502a5395
PB
73}
74
a8170e5e 75static uint64_t ppc_pci_io_read(void *opaque, hwaddr addr,
7e5610ff 76 unsigned int size)
502a5395
PB
77{
78 PREPPCIState *s = opaque;
67c332fd
AF
79 PCIHostState *phb = PCI_HOST_BRIDGE(s);
80 return pci_data_read(phb->bus, PPC_PCIIO_config(addr), size);
502a5395
PB
81}
82
f81138ce 83static const MemoryRegionOps PPC_PCIIO_ops = {
7e5610ff
AF
84 .read = ppc_pci_io_read,
85 .write = ppc_pci_io_write,
9c95f183 86 .endianness = DEVICE_LITTLE_ENDIAN,
502a5395
PB
87};
88
a8170e5e 89static uint64_t ppc_intack_read(void *opaque, hwaddr addr,
6c84ce0d
HP
90 unsigned int size)
91{
92 return pic_read_irq(isa_pic);
93}
94
95static const MemoryRegionOps PPC_intack_ops = {
96 .read = ppc_intack_read,
97 .valid = {
98 .max_access_size = 1,
99 },
100};
101
d2b59317 102static int prep_map_irq(PCIDevice *pci_dev, int irq_num)
502a5395 103{
80b3ada7 104 return (irq_num + (pci_dev->devfn >> 3)) & 1;
d2b59317
PB
105}
106
5d4e84c8 107static void prep_set_irq(void *opaque, int irq_num, int level)
d2b59317 108{
5d4e84c8
JQ
109 qemu_irq *pic = opaque;
110
8ca8c7bc 111 qemu_set_irq(pic[irq_num] , level);
502a5395
PB
112}
113
8d5ce2e5 114static void raven_pcihost_realizefn(DeviceState *d, Error **errp)
502a5395 115{
8d5ce2e5 116 SysBusDevice *dev = SYS_BUS_DEVICE(d);
8558d942 117 PCIHostState *h = PCI_HOST_BRIDGE(dev);
03a6b667 118 PREPPCIState *s = RAVEN_PCI_HOST_BRIDGE(dev);
8ca8c7bc 119 MemoryRegion *address_space_mem = get_system_memory();
8ca8c7bc
AF
120 int i;
121
122 for (i = 0; i < 4; i++) {
123 sysbus_init_irq(dev, &s->irq[i]);
124 }
502a5395 125
98aca3c8 126 pci_bus_irqs(&s->pci_bus, prep_set_irq, prep_map_irq, s->irq, 4);
502a5395 127
8ca8c7bc 128 memory_region_init_io(&h->conf_mem, &pci_host_conf_be_ops, s,
d0ed8076 129 "pci-conf-idx", 1);
8ca8c7bc
AF
130 sysbus_add_io(dev, 0xcf8, &h->conf_mem);
131 sysbus_init_ioports(&h->busdev, 0xcf8, 1);
d0ed8076 132
8ca8c7bc 133 memory_region_init_io(&h->data_mem, &pci_host_data_be_ops, s,
d0ed8076 134 "pci-conf-data", 1);
8ca8c7bc
AF
135 sysbus_add_io(dev, 0xcfc, &h->data_mem);
136 sysbus_init_ioports(&h->busdev, 0xcfc, 1);
502a5395 137
8ca8c7bc
AF
138 memory_region_init_io(&h->mmcfg, &PPC_PCIIO_ops, s, "pciio", 0x00400000);
139 memory_region_add_subregion(address_space_mem, 0x80800000, &h->mmcfg);
502a5395 140
6c84ce0d
HP
141 memory_region_init_io(&s->intack, &PPC_intack_ops, s, "pci-intack", 1);
142 memory_region_add_subregion(address_space_mem, 0xbffffff0, &s->intack);
55526054 143
98aca3c8 144 /* TODO Remove once realize propagates to child devices. */
8d5ce2e5 145 object_property_set_bool(OBJECT(&s->pci_dev), true, "realized", errp);
98aca3c8
AF
146}
147
148static void raven_pcihost_initfn(Object *obj)
149{
150 PCIHostState *h = PCI_HOST_BRIDGE(obj);
151 PREPPCIState *s = RAVEN_PCI_HOST_BRIDGE(obj);
152 MemoryRegion *address_space_mem = get_system_memory();
153 MemoryRegion *address_space_io = get_system_io();
154 DeviceState *pci_dev;
155
156 pci_bus_new_inplace(&s->pci_bus, DEVICE(obj), NULL,
157 address_space_mem, address_space_io, 0);
158 h->bus = &s->pci_bus;
159
160 object_initialize(&s->pci_dev, TYPE_RAVEN_PCI_DEVICE);
161 pci_dev = DEVICE(&s->pci_dev);
162 qdev_set_parent_bus(pci_dev, BUS(&s->pci_bus));
163 object_property_set_int(OBJECT(&s->pci_dev), PCI_DEVFN(0, 0), "addr",
164 NULL);
165 qdev_prop_set_bit(pci_dev, "multifunction", false);
55526054
AF
166}
167
168static int raven_init(PCIDevice *d)
169{
502a5395
PB
170 d->config[0x0C] = 0x08; // cache_line_size
171 d->config[0x0D] = 0x10; // latency_timer
502a5395
PB
172 d->config[0x34] = 0x00; // capabilities_pointer
173
55526054 174 return 0;
502a5395 175}
55526054
AF
176
177static const VMStateDescription vmstate_raven = {
178 .name = "raven",
179 .version_id = 0,
180 .minimum_version_id = 0,
181 .fields = (VMStateField[]) {
182 VMSTATE_PCI_DEVICE(dev, RavenPCIState),
183 VMSTATE_END_OF_LIST()
184 },
185};
186
40021f08
AL
187static void raven_class_init(ObjectClass *klass, void *data)
188{
189 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
39bffca2 190 DeviceClass *dc = DEVICE_CLASS(klass);
40021f08
AL
191
192 k->init = raven_init;
193 k->vendor_id = PCI_VENDOR_ID_MOTOROLA;
194 k->device_id = PCI_DEVICE_ID_MOTOROLA_RAVEN;
195 k->revision = 0x00;
196 k->class_id = PCI_CLASS_BRIDGE_HOST;
39bffca2
AL
197 dc->desc = "PReP Host Bridge - Motorola Raven";
198 dc->vmsd = &vmstate_raven;
199 dc->no_user = 1;
40021f08
AL
200}
201
4240abff 202static const TypeInfo raven_info = {
98aca3c8 203 .name = TYPE_RAVEN_PCI_DEVICE,
39bffca2
AL
204 .parent = TYPE_PCI_DEVICE,
205 .instance_size = sizeof(RavenPCIState),
40021f08 206 .class_init = raven_class_init,
55526054
AF
207};
208
999e12bb
AL
209static void raven_pcihost_class_init(ObjectClass *klass, void *data)
210{
39bffca2 211 DeviceClass *dc = DEVICE_CLASS(klass);
999e12bb 212
8d5ce2e5 213 dc->realize = raven_pcihost_realizefn;
39bffca2
AL
214 dc->fw_name = "pci";
215 dc->no_user = 1;
999e12bb
AL
216}
217
4240abff 218static const TypeInfo raven_pcihost_info = {
03a6b667 219 .name = TYPE_RAVEN_PCI_HOST_BRIDGE,
8558d942 220 .parent = TYPE_PCI_HOST_BRIDGE,
39bffca2 221 .instance_size = sizeof(PREPPCIState),
98aca3c8 222 .instance_init = raven_pcihost_initfn,
999e12bb 223 .class_init = raven_pcihost_class_init,
8ca8c7bc
AF
224};
225
83f7d43a 226static void raven_register_types(void)
55526054 227{
39bffca2
AL
228 type_register_static(&raven_pcihost_info);
229 type_register_static(&raven_info);
55526054
AF
230}
231
83f7d43a 232type_init(raven_register_types)