]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
drm/radeon: force MSIs on RS690 asics
authorAlex Deucher <alexander.deucher@amd.com>
Wed, 26 Sep 2012 16:40:45 +0000 (12:40 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 12 Oct 2012 20:50:29 +0000 (05:50 +0900)
commit fb6ca6d154cdcd53e7f27f8dbba513830372699b 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>
drivers/gpu/drm/radeon/radeon_irq_kms.c

index f4878b39ec9b94f1e6d6eea7c26ff70c8c65651c..443bd490615cc7a83d9c35bbe0e0e97ce051c0af 100644 (file)
@@ -210,6 +210,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.