Skip to content

Commit

Permalink
drm/radeon: force MSIs on RS690 asics
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Alex Deucher committed Sep 27, 2012
1 parent 3a6d59d commit fb6ca6d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions drivers/gpu/drm/radeon/radeon_irq_kms.c
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,10 @@ static bool radeon_msi_ok(struct radeon_device *rdev)
(rdev->pdev->subsystem_device == 0x0185))
return true;

/* try and enable MSIs by default on all RS690s */
if (rdev->family == CHIP_RS690)
return true;

/* RV515 seems to have MSI issues where it loses
* MSI rearms occasionally. This leads to lockups and freezes.
* disable it by default.
Expand Down

0 comments on commit fb6ca6d

Please sign in to comment.