Skip to content

Commit 3a6d59d

Browse files
committed
drm/radeon: Add MSI quirk for gateway RS690
Fixes another system on: 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 61051af commit 3a6d59d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

drivers/gpu/drm/radeon/radeon_irq_kms.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,12 @@ static bool radeon_msi_ok(struct radeon_device *rdev)
202202
(rdev->pdev->subsystem_device == 0x01fd))
203203
return true;
204204

205+
/* Gateway RS690 only seems to work with MSIs. */
206+
if ((rdev->pdev->device == 0x791f) &&
207+
(rdev->pdev->subsystem_vendor == 0x107b) &&
208+
(rdev->pdev->subsystem_device == 0x0185))
209+
return true;
210+
205211
/* RV515 seems to have MSI issues where it loses
206212
* MSI rearms occasionally. This leads to lockups and freezes.
207213
* disable it by default.

0 commit comments

Comments
 (0)