1 // SPDX-License-Identifier: GPL-2.0
3 // Copyright 2013 Freescale Semiconductor, Inc.
6 #include <linux/cpufreq.h>
7 #include <linux/cpu_cooling.h>
8 #include <linux/delay.h>
9 #include <linux/interrupt.h>
11 #include <linux/mfd/syscon.h>
12 #include <linux/module.h>
14 #include <linux/of_device.h>
15 #include <linux/regmap.h>
16 #include <linux/thermal.h>
17 #include <linux/nvmem-consumer.h>
24 #define IMX6_MISC0 0x0150
25 #define IMX6_MISC0_REFTOP_SELBIASOFF (1 << 3)
26 #define IMX6_MISC1 0x0160
27 #define IMX6_MISC1_IRQ_TEMPHIGH (1 << 29)
28 /* Below LOW and PANIC bits are only for TEMPMON_IMX6SX */
29 #define IMX6_MISC1_IRQ_TEMPLOW (1 << 28)
30 #define IMX6_MISC1_IRQ_TEMPPANIC (1 << 27)
32 #define IMX6_TEMPSENSE0 0x0180
33 #define IMX6_TEMPSENSE0_ALARM_VALUE_SHIFT 20
34 #define IMX6_TEMPSENSE0_ALARM_VALUE_MASK (0xfff << 20)
35 #define IMX6_TEMPSENSE0_TEMP_CNT_SHIFT 8
36 #define IMX6_TEMPSENSE0_TEMP_CNT_MASK (0xfff << 8)
37 #define IMX6_TEMPSENSE0_FINISHED (1 << 2)
38 #define IMX6_TEMPSENSE0_MEASURE_TEMP (1 << 1)
39 #define IMX6_TEMPSENSE0_POWER_DOWN (1 << 0)
41 #define IMX6_TEMPSENSE1 0x0190
42 #define IMX6_TEMPSENSE1_MEASURE_FREQ 0xffff
43 #define IMX6_TEMPSENSE1_MEASURE_FREQ_SHIFT 0
45 #define OCOTP_MEM0 0x0480
46 #define OCOTP_ANA1 0x04e0
48 /* Below TEMPSENSE2 is only for TEMPMON_IMX6SX */
49 #define IMX6_TEMPSENSE2 0x0290
50 #define IMX6_TEMPSENSE2_LOW_VALUE_SHIFT 0
51 #define IMX6_TEMPSENSE2_LOW_VALUE_MASK 0xfff
52 #define IMX6_TEMPSENSE2_PANIC_VALUE_SHIFT 16
53 #define IMX6_TEMPSENSE2_PANIC_VALUE_MASK 0xfff0000
56 #define IMX7_ANADIG_DIGPROG 0x800
57 #define IMX7_TEMPSENSE0 0x300
58 #define IMX7_TEMPSENSE0_PANIC_ALARM_SHIFT 18
59 #define IMX7_TEMPSENSE0_PANIC_ALARM_MASK (0x1ff << 18)
60 #define IMX7_TEMPSENSE0_HIGH_ALARM_SHIFT 9
61 #define IMX7_TEMPSENSE0_HIGH_ALARM_MASK (0x1ff << 9)
62 #define IMX7_TEMPSENSE0_LOW_ALARM_SHIFT 0
63 #define IMX7_TEMPSENSE0_LOW_ALARM_MASK 0x1ff
65 #define IMX7_TEMPSENSE1 0x310
66 #define IMX7_TEMPSENSE1_MEASURE_FREQ_SHIFT 16
67 #define IMX7_TEMPSENSE1_MEASURE_FREQ_MASK (0xffff << 16)
68 #define IMX7_TEMPSENSE1_FINISHED (1 << 11)
69 #define IMX7_TEMPSENSE1_MEASURE_TEMP (1 << 10)
70 #define IMX7_TEMPSENSE1_POWER_DOWN (1 << 9)
71 #define IMX7_TEMPSENSE1_TEMP_VALUE_SHIFT 0
72 #define IMX7_TEMPSENSE1_TEMP_VALUE_MASK 0x1ff
74 /* The driver supports 1 passive trip point and 1 critical trip point */
75 enum imx_thermal_trip
{
81 #define IMX_POLLING_DELAY 2000 /* millisecond */
82 #define IMX_PASSIVE_DELAY 1000
84 #define TEMPMON_IMX6Q 1
85 #define TEMPMON_IMX6SX 2
86 #define TEMPMON_IMX7D 3
88 struct thermal_soc_data
{
93 u32 measure_temp_mask
;
95 u32 measure_freq_ctrl
;
96 u32 measure_freq_mask
;
97 u32 measure_freq_shift
;
101 u32 temp_value_shift
;
104 u32 panic_alarm_ctrl
;
105 u32 panic_alarm_mask
;
106 u32 panic_alarm_shift
;
110 u32 high_alarm_shift
;
117 static struct thermal_soc_data thermal_imx6q_data
= {
118 .version
= TEMPMON_IMX6Q
,
120 .sensor_ctrl
= IMX6_TEMPSENSE0
,
121 .power_down_mask
= IMX6_TEMPSENSE0_POWER_DOWN
,
122 .measure_temp_mask
= IMX6_TEMPSENSE0_MEASURE_TEMP
,
124 .measure_freq_ctrl
= IMX6_TEMPSENSE1
,
125 .measure_freq_shift
= IMX6_TEMPSENSE1_MEASURE_FREQ_SHIFT
,
126 .measure_freq_mask
= IMX6_TEMPSENSE1_MEASURE_FREQ
,
128 .temp_data
= IMX6_TEMPSENSE0
,
129 .temp_value_mask
= IMX6_TEMPSENSE0_TEMP_CNT_MASK
,
130 .temp_value_shift
= IMX6_TEMPSENSE0_TEMP_CNT_SHIFT
,
131 .temp_valid_mask
= IMX6_TEMPSENSE0_FINISHED
,
133 .high_alarm_ctrl
= IMX6_TEMPSENSE0
,
134 .high_alarm_mask
= IMX6_TEMPSENSE0_ALARM_VALUE_MASK
,
135 .high_alarm_shift
= IMX6_TEMPSENSE0_ALARM_VALUE_SHIFT
,
138 static struct thermal_soc_data thermal_imx6sx_data
= {
139 .version
= TEMPMON_IMX6SX
,
141 .sensor_ctrl
= IMX6_TEMPSENSE0
,
142 .power_down_mask
= IMX6_TEMPSENSE0_POWER_DOWN
,
143 .measure_temp_mask
= IMX6_TEMPSENSE0_MEASURE_TEMP
,
145 .measure_freq_ctrl
= IMX6_TEMPSENSE1
,
146 .measure_freq_shift
= IMX6_TEMPSENSE1_MEASURE_FREQ_SHIFT
,
147 .measure_freq_mask
= IMX6_TEMPSENSE1_MEASURE_FREQ
,
149 .temp_data
= IMX6_TEMPSENSE0
,
150 .temp_value_mask
= IMX6_TEMPSENSE0_TEMP_CNT_MASK
,
151 .temp_value_shift
= IMX6_TEMPSENSE0_TEMP_CNT_SHIFT
,
152 .temp_valid_mask
= IMX6_TEMPSENSE0_FINISHED
,
154 .high_alarm_ctrl
= IMX6_TEMPSENSE0
,
155 .high_alarm_mask
= IMX6_TEMPSENSE0_ALARM_VALUE_MASK
,
156 .high_alarm_shift
= IMX6_TEMPSENSE0_ALARM_VALUE_SHIFT
,
158 .panic_alarm_ctrl
= IMX6_TEMPSENSE2
,
159 .panic_alarm_mask
= IMX6_TEMPSENSE2_PANIC_VALUE_MASK
,
160 .panic_alarm_shift
= IMX6_TEMPSENSE2_PANIC_VALUE_SHIFT
,
162 .low_alarm_ctrl
= IMX6_TEMPSENSE2
,
163 .low_alarm_mask
= IMX6_TEMPSENSE2_LOW_VALUE_MASK
,
164 .low_alarm_shift
= IMX6_TEMPSENSE2_LOW_VALUE_SHIFT
,
167 static struct thermal_soc_data thermal_imx7d_data
= {
168 .version
= TEMPMON_IMX7D
,
170 .sensor_ctrl
= IMX7_TEMPSENSE1
,
171 .power_down_mask
= IMX7_TEMPSENSE1_POWER_DOWN
,
172 .measure_temp_mask
= IMX7_TEMPSENSE1_MEASURE_TEMP
,
174 .measure_freq_ctrl
= IMX7_TEMPSENSE1
,
175 .measure_freq_shift
= IMX7_TEMPSENSE1_MEASURE_FREQ_SHIFT
,
176 .measure_freq_mask
= IMX7_TEMPSENSE1_MEASURE_FREQ_MASK
,
178 .temp_data
= IMX7_TEMPSENSE1
,
179 .temp_value_mask
= IMX7_TEMPSENSE1_TEMP_VALUE_MASK
,
180 .temp_value_shift
= IMX7_TEMPSENSE1_TEMP_VALUE_SHIFT
,
181 .temp_valid_mask
= IMX7_TEMPSENSE1_FINISHED
,
183 .panic_alarm_ctrl
= IMX7_TEMPSENSE1
,
184 .panic_alarm_mask
= IMX7_TEMPSENSE0_PANIC_ALARM_MASK
,
185 .panic_alarm_shift
= IMX7_TEMPSENSE0_PANIC_ALARM_SHIFT
,
187 .high_alarm_ctrl
= IMX7_TEMPSENSE0
,
188 .high_alarm_mask
= IMX7_TEMPSENSE0_HIGH_ALARM_MASK
,
189 .high_alarm_shift
= IMX7_TEMPSENSE0_HIGH_ALARM_SHIFT
,
191 .low_alarm_ctrl
= IMX7_TEMPSENSE0
,
192 .low_alarm_mask
= IMX7_TEMPSENSE0_LOW_ALARM_MASK
,
193 .low_alarm_shift
= IMX7_TEMPSENSE0_LOW_ALARM_SHIFT
,
196 struct imx_thermal_data
{
197 struct cpufreq_policy
*policy
;
198 struct thermal_zone_device
*tz
;
199 struct thermal_cooling_device
*cdev
;
200 struct regmap
*tempmon
;
201 u32 c1
, c2
; /* See formula in imx_init_calib() */
209 struct clk
*thermal_clk
;
210 const struct thermal_soc_data
*socdata
;
211 const char *temp_grade
;
214 static void imx_set_panic_temp(struct imx_thermal_data
*data
,
217 const struct thermal_soc_data
*soc_data
= data
->socdata
;
218 struct regmap
*map
= data
->tempmon
;
221 critical_value
= (data
->c2
- panic_temp
) / data
->c1
;
223 regmap_write(map
, soc_data
->panic_alarm_ctrl
+ REG_CLR
,
224 soc_data
->panic_alarm_mask
);
225 regmap_write(map
, soc_data
->panic_alarm_ctrl
+ REG_SET
,
226 critical_value
<< soc_data
->panic_alarm_shift
);
229 static void imx_set_alarm_temp(struct imx_thermal_data
*data
,
232 struct regmap
*map
= data
->tempmon
;
233 const struct thermal_soc_data
*soc_data
= data
->socdata
;
236 data
->alarm_temp
= alarm_temp
;
238 if (data
->socdata
->version
== TEMPMON_IMX7D
)
239 alarm_value
= alarm_temp
/ 1000 + data
->c1
- 25;
241 alarm_value
= (data
->c2
- alarm_temp
) / data
->c1
;
243 regmap_write(map
, soc_data
->high_alarm_ctrl
+ REG_CLR
,
244 soc_data
->high_alarm_mask
);
245 regmap_write(map
, soc_data
->high_alarm_ctrl
+ REG_SET
,
246 alarm_value
<< soc_data
->high_alarm_shift
);
249 static int imx_get_temp(struct thermal_zone_device
*tz
, int *temp
)
251 struct imx_thermal_data
*data
= tz
->devdata
;
252 const struct thermal_soc_data
*soc_data
= data
->socdata
;
253 struct regmap
*map
= data
->tempmon
;
255 bool wait
, run_measurement
;
258 run_measurement
= !data
->irq_enabled
;
259 if (!run_measurement
) {
260 /* Check if a measurement is currently in progress */
261 regmap_read(map
, soc_data
->temp_data
, &val
);
262 wait
= !(val
& soc_data
->temp_valid_mask
);
265 * Every time we measure the temperature, we will power on the
266 * temperature sensor, enable measurements, take a reading,
267 * disable measurements, power off the temperature sensor.
269 regmap_write(map
, soc_data
->sensor_ctrl
+ REG_CLR
,
270 soc_data
->power_down_mask
);
271 regmap_write(map
, soc_data
->sensor_ctrl
+ REG_SET
,
272 soc_data
->measure_temp_mask
);
278 * According to the temp sensor designers, it may require up to ~17us
279 * to complete a measurement.
282 usleep_range(20, 50);
284 regmap_read(map
, soc_data
->temp_data
, &val
);
286 if (run_measurement
) {
287 regmap_write(map
, soc_data
->sensor_ctrl
+ REG_CLR
,
288 soc_data
->measure_temp_mask
);
289 regmap_write(map
, soc_data
->sensor_ctrl
+ REG_SET
,
290 soc_data
->power_down_mask
);
293 if ((val
& soc_data
->temp_valid_mask
) == 0) {
294 dev_dbg(&tz
->device
, "temp measurement never finished\n");
298 n_meas
= (val
& soc_data
->temp_value_mask
)
299 >> soc_data
->temp_value_shift
;
301 /* See imx_init_calib() for formula derivation */
302 if (data
->socdata
->version
== TEMPMON_IMX7D
)
303 *temp
= (n_meas
- data
->c1
+ 25) * 1000;
305 *temp
= data
->c2
- n_meas
* data
->c1
;
307 /* Update alarm value to next higher trip point for TEMPMON_IMX6Q */
308 if (data
->socdata
->version
== TEMPMON_IMX6Q
) {
309 if (data
->alarm_temp
== data
->temp_passive
&&
310 *temp
>= data
->temp_passive
)
311 imx_set_alarm_temp(data
, data
->temp_critical
);
312 if (data
->alarm_temp
== data
->temp_critical
&&
313 *temp
< data
->temp_passive
) {
314 imx_set_alarm_temp(data
, data
->temp_passive
);
315 dev_dbg(&tz
->device
, "thermal alarm off: T < %d\n",
316 data
->alarm_temp
/ 1000);
320 if (*temp
!= data
->last_temp
) {
321 dev_dbg(&tz
->device
, "millicelsius: %d\n", *temp
);
322 data
->last_temp
= *temp
;
325 /* Reenable alarm IRQ if temperature below alarm temperature */
326 if (!data
->irq_enabled
&& *temp
< data
->alarm_temp
) {
327 data
->irq_enabled
= true;
328 enable_irq(data
->irq
);
334 static int imx_change_mode(struct thermal_zone_device
*tz
,
335 enum thermal_device_mode mode
)
337 struct imx_thermal_data
*data
= tz
->devdata
;
338 struct regmap
*map
= data
->tempmon
;
339 const struct thermal_soc_data
*soc_data
= data
->socdata
;
341 if (mode
== THERMAL_DEVICE_ENABLED
) {
342 regmap_write(map
, soc_data
->sensor_ctrl
+ REG_CLR
,
343 soc_data
->power_down_mask
);
344 regmap_write(map
, soc_data
->sensor_ctrl
+ REG_SET
,
345 soc_data
->measure_temp_mask
);
347 if (!data
->irq_enabled
) {
348 data
->irq_enabled
= true;
349 enable_irq(data
->irq
);
352 regmap_write(map
, soc_data
->sensor_ctrl
+ REG_CLR
,
353 soc_data
->measure_temp_mask
);
354 regmap_write(map
, soc_data
->sensor_ctrl
+ REG_SET
,
355 soc_data
->power_down_mask
);
357 if (data
->irq_enabled
) {
358 disable_irq(data
->irq
);
359 data
->irq_enabled
= false;
366 static int imx_get_trip_type(struct thermal_zone_device
*tz
, int trip
,
367 enum thermal_trip_type
*type
)
369 *type
= (trip
== IMX_TRIP_PASSIVE
) ? THERMAL_TRIP_PASSIVE
:
370 THERMAL_TRIP_CRITICAL
;
374 static int imx_get_crit_temp(struct thermal_zone_device
*tz
, int *temp
)
376 struct imx_thermal_data
*data
= tz
->devdata
;
378 *temp
= data
->temp_critical
;
382 static int imx_get_trip_temp(struct thermal_zone_device
*tz
, int trip
,
385 struct imx_thermal_data
*data
= tz
->devdata
;
387 *temp
= (trip
== IMX_TRIP_PASSIVE
) ? data
->temp_passive
:
392 static int imx_set_trip_temp(struct thermal_zone_device
*tz
, int trip
,
395 struct imx_thermal_data
*data
= tz
->devdata
;
397 /* do not allow changing critical threshold */
398 if (trip
== IMX_TRIP_CRITICAL
)
401 /* do not allow passive to be set higher than critical */
402 if (temp
< 0 || temp
> data
->temp_critical
)
405 data
->temp_passive
= temp
;
407 imx_set_alarm_temp(data
, temp
);
412 static int imx_bind(struct thermal_zone_device
*tz
,
413 struct thermal_cooling_device
*cdev
)
417 ret
= thermal_zone_bind_cooling_device(tz
, IMX_TRIP_PASSIVE
, cdev
,
420 THERMAL_WEIGHT_DEFAULT
);
423 "binding zone %s with cdev %s failed:%d\n",
424 tz
->type
, cdev
->type
, ret
);
431 static int imx_unbind(struct thermal_zone_device
*tz
,
432 struct thermal_cooling_device
*cdev
)
436 ret
= thermal_zone_unbind_cooling_device(tz
, IMX_TRIP_PASSIVE
, cdev
);
439 "unbinding zone %s with cdev %s failed:%d\n",
440 tz
->type
, cdev
->type
, ret
);
447 static struct thermal_zone_device_ops imx_tz_ops
= {
449 .unbind
= imx_unbind
,
450 .get_temp
= imx_get_temp
,
451 .change_mode
= imx_change_mode
,
452 .get_trip_type
= imx_get_trip_type
,
453 .get_trip_temp
= imx_get_trip_temp
,
454 .get_crit_temp
= imx_get_crit_temp
,
455 .set_trip_temp
= imx_set_trip_temp
,
458 static int imx_init_calib(struct platform_device
*pdev
, u32 ocotp_ana1
)
460 struct imx_thermal_data
*data
= platform_get_drvdata(pdev
);
464 if (ocotp_ana1
== 0 || ocotp_ana1
== ~0) {
465 dev_err(&pdev
->dev
, "invalid sensor calibration data\n");
470 * On i.MX7D, we only use the calibration data at 25C to get the temp,
471 * Tmeas = ( Nmeas - n1) + 25; n1 is the fuse value for 25C.
473 if (data
->socdata
->version
== TEMPMON_IMX7D
) {
474 data
->c1
= (ocotp_ana1
>> 9) & 0x1ff;
479 * The sensor is calibrated at 25 °C (aka T1) and the value measured
480 * (aka N1) at this temperature is provided in bits [31:20] in the
481 * i.MX's OCOTP value ANA1.
482 * To find the actual temperature T, the following formula has to be used
483 * when reading value n from the sensor:
485 * T = T1 + (N - N1) / (0.4148468 - 0.0015423 * N1) °C + 3.580661 °C
486 * = [T1' - N1 / (0.4148468 - 0.0015423 * N1) °C] + N / (0.4148468 - 0.0015423 * N1) °C
487 * = [T1' + N1 / (0.0015423 * N1 - 0.4148468) °C] - N / (0.0015423 * N1 - 0.4148468) °C
492 * T1' = 28.580661 °C
493 * c1 = 1 / (0.0015423 * N1 - 0.4297157) °C
494 * c2 = T1' + N1 / (0.0015423 * N1 - 0.4148468) °C
497 n1
= ocotp_ana1
>> 20;
499 temp64
= 10000000; /* use 10^7 as fixed point constant for values in formula */
500 temp64
*= 1000; /* to get result in °mC */
501 do_div(temp64
, 15423 * n1
- 4148468);
503 data
->c2
= n1
* data
->c1
+ 28581;
508 static void imx_init_temp_grade(struct platform_device
*pdev
, u32 ocotp_mem0
)
510 struct imx_thermal_data
*data
= platform_get_drvdata(pdev
);
512 /* The maximum die temp is specified by the Temperature Grade */
513 switch ((ocotp_mem0
>> 6) & 0x3) {
514 case 0: /* Commercial (0 to 95 °C) */
515 data
->temp_grade
= "Commercial";
516 data
->temp_max
= 95000;
518 case 1: /* Extended Commercial (-20 °C to 105 °C) */
519 data
->temp_grade
= "Extended Commercial";
520 data
->temp_max
= 105000;
522 case 2: /* Industrial (-40 °C to 105 °C) */
523 data
->temp_grade
= "Industrial";
524 data
->temp_max
= 105000;
526 case 3: /* Automotive (-40 °C to 125 °C) */
527 data
->temp_grade
= "Automotive";
528 data
->temp_max
= 125000;
533 * Set the critical trip point at 5 °C under max
534 * Set the passive trip point at 10 °C under max (changeable via sysfs)
536 data
->temp_critical
= data
->temp_max
- (1000 * 5);
537 data
->temp_passive
= data
->temp_max
- (1000 * 10);
540 static int imx_init_from_tempmon_data(struct platform_device
*pdev
)
546 map
= syscon_regmap_lookup_by_phandle(pdev
->dev
.of_node
,
550 dev_err(&pdev
->dev
, "failed to get sensor regmap: %d\n", ret
);
554 ret
= regmap_read(map
, OCOTP_ANA1
, &val
);
556 dev_err(&pdev
->dev
, "failed to read sensor data: %d\n", ret
);
559 ret
= imx_init_calib(pdev
, val
);
563 ret
= regmap_read(map
, OCOTP_MEM0
, &val
);
565 dev_err(&pdev
->dev
, "failed to read sensor data: %d\n", ret
);
568 imx_init_temp_grade(pdev
, val
);
573 static int imx_init_from_nvmem_cells(struct platform_device
*pdev
)
578 ret
= nvmem_cell_read_u32(&pdev
->dev
, "calib", &val
);
582 ret
= imx_init_calib(pdev
, val
);
586 ret
= nvmem_cell_read_u32(&pdev
->dev
, "temp_grade", &val
);
589 imx_init_temp_grade(pdev
, val
);
594 static irqreturn_t
imx_thermal_alarm_irq(int irq
, void *dev
)
596 struct imx_thermal_data
*data
= dev
;
598 disable_irq_nosync(irq
);
599 data
->irq_enabled
= false;
601 return IRQ_WAKE_THREAD
;
604 static irqreturn_t
imx_thermal_alarm_irq_thread(int irq
, void *dev
)
606 struct imx_thermal_data
*data
= dev
;
608 dev_dbg(&data
->tz
->device
, "THERMAL ALARM: T > %d\n",
609 data
->alarm_temp
/ 1000);
611 thermal_zone_device_update(data
->tz
, THERMAL_EVENT_UNSPECIFIED
);
616 static const struct of_device_id of_imx_thermal_match
[] = {
617 { .compatible
= "fsl,imx6q-tempmon", .data
= &thermal_imx6q_data
, },
618 { .compatible
= "fsl,imx6sx-tempmon", .data
= &thermal_imx6sx_data
, },
619 { .compatible
= "fsl,imx7d-tempmon", .data
= &thermal_imx7d_data
, },
622 MODULE_DEVICE_TABLE(of
, of_imx_thermal_match
);
624 #ifdef CONFIG_CPU_FREQ
626 * Create cooling device in case no #cooling-cells property is available in
629 static int imx_thermal_register_legacy_cooling(struct imx_thermal_data
*data
)
631 struct device_node
*np
;
634 data
->policy
= cpufreq_cpu_get(0);
636 pr_debug("%s: CPUFreq policy not found\n", __func__
);
637 return -EPROBE_DEFER
;
640 np
= of_get_cpu_node(data
->policy
->cpu
, NULL
);
642 if (!np
|| !of_find_property(np
, "#cooling-cells", NULL
)) {
643 data
->cdev
= cpufreq_cooling_register(data
->policy
);
644 if (IS_ERR(data
->cdev
)) {
645 ret
= PTR_ERR(data
->cdev
);
646 cpufreq_cpu_put(data
->policy
);
655 static void imx_thermal_unregister_legacy_cooling(struct imx_thermal_data
*data
)
657 cpufreq_cooling_unregister(data
->cdev
);
658 cpufreq_cpu_put(data
->policy
);
663 static inline int imx_thermal_register_legacy_cooling(struct imx_thermal_data
*data
)
668 static inline void imx_thermal_unregister_legacy_cooling(struct imx_thermal_data
*data
)
673 static int imx_thermal_probe(struct platform_device
*pdev
)
675 struct imx_thermal_data
*data
;
680 data
= devm_kzalloc(&pdev
->dev
, sizeof(*data
), GFP_KERNEL
);
684 map
= syscon_regmap_lookup_by_phandle(pdev
->dev
.of_node
, "fsl,tempmon");
687 dev_err(&pdev
->dev
, "failed to get tempmon regmap: %d\n", ret
);
692 data
->socdata
= of_device_get_match_data(&pdev
->dev
);
693 if (!data
->socdata
) {
694 dev_err(&pdev
->dev
, "no device match found\n");
698 /* make sure the IRQ flag is clear before enabling irq on i.MX6SX */
699 if (data
->socdata
->version
== TEMPMON_IMX6SX
) {
700 regmap_write(map
, IMX6_MISC1
+ REG_CLR
,
701 IMX6_MISC1_IRQ_TEMPHIGH
| IMX6_MISC1_IRQ_TEMPLOW
702 | IMX6_MISC1_IRQ_TEMPPANIC
);
704 * reset value of LOW ALARM is incorrect, set it to lowest
705 * value to avoid false trigger of low alarm.
707 regmap_write(map
, data
->socdata
->low_alarm_ctrl
+ REG_SET
,
708 data
->socdata
->low_alarm_mask
);
711 data
->irq
= platform_get_irq(pdev
, 0);
715 platform_set_drvdata(pdev
, data
);
717 if (of_find_property(pdev
->dev
.of_node
, "nvmem-cells", NULL
)) {
718 ret
= imx_init_from_nvmem_cells(pdev
);
720 return dev_err_probe(&pdev
->dev
, ret
,
721 "failed to init from nvmem\n");
723 ret
= imx_init_from_tempmon_data(pdev
);
725 dev_err(&pdev
->dev
, "failed to init from fsl,tempmon-data\n");
730 /* Make sure sensor is in known good state for measurements */
731 regmap_write(map
, data
->socdata
->sensor_ctrl
+ REG_CLR
,
732 data
->socdata
->power_down_mask
);
733 regmap_write(map
, data
->socdata
->sensor_ctrl
+ REG_CLR
,
734 data
->socdata
->measure_temp_mask
);
735 regmap_write(map
, data
->socdata
->measure_freq_ctrl
+ REG_CLR
,
736 data
->socdata
->measure_freq_mask
);
737 if (data
->socdata
->version
!= TEMPMON_IMX7D
)
738 regmap_write(map
, IMX6_MISC0
+ REG_SET
,
739 IMX6_MISC0_REFTOP_SELBIASOFF
);
740 regmap_write(map
, data
->socdata
->sensor_ctrl
+ REG_SET
,
741 data
->socdata
->power_down_mask
);
743 ret
= imx_thermal_register_legacy_cooling(data
);
745 return dev_err_probe(&pdev
->dev
, ret
,
746 "failed to register cpufreq cooling device\n");
748 data
->thermal_clk
= devm_clk_get(&pdev
->dev
, NULL
);
749 if (IS_ERR(data
->thermal_clk
)) {
750 ret
= PTR_ERR(data
->thermal_clk
);
751 if (ret
!= -EPROBE_DEFER
)
753 "failed to get thermal clk: %d\n", ret
);
758 * Thermal sensor needs clk on to get correct value, normally
759 * we should enable its clk before taking measurement and disable
760 * clk after measurement is done, but if alarm function is enabled,
761 * hardware will auto measure the temperature periodically, so we
762 * need to keep the clk always on for alarm function.
764 ret
= clk_prepare_enable(data
->thermal_clk
);
766 dev_err(&pdev
->dev
, "failed to enable thermal clk: %d\n", ret
);
770 data
->tz
= thermal_zone_device_register("imx_thermal_zone",
772 BIT(IMX_TRIP_PASSIVE
), data
,
776 if (IS_ERR(data
->tz
)) {
777 ret
= PTR_ERR(data
->tz
);
779 "failed to register thermal zone device %d\n", ret
);
783 dev_info(&pdev
->dev
, "%s CPU temperature grade - max:%dC"
784 " critical:%dC passive:%dC\n", data
->temp_grade
,
785 data
->temp_max
/ 1000, data
->temp_critical
/ 1000,
786 data
->temp_passive
/ 1000);
788 /* Enable measurements at ~ 10 Hz */
789 regmap_write(map
, data
->socdata
->measure_freq_ctrl
+ REG_CLR
,
790 data
->socdata
->measure_freq_mask
);
791 measure_freq
= DIV_ROUND_UP(32768, 10); /* 10 Hz */
792 regmap_write(map
, data
->socdata
->measure_freq_ctrl
+ REG_SET
,
793 measure_freq
<< data
->socdata
->measure_freq_shift
);
794 imx_set_alarm_temp(data
, data
->temp_passive
);
796 if (data
->socdata
->version
== TEMPMON_IMX6SX
)
797 imx_set_panic_temp(data
, data
->temp_critical
);
799 regmap_write(map
, data
->socdata
->sensor_ctrl
+ REG_CLR
,
800 data
->socdata
->power_down_mask
);
801 regmap_write(map
, data
->socdata
->sensor_ctrl
+ REG_SET
,
802 data
->socdata
->measure_temp_mask
);
804 data
->irq_enabled
= true;
805 ret
= thermal_zone_device_enable(data
->tz
);
807 goto thermal_zone_unregister
;
809 ret
= devm_request_threaded_irq(&pdev
->dev
, data
->irq
,
810 imx_thermal_alarm_irq
, imx_thermal_alarm_irq_thread
,
811 0, "imx_thermal", data
);
813 dev_err(&pdev
->dev
, "failed to request alarm irq: %d\n", ret
);
814 goto thermal_zone_unregister
;
819 thermal_zone_unregister
:
820 thermal_zone_device_unregister(data
->tz
);
822 clk_disable_unprepare(data
->thermal_clk
);
824 imx_thermal_unregister_legacy_cooling(data
);
829 static int imx_thermal_remove(struct platform_device
*pdev
)
831 struct imx_thermal_data
*data
= platform_get_drvdata(pdev
);
832 struct regmap
*map
= data
->tempmon
;
834 /* Disable measurements */
835 regmap_write(map
, data
->socdata
->sensor_ctrl
+ REG_SET
,
836 data
->socdata
->power_down_mask
);
837 if (!IS_ERR(data
->thermal_clk
))
838 clk_disable_unprepare(data
->thermal_clk
);
840 thermal_zone_device_unregister(data
->tz
);
841 imx_thermal_unregister_legacy_cooling(data
);
846 static int __maybe_unused
imx_thermal_suspend(struct device
*dev
)
848 struct imx_thermal_data
*data
= dev_get_drvdata(dev
);
852 * Need to disable thermal sensor, otherwise, when thermal core
853 * try to get temperature before thermal sensor resume, a wrong
854 * temperature will be read as the thermal sensor is powered
855 * down. This is done in change_mode() operation called from
856 * thermal_zone_device_disable()
858 ret
= thermal_zone_device_disable(data
->tz
);
861 clk_disable_unprepare(data
->thermal_clk
);
866 static int __maybe_unused
imx_thermal_resume(struct device
*dev
)
868 struct imx_thermal_data
*data
= dev_get_drvdata(dev
);
871 ret
= clk_prepare_enable(data
->thermal_clk
);
874 /* Enabled thermal sensor after resume */
875 ret
= thermal_zone_device_enable(data
->tz
);
882 static SIMPLE_DEV_PM_OPS(imx_thermal_pm_ops
,
883 imx_thermal_suspend
, imx_thermal_resume
);
885 static struct platform_driver imx_thermal
= {
887 .name
= "imx_thermal",
888 .pm
= &imx_thermal_pm_ops
,
889 .of_match_table
= of_imx_thermal_match
,
891 .probe
= imx_thermal_probe
,
892 .remove
= imx_thermal_remove
,
894 module_platform_driver(imx_thermal
);
896 MODULE_AUTHOR("Freescale Semiconductor, Inc.");
897 MODULE_DESCRIPTION("Thermal driver for Freescale i.MX SoCs");
898 MODULE_LICENSE("GPL v2");
899 MODULE_ALIAS("platform:imx-thermal");