Skip to content

Commit a29d0b6

Browse files
committed
[nrf fromtree] soc: nordic: nrf54h: power: Add idle tracing calls
Add calls to sys_trace_idle and sys_trace_idle_exit in nrf54h specific idle states to allow measuring CPU load on nrf54h20 when power management is enabled. Signed-off-by: Krzysztof Chruściński <krzysztof.chruscinski@nordicsemi.no> (cherry picked from commit 37fe7504ce1791976cae5cfe8d8fe0f03b122d36)
1 parent cfb1d32 commit a29d0b6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

soc/nordic/nrf54h/power.c

+4
Original file line numberDiff line numberDiff line change
@@ -175,17 +175,21 @@ void pm_state_set(enum pm_state state, uint8_t substate_id)
175175
{
176176
if (state == PM_STATE_SUSPEND_TO_IDLE) {
177177
__disable_irq();
178+
sys_trace_idle();
178179
s2idle_enter(substate_id);
179180
/* Resume here. */
180181
s2idle_exit(substate_id);
182+
sys_trace_idle_exit();
181183
__enable_irq();
182184
}
183185
#if defined(CONFIG_PM_S2RAM)
184186
else if (state == PM_STATE_SUSPEND_TO_RAM) {
185187
__disable_irq();
188+
sys_trace_idle();
186189
s2ram_enter();
187190
/* On resuming or error we return exactly *HERE* */
188191
s2ram_exit();
192+
sys_trace_idle_exit();
189193
__enable_irq();
190194
}
191195
#endif

0 commit comments

Comments
 (0)