mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 10:13:56 -06:00
hw/cxl/device: Add a memory device (8.2.8.5)
A CXL memory device (AKA Type 3) is a CXL component that contains some combination of volatile and persistent memory. It also implements the previously defined mailbox interface as well as the memory device firmware interface. Although the memory device is configured like a normal PCIe device, the memory traffic is on an entirely separate bus conceptually (using the same physical wires as PCIe, but different protocol). Once the CXL topology is fully configure and address decoders committed, the guest physical address for the memory device is part of a larger window which is owned by the platform. The creation of these windows is later in this series. The following example will create a 256M device in a 512M window: -object "memory-backend-file,id=cxl-mem1,share,mem-path=cxl-type3,size=512M" -device "cxl-type3,bus=rp0,memdev=cxl-mem1,id=cxl-pmem0" Note: Dropped PCDIMM info interfaces for now. They can be added if appropriate at a later date. Signed-off-by: Ben Widawsky <ben.widawsky@intel.com> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> Message-Id: <20220429144110.25167-18-Jonathan.Cameron@huawei.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
d86d30192b
commit
e1706ea83d
8 changed files with 269 additions and 0 deletions
|
@ -230,4 +230,19 @@ REG64(CXL_MEM_DEV_STS, 0)
|
|||
FIELD(CXL_MEM_DEV_STS, MBOX_READY, 4, 1)
|
||||
FIELD(CXL_MEM_DEV_STS, RESET_NEEDED, 5, 3)
|
||||
|
||||
struct CXLType3Dev {
|
||||
/* Private */
|
||||
PCIDevice parent_obj;
|
||||
|
||||
/* Properties */
|
||||
HostMemoryBackend *hostmem;
|
||||
|
||||
/* State */
|
||||
CXLComponentState cxl_cstate;
|
||||
CXLDeviceState cxl_dstate;
|
||||
};
|
||||
|
||||
#define TYPE_CXL_TYPE3 "cxl-type3"
|
||||
OBJECT_DECLARE_SIMPLE_TYPE(CXLType3Dev, CXL_TYPE3)
|
||||
|
||||
#endif
|
||||
|
|
|
@ -67,6 +67,27 @@ QEMU_BUILD_BUG_ON(sizeof(DVSECHeader) != 10);
|
|||
* CXL 2.0 Downstream Port: 3, 4, 7, 8
|
||||
*/
|
||||
|
||||
/* CXL 2.0 - 8.1.3 (ID 0001) */
|
||||
typedef struct CXLDVSECDevice {
|
||||
DVSECHeader hdr;
|
||||
uint16_t cap;
|
||||
uint16_t ctrl;
|
||||
uint16_t status;
|
||||
uint16_t ctrl2;
|
||||
uint16_t status2;
|
||||
uint16_t lock;
|
||||
uint16_t cap2;
|
||||
uint32_t range1_size_hi;
|
||||
uint32_t range1_size_lo;
|
||||
uint32_t range1_base_hi;
|
||||
uint32_t range1_base_lo;
|
||||
uint32_t range2_size_hi;
|
||||
uint32_t range2_size_lo;
|
||||
uint32_t range2_base_hi;
|
||||
uint32_t range2_base_lo;
|
||||
} CXLDVSECDevice;
|
||||
QEMU_BUILD_BUG_ON(sizeof(CXLDVSECDevice) != 0x38);
|
||||
|
||||
/* CXL 2.0 - 8.1.5 (ID 0003) */
|
||||
typedef struct CXLDVSECPortExtensions {
|
||||
DVSECHeader hdr;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue