amd-gfx.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] drm/amd/powerplay: avoid DPM reenable process on Navi1x ASICs
@ 2019-11-11  9:25 Evan Quan
  2019-11-11  9:25 ` Evan Quan
       [not found] ` <20191111092506.18913-1-evan.quan-5C7GfCeVMHo@public.gmane.org>
  0 siblings, 2 replies; 8+ messages in thread
From: Evan Quan @ 2019-11-11  9:25 UTC (permalink / raw)
  To: amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW; +Cc: Evan Quan

Otherwise, without RLC reinitialization, the DPM reenablement
will fail. That affects the custom pptable uploading.

Change-Id: I6fe2ed5ce23f2a5b66f371c0b6d1f924837e5af6
Signed-off-by: Evan Quan <evan.quan@amd.com>
---
 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c    | 32 +++++++++++++++----
 .../gpu/drm/amd/powerplay/inc/amdgpu_smu.h    |  1 +
 2 files changed, 26 insertions(+), 7 deletions(-)

diff --git a/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c b/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c
index 76a4154b3be2..a4d67b30fd72 100644
--- a/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c
+++ b/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c
@@ -1293,10 +1293,25 @@ static int smu_hw_fini(void *handle)
 		return ret;
 	}
 
-	ret = smu_stop_dpms(smu);
-	if (ret) {
-		pr_warn("Fail to stop Dpms!\n");
-		return ret;
+	/*
+	 * For custom pptable uploading, skip the DPM features
+	 * disable process on Navi1x ASICs.
+	 *   - As the gfx related features are under control of
+	 *     RLC on those ASICs. RLC reinitialization will be
+	 *     needed to reenable them. That will cost much more
+	 *     efforts.
+	 *
+	 *   - SMU firmware can handle the DPM reenablement
+	 *     properly.
+	 */
+	if (!smu->uploading_custom_pp_table ||
+	    !((adev->asic_type >= CHIP_NAVI10) &&
+	      (adev->asic_type <= CHIP_NAVI12))) {
+		ret = smu_stop_dpms(smu);
+		if (ret) {
+			pr_warn("Fail to stop Dpms!\n");
+			return ret;
+		}
 	}
 
 	kfree(table_context->driver_pptable);
@@ -1324,13 +1339,16 @@ int smu_reset(struct smu_context *smu)
 	struct amdgpu_device *adev = smu->adev;
 	int ret = 0;
 
+	smu->uploading_custom_pp_table = true;
+
 	ret = smu_hw_fini(adev);
 	if (ret)
-		return ret;
+		goto out;
 
 	ret = smu_hw_init(adev);
-	if (ret)
-		return ret;
+
+out:
+	smu->uploading_custom_pp_table = false;
 
 	return ret;
 }
diff --git a/drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h b/drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h
index 8120e7587585..215841f5fb93 100644
--- a/drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h
+++ b/drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h
@@ -391,6 +391,7 @@ struct smu_context
 
 	uint32_t smc_if_version;
 
+	bool uploading_custom_pp_table;
 };
 
 struct i2c_adapter;
-- 
2.24.0

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH] drm/amd/powerplay: avoid DPM reenable process on Navi1x ASICs
  2019-11-11  9:25 [PATCH] drm/amd/powerplay: avoid DPM reenable process on Navi1x ASICs Evan Quan
@ 2019-11-11  9:25 ` Evan Quan
       [not found] ` <20191111092506.18913-1-evan.quan-5C7GfCeVMHo@public.gmane.org>
  1 sibling, 0 replies; 8+ messages in thread
From: Evan Quan @ 2019-11-11  9:25 UTC (permalink / raw)
  To: amd-gfx; +Cc: Evan Quan

Otherwise, without RLC reinitialization, the DPM reenablement
will fail. That affects the custom pptable uploading.

