summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/radeon/r600.c
diff options
context:
space:
mode:
authorLyude <lyude@redhat.com>2017-05-11 19:31:12 -0400
committerAlex Deucher <alexander.deucher@amd.com>2017-05-24 16:46:43 -0400
commit3d18e33735a02b1a90aecf14410bf3edbfd4d3dc (patch)
tree8643949b4a47a45677b854d33b3a07a9bf42f6f4 /drivers/gpu/drm/radeon/r600.c
parent2275a3a2fe9914ba6d76c8ea490da3c08342bd19 (diff)
downloadlinux-stable-3d18e33735a02b1a90aecf14410bf3edbfd4d3dc.tar.gz
linux-stable-3d18e33735a02b1a90aecf14410bf3edbfd4d3dc.tar.bz2
linux-stable-3d18e33735a02b1a90aecf14410bf3edbfd4d3dc.zip
drm/radeon: Unbreak HPD handling for r600+
We end up reading the interrupt register for HPD5, and then writing it to HPD6 which on systems without anything using HPD5 results in permanently disabling hotplug on one of the display outputs after the first time we acknowledge a hotplug interrupt from the GPU. This code is really bad. But for now, let's just fix this. I will hopefully have a large patch series to refactor all of this soon. Reviewed-by: Christian König <christian.koenig@amd.com> Signed-off-by: Lyude <lyude@redhat.com> Cc: stable@vger.kernel.org Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/radeon/r600.c')
-rw-r--r--drivers/gpu/drm/radeon/r600.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/radeon/r600.c b/drivers/gpu/drm/radeon/r600.c
index 0a085176e79b..e06e2d8feab3 100644
--- a/drivers/gpu/drm/radeon/r600.c
+++ b/drivers/gpu/drm/radeon/r600.c
@@ -3988,7 +3988,7 @@ static void r600_irq_ack(struct radeon_device *rdev)
WREG32(DC_HPD5_INT_CONTROL, tmp);
}
if (rdev->irq.stat_regs.r600.disp_int_cont2 & DC_HPD6_INTERRUPT) {
- tmp = RREG32(DC_HPD5_INT_CONTROL);
+ tmp = RREG32(DC_HPD6_INT_CONTROL);
tmp |= DC_HPDx_INT_ACK;
WREG32(DC_HPD6_INT_CONTROL, tmp);
}