<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<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">One problem,</p>
<p style="margin-top:0;margin-bottom:0"><br>
</p>
<p style="margin-top:0;margin-bottom:0">I delay 500ms to enable gfx off feature. <br>
</p>
<p style="margin-top:0;margin-bottom:0"><br>
</p>
<p style="margin-top:0;margin-bottom:0">Any concern about the delay time?</p>
<p style="margin-top:0;margin-bottom:0"><br>
</p>
<p style="margin-top:0;margin-bottom:0">Best Regards</p>
<p style="margin-top:0;margin-bottom:0">Rex<br>
</p>
<br>
<div style="color: rgb(0, 0, 0);">
<hr style="display:inline-block;width:98%" tabindex="-1">
<div id="divRplyFwdMsg" dir="ltr"><font style="font-size:11pt" color="#000000" face="Calibri, sans-serif"><b>From:</b> amd-gfx <amd-gfx-bounces@lists.freedesktop.org> on behalf of Rex Zhu <Rex.Zhu@amd.com><br>
<b>Sent:</b> Monday, July 30, 2018 5:23 PM<br>
<b>To:</b> amd-gfx@lists.freedesktop.org<br>
<b>Cc:</b> Zhu, Rex<br>
<b>Subject:</b> [PATCH v2 2/4] drm/amdgpu: Put enable gfx off feature to a delay thread</font>
<div> </div>
</div>
<div class="BodyFragment"><font size="2"><span style="font-size:11pt;">
<div class="PlainText">delay to enable gfx off feature to avoid gfx on/off frequently<br>
suggested by Alex and Evan.<br>
<br>
Signed-off-by: Rex Zhu <Rex.Zhu@amd.com><br>
---<br>
 drivers/gpu/drm/amd/amdgpu/amdgpu.h        |  2 ++<br>
 drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 15 +++++++++++++++<br>
 drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c    |  8 ++++++--<br>
 3 files changed, 23 insertions(+), 2 deletions(-)<br>
<br>
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu.h b/drivers/gpu/drm/amd/amdgpu/amdgpu.h<br>
index 188bc53..ff16689 100644<br>
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu.h<br>
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu.h<br>
@@ -992,6 +992,8 @@ struct amdgpu_gfx {<br>
         bool                            gfx_off_state; /* true: enabled, false: disabled */<br>
         struct mutex                    gfx_off_mutex;<br>
         uint32_t                        gfx_off_req_count; /* default 1, enable gfx off: dec 1, disable gfx off: add 1 */<br>
+       struct delayed_work             gfx_off_delay_work;<br>
+<br>
         /* pipe reservation */<br>
         struct mutex                    pipe_reserve_mutex;<br>
         DECLARE_BITMAP                  (pipe_reserve_bitmap, AMDGPU_MAX_COMPUTE_QUEUES);<br>
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c<br>
index 122653f..f6a6fb5 100644<br>
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c<br>
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c<br>
@@ -1925,6 +1925,19 @@ static void amdgpu_device_ip_late_init_func_handler(struct work_struct *work)<br>
                 DRM_ERROR("ib ring test failed (%d).\n", r);<br>
 }<br>
 <br>
+static void amdgpu_device_delay_enable_gfx_off(struct work_struct *work)<br>
+{<br>
+       struct amdgpu_device *adev =<br>
+               container_of(work, struct amdgpu_device, gfx.gfx_off_delay_work.work);<br>
+<br>
+       mutex_lock(&adev->gfx.gfx_off_mutex);<br>
+       if (!adev->gfx.gfx_off_state && !adev->gfx.gfx_off_req_count) {<br>
+               if (!amdgpu_dpm_set_powergating_by_smu(adev, AMD_IP_BLOCK_TYPE_GFX, true))<br>
+                       adev->gfx.gfx_off_state = true;<br>
+       }<br>
+       mutex_unlock(&adev->gfx.gfx_off_mutex);<br>
+}<br>
+<br>
 /**<br>
  * amdgpu_device_ip_suspend_phase1 - run suspend for hardware IPs (phase 1)<br>
  *<br>
@@ -2394,6 +2407,8 @@ int amdgpu_device_init(struct amdgpu_device *adev,<br>
 <br>
         INIT_DELAYED_WORK(&adev->late_init_work,<br>
                           amdgpu_device_ip_late_init_func_handler);<br>
+       INIT_DELAYED_WORK(&adev->gfx.gfx_off_delay_work,<br>
+                         amdgpu_device_delay_enable_gfx_off);<br>
 <br>
         adev->gfx.gfx_off_req_count = 1;<br>
         adev->pm.ac_power = power_supply_is_system_supplied() > 0 ? true : false;<br>
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c<br>
index 1cdb264..11d4d9f 100644<br>
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c<br>
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c<br>
@@ -26,6 +26,9 @@<br>
 #include "amdgpu.h"<br>
 #include "amdgpu_gfx.h"<br>
 <br>
+/* 0.5 second timeout */<br>
+#define GFX_OFF_DELAY_ENABLE         msecs_to_jiffies(500)<br>
+<br>
 /*<br>
  * GPU scratch registers helpers function.<br>
  */<br>
