]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - drivers/thermal/rockchip_thermal.c
Merge branch 'net-hns-bugfixes-for-HNS-Driver'
[thirdparty/kernel/stable.git] / drivers / thermal / rockchip_thermal.c
CommitLineData
cbac8f63 1/*
678065d5 2 * Copyright (c) 2014-2016, Fuzhou Rockchip Electronics Co., Ltd
20f0af75
CW
3 * Caesar Wang <wxt@rock-chips.com>
4 *
cbac8f63
CW
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 */
14
15#include <linux/clk.h>
16#include <linux/delay.h>
17#include <linux/interrupt.h>
18#include <linux/io.h>
19#include <linux/module.h>
20#include <linux/of.h>
21#include <linux/of_address.h>
22#include <linux/of_irq.h>
23#include <linux/platform_device.h>
b9484763 24#include <linux/regmap.h>
cbac8f63
CW
25#include <linux/reset.h>
26#include <linux/thermal.h>
b9484763 27#include <linux/mfd/syscon.h>
c970872e 28#include <linux/pinctrl/consumer.h>
cbac8f63
CW
29
30/**
31 * If the temperature over a period of time High,
32 * the resulting TSHUT gave CRU module,let it reset the entire chip,
33 * or via GPIO give PMIC.
34 */
35enum tshut_mode {
36 TSHUT_MODE_CRU = 0,
37 TSHUT_MODE_GPIO,
38};
39
40/**
13c1cfda 41 * The system Temperature Sensors tshut(tshut) polarity
cbac8f63
CW
42 * the bit 8 is tshut polarity.
43 * 0: low active, 1: high active
44 */
45enum tshut_polarity {
46 TSHUT_LOW_ACTIVE = 0,
47 TSHUT_HIGH_ACTIVE,
48};
49
50/**
1d98b618
CW
51 * The system has two Temperature Sensors.
52 * sensor0 is for CPU, and sensor1 is for GPU.
cbac8f63
CW
53 */
54enum sensor_id {
1d98b618 55 SENSOR_CPU = 0,
cbac8f63
CW
56 SENSOR_GPU,
57};
58
020ba95d 59/**
13c1cfda 60 * The conversion table has the adc value and temperature.
952418a3
CW
61 * ADC_DECREMENT: the adc value is of diminishing.(e.g. rk3288_code_table)
62 * ADC_INCREMENT: the adc value is incremental.(e.g. rk3368_code_table)
13c1cfda 63 */
020ba95d
CW
64enum adc_sort_mode {
65 ADC_DECREMENT = 0,
66 ADC_INCREMENT,
67};
68
1d98b618
CW
69/**
70 * The max sensors is two in rockchip SoCs.
71 * Two sensors: CPU and GPU sensor.
72 */
73#define SOC_MAX_SENSORS 2
74
13c1cfda 75/**
678065d5 76 * struct chip_tsadc_table - hold information about chip-specific differences
13c1cfda
CW
77 * @id: conversion table
78 * @length: size of conversion table
79 * @data_mask: mask to apply on data inputs
80 * @mode: sort mode of this adc variant (incrementing or decrementing)
81 */
ce74110d
CW
82struct chip_tsadc_table {
83 const struct tsadc_table *id;
ce74110d 84 unsigned int length;
ce74110d 85 u32 data_mask;
020ba95d 86 enum adc_sort_mode mode;
ce74110d
CW
87};
88
678065d5
CW
89/**
90 * struct rockchip_tsadc_chip - hold the private data of tsadc chip
91 * @chn_id[SOC_MAX_SENSORS]: the sensor id of chip correspond to the channel
92 * @chn_num: the channel number of tsadc chip
93 * @tshut_temp: the hardware-controlled shutdown temperature value
94 * @tshut_mode: the hardware-controlled shutdown mode (0:CRU 1:GPIO)
95 * @tshut_polarity: the hardware-controlled active polarity (0:LOW 1:HIGH)
96 * @initialize: SoC special initialize tsadc controller method
97 * @irq_ack: clear the interrupt
98 * @get_temp: get the temperature
14848502 99 * @set_alarm_temp: set the high temperature interrupt
678065d5
CW
100 * @set_tshut_temp: set the hardware-controlled shutdown temperature
101 * @set_tshut_mode: set the hardware-controlled shutdown mode
102 * @table: the chip-specific conversion table
103 */
cbac8f63 104struct rockchip_tsadc_chip {
1d98b618
CW
105 /* The sensor id of chip correspond to the ADC channel */
106 int chn_id[SOC_MAX_SENSORS];
107 int chn_num;
108
cbac8f63 109 /* The hardware-controlled tshut property */
437df217 110 int tshut_temp;
cbac8f63
CW
111 enum tshut_mode tshut_mode;
112 enum tshut_polarity tshut_polarity;
113
114 /* Chip-wide methods */
b9484763
CW
115 void (*initialize)(struct regmap *grf,
116 void __iomem *reg, enum tshut_polarity p);
cbac8f63
CW
117 void (*irq_ack)(void __iomem *reg);
118 void (*control)(void __iomem *reg, bool on);
119
120 /* Per-sensor methods */
cdd8b3f7 121 int (*get_temp)(const struct chip_tsadc_table *table,
ce74110d 122 int chn, void __iomem *reg, int *temp);
d3530497
CW
123 int (*set_alarm_temp)(const struct chip_tsadc_table *table,
124 int chn, void __iomem *reg, int temp);
125 int (*set_tshut_temp)(const struct chip_tsadc_table *table,
126 int chn, void __iomem *reg, int temp);
cbac8f63 127 void (*set_tshut_mode)(int chn, void __iomem *reg, enum tshut_mode m);
ce74110d
CW
128
129 /* Per-table methods */
130 struct chip_tsadc_table table;
cbac8f63
CW
131};
132
678065d5
CW
133/**
134 * struct rockchip_thermal_sensor - hold the information of thermal sensor
135 * @thermal: pointer to the platform/configuration data
136 * @tzd: pointer to a thermal zone
137 * @id: identifier of the thermal sensor
138 */
cbac8f63
CW
139struct rockchip_thermal_sensor {
140 struct rockchip_thermal_data *thermal;
141 struct thermal_zone_device *tzd;
1d98b618 142 int id;
cbac8f63
CW
143};
144
678065d5
CW
145/**
146 * struct rockchip_thermal_data - hold the private data of thermal driver
147 * @chip: pointer to the platform/configuration data
148 * @pdev: platform device of thermal
149 * @reset: the reset controller of tsadc
150 * @sensors[SOC_MAX_SENSORS]: the thermal sensor
151 * @clk: the controller clock is divided by the exteral 24MHz
152 * @pclk: the advanced peripherals bus clock
153 * @grf: the general register file will be used to do static set by software
154 * @regs: the base address of tsadc controller
155 * @tshut_temp: the hardware-controlled shutdown temperature value
156 * @tshut_mode: the hardware-controlled shutdown mode (0:CRU 1:GPIO)
157 * @tshut_polarity: the hardware-controlled active polarity (0:LOW 1:HIGH)
158 */
cbac8f63
CW
159struct rockchip_thermal_data {
160 const struct rockchip_tsadc_chip *chip;
161 struct platform_device *pdev;
162 struct reset_control *reset;
163
1d98b618 164 struct rockchip_thermal_sensor sensors[SOC_MAX_SENSORS];
cbac8f63
CW
165
166 struct clk *clk;
167 struct clk *pclk;
168
b9484763 169 struct regmap *grf;
cbac8f63
CW
170 void __iomem *regs;
171
437df217 172 int tshut_temp;
cbac8f63
CW
173 enum tshut_mode tshut_mode;
174 enum tshut_polarity tshut_polarity;
175};
176
952418a3
CW
177/**
178 * TSADC Sensor Register description:
179 *
180 * TSADCV2_* are used for RK3288 SoCs, the other chips can reuse it.
181 * TSADCV3_* are used for newer SoCs than RK3288. (e.g: RK3228, RK3399)
182 *
183 */
b9484763 184#define TSADCV2_USER_CON 0x00
cbac8f63
CW
185#define TSADCV2_AUTO_CON 0x04
186#define TSADCV2_INT_EN 0x08
187#define TSADCV2_INT_PD 0x0c
188#define TSADCV2_DATA(chn) (0x20 + (chn) * 0x04)
14848502 189#define TSADCV2_COMP_INT(chn) (0x30 + (chn) * 0x04)
cbac8f63
CW
190#define TSADCV2_COMP_SHUT(chn) (0x40 + (chn) * 0x04)
191#define TSADCV2_HIGHT_INT_DEBOUNCE 0x60
192#define TSADCV2_HIGHT_TSHUT_DEBOUNCE 0x64
193#define TSADCV2_AUTO_PERIOD 0x68
194#define TSADCV2_AUTO_PERIOD_HT 0x6c
195
196#define TSADCV2_AUTO_EN BIT(0)
cbac8f63
CW
197#define TSADCV2_AUTO_SRC_EN(chn) BIT(4 + (chn))
198#define TSADCV2_AUTO_TSHUT_POLARITY_HIGH BIT(8)
678065d5 199
7ea38c6c 200#define TSADCV3_AUTO_Q_SEL_EN BIT(1)
cbac8f63
CW
201
202#define TSADCV2_INT_SRC_EN(chn) BIT(chn)
203#define TSADCV2_SHUT_2GPIO_SRC_EN(chn) BIT(4 + (chn))
204#define TSADCV2_SHUT_2CRU_SRC_EN(chn) BIT(8 + (chn))
205
452e01b3 206#define TSADCV2_INT_PD_CLEAR_MASK ~BIT(8)
952418a3 207#define TSADCV3_INT_PD_CLEAR_MASK ~BIT(16)
cbac8f63
CW
208
209#define TSADCV2_DATA_MASK 0xfff
20f0af75
CW
210#define TSADCV3_DATA_MASK 0x3ff
211
cbac8f63
CW
212#define TSADCV2_HIGHT_INT_DEBOUNCE_COUNT 4
213#define TSADCV2_HIGHT_TSHUT_DEBOUNCE_COUNT 4
46667879
CW
214#define TSADCV2_AUTO_PERIOD_TIME 250 /* 250ms */
215#define TSADCV2_AUTO_PERIOD_HT_TIME 50 /* 50ms */
5ef62de7
RH
216#define TSADCV3_AUTO_PERIOD_TIME 1875 /* 2.5ms */
217#define TSADCV3_AUTO_PERIOD_HT_TIME 1875 /* 2.5ms */
46667879 218
b9484763
CW
219#define TSADCV2_USER_INTER_PD_SOC 0x340 /* 13 clocks */
220
221#define GRF_SARADC_TESTBIT 0x0e644
222#define GRF_TSADC_TESTBIT_L 0x0e648
223#define GRF_TSADC_TESTBIT_H 0x0e64c
224
b9484763
CW
225#define GRF_SARADC_TESTBIT_ON (0x10001 << 2)
226#define GRF_TSADC_TESTBIT_H_ON (0x10001 << 2)
23f75e48
RH
227#define GRF_TSADC_VCM_EN_L (0x10001 << 7)
228#define GRF_TSADC_VCM_EN_H (0x10001 << 7)
cbac8f63 229
7b02a5e7 230/**
678065d5
CW
231 * struct tsadc_table - code to temperature conversion table
232 * @code: the value of adc channel
233 * @temp: the temperature
7b02a5e7 234 * Note:
678065d5 235 * code to temperature mapping of the temperature sensor is a piece wise linear
7b02a5e7
CW
236 * curve.Any temperature, code faling between to 2 give temperatures can be
237 * linearly interpolated.
678065d5 238 * Code to Temperature mapping should be updated based on manufacturer results.
7b02a5e7 239 */
678065d5
CW
240struct tsadc_table {
241 u32 code;
242 int temp;
243};
244
4eca8cac
RH
245static const struct tsadc_table rv1108_table[] = {
246 {0, -40000},
247 {374, -40000},
248 {382, -35000},
249 {389, -30000},
250 {397, -25000},
251 {405, -20000},
252 {413, -15000},
253 {421, -10000},
254 {429, -5000},
255 {436, 0},
256 {444, 5000},
257 {452, 10000},
258 {460, 15000},
259 {468, 20000},
260 {476, 25000},
261 {483, 30000},
262 {491, 35000},
263 {499, 40000},
264 {507, 45000},
265 {515, 50000},
266 {523, 55000},
267 {531, 60000},
268 {539, 65000},
269 {547, 70000},
270 {555, 75000},
271 {562, 80000},
272 {570, 85000},
273 {578, 90000},
274 {586, 95000},
275 {594, 100000},
276 {602, 105000},
277 {610, 110000},
278 {618, 115000},
279 {626, 120000},
280 {634, 125000},
281 {TSADCV2_DATA_MASK, 125000},
282};
283
952418a3 284static const struct tsadc_table rk3228_code_table[] = {
7ea38c6c
CW
285 {0, -40000},
286 {588, -40000},
287 {593, -35000},
288 {598, -30000},
289 {603, -25000},
290 {608, -20000},
291 {613, -15000},
292 {618, -10000},
293 {623, -5000},
294 {629, 0},
295 {634, 5000},
296 {639, 10000},
297 {644, 15000},
298 {649, 20000},
299 {654, 25000},
300 {660, 30000},
301 {665, 35000},
302 {670, 40000},
303 {675, 45000},
304 {681, 50000},
305 {686, 55000},
306 {691, 60000},
307 {696, 65000},
308 {702, 70000},
309 {707, 75000},
310 {712, 80000},
311 {717, 85000},
312 {723, 90000},
313 {728, 95000},
314 {733, 100000},
315 {738, 105000},
316 {744, 110000},
317 {749, 115000},
318 {754, 120000},
319 {760, 125000},
320 {TSADCV2_DATA_MASK, 125000},
7b02a5e7
CW
321};
322
952418a3 323static const struct tsadc_table rk3288_code_table[] = {
cbac8f63
CW
324 {TSADCV2_DATA_MASK, -40000},
325 {3800, -40000},
326 {3792, -35000},
327 {3783, -30000},
328 {3774, -25000},
329 {3765, -20000},
330 {3756, -15000},
331 {3747, -10000},
332 {3737, -5000},
333 {3728, 0},
334 {3718, 5000},
335 {3708, 10000},
336 {3698, 15000},
337 {3688, 20000},
338 {3678, 25000},
339 {3667, 30000},
340 {3656, 35000},
341 {3645, 40000},
342 {3634, 45000},
343 {3623, 50000},
344 {3611, 55000},
345 {3600, 60000},
346 {3588, 65000},
347 {3575, 70000},
348 {3563, 75000},
349 {3550, 80000},
350 {3537, 85000},
351 {3524, 90000},
352 {3510, 95000},
353 {3496, 100000},
354 {3482, 105000},
355 {3467, 110000},
356 {3452, 115000},
357 {3437, 120000},
358 {3421, 125000},
cadf29dc 359 {0, 125000},
cbac8f63
CW
360};
361
eda519d5
RH
362static const struct tsadc_table rk3328_code_table[] = {
363 {0, -40000},
364 {296, -40000},
365 {304, -35000},
366 {313, -30000},
367 {331, -20000},
368 {340, -15000},
369 {349, -10000},
370 {359, -5000},
371 {368, 0},
372 {378, 5000},
373 {388, 10000},
374 {398, 15000},
375 {408, 20000},
376 {418, 25000},
377 {429, 30000},
378 {440, 35000},
379 {451, 40000},
380 {462, 45000},
381 {473, 50000},
382 {485, 55000},
383 {496, 60000},
384 {508, 65000},
385 {521, 70000},
386 {533, 75000},
387 {546, 80000},
388 {559, 85000},
389 {572, 90000},
390 {586, 95000},
391 {600, 100000},
392 {614, 105000},
393 {629, 110000},
394 {644, 115000},
395 {659, 120000},
396 {675, 125000},
397 {TSADCV2_DATA_MASK, 125000},
398};
399
952418a3 400static const struct tsadc_table rk3368_code_table[] = {
20f0af75
CW
401 {0, -40000},
402 {106, -40000},
403 {108, -35000},
404 {110, -30000},
405 {112, -25000},
406 {114, -20000},
407 {116, -15000},
408 {118, -10000},
409 {120, -5000},
410 {122, 0},
411 {124, 5000},
412 {126, 10000},
413 {128, 15000},
414 {130, 20000},
415 {132, 25000},
416 {134, 30000},
417 {136, 35000},
418 {138, 40000},
419 {140, 45000},
420 {142, 50000},
421 {144, 55000},
422 {146, 60000},
423 {148, 65000},
424 {150, 70000},
425 {152, 75000},
426 {154, 80000},
427 {156, 85000},
428 {158, 90000},
429 {160, 95000},
430 {162, 100000},
431 {163, 105000},
432 {165, 110000},
433 {167, 115000},
434 {169, 120000},
435 {171, 125000},
436 {TSADCV3_DATA_MASK, 125000},
437};
438
952418a3 439static const struct tsadc_table rk3399_code_table[] = {
7ea38c6c 440 {0, -40000},
f762a35d
CW
441 {402, -40000},
442 {410, -35000},
443 {419, -30000},
444 {427, -25000},
445 {436, -20000},
446 {444, -15000},
447 {453, -10000},
448 {461, -5000},
449 {470, 0},
450 {478, 5000},
451 {487, 10000},
452 {496, 15000},
453 {504, 20000},
454 {513, 25000},
455 {521, 30000},
456 {530, 35000},
457 {538, 40000},
458 {547, 45000},
459 {555, 50000},
460 {564, 55000},
461 {573, 60000},
462 {581, 65000},
463 {590, 70000},
464 {599, 75000},
465 {607, 80000},
466 {616, 85000},
467 {624, 90000},
468 {633, 95000},
469 {642, 100000},
470 {650, 105000},
471 {659, 110000},
472 {668, 115000},
473 {677, 120000},
474 {685, 125000},
7ea38c6c 475 {TSADCV3_DATA_MASK, 125000},
b0d70338
CW
476};
477
cdd8b3f7 478static u32 rk_tsadcv2_temp_to_code(const struct chip_tsadc_table *table,
437df217 479 int temp)
cbac8f63
CW
480{
481 int high, low, mid;
cadf29dc
CW
482 unsigned long num;
483 unsigned int denom;
d3530497 484 u32 error = table->data_mask;
cbac8f63
CW
485
486 low = 0;
cadf29dc 487 high = (table->length - 1) - 1; /* ignore the last check for table */
cbac8f63
CW
488 mid = (high + low) / 2;
489
1f09ba82 490 /* Return mask code data when the temp is over table range */
d3530497 491 if (temp < table->id[low].temp || temp > table->id[high].temp)
1f09ba82 492 goto exit;
cbac8f63
CW
493
494 while (low <= high) {
cdd8b3f7
BN
495 if (temp == table->id[mid].temp)
496 return table->id[mid].code;
497 else if (temp < table->id[mid].temp)
cbac8f63
CW
498 high = mid - 1;
499 else
500 low = mid + 1;
501 mid = (low + high) / 2;
502 }
503
cadf29dc
CW
504 /*
505 * The conversion code granularity provided by the table. Let's
506 * assume that the relationship between temperature and
507 * analog value between 2 table entries is linear and interpolate
508 * to produce less granular result.
509 */
510 num = abs(table->id[mid + 1].code - table->id[mid].code);
511 num *= temp - table->id[mid].temp;
512 denom = table->id[mid + 1].temp - table->id[mid].temp;
513
514 switch (table->mode) {
515 case ADC_DECREMENT:
516 return table->id[mid].code - (num / denom);
517 case ADC_INCREMENT:
518 return table->id[mid].code + (num / denom);
519 default:
520 pr_err("%s: unknown table mode: %d\n", __func__, table->mode);
521 return error;
522 }
523
1f09ba82 524exit:
e6ed1b4a
BN
525 pr_err("%s: invalid temperature, temp=%d error=%d\n",
526 __func__, temp, error);
1f09ba82 527 return error;
cbac8f63
CW
528}
529
cdd8b3f7
BN
530static int rk_tsadcv2_code_to_temp(const struct chip_tsadc_table *table,
531 u32 code, int *temp)
cbac8f63 532{
d9a241cb 533 unsigned int low = 1;
cdd8b3f7 534 unsigned int high = table->length - 1;
1e9a1aea
CW
535 unsigned int mid = (low + high) / 2;
536 unsigned int num;
537 unsigned long denom;
538
cdd8b3f7 539 WARN_ON(table->length < 2);
1e9a1aea 540
cdd8b3f7 541 switch (table->mode) {
020ba95d 542 case ADC_DECREMENT:
cdd8b3f7 543 code &= table->data_mask;
db831886 544 if (code <= table->id[high].code)
020ba95d
CW
545 return -EAGAIN; /* Incorrect reading */
546
547 while (low <= high) {
cdd8b3f7
BN
548 if (code >= table->id[mid].code &&
549 code < table->id[mid - 1].code)
020ba95d 550 break;
cdd8b3f7 551 else if (code < table->id[mid].code)
020ba95d
CW
552 low = mid + 1;
553 else
554 high = mid - 1;
555
556 mid = (low + high) / 2;
557 }
558 break;
559 case ADC_INCREMENT:
cdd8b3f7
BN
560 code &= table->data_mask;
561 if (code < table->id[low].code)
020ba95d
CW
562 return -EAGAIN; /* Incorrect reading */
563
564 while (low <= high) {
cdd8b3f7
BN
565 if (code <= table->id[mid].code &&
566 code > table->id[mid - 1].code)
020ba95d 567 break;
cdd8b3f7 568 else if (code > table->id[mid].code)
020ba95d
CW
569 low = mid + 1;
570 else
571 high = mid - 1;
572
573 mid = (low + high) / 2;
574 }
575 break;
576 default:
cdd8b3f7 577 pr_err("%s: unknown table mode: %d\n", __func__, table->mode);
e6ed1b4a 578 return -EINVAL;
cbac8f63
CW
579 }
580
1e9a1aea
CW
581 /*
582 * The 5C granularity provided by the table is too much. Let's
583 * assume that the relationship between sensor readings and
584 * temperature between 2 table entries is linear and interpolate
585 * to produce less granular result.
586 */
cdd8b3f7
BN
587 num = table->id[mid].temp - table->id[mid - 1].temp;
588 num *= abs(table->id[mid - 1].code - code);
589 denom = abs(table->id[mid - 1].code - table->id[mid].code);
590 *temp = table->id[mid - 1].temp + (num / denom);
d9a241cb
DT
591
592 return 0;
cbac8f63
CW
593}
594
595/**
144c5565
CW
596 * rk_tsadcv2_initialize - initialize TASDC Controller.
597 *
598 * (1) Set TSADC_V2_AUTO_PERIOD:
599 * Configure the interleave between every two accessing of
600 * TSADC in normal operation.
601 *
602 * (2) Set TSADCV2_AUTO_PERIOD_HT:
603 * Configure the interleave between every two accessing of
604 * TSADC after the temperature is higher than COM_SHUT or COM_INT.
605 *
606 * (3) Set TSADCV2_HIGH_INT_DEBOUNCE and TSADC_HIGHT_TSHUT_DEBOUNCE:
607 * If the temperature is higher than COMP_INT or COMP_SHUT for
608 * "debounce" times, TSADC controller will generate interrupt or TSHUT.
cbac8f63 609 */
b9484763 610static void rk_tsadcv2_initialize(struct regmap *grf, void __iomem *regs,
cbac8f63
CW
611 enum tshut_polarity tshut_polarity)
612{
613 if (tshut_polarity == TSHUT_HIGH_ACTIVE)
452e01b3 614 writel_relaxed(0U | TSADCV2_AUTO_TSHUT_POLARITY_HIGH,
cbac8f63
CW
615 regs + TSADCV2_AUTO_CON);
616 else
452e01b3 617 writel_relaxed(0U & ~TSADCV2_AUTO_TSHUT_POLARITY_HIGH,
cbac8f63
CW
618 regs + TSADCV2_AUTO_CON);
619
620 writel_relaxed(TSADCV2_AUTO_PERIOD_TIME, regs + TSADCV2_AUTO_PERIOD);
621 writel_relaxed(TSADCV2_HIGHT_INT_DEBOUNCE_COUNT,
622 regs + TSADCV2_HIGHT_INT_DEBOUNCE);
623 writel_relaxed(TSADCV2_AUTO_PERIOD_HT_TIME,
624 regs + TSADCV2_AUTO_PERIOD_HT);
625 writel_relaxed(TSADCV2_HIGHT_TSHUT_DEBOUNCE_COUNT,
626 regs + TSADCV2_HIGHT_TSHUT_DEBOUNCE);
b9484763
CW
627}
628
629/**
630 * rk_tsadcv3_initialize - initialize TASDC Controller.
678065d5 631 *
b9484763
CW
632 * (1) The tsadc control power sequence.
633 *
634 * (2) Set TSADC_V2_AUTO_PERIOD:
635 * Configure the interleave between every two accessing of
636 * TSADC in normal operation.
637 *
638 * (2) Set TSADCV2_AUTO_PERIOD_HT:
639 * Configure the interleave between every two accessing of
640 * TSADC after the temperature is higher than COM_SHUT or COM_INT.
641 *
642 * (3) Set TSADCV2_HIGH_INT_DEBOUNCE and TSADC_HIGHT_TSHUT_DEBOUNCE:
643 * If the temperature is higher than COMP_INT or COMP_SHUT for
644 * "debounce" times, TSADC controller will generate interrupt or TSHUT.
645 */
646static void rk_tsadcv3_initialize(struct regmap *grf, void __iomem *regs,
647 enum tshut_polarity tshut_polarity)
648{
649 /* The tsadc control power sequence */
650 if (IS_ERR(grf)) {
651 /* Set interleave value to workround ic time sync issue */
652 writel_relaxed(TSADCV2_USER_INTER_PD_SOC, regs +
653 TSADCV2_USER_CON);
46667879
CW
654
655 writel_relaxed(TSADCV2_AUTO_PERIOD_TIME,
656 regs + TSADCV2_AUTO_PERIOD);
657 writel_relaxed(TSADCV2_HIGHT_INT_DEBOUNCE_COUNT,
658 regs + TSADCV2_HIGHT_INT_DEBOUNCE);
659 writel_relaxed(TSADCV2_AUTO_PERIOD_HT_TIME,
660 regs + TSADCV2_AUTO_PERIOD_HT);
661 writel_relaxed(TSADCV2_HIGHT_TSHUT_DEBOUNCE_COUNT,
662 regs + TSADCV2_HIGHT_TSHUT_DEBOUNCE);
663
b9484763 664 } else {
23f75e48
RH
665 /* Enable the voltage common mode feature */
666 regmap_write(grf, GRF_TSADC_TESTBIT_L, GRF_TSADC_VCM_EN_L);
667 regmap_write(grf, GRF_TSADC_TESTBIT_H, GRF_TSADC_VCM_EN_H);
668
2fe5c1b0 669 usleep_range(15, 100); /* The spec note says at least 15 us */
b9484763
CW
670 regmap_write(grf, GRF_SARADC_TESTBIT, GRF_SARADC_TESTBIT_ON);
671 regmap_write(grf, GRF_TSADC_TESTBIT_H, GRF_TSADC_TESTBIT_H_ON);
2fe5c1b0 672 usleep_range(90, 200); /* The spec note says at least 90 us */
46667879
CW
673
674 writel_relaxed(TSADCV3_AUTO_PERIOD_TIME,
675 regs + TSADCV2_AUTO_PERIOD);
676 writel_relaxed(TSADCV2_HIGHT_INT_DEBOUNCE_COUNT,
677 regs + TSADCV2_HIGHT_INT_DEBOUNCE);
678 writel_relaxed(TSADCV3_AUTO_PERIOD_HT_TIME,
679 regs + TSADCV2_AUTO_PERIOD_HT);
680 writel_relaxed(TSADCV2_HIGHT_TSHUT_DEBOUNCE_COUNT,
681 regs + TSADCV2_HIGHT_TSHUT_DEBOUNCE);
b9484763
CW
682 }
683
684 if (tshut_polarity == TSHUT_HIGH_ACTIVE)
685 writel_relaxed(0U | TSADCV2_AUTO_TSHUT_POLARITY_HIGH,
686 regs + TSADCV2_AUTO_CON);
687 else
688 writel_relaxed(0U & ~TSADCV2_AUTO_TSHUT_POLARITY_HIGH,
689 regs + TSADCV2_AUTO_CON);
cbac8f63
CW
690}
691
952418a3 692static void rk_tsadcv2_irq_ack(void __iomem *regs)
7b02a5e7
CW
693{
694 u32 val;
695
696 val = readl_relaxed(regs + TSADCV2_INT_PD);
952418a3 697 writel_relaxed(val & TSADCV2_INT_PD_CLEAR_MASK, regs + TSADCV2_INT_PD);
7b02a5e7
CW
698}
699
952418a3 700static void rk_tsadcv3_irq_ack(void __iomem *regs)
cbac8f63
CW
701{
702 u32 val;
703
704 val = readl_relaxed(regs + TSADCV2_INT_PD);
952418a3 705 writel_relaxed(val & TSADCV3_INT_PD_CLEAR_MASK, regs + TSADCV2_INT_PD);
cbac8f63
CW
706}
707
708static void rk_tsadcv2_control(void __iomem *regs, bool enable)
709{
710 u32 val;
711
712 val = readl_relaxed(regs + TSADCV2_AUTO_CON);
713 if (enable)
714 val |= TSADCV2_AUTO_EN;
715 else
716 val &= ~TSADCV2_AUTO_EN;
717
718 writel_relaxed(val, regs + TSADCV2_AUTO_CON);
719}
720
7ea38c6c 721/**
678065d5
CW
722 * rk_tsadcv3_control - the tsadc controller is enabled or disabled.
723 *
724 * NOTE: TSADC controller works at auto mode, and some SoCs need set the
725 * tsadc_q_sel bit on TSADCV2_AUTO_CON[1]. The (1024 - tsadc_q) as output
726 * adc value if setting this bit to enable.
7ea38c6c
CW
727 */
728static void rk_tsadcv3_control(void __iomem *regs, bool enable)
729{
730 u32 val;
731
732 val = readl_relaxed(regs + TSADCV2_AUTO_CON);
733 if (enable)
734 val |= TSADCV2_AUTO_EN | TSADCV3_AUTO_Q_SEL_EN;
735 else
736 val &= ~TSADCV2_AUTO_EN;
737
738 writel_relaxed(val, regs + TSADCV2_AUTO_CON);
739}
740
cdd8b3f7 741static int rk_tsadcv2_get_temp(const struct chip_tsadc_table *table,
ce74110d 742 int chn, void __iomem *regs, int *temp)
cbac8f63
CW
743{
744 u32 val;
745
cbac8f63 746 val = readl_relaxed(regs + TSADCV2_DATA(chn));
cbac8f63 747
ce74110d 748 return rk_tsadcv2_code_to_temp(table, val, temp);
cbac8f63
CW
749}
750
d3530497
CW
751static int rk_tsadcv2_alarm_temp(const struct chip_tsadc_table *table,
752 int chn, void __iomem *regs, int temp)
14848502 753{
18591add
CW
754 u32 alarm_value;
755 u32 int_en, int_clr;
756
757 /*
758 * In some cases, some sensors didn't need the trip points, the
759 * set_trips will pass {-INT_MAX, INT_MAX} to trigger tsadc alarm
760 * in the end, ignore this case and disable the high temperature
761 * interrupt.
762 */
763 if (temp == INT_MAX) {
764 int_clr = readl_relaxed(regs + TSADCV2_INT_EN);
765 int_clr &= ~TSADCV2_INT_SRC_EN(chn);
766 writel_relaxed(int_clr, regs + TSADCV2_INT_EN);
767 return 0;
768 }
14848502 769
1f09ba82 770 /* Make sure the value is valid */
14848502 771 alarm_value = rk_tsadcv2_temp_to_code(table, temp);
cdd8b3f7 772 if (alarm_value == table->data_mask)
d3530497 773 return -ERANGE;
1f09ba82 774
cdd8b3f7 775 writel_relaxed(alarm_value & table->data_mask,
14848502
CW
776 regs + TSADCV2_COMP_INT(chn));
777
778 int_en = readl_relaxed(regs + TSADCV2_INT_EN);
779 int_en |= TSADCV2_INT_SRC_EN(chn);
780 writel_relaxed(int_en, regs + TSADCV2_INT_EN);
d3530497
CW
781
782 return 0;
14848502
CW
783}
784
d3530497
CW
785static int rk_tsadcv2_tshut_temp(const struct chip_tsadc_table *table,
786 int chn, void __iomem *regs, int temp)
cbac8f63
CW
787{
788 u32 tshut_value, val;
789
1f09ba82 790 /* Make sure the value is valid */
ce74110d 791 tshut_value = rk_tsadcv2_temp_to_code(table, temp);
cdd8b3f7 792 if (tshut_value == table->data_mask)
d3530497 793 return -ERANGE;
1f09ba82 794
cbac8f63
CW
795 writel_relaxed(tshut_value, regs + TSADCV2_COMP_SHUT(chn));
796
797 /* TSHUT will be valid */
798 val = readl_relaxed(regs + TSADCV2_AUTO_CON);
799 writel_relaxed(val | TSADCV2_AUTO_SRC_EN(chn), regs + TSADCV2_AUTO_CON);
d3530497
CW
800
801 return 0;
cbac8f63
CW
802}
803
804static void rk_tsadcv2_tshut_mode(int chn, void __iomem *regs,
805 enum tshut_mode mode)
806{
807 u32 val;
808
809 val = readl_relaxed(regs + TSADCV2_INT_EN);
810 if (mode == TSHUT_MODE_GPIO) {
811 val &= ~TSADCV2_SHUT_2CRU_SRC_EN(chn);
812 val |= TSADCV2_SHUT_2GPIO_SRC_EN(chn);
813 } else {
814 val &= ~TSADCV2_SHUT_2GPIO_SRC_EN(chn);
815 val |= TSADCV2_SHUT_2CRU_SRC_EN(chn);
816 }
817
818 writel_relaxed(val, regs + TSADCV2_INT_EN);
819}
820
4eca8cac
RH
821static const struct rockchip_tsadc_chip rv1108_tsadc_data = {
822 .chn_id[SENSOR_CPU] = 0, /* cpu sensor is channel 0 */
823 .chn_num = 1, /* one channel for tsadc */
824
825 .tshut_mode = TSHUT_MODE_GPIO, /* default TSHUT via GPIO give PMIC */
826 .tshut_polarity = TSHUT_LOW_ACTIVE, /* default TSHUT LOW ACTIVE */
827 .tshut_temp = 95000,
828
829 .initialize = rk_tsadcv2_initialize,
830 .irq_ack = rk_tsadcv3_irq_ack,
831 .control = rk_tsadcv3_control,
832 .get_temp = rk_tsadcv2_get_temp,
833 .set_alarm_temp = rk_tsadcv2_alarm_temp,
834 .set_tshut_temp = rk_tsadcv2_tshut_temp,
835 .set_tshut_mode = rk_tsadcv2_tshut_mode,
836
837 .table = {
838 .id = rv1108_table,
839 .length = ARRAY_SIZE(rv1108_table),
840 .data_mask = TSADCV2_DATA_MASK,
841 .mode = ADC_INCREMENT,
842 },
843};
844
7b02a5e7
CW
845static const struct rockchip_tsadc_chip rk3228_tsadc_data = {
846 .chn_id[SENSOR_CPU] = 0, /* cpu sensor is channel 0 */
847 .chn_num = 1, /* one channel for tsadc */
848
849 .tshut_mode = TSHUT_MODE_GPIO, /* default TSHUT via GPIO give PMIC */
850 .tshut_polarity = TSHUT_LOW_ACTIVE, /* default TSHUT LOW ACTIVE */
851 .tshut_temp = 95000,
852
853 .initialize = rk_tsadcv2_initialize,
952418a3 854 .irq_ack = rk_tsadcv3_irq_ack,
7ea38c6c 855 .control = rk_tsadcv3_control,
7b02a5e7 856 .get_temp = rk_tsadcv2_get_temp,
14848502 857 .set_alarm_temp = rk_tsadcv2_alarm_temp,
7b02a5e7
CW
858 .set_tshut_temp = rk_tsadcv2_tshut_temp,
859 .set_tshut_mode = rk_tsadcv2_tshut_mode,
860
861 .table = {
952418a3
CW
862 .id = rk3228_code_table,
863 .length = ARRAY_SIZE(rk3228_code_table),
7b02a5e7 864 .data_mask = TSADCV3_DATA_MASK,
7ea38c6c 865 .mode = ADC_INCREMENT,
7b02a5e7
CW
866 },
867};
868
cbac8f63 869static const struct rockchip_tsadc_chip rk3288_tsadc_data = {
1d98b618
CW
870 .chn_id[SENSOR_CPU] = 1, /* cpu sensor is channel 1 */
871 .chn_id[SENSOR_GPU] = 2, /* gpu sensor is channel 2 */
872 .chn_num = 2, /* two channels for tsadc */
873
cbac8f63
CW
874 .tshut_mode = TSHUT_MODE_GPIO, /* default TSHUT via GPIO give PMIC */
875 .tshut_polarity = TSHUT_LOW_ACTIVE, /* default TSHUT LOW ACTIVE */
876 .tshut_temp = 95000,
877
878 .initialize = rk_tsadcv2_initialize,
879 .irq_ack = rk_tsadcv2_irq_ack,
880 .control = rk_tsadcv2_control,
881 .get_temp = rk_tsadcv2_get_temp,
14848502 882 .set_alarm_temp = rk_tsadcv2_alarm_temp,
cbac8f63
CW
883 .set_tshut_temp = rk_tsadcv2_tshut_temp,
884 .set_tshut_mode = rk_tsadcv2_tshut_mode,
ce74110d
CW
885
886 .table = {
952418a3
CW
887 .id = rk3288_code_table,
888 .length = ARRAY_SIZE(rk3288_code_table),
ce74110d 889 .data_mask = TSADCV2_DATA_MASK,
020ba95d 890 .mode = ADC_DECREMENT,
ce74110d 891 },
cbac8f63
CW
892};
893
eda519d5
RH
894static const struct rockchip_tsadc_chip rk3328_tsadc_data = {
895 .chn_id[SENSOR_CPU] = 0, /* cpu sensor is channel 0 */
896 .chn_num = 1, /* one channels for tsadc */
897
898 .tshut_mode = TSHUT_MODE_CRU, /* default TSHUT via CRU */
899 .tshut_temp = 95000,
900
901 .initialize = rk_tsadcv2_initialize,
902 .irq_ack = rk_tsadcv3_irq_ack,
903 .control = rk_tsadcv3_control,
904 .get_temp = rk_tsadcv2_get_temp,
905 .set_alarm_temp = rk_tsadcv2_alarm_temp,
906 .set_tshut_temp = rk_tsadcv2_tshut_temp,
907 .set_tshut_mode = rk_tsadcv2_tshut_mode,
908
909 .table = {
910 .id = rk3328_code_table,
911 .length = ARRAY_SIZE(rk3328_code_table),
912 .data_mask = TSADCV2_DATA_MASK,
913 .mode = ADC_INCREMENT,
914 },
915};
916
1cd60269
EZ
917static const struct rockchip_tsadc_chip rk3366_tsadc_data = {
918 .chn_id[SENSOR_CPU] = 0, /* cpu sensor is channel 0 */
919 .chn_id[SENSOR_GPU] = 1, /* gpu sensor is channel 1 */
920 .chn_num = 2, /* two channels for tsadc */
921
922 .tshut_mode = TSHUT_MODE_GPIO, /* default TSHUT via GPIO give PMIC */
923 .tshut_polarity = TSHUT_LOW_ACTIVE, /* default TSHUT LOW ACTIVE */
924 .tshut_temp = 95000,
925
926 .initialize = rk_tsadcv3_initialize,
927 .irq_ack = rk_tsadcv3_irq_ack,
928 .control = rk_tsadcv3_control,
929 .get_temp = rk_tsadcv2_get_temp,
14848502 930 .set_alarm_temp = rk_tsadcv2_alarm_temp,
1cd60269
EZ
931 .set_tshut_temp = rk_tsadcv2_tshut_temp,
932 .set_tshut_mode = rk_tsadcv2_tshut_mode,
933
934 .table = {
935 .id = rk3228_code_table,
936 .length = ARRAY_SIZE(rk3228_code_table),
937 .data_mask = TSADCV3_DATA_MASK,
938 .mode = ADC_INCREMENT,
939 },
940};
941
20f0af75
CW
942static const struct rockchip_tsadc_chip rk3368_tsadc_data = {
943 .chn_id[SENSOR_CPU] = 0, /* cpu sensor is channel 0 */
944 .chn_id[SENSOR_GPU] = 1, /* gpu sensor is channel 1 */
945 .chn_num = 2, /* two channels for tsadc */
946
947 .tshut_mode = TSHUT_MODE_GPIO, /* default TSHUT via GPIO give PMIC */
948 .tshut_polarity = TSHUT_LOW_ACTIVE, /* default TSHUT LOW ACTIVE */
949 .tshut_temp = 95000,
950
951 .initialize = rk_tsadcv2_initialize,
952 .irq_ack = rk_tsadcv2_irq_ack,
953 .control = rk_tsadcv2_control,
954 .get_temp = rk_tsadcv2_get_temp,
14848502 955 .set_alarm_temp = rk_tsadcv2_alarm_temp,
20f0af75
CW
956 .set_tshut_temp = rk_tsadcv2_tshut_temp,
957 .set_tshut_mode = rk_tsadcv2_tshut_mode,
958
959 .table = {
952418a3
CW
960 .id = rk3368_code_table,
961 .length = ARRAY_SIZE(rk3368_code_table),
20f0af75
CW
962 .data_mask = TSADCV3_DATA_MASK,
963 .mode = ADC_INCREMENT,
964 },
965};
966
b0d70338
CW
967static const struct rockchip_tsadc_chip rk3399_tsadc_data = {
968 .chn_id[SENSOR_CPU] = 0, /* cpu sensor is channel 0 */
969 .chn_id[SENSOR_GPU] = 1, /* gpu sensor is channel 1 */
970 .chn_num = 2, /* two channels for tsadc */
971
972 .tshut_mode = TSHUT_MODE_GPIO, /* default TSHUT via GPIO give PMIC */
973 .tshut_polarity = TSHUT_LOW_ACTIVE, /* default TSHUT LOW ACTIVE */
974 .tshut_temp = 95000,
975
b9484763 976 .initialize = rk_tsadcv3_initialize,
952418a3 977 .irq_ack = rk_tsadcv3_irq_ack,
7ea38c6c 978 .control = rk_tsadcv3_control,
b0d70338 979 .get_temp = rk_tsadcv2_get_temp,
14848502 980 .set_alarm_temp = rk_tsadcv2_alarm_temp,
b0d70338
CW
981 .set_tshut_temp = rk_tsadcv2_tshut_temp,
982 .set_tshut_mode = rk_tsadcv2_tshut_mode,
983
984 .table = {
952418a3
CW
985 .id = rk3399_code_table,
986 .length = ARRAY_SIZE(rk3399_code_table),
b0d70338 987 .data_mask = TSADCV3_DATA_MASK,
7ea38c6c 988 .mode = ADC_INCREMENT,
b0d70338
CW
989 },
990};
991
cbac8f63 992static const struct of_device_id of_rockchip_thermal_match[] = {
4eca8cac
RH
993 {
994 .compatible = "rockchip,rv1108-tsadc",
995 .data = (void *)&rv1108_tsadc_data,
996 },
7b02a5e7
CW
997 {
998 .compatible = "rockchip,rk3228-tsadc",
999 .data = (void *)&rk3228_tsadc_data,
1000 },
cbac8f63
CW
1001 {
1002 .compatible = "rockchip,rk3288-tsadc",
1003 .data = (void *)&rk3288_tsadc_data,
1004 },
eda519d5
RH
1005 {
1006 .compatible = "rockchip,rk3328-tsadc",
1007 .data = (void *)&rk3328_tsadc_data,
1008 },
1cd60269
EZ
1009 {
1010 .compatible = "rockchip,rk3366-tsadc",
1011 .data = (void *)&rk3366_tsadc_data,
1012 },
20f0af75
CW
1013 {
1014 .compatible = "rockchip,rk3368-tsadc",
1015 .data = (void *)&rk3368_tsadc_data,
1016 },
b0d70338
CW
1017 {
1018 .compatible = "rockchip,rk3399-tsadc",
1019 .data = (void *)&rk3399_tsadc_data,
1020 },
cbac8f63
CW
1021 { /* end */ },
1022};
1023MODULE_DEVICE_TABLE(of, of_rockchip_thermal_match);
1024
1025static void
1026rockchip_thermal_toggle_sensor(struct rockchip_thermal_sensor *sensor, bool on)
1027{
1028 struct thermal_zone_device *tzd = sensor->tzd;
1029
1030 tzd->ops->set_mode(tzd,
1031 on ? THERMAL_DEVICE_ENABLED : THERMAL_DEVICE_DISABLED);
1032}
1033
1034static irqreturn_t rockchip_thermal_alarm_irq_thread(int irq, void *dev)
1035{
1036 struct rockchip_thermal_data *thermal = dev;
1037 int i;
1038
1039 dev_dbg(&thermal->pdev->dev, "thermal alarm\n");
1040
1041 thermal->chip->irq_ack(thermal->regs);
1042
1d98b618 1043 for (i = 0; i < thermal->chip->chn_num; i++)
0e70f466
SP
1044 thermal_zone_device_update(thermal->sensors[i].tzd,
1045 THERMAL_EVENT_UNSPECIFIED);
cbac8f63
CW
1046
1047 return IRQ_HANDLED;
1048}
1049
14848502
CW
1050static int rockchip_thermal_set_trips(void *_sensor, int low, int high)
1051{
1052 struct rockchip_thermal_sensor *sensor = _sensor;
1053 struct rockchip_thermal_data *thermal = sensor->thermal;
1054 const struct rockchip_tsadc_chip *tsadc = thermal->chip;
1055
1056 dev_dbg(&thermal->pdev->dev, "%s: sensor %d: low: %d, high %d\n",
1057 __func__, sensor->id, low, high);
1058
d3530497
CW
1059 return tsadc->set_alarm_temp(&tsadc->table,
1060 sensor->id, thermal->regs, high);
14848502
CW
1061}
1062
17e8351a 1063static int rockchip_thermal_get_temp(void *_sensor, int *out_temp)
cbac8f63
CW
1064{
1065 struct rockchip_thermal_sensor *sensor = _sensor;
1066 struct rockchip_thermal_data *thermal = sensor->thermal;
1067 const struct rockchip_tsadc_chip *tsadc = sensor->thermal->chip;
1068 int retval;
1069
cdd8b3f7 1070 retval = tsadc->get_temp(&tsadc->table,
ce74110d 1071 sensor->id, thermal->regs, out_temp);
17e8351a 1072 dev_dbg(&thermal->pdev->dev, "sensor %d - temp: %d, retval: %d\n",
cbac8f63
CW
1073 sensor->id, *out_temp, retval);
1074
1075 return retval;
1076}
1077
1078static const struct thermal_zone_of_device_ops rockchip_of_thermal_ops = {
1079 .get_temp = rockchip_thermal_get_temp,
14848502 1080 .set_trips = rockchip_thermal_set_trips,
cbac8f63
CW
1081};
1082
1083static int rockchip_configure_from_dt(struct device *dev,
1084 struct device_node *np,
1085 struct rockchip_thermal_data *thermal)
1086{
1087 u32 shut_temp, tshut_mode, tshut_polarity;
1088
1089 if (of_property_read_u32(np, "rockchip,hw-tshut-temp", &shut_temp)) {
1090 dev_warn(dev,
437df217 1091 "Missing tshut temp property, using default %d\n",
cbac8f63
CW
1092 thermal->chip->tshut_temp);
1093 thermal->tshut_temp = thermal->chip->tshut_temp;
1094 } else {
43b4eb9f
CW
1095 if (shut_temp > INT_MAX) {
1096 dev_err(dev, "Invalid tshut temperature specified: %d\n",
1097 shut_temp);
1098 return -ERANGE;
1099 }
cbac8f63
CW
1100 thermal->tshut_temp = shut_temp;
1101 }
1102
cbac8f63
CW
1103 if (of_property_read_u32(np, "rockchip,hw-tshut-mode", &tshut_mode)) {
1104 dev_warn(dev,
1105 "Missing tshut mode property, using default (%s)\n",
1106 thermal->chip->tshut_mode == TSHUT_MODE_GPIO ?
1107 "gpio" : "cru");
1108 thermal->tshut_mode = thermal->chip->tshut_mode;
1109 } else {
1110 thermal->tshut_mode = tshut_mode;
1111 }
1112
1113 if (thermal->tshut_mode > 1) {
1114 dev_err(dev, "Invalid tshut mode specified: %d\n",
1115 thermal->tshut_mode);
1116 return -EINVAL;
1117 }
1118
1119 if (of_property_read_u32(np, "rockchip,hw-tshut-polarity",
1120 &tshut_polarity)) {
1121 dev_warn(dev,
1122 "Missing tshut-polarity property, using default (%s)\n",
1123 thermal->chip->tshut_polarity == TSHUT_LOW_ACTIVE ?
1124 "low" : "high");
1125 thermal->tshut_polarity = thermal->chip->tshut_polarity;
1126 } else {
1127 thermal->tshut_polarity = tshut_polarity;
1128 }
1129
1130 if (thermal->tshut_polarity > 1) {
1131 dev_err(dev, "Invalid tshut-polarity specified: %d\n",
1132 thermal->tshut_polarity);
1133 return -EINVAL;
1134 }
1135
b9484763
CW
1136 /* The tsadc wont to handle the error in here since some SoCs didn't
1137 * need this property.
1138 */
1139 thermal->grf = syscon_regmap_lookup_by_phandle(np, "rockchip,grf");
ce62abae
SL
1140 if (IS_ERR(thermal->grf))
1141 dev_warn(dev, "Missing rockchip,grf property\n");
b9484763 1142
cbac8f63
CW
1143 return 0;
1144}
1145
1146static int
1147rockchip_thermal_register_sensor(struct platform_device *pdev,
1148 struct rockchip_thermal_data *thermal,
1149 struct rockchip_thermal_sensor *sensor,
1d98b618 1150 int id)
cbac8f63
CW
1151{
1152 const struct rockchip_tsadc_chip *tsadc = thermal->chip;
1153 int error;
1154
1155 tsadc->set_tshut_mode(id, thermal->regs, thermal->tshut_mode);
d3530497
CW
1156
1157 error = tsadc->set_tshut_temp(&tsadc->table, id, thermal->regs,
ce74110d 1158 thermal->tshut_temp);
d3530497
CW
1159 if (error)
1160 dev_err(&pdev->dev, "%s: invalid tshut=%d, error=%d\n",
1161 __func__, thermal->tshut_temp, error);
cbac8f63
CW
1162
1163 sensor->thermal = thermal;
1164 sensor->id = id;
2633ad19
EV
1165 sensor->tzd = devm_thermal_zone_of_sensor_register(&pdev->dev, id,
1166 sensor, &rockchip_of_thermal_ops);
cbac8f63
CW
1167 if (IS_ERR(sensor->tzd)) {
1168 error = PTR_ERR(sensor->tzd);
1169 dev_err(&pdev->dev, "failed to register sensor %d: %d\n",
1170 id, error);
1171 return error;
1172 }
1173
1174 return 0;
1175}
1176
13c1cfda 1177/**
cbac8f63
CW
1178 * Reset TSADC Controller, reset all tsadc registers.
1179 */
1180static void rockchip_thermal_reset_controller(struct reset_control *reset)
1181{
1182 reset_control_assert(reset);
1183 usleep_range(10, 20);
1184 reset_control_deassert(reset);
1185}
1186
1187static int rockchip_thermal_probe(struct platform_device *pdev)
1188{
1189 struct device_node *np = pdev->dev.of_node;
1190 struct rockchip_thermal_data *thermal;
1191 const struct of_device_id *match;
1192 struct resource *res;
1193 int irq;
2633ad19 1194 int i;
cbac8f63
CW
1195 int error;
1196
1197 match = of_match_node(of_rockchip_thermal_match, np);
1198 if (!match)
1199 return -ENXIO;
1200
1201 irq = platform_get_irq(pdev, 0);
1202 if (irq < 0) {
1203 dev_err(&pdev->dev, "no irq resource?\n");
1204 return -EINVAL;
1205 }
1206
1207 thermal = devm_kzalloc(&pdev->dev, sizeof(struct rockchip_thermal_data),
1208 GFP_KERNEL);
1209 if (!thermal)
1210 return -ENOMEM;
1211
1212 thermal->pdev = pdev;
1213
1214 thermal->chip = (const struct rockchip_tsadc_chip *)match->data;
1215 if (!thermal->chip)
1216 return -EINVAL;
1217
1218 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1219 thermal->regs = devm_ioremap_resource(&pdev->dev, res);
1220 if (IS_ERR(thermal->regs))
1221 return PTR_ERR(thermal->regs);
1222
1223 thermal->reset = devm_reset_control_get(&pdev->dev, "tsadc-apb");
1224 if (IS_ERR(thermal->reset)) {
1225 error = PTR_ERR(thermal->reset);
1226 dev_err(&pdev->dev, "failed to get tsadc reset: %d\n", error);
1227 return error;
1228 }
1229
1230 thermal->clk = devm_clk_get(&pdev->dev, "tsadc");
1231 if (IS_ERR(thermal->clk)) {
1232 error = PTR_ERR(thermal->clk);
1233 dev_err(&pdev->dev, "failed to get tsadc clock: %d\n", error);
1234 return error;
1235 }
1236
1237 thermal->pclk = devm_clk_get(&pdev->dev, "apb_pclk");
1238 if (IS_ERR(thermal->pclk)) {
0d0a2bf6 1239 error = PTR_ERR(thermal->pclk);
cbac8f63
CW
1240 dev_err(&pdev->dev, "failed to get apb_pclk clock: %d\n",
1241 error);
1242 return error;
1243 }
1244
1245 error = clk_prepare_enable(thermal->clk);
1246 if (error) {
1247 dev_err(&pdev->dev, "failed to enable converter clock: %d\n",
1248 error);
1249 return error;
1250 }
1251
1252 error = clk_prepare_enable(thermal->pclk);
1253 if (error) {
1254 dev_err(&pdev->dev, "failed to enable pclk: %d\n", error);
1255 goto err_disable_clk;
1256 }
1257
1258 rockchip_thermal_reset_controller(thermal->reset);
1259
1260 error = rockchip_configure_from_dt(&pdev->dev, np, thermal);
1261 if (error) {
1262 dev_err(&pdev->dev, "failed to parse device tree data: %d\n",
1263 error);
1264 goto err_disable_pclk;
1265 }
1266
b9484763
CW
1267 thermal->chip->initialize(thermal->grf, thermal->regs,
1268 thermal->tshut_polarity);
cbac8f63 1269
1d98b618
CW
1270 for (i = 0; i < thermal->chip->chn_num; i++) {
1271 error = rockchip_thermal_register_sensor(pdev, thermal,
1272 &thermal->sensors[i],
1273 thermal->chip->chn_id[i]);
1274 if (error) {
1275 dev_err(&pdev->dev,
1276 "failed to register sensor[%d] : error = %d\n",
1277 i, error);
1d98b618
CW
1278 goto err_disable_pclk;
1279 }
cbac8f63
CW
1280 }
1281
1282 error = devm_request_threaded_irq(&pdev->dev, irq, NULL,
1283 &rockchip_thermal_alarm_irq_thread,
1284 IRQF_ONESHOT,
1285 "rockchip_thermal", thermal);
1286 if (error) {
1287 dev_err(&pdev->dev,
1288 "failed to request tsadc irq: %d\n", error);
2633ad19 1289 goto err_disable_pclk;
cbac8f63
CW
1290 }
1291
1292 thermal->chip->control(thermal->regs, true);
1293
1d98b618 1294 for (i = 0; i < thermal->chip->chn_num; i++)
cbac8f63
CW
1295 rockchip_thermal_toggle_sensor(&thermal->sensors[i], true);
1296
1297 platform_set_drvdata(pdev, thermal);
1298
1299 return 0;
1300
cbac8f63
CW
1301err_disable_pclk:
1302 clk_disable_unprepare(thermal->pclk);
1303err_disable_clk:
1304 clk_disable_unprepare(thermal->clk);
1305
1306 return error;
1307}
1308
1309static int rockchip_thermal_remove(struct platform_device *pdev)
1310{
1311 struct rockchip_thermal_data *thermal = platform_get_drvdata(pdev);
1312 int i;
1313
1d98b618 1314 for (i = 0; i < thermal->chip->chn_num; i++) {
cbac8f63
CW
1315 struct rockchip_thermal_sensor *sensor = &thermal->sensors[i];
1316
1317 rockchip_thermal_toggle_sensor(sensor, false);
cbac8f63
CW
1318 }
1319
1320 thermal->chip->control(thermal->regs, false);
1321
1322 clk_disable_unprepare(thermal->pclk);
1323 clk_disable_unprepare(thermal->clk);
1324
1325 return 0;
1326}
1327
1328static int __maybe_unused rockchip_thermal_suspend(struct device *dev)
1329{
26d84c27 1330 struct rockchip_thermal_data *thermal = dev_get_drvdata(dev);
cbac8f63
CW
1331 int i;
1332
1d98b618 1333 for (i = 0; i < thermal->chip->chn_num; i++)
cbac8f63
CW
1334 rockchip_thermal_toggle_sensor(&thermal->sensors[i], false);
1335
1336 thermal->chip->control(thermal->regs, false);
1337
1338 clk_disable(thermal->pclk);
1339 clk_disable(thermal->clk);
1340
7e38a5b1
CW
1341 pinctrl_pm_select_sleep_state(dev);
1342
cbac8f63
CW
1343 return 0;
1344}
1345
1346static int __maybe_unused rockchip_thermal_resume(struct device *dev)
1347{
26d84c27 1348 struct rockchip_thermal_data *thermal = dev_get_drvdata(dev);
cbac8f63
CW
1349 int i;
1350 int error;
1351
1352 error = clk_enable(thermal->clk);
1353 if (error)
1354 return error;
1355
1356 error = clk_enable(thermal->pclk);
ab5b52f1
SL
1357 if (error) {
1358 clk_disable(thermal->clk);
cbac8f63 1359 return error;
ab5b52f1 1360 }
cbac8f63
CW
1361
1362 rockchip_thermal_reset_controller(thermal->reset);
1363
b9484763
CW
1364 thermal->chip->initialize(thermal->grf, thermal->regs,
1365 thermal->tshut_polarity);
cbac8f63 1366
1d98b618
CW
1367 for (i = 0; i < thermal->chip->chn_num; i++) {
1368 int id = thermal->sensors[i].id;
cbac8f63
CW
1369
1370 thermal->chip->set_tshut_mode(id, thermal->regs,
1371 thermal->tshut_mode);
d3530497
CW
1372
1373 error = thermal->chip->set_tshut_temp(&thermal->chip->table,
ce74110d 1374 id, thermal->regs,
cbac8f63 1375 thermal->tshut_temp);
d3530497 1376 if (error)
26d84c27 1377 dev_err(dev, "%s: invalid tshut=%d, error=%d\n",
d3530497 1378 __func__, thermal->tshut_temp, error);
cbac8f63
CW
1379 }
1380
1381 thermal->chip->control(thermal->regs, true);
1382
1d98b618 1383 for (i = 0; i < thermal->chip->chn_num; i++)
cbac8f63
CW
1384 rockchip_thermal_toggle_sensor(&thermal->sensors[i], true);
1385
7e38a5b1
CW
1386 pinctrl_pm_select_default_state(dev);
1387
cbac8f63
CW
1388 return 0;
1389}
1390
1391static SIMPLE_DEV_PM_OPS(rockchip_thermal_pm_ops,
1392 rockchip_thermal_suspend, rockchip_thermal_resume);
1393
1394static struct platform_driver rockchip_thermal_driver = {
1395 .driver = {
1396 .name = "rockchip-thermal",
cbac8f63
CW
1397 .pm = &rockchip_thermal_pm_ops,
1398 .of_match_table = of_rockchip_thermal_match,
1399 },
1400 .probe = rockchip_thermal_probe,
1401 .remove = rockchip_thermal_remove,
1402};
1403
1404module_platform_driver(rockchip_thermal_driver);
1405
1406MODULE_DESCRIPTION("ROCKCHIP THERMAL Driver");
1407MODULE_AUTHOR("Rockchip, Inc.");
1408MODULE_LICENSE("GPL v2");
1409MODULE_ALIAS("platform:rockchip-thermal");