1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Thermal device driver for DA9062 and DA9061
4 * Copyright (C) 2017 Dialog Semiconductor
7 /* When over-temperature is reached, an interrupt from the device will be
8 * triggered. Following this event the interrupt will be disabled and
9 * periodic transmission of uevents (HOT trip point) should define the
10 * first level of temperature supervision. It is expected that any final
11 * implementation of the thermal driver will include a .notify() function
12 * to implement these uevents to userspace.
14 * These uevents are intended to indicate non-invasive temperature control
15 * of the system, where the necessary measures for cooling are the
16 * responsibility of the host software. Once the temperature falls again,
17 * the IRQ is re-enabled so the start of a new over-temperature event can
18 * be detected without constant software monitoring.
21 #include <linux/errno.h>
22 #include <linux/interrupt.h>
23 #include <linux/module.h>
25 #include <linux/platform_device.h>
26 #include <linux/regmap.h>
27 #include <linux/thermal.h>
28 #include <linux/workqueue.h>
30 #include <linux/mfd/da9062/core.h>
31 #include <linux/mfd/da9062/registers.h>
33 /* Minimum, maximum and default polling millisecond periods are provided
34 * here as an example. It is expected that any final implementation to also
35 * include a modification of these settings to match the required
38 #define DA9062_DEFAULT_POLLING_MS_PERIOD 3000
39 #define DA9062_MAX_POLLING_MS_PERIOD 10000
40 #define DA9062_MIN_POLLING_MS_PERIOD 1000
42 #define DA9062_MILLI_CELSIUS(t) ((t) * 1000)
44 struct da9062_thermal_config
{
48 struct da9062_thermal
{
50 struct delayed_work work
;
51 struct thermal_zone_device
*zone
;
52 enum thermal_device_mode mode
;
53 struct mutex lock
; /* protection for da9062_thermal temperature */
56 const struct da9062_thermal_config
*config
;
60 static void da9062_thermal_poll_on(struct work_struct
*work
)
62 struct da9062_thermal
*thermal
= container_of(work
,
63 struct da9062_thermal
,
70 ret
= regmap_write(thermal
->hw
->regmap
,
72 DA9062AA_E_TEMP_MASK
);
75 "Cannot clear the TJUNC temperature status\n");
79 /* Now read E_TEMP again: it is acting like a status bit.
80 * If over-temperature, then this status will be true.
81 * If not over-temperature, this status will be false.
83 ret
= regmap_read(thermal
->hw
->regmap
,
88 "Cannot check the TJUNC temperature status\n");
92 if (val
& DA9062AA_E_TEMP_MASK
) {
93 mutex_lock(&thermal
->lock
);
94 thermal
->temperature
= DA9062_MILLI_CELSIUS(125);
95 mutex_unlock(&thermal
->lock
);
96 thermal_zone_device_update(thermal
->zone
,
97 THERMAL_EVENT_UNSPECIFIED
);
99 delay
= msecs_to_jiffies(thermal
->zone
->passive_delay
);
100 queue_delayed_work(system_freezable_wq
, &thermal
->work
, delay
);
104 mutex_lock(&thermal
->lock
);
105 thermal
->temperature
= DA9062_MILLI_CELSIUS(0);
106 mutex_unlock(&thermal
->lock
);
107 thermal_zone_device_update(thermal
->zone
,
108 THERMAL_EVENT_UNSPECIFIED
);
111 enable_irq(thermal
->irq
);
114 static irqreturn_t
da9062_thermal_irq_handler(int irq
, void *data
)
116 struct da9062_thermal
*thermal
= data
;
118 disable_irq_nosync(thermal
->irq
);
119 queue_delayed_work(system_freezable_wq
, &thermal
->work
, 0);
124 static int da9062_thermal_get_mode(struct thermal_zone_device
*z
,
125 enum thermal_device_mode
*mode
)
127 struct da9062_thermal
*thermal
= z
->devdata
;
128 *mode
= thermal
->mode
;
132 static int da9062_thermal_get_trip_type(struct thermal_zone_device
*z
,
134 enum thermal_trip_type
*type
)
136 struct da9062_thermal
*thermal
= z
->devdata
;
140 *type
= THERMAL_TRIP_HOT
;
143 dev_err(thermal
->dev
,
144 "Driver does not support more than 1 trip-wire\n");
151 static int da9062_thermal_get_trip_temp(struct thermal_zone_device
*z
,
155 struct da9062_thermal
*thermal
= z
->devdata
;
159 *temp
= DA9062_MILLI_CELSIUS(125);
162 dev_err(thermal
->dev
,
163 "Driver does not support more than 1 trip-wire\n");
170 static int da9062_thermal_get_temp(struct thermal_zone_device
*z
,
173 struct da9062_thermal
*thermal
= z
->devdata
;
175 mutex_lock(&thermal
->lock
);
176 *temp
= thermal
->temperature
;
177 mutex_unlock(&thermal
->lock
);
182 static struct thermal_zone_device_ops da9062_thermal_ops
= {
183 .get_temp
= da9062_thermal_get_temp
,
184 .get_mode
= da9062_thermal_get_mode
,
185 .get_trip_type
= da9062_thermal_get_trip_type
,
186 .get_trip_temp
= da9062_thermal_get_trip_temp
,
189 static const struct da9062_thermal_config da9062_config
= {
190 .name
= "da9062-thermal",
193 static const struct of_device_id da9062_compatible_reg_id_table
[] = {
194 { .compatible
= "dlg,da9062-thermal", .data
= &da9062_config
},
198 MODULE_DEVICE_TABLE(of
, da9062_compatible_reg_id_table
);
200 static int da9062_thermal_probe(struct platform_device
*pdev
)
202 struct da9062
*chip
= dev_get_drvdata(pdev
->dev
.parent
);
203 struct da9062_thermal
*thermal
;
204 unsigned int pp_tmp
= DA9062_DEFAULT_POLLING_MS_PERIOD
;
205 const struct of_device_id
*match
;
208 match
= of_match_node(da9062_compatible_reg_id_table
,
213 if (pdev
->dev
.of_node
) {
214 if (!of_property_read_u32(pdev
->dev
.of_node
,
215 "polling-delay-passive",
217 if (pp_tmp
< DA9062_MIN_POLLING_MS_PERIOD
||
218 pp_tmp
> DA9062_MAX_POLLING_MS_PERIOD
) {
220 "Out-of-range polling period %d ms\n",
222 pp_tmp
= DA9062_DEFAULT_POLLING_MS_PERIOD
;
227 thermal
= devm_kzalloc(&pdev
->dev
, sizeof(struct da9062_thermal
),
234 thermal
->config
= match
->data
;
236 thermal
->mode
= THERMAL_DEVICE_ENABLED
;
237 thermal
->dev
= &pdev
->dev
;
239 INIT_DELAYED_WORK(&thermal
->work
, da9062_thermal_poll_on
);
240 mutex_init(&thermal
->lock
);
242 thermal
->zone
= thermal_zone_device_register(thermal
->config
->name
,
244 &da9062_thermal_ops
, NULL
, pp_tmp
,
246 if (IS_ERR(thermal
->zone
)) {
247 dev_err(&pdev
->dev
, "Cannot register thermal zone device\n");
248 ret
= PTR_ERR(thermal
->zone
);
253 "TJUNC temperature polling period set at %d ms\n",
254 thermal
->zone
->passive_delay
);
256 ret
= platform_get_irq_byname(pdev
, "THERMAL");
258 dev_err(&pdev
->dev
, "Failed to get platform IRQ.\n");
263 ret
= request_threaded_irq(thermal
->irq
, NULL
,
264 da9062_thermal_irq_handler
,
265 IRQF_TRIGGER_LOW
| IRQF_ONESHOT
,
269 "Failed to request thermal device IRQ.\n");
273 platform_set_drvdata(pdev
, thermal
);
277 thermal_zone_device_unregister(thermal
->zone
);
282 static int da9062_thermal_remove(struct platform_device
*pdev
)
284 struct da9062_thermal
*thermal
= platform_get_drvdata(pdev
);
286 free_irq(thermal
->irq
, thermal
);
287 cancel_delayed_work_sync(&thermal
->work
);
288 thermal_zone_device_unregister(thermal
->zone
);
292 static struct platform_driver da9062_thermal_driver
= {
293 .probe
= da9062_thermal_probe
,
294 .remove
= da9062_thermal_remove
,
296 .name
= "da9062-thermal",
297 .of_match_table
= da9062_compatible_reg_id_table
,
301 module_platform_driver(da9062_thermal_driver
);
303 MODULE_AUTHOR("Steve Twiss");
304 MODULE_DESCRIPTION("Thermal TJUNC device driver for Dialog DA9062 and DA9061");
305 MODULE_LICENSE("GPL");
306 MODULE_ALIAS("platform:da9062-thermal");