1
2
3
4
5
6
7
8#include <linux/bitfield.h>
9#include <linux/iio/adc/qcom-vadc-common.h>
10#include <linux/iio/consumer.h>
11#include <linux/interrupt.h>
12#include <linux/module.h>
13#include <linux/of.h>
14#include <linux/of_device.h>
15#include <linux/platform_device.h>
16#include <linux/regmap.h>
17#include <linux/thermal.h>
18
19
20
21
22
23
24
25
26
27
28
29#define ADC5_MAX_CHANNEL 0xc0
30#define ADC_TM5_NUM_CHANNELS 8
31
32#define ADC_TM5_STATUS_LOW 0x0a
33
34#define ADC_TM5_STATUS_HIGH 0x0b
35
36#define ADC_TM5_NUM_BTM 0x0f
37
38#define ADC_TM5_ADC_DIG_PARAM 0x42
39
40#define ADC_TM5_FAST_AVG_CTL (ADC_TM5_ADC_DIG_PARAM + 1)
41#define ADC_TM5_FAST_AVG_EN BIT(7)
42
43#define ADC_TM5_MEAS_INTERVAL_CTL (ADC_TM5_ADC_DIG_PARAM + 2)
44#define ADC_TM5_TIMER1 3
45
46#define ADC_TM5_MEAS_INTERVAL_CTL2 (ADC_TM5_ADC_DIG_PARAM + 3)
47#define ADC_TM5_MEAS_INTERVAL_CTL2_MASK 0xf0
48#define ADC_TM5_TIMER2 10
49#define ADC_TM5_MEAS_INTERVAL_CTL3_MASK 0xf
50#define ADC_TM5_TIMER3 4
51
52#define ADC_TM_EN_CTL1 0x46
53#define ADC_TM_EN BIT(7)
54#define ADC_TM_CONV_REQ 0x47
55#define ADC_TM_CONV_REQ_EN BIT(7)
56
57#define ADC_TM5_M_CHAN_BASE 0x60
58
59#define ADC_TM5_M_ADC_CH_SEL_CTL(n) (ADC_TM5_M_CHAN_BASE + ((n) * 8) + 0)
60#define ADC_TM5_M_LOW_THR0(n) (ADC_TM5_M_CHAN_BASE + ((n) * 8) + 1)
61#define ADC_TM5_M_LOW_THR1(n) (ADC_TM5_M_CHAN_BASE + ((n) * 8) + 2)
62#define ADC_TM5_M_HIGH_THR0(n) (ADC_TM5_M_CHAN_BASE + ((n) * 8) + 3)
63#define ADC_TM5_M_HIGH_THR1(n) (ADC_TM5_M_CHAN_BASE + ((n) * 8) + 4)
64#define ADC_TM5_M_MEAS_INTERVAL_CTL(n) (ADC_TM5_M_CHAN_BASE + ((n) * 8) + 5)
65#define ADC_TM5_M_CTL(n) (ADC_TM5_M_CHAN_BASE + ((n) * 8) + 6)
66#define ADC_TM5_M_CTL_HW_SETTLE_DELAY_MASK 0xf
67#define ADC_TM5_M_CTL_CAL_SEL_MASK 0x30
68#define ADC_TM5_M_CTL_CAL_VAL 0x40
69#define ADC_TM5_M_EN(n) (ADC_TM5_M_CHAN_BASE + ((n) * 8) + 7)
70#define ADC_TM5_M_MEAS_EN BIT(7)
71#define ADC_TM5_M_HIGH_THR_INT_EN BIT(1)
72#define ADC_TM5_M_LOW_THR_INT_EN BIT(0)
73
74enum adc5_timer_select {
75 ADC5_TIMER_SEL_1 = 0,
76 ADC5_TIMER_SEL_2,
77 ADC5_TIMER_SEL_3,
78 ADC5_TIMER_SEL_NONE,
79};
80
81struct adc_tm5_data {
82 const u32 full_scale_code_volt;
83 unsigned int *decimation;
84 unsigned int *hw_settle;
85};
86
87enum adc_tm5_cal_method {
88 ADC_TM5_NO_CAL = 0,
89 ADC_TM5_RATIOMETRIC_CAL,
90 ADC_TM5_ABSOLUTE_CAL
91};
92
93struct adc_tm5_chip;
94
95
96
97
98
99
100
101
102
103
104
105
106
107struct adc_tm5_channel {
108 unsigned int channel;
109 unsigned int adc_channel;
110 enum adc_tm5_cal_method cal_method;
111 unsigned int prescale;
112 unsigned int hw_settle_time;
113 struct iio_channel *iio;
114 struct adc_tm5_chip *chip;
115 struct thermal_zone_device *tzd;
116};
117
118
119
120
121
122
123
124
125
126
127
128
129
130struct adc_tm5_chip {
131 struct regmap *regmap;
132 struct device *dev;
133 const struct adc_tm5_data *data;
134 struct adc_tm5_channel *channels;
135 unsigned int nchannels;
136 unsigned int decimation;
137 unsigned int avg_samples;
138 u16 base;
139};
140
141static const struct adc_tm5_data adc_tm5_data_pmic = {
142 .full_scale_code_volt = 0x70e4,
143 .decimation = (unsigned int []) { 250, 420, 840 },
144 .hw_settle = (unsigned int []) { 15, 100, 200, 300, 400, 500, 600, 700,
145 1000, 2000, 4000, 8000, 16000, 32000,
146 64000, 128000 },
147};
148
149static int adc_tm5_read(struct adc_tm5_chip *adc_tm, u16 offset, u8 *data, int len)
150{
151 return regmap_bulk_read(adc_tm->regmap, adc_tm->base + offset, data, len);
152}
153
154static int adc_tm5_write(struct adc_tm5_chip *adc_tm, u16 offset, u8 *data, int len)
155{
156 return regmap_bulk_write(adc_tm->regmap, adc_tm->base + offset, data, len);
157}
158
159static int adc_tm5_reg_update(struct adc_tm5_chip *adc_tm, u16 offset, u8 mask, u8 val)
160{
161 return regmap_write_bits(adc_tm->regmap, adc_tm->base + offset, mask, val);
162}
163
164static irqreturn_t adc_tm5_isr(int irq, void *data)
165{
166 struct adc_tm5_chip *chip = data;
167 u8 status_low, status_high, ctl;
168 int ret, i;
169
170 ret = adc_tm5_read(chip, ADC_TM5_STATUS_LOW, &status_low, sizeof(status_low));
171 if (unlikely(ret)) {
172 dev_err(chip->dev, "read status low failed: %d\n", ret);
173 return IRQ_HANDLED;
174 }
175
176 ret = adc_tm5_read(chip, ADC_TM5_STATUS_HIGH, &status_high, sizeof(status_high));
177 if (unlikely(ret)) {
178 dev_err(chip->dev, "read status high failed: %d\n", ret);
179 return IRQ_HANDLED;
180 }
181
182 for (i = 0; i < chip->nchannels; i++) {
183 bool upper_set = false, lower_set = false;
184 unsigned int ch = chip->channels[i].channel;
185
186
187 if (!chip->channels[i].tzd)
188 continue;
189
190 ret = adc_tm5_read(chip, ADC_TM5_M_EN(ch), &ctl, sizeof(ctl));
191 if (unlikely(ret)) {
192 dev_err(chip->dev, "ctl read failed: %d, channel %d\n", ret, i);
193 continue;
194 }
195
196 if (!(ctl & ADC_TM5_M_MEAS_EN))
197 continue;
198
199 lower_set = (status_low & BIT(ch)) &&
200 (ctl & ADC_TM5_M_LOW_THR_INT_EN);
201
202 upper_set = (status_high & BIT(ch)) &&
203 (ctl & ADC_TM5_M_HIGH_THR_INT_EN);
204
205 if (upper_set || lower_set)
206 thermal_zone_device_update(chip->channels[i].tzd,
207 THERMAL_EVENT_UNSPECIFIED);
208 }
209
210 return IRQ_HANDLED;
211}
212
213static int adc_tm5_get_temp(void *data, int *temp)
214{
215 struct adc_tm5_channel *channel = data;
216 int ret;
217
218 if (!channel || !channel->iio)
219 return -EINVAL;
220
221 ret = iio_read_channel_processed(channel->iio, temp);
222 if (ret < 0)
223 return ret;
224
225 if (ret != IIO_VAL_INT)
226 return -EINVAL;
227
228 return 0;
229}
230
231static int adc_tm5_disable_channel(struct adc_tm5_channel *channel)
232{
233 struct adc_tm5_chip *chip = channel->chip;
234 unsigned int reg = ADC_TM5_M_EN(channel->channel);
235
236 return adc_tm5_reg_update(chip, reg,
237 ADC_TM5_M_MEAS_EN |
238 ADC_TM5_M_HIGH_THR_INT_EN |
239 ADC_TM5_M_LOW_THR_INT_EN,
240 0);
241}
242
243static int adc_tm5_enable(struct adc_tm5_chip *chip)
244{
245 int ret;
246 u8 data;
247
248 data = ADC_TM_EN;
249 ret = adc_tm5_write(chip, ADC_TM_EN_CTL1, &data, sizeof(data));
250 if (ret < 0) {
251 dev_err(chip->dev, "adc-tm enable failed\n");
252 return ret;
253 }
254
255 data = ADC_TM_CONV_REQ_EN;
256 ret = adc_tm5_write(chip, ADC_TM_CONV_REQ, &data, sizeof(data));
257 if (ret < 0) {
258 dev_err(chip->dev, "adc-tm request conversion failed\n");
259 return ret;
260 }
261
262 return 0;
263}
264
265static int adc_tm5_configure(struct adc_tm5_channel *channel, int low, int high)
266{
267 struct adc_tm5_chip *chip = channel->chip;
268 u8 buf[8];
269 u16 reg = ADC_TM5_M_ADC_CH_SEL_CTL(channel->channel);
270 int ret;
271
272 ret = adc_tm5_read(chip, reg, buf, sizeof(buf));
273 if (ret) {
274 dev_err(chip->dev, "channel %d params read failed: %d\n", channel->channel, ret);
275 return ret;
276 }
277
278 buf[0] = channel->adc_channel;
279
280
281 if (high != INT_MAX) {
282 u16 adc_code = qcom_adc_tm5_temp_volt_scale(channel->prescale,
283 chip->data->full_scale_code_volt, high);
284
285 buf[1] = adc_code & 0xff;
286 buf[2] = adc_code >> 8;
287 buf[7] |= ADC_TM5_M_LOW_THR_INT_EN;
288 } else {
289 buf[7] &= ~ADC_TM5_M_LOW_THR_INT_EN;
290 }
291
292
293 if (low != -INT_MAX) {
294 u16 adc_code = qcom_adc_tm5_temp_volt_scale(channel->prescale,
295 chip->data->full_scale_code_volt, low);
296
297 buf[3] = adc_code & 0xff;
298 buf[4] = adc_code >> 8;
299 buf[7] |= ADC_TM5_M_HIGH_THR_INT_EN;
300 } else {
301 buf[7] &= ~ADC_TM5_M_HIGH_THR_INT_EN;
302 }
303
304 buf[5] = ADC5_TIMER_SEL_2;
305
306
307 buf[6] &= ~ADC_TM5_M_CTL_HW_SETTLE_DELAY_MASK;
308 buf[6] |= FIELD_PREP(ADC_TM5_M_CTL_HW_SETTLE_DELAY_MASK, channel->hw_settle_time);
309 buf[6] &= ~ADC_TM5_M_CTL_CAL_SEL_MASK;
310 buf[6] |= FIELD_PREP(ADC_TM5_M_CTL_CAL_SEL_MASK, channel->cal_method);
311
312 buf[7] |= ADC_TM5_M_MEAS_EN;
313
314 ret = adc_tm5_write(chip, reg, buf, sizeof(buf));
315 if (ret) {
316 dev_err(chip->dev, "channel %d params write failed: %d\n", channel->channel, ret);
317 return ret;
318 }
319
320 return adc_tm5_enable(chip);
321}
322
323static int adc_tm5_set_trips(void *data, int low, int high)
324{
325 struct adc_tm5_channel *channel = data;
326 struct adc_tm5_chip *chip;
327 int ret;
328
329 if (!channel)
330 return -EINVAL;
331
332 chip = channel->chip;
333 dev_dbg(chip->dev, "%d:low(mdegC):%d, high(mdegC):%d\n",
334 channel->channel, low, high);
335
336 if (high == INT_MAX && low <= -INT_MAX)
337 ret = adc_tm5_disable_channel(channel);
338 else
339 ret = adc_tm5_configure(channel, low, high);
340
341 return ret;
342}
343
344static struct thermal_zone_of_device_ops adc_tm5_ops = {
345 .get_temp = adc_tm5_get_temp,
346 .set_trips = adc_tm5_set_trips,
347};
348
349static int adc_tm5_register_tzd(struct adc_tm5_chip *adc_tm)
350{
351 unsigned int i;
352 struct thermal_zone_device *tzd;
353
354 for (i = 0; i < adc_tm->nchannels; i++) {
355 adc_tm->channels[i].chip = adc_tm;
356
357 tzd = devm_thermal_zone_of_sensor_register(adc_tm->dev,
358 adc_tm->channels[i].channel,
359 &adc_tm->channels[i],
360 &adc_tm5_ops);
361 if (IS_ERR(tzd)) {
362 dev_err(adc_tm->dev, "Error registering TZ zone for channel %d: %ld\n",
363 adc_tm->channels[i].channel, PTR_ERR(tzd));
364 return PTR_ERR(tzd);
365 }
366 adc_tm->channels[i].tzd = tzd;
367 }
368
369 return 0;
370}
371
372static int adc_tm5_init(struct adc_tm5_chip *chip)
373{
374 u8 buf[4], channels_available;
375 int ret;
376 unsigned int i;
377
378 ret = adc_tm5_read(chip, ADC_TM5_NUM_BTM,
379 &channels_available, sizeof(channels_available));
380 if (ret) {
381 dev_err(chip->dev, "read failed for BTM channels\n");
382 return ret;
383 }
384
385 for (i = 0; i < chip->nchannels; i++) {
386 if (chip->channels[i].channel >= channels_available) {
387 dev_err(chip->dev, "Invalid channel %d\n", chip->channels[i].channel);
388 return -EINVAL;
389 }
390 }
391
392 buf[0] = chip->decimation;
393 buf[1] = chip->avg_samples | ADC_TM5_FAST_AVG_EN;
394 buf[2] = ADC_TM5_TIMER1;
395 buf[3] = FIELD_PREP(ADC_TM5_MEAS_INTERVAL_CTL2_MASK, ADC_TM5_TIMER2) |
396 FIELD_PREP(ADC_TM5_MEAS_INTERVAL_CTL3_MASK, ADC_TM5_TIMER3);
397
398 ret = adc_tm5_write(chip, ADC_TM5_ADC_DIG_PARAM, buf, sizeof(buf));
399 if (ret) {
400 dev_err(chip->dev, "block write failed: %d\n", ret);
401 return ret;
402 }
403
404 return ret;
405}
406
407static int adc_tm5_get_dt_channel_data(struct adc_tm5_chip *adc_tm,
408 struct adc_tm5_channel *channel,
409 struct device_node *node)
410{
411 const char *name = node->name;
412 u32 chan, value, varr[2];
413 int ret;
414 struct device *dev = adc_tm->dev;
415 struct of_phandle_args args;
416
417 ret = of_property_read_u32(node, "reg", &chan);
418 if (ret) {
419 dev_err(dev, "%s: invalid channel number %d\n", name, ret);
420 return ret;
421 }
422
423 if (chan >= ADC_TM5_NUM_CHANNELS) {
424 dev_err(dev, "%s: channel number too big: %d\n", name, chan);
425 return -EINVAL;
426 }
427
428 channel->channel = chan;
429
430
431
432
433
434
435 ret = of_parse_phandle_with_fixed_args(node, "io-channels", 1, 0, &args);
436 if (ret < 0) {
437 dev_err(dev, "%s: error parsing ADC channel number %d: %d\n", name, chan, ret);
438 return ret;
439 }
440 of_node_put(args.np);
441
442 if (args.args_count != 1 || args.args[0] >= ADC5_MAX_CHANNEL) {
443 dev_err(dev, "%s: invalid ADC channel number %d\n", name, chan);
444 return -EINVAL;
445 }
446 channel->adc_channel = args.args[0];
447
448 channel->iio = devm_of_iio_channel_get_by_name(adc_tm->dev, node, NULL);
449 if (IS_ERR(channel->iio)) {
450 ret = PTR_ERR(channel->iio);
451 if (ret != -EPROBE_DEFER)
452 dev_err(dev, "%s: error getting channel: %d\n", name, ret);
453 return ret;
454 }
455
456 ret = of_property_read_u32_array(node, "qcom,pre-scaling", varr, 2);
457 if (!ret) {
458 ret = qcom_adc5_prescaling_from_dt(varr[0], varr[1]);
459 if (ret < 0) {
460 dev_err(dev, "%s: invalid pre-scaling <%d %d>\n",
461 name, varr[0], varr[1]);
462 return ret;
463 }
464 channel->prescale = ret;
465 } else {
466
467 channel->prescale = 0;
468 }
469
470 ret = of_property_read_u32(node, "qcom,hw-settle-time-us", &value);
471 if (!ret) {
472 ret = qcom_adc5_hw_settle_time_from_dt(value, adc_tm->data->hw_settle);
473 if (ret < 0) {
474 dev_err(dev, "%s invalid hw-settle-time-us %d us\n",
475 name, value);
476 return ret;
477 }
478 channel->hw_settle_time = ret;
479 } else {
480 channel->hw_settle_time = VADC_DEF_HW_SETTLE_TIME;
481 }
482
483 if (of_property_read_bool(node, "qcom,ratiometric"))
484 channel->cal_method = ADC_TM5_RATIOMETRIC_CAL;
485 else
486 channel->cal_method = ADC_TM5_ABSOLUTE_CAL;
487
488 return 0;
489}
490
491static int adc_tm5_get_dt_data(struct adc_tm5_chip *adc_tm, struct device_node *node)
492{
493 struct adc_tm5_channel *channels;
494 struct device_node *child;
495 u32 value;
496 int ret;
497 struct device *dev = adc_tm->dev;
498
499 adc_tm->nchannels = of_get_available_child_count(node);
500 if (!adc_tm->nchannels)
501 return -EINVAL;
502
503 adc_tm->channels = devm_kcalloc(dev, adc_tm->nchannels,
504 sizeof(*adc_tm->channels), GFP_KERNEL);
505 if (!adc_tm->channels)
506 return -ENOMEM;
507
508 channels = adc_tm->channels;
509
510 adc_tm->data = of_device_get_match_data(dev);
511 if (!adc_tm->data)
512 adc_tm->data = &adc_tm5_data_pmic;
513
514 ret = of_property_read_u32(node, "qcom,decimation", &value);
515 if (!ret) {
516 ret = qcom_adc5_decimation_from_dt(value, adc_tm->data->decimation);
517 if (ret < 0) {
518 dev_err(dev, "invalid decimation %d\n", value);
519 return ret;
520 }
521 adc_tm->decimation = ret;
522 } else {
523 adc_tm->decimation = ADC5_DECIMATION_DEFAULT;
524 }
525
526 ret = of_property_read_u32(node, "qcom,avg-samples", &value);
527 if (!ret) {
528 ret = qcom_adc5_avg_samples_from_dt(value);
529 if (ret < 0) {
530 dev_err(dev, "invalid avg-samples %d\n", value);
531 return ret;
532 }
533 adc_tm->avg_samples = ret;
534 } else {
535 adc_tm->avg_samples = VADC_DEF_AVG_SAMPLES;
536 }
537
538 for_each_available_child_of_node(node, child) {
539 ret = adc_tm5_get_dt_channel_data(adc_tm, channels, child);
540 if (ret) {
541 of_node_put(child);
542 return ret;
543 }
544
545 channels++;
546 }
547
548 return 0;
549}
550
551static int adc_tm5_probe(struct platform_device *pdev)
552{
553 struct device_node *node = pdev->dev.of_node;
554 struct device *dev = &pdev->dev;
555 struct adc_tm5_chip *adc_tm;
556 struct regmap *regmap;
557 int ret, irq;
558 u32 reg;
559
560 regmap = dev_get_regmap(dev->parent, NULL);
561 if (!regmap)
562 return -ENODEV;
563
564 ret = of_property_read_u32(node, "reg", ®);
565 if (ret)
566 return ret;
567
568 adc_tm = devm_kzalloc(&pdev->dev, sizeof(*adc_tm), GFP_KERNEL);
569 if (!adc_tm)
570 return -ENOMEM;
571
572 adc_tm->regmap = regmap;
573 adc_tm->dev = dev;
574 adc_tm->base = reg;
575
576 irq = platform_get_irq(pdev, 0);
577 if (irq < 0) {
578 dev_err(dev, "get_irq failed: %d\n", irq);
579 return irq;
580 }
581
582 ret = adc_tm5_get_dt_data(adc_tm, node);
583 if (ret) {
584 dev_err(dev, "get dt data failed: %d\n", ret);
585 return ret;
586 }
587
588 ret = adc_tm5_init(adc_tm);
589 if (ret) {
590 dev_err(dev, "adc-tm init failed\n");
591 return ret;
592 }
593
594 ret = adc_tm5_register_tzd(adc_tm);
595 if (ret) {
596 dev_err(dev, "tzd register failed\n");
597 return ret;
598 }
599
600 return devm_request_threaded_irq(dev, irq, NULL, adc_tm5_isr,
601 IRQF_ONESHOT, "pm-adc-tm5", adc_tm);
602}
603
604static const struct of_device_id adc_tm5_match_table[] = {
605 {
606 .compatible = "qcom,spmi-adc-tm5",
607 .data = &adc_tm5_data_pmic,
608 },
609 { }
610};
611MODULE_DEVICE_TABLE(of, adc_tm5_match_table);
612
613static struct platform_driver adc_tm5_driver = {
614 .driver = {
615 .name = "qcom-spmi-adc-tm5",
616 .of_match_table = adc_tm5_match_table,
617 },
618 .probe = adc_tm5_probe,
619};
620module_platform_driver(adc_tm5_driver);
621
622MODULE_DESCRIPTION("SPMI PMIC Thermal Monitor ADC driver");
623MODULE_LICENSE("GPL v2");
624