Skip to content

Commit de6e195

Browse files
alexdeuchergregkh
authored andcommitted
drm/radeon: Add MSI quirk for gateway RS690
commit 3a6d59d upstream. Fixes another system on: 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 4b9a37d commit de6e195

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
@@ -204,6 +204,12 @@ static bool radeon_msi_ok(struct radeon_device *rdev)
204204
(rdev->pdev->subsystem_device == 0x01fd))
205205
return true;
206206

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

0 commit comments

Comments
 (0)