Change-Id: I6fe2ed5ce23f2a5b66f371c0b6d1f924837e5af6
Signed-off-by: Evan Quan <evan.quan@amd.com>
---
 drivers/gpu/drm/amd/powerplay/amdgpu_smu.c    | 32 +++++++++++++++----
 .../gpu/drm/amd/powerplay/inc/amdgpu_smu.h    |  1 +
 2 files changed, 26 insertions(+), 7 deletions(-)

diff --git a/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c b/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c
index 76a4154b3be2..a4d67b30fd72 100644
--- a/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c
+++ b/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c
@@ -1293,10 +1293,25 @@ static int smu_hw_fini(void *handle)
 		return ret;
 	}
 
-	ret = smu_stop_dpms(smu);
-	if (ret) {
-		pr_warn("Fail to stop Dpms!\n");
-		return ret;
+	/*
+	 * For custom pptable uploading, skip the DPM features
+	 * disable process on Navi1x ASICs.
+	 *   - As the gfx related features are under control of
+	 *     RLC on those ASICs. RLC reinitialization will be
+	 *     needed to reenable them. That will cost much more
+	 *     efforts.
+	 *
+	 *   - SMU firmware can handle the DPM reenablement
+	 *     properly.
+	 */
+	if (!smu->uploading_custom_pp_table ||
+	    !((adev->asic_type >= CHIP_NAVI10) &&
+	      (adev->asic_type <= CHIP_NAVI12))) {
+		ret = smu_stop_dpms(smu);
+		if (ret) {
+			pr_warn("Fail to stop Dpms!\n");
+			return ret;
+		}
 	}
 
 	kfree(table_context->driver_pptable);
@@ -1324,13 +1339,16 @@ int smu_reset(struct smu_context *smu)
 	struct amdgpu_device *adev = smu->adev;
 	int ret = 0;
 
+	smu->uploading_custom_pp_table = true;
+
 	ret = smu_hw_fini(adev);
 	if (ret)
-		return ret;
+		goto out;
 
 	ret = smu_hw_init(adev);
-	if (ret)
-		return ret;
+
+out:
+	smu->uploading_custom_pp_table = false;
 
 	return ret;
 }
diff --git a/drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h b/drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h
index 8120e7587585..215841f5fb93 100644
--- a/drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h
+++ b/drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h
@@ -391,6 +391,7 @@ struct smu_context
 
 	uint32_t smc_if_version;
 
+	bool uploading_custom_pp_table;
 };
 
 struct i2c_adapter;
