From: Peng Fan <peng.fan@nxp.com>
To: Sudeep Holla <sudeep.holla@arm.com>,
Cristian Marussi <cristian.marussi@arm.com>,
Shawn Guo <shawnguo@kernel.org>,
Sascha Hauer <s.hauer@pengutronix.de>,
Pengutronix Kernel Team <kernel@pengutronix.de>,
Fabio Estevam <festevam@gmail.com>
Cc: arm-scmi@vger.kernel.org, imx@lists.linux.dev,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, Peng Fan <peng.fan@nxp.com>
Subject: [PATCH v3 6/6] firmware: imx: sm-misc: Dump syslog info
Date: Wed, 27 Aug 2025 12:59:18 +0800 [thread overview]
Message-ID: <20250827-sm-misc-api-v1-v3-6-82c982c1815a@nxp.com> (raw)
In-Reply-To: <20250827-sm-misc-api-v1-v3-0-82c982c1815a@nxp.com>
Add sysfs interface to read System Manager syslog info
Reviewed-by: Cristian Marussi <cristian.marussi@arm.com>
Signed-off-by: Peng Fan <peng.fan@nxp.com>
---
drivers/firmware/imx/sm-misc.c | 232 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 232 insertions(+)
diff --git a/drivers/firmware/imx/sm-misc.c b/drivers/firmware/imx/sm-misc.c
index fc3ee12c2be878e0285183e3381c9514a63d5142..e742a2fff06b44ab7f07e9f97f723ef7ca1ff259 100644
--- a/drivers/firmware/imx/sm-misc.c
+++ b/drivers/firmware/imx/sm-misc.c
@@ -3,6 +3,7 @@
* Copyright 2024 NXP
*/
+#include <linux/device/devres.h>
#include <linux/firmware/imx/sm.h>
#include <linux/module.h>
#include <linux/of.h>
@@ -44,10 +45,232 @@ static int scmi_imx_misc_ctrl_notifier(struct notifier_block *nb,
return 0;
}
+static ssize_t
+wakevector_show(struct device *device, struct device_attribute *attr, char *buf)
+{
+ struct scmi_imx_misc_syslog *syslog = dev_get_drvdata(device);
+ u16 size = sizeof(*syslog) / 4;
+ int ret;
+
+ if (!ph)
+ return 0;
+
+ ret = imx_misc_ctrl_ops->misc_syslog(ph, &size, syslog);
+ if (ret)
+ return ret;
+
+ if (size * 4 < offsetofend(struct scmi_imx_misc_sys_sleep_rec, wakesource)) {
+ dev_err(device, "%s: returned truncated data\n", __func__);
+ return -EINVAL;
+ }
+
+ return sysfs_emit(buf, "%u\n", syslog->syssleeprecord.wakesource);
+}
+static DEVICE_ATTR_RO(wakevector);
+
+static ssize_t
+syssleepmode_show(struct device *device, struct device_attribute *attr, char *buf)
+{
+ struct scmi_imx_misc_syslog *syslog = dev_get_drvdata(device);
+ u16 size = sizeof(*syslog) / 4;
+ int ret;
+
+ if (!ph)
+ return 0;
+
+ ret = imx_misc_ctrl_ops->misc_syslog(ph, &size, syslog);
+ if (ret)
+ return ret;
+
+ if (size * 4 < offsetofend(struct scmi_imx_misc_sys_sleep_rec, syssleepmode)) {
+ dev_err(device, "%s: returned truncated data\n", __func__);
+ return -EINVAL;
+ }
+
+ return sysfs_emit(buf, "%u\n", syslog->syssleeprecord.syssleepmode);
+}
+static DEVICE_ATTR_RO(syssleepmode);
+
+static ssize_t
+syssleepflags_show(struct device *device, struct device_attribute *attr, char *buf)
+{
+ struct scmi_imx_misc_syslog *syslog = dev_get_drvdata(device);
+ u16 size = sizeof(*syslog) / 4;
+ int ret;
+
+ if (!ph)
+ return 0;
+
+ ret = imx_misc_ctrl_ops->misc_syslog(ph, &size, syslog);
+ if (ret)
+ return ret;
+
+ if (size * 4 < offsetofend(struct scmi_imx_misc_sys_sleep_rec, syssleepflags)) {
+ dev_err(device, "%s: returned truncated data\n", __func__);
+ return -EINVAL;
+ }
+
+ return sysfs_emit(buf, "0x%08x\n", syslog->syssleeprecord.syssleepflags);
+}
+static DEVICE_ATTR_RO(syssleepflags);
+
+static ssize_t
+mixpwrstat_show(struct device *device, struct device_attribute *attr, char *buf)
+{
+ struct scmi_imx_misc_syslog *syslog = dev_get_drvdata(device);
+ u16 size = sizeof(*syslog) / 4;
+ int ret;
+
+ if (!ph)
+ return 0;
+
+ ret = imx_misc_ctrl_ops->misc_syslog(ph, &size, syslog);
+ if (ret)
+ return ret;
+
+ if (size * 4 < offsetofend(struct scmi_imx_misc_sys_sleep_rec, mixpwrstat)) {
+ dev_err(device, "%s: returned truncated data\n", __func__);
+ return -EINVAL;
+ }
+
+ return sysfs_emit(buf, "0x%08x\n", syslog->syssleeprecord.mixpwrstat);
+}
+static DEVICE_ATTR_RO(mixpwrstat);
+
+static ssize_t
+mempwrstat_show(struct device *device, struct device_attribute *attr, char *buf)
+{
+ struct scmi_imx_misc_syslog *syslog = dev_get_drvdata(device);
+ u16 size = sizeof(*syslog) / 4;
+ int ret;
+
+ if (!ph)
+ return 0;
+
+ ret = imx_misc_ctrl_ops->misc_syslog(ph, &size, syslog);
+ if (ret)
+ return ret;
+
+ if (size * 4 < offsetofend(struct scmi_imx_misc_sys_sleep_rec, mempwrstat)) {
+ dev_err(device, "%s: returned truncated data\n", __func__);
+ return -EINVAL;
+ }
+
+ return sysfs_emit(buf, "0x%08x\n", syslog->syssleeprecord.mempwrstat);
+}
+static DEVICE_ATTR_RO(mempwrstat);
+
+static ssize_t
+pllpwrstat_show(struct device *device, struct device_attribute *attr, char *buf)
+{
+ struct scmi_imx_misc_syslog *syslog = dev_get_drvdata(device);
+ u16 size = sizeof(*syslog) / 4;
+ int ret;
+
+ if (!ph)
+ return 0;
+
+ ret = imx_misc_ctrl_ops->misc_syslog(ph, &size, syslog);
+ if (ret)
+ return ret;
+
+ if (size * 4 < offsetofend(struct scmi_imx_misc_sys_sleep_rec, pllpwrstat)) {
+ dev_err(device, "%s: returned truncated data\n", __func__);
+ return -EINVAL;
+ }
+
+ return sysfs_emit(buf, "0x%08x\n", syslog->syssleeprecord.pllpwrstat);
+}
+static DEVICE_ATTR_RO(pllpwrstat);
+
+static ssize_t
+sleepentryusec_show(struct device *device, struct device_attribute *attr, char *buf)
+{
+ struct scmi_imx_misc_syslog *syslog = dev_get_drvdata(device);
+ u16 size = sizeof(*syslog) / 4;
+ int ret;
+
+ if (!ph)
+ return 0;
+
+ ret = imx_misc_ctrl_ops->misc_syslog(ph, &size, syslog);
+ if (ret)
+ return ret;
+
+ if (size * 4 < offsetofend(struct scmi_imx_misc_sys_sleep_rec, sleepentryusec)) {
+ dev_err(device, "%s: returned truncated data\n", __func__);
+ return -EINVAL;
+ }
+
+ return sysfs_emit(buf, "%u\n", syslog->syssleeprecord.sleepentryusec);
+}
+static DEVICE_ATTR_RO(sleepentryusec);
+
+static ssize_t
+sleepexitusec_show(struct device *device, struct device_attribute *attr, char *buf)
+{
+ struct scmi_imx_misc_syslog *syslog = dev_get_drvdata(device);
+ u16 size = sizeof(*syslog) / 4;
+ int ret;
+
+ if (!ph)
+ return 0;
+
+ ret = imx_misc_ctrl_ops->misc_syslog(ph, &size, syslog);
+ if (ret)
+ return ret;
+
+ if (size * 4 < offsetofend(struct scmi_imx_misc_sys_sleep_rec, sleepexitusec)) {
+ dev_err(device, "%s: returned truncated data\n", __func__);
+ return -EINVAL;
+ }
+
+ return sysfs_emit(buf, "%u\n", syslog->syssleeprecord.sleepexitusec);
+}
+static DEVICE_ATTR_RO(sleepexitusec);
+
+static ssize_t
+sleepcnt_show(struct device *device, struct device_attribute *attr, char *buf)
+{
+ struct scmi_imx_misc_syslog *syslog = dev_get_drvdata(device);
+ u16 size = sizeof(*syslog) / 4;
+ int ret;
+
+ if (!ph)
+ return 0;
+
+ ret = imx_misc_ctrl_ops->misc_syslog(ph, &size, syslog);
+ if (ret)
+ return ret;
+
+ if (size * 4 < offsetofend(struct scmi_imx_misc_sys_sleep_rec, sleepcnt)) {
+ dev_err(device, "%s: returned truncated data\n", __func__);
+ return -EINVAL;
+ }
+
+ return sysfs_emit(buf, "%u\n", syslog->syssleeprecord.sleepcnt);
+}
+static DEVICE_ATTR_RO(sleepcnt);
+
+static struct attribute *sm_misc_attrs[] = {
+ &dev_attr_wakevector.attr,
+ &dev_attr_syssleepmode.attr,
+ &dev_attr_syssleepflags.attr,
+ &dev_attr_mixpwrstat.attr,
+ &dev_attr_mempwrstat.attr,
+ &dev_attr_pllpwrstat.attr,
+ &dev_attr_sleepentryusec.attr,
+ &dev_attr_sleepexitusec.attr,
+ &dev_attr_sleepcnt.attr,
+ NULL,
+};
+ATTRIBUTE_GROUPS(sm_misc);
+
static int scmi_imx_misc_ctrl_probe(struct scmi_device *sdev)
{
const struct scmi_handle *handle = sdev->handle;
struct device_node *np = sdev->dev.of_node;
+ struct scmi_imx_misc_syslog *syslog;
u32 src_id, flags;
int ret, i, num;
@@ -63,6 +286,12 @@ static int scmi_imx_misc_ctrl_probe(struct scmi_device *sdev)
if (IS_ERR(imx_misc_ctrl_ops))
return PTR_ERR(imx_misc_ctrl_ops);
+ syslog = devm_kzalloc(&sdev->dev, sizeof(*syslog), GFP_KERNEL);
+ if (!syslog)
+ return -ENOMEM;
+
+ dev_set_drvdata(&sdev->dev, syslog);
+
num = of_property_count_u32_elems(np, "nxp,ctrl-ids");
if (num % 2) {
dev_err(&sdev->dev, "Invalid wakeup-sources\n");
@@ -108,6 +337,9 @@ static const struct scmi_device_id scmi_id_table[] = {
MODULE_DEVICE_TABLE(scmi, scmi_id_table);
static struct scmi_driver scmi_imx_misc_ctrl_driver = {
+ .driver = {
+ .dev_groups = sm_misc_groups,
+ },
.name = "scmi-imx-misc-ctrl",
.probe = scmi_imx_misc_ctrl_probe,
.id_table = scmi_id_table,
--
2.37.1
prev parent reply other threads:[~2025-08-27 4:59 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-27 4:59 [PATCH v3 0/6] firmware: arm_scmi: imx: Dump syslog and system_info Peng Fan
2025-08-27 4:59 ` [PATCH v3 1/6] firmware: arm_scmi: imx: Add documentation for MISC_BOARD_INFO Peng Fan
2025-08-29 10:43 ` Sudeep Holla
2025-08-31 8:15 ` Peng Fan
2025-08-27 4:59 ` [PATCH v3 2/6] firmware: arm_scmi: imx: Support discovering buildinfo of MISC protocol Peng Fan
2025-08-29 10:48 ` Sudeep Holla
2025-08-31 8:20 ` Peng Fan
2025-08-31 8:25 ` Peng Fan
2025-08-29 10:50 ` Sudeep Holla
2025-08-31 8:22 ` Peng Fan
2025-08-27 4:59 ` [PATCH v3 3/6] firmware: arm_scmi: imx: Support getting cfg info " Peng Fan
2025-08-29 10:56 ` Sudeep Holla
2025-08-31 8:25 ` Peng Fan
2025-08-27 4:59 ` [PATCH v3 4/6] firmware: arm_scmi: imx: Support getting board " Peng Fan
2025-08-29 11:00 ` Sudeep Holla
2025-08-27 4:59 ` [PATCH v3 5/6] firmware: arm_scmi: imx: Support getting syslog " Peng Fan
2025-08-29 11:07 ` Sudeep Holla
2025-08-31 8:28 ` Peng Fan
2025-08-29 11:22 ` Sudeep Holla
2025-08-31 7:43 ` Peng Fan
2025-08-27 4:59 ` Peng Fan [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250827-sm-misc-api-v1-v3-6-82c982c1815a@nxp.com \
--to=peng.fan@nxp.com \
--cc=arm-scmi@vger.kernel.org \
--cc=cristian.marussi@arm.com \
--cc=festevam@gmail.com \
--cc=imx@lists.linux.dev \
--cc=kernel@pengutronix.de \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=s.hauer@pengutronix.de \
--cc=shawnguo@kernel.org \
--cc=sudeep.holla@arm.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).