[PATCH] drm/amd/pm: Disable fan control if not supported
Lazar, Lijo
lijo.lazar at amd.com
Thu Mar 17 11:28:12 UTC 2022
On 3/15/2022 7:38 PM, Elena Sakhnovitch wrote:
> On Sienna Cichild, not all platforms use PMFW based fan control. On such
> ASICs fan control by PMFW will be disabled in PPTable. Disable hwmon
> knobs for fan control also as it is not possible to report or control
> fan speed on such platforms through driver.
>
> Signed-off-by: Elena Sakhnovitch <elena.sakhnovitch at amd.com>
> Change-Id: I42f9eb971a61a5ad63327607479fc7e9d9d6914d
> ---
> .../drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c | 15 ++++++++++++++-
> 1 file changed, 14 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c b/drivers/gpu/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c
> index 38f04836c82f..23abb1d1f677 100644
> --- a/drivers/gpu/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c
> +++ b/drivers/gpu/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c
> @@ -371,6 +371,18 @@ static void sienna_cichlid_check_bxco_support(struct smu_context *smu)
> }
> }
>
> +static void sienna_cichlid_check_fan_support(struct smu_context *smu)
> +{
> + struct smu_table_context *table_context = &smu->smu_table;
> + PPTable_t *pptable = table_context->driver_pptable;
> + /* No sort of fan control possible if PPTable has it disabled */
> + smu->adev->pm.no_fan =
> + !(pptable->FeaturesToRun[0] & FEATURE_FAN_CONTROL_MASK);
Nothing like FEATURE_FAN_CONTROL_MASK in smu11_driver_if_sienna_cichlid.h.
Also,
#define FEATURE_FAN_CONTROL_BIT 32
and FeaturesToRun is uint32_t array.
Thanks,
Lijo
> + if (smu->adev->pm.no_fan)
> + dev_info_once(smu->adev->dev,
> + "PMFW based fan control disabled");
> +}
> +
> static int sienna_cichlid_check_powerplay_table(struct smu_context *smu)
> {
> struct smu_table_context *table_context = &smu->smu_table;
> @@ -381,6 +393,7 @@ static int sienna_cichlid_check_powerplay_table(struct smu_context *smu)
> smu->dc_controlled_by_gpio = true;
>
> sienna_cichlid_check_bxco_support(smu);
> + sienna_cichlid_check_fan_support(smu);
>
> table_context->thermal_controller_type =
> powerplay_table->thermal_controller_type;
> @@ -410,7 +423,7 @@ static int sienna_cichlid_append_powerplay_table(struct smu_context *smu)
> GET_PPTABLE_MEMBER(I2cControllers, &table_member);
> memcpy(table_member, smc_dpm_table->I2cControllers,
> sizeof(*smc_dpm_table) - sizeof(smc_dpm_table->table_header));
> -
> +
> return 0;
> }
>
>
More information about the amd-gfx
mailing list