[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <20170313084855.10851-2-u@umangis.me>
Date: Mon, 13 Mar 2017 14:18:55 +0530
From: Umang Raghuvanshi <u@...ngis.me>
To: David Airlie <airlied@...ux.ie>
Cc: Alex Deucher <alexander.deucher@....com>,
Christian König <christian.koenig@....com>,
amd-gfx@...ts.freedesktop.org, dri-devel@...ts.freedesktop.org,
linux-kernel@...r.kernel.org, Umang Raghuvanshi <u@...ngis.me>
Subject: [PATCH 1/1] drm/radeon: Fix GPU lockups for the R7 M270
Commit 3a69adfe5617 ("drm/radeon: drop oland quirks") removed
quirks for Oland but also caused a regression where M270 GPUs
would go into a lock-up when OpenGL intensive applications were used.
This reverts the change only for the M270 and fixes the lock-ups.
Signed-off-by: Umang Raghuvanshi <u@...ngis.me>
---
drivers/gpu/drm/radeon/si_dpm.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/drivers/gpu/drm/radeon/si_dpm.c b/drivers/gpu/drm/radeon/si_dpm.c
index 2944916f7102..e6f1da41f886 100644
--- a/drivers/gpu/drm/radeon/si_dpm.c
+++ b/drivers/gpu/drm/radeon/si_dpm.c
@@ -3008,6 +3008,11 @@ static void si_apply_state_adjust_rules(struct radeon_device *rdev,
(rdev->pdev->device == 0x6817) ||
(rdev->pdev->device == 0x6806))
max_mclk = 120000;
+ } else if (rdev->family == CHIP_OLAND && rdev->pdev->device == 0x6604 &&
+ rdev->pdev->revision == 0) {
+ // Fix max_sclk and max_mclk for the Radeon R7 M270
+ max_sclk = 75000;
+ max_mclk = 80000;
} else if (rdev->family == CHIP_HAINAN) {
if ((rdev->pdev->revision == 0x81) ||
(rdev->pdev->revision == 0x83) ||
--
2.12.0
Powered by blists - more mailing lists