mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-07-26 05:48:04 +00:00
aefc6c8c3c
The psp tree added a patch to limit the beaglebone to 500MHz when powered by USB, which triggered conflicts in the patches. The 3.2.16 series has been rediffed as well, no functional changes. Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
38 lines
1.3 KiB
Diff
38 lines
1.3 KiB
Diff
From 4c47e0570154691338fd2e670109120a8e99184c Mon Sep 17 00:00:00 2001
|
|
From: Dave Airlie <airlied@redhat.com>
|
|
Date: Fri, 13 Apr 2012 11:14:50 +0100
|
|
Subject: [PATCH 66/68] drm/radeon: disable MSI on RV515
|
|
|
|
commit 16a5e32b83fd946312b9b13590c75d20c95c5202 upstream.
|
|
|
|
My rv515 card is very flaky with msi enabled. Every so often it loses a rearm
|
|
and never comes back, manually banging the rearm brings it back.
|
|
|
|
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
|
|
Signed-off-by: Dave Airlie <airlied@redhat.com>
|
|
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
|
|
---
|
|
drivers/gpu/drm/radeon/radeon_irq_kms.c | 6 ++++++
|
|
1 file changed, 6 insertions(+)
|
|
|
|
diff --git a/drivers/gpu/drm/radeon/radeon_irq_kms.c b/drivers/gpu/drm/radeon/radeon_irq_kms.c
|
|
index e7ddb49..baa019e 100644
|
|
--- a/drivers/gpu/drm/radeon/radeon_irq_kms.c
|
|
+++ b/drivers/gpu/drm/radeon/radeon_irq_kms.c
|
|
@@ -143,6 +143,12 @@ static bool radeon_msi_ok(struct radeon_device *rdev)
|
|
(rdev->pdev->subsystem_device == 0x01fd))
|
|
return true;
|
|
|
|
+ /* RV515 seems to have MSI issues where it loses
|
|
+ * MSI rearms occasionally. This leads to lockups and freezes.
|
|
+ * disable it by default.
|
|
+ */
|
|
+ if (rdev->family == CHIP_RV515)
|
|
+ return false;
|
|
if (rdev->flags & RADEON_IS_IGP) {
|
|
/* APUs work fine with MSIs */
|
|
if (rdev->family >= CHIP_PALM)
|
|
--
|
|
1.7.10
|
|
|