thermal/drivers/hisi: Prepare to add support for other hisi platforms
For platform compatibility, add the tsensor ops to a thermal data structure. Each platform has its own probe function to register proper tsensor ops function to the pointer, platform related resource request are also implemented in the platform probe function. Signed-off-by: Kevin Wangtao <kevin.wangtao@linaro.org> Tested-by: Daniel Lezcano <daniel.lezcano@linaro.org> # hikey6220 Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org> Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
This commit is contained in:
parent
5ed82b79e5
commit
a160a46529
|
@ -23,6 +23,7 @@
|
||||||
#include <linux/module.h>
|
#include <linux/module.h>
|
||||||
#include <linux/platform_device.h>
|
#include <linux/platform_device.h>
|
||||||
#include <linux/io.h>
|
#include <linux/io.h>
|
||||||
|
#include <linux/of_device.h>
|
||||||
|
|
||||||
#include "thermal_core.h"
|
#include "thermal_core.h"
|
||||||
|
|
||||||
|
@ -52,6 +53,10 @@ struct hisi_thermal_sensor {
|
||||||
};
|
};
|
||||||
|
|
||||||
struct hisi_thermal_data {
|
struct hisi_thermal_data {
|
||||||
|
int (*get_temp)(struct hisi_thermal_data *data);
|
||||||
|
int (*enable_sensor)(struct hisi_thermal_data *data);
|
||||||
|
int (*disable_sensor)(struct hisi_thermal_data *data);
|
||||||
|
int (*irq_handler)(struct hisi_thermal_data *data);
|
||||||
struct platform_device *pdev;
|
struct platform_device *pdev;
|
||||||
struct clk *clk;
|
struct clk *clk;
|
||||||
struct hisi_thermal_sensor sensor;
|
struct hisi_thermal_sensor sensor;
|
||||||
|
@ -192,7 +197,18 @@ static inline void hi6220_thermal_hdak_set(void __iomem *addr, int value)
|
||||||
(value << 4), addr + HI6220_TEMP0_CFG);
|
(value << 4), addr + HI6220_TEMP0_CFG);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void hi6220_thermal_disable_sensor(struct hisi_thermal_data *data)
|
static int hi6220_thermal_irq_handler(struct hisi_thermal_data *data)
|
||||||
|
{
|
||||||
|
hi6220_thermal_alarm_clear(data->regs, 1);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int hi6220_thermal_get_temp(struct hisi_thermal_data *data)
|
||||||
|
{
|
||||||
|
return hi6220_thermal_get_temperature(data->regs);
|
||||||
|
}
|
||||||
|
|
||||||
|
static int hi6220_thermal_disable_sensor(struct hisi_thermal_data *data)
|
||||||
{
|
{
|
||||||
/* disable sensor module */
|
/* disable sensor module */
|
||||||
hi6220_thermal_enable(data->regs, 0);
|
hi6220_thermal_enable(data->regs, 0);
|
||||||
|
@ -200,6 +216,8 @@ static void hi6220_thermal_disable_sensor(struct hisi_thermal_data *data)
|
||||||
hi6220_thermal_reset_enable(data->regs, 0);
|
hi6220_thermal_reset_enable(data->regs, 0);
|
||||||
|
|
||||||
clk_disable_unprepare(data->clk);
|
clk_disable_unprepare(data->clk);
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int hi6220_thermal_enable_sensor(struct hisi_thermal_data *data)
|
static int hi6220_thermal_enable_sensor(struct hisi_thermal_data *data)
|
||||||
|
@ -240,12 +258,48 @@ static int hi6220_thermal_enable_sensor(struct hisi_thermal_data *data)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int hi6220_thermal_probe(struct hisi_thermal_data *data)
|
||||||
|
{
|
||||||
|
struct platform_device *pdev = data->pdev;
|
||||||
|
struct device *dev = &pdev->dev;
|
||||||
|
struct resource *res;
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
data->get_temp = hi6220_thermal_get_temp;
|
||||||
|
data->enable_sensor = hi6220_thermal_enable_sensor;
|
||||||
|
data->disable_sensor = hi6220_thermal_disable_sensor;
|
||||||
|
data->irq_handler = hi6220_thermal_irq_handler;
|
||||||
|
|
||||||
|
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||||
|
data->regs = devm_ioremap_resource(dev, res);
|
||||||
|
if (IS_ERR(data->regs)) {
|
||||||
|
dev_err(dev, "failed to get io address\n");
|
||||||
|
return PTR_ERR(data->regs);
|
||||||
|
}
|
||||||
|
|
||||||
|
data->clk = devm_clk_get(dev, "thermal_clk");
|
||||||
|
if (IS_ERR(data->clk)) {
|
||||||
|
ret = PTR_ERR(data->clk);
|
||||||
|
if (ret != -EPROBE_DEFER)
|
||||||
|
dev_err(dev, "failed to get thermal clk: %d\n", ret);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
data->irq = platform_get_irq(pdev, 0);
|
||||||
|
if (data->irq < 0)
|
||||||
|
return data->irq;
|
||||||
|
|
||||||
|
data->sensor.id = HI6220_DEFAULT_SENSOR;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
static int hisi_thermal_get_temp(void *__data, int *temp)
|
static int hisi_thermal_get_temp(void *__data, int *temp)
|
||||||
{
|
{
|
||||||
struct hisi_thermal_data *data = __data;
|
struct hisi_thermal_data *data = __data;
|
||||||
struct hisi_thermal_sensor *sensor = &data->sensor;
|
struct hisi_thermal_sensor *sensor = &data->sensor;
|
||||||
|
|
||||||
*temp = hi6220_thermal_get_temperature(data->regs);
|
*temp = data->get_temp(data);
|
||||||
|
|
||||||
dev_dbg(&data->pdev->dev, "id=%d, temp=%d, thres=%d\n",
|
dev_dbg(&data->pdev->dev, "id=%d, temp=%d, thres=%d\n",
|
||||||
sensor->id, *temp, sensor->thres_temp);
|
sensor->id, *temp, sensor->thres_temp);
|
||||||
|
@ -263,7 +317,7 @@ static irqreturn_t hisi_thermal_alarm_irq_thread(int irq, void *dev)
|
||||||
struct hisi_thermal_sensor *sensor = &data->sensor;
|
struct hisi_thermal_sensor *sensor = &data->sensor;
|
||||||
int temp = 0;
|
int temp = 0;
|
||||||
|
|
||||||
hi6220_thermal_alarm_clear(data->regs, 1);
|
data->irq_handler(data);
|
||||||
|
|
||||||
hisi_thermal_get_temp(data, &temp);
|
hisi_thermal_get_temp(data, &temp);
|
||||||
|
|
||||||
|
@ -284,14 +338,11 @@ static irqreturn_t hisi_thermal_alarm_irq_thread(int irq, void *dev)
|
||||||
|
|
||||||
static int hisi_thermal_register_sensor(struct platform_device *pdev,
|
static int hisi_thermal_register_sensor(struct platform_device *pdev,
|
||||||
struct hisi_thermal_data *data,
|
struct hisi_thermal_data *data,
|
||||||
struct hisi_thermal_sensor *sensor,
|
struct hisi_thermal_sensor *sensor)
|
||||||
int index)
|
|
||||||
{
|
{
|
||||||
int ret, i;
|
int ret, i;
|
||||||
const struct thermal_trip *trip;
|
const struct thermal_trip *trip;
|
||||||
|
|
||||||
sensor->id = index;
|
|
||||||
|
|
||||||
sensor->tzd = devm_thermal_zone_of_sensor_register(&pdev->dev,
|
sensor->tzd = devm_thermal_zone_of_sensor_register(&pdev->dev,
|
||||||
sensor->id, data,
|
sensor->id, data,
|
||||||
&hisi_of_thermal_ops);
|
&hisi_of_thermal_ops);
|
||||||
|
@ -316,7 +367,7 @@ static int hisi_thermal_register_sensor(struct platform_device *pdev,
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct of_device_id of_hisi_thermal_match[] = {
|
static const struct of_device_id of_hisi_thermal_match[] = {
|
||||||
{ .compatible = "hisilicon,tsensor" },
|
{ .compatible = "hisilicon,tsensor", .data = hi6220_thermal_probe },
|
||||||
{ /* end */ }
|
{ /* end */ }
|
||||||
};
|
};
|
||||||
MODULE_DEVICE_TABLE(of, of_hisi_thermal_match);
|
MODULE_DEVICE_TABLE(of, of_hisi_thermal_match);
|
||||||
|
@ -333,59 +384,49 @@ static void hisi_thermal_toggle_sensor(struct hisi_thermal_sensor *sensor,
|
||||||
static int hisi_thermal_probe(struct platform_device *pdev)
|
static int hisi_thermal_probe(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct hisi_thermal_data *data;
|
struct hisi_thermal_data *data;
|
||||||
struct resource *res;
|
int const (*platform_probe)(struct hisi_thermal_data *);
|
||||||
|
struct device *dev = &pdev->dev;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);
|
data = devm_kzalloc(dev, sizeof(*data), GFP_KERNEL);
|
||||||
if (!data)
|
if (!data)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
data->pdev = pdev;
|
data->pdev = pdev;
|
||||||
|
|
||||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
|
||||||
data->regs = devm_ioremap_resource(&pdev->dev, res);
|
|
||||||
if (IS_ERR(data->regs)) {
|
|
||||||
dev_err(&pdev->dev, "failed to get io address\n");
|
|
||||||
return PTR_ERR(data->regs);
|
|
||||||
}
|
|
||||||
|
|
||||||
data->irq = platform_get_irq(pdev, 0);
|
|
||||||
if (data->irq < 0)
|
|
||||||
return data->irq;
|
|
||||||
|
|
||||||
platform_set_drvdata(pdev, data);
|
platform_set_drvdata(pdev, data);
|
||||||
|
|
||||||
data->clk = devm_clk_get(&pdev->dev, "thermal_clk");
|
platform_probe = of_device_get_match_data(dev);
|
||||||
if (IS_ERR(data->clk)) {
|
if (!platform_probe) {
|
||||||
ret = PTR_ERR(data->clk);
|
dev_err(dev, "failed to get probe func\n");
|
||||||
if (ret != -EPROBE_DEFER)
|
return -EINVAL;
|
||||||
dev_err(&pdev->dev,
|
|
||||||
"failed to get thermal clk: %d\n", ret);
|
|
||||||
return ret;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ret = platform_probe(data);
|
||||||
|
if (ret)
|
||||||
|
return ret;
|
||||||
|
|
||||||
ret = hisi_thermal_register_sensor(pdev, data,
|
ret = hisi_thermal_register_sensor(pdev, data,
|
||||||
&data->sensor,
|
&data->sensor);
|
||||||
HI6220_DEFAULT_SENSOR);
|
|
||||||
if (ret) {
|
if (ret) {
|
||||||
dev_err(&pdev->dev, "failed to register thermal sensor: %d\n",
|
dev_err(dev, "failed to register thermal sensor: %d\n", ret);
|
||||||
ret);
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = hi6220_thermal_enable_sensor(data);
|
ret = data->enable_sensor(data);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
dev_err(&pdev->dev, "Failed to setup the sensor: %d\n", ret);
|
dev_err(dev, "Failed to setup the sensor: %d\n", ret);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = devm_request_threaded_irq(&pdev->dev, data->irq, NULL,
|
if (data->irq) {
|
||||||
|
ret = devm_request_threaded_irq(dev, data->irq, NULL,
|
||||||
hisi_thermal_alarm_irq_thread,
|
hisi_thermal_alarm_irq_thread,
|
||||||
IRQF_ONESHOT, "hisi_thermal", data);
|
IRQF_ONESHOT, "hisi_thermal", data);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
dev_err(&pdev->dev, "failed to request alarm irq: %d\n", ret);
|
dev_err(dev, "failed to request alarm irq: %d\n", ret);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
hisi_thermal_toggle_sensor(&data->sensor, true);
|
hisi_thermal_toggle_sensor(&data->sensor, true);
|
||||||
|
|
||||||
|
@ -398,7 +439,8 @@ static int hisi_thermal_remove(struct platform_device *pdev)
|
||||||
struct hisi_thermal_sensor *sensor = &data->sensor;
|
struct hisi_thermal_sensor *sensor = &data->sensor;
|
||||||
|
|
||||||
hisi_thermal_toggle_sensor(sensor, false);
|
hisi_thermal_toggle_sensor(sensor, false);
|
||||||
hi6220_thermal_disable_sensor(data);
|
|
||||||
|
data->disable_sensor(data);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -408,7 +450,7 @@ static int hisi_thermal_suspend(struct device *dev)
|
||||||
{
|
{
|
||||||
struct hisi_thermal_data *data = dev_get_drvdata(dev);
|
struct hisi_thermal_data *data = dev_get_drvdata(dev);
|
||||||
|
|
||||||
hi6220_thermal_disable_sensor(data);
|
data->disable_sensor(data);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -417,7 +459,7 @@ static int hisi_thermal_resume(struct device *dev)
|
||||||
{
|
{
|
||||||
struct hisi_thermal_data *data = dev_get_drvdata(dev);
|
struct hisi_thermal_data *data = dev_get_drvdata(dev);
|
||||||
|
|
||||||
return hi6220_thermal_enable_sensor(data);
|
return data->enable_sensor(data);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue