]> git.baikalelectronics.ru Git - kernel.git/commitdiff
firmware: arm_scmi: Introduce a common SCMI v3.1 .extended_name_get helper
authorCristian Marussi <cristian.marussi@arm.com>
Wed, 30 Mar 2022 15:05:39 +0000 (16:05 +0100)
committerSudeep Holla <sudeep.holla@arm.com>
Thu, 28 Apr 2022 17:22:52 +0000 (18:22 +0100)
Introduce a new set of common protocol operations bound to the protocol
handle structure so that can be invoked by the protocol implementation code
even when protocols are built as distinct loadable kernel module without
the need of exporting new symbols, like already done with scmi_xfer_ops.

Add at first, as new common protocol helper, an .extended_name_get helper
which will ease implementation and will avoid code duplication when adding
new SCMIv3.1 per-protocol _NAME_GET commands.

Link: https://lore.kernel.org/r/20220330150551.2573938-11-cristian.marussi@arm.com
Signed-off-by: Cristian Marussi <cristian.marussi@arm.com>
Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
drivers/firmware/arm_scmi/driver.c
drivers/firmware/arm_scmi/protocols.h

index a284a3fa85eb47405969e17aef0e2b4f15a73b44..ae2fed4af133ec8557888f5f43019f7d15a194f6 100644 (file)
@@ -1103,6 +1103,55 @@ static const struct scmi_xfer_ops xfer_ops = {
        .xfer_put = xfer_put,
 };
 
+struct scmi_msg_resp_domain_name_get {
+       __le32 flags;
+       u8 name[SCMI_MAX_STR_SIZE];
+};
+
+/**
+ * scmi_common_extended_name_get  - Common helper to get extended resources name
+ * @ph: A protocol handle reference.
+ * @cmd_id: The specific command ID to use.
+ * @res_id: The specific resource ID to use.
+ * @name: A pointer to the preallocated area where the retrieved name will be
+ *       stored as a NULL terminated string.
+ * @len: The len in bytes of the @name char array.
+ *
+ * Return: 0 on Succcess
+ */
+static int scmi_common_extended_name_get(const struct scmi_protocol_handle *ph,
+                                        u8 cmd_id, u32 res_id, char *name,
+                                        size_t len)
+{
+       int ret;
+       struct scmi_xfer *t;
+       struct scmi_msg_resp_domain_name_get *resp;
+
+       ret = ph->xops->xfer_get_init(ph, cmd_id, sizeof(res_id),
+                                     sizeof(*resp), &t);
+       if (ret)
+               goto out;
+
+       put_unaligned_le32(res_id, t->tx.buf);
+       resp = t->rx.buf;
+
+       ret = ph->xops->do_xfer(ph, t);
+       if (!ret)
+               strscpy(name, resp->name, len);
+
+       ph->xops->xfer_put(ph, t);
+out:
+       if (ret)
+               dev_warn(ph->dev,
+                        "Failed to get extended name - id:%u (ret:%d). Using %s\n",
+                        res_id, ret, name);
+       return ret;
+}
+
+static const struct scmi_proto_helpers_ops helpers_ops = {
+       .extended_name_get = scmi_common_extended_name_get,
+};
+
 /**
  * scmi_revision_area_get  - Retrieve version memory area.
  *
@@ -1163,6 +1212,7 @@ scmi_alloc_init_protocol_instance(struct scmi_info *info,
        pi->handle = handle;
        pi->ph.dev = handle->dev;
        pi->ph.xops = &xfer_ops;
+       pi->ph.hops = &helpers_ops;
        pi->ph.set_priv = scmi_set_protocol_priv;
        pi->ph.get_priv = scmi_get_protocol_priv;
        refcount_set(&pi->users, 1);
index b2a92d2b298674edaf55a794a5b253e80ef2a199..5461fa333152e30c5708c11ae423f20b35ebad13 100644 (file)
@@ -141,6 +141,7 @@ struct scmi_xfer {
 };
 
 struct scmi_xfer_ops;
+struct scmi_proto_helpers_ops;
 
 /**
  * struct scmi_protocol_handle  - Reference to an initialized protocol instance
@@ -165,10 +166,24 @@ struct scmi_xfer_ops;
 struct scmi_protocol_handle {
        struct device *dev;
        const struct scmi_xfer_ops *xops;
+       const struct scmi_proto_helpers_ops *hops;
        int (*set_priv)(const struct scmi_protocol_handle *ph, void *priv);
        void *(*get_priv)(const struct scmi_protocol_handle *ph);
 };
 
+/**
+ * struct scmi_proto_helpers_ops  - References to common protocol helpers
+ * @extended_name_get: A common helper function to retrieve extended naming
+ *                    for the specified resource using the specified command.
+ *                    Result is returned as a NULL terminated string in the
+ *                    pre-allocated area pointed to by @name with maximum
+ *                    capacity of @len bytes.
+ */
+struct scmi_proto_helpers_ops {
+       int (*extended_name_get)(const struct scmi_protocol_handle *ph,
+                                u8 cmd_id, u32 res_id, char *name, size_t len);
+};
+
 /**
  * struct scmi_xfer_ops  - References to the core SCMI xfer operations.
  * @version_get: Get this version protocol.