arm64: futex: Avoid copying out uninitialised stack in failed cmpxchg()
[linux/fpc-iii.git] / drivers / thermal / qcom-spmi-temp-alarm.c
blobad4f3a8d656056971a05e1bbb3c3ee7fa20d5a11
1 /*
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>
20 #include <linux/of.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 */
58 #define THRESH_MIN 0
60 /* Temperature in Milli Celsius reported during stage 0 if no ADC is present */
61 #define DEFAULT_TEMP 37000
63 struct qpnp_tm_chip {
64 struct regmap *map;
65 struct thermal_zone_device *tz_dev;
66 unsigned int subtype;
67 long temp;
68 unsigned int thresh;
69 unsigned int stage;
70 unsigned int prev_stage;
71 unsigned int base;
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)
80 unsigned int val;
81 int ret;
83 ret = regmap_read(chip->map, chip->base + addr, &val);
84 if (ret < 0)
85 return ret;
87 *data = val;
88 return 0;
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);
96 /**
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)
104 int ret;
105 u8 reg = 0;
107 ret = qpnp_tm_read(chip, QPNP_TM_REG_STATUS, &reg);
108 if (ret < 0)
109 return ret;
111 if (chip->subtype == QPNP_TM_SUBTYPE_GEN1)
112 ret = reg & STATUS_GEN1_STAGE_MASK;
113 else
114 ret = (reg & STATUS_GEN2_STATE_MASK) >> STATUS_GEN2_STATE_SHIFT;
116 return ret;
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;
126 int ret;
128 ret = qpnp_tm_get_temp_stage(chip);
129 if (ret < 0)
130 return ret;
131 stage = ret;
133 if (chip->subtype == QPNP_TM_SUBTYPE_GEN1) {
134 stage_new = stage;
135 stage_old = chip->stage;
136 } else {
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;
153 chip->stage = stage;
155 return 0;
158 static int qpnp_tm_get_temp(void *data, int *temp)
160 struct qpnp_tm_chip *chip = data;
161 int ret, mili_celsius;
163 if (!temp)
164 return -EINVAL;
166 if (!chip->adc) {
167 ret = qpnp_tm_update_temp_no_adc(chip);
168 if (ret < 0)
169 return ret;
170 } else {
171 ret = iio_read_channel_processed(chip->adc, &mili_celsius);
172 if (ret < 0)
173 return ret;
175 chip->temp = mili_celsius;
178 *temp = chip->temp < 0 ? 0 : chip->temp;
180 return 0;
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);
193 return IRQ_HANDLED;
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)
203 unsigned int stage;
204 int ret;
205 u8 reg = 0;
207 ret = qpnp_tm_read(chip, QPNP_TM_REG_SHUTDOWN_CTRL1, &reg);
208 if (ret < 0)
209 return ret;
211 chip->thresh = reg & SHUTDOWN_CTRL1_THRESHOLD_MASK;
212 chip->temp = DEFAULT_TEMP;
214 ret = qpnp_tm_get_temp_stage(chip);
215 if (ret < 0)
216 return ret;
217 chip->stage = ret;
219 stage = chip->subtype == QPNP_TM_SUBTYPE_GEN1
220 ? chip->stage : alarm_state_map[chip->stage];
222 if (stage)
223 chip->temp = chip->thresh * TEMP_THRESH_STEP +
224 (stage - 1) * TEMP_STAGE_STEP +
225 TEMP_THRESH_MIN;
228 * Set threshold and disable software override of stage 2 and 3
229 * shutdowns.
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);
235 if (ret < 0)
236 return ret;
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);
242 return ret;
245 static int qpnp_tm_probe(struct platform_device *pdev)
247 struct qpnp_tm_chip *chip;
248 struct device_node *node;
249 u8 type, subtype;
250 u32 res;
251 int ret, irq;
253 node = pdev->dev.of_node;
255 chip = devm_kzalloc(&pdev->dev, sizeof(*chip), GFP_KERNEL);
256 if (!chip)
257 return -ENOMEM;
259 dev_set_drvdata(&pdev->dev, chip);
261 chip->map = dev_get_regmap(pdev->dev.parent, NULL);
262 if (!chip->map)
263 return -ENXIO;
265 ret = of_property_read_u32(node, "reg", &res);
266 if (ret < 0)
267 return ret;
269 irq = platform_get_irq(pdev, 0);
270 if (irq < 0)
271 return irq;
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);
277 chip->adc = NULL;
278 if (ret == -EPROBE_DEFER)
279 return ret;
282 chip->base = res;
284 ret = qpnp_tm_read(chip, QPNP_TM_REG_TYPE, &type);
285 if (ret < 0) {
286 dev_err(&pdev->dev, "could not read type\n");
287 return ret;
290 ret = qpnp_tm_read(chip, QPNP_TM_REG_SUBTYPE, &subtype);
291 if (ret < 0) {
292 dev_err(&pdev->dev, "could not read subtype\n");
293 return ret;
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",
299 type, subtype);
300 return -ENODEV;
303 chip->subtype = subtype;
305 ret = qpnp_tm_init(chip);
306 if (ret < 0) {
307 dev_err(&pdev->dev, "init failed\n");
308 return ret;
311 ret = devm_request_threaded_irq(&pdev->dev, irq, NULL, qpnp_tm_isr,
312 IRQF_ONESHOT, node->name, chip);
313 if (ret < 0)
314 return ret;
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);
323 return 0;
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 = {
333 .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");