thermal: Remove debug or error messages in get_temp() ops
[linux-block.git] / drivers / thermal / armada_thermal.c
CommitLineData
9c92ab61 1// SPDX-License-Identifier: GPL-2.0-only
fa0d654c 2/*
a9d58a1a 3 * Marvell EBU Armada SoCs thermal sensor driver
fa0d654c
EG
4 *
5 * Copyright (C) 2013 Marvell
fa0d654c
EG
6 */
7#include <linux/device.h>
8#include <linux/err.h>
9#include <linux/io.h>
10#include <linux/kernel.h>
11#include <linux/of.h>
12#include <linux/module.h>
13#include <linux/delay.h>
14#include <linux/platform_device.h>
15#include <linux/of_device.h>
16#include <linux/thermal.h>
64163681 17#include <linux/iopoll.h>
3d4e5184
MR
18#include <linux/mfd/syscon.h>
19#include <linux/regmap.h>
879d7362
MR
20#include <linux/interrupt.h>
21
fa0d654c
EG
22/* Thermal Manager Control and Status Register */
23#define PMU_TDC0_SW_RST_MASK (0x1 << 1)
24#define PMU_TM_DISABLE_OFFS 0
25#define PMU_TM_DISABLE_MASK (0x1 << PMU_TM_DISABLE_OFFS)
26#define PMU_TDC0_REF_CAL_CNT_OFFS 11
27#define PMU_TDC0_REF_CAL_CNT_MASK (0x1ff << PMU_TDC0_REF_CAL_CNT_OFFS)
28#define PMU_TDC0_OTF_CAL_MASK (0x1 << 30)
29#define PMU_TDC0_START_CAL_MASK (0x1 << 25)
30
e2d5f05b
EG
31#define A375_UNIT_CONTROL_SHIFT 27
32#define A375_UNIT_CONTROL_MASK 0x7
33#define A375_READOUT_INVERT BIT(15)
34#define A375_HW_RESETn BIT(8)
35
8c0b888f
MR
36/* Errata fields */
37#define CONTROL0_TSEN_TC_TRIM_MASK 0x7
38#define CONTROL0_TSEN_TC_TRIM_VAL 0x3
39
2ff12799
BS
40#define CONTROL0_TSEN_START BIT(0)
41#define CONTROL0_TSEN_RESET BIT(1)
42#define CONTROL0_TSEN_ENABLE BIT(2)
a9fae794 43#define CONTROL0_TSEN_AVG_BYPASS BIT(6)
f7c2068a
MR
44#define CONTROL0_TSEN_CHAN_SHIFT 13
45#define CONTROL0_TSEN_CHAN_MASK 0xF
a9fae794
MR
46#define CONTROL0_TSEN_OSR_SHIFT 24
47#define CONTROL0_TSEN_OSR_MAX 0x3
f7c2068a
MR
48#define CONTROL0_TSEN_MODE_SHIFT 30
49#define CONTROL0_TSEN_MODE_EXTERNAL 0x2
50#define CONTROL0_TSEN_MODE_MASK 0x3
2ff12799 51
a9fae794 52#define CONTROL1_TSEN_AVG_MASK 0x7
ccf8f522
BS
53#define CONTROL1_EXT_TSEN_SW_RESET BIT(7)
54#define CONTROL1_EXT_TSEN_HW_RESETn BIT(8)
879d7362
MR
55#define CONTROL1_TSEN_INT_EN BIT(25)
56#define CONTROL1_TSEN_SELECT_OFF 21
57#define CONTROL1_TSEN_SELECT_MASK 0x3
ccf8f522 58
64163681
MR
59#define STATUS_POLL_PERIOD_US 1000
60#define STATUS_POLL_TIMEOUT_US 100000
879d7362 61#define OVERHEAT_INT_POLL_DELAY_MS 1000
64163681 62
66fdb7b6 63struct armada_thermal_data;
fa0d654c
EG
64
65/* Marvell EBU Thermal Sensor Dev Structure */
66struct armada_thermal_priv {
c9899c18 67 struct device *dev;
3d4e5184 68 struct regmap *syscon;
8d98761a 69 char zone_name[THERMAL_NAME_LENGTH];
f7c2068a
MR
70 /* serialize temperature reads/updates */
71 struct mutex update_lock;
66fdb7b6 72 struct armada_thermal_data *data;
879d7362
MR
73 struct thermal_zone_device *overheat_sensor;
74 int interrupt_source;
f7c2068a 75 int current_channel;
879d7362
MR
76 long current_threshold;
77 long current_hysteresis;
fa0d654c
EG
78};
79
66fdb7b6 80struct armada_thermal_data {
8b4c2712
MR
81 /* Initialize the thermal IC */
82 void (*init)(struct platform_device *pdev,
83 struct armada_thermal_priv *priv);
fa0d654c 84
0cf3a1ac 85 /* Formula coeficients: temp = (b - m * reg) / div */
2ff12799
BS
86 s64 coef_b;
87 s64 coef_m;
88 u32 coef_div;
fd2c94d5 89 bool inverted;
2ff12799 90 bool signed_sample;
1fcacca4
EG
91
92 /* Register shift and mask to access the sensor temperature */
93 unsigned int temp_shift;
94 unsigned int temp_mask;
879d7362
MR
95 unsigned int thresh_shift;
96 unsigned int hyst_shift;
97 unsigned int hyst_mask;
27d92f27 98 u32 is_valid_bit;
3d4e5184
MR
99
100 /* Syscon access */
101 unsigned int syscon_control0_off;
102 unsigned int syscon_control1_off;
103 unsigned int syscon_status_off;
879d7362
MR
104 unsigned int dfx_irq_cause_off;
105 unsigned int dfx_irq_mask_off;
106 unsigned int dfx_overheat_irq;
107 unsigned int dfx_server_irq_mask_off;
108 unsigned int dfx_server_irq_en;
f7c2068a
MR
109
110 /* One sensor is in the thermal IC, the others are in the CPUs if any */
111 unsigned int cpu_nr;
fa0d654c
EG
112};
113
c9899c18
MR
114struct armada_drvdata {
115 enum drvtype {
116 LEGACY,
117 SYSCON
118 } type;
119 union {
120 struct armada_thermal_priv *priv;
121 struct thermal_zone_device *tz;
122 } data;
123};
124
125/*
126 * struct armada_thermal_sensor - hold the information of one thermal sensor
127 * @thermal: pointer to the local private structure
128 * @tzd: pointer to the thermal zone device
f7c2068a 129 * @id: identifier of the thermal sensor
c9899c18
MR
130 */
131struct armada_thermal_sensor {
132 struct armada_thermal_priv *priv;
f7c2068a 133 int id;
c9899c18
MR
134};
135
8b4c2712
MR
136static void armadaxp_init(struct platform_device *pdev,
137 struct armada_thermal_priv *priv)
fa0d654c 138{
3d4e5184 139 struct armada_thermal_data *data = priv->data;
2f28e4c2 140 u32 reg;
fa0d654c 141
3d4e5184 142 regmap_read(priv->syscon, data->syscon_control1_off, &reg);
fa0d654c 143 reg |= PMU_TDC0_OTF_CAL_MASK;
fa0d654c
EG
144
145 /* Reference calibration value */
146 reg &= ~PMU_TDC0_REF_CAL_CNT_MASK;
147 reg |= (0xf1 << PMU_TDC0_REF_CAL_CNT_OFFS);
fa0d654c
EG
148
149 /* Reset the sensor */
931d3c5d 150 reg |= PMU_TDC0_SW_RST_MASK;
fa0d654c 151
3d4e5184 152 regmap_write(priv->syscon, data->syscon_control1_off, reg);
fa0d654c 153
ff662895
ZH
154 reg &= ~PMU_TDC0_SW_RST_MASK;
155 regmap_write(priv->syscon, data->syscon_control1_off, reg);
156
fa0d654c 157 /* Enable the sensor */
3d4e5184 158 regmap_read(priv->syscon, data->syscon_status_off, &reg);
fa0d654c 159 reg &= ~PMU_TM_DISABLE_MASK;
3d4e5184 160 regmap_write(priv->syscon, data->syscon_status_off, reg);
fa0d654c
EG
161}
162
8b4c2712
MR
163static void armada370_init(struct platform_device *pdev,
164 struct armada_thermal_priv *priv)
fa0d654c 165{
3d4e5184 166 struct armada_thermal_data *data = priv->data;
2f28e4c2 167 u32 reg;
fa0d654c 168
3d4e5184 169 regmap_read(priv->syscon, data->syscon_control1_off, &reg);
fa0d654c 170 reg |= PMU_TDC0_OTF_CAL_MASK;
fa0d654c
EG
171
172 /* Reference calibration value */
173 reg &= ~PMU_TDC0_REF_CAL_CNT_MASK;
174 reg |= (0xf1 << PMU_TDC0_REF_CAL_CNT_OFFS);
fa0d654c 175
3d4e5184 176 /* Reset the sensor */
fa0d654c 177 reg &= ~PMU_TDC0_START_CAL_MASK;
931d3c5d 178
3d4e5184 179 regmap_write(priv->syscon, data->syscon_control1_off, reg);
fa0d654c 180
7f3be017 181 msleep(10);
fa0d654c
EG
182}
183
8b4c2712
MR
184static void armada375_init(struct platform_device *pdev,
185 struct armada_thermal_priv *priv)
e2d5f05b 186{
3d4e5184 187 struct armada_thermal_data *data = priv->data;
2f28e4c2 188 u32 reg;
e2d5f05b 189
3d4e5184 190 regmap_read(priv->syscon, data->syscon_control1_off, &reg);
e2d5f05b
EG
191 reg &= ~(A375_UNIT_CONTROL_MASK << A375_UNIT_CONTROL_SHIFT);
192 reg &= ~A375_READOUT_INVERT;
193 reg &= ~A375_HW_RESETn;
3d4e5184 194 regmap_write(priv->syscon, data->syscon_control1_off, reg);
e2d5f05b 195
7f3be017 196 msleep(20);
e2d5f05b
EG
197
198 reg |= A375_HW_RESETn;
3d4e5184
MR
199 regmap_write(priv->syscon, data->syscon_control1_off, reg);
200
7f3be017 201 msleep(50);
e2d5f05b
EG
202}
203
f7c2068a 204static int armada_wait_sensor_validity(struct armada_thermal_priv *priv)
64163681
MR
205{
206 u32 reg;
207
f7c2068a
MR
208 return regmap_read_poll_timeout(priv->syscon,
209 priv->data->syscon_status_off, reg,
210 reg & priv->data->is_valid_bit,
211 STATUS_POLL_PERIOD_US,
212 STATUS_POLL_TIMEOUT_US);
64163681
MR
213}
214
8b4c2712
MR
215static void armada380_init(struct platform_device *pdev,
216 struct armada_thermal_priv *priv)
e6e0a68c 217{
3d4e5184
MR
218 struct armada_thermal_data *data = priv->data;
219 u32 reg;
e6e0a68c 220
ccf8f522 221 /* Disable the HW/SW reset */
3d4e5184 222 regmap_read(priv->syscon, data->syscon_control1_off, &reg);
ccf8f522
BS
223 reg |= CONTROL1_EXT_TSEN_HW_RESETn;
224 reg &= ~CONTROL1_EXT_TSEN_SW_RESET;
3d4e5184 225 regmap_write(priv->syscon, data->syscon_control1_off, reg);
8c0b888f
MR
226
227 /* Set Tsen Tc Trim to correct default value (errata #132698) */
3d4e5184
MR
228 regmap_read(priv->syscon, data->syscon_control0_off, &reg);
229 reg &= ~CONTROL0_TSEN_TC_TRIM_MASK;
230 reg |= CONTROL0_TSEN_TC_TRIM_VAL;
231 regmap_write(priv->syscon, data->syscon_control0_off, reg);
e6e0a68c
EG
232}
233
8b4c2712
MR
234static void armada_ap806_init(struct platform_device *pdev,
235 struct armada_thermal_priv *priv)
2ff12799 236{
3d4e5184 237 struct armada_thermal_data *data = priv->data;
2ff12799
BS
238 u32 reg;
239
3d4e5184 240 regmap_read(priv->syscon, data->syscon_control0_off, &reg);
2ff12799
BS
241 reg &= ~CONTROL0_TSEN_RESET;
242 reg |= CONTROL0_TSEN_START | CONTROL0_TSEN_ENABLE;
a9fae794
MR
243
244 /* Sample every ~2ms */
245 reg |= CONTROL0_TSEN_OSR_MAX << CONTROL0_TSEN_OSR_SHIFT;
246
247 /* Enable average (2 samples by default) */
248 reg &= ~CONTROL0_TSEN_AVG_BYPASS;
249
3d4e5184 250 regmap_write(priv->syscon, data->syscon_control0_off, reg);
2ff12799
BS
251}
252
5b5e17a1
MR
253static void armada_cp110_init(struct platform_device *pdev,
254 struct armada_thermal_priv *priv)
255{
3d4e5184 256 struct armada_thermal_data *data = priv->data;
a9fae794
MR
257 u32 reg;
258
5b5e17a1 259 armada380_init(pdev, priv);
a9fae794
MR
260
261 /* Sample every ~2ms */
3d4e5184 262 regmap_read(priv->syscon, data->syscon_control0_off, &reg);
a9fae794 263 reg |= CONTROL0_TSEN_OSR_MAX << CONTROL0_TSEN_OSR_SHIFT;
3d4e5184 264 regmap_write(priv->syscon, data->syscon_control0_off, reg);
a9fae794
MR
265
266 /* Average the output value over 2^1 = 2 samples */
3d4e5184 267 regmap_read(priv->syscon, data->syscon_control1_off, &reg);
9aee3713
NH
268 reg &= ~CONTROL1_TSEN_AVG_MASK;
269 reg |= 1;
3d4e5184 270 regmap_write(priv->syscon, data->syscon_control1_off, reg);
5b5e17a1
MR
271}
272
fa0d654c
EG
273static bool armada_is_valid(struct armada_thermal_priv *priv)
274{
3d4e5184
MR
275 u32 reg;
276
8c0e64ac
MR
277 if (!priv->data->is_valid_bit)
278 return true;
279
3d4e5184 280 regmap_read(priv->syscon, priv->data->syscon_status_off, &reg);
fa0d654c 281
27d92f27 282 return reg & priv->data->is_valid_bit;
fa0d654c
EG
283}
284
879d7362
MR
285static void armada_enable_overheat_interrupt(struct armada_thermal_priv *priv)
286{
287 struct armada_thermal_data *data = priv->data;
288 u32 reg;
289
290 /* Clear DFX temperature IRQ cause */
291 regmap_read(priv->syscon, data->dfx_irq_cause_off, &reg);
292
293 /* Enable DFX Temperature IRQ */
294 regmap_read(priv->syscon, data->dfx_irq_mask_off, &reg);
295 reg |= data->dfx_overheat_irq;
296 regmap_write(priv->syscon, data->dfx_irq_mask_off, reg);
297
298 /* Enable DFX server IRQ */
299 regmap_read(priv->syscon, data->dfx_server_irq_mask_off, &reg);
300 reg |= data->dfx_server_irq_en;
301 regmap_write(priv->syscon, data->dfx_server_irq_mask_off, reg);
302
303 /* Enable overheat interrupt */
304 regmap_read(priv->syscon, data->syscon_control1_off, &reg);
305 reg |= CONTROL1_TSEN_INT_EN;
306 regmap_write(priv->syscon, data->syscon_control1_off, reg);
307}
308
309static void __maybe_unused
310armada_disable_overheat_interrupt(struct armada_thermal_priv *priv)
311{
312 struct armada_thermal_data *data = priv->data;
313 u32 reg;
314
315 regmap_read(priv->syscon, data->syscon_control1_off, &reg);
316 reg &= ~CONTROL1_TSEN_INT_EN;
317 regmap_write(priv->syscon, data->syscon_control1_off, reg);
318}
319
f7c2068a
MR
320/* There is currently no board with more than one sensor per channel */
321static int armada_select_channel(struct armada_thermal_priv *priv, int channel)
322{
323 struct armada_thermal_data *data = priv->data;
324 u32 ctrl0;
325
326 if (channel < 0 || channel > priv->data->cpu_nr)
327 return -EINVAL;
328
329 if (priv->current_channel == channel)
330 return 0;
331
332 /* Stop the measurements */
333 regmap_read(priv->syscon, data->syscon_control0_off, &ctrl0);
334 ctrl0 &= ~CONTROL0_TSEN_START;
335 regmap_write(priv->syscon, data->syscon_control0_off, ctrl0);
336
337 /* Reset the mode, internal sensor will be automatically selected */
338 ctrl0 &= ~(CONTROL0_TSEN_MODE_MASK << CONTROL0_TSEN_MODE_SHIFT);
339
340 /* Other channels are external and should be selected accordingly */
341 if (channel) {
342 /* Change the mode to external */
343 ctrl0 |= CONTROL0_TSEN_MODE_EXTERNAL <<
344 CONTROL0_TSEN_MODE_SHIFT;
345 /* Select the sensor */
346 ctrl0 &= ~(CONTROL0_TSEN_CHAN_MASK << CONTROL0_TSEN_CHAN_SHIFT);
347 ctrl0 |= (channel - 1) << CONTROL0_TSEN_CHAN_SHIFT;
348 }
349
350 /* Actually set the mode/channel */
351 regmap_write(priv->syscon, data->syscon_control0_off, ctrl0);
352 priv->current_channel = channel;
353
354 /* Re-start the measurements */
355 ctrl0 |= CONTROL0_TSEN_START;
356 regmap_write(priv->syscon, data->syscon_control0_off, ctrl0);
357
358 /*
359 * The IP has a latency of ~15ms, so after updating the selected source,
360 * we must absolutely wait for the sensor validity bit to ensure we read
361 * actual data.
362 */
abda7383 363 if (armada_wait_sensor_validity(priv))
f7c2068a 364 return -EIO;
f7c2068a
MR
365
366 return 0;
367}
368
c9899c18 369static int armada_read_sensor(struct armada_thermal_priv *priv, int *temp)
fa0d654c 370{
2ff12799
BS
371 u32 reg, div;
372 s64 sample, b, m;
fa0d654c 373
3d4e5184 374 regmap_read(priv->syscon, priv->data->syscon_status_off, &reg);
1fcacca4 375 reg = (reg >> priv->data->temp_shift) & priv->data->temp_mask;
2ff12799
BS
376 if (priv->data->signed_sample)
377 /* The most significant bit is the sign bit */
378 sample = sign_extend32(reg, fls(priv->data->temp_mask) - 1);
379 else
380 sample = reg;
9484bc62
EG
381
382 /* Get formula coeficients */
383 b = priv->data->coef_b;
384 m = priv->data->coef_m;
385 div = priv->data->coef_div;
386
fd2c94d5 387 if (priv->data->inverted)
2ff12799 388 *temp = div_s64((m * sample) - b, div);
fd2c94d5 389 else
2ff12799
BS
390 *temp = div_s64(b - (m * sample), div);
391
fa0d654c
EG
392 return 0;
393}
394
c9899c18
MR
395static int armada_get_temp_legacy(struct thermal_zone_device *thermal,
396 int *temp)
397{
5f68d078 398 struct armada_thermal_priv *priv = thermal_zone_device_priv(thermal);
c9899c18
MR
399 int ret;
400
68b14828 401 /* Valid check */
abda7383 402 if (!armada_is_valid(priv))
68b14828 403 return -EIO;
68b14828 404
c9899c18
MR
405 /* Do the actual reading */
406 ret = armada_read_sensor(priv, temp);
407
408 return ret;
409}
410
411static struct thermal_zone_device_ops legacy_ops = {
412 .get_temp = armada_get_temp_legacy,
413};
414
e4a1150e 415static int armada_get_temp(struct thermal_zone_device *tz, int *temp)
c9899c18 416{
5f68d078 417 struct armada_thermal_sensor *sensor = thermal_zone_device_priv(tz);
c9899c18 418 struct armada_thermal_priv *priv = sensor->priv;
f7c2068a
MR
419 int ret;
420
421 mutex_lock(&priv->update_lock);
422
423 /* Select the desired channel */
424 ret = armada_select_channel(priv, sensor->id);
425 if (ret)
426 goto unlock_mutex;
c9899c18
MR
427
428 /* Do the actual reading */
f7c2068a 429 ret = armada_read_sensor(priv, temp);
879d7362
MR
430 if (ret)
431 goto unlock_mutex;
432
433 /*
434 * Select back the interrupt source channel from which a potential
435 * critical trip point has been set.
436 */
437 ret = armada_select_channel(priv, priv->interrupt_source);
f7c2068a
MR
438
439unlock_mutex:
440 mutex_unlock(&priv->update_lock);
441
442 return ret;
c9899c18
MR
443}
444
e4a1150e 445static const struct thermal_zone_device_ops of_ops = {
fa0d654c
EG
446 .get_temp = armada_get_temp,
447};
448
879d7362
MR
449static unsigned int armada_mc_to_reg_temp(struct armada_thermal_data *data,
450 unsigned int temp_mc)
451{
452 s64 b = data->coef_b;
453 s64 m = data->coef_m;
454 s64 div = data->coef_div;
455 unsigned int sample;
456
457 if (data->inverted)
458 sample = div_s64(((temp_mc * div) + b), m);
459 else
460 sample = div_s64((b - (temp_mc * div)), m);
461
462 return sample & data->temp_mask;
463}
464
465/*
466 * The documentation states:
467 * high/low watermark = threshold +/- 0.4761 * 2^(hysteresis + 2)
468 * which is the mathematical derivation for:
469 * 0x0 <=> 1.9°C, 0x1 <=> 3.8°C, 0x2 <=> 7.6°C, 0x3 <=> 15.2°C
470 */
471static unsigned int hyst_levels_mc[] = {1900, 3800, 7600, 15200};
472
473static unsigned int armada_mc_to_reg_hyst(struct armada_thermal_data *data,
474 unsigned int hyst_mc)
475{
476 int i;
477
478 /*
479 * We will always take the smallest possible hysteresis to avoid risking
480 * the hardware integrity by enlarging the threshold by +8°C in the
481 * worst case.
482 */
483 for (i = ARRAY_SIZE(hyst_levels_mc) - 1; i > 0; i--)
484 if (hyst_mc >= hyst_levels_mc[i])
485 break;
486
487 return i & data->hyst_mask;
488}
489
490static void armada_set_overheat_thresholds(struct armada_thermal_priv *priv,
491 int thresh_mc, int hyst_mc)
492{
493 struct armada_thermal_data *data = priv->data;
494 unsigned int threshold = armada_mc_to_reg_temp(data, thresh_mc);
495 unsigned int hysteresis = armada_mc_to_reg_hyst(data, hyst_mc);
496 u32 ctrl1;
497
498 regmap_read(priv->syscon, data->syscon_control1_off, &ctrl1);
499
500 /* Set Threshold */
501 if (thresh_mc >= 0) {
502 ctrl1 &= ~(data->temp_mask << data->thresh_shift);
503 ctrl1 |= threshold << data->thresh_shift;
504 priv->current_threshold = thresh_mc;
505 }
506
507 /* Set Hysteresis */
508 if (hyst_mc >= 0) {
509 ctrl1 &= ~(data->hyst_mask << data->hyst_shift);
510 ctrl1 |= hysteresis << data->hyst_shift;
511 priv->current_hysteresis = hyst_mc;
512 }
513
514 regmap_write(priv->syscon, data->syscon_control1_off, ctrl1);
515}
516
517static irqreturn_t armada_overheat_isr(int irq, void *blob)
518{
519 /*
520 * Disable the IRQ and continue in thread context (thermal core
521 * notification and temperature monitoring).
522 */
523 disable_irq_nosync(irq);
524
525 return IRQ_WAKE_THREAD;
526}
527
528static irqreturn_t armada_overheat_isr_thread(int irq, void *blob)
529{
530 struct armada_thermal_priv *priv = blob;
531 int low_threshold = priv->current_threshold - priv->current_hysteresis;
532 int temperature;
533 u32 dummy;
534 int ret;
535
536 /* Notify the core in thread context */
537 thermal_zone_device_update(priv->overheat_sensor,
538 THERMAL_EVENT_UNSPECIFIED);
539
540 /*
541 * The overheat interrupt must be cleared by reading the DFX interrupt
542 * cause _after_ the temperature has fallen down to the low threshold.
543 * Otherwise future interrupts might not be served.
544 */
545 do {
546 msleep(OVERHEAT_INT_POLL_DELAY_MS);
547 mutex_lock(&priv->update_lock);
548 ret = armada_read_sensor(priv, &temperature);
549 mutex_unlock(&priv->update_lock);
550 if (ret)
551 goto enable_irq;
552 } while (temperature >= low_threshold);
553
554 regmap_read(priv->syscon, priv->data->dfx_irq_cause_off, &dummy);
555
556 /* Notify the thermal core that the temperature is acceptable again */
557 thermal_zone_device_update(priv->overheat_sensor,
558 THERMAL_EVENT_UNSPECIFIED);
559
560enable_irq:
561 enable_irq(irq);
562
563 return IRQ_HANDLED;
564}
565
66fdb7b6 566static const struct armada_thermal_data armadaxp_data = {
8b4c2712 567 .init = armadaxp_init,
1fcacca4
EG
568 .temp_shift = 10,
569 .temp_mask = 0x1ff,
2ff12799
BS
570 .coef_b = 3153000000ULL,
571 .coef_m = 10000000ULL,
9484bc62 572 .coef_div = 13825,
3d4e5184 573 .syscon_status_off = 0xb0,
4abb629b 574 .syscon_control1_off = 0x2d0,
fa0d654c
EG
575};
576
66fdb7b6 577static const struct armada_thermal_data armada370_data = {
8b4c2712 578 .init = armada370_init,
27d92f27 579 .is_valid_bit = BIT(9),
1fcacca4
EG
580 .temp_shift = 10,
581 .temp_mask = 0x1ff,
2ff12799
BS
582 .coef_b = 3153000000ULL,
583 .coef_m = 10000000ULL,
9484bc62 584 .coef_div = 13825,
3d4e5184
MR
585 .syscon_status_off = 0x0,
586 .syscon_control1_off = 0x4,
fa0d654c
EG
587};
588
e2d5f05b 589static const struct armada_thermal_data armada375_data = {
8b4c2712 590 .init = armada375_init,
27d92f27 591 .is_valid_bit = BIT(10),
e2d5f05b
EG
592 .temp_shift = 0,
593 .temp_mask = 0x1ff,
2ff12799
BS
594 .coef_b = 3171900000ULL,
595 .coef_m = 10000000ULL,
e2d5f05b 596 .coef_div = 13616,
3d4e5184
MR
597 .syscon_status_off = 0x78,
598 .syscon_control0_off = 0x7c,
599 .syscon_control1_off = 0x80,
e2d5f05b
EG
600};
601
e6e0a68c 602static const struct armada_thermal_data armada380_data = {
8b4c2712 603 .init = armada380_init,
27d92f27 604 .is_valid_bit = BIT(10),
e6e0a68c
EG
605 .temp_shift = 0,
606 .temp_mask = 0x3ff,
2ff12799
BS
607 .coef_b = 1172499100ULL,
608 .coef_m = 2000096ULL,
b56100db 609 .coef_div = 4201,
e6e0a68c 610 .inverted = true,
3d4e5184
MR
611 .syscon_control0_off = 0x70,
612 .syscon_control1_off = 0x74,
613 .syscon_status_off = 0x78,
e6e0a68c
EG
614};
615
2ff12799 616static const struct armada_thermal_data armada_ap806_data = {
8b4c2712 617 .init = armada_ap806_init,
2ff12799
BS
618 .is_valid_bit = BIT(16),
619 .temp_shift = 0,
620 .temp_mask = 0x3ff,
879d7362
MR
621 .thresh_shift = 3,
622 .hyst_shift = 19,
623 .hyst_mask = 0x3,
2ff12799
BS
624 .coef_b = -150000LL,
625 .coef_m = 423ULL,
626 .coef_div = 1,
627 .inverted = true,
628 .signed_sample = true,
3d4e5184
MR
629 .syscon_control0_off = 0x84,
630 .syscon_control1_off = 0x88,
631 .syscon_status_off = 0x8C,
879d7362
MR
632 .dfx_irq_cause_off = 0x108,
633 .dfx_irq_mask_off = 0x10C,
634 .dfx_overheat_irq = BIT(22),
635 .dfx_server_irq_mask_off = 0x104,
636 .dfx_server_irq_en = BIT(1),
f7c2068a 637 .cpu_nr = 4,
2ff12799
BS
638};
639
ccf8f522 640static const struct armada_thermal_data armada_cp110_data = {
5b5e17a1 641 .init = armada_cp110_init,
ccf8f522
BS
642 .is_valid_bit = BIT(10),
643 .temp_shift = 0,
644 .temp_mask = 0x3ff,
879d7362
MR
645 .thresh_shift = 16,
646 .hyst_shift = 26,
647 .hyst_mask = 0x3,
ccf8f522
BS
648 .coef_b = 1172499100ULL,
649 .coef_m = 2000096ULL,
650 .coef_div = 4201,
651 .inverted = true,
3d4e5184
MR
652 .syscon_control0_off = 0x70,
653 .syscon_control1_off = 0x74,
654 .syscon_status_off = 0x78,
879d7362
MR
655 .dfx_irq_cause_off = 0x108,
656 .dfx_irq_mask_off = 0x10C,
657 .dfx_overheat_irq = BIT(20),
658 .dfx_server_irq_mask_off = 0x104,
659 .dfx_server_irq_en = BIT(1),
ccf8f522
BS
660};
661
fa0d654c
EG
662static const struct of_device_id armada_thermal_id_table[] = {
663 {
664 .compatible = "marvell,armadaxp-thermal",
66fdb7b6 665 .data = &armadaxp_data,
fa0d654c
EG
666 },
667 {
668 .compatible = "marvell,armada370-thermal",
66fdb7b6 669 .data = &armada370_data,
fa0d654c 670 },
e2d5f05b
EG
671 {
672 .compatible = "marvell,armada375-thermal",
673 .data = &armada375_data,
674 },
e6e0a68c
EG
675 {
676 .compatible = "marvell,armada380-thermal",
677 .data = &armada380_data,
678 },
2ff12799
BS
679 {
680 .compatible = "marvell,armada-ap806-thermal",
681 .data = &armada_ap806_data,
682 },
ccf8f522
BS
683 {
684 .compatible = "marvell,armada-cp110-thermal",
685 .data = &armada_cp110_data,
686 },
fa0d654c
EG
687 {
688 /* sentinel */
689 },
690};
691MODULE_DEVICE_TABLE(of, armada_thermal_id_table);
692
3d4e5184
MR
693static const struct regmap_config armada_thermal_regmap_config = {
694 .reg_bits = 32,
695 .reg_stride = 4,
696 .val_bits = 32,
697 .fast_io = true,
698};
699
700static int armada_thermal_probe_legacy(struct platform_device *pdev,
701 struct armada_thermal_priv *priv)
702{
703 struct armada_thermal_data *data = priv->data;
3d4e5184
MR
704 void __iomem *base;
705
706 /* First memory region points towards the status register */
9b22743b 707 base = devm_platform_get_and_ioremap_resource(pdev, 0, NULL);
3d4e5184
MR
708 if (IS_ERR(base))
709 return PTR_ERR(base);
710
dc6946cb
RK
711 /*
712 * Fix up from the old individual DT register specification to
713 * cover all the registers. We do this by adjusting the ioremap()
714 * result, which should be fine as ioremap() deals with pages.
715 * However, validate that we do not cross a page boundary while
716 * making this adjustment.
717 */
718 if (((unsigned long)base & ~PAGE_MASK) < data->syscon_status_off)
719 return -EINVAL;
720 base -= data->syscon_status_off;
721
3d4e5184
MR
722 priv->syscon = devm_regmap_init_mmio(&pdev->dev, base,
723 &armada_thermal_regmap_config);
ac31f6e2 724 return PTR_ERR_OR_ZERO(priv->syscon);
3d4e5184
MR
725}
726
727static int armada_thermal_probe_syscon(struct platform_device *pdev,
728 struct armada_thermal_priv *priv)
729{
730 priv->syscon = syscon_node_to_regmap(pdev->dev.parent->of_node);
ac31f6e2 731 return PTR_ERR_OR_ZERO(priv->syscon);
3d4e5184
MR
732}
733
8d98761a
MR
734static void armada_set_sane_name(struct platform_device *pdev,
735 struct armada_thermal_priv *priv)
736{
737 const char *name = dev_name(&pdev->dev);
738 char *insane_char;
739
740 if (strlen(name) > THERMAL_NAME_LENGTH) {
741 /*
742 * When inside a system controller, the device name has the
743 * form: f06f8000.system-controller:ap-thermal so stripping
744 * after the ':' should give us a shorter but meaningful name.
745 */
746 name = strrchr(name, ':');
747 if (!name)
748 name = "armada_thermal";
749 else
750 name++;
751 }
752
753 /* Save the name locally */
3a151494 754 strscpy(priv->zone_name, name, THERMAL_NAME_LENGTH);
8d98761a
MR
755
756 /* Then check there are no '-' or hwmon core will complain */
757 do {
758 insane_char = strpbrk(priv->zone_name, "-");
759 if (insane_char)
760 *insane_char = '_';
761 } while (insane_char);
762}
763
879d7362
MR
764/*
765 * The IP can manage to trigger interrupts on overheat situation from all the
766 * sensors. However, the interrupt source changes along with the last selected
767 * source (ie. the last read sensor), which is an inconsistent behavior. Avoid
768 * possible glitches by always selecting back only one channel (arbitrarily: the
769 * first in the DT which has a critical trip point). We also disable sensor
770 * switch during overheat situations.
771 */
772static int armada_configure_overheat_int(struct armada_thermal_priv *priv,
773 struct thermal_zone_device *tz,
774 int sensor_id)
775{
776 /* Retrieve the critical trip point to enable the overheat interrupt */
8c5ee915 777 int temperature;
879d7362 778 int ret;
879d7362 779
8c5ee915
DL
780 ret = thermal_zone_get_crit_temp(tz, &temperature);
781 if (ret)
782 return ret;
879d7362 783
8c5ee915
DL
784 ret = armada_select_channel(priv, sensor_id);
785 if (ret)
786 return ret;
879d7362 787
8c5ee915
DL
788 /*
789 * A critical temperature does not have a hysteresis
790 */
791 armada_set_overheat_thresholds(priv, temperature, 0);
792 priv->overheat_sensor = tz;
793 priv->interrupt_source = sensor_id;
794 armada_enable_overheat_interrupt(priv);
eb2bb3be 795
8c5ee915 796 return 0;
879d7362
MR
797}
798
fa0d654c
EG
799static int armada_thermal_probe(struct platform_device *pdev)
800{
c9899c18 801 struct thermal_zone_device *tz;
f7c2068a 802 struct armada_thermal_sensor *sensor;
c9899c18 803 struct armada_drvdata *drvdata;
fa0d654c
EG
804 const struct of_device_id *match;
805 struct armada_thermal_priv *priv;
879d7362 806 int sensor_id, irq;
3d4e5184 807 int ret;
fa0d654c
EG
808
809 match = of_match_device(armada_thermal_id_table, &pdev->dev);
810 if (!match)
811 return -ENODEV;
812
813 priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
814 if (!priv)
815 return -ENOMEM;
816
c9899c18 817 drvdata = devm_kzalloc(&pdev->dev, sizeof(*drvdata), GFP_KERNEL);
84b64de5 818 if (!drvdata)
c9899c18 819 return -ENOMEM;
2f28e4c2 820
c9899c18
MR
821 priv->dev = &pdev->dev;
822 priv->data = (struct armada_thermal_data *)match->data;
8d98761a 823
f7c2068a
MR
824 mutex_init(&priv->update_lock);
825
2f28e4c2
MR
826 /*
827 * Legacy DT bindings only described "control1" register (also referred
3d4e5184 828 * as "control MSB" on old documentation). Then, bindings moved to cover
2f28e4c2 829 * "control0/control LSB" and "control1/control MSB" registers within
3d4e5184
MR
830 * the same resource, which was then of size 8 instead of 4.
831 *
832 * The logic of defining sporadic registers is broken. For instance, it
833 * blocked the addition of the overheat interrupt feature that needed
834 * another resource somewhere else in the same memory area. One solution
835 * is to define an overall system controller and put the thermal node
836 * into it, which requires the use of regmaps across all the driver.
2f28e4c2 837 */
c9899c18
MR
838 if (IS_ERR(syscon_node_to_regmap(pdev->dev.parent->of_node))) {
839 /* Ensure device name is correct for the thermal core */
840 armada_set_sane_name(pdev, priv);
841
3d4e5184 842 ret = armada_thermal_probe_legacy(pdev, priv);
c9899c18
MR
843 if (ret)
844 return ret;
3d4e5184 845
c9899c18
MR
846 priv->data->init(pdev, priv);
847
00707e4c
MR
848 /* Wait the sensors to be valid */
849 armada_wait_sensor_validity(priv);
850
c9899c18
MR
851 tz = thermal_zone_device_register(priv->zone_name, 0, 0, priv,
852 &legacy_ops, NULL, 0, 0);
853 if (IS_ERR(tz)) {
854 dev_err(&pdev->dev,
855 "Failed to register thermal zone device\n");
856 return PTR_ERR(tz);
857 }
858
bbcf90c0
AP
859 ret = thermal_zone_device_enable(tz);
860 if (ret) {
861 thermal_zone_device_unregister(tz);
862 return ret;
863 }
864
c9899c18
MR
865 drvdata->type = LEGACY;
866 drvdata->data.tz = tz;
867 platform_set_drvdata(pdev, drvdata);
868
869 return 0;
870 }
871
872 ret = armada_thermal_probe_syscon(pdev, priv);
3d4e5184
MR
873 if (ret)
874 return ret;
2f28e4c2 875
f7c2068a 876 priv->current_channel = -1;
8b4c2712 877 priv->data->init(pdev, priv);
c9899c18
MR
878 drvdata->type = SYSCON;
879 drvdata->data.priv = priv;
880 platform_set_drvdata(pdev, drvdata);
fa0d654c 881
879d7362
MR
882 irq = platform_get_irq(pdev, 0);
883 if (irq == -EPROBE_DEFER)
884 return irq;
885
886 /* The overheat interrupt feature is not mandatory */
887 if (irq > 0) {
888 ret = devm_request_threaded_irq(&pdev->dev, irq,
889 armada_overheat_isr,
890 armada_overheat_isr_thread,
891 0, NULL, priv);
892 if (ret) {
893 dev_err(&pdev->dev, "Cannot request threaded IRQ %d\n",
894 irq);
895 return ret;
896 }
897 }
898
f7c2068a
MR
899 /*
900 * There is one channel for the IC and one per CPU (if any), each
901 * channel has one sensor.
902 */
903 for (sensor_id = 0; sensor_id <= priv->data->cpu_nr; sensor_id++) {
904 sensor = devm_kzalloc(&pdev->dev,
905 sizeof(struct armada_thermal_sensor),
906 GFP_KERNEL);
907 if (!sensor)
908 return -ENOMEM;
909
910 /* Register the sensor */
911 sensor->priv = priv;
912 sensor->id = sensor_id;
e4a1150e
DL
913 tz = devm_thermal_of_zone_register(&pdev->dev,
914 sensor->id, sensor,
915 &of_ops);
f7c2068a
MR
916 if (IS_ERR(tz)) {
917 dev_info(&pdev->dev, "Thermal sensor %d unavailable\n",
918 sensor_id);
919 devm_kfree(&pdev->dev, sensor);
920 continue;
921 }
879d7362
MR
922
923 /*
924 * The first channel that has a critical trip point registered
925 * in the DT will serve as interrupt source. Others possible
926 * critical trip points will simply be ignored by the driver.
927 */
928 if (irq > 0 && !priv->overheat_sensor)
929 armada_configure_overheat_int(priv, tz, sensor->id);
fa0d654c
EG
930 }
931
879d7362
MR
932 /* Just complain if no overheat interrupt was set up */
933 if (!priv->overheat_sensor)
934 dev_warn(&pdev->dev, "Overheat interrupt not available\n");
935
fa0d654c
EG
936 return 0;
937}
938
939static int armada_thermal_exit(struct platform_device *pdev)
940{
c9899c18 941 struct armada_drvdata *drvdata = platform_get_drvdata(pdev);
fa0d654c 942
c9899c18
MR
943 if (drvdata->type == LEGACY)
944 thermal_zone_device_unregister(drvdata->data.tz);
fa0d654c
EG
945
946 return 0;
947}
948
949static struct platform_driver armada_thermal_driver = {
950 .probe = armada_thermal_probe,
951 .remove = armada_thermal_exit,
952 .driver = {
953 .name = "armada_thermal",
1d089e09 954 .of_match_table = armada_thermal_id_table,
fa0d654c
EG
955 },
956};
957
958module_platform_driver(armada_thermal_driver);
959
960MODULE_AUTHOR("Ezequiel Garcia <ezequiel.garcia@free-electrons.com>");
a9d58a1a 961MODULE_DESCRIPTION("Marvell EBU Armada SoCs thermal driver");
fa0d654c 962MODULE_LICENSE("GPL v2");