diff mbox series

[RFC,v3,3/4] platform/x86/amd: pmc: Report duration of time in deepest hw state

Message ID 20221115200156.12218-4-mario.limonciello@amd.com
State New
Headers show
Series [RFC,v3,1/4] PM: Add a sysfs file to represent the total sleep duration | expand

Commit Message

Mario Limonciello Nov. 15, 2022, 8:01 p.m. UTC
amd_pmc displays a warning when a suspend didn't get to the deepest
state and a dynamic debugging message with the duration if it did.

Rather than logging to dynamic debugging the duration spent in the
deepest state, report this to a file in sysfs.

Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
---
RFC v2->v3:
 * Create new sysfs file instead of reporting using kernel symbol
---
 Documentation/ABI/testing/sysfs-amd-pmc |  6 ++++++
 drivers/platform/x86/amd/pmc.c          | 22 +++++++++++++++++++---
 2 files changed, 25 insertions(+), 3 deletions(-)
diff mbox series

Patch

diff --git a/Documentation/ABI/testing/sysfs-amd-pmc b/Documentation/ABI/testing/sysfs-amd-pmc
index c421b72844f1..89354da8e680 100644
--- a/Documentation/ABI/testing/sysfs-amd-pmc
+++ b/Documentation/ABI/testing/sysfs-amd-pmc
@@ -11,3 +11,9 @@  Contact:	Mario Limonciello <mario.limonciello@amd.com>
 Description:	Reading this file reports the program corresponding to the SMU
 		firmware version.  The program field is used to disambiguate two
 		APU/CPU models that can share the same firmware binary.
+
+What:		/sys/bus/platform/drivers/amd_pmc/*/low_power_idle_system_residency_us
+Date:		December 2022
+Contact:	Mario Limonciello <mario.limonciello@amd.com>
+Description:	Reading this file reports the duration of the last suspend that
+		was spent in the deepest hardware sleep state in microseconds.
diff --git a/drivers/platform/x86/amd/pmc.c b/drivers/platform/x86/amd/pmc.c
index 96e790e639a2..2550ba6d28f5 100644
--- a/drivers/platform/x86/amd/pmc.c
+++ b/drivers/platform/x86/amd/pmc.c
@@ -13,6 +13,7 @@ 
 #include <linux/acpi.h>
 #include <linux/bitfield.h>
 #include <linux/bits.h>
+#include <linux/cpu.h>
 #include <linux/debugfs.h>
 #include <linux/delay.h>
 #include <linux/io.h>
@@ -363,9 +364,6 @@  static void amd_pmc_validate_deepest(struct amd_pmc_dev *pdev)
 
 	if (!table.s0i3_last_entry_status)
 		dev_warn(pdev->dev, "Last suspend didn't reach deepest state\n");
-	else
-		dev_dbg(pdev->dev, "Last suspend in deepest state for %lluus\n",
-			 table.timein_s0i3_lastcapture);
 }
 #endif
 
@@ -417,12 +415,30 @@  static ssize_t smu_program_show(struct device *d, struct device_attribute *attr,
 	return sysfs_emit(buf, "%u\n", dev->smu_program);
 }
 
+static ssize_t low_power_idle_system_residency_us_show(struct device *d,
+						       struct device_attribute *attr,
+						       char *buf)
+{
+	struct amd_pmc_dev *dev = &pmc;
+	struct smu_metrics table;
+	int ret;
+
+	ret = get_metrics_table(dev, &table);
+	if (ret)
+		return ret;
+
+	return sysfs_emit(buf, "%llu\n", table.s0i3_last_entry_status ?
+					 table.timein_s0i3_lastcapture : 0);
+}
+
 static DEVICE_ATTR_RO(smu_fw_version);
 static DEVICE_ATTR_RO(smu_program);
+static DEVICE_ATTR_RO(low_power_idle_system_residency_us);
 
 static struct attribute *pmc_attrs[] = {
 	&dev_attr_smu_fw_version.attr,
 	&dev_attr_smu_program.attr,
+	&dev_attr_low_power_idle_system_residency_us.attr,
 	NULL,
 };
 ATTRIBUTE_GROUPS(pmc);