-- 
2.24.0

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH] drm/amd/powerplay: avoid DPM reenable process on Navi1x ASICs
       [not found] ` <20191111092506.18913-1-evan.quan-5C7GfCeVMHo@public.gmane.org>
@ 2019-11-11 17:33   ` Alex Deucher
  2019-11-11 17:33     ` Alex Deucher
       [not found]     ` <CADnq5_OhXnzYx6EgMM87dh1jgUi6Br86Axwi_KfvLjXuO2+gxw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  2019-11-11 23:35   ` Matt Coffin
  1 sibling, 2 replies; 8+ messages in thread
From: Alex Deucher @ 2019-11-11 17:33 UTC (permalink / raw)
  To: Evan Quan; +Cc: amd-gfx list

On Mon, Nov 11, 2019 at 4:25 AM Evan Quan <evan.quan@amd.com> wrote:
>
> Otherwise, without RLC reinitialization, the DPM reenablement
> will fail. That affects the custom pptable uploading.
>
> Change-Id: I6fe2ed5ce23f2a5b66f371c0b6d1f924837e5af6
> Signed-off-by: Evan Quan <evan.quan@amd.com>
> ---
>  drivers/gpu/drm/amd/powerplay/amdgpu_smu.c    | 32 +++++++++++++++----
>  .../gpu/drm/amd/powerplay/inc/amdgpu_smu.h    |  1 +
>  2 files changed, 26 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c b/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c
> index 76a4154b3be2..a4d67b30fd72 100644
> --- a/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c
> +++ b/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c
> @@ -1293,10 +1293,25 @@ static int smu_hw_fini(void *handle)
>                 return ret;
>         }
>
> -       ret = smu_stop_dpms(smu);
> -       if (ret) {
> -               pr_warn("Fail to stop Dpms!\n");
> -               return ret;
> +       /*
> +        * For custom pptable uploading, skip the DPM features
> +        * disable process on Navi1x ASICs.
> +        *   - As the gfx related features are under control of
> +        *     RLC on those ASICs. RLC reinitialization will be
> +        *     needed to reenable them. That will cost much more
> +        *     efforts.
> +        *
> +        *   - SMU firmware can handle the DPM reenablement
> +        *     properly.
> +        */
> +       if (!smu->uploading_custom_pp_table ||
> +           !((adev->asic_type >= CHIP_NAVI10) &&
> +             (adev->asic_type <= CHIP_NAVI12))) {
> +               ret = smu_stop_dpms(smu);
> +               if (ret) {
> +                       pr_warn("Fail to stop Dpms!\n");
> +                       return ret;
> +               }
>         }
>
>         kfree(table_context->driver_pptable);
> @@ -1324,13 +1339,16 @@ int smu_reset(struct smu_context *smu)
>         struct amdgpu_device *adev = smu->adev;
>         int ret = 0;
>
> +       smu->uploading_custom_pp_table = true;
> +

Do we need to differentiate between reloading for a pptable update and
reloading for a gpu reset or suspend/resume or is that already
handled?
Shouldn't we be setting/clearing uploading_custom_pp_table in
smu_sys_set_pp_table() around the call to smu_reset()?

Alex

>         ret = smu_hw_fini(adev);
>         if (ret)
> -               return ret;
> +               goto out;
>
>         ret = smu_hw_init(adev);
> -       if (ret)
> -               return ret;
> +
> +out:
> +       smu->uploading_custom_pp_table = false;
>
>         return ret;
>  }
> diff --git a/drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h b/drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h
> index 8120e7587585..215841f5fb93 100644
> --- a/drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h
> +++ b/drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h
> @@ -391,6 +391,7 @@ struct smu_context
>
>         uint32_t smc_if_version;
>
> +       bool uploading_custom_pp_table;
>  };
>
>  struct i2c_adapter;
> --
> 2.24.0
>
> _______________________________________________
> amd-gfx mailing list
> amd-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/amd-gfx
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] drm/amd/powerplay: avoid DPM reenable process on Navi1x ASICs
  2019-11-11 17:33   ` Alex Deucher
@ 2019-11-11 17:33     ` Alex Deucher
       [not found]     ` <CADnq5_OhXnzYx6EgMM87dh1jgUi6Br86Axwi_KfvLjXuO2+gxw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  1 sibling, 0 replies; 8+ messages in thread
From: Alex Deucher @ 2019-11-11 17:33 UTC (permalink / raw)
  To: Evan Quan; +Cc: amd-gfx list

