1
2
3
4
5
6
7
8
9
10
11
12
13
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>
25
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
31
32#define QPNP_TM_TYPE 0x09
33#define QPNP_TM_SUBTYPE_GEN1 0x08
34#define QPNP_TM_SUBTYPE_GEN2 0x09
35
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
39
40#define SHUTDOWN_CTRL1_OVERRIDE_MASK GENMASK(7, 6)
41#define SHUTDOWN_CTRL1_THRESHOLD_MASK GENMASK(1, 0)
42
43#define ALARM_CTRL_FORCE_ENABLE BIT(7)
44
45
46
47
48
49
50
51
52#define TEMP_STAGE_STEP 20000
53#define TEMP_STAGE_HYSTERESIS 2000
54
55#define TEMP_THRESH_MIN 105000
56#define TEMP_THRESH_STEP 5000
57
58#define THRESH_MIN 0
59
60
61#define DEFAULT_TEMP 37000
62
63struct 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;
73};
74
75
76static const unsigned int alarm_state_map[8] = {0, 1, 1, 2, 2, 3, 3, 3};
77
78static int qpnp_tm_read(struct qpnp_tm_chip *chip, u16 addr, u8 *data)
79{
80 unsigned int val;
81 int ret;
82
83 ret = regmap_read(chip->map, chip->base + addr, &val);
84 if (ret < 0)
85 return ret;
86
87 *data = val;
88 return 0;
89}
90
91static int qpnp_tm_write(struct qpnp_tm_chip *chip, u16 addr, u8 data)
92{
93 return regmap_write(chip->map, chip->base + addr, data);
94}
95
96
97
98
99
100
101
102static int qpnp_tm_get_temp_stage(struct qpnp_tm_chip *chip)
103{
104 int ret;
105 u8 reg = 0;
106
107 ret = qpnp_tm_read(chip, QPNP_TM_REG_STATUS, ®);
108 if (ret < 0)
109 return ret;
110
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;
115
116 return ret;
117}
118
119
120
121
122
123static int qpnp_tm_update_temp_no_adc(struct qpnp_tm_chip *chip)
124{
125 unsigned int stage, stage_new, stage_old;
126 int ret;
127
128 ret = qpnp_tm_get_temp_stage(chip);
129 if (ret < 0)
130 return ret;
131 stage = ret;
132
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];
139 }
140
141 if (stage_new > stage_old) {
142
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
148 chip->temp = stage_new * TEMP_STAGE_STEP +
149 chip->thresh * TEMP_THRESH_STEP -
150 TEMP_STAGE_HYSTERESIS + TEMP_THRESH_MIN;
151 }
152
153 chip->stage = stage;
154
155 return 0;
156}
157
158static int qpnp_tm_get_temp(void *data, int *temp)
159{
160 struct qpnp_tm_chip *chip = data;
161 int ret, mili_celsius;
162
163 if (!temp)
164 return -EINVAL;
165
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;
174
175 chip->temp = mili_celsius;
176 }
177
178 *temp = chip->temp < 0 ? 0 : chip->temp;
179
180 return 0;
181}
182
183static const struct thermal_zone_of_device_ops qpnp_tm_sensor_ops = {
184 .get_temp = qpnp_tm_get_temp,
185};
186
187static irqreturn_t qpnp_tm_isr(int irq, void *data)
188{
189 struct qpnp_tm_chip *chip = data;
190
191 thermal_zone_device_update(chip->tz_dev, THERMAL_EVENT_UNSPECIFIED);
192
193 return IRQ_HANDLED;
194}
195
196
197
198
199
200
201static int qpnp_tm_init(struct qpnp_tm_chip *chip)
202{
203 unsigned int stage;
204 int ret;
205 u8 reg = 0;
206
207 ret = qpnp_tm_read(chip, QPNP_TM_REG_SHUTDOWN_CTRL1, ®);
208 if (ret < 0)
209 return ret;
210
211 chip->thresh = reg & SHUTDOWN_CTRL1_THRESHOLD_MASK;
212 chip->temp = DEFAULT_TEMP;
213
214 ret = qpnp_tm_get_temp_stage(chip);
215 if (ret < 0)
216 return ret;
217 chip->stage = ret;
218
219 stage = chip->subtype == QPNP_TM_SUBTYPE_GEN1
220 ? chip->stage : alarm_state_map[chip->stage];
221
222 if (stage)
223 chip->temp = chip->thresh * TEMP_THRESH_STEP +
224 (stage - 1) * TEMP_STAGE_STEP +
225 TEMP_THRESH_MIN;
226
227
228
229
230
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;
237
238
239 reg = ALARM_CTRL_FORCE_ENABLE;
240 ret = qpnp_tm_write(chip, QPNP_TM_REG_ALARM_CTRL, reg);
241
242 return ret;
243}
244
245static int qpnp_tm_probe(struct platform_device *pdev)
246{
247 struct qpnp_tm_chip *chip;
248 struct device_node *node;
249 u8 type, subtype;
250 u32 res;
251 int ret, irq;
252
253 node = pdev->dev.of_node;
254
255 chip = devm_kzalloc(&pdev->dev, sizeof(*chip), GFP_KERNEL);
256 if (!chip)
257 return -ENOMEM;
258
259 dev_set_drvdata(&pdev->dev, chip);
260
261 chip->map = dev_get_regmap(pdev->dev.parent, NULL);
262 if (!chip->map)
263 return -ENXIO;
264
265 ret = of_property_read_u32(node, "reg", &res);
266 if (ret < 0)
267 return ret;
268
269 irq = platform_get_irq(pdev, 0);
270 if (irq < 0)
271 return irq;
272
273
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;
280 }
281
282 chip->base = res;
283
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;
288 }
289
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;
294 }
295
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;
301 }
302
303 chip->subtype = subtype;
304
305 ret = qpnp_tm_init(chip);
306 if (ret < 0) {
307 dev_err(&pdev->dev, "init failed\n");
308 return ret;
309 }
310
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;
315
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);
321 }
322
323 return 0;
324}
325
326static const struct of_device_id qpnp_tm_match_table[] = {
327 { .compatible = "qcom,spmi-temp-alarm" },
328 { }
329};
330MODULE_DEVICE_TABLE(of, qpnp_tm_match_table);
331
332static struct platform_driver qpnp_tm_driver = {
333 .driver = {
334 .name = "spmi-temp-alarm",
335 .of_match_table = qpnp_tm_match_table,
336 },
337 .probe = qpnp_tm_probe,
338};
339module_platform_driver(qpnp_tm_driver);
340
341MODULE_ALIAS("platform:spmi-temp-alarm");
342MODULE_DESCRIPTION("QPNP PMIC Temperature Alarm driver");
343MODULE_LICENSE("GPL v2");
344