Blame SOURCES/0037-libcxl-add-GET_HEALTH_INFO-mailbox-command-and-acces.patch

2eb93d
From 55ada0eab92d52826c9be0186db664ba9eeba749 Mon Sep 17 00:00:00 2001
2eb93d
From: Vishal Verma <vishal.l.verma@intel.com>
2eb93d
Date: Thu, 7 Oct 2021 02:21:29 -0600
2eb93d
Subject: [PATCH 037/217] libcxl: add GET_HEALTH_INFO mailbox command and
2eb93d
 accessors
2eb93d
2eb93d
Add libcxl APIs to create a new GET_HEALTH_INFO mailbox command, the
2eb93d
command output data structure (privately), and accessor APIs to return
2eb93d
the different fields in the health info output.
2eb93d
2eb93d
Cc: Ben Widawsky <ben.widawsky@intel.com>
2eb93d
Cc: Dan Williams <dan.j.williams@intel.com>
2eb93d
Reviewed-by: Dan Williams <dan.j.williams@intel.com>
2eb93d
Signed-off-by: Vishal Verma <vishal.l.verma@intel.com>
2eb93d
---
2eb93d
 cxl/lib/libcxl.c   | 291 +++++++++++++++++++++++++++++++++++++++++++++
2eb93d
 cxl/lib/libcxl.sym |  29 +++++
2eb93d
 cxl/lib/private.h  |  47 ++++++++
2eb93d
 cxl/libcxl.h       |  33 +++++
2eb93d
 util/bitmap.h      |  85 +++++++++++++
2eb93d
 5 files changed, 485 insertions(+)
2eb93d
2eb93d
diff --git a/cxl/lib/libcxl.c b/cxl/lib/libcxl.c
2eb93d
index ed21670..065824d 100644
2eb93d
--- a/cxl/lib/libcxl.c
2eb93d
+++ b/cxl/lib/libcxl.c
2eb93d
@@ -677,6 +677,297 @@ CXL_EXPORT const char *cxl_cmd_get_devname(struct cxl_cmd *cmd)
2eb93d
 	return cxl_memdev_get_devname(cmd->memdev);
2eb93d
 }
2eb93d
 