On Mon, Nov 11, 2019 at 4:25 AM Evan Quan <evan.quan@amd.com> wrote:
>
> Otherwise, without RLC reinitialization, the DPM reenablement
> will fail. That affects the custom pptable uploading.
>
> Change-Id: I6fe2ed5ce23f2a5b66f371c0b6d1f924837e5af6
> Signed-off-by: Evan Quan <evan.quan@amd.com>
> ---
>  drivers/gpu/drm/amd/powerplay/amdgpu_smu.c    | 32 +++++++++++++++----
>  .../gpu/drm/amd/powerplay/inc/amdgpu_smu.h    |  1 +
>  2 files changed, 26 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c b/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c
> index 76a4154b3be2..a4d67b30fd72 100644
> --- a/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c
> +++ b/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c
> @@ -1293,10 +1293,25 @@ static int smu_hw_fini(void *handle)
>                 return ret;
>         }
>
> -       ret = smu_stop_dpms(smu);
> -       if (ret) {
> -               pr_warn("Fail to stop Dpms!\n");
> -               return ret;
> +       /*
> +        * For custom pptable uploading, skip the DPM features
> +        * disable process on Navi1x ASICs.
> +        *   - As the gfx related features are under control of
> +        *     RLC on those ASICs. RLC reinitialization will be
> +        *     needed to reenable them. That will cost much more
> +        *     efforts.
> +        *
> +        *   - SMU firmware can handle the DPM reenablement
> +        *     properly.
> +        */
> +       if (!smu->uploading_custom_pp_table ||
> +           !((adev->asic_type >= CHIP_NAVI10) &&
> +             (adev->asic_type <= CHIP_NAVI12))) {
> +               ret = smu_stop_dpms(smu);
> +               if (ret) {
> +                       pr_warn("Fail to stop Dpms!\n");
> +                       return ret;
> +               }
>         }
>
>         kfree(table_context->driver_pptable);
> @@ -1324,13 +1339,16 @@ int smu_reset(struct smu_context *smu)
>         struct amdgpu_device *adev = smu->adev;
>         int ret = 0;
>
> +       smu->uploading_custom_pp_table = true;
> +

Do we need to differentiate between reloading for a pptable update and
reloading for a gpu reset or suspend/resume or is that already
handled?
Shouldn't we be setting/clearing uploading_custom_pp_table in
smu_sys_set_pp_table() around the call to smu_reset()?

Alex

>         ret = smu_hw_fini(adev);
>         if (ret)
> -               return ret;
> +               goto out;
>
>         ret = smu_hw_init(adev);
> -       if (ret)
> -               return ret;
> +
> +out:
> +       smu->uploading_custom_pp_table = false;
>
>         return ret;
>  }
> diff --git a/drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h b/drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h
> index 8120e7587585..215841f5fb93 100644
> --- a/drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h
> +++ b/drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h
> @@ -391,6 +391,7 @@ struct smu_context
>
>         uint32_t smc_if_version;
>
> +       bool uploading_custom_pp_table;
>  };
>
>  struct i2c_adapter;
> --
> 2.24.0
>
> _______________________________________________
> amd-gfx mailing list
> amd-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/amd-gfx
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] drm/amd/powerplay: avoid DPM reenable process on Navi1x ASICs
       [not found] ` <20191111092506.18913-1-evan.quan-5C7GfCeVMHo@public.gmane.org>
  2019-11-11 17:33   ` Alex Deucher
@ 2019-11-11 23:35   ` Matt Coffin
  2019-11-11 23:35     ` Matt Coffin
  1 sibling, 1 reply; 8+ messages in thread
From: Matt Coffin @ 2019-11-11 23:35 UTC (permalink / raw)
  To: Evan Quan, amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW

Patch is Tested-by: Matt Coffin <mcoffin13@gmail.com>

