Blame SOURCES/0136-libcxl-add-interfaces-for-SET_PARTITION_INFO-mailbox.patch

26ccd9
From b424b4bfd555654fc41996e964bdd0495f585793 Mon Sep 17 00:00:00 2001
26ccd9
From: Alison Schofield <alison.schofield@intel.com>
26ccd9
Date: Tue, 22 Feb 2022 11:56:07 -0800
26ccd9
Subject: [PATCH 136/217] libcxl: add interfaces for SET_PARTITION_INFO mailbox
26ccd9
 command
26ccd9
26ccd9
The CXL PMEM provisioning model depends upon the CXL mailbox command
26ccd9
SET_PARTITION_INFO to change a device's partitioning between volatile
26ccd9
and persistent capacity.
26ccd9
26ccd9
Add interfaces to libcxl to allocate and send a SET_PARTITION_INFO
26ccd9
mailbox command as defined in the CXL 2.0 specification.
26ccd9
26ccd9
Link: https://lore.kernel.org/r/978c1cf78f3dd22f6070e51a241bc63cac9297de.1645558189.git.alison.schofield@intel.com
26ccd9
Reviewed-by: Dan Williams <dan.j.williams@intel.com>
26ccd9
Signed-off-by: Alison Schofield <alison.schofield@intel.com>
26ccd9
Signed-off-by: Vishal Verma <vishal.l.verma@intel.com>
26ccd9
---
26ccd9
 Documentation/cxl/lib/libcxl.txt | 11 +++++++++++
26ccd9
 cxl/lib/libcxl.c                 | 28 ++++++++++++++++++++++++++++
26ccd9
 cxl/lib/libcxl.sym               |  2 ++
26ccd9
 cxl/lib/private.h                |  8 ++++++++
26ccd9
 cxl/libcxl.h                     | 10 ++++++++++
26ccd9
 5 files changed, 59 insertions(+)
26ccd9
26ccd9
diff --git a/Documentation/cxl/lib/libcxl.txt b/Documentation/cxl/lib/libcxl.txt
26ccd9
index a6986ab..7b223cb 100644
26ccd9
--- a/Documentation/cxl/lib/libcxl.txt
26ccd9
+++ b/Documentation/cxl/lib/libcxl.txt
26ccd9
@@ -132,6 +132,8 @@ int cxl_memdev_read_label(struct cxl_memdev *memdev, void *buf, size_t length,
26ccd9
 int cxl_memdev_write_label(struct cxl_memdev *memdev, void *buf, size_t length,
26ccd9
 			   size_t offset);
26ccd9
 struct cxl_cmd *cxl_cmd_new_get_partition(struct cxl_memdev *memdev);
26ccd9
+struct cxl_cmd *cxl_cmd_new_set_partition(struct cxl_memdev *memdev,
26ccd9
+					  unsigned long long volatile_size);
26ccd9
 
26ccd9
 ----
26ccd9
 
26ccd9
@@ -148,6 +150,8 @@ this sub-class of interfaces, there are:
26ccd9
    a CXL standard opcode. See the potential command ids in
26ccd9
    /usr/include/linux/cxl_mem.h.
26ccd9
 
26ccd9
+ * 'cxl_cmd_<name>_set_<field>' interfaces that set specific fields in a cxl_cmd
26ccd9
+
26ccd9
  * 'cxl_cmd_submit' which submits the command via ioctl()
26ccd9
 
26ccd9
  * 'cxl_cmd_<name>_get_<field>' interfaces that get specific fields out of the
26ccd9
@@ -167,6 +171,13 @@ cxl_memdev{read,write,zero}_label() are helpers for marshaling multiple
26ccd9
 label access commands over an arbitrary extent of the device's label
26ccd9
 area.
26ccd9
 
26ccd9
+cxl_cmd_partition_set_mode() supports selecting NEXTBOOT or IMMEDIATE
26ccd9
+mode. When CXL_SETPART_IMMEDIATE mode is set, it is the caller’s
26ccd9
+responsibility to avoid immediate changes to partitioning when the
26ccd9
+device is in use. When CXL_SETPART_NEXTBOOT mode is set, the change
26ccd9
+in partitioning shall become the “next” configuration, to become
26ccd9
+active on the next device reset.
26ccd9
+
26ccd9
 BUSES
26ccd9
 -----
26ccd9
 The CXL Memory space is CPU and Device coherent. The address ranges that
26ccd9
diff --git a/cxl/lib/libcxl.c b/cxl/lib/libcxl.c
26ccd9
index c05c13c..daa2bbc 100644
26ccd9
--- a/cxl/lib/libcxl.c
26ccd9
+++ b/cxl/lib/libcxl.c
26ccd9
@@ -2478,6 +2478,34 @@ cxl_cmd_partition_get_next_persistent_size(struct cxl_cmd *cmd)
26ccd9
 	return cxl_capacity_to_bytes(c->next_persistent);
26ccd9
 }
26ccd9
 
