aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid HERNANDEZ SANCHEZ <david.hernandezsanchez@st.com>2018-12-06 08:23:32 -0500
committerEduardo Valentin <edubezval@gmail.com>2018-12-10 23:15:21 -0500
commit3c9d082064b5ec5876f7e20bc50959d1915c5ab0 (patch)
treed0c67dc0653a81429435cb722ab8785d90cf7961
parent7d3a2a2bbadb4bf5856ed394ba09b8fbb7a80460 (diff)
thermal: stm32: read factory settings inside stm_thermal_prepare
Calling stm_thermal_read_factory_settings before clocking internal peripheral causes bad register values and makes temperature computation wrong. Calling stm_thermal_read_factory_settings inside stm_thermal_prepare fixes this problem as internal peripheral is well clocked at this stage. Fixes: 1d693155 ("thermal: add stm32 thermal driver") Reviewed-by: Daniel Lezcano <daniel.lezcano@linaro.org> Signed-off-by: David Hernandez Sanchez <david.hernandezsanchez@st.com> Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
-rw-r--r--drivers/thermal/st/stm_thermal.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/thermal/st/stm_thermal.c b/drivers/thermal/st/stm_thermal.c
index 47623da0f91b..daa1257809a6 100644
--- a/drivers/thermal/st/stm_thermal.c
+++ b/drivers/thermal/st/stm_thermal.c
@@ -532,6 +532,10 @@ static int stm_thermal_prepare(struct stm_thermal_sensor *sensor)
532 if (ret) 532 if (ret)
533 return ret; 533 return ret;
534 534
535 ret = stm_thermal_read_factory_settings(sensor);
536 if (ret)
537 goto thermal_unprepare;
538
535 ret = stm_thermal_calibration(sensor); 539 ret = stm_thermal_calibration(sensor);
536 if (ret) 540 if (ret)
537 goto thermal_unprepare; 541 goto thermal_unprepare;
@@ -636,10 +640,6 @@ static int stm_thermal_probe(struct platform_device *pdev)
636 /* Populate sensor */ 640 /* Populate sensor */
637 sensor->base = base; 641 sensor->base = base;
638 642
639 ret = stm_thermal_read_factory_settings(sensor);
640 if (ret)
641 return ret;
642
643 sensor->clk = devm_clk_get(&pdev->dev, "pclk"); 643 sensor->clk = devm_clk_get(&pdev->dev, "pclk");
644 if (IS_ERR(sensor->clk)) { 644 if (IS_ERR(sensor->clk)) {
645 dev_err(&pdev->dev, "%s: failed to fetch PCLK clock\n", 645 dev_err(&pdev->dev, "%s: failed to fetch PCLK clock\n",