@@ -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.
@@ -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);
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(-)