Commit 5fdd4e31 authored by Florian Fainelli's avatar Florian Fainelli Committed by Daniel Lezcano

thermal: brcmstb_thermal: Register different ops per process

Since we do not have interrupts on BCM7216, we cannot have trip point
crossing, the thermal subsystem expects us to provide a NULL set_trips
operation in that case, so make it possible to provide per-process
thermal_zone_of_device_ops
Reviewed-by: default avatarAmit Kucheria <amit.kucheria@linaro.org>
Signed-off-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
Signed-off-by: default avatarDaniel Lezcano <daniel.lezcano@linaro.org>
Link: https://lore.kernel.org/r/20200114190607.29339-7-f.fainelli@gmail.com
parent eaf7a88d
...@@ -105,6 +105,7 @@ static struct avs_tmon_trip avs_tmon_trips[] = { ...@@ -105,6 +105,7 @@ static struct avs_tmon_trip avs_tmon_trips[] = {
struct brcmstb_thermal_params { struct brcmstb_thermal_params {
unsigned int offset; unsigned int offset;
unsigned int mult; unsigned int mult;
const struct thermal_zone_of_device_ops *of_ops;
}; };
struct brcmstb_thermal_priv { struct brcmstb_thermal_priv {
...@@ -287,19 +288,25 @@ static int brcmstb_set_trips(void *data, int low, int high) ...@@ -287,19 +288,25 @@ static int brcmstb_set_trips(void *data, int low, int high)
return 0; return 0;
} }
static const struct thermal_zone_of_device_ops of_ops = { static const struct thermal_zone_of_device_ops brcmstb_16nm_of_ops = {
.get_temp = brcmstb_get_temp, .get_temp = brcmstb_get_temp,
.set_trips = brcmstb_set_trips,
}; };
static const struct brcmstb_thermal_params brcmstb_16nm_params = { static const struct brcmstb_thermal_params brcmstb_16nm_params = {
.offset = 457829, .offset = 457829,
.mult = 557, .mult = 557,
.of_ops = &brcmstb_16nm_of_ops,
};
static const struct thermal_zone_of_device_ops brcmstb_28nm_of_ops = {
.get_temp = brcmstb_get_temp,
.set_trips = brcmstb_set_trips,
}; };
static const struct brcmstb_thermal_params brcmstb_28nm_params = { static const struct brcmstb_thermal_params brcmstb_28nm_params = {
.offset = 410040, .offset = 410040,
.mult = 487, .mult = 487,
.of_ops = &brcmstb_28nm_of_ops,
}; };
static const struct of_device_id brcmstb_thermal_id_table[] = { static const struct of_device_id brcmstb_thermal_id_table[] = {
...@@ -311,6 +318,7 @@ MODULE_DEVICE_TABLE(of, brcmstb_thermal_id_table); ...@@ -311,6 +318,7 @@ MODULE_DEVICE_TABLE(of, brcmstb_thermal_id_table);
static int brcmstb_thermal_probe(struct platform_device *pdev) static int brcmstb_thermal_probe(struct platform_device *pdev)
{ {
const struct thermal_zone_of_device_ops *of_ops;
struct thermal_zone_device *thermal; struct thermal_zone_device *thermal;
struct brcmstb_thermal_priv *priv; struct brcmstb_thermal_priv *priv;
struct resource *res; struct resource *res;
...@@ -331,9 +339,10 @@ static int brcmstb_thermal_probe(struct platform_device *pdev) ...@@ -331,9 +339,10 @@ static int brcmstb_thermal_probe(struct platform_device *pdev)
priv->dev = &pdev->dev; priv->dev = &pdev->dev;
platform_set_drvdata(pdev, priv); platform_set_drvdata(pdev, priv);
of_ops = priv->temp_params->of_ops;
thermal = devm_thermal_zone_of_sensor_register(&pdev->dev, 0, priv, thermal = devm_thermal_zone_of_sensor_register(&pdev->dev, 0, priv,
&of_ops); of_ops);
if (IS_ERR(thermal)) { if (IS_ERR(thermal)) {
ret = PTR_ERR(thermal); ret = PTR_ERR(thermal);
dev_err(&pdev->dev, "could not register sensor: %d\n", ret); dev_err(&pdev->dev, "could not register sensor: %d\n", ret);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment