<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">
<p style="font-family:Arial;font-size:10pt;color:#0000FF;margin:5pt;" align="Left">
[AMD Official Use Only]<br>
</p>
<br>
<div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
Well, that handles the case of the GPU needing to be reset on driver (e.g., virtualization), but doesn't handle the interrupted suspend case (e.g., when suspend is unwound before the power rail was turned off).  We already so something similar for hibernate
 to deal with the multiple freeze and thaw cycles.</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<br>
</div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
Alex<br>
</div>
<div id="appendonsend"></div>
<div style="font-family:Calibri,Arial,Helvetica,sans-serif; font-size:12pt; color:rgb(0,0,0)">
<br>
</div>
<hr tabindex="-1" style="display:inline-block; width:98%">
<div id="divRplyFwdMsg" dir="ltr"><font style="font-size:11pt" face="Calibri, sans-serif" color="#000000"><b>From:</b> Christian König <ckoenig.leichtzumerken@gmail.com><br>
<b>Sent:</b> Monday, November 15, 2021 8:41 AM<br>
<b>To:</b> Alex Deucher <alexdeucher@gmail.com>; Deucher, Alexander <Alexander.Deucher@amd.com><br>
<b>Cc:</b> amd-gfx list <amd-gfx@lists.freedesktop.org><br>
<b>Subject:</b> Re: [PATCH] drm/amdgpu: always reset the asic in suspend</font>
<div> </div>
</div>
<div class="BodyFragment"><font size="2"><span style="font-size:11pt">
<div class="PlainText">I was just about to write up my concern as well.<br>
<br>
IIRC we used to have that and it didn't really worked that well and we <br>
switched to resetting the GPU on driver load instead if initializing it <br>
doesn't work of hand.<br>
<br>
Christian.<br>
<br>
Am 12.11.21 um 17:19 schrieb Alex Deucher:<br>
> Actually, ignore this for now.  This will likely cause problems with S0ix.<br>
><br>
> Alex<br>
><br>
> On Fri, Nov 12, 2021 at 11:18 AM Alex Deucher <alexander.deucher@amd.com> wrote:<br>
>> If the platform suspend happens to fail and the power rail<br>
>> is not turned off, the GPU will be in an unknown state on<br>
>> resume, so reset the asic so that it will be in a known<br>
>> good state on resume even if the platform suspend failed.<br>
>><br>
>> Signed-off-by: Alex Deucher <alexander.deucher@amd.com><br>
>> ---<br>
>>   drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c | 5 +++--<br>
>>   1 file changed, 3 insertions(+), 2 deletions(-)<br>
>><br>
>> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c<br>
>> index 1db76429a673..42af3d88e0ba 100644<br>
>> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c<br>
>> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c<br>
>> @@ -2165,8 +2165,9 @@ static int amdgpu_pmops_suspend(struct device *dev)<br>
>>          adev->in_s3 = true;<br>
>>          r = amdgpu_device_suspend(drm_dev, true);<br>
>>          adev->in_s3 = false;<br>
>> -<br>
>> -       return r;<br>
>> +       if (r)<br>
>> +               return r;<br>
>> +       return amdgpu_asic_reset(adev);<br>
>>   }<br>
>><br>
>>   static int amdgpu_pmops_resume(struct device *dev)<br>
>> --<br>
>> 2.31.1<br>
>><br>
<br>
</div>
</span></font></div>
</div>
</body>
</html>