mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
hw/cxl/events: Add injection of General Media Events
To facilitate testing provide a QMP command to inject a general media event. The event can be added to the log specified. Signed-off-by: Ira Weiny <ira.weiny@intel.com> Reviewed-by: Fan Ni <fan.ni@samsung.com> Acked-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> Message-Id: <20230530133603.16934-6-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
6676bb973b
commit
ea9b6d647f
4 changed files with 215 additions and 0 deletions
|
@ -1181,6 +1181,117 @@ void qmp_cxl_inject_correctable_error(const char *path, CxlCorErrorType type,
|
|||
pcie_aer_inject_error(PCI_DEVICE(obj), &err);
|
||||
}
|
||||
|
||||
static void cxl_assign_event_header(CXLEventRecordHdr *hdr,
|
||||
const QemuUUID *uuid, uint32_t flags,
|
||||
uint8_t length, uint64_t timestamp)
|
||||
{
|
||||
st24_le_p(&hdr->flags, flags);
|
||||
hdr->length = length;
|
||||
memcpy(&hdr->id, uuid, sizeof(hdr->id));
|
||||
stq_le_p(&hdr->timestamp, timestamp);
|
||||
}
|
||||
|
||||
static const QemuUUID gen_media_uuid = {
|
||||
.data = UUID(0xfbcd0a77, 0xc260, 0x417f,
|
||||
0x85, 0xa9, 0x08, 0x8b, 0x16, 0x21, 0xeb, 0xa6),
|
||||
};
|
||||
|
||||
#define CXL_GMER_VALID_CHANNEL BIT(0)
|
||||
#define CXL_GMER_VALID_RANK BIT(1)
|
||||
#define CXL_GMER_VALID_DEVICE BIT(2)
|
||||
#define CXL_GMER_VALID_COMPONENT BIT(3)
|
||||
|
||||
static int ct3d_qmp_cxl_event_log_enc(CxlEventLog log)
|
||||
{
|
||||
switch (log) {
|
||||
case CXL_EVENT_LOG_INFORMATIONAL:
|
||||
return CXL_EVENT_TYPE_INFO;
|
||||
case CXL_EVENT_LOG_WARNING:
|
||||
return CXL_EVENT_TYPE_WARN;
|
||||
case CXL_EVENT_LOG_FAILURE:
|
||||
return CXL_EVENT_TYPE_FAIL;
|
||||
case CXL_EVENT_LOG_FATAL:
|
||||
return CXL_EVENT_TYPE_FATAL;
|
||||
/* DCD not yet supported */
|
||||
default:
|
||||
return -EINVAL;
|
||||
}
|
||||
}
|
||||
/* Component ID is device specific. Define this as a string. */
|
||||
void qmp_cxl_inject_general_media_event(const char *path, CxlEventLog log,
|
||||
uint8_t flags, uint64_t dpa,
|
||||
uint8_t descriptor, uint8_t type,
|
||||
uint8_t transaction_type,
|
||||
bool has_channel, uint8_t channel,
|
||||
bool has_rank, uint8_t rank,
|
||||
bool has_device, uint32_t device,
|
||||
const char *component_id,
|
||||
Error **errp)
|
||||
{
|
||||
Object *obj = object_resolve_path(path, NULL);
|
||||
CXLEventGenMedia gem;
|
||||
CXLEventRecordHdr *hdr = &gem.hdr;
|
||||
CXLDeviceState *cxlds;
|
||||
CXLType3Dev *ct3d;
|
||||
uint16_t valid_flags = 0;
|
||||
uint8_t enc_log;
|
||||
int rc;
|
||||
|
||||
if (!obj) {
|
||||
error_setg(errp, "Unable to resolve path");
|
||||
return;
|
||||
}
|
||||
if (!object_dynamic_cast(obj, TYPE_CXL_TYPE3)) {
|
||||
error_setg(errp, "Path does not point to a CXL type 3 device");
|
||||
return;
|
||||
}
|
||||
ct3d = CXL_TYPE3(obj);
|
||||
cxlds = &ct3d->cxl_dstate;
|
||||
|
||||
rc = ct3d_qmp_cxl_event_log_enc(log);
|
||||
if (rc < 0) {
|
||||
error_setg(errp, "Unhandled error log type");
|
||||
return;
|
||||
}
|
||||
enc_log = rc;
|
||||
|
||||
memset(&gem, 0, sizeof(gem));
|
||||
cxl_assign_event_header(hdr, &gen_media_uuid, flags, sizeof(gem),
|
||||
cxl_device_get_timestamp(&ct3d->cxl_dstate));
|
||||
|
||||
stq_le_p(&gem.phys_addr, dpa);
|
||||
gem.descriptor = descriptor;
|
||||
gem.type = type;
|
||||
gem.transaction_type = transaction_type;
|
||||
|
||||
if (has_channel) {
|
||||
gem.channel = channel;
|
||||
valid_flags |= CXL_GMER_VALID_CHANNEL;
|
||||
}
|
||||
|
||||
if (has_rank) {
|
||||
gem.rank = rank;
|
||||
valid_flags |= CXL_GMER_VALID_RANK;
|
||||
}
|
||||
|
||||
if (has_device) {
|
||||
st24_le_p(gem.device, device);
|
||||
valid_flags |= CXL_GMER_VALID_DEVICE;
|
||||
}
|
||||
|
||||
if (component_id) {
|
||||
strncpy((char *)gem.component_id, component_id,
|
||||
sizeof(gem.component_id) - 1);
|
||||
valid_flags |= CXL_GMER_VALID_COMPONENT;
|
||||
}
|
||||
|
||||
stw_le_p(&gem.validity_flags, valid_flags);
|
||||
|
||||
if (cxl_event_insert(cxlds, enc_log, (CXLEventRecordRaw *)&gem)) {
|
||||
cxl_event_irq_assert(ct3d);
|
||||
}
|
||||
}
|
||||
|
||||
static void ct3_class_init(ObjectClass *oc, void *data)
|
||||
{
|
||||
DeviceClass *dc = DEVICE_CLASS(oc);
|
||||
|
|
|
@ -3,6 +3,16 @@
|
|||
#include "qapi/error.h"
|
||||
#include "qapi/qapi-commands-cxl.h"
|
||||
|
||||
void qmp_cxl_inject_general_media_event(const char *path, CxlEventLog log,
|
||||
uint8_t flags, uint64_t dpa,
|
||||
uint8_t descriptor, uint8_t type,
|
||||
uint8_t transaction_type,
|
||||
bool has_channel, uint8_t channel,
|
||||
bool has_rank, uint8_t rank,
|
||||
bool has_device, uint32_t device,
|
||||
const char *component_id,
|
||||
Error **errp) {}
|
||||
|
||||
void qmp_cxl_inject_poison(const char *path, uint64_t start, uint64_t length,
|
||||
Error **errp)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue