Message ID | 20161212141805.14946-6-niklas.soderlund@ragnatech.se (mailing list archive) |
---|---|
State | Changes Requested |
Delegated to: | Eduardo Valentin |
Headers | show |
On Mon, Dec 12, 2016 at 03:18:05PM +0100, Niklas Söderlund wrote: > From: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se> > > The .thermal_init needs to be delayed a short amount of time after > setting REG_GEN3_CTSR to allow for the TEMP register to contain > something useful. If it's not delayed theses warnings are common during > boot: > > thermal thermal_zone0: failed to read out thermal zone (-5) > thermal thermal_zone1: failed to read out thermal zone (-5) > thermal thermal_zone2: failed to read out thermal zone (-5) > > The warnings are triggered by the first call to .get_temp while the TEMP > register contains 0 and rcar_gen3_thermal_get_temp() returns -EIO since > a TEMP value of 0 will result in a temperature reading which is out of > specifications. I think this one can be folded on patch 2/5. -- To unsubscribe from this list: send the line "unsubscribe linux-pm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On 2016-12-12 19:31:26 -0800, Eduardo Valentin wrote: > On Mon, Dec 12, 2016 at 03:18:05PM +0100, Niklas Söderlund wrote: > > From: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se> > > > > The .thermal_init needs to be delayed a short amount of time after > > setting REG_GEN3_CTSR to allow for the TEMP register to contain > > something useful. If it's not delayed theses warnings are common during > > boot: > > > > thermal thermal_zone0: failed to read out thermal zone (-5) > > thermal thermal_zone1: failed to read out thermal zone (-5) > > thermal thermal_zone2: failed to read out thermal zone (-5) > > > > The warnings are triggered by the first call to .get_temp while the TEMP > > register contains 0 and rcar_gen3_thermal_get_temp() returns -EIO since > > a TEMP value of 0 will result in a temperature reading which is out of > > specifications. > > I think this one can be folded on patch 2/5. OK, will do this in next version.
diff --git a/drivers/thermal/rcar_gen3_thermal.c b/drivers/thermal/rcar_gen3_thermal.c index 7d78498..085daec 100644 --- a/drivers/thermal/rcar_gen3_thermal.c +++ b/drivers/thermal/rcar_gen3_thermal.c @@ -199,6 +199,8 @@ static void r8a7795_thermal_init(struct rcar_gen3_thermal_tsc *tsc) rcar_gen3_thermal_write(tsc, REG_GEN3_CTSR, CTSR_PONM | CTSR_AOUT | CTSR_THBGR | CTSR_VMEN | CTSR_VMST | CTSR_THSST); + + usleep_range(1000, 2000); } static void r8a7796_thermal_init(struct rcar_gen3_thermal_tsc *tsc)