Unverified Commit 880b3982 authored by Imre Deak's avatar Imre Deak Committed by Rodrigo Vivi
Browse files

drm/xe: Suspend/resume user access only during system s/r



Enable/Disable user access only during system suspend/resume.
This should not happen during runtime s/r

v2: rebased

Reviewed-by: default avatarArun R Murthy <arun.r.murthy@intel.com>
Signed-off-by: default avatarImre Deak <imre.deak@intel.com>
Signed-off-by: default avatarVinod Govindapillai <vinod.govindapillai@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240823112148.327015-2-vinod.govindapillai@intel.com


(cherry picked from commit a64e7e5b)
Signed-off-by: default avatarRodrigo Vivi <rodrigo.vivi@intel.com>
parent 269a3f60
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -318,6 +318,7 @@ void xe_display_pm_suspend(struct xe_device *xe, bool runtime)
	intel_fbdev_set_suspend(&xe->drm, FBINFO_STATE_SUSPENDED, true);
	if (has_display(xe)) {
		drm_kms_helper_poll_disable(&xe->drm);
		if (!runtime)
			intel_display_driver_disable_user_access(xe);
	}

@@ -330,7 +331,7 @@ void xe_display_pm_suspend(struct xe_device *xe, bool runtime)

	intel_hpd_cancel_work(xe);

	if (has_display(xe))
	if (!runtime && has_display(xe))
		intel_display_driver_suspend_access(xe);

	intel_encoder_suspend_all(&xe->display);
@@ -374,7 +375,7 @@ void xe_display_pm_resume(struct xe_device *xe, bool runtime)
	intel_display_driver_init_hw(xe);
	intel_hpd_init(xe);

	if (has_display(xe))
	if (!runtime && has_display(xe))
		intel_display_driver_resume_access(xe);

	/* MST sideband requires HPD interrupts enabled */
@@ -384,6 +385,7 @@ void xe_display_pm_resume(struct xe_device *xe, bool runtime)

	if (has_display(xe)) {
		drm_kms_helper_poll_enable(&xe->drm);
		if (!runtime)
			intel_display_driver_enable_user_access(xe);
	}
	intel_hpd_poll_disable(xe);