<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-2022-jp">
</head>
<body>
I can confirm it. I switched back and forth a few times and the custom values persisted until reboot. Thanks Evan!<br>
<br>
Kent<br>
<br>
KENT RUSSELL<br>
Sr. Software Engineer | Linux Compute Kernel<br>
1 Commerce Valley Drive East<br>
Markham, ON L3T 7X6<br>
O +(1) 289-695-2122 | Ext 72122<br>
<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> Quan, Evan<br>
<b>Sent:</b> Monday, April 1, 2019 10:19:33 PM<br>
<b>To:</b> Russell, Kent; amd-gfx@lists.freedesktop.org<br>
<b>Cc:</b> Russell, Kent<br>
<b>Subject:</b> RE: [PATCH 1/2] drm/amdgpu: Allow switching to CUSTOM profile on Vega10 v2</font>
<div> </div>
</div>
<div class="BodyFragment"><font size="2"><span style="font-size:11pt;">
<div class="PlainText">Can you confirm that the save custom profile settings are not lost after resume?<br>
With that confirmed, the patch is Reviewed-by: Evan Quan <evan.quan@amd.com><br>
<br>
> -----Original Message-----<br>
> From: amd-gfx <amd-gfx-bounces@lists.freedesktop.org> On Behalf Of<br>
> Russell, Kent<br>
> Sent: 2019年4月1日 19:27<br>
> To: amd-gfx@lists.freedesktop.org<br>
> Cc: Russell, Kent <Kent.Russell@amd.com><br>
> Subject: [PATCH 1/2] drm/amdgpu: Allow switching to CUSTOM profile on<br>
> Vega10 v2<br>
> <br>
> Don't return an error if the CUSTOM profile is selected, just apply it with the<br>
> values saved to the GPU. But ensure that we zero out the copy stored in<br>
> adev to ensure that a valid profile has been submitted at some point first<br>
> <br>
> v2: Fix comment that wasn't updated from previous patch<br>
> <br>
> Change-Id: Iafa5994e89ce00d3a124285b3435b581ec0e5d3b<br>
> Signed-off-by: Kent Russell <kent.russell@amd.com><br>
> ---<br>
>  .../drm/amd/powerplay/hwmgr/vega10_hwmgr.c    | 23<br>
> ++++++++++++++++++-<br>
>  1 file changed, 22 insertions(+), 1 deletion(-)<br>
> <br>
> diff --git a/drivers/gpu/drm/amd/powerplay/hwmgr/vega10_hwmgr.c<br>
> b/drivers/gpu/drm/amd/powerplay/hwmgr/vega10_hwmgr.c<br>
> index 85a536924571..476a072027a6 100644<br>
> --- a/drivers/gpu/drm/amd/powerplay/hwmgr/vega10_hwmgr.c<br>
> +++ b/drivers/gpu/drm/amd/powerplay/hwmgr/vega10_hwmgr.c<br>
> @@ -1427,6 +1427,15 @@ static int<br>
> vega10_setup_default_dpm_tables(struct pp_hwmgr *hwmgr)<br>
> <br>
>        vega10_setup_default_pcie_table(hwmgr);<br>
> <br>
> +     /* Zero out the saved copy of the CUSTOM profile<br>
> +      * This will be checked when trying to set the profile<br>
> +      * and will require that new values be passed in<br>
> +      */<br>
> +     data->custom_profile_mode[0] = 0;<br>
> +     data->custom_profile_mode[1] = 0;<br>
> +     data->custom_profile_mode[2] = 0;<br>
> +     data->custom_profile_mode[3] = 0;<br>
> +<br>
>        /* save a copy of the default DPM table */<br>
>        memcpy(&(data->golden_dpm_table), &(data->dpm_table),<br>
>                        sizeof(struct vega10_dpm_table));<br>
> @@ -4910,9 +4919,20 @@ static int vega10_set_power_profile_mode(struct<br>
> pp_hwmgr *hwmgr, long *input, ui<br>
>                                                1 << power_profile_mode);<br>
> <br>
>        if (power_profile_mode == PP_SMC_POWER_PROFILE_CUSTOM) {<br>
> -             if (size == 0 || size > 4)<br>
> +             if (size != 0 && size != 4)<br>
>                        return -EINVAL;<br>
> <br>
> +             /* If size = 0 and the CUSTOM profile has been set already<br>
> +              * then just apply the profile. The copy stored in the hwmgr<br>
> +              * is zeroed out on init<br>
> +              */<br>
> +             if (size == 0) {<br>
> +                     if (data->custom_profile_mode[0] != 0)<br>
> +                             goto out;<br>
> +                     else<br>
> +                             return -EINVAL;<br>
> +             }<br>
> +<br>
>                data->custom_profile_mode[0] = busy_set_point = input[0];<br>
>                data->custom_profile_mode[1] = FPS = input[1];<br>
>                data->custom_profile_mode[2] = use_rlc_busy = input[2];<br>
> @@ -4923,6 +4943,7 @@ static int vega10_set_power_profile_mode(struct<br>
> pp_hwmgr *hwmgr, long *input, ui<br>
>                                        use_rlc_busy << 16 |<br>
> min_active_level<<24);<br>
>        }<br>
> <br>
> +out:<br>
>        hwmgr->power_profile_mode = power_profile_mode;<br>
> <br>
>        return 0;<br>
> --<br>
> 2.17.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">https://lists.freedesktop.org/mailman/listinfo/amd-gfx</a><br>
</div>
</span></font></div>
</body>
</html>