2 * CXL 2.0 Root Port Implementation
4 * Copyright(C) 2020 Intel Corporation.
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.
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.
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/>
20 #include "qemu/osdep.h"
22 #include "qemu/range.h"
23 #include "hw/pci/pci_bridge.h"
24 #include "hw/pci/pcie_port.h"
25 #include "hw/qdev-properties.h"
26 #include "hw/sysbus.h"
27 #include "qapi/error.h"
28 #include "hw/cxl/cxl.h"
30 #define CXL_ROOT_PORT_DID 0x7075
32 /* Copied from the gen root port which we derive */
33 #define GEN_PCIE_ROOT_PORT_AER_OFFSET 0x100
34 #define GEN_PCIE_ROOT_PORT_ACS_OFFSET \
35 (GEN_PCIE_ROOT_PORT_AER_OFFSET + PCI_ERR_SIZEOF)
36 #define CXL_ROOT_PORT_DVSEC_OFFSET \
37 (GEN_PCIE_ROOT_PORT_ACS_OFFSET + PCI_ACS_SIZEOF)
39 typedef struct CXLRootPort
{
43 CXLComponentState cxl_cstate
;
44 PCIResReserve res_reserve
;
47 #define TYPE_CXL_ROOT_PORT "cxl-rp"
48 DECLARE_INSTANCE_CHECKER(CXLRootPort
, CXL_ROOT_PORT
, TYPE_CXL_ROOT_PORT
)
50 static void latch_registers(CXLRootPort
*crp
)
52 uint32_t *reg_state
= crp
->cxl_cstate
.crb
.cache_mem_registers
;
53 uint32_t *write_msk
= crp
->cxl_cstate
.crb
.cache_mem_regs_write_mask
;
55 cxl_component_register_init_common(reg_state
, write_msk
, CXL2_ROOT_PORT
);
58 static void build_dvsecs(CXLComponentState
*cxl
)
62 dvsec
= (uint8_t *)&(CXLDVSECPortExtensions
){ 0 };
63 cxl_component_create_dvsec(cxl
, CXL2_ROOT_PORT
,
64 EXTENSIONS_PORT_DVSEC_LENGTH
,
65 EXTENSIONS_PORT_DVSEC
,
66 EXTENSIONS_PORT_DVSEC_REVID
, dvsec
);
68 dvsec
= (uint8_t *)&(CXLDVSECPortGPF
){
70 .phase1_ctrl
= 1, /* 1μs timeout */
71 .phase2_ctrl
= 1, /* 1μs timeout */
73 cxl_component_create_dvsec(cxl
, CXL2_ROOT_PORT
,
74 GPF_PORT_DVSEC_LENGTH
, GPF_PORT_DVSEC
,
75 GPF_PORT_DVSEC_REVID
, dvsec
);
77 dvsec
= (uint8_t *)&(CXLDVSECPortFlexBus
){
78 .cap
= 0x26, /* IO, Mem, non-MLD */
80 .status
= 0x26, /* same */
81 .rcvd_mod_ts_data_phase1
= 0xef,
83 cxl_component_create_dvsec(cxl
, CXL2_ROOT_PORT
,
84 PCIE_FLEXBUS_PORT_DVSEC_LENGTH_2_0
,
85 PCIE_FLEXBUS_PORT_DVSEC
,
86 PCIE_FLEXBUS_PORT_DVSEC_REVID_2_0
, dvsec
);
88 dvsec
= (uint8_t *)&(CXLDVSECRegisterLocator
){
90 .reg0_base_lo
= RBI_COMPONENT_REG
| CXL_COMPONENT_REG_BAR_IDX
,
93 cxl_component_create_dvsec(cxl
, CXL2_ROOT_PORT
,
94 REG_LOC_DVSEC_LENGTH
, REG_LOC_DVSEC
,
95 REG_LOC_DVSEC_REVID
, dvsec
);
98 static void cxl_rp_realize(DeviceState
*dev
, Error
**errp
)
100 PCIDevice
*pci_dev
= PCI_DEVICE(dev
);
101 PCIERootPortClass
*rpc
= PCIE_ROOT_PORT_GET_CLASS(dev
);
102 CXLRootPort
*crp
= CXL_ROOT_PORT(dev
);
103 CXLComponentState
*cxl_cstate
= &crp
->cxl_cstate
;
104 ComponentRegisters
*cregs
= &cxl_cstate
->crb
;
105 MemoryRegion
*component_bar
= &cregs
->component_registers
;
106 Error
*local_err
= NULL
;
108 rpc
->parent_realize(dev
, &local_err
);
110 error_propagate(errp
, local_err
);
115 pci_bridge_qemu_reserve_cap_init(pci_dev
, 0, crp
->res_reserve
, errp
);
117 rpc
->parent_class
.exit(pci_dev
);
121 if (!crp
->res_reserve
.io
|| crp
->res_reserve
.io
== -1) {
122 pci_word_test_and_clear_mask(pci_dev
->wmask
+ PCI_COMMAND
,
124 pci_dev
->wmask
[PCI_IO_BASE
] = 0;
125 pci_dev
->wmask
[PCI_IO_LIMIT
] = 0;
128 cxl_cstate
->dvsec_offset
= CXL_ROOT_PORT_DVSEC_OFFSET
;
129 cxl_cstate
->pdev
= pci_dev
;
130 build_dvsecs(&crp
->cxl_cstate
);
132 cxl_component_register_block_init(OBJECT(pci_dev
), cxl_cstate
,
135 pci_register_bar(pci_dev
, CXL_COMPONENT_REG_BAR_IDX
,
136 PCI_BASE_ADDRESS_SPACE_MEMORY
|
137 PCI_BASE_ADDRESS_MEM_TYPE_64
,
141 static void cxl_rp_reset_hold(Object
*obj
)
143 PCIERootPortClass
*rpc
= PCIE_ROOT_PORT_GET_CLASS(obj
);
144 CXLRootPort
*crp
= CXL_ROOT_PORT(obj
);
146 if (rpc
->parent_phases
.hold
) {
147 rpc
->parent_phases
.hold(obj
);
150 latch_registers(crp
);
153 static Property gen_rp_props
[] = {
154 DEFINE_PROP_UINT32("bus-reserve", CXLRootPort
, res_reserve
.bus
, -1),
155 DEFINE_PROP_SIZE("io-reserve", CXLRootPort
, res_reserve
.io
, -1),
156 DEFINE_PROP_SIZE("mem-reserve", CXLRootPort
, res_reserve
.mem_non_pref
, -1),
157 DEFINE_PROP_SIZE("pref32-reserve", CXLRootPort
, res_reserve
.mem_pref_32
,
159 DEFINE_PROP_SIZE("pref64-reserve", CXLRootPort
, res_reserve
.mem_pref_64
,
161 DEFINE_PROP_END_OF_LIST()
164 static void cxl_rp_dvsec_write_config(PCIDevice
*dev
, uint32_t addr
,
165 uint32_t val
, int len
)
167 CXLRootPort
*crp
= CXL_ROOT_PORT(dev
);
169 if (range_contains(&crp
->cxl_cstate
.dvsecs
[EXTENSIONS_PORT_DVSEC
], addr
)) {
170 uint8_t *reg
= &dev
->config
[addr
];
171 addr
-= crp
->cxl_cstate
.dvsecs
[EXTENSIONS_PORT_DVSEC
].lob
;
172 if (addr
== PORT_CONTROL_OFFSET
) {
173 if (pci_get_word(reg
) & PORT_CONTROL_UNMASK_SBR
) {
175 qemu_log_mask(LOG_UNIMP
, "SBR mask control is not supported\n");
177 if (pci_get_word(reg
) & PORT_CONTROL_ALT_MEMID_EN
) {
178 /* Alt Memory & ID Space Enable */
179 qemu_log_mask(LOG_UNIMP
,
180 "Alt Memory & ID space is not supported\n");
186 static void cxl_rp_write_config(PCIDevice
*d
, uint32_t address
, uint32_t val
,
189 uint16_t slt_ctl
, slt_sta
;
191 pcie_cap_slot_get(d
, &slt_ctl
, &slt_sta
);
192 pci_bridge_write_config(d
, address
, val
, len
);
193 pcie_cap_flr_write_config(d
, address
, val
, len
);
194 pcie_cap_slot_write_config(d
, slt_ctl
, slt_sta
, address
, val
, len
);
195 pcie_aer_write_config(d
, address
, val
, len
);
197 cxl_rp_dvsec_write_config(d
, address
, val
, len
);
200 static void cxl_root_port_class_init(ObjectClass
*oc
, void *data
)
202 DeviceClass
*dc
= DEVICE_CLASS(oc
);
203 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(oc
);
204 ResettableClass
*rc
= RESETTABLE_CLASS(oc
);
205 PCIERootPortClass
*rpc
= PCIE_ROOT_PORT_CLASS(oc
);
207 k
->vendor_id
= PCI_VENDOR_ID_INTEL
;
208 k
->device_id
= CXL_ROOT_PORT_DID
;
209 dc
->desc
= "CXL Root Port";
211 device_class_set_props(dc
, gen_rp_props
);
212 k
->config_write
= cxl_rp_write_config
;
214 device_class_set_parent_realize(dc
, cxl_rp_realize
, &rpc
->parent_realize
);
215 resettable_class_set_parent_phases(rc
, NULL
, cxl_rp_reset_hold
, NULL
,
216 &rpc
->parent_phases
);
218 rpc
->aer_offset
= GEN_PCIE_ROOT_PORT_AER_OFFSET
;
219 rpc
->acs_offset
= GEN_PCIE_ROOT_PORT_ACS_OFFSET
;
221 dc
->hotpluggable
= false;
224 static const TypeInfo cxl_root_port_info
= {
225 .name
= TYPE_CXL_ROOT_PORT
,
226 .parent
= TYPE_PCIE_ROOT_PORT
,
227 .instance_size
= sizeof(CXLRootPort
),
228 .class_init
= cxl_root_port_class_init
,
229 .interfaces
= (InterfaceInfo
[]) {
230 { INTERFACE_CXL_DEVICE
},
235 static void cxl_register(void)
237 type_register_static(&cxl_root_port_info
);
240 type_init(cxl_register
);