All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] modified: gpu/drm/panfrost/panfrost_gpu.c
@ 2021-06-09  6:38 ` ChunyouTang
  0 siblings, 0 replies; 12+ messages in thread
From: ChunyouTang @ 2021-06-09  6:38 UTC (permalink / raw)
  To: robh, tomeu.vizoso, steven.price, alyssa.rosenzweig, airlied, daniel
  Cc: dri-devel, linux-kernel, tangchunyou, tangchunyou

From: tangchunyou <tangchunyou@163.icubecorp.cn>

The GPU exception fault status register(0x3C),the low 8 bit is the
EXCEPTION_TYPE.We can see the description at P3-78 in spec.

Signed-off-by: tangchunyou <tangchunyou@163.icubecorp.cn>
---
 drivers/gpu/drm/panfrost/panfrost_gpu.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/panfrost/panfrost_gpu.c b/drivers/gpu/drm/panfrost/panfrost_gpu.c
index 2aae636f1cf5..1fffb6a0b24f 100644
--- a/drivers/gpu/drm/panfrost/panfrost_gpu.c
+++ b/drivers/gpu/drm/panfrost/panfrost_gpu.c
@@ -33,7 +33,7 @@ static irqreturn_t panfrost_gpu_irq_handler(int irq, void *data)
 		address |= gpu_read(pfdev, GPU_FAULT_ADDRESS_LO);
 
 		dev_warn(pfdev->dev, "GPU Fault 0x%08x (%s) at 0x%016llx\n",
-			 fault_status & 0xFF, panfrost_exception_name(pfdev, fault_status),
+			 fault_status & 0xFF, panfrost_exception_name(pfdev, fault_status & 0xFF),
 			 address);
 
 		if (state & GPU_IRQ_MULTIPLE_FAULT)
-- 
2.25.1


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

end of thread, other threads:[~2021-06-16 11:07 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-09  6:38 [PATCH] modified: gpu/drm/panfrost/panfrost_gpu.c ChunyouTang
2021-06-09  6:38 ` ChunyouTang
2021-06-10 10:41 ` Steven Price
2021-06-10 13:06   ` Chunyou Tang
2021-06-10 13:06     ` Chunyou Tang
2021-06-11 10:10     ` Steven Price
2021-06-11 10:10       ` Steven Price
2021-06-11 10:36       ` Chunyou Tang
2021-06-11 10:36         ` Chunyou Tang
2021-06-15  7:04       ` Chunyou Tang
2021-06-15  7:04         ` Chunyou Tang
2021-06-16 11:07         ` Steven Price

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.