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 struct mutex lock; /* protection for da9062_thermal temperature */
55 const struct da9062_thermal_config *config;
59 static void da9062_thermal_poll_on(struct work_struct *work)
61 struct da9062_thermal *thermal = container_of(work,
62 struct da9062_thermal,
69 ret = regmap_write(thermal->hw->regmap,
71 DA9062AA_E_TEMP_MASK);
74 "Cannot clear the TJUNC temperature status\n");
78 /* Now read E_TEMP again: it is acting like a status bit.
79 * If over-temperature, then this status will be true.
80 * If not over-temperature, this status will be false.
82 ret = regmap_read(thermal->hw->regmap,
87 "Cannot check the TJUNC temperature status\n");
91 if (val & DA9062AA_E_TEMP_MASK) {
92 mutex_lock(&thermal->lock);
93 thermal->temperature = DA9062_MILLI_CELSIUS(125);
94 mutex_unlock(&thermal->lock);
95 thermal_zone_device_update(thermal->zone,
96 THERMAL_EVENT_UNSPECIFIED);
98 delay = thermal->zone->passive_delay_jiffies;
99 queue_delayed_work(system_freezable_wq, &thermal->work, delay);
103 mutex_lock(&thermal->lock);
104 thermal->temperature = DA9062_MILLI_CELSIUS(0);
105 mutex_unlock(&thermal->lock);
106 thermal_zone_device_update(thermal->zone,
107 THERMAL_EVENT_UNSPECIFIED);
110 enable_irq(thermal->irq);
113 static irqreturn_t da9062_thermal_irq_handler(int irq, void *data)
115 struct da9062_thermal *thermal = data;
117 disable_irq_nosync(thermal->irq);
118 queue_delayed_work(system_freezable_wq, &thermal->work, 0);
123 static int da9062_thermal_get_trip_type(struct thermal_zone_device *z,
125 enum thermal_trip_type *type)
127 struct da9062_thermal *thermal = z->devdata;
131 *type = THERMAL_TRIP_HOT;
134 dev_err(thermal->dev,
135 "Driver does not support more than 1 trip-wire\n");
142 static int da9062_thermal_get_trip_temp(struct thermal_zone_device *z,
146 struct da9062_thermal *thermal = z->devdata;
150 *temp = DA9062_MILLI_CELSIUS(125);
153 dev_err(thermal->dev,
154 "Driver does not support more than 1 trip-wire\n");
161 static int da9062_thermal_get_temp(struct thermal_zone_device *z,
164 struct da9062_thermal *thermal = z->devdata;
166 mutex_lock(&thermal->lock);
167 *temp = thermal->temperature;
168 mutex_unlock(&thermal->lock);
173 static struct thermal_zone_device_ops da9062_thermal_ops = {
174 .get_temp = da9062_thermal_get_temp,
175 .get_trip_type = da9062_thermal_get_trip_type,
176 .get_trip_temp = da9062_thermal_get_trip_temp,
179 static const struct da9062_thermal_config da9062_config = {
180 .name = "da9062-thermal",
183 static const struct of_device_id da9062_compatible_reg_id_table[] = {
184 { .compatible = "dlg,da9062-thermal", .data = &da9062_config },
188 MODULE_DEVICE_TABLE(of, da9062_compatible_reg_id_table);
190 static int da9062_thermal_probe(struct platform_device *pdev)
192 struct da9062 *chip = dev_get_drvdata(pdev->dev.parent);
193 struct da9062_thermal *thermal;
194 unsigned int pp_tmp = DA9062_DEFAULT_POLLING_MS_PERIOD;
195 const struct of_device_id *match;
198 match = of_match_node(da9062_compatible_reg_id_table,
203 if (pdev->dev.of_node) {
204 if (!of_property_read_u32(pdev->dev.of_node,
205 "polling-delay-passive",
207 if (pp_tmp < DA9062_MIN_POLLING_MS_PERIOD ||
208 pp_tmp > DA9062_MAX_POLLING_MS_PERIOD) {
210 "Out-of-range polling period %d ms\n",
212 pp_tmp = DA9062_DEFAULT_POLLING_MS_PERIOD;
217 thermal = devm_kzalloc(&pdev->dev, sizeof(struct da9062_thermal),
224 thermal->config = match->data;
226 thermal->dev = &pdev->dev;
228 INIT_DELAYED_WORK(&thermal->work, da9062_thermal_poll_on);
229 mutex_init(&thermal->lock);
231 thermal->zone = thermal_zone_device_register(thermal->config->name,
233 &da9062_thermal_ops, NULL, pp_tmp,
235 if (IS_ERR(thermal->zone)) {
236 dev_err(&pdev->dev, "Cannot register thermal zone device\n");
237 ret = PTR_ERR(thermal->zone);
240 ret = thermal_zone_device_enable(thermal->zone);
242 dev_err(&pdev->dev, "Cannot enable thermal zone device\n");
247 "TJUNC temperature polling period set at %d ms\n",
248 jiffies_to_msecs(thermal->zone->passive_delay_jiffies));
250 ret = platform_get_irq_byname(pdev, "THERMAL");
252 dev_err(&pdev->dev, "Failed to get platform IRQ.\n");
257 ret = request_threaded_irq(thermal->irq, NULL,
258 da9062_thermal_irq_handler,
259 IRQF_TRIGGER_LOW | IRQF_ONESHOT,
263 "Failed to request thermal device IRQ.\n");
267 platform_set_drvdata(pdev, thermal);
271 thermal_zone_device_unregister(thermal->zone);
276 static int da9062_thermal_remove(struct platform_device *pdev)
278 struct da9062_thermal *thermal = platform_get_drvdata(pdev);
280 free_irq(thermal->irq, thermal);
281 cancel_delayed_work_sync(&thermal->work);
282 thermal_zone_device_unregister(thermal->zone);
286 static struct platform_driver da9062_thermal_driver = {
287 .probe = da9062_thermal_probe,
288 .remove = da9062_thermal_remove,
290 .name = "da9062-thermal",
291 .of_match_table = da9062_compatible_reg_id_table,
295 module_platform_driver(da9062_thermal_driver);
297 MODULE_AUTHOR("Steve Twiss");
298 MODULE_DESCRIPTION("Thermal TJUNC device driver for Dialog DA9062 and DA9061");
299 MODULE_LICENSE("GPL");
300 MODULE_ALIAS("platform:da9062-thermal");