blob: 1460cf9d9f1c397b7c3022431fa76de86cf45a7f [file] [log] [blame]
Kuninori Morimotod3165222018-08-20 11:42:35 -07001// SPDX-License-Identifier: GPL-2.0
Wolfram Sang564e73d2016-12-22 11:38:21 +01002/*
3 * R-Car Gen3 THS thermal sensor driver
4 * Based on rcar_thermal.c and work from Hien Dang and Khiem Nguyen.
5 *
6 * Copyright (C) 2016 Renesas Electronics Corporation.
7 * Copyright (C) 2016 Sang Engineering
Wolfram Sang564e73d2016-12-22 11:38:21 +01008 */
9#include <linux/delay.h>
10#include <linux/err.h>
11#include <linux/interrupt.h>
12#include <linux/io.h>
13#include <linux/module.h>
Wolfram Sang564e73d2016-12-22 11:38:21 +010014#include <linux/of_device.h>
15#include <linux/platform_device.h>
16#include <linux/pm_runtime.h>
Niklas Söderlundd668c802017-10-17 13:36:13 +020017#include <linux/sys_soc.h>
Wolfram Sang564e73d2016-12-22 11:38:21 +010018#include <linux/thermal.h>
19
Niklas Söderlund7d4b2692017-03-29 20:43:54 +020020#include "thermal_core.h"
Marek Vasut6269e9f2019-02-11 20:56:20 +010021#include "thermal_hwmon.h"
Niklas Söderlund7d4b2692017-03-29 20:43:54 +020022
Wolfram Sang564e73d2016-12-22 11:38:21 +010023/* Register offsets */
24#define REG_GEN3_IRQSTR 0x04
25#define REG_GEN3_IRQMSK 0x08
26#define REG_GEN3_IRQCTL 0x0C
27#define REG_GEN3_IRQEN 0x10
28#define REG_GEN3_IRQTEMP1 0x14
29#define REG_GEN3_IRQTEMP2 0x18
30#define REG_GEN3_IRQTEMP3 0x1C
31#define REG_GEN3_CTSR 0x20
32#define REG_GEN3_THCTR 0x20
33#define REG_GEN3_TEMP 0x28
34#define REG_GEN3_THCODE1 0x50
35#define REG_GEN3_THCODE2 0x54
36#define REG_GEN3_THCODE3 0x58
37
Niklas Söderlund7d4b2692017-03-29 20:43:54 +020038/* IRQ{STR,MSK,EN} bits */
39#define IRQ_TEMP1 BIT(0)
40#define IRQ_TEMP2 BIT(1)
41#define IRQ_TEMP3 BIT(2)
42#define IRQ_TEMPD1 BIT(3)
43#define IRQ_TEMPD2 BIT(4)
44#define IRQ_TEMPD3 BIT(5)
45
Wolfram Sang564e73d2016-12-22 11:38:21 +010046/* CTSR bits */
47#define CTSR_PONM BIT(8)
48#define CTSR_AOUT BIT(7)
49#define CTSR_THBGR BIT(5)
50#define CTSR_VMEN BIT(4)
51#define CTSR_VMST BIT(1)
52#define CTSR_THSST BIT(0)
53
54/* THCTR bits */
55#define THCTR_PONM BIT(6)
56#define THCTR_THSST BIT(0)
57
58#define CTEMP_MASK 0xFFF
59
60#define MCELSIUS(temp) ((temp) * 1000)
61#define GEN3_FUSE_MASK 0xFFF
62
63#define TSC_MAX_NUM 3
64
Yoshihiro Kaneko6a310f82019-05-14 05:03:55 +090065/* default THCODE values if FUSEs are missing */
66static const int thcode[TSC_MAX_NUM][3] = {
67 { 3397, 2800, 2221 },
68 { 3393, 2795, 2216 },
69 { 3389, 2805, 2237 },
70};
71
Wolfram Sang564e73d2016-12-22 11:38:21 +010072/* Structure for thermal temperature calculation */
73struct equation_coefs {
74 int a1;
75 int b1;
76 int a2;
77 int b2;
78};
79
80struct rcar_gen3_thermal_tsc {
81 void __iomem *base;
82 struct thermal_zone_device *zone;
83 struct equation_coefs coef;
Niklas Söderlund75f78d62017-03-29 20:43:56 +020084 int low;
85 int high;
Yoshihiro Kanekobdc44802019-05-14 05:03:54 +090086 int tj_t;
Yoshihiro Kaneko6a310f82019-05-14 05:03:55 +090087 int id; /* thermal channel id */
Wolfram Sang564e73d2016-12-22 11:38:21 +010088};
89
90struct rcar_gen3_thermal_priv {
91 struct rcar_gen3_thermal_tsc *tscs[TSC_MAX_NUM];
Niklas Söderlund97dad1f2017-03-29 20:43:53 +020092 unsigned int num_tscs;
Wolfram Sang564e73d2016-12-22 11:38:21 +010093 void (*thermal_init)(struct rcar_gen3_thermal_tsc *tsc);
94};
95
96static inline u32 rcar_gen3_thermal_read(struct rcar_gen3_thermal_tsc *tsc,
97 u32 reg)
98{
99 return ioread32(tsc->base + reg);
100}
101
102static inline void rcar_gen3_thermal_write(struct rcar_gen3_thermal_tsc *tsc,
103 u32 reg, u32 data)
104{
105 iowrite32(data, tsc->base + reg);
106}
107
108/*
109 * Linear approximation for temperature
110 *
111 * [reg] = [temp] * a + b => [temp] = ([reg] - b) / a
112 *
113 * The constants a and b are calculated using two triplets of int values PTAT
114 * and THCODE. PTAT and THCODE can either be read from hardware or use hard
115 * coded values from driver. The formula to calculate a and b are taken from
116 * BSP and sparsely documented and understood.
117 *
118 * Examining the linear formula and the formula used to calculate constants a
119 * and b while knowing that the span for PTAT and THCODE values are between
120 * 0x000 and 0xfff the largest integer possible is 0xfff * 0xfff == 0xffe001.
121 * Integer also needs to be signed so that leaves 7 bits for binary
122 * fixed point scaling.
123 */
124
125#define FIXPT_SHIFT 7
126#define FIXPT_INT(_x) ((_x) << FIXPT_SHIFT)
Niklas Söderlund7d4b2692017-03-29 20:43:54 +0200127#define INT_FIXPT(_x) ((_x) >> FIXPT_SHIFT)
Wolfram Sang564e73d2016-12-22 11:38:21 +0100128#define FIXPT_DIV(_a, _b) DIV_ROUND_CLOSEST(((_a) << FIXPT_SHIFT), (_b))
129#define FIXPT_TO_MCELSIUS(_x) ((_x) * 1000 >> FIXPT_SHIFT)
130
131#define RCAR3_THERMAL_GRAN 500 /* mili Celsius */
132
133/* no idea where these constants come from */
Wolfram Sang564e73d2016-12-22 11:38:21 +0100134#define TJ_3 -41
135
Yoshihiro Kanekobdc44802019-05-14 05:03:54 +0900136static void rcar_gen3_thermal_calc_coefs(struct rcar_gen3_thermal_tsc *tsc,
Yoshihiro Kaneko6a310f82019-05-14 05:03:55 +0900137 int *ptat, const int *thcode,
Yoshihiro Kaneko4eb39f72019-05-14 05:03:53 +0900138 int ths_tj_1)
Wolfram Sang564e73d2016-12-22 11:38:21 +0100139{
Wolfram Sang564e73d2016-12-22 11:38:21 +0100140 /* TODO: Find documentation and document constant calculation formula */
141
142 /*
143 * Division is not scaled in BSP and if scaled it might overflow
144 * the dividend (4095 * 4095 << 14 > INT_MAX) so keep it unscaled
145 */
Yoshihiro Kanekobdc44802019-05-14 05:03:54 +0900146 tsc->tj_t = (FIXPT_INT((ptat[1] - ptat[2]) * 157)
147 / (ptat[0] - ptat[2])) + FIXPT_INT(TJ_3);
Wolfram Sang564e73d2016-12-22 11:38:21 +0100148
Yoshihiro Kanekobdc44802019-05-14 05:03:54 +0900149 tsc->coef.a1 = FIXPT_DIV(FIXPT_INT(thcode[1] - thcode[2]),
150 tsc->tj_t - FIXPT_INT(TJ_3));
151 tsc->coef.b1 = FIXPT_INT(thcode[2]) - tsc->coef.a1 * TJ_3;
Wolfram Sang564e73d2016-12-22 11:38:21 +0100152
Yoshihiro Kanekobdc44802019-05-14 05:03:54 +0900153 tsc->coef.a2 = FIXPT_DIV(FIXPT_INT(thcode[1] - thcode[0]),
154 tsc->tj_t - FIXPT_INT(ths_tj_1));
155 tsc->coef.b2 = FIXPT_INT(thcode[0]) - tsc->coef.a2 * ths_tj_1;
Wolfram Sang564e73d2016-12-22 11:38:21 +0100156}
157
158static int rcar_gen3_thermal_round(int temp)
159{
160 int result, round_offs;
161
162 round_offs = temp >= 0 ? RCAR3_THERMAL_GRAN / 2 :
163 -RCAR3_THERMAL_GRAN / 2;
164 result = (temp + round_offs) / RCAR3_THERMAL_GRAN;
165 return result * RCAR3_THERMAL_GRAN;
166}
167
168static int rcar_gen3_thermal_get_temp(void *devdata, int *temp)
169{
170 struct rcar_gen3_thermal_tsc *tsc = devdata;
Yoshihiro Kaneko6a310f82019-05-14 05:03:55 +0900171 int mcelsius, val;
Wolfram Sang564e73d2016-12-22 11:38:21 +0100172 u32 reg;
173
174 /* Read register and convert to mili Celsius */
Wolfram Sang564e73d2016-12-22 11:38:21 +0100175 reg = rcar_gen3_thermal_read(tsc, REG_GEN3_TEMP) & CTEMP_MASK;
176
Yoshihiro Kaneko6a310f82019-05-14 05:03:55 +0900177 if (reg <= thcode[tsc->id][1])
178 val = FIXPT_DIV(FIXPT_INT(reg) - tsc->coef.b1,
179 tsc->coef.a1);
180 else
181 val = FIXPT_DIV(FIXPT_INT(reg) - tsc->coef.b2,
182 tsc->coef.a2);
183 mcelsius = FIXPT_TO_MCELSIUS(val);
Wolfram Sang564e73d2016-12-22 11:38:21 +0100184
Wolfram Sang564e73d2016-12-22 11:38:21 +0100185 /* Make sure we are inside specifications */
186 if ((mcelsius < MCELSIUS(-40)) || (mcelsius > MCELSIUS(125)))
187 return -EIO;
188
189 /* Round value to device granularity setting */
190 *temp = rcar_gen3_thermal_round(mcelsius);
191
192 return 0;
193}
194
Niklas Söderlund7d4b2692017-03-29 20:43:54 +0200195static int rcar_gen3_thermal_mcelsius_to_temp(struct rcar_gen3_thermal_tsc *tsc,
196 int mcelsius)
197{
Yoshihiro Kanekobdc44802019-05-14 05:03:54 +0900198 int celsius, val;
Niklas Söderlund7d4b2692017-03-29 20:43:54 +0200199
200 celsius = DIV_ROUND_CLOSEST(mcelsius, 1000);
Yoshihiro Kanekobdc44802019-05-14 05:03:54 +0900201 if (celsius <= INT_FIXPT(tsc->tj_t))
202 val = celsius * tsc->coef.a1 + tsc->coef.b1;
203 else
204 val = celsius * tsc->coef.a2 + tsc->coef.b2;
Niklas Söderlund7d4b2692017-03-29 20:43:54 +0200205
Yoshihiro Kanekobdc44802019-05-14 05:03:54 +0900206 return INT_FIXPT(val);
Niklas Söderlund7d4b2692017-03-29 20:43:54 +0200207}
208
209static int rcar_gen3_thermal_set_trips(void *devdata, int low, int high)
210{
211 struct rcar_gen3_thermal_tsc *tsc = devdata;
212
Niklas Söderlund270ba432018-04-17 22:57:47 +0200213 low = clamp_val(low, -40000, 120000);
214 high = clamp_val(high, -40000, 120000);
Niklas Söderlund7d4b2692017-03-29 20:43:54 +0200215
216 rcar_gen3_thermal_write(tsc, REG_GEN3_IRQTEMP1,
217 rcar_gen3_thermal_mcelsius_to_temp(tsc, low));
218
219 rcar_gen3_thermal_write(tsc, REG_GEN3_IRQTEMP2,
220 rcar_gen3_thermal_mcelsius_to_temp(tsc, high));
221
Niklas Söderlund75f78d62017-03-29 20:43:56 +0200222 tsc->low = low;
223 tsc->high = high;
224
Niklas Söderlund7d4b2692017-03-29 20:43:54 +0200225 return 0;
226}
227
Julia Lawalla0def102017-08-08 17:08:57 +0200228static const struct thermal_zone_of_device_ops rcar_gen3_tz_of_ops = {
Wolfram Sang564e73d2016-12-22 11:38:21 +0100229 .get_temp = rcar_gen3_thermal_get_temp,
Niklas Söderlund7d4b2692017-03-29 20:43:54 +0200230 .set_trips = rcar_gen3_thermal_set_trips,
Wolfram Sang564e73d2016-12-22 11:38:21 +0100231};
232
Niklas Söderlund7d4b2692017-03-29 20:43:54 +0200233static void rcar_thermal_irq_set(struct rcar_gen3_thermal_priv *priv, bool on)
234{
235 unsigned int i;
236 u32 val = on ? IRQ_TEMPD1 | IRQ_TEMP2 : 0;
237
238 for (i = 0; i < priv->num_tscs; i++)
239 rcar_gen3_thermal_write(priv->tscs[i], REG_GEN3_IRQMSK, val);
240}
241
242static irqreturn_t rcar_gen3_thermal_irq(int irq, void *data)
243{
244 struct rcar_gen3_thermal_priv *priv = data;
245 u32 status;
Jiada Wang2c0928c2019-04-24 14:11:44 +0900246 int i;
Niklas Söderlund7d4b2692017-03-29 20:43:54 +0200247
Niklas Söderlund7d4b2692017-03-29 20:43:54 +0200248 for (i = 0; i < priv->num_tscs; i++) {
249 status = rcar_gen3_thermal_read(priv->tscs[i], REG_GEN3_IRQSTR);
250 rcar_gen3_thermal_write(priv->tscs[i], REG_GEN3_IRQSTR, 0);
251 if (status)
Jiada Wang2c0928c2019-04-24 14:11:44 +0900252 thermal_zone_device_update(priv->tscs[i]->zone,
253 THERMAL_EVENT_UNSPECIFIED);
Niklas Söderlund7d4b2692017-03-29 20:43:54 +0200254 }
255
Niklas Söderlund7d4b2692017-03-29 20:43:54 +0200256 return IRQ_HANDLED;
257}
258
Niklas Söderlundd668c802017-10-17 13:36:13 +0200259static const struct soc_device_attribute r8a7795es1[] = {
260 { .soc_id = "r8a7795", .revision = "ES1.*" },
261 { /* sentinel */ }
262};
263
264static void rcar_gen3_thermal_init_r8a7795es1(struct rcar_gen3_thermal_tsc *tsc)
Wolfram Sang564e73d2016-12-22 11:38:21 +0100265{
266 rcar_gen3_thermal_write(tsc, REG_GEN3_CTSR, CTSR_THBGR);
267 rcar_gen3_thermal_write(tsc, REG_GEN3_CTSR, 0x0);
268
269 usleep_range(1000, 2000);
270
271 rcar_gen3_thermal_write(tsc, REG_GEN3_CTSR, CTSR_PONM);
Niklas Söderlund7d4b2692017-03-29 20:43:54 +0200272
Wolfram Sang564e73d2016-12-22 11:38:21 +0100273 rcar_gen3_thermal_write(tsc, REG_GEN3_IRQCTL, 0x3F);
Niklas Söderlund7d4b2692017-03-29 20:43:54 +0200274 rcar_gen3_thermal_write(tsc, REG_GEN3_IRQMSK, 0);
275 rcar_gen3_thermal_write(tsc, REG_GEN3_IRQEN, IRQ_TEMPD1 | IRQ_TEMP2);
276
Wolfram Sang564e73d2016-12-22 11:38:21 +0100277 rcar_gen3_thermal_write(tsc, REG_GEN3_CTSR,
278 CTSR_PONM | CTSR_AOUT | CTSR_THBGR | CTSR_VMEN);
279
280 usleep_range(100, 200);
281
282 rcar_gen3_thermal_write(tsc, REG_GEN3_CTSR,
283 CTSR_PONM | CTSR_AOUT | CTSR_THBGR | CTSR_VMEN |
284 CTSR_VMST | CTSR_THSST);
285
286 usleep_range(1000, 2000);
287}
288
Niklas Söderlundd668c802017-10-17 13:36:13 +0200289static void rcar_gen3_thermal_init(struct rcar_gen3_thermal_tsc *tsc)
Wolfram Sang564e73d2016-12-22 11:38:21 +0100290{
291 u32 reg_val;
292
293 reg_val = rcar_gen3_thermal_read(tsc, REG_GEN3_THCTR);
294 reg_val &= ~THCTR_PONM;
295 rcar_gen3_thermal_write(tsc, REG_GEN3_THCTR, reg_val);
296
297 usleep_range(1000, 2000);
298
Hoan Nguyen Aned1b1ac2019-03-27 18:03:18 +0900299 rcar_gen3_thermal_write(tsc, REG_GEN3_IRQCTL, 0);
Niklas Söderlund7d4b2692017-03-29 20:43:54 +0200300 rcar_gen3_thermal_write(tsc, REG_GEN3_IRQMSK, 0);
301 rcar_gen3_thermal_write(tsc, REG_GEN3_IRQEN, IRQ_TEMPD1 | IRQ_TEMP2);
302
Wolfram Sang564e73d2016-12-22 11:38:21 +0100303 reg_val = rcar_gen3_thermal_read(tsc, REG_GEN3_THCTR);
304 reg_val |= THCTR_THSST;
305 rcar_gen3_thermal_write(tsc, REG_GEN3_THCTR, reg_val);
Niklas Söderlund78aefd22017-03-29 20:43:50 +0200306
307 usleep_range(1000, 2000);
Wolfram Sang564e73d2016-12-22 11:38:21 +0100308}
309
Yoshihiro Kaneko4eb39f72019-05-14 05:03:53 +0900310static const int rcar_gen3_ths_tj_1 = 126;
311static const int rcar_gen3_ths_tj_1_m3_w = 116;
Wolfram Sang564e73d2016-12-22 11:38:21 +0100312static const struct of_device_id rcar_gen3_thermal_dt_ids[] = {
Yoshihiro Kaneko4eb39f72019-05-14 05:03:53 +0900313 {
314 .compatible = "renesas,r8a774a1-thermal",
315 .data = &rcar_gen3_ths_tj_1_m3_w,
316 },
317 {
Biju Das1a005912019-09-23 15:25:46 +0100318 .compatible = "renesas,r8a774b1-thermal",
319 .data = &rcar_gen3_ths_tj_1,
320 },
321 {
Yoshihiro Kaneko4eb39f72019-05-14 05:03:53 +0900322 .compatible = "renesas,r8a7795-thermal",
323 .data = &rcar_gen3_ths_tj_1,
324 },
325 {
326 .compatible = "renesas,r8a7796-thermal",
327 .data = &rcar_gen3_ths_tj_1_m3_w,
328 },
329 {
330 .compatible = "renesas,r8a77965-thermal",
331 .data = &rcar_gen3_ths_tj_1,
332 },
333 {
334 .compatible = "renesas,r8a77980-thermal",
335 .data = &rcar_gen3_ths_tj_1,
336 },
Wolfram Sang564e73d2016-12-22 11:38:21 +0100337 {},
338};
339MODULE_DEVICE_TABLE(of, rcar_gen3_thermal_dt_ids);
340
341static int rcar_gen3_thermal_remove(struct platform_device *pdev)
342{
343 struct device *dev = &pdev->dev;
Jiada Wang63f55fc2019-04-24 14:11:45 +0900344 struct rcar_gen3_thermal_priv *priv = dev_get_drvdata(dev);
345
346 rcar_thermal_irq_set(priv, false);
Wolfram Sang564e73d2016-12-22 11:38:21 +0100347
348 pm_runtime_put(dev);
349 pm_runtime_disable(dev);
350
351 return 0;
352}
353
Marek Vasut6269e9f2019-02-11 20:56:20 +0100354static void rcar_gen3_hwmon_action(void *data)
355{
356 struct thermal_zone_device *zone = data;
357
358 thermal_remove_hwmon_sysfs(zone);
359}
360
Wolfram Sang564e73d2016-12-22 11:38:21 +0100361static int rcar_gen3_thermal_probe(struct platform_device *pdev)
362{
363 struct rcar_gen3_thermal_priv *priv;
364 struct device *dev = &pdev->dev;
Yoshihiro Kaneko4eb39f72019-05-14 05:03:53 +0900365 const int *rcar_gen3_ths_tj_1 = of_device_get_match_data(dev);
Wolfram Sang564e73d2016-12-22 11:38:21 +0100366 struct resource *res;
367 struct thermal_zone_device *zone;
Niklas Söderlund7d4b2692017-03-29 20:43:54 +0200368 int ret, irq, i;
369 char *irqname;
Wolfram Sang564e73d2016-12-22 11:38:21 +0100370
371 /* default values if FUSEs are missing */
372 /* TODO: Read values from hardware on supported platforms */
Hien Dangfc66ddf2018-04-17 22:57:46 +0200373 int ptat[3] = { 2631, 1509, 435 };
Wolfram Sang564e73d2016-12-22 11:38:21 +0100374
375 priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
376 if (!priv)
377 return -ENOMEM;
378
Niklas Söderlundd668c802017-10-17 13:36:13 +0200379 priv->thermal_init = rcar_gen3_thermal_init;
380 if (soc_device_match(r8a7795es1))
381 priv->thermal_init = rcar_gen3_thermal_init_r8a7795es1;
Niklas Söderlundcc4d0722017-03-29 20:43:55 +0200382
Wolfram Sang564e73d2016-12-22 11:38:21 +0100383 platform_set_drvdata(pdev, priv);
384
Niklas Söderlund7d4b2692017-03-29 20:43:54 +0200385 /*
386 * Request 2 (of the 3 possible) IRQs, the driver only needs to
387 * to trigger on the low and high trip points of the current
388 * temp window at this point.
389 */
390 for (i = 0; i < 2; i++) {
391 irq = platform_get_irq(pdev, i);
392 if (irq < 0)
393 return irq;
394
395 irqname = devm_kasprintf(dev, GFP_KERNEL, "%s:ch%d",
396 dev_name(dev), i);
397 if (!irqname)
398 return -ENOMEM;
399
Jiada Wang2c0928c2019-04-24 14:11:44 +0900400 ret = devm_request_threaded_irq(dev, irq, NULL,
401 rcar_gen3_thermal_irq,
402 IRQF_ONESHOT, irqname, priv);
Niklas Söderlund7d4b2692017-03-29 20:43:54 +0200403 if (ret)
404 return ret;
405 }
406
Wolfram Sang564e73d2016-12-22 11:38:21 +0100407 pm_runtime_enable(dev);
408 pm_runtime_get_sync(dev);
409
410 for (i = 0; i < TSC_MAX_NUM; i++) {
411 struct rcar_gen3_thermal_tsc *tsc;
412
Niklas Söderlundd51546c2017-03-29 20:43:52 +0200413 res = platform_get_resource(pdev, IORESOURCE_MEM, i);
414 if (!res)
415 break;
416
Wolfram Sang564e73d2016-12-22 11:38:21 +0100417 tsc = devm_kzalloc(dev, sizeof(*tsc), GFP_KERNEL);
418 if (!tsc) {
419 ret = -ENOMEM;
420 goto error_unregister;
421 }
422
Wolfram Sang564e73d2016-12-22 11:38:21 +0100423 tsc->base = devm_ioremap_resource(dev, res);
424 if (IS_ERR(tsc->base)) {
425 ret = PTR_ERR(tsc->base);
426 goto error_unregister;
427 }
Yoshihiro Kaneko6a310f82019-05-14 05:03:55 +0900428 tsc->id = i;
Wolfram Sang564e73d2016-12-22 11:38:21 +0100429
430 priv->tscs[i] = tsc;
Wolfram Sang564e73d2016-12-22 11:38:21 +0100431
Niklas Söderlundd668c802017-10-17 13:36:13 +0200432 priv->thermal_init(tsc);
Yoshihiro Kanekobdc44802019-05-14 05:03:54 +0900433 rcar_gen3_thermal_calc_coefs(tsc, ptat, thcode[i],
Yoshihiro Kaneko4eb39f72019-05-14 05:03:53 +0900434 *rcar_gen3_ths_tj_1);
Wolfram Sang564e73d2016-12-22 11:38:21 +0100435
436 zone = devm_thermal_zone_of_sensor_register(dev, i, tsc,
437 &rcar_gen3_tz_of_ops);
438 if (IS_ERR(zone)) {
439 dev_err(dev, "Can't register thermal zone\n");
440 ret = PTR_ERR(zone);
441 goto error_unregister;
442 }
443 tsc->zone = zone;
Niklas Söderlund7d4b2692017-03-29 20:43:54 +0200444
Marek Vasut6269e9f2019-02-11 20:56:20 +0100445 tsc->zone->tzp->no_hwmon = false;
446 ret = thermal_add_hwmon_sysfs(tsc->zone);
447 if (ret)
448 goto error_unregister;
449
Fuqian Huangb9cd1662019-07-08 20:34:09 +0800450 ret = devm_add_action_or_reset(dev, rcar_gen3_hwmon_action, zone);
Marek Vasut6269e9f2019-02-11 20:56:20 +0100451 if (ret) {
Marek Vasut6269e9f2019-02-11 20:56:20 +0100452 goto error_unregister;
453 }
454
Jiada Wange380ea82019-05-09 18:09:17 +0900455 ret = of_thermal_get_ntrips(tsc->zone);
456 if (ret < 0)
457 goto error_unregister;
458
Niklas Söderlund7d4b2692017-03-29 20:43:54 +0200459 dev_info(dev, "TSC%d: Loaded %d trip points\n", i, ret);
Wolfram Sang564e73d2016-12-22 11:38:21 +0100460 }
461
Niklas Söderlund97dad1f2017-03-29 20:43:53 +0200462 priv->num_tscs = i;
463
464 if (!priv->num_tscs) {
465 ret = -ENODEV;
466 goto error_unregister;
467 }
468
Niklas Söderlund7d4b2692017-03-29 20:43:54 +0200469 rcar_thermal_irq_set(priv, true);
470
Wolfram Sang564e73d2016-12-22 11:38:21 +0100471 return 0;
472
473error_unregister:
474 rcar_gen3_thermal_remove(pdev);
475
476 return ret;
477}
478
Niklas Söderlund75f78d62017-03-29 20:43:56 +0200479static int __maybe_unused rcar_gen3_thermal_suspend(struct device *dev)
480{
481 struct rcar_gen3_thermal_priv *priv = dev_get_drvdata(dev);
482
483 rcar_thermal_irq_set(priv, false);
484
485 return 0;
486}
487
488static int __maybe_unused rcar_gen3_thermal_resume(struct device *dev)
489{
490 struct rcar_gen3_thermal_priv *priv = dev_get_drvdata(dev);
491 unsigned int i;
492
493 for (i = 0; i < priv->num_tscs; i++) {
494 struct rcar_gen3_thermal_tsc *tsc = priv->tscs[i];
495
Niklas Söderlundd668c802017-10-17 13:36:13 +0200496 priv->thermal_init(tsc);
Niklas Söderlund75f78d62017-03-29 20:43:56 +0200497 rcar_gen3_thermal_set_trips(tsc, tsc->low, tsc->high);
498 }
499
500 rcar_thermal_irq_set(priv, true);
501
502 return 0;
503}
504
505static SIMPLE_DEV_PM_OPS(rcar_gen3_thermal_pm_ops, rcar_gen3_thermal_suspend,
506 rcar_gen3_thermal_resume);
507
Wolfram Sang564e73d2016-12-22 11:38:21 +0100508static struct platform_driver rcar_gen3_thermal_driver = {
509 .driver = {
510 .name = "rcar_gen3_thermal",
Niklas Söderlund75f78d62017-03-29 20:43:56 +0200511 .pm = &rcar_gen3_thermal_pm_ops,
Wolfram Sang564e73d2016-12-22 11:38:21 +0100512 .of_match_table = rcar_gen3_thermal_dt_ids,
513 },
514 .probe = rcar_gen3_thermal_probe,
515 .remove = rcar_gen3_thermal_remove,
516};
517module_platform_driver(rcar_gen3_thermal_driver);
518
519MODULE_LICENSE("GPL v2");
520MODULE_DESCRIPTION("R-Car Gen3 THS thermal sensor driver");
521MODULE_AUTHOR("Wolfram Sang <wsa+renesas@sang-engineering.com>");