aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/thermal/broadcom/brcmstb_thermal.c
diff options
context:
space:
mode:
authorFlorian Fainelli <f.fainelli@gmail.com>2020-01-14 11:06:05 -0800
committerDaniel Lezcano <daniel.lezcano@linaro.org>2020-01-27 11:41:08 +0100
commitc9a506139b7a772be286c34493792ce1b428e992 (patch)
tree8325efecde616ef64ae8decfbc22dbbf7bf80c62 /drivers/thermal/broadcom/brcmstb_thermal.c
parentdt-bindings: thermal: Define BCM7216 thermal sensor compatible (diff)
downloadlinux-dev-c9a506139b7a772be286c34493792ce1b428e992.tar.xz
linux-dev-c9a506139b7a772be286c34493792ce1b428e992.zip
thermal: brcmstb_thermal: Add 16nm process thermal parameters
Match the 7216 compatible string in order to derive the correct 16nm process thermal parameters to obtain correct readings. Reviewed-by: Amit Kucheria <amit.kucheria@linaro.org> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org> Link: https://lore.kernel.org/r/20200114190607.29339-5-f.fainelli@gmail.com
Diffstat (limited to '')
-rw-r--r--drivers/thermal/broadcom/brcmstb_thermal.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/thermal/broadcom/brcmstb_thermal.c b/drivers/thermal/broadcom/brcmstb_thermal.c
index 2d555e7b884a..4b328586959f 100644
--- a/drivers/thermal/broadcom/brcmstb_thermal.c
+++ b/drivers/thermal/broadcom/brcmstb_thermal.c
@@ -292,12 +292,18 @@ static const struct thermal_zone_of_device_ops of_ops = {
.set_trips = brcmstb_set_trips,
};
+static const struct brcmstb_thermal_params brcmstb_16nm_params = {
+ .offset = 457829,
+ .mult = 557,
+};
+
static const struct brcmstb_thermal_params brcmstb_28nm_params = {
.offset = 410040,
.mult = 487,
};
static const struct of_device_id brcmstb_thermal_id_table[] = {
+ { .compatible = "brcm,avs-tmon-bcm7216", .data = &brcmstb_16nm_params },
{ .compatible = "brcm,avs-tmon", .data = &brcmstb_28nm_params },
{},
};