From b7446752e5d3de98bf26b5d3a7ca4fe9165ec779 Mon Sep 17 00:00:00 2001 From: Rodrigo Vivi Date: Fri, 31 Jan 2025 06:50:14 -0500 Subject: [PATCH] drm/xe/display: Add missing watermark ipc update at runtime resume Continuing the alignment with i915 runtime pm sequence. Add this missing call. Reviewed-by: Jonathan Cavitt Link: https://patchwork.freedesktop.org/patch/msgid/20250131115014.29625-1-rodrigo.vivi@intel.com Signed-off-by: Rodrigo Vivi --- drivers/gpu/drm/xe/display/xe_display.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/gpu/drm/xe/display/xe_display.c b/drivers/gpu/drm/xe/display/xe_display.c index 7f0d8f00acff..376c36ca06db 100644 --- a/drivers/gpu/drm/xe/display/xe_display.c +++ b/drivers/gpu/drm/xe/display/xe_display.c @@ -29,6 +29,7 @@ #include "intel_hdcp.h" #include "intel_hotplug.h" #include "intel_opregion.h" +#include "skl_watermark.h" #include "xe_module.h" /* Xe device functions */ @@ -481,6 +482,7 @@ void xe_display_pm_runtime_resume(struct xe_device *xe) intel_hpd_init(xe); intel_hpd_poll_disable(xe); + skl_watermark_ipc_update(xe); } -- 2.50.1