blob: 21d4d6e6409a970323bfe9b7ba1d157648dcb8f6 [file] [log] [blame]
Thomas Gleixnerc942fdd2019-05-27 08:55:06 +02001// SPDX-License-Identifier: GPL-2.0-or-later
hongbo.zhangaa1acb02012-11-15 18:56:42 +08002/*
3 * db8500_thermal.c - DB8500 Thermal Management Implementation
4 *
5 * Copyright (C) 2012 ST-Ericsson
Linus Walleij6c375ec2019-08-28 15:03:20 +02006 * Copyright (C) 2012-2019 Linaro Ltd.
hongbo.zhangaa1acb02012-11-15 18:56:42 +08007 *
Linus Walleij6c375ec2019-08-28 15:03:20 +02008 * Authors: Hongbo Zhang, Linus Walleij
hongbo.zhangaa1acb02012-11-15 18:56:42 +08009 */
10
11#include <linux/cpu_cooling.h>
12#include <linux/interrupt.h>
13#include <linux/mfd/dbx500-prcmu.h>
14#include <linux/module.h>
15#include <linux/of.h>
hongbo.zhangaa1acb02012-11-15 18:56:42 +080016#include <linux/platform_device.h>
17#include <linux/slab.h>
18#include <linux/thermal.h>
19
20#define PRCMU_DEFAULT_MEASURE_TIME 0xFFF
21#define PRCMU_DEFAULT_LOW_TEMP 0
Linus Walleijcb063a82019-08-28 15:03:18 +020022
Linus Walleij6c375ec2019-08-28 15:03:20 +020023/**
24 * db8500_thermal_points - the interpolation points that trigger
25 * interrupts
26 */
27static const unsigned long db8500_thermal_points[] = {
28 15000,
29 20000,
30 25000,
31 30000,
32 35000,
33 40000,
34 45000,
35 50000,
36 55000,
37 60000,
38 65000,
39 70000,
40 75000,
41 80000,
42 /*
43 * This is where things start to get really bad for the
44 * SoC and the thermal zones should be set up to trigger
45 * critical temperature at 85000 mC so we don't get above
46 * this point.
47 */
48 85000,
49 90000,
50 95000,
51 100000,
Linus Walleijcb063a82019-08-28 15:03:18 +020052};
hongbo.zhangaa1acb02012-11-15 18:56:42 +080053
54struct db8500_thermal_zone {
Linus Walleij6c375ec2019-08-28 15:03:20 +020055 struct thermal_zone_device *tz;
hongbo.zhangaa1acb02012-11-15 18:56:42 +080056 enum thermal_trend trend;
Linus Walleij6c375ec2019-08-28 15:03:20 +020057 unsigned long interpolated_temp;
hongbo.zhangaa1acb02012-11-15 18:56:42 +080058 unsigned int cur_index;
59};
60
hongbo.zhangaa1acb02012-11-15 18:56:42 +080061/* Callback to get current temperature */
Linus Walleij6c375ec2019-08-28 15:03:20 +020062static int db8500_thermal_get_temp(void *data, int *temp)
hongbo.zhangaa1acb02012-11-15 18:56:42 +080063{
Linus Walleij6c375ec2019-08-28 15:03:20 +020064 struct db8500_thermal_zone *th = data;
hongbo.zhangaa1acb02012-11-15 18:56:42 +080065
66 /*
67 * TODO: There is no PRCMU interface to get temperature data currently,
68 * so a pseudo temperature is returned , it works for thermal framework
69 * and this will be fixed when the PRCMU interface is available.
70 */
Linus Walleij6c375ec2019-08-28 15:03:20 +020071 *temp = th->interpolated_temp;
hongbo.zhangaa1acb02012-11-15 18:56:42 +080072
73 return 0;
74}
75
76/* Callback to get temperature changing trend */
Linus Walleij6c375ec2019-08-28 15:03:20 +020077static int db8500_thermal_get_trend(void *data, int trip, enum thermal_trend *trend)
hongbo.zhangaa1acb02012-11-15 18:56:42 +080078{
Linus Walleij6c375ec2019-08-28 15:03:20 +020079 struct db8500_thermal_zone *th = data;
hongbo.zhangaa1acb02012-11-15 18:56:42 +080080
Linus Walleij6c375ec2019-08-28 15:03:20 +020081 *trend = th->trend;
hongbo.zhangaa1acb02012-11-15 18:56:42 +080082
83 return 0;
84}
85
Linus Walleij6c375ec2019-08-28 15:03:20 +020086static struct thermal_zone_of_device_ops thdev_ops = {
87 .get_temp = db8500_thermal_get_temp,
88 .get_trend = db8500_thermal_get_trend,
hongbo.zhangaa1acb02012-11-15 18:56:42 +080089};
90
Linus Walleij6c375ec2019-08-28 15:03:20 +020091static void db8500_thermal_update_config(struct db8500_thermal_zone *th,
92 unsigned int idx,
93 enum thermal_trend trend,
94 unsigned long next_low,
95 unsigned long next_high)
hongbo.zhangaa1acb02012-11-15 18:56:42 +080096{
97 prcmu_stop_temp_sense();
98
Linus Walleij6c375ec2019-08-28 15:03:20 +020099 th->cur_index = idx;
100 th->interpolated_temp = (next_low + next_high)/2;
101 th->trend = trend;
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800102
Linus Walleij6c375ec2019-08-28 15:03:20 +0200103 /*
104 * The PRCMU accept absolute temperatures in celsius so divide
105 * down the millicelsius with 1000
106 */
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800107 prcmu_config_hotmon((u8)(next_low/1000), (u8)(next_high/1000));
108 prcmu_start_temp_sense(PRCMU_DEFAULT_MEASURE_TIME);
109}
110
111static irqreturn_t prcmu_low_irq_handler(int irq, void *irq_data)
112{
Linus Walleij6c375ec2019-08-28 15:03:20 +0200113 struct db8500_thermal_zone *th = irq_data;
114 unsigned int idx = th->cur_index;
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800115 unsigned long next_low, next_high;
116
Linus Walleij6c375ec2019-08-28 15:03:20 +0200117 if (idx == 0)
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800118 /* Meaningless for thermal management, ignoring it */
119 return IRQ_HANDLED;
120
121 if (idx == 1) {
Linus Walleij6c375ec2019-08-28 15:03:20 +0200122 next_high = db8500_thermal_points[0];
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800123 next_low = PRCMU_DEFAULT_LOW_TEMP;
124 } else {
Linus Walleij6c375ec2019-08-28 15:03:20 +0200125 next_high = db8500_thermal_points[idx - 1];
126 next_low = db8500_thermal_points[idx - 2];
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800127 }
128 idx -= 1;
129
Linus Walleij6c375ec2019-08-28 15:03:20 +0200130 db8500_thermal_update_config(th, idx, THERMAL_TREND_DROPPING,
131 next_low, next_high);
132 dev_dbg(&th->tz->device,
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800133 "PRCMU set max %ld, min %ld\n", next_high, next_low);
134
Linus Walleij6c375ec2019-08-28 15:03:20 +0200135 thermal_zone_device_update(th->tz, THERMAL_EVENT_UNSPECIFIED);
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800136
137 return IRQ_HANDLED;
138}
139
140static irqreturn_t prcmu_high_irq_handler(int irq, void *irq_data)
141{
Linus Walleij6c375ec2019-08-28 15:03:20 +0200142 struct db8500_thermal_zone *th = irq_data;
143 unsigned int idx = th->cur_index;
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800144 unsigned long next_low, next_high;
Linus Walleij6c375ec2019-08-28 15:03:20 +0200145 int num_points = ARRAY_SIZE(db8500_thermal_points);
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800146
Linus Walleij6c375ec2019-08-28 15:03:20 +0200147 if (idx < num_points - 1) {
148 next_high = db8500_thermal_points[idx+1];
149 next_low = db8500_thermal_points[idx];
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800150 idx += 1;
151
Linus Walleij6c375ec2019-08-28 15:03:20 +0200152 db8500_thermal_update_config(th, idx, THERMAL_TREND_RAISING,
153 next_low, next_high);
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800154
Linus Walleijc56dcfa2019-11-19 08:46:50 +0100155 dev_dbg(&th->tz->device,
156 "PRCMU set max %ld, min %ld\n", next_high, next_low);
Linus Walleij6c375ec2019-08-28 15:03:20 +0200157 } else if (idx == num_points - 1)
158 /* So we roof out 1 degree over the max point */
159 th->interpolated_temp = db8500_thermal_points[idx] + 1;
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800160
Linus Walleij6c375ec2019-08-28 15:03:20 +0200161 thermal_zone_device_update(th->tz, THERMAL_EVENT_UNSPECIFIED);
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800162
163 return IRQ_HANDLED;
164}
165
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800166static int db8500_thermal_probe(struct platform_device *pdev)
167{
Linus Walleij6c375ec2019-08-28 15:03:20 +0200168 struct db8500_thermal_zone *th = NULL;
Linus Walleij3de9e4d2019-08-28 15:03:19 +0200169 struct device *dev = &pdev->dev;
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800170 int low_irq, high_irq, ret = 0;
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800171
Linus Walleij6c375ec2019-08-28 15:03:20 +0200172 th = devm_kzalloc(dev, sizeof(*th), GFP_KERNEL);
173 if (!th)
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800174 return -ENOMEM;
175
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800176 low_irq = platform_get_irq_byname(pdev, "IRQ_HOTMON_LOW");
177 if (low_irq < 0) {
Linus Walleij6c375ec2019-08-28 15:03:20 +0200178 dev_err(dev, "Get IRQ_HOTMON_LOW failed\n");
179 return low_irq;
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800180 }
181
Linus Walleij3de9e4d2019-08-28 15:03:19 +0200182 ret = devm_request_threaded_irq(dev, low_irq, NULL,
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800183 prcmu_low_irq_handler, IRQF_NO_SUSPEND | IRQF_ONESHOT,
Linus Walleij6c375ec2019-08-28 15:03:20 +0200184 "dbx500_temp_low", th);
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800185 if (ret < 0) {
Linus Walleij6c375ec2019-08-28 15:03:20 +0200186 dev_err(dev, "failed to allocate temp low irq\n");
187 return ret;
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800188 }
189
190 high_irq = platform_get_irq_byname(pdev, "IRQ_HOTMON_HIGH");
191 if (high_irq < 0) {
Linus Walleij6c375ec2019-08-28 15:03:20 +0200192 dev_err(dev, "Get IRQ_HOTMON_HIGH failed\n");
193 return high_irq;
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800194 }
195
Linus Walleij3de9e4d2019-08-28 15:03:19 +0200196 ret = devm_request_threaded_irq(dev, high_irq, NULL,
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800197 prcmu_high_irq_handler, IRQF_NO_SUSPEND | IRQF_ONESHOT,
Linus Walleij6c375ec2019-08-28 15:03:20 +0200198 "dbx500_temp_high", th);
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800199 if (ret < 0) {
Linus Walleij6c375ec2019-08-28 15:03:20 +0200200 dev_err(dev, "failed to allocate temp high irq\n");
201 return ret;
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800202 }
203
Linus Walleij6c375ec2019-08-28 15:03:20 +0200204 /* register of thermal sensor and get info from DT */
205 th->tz = devm_thermal_zone_of_sensor_register(dev, 0, th, &thdev_ops);
206 if (IS_ERR(th->tz)) {
207 dev_err(dev, "register thermal zone sensor failed\n");
208 return PTR_ERR(th->tz);
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800209 }
Linus Walleij6c375ec2019-08-28 15:03:20 +0200210 dev_info(dev, "thermal zone sensor registered\n");
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800211
Linus Walleij6c375ec2019-08-28 15:03:20 +0200212 /* Start measuring at the lowest point */
213 db8500_thermal_update_config(th, 0, THERMAL_TREND_STABLE,
214 PRCMU_DEFAULT_LOW_TEMP,
215 db8500_thermal_points[0]);
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800216
Linus Walleij6c375ec2019-08-28 15:03:20 +0200217 platform_set_drvdata(pdev, th);
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800218
219 return 0;
220}
221
222static int db8500_thermal_suspend(struct platform_device *pdev,
223 pm_message_t state)
224{
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800225 prcmu_stop_temp_sense();
226
227 return 0;
228}
229
230static int db8500_thermal_resume(struct platform_device *pdev)
231{
Linus Walleij6c375ec2019-08-28 15:03:20 +0200232 struct db8500_thermal_zone *th = platform_get_drvdata(pdev);
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800233
Linus Walleij6c375ec2019-08-28 15:03:20 +0200234 /* Resume and start measuring at the lowest point */
235 db8500_thermal_update_config(th, 0, THERMAL_TREND_STABLE,
236 PRCMU_DEFAULT_LOW_TEMP,
237 db8500_thermal_points[0]);
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800238
239 return 0;
240}
241
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800242static const struct of_device_id db8500_thermal_match[] = {
243 { .compatible = "stericsson,db8500-thermal" },
244 {},
245};
Javier Martinez Canillas8093a1162016-10-14 11:35:02 -0300246MODULE_DEVICE_TABLE(of, db8500_thermal_match);
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800247
248static struct platform_driver db8500_thermal_driver = {
249 .driver = {
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800250 .name = "db8500-thermal",
Sachin Kamatc3136372012-12-19 14:20:58 +0530251 .of_match_table = of_match_ptr(db8500_thermal_match),
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800252 },
253 .probe = db8500_thermal_probe,
254 .suspend = db8500_thermal_suspend,
255 .resume = db8500_thermal_resume,
hongbo.zhangaa1acb02012-11-15 18:56:42 +0800256};
257
258module_platform_driver(db8500_thermal_driver);
259
260MODULE_AUTHOR("Hongbo Zhang <hongbo.zhang@stericsson.com>");
261MODULE_DESCRIPTION("DB8500 thermal driver");
262MODULE_LICENSE("GPL");