On 11/11/19 2:25 AM, Evan Quan wrote:
> Otherwise, without RLC reinitialization, the DPM reenablement
> will fail. That affects the custom pptable uploading.
> 
> Change-Id: I6fe2ed5ce23f2a5b66f371c0b6d1f924837e5af6
> Signed-off-by: Evan Quan <evan.quan@amd.com>
> ---
>  drivers/gpu/drm/amd/powerplay/amdgpu_smu.c    | 32 +++++++++++++++----
>  .../gpu/drm/amd/powerplay/inc/amdgpu_smu.h    |  1 +
>  2 files changed, 26 insertions(+), 7 deletions(-)
> 
> diff --git a/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c b/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c
> index 76a4154b3be2..a4d67b30fd72 100644
> --- a/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c
> +++ b/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c
> @@ -1293,10 +1293,25 @@ static int smu_hw_fini(void *handle)
>  		return ret;
>  	}
>  
> -	ret = smu_stop_dpms(smu);
> -	if (ret) {
> -		pr_warn("Fail to stop Dpms!\n");
> -		return ret;
> +	/*
> +	 * For custom pptable uploading, skip the DPM features
> +	 * disable process on Navi1x ASICs.
> +	 *   - As the gfx related features are under control of
> +	 *     RLC on those ASICs. RLC reinitialization will be
> +	 *     needed to reenable them. That will cost much more
> +	 *     efforts.
> +	 *
> +	 *   - SMU firmware can handle the DPM reenablement
> +	 *     properly.
> +	 */
> +	if (!smu->uploading_custom_pp_table ||
> +	    !((adev->asic_type >= CHIP_NAVI10) &&
> +	      (adev->asic_type <= CHIP_NAVI12))) {
> +		ret = smu_stop_dpms(smu);
> +		if (ret) {
> +			pr_warn("Fail to stop Dpms!\n");
> +			return ret;
> +		}
>  	}
>  
>  	kfree(table_context->driver_pptable);
> @@ -1324,13 +1339,16 @@ int smu_reset(struct smu_context *smu)
>  	struct amdgpu_device *adev = smu->adev;
>  	int ret = 0;
>  
> +	smu->uploading_custom_pp_table = true;
> +
>  	ret = smu_hw_fini(adev);
>  	if (ret)
> -		return ret;
> +		goto out;
>  
>  	ret = smu_hw_init(adev);
> -	if (ret)
> -		return ret;
> +
> +out:
> +	smu->uploading_custom_pp_table = false;
>  
>  	return ret;
>  }
> diff --git a/drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h b/drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h
> index 8120e7587585..215841f5fb93 100644
> --- a/drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h
> +++ b/drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h
> @@ -391,6 +391,7 @@ struct smu_context
>  
>  	uint32_t smc_if_version;
>  
> +	bool uploading_custom_pp_table;
>  };
>  
>  struct i2c_adapter;
> 
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] drm/amd/powerplay: avoid DPM reenable process on Navi1x ASICs
  2019-11-11 23:35   ` Matt Coffin
@ 2019-11-11 23:35     ` Matt Coffin
  0 siblings, 0 replies; 8+ messages in thread
From: Matt Coffin @ 2019-11-11 23:35 UTC (permalink / raw)
  To: Evan Quan, amd-gfx

Patch is Tested-by: Matt Coffin <mcoffin13@gmail.com>

On 11/11/19 2:25 AM, Evan Quan wrote:
> Otherwise, without RLC reinitialization, the DPM reenablement
> will fail. That affects the custom pptable uploading.
> 
> Change-Id: I6fe2ed5ce23f2a5b66f371c0b6d1f924837e5af6
> Signed-off-by: Evan Quan <evan.quan@amd.com>
> ---
>  drivers/gpu/drm/amd/powerplay/amdgpu_smu.c    | 32 +++++++++++++++----
>  .../gpu/drm/amd/powerplay/inc/amdgpu_smu.h    |  1 +
>  2 files changed, 26 insertions(+), 7 deletions(-)
> 
> diff --git a/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c b/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c
> index 76a4154b3be2..a4d67b30fd72 100644
> --- a/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c
> +++ b/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c
> @@ -1293,10 +1293,25 @@ static int smu_hw_fini(void *handle)
>  		return ret;
>  	}
>  
> -	ret = smu_stop_dpms(smu);
> -	if (ret) {
> -		pr_warn("Fail to stop Dpms!\n");
> -		return ret;
> +	/*
> +	 * For custom pptable uploading, skip the DPM features
> +	 * disable process on Navi1x ASICs.
> +	 *   - As the gfx related features are under control of
> +	 *     RLC on those ASICs. RLC reinitialization will be
> +	 *     needed to reenable them. That will cost much more
> +	 *     efforts.
> +	 *
> +	 *   - SMU firmware can handle the DPM reenablement
> +	 *     properly.
> +	 */
> +	if (!smu->uploading_custom_pp_table ||
> +	    !((adev->asic_type >= CHIP_NAVI10) &&
> +	      (adev->asic_type <= CHIP_NAVI12))) {
> +		ret = smu_stop_dpms(smu);
> +		if (ret) {
> +			pr_warn("Fail to stop Dpms!\n");
> +			return ret;
> +		}
>  	}
>  
>  	kfree(table_context->driver_pptable);
> @@ -1324,13 +1339,16 @@ int smu_reset(struct smu_context *smu)
>  	struct amdgpu_device *adev = smu->adev;
>  	int ret = 0;
>  
> +	smu->uploading_custom_pp_table = true;
> +
>  	ret = smu_hw_fini(adev);
>  	if (ret)
> -		return ret;
> +		goto out;
>  
>  	ret = smu_hw_init(adev);
> -	if (ret)
> -		return ret;
> +
> +out:
> +	smu->uploading_custom_pp_table = false;
>  
>  	return ret;
>  }
> diff --git a/drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h b/drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h
> index 8120e7587585..215841f5fb93 100644
> --- a/drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h
> +++ b/drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h
> @@ -391,6 +391,7 @@ struct smu_context
>  
>  	uint32_t smc_if_version;
>  
> +	bool uploading_custom_pp_table;
>  };
>  
>  struct i2c_adapter;
> 
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

