AMD-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] drm/amd/display: Disable ips before dc interrupt setting
@ 2024-01-24 17:09 Roman.Li
  2024-01-24 17:09 ` [PATCH 2/3] drm/amd: Add a DC debug mask for IPS Roman.Li
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Roman.Li @ 2024-01-24 17:09 UTC (permalink / raw)
  To: amd-gfx, Alexander.Deucher, mario.limonciello, Aurabindo.Pillai,
	li.ma
  Cc: Mark Broadworth, chiahsuan.chung, Sunpeng.Li, Rodrigo.Siqueira,
	Roman Li, jerry.zuo, hamza.mahfooz, wayne.lin, Harry.Wentland

From: Roman Li <Roman.Li@amd.com>

[Why]
While in IPS2 an access to dcn registers is not allowed.
If interrupt results in dc call, we should disable IPS.

[How]
Safeguard register access in IPS2 by disabling idle optimization
before calling dc interrupt setting api.

Signed-off-by: Roman Li <Roman.Li@amd.com>
Tested-by: Mark Broadworth <mark.broadworth@amd.com>
---
 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_irq.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_irq.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_irq.c
index 58b880acb087..3390f0d8420a 100644
--- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_irq.c
+++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_irq.c
@@ -711,7 +711,7 @@ static inline int dm_irq_state(struct amdgpu_device *adev,
 {
 	bool st;
 	enum dc_irq_source irq_source;
-
+	struct dc *dc = adev->dm.dc;
 	struct amdgpu_crtc *acrtc = adev->mode_info.crtcs[crtc_id];
 
 	if (!acrtc) {
@@ -729,6 +729,9 @@ static inline int dm_irq_state(struct amdgpu_device *adev,
 
 	st = (state == AMDGPU_IRQ_STATE_ENABLE);
 
+	if (dc && dc->caps.ips_support && dc->idle_optimizations_allowed)
+		dc_allow_idle_optimizations(dc, false);
+
 	dc_interrupt_set(adev->dm.dc, irq_source, st);
 	return 0;
 }
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2024-01-24 17:15 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-24 17:09 [PATCH 1/3] drm/amd/display: Disable ips before dc interrupt setting Roman.Li
2024-01-24 17:09 ` [PATCH 2/3] drm/amd: Add a DC debug mask for IPS Roman.Li
2024-01-24 17:15   ` Mario Limonciello
2024-01-24 17:09 ` [PATCH 3/3] drm/amd/display: "Enable IPS by default" Roman.Li
2024-01-24 17:15   ` Mario Limonciello
2024-01-24 17:15 ` [PATCH 1/3] drm/amd/display: Disable ips before dc interrupt setting Mario Limonciello

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox