Skip to content

Commit fb6ca6d

Browse files
committed
drm/radeon: force MSIs on RS690 asics
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> Cc: stable@vger.kernel.org
1 parent 3a6d59d commit fb6ca6d

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
@@ -208,6 +208,10 @@ static bool radeon_msi_ok(struct radeon_device *rdev)
208208
(rdev->pdev->subsystem_device == 0x0185))
209209
return true;
210210

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

0 commit comments

Comments
 (0)