Commit 275aa53f authored by Nirmoy Das's avatar Nirmoy Das

drm/xe/pm: Add trace for pm functions

Add trace for xe pm function for better debuggability.

v2: Fix indentation and add trace for xe_pm_runtime_get_ioctl

Cc: Matthew Brost <matthew.brost@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Reviewed-by: default avatarMatthew Brost <matthew.brost@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240717125950.9952-1-nirmoy.das@intel.comSigned-off-by: default avatarNirmoy Das <nirmoy.das@intel.com>
parent 775d0adc
...@@ -20,6 +20,7 @@ ...@@ -20,6 +20,7 @@
#include "xe_guc.h" #include "xe_guc.h"
#include "xe_irq.h" #include "xe_irq.h"
#include "xe_pcode.h" #include "xe_pcode.h"
#include "xe_trace.h"
#include "xe_wa.h" #include "xe_wa.h"
/** /**
...@@ -87,6 +88,7 @@ int xe_pm_suspend(struct xe_device *xe) ...@@ -87,6 +88,7 @@ int xe_pm_suspend(struct xe_device *xe)
int err; int err;
drm_dbg(&xe->drm, "Suspending device\n"); drm_dbg(&xe->drm, "Suspending device\n");
trace_xe_pm_suspend(xe, __builtin_return_address(0));
for_each_gt(gt, xe, id) for_each_gt(gt, xe, id)
xe_gt_suspend_prepare(gt); xe_gt_suspend_prepare(gt);
...@@ -131,6 +133,7 @@ int xe_pm_resume(struct xe_device *xe) ...@@ -131,6 +133,7 @@ int xe_pm_resume(struct xe_device *xe)
int err; int err;
drm_dbg(&xe->drm, "Resuming device\n"); drm_dbg(&xe->drm, "Resuming device\n");
trace_xe_pm_resume(xe, __builtin_return_address(0));
for_each_tile(tile, xe, id) for_each_tile(tile, xe, id)
xe_wa_apply_tile_workarounds(tile); xe_wa_apply_tile_workarounds(tile);
...@@ -326,6 +329,7 @@ int xe_pm_runtime_suspend(struct xe_device *xe) ...@@ -326,6 +329,7 @@ int xe_pm_runtime_suspend(struct xe_device *xe)
u8 id; u8 id;
int err = 0; int err = 0;
trace_xe_pm_runtime_suspend(xe, __builtin_return_address(0));
/* Disable access_ongoing asserts and prevent recursive pm calls */ /* Disable access_ongoing asserts and prevent recursive pm calls */
xe_pm_write_callback_task(xe, current); xe_pm_write_callback_task(xe, current);
...@@ -399,6 +403,7 @@ int xe_pm_runtime_resume(struct xe_device *xe) ...@@ -399,6 +403,7 @@ int xe_pm_runtime_resume(struct xe_device *xe)
u8 id; u8 id;
int err = 0; int err = 0;
trace_xe_pm_runtime_resume(xe, __builtin_return_address(0));
/* Disable access_ongoing asserts and prevent recursive pm calls */ /* Disable access_ongoing asserts and prevent recursive pm calls */
xe_pm_write_callback_task(xe, current); xe_pm_write_callback_task(xe, current);
...@@ -463,6 +468,7 @@ static void pm_runtime_lockdep_prime(void) ...@@ -463,6 +468,7 @@ static void pm_runtime_lockdep_prime(void)
*/ */
void xe_pm_runtime_get(struct xe_device *xe) void xe_pm_runtime_get(struct xe_device *xe)
{ {
trace_xe_pm_runtime_get(xe, __builtin_return_address(0));
pm_runtime_get_noresume(xe->drm.dev); pm_runtime_get_noresume(xe->drm.dev);
if (xe_pm_read_callback_task(xe) == current) if (xe_pm_read_callback_task(xe) == current)
...@@ -478,6 +484,7 @@ void xe_pm_runtime_get(struct xe_device *xe) ...@@ -478,6 +484,7 @@ void xe_pm_runtime_get(struct xe_device *xe)
*/ */
void xe_pm_runtime_put(struct xe_device *xe) void xe_pm_runtime_put(struct xe_device *xe)
{ {
trace_xe_pm_runtime_put(xe, __builtin_return_address(0));
if (xe_pm_read_callback_task(xe) == current) { if (xe_pm_read_callback_task(xe) == current) {
pm_runtime_put_noidle(xe->drm.dev); pm_runtime_put_noidle(xe->drm.dev);
} else { } else {
...@@ -495,6 +502,7 @@ void xe_pm_runtime_put(struct xe_device *xe) ...@@ -495,6 +502,7 @@ void xe_pm_runtime_put(struct xe_device *xe)
*/ */
int xe_pm_runtime_get_ioctl(struct xe_device *xe) int xe_pm_runtime_get_ioctl(struct xe_device *xe)
{ {
trace_xe_pm_runtime_get_ioctl(xe, __builtin_return_address(0));
if (WARN_ON(xe_pm_read_callback_task(xe) == current)) if (WARN_ON(xe_pm_read_callback_task(xe) == current))
return -ELOOP; return -ELOOP;
......
...@@ -369,6 +369,58 @@ TRACE_EVENT(xe_reg_rw, ...@@ -369,6 +369,58 @@ TRACE_EVENT(xe_reg_rw,
(u32)(__entry->val >> 32)) (u32)(__entry->val >> 32))
); );
DECLARE_EVENT_CLASS(xe_pm_runtime,
TP_PROTO(struct xe_device *xe, void *caller),
TP_ARGS(xe, caller),
TP_STRUCT__entry(
__string(dev, __dev_name_xe(xe))
__field(void *, caller)
),
TP_fast_assign(
__assign_str(dev);
__entry->caller = caller;
),
TP_printk("dev=%s caller_function=%pS", __get_str(dev), __entry->caller)
);
DEFINE_EVENT(xe_pm_runtime, xe_pm_runtime_get,
TP_PROTO(struct xe_device *xe, void *caller),
TP_ARGS(xe, caller)
);
DEFINE_EVENT(xe_pm_runtime, xe_pm_runtime_put,
TP_PROTO(struct xe_device *xe, void *caller),
TP_ARGS(xe, caller)
);
DEFINE_EVENT(xe_pm_runtime, xe_pm_resume,
TP_PROTO(struct xe_device *xe, void *caller),
TP_ARGS(xe, caller)
);
DEFINE_EVENT(xe_pm_runtime, xe_pm_suspend,
TP_PROTO(struct xe_device *xe, void *caller),
TP_ARGS(xe, caller)
);
DEFINE_EVENT(xe_pm_runtime, xe_pm_runtime_resume,
TP_PROTO(struct xe_device *xe, void *caller),
TP_ARGS(xe, caller)
);
DEFINE_EVENT(xe_pm_runtime, xe_pm_runtime_suspend,
TP_PROTO(struct xe_device *xe, void *caller),
TP_ARGS(xe, caller)
);
DEFINE_EVENT(xe_pm_runtime, xe_pm_runtime_get_ioctl,
TP_PROTO(struct xe_device *xe, void *caller),
TP_ARGS(xe, caller)
);
#endif #endif
/* This part must be outside protection */ /* This part must be outside protection */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment