[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20230411211719.4549-5-mario.limonciello@amd.com>
Date: Tue, 11 Apr 2023 16:17:18 -0500
From: Mario Limonciello <mario.limonciello@....com>
To: Box David E <david.e.box@...el.com>, <jstultz@...gle.com>,
<pavel@....cz>, <svenva@...omium.org>,
Rajneesh Bhardwaj <irenic.rajneesh@...il.com>
CC: <Shyam-sundar.S-k@....com>, <rrangel@...omium.org>,
Jain Rajat <rajatja@...gle.com>, <hdegoede@...hat.com>,
Mario Limonciello <mario.limonciello@....com>,
Mark Gross <markgross@...nel.org>,
<platform-driver-x86@...r.kernel.org>,
<linux-kernel@...r.kernel.org>
Subject: [PATCH v7 4/4] platform/x86/intel/pmc: core: Report duration of time in HW sleep state
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.
Signed-off-by: Mario Limonciello <mario.limonciello@....com>
---
v6->v7:
* Handle overflow by casting instead
v5->v6:
* Handle overflow case
* Use renamed symbol
v4->v5:
* Reword commit message
---
drivers/platform/x86/intel/pmc/core.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/platform/x86/intel/pmc/core.c b/drivers/platform/x86/intel/pmc/core.c
index 925c5d676a43..5b1e65876b8d 100644
--- a/drivers/platform/x86/intel/pmc/core.c
+++ b/drivers/platform/x86/intel/pmc/core.c
@@ -1214,6 +1214,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;
--
2.34.1
Powered by blists - more mailing lists