public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1] drm/panfrost: Sync IRQ by job's timeout handler
@ 2023-07-17  6:52 Dmitry Osipenko
  2023-07-17  7:05 ` Boris Brezillon
  0 siblings, 1 reply; 8+ messages in thread
From: Dmitry Osipenko @ 2023-07-17  6:52 UTC (permalink / raw)
  To: Rob Herring, Steven Price, Boris Brezillon
  Cc: dri-devel, linux-kernel, kernel

Panfrost IRQ handler may stuck for a long time, for example this happens
when there is a bad HDMI connection and HDMI handler takes a long time to
finish processing, holding Panfrost. Make Panfrost's job timeout handler
to sync IRQ before checking fence signal status in order to prevent
spurious job timeouts due to a slow IRQ processing.

Signed-off-by: Dmitry Osipenko <dmitry.osipenko@collabora.com>
---
 drivers/gpu/drm/panfrost/panfrost_job.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/gpu/drm/panfrost/panfrost_job.c b/drivers/gpu/drm/panfrost/panfrost_job.c
index dbc597ab46fb..a356163da22d 100644
--- a/drivers/gpu/drm/panfrost/panfrost_job.c
+++ b/drivers/gpu/drm/panfrost/panfrost_job.c
@@ -713,6 +713,8 @@ static enum drm_gpu_sched_stat panfrost_job_timedout(struct drm_sched_job
 	struct panfrost_device *pfdev = job->pfdev;
 	int js = panfrost_job_get_slot(job);
 
+	synchronize_irq(pfdev->js->irq);
+
 	/*
 	 * If the GPU managed to complete this jobs fence, the timeout is
 	 * spurious. Bail out.
-- 
2.41.0


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

end of thread, other threads:[~2023-07-17 13:31 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-17  6:52 [PATCH v1] drm/panfrost: Sync IRQ by job's timeout handler Dmitry Osipenko
2023-07-17  7:05 ` Boris Brezillon
2023-07-17  7:20   ` Dmitry Osipenko
2023-07-17  7:49     ` Boris Brezillon
2023-07-17  8:06       ` Steven Price
2023-07-17  8:49         ` Boris Brezillon
2023-07-17  8:59           ` Steven Price
2023-07-17 13:30             ` Dmitry Osipenko

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