@@ -360,6 +363,7 @@ void amdgpu_gfx_off_ctrl(struct amdgpu_device *adev, bool enable)<br>
         if (!adev->powerplay.pp_funcs->set_powergating_by_smu)<br>
                 return;<br>
 <br>
+<br>
         mutex_lock(&adev->gfx.gfx_off_mutex);<br>
 <br>
         if (!enable)<br>
@@ -368,11 +372,11 @@ void amdgpu_gfx_off_ctrl(struct amdgpu_device *adev, bool enable)<br>
                 adev->gfx.gfx_off_req_count--;<br>
 <br>
         if (enable && !adev->gfx.gfx_off_state && !adev->gfx.gfx_off_req_count) {<br>
-               if (!amdgpu_dpm_set_powergating_by_smu(adev, AMD_IP_BLOCK_TYPE_GFX, true))<br>
-                       adev->gfx.gfx_off_state = true;<br>
+               schedule_delayed_work(&adev->gfx.gfx_off_delay_work, GFX_OFF_DELAY_ENABLE);<br>
         } else if (!enable && adev->gfx.gfx_off_state) {<br>
                 if (!amdgpu_dpm_set_powergating_by_smu(adev, AMD_IP_BLOCK_TYPE_GFX, false))<br>
                         adev->gfx.gfx_off_state = false;<br>
         }<br>
+<br>
         mutex_unlock(&adev->gfx.gfx_off_mutex);<br>
 }<br>
-- <br>
1.9.1<br>
<br>
_______________________________________________<br>
amd-gfx mailing list<br>
amd-gfx@lists.freedesktop.org<br>
<a href="https://lists.freedesktop.org/mailman/listinfo/amd-gfx" id="LPlnk310070" class="OWAAutoLink" previewremoved="true">https://lists.freedesktop.org/mailman/listinfo/amd-gfx</a>
<div id="LPBorder_GT_15329462020160.38730110100591353" style="margin-bottom: 20px; overflow: auto; width: 100%; text-indent: 0px;">
<table id="LPContainer_15329462019920.183265909738499" style="width: 90%; background-color: rgb(255, 255, 255); position: relative; overflow: auto; padding-top: 20px; padding-bottom: 20px; margin-top: 20px; border-top: 1px dotted rgb(200, 200, 200); border-bottom: 1px dotted rgb(200, 200, 200);" role="presentation" cellspacing="0">
<tbody>
<tr style="border-spacing: 0px;" valign="top">
<td id="TextCell_15329462020140.9481943918689965" style="vertical-align: top; position: relative; padding: 0px; display: table-cell;" colspan="2">
<div id="LPRemovePreviewContainer_15329462020140.8867630008369246"></div>
<div id="LPTitle_15329462020140.9927739848518842" style="top: 0px; color: rgb(0, 120, 215); font-weight: 400; font-size: 21px; font-family: "wf_segoe-ui_light", "Segoe UI Light", "Segoe WP Light", "Segoe UI", "Segoe WP", Tahoma, Arial, sans-serif; line-height: 21px;">
<a id="LPUrlAnchor_15329462020140.8930778402849151" style="text-decoration: none;" href="https://lists.freedesktop.org/mailman/listinfo/amd-gfx" target="_blank">amd-gfx Info Page - freedesktop.org</a></div>
<div id="LPMetadata_15329462020140.5491656576271345" style="margin: 10px 0px 16px; color: rgb(102, 102, 102); font-weight: 400; font-family: "wf_segoe-ui_normal", "Segoe UI", "Segoe WP", Tahoma, Arial, sans-serif; font-size: 14px; line-height: 14px;">
lists.freedesktop.org</div>
<div id="LPDescription_15329462020160.11393197229432894" style="display: block; color: rgb(102, 102, 102); font-weight: 400; font-family: "wf_segoe-ui_normal", "Segoe UI", "Segoe WP", Tahoma, Arial, sans-serif; font-size: 14px; line-height: 20px; max-height: 100px; overflow: hidden;">
Subscribing to amd-gfx: Subscribe to amd-gfx by filling out the following form. Use of all freedesktop.org lists is subject to our Code of Conduct.</div>
</td>
</tr>
</tbody>
</table>
</div>
<br>
</div>
</span></font></div>
</div>
</div>
</body>
</html>