26ccd9
+CXL_EXPORT int cxl_cmd_partition_set_mode(struct cxl_cmd *cmd,
26ccd9
+		enum cxl_setpartition_mode mode)
26ccd9
+{
26ccd9
+	struct cxl_cmd_set_partition *setpart = cmd->input_payload;
26ccd9
+
26ccd9
+	if (mode == CXL_SETPART_IMMEDIATE)
26ccd9
+		setpart->flags = CXL_CMD_SET_PARTITION_FLAG_IMMEDIATE;
26ccd9
+	else
26ccd9
+		setpart->flags = !CXL_CMD_SET_PARTITION_FLAG_IMMEDIATE;
26ccd9
+
26ccd9
+	return 0;
26ccd9
+}
26ccd9
+
26ccd9
+CXL_EXPORT struct cxl_cmd *cxl_cmd_new_set_partition(struct cxl_memdev *memdev,
26ccd9
+		unsigned long long volatile_size)
26ccd9
+{
26ccd9
+	struct cxl_cmd_set_partition *setpart;
26ccd9
+	struct cxl_cmd *cmd;
26ccd9
+
26ccd9
+	cmd = cxl_cmd_new_generic(memdev,
26ccd9
+			CXL_MEM_COMMAND_ID_SET_PARTITION_INFO);
26ccd9
+
26ccd9
+	setpart = cmd->input_payload;
26ccd9
+	setpart->volatile_size = cpu_to_le64(volatile_size)
26ccd9
+					/ CXL_CAPACITY_MULTIPLIER;
26ccd9
+	return cmd;
26ccd9
+}
26ccd9
+
26ccd9
 CXL_EXPORT int cxl_cmd_submit(struct cxl_cmd *cmd)
26ccd9
 {
26ccd9
 	struct cxl_memdev *memdev = cmd->memdev;
26ccd9
diff --git a/cxl/lib/libcxl.sym b/cxl/lib/libcxl.sym
26ccd9
index 5ac6e9b..aab1112 100644
26ccd9
--- a/cxl/lib/libcxl.sym
26ccd9
+++ b/cxl/lib/libcxl.sym
26ccd9
@@ -163,4 +163,6 @@ global:
26ccd9
 	cxl_cmd_identify_get_total_size;
26ccd9
 	cxl_cmd_identify_get_volatile_only_size;
26ccd9
 	cxl_cmd_identify_get_persistent_only_size;
26ccd9
+	cxl_cmd_new_set_partition;
26ccd9
+	cxl_cmd_partition_set_mode;
26ccd9
 } LIBCXL_1;
26ccd9
diff --git a/cxl/lib/private.h b/cxl/lib/private.h
26ccd9
index 7f3a562..c6d88f7 100644
26ccd9
--- a/cxl/lib/private.h
26ccd9
+++ b/cxl/lib/private.h
26ccd9
@@ -195,6 +195,14 @@ struct cxl_cmd_get_partition {
26ccd9
 
26ccd9
 #define CXL_CAPACITY_MULTIPLIER		SZ_256M
26ccd9
 
26ccd9
+struct cxl_cmd_set_partition {
26ccd9
+	le64 volatile_size;
26ccd9
+	u8 flags;
26ccd9
+} __attribute__((packed));
26ccd9
+
26ccd9
+/* CXL 2.0 8.2.9.5.2 Set Partition Info */
26ccd9
+#define CXL_CMD_SET_PARTITION_FLAG_IMMEDIATE				BIT(0)
26ccd9
+
26ccd9
 /* CXL 2.0 8.2.9.5.3 Byte 0 Health Status */
26ccd9
 #define CXL_CMD_HEALTH_INFO_STATUS_MAINTENANCE_NEEDED_MASK		BIT(0)
26ccd9
 #define CXL_CMD_HEALTH_INFO_STATUS_PERFORMANCE_DEGRADED_MASK		BIT(1)
26ccd9
diff --git a/cxl/libcxl.h b/cxl/libcxl.h
26ccd9
index 6e18e84..0063d31 100644
26ccd9
--- a/cxl/libcxl.h
26ccd9
+++ b/cxl/libcxl.h
26ccd9
@@ -250,6 +250,16 @@ unsigned long long cxl_cmd_partition_get_active_volatile_size(struct cxl_cmd *cm
26ccd9
 unsigned long long cxl_cmd_partition_get_active_persistent_size(struct cxl_cmd *cmd);
26ccd9
 unsigned long long cxl_cmd_partition_get_next_volatile_size(struct cxl_cmd *cmd);
26ccd9
 unsigned long long cxl_cmd_partition_get_next_persistent_size(struct cxl_cmd *cmd);
26ccd9
+struct cxl_cmd *cxl_cmd_new_set_partition(struct cxl_memdev *memdev,
26ccd9
+		unsigned long long volatile_size);
26ccd9
+
26ccd9
+enum cxl_setpartition_mode {
26ccd9
+	CXL_SETPART_NEXTBOOT,
26ccd9
+	CXL_SETPART_IMMEDIATE,
26ccd9
+};
26ccd9
+
26ccd9
+int cxl_cmd_partition_set_mode(struct cxl_cmd *cmd,
26ccd9
+		enum cxl_setpartition_mode mode);
26ccd9
 
26ccd9
 #ifdef __cplusplus
26ccd9
 } /* extern "C" */
26ccd9
-- 
26ccd9
2.27.0
26ccd9