^ permalink raw reply	[flat|nested] 8+ messages in thread

* RE: [PATCH] drm/amd/powerplay: avoid DPM reenable process on Navi1x ASICs
       [not found]     ` <CADnq5_OhXnzYx6EgMM87dh1jgUi6Br86Axwi_KfvLjXuO2+gxw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2019-11-12  1:33       ` Quan, Evan
  2019-11-12  1:33         ` Quan, Evan
  0 siblings, 1 reply; 8+ messages in thread
From: Quan, Evan @ 2019-11-12  1:33 UTC (permalink / raw)
  To: Alex Deucher; +Cc: amd-gfx list



> -----Original Message-----
> From: Alex Deucher <alexdeucher@gmail.com>
> Sent: Tuesday, November 12, 2019 1:34 AM
> To: Quan, Evan <Evan.Quan@amd.com>
> Cc: amd-gfx list <amd-gfx@lists.freedesktop.org>
> Subject: Re: [PATCH] drm/amd/powerplay: avoid DPM reenable process on
> Navi1x ASICs
> 
> On Mon, Nov 11, 2019 at 4:25 AM Evan Quan <evan.quan@amd.com> wrote:
> >
> > Otherwise, without RLC reinitialization, the DPM reenablement will
> > fail. That affects the custom pptable uploading.
> >
> > Change-Id: I6fe2ed5ce23f2a5b66f371c0b6d1f924837e5af6
> > Signed-off-by: Evan Quan <evan.quan@amd.com>
> > ---
> >  drivers/gpu/drm/amd/powerplay/amdgpu_smu.c    | 32 +++++++++++++++--
> --
> >  .../gpu/drm/amd/powerplay/inc/amdgpu_smu.h    |  1 +
> >  2 files changed, 26 insertions(+), 7 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c
> > b/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c
> > index 76a4154b3be2..a4d67b30fd72 100644
> > --- a/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c
> > +++ b/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c
> > @@ -1293,10 +1293,25 @@ static int smu_hw_fini(void *handle)
> >                 return ret;
> >         }
> >
> > -       ret = smu_stop_dpms(smu);
> > -       if (ret) {
> > -               pr_warn("Fail to stop Dpms!\n");
> > -               return ret;
> > +       /*
> > +        * For custom pptable uploading, skip the DPM features
> > +        * disable process on Navi1x ASICs.
> > +        *   - As the gfx related features are under control of
> > +        *     RLC on those ASICs. RLC reinitialization will be
> > +        *     needed to reenable them. That will cost much more
> > +        *     efforts.
> > +        *
> > +        *   - SMU firmware can handle the DPM reenablement
> > +        *     properly.
> > +        */
> > +       if (!smu->uploading_custom_pp_table ||
> > +           !((adev->asic_type >= CHIP_NAVI10) &&
> > +             (adev->asic_type <= CHIP_NAVI12))) {
> > +               ret = smu_stop_dpms(smu);
> > +               if (ret) {
> > +                       pr_warn("Fail to stop Dpms!\n");
> > +                       return ret;
> > +               }
> >         }
> >
> >         kfree(table_context->driver_pptable);
> > @@ -1324,13 +1339,16 @@ int smu_reset(struct smu_context *smu)
> >         struct amdgpu_device *adev = smu->adev;
> >         int ret = 0;
> >
> > +       smu->uploading_custom_pp_table = true;
> > +
> 
> Do we need to differentiate between reloading for a pptable update and
> reloading for a gpu reset or suspend/resume or is that already handled?
[Quan, Evan] That was considered(and as I verified suspend/resume was fine).  For gpu reset or suspend/resume, the rlc/gfx will be reinitialized.
So, under those cases, it's OK to perform the dpms disablement.
> Shouldn't we be setting/clearing uploading_custom_pp_table in
> smu_sys_set_pp_table() around the call to smu_reset()?
[Quan, Evan] That's a good point. Will update this in V2.
> 
> Alex
> 
> >         ret = smu_hw_fini(adev);
> >         if (ret)
> > -               return ret;
> > +               goto out;
> >
> >         ret = smu_hw_init(adev);
> > -       if (ret)
> > -               return ret;
> > +
> > +out:
> > +       smu->uploading_custom_pp_table = false;
> >
> >         return ret;
> >  }
> > diff --git a/drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h
> > b/drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h
> > index 8120e7587585..215841f5fb93 100644
> > --- a/drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h
> > +++ b/drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h
> > @@ -391,6 +391,7 @@ struct smu_context
> >
> >         uint32_t smc_if_version;
> >
> > +       bool uploading_custom_pp_table;
> >  };
> >
> >  struct i2c_adapter;
> > --
> > 2.24.0
> >
> > _______________________________________________
> > amd-gfx mailing list
> > amd-gfx@lists.freedesktop.org
> > https://lists.freedesktop.org/mailman/listinfo/amd-gfx
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

^ permalink raw reply	[flat|nested] 8+ messages in thread

* RE: [PATCH] drm/amd/powerplay: avoid DPM reenable process on Navi1x ASICs
  2019-11-12  1:33       ` Quan, Evan
