From: Niklas Söderlund Date: Tue, 9 Mar 2021 16:24:19 +0000 (+0100) Subject: thermal: rcar_gen3_thermal: Add support for up to five TSC nodes X-Git-Tag: accepted/tizen/unified/20230118.172025~7286^2~51 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7fd49ca05be35a85c424a3ca8df931bd70c34535;p=platform%2Fkernel%2Flinux-rpi.git thermal: rcar_gen3_thermal: Add support for up to five TSC nodes 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 Acked-by: Geert Uytterhoeven Signed-off-by: Daniel Lezcano Link: https://lore.kernel.org/r/20210309162419.2621359-1-niklas.soderlund+renesas@ragnatech.se --- diff --git a/drivers/thermal/rcar_gen3_thermal.c b/drivers/thermal/rcar_gen3_thermal.c index 75c69fe..e1e4123 100644 --- a/drivers/thermal/rcar_gen3_thermal.c +++ b/drivers/thermal/rcar_gen3_thermal.c @@ -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 */