1 // SPDX-License-Identifier: GPL-2.0
5 * Author: Anson Huang <Anson.Huang@nxp.com>
8 #include <linux/bitfield.h>
10 #include <linux/err.h>
12 #include <linux/module.h>
14 #include <linux/of_device.h>
15 #include <linux/platform_device.h>
16 #include <linux/thermal.h>
18 #include "thermal_core.h"
20 #define TER 0x0 /* TMU enable */
22 #define TRITSR 0x20 /* TMU immediate temp */
24 #define TER_EN BIT(31)
25 #define TRITSR_TEMP0_VAL_MASK 0xff
26 #define TRITSR_TEMP1_VAL_MASK 0xff0000
28 #define PROBE_SEL_ALL GENMASK(31, 30)
30 #define probe_status_offset(x) (30 + x)
31 #define SIGN_BIT BIT(7)
32 #define TEMP_VAL_MASK GENMASK(6, 0)
34 #define VER1_TEMP_LOW_LIMIT 10000
35 #define VER2_TEMP_LOW_LIMIT -40000
36 #define VER2_TEMP_HIGH_LIMIT 125000
41 struct thermal_soc_data
{
44 int (*get_temp
)(void *, int *);
48 struct imx8mm_tmu
*priv
;
50 struct thermal_zone_device
*tzd
;
56 const struct thermal_soc_data
*socdata
;
57 struct tmu_sensor sensors
[];
60 static int imx8mm_tmu_get_temp(void *data
, int *temp
)
62 struct tmu_sensor
*sensor
= data
;
63 struct imx8mm_tmu
*tmu
= sensor
->priv
;
66 val
= readl_relaxed(tmu
->base
+ TRITSR
) & TRITSR_TEMP0_VAL_MASK
;
68 if (*temp
< VER1_TEMP_LOW_LIMIT
)
74 static int imx8mp_tmu_get_temp(void *data
, int *temp
)
76 struct tmu_sensor
*sensor
= data
;
77 struct imx8mm_tmu
*tmu
= sensor
->priv
;
81 val
= readl_relaxed(tmu
->base
+ TRITSR
);
82 ready
= test_bit(probe_status_offset(sensor
->hw_id
), &val
);
86 val
= sensor
->hw_id
? FIELD_GET(TRITSR_TEMP1_VAL_MASK
, val
) :
87 FIELD_GET(TRITSR_TEMP0_VAL_MASK
, val
);
88 if (val
& SIGN_BIT
) /* negative */
89 val
= (~(val
& TEMP_VAL_MASK
) + 1);
92 if (*temp
< VER2_TEMP_LOW_LIMIT
|| *temp
> VER2_TEMP_HIGH_LIMIT
)
98 static int tmu_get_temp(void *data
, int *temp
)
100 struct tmu_sensor
*sensor
= data
;
101 struct imx8mm_tmu
*tmu
= sensor
->priv
;
103 return tmu
->socdata
->get_temp(data
, temp
);
106 static struct thermal_zone_of_device_ops tmu_tz_ops
= {
107 .get_temp
= tmu_get_temp
,
110 static void imx8mm_tmu_enable(struct imx8mm_tmu
*tmu
, bool enable
)
114 val
= readl_relaxed(tmu
->base
+ TER
);
115 val
= enable
? (val
| TER_EN
) : (val
& ~TER_EN
);
116 writel_relaxed(val
, tmu
->base
+ TER
);
119 static void imx8mm_tmu_probe_sel_all(struct imx8mm_tmu
*tmu
)
123 val
= readl_relaxed(tmu
->base
+ TPS
);
124 val
|= PROBE_SEL_ALL
;
125 writel_relaxed(val
, tmu
->base
+ TPS
);
128 static int imx8mm_tmu_probe(struct platform_device
*pdev
)
130 const struct thermal_soc_data
*data
;
131 struct imx8mm_tmu
*tmu
;
135 data
= of_device_get_match_data(&pdev
->dev
);
137 tmu
= devm_kzalloc(&pdev
->dev
, struct_size(tmu
, sensors
,
138 data
->num_sensors
), GFP_KERNEL
);
144 tmu
->base
= devm_platform_ioremap_resource(pdev
, 0);
145 if (IS_ERR(tmu
->base
))
146 return PTR_ERR(tmu
->base
);
148 tmu
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
149 if (IS_ERR(tmu
->clk
))
150 return dev_err_probe(&pdev
->dev
, PTR_ERR(tmu
->clk
),
151 "failed to get tmu clock\n");
153 ret
= clk_prepare_enable(tmu
->clk
);
155 dev_err(&pdev
->dev
, "failed to enable tmu clock: %d\n", ret
);
159 /* disable the monitor during initialization */
160 imx8mm_tmu_enable(tmu
, false);
162 for (i
= 0; i
< data
->num_sensors
; i
++) {
163 tmu
->sensors
[i
].priv
= tmu
;
164 tmu
->sensors
[i
].tzd
=
165 devm_thermal_zone_of_sensor_register(&pdev
->dev
, i
,
168 if (IS_ERR(tmu
->sensors
[i
].tzd
)) {
169 ret
= PTR_ERR(tmu
->sensors
[i
].tzd
);
171 "failed to register thermal zone sensor[%d]: %d\n",
175 tmu
->sensors
[i
].hw_id
= i
;
178 platform_set_drvdata(pdev
, tmu
);
180 /* enable all the probes for V2 TMU */
181 if (tmu
->socdata
->version
== TMU_VER2
)
182 imx8mm_tmu_probe_sel_all(tmu
);
184 /* enable the monitor */
185 imx8mm_tmu_enable(tmu
, true);
190 clk_disable_unprepare(tmu
->clk
);
194 static int imx8mm_tmu_remove(struct platform_device
*pdev
)
196 struct imx8mm_tmu
*tmu
= platform_get_drvdata(pdev
);
199 imx8mm_tmu_enable(tmu
, false);
201 clk_disable_unprepare(tmu
->clk
);
202 platform_set_drvdata(pdev
, NULL
);
207 static struct thermal_soc_data imx8mm_tmu_data
= {
210 .get_temp
= imx8mm_tmu_get_temp
,
213 static struct thermal_soc_data imx8mp_tmu_data
= {
216 .get_temp
= imx8mp_tmu_get_temp
,
219 static const struct of_device_id imx8mm_tmu_table
[] = {
220 { .compatible
= "fsl,imx8mm-tmu", .data
= &imx8mm_tmu_data
, },
221 { .compatible
= "fsl,imx8mp-tmu", .data
= &imx8mp_tmu_data
, },
224 MODULE_DEVICE_TABLE(of
, imx8mm_tmu_table
);
226 static struct platform_driver imx8mm_tmu
= {
228 .name
= "i.mx8mm_thermal",
229 .of_match_table
= imx8mm_tmu_table
,
231 .probe
= imx8mm_tmu_probe
,
232 .remove
= imx8mm_tmu_remove
,
234 module_platform_driver(imx8mm_tmu
);
236 MODULE_AUTHOR("Anson Huang <Anson.Huang@nxp.com>");
237 MODULE_DESCRIPTION("i.MX8MM Thermal Monitor Unit driver");
238 MODULE_LICENSE("GPL v2");