projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5efcc76
)
drm/radeon: init lockup timeout on ring init
author
Christian König
<
[email protected]
>
Mon, 20 Aug 2012 13:38:47 +0000
(15:38 +0200)
committer
Alex Deucher
<
[email protected]
>
Mon, 20 Aug 2012 15:09:48 +0000
(11:09 -0400)
Reset the lockup timeout on ring (re-)initialisation.
Otherwise we get error messages like this on gpu resets:
[ 1559.949177] radeon 0000:01:00.0: GPU lockup CP stall for more than 1482270msec
Signed-off-by: Christian König <
[email protected]
>
cc:
[email protected]
Reviewed-by: Michel Dänzer <
[email protected]
>
drivers/gpu/drm/radeon/radeon_ring.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/radeon/radeon_ring.c
b/drivers/gpu/drm/radeon/radeon_ring.c
index ec79b37504306f2709036bebe6949f7afc2a90cf..43c431a2686db86428059593dc3f853d87688d9c 100644
(file)
--- a/
drivers/gpu/drm/radeon/radeon_ring.c
+++ b/
drivers/gpu/drm/radeon/radeon_ring.c
@@
-706,6
+706,7
@@
int radeon_ring_init(struct radeon_device *rdev, struct radeon_ring *ring, unsig
if (radeon_debugfs_ring_init(rdev, ring)) {
DRM_ERROR("Failed to register debugfs file for rings !\n");
}
+ radeon_ring_lockup_update(ring);
return 0;
}