thermal: rcar_gen3_thermal: Add support for up to five TSC nodes
authorNiklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
Tue, 9 Mar 2021 16:24:19 +0000 (17:24 +0100)
committerDaniel Lezcano <daniel.lezcano@linaro.org>
Wed, 10 Mar 2021 11:58:28 +0000 (12:58 +0100)
Add support for up to five TSC nodes. The new THCODE values are taken
from the example in the datasheet.

Signed-off-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
Acked-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Link: https://lore.kernel.org/r/20210309162419.2621359-1-niklas.soderlund+renesas@ragnatech.se
drivers/thermal/rcar_gen3_thermal.c

index 75c69fe..e1e4123 100644 (file)
@@ -60,7 +60,7 @@
 #define MCELSIUS(temp) ((temp) * 1000)
 #define GEN3_FUSE_MASK 0xFFF
 
-#define TSC_MAX_NUM    4
+#define TSC_MAX_NUM    5
 
 /* default THCODE values if FUSEs are missing */
 static const int thcodes[TSC_MAX_NUM][3] = {
@@ -68,6 +68,7 @@ static const int thcodes[TSC_MAX_NUM][3] = {
        { 3393, 2795, 2216 },
        { 3389, 2805, 2237 },
        { 3415, 2694, 2195 },
+       { 3356, 2724, 2244 },
 };
 
 /* Structure for thermal temperature calculation */