Skip to content

Commit

Permalink
thermal: armada: Update Armada 380 thermal sensor coefficients
Browse files Browse the repository at this point in the history
Improve the Armada 380 thermal sensor accuracy by using updated formula.
The updated formula is:
Temperature[C degrees] = 0.4761 * tsen_vsen_out - 279.1

Signed-off-by: Nadav Haklai <nadavh@marvell.com>
Signed-off-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
Cc: <stable@vger.kernel.org> #v3.16
Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
  • Loading branch information
Nadav Haklai authored and Eduardo Valentin committed May 9, 2015
1 parent e9a90d0 commit efa8685
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/thermal/armada_thermal.c
Original file line number Diff line number Diff line change
Expand Up @@ -224,9 +224,9 @@ static const struct armada_thermal_data armada380_data = {
.is_valid_shift = 10,
.temp_shift = 0,
.temp_mask = 0x3ff,
.coef_b = 1169498786UL,
.coef_m = 2000000UL,
.coef_div = 4289,
.coef_b = 2931108200UL,
.coef_m = 5000000UL,
.coef_div = 10502,
.inverted = true,
};

Expand Down

0 comments on commit efa8685

Please sign in to comment.