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:
0586915
)
drm/radeon: do a posting read in cik_set_irq
author
Alex Deucher
<alexander.deucher@amd.com>
Tue, 3 Mar 2015 01:45:24 +0000
(20:45 -0500)
committer
Alex Deucher
<alexander.deucher@amd.com>
Tue, 3 Mar 2015 22:28:29 +0000
(17:28 -0500)
To make sure the writes go through the pci bridge.
bug:
https://bugzilla.kernel.org/show_bug.cgi?id=90741
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Cc: stable@vger.kernel.org
drivers/gpu/drm/radeon/cik.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/radeon/cik.c
b/drivers/gpu/drm/radeon/cik.c
index 0c993da9c8fb0503e9658339d10d6b28ac90a66c..3e670d344a2047151e289ab7dce348001ddf4280 100644
(file)
--- a/
drivers/gpu/drm/radeon/cik.c
+++ b/
drivers/gpu/drm/radeon/cik.c
@@
-7555,6
+7555,9
@@
int cik_irq_set(struct radeon_device *rdev)
WREG32(DC_HPD5_INT_CONTROL, hpd5);
WREG32(DC_HPD6_INT_CONTROL, hpd6);
+ /* posting read */
+ RREG32(SRBM_STATUS);
+
return 0;
}