2 * PCI Expander Bridge Device Emulation
4 * Copyright (C) 2015 Red Hat Inc
7 * Marcel Apfelbaum <marcel@redhat.com>
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
13 #include "qemu/osdep.h"
14 #include "hw/pci/pci.h"
15 #include "hw/pci/pci_bus.h"
16 #include "hw/pci/pci_host.h"
17 #include "hw/pci/pci_bus.h"
18 #include "hw/pci/pci_bridge.h"
19 #include "hw/i386/pc.h"
20 #include "qemu/range.h"
21 #include "qemu/error-report.h"
22 #include "sysemu/numa.h"
24 #define TYPE_PXB_BUS "pxb-bus"
25 #define PXB_BUS(obj) OBJECT_CHECK(PXBBus, (obj), TYPE_PXB_BUS)
27 #define TYPE_PXB_PCIE_BUS "pxb-pcie-bus"
28 #define PXB_PCIE_BUS(obj) OBJECT_CHECK(PXBBus, (obj), TYPE_PXB_PCIE_BUS)
30 typedef struct PXBBus
{
38 #define TYPE_PXB_DEVICE "pxb"
39 #define PXB_DEV(obj) OBJECT_CHECK(PXBDev, (obj), TYPE_PXB_DEVICE)
41 #define TYPE_PXB_PCIE_DEVICE "pxb-pcie"
42 #define PXB_PCIE_DEV(obj) OBJECT_CHECK(PXBDev, (obj), TYPE_PXB_PCIE_DEVICE)
44 typedef struct PXBDev
{
53 static PXBDev
*convert_to_pxb(PCIDevice
*dev
)
55 return pci_bus_is_express(dev
->bus
) ? PXB_PCIE_DEV(dev
) : PXB_DEV(dev
);
58 static GList
*pxb_dev_list
;
60 #define TYPE_PXB_HOST "pxb-host"
62 static int pxb_bus_num(PCIBus
*bus
)
64 PXBDev
*pxb
= convert_to_pxb(bus
->parent_dev
);
69 static bool pxb_is_root(PCIBus
*bus
)
71 return true; /* by definition */
74 static uint16_t pxb_bus_numa_node(PCIBus
*bus
)
76 PXBDev
*pxb
= convert_to_pxb(bus
->parent_dev
);
78 return pxb
->numa_node
;
81 static void pxb_bus_class_init(ObjectClass
*class, void *data
)
83 PCIBusClass
*pbc
= PCI_BUS_CLASS(class);
85 pbc
->bus_num
= pxb_bus_num
;
86 pbc
->is_root
= pxb_is_root
;
87 pbc
->numa_node
= pxb_bus_numa_node
;
90 static const TypeInfo pxb_bus_info
= {
92 .parent
= TYPE_PCI_BUS
,
93 .instance_size
= sizeof(PXBBus
),
94 .class_init
= pxb_bus_class_init
,
97 static const TypeInfo pxb_pcie_bus_info
= {
98 .name
= TYPE_PXB_PCIE_BUS
,
99 .parent
= TYPE_PCIE_BUS
,
100 .instance_size
= sizeof(PXBBus
),
101 .class_init
= pxb_bus_class_init
,
104 static const char *pxb_host_root_bus_path(PCIHostState
*host_bridge
,
107 PXBBus
*bus
= pci_bus_is_express(rootbus
) ?
108 PXB_PCIE_BUS(rootbus
) : PXB_BUS(rootbus
);
110 snprintf(bus
->bus_path
, 8, "0000:%02x", pxb_bus_num(rootbus
));
111 return bus
->bus_path
;
114 static char *pxb_host_ofw_unit_address(const SysBusDevice
*dev
)
116 const PCIHostState
*pxb_host
;
117 const PCIBus
*pxb_bus
;
118 const PXBDev
*pxb_dev
;
120 const DeviceState
*pxb_dev_base
;
121 const PCIHostState
*main_host
;
122 const SysBusDevice
*main_host_sbd
;
124 pxb_host
= PCI_HOST_BRIDGE(dev
);
125 pxb_bus
= pxb_host
->bus
;
126 pxb_dev
= convert_to_pxb(pxb_bus
->parent_dev
);
127 position
= g_list_index(pxb_dev_list
, pxb_dev
);
128 assert(position
>= 0);
130 pxb_dev_base
= DEVICE(pxb_dev
);
131 main_host
= PCI_HOST_BRIDGE(pxb_dev_base
->parent_bus
->parent
);
132 main_host_sbd
= SYS_BUS_DEVICE(main_host
);
134 if (main_host_sbd
->num_mmio
> 0) {
135 return g_strdup_printf(TARGET_FMT_plx
",%x",
136 main_host_sbd
->mmio
[0].addr
, position
+ 1);
138 if (main_host_sbd
->num_pio
> 0) {
139 return g_strdup_printf("i%04x,%x",
140 main_host_sbd
->pio
[0], position
+ 1);
145 static void pxb_host_class_init(ObjectClass
*class, void *data
)
147 DeviceClass
*dc
= DEVICE_CLASS(class);
148 SysBusDeviceClass
*sbc
= SYS_BUS_DEVICE_CLASS(class);
149 PCIHostBridgeClass
*hc
= PCI_HOST_BRIDGE_CLASS(class);
152 /* Reason: Internal part of the pxb/pxb-pcie device, not usable by itself */
153 dc
->cannot_instantiate_with_device_add_yet
= true;
154 sbc
->explicit_ofw_unit_address
= pxb_host_ofw_unit_address
;
155 hc
->root_bus_path
= pxb_host_root_bus_path
;
158 static const TypeInfo pxb_host_info
= {
159 .name
= TYPE_PXB_HOST
,
160 .parent
= TYPE_PCI_HOST_BRIDGE
,
161 .class_init
= pxb_host_class_init
,
165 * Registers the PXB bus as a child of the i440fx root bus.
167 * Returns 0 on successs, -1 if i440fx host was not
168 * found or the bus number is already in use.
170 static int pxb_register_bus(PCIDevice
*dev
, PCIBus
*pxb_bus
)
172 PCIBus
*bus
= dev
->bus
;
173 int pxb_bus_num
= pci_bus_num(pxb_bus
);
175 if (bus
->parent_dev
) {
176 error_report("PXB devices can be attached only to root bus.");
180 QLIST_FOREACH(bus
, &bus
->child
, sibling
) {
181 if (pci_bus_num(bus
) == pxb_bus_num
) {
182 error_report("Bus %d is already in use.", pxb_bus_num
);
186 QLIST_INSERT_HEAD(&dev
->bus
->child
, pxb_bus
, sibling
);
191 static int pxb_map_irq_fn(PCIDevice
*pci_dev
, int pin
)
193 PCIDevice
*pxb
= pci_dev
->bus
->parent_dev
;
196 * The bios does not index the pxb slot number when
197 * it computes the IRQ because it resides on bus 0
198 * and not on the current bus.
199 * However QEMU routes the irq through bus 0 and adds
200 * the pxb slot to the IRQ computation of the PXB
203 * Synchronize between bios and QEMU by canceling
206 return pin
- PCI_SLOT(pxb
->devfn
);
209 static gint
pxb_compare(gconstpointer a
, gconstpointer b
)
211 const PXBDev
*pxb_a
= a
, *pxb_b
= b
;
213 return pxb_a
->bus_nr
< pxb_b
->bus_nr
? -1 :
214 pxb_a
->bus_nr
> pxb_b
->bus_nr
? 1 :
218 static int pxb_dev_init_common(PCIDevice
*dev
, bool pcie
)
220 PXBDev
*pxb
= convert_to_pxb(dev
);
221 DeviceState
*ds
, *bds
= NULL
;
223 const char *dev_name
= NULL
;
225 if (pxb
->numa_node
!= NUMA_NODE_UNASSIGNED
&&
226 pxb
->numa_node
>= nb_numa_nodes
) {
227 error_report("Illegal numa node %d.", pxb
->numa_node
);
231 if (dev
->qdev
.id
&& *dev
->qdev
.id
) {
232 dev_name
= dev
->qdev
.id
;
235 ds
= qdev_create(NULL
, TYPE_PXB_HOST
);
237 bus
= pci_bus_new(ds
, dev_name
, NULL
, NULL
, 0, TYPE_PXB_PCIE_BUS
);
239 bus
= pci_bus_new(ds
, "pxb-internal", NULL
, NULL
, 0, TYPE_PXB_BUS
);
240 bds
= qdev_create(BUS(bus
), "pci-bridge");
242 qdev_prop_set_uint8(bds
, PCI_BRIDGE_DEV_PROP_CHASSIS_NR
, pxb
->bus_nr
);
243 qdev_prop_set_bit(bds
, PCI_BRIDGE_DEV_PROP_SHPC
, false);
246 bus
->parent_dev
= dev
;
247 bus
->address_space_mem
= dev
->bus
->address_space_mem
;
248 bus
->address_space_io
= dev
->bus
->address_space_io
;
249 bus
->map_irq
= pxb_map_irq_fn
;
251 PCI_HOST_BRIDGE(ds
)->bus
= bus
;
253 if (pxb_register_bus(dev
, bus
)) {
254 goto err_register_bus
;
257 qdev_init_nofail(ds
);
259 qdev_init_nofail(bds
);
262 pci_word_test_and_set_mask(dev
->config
+ PCI_STATUS
,
263 PCI_STATUS_66MHZ
| PCI_STATUS_FAST_BACK
);
264 pci_config_set_class(dev
->config
, PCI_CLASS_BRIDGE_HOST
);
266 pxb_dev_list
= g_list_insert_sorted(pxb_dev_list
, pxb
, pxb_compare
);
270 object_unref(OBJECT(bds
));
271 object_unparent(OBJECT(bus
));
272 object_unref(OBJECT(ds
));
276 static int pxb_dev_initfn(PCIDevice
*dev
)
278 if (pci_bus_is_express(dev
->bus
)) {
279 error_report("pxb devices cannot reside on a PCIe bus!");
283 return pxb_dev_init_common(dev
, false);
286 static void pxb_dev_exitfn(PCIDevice
*pci_dev
)
288 PXBDev
*pxb
= convert_to_pxb(pci_dev
);
290 pxb_dev_list
= g_list_remove(pxb_dev_list
, pxb
);
293 static Property pxb_dev_properties
[] = {
294 /* Note: 0 is not a legal PXB bus number. */
295 DEFINE_PROP_UINT8("bus_nr", PXBDev
, bus_nr
, 0),
296 DEFINE_PROP_UINT16("numa_node", PXBDev
, numa_node
, NUMA_NODE_UNASSIGNED
),
297 DEFINE_PROP_END_OF_LIST(),
300 static void pxb_dev_class_init(ObjectClass
*klass
, void *data
)
302 DeviceClass
*dc
= DEVICE_CLASS(klass
);
303 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
305 k
->init
= pxb_dev_initfn
;
306 k
->exit
= pxb_dev_exitfn
;
307 k
->vendor_id
= PCI_VENDOR_ID_REDHAT
;
308 k
->device_id
= PCI_DEVICE_ID_REDHAT_PXB
;
309 k
->class_id
= PCI_CLASS_BRIDGE_HOST
;
311 dc
->desc
= "PCI Expander Bridge";
312 dc
->props
= pxb_dev_properties
;
313 set_bit(DEVICE_CATEGORY_BRIDGE
, dc
->categories
);
316 static const TypeInfo pxb_dev_info
= {
317 .name
= TYPE_PXB_DEVICE
,
318 .parent
= TYPE_PCI_DEVICE
,
319 .instance_size
= sizeof(PXBDev
),
320 .class_init
= pxb_dev_class_init
,
323 static int pxb_pcie_dev_initfn(PCIDevice
*dev
)
325 if (!pci_bus_is_express(dev
->bus
)) {
326 error_report("pxb-pcie devices cannot reside on a PCI bus!");
330 return pxb_dev_init_common(dev
, true);
333 static void pxb_pcie_dev_class_init(ObjectClass
*klass
, void *data
)
335 DeviceClass
*dc
= DEVICE_CLASS(klass
);
336 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
338 k
->init
= pxb_pcie_dev_initfn
;
339 k
->exit
= pxb_dev_exitfn
;
340 k
->vendor_id
= PCI_VENDOR_ID_REDHAT
;
341 k
->device_id
= PCI_DEVICE_ID_REDHAT_PXB_PCIE
;
342 k
->class_id
= PCI_CLASS_BRIDGE_HOST
;
344 dc
->desc
= "PCI Express Expander Bridge";
345 dc
->props
= pxb_dev_properties
;
346 set_bit(DEVICE_CATEGORY_BRIDGE
, dc
->categories
);
349 static const TypeInfo pxb_pcie_dev_info
= {
350 .name
= TYPE_PXB_PCIE_DEVICE
,
351 .parent
= TYPE_PCI_DEVICE
,
352 .instance_size
= sizeof(PXBDev
),
353 .class_init
= pxb_pcie_dev_class_init
,
356 static void pxb_register_types(void)
358 type_register_static(&pxb_bus_info
);
359 type_register_static(&pxb_pcie_bus_info
);
360 type_register_static(&pxb_host_info
);
361 type_register_static(&pxb_dev_info
);
362 type_register_static(&pxb_pcie_dev_info
);
365 type_init(pxb_register_types
)