2 * Copyright (c) 2011-2015, 2017, The Linux Foundation. All rights reserved.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 and
6 * only version 2 as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
14 #include <linux/bitops.h>
15 #include <linux/delay.h>
16 #include <linux/err.h>
17 #include <linux/iio/consumer.h>
18 #include <linux/interrupt.h>
19 #include <linux/module.h>
21 #include <linux/of_device.h>
22 #include <linux/platform_device.h>
23 #include <linux/regmap.h>
24 #include <linux/thermal.h>
26 #define QPNP_TM_REG_TYPE 0x04
27 #define QPNP_TM_REG_SUBTYPE 0x05
28 #define QPNP_TM_REG_STATUS 0x08
29 #define QPNP_TM_REG_SHUTDOWN_CTRL1 0x40
30 #define QPNP_TM_REG_ALARM_CTRL 0x46
32 #define QPNP_TM_TYPE 0x09
33 #define QPNP_TM_SUBTYPE_GEN1 0x08
34 #define QPNP_TM_SUBTYPE_GEN2 0x09
36 #define STATUS_GEN1_STAGE_MASK GENMASK(1, 0)
37 #define STATUS_GEN2_STATE_MASK GENMASK(6, 4)
38 #define STATUS_GEN2_STATE_SHIFT 4
40 #define SHUTDOWN_CTRL1_OVERRIDE_MASK GENMASK(7, 6)
41 #define SHUTDOWN_CTRL1_THRESHOLD_MASK GENMASK(1, 0)
43 #define ALARM_CTRL_FORCE_ENABLE BIT(7)
46 * Trip point values based on threshold control
47 * 0 = {105 C, 125 C, 145 C}
48 * 1 = {110 C, 130 C, 150 C}
49 * 2 = {115 C, 135 C, 155 C}
50 * 3 = {120 C, 140 C, 160 C}
52 #define TEMP_STAGE_STEP 20000 /* Stage step: 20.000 C */
53 #define TEMP_STAGE_HYSTERESIS 2000
55 #define TEMP_THRESH_MIN 105000 /* Threshold Min: 105 C */
56 #define TEMP_THRESH_STEP 5000 /* Threshold step: 5 C */
60 /* Temperature in Milli Celsius reported during stage 0 if no ADC is present */
61 #define DEFAULT_TEMP 37000
65 struct thermal_zone_device *tz_dev;
70 unsigned int prev_stage;
72 struct iio_channel *adc;
75 /* This array maps from GEN2 alarm state to GEN1 alarm stage */
76 static const unsigned int alarm_state_map[8] = {0, 1, 1, 2, 2, 3, 3, 3};
78 static int qpnp_tm_read(struct qpnp_tm_chip *chip, u16 addr, u8 *data)
83 ret = regmap_read(chip->map, chip->base + addr, &val);
91 static int qpnp_tm_write(struct qpnp_tm_chip *chip, u16 addr, u8 data)
93 return regmap_write(chip->map, chip->base + addr, data);
97 * qpnp_tm_get_temp_stage() - return over-temperature stage
98 * @chip: Pointer to the qpnp_tm chip
100 * Return: stage (GEN1) or state (GEN2) on success, or errno on failure.
102 static int qpnp_tm_get_temp_stage(struct qpnp_tm_chip *chip)
107 ret = qpnp_tm_read(chip, QPNP_TM_REG_STATUS, ®);
111 if (chip->subtype == QPNP_TM_SUBTYPE_GEN1)
112 ret = reg & STATUS_GEN1_STAGE_MASK;
114 ret = (reg & STATUS_GEN2_STATE_MASK) >> STATUS_GEN2_STATE_SHIFT;
120 * This function updates the internal temp value based on the
121 * current thermal stage and threshold as well as the previous stage
123 static int qpnp_tm_update_temp_no_adc(struct qpnp_tm_chip *chip)
125 unsigned int stage, stage_new, stage_old;
128 ret = qpnp_tm_get_temp_stage(chip);
133 if (chip->subtype == QPNP_TM_SUBTYPE_GEN1) {
135 stage_old = chip->stage;
137 stage_new = alarm_state_map[stage];
138 stage_old = alarm_state_map[chip->stage];
141 if (stage_new > stage_old) {
142 /* increasing stage, use lower bound */
143 chip->temp = (stage_new - 1) * TEMP_STAGE_STEP +
144 chip->thresh * TEMP_THRESH_STEP +
145 TEMP_STAGE_HYSTERESIS + TEMP_THRESH_MIN;
146 } else if (stage_new < stage_old) {
147 /* decreasing stage, use upper bound */
148 chip->temp = stage_new * TEMP_STAGE_STEP +
149 chip->thresh * TEMP_THRESH_STEP -
150 TEMP_STAGE_HYSTERESIS + TEMP_THRESH_MIN;
158 static int qpnp_tm_get_temp(void *data, int *temp)
160 struct qpnp_tm_chip *chip = data;
161 int ret, mili_celsius;
167 ret = qpnp_tm_update_temp_no_adc(chip);
171 ret = iio_read_channel_processed(chip->adc, &mili_celsius);
175 chip->temp = mili_celsius;
178 *temp = chip->temp < 0 ? 0 : chip->temp;
183 static const struct thermal_zone_of_device_ops qpnp_tm_sensor_ops = {
184 .get_temp = qpnp_tm_get_temp,
187 static irqreturn_t qpnp_tm_isr(int irq, void *data)
189 struct qpnp_tm_chip *chip = data;
191 thermal_zone_device_update(chip->tz_dev, THERMAL_EVENT_UNSPECIFIED);
197 * This function initializes the internal temp value based on only the
198 * current thermal stage and threshold. Setup threshold control and
199 * disable shutdown override.
201 static int qpnp_tm_init(struct qpnp_tm_chip *chip)
207 ret = qpnp_tm_read(chip, QPNP_TM_REG_SHUTDOWN_CTRL1, ®);
211 chip->thresh = reg & SHUTDOWN_CTRL1_THRESHOLD_MASK;
212 chip->temp = DEFAULT_TEMP;
214 ret = qpnp_tm_get_temp_stage(chip);
219 stage = chip->subtype == QPNP_TM_SUBTYPE_GEN1
220 ? chip->stage : alarm_state_map[chip->stage];
223 chip->temp = chip->thresh * TEMP_THRESH_STEP +
224 (stage - 1) * TEMP_STAGE_STEP +
228 * Set threshold and disable software override of stage 2 and 3
231 chip->thresh = THRESH_MIN;
232 reg &= ~(SHUTDOWN_CTRL1_OVERRIDE_MASK | SHUTDOWN_CTRL1_THRESHOLD_MASK);
233 reg |= chip->thresh & SHUTDOWN_CTRL1_THRESHOLD_MASK;
234 ret = qpnp_tm_write(chip, QPNP_TM_REG_SHUTDOWN_CTRL1, reg);
238 /* Enable the thermal alarm PMIC module in always-on mode. */
239 reg = ALARM_CTRL_FORCE_ENABLE;
240 ret = qpnp_tm_write(chip, QPNP_TM_REG_ALARM_CTRL, reg);
245 static int qpnp_tm_probe(struct platform_device *pdev)
247 struct qpnp_tm_chip *chip;
248 struct device_node *node;
253 node = pdev->dev.of_node;
255 chip = devm_kzalloc(&pdev->dev, sizeof(*chip), GFP_KERNEL);
259 dev_set_drvdata(&pdev->dev, chip);
261 chip->map = dev_get_regmap(pdev->dev.parent, NULL);
265 ret = of_property_read_u32(node, "reg", &res);
269 irq = platform_get_irq(pdev, 0);
273 /* ADC based measurements are optional */
274 chip->adc = devm_iio_channel_get(&pdev->dev, "thermal");
275 if (IS_ERR(chip->adc)) {
276 ret = PTR_ERR(chip->adc);
278 if (ret == -EPROBE_DEFER)
284 ret = qpnp_tm_read(chip, QPNP_TM_REG_TYPE, &type);
286 dev_err(&pdev->dev, "could not read type\n");
290 ret = qpnp_tm_read(chip, QPNP_TM_REG_SUBTYPE, &subtype);
292 dev_err(&pdev->dev, "could not read subtype\n");
296 if (type != QPNP_TM_TYPE || (subtype != QPNP_TM_SUBTYPE_GEN1
297 && subtype != QPNP_TM_SUBTYPE_GEN2)) {
298 dev_err(&pdev->dev, "invalid type 0x%02x or subtype 0x%02x\n",
303 chip->subtype = subtype;
305 ret = qpnp_tm_init(chip);
307 dev_err(&pdev->dev, "init failed\n");
311 ret = devm_request_threaded_irq(&pdev->dev, irq, NULL, qpnp_tm_isr,
312 IRQF_ONESHOT, node->name, chip);
316 chip->tz_dev = devm_thermal_zone_of_sensor_register(&pdev->dev, 0, chip,
317 &qpnp_tm_sensor_ops);
318 if (IS_ERR(chip->tz_dev)) {
319 dev_err(&pdev->dev, "failed to register sensor\n");
320 return PTR_ERR(chip->tz_dev);
326 static const struct of_device_id qpnp_tm_match_table[] = {
327 { .compatible = "qcom,spmi-temp-alarm" },
330 MODULE_DEVICE_TABLE(of, qpnp_tm_match_table);
332 static struct platform_driver qpnp_tm_driver = {
334 .name = "spmi-temp-alarm",
335 .of_match_table = qpnp_tm_match_table,
337 .probe = qpnp_tm_probe,
339 module_platform_driver(qpnp_tm_driver);
341 MODULE_ALIAS("platform:spmi-temp-alarm");
342 MODULE_DESCRIPTION("QPNP PMIC Temperature Alarm driver");
343 MODULE_LICENSE("GPL v2");