|
@@ -61,12 +61,6 @@ DECLARE_INSTANCE_CHECKER(PXBDev, PXB_PCIE_DEV,
|
|
DECLARE_INSTANCE_CHECKER(PXBDev, PXB_CXL_DEV,
|
|
DECLARE_INSTANCE_CHECKER(PXBDev, PXB_CXL_DEV,
|
|
TYPE_PXB_CXL_DEVICE)
|
|
TYPE_PXB_CXL_DEVICE)
|
|
|
|
|
|
-typedef struct CXLHost {
|
|
|
|
- PCIHostState parent_obj;
|
|
|
|
-
|
|
|
|
- CXLComponentState cxl_cstate;
|
|
|
|
-} CXLHost;
|
|
|
|
-
|
|
|
|
struct PXBDev {
|
|
struct PXBDev {
|
|
/*< private >*/
|
|
/*< private >*/
|
|
PCIDevice parent_obj;
|
|
PCIDevice parent_obj;
|
|
@@ -75,6 +69,9 @@ struct PXBDev {
|
|
uint8_t bus_nr;
|
|
uint8_t bus_nr;
|
|
uint16_t numa_node;
|
|
uint16_t numa_node;
|
|
bool bypass_iommu;
|
|
bool bypass_iommu;
|
|
|
|
+ struct cxl_dev {
|
|
|
|
+ CXLHost *cxl_host_bridge;
|
|
|
|
+ } cxl;
|
|
};
|
|
};
|
|
|
|
|
|
static PXBDev *convert_to_pxb(PCIDevice *dev)
|
|
static PXBDev *convert_to_pxb(PCIDevice *dev)
|
|
@@ -197,6 +194,52 @@ static const TypeInfo pxb_host_info = {
|
|
.class_init = pxb_host_class_init,
|
|
.class_init = pxb_host_class_init,
|
|
};
|
|
};
|
|
|
|
|
|
|
|
+static void pxb_cxl_realize(DeviceState *dev, Error **errp)
|
|
|
|
+{
|
|
|
|
+ MachineState *ms = MACHINE(qdev_get_machine());
|
|
|
|
+ SysBusDevice *sbd = SYS_BUS_DEVICE(dev);
|
|
|
|
+ CXLHost *cxl = PXB_CXL_HOST(dev);
|
|
|
|
+ CXLComponentState *cxl_cstate = &cxl->cxl_cstate;
|
|
|
|
+ struct MemoryRegion *mr = &cxl_cstate->crb.component_registers;
|
|
|
|
+ hwaddr offset;
|
|
|
|
+
|
|
|
|
+ cxl_component_register_block_init(OBJECT(dev), cxl_cstate,
|
|
|
|
+ TYPE_PXB_CXL_HOST);
|
|
|
|
+ sysbus_init_mmio(sbd, mr);
|
|
|
|
+
|
|
|
|
+ offset = memory_region_size(mr) * ms->cxl_devices_state->next_mr_idx;
|
|
|
|
+ if (offset > memory_region_size(&ms->cxl_devices_state->host_mr)) {
|
|
|
|
+ error_setg(errp, "Insufficient space for pxb cxl host register space");
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ memory_region_add_subregion(&ms->cxl_devices_state->host_mr, offset, mr);
|
|
|
|
+ ms->cxl_devices_state->next_mr_idx++;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static void pxb_cxl_host_class_init(ObjectClass *class, void *data)
|
|
|
|
+{
|
|
|
|
+ DeviceClass *dc = DEVICE_CLASS(class);
|
|
|
|
+ PCIHostBridgeClass *hc = PCI_HOST_BRIDGE_CLASS(class);
|
|
|
|
+
|
|
|
|
+ hc->root_bus_path = pxb_host_root_bus_path;
|
|
|
|
+ dc->fw_name = "cxl";
|
|
|
|
+ dc->realize = pxb_cxl_realize;
|
|
|
|
+ /* Reason: Internal part of the pxb/pxb-pcie device, not usable by itself */
|
|
|
|
+ dc->user_creatable = false;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+/*
|
|
|
|
+ * This is a device to handle the MMIO for a CXL host bridge. It does nothing
|
|
|
|
+ * else.
|
|
|
|
+ */
|
|
|
|
+static const TypeInfo cxl_host_info = {
|
|
|
|
+ .name = TYPE_PXB_CXL_HOST,
|
|
|
|
+ .parent = TYPE_PCI_HOST_BRIDGE,
|
|
|
|
+ .instance_size = sizeof(CXLHost),
|
|
|
|
+ .class_init = pxb_cxl_host_class_init,
|
|
|
|
+};
|
|
|
|
+
|
|
/*
|
|
/*
|
|
* Registers the PXB bus as a child of pci host root bus.
|
|
* Registers the PXB bus as a child of pci host root bus.
|
|
*/
|
|
*/
|
|
@@ -245,6 +288,13 @@ static int pxb_map_irq_fn(PCIDevice *pci_dev, int pin)
|
|
|
|
|
|
static void pxb_dev_reset(DeviceState *dev)
|
|
static void pxb_dev_reset(DeviceState *dev)
|
|
{
|
|
{
|
|
|
|
+ CXLHost *cxl = PXB_CXL_DEV(dev)->cxl.cxl_host_bridge;
|
|
|
|
+ CXLComponentState *cxl_cstate = &cxl->cxl_cstate;
|
|
|
|
+ uint32_t *reg_state = cxl_cstate->crb.cache_mem_registers;
|
|
|
|
+ uint32_t *write_msk = cxl_cstate->crb.cache_mem_regs_write_mask;
|
|
|
|
+
|
|
|
|
+ cxl_component_register_init_common(reg_state, write_msk, CXL2_ROOT_PORT);
|
|
|
|
+ ARRAY_FIELD_DP32(reg_state, CXL_HDM_DECODER_CAPABILITY, TARGET_COUNT, 8);
|
|
}
|
|
}
|
|
|
|
|
|
static gint pxb_compare(gconstpointer a, gconstpointer b)
|
|
static gint pxb_compare(gconstpointer a, gconstpointer b)
|
|
@@ -281,12 +331,13 @@ static void pxb_dev_realize_common(PCIDevice *dev, enum BusType type,
|
|
dev_name = dev->qdev.id;
|
|
dev_name = dev->qdev.id;
|
|
}
|
|
}
|
|
|
|
|
|
- ds = qdev_new(TYPE_PXB_HOST);
|
|
|
|
|
|
+ ds = qdev_new(type == CXL ? TYPE_PXB_CXL_HOST : TYPE_PXB_HOST);
|
|
if (type == PCIE) {
|
|
if (type == PCIE) {
|
|
bus = pci_root_bus_new(ds, dev_name, NULL, NULL, 0, TYPE_PXB_PCIE_BUS);
|
|
bus = pci_root_bus_new(ds, dev_name, NULL, NULL, 0, TYPE_PXB_PCIE_BUS);
|
|
} else if (type == CXL) {
|
|
} else if (type == CXL) {
|
|
bus = pci_root_bus_new(ds, dev_name, NULL, NULL, 0, TYPE_PXB_CXL_BUS);
|
|
bus = pci_root_bus_new(ds, dev_name, NULL, NULL, 0, TYPE_PXB_CXL_BUS);
|
|
bus->flags |= PCI_BUS_CXL;
|
|
bus->flags |= PCI_BUS_CXL;
|
|
|
|
+ PXB_CXL_DEV(dev)->cxl.cxl_host_bridge = PXB_CXL_HOST(ds);
|
|
} else {
|
|
} else {
|
|
bus = pci_root_bus_new(ds, "pxb-internal", NULL, NULL, 0, TYPE_PXB_BUS);
|
|
bus = pci_root_bus_new(ds, "pxb-internal", NULL, NULL, 0, TYPE_PXB_BUS);
|
|
bds = qdev_new("pci-bridge");
|
|
bds = qdev_new("pci-bridge");
|
|
@@ -475,6 +526,7 @@ static void pxb_register_types(void)
|
|
type_register_static(&pxb_pcie_bus_info);
|
|
type_register_static(&pxb_pcie_bus_info);
|
|
type_register_static(&pxb_cxl_bus_info);
|
|
type_register_static(&pxb_cxl_bus_info);
|
|
type_register_static(&pxb_host_info);
|
|
type_register_static(&pxb_host_info);
|
|
|
|
+ type_register_static(&cxl_host_info);
|
|
type_register_static(&pxb_dev_info);
|
|
type_register_static(&pxb_dev_info);
|
|
type_register_static(&pxb_pcie_dev_info);
|
|
type_register_static(&pxb_pcie_dev_info);
|
|
type_register_static(&pxb_cxl_dev_info);
|
|
type_register_static(&pxb_cxl_dev_info);
|