2eb93d
+static int cxl_cmd_validate_status(struct cxl_cmd *cmd, u32 id)
2eb93d
+{
2eb93d
+	if (cmd->send_cmd->id != id)
2eb93d
+		return -EINVAL;
2eb93d
+	if (cmd->status < 0)
2eb93d
+		return cmd->status;
2eb93d
+	return 0;
2eb93d
+}
2eb93d
+
2eb93d
+/* Helpers for health_info fields (no endian conversion) */
2eb93d
+#define cmd_get_field_u8(cmd, n, N, field)				\
2eb93d
+do {									\
2eb93d
+	struct cxl_cmd_##n *c =						\
2eb93d
+		(struct cxl_cmd_##n *)cmd->send_cmd->out.payload;	\
2eb93d
+	int rc = cxl_cmd_validate_status(cmd, CXL_MEM_COMMAND_ID_##N);	\
2eb93d
+	if (rc)								\
2eb93d
+		return rc;						\
2eb93d
+	return c->field;						\
2eb93d
+} while(0)
2eb93d
+
2eb93d
+#define cmd_get_field_u16(cmd, n, N, field)				\
2eb93d
+do {									\
2eb93d
+	struct cxl_cmd_##n *c =						\
2eb93d
+		(struct cxl_cmd_##n *)cmd->send_cmd->out.payload;	\
2eb93d
+	int rc = cxl_cmd_validate_status(cmd, CXL_MEM_COMMAND_ID_##N);	\
2eb93d
+	if (rc)								\
2eb93d
+		return rc;						\
2eb93d
+	return le16_to_cpu(c->field);					\
2eb93d
+} while(0)
2eb93d
+
2eb93d
+
2eb93d
+#define cmd_get_field_u32(cmd, n, N, field)				\
2eb93d
+do {									\
2eb93d
+	struct cxl_cmd_##n *c =						\
2eb93d
+		(struct cxl_cmd_##n *)cmd->send_cmd->out.payload;	\
2eb93d
+	int rc = cxl_cmd_validate_status(cmd, CXL_MEM_COMMAND_ID_##N);	\
2eb93d
+	if (rc)								\
2eb93d
+		return rc;						\
2eb93d
+	return le32_to_cpu(c->field);					\
2eb93d
+} while(0)
2eb93d
+
2eb93d
+
2eb93d
+#define cmd_get_field_u8_mask(cmd, n, N, field, mask)			\
2eb93d
+do {									\
2eb93d
+	struct cxl_cmd_##n *c =						\
2eb93d
+		(struct cxl_cmd_##n *)cmd->send_cmd->out.payload;	\
2eb93d
+	int rc = cxl_cmd_validate_status(cmd, CXL_MEM_COMMAND_ID_##N);	\
2eb93d
+	if (rc)								\
2eb93d
+		return rc;						\
2eb93d
+	return !!(c->field & mask);					\
2eb93d
+} while(0)
2eb93d
+
2eb93d
+CXL_EXPORT struct cxl_cmd *cxl_cmd_new_get_health_info(
2eb93d
+		struct cxl_memdev *memdev)
2eb93d
+{
2eb93d
+	return cxl_cmd_new_generic(memdev, CXL_MEM_COMMAND_ID_GET_HEALTH_INFO);
2eb93d
+}
2eb93d
+
2eb93d
+#define cmd_health_get_status_field(c, m)					\
2eb93d
+	cmd_get_field_u8_mask(c, get_health_info, GET_HEALTH_INFO, health_status, m)
2eb93d
+
2eb93d
+CXL_EXPORT int cxl_cmd_health_info_get_maintenance_needed(struct cxl_cmd *cmd)
2eb93d
+{
2eb93d
+	cmd_health_get_status_field(cmd,
2eb93d
+		CXL_CMD_HEALTH_INFO_STATUS_MAINTENANCE_NEEDED_MASK);
2eb93d
+}
2eb93d
+
2eb93d
+CXL_EXPORT int cxl_cmd_health_info_get_performance_degraded(struct cxl_cmd *cmd)
2eb93d
+{
2eb93d
+	cmd_health_get_status_field(cmd,
2eb93d
+		CXL_CMD_HEALTH_INFO_STATUS_PERFORMANCE_DEGRADED_MASK);
2eb93d
+}
2eb93d
+
2eb93d
+CXL_EXPORT int cxl_cmd_health_info_get_hw_replacement_needed(struct cxl_cmd *cmd)
2eb93d
+{
2eb93d
+	cmd_health_get_status_field(cmd,
2eb93d
+		CXL_CMD_HEALTH_INFO_STATUS_HW_REPLACEMENT_NEEDED_MASK);
2eb93d
+}
2eb93d
+
2eb93d
+#define cmd_health_check_media_field(cmd, f)					\
2eb93d
+do {										\
2eb93d
+	struct cxl_cmd_get_health_info *c =					\
2eb93d
+		(struct cxl_cmd_get_health_info *)cmd->send_cmd->out.payload;	\
2eb93d
+	int rc = cxl_cmd_validate_status(cmd,					\
2eb93d
+			CXL_MEM_COMMAND_ID_GET_HEALTH_INFO);			\
2eb93d
+	if (rc)									\
2eb93d
+		return rc;							\
2eb93d
+	return (c->media_status == f);						\
2eb93d
+} while(0)
2eb93d
+
2eb93d
+CXL_EXPORT int cxl_cmd_health_info_get_media_normal(struct cxl_cmd *cmd)
2eb93d
+{
2eb93d
+	cmd_health_check_media_field(cmd,
2eb93d
+		CXL_CMD_HEALTH_INFO_MEDIA_STATUS_NORMAL);
2eb93d
+}
2eb93d
+
2eb93d
+CXL_EXPORT int cxl_cmd_health_info_get_media_not_ready(struct cxl_cmd *cmd)
2eb93d
+{
2eb93d
+	cmd_health_check_media_field(cmd,
2eb93d
+		CXL_CMD_HEALTH_INFO_MEDIA_STATUS_NOT_READY);
2eb93d
+}
2eb93d
+
2eb93d
+CXL_EXPORT int
2eb93d
+cxl_cmd_health_info_get_media_persistence_lost(struct cxl_cmd *cmd)
2eb93d
+{
2eb93d
+	cmd_health_check_media_field(cmd,
2eb93d
+		CXL_CMD_HEALTH_INFO_MEDIA_STATUS_PERSISTENCE_LOST);
2eb93d
+}
2eb93d
+
2eb93d
+CXL_EXPORT int cxl_cmd_health_info_get_media_data_lost(struct cxl_cmd *cmd)
2eb93d
+{
2eb93d
+	cmd_health_check_media_field(cmd,
2eb93d
+		CXL_CMD_HEALTH_INFO_MEDIA_STATUS_DATA_LOST);
2eb93d
+}
2eb93d
+
2eb93d
+CXL_EXPORT int
2eb93d
+cxl_cmd_health_info_get_media_powerloss_persistence_loss(struct cxl_cmd *cmd)
2eb93d
+{
2eb93d
+	cmd_health_check_media_field(cmd,
2eb93d
+		CXL_CMD_HEALTH_INFO_MEDIA_STATUS_POWERLOSS_PERSISTENCE_LOSS);
2eb93d
+}
2eb93d
+
2eb93d
+CXL_EXPORT int
2eb93d
+cxl_cmd_health_info_get_media_shutdown_persistence_loss(struct cxl_cmd *cmd)
2eb93d
+{
2eb93d
+	cmd_health_check_media_field(cmd,
2eb93d
+		CXL_CMD_HEALTH_INFO_MEDIA_STATUS_SHUTDOWN_PERSISTENCE_LOSS);
2eb93d
+}
2eb93d
+
2eb93d
+CXL_EXPORT int
2eb93d
+cxl_cmd_health_info_get_media_persistence_loss_imminent(struct cxl_cmd *cmd)
2eb93d
+{
2eb93d
+	cmd_health_check_media_field(cmd,
2eb93d
+		CXL_CMD_HEALTH_INFO_MEDIA_STATUS_PERSISTENCE_LOSS_IMMINENT);
2eb93d
+}
2eb93d
+
2eb93d
+CXL_EXPORT int
2eb93d
+cxl_cmd_health_info_get_media_powerloss_data_loss(struct cxl_cmd *cmd)
2eb93d
+{
2eb93d
+	cmd_health_check_media_field(cmd,
2eb93d
+		CXL_CMD_HEALTH_INFO_MEDIA_STATUS_POWERLOSS_DATA_LOSS);
2eb93d
+}
2eb93d
+
2eb93d
+CXL_EXPORT int
2eb93d
+cxl_cmd_health_info_get_media_shutdown_data_loss(struct cxl_cmd *cmd)
2eb93d
+{
2eb93d
+	cmd_health_check_media_field(cmd,
2eb93d
+		CXL_CMD_HEALTH_INFO_MEDIA_STATUS_SHUTDOWN_DATA_LOSS);
2eb93d
+}
2eb93d
+
2eb93d
+CXL_EXPORT int
2eb93d
+cxl_cmd_health_info_get_media_data_loss_imminent(struct cxl_cmd *cmd)
2eb93d
+{
2eb93d
+	cmd_health_check_media_field(cmd,
2eb93d
+		CXL_CMD_HEALTH_INFO_MEDIA_STATUS_DATA_LOSS_IMMINENT);
2eb93d
+}
2eb93d
+
2eb93d
+#define cmd_health_check_ext_field(cmd, fname, type)				\
2eb93d
+do {										\
2eb93d
+	struct cxl_cmd_get_health_info *c =					\
2eb93d
+		(struct cxl_cmd_get_health_info *)cmd->send_cmd->out.payload;	\
2eb93d
+	int rc = cxl_cmd_validate_status(cmd,					\
2eb93d
+			CXL_MEM_COMMAND_ID_GET_HEALTH_INFO);			\
2eb93d
+	if (rc)									\
2eb93d
+		return rc;							\
2eb93d
+	return (FIELD_GET(fname##_MASK, c->ext_status) ==			\
2eb93d
+		fname##_##type);						\
2eb93d
+} while(0)
2eb93d
+
2eb93d
+CXL_EXPORT int
2eb93d
+cxl_cmd_health_info_get_ext_life_used_normal(struct cxl_cmd *cmd)
2eb93d
+{
2eb93d
+	cmd_health_check_ext_field(cmd,
2eb93d
+		CXL_CMD_HEALTH_INFO_EXT_LIFE_USED, NORMAL);
2eb93d
+}
2eb93d
+
2eb93d
+CXL_EXPORT int
2eb93d
+cxl_cmd_health_info_get_ext_life_used_warning(struct cxl_cmd *cmd)
2eb93d
+{
2eb93d
+	cmd_health_check_ext_field(cmd,
2eb93d
+		CXL_CMD_HEALTH_INFO_EXT_LIFE_USED, WARNING);
2eb93d
+}
2eb93d
+
2eb93d
+CXL_EXPORT int
2eb93d
+cxl_cmd_health_info_get_ext_life_used_critical(struct cxl_cmd *cmd)
2eb93d
+{
2eb93d
+	cmd_health_check_ext_field(cmd,
2eb93d
+		CXL_CMD_HEALTH_INFO_EXT_LIFE_USED, CRITICAL);
2eb93d
+}
2eb93d
+
2eb93d
+CXL_EXPORT int
2eb93d
+cxl_cmd_health_info_get_ext_temperature_normal(struct cxl_cmd *cmd)
2eb93d
+{
2eb93d
+	cmd_health_check_ext_field(cmd,
2eb93d
+		CXL_CMD_HEALTH_INFO_EXT_TEMPERATURE, NORMAL);
2eb93d
+}
2eb93d
+
2eb93d
+CXL_EXPORT int
2eb93d
+cxl_cmd_health_info_get_ext_temperature_warning(struct cxl_cmd *cmd)
2eb93d
+{
2eb93d
+	cmd_health_check_ext_field(cmd,
2eb93d
+		CXL_CMD_HEALTH_INFO_EXT_TEMPERATURE, WARNING);
2eb93d
+}
2eb93d
+
2eb93d
+CXL_EXPORT int
2eb93d
+cxl_cmd_health_info_get_ext_temperature_critical(struct cxl_cmd *cmd)
2eb93d
+{
2eb93d
+	cmd_health_check_ext_field(cmd,
2eb93d
+		CXL_CMD_HEALTH_INFO_EXT_TEMPERATURE, CRITICAL);
2eb93d
+}
2eb93d
+
2eb93d
+CXL_EXPORT int
2eb93d
+cxl_cmd_health_info_get_ext_corrected_volatile_normal(struct cxl_cmd *cmd)
2eb93d
+{
2eb93d
+	cmd_health_check_ext_field(cmd,
2eb93d
+		CXL_CMD_HEALTH_INFO_EXT_CORRECTED_VOLATILE, NORMAL);
2eb93d
+}
2eb93d
+
2eb93d
+CXL_EXPORT int
2eb93d
+cxl_cmd_health_info_get_ext_corrected_volatile_warning(struct cxl_cmd *cmd)
2eb93d
+{
2eb93d
+	cmd_health_check_ext_field(cmd,
2eb93d
+		CXL_CMD_HEALTH_INFO_EXT_CORRECTED_VOLATILE, WARNING);
2eb93d
+}
2eb93d
+
2eb93d
+CXL_EXPORT int
2eb93d
+cxl_cmd_health_info_get_ext_corrected_persistent_normal(struct cxl_cmd *cmd)
2eb93d
+{
2eb93d
+	cmd_health_check_ext_field(cmd,
2eb93d
+		CXL_CMD_HEALTH_INFO_EXT_CORRECTED_PERSISTENT, NORMAL);
2eb93d
+}
2eb93d
+
2eb93d
+CXL_EXPORT int
2eb93d
+cxl_cmd_health_info_get_ext_corrected_persistent_warning(struct cxl_cmd *cmd)
2eb93d
+{
2eb93d
+	cmd_health_check_ext_field(cmd,
2eb93d
+		CXL_CMD_HEALTH_INFO_EXT_CORRECTED_PERSISTENT, WARNING);
2eb93d
+}
2eb93d
+
2eb93d
+static int health_info_get_life_used_raw(struct cxl_cmd *cmd)
2eb93d
+{
2eb93d
+	cmd_get_field_u8(cmd, get_health_info, GET_HEALTH_INFO,
2eb93d
+				life_used);
2eb93d
+}
2eb93d
+
2eb93d
+CXL_EXPORT int cxl_cmd_health_info_get_life_used(struct cxl_cmd *cmd)
2eb93d
+{
2eb93d
+	int rc = health_info_get_life_used_raw(cmd);
2eb93d
+
2eb93d
+	if (rc < 0)
2eb93d
+		return rc;
2eb93d
+	if (rc == CXL_CMD_HEALTH_INFO_LIFE_USED_NOT_IMPL)
2eb93d
+		return -EOPNOTSUPP;
2eb93d
+	return rc;
2eb93d
+}
2eb93d
+
2eb93d
+static int health_info_get_temperature_raw(struct cxl_cmd *cmd)
2eb93d
+{
2eb93d
+	cmd_get_field_u16(cmd, get_health_info, GET_HEALTH_INFO,
2eb93d
+				 temperature);
2eb93d
+}
2eb93d
+
2eb93d
+CXL_EXPORT int cxl_cmd_health_info_get_temperature(struct cxl_cmd *cmd)
2eb93d
+{
2eb93d
+	int rc = health_info_get_temperature_raw(cmd);
2eb93d
+
2eb93d
+	if (rc < 0)
2eb93d
+		return rc;
2eb93d
+	if (rc == CXL_CMD_HEALTH_INFO_TEMPERATURE_NOT_IMPL)
2eb93d
+		return -EOPNOTSUPP;
2eb93d
+	return rc;
2eb93d
+}
2eb93d
+
2eb93d
+CXL_EXPORT int cxl_cmd_health_info_get_dirty_shutdowns(struct cxl_cmd *cmd)
2eb93d
+{
2eb93d
+	cmd_get_field_u32(cmd, get_health_info, GET_HEALTH_INFO,
2eb93d
+				 dirty_shutdowns);
2eb93d
+}
2eb93d
+
2eb93d
+CXL_EXPORT int cxl_cmd_health_info_get_volatile_errors(struct cxl_cmd *cmd)
2eb93d
+{
2eb93d
+	cmd_get_field_u32(cmd, get_health_info, GET_HEALTH_INFO,
2eb93d
+				 volatile_errors);
2eb93d
+}
2eb93d
+
2eb93d
+CXL_EXPORT int cxl_cmd_health_info_get_pmem_errors(struct cxl_cmd *cmd)
2eb93d
+{
2eb93d
+	cmd_get_field_u32(cmd, get_health_info, GET_HEALTH_INFO,
2eb93d
+				 pmem_errors);
2eb93d
+}
2eb93d
+
2eb93d
 CXL_EXPORT struct cxl_cmd *cxl_cmd_new_identify(struct cxl_memdev *memdev)
2eb93d
 {
2eb93d
 	return cxl_cmd_new_generic(memdev, CXL_MEM_COMMAND_ID_IDENTIFY);
2eb93d
diff --git a/cxl/lib/libcxl.sym b/cxl/lib/libcxl.sym
2eb93d
index 1dc45f4..c83bc28 100644
2eb93d
--- a/cxl/lib/libcxl.sym
2eb93d
+++ b/cxl/lib/libcxl.sym
2eb93d
@@ -33,6 +33,35 @@ global:
2eb93d
 	cxl_cmd_identify_get_fw_rev;
2eb93d
 	cxl_cmd_identify_get_partition_align;
2eb93d
 	cxl_cmd_identify_get_label_size;
2eb93d
+	cxl_cmd_new_get_health_info;
2eb93d
+	cxl_cmd_health_info_get_maintenance_needed;
2eb93d
+	cxl_cmd_health_info_get_performance_degraded;
2eb93d
+	cxl_cmd_health_info_get_hw_replacement_needed;
2eb93d
+	cxl_cmd_health_info_get_media_normal;
2eb93d
+	cxl_cmd_health_info_get_media_not_ready;
2eb93d
+	cxl_cmd_health_info_get_media_persistence_lost;
2eb93d
+	cxl_cmd_health_info_get_media_data_lost;
2eb93d
+	cxl_cmd_health_info_get_media_powerloss_persistence_loss;
2eb93d
+	cxl_cmd_health_info_get_media_shutdown_persistence_loss;
2eb93d
+	cxl_cmd_health_info_get_media_persistence_loss_imminent;
2eb93d
+	cxl_cmd_health_info_get_media_powerloss_data_loss;
2eb93d
+	cxl_cmd_health_info_get_media_shutdown_data_loss;
2eb93d
+	cxl_cmd_health_info_get_media_data_loss_imminent;
2eb93d
+	cxl_cmd_health_info_get_ext_life_used_normal;
2eb93d
+	cxl_cmd_health_info_get_ext_life_used_warning;
2eb93d
+	cxl_cmd_health_info_get_ext_life_used_critical;
2eb93d
+	cxl_cmd_health_info_get_ext_temperature_normal;
2eb93d
+	cxl_cmd_health_info_get_ext_temperature_warning;
2eb93d
+	cxl_cmd_health_info_get_ext_temperature_critical;
2eb93d
+	cxl_cmd_health_info_get_ext_corrected_volatile_normal;
2eb93d
+	cxl_cmd_health_info_get_ext_corrected_volatile_warning;
2eb93d
+	cxl_cmd_health_info_get_ext_corrected_persistent_normal;
2eb93d
+	cxl_cmd_health_info_get_ext_corrected_persistent_warning;
2eb93d
+	cxl_cmd_health_info_get_life_used;
2eb93d
+	cxl_cmd_health_info_get_temperature;
2eb93d
+	cxl_cmd_health_info_get_dirty_shutdowns;
2eb93d
+	cxl_cmd_health_info_get_volatile_errors;
2eb93d
+	cxl_cmd_health_info_get_pmem_errors;
2eb93d
 local:
2eb93d
         *;
2eb93d
 };
2eb93d
diff --git a/cxl/lib/private.h b/cxl/lib/private.h
2eb93d
index 3273f21..885553a 100644
2eb93d
--- a/cxl/lib/private.h
2eb93d
+++ b/cxl/lib/private.h
2eb93d
@@ -73,6 +73,53 @@ struct cxl_cmd_identify {
2eb93d
 	u8 qos_telemetry_caps;
2eb93d
 } __attribute__((packed));
2eb93d
 
2eb93d
+struct cxl_cmd_get_health_info {
2eb93d
+	u8 health_status;
2eb93d
+	u8 media_status;
2eb93d
+	u8 ext_status;
2eb93d
+	u8 life_used;
2eb93d
+	le16 temperature;
2eb93d
+	le32 dirty_shutdowns;
2eb93d
+	le32 volatile_errors;
2eb93d
+	le32 pmem_errors;
2eb93d
+} __attribute__((packed));
2eb93d
+
2eb93d
+/* CXL 2.0 8.2.9.5.3 Byte 0 Health Status */
2eb93d
+#define CXL_CMD_HEALTH_INFO_STATUS_MAINTENANCE_NEEDED_MASK		BIT(0)
2eb93d
+#define CXL_CMD_HEALTH_INFO_STATUS_PERFORMANCE_DEGRADED_MASK		BIT(1)
2eb93d
+#define CXL_CMD_HEALTH_INFO_STATUS_HW_REPLACEMENT_NEEDED_MASK		BIT(2)
2eb93d
+
2eb93d
+/* CXL 2.0 8.2.9.5.3 Byte 1 Media Status */
2eb93d
+#define CXL_CMD_HEALTH_INFO_MEDIA_STATUS_NORMAL				0x0
2eb93d
+#define CXL_CMD_HEALTH_INFO_MEDIA_STATUS_NOT_READY			0x1
2eb93d
+#define CXL_CMD_HEALTH_INFO_MEDIA_STATUS_PERSISTENCE_LOST		0x2
2eb93d
+#define CXL_CMD_HEALTH_INFO_MEDIA_STATUS_DATA_LOST			0x3
2eb93d
+#define CXL_CMD_HEALTH_INFO_MEDIA_STATUS_POWERLOSS_PERSISTENCE_LOSS	0x4
2eb93d
+#define CXL_CMD_HEALTH_INFO_MEDIA_STATUS_SHUTDOWN_PERSISTENCE_LOSS	0x5
2eb93d
+#define CXL_CMD_HEALTH_INFO_MEDIA_STATUS_PERSISTENCE_LOSS_IMMINENT	0x6
2eb93d
+#define CXL_CMD_HEALTH_INFO_MEDIA_STATUS_POWERLOSS_DATA_LOSS		0x7
2eb93d
+#define CXL_CMD_HEALTH_INFO_MEDIA_STATUS_SHUTDOWN_DATA_LOSS		0x8
2eb93d
+#define CXL_CMD_HEALTH_INFO_MEDIA_STATUS_DATA_LOSS_IMMINENT		0x9
2eb93d
+
2eb93d
+/* CXL 2.0 8.2.9.5.3 Byte 2 Additional Status */
2eb93d
+#define CXL_CMD_HEALTH_INFO_EXT_LIFE_USED_MASK				GENMASK(1, 0)
2eb93d
+#define CXL_CMD_HEALTH_INFO_EXT_LIFE_USED_NORMAL			(0)
2eb93d
+#define CXL_CMD_HEALTH_INFO_EXT_LIFE_USED_WARNING			(1)
2eb93d
+#define CXL_CMD_HEALTH_INFO_EXT_LIFE_USED_CRITICAL			(2)
2eb93d
+#define CXL_CMD_HEALTH_INFO_EXT_TEMPERATURE_MASK			GENMASK(3, 2)
2eb93d
+#define CXL_CMD_HEALTH_INFO_EXT_TEMPERATURE_NORMAL			(0)
2eb93d
+#define CXL_CMD_HEALTH_INFO_EXT_TEMPERATURE_WARNING			(1)
2eb93d
+#define CXL_CMD_HEALTH_INFO_EXT_TEMPERATURE_CRITICAL			(2)
2eb93d
+#define CXL_CMD_HEALTH_INFO_EXT_CORRECTED_VOLATILE_MASK			BIT(4)
2eb93d
+#define CXL_CMD_HEALTH_INFO_EXT_CORRECTED_VOLATILE_NORMAL		(0)
2eb93d
+#define CXL_CMD_HEALTH_INFO_EXT_CORRECTED_VOLATILE_WARNING		(1)
2eb93d
+#define CXL_CMD_HEALTH_INFO_EXT_CORRECTED_PERSISTENT_MASK		BIT(5)
2eb93d
+#define CXL_CMD_HEALTH_INFO_EXT_CORRECTED_PERSISTENT_NORMAL		(0)
2eb93d
+#define CXL_CMD_HEALTH_INFO_EXT_CORRECTED_PERSISTENT_WARNING		(1)
2eb93d
+
2eb93d
+#define CXL_CMD_HEALTH_INFO_LIFE_USED_NOT_IMPL				0xff
2eb93d
+#define CXL_CMD_HEALTH_INFO_TEMPERATURE_NOT_IMPL			0xffff
2eb93d
+
2eb93d
 static inline int check_kmod(struct kmod_ctx *kmod_ctx)
2eb93d
 {
2eb93d
 	return kmod_ctx ? 0 : -ENXIO;
2eb93d
diff --git a/cxl/libcxl.h b/cxl/libcxl.h
2eb93d
index 0f2d5e9..eae2db8 100644
2eb93d
--- a/cxl/libcxl.h
2eb93d
+++ b/cxl/libcxl.h
2eb93d
@@ -62,6 +62,39 @@ struct cxl_cmd *cxl_cmd_new_identify(struct cxl_memdev *memdev);
2eb93d
 int cxl_cmd_identify_get_fw_rev(struct cxl_cmd *cmd, char *fw_rev, int fw_len);
2eb93d
 unsigned long long cxl_cmd_identify_get_partition_align(struct cxl_cmd *cmd);
2eb93d
 unsigned int cxl_cmd_identify_get_label_size(struct cxl_cmd *cmd);
2eb93d
+struct cxl_cmd *cxl_cmd_new_get_health_info(struct cxl_memdev *memdev);
2eb93d
+int cxl_cmd_health_info_get_maintenance_needed(struct cxl_cmd *cmd);
2eb93d
+int cxl_cmd_health_info_get_performance_degraded(struct cxl_cmd *cmd);
2eb93d
+int cxl_cmd_health_info_get_hw_replacement_needed(struct cxl_cmd *cmd);
2eb93d
+int cxl_cmd_health_info_get_media_normal(struct cxl_cmd *cmd);
2eb93d
+int cxl_cmd_health_info_get_media_not_ready(struct cxl_cmd *cmd);
2eb93d
+int cxl_cmd_health_info_get_media_persistence_lost(struct cxl_cmd *cmd);
2eb93d
+int cxl_cmd_health_info_get_media_data_lost(struct cxl_cmd *cmd);
2eb93d
+int cxl_cmd_health_info_get_media_normal(struct cxl_cmd *cmd);
2eb93d
+int cxl_cmd_health_info_get_media_not_ready(struct cxl_cmd *cmd);
2eb93d
+int cxl_cmd_health_info_get_media_persistence_lost(struct cxl_cmd *cmd);
2eb93d
+int cxl_cmd_health_info_get_media_data_lost(struct cxl_cmd *cmd);
2eb93d
+int cxl_cmd_health_info_get_media_powerloss_persistence_loss(struct cxl_cmd *cmd);
2eb93d
+int cxl_cmd_health_info_get_media_shutdown_persistence_loss(struct cxl_cmd *cmd);
2eb93d
+int cxl_cmd_health_info_get_media_persistence_loss_imminent(struct cxl_cmd *cmd);
2eb93d
+int cxl_cmd_health_info_get_media_powerloss_data_loss(struct cxl_cmd *cmd);
2eb93d
+int cxl_cmd_health_info_get_media_shutdown_data_loss(struct cxl_cmd *cmd);
2eb93d
+int cxl_cmd_health_info_get_media_data_loss_imminent(struct cxl_cmd *cmd);
2eb93d
+int cxl_cmd_health_info_get_ext_life_used_normal(struct cxl_cmd *cmd);
2eb93d
+int cxl_cmd_health_info_get_ext_life_used_warning(struct cxl_cmd *cmd);
2eb93d
+int cxl_cmd_health_info_get_ext_life_used_critical(struct cxl_cmd *cmd);
2eb93d
+int cxl_cmd_health_info_get_ext_temperature_normal(struct cxl_cmd *cmd);
2eb93d
+int cxl_cmd_health_info_get_ext_temperature_warning(struct cxl_cmd *cmd);
2eb93d
+int cxl_cmd_health_info_get_ext_temperature_critical(struct cxl_cmd *cmd);
2eb93d
+int cxl_cmd_health_info_get_ext_corrected_volatile_normal(struct cxl_cmd *cmd);
2eb93d
+int cxl_cmd_health_info_get_ext_corrected_volatile_warning(struct cxl_cmd *cmd);
2eb93d
+int cxl_cmd_health_info_get_ext_corrected_persistent_normal(struct cxl_cmd *cmd);
2eb93d
+int cxl_cmd_health_info_get_ext_corrected_persistent_warning(struct cxl_cmd *cmd);
2eb93d
+int cxl_cmd_health_info_get_life_used(struct cxl_cmd *cmd);
2eb93d
+int cxl_cmd_health_info_get_temperature(struct cxl_cmd *cmd);
2eb93d
+int cxl_cmd_health_info_get_dirty_shutdowns(struct cxl_cmd *cmd);
2eb93d
+int cxl_cmd_health_info_get_volatile_errors(struct cxl_cmd *cmd);
2eb93d
+int cxl_cmd_health_info_get_pmem_errors(struct cxl_cmd *cmd);
2eb93d
 
2eb93d
 #ifdef __cplusplus
2eb93d
 } /* extern "C" */
2eb93d
diff --git a/util/bitmap.h b/util/bitmap.h
2eb93d
index 490f3f0..04b3429 100644
2eb93d
--- a/util/bitmap.h
2eb93d
+++ b/util/bitmap.h
2eb93d
@@ -3,10 +3,33 @@
2eb93d
 #ifndef _NDCTL_BITMAP_H_
2eb93d
 #define _NDCTL_BITMAP_H_
2eb93d
 
2eb93d
+#include <linux/const.h>
2eb93d
 #include <util/size.h>
2eb93d
+#include <util/util.h>
2eb93d
 #include <ccan/short_types/short_types.h>
2eb93d
 
2eb93d
+#ifndef _UL
2eb93d
+#define _UL(x)		(_AC(x, UL))
2eb93d
+#endif
2eb93d
+#ifndef _ULL
2eb93d
+#define _ULL(x)		(_AC(x, ULL))
2eb93d
+#endif
2eb93d
+
2eb93d
 #define DIV_ROUND_UP(n, d) (((n) + (d) - 1) / (d))
2eb93d
+#define UL(x)		(_UL(x))
2eb93d
+#define ULL(x)		(_ULL(x))
2eb93d
+
2eb93d
+/* GENMASK() and its dependencies copied from include/linux/{bits.h, const.h} */
2eb93d
+#define __is_constexpr(x) \
2eb93d
+	(sizeof(int) == sizeof(*(8 ? ((void *)((long)(x) * 0l)) : (int *)8)))
2eb93d
+#define GENMASK_INPUT_CHECK(h, l) \
2eb93d
+	(BUILD_BUG_ON_ZERO(__builtin_choose_expr( \
2eb93d
+		__is_constexpr((l) > (h)), (l) > (h), 0)))
2eb93d
+#define __GENMASK(h, l) \
2eb93d
+	(((~UL(0)) - (UL(1) << (l)) + 1) & \
2eb93d
+	 (~UL(0) >> (BITS_PER_LONG - 1 - (h))))
2eb93d
+#define GENMASK(h, l) \
2eb93d
+	(GENMASK_INPUT_CHECK(h, l) + __GENMASK(h, l))
2eb93d
 
2eb93d
 #define BIT(nr)			(1UL << (nr))
2eb93d
 #define BIT_MASK(nr)		(1UL << ((nr) % BITS_PER_LONG))
2eb93d
@@ -30,5 +53,67 @@ unsigned long find_next_zero_bit(const unsigned long *addr, unsigned long size,
2eb93d
 				 unsigned long offset);
2eb93d
 int bitmap_full(const unsigned long *src, unsigned int nbits);
2eb93d
 
2eb93d
+/*
2eb93d
+ * Bitfield access macros
2eb93d
+ * (Copied from Linux's include/linux/bitfield.h)
2eb93d
+ *
2eb93d
+ * FIELD_{GET,PREP} macros take as first parameter shifted mask
2eb93d
+ * from which they extract the base mask and shift amount.
2eb93d
+ * Mask must be a compilation time constant.
2eb93d
+ *
2eb93d
+ * Example:
2eb93d
+ *
2eb93d
+ *  #define REG_FIELD_A  GENMASK(6, 0)
2eb93d
+ *  #define REG_FIELD_B  BIT(7)
2eb93d
+ *  #define REG_FIELD_C  GENMASK(15, 8)
2eb93d
+ *  #define REG_FIELD_D  GENMASK(31, 16)
2eb93d
+ *
2eb93d
+ * Get:
2eb93d
+ *  a = FIELD_GET(REG_FIELD_A, reg);
2eb93d
+ *  b = FIELD_GET(REG_FIELD_B, reg);
2eb93d
+ *
2eb93d
+ * Set:
2eb93d
+ *  reg = FIELD_PREP(REG_FIELD_A, 1) |
2eb93d
+ *	  FIELD_PREP(REG_FIELD_B, 0) |
2eb93d
+ *	  FIELD_PREP(REG_FIELD_C, c) |
2eb93d
+ *	  FIELD_PREP(REG_FIELD_D, 0x40);
2eb93d
+ *
2eb93d
+ * Modify:
2eb93d
+ *  reg &= ~REG_FIELD_C;
2eb93d
+ *  reg |= FIELD_PREP(REG_FIELD_C, c);
2eb93d
+ */
2eb93d
+
2eb93d
+/* Force a compilation error if a constant expression is not a power of 2 */
2eb93d
+#define __BUILD_BUG_ON_NOT_POWER_OF_2(n)	\
2eb93d
+	BUILD_BUG_ON(((n) & ((n) - 1)) != 0)
2eb93d
+#define BUILD_BUG_ON_NOT_POWER_OF_2(n)			\
2eb93d
+	BUILD_BUG_ON((n) == 0 || (((n) & ((n) - 1)) != 0))
2eb93d
+
2eb93d
+#define __bf_shf(x) (__builtin_ffsll(x) - 1)
2eb93d
+
2eb93d
+#define __BF_FIELD_CHECK(_mask, _reg, _val)					\
2eb93d
+	({									\
2eb93d
+		BUILD_BUG_ON(!__builtin_constant_p(_mask));			\
2eb93d
+		BUILD_BUG_ON((_mask) == 0);					\
2eb93d
+		BUILD_BUG_ON(__builtin_constant_p(_val) ?			\
2eb93d
+				 ~((_mask) >> __bf_shf(_mask)) & (_val) : 0);	\
2eb93d
+		BUILD_BUG_ON((_mask) > (typeof(_reg))~0ull);			\
2eb93d
+		__BUILD_BUG_ON_NOT_POWER_OF_2((_mask) +				\
2eb93d
+					      (1ULL << __bf_shf(_mask))); 	\
2eb93d
+	})
2eb93d
+
2eb93d
+/**
2eb93d
+ * FIELD_GET() - extract a bitfield element
2eb93d
+ * @_mask: shifted mask defining the field's length and position
2eb93d
+ * @_reg:  value of entire bitfield
2eb93d
+ *
2eb93d
+ * FIELD_GET() extracts the field specified by @_mask from the
2eb93d
+ * bitfield passed in as @_reg by masking and shifting it down.
2eb93d
+ */
2eb93d
+#define FIELD_GET(_mask, _reg)						\
2eb93d
+	({								\
2eb93d
+		__BF_FIELD_CHECK(_mask, _reg, 0U);			\
2eb93d
+		(typeof(_mask))(((_reg) & (_mask)) >> __bf_shf(_mask));	\
2eb93d
+	})
2eb93d
 
2eb93d
 #endif /* _NDCTL_BITMAP_H_ */
2eb93d
-- 
2eb93d
2.27.0
2eb93d