All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] panfrost: Make sure GPU is powered on when reading GPU_LATEST_FLUSH_ID
@ 2020-06-11  8:58 ` Tomeu Vizoso
  0 siblings, 0 replies; 20+ messages in thread
From: Tomeu Vizoso @ 2020-06-11  8:58 UTC (permalink / raw)
  To: LKML
  Cc: Tomeu Vizoso, Rob Herring, Steven Price, Alyssa Rosenzweig,
	David Airlie, Daniel Vetter, dri-devel

Bifrost devices do support the flush reduction feature, so on first job
submit we were trying to read the register while still powered off.

If the GPU is powered off, the feature doesn't bring any benefit, so
don't try to read.

Signed-off-by: Tomeu Vizoso <tomeu.vizoso@collabora.com>
---
 drivers/gpu/drm/panfrost/panfrost_gpu.c | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/panfrost/panfrost_gpu.c b/drivers/gpu/drm/panfrost/panfrost_gpu.c
index f2c1ddc41a9b..e0f190e43813 100644
--- a/drivers/gpu/drm/panfrost/panfrost_gpu.c
+++ b/drivers/gpu/drm/panfrost/panfrost_gpu.c
@@ -10,6 +10,7 @@
 #include <linux/io.h>
 #include <linux/iopoll.h>
 #include <linux/platform_device.h>
+#include <linux/pm_runtime.h>
 
 #include "panfrost_device.h"
 #include "panfrost_features.h"
@@ -368,7 +369,16 @@ void panfrost_gpu_fini(struct panfrost_device *pfdev)
 
 u32 panfrost_gpu_get_latest_flush_id(struct panfrost_device *pfdev)
 {
-	if (panfrost_has_hw_feature(pfdev, HW_FEATURE_FLUSH_REDUCTION))
-		return gpu_read(pfdev, GPU_LATEST_FLUSH_ID);
+	u32 flush_id;
+
+	if (panfrost_has_hw_feature(pfdev, HW_FEATURE_FLUSH_REDUCTION)) {
+		/* Flush reduction only makes sense when the GPU is kept powered on between jobs */
+		if (pm_runtime_get_if_in_use(pfdev->dev)) {
+			flush_id = gpu_read(pfdev, GPU_LATEST_FLUSH_ID);
+			pm_runtime_put(pfdev->dev);
+			return flush_id;
+		}
+	}
+
 	return 0;
 }
-- 
2.21.0


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

end of thread, other threads:[~2020-10-05  7:07 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-11  8:58 [PATCH 1/2] panfrost: Make sure GPU is powered on when reading GPU_LATEST_FLUSH_ID Tomeu Vizoso
2020-06-11  8:58 ` Tomeu Vizoso
2020-06-11  8:58 ` [PATCH 2/2] panfrost: Add compatible string for bifrost Tomeu Vizoso
2020-06-11  8:58   ` Tomeu Vizoso
2020-06-11  9:07   ` Heiko Stuebner
2020-06-11  9:07     ` Heiko Stuebner
2020-06-19  9:00   ` Steven Price
2020-06-19  9:00     ` Steven Price
2020-10-05  6:44     ` Tomeu Vizoso
2020-10-05  6:44       ` Tomeu Vizoso
2020-10-05  7:06       ` Tomeu Vizoso
2020-10-05  7:06         ` Tomeu Vizoso
2020-06-11  9:05 ` [PATCH 1/2] panfrost: Make sure GPU is powered on when reading GPU_LATEST_FLUSH_ID Heiko Stuebner
2020-06-11  9:05   ` Heiko Stuebner
2020-06-11 14:11 ` Alyssa Rosenzweig
2020-06-11 14:11   ` Alyssa Rosenzweig
2020-06-19  8:52 ` Steven Price
2020-06-19  8:52   ` Steven Price
2020-08-07 19:47 ` Rob Herring
2020-08-07 19:47   ` Rob Herring

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.