linux-pm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3] thermal: exynos: fix masking value for exynos7 temp_error
       [not found] ` <CGME20220401002131epcas2p320f8513a9bd1413af0ace6c20f2caba6@epcms2p6>
@ 2022-04-01  0:27   ` Sang Min Kim
  2022-04-14  7:42     ` Daniel Lezcano
  0 siblings, 1 reply; 2+ messages in thread
From: Sang Min Kim @ 2022-04-01  0:27 UTC (permalink / raw)
  To: bzolnier, krzk, rafael, daniel.lezcano, amitk, rui.zhang,
	ALIM AKHTAR, edubezval
  Cc: linux-pm, linux-samsung-soc, linux-arm-kernel, linux-kernel

Modify mask value for the temp_error in the sanitize_temp_error() function.
 
sanitize_temp_error masks temp_error2 with EXYNOS_TMU_TEMP_MASK(0xff) value
even in the case of EXYNOS7. In addition, when entering the if statement,
both temp_error1 and 2 are masked with EXYNOS_TMU_TEMP_MASK(0xff).
By modifying to use the previously declared local variable tmu_temp_mask,
the mask value suitable for the SOC can be applied.
 
Fixes: aef27b658b43 ("thermal: exynos: use sanitize_temp_error() in exynos7_tmu_initialize()")
Signed-off-by: sangmin kim <hypmean.kim@samsung.com>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 V2 -> V3: Modify the location of fixes tag and add reviewed tag
 V1 -> V2: Add fixes tag
 
 drivers/thermal/samsung/exynos_tmu.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 
diff --git a/drivers/thermal/samsung/exynos_tmu.c b/drivers/thermal/samsung/exynos_tmu.c
index f4ab4c5b4b62..08c63fe5566e 100644
--- a/drivers/thermal/samsung/exynos_tmu.c
+++ b/drivers/thermal/samsung/exynos_tmu.c
@@ -243,17 +243,17 @@ static void sanitize_temp_error(struct exynos_tmu_data *data, u32 trim_info)
 
         data->temp_error1 = trim_info & tmu_temp_mask;
         data->temp_error2 = ((trim_info >> EXYNOS_TRIMINFO_85_SHIFT) &
-                                EXYNOS_TMU_TEMP_MASK);
+                                tmu_temp_mask);
 
         if (!data->temp_error1 ||
             (data->min_efuse_value > data->temp_error1) ||
             (data->temp_error1 > data->max_efuse_value))
-                data->temp_error1 = data->efuse_value & EXYNOS_TMU_TEMP_MASK;
+                data->temp_error1 = data->efuse_value & tmu_temp_mask;
 
         if (!data->temp_error2)
                 data->temp_error2 =
                         (data->efuse_value >> EXYNOS_TRIMINFO_85_SHIFT) &
-                        EXYNOS_TMU_TEMP_MASK;
+                        tmu_temp_mask;
 }
 
 static int exynos_tmu_initialize(struct platform_device *pdev)
--
2.9.5
 
 

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

* Re: [PATCH v3] thermal: exynos: fix masking value for exynos7 temp_error
  2022-04-01  0:27   ` [PATCH v3] thermal: exynos: fix masking value for exynos7 temp_error Sang Min Kim
@ 2022-04-14  7:42     ` Daniel Lezcano
  0 siblings, 0 replies; 2+ messages in thread
From: Daniel Lezcano @ 2022-04-14  7:42 UTC (permalink / raw)
  To: hypmean.kim, bzolnier, krzk, rafael, amitk, rui.zhang,
	ALIM AKHTAR, edubezval
  Cc: linux-pm, linux-samsung-soc, linux-arm-kernel, linux-kernel


Hi,

I'm unable to apply your patch, whatever the method:

git b4 20220401002753epcms2p6cd5882f4909247461434f42e933591af@epcms2p6

Applying: thermal: exynos: fix masking value for exynos7 temp_error
error: unrecognized input
Patch failed at 0001 thermal: exynos: fix masking value for exynos7 
temp_error
hint: Use 'git am --show-current-patch' to see the failed patch
When you have resolved this problem, run "git am --continue".
If you prefer to skip this patch, run "git am --skip" instead.
To restore the original branch and stop patching, run "git am --abort".



On 01/04/2022 02:27, Sang Min Kim wrote:
> Modify mask value for the temp_error in the sanitize_temp_error() function.
>   
> sanitize_temp_error masks temp_error2 with EXYNOS_TMU_TEMP_MASK(0xff) value
> even in the case of EXYNOS7. In addition, when entering the if statement,
> both temp_error1 and 2 are masked with EXYNOS_TMU_TEMP_MASK(0xff).
> By modifying to use the previously declared local variable tmu_temp_mask,
> the mask value suitable for the SOC can be applied.
>   
> Fixes: aef27b658b43 ("thermal: exynos: use sanitize_temp_error() in exynos7_tmu_initialize()")
> Signed-off-by: sangmin kim <hypmean.kim@samsung.com>
> Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
>   V2 -> V3: Modify the location of fixes tag and add reviewed tag
>   V1 -> V2: Add fixes tag
>   
>   drivers/thermal/samsung/exynos_tmu.c | 6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
>   
> diff --git a/drivers/thermal/samsung/exynos_tmu.c b/drivers/thermal/samsung/exynos_tmu.c
> index f4ab4c5b4b62..08c63fe5566e 100644
> --- a/drivers/thermal/samsung/exynos_tmu.c
> +++ b/drivers/thermal/samsung/exynos_tmu.c
> @@ -243,17 +243,17 @@ static void sanitize_temp_error(struct exynos_tmu_data *data, u32 trim_info)
>   
>           data->temp_error1 = trim_info & tmu_temp_mask;
>           data->temp_error2 = ((trim_info >> EXYNOS_TRIMINFO_85_SHIFT) &
> -                                EXYNOS_TMU_TEMP_MASK);
> +                                tmu_temp_mask);
>   
>           if (!data->temp_error1 ||
>               (data->min_efuse_value > data->temp_error1) ||
>               (data->temp_error1 > data->max_efuse_value))
> -                data->temp_error1 = data->efuse_value & EXYNOS_TMU_TEMP_MASK;
> +                data->temp_error1 = data->efuse_value & tmu_temp_mask;
>   
>           if (!data->temp_error2)
>                   data->temp_error2 =
>                           (data->efuse_value >> EXYNOS_TRIMINFO_85_SHIFT) &
> -                        EXYNOS_TMU_TEMP_MASK;
> +                        tmu_temp_mask;
>   }
>   
>   static int exynos_tmu_initialize(struct platform_device *pdev)
> --
> 2.9.5
>   
>   


-- 
<http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs

Follow Linaro:  <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog

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

end of thread, other threads:[~2022-04-14  7:44 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20220401002153.62648-1-hypmean.kim@samsung.com>
     [not found] ` <CGME20220401002131epcas2p320f8513a9bd1413af0ace6c20f2caba6@epcms2p6>
2022-04-01  0:27   ` [PATCH v3] thermal: exynos: fix masking value for exynos7 temp_error Sang Min Kim
2022-04-14  7:42     ` Daniel Lezcano

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).