<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<style type="text/css" style="display:none;"><!-- P {margin-top:0;margin-bottom:0;} --></style>
</head>
<body dir="ltr">
<div id="divtagdefaultwrapper" style="font-size:12pt;color:#000000;font-family:Calibri,Helvetica,sans-serif;" dir="ltr">
<p style="margin-top:0;margin-bottom:0">Reviewed-by: Alex Deucher <alexander.deucher@amd.com><br>
</p>
</div>
<hr style="display:inline-block;width:98%" tabindex="-1">
<div id="divRplyFwdMsg" dir="ltr"><font face="Calibri, sans-serif" style="font-size:11pt" color="#000000"><b>From:</b> amd-gfx <amd-gfx-bounces@lists.freedesktop.org> on behalf of Greathouse, Joseph <Joseph.Greathouse@amd.com><br>
<b>Sent:</b> Thursday, October 18, 2018 3:44:39 PM<br>
<b>To:</b> amd-gfx@lists.freedesktop.org<br>
<b>Cc:</b> Greathouse, Joseph<br>
<b>Subject:</b> [PATCH v2] drm/amd/pp: enable power limit increase in OD mode</font>
<div> </div>
</div>
<div class="BodyFragment"><font size="2"><span style="font-size:11pt;">
<div class="PlainText">OverDrive mode allows users to increase the maximum SCLK and MCLK<br>
frequencies beyond the default on the GPU. However, this may not<br>
results in large performance gains if the GPU then runs into its TDP<br>
power limit. This patch adds the capability to increase the power<br>
limit of a GPU above its default maximum.<br>
<br>
This is only allowed when overdrive is enabled in the ppfeaturemask,<br>
since this is an overdrive feature. The TDPODLimit value from the<br>
VBIOS describes how how much higher the TDP should be allowed to go<br>
over its default, in percentage.<br>
<br>
v2: Moved dereference of hwmgr to after its validity check<br>
<br>
Signed-off-by: Joseph Greathouse <Joseph.Greathouse@amd.com><br>
---<br>
 drivers/gpu/drm/amd/powerplay/amd_powerplay.c | 16 ++++++++++++++--<br>
 1 file changed, 14 insertions(+), 2 deletions(-)<br>
<br>
diff --git a/drivers/gpu/drm/amd/powerplay/amd_powerplay.c b/drivers/gpu/drm/amd/powerplay/amd_powerplay.c<br>
index e8964ca..586f1ff 100644<br>
--- a/drivers/gpu/drm/amd/powerplay/amd_powerplay.c<br>
+++ b/drivers/gpu/drm/amd/powerplay/amd_powerplay.c<br>
@@ -963,6 +963,7 @@ static int pp_dpm_switch_power_profile(void *handle,<br>
 static int pp_set_power_limit(void *handle, uint32_t limit)<br>
 {<br>
         struct pp_hwmgr *hwmgr = handle;<br>
+       uint32_t max_power_limit;<br>
 <br>
         if (!hwmgr || !hwmgr->pm_en)<br>
                 return -EINVAL;<br>
@@ -975,7 +976,13 @@ static int pp_set_power_limit(void *handle, uint32_t limit)<br>
         if (limit == 0)<br>
                 limit = hwmgr->default_power_limit;<br>
 <br>
-       if (limit > hwmgr->default_power_limit)<br>
+       max_power_limit = hwmgr->default_power_limit;<br>
+       if (hwmgr->od_enabled) {<br>
+               max_power_limit *= (100 + hwmgr->platform_descriptor.TDPODLimit);<br>
+               max_power_limit /= 100;<br>
+       }<br>
+<br>
+       if (limit > max_power_limit)<br>
                 return -EINVAL;<br>
 <br>
         mutex_lock(&hwmgr->smu_lock);<br>
@@ -994,8 +1001,13 @@ static int pp_get_power_limit(void *handle, uint32_t *limit, bool default_limit)<br>
 <br>
         mutex_lock(&hwmgr->smu_lock);<br>
 <br>
-       if (default_limit)<br>
+       if (default_limit) {<br>
                 *limit = hwmgr->default_power_limit;<br>
+               if (hwmgr->od_enabled) {<br>
+                       *limit *= (100 + hwmgr->platform_descriptor.TDPODLimit);<br>
+                       *limit /= 100;<br>
+               }<br>
+       }<br>
         else<br>
                 *limit = hwmgr->power_limit;<br>
 <br>
-- <br>
2.7.4<br>
<br>
_______________________________________________<br>
amd-gfx mailing list<br>
amd-gfx@lists.freedesktop.org<br>
<a href="https://lists.freedesktop.org/mailman/listinfo/amd-gfx">https://lists.freedesktop.org/mailman/listinfo/amd-gfx</a><br>
</div>
</span></font></div>
</body>
</html>