Skip to content

Commit 117262a

Browse files
alexdeuchergregkh
authored andcommitted
drm/radeon: force MSIs on RS690 asics
commit fb6ca6d upstream. There are so many quirks, lets just try and force this for all RS690s. See: https://bugs.freedesktop.org/show_bug.cgi?id=37679 Signed-off-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent de6e195 commit 117262a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

drivers/gpu/drm/radeon/radeon_irq_kms.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,10 @@ static bool radeon_msi_ok(struct radeon_device *rdev)
210210
(rdev->pdev->subsystem_device == 0x0185))
211211
return true;
212212

213+
/* try and enable MSIs by default on all RS690s */
214+
if (rdev->family == CHIP_RS690)
215+
return true;
216+
213217
/* RV515 seems to have MSI issues where it loses
214218
* MSI rearms occasionally. This leads to lockups and freezes.
215219
* disable it by default.

0 commit comments

Comments
 (0)