]> git.proxmox.com Git - mirror_qemu.git/blame - hw/pci-host/xilinx-pcie.c
qom: Tidy up a few object_initialize_child() calls
[mirror_qemu.git] / hw / pci-host / xilinx-pcie.c
CommitLineData
62be3934
PB
1/*
2 * Xilinx PCIe host controller emulation.
3 *
4 * Copyright (c) 2016 Imagination Technologies
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 */
19
20#include "qemu/osdep.h"
0b8fa32f 21#include "qemu/module.h"
be01029e 22#include "qemu/units.h"
371e94ba 23#include "qapi/error.h"
62be3934 24#include "hw/pci/pci_bridge.h"
a27bd6c7 25#include "hw/qdev-properties.h"
64552b6b 26#include "hw/irq.h"
62be3934
PB
27#include "hw/pci-host/xilinx-pcie.h"
28
29enum root_cfg_reg {
30 /* Interrupt Decode Register */
31 ROOTCFG_INTDEC = 0x138,
32
33 /* Interrupt Mask Register */
34 ROOTCFG_INTMASK = 0x13c,
35 /* INTx Interrupt Received */
36#define ROOTCFG_INTMASK_INTX (1 << 16)
37 /* MSI Interrupt Received */
38#define ROOTCFG_INTMASK_MSI (1 << 17)
39
40 /* PHY Status/Control Register */
41 ROOTCFG_PSCR = 0x144,
42 /* Link Up */
43#define ROOTCFG_PSCR_LINK_UP (1 << 11)
44
45 /* Root Port Status/Control Register */
46 ROOTCFG_RPSCR = 0x148,
47 /* Bridge Enable */
48#define ROOTCFG_RPSCR_BRIDGEEN (1 << 0)
49 /* Interrupt FIFO Not Empty */
50#define ROOTCFG_RPSCR_INTNEMPTY (1 << 18)
51 /* Interrupt FIFO Overflow */
52#define ROOTCFG_RPSCR_INTOVF (1 << 19)
53
54 /* Root Port Interrupt FIFO Read Register 1 */
55 ROOTCFG_RPIFR1 = 0x158,
56#define ROOTCFG_RPIFR1_INT_LANE_SHIFT 27
57#define ROOTCFG_RPIFR1_INT_ASSERT_SHIFT 29
58#define ROOTCFG_RPIFR1_INT_VALID_SHIFT 31
59 /* Root Port Interrupt FIFO Read Register 2 */
60 ROOTCFG_RPIFR2 = 0x15c,
61};
62
63static void xilinx_pcie_update_intr(XilinxPCIEHost *s,
64 uint32_t set, uint32_t clear)
65{
66 int level;
67
68 s->intr |= set;
69 s->intr &= ~clear;
70
71 if (s->intr_fifo_r != s->intr_fifo_w) {
72 s->intr |= ROOTCFG_INTMASK_INTX;
73 }
74
75 level = !!(s->intr & s->intr_mask);
76 qemu_set_irq(s->irq, level);
77}
78
79static void xilinx_pcie_queue_intr(XilinxPCIEHost *s,
80 uint32_t fifo_reg1, uint32_t fifo_reg2)
81{
82 XilinxPCIEInt *intr;
83 unsigned int new_w;
84
85 new_w = (s->intr_fifo_w + 1) % ARRAY_SIZE(s->intr_fifo);
86 if (new_w == s->intr_fifo_r) {
87 s->rpscr |= ROOTCFG_RPSCR_INTOVF;
88 return;
89 }
90
91 intr = &s->intr_fifo[s->intr_fifo_w];
92 s->intr_fifo_w = new_w;
93
94 intr->fifo_reg1 = fifo_reg1;
95 intr->fifo_reg2 = fifo_reg2;
96
97 xilinx_pcie_update_intr(s, ROOTCFG_INTMASK_INTX, 0);
98}
99
100static void xilinx_pcie_set_irq(void *opaque, int irq_num, int level)
101{
102 XilinxPCIEHost *s = XILINX_PCIE_HOST(opaque);
103
104 xilinx_pcie_queue_intr(s,
105 (irq_num << ROOTCFG_RPIFR1_INT_LANE_SHIFT) |
106 (level << ROOTCFG_RPIFR1_INT_ASSERT_SHIFT) |
107 (1 << ROOTCFG_RPIFR1_INT_VALID_SHIFT),
108 0);
109}
110
111static void xilinx_pcie_host_realize(DeviceState *dev, Error **errp)
112{
113 PCIHostState *pci = PCI_HOST_BRIDGE(dev);
114 XilinxPCIEHost *s = XILINX_PCIE_HOST(dev);
115 SysBusDevice *sbd = SYS_BUS_DEVICE(dev);
116 PCIExpressHost *pex = PCIE_HOST_BRIDGE(dev);
117
118 snprintf(s->name, sizeof(s->name), "pcie%u", s->bus_nr);
119
120 /* PCI configuration space */
121 pcie_host_mmcfg_init(pex, s->cfg_size);
122
123 /* MMIO region */
124 memory_region_init(&s->mmio, OBJECT(s), "mmio", UINT64_MAX);
125 memory_region_set_enabled(&s->mmio, false);
126
4f917406
PM
127 /* dummy PCI I/O region (not visible to the CPU) */
128 memory_region_init(&s->io, OBJECT(s), "io", 16);
62be3934
PB
129
130 /* interrupt out */
131 qdev_init_gpio_out_named(dev, &s->irq, "interrupt_out", 1);
132
133 sysbus_init_mmio(sbd, &pex->mmio);
134 sysbus_init_mmio(sbd, &s->mmio);
135
1115ff6d
DG
136 pci->bus = pci_register_root_bus(dev, s->name, xilinx_pcie_set_irq,
137 pci_swizzle_map_irq_fn, s, &s->mmio,
138 &s->io, 0, 4, TYPE_PCIE_BUS);
62be3934 139
99ba777e 140 qdev_realize(DEVICE(&s->root), BUS(pci->bus), &error_fatal);
62be3934
PB
141}
142
143static const char *xilinx_pcie_host_root_bus_path(PCIHostState *host_bridge,
144 PCIBus *rootbus)
145{
146 return "0000:00";
147}
148
149static void xilinx_pcie_host_init(Object *obj)
150{
151 XilinxPCIEHost *s = XILINX_PCIE_HOST(obj);
152 XilinxPCIERoot *root = &s->root;
153
aff39be0
TH
154 object_initialize_child(obj, "root", root, sizeof(*root),
155 TYPE_XILINX_PCIE_ROOT, &error_abort, NULL);
446de8b6 156 qdev_prop_set_int32(DEVICE(root), "addr", PCI_DEVFN(0, 0));
62be3934
PB
157 qdev_prop_set_bit(DEVICE(root), "multifunction", false);
158}
159
160static Property xilinx_pcie_host_props[] = {
161 DEFINE_PROP_UINT32("bus_nr", XilinxPCIEHost, bus_nr, 0),
162 DEFINE_PROP_SIZE("cfg_base", XilinxPCIEHost, cfg_base, 0),
be01029e 163 DEFINE_PROP_SIZE("cfg_size", XilinxPCIEHost, cfg_size, 32 * MiB),
62be3934 164 DEFINE_PROP_SIZE("mmio_base", XilinxPCIEHost, mmio_base, 0),
be01029e 165 DEFINE_PROP_SIZE("mmio_size", XilinxPCIEHost, mmio_size, 1 * MiB),
62be3934
PB
166 DEFINE_PROP_BOOL("link_up", XilinxPCIEHost, link_up, true),
167 DEFINE_PROP_END_OF_LIST(),
168};
169
170static void xilinx_pcie_host_class_init(ObjectClass *klass, void *data)
171{
172 DeviceClass *dc = DEVICE_CLASS(klass);
173 PCIHostBridgeClass *hc = PCI_HOST_BRIDGE_CLASS(klass);
174
175 hc->root_bus_path = xilinx_pcie_host_root_bus_path;
176 dc->realize = xilinx_pcie_host_realize;
177 set_bit(DEVICE_CATEGORY_BRIDGE, dc->categories);
178 dc->fw_name = "pci";
4f67d30b 179 device_class_set_props(dc, xilinx_pcie_host_props);
62be3934
PB
180}
181
182static const TypeInfo xilinx_pcie_host_info = {
183 .name = TYPE_XILINX_PCIE_HOST,
184 .parent = TYPE_PCIE_HOST_BRIDGE,
185 .instance_size = sizeof(XilinxPCIEHost),
186 .instance_init = xilinx_pcie_host_init,
187 .class_init = xilinx_pcie_host_class_init,
188};
189
190static uint32_t xilinx_pcie_root_config_read(PCIDevice *d,
191 uint32_t address, int len)
192{
193 XilinxPCIEHost *s = XILINX_PCIE_HOST(OBJECT(d)->parent);
194 uint32_t val;
195
196 switch (address) {
197 case ROOTCFG_INTDEC:
198 val = s->intr;
199 break;
200 case ROOTCFG_INTMASK:
201 val = s->intr_mask;
202 break;
203 case ROOTCFG_PSCR:
204 val = s->link_up ? ROOTCFG_PSCR_LINK_UP : 0;
205 break;
206 case ROOTCFG_RPSCR:
207 if (s->intr_fifo_r != s->intr_fifo_w) {
208 s->rpscr &= ~ROOTCFG_RPSCR_INTNEMPTY;
209 } else {
210 s->rpscr |= ROOTCFG_RPSCR_INTNEMPTY;
211 }
212 val = s->rpscr;
213 break;
214 case ROOTCFG_RPIFR1:
215 if (s->intr_fifo_w == s->intr_fifo_r) {
216 /* FIFO empty */
217 val = 0;
218 } else {
219 val = s->intr_fifo[s->intr_fifo_r].fifo_reg1;
220 }
221 break;
222 case ROOTCFG_RPIFR2:
223 if (s->intr_fifo_w == s->intr_fifo_r) {
224 /* FIFO empty */
225 val = 0;
226 } else {
227 val = s->intr_fifo[s->intr_fifo_r].fifo_reg2;
228 }
229 break;
230 default:
231 val = pci_default_read_config(d, address, len);
232 break;
233 }
234 return val;
235}
236
237static void xilinx_pcie_root_config_write(PCIDevice *d, uint32_t address,
238 uint32_t val, int len)
239{
240 XilinxPCIEHost *s = XILINX_PCIE_HOST(OBJECT(d)->parent);
241 switch (address) {
242 case ROOTCFG_INTDEC:
243 xilinx_pcie_update_intr(s, 0, val);
244 break;
245 case ROOTCFG_INTMASK:
246 s->intr_mask = val;
247 xilinx_pcie_update_intr(s, 0, 0);
248 break;
249 case ROOTCFG_RPSCR:
250 s->rpscr &= ~ROOTCFG_RPSCR_BRIDGEEN;
251 s->rpscr |= val & ROOTCFG_RPSCR_BRIDGEEN;
252 memory_region_set_enabled(&s->mmio, val & ROOTCFG_RPSCR_BRIDGEEN);
253
254 if (val & ROOTCFG_INTMASK_INTX) {
255 s->rpscr &= ~ROOTCFG_INTMASK_INTX;
256 }
257 break;
258 case ROOTCFG_RPIFR1:
259 case ROOTCFG_RPIFR2:
260 if (s->intr_fifo_w == s->intr_fifo_r) {
261 /* FIFO empty */
262 return;
263 } else {
264 s->intr_fifo_r = (s->intr_fifo_r + 1) % ARRAY_SIZE(s->intr_fifo);
265 }
266 break;
267 default:
268 pci_default_write_config(d, address, val, len);
269 break;
270 }
271}
272
371e94ba 273static void xilinx_pcie_root_realize(PCIDevice *pci_dev, Error **errp)
62be3934 274{
371e94ba 275 BusState *bus = qdev_get_parent_bus(DEVICE(pci_dev));
62be3934
PB
276 XilinxPCIEHost *s = XILINX_PCIE_HOST(bus->parent);
277
371e94ba 278 pci_set_word(pci_dev->config + PCI_COMMAND,
62be3934 279 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER);
371e94ba
PMD
280 pci_set_word(pci_dev->config + PCI_MEMORY_BASE, s->mmio_base >> 16);
281 pci_set_word(pci_dev->config + PCI_MEMORY_LIMIT,
62be3934
PB
282 ((s->mmio_base + s->mmio_size - 1) >> 16) & 0xfff0);
283
371e94ba 284 pci_bridge_initfn(pci_dev, TYPE_PCI_BUS);
62be3934 285
371e94ba
PMD
286 if (pcie_endpoint_cap_v1_init(pci_dev, 0x80) < 0) {
287 error_setg(errp, "Failed to initialize PCIe capability");
62be3934 288 }
62be3934
PB
289}
290
291static void xilinx_pcie_root_class_init(ObjectClass *klass, void *data)
292{
293 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
294 DeviceClass *dc = DEVICE_CLASS(klass);
295
296 set_bit(DEVICE_CATEGORY_BRIDGE, dc->categories);
297 dc->desc = "Xilinx AXI-PCIe Host Bridge";
298 k->vendor_id = PCI_VENDOR_ID_XILINX;
299 k->device_id = 0x7021;
300 k->revision = 0;
301 k->class_id = PCI_CLASS_BRIDGE_HOST;
62be3934 302 k->is_bridge = true;
371e94ba 303 k->realize = xilinx_pcie_root_realize;
62be3934
PB
304 k->exit = pci_bridge_exitfn;
305 dc->reset = pci_bridge_reset;
306 k->config_read = xilinx_pcie_root_config_read;
307 k->config_write = xilinx_pcie_root_config_write;
308 /*
309 * PCI-facing part of the host bridge, not usable without the
310 * host-facing part, which can't be device_add'ed, yet.
311 */
e90f2a8c 312 dc->user_creatable = false;
62be3934
PB
313}
314
315static const TypeInfo xilinx_pcie_root_info = {
316 .name = TYPE_XILINX_PCIE_ROOT,
317 .parent = TYPE_PCI_BRIDGE,
318 .instance_size = sizeof(XilinxPCIERoot),
319 .class_init = xilinx_pcie_root_class_init,
71d78767
EH
320 .interfaces = (InterfaceInfo[]) {
321 { INTERFACE_PCIE_DEVICE },
322 { }
323 },
62be3934
PB
324};
325
326static void xilinx_pcie_register(void)
327{
328 type_register_static(&xilinx_pcie_root_info);
329 type_register_static(&xilinx_pcie_host_info);
330}
331
332type_init(xilinx_pcie_register)