1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26#include <linux/module.h>
27#include <linux/export.h>
28#include <linux/init.h>
29#include <linux/kernel.h>
30#include <linux/interrupt.h>
31#include <linux/clk.h>
32#include <linux/gpio.h>
33#include <linux/platform_device.h>
34#include <linux/err.h>
35#include <linux/types.h>
36#include <linux/spinlock.h>
37#include <linux/reboot.h>
38#include <linux/of_device.h>
39#include <linux/of_platform.h>
40#include <linux/of_irq.h>
41#include <linux/of_gpio.h>
42#include <linux/io.h>
43
44#include "ti-bandgap.h"
45
46static int ti_bandgap_force_single_read(struct ti_bandgap *bgp, int id);
47
48
49
50
51
52
53
54
55
56
57
58static u32 ti_bandgap_readl(struct ti_bandgap *bgp, u32 reg)
59{
60 return readl(bgp->base + reg);
61}
62
63
64
65
66
67
68
69
70
71static void ti_bandgap_writel(struct ti_bandgap *bgp, u32 val, u32 reg)
72{
73 writel(val, bgp->base + reg);
74}
75
76
77
78
79
80
81
82#define RMW_BITS(bgp, id, reg, mask, val) \
83do { \
84 struct temp_sensor_registers *t; \
85 u32 r; \
86 \
87 t = bgp->conf->sensors[(id)].registers; \
88 r = ti_bandgap_readl(bgp, t->reg); \
89 r &= ~t->mask; \
90 r |= (val) << __ffs(t->mask); \
91 ti_bandgap_writel(bgp, r, t->reg); \
92} while (0)
93
94
95
96
97
98
99
100
101
102
103
104
105
106static int ti_bandgap_power(struct ti_bandgap *bgp, bool on)
107{
108 int i;
109
110 if (!TI_BANDGAP_HAS(bgp, POWER_SWITCH))
111 return -ENOTSUPP;
112
113 for (i = 0; i < bgp->conf->sensor_count; i++)
114
115 RMW_BITS(bgp, i, temp_sensor_ctrl, bgap_tempsoff_mask, !on);
116 return 0;
117}
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135static u32 ti_errata814_bandgap_read_temp(struct ti_bandgap *bgp, u32 reg)
136{
137 u32 val1, val2;
138
139 val1 = ti_bandgap_readl(bgp, reg);
140 val2 = ti_bandgap_readl(bgp, reg);
141
142
143 if (val1 == val2)
144 return val1;
145
146
147 return ti_bandgap_readl(bgp, reg);
148}
149
150
151
152
153
154
155
156
157
158
159
160
161
162static u32 ti_bandgap_read_temp(struct ti_bandgap *bgp, int id)
163{
164 struct temp_sensor_registers *tsr;
165 u32 temp, reg;
166
167 tsr = bgp->conf->sensors[id].registers;
168 reg = tsr->temp_sensor_ctrl;
169
170 if (TI_BANDGAP_HAS(bgp, FREEZE_BIT)) {
171 RMW_BITS(bgp, id, bgap_mask_ctrl, mask_freeze_mask, 1);
172
173
174
175
176 reg = tsr->ctrl_dtemp_1;
177 }
178
179
180 if (TI_BANDGAP_HAS(bgp, ERRATA_814))
181 temp = ti_errata814_bandgap_read_temp(bgp, reg);
182 else
183 temp = ti_bandgap_readl(bgp, reg);
184
185 temp &= tsr->bgap_dtemp_mask;
186
187 if (TI_BANDGAP_HAS(bgp, FREEZE_BIT))
188 RMW_BITS(bgp, id, bgap_mask_ctrl, mask_freeze_mask, 0);
189
190 return temp;
191}
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208static irqreturn_t ti_bandgap_talert_irq_handler(int irq, void *data)
209{
210 struct ti_bandgap *bgp = data;
211 struct temp_sensor_registers *tsr;
212 u32 t_hot = 0, t_cold = 0, ctrl;
213 int i;
214
215 spin_lock(&bgp->lock);
216 for (i = 0; i < bgp->conf->sensor_count; i++) {
217 tsr = bgp->conf->sensors[i].registers;
218 ctrl = ti_bandgap_readl(bgp, tsr->bgap_status);
219
220
221 t_hot = ctrl & tsr->status_hot_mask;
222
223
224 t_cold = ctrl & tsr->status_cold_mask;
225
226 if (!t_cold && !t_hot)
227 continue;
228
229 ctrl = ti_bandgap_readl(bgp, tsr->bgap_mask_ctrl);
230
231
232
233
234
235 if (t_hot) {
236 ctrl &= ~tsr->mask_hot_mask;
237 ctrl |= tsr->mask_cold_mask;
238 } else if (t_cold) {
239 ctrl &= ~tsr->mask_cold_mask;
240 ctrl |= tsr->mask_hot_mask;
241 }
242
243 ti_bandgap_writel(bgp, ctrl, tsr->bgap_mask_ctrl);
244
245 dev_dbg(bgp->dev,
246 "%s: IRQ from %s sensor: hotevent %d coldevent %d\n",
247 __func__, bgp->conf->sensors[i].domain,
248 t_hot, t_cold);
249
250
251 if (bgp->conf->report_temperature)
252 bgp->conf->report_temperature(bgp, i);
253 }
254 spin_unlock(&bgp->lock);
255
256 return IRQ_HANDLED;
257}
258
259
260
261
262
263
264
265
266
267
268
269
270static irqreturn_t ti_bandgap_tshut_irq_handler(int irq, void *data)
271{
272 pr_emerg("%s: TSHUT temperature reached. Needs shut down...\n",
273 __func__);
274
275 orderly_poweroff(true);
276
277 return IRQ_HANDLED;
278}
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295static
296int ti_bandgap_adc_to_mcelsius(struct ti_bandgap *bgp, int adc_val, int *t)
297{
298 const struct ti_bandgap_data *conf = bgp->conf;
299
300
301 if (adc_val < conf->adc_start_val || adc_val > conf->adc_end_val)
302 return -ERANGE;
303
304 *t = bgp->conf->conv_table[adc_val - conf->adc_start_val];
305 return 0;
306}
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321static
322int ti_bandgap_mcelsius_to_adc(struct ti_bandgap *bgp, long temp, int *adc)
323{
324 const struct ti_bandgap_data *conf = bgp->conf;
325 const int *conv_table = bgp->conf->conv_table;
326 int high, low, mid;
327
328 low = 0;
329 high = conf->adc_end_val - conf->adc_start_val;
330 mid = (high + low) / 2;
331
332 if (temp < conv_table[low] || temp > conv_table[high])
333 return -ERANGE;
334
335 while (low < high) {
336 if (temp < conv_table[mid])
337 high = mid - 1;
338 else
339 low = mid + 1;
340 mid = (low + high) / 2;
341 }
342
343 *adc = conf->adc_start_val + low;
344 return 0;
345}
346
347
348
349
350
351
352
353
354
355
356
357
358static
359int ti_bandgap_add_hyst(struct ti_bandgap *bgp, int adc_val, int hyst_val,
360 u32 *sum)
361{
362 int temp, ret;
363
364
365
366
367
368 ret = ti_bandgap_adc_to_mcelsius(bgp, adc_val, &temp);
369 if (ret < 0)
370 return ret;
371
372 temp += hyst_val;
373
374 ret = ti_bandgap_mcelsius_to_adc(bgp, temp, sum);
375 return ret;
376}
377
378
379
380
381
382
383
384
385
386
387
388
389
390static void ti_bandgap_unmask_interrupts(struct ti_bandgap *bgp, int id,
391 u32 t_hot, u32 t_cold)
392{
393 struct temp_sensor_registers *tsr;
394 u32 temp, reg_val;
395
396
397 temp = ti_bandgap_read_temp(bgp, id);
398
399 tsr = bgp->conf->sensors[id].registers;
400 reg_val = ti_bandgap_readl(bgp, tsr->bgap_mask_ctrl);
401
402 if (temp < t_hot)
403 reg_val |= tsr->mask_hot_mask;
404 else
405 reg_val &= ~tsr->mask_hot_mask;
406
407 if (t_cold < temp)
408 reg_val |= tsr->mask_cold_mask;
409 else
410 reg_val &= ~tsr->mask_cold_mask;
411 ti_bandgap_writel(bgp, reg_val, tsr->bgap_mask_ctrl);
412}
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430static int ti_bandgap_update_alert_threshold(struct ti_bandgap *bgp, int id,
431 int val, bool hot)
432{
433 struct temp_sensor_data *ts_data = bgp->conf->sensors[id].ts_data;
434 struct temp_sensor_registers *tsr;
435 u32 thresh_val, reg_val, t_hot, t_cold, ctrl;
436 int err = 0;
437
438 tsr = bgp->conf->sensors[id].registers;
439
440
441 thresh_val = ti_bandgap_readl(bgp, tsr->bgap_threshold);
442 t_cold = (thresh_val & tsr->threshold_tcold_mask) >>
443 __ffs(tsr->threshold_tcold_mask);
444 t_hot = (thresh_val & tsr->threshold_thot_mask) >>
445 __ffs(tsr->threshold_thot_mask);
446 if (hot)
447 t_hot = val;
448 else
449 t_cold = val;
450
451 if (t_cold > t_hot) {
452 if (hot)
453 err = ti_bandgap_add_hyst(bgp, t_hot,
454 -ts_data->hyst_val,
455 &t_cold);
456 else
457 err = ti_bandgap_add_hyst(bgp, t_cold,
458 ts_data->hyst_val,
459 &t_hot);
460 }
461
462
463 reg_val = thresh_val &
464 ~(tsr->threshold_thot_mask | tsr->threshold_tcold_mask);
465 reg_val |= (t_hot << __ffs(tsr->threshold_thot_mask)) |
466 (t_cold << __ffs(tsr->threshold_tcold_mask));
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482 if (TI_BANDGAP_HAS(bgp, ERRATA_813)) {
483
484 ctrl = ti_bandgap_readl(bgp, tsr->bgap_mask_ctrl);
485
486 if (hot)
487 ctrl &= ~tsr->mask_hot_mask;
488 else
489 ctrl &= ~tsr->mask_cold_mask;
490
491 ti_bandgap_writel(bgp, ctrl, tsr->bgap_mask_ctrl);
492 }
493
494
495 ti_bandgap_writel(bgp, reg_val, tsr->bgap_threshold);
496
497 if (TI_BANDGAP_HAS(bgp, ERRATA_813)) {
498
499 ctrl = ti_bandgap_readl(bgp, tsr->bgap_mask_ctrl);
500 if (hot)
501 ctrl |= tsr->mask_hot_mask;
502 else
503 ctrl |= tsr->mask_cold_mask;
504
505 ti_bandgap_writel(bgp, ctrl, tsr->bgap_mask_ctrl);
506 }
507
508 if (err) {
509 dev_err(bgp->dev, "failed to reprogram thot threshold\n");
510 err = -EIO;
511 goto exit;
512 }
513
514 ti_bandgap_unmask_interrupts(bgp, id, t_hot, t_cold);
515exit:
516 return err;
517}
518
519
520
521
522
523
524
525
526
527
528
529
530static inline int ti_bandgap_validate(struct ti_bandgap *bgp, int id)
531{
532 if (!bgp || IS_ERR(bgp)) {
533 pr_err("%s: invalid bandgap pointer\n", __func__);
534 return -EINVAL;
535 }
536
537 if ((id < 0) || (id >= bgp->conf->sensor_count)) {
538 dev_err(bgp->dev, "%s: sensor id out of range (%d)\n",
539 __func__, id);
540 return -ERANGE;
541 }
542
543 return 0;
544}
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561static int _ti_bandgap_write_threshold(struct ti_bandgap *bgp, int id, int val,
562 bool hot)
563{
564 struct temp_sensor_data *ts_data;
565 struct temp_sensor_registers *tsr;
566 u32 adc_val;
567 int ret;
568
569 ret = ti_bandgap_validate(bgp, id);
570 if (ret)
571 return ret;
572
573 if (!TI_BANDGAP_HAS(bgp, TALERT))
574 return -ENOTSUPP;
575
576 ts_data = bgp->conf->sensors[id].ts_data;
577 tsr = bgp->conf->sensors[id].registers;
578 if (hot) {
579 if (val < ts_data->min_temp + ts_data->hyst_val)
580 ret = -EINVAL;
581 } else {
582 if (val > ts_data->max_temp + ts_data->hyst_val)
583 ret = -EINVAL;
584 }
585
586 if (ret)
587 return ret;
588
589 ret = ti_bandgap_mcelsius_to_adc(bgp, val, &adc_val);
590 if (ret < 0)
591 return ret;
592
593 spin_lock(&bgp->lock);
594 ret = ti_bandgap_update_alert_threshold(bgp, id, adc_val, hot);
595 spin_unlock(&bgp->lock);
596 return ret;
597}
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614static int _ti_bandgap_read_threshold(struct ti_bandgap *bgp, int id,
615 int *val, bool hot)
616{
617 struct temp_sensor_registers *tsr;
618 u32 temp, mask;
619 int ret = 0;
620
621 ret = ti_bandgap_validate(bgp, id);
622 if (ret)
623 goto exit;
624
625 if (!TI_BANDGAP_HAS(bgp, TALERT)) {
626 ret = -ENOTSUPP;
627 goto exit;
628 }
629
630 tsr = bgp->conf->sensors[id].registers;
631 if (hot)
632 mask = tsr->threshold_thot_mask;
633 else
634 mask = tsr->threshold_tcold_mask;
635
636 temp = ti_bandgap_readl(bgp, tsr->bgap_threshold);
637 temp = (temp & mask) >> __ffs(mask);
638 ret = ti_bandgap_adc_to_mcelsius(bgp, temp, &temp);
639 if (ret) {
640 dev_err(bgp->dev, "failed to read thot\n");
641 ret = -EIO;
642 goto exit;
643 }
644
645 *val = temp;
646
647exit:
648 return ret;
649}
650
651
652
653
654
655
656
657
658
659
660
661int ti_bandgap_read_thot(struct ti_bandgap *bgp, int id, int *thot)
662{
663 return _ti_bandgap_read_threshold(bgp, id, thot, true);
664}
665
666
667
668
669
670
671
672
673
674int ti_bandgap_write_thot(struct ti_bandgap *bgp, int id, int val)
675{
676 return _ti_bandgap_write_threshold(bgp, id, val, true);
677}
678
679
680
681
682
683
684
685
686
687int ti_bandgap_read_tcold(struct ti_bandgap *bgp, int id, int *tcold)
688{
689 return _ti_bandgap_read_threshold(bgp, id, tcold, false);
690}
691
692
693
694
695
696
697
698
699
700int ti_bandgap_write_tcold(struct ti_bandgap *bgp, int id, int val)
701{
702 return _ti_bandgap_write_threshold(bgp, id, val, false);
703}
704
705
706
707
708
709
710
711static void ti_bandgap_read_counter(struct ti_bandgap *bgp, int id,
712 int *interval)
713{
714 struct temp_sensor_registers *tsr;
715 int time;
716
717 tsr = bgp->conf->sensors[id].registers;
718 time = ti_bandgap_readl(bgp, tsr->bgap_counter);
719 time = (time & tsr->counter_mask) >>
720 __ffs(tsr->counter_mask);
721 time = time * 1000 / bgp->clk_rate;
722 *interval = time;
723}
724
725
726
727
728
729
730
731static void ti_bandgap_read_counter_delay(struct ti_bandgap *bgp, int id,
732 int *interval)
733{
734 struct temp_sensor_registers *tsr;
735 int reg_val;
736
737 tsr = bgp->conf->sensors[id].registers;
738
739 reg_val = ti_bandgap_readl(bgp, tsr->bgap_mask_ctrl);
740 reg_val = (reg_val & tsr->mask_counter_delay_mask) >>
741 __ffs(tsr->mask_counter_delay_mask);
742 switch (reg_val) {
743 case 0:
744 *interval = 0;
745 break;
746 case 1:
747 *interval = 1;
748 break;
749 case 2:
750 *interval = 10;
751 break;
752 case 3:
753 *interval = 100;
754 break;
755 case 4:
756 *interval = 250;
757 break;
758 case 5:
759 *interval = 500;
760 break;
761 default:
762 dev_warn(bgp->dev, "Wrong counter delay value read from register %X",
763 reg_val);
764 }
765}
766
767
768
769
770
771
772
773
774
775int ti_bandgap_read_update_interval(struct ti_bandgap *bgp, int id,
776 int *interval)
777{
778 int ret = 0;
779
780 ret = ti_bandgap_validate(bgp, id);
781 if (ret)
782 goto exit;
783
784 if (!TI_BANDGAP_HAS(bgp, COUNTER) &&
785 !TI_BANDGAP_HAS(bgp, COUNTER_DELAY)) {
786 ret = -ENOTSUPP;
787 goto exit;
788 }
789
790 if (TI_BANDGAP_HAS(bgp, COUNTER)) {
791 ti_bandgap_read_counter(bgp, id, interval);
792 goto exit;
793 }
794
795 ti_bandgap_read_counter_delay(bgp, id, interval);
796exit:
797 return ret;
798}
799
800
801
802
803
804
805
806
807
808static int ti_bandgap_write_counter_delay(struct ti_bandgap *bgp, int id,
809 u32 interval)
810{
811 int rval;
812
813 switch (interval) {
814 case 0:
815 rval = 0x0;
816 break;
817 case 1:
818 rval = 0x1;
819 break;
820 case 10:
821 rval = 0x2;
822 break;
823 case 100:
824 rval = 0x3;
825 break;
826 case 250:
827 rval = 0x4;
828 break;
829 case 500:
830 rval = 0x5;
831 break;
832 default:
833 dev_warn(bgp->dev, "Delay %d ms is not supported\n", interval);
834 return -EINVAL;
835 }
836
837 spin_lock(&bgp->lock);
838 RMW_BITS(bgp, id, bgap_mask_ctrl, mask_counter_delay_mask, rval);
839 spin_unlock(&bgp->lock);
840
841 return 0;
842}
843
844
845
846
847
848
849
850static void ti_bandgap_write_counter(struct ti_bandgap *bgp, int id,
851 u32 interval)
852{
853 interval = interval * bgp->clk_rate / 1000;
854 spin_lock(&bgp->lock);
855 RMW_BITS(bgp, id, bgap_counter, counter_mask, interval);
856 spin_unlock(&bgp->lock);
857}
858
859
860
861
862
863
864
865
866
867int ti_bandgap_write_update_interval(struct ti_bandgap *bgp,
868 int id, u32 interval)
869{
870 int ret = ti_bandgap_validate(bgp, id);
871 if (ret)
872 goto exit;
873
874 if (!TI_BANDGAP_HAS(bgp, COUNTER) &&
875 !TI_BANDGAP_HAS(bgp, COUNTER_DELAY)) {
876 ret = -ENOTSUPP;
877 goto exit;
878 }
879
880 if (TI_BANDGAP_HAS(bgp, COUNTER)) {
881 ti_bandgap_write_counter(bgp, id, interval);
882 goto exit;
883 }
884
885 ret = ti_bandgap_write_counter_delay(bgp, id, interval);
886exit:
887 return ret;
888}
889
890
891
892
893
894
895
896
897
898int ti_bandgap_read_temperature(struct ti_bandgap *bgp, int id,
899 int *temperature)
900{
901 u32 temp;
902 int ret;
903
904 ret = ti_bandgap_validate(bgp, id);
905 if (ret)
906 return ret;
907
908 if (!TI_BANDGAP_HAS(bgp, MODE_CONFIG)) {
909 ret = ti_bandgap_force_single_read(bgp, id);
910 if (ret)
911 return ret;
912 }
913
914 spin_lock(&bgp->lock);
915 temp = ti_bandgap_read_temp(bgp, id);
916 spin_unlock(&bgp->lock);
917
918 ret = ti_bandgap_adc_to_mcelsius(bgp, temp, &temp);
919 if (ret)
920 return -EIO;
921
922 *temperature = temp;
923
924 return 0;
925}
926
927
928
929
930
931
932
933
934
935
936int ti_bandgap_set_sensor_data(struct ti_bandgap *bgp, int id, void *data)
937{
938 int ret = ti_bandgap_validate(bgp, id);
939 if (ret)
940 return ret;
941
942 bgp->regval[id].data = data;
943
944 return 0;
945}
946
947
948
949
950
951
952
953
954
955void *ti_bandgap_get_sensor_data(struct ti_bandgap *bgp, int id)
956{
957 int ret = ti_bandgap_validate(bgp, id);
958 if (ret)
959 return ERR_PTR(ret);
960
961 return bgp->regval[id].data;
962}
963
964
965
966
967
968
969
970
971
972
973
974
975
976static int
977ti_bandgap_force_single_read(struct ti_bandgap *bgp, int id)
978{
979 u32 counter = 1000;
980 struct temp_sensor_registers *tsr;
981
982
983 if (TI_BANDGAP_HAS(bgp, MODE_CONFIG))
984 RMW_BITS(bgp, id, bgap_mode_ctrl, mode_ctrl_mask, 0);
985
986
987 RMW_BITS(bgp, id, temp_sensor_ctrl, bgap_soc_mask, 1);
988
989
990 tsr = bgp->conf->sensors[id].registers;
991
992 while (--counter) {
993 if (ti_bandgap_readl(bgp, tsr->temp_sensor_ctrl) &
994 tsr->bgap_eocz_mask)
995 break;
996 }
997
998
999 RMW_BITS(bgp, id, temp_sensor_ctrl, bgap_soc_mask, 0);
1000
1001
1002 counter = 1000;
1003 while (--counter) {
1004 if (!(ti_bandgap_readl(bgp, tsr->temp_sensor_ctrl) &
1005 tsr->bgap_eocz_mask))
1006 break;
1007 }
1008
1009 return 0;
1010}
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023static int ti_bandgap_set_continuous_mode(struct ti_bandgap *bgp)
1024{
1025 int i;
1026
1027 for (i = 0; i < bgp->conf->sensor_count; i++) {
1028
1029 ti_bandgap_force_single_read(bgp, i);
1030 RMW_BITS(bgp, i, bgap_mode_ctrl, mode_ctrl_mask, 1);
1031 }
1032
1033 return 0;
1034}
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051int ti_bandgap_get_trend(struct ti_bandgap *bgp, int id, int *trend)
1052{
1053 struct temp_sensor_registers *tsr;
1054 u32 temp1, temp2, reg1, reg2;
1055 int t1, t2, interval, ret = 0;
1056
1057 ret = ti_bandgap_validate(bgp, id);
1058 if (ret)
1059 goto exit;
1060
1061 if (!TI_BANDGAP_HAS(bgp, HISTORY_BUFFER) ||
1062 !TI_BANDGAP_HAS(bgp, FREEZE_BIT)) {
1063 ret = -ENOTSUPP;
1064 goto exit;
1065 }
1066
1067 spin_lock(&bgp->lock);
1068
1069 tsr = bgp->conf->sensors[id].registers;
1070
1071
1072 RMW_BITS(bgp, id, bgap_mask_ctrl, mask_freeze_mask, 1);
1073 reg1 = tsr->ctrl_dtemp_1;
1074 reg2 = tsr->ctrl_dtemp_2;
1075
1076
1077 temp1 = ti_bandgap_readl(bgp, reg1);
1078 temp1 &= tsr->bgap_dtemp_mask;
1079
1080 temp2 = ti_bandgap_readl(bgp, reg2);
1081 temp2 &= tsr->bgap_dtemp_mask;
1082
1083
1084 ret = ti_bandgap_adc_to_mcelsius(bgp, temp1, &t1);
1085 if (ret)
1086 goto unfreeze;
1087
1088 ret = ti_bandgap_adc_to_mcelsius(bgp, temp2, &t2);
1089 if (ret)
1090 goto unfreeze;
1091
1092
1093 ret = ti_bandgap_read_update_interval(bgp, id, &interval);
1094 if (ret)
1095 goto unfreeze;
1096
1097
1098 if (interval == 0)
1099 interval = 1;
1100
1101 *trend = (t1 - t2) / interval;
1102
1103 dev_dbg(bgp->dev, "The temperatures are t1 = %d and t2 = %d and trend =%d\n",
1104 t1, t2, *trend);
1105
1106unfreeze:
1107 RMW_BITS(bgp, id, bgap_mask_ctrl, mask_freeze_mask, 0);
1108 spin_unlock(&bgp->lock);
1109exit:
1110 return ret;
1111}
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127static int ti_bandgap_tshut_init(struct ti_bandgap *bgp,
1128 struct platform_device *pdev)
1129{
1130 int gpio_nr = bgp->tshut_gpio;
1131 int status;
1132
1133
1134 status = gpio_request(gpio_nr, "tshut");
1135 if (status < 0) {
1136 dev_err(bgp->dev, "Could not request for TSHUT GPIO:%i\n", 86);
1137 return status;
1138 }
1139 status = gpio_direction_input(gpio_nr);
1140 if (status) {
1141 dev_err(bgp->dev, "Cannot set input TSHUT GPIO %d\n", gpio_nr);
1142 return status;
1143 }
1144
1145 status = request_irq(gpio_to_irq(gpio_nr), ti_bandgap_tshut_irq_handler,
1146 IRQF_TRIGGER_RISING, "tshut", NULL);
1147 if (status) {
1148 gpio_free(gpio_nr);
1149 dev_err(bgp->dev, "request irq failed for TSHUT");
1150 }
1151
1152 return 0;
1153}
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168static int ti_bandgap_talert_init(struct ti_bandgap *bgp,
1169 struct platform_device *pdev)
1170{
1171 int ret;
1172
1173 bgp->irq = platform_get_irq(pdev, 0);
1174 if (bgp->irq < 0) {
1175 dev_err(&pdev->dev, "get_irq failed\n");
1176 return bgp->irq;
1177 }
1178 ret = request_threaded_irq(bgp->irq, NULL,
1179 ti_bandgap_talert_irq_handler,
1180 IRQF_TRIGGER_HIGH | IRQF_ONESHOT,
1181 "talert", bgp);
1182 if (ret) {
1183 dev_err(&pdev->dev, "Request threaded irq failed.\n");
1184 return ret;
1185 }
1186
1187 return 0;
1188}
1189
1190static const struct of_device_id of_ti_bandgap_match[];
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202static struct ti_bandgap *ti_bandgap_build(struct platform_device *pdev)
1203{
1204 struct device_node *node = pdev->dev.of_node;
1205 const struct of_device_id *of_id;
1206 struct ti_bandgap *bgp;
1207 struct resource *res;
1208 int i;
1209
1210
1211 if (!node) {
1212 dev_err(&pdev->dev, "no platform information available\n");
1213 return ERR_PTR(-EINVAL);
1214 }
1215
1216 bgp = devm_kzalloc(&pdev->dev, sizeof(*bgp), GFP_KERNEL);
1217 if (!bgp) {
1218 dev_err(&pdev->dev, "Unable to allocate mem for driver ref\n");
1219 return ERR_PTR(-ENOMEM);
1220 }
1221
1222 of_id = of_match_device(of_ti_bandgap_match, &pdev->dev);
1223 if (of_id)
1224 bgp->conf = of_id->data;
1225
1226
1227 bgp->regval = devm_kzalloc(&pdev->dev, sizeof(*bgp->regval) *
1228 bgp->conf->sensor_count, GFP_KERNEL);
1229 if (!bgp->regval) {
1230 dev_err(&pdev->dev, "Unable to allocate mem for driver ref\n");
1231 return ERR_PTR(-ENOMEM);
1232 }
1233
1234 i = 0;
1235 do {
1236 void __iomem *chunk;
1237
1238 res = platform_get_resource(pdev, IORESOURCE_MEM, i);
1239 if (!res)
1240 break;
1241 chunk = devm_ioremap_resource(&pdev->dev, res);
1242 if (i == 0)
1243 bgp->base = chunk;
1244 if (IS_ERR(chunk))
1245 return ERR_CAST(chunk);
1246
1247 i++;
1248 } while (res);
1249
1250 if (TI_BANDGAP_HAS(bgp, TSHUT)) {
1251 bgp->tshut_gpio = of_get_gpio(node, 0);
1252 if (!gpio_is_valid(bgp->tshut_gpio)) {
1253 dev_err(&pdev->dev, "invalid gpio for tshut (%d)\n",
1254 bgp->tshut_gpio);
1255 return ERR_PTR(-EINVAL);
1256 }
1257 }
1258
1259 return bgp;
1260}
1261
1262
1263
1264static
1265int ti_bandgap_probe(struct platform_device *pdev)
1266{
1267 struct ti_bandgap *bgp;
1268 int clk_rate, ret, i;
1269
1270 bgp = ti_bandgap_build(pdev);
1271 if (IS_ERR(bgp)) {
1272 dev_err(&pdev->dev, "failed to fetch platform data\n");
1273 return PTR_ERR(bgp);
1274 }
1275 bgp->dev = &pdev->dev;
1276
1277 if (TI_BANDGAP_HAS(bgp, UNRELIABLE))
1278 dev_warn(&pdev->dev,
1279 "This OMAP thermal sensor is unreliable. You've been warned\n");
1280
1281 if (TI_BANDGAP_HAS(bgp, TSHUT)) {
1282 ret = ti_bandgap_tshut_init(bgp, pdev);
1283 if (ret) {
1284 dev_err(&pdev->dev,
1285 "failed to initialize system tshut IRQ\n");
1286 return ret;
1287 }
1288 }
1289
1290 bgp->fclock = clk_get(NULL, bgp->conf->fclock_name);
1291 if (IS_ERR(bgp->fclock)) {
1292 dev_err(&pdev->dev, "failed to request fclock reference\n");
1293 ret = PTR_ERR(bgp->fclock);
1294 goto free_irqs;
1295 }
1296
1297 bgp->div_clk = clk_get(NULL, bgp->conf->div_ck_name);
1298 if (IS_ERR(bgp->div_clk)) {
1299 dev_err(&pdev->dev, "failed to request div_ts_ck clock ref\n");
1300 ret = PTR_ERR(bgp->div_clk);
1301 goto free_irqs;
1302 }
1303
1304 for (i = 0; i < bgp->conf->sensor_count; i++) {
1305 struct temp_sensor_registers *tsr;
1306 u32 val;
1307
1308 tsr = bgp->conf->sensors[i].registers;
1309
1310
1311
1312
1313
1314 val = ti_bandgap_readl(bgp, tsr->bgap_efuse);
1315 if (!val)
1316 dev_info(&pdev->dev,
1317 "Non-trimmed BGAP, Temp not accurate\n");
1318 }
1319
1320 clk_rate = clk_round_rate(bgp->div_clk,
1321 bgp->conf->sensors[0].ts_data->max_freq);
1322 if (clk_rate < bgp->conf->sensors[0].ts_data->min_freq ||
1323 clk_rate <= 0) {
1324 ret = -ENODEV;
1325 dev_err(&pdev->dev, "wrong clock rate (%d)\n", clk_rate);
1326 goto put_clks;
1327 }
1328
1329 ret = clk_set_rate(bgp->div_clk, clk_rate);
1330 if (ret)
1331 dev_err(&pdev->dev, "Cannot re-set clock rate. Continuing\n");
1332
1333 bgp->clk_rate = clk_rate;
1334 if (TI_BANDGAP_HAS(bgp, CLK_CTRL))
1335 clk_prepare_enable(bgp->fclock);
1336
1337
1338 spin_lock_init(&bgp->lock);
1339 bgp->dev = &pdev->dev;
1340 platform_set_drvdata(pdev, bgp);
1341
1342 ti_bandgap_power(bgp, true);
1343
1344
1345 if (TI_BANDGAP_HAS(bgp, COUNTER))
1346 for (i = 0; i < bgp->conf->sensor_count; i++)
1347 RMW_BITS(bgp, i, bgap_counter, counter_mask, 1);
1348
1349
1350 for (i = 0; i < bgp->conf->sensor_count; i++) {
1351 struct temp_sensor_data *ts_data;
1352
1353 ts_data = bgp->conf->sensors[i].ts_data;
1354
1355 if (TI_BANDGAP_HAS(bgp, TALERT)) {
1356
1357 RMW_BITS(bgp, i, bgap_threshold,
1358 threshold_tcold_mask, ts_data->t_cold);
1359 RMW_BITS(bgp, i, bgap_threshold,
1360 threshold_thot_mask, ts_data->t_hot);
1361
1362 RMW_BITS(bgp, i, bgap_mask_ctrl, mask_hot_mask, 1);
1363 RMW_BITS(bgp, i, bgap_mask_ctrl, mask_cold_mask, 1);
1364 }
1365
1366 if (TI_BANDGAP_HAS(bgp, TSHUT_CONFIG)) {
1367
1368 RMW_BITS(bgp, i, tshut_threshold,
1369 tshut_hot_mask, ts_data->tshut_hot);
1370 RMW_BITS(bgp, i, tshut_threshold,
1371 tshut_cold_mask, ts_data->tshut_cold);
1372 }
1373 }
1374
1375 if (TI_BANDGAP_HAS(bgp, MODE_CONFIG))
1376 ti_bandgap_set_continuous_mode(bgp);
1377
1378
1379 if (TI_BANDGAP_HAS(bgp, COUNTER))
1380 for (i = 0; i < bgp->conf->sensor_count; i++)
1381 RMW_BITS(bgp, i, bgap_counter, counter_mask,
1382 bgp->clk_rate / 4);
1383
1384
1385 for (i = 0; i < bgp->conf->sensor_count; i++) {
1386 char *domain;
1387
1388 if (bgp->conf->sensors[i].register_cooling) {
1389 ret = bgp->conf->sensors[i].register_cooling(bgp, i);
1390 if (ret)
1391 goto remove_sensors;
1392 }
1393
1394 if (bgp->conf->expose_sensor) {
1395 domain = bgp->conf->sensors[i].domain;
1396 ret = bgp->conf->expose_sensor(bgp, i, domain);
1397 if (ret)
1398 goto remove_last_cooling;
1399 }
1400 }
1401
1402
1403
1404
1405
1406
1407 if (TI_BANDGAP_HAS(bgp, TALERT)) {
1408 ret = ti_bandgap_talert_init(bgp, pdev);
1409 if (ret) {
1410 dev_err(&pdev->dev, "failed to initialize Talert IRQ\n");
1411 i = bgp->conf->sensor_count;
1412 goto disable_clk;
1413 }
1414 }
1415
1416 return 0;
1417
1418remove_last_cooling:
1419 if (bgp->conf->sensors[i].unregister_cooling)
1420 bgp->conf->sensors[i].unregister_cooling(bgp, i);
1421remove_sensors:
1422 for (i--; i >= 0; i--) {
1423 if (bgp->conf->sensors[i].unregister_cooling)
1424 bgp->conf->sensors[i].unregister_cooling(bgp, i);
1425 if (bgp->conf->remove_sensor)
1426 bgp->conf->remove_sensor(bgp, i);
1427 }
1428 ti_bandgap_power(bgp, false);
1429disable_clk:
1430 if (TI_BANDGAP_HAS(bgp, CLK_CTRL))
1431 clk_disable_unprepare(bgp->fclock);
1432put_clks:
1433 clk_put(bgp->fclock);
1434 clk_put(bgp->div_clk);
1435free_irqs:
1436 if (TI_BANDGAP_HAS(bgp, TSHUT)) {
1437 free_irq(gpio_to_irq(bgp->tshut_gpio), NULL);
1438 gpio_free(bgp->tshut_gpio);
1439 }
1440
1441 return ret;
1442}
1443
1444static
1445int ti_bandgap_remove(struct platform_device *pdev)
1446{
1447 struct ti_bandgap *bgp = platform_get_drvdata(pdev);
1448 int i;
1449
1450
1451 for (i = 0; i < bgp->conf->sensor_count; i++) {
1452 if (bgp->conf->sensors[i].unregister_cooling)
1453 bgp->conf->sensors[i].unregister_cooling(bgp, i);
1454
1455 if (bgp->conf->remove_sensor)
1456 bgp->conf->remove_sensor(bgp, i);
1457 }
1458
1459 ti_bandgap_power(bgp, false);
1460
1461 if (TI_BANDGAP_HAS(bgp, CLK_CTRL))
1462 clk_disable_unprepare(bgp->fclock);
1463 clk_put(bgp->fclock);
1464 clk_put(bgp->div_clk);
1465
1466 if (TI_BANDGAP_HAS(bgp, TALERT))
1467 free_irq(bgp->irq, bgp);
1468
1469 if (TI_BANDGAP_HAS(bgp, TSHUT)) {
1470 free_irq(gpio_to_irq(bgp->tshut_gpio), NULL);
1471 gpio_free(bgp->tshut_gpio);
1472 }
1473
1474 return 0;
1475}
1476
1477#ifdef CONFIG_PM_SLEEP
1478static int ti_bandgap_save_ctxt(struct ti_bandgap *bgp)
1479{
1480 int i;
1481
1482 for (i = 0; i < bgp->conf->sensor_count; i++) {
1483 struct temp_sensor_registers *tsr;
1484 struct temp_sensor_regval *rval;
1485
1486 rval = &bgp->regval[i];
1487 tsr = bgp->conf->sensors[i].registers;
1488
1489 if (TI_BANDGAP_HAS(bgp, MODE_CONFIG))
1490 rval->bg_mode_ctrl = ti_bandgap_readl(bgp,
1491 tsr->bgap_mode_ctrl);
1492 if (TI_BANDGAP_HAS(bgp, COUNTER))
1493 rval->bg_counter = ti_bandgap_readl(bgp,
1494 tsr->bgap_counter);
1495 if (TI_BANDGAP_HAS(bgp, TALERT)) {
1496 rval->bg_threshold = ti_bandgap_readl(bgp,
1497 tsr->bgap_threshold);
1498 rval->bg_ctrl = ti_bandgap_readl(bgp,
1499 tsr->bgap_mask_ctrl);
1500 }
1501
1502 if (TI_BANDGAP_HAS(bgp, TSHUT_CONFIG))
1503 rval->tshut_threshold = ti_bandgap_readl(bgp,
1504 tsr->tshut_threshold);
1505 }
1506
1507 return 0;
1508}
1509
1510static int ti_bandgap_restore_ctxt(struct ti_bandgap *bgp)
1511{
1512 int i;
1513
1514 for (i = 0; i < bgp->conf->sensor_count; i++) {
1515 struct temp_sensor_registers *tsr;
1516 struct temp_sensor_regval *rval;
1517 u32 val = 0;
1518
1519 rval = &bgp->regval[i];
1520 tsr = bgp->conf->sensors[i].registers;
1521
1522 if (TI_BANDGAP_HAS(bgp, COUNTER))
1523 val = ti_bandgap_readl(bgp, tsr->bgap_counter);
1524
1525 if (TI_BANDGAP_HAS(bgp, TSHUT_CONFIG))
1526 ti_bandgap_writel(bgp, rval->tshut_threshold,
1527 tsr->tshut_threshold);
1528
1529
1530
1531 ti_bandgap_force_single_read(bgp, i);
1532
1533 if (TI_BANDGAP_HAS(bgp, COUNTER))
1534 ti_bandgap_writel(bgp, rval->bg_counter,
1535 tsr->bgap_counter);
1536 if (TI_BANDGAP_HAS(bgp, MODE_CONFIG))
1537 ti_bandgap_writel(bgp, rval->bg_mode_ctrl,
1538 tsr->bgap_mode_ctrl);
1539 if (TI_BANDGAP_HAS(bgp, TALERT)) {
1540 ti_bandgap_writel(bgp, rval->bg_threshold,
1541 tsr->bgap_threshold);
1542 ti_bandgap_writel(bgp, rval->bg_ctrl,
1543 tsr->bgap_mask_ctrl);
1544 }
1545 }
1546
1547 return 0;
1548}
1549
1550static int ti_bandgap_suspend(struct device *dev)
1551{
1552 struct ti_bandgap *bgp = dev_get_drvdata(dev);
1553 int err;
1554
1555 err = ti_bandgap_save_ctxt(bgp);
1556 ti_bandgap_power(bgp, false);
1557
1558 if (TI_BANDGAP_HAS(bgp, CLK_CTRL))
1559 clk_disable_unprepare(bgp->fclock);
1560
1561 return err;
1562}
1563
1564static int ti_bandgap_resume(struct device *dev)
1565{
1566 struct ti_bandgap *bgp = dev_get_drvdata(dev);
1567
1568 if (TI_BANDGAP_HAS(bgp, CLK_CTRL))
1569 clk_prepare_enable(bgp->fclock);
1570
1571 ti_bandgap_power(bgp, true);
1572
1573 return ti_bandgap_restore_ctxt(bgp);
1574}
1575static SIMPLE_DEV_PM_OPS(ti_bandgap_dev_pm_ops, ti_bandgap_suspend,
1576 ti_bandgap_resume);
1577
1578#define DEV_PM_OPS (&ti_bandgap_dev_pm_ops)
1579#else
1580#define DEV_PM_OPS NULL
1581#endif
1582
1583static const struct of_device_id of_ti_bandgap_match[] = {
1584#ifdef CONFIG_OMAP3_THERMAL
1585 {
1586 .compatible = "ti,omap34xx-bandgap",
1587 .data = (void *)&omap34xx_data,
1588 },
1589 {
1590 .compatible = "ti,omap36xx-bandgap",
1591 .data = (void *)&omap36xx_data,
1592 },
1593#endif
1594#ifdef CONFIG_OMAP4_THERMAL
1595 {
1596 .compatible = "ti,omap4430-bandgap",
1597 .data = (void *)&omap4430_data,
1598 },
1599 {
1600 .compatible = "ti,omap4460-bandgap",
1601 .data = (void *)&omap4460_data,
1602 },
1603 {
1604 .compatible = "ti,omap4470-bandgap",
1605 .data = (void *)&omap4470_data,
1606 },
1607#endif
1608#ifdef CONFIG_OMAP5_THERMAL
1609 {
1610 .compatible = "ti,omap5430-bandgap",
1611 .data = (void *)&omap5430_data,
1612 },
1613#endif
1614#ifdef CONFIG_DRA752_THERMAL
1615 {
1616 .compatible = "ti,dra752-bandgap",
1617 .data = (void *)&dra752_data,
1618 },
1619#endif
1620
1621 { },
1622};
1623MODULE_DEVICE_TABLE(of, of_ti_bandgap_match);
1624
1625static struct platform_driver ti_bandgap_sensor_driver = {
1626 .probe = ti_bandgap_probe,
1627 .remove = ti_bandgap_remove,
1628 .driver = {
1629 .name = "ti-soc-thermal",
1630 .pm = DEV_PM_OPS,
1631 .of_match_table = of_ti_bandgap_match,
1632 },
1633};
1634
1635module_platform_driver(ti_bandgap_sensor_driver);
1636
1637MODULE_DESCRIPTION("OMAP4+ bandgap temperature sensor driver");
1638MODULE_LICENSE("GPL v2");
1639MODULE_ALIAS("platform:ti-soc-thermal");
1640MODULE_AUTHOR("Texas Instrument Inc.");
1641