blob: 2d855a96cdd9886c5f3abbcfb4e1d8a5c1ea8666 [file] [log] [blame]
kongxinwei9a5238a2015-05-20 19:16:37 +08001/*
2 * Hisilicon thermal sensor driver
3 *
4 * Copyright (c) 2014-2015 Hisilicon Limited.
5 * Copyright (c) 2014-2015 Linaro Limited.
6 *
7 * Xinwei Kong <kong.kongxinwei@hisilicon.com>
8 * Leo Yan <leo.yan@linaro.org>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 *
14 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
15 * kind, whether express or implied; without even the implied warranty
16 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 */
19
20#include <linux/cpufreq.h>
21#include <linux/delay.h>
22#include <linux/interrupt.h>
23#include <linux/module.h>
24#include <linux/platform_device.h>
25#include <linux/io.h>
Kevin Wangtao107ec612017-10-22 10:54:34 +020026#include <linux/of_device.h>
kongxinwei9a5238a2015-05-20 19:16:37 +080027
28#include "thermal_core.h"
29
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +020030#define HI6220_TEMP0_LAG (0x0)
31#define HI6220_TEMP0_TH (0x4)
32#define HI6220_TEMP0_RST_TH (0x8)
33#define HI6220_TEMP0_CFG (0xC)
Kevin Wangtao107ec612017-10-22 10:54:34 +020034#define HI6220_TEMP0_CFG_SS_MSK (0xF000)
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +020035#define HI6220_TEMP0_CFG_HDAK_MSK (0x30)
36#define HI6220_TEMP0_EN (0x10)
37#define HI6220_TEMP0_INT_EN (0x14)
38#define HI6220_TEMP0_INT_CLR (0x18)
39#define HI6220_TEMP0_RST_MSK (0x1C)
40#define HI6220_TEMP0_VALUE (0x28)
kongxinwei9a5238a2015-05-20 19:16:37 +080041
Kevin Wangtaof518fe42017-10-22 10:54:35 +020042#define HI3660_OFFSET(chan) ((chan) * 0x40)
43#define HI3660_TEMP(chan) (HI3660_OFFSET(chan) + 0x1C)
44#define HI3660_TH(chan) (HI3660_OFFSET(chan) + 0x20)
45#define HI3660_LAG(chan) (HI3660_OFFSET(chan) + 0x28)
46#define HI3660_INT_EN(chan) (HI3660_OFFSET(chan) + 0x2C)
47#define HI3660_INT_CLR(chan) (HI3660_OFFSET(chan) + 0x30)
48
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +020049#define HI6220_TEMP_BASE (-60000)
50#define HI6220_TEMP_RESET (100000)
51#define HI6220_TEMP_STEP (785)
Kevin Wangtao107ec612017-10-22 10:54:34 +020052#define HI6220_TEMP_LAG (3500)
kongxinwei9a5238a2015-05-20 19:16:37 +080053
Kevin Wangtaof518fe42017-10-22 10:54:35 +020054#define HI3660_TEMP_BASE (-63780)
55#define HI3660_TEMP_STEP (205)
56#define HI3660_TEMP_LAG (4000)
57
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +020058#define HI6220_DEFAULT_SENSOR 2
Kevin Wangtaof518fe42017-10-22 10:54:35 +020059#define HI3660_DEFAULT_SENSOR 1
kongxinwei9a5238a2015-05-20 19:16:37 +080060
61struct hisi_thermal_sensor {
kongxinwei9a5238a2015-05-20 19:16:37 +080062 struct thermal_zone_device *tzd;
kongxinwei9a5238a2015-05-20 19:16:37 +080063 uint32_t id;
64 uint32_t thres_temp;
65};
66
67struct hisi_thermal_data {
Kevin Wangtao107ec612017-10-22 10:54:34 +020068 int (*get_temp)(struct hisi_thermal_data *data);
69 int (*enable_sensor)(struct hisi_thermal_data *data);
70 int (*disable_sensor)(struct hisi_thermal_data *data);
71 int (*irq_handler)(struct hisi_thermal_data *data);
kongxinwei9a5238a2015-05-20 19:16:37 +080072 struct platform_device *pdev;
73 struct clk *clk;
Daniel Lezcano72050102017-10-19 19:05:52 +020074 struct hisi_thermal_sensor sensor;
kongxinwei9a5238a2015-05-20 19:16:37 +080075 void __iomem *regs;
Daniel Lezcano72050102017-10-19 19:05:52 +020076 int irq;
kongxinwei9a5238a2015-05-20 19:16:37 +080077};
78
Daniel Lezcano1b2c46a2017-10-19 19:05:46 +020079/*
80 * The temperature computation on the tsensor is as follow:
81 * Unit: millidegree Celsius
Kevin Wangtao53b1c652017-10-19 19:05:57 +020082 * Step: 200/255 (0.7843)
Daniel Lezcano1b2c46a2017-10-19 19:05:46 +020083 * Temperature base: -60°C
84 *
Kevin Wangtao53b1c652017-10-19 19:05:57 +020085 * The register is programmed in temperature steps, every step is 785
Daniel Lezcano1b2c46a2017-10-19 19:05:46 +020086 * millidegree and begins at -60 000 m°C
87 *
88 * The temperature from the steps:
89 *
Kevin Wangtao53b1c652017-10-19 19:05:57 +020090 * Temp = TempBase + (steps x 785)
Daniel Lezcano1b2c46a2017-10-19 19:05:46 +020091 *
92 * and the steps from the temperature:
93 *
Kevin Wangtao53b1c652017-10-19 19:05:57 +020094 * steps = (Temp - TempBase) / 785
Daniel Lezcano1b2c46a2017-10-19 19:05:46 +020095 *
96 */
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +020097static inline int hi6220_thermal_step_to_temp(int step)
kongxinwei9a5238a2015-05-20 19:16:37 +080098{
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +020099 return HI6220_TEMP_BASE + (step * HI6220_TEMP_STEP);
kongxinwei9a5238a2015-05-20 19:16:37 +0800100}
101
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +0200102static inline int hi6220_thermal_temp_to_step(int temp)
kongxinwei9a5238a2015-05-20 19:16:37 +0800103{
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +0200104 return DIV_ROUND_UP(temp - HI6220_TEMP_BASE, HI6220_TEMP_STEP);
Daniel Lezcano3cff9072017-10-19 19:05:47 +0200105}
106
Daniel Lezcano3cdf15a2017-10-19 19:05:51 +0200107/*
Kevin Wangtaof518fe42017-10-22 10:54:35 +0200108 * for Hi3660,
109 * Step: 189/922 (0.205)
110 * Temperature base: -63.780°C
111 *
112 * The register is programmed in temperature steps, every step is 205
113 * millidegree and begins at -63 780 m°C
114 */
115static inline int hi3660_thermal_step_to_temp(int step)
116{
117 return HI3660_TEMP_BASE + step * HI3660_TEMP_STEP;
118}
119
120static inline int hi3660_thermal_temp_to_step(int temp)
121{
122 return DIV_ROUND_UP(temp - HI3660_TEMP_BASE, HI3660_TEMP_STEP);
123}
124
125/*
Daniel Lezcano3cdf15a2017-10-19 19:05:51 +0200126 * The lag register contains 5 bits encoding the temperature in steps.
127 *
128 * Each time the temperature crosses the threshold boundary, an
129 * interrupt is raised. It could be when the temperature is going
130 * above the threshold or below. However, if the temperature is
131 * fluctuating around this value due to the load, we can receive
132 * several interrupts which may not desired.
133 *
134 * We can setup a temperature representing the delta between the
135 * threshold and the current temperature when the temperature is
136 * decreasing.
137 *
138 * For instance: the lag register is 5°C, the threshold is 65°C, when
139 * the temperature reaches 65°C an interrupt is raised and when the
140 * temperature decrease to 65°C - 5°C another interrupt is raised.
141 *
142 * A very short lag can lead to an interrupt storm, a long lag
143 * increase the latency to react to the temperature changes. In our
144 * case, that is not really a problem as we are polling the
145 * temperature.
146 *
147 * [0:4] : lag register
148 *
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +0200149 * The temperature is coded in steps, cf. HI6220_TEMP_STEP.
Daniel Lezcano3cdf15a2017-10-19 19:05:51 +0200150 *
151 * Min : 0x00 : 0.0 °C
152 * Max : 0x1F : 24.3 °C
153 *
154 * The 'value' parameter is in milliCelsius.
155 */
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +0200156static inline void hi6220_thermal_set_lag(void __iomem *addr, int value)
Daniel Lezcanoe37256c2017-10-19 19:05:49 +0200157{
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +0200158 writel(DIV_ROUND_UP(value, HI6220_TEMP_STEP) & 0x1F,
159 addr + HI6220_TEMP0_LAG);
Daniel Lezcanoe37256c2017-10-19 19:05:49 +0200160}
161
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +0200162static inline void hi6220_thermal_alarm_clear(void __iomem *addr, int value)
Daniel Lezcanoe37256c2017-10-19 19:05:49 +0200163{
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +0200164 writel(value, addr + HI6220_TEMP0_INT_CLR);
Daniel Lezcanoe37256c2017-10-19 19:05:49 +0200165}
166
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +0200167static inline void hi6220_thermal_alarm_enable(void __iomem *addr, int value)
Daniel Lezcanoe37256c2017-10-19 19:05:49 +0200168{
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +0200169 writel(value, addr + HI6220_TEMP0_INT_EN);
Daniel Lezcanoe37256c2017-10-19 19:05:49 +0200170}
171
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +0200172static inline void hi6220_thermal_alarm_set(void __iomem *addr, int temp)
Daniel Lezcanoe37256c2017-10-19 19:05:49 +0200173{
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +0200174 writel(hi6220_thermal_temp_to_step(temp) | 0x0FFFFFF00,
175 addr + HI6220_TEMP0_TH);
Daniel Lezcanoe37256c2017-10-19 19:05:49 +0200176}
177
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +0200178static inline void hi6220_thermal_reset_set(void __iomem *addr, int temp)
Daniel Lezcanoe37256c2017-10-19 19:05:49 +0200179{
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +0200180 writel(hi6220_thermal_temp_to_step(temp), addr + HI6220_TEMP0_RST_TH);
Daniel Lezcanoe37256c2017-10-19 19:05:49 +0200181}
182
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +0200183static inline void hi6220_thermal_reset_enable(void __iomem *addr, int value)
Daniel Lezcanoe37256c2017-10-19 19:05:49 +0200184{
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +0200185 writel(value, addr + HI6220_TEMP0_RST_MSK);
Daniel Lezcanoe37256c2017-10-19 19:05:49 +0200186}
187
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +0200188static inline void hi6220_thermal_enable(void __iomem *addr, int value)
Daniel Lezcanoe37256c2017-10-19 19:05:49 +0200189{
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +0200190 writel(value, addr + HI6220_TEMP0_EN);
Daniel Lezcanoe37256c2017-10-19 19:05:49 +0200191}
192
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +0200193static inline int hi6220_thermal_get_temperature(void __iomem *addr)
Daniel Lezcanoe37256c2017-10-19 19:05:49 +0200194{
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +0200195 return hi6220_thermal_step_to_temp(readl(addr + HI6220_TEMP0_VALUE));
Daniel Lezcanoe37256c2017-10-19 19:05:49 +0200196}
197
Daniel Lezcanofc8f6e22017-10-19 19:05:50 +0200198/*
Kevin Wangtaof518fe42017-10-22 10:54:35 +0200199 * [0:6] lag register
200 *
201 * The temperature is coded in steps, cf. HI3660_TEMP_STEP.
202 *
203 * Min : 0x00 : 0.0 °C
204 * Max : 0x7F : 26.0 °C
205 *
206 */
207static inline void hi3660_thermal_set_lag(void __iomem *addr,
208 int id, int value)
209{
210 writel(DIV_ROUND_UP(value, HI3660_TEMP_STEP) & 0x7F,
211 addr + HI3660_LAG(id));
212}
213
214static inline void hi3660_thermal_alarm_clear(void __iomem *addr,
215 int id, int value)
216{
217 writel(value, addr + HI3660_INT_CLR(id));
218}
219
220static inline void hi3660_thermal_alarm_enable(void __iomem *addr,
221 int id, int value)
222{
223 writel(value, addr + HI3660_INT_EN(id));
224}
225
226static inline void hi3660_thermal_alarm_set(void __iomem *addr,
227 int id, int value)
228{
229 writel(value, addr + HI3660_TH(id));
230}
231
232static inline int hi3660_thermal_get_temperature(void __iomem *addr, int id)
233{
234 return hi3660_thermal_step_to_temp(readl(addr + HI3660_TEMP(id)));
235}
236
237/*
Daniel Lezcanofc8f6e22017-10-19 19:05:50 +0200238 * Temperature configuration register - Sensor selection
239 *
240 * Bits [19:12]
241 *
242 * 0x0: local sensor (default)
243 * 0x1: remote sensor 1 (ACPU cluster 1)
244 * 0x2: remote sensor 2 (ACPU cluster 0)
245 * 0x3: remote sensor 3 (G3D)
246 */
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +0200247static inline void hi6220_thermal_sensor_select(void __iomem *addr, int sensor)
Daniel Lezcanofc8f6e22017-10-19 19:05:50 +0200248{
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +0200249 writel((readl(addr + HI6220_TEMP0_CFG) & ~HI6220_TEMP0_CFG_SS_MSK) |
250 (sensor << 12), addr + HI6220_TEMP0_CFG);
Daniel Lezcanofc8f6e22017-10-19 19:05:50 +0200251}
252
253/*
254 * Temperature configuration register - Hdak conversion polling interval
255 *
256 * Bits [5:4]
257 *
258 * 0x0 : 0.768 ms
259 * 0x1 : 6.144 ms
260 * 0x2 : 49.152 ms
261 * 0x3 : 393.216 ms
262 */
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +0200263static inline void hi6220_thermal_hdak_set(void __iomem *addr, int value)
Daniel Lezcanoe37256c2017-10-19 19:05:49 +0200264{
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +0200265 writel((readl(addr + HI6220_TEMP0_CFG) & ~HI6220_TEMP0_CFG_HDAK_MSK) |
266 (value << 4), addr + HI6220_TEMP0_CFG);
Daniel Lezcanoe37256c2017-10-19 19:05:49 +0200267}
268
Kevin Wangtao107ec612017-10-22 10:54:34 +0200269static int hi6220_thermal_irq_handler(struct hisi_thermal_data *data)
270{
271 hi6220_thermal_alarm_clear(data->regs, 1);
272 return 0;
273}
274
Kevin Wangtaof518fe42017-10-22 10:54:35 +0200275static int hi3660_thermal_irq_handler(struct hisi_thermal_data *data)
276{
277 hi3660_thermal_alarm_clear(data->regs, data->sensor.id, 1);
278 return 0;
279}
280
Kevin Wangtao107ec612017-10-22 10:54:34 +0200281static int hi6220_thermal_get_temp(struct hisi_thermal_data *data)
282{
283 return hi6220_thermal_get_temperature(data->regs);
284}
285
Kevin Wangtaof518fe42017-10-22 10:54:35 +0200286static int hi3660_thermal_get_temp(struct hisi_thermal_data *data)
287{
288 return hi3660_thermal_get_temperature(data->regs, data->sensor.id);
289}
290
Kevin Wangtao107ec612017-10-22 10:54:34 +0200291static int hi6220_thermal_disable_sensor(struct hisi_thermal_data *data)
kongxinwei9a5238a2015-05-20 19:16:37 +0800292{
kongxinwei9a5238a2015-05-20 19:16:37 +0800293 /* disable sensor module */
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +0200294 hi6220_thermal_enable(data->regs, 0);
295 hi6220_thermal_alarm_enable(data->regs, 0);
296 hi6220_thermal_reset_enable(data->regs, 0);
Kevin Wangtao90d49122017-10-19 19:05:56 +0200297
298 clk_disable_unprepare(data->clk);
Kevin Wangtao107ec612017-10-22 10:54:34 +0200299
300 return 0;
kongxinwei9a5238a2015-05-20 19:16:37 +0800301}
302
Kevin Wangtaof518fe42017-10-22 10:54:35 +0200303static int hi3660_thermal_disable_sensor(struct hisi_thermal_data *data)
304{
305 /* disable sensor module */
306 hi3660_thermal_alarm_enable(data->regs, data->sensor.id, 0);
307 return 0;
308}
309
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +0200310static int hi6220_thermal_enable_sensor(struct hisi_thermal_data *data)
Kevin Wangtao10af9dc2017-10-22 10:54:32 +0200311{
312 struct hisi_thermal_sensor *sensor = &data->sensor;
313 int ret;
314
315 /* enable clock for tsensor */
316 ret = clk_prepare_enable(data->clk);
317 if (ret)
318 return ret;
319
320 /* disable module firstly */
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +0200321 hi6220_thermal_reset_enable(data->regs, 0);
322 hi6220_thermal_enable(data->regs, 0);
Kevin Wangtao10af9dc2017-10-22 10:54:32 +0200323
324 /* select sensor id */
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +0200325 hi6220_thermal_sensor_select(data->regs, sensor->id);
Kevin Wangtao10af9dc2017-10-22 10:54:32 +0200326
327 /* setting the hdak time */
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +0200328 hi6220_thermal_hdak_set(data->regs, 0);
Kevin Wangtao10af9dc2017-10-22 10:54:32 +0200329
330 /* setting lag value between current temp and the threshold */
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +0200331 hi6220_thermal_set_lag(data->regs, HI6220_TEMP_LAG);
Kevin Wangtao10af9dc2017-10-22 10:54:32 +0200332
333 /* enable for interrupt */
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +0200334 hi6220_thermal_alarm_set(data->regs, sensor->thres_temp);
Kevin Wangtao10af9dc2017-10-22 10:54:32 +0200335
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +0200336 hi6220_thermal_reset_set(data->regs, HI6220_TEMP_RESET);
Kevin Wangtao10af9dc2017-10-22 10:54:32 +0200337
338 /* enable module */
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +0200339 hi6220_thermal_reset_enable(data->regs, 1);
340 hi6220_thermal_enable(data->regs, 1);
Kevin Wangtao10af9dc2017-10-22 10:54:32 +0200341
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +0200342 hi6220_thermal_alarm_clear(data->regs, 0);
343 hi6220_thermal_alarm_enable(data->regs, 1);
Kevin Wangtao10af9dc2017-10-22 10:54:32 +0200344
345 return 0;
346}
347
Kevin Wangtaof518fe42017-10-22 10:54:35 +0200348static int hi3660_thermal_enable_sensor(struct hisi_thermal_data *data)
349{
350 unsigned int value;
351 struct hisi_thermal_sensor *sensor = &data->sensor;
352
353 /* disable interrupt */
354 hi3660_thermal_alarm_enable(data->regs, sensor->id, 0);
355
356 /* setting lag value between current temp and the threshold */
357 hi3660_thermal_set_lag(data->regs, sensor->id, HI3660_TEMP_LAG);
358
359 /* set interrupt threshold */
360 value = hi3660_thermal_temp_to_step(sensor->thres_temp);
361 hi3660_thermal_alarm_set(data->regs, sensor->id, value);
362
363 /* enable interrupt */
364 hi3660_thermal_alarm_clear(data->regs, sensor->id, 1);
365 hi3660_thermal_alarm_enable(data->regs, sensor->id, 1);
366
367 return 0;
368}
369
Kevin Wangtao107ec612017-10-22 10:54:34 +0200370static int hi6220_thermal_probe(struct hisi_thermal_data *data)
371{
372 struct platform_device *pdev = data->pdev;
373 struct device *dev = &pdev->dev;
374 struct resource *res;
375 int ret;
376
377 data->get_temp = hi6220_thermal_get_temp;
378 data->enable_sensor = hi6220_thermal_enable_sensor;
379 data->disable_sensor = hi6220_thermal_disable_sensor;
380 data->irq_handler = hi6220_thermal_irq_handler;
381
382 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
383 data->regs = devm_ioremap_resource(dev, res);
384 if (IS_ERR(data->regs)) {
385 dev_err(dev, "failed to get io address\n");
386 return PTR_ERR(data->regs);
387 }
388
389 data->clk = devm_clk_get(dev, "thermal_clk");
390 if (IS_ERR(data->clk)) {
391 ret = PTR_ERR(data->clk);
392 if (ret != -EPROBE_DEFER)
393 dev_err(dev, "failed to get thermal clk: %d\n", ret);
394 return ret;
395 }
396
397 data->irq = platform_get_irq(pdev, 0);
398 if (data->irq < 0)
399 return data->irq;
400
401 data->sensor.id = HI6220_DEFAULT_SENSOR;
402
403 return 0;
404}
405
Kevin Wangtaof518fe42017-10-22 10:54:35 +0200406static int hi3660_thermal_probe(struct hisi_thermal_data *data)
407{
408 struct platform_device *pdev = data->pdev;
409 struct device *dev = &pdev->dev;
410 struct resource *res;
411
412 data->get_temp = hi3660_thermal_get_temp;
413 data->enable_sensor = hi3660_thermal_enable_sensor;
414 data->disable_sensor = hi3660_thermal_disable_sensor;
415 data->irq_handler = hi3660_thermal_irq_handler;
416
417 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
418 data->regs = devm_ioremap_resource(dev, res);
419 if (IS_ERR(data->regs)) {
420 dev_err(dev, "failed to get io address\n");
421 return PTR_ERR(data->regs);
422 }
423
424 data->irq = platform_get_irq(pdev, 0);
425 if (data->irq < 0)
426 return data->irq;
427
428 data->sensor.id = HI3660_DEFAULT_SENSOR;
429
430 return 0;
431}
432
Daniel Lezcano00c4d2c2017-10-19 19:05:54 +0200433static int hisi_thermal_get_temp(void *__data, int *temp)
kongxinwei9a5238a2015-05-20 19:16:37 +0800434{
Daniel Lezcano00c4d2c2017-10-19 19:05:54 +0200435 struct hisi_thermal_data *data = __data;
436 struct hisi_thermal_sensor *sensor = &data->sensor;
kongxinwei9a5238a2015-05-20 19:16:37 +0800437
Kevin Wangtao107ec612017-10-22 10:54:34 +0200438 *temp = data->get_temp(data);
kongxinwei9a5238a2015-05-20 19:16:37 +0800439
Daniel Lezcano3cdf15a2017-10-19 19:05:51 +0200440 dev_dbg(&data->pdev->dev, "id=%d, temp=%d, thres=%d\n",
441 sensor->id, *temp, sensor->thres_temp);
kongxinwei9a5238a2015-05-20 19:16:37 +0800442
443 return 0;
444}
445
Julia Lawall97be16f2017-08-08 17:08:55 +0200446static const struct thermal_zone_of_device_ops hisi_of_thermal_ops = {
kongxinwei9a5238a2015-05-20 19:16:37 +0800447 .get_temp = hisi_thermal_get_temp,
448};
449
kongxinwei9a5238a2015-05-20 19:16:37 +0800450static irqreturn_t hisi_thermal_alarm_irq_thread(int irq, void *dev)
451{
452 struct hisi_thermal_data *data = dev;
Daniel Lezcano72050102017-10-19 19:05:52 +0200453 struct hisi_thermal_sensor *sensor = &data->sensor;
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +0200454 int temp = 0;
kongxinwei9a5238a2015-05-20 19:16:37 +0800455
Kevin Wangtao107ec612017-10-22 10:54:34 +0200456 data->irq_handler(data);
kongxinwei9a5238a2015-05-20 19:16:37 +0800457
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +0200458 hisi_thermal_get_temp(data, &temp);
Daniel Lezcano3cdf15a2017-10-19 19:05:51 +0200459
460 if (temp >= sensor->thres_temp) {
461 dev_crit(&data->pdev->dev, "THERMAL ALARM: %d > %d\n",
462 temp, sensor->thres_temp);
463
Daniel Lezcano72050102017-10-19 19:05:52 +0200464 thermal_zone_device_update(data->sensor.tzd,
Daniel Lezcano3cdf15a2017-10-19 19:05:51 +0200465 THERMAL_EVENT_UNSPECIFIED);
466
Kevin Wangtao6fb8c5b2017-10-22 10:54:33 +0200467 } else {
Daniel Lezcano3cdf15a2017-10-19 19:05:51 +0200468 dev_crit(&data->pdev->dev, "THERMAL ALARM stopped: %d < %d\n",
469 temp, sensor->thres_temp);
470 }
kongxinwei9a5238a2015-05-20 19:16:37 +0800471
472 return IRQ_HANDLED;
473}
474
475static int hisi_thermal_register_sensor(struct platform_device *pdev,
476 struct hisi_thermal_data *data,
Kevin Wangtao107ec612017-10-22 10:54:34 +0200477 struct hisi_thermal_sensor *sensor)
kongxinwei9a5238a2015-05-20 19:16:37 +0800478{
479 int ret, i;
480 const struct thermal_trip *trip;
481
Eduardo Valentin44a520d2016-03-09 13:07:13 -0800482 sensor->tzd = devm_thermal_zone_of_sensor_register(&pdev->dev,
Daniel Lezcano00c4d2c2017-10-19 19:05:54 +0200483 sensor->id, data,
484 &hisi_of_thermal_ops);
kongxinwei9a5238a2015-05-20 19:16:37 +0800485 if (IS_ERR(sensor->tzd)) {
486 ret = PTR_ERR(sensor->tzd);
Leo Yan439dc962016-03-29 19:27:12 +0800487 sensor->tzd = NULL;
kongxinwei9a5238a2015-05-20 19:16:37 +0800488 dev_err(&pdev->dev, "failed to register sensor id %d: %d\n",
489 sensor->id, ret);
490 return ret;
491 }
492
493 trip = of_thermal_get_trip_points(sensor->tzd);
494
495 for (i = 0; i < of_thermal_get_ntrips(sensor->tzd); i++) {
496 if (trip[i].type == THERMAL_TRIP_PASSIVE) {
Kevin Wangtao53b1c652017-10-19 19:05:57 +0200497 sensor->thres_temp = trip[i].temperature;
kongxinwei9a5238a2015-05-20 19:16:37 +0800498 break;
499 }
500 }
501
502 return 0;
503}
504
505static const struct of_device_id of_hisi_thermal_match[] = {
Kevin Wangtaof518fe42017-10-22 10:54:35 +0200506 {
507 .compatible = "hisilicon,tsensor",
508 .data = hi6220_thermal_probe
509 },
510 {
511 .compatible = "hisilicon,hi3660-tsensor",
512 .data = hi3660_thermal_probe
513 },
kongxinwei9a5238a2015-05-20 19:16:37 +0800514 { /* end */ }
515};
516MODULE_DEVICE_TABLE(of, of_hisi_thermal_match);
517
518static void hisi_thermal_toggle_sensor(struct hisi_thermal_sensor *sensor,
519 bool on)
520{
521 struct thermal_zone_device *tzd = sensor->tzd;
522
523 tzd->ops->set_mode(tzd,
524 on ? THERMAL_DEVICE_ENABLED : THERMAL_DEVICE_DISABLED);
525}
526
527static int hisi_thermal_probe(struct platform_device *pdev)
528{
529 struct hisi_thermal_data *data;
Kevin Wangtao107ec612017-10-22 10:54:34 +0200530 int const (*platform_probe)(struct hisi_thermal_data *);
531 struct device *dev = &pdev->dev;
kongxinwei9a5238a2015-05-20 19:16:37 +0800532 int ret;
533
Kevin Wangtao107ec612017-10-22 10:54:34 +0200534 data = devm_kzalloc(dev, sizeof(*data), GFP_KERNEL);
kongxinwei9a5238a2015-05-20 19:16:37 +0800535 if (!data)
536 return -ENOMEM;
537
kongxinwei9a5238a2015-05-20 19:16:37 +0800538 data->pdev = pdev;
kongxinwei9a5238a2015-05-20 19:16:37 +0800539 platform_set_drvdata(pdev, data);
540
Kevin Wangtao107ec612017-10-22 10:54:34 +0200541 platform_probe = of_device_get_match_data(dev);
542 if (!platform_probe) {
543 dev_err(dev, "failed to get probe func\n");
544 return -EINVAL;
kongxinwei9a5238a2015-05-20 19:16:37 +0800545 }
546
Kevin Wangtao107ec612017-10-22 10:54:34 +0200547 ret = platform_probe(data);
548 if (ret)
549 return ret;
550
Daniel Lezcano077d1d32017-10-19 19:05:44 +0200551 ret = hisi_thermal_register_sensor(pdev, data,
Kevin Wangtao107ec612017-10-22 10:54:34 +0200552 &data->sensor);
Daniel Lezcano077d1d32017-10-19 19:05:44 +0200553 if (ret) {
Kevin Wangtao107ec612017-10-22 10:54:34 +0200554 dev_err(dev, "failed to register thermal sensor: %d\n", ret);
Daniel Lezcano077d1d32017-10-19 19:05:44 +0200555 return ret;
kongxinwei9a5238a2015-05-20 19:16:37 +0800556 }
557
Kevin Wangtao107ec612017-10-22 10:54:34 +0200558 ret = data->enable_sensor(data);
Daniel Lezcano3cdf15a2017-10-19 19:05:51 +0200559 if (ret) {
Kevin Wangtao107ec612017-10-22 10:54:34 +0200560 dev_err(dev, "Failed to setup the sensor: %d\n", ret);
Daniel Lezcano3cdf15a2017-10-19 19:05:51 +0200561 return ret;
562 }
563
Kevin Wangtao107ec612017-10-22 10:54:34 +0200564 if (data->irq) {
565 ret = devm_request_threaded_irq(dev, data->irq, NULL,
566 hisi_thermal_alarm_irq_thread,
567 IRQF_ONESHOT, "hisi_thermal", data);
568 if (ret < 0) {
569 dev_err(dev, "failed to request alarm irq: %d\n", ret);
570 return ret;
571 }
Daniel Lezcano2dac5592017-10-19 19:05:45 +0200572 }
573
Daniel Lezcano72050102017-10-19 19:05:52 +0200574 hisi_thermal_toggle_sensor(&data->sensor, true);
Daniel Lezcano077d1d32017-10-19 19:05:44 +0200575
kongxinwei9a5238a2015-05-20 19:16:37 +0800576 return 0;
kongxinwei9a5238a2015-05-20 19:16:37 +0800577}
578
579static int hisi_thermal_remove(struct platform_device *pdev)
580{
581 struct hisi_thermal_data *data = platform_get_drvdata(pdev);
Daniel Lezcano72050102017-10-19 19:05:52 +0200582 struct hisi_thermal_sensor *sensor = &data->sensor;
kongxinwei9a5238a2015-05-20 19:16:37 +0800583
Daniel Lezcano077d1d32017-10-19 19:05:44 +0200584 hisi_thermal_toggle_sensor(sensor, false);
Kevin Wangtao107ec612017-10-22 10:54:34 +0200585
586 data->disable_sensor(data);
kongxinwei9a5238a2015-05-20 19:16:37 +0800587
588 return 0;
589}
590
591#ifdef CONFIG_PM_SLEEP
592static int hisi_thermal_suspend(struct device *dev)
593{
594 struct hisi_thermal_data *data = dev_get_drvdata(dev);
595
Kevin Wangtao107ec612017-10-22 10:54:34 +0200596 data->disable_sensor(data);
kongxinwei9a5238a2015-05-20 19:16:37 +0800597
kongxinwei9a5238a2015-05-20 19:16:37 +0800598 return 0;
599}
600
601static int hisi_thermal_resume(struct device *dev)
602{
603 struct hisi_thermal_data *data = dev_get_drvdata(dev);
604
Kevin Wangtao107ec612017-10-22 10:54:34 +0200605 return data->enable_sensor(data);
kongxinwei9a5238a2015-05-20 19:16:37 +0800606}
607#endif
608
609static SIMPLE_DEV_PM_OPS(hisi_thermal_pm_ops,
610 hisi_thermal_suspend, hisi_thermal_resume);
611
612static struct platform_driver hisi_thermal_driver = {
613 .driver = {
614 .name = "hisi_thermal",
kongxinwei9a5238a2015-05-20 19:16:37 +0800615 .pm = &hisi_thermal_pm_ops,
616 .of_match_table = of_hisi_thermal_match,
617 },
618 .probe = hisi_thermal_probe,
619 .remove = hisi_thermal_remove,
620};
621
622module_platform_driver(hisi_thermal_driver);
623
624MODULE_AUTHOR("Xinwei Kong <kong.kongxinwei@hisilicon.com>");
625MODULE_AUTHOR("Leo Yan <leo.yan@linaro.org>");
626MODULE_DESCRIPTION("Hisilicon thermal driver");
627MODULE_LICENSE("GPL v2");