@ 2019-11-12  1:33         ` Quan, Evan
  0 siblings, 0 replies; 8+ messages in thread
From: Quan, Evan @ 2019-11-12  1:33 UTC (permalink / raw)
  To: Alex Deucher; +Cc: amd-gfx list



> -----Original Message-----
> From: Alex Deucher <alexdeucher@gmail.com>
> Sent: Tuesday, November 12, 2019 1:34 AM
> To: Quan, Evan <Evan.Quan@amd.com>
> Cc: amd-gfx list <amd-gfx@lists.freedesktop.org>
> Subject: Re: [PATCH] drm/amd/powerplay: avoid DPM reenable process on
> Navi1x ASICs
> 
> On Mon, Nov 11, 2019 at 4:25 AM Evan Quan <evan.quan@amd.com> wrote:
> >
> > Otherwise, without RLC reinitialization, the DPM reenablement will
> > fail. That affects the custom pptable uploading.
> >
> > Change-Id: I6fe2ed5ce23f2a5b66f371c0b6d1f924837e5af6
> > Signed-off-by: Evan Quan <evan.quan@amd.com>
> > ---
> >  drivers/gpu/drm/amd/powerplay/amdgpu_smu.c    | 32 +++++++++++++++--
> --
> >  .../gpu/drm/amd/powerplay/inc/amdgpu_smu.h    |  1 +
> >  2 files changed, 26 insertions(+), 7 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c
> > b/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c
> > index 76a4154b3be2..a4d67b30fd72 100644
> > --- a/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c
> > +++ b/drivers/gpu/drm/amd/powerplay/amdgpu_smu.c
> > @@ -1293,10 +1293,25 @@ static int smu_hw_fini(void *handle)
> >                 return ret;
> >         }
> >
> > -       ret = smu_stop_dpms(smu);
> > -       if (ret) {
> > -               pr_warn("Fail to stop Dpms!\n");
> > -               return ret;
> > +       /*
> > +        * For custom pptable uploading, skip the DPM features
> > +        * disable process on Navi1x ASICs.
> > +        *   - As the gfx related features are under control of
> > +        *     RLC on those ASICs. RLC reinitialization will be
> > +        *     needed to reenable them. That will cost much more
> > +        *     efforts.
> > +        *
> > +        *   - SMU firmware can handle the DPM reenablement
> > +        *     properly.
> > +        */
> > +       if (!smu->uploading_custom_pp_table ||
> > +           !((adev->asic_type >= CHIP_NAVI10) &&
> > +             (adev->asic_type <= CHIP_NAVI12))) {
> > +               ret = smu_stop_dpms(smu);
> > +               if (ret) {
> > +                       pr_warn("Fail to stop Dpms!\n");
> > +                       return ret;
> > +               }
> >         }
> >
> >         kfree(table_context->driver_pptable);
> > @@ -1324,13 +1339,16 @@ int smu_reset(struct smu_context *smu)
> >         struct amdgpu_device *adev = smu->adev;
> >         int ret = 0;
> >
> > +       smu->uploading_custom_pp_table = true;
> > +
> 
> Do we need to differentiate between reloading for a pptable update and
> reloading for a gpu reset or suspend/resume or is that already handled?
[Quan, Evan] That was considered(and as I verified suspend/resume was fine).  For gpu reset or suspend/resume, the rlc/gfx will be reinitialized.
So, under those cases, it's OK to perform the dpms disablement.
> Shouldn't we be setting/clearing uploading_custom_pp_table in
> smu_sys_set_pp_table() around the call to smu_reset()?
[Quan, Evan] That's a good point. Will update this in V2.
> 
> Alex
> 
> >         ret = smu_hw_fini(adev);
> >         if (ret)
> > -               return ret;
> > +               goto out;
> >
> >         ret = smu_hw_init(adev);
> > -       if (ret)
> > -               return ret;
> > +
> > +out:
> > +       smu->uploading_custom_pp_table = false;
> >
> >         return ret;
> >  }
> > diff --git a/drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h
> > b/drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h
> > index 8120e7587585..215841f5fb93 100644
> > --- a/drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h
> > +++ b/drivers/gpu/drm/amd/powerplay/inc/amdgpu_smu.h
> > @@ -391,6 +391,7 @@ struct smu_context
> >
> >         uint32_t smc_if_version;
> >
> > +       bool uploading_custom_pp_table;
> >  };
> >
> >  struct i2c_adapter;
> > --
> > 2.24.0
> >
> > _______________________________________________
> > amd-gfx mailing list
> > amd-gfx@lists.freedesktop.org
> > https://lists.freedesktop.org/mailman/listinfo/amd-gfx
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2019-11-12  1:33 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-11  9:25 [PATCH] drm/amd/powerplay: avoid DPM reenable process on Navi1x ASICs Evan Quan
2019-11-11  9:25 ` Evan Quan
     [not found] ` <20191111092506.18913-1-evan.quan-5C7GfCeVMHo@public.gmane.org>
2019-11-11 17:33   ` Alex Deucher
2019-11-11 17:33     ` Alex Deucher
     [not found]     ` <CADnq5_OhXnzYx6EgMM87dh1jgUi6Br86Axwi_KfvLjXuO2+gxw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2019-11-12  1:33       ` Quan, Evan
2019-11-12  1:33         ` Quan, Evan
2019-11-11 23:35   ` Matt Coffin
2019-11-11 23:35     ` Matt Coffin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).