projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e146a7a
)
drm/amdgpu: fix queue reset issue by mmio
author
Jesse Zhang
<jesse.zhang@amd.com>
Wed, 4 Sep 2024 09:47:06 +0000
(17:47 +0800)
committer
Alex Deucher
<alexander.deucher@amd.com>
Fri, 6 Sep 2024 21:54:54 +0000
(17:54 -0400)
Initialize the queue type before resetting the queue using mmio.
Signed-off-by: Jesse Zhang <jesse.zhang@amd.com>
Acked-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu_mes.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/amd/amdgpu/amdgpu_mes.c
b/drivers/gpu/drm/amd/amdgpu/amdgpu_mes.c
index
f7d5d4f
..
10b61ff
100644
(file)
--- a/
drivers/gpu/drm/amd/amdgpu/amdgpu_mes.c
+++ b/
drivers/gpu/drm/amd/amdgpu/amdgpu_mes.c
@@
-832,6
+832,7
@@
int amdgpu_mes_reset_hw_queue_mmio(struct amdgpu_device *adev, int queue_type,
struct mes_reset_queue_input queue_input;
int r;
+ queue_input.queue_type = queue_type;
queue_input.use_mmio = true;
queue_input.me_id = me_id;
queue_input.pipe_id = pipe_id;