1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2011-2015, 2017, The Linux Foundation. All rights reserved.
6 #include <linux/bitops.h>
7 #include <linux/delay.h>
9 #include <linux/iio/consumer.h>
10 #include <linux/interrupt.h>
11 #include <linux/module.h>
13 #include <linux/of_device.h>
14 #include <linux/platform_device.h>
15 #include <linux/regmap.h>
16 #include <linux/thermal.h>
18 #include "../thermal_core.h"
20 #define QPNP_TM_REG_TYPE 0x04
21 #define QPNP_TM_REG_SUBTYPE 0x05
22 #define QPNP_TM_REG_STATUS 0x08
23 #define QPNP_TM_REG_SHUTDOWN_CTRL1 0x40
24 #define QPNP_TM_REG_ALARM_CTRL 0x46
26 #define QPNP_TM_TYPE 0x09
27 #define QPNP_TM_SUBTYPE_GEN1 0x08
28 #define QPNP_TM_SUBTYPE_GEN2 0x09
30 #define STATUS_GEN1_STAGE_MASK GENMASK(1, 0)
31 #define STATUS_GEN2_STATE_MASK GENMASK(6, 4)
32 #define STATUS_GEN2_STATE_SHIFT 4
34 #define SHUTDOWN_CTRL1_OVERRIDE_S2 BIT(6)
35 #define SHUTDOWN_CTRL1_THRESHOLD_MASK GENMASK(1, 0)
37 #define SHUTDOWN_CTRL1_RATE_25HZ BIT(3)
39 #define ALARM_CTRL_FORCE_ENABLE BIT(7)
42 * Trip point values based on threshold control
43 * 0 = {105 C, 125 C, 145 C}
44 * 1 = {110 C, 130 C, 150 C}
45 * 2 = {115 C, 135 C, 155 C}
46 * 3 = {120 C, 140 C, 160 C}
48 #define TEMP_STAGE_STEP 20000 /* Stage step: 20.000 C */
49 #define TEMP_STAGE_HYSTERESIS 2000
51 #define TEMP_THRESH_MIN 105000 /* Threshold Min: 105 C */
52 #define TEMP_THRESH_STEP 5000 /* Threshold step: 5 C */
57 /* Stage 2 Threshold Min: 125 C */
58 #define STAGE2_THRESHOLD_MIN 125000
59 /* Stage 2 Threshold Max: 140 C */
60 #define STAGE2_THRESHOLD_MAX 140000
62 /* Temperature in Milli Celsius reported during stage 0 if no ADC is present */
63 #define DEFAULT_TEMP 37000
68 struct thermal_zone_device
*tz_dev
;
73 unsigned int prev_stage
;
75 /* protects .thresh, .stage and chip registers */
79 struct iio_channel
*adc
;
82 /* This array maps from GEN2 alarm state to GEN1 alarm stage */
83 static const unsigned int alarm_state_map
[8] = {0, 1, 1, 2, 2, 3, 3, 3};
85 static int qpnp_tm_read(struct qpnp_tm_chip
*chip
, u16 addr
, u8
*data
)
90 ret
= regmap_read(chip
->map
, chip
->base
+ addr
, &val
);
98 static int qpnp_tm_write(struct qpnp_tm_chip
*chip
, u16 addr
, u8 data
)
100 return regmap_write(chip
->map
, chip
->base
+ addr
, data
);
104 * qpnp_tm_get_temp_stage() - return over-temperature stage
105 * @chip: Pointer to the qpnp_tm chip
107 * Return: stage (GEN1) or state (GEN2) on success, or errno on failure.
109 static int qpnp_tm_get_temp_stage(struct qpnp_tm_chip
*chip
)
114 ret
= qpnp_tm_read(chip
, QPNP_TM_REG_STATUS
, ®
);
118 if (chip
->subtype
== QPNP_TM_SUBTYPE_GEN1
)
119 ret
= reg
& STATUS_GEN1_STAGE_MASK
;
121 ret
= (reg
& STATUS_GEN2_STATE_MASK
) >> STATUS_GEN2_STATE_SHIFT
;
127 * This function updates the internal temp value based on the
128 * current thermal stage and threshold as well as the previous stage
130 static int qpnp_tm_update_temp_no_adc(struct qpnp_tm_chip
*chip
)
132 unsigned int stage
, stage_new
, stage_old
;
135 WARN_ON(!mutex_is_locked(&chip
->lock
));
137 ret
= qpnp_tm_get_temp_stage(chip
);
142 if (chip
->subtype
== QPNP_TM_SUBTYPE_GEN1
) {
144 stage_old
= chip
->stage
;
146 stage_new
= alarm_state_map
[stage
];
147 stage_old
= alarm_state_map
[chip
->stage
];
150 if (stage_new
> stage_old
) {
151 /* increasing stage, use lower bound */
152 chip
->temp
= (stage_new
- 1) * TEMP_STAGE_STEP
+
153 chip
->thresh
* TEMP_THRESH_STEP
+
154 TEMP_STAGE_HYSTERESIS
+ TEMP_THRESH_MIN
;
155 } else if (stage_new
< stage_old
) {
156 /* decreasing stage, use upper bound */
157 chip
->temp
= stage_new
* TEMP_STAGE_STEP
+
158 chip
->thresh
* TEMP_THRESH_STEP
-
159 TEMP_STAGE_HYSTERESIS
+ TEMP_THRESH_MIN
;
167 static int qpnp_tm_get_temp(void *data
, int *temp
)
169 struct qpnp_tm_chip
*chip
= data
;
170 int ret
, mili_celsius
;
175 if (!chip
->initialized
) {
176 *temp
= DEFAULT_TEMP
;
181 mutex_lock(&chip
->lock
);
182 ret
= qpnp_tm_update_temp_no_adc(chip
);
183 mutex_unlock(&chip
->lock
);
187 ret
= iio_read_channel_processed(chip
->adc
, &mili_celsius
);
191 chip
->temp
= mili_celsius
;
194 *temp
= chip
->temp
< 0 ? 0 : chip
->temp
;
199 static int qpnp_tm_update_critical_trip_temp(struct qpnp_tm_chip
*chip
,
203 bool disable_s2_shutdown
= false;
205 WARN_ON(!mutex_is_locked(&chip
->lock
));
208 * Default: S2 and S3 shutdown enabled, thresholds at
209 * 105C/125C/145C, monitoring at 25Hz
211 reg
= SHUTDOWN_CTRL1_RATE_25HZ
;
213 if (temp
== THERMAL_TEMP_INVALID
||
214 temp
< STAGE2_THRESHOLD_MIN
) {
215 chip
->thresh
= THRESH_MIN
;
219 if (temp
<= STAGE2_THRESHOLD_MAX
) {
220 chip
->thresh
= THRESH_MAX
-
221 ((STAGE2_THRESHOLD_MAX
- temp
) /
223 disable_s2_shutdown
= true;
225 chip
->thresh
= THRESH_MAX
;
228 disable_s2_shutdown
= true;
231 "No ADC is configured and critical temperature is above the maximum stage 2 threshold of 140 C! Configuring stage 2 shutdown at 140 C.\n");
236 if (disable_s2_shutdown
)
237 reg
|= SHUTDOWN_CTRL1_OVERRIDE_S2
;
239 return qpnp_tm_write(chip
, QPNP_TM_REG_SHUTDOWN_CTRL1
, reg
);
242 static int qpnp_tm_set_trip_temp(void *data
, int trip
, int temp
)
244 struct qpnp_tm_chip
*chip
= data
;
245 const struct thermal_trip
*trip_points
;
248 trip_points
= of_thermal_get_trip_points(chip
->tz_dev
);
252 if (trip_points
[trip
].type
!= THERMAL_TRIP_CRITICAL
)
255 mutex_lock(&chip
->lock
);
256 ret
= qpnp_tm_update_critical_trip_temp(chip
, temp
);
257 mutex_unlock(&chip
->lock
);
262 static const struct thermal_zone_of_device_ops qpnp_tm_sensor_ops
= {
263 .get_temp
= qpnp_tm_get_temp
,
264 .set_trip_temp
= qpnp_tm_set_trip_temp
,
267 static irqreturn_t
qpnp_tm_isr(int irq
, void *data
)
269 struct qpnp_tm_chip
*chip
= data
;
271 thermal_zone_device_update(chip
->tz_dev
, THERMAL_EVENT_UNSPECIFIED
);
276 static int qpnp_tm_get_critical_trip_temp(struct qpnp_tm_chip
*chip
)
279 const struct thermal_trip
*trips
;
282 ntrips
= of_thermal_get_ntrips(chip
->tz_dev
);
284 return THERMAL_TEMP_INVALID
;
286 trips
= of_thermal_get_trip_points(chip
->tz_dev
);
288 return THERMAL_TEMP_INVALID
;
290 for (i
= 0; i
< ntrips
; i
++) {
291 if (of_thermal_is_trip_valid(chip
->tz_dev
, i
) &&
292 trips
[i
].type
== THERMAL_TRIP_CRITICAL
)
293 return trips
[i
].temperature
;
296 return THERMAL_TEMP_INVALID
;
300 * This function initializes the internal temp value based on only the
301 * current thermal stage and threshold. Setup threshold control and
302 * disable shutdown override.
304 static int qpnp_tm_init(struct qpnp_tm_chip
*chip
)
311 mutex_lock(&chip
->lock
);
313 ret
= qpnp_tm_read(chip
, QPNP_TM_REG_SHUTDOWN_CTRL1
, ®
);
317 chip
->thresh
= reg
& SHUTDOWN_CTRL1_THRESHOLD_MASK
;
318 chip
->temp
= DEFAULT_TEMP
;
320 ret
= qpnp_tm_get_temp_stage(chip
);
325 stage
= chip
->subtype
== QPNP_TM_SUBTYPE_GEN1
326 ? chip
->stage
: alarm_state_map
[chip
->stage
];
329 chip
->temp
= chip
->thresh
* TEMP_THRESH_STEP
+
330 (stage
- 1) * TEMP_STAGE_STEP
+
333 crit_temp
= qpnp_tm_get_critical_trip_temp(chip
);
334 ret
= qpnp_tm_update_critical_trip_temp(chip
, crit_temp
);
338 /* Enable the thermal alarm PMIC module in always-on mode. */
339 reg
= ALARM_CTRL_FORCE_ENABLE
;
340 ret
= qpnp_tm_write(chip
, QPNP_TM_REG_ALARM_CTRL
, reg
);
342 chip
->initialized
= true;
345 mutex_unlock(&chip
->lock
);
349 static int qpnp_tm_probe(struct platform_device
*pdev
)
351 struct qpnp_tm_chip
*chip
;
352 struct device_node
*node
;
357 node
= pdev
->dev
.of_node
;
359 chip
= devm_kzalloc(&pdev
->dev
, sizeof(*chip
), GFP_KERNEL
);
363 dev_set_drvdata(&pdev
->dev
, chip
);
364 chip
->dev
= &pdev
->dev
;
366 mutex_init(&chip
->lock
);
368 chip
->map
= dev_get_regmap(pdev
->dev
.parent
, NULL
);
372 ret
= of_property_read_u32(node
, "reg", &res
);
376 irq
= platform_get_irq(pdev
, 0);
380 /* ADC based measurements are optional */
381 chip
->adc
= devm_iio_channel_get(&pdev
->dev
, "thermal");
382 if (IS_ERR(chip
->adc
)) {
383 ret
= PTR_ERR(chip
->adc
);
385 if (ret
== -EPROBE_DEFER
)
391 ret
= qpnp_tm_read(chip
, QPNP_TM_REG_TYPE
, &type
);
393 dev_err(&pdev
->dev
, "could not read type\n");
397 ret
= qpnp_tm_read(chip
, QPNP_TM_REG_SUBTYPE
, &subtype
);
399 dev_err(&pdev
->dev
, "could not read subtype\n");
403 if (type
!= QPNP_TM_TYPE
|| (subtype
!= QPNP_TM_SUBTYPE_GEN1
404 && subtype
!= QPNP_TM_SUBTYPE_GEN2
)) {
405 dev_err(&pdev
->dev
, "invalid type 0x%02x or subtype 0x%02x\n",
410 chip
->subtype
= subtype
;
413 * Register the sensor before initializing the hardware to be able to
414 * read the trip points. get_temp() returns the default temperature
415 * before the hardware initialization is completed.
417 chip
->tz_dev
= devm_thermal_zone_of_sensor_register(
418 &pdev
->dev
, 0, chip
, &qpnp_tm_sensor_ops
);
419 if (IS_ERR(chip
->tz_dev
)) {
420 dev_err(&pdev
->dev
, "failed to register sensor\n");
421 return PTR_ERR(chip
->tz_dev
);
424 ret
= qpnp_tm_init(chip
);
426 dev_err(&pdev
->dev
, "init failed\n");
430 ret
= devm_request_threaded_irq(&pdev
->dev
, irq
, NULL
, qpnp_tm_isr
,
431 IRQF_ONESHOT
, node
->name
, chip
);
435 thermal_zone_device_update(chip
->tz_dev
, THERMAL_EVENT_UNSPECIFIED
);
440 static const struct of_device_id qpnp_tm_match_table
[] = {
441 { .compatible
= "qcom,spmi-temp-alarm" },
444 MODULE_DEVICE_TABLE(of
, qpnp_tm_match_table
);
446 static struct platform_driver qpnp_tm_driver
= {
448 .name
= "spmi-temp-alarm",
449 .of_match_table
= qpnp_tm_match_table
,
451 .probe
= qpnp_tm_probe
,
453 module_platform_driver(qpnp_tm_driver
);
455 MODULE_ALIAS("platform:spmi-temp-alarm");
456 MODULE_DESCRIPTION("QPNP PMIC Temperature Alarm driver");
457 MODULE_LICENSE("GPL v2");