<html><body>
<p>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.</p>
<h3>Signed-off-by: Umang Raghuvanshi <u@umangis.me></h3>
<pre>drivers/gpu/drm/radeon/si_dpm.c | 5 +++++
1 file changed, 5 insertions(+)</pre>
<p>diff --git a/drivers/gpu/drm/radeon/si_dpm.c b/drivers/gpu/drm/radeon/si_dpm.c index 2944916f7102..fc2f998bdbf0 100644 --- a/drivers/gpu/drm/radeon/si_dpm.c +++ b/drivers/gpu/drm/radeon/si_dpm.c @@ -3017,6 +3017,11 @@ static void si_apply_state_adjust_rules(struct radeon_device *rdev,</p>
<pre>    (rdev->pdev->device == 0x6667)) {
        max_sclk = 75000;
}</pre>
<p>+      } else if (rdev->family == CHIP_OLAND && rdev->pdev->device == 0×6604 && +                  rdev->pdev->revision == 0) { +         // Fix max_sclk and max_mclk for the Radeon R7 M270 +           max_sclk = 75000; +             max_mclk = 80000;</p>
<pre>}
/* Apply dpm quirks */
while (p && p->chip_device != 0) {</pre>
<p>— 2.12.0</p>

<img src="https://u4914032.ct.sendgrid.net/wf/open?upn=1a0lYcMslTFWRcWxgaM8pPVwfK5u7RfHgZ8Wg3TVP1epet2cVApSDTDbHtyQf74xAWi2Za5KqYolA7fbZCmkVHSlcxcf14XR7oH4M83ATs-2F1uLRM6nLxuq-2B0R4dx7guoBiLn7U6S7WgQ5A9i5La8RstoqwqM2HZPhAsdaiQbEmHbb9qqzYQJRX8EWOjSL-2BlZ6-2BA3Lftno0qU6KsdPRKfXFhLwPlQor-2BPSpa-2F-2FQSroOs-3D" alt="" width="1" height="1" border="0" style="height:1px !important;width:1px !important;border-width:0 !important;margin-top:0 !important;margin-bottom:0 !important;margin-right:0 !important;margin-left:0 !important;padding-top:0 !important;padding-bottom:0 !important;padding-right:0 !important;padding-left:0 !important;"/>
</body></html>