]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
drm/radeon: do a posting read in cik_set_irq
authorAlex Deucher <alexander.deucher@amd.com>
Tue, 3 Mar 2015 01:45:24 +0000 (20:45 -0500)
committerLuis Henriques <luis.henriques@canonical.com>
Wed, 18 Mar 2015 15:06:53 +0000 (15:06 +0000)
commit cffefd9bb31cd35ab745d3b49005d10616d25bdc upstream.

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>
Signed-off-by: Luis Henriques <luis.henriques@canonical.com>
drivers/gpu/drm/radeon/cik.c

index f898ed31cffb390108d03fddc438a098e1b232f4..574d1f4ec7e519422ba097f2296ae911c3d93ff6 100644 (file)
@@ -7185,6 +7185,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;
 }