]> Git Repo - J-linux.git/commitdiff
platform/x86/intel/pmc: core: Report duration of time in HW sleep state
authorMario Limonciello <[email protected]>
Mon, 17 Apr 2023 15:27:08 +0000 (10:27 -0500)
committerRafael J. Wysocki <[email protected]>
Thu, 20 Apr 2023 17:06:12 +0000 (19:06 +0200)
intel_pmc_core displays a warning when the module parameter
`warn_on_s0ix_failures` is set and a suspend didn't get to a HW sleep
state.

Report this to the standard kernel reporting infrastructure so that
userspace software can query after the suspend cycle is done.

Reviewed-by: Hans de Goede <[email protected]>
Suggested-by: Ilpo Järvinen <[email protected]>
Reviewed-by: David E. Box <[email protected]>
Signed-off-by: Mario Limonciello <[email protected]>
Signed-off-by: Rafael J. Wysocki <[email protected]>
drivers/platform/x86/intel/pmc/core.c
drivers/platform/x86/intel/pmc/core.h

index 925c5d676a43e1dbb2f26a0f18bfd47aa63bc7da..298f27ba1e10f34a85bba2e0ea364b4880603469 100644 (file)
@@ -1153,6 +1153,8 @@ static int pmc_core_probe(struct platform_device *pdev)
        pmc_core_do_dmi_quirks(pmcdev);
 
        pmc_core_dbgfs_register(pmcdev);
+       pm_report_max_hw_sleep(FIELD_MAX(SLP_S0_RES_COUNTER_MASK) *
+                              pmc_core_adjust_slp_s0_step(pmcdev, 1));
 
        device_initialized = true;
        dev_info(&pdev->dev, " initialized\n");
@@ -1214,6 +1216,8 @@ static inline bool pmc_core_is_s0ix_failed(struct pmc_dev *pmcdev)
        if (pmc_core_dev_state_get(pmcdev, &s0ix_counter))
                return false;
 
+       pm_report_hw_sleep_time((u32)(s0ix_counter - pmcdev->s0ix_counter));
+
        if (s0ix_counter == pmcdev->s0ix_counter)
                return true;
 
index 51d73efceaf3b40ee7f9cc48f3ef3e5cbc41cacb..9ca9b974671939964d4a53045d15977590f2a265 100644 (file)
@@ -16,6 +16,8 @@
 #include <linux/bits.h>
 #include <linux/platform_device.h>
 
+#define SLP_S0_RES_COUNTER_MASK                        GENMASK(31, 0)
+
 #define PMC_BASE_ADDR_DEFAULT                  0xFE000000
 
 /* Sunrise Point Power Management Controller PCI Device ID */
This page took 0.054039 seconds and 4 git commands to generate.