aboutsummaryrefslogtreecommitdiff
path: root/drivers/misc/mediatek/thermal/mt6735/mtk_ts_wmt.c
blob: d6129854562b1a9afffdcdf45d822d049a87dd7a (plain) (blame)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
#include <linux/version.h>
#include <linux/thermal.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <linux/uaccess.h>
//#include "wmt_tm.h"
#include <mach/mtk_thermal_monitor.h>
#include <linux/timer.h>
#include <linux/pid.h>
/* For using net dev + */
#include <linux/netdevice.h>
/* For using net dev - */
#include <mach/mtk_wcn_cmb_stub.h>


static int wmt_tm_debug_log = 0;
#define wmt_tm_dprintk(fmt, args...)   \
do {                                    \
    if (wmt_tm_debug_log) {                \
        pr_notice("[Power/WMT_Thermal]" fmt, ##args); \
    }                                   \
} while(0)

#define wmt_tm_printk(fmt, args...)   \
do {                                    \
    pr_notice("[Power/WMT_Thermal]" fmt, ##args); \
} while(0)

#define wmt_tm_info(fmt, args...)   \
do {                                    \
    pr_notice("[Power/WMT_Thermal]" fmt, ##args); \
} while(0)

struct linux_thermal_ctrl_if {
    int kernel_mode;
    int interval;
    struct thermal_zone_device *thz_dev;
    struct thermal_cooling_device *cl_dev;
    struct thermal_cooling_device *cl_pa1_dev;
    struct thermal_cooling_device *cl_pa2_dev;
    struct thermal_cooling_device *cl_pa3_dev;
};

#if 0
struct wmt_thermal_ctrl_if {
    struct wmt_thermal_ctrl_ops ops;
};
#endif

typedef struct wmt_tm {
   struct linux_thermal_ctrl_if linux_if;
   //struct wmt_thermal_ctrl_if   wmt_if;
}wmt_tm_t;

struct wmt_stats {
   unsigned long pre_time;
   unsigned long pre_tx_bytes;
};

extern struct proc_dir_entry * mtk_thermal_get_proc_drv_therm_dir_entry(void);

static struct timer_list wmt_stats_timer;
static struct wmt_stats wmt_stats_info;
static unsigned long pre_time;
static unsigned long tx_throughput;

/*New Wifi throttling Algo+*/
//over_up_time * polling interval > up_duration --> throttling
static unsigned int over_up_time = 0; //polling time
static unsigned int up_duration = 30; //sec
static unsigned int up_denominator = 2;
static unsigned int up_numerator = 1;

//below_low_time * polling interval > low_duration --> throttling
static unsigned int below_low_time = 0; //polling time
static unsigned int low_duration = 10; //sec
static unsigned int low_denominator = 2;
static unsigned int low_numerator = 3;

static unsigned int low_rst_time = 0;
static unsigned int low_rst_max = 3;
/*New Wifi throttling Algo-*/

#define MAX_LEN	256
#define COOLER_THRO_NUM 3
#define COOLER_NUM 10
#define ONE_MBITS_PER_SEC 1000

static unsigned int tm_pid = 0;
static unsigned int tm_input_pid = 0;
static unsigned int tm_wfd_stat = 0;
static struct task_struct g_task;
static struct task_struct *pg_task = &g_task;

/* +Cooler info+ */
static int g_num_trip = COOLER_THRO_NUM + 1;
static char g_bind0[20]="mtktswmt-pa1";
static char g_bind1[20]="mtktswmt-pa2";
static char g_bind2[20]="mtktswmt-pa3";
static char g_bind3[20]="mtktswmt-sysrst";
static char g_bind4[20]={0};
static char g_bind5[20]={0};
static char g_bind6[20]={0};
static char g_bind7[20]={0};
static char g_bind8[20]={0};
static char g_bind9[20]={0};

/**
 * If curr_temp >= polling_trip_temp1, use interval
 * else if cur_temp >= polling_trip_temp2 && curr_temp < polling_trip_temp1, use interval*polling_factor1
 * else, use interval*polling_factor2
 */
static int polling_trip_temp1 = 40000;
static int polling_trip_temp2 = 20000;
static int polling_factor1 = 5;
static int polling_factor2 = 10;


static unsigned int cl_dev_state =0;
static unsigned int cl_pa1_dev_state =0;
static unsigned int cl_pa2_dev_state =0;
/*static unsigned int cl_pa3_dev_state =0;*/
static unsigned int g_trip_temp[COOLER_NUM] = {85000,85000,85000,85000,0,0,0,0,0,0};
/*static int g_thro[COOLER_THRO_NUM] = {10 * ONE_MBITS_PER_SEC, 5 * ONE_MBITS_PER_SEC, 1 * ONE_MBITS_PER_SEC};*/
static int g_thermal_trip[COOLER_NUM] = {0,0,0,0,0,0,0,0,0,0};
/* -Cooler info- */

wmt_tm_t g_wmt_tm;
wmt_tm_t *pg_wmt_tm = &g_wmt_tm;

static int wmt_thz_bind(struct thermal_zone_device *,
		     struct thermal_cooling_device *);
static int wmt_thz_unbind(struct thermal_zone_device *,
		     struct thermal_cooling_device *);
static int wmt_thz_get_temp(struct thermal_zone_device *,
             unsigned long *);
static int wmt_thz_get_mode(struct thermal_zone_device *,
			 enum thermal_device_mode *);
static int wmt_thz_set_mode(struct thermal_zone_device *,
		     enum thermal_device_mode);
static int wmt_thz_get_trip_type(struct thermal_zone_device *, int,
		     enum thermal_trip_type *);
static int wmt_thz_get_trip_temp(struct thermal_zone_device *, int,
			 unsigned long *);
static int wmt_thz_get_crit_temp(struct thermal_zone_device *,
             unsigned long *);
static int wmt_cl_get_max_state(struct thermal_cooling_device *,
             unsigned long *);
static int wmt_cl_get_cur_state(struct thermal_cooling_device *,
             unsigned long *);
static int wmt_cl_set_cur_state(struct thermal_cooling_device *,
             unsigned long);

static int wmt_cl_pa1_get_max_state(struct thermal_cooling_device *,
             unsigned long *);
static int wmt_cl_pa1_get_cur_state(struct thermal_cooling_device *,
             unsigned long *);
static int wmt_cl_pa1_set_cur_state(struct thermal_cooling_device *,
             unsigned long);

static int wmt_cl_pa2_get_max_state(struct thermal_cooling_device *,
             unsigned long *);
static int wmt_cl_pa2_get_cur_state(struct thermal_cooling_device *,
             unsigned long *);
static int wmt_cl_pa2_set_cur_state(struct thermal_cooling_device *,
             unsigned long);

#ifdef NEVER
static int wmt_cl_pa3_get_max_state(struct thermal_cooling_device *,
             unsigned long *);
static int wmt_cl_pa3_get_cur_state(struct thermal_cooling_device *,
             unsigned long *);
static int wmt_cl_pa3_set_cur_state(struct thermal_cooling_device *,
             unsigned long);
#endif /* NEVER */

static struct thermal_zone_device_ops wmt_thz_dev_ops = {
	.bind = wmt_thz_bind,
	.unbind = wmt_thz_unbind,
	.get_temp = wmt_thz_get_temp,
	.get_mode = wmt_thz_get_mode,
	.set_mode = wmt_thz_set_mode,
	.get_trip_type = wmt_thz_get_trip_type,
	.get_trip_temp = wmt_thz_get_trip_temp,
	.get_crit_temp = wmt_thz_get_crit_temp,
};

static struct thermal_cooling_device_ops mtktspa_cooling_sysrst_ops = {
	.get_max_state = wmt_cl_get_max_state,
	.get_cur_state = wmt_cl_get_cur_state,
	.set_cur_state = wmt_cl_set_cur_state,
};

static struct thermal_cooling_device_ops mtktspa_cooling_pa1_ops = {
	.get_max_state = wmt_cl_pa1_get_max_state,
	.get_cur_state = wmt_cl_pa1_get_cur_state,
	.set_cur_state = wmt_cl_pa1_set_cur_state,
};

static struct thermal_cooling_device_ops mtktspa_cooling_pa2_ops = {
	.get_max_state = wmt_cl_pa2_get_max_state,
	.get_cur_state = wmt_cl_pa2_get_cur_state,
	.set_cur_state = wmt_cl_pa2_set_cur_state,
};

#ifdef NEVER
static struct thermal_cooling_device_ops mtktspa_cooling_pa3_ops = {
	.get_max_state = wmt_cl_pa3_get_max_state,
	.get_cur_state = wmt_cl_pa3_get_cur_state,
	.set_cur_state = wmt_cl_pa3_set_cur_state,
};
#endif /* NEVER */

static unsigned long get_tx_bytes(void)
{
	struct net_device *dev;
	struct net *net;
	unsigned long tx_bytes = 0;

	read_lock(&dev_base_lock);
	for_each_net(net) {
		for_each_netdev(net, dev) {
			if(!strncmp(dev->name, "wlan", 4) || !strncmp(dev->name, "ap", 2) || !strncmp(dev->name, "p2p", 3)) {
				struct rtnl_link_stats64 temp;
				const struct rtnl_link_stats64 *stats = dev_get_stats(dev, &temp);
				tx_bytes = tx_bytes + stats->tx_bytes;
			}
		}
	}
	read_unlock(&dev_base_lock);
	return tx_bytes;
}

static int wmt_cal_stats(unsigned long data)
{
	struct wmt_stats *stats_info = (struct wmt_stats*) data;
	struct timeval cur_time;

	wmt_tm_dprintk("[%s] pre_time=%lu, pre_data=%lu\n", __func__, pre_time, stats_info->pre_tx_bytes);

	do_gettimeofday(&cur_time);

	if (pre_time != 0 && cur_time.tv_sec > pre_time) {
		unsigned long tx_bytes = get_tx_bytes();
		if (tx_bytes > stats_info->pre_tx_bytes) {

			tx_throughput = ((tx_bytes - stats_info->pre_tx_bytes) / (cur_time.tv_sec - pre_time)) >> 7;

			wmt_tm_dprintk("[%s] cur_time=%lu, cur_data=%lu, tx_throughput=%luKb/s\n", __func__, cur_time.tv_sec, tx_bytes, tx_throughput );

			stats_info->pre_tx_bytes = tx_bytes;
		} else if (tx_bytes < stats_info->pre_tx_bytes) {
			/* Overflow */
			tx_throughput = ((0xffffffff - stats_info->pre_tx_bytes + tx_bytes) / (cur_time.tv_sec - pre_time)) >> 7;;
			stats_info->pre_tx_bytes = tx_bytes;
			wmt_tm_dprintk("[%s] cur_tx(%lu) < pre_tx\n", __func__, tx_bytes);
		} else {
			/* No traffic */
			tx_throughput = 0;
			wmt_tm_dprintk("[%s] cur_tx(%lu) = pre_tx\n", __func__, tx_bytes);
		}
	} else {
		/* Overflow possible ??*/
		tx_throughput = 0;
		wmt_tm_printk("[%s] cur_time(%lu) < pre_time\n", __func__, cur_time.tv_sec);
	}

	pre_time = cur_time.tv_sec;
	wmt_tm_dprintk("[%s] pre_time=%lu, tv_sec=%lu\n",__func__, pre_time, cur_time.tv_sec);

	wmt_stats_timer.expires = jiffies + 1 * HZ;
	add_timer(&wmt_stats_timer);
	return 0;
}

static int wmt_thz_bind(struct thermal_zone_device *thz_dev,
		     struct thermal_cooling_device *cool_dev)
{
    struct linux_thermal_ctrl_if *p_linux_if = 0;
    int    table_val = 0;

    wmt_tm_dprintk("[%s]\n", __func__);

    if (pg_wmt_tm) {
       p_linux_if = &pg_wmt_tm->linux_if;
    } else {
       return -EINVAL;
    }
    #ifdef NEVER
    /* cooling devices */
    if (cool_dev != p_linux_if->cl_dev)
    {
        return 0;
    }
    #endif

    if(!strcmp(cool_dev->type, g_bind0)) {
        table_val = 0;
        wmt_tm_dprintk("[%s] %s\n", __func__, cool_dev->type);
    } else if(!strcmp(cool_dev->type, g_bind1)) {
        table_val = 1;
        wmt_tm_dprintk("[%s] %s\n", __func__, cool_dev->type);
    } else if(!strcmp(cool_dev->type, g_bind2)) {
        table_val = 2;
        wmt_tm_dprintk("[%s]] %s\n", __func__, cool_dev->type);
    } else if(!strcmp(cool_dev->type, g_bind3)) {
        table_val = 3;
        wmt_tm_dprintk("[%s]] %s\n", __func__, cool_dev->type);
    } else
        return 0;

    if (mtk_thermal_zone_bind_cooling_device(thz_dev, table_val, cool_dev)) {
        wmt_tm_info("[%s] binding fail\n", __func__);
        return -EINVAL;
    } else {
        wmt_tm_dprintk("[%s]] binding OK\n", __func__);
    }

    return 0;

}
static int wmt_thz_unbind(struct thermal_zone_device *thz_dev,
		     struct thermal_cooling_device *cool_dev)
{
    struct linux_thermal_ctrl_if *p_linux_if = 0;
    int    table_val = 0;

    wmt_tm_dprintk("[wmt_thz_unbind] \n");

    if (pg_wmt_tm) {
       p_linux_if = &pg_wmt_tm->linux_if;
    } else {
       return -EINVAL;
    }
#if 0
    /* cooling devices */
    if (cool_dev == p_linux_if->cl_dev)
    {
        table_val= 0;
    }
    else
    {
        wmt_tm_dprintk("[wmt_thz_unbind] unbind device fail..!\n");
        return -EINVAL;
    }
#endif

    if(!strcmp(cool_dev->type, g_bind0)) {
        table_val = 0;
        wmt_tm_dprintk("[wmt_thz_unbind] %s\n", cool_dev->type);
    } else if(!strcmp(cool_dev->type, g_bind1)) {
        table_val = 1;
        wmt_tm_dprintk("[wmt_thz_unbind] %s\n", cool_dev->type);
    } else if(!strcmp(cool_dev->type, g_bind2)) {
        table_val = 2;
        wmt_tm_dprintk("[wmt_thz_unbind] %s\n", cool_dev->type);
    } else if(!strcmp(cool_dev->type, g_bind3)) {
        table_val = 3;
        wmt_tm_dprintk("[wmt_thz_unbind] %s\n", cool_dev->type);
    } else
        return 0;

    if (thermal_zone_unbind_cooling_device(thz_dev, table_val, cool_dev)) {
	    wmt_tm_info("[wmt_thz_unbind] error unbinding cooling dev\n");
		return -EINVAL;
	} else {
	    wmt_tm_dprintk("[wmt_thz_unbind] unbinding OK\n");
    }

	return 0;
}

static int wmt_thz_get_temp(struct thermal_zone_device *thz_dev,
                            unsigned long *pv)
{
    //struct wmt_thermal_ctrl_ops *p_des;
    int temp = 0;

    *pv = 0;

    //if(pg_wmt_tm) {
    {
        //p_des = &pg_wmt_tm->wmt_if.ops;
        //temp = p_des->query_temp();
        temp = mtk_wcn_cmb_stub_query_ctrl();

        if (temp >= 255) // dummy values
            temp = -127;

        //temp = ((temp & 0x80) == 0x0)?temp:(-1)*temp ;
        //temp = ((temp & 0x80) == 0x0)?temp:(-1)*(temp & 0x7f);
        *pv =  temp*1000;

        wmt_tm_dprintk("[wmt_thz_get_temp] temp = %d\n", temp);

        if (temp != -127) {
            if (temp > 100 || temp < -30)
                wmt_tm_info("[wmt_thz_get_temp] temp = %d\n", temp);
        }
    }

    if ((int) *pv >= polling_trip_temp1)
        thz_dev->polling_delay = g_wmt_tm.linux_if.interval;
    else if ((int) *pv < polling_trip_temp2)
        thz_dev->polling_delay = g_wmt_tm.linux_if.interval * polling_factor2;
    else
        thz_dev->polling_delay = g_wmt_tm.linux_if.interval * polling_factor1;

    return 0;
}

static int wmt_thz_get_mode(struct thermal_zone_device *thz_dev,
			 enum thermal_device_mode *mode)
{
    struct linux_thermal_ctrl_if *p_linux_if = 0;
//    int    kernel_mode = 0;

    wmt_tm_dprintk("[%s]\n", __func__);

    if (pg_wmt_tm) {
       p_linux_if = &pg_wmt_tm->linux_if;
    } else {
       wmt_tm_dprintk("[%s] fail! \n", __func__);
       return -EINVAL;
    }

    wmt_tm_dprintk("[%s] %d\n", __func__, p_linux_if->kernel_mode);

    *mode = (p_linux_if->kernel_mode) ? THERMAL_DEVICE_ENABLED
			     : THERMAL_DEVICE_DISABLED;

	return 0;
}

static int wmt_thz_set_mode(struct thermal_zone_device *thz_dev,
		     enum thermal_device_mode mode)
{
    struct linux_thermal_ctrl_if *p_linux_if = 0;

    wmt_tm_dprintk("[%s]\n", __func__);


    if(pg_wmt_tm) {
       p_linux_if = &pg_wmt_tm->linux_if;
    } else {
       wmt_tm_dprintk("[%s] fail! \n", __func__);
       return -EINVAL;
    }

    wmt_tm_dprintk("[%s] %d\n", __func__, mode);

    p_linux_if->kernel_mode = mode;

	return 0;

}

static int wmt_thz_get_trip_type(struct thermal_zone_device *thz_dev, int trip,
		     enum thermal_trip_type *type)
{
    wmt_tm_dprintk("[mtktspa_get_trip_type] %d\n", trip);
    *type = g_thermal_trip[trip];
    return 0;
}

static int wmt_thz_get_trip_temp(struct thermal_zone_device *thz_dev, int trip,
			 unsigned long *pv)
{
    wmt_tm_dprintk("[mtktspa_get_trip_temp] %d\n", trip);
    *pv = g_trip_temp[trip];
    return 0;
}

static int wmt_thz_get_crit_temp(struct thermal_zone_device *thz_dev,
             unsigned long *pv)
{
    wmt_tm_dprintk("[%s]\n", __func__);
#define WMT_TM_TEMP_CRIT 85000 /* 85.000 degree Celsius */
    *pv = WMT_TM_TEMP_CRIT;

    return 0;
}

/* +mtktspa_cooling_sysrst_ops+ */
static int wmt_cl_get_max_state(struct thermal_cooling_device *cool_dev,
             unsigned long *pv)
{
    *pv = 1;
    wmt_tm_dprintk("[%s] %lu\n", __func__, *pv);
	return 0;
}

static int wmt_cl_get_cur_state(struct thermal_cooling_device *cool_dev,
             unsigned long *pv)
{
    *pv = cl_dev_state;
    wmt_tm_dprintk("[%s] %lu\n", __func__, *pv);
	return 0;
}

static int wmt_cl_set_cur_state(struct thermal_cooling_device *cool_dev,
             unsigned long v)
{
    wmt_tm_dprintk("[%s] %lu\n", __func__, v);
    cl_dev_state = v;

    if (cl_dev_state == 1) {
        //the temperature is over than the critical, system reboot.
//        BUG();
	      *(unsigned int*) 0x0 = 0xdead; // To trigger data abort to reset the system for thermal protection.
    }

    return 0;
}
/* -mtktspa_cooling_sysrst_ops- */

static int wmt_send_signal(int level)
{
	int ret = 0;
	int thro = level;

	if (tm_input_pid == 0) {
		wmt_tm_dprintk("[%s] pid is empty\n", __func__);
		ret = -1;
	}

	wmt_tm_printk("[%s] pid is %d, %d, %d\n", __func__, tm_pid, tm_input_pid, thro);

	if (ret == 0 && tm_input_pid != tm_pid) {
		tm_pid = tm_input_pid;
		pg_task = get_pid_task(find_vpid(tm_pid), PIDTYPE_PID);
	}

	if (ret == 0 && pg_task) {
		siginfo_t info;
		info.si_signo = SIGIO;
		info.si_errno = 0;
		info.si_code = thro;
		info.si_addr = NULL;
		ret = send_sig_info(SIGIO, &info, pg_task);
	}

	if (ret != 0) wmt_tm_info("[%s] ret=%d\n", __func__, ret);

	return ret;
}

#define UNK_STAT -1
#define LOW_STAT 0
#define MID_STAT 1
#define HIGH_STAT 2
#define WFD_STAT 3

static inline unsigned long thro(unsigned long a, unsigned int b, unsigned int c) {

	unsigned long tmp;

	tmp = (a << 10) * b / c;

	return tmp >> 10;
}

static int wmt_judge_throttling(int index, int is_on, int interval)
{
	/*
	 *     throttling_stat
	 *        2 ( pa1=1,pa2=1 )
	 * UPPER ----
	 *        1 ( pa1=1,pa2=0 )
	 * LOWER ----
	 *        0 ( pa1=0,pa2=0 )
	 */
	static unsigned int throttling_pre_stat = 0;
	static int mail_box[2] = {-1,-1};

	static bool is_reset = false;

	unsigned long cur_thro = tx_throughput;
	static unsigned long thro_constraint = 99 * 1000;

	int cur_wifi_stat = 0;

	wmt_tm_dprintk("[%s]+ [0]=%d, [1]=%d || [%d] is %s\n", __func__, mail_box[0], mail_box[1],
											index, (is_on==1?"ON":"OFF"));
	mail_box[index] = is_on;

	if (mail_box[0] >= 0 && mail_box[1] >= 0) {
		cur_wifi_stat = mail_box[0] + mail_box[1];

		/*
		 * If Wifi-display is on, go to WFD_STAT state, and reset the throttling.
		 */
		if (tm_wfd_stat == 2)
			cur_wifi_stat = WFD_STAT;

		switch(cur_wifi_stat) {
			case WFD_STAT:
				if (throttling_pre_stat != WFD_STAT) {
					/*
					 * Enter Wifi-Display status, reset all throttling. Dont affect the performance of Wifi-Display.
					 */
					wmt_send_signal(-1);
					below_low_time = 0;
					over_up_time = 0;
					throttling_pre_stat = WFD_STAT;
					wmt_tm_printk("WFD is on, reset everything!");
				}
			break;

			case HIGH_STAT:
				if (throttling_pre_stat < HIGH_STAT || throttling_pre_stat == WFD_STAT) {
					if (cur_thro > 0) /*Wifi is working!!*/
						thro_constraint = thro(cur_thro, up_numerator, up_denominator);
					else /*At this moment, current throughput is none. Use the previous constraint.*/
						thro_constraint = thro(thro_constraint, up_numerator, up_denominator);

					wmt_tm_printk("LOW/MID-->HIGH:%lu <- (%d / %d) %lu", thro_constraint, up_numerator, up_denominator, cur_thro);

					//wmt_send_signal( thro_constraint / 1000);
                    wmt_send_signal( thro_constraint );//unit : Kbytes
					throttling_pre_stat = HIGH_STAT;
					over_up_time = 0;
				} else if (throttling_pre_stat == HIGH_STAT) {
					over_up_time++;
					if ( (over_up_time * interval) >= up_duration) {
						if (cur_thro < thro_constraint) /*real throughput may have huge variant*/
							thro_constraint = thro(cur_thro, up_numerator, up_denominator);
						else /* current throughput is large than constraint. WHAT!!!*/
							thro_constraint = thro(thro_constraint, up_numerator, up_denominator);

						wmt_tm_printk("HIGH-->HIGH:%lu <- (%d / %d) %lu", thro_constraint, up_numerator, up_denominator, cur_thro);

						//wmt_send_signal( thro_constraint / 1000);
                        wmt_send_signal( thro_constraint );//unit : Kbytes
						over_up_time = 0;
					}
				} else {
					wmt_tm_info("[%s] Error state1=%d!!\n", __func__, throttling_pre_stat);
				}
				wmt_tm_printk("case2 time=%d\n", over_up_time);
			break;

			case MID_STAT:
				if (throttling_pre_stat == LOW_STAT) {
					below_low_time = 0;
					throttling_pre_stat = MID_STAT;
					wmt_tm_printk("[%s] Go up!!\n", __func__);
				} else if (throttling_pre_stat == HIGH_STAT) {
					over_up_time = 0;
					throttling_pre_stat = MID_STAT;
					wmt_tm_printk("[%s] Go down!!\n", __func__);
				} else {
					throttling_pre_stat = MID_STAT;
					wmt_tm_dprintk("[%s] pre_stat=%d!!\n", __func__, throttling_pre_stat);
				}
			break;

			case LOW_STAT:
				if (throttling_pre_stat == WFD_STAT) {
					throttling_pre_stat = LOW_STAT;
					wmt_tm_dprintk("[%s] pre_stat=%d!!\n", __func__, throttling_pre_stat);
				} else if (throttling_pre_stat > LOW_STAT) {
					if (cur_thro < 5000 && cur_thro > 0) {
						thro_constraint = cur_thro * 3;
					} else if (cur_thro >= 5000) {
						thro_constraint = thro(cur_thro, low_numerator, low_denominator);
					} else {
						thro_constraint = thro(thro_constraint, low_numerator, low_denominator);
					}

					wmt_tm_printk("MID/HIGH-->LOW:%lu <- (%d / %d) %lu", thro_constraint, low_numerator, low_denominator, cur_thro);
					//wmt_send_signal( thro_constraint / 1000);
                    wmt_send_signal( thro_constraint );//unit : Kbytes
					throttling_pre_stat = LOW_STAT;
					below_low_time = 0;
					low_rst_time = 0;
					is_reset = false;
				} else if (throttling_pre_stat == LOW_STAT) {
					below_low_time++;
					if ( (below_low_time*interval) >= low_duration) {
						if (low_rst_time >= low_rst_max && !is_reset) {
							wmt_tm_printk("over rst time=%d", low_rst_time);

							wmt_send_signal(-1); //reset
							low_rst_time = low_rst_max;
							is_reset = true;
						} else if(!is_reset) {
							if (cur_thro < 5000 && cur_thro > 0) {
								thro_constraint = cur_thro * 3;
							} else if (cur_thro >= 5000) {
								thro_constraint = thro(cur_thro, low_numerator, low_denominator);
								low_rst_time++;
							} else {
								thro_constraint = thro(thro_constraint, low_numerator, low_denominator);
								low_rst_time++;
							}

							wmt_tm_printk("LOW-->LOW:%lu <-(%d / %d) %lu", thro_constraint, low_numerator, low_denominator, cur_thro);

							//wmt_send_signal( thro_constraint / 1000);
							wmt_send_signal( thro_constraint );//unit : Kbytes
							below_low_time = 0;
						} else {
							wmt_tm_dprintk("Have reset, no control!!");
						}
					}
				} else {
					wmt_tm_info("[%s] Error state3 %d!!\n", __func__, throttling_pre_stat);
				}
				wmt_tm_dprintk("case0 time=%d, rst=%d %d\n", below_low_time, low_rst_time, is_reset);
			break;

			default:
				wmt_tm_info("[%s] Error cur_wifi_stat=%d!!\n", __func__, cur_wifi_stat);
			break;
		}

		mail_box[0] = UNK_STAT;
		mail_box[1] = UNK_STAT;
	} else {
		wmt_tm_dprintk("[%s] dont get all info!!\n", __func__);
	}
	return 0;
}

/* +mtktspa_cooling_pa1_ops+ */
static int wmt_cl_pa1_get_max_state(struct thermal_cooling_device *cool_dev,
             unsigned long *pv)
{
    *pv = 1;
    wmt_tm_dprintk("[%s] %lu\n", __func__, *pv);
    return 0;
}

static int wmt_cl_pa1_get_cur_state(struct thermal_cooling_device *cool_dev,
             unsigned long *pv)
{
    *pv = cl_pa1_dev_state;
    wmt_tm_dprintk("[%s] %lu\n", __func__, *pv);
    return 0;
}

static int wmt_cl_pa1_set_cur_state(struct thermal_cooling_device *cool_dev,
             unsigned long v)
{
	struct linux_thermal_ctrl_if *p_linux_if = 0;
	int ret = 0;

	wmt_tm_dprintk("[%s] %lu\n", __func__, v);

	if (pg_wmt_tm) {
		p_linux_if = &pg_wmt_tm->linux_if;
	} else {
		ret = -1;
	}

	cl_pa1_dev_state = (unsigned int)v;

	if (cl_pa1_dev_state == 1) {
		ret = wmt_judge_throttling(0, 1, p_linux_if->interval/1000);
	} else {
		ret = wmt_judge_throttling(0, 0, p_linux_if->interval/1000);
	}
	if (ret != 0) wmt_tm_info("[%s] ret=%d\n", __func__, ret);
    return ret;
}
/* -mtktspa_cooling_pa1_ops- */

/* +mtktspa_cooling_pa2_ops+ */
static int wmt_cl_pa2_get_max_state(struct thermal_cooling_device *cool_dev,
             unsigned long *pv)
{
    *pv = 1;
    wmt_tm_dprintk("[%s] %lu\n", __func__, *pv);
    return 0;
}

static int wmt_cl_pa2_get_cur_state(struct thermal_cooling_device *cool_dev,
             unsigned long *pv)
{
    *pv = cl_pa2_dev_state;
    wmt_tm_dprintk("[%s] %lu\n", __func__, *pv);
    return 0;
}

static int wmt_cl_pa2_set_cur_state(struct thermal_cooling_device *cool_dev,
             unsigned long v)
{
	struct linux_thermal_ctrl_if *p_linux_if = 0;
	int ret = 0;

	wmt_tm_dprintk("[%s] %lu\n", __func__, v);

	if (pg_wmt_tm) {
		p_linux_if = &pg_wmt_tm->linux_if;
	} else {
		ret = -1;
	}

	cl_pa2_dev_state = (unsigned int)v;

	if (cl_pa2_dev_state == 1) {
		ret = wmt_judge_throttling(1, 1, p_linux_if->interval/1000);
	} else {
		ret = wmt_judge_throttling(1, 0, p_linux_if->interval/1000);
	}
	if (ret != 0) wmt_tm_info("[%s] ret=%d\n", __func__, ret);
	return ret;
}
/* -mtktspa_cooling_pa2_ops- */

#ifdef NEVER
/* +mtktspa_cooling_pa3_ops+ */
static int wmt_cl_pa3_get_max_state(struct thermal_cooling_device *cool_dev,
             unsigned long *pv)
{
    *pv = 1;
    wmt_tm_dprintk("[%s] %d\n", __func__, *pv);
	return 0;
}

static int wmt_cl_pa3_get_cur_state(struct thermal_cooling_device *cool_dev,
             unsigned long *pv)
{
    *pv = cl_pa3_dev_state;
    wmt_tm_dprintk("[%s] %d\n", __func__, *pv);
	return 0;
}

static int wmt_cl_pa3_set_cur_state(struct thermal_cooling_device *cool_dev,
             unsigned long v)
{
	struct linux_thermal_ctrl_if *p_linux_if = 0;
	int ret = 0;

	wmt_tm_dprintk("[%s] %d\n", __func__, v);

	if (pg_wmt_tm) {
		p_linux_if = &pg_wmt_tm->linux_if;
	} else {
		ret = -1;
	}

	cl_pa3_dev_state = (unsigned int)v;

	if (cl_pa3_dev_state == 1) {
		//ret = wmt_arbitrate_thro(2,3);
	} else {
		//ret = wmt_arbitrate_thro(2,0);
 	}
	if (ret != 0) wmt_tm_printk("[%s] ret=%d\n", __func__, ret);
	return ret;
}
/* -mtktspa_cooling_pa3_ops- */
#endif /* NEVER */

int wmt_wifi_tx_thro_read(struct seq_file *m, void *v)
{
	seq_printf(m, "%lu\n", tx_throughput);

	wmt_tm_dprintk("[%s] tx=%lu\n", __func__, tx_throughput);

	return 0;
}

static int wmt_wifi_tx_thro_open(struct inode *inode, struct file *file)
{
#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 10, 0)
    return single_open(file, wmt_wifi_tx_thro_read, PDE_DATA(inode));
#else
    return single_open(file, wmt_wifi_tx_thro_read, PDE(inode)->data);
#endif
}

/*New Wifi throttling Algo+*/
ssize_t wmt_wifi_algo_write(struct file *filp, const char __user *buf, size_t len, loff_t *data)
{
	char desc[MAX_LEN] = {0};

	unsigned int tmp_up_dur = 30;
	unsigned int tmp_up_den = 2;
	unsigned int tmp_up_num = 1;

	unsigned int tmp_low_dur = 3;
	unsigned int tmp_low_den = 2;
	unsigned int tmp_low_num = 3;

	unsigned int tmp_low_rst_max = 3;

	unsigned int tmp_log = 0;

	len = (len < (sizeof(desc) - 1)) ? len : (sizeof(desc) - 1);

	/* write data to the buffer */
	if (copy_from_user(desc, buf, len)) {
		return -EFAULT;
	}

	if (sscanf(desc, "%d %d/%d %d %d/%d %d", &tmp_up_dur, &tmp_up_num, &tmp_up_den, &tmp_low_dur, \
								&tmp_low_num, &tmp_low_den, &tmp_low_rst_max) == 7) {

		up_duration = tmp_up_dur;
		up_denominator = tmp_up_den;
		up_numerator = tmp_up_num;

		low_duration = tmp_low_dur;
		low_denominator = tmp_low_den;
		low_numerator = tmp_low_num;

		low_rst_max = tmp_low_rst_max;

		over_up_time = 0;
		below_low_time = 0;
		low_rst_time = 0;

		wmt_tm_printk("[%s] %s [up]%d %d/%d, [low]%d %d/%d, rst=%d\n", __func__, desc, up_duration, \
			up_numerator, up_denominator, low_duration, low_numerator, low_denominator, low_rst_max);

		return len;
	} else if (sscanf(desc, "log=%d", &tmp_log) == 1) {
		if (tmp_log == 1)
			wmt_tm_debug_log = 1;
		else
			wmt_tm_debug_log = 0;

		return len;
	} else {
		wmt_tm_printk("[%s] bad argument = %s\n", __func__, desc);
	}
    return -EINVAL;
}

int wmt_wifi_algo_read(struct seq_file *m, void *v)
{
    //int ret;
    //char tmp[MAX_LEN] = {0};

    seq_printf(m, "[up]\t%3d(sec)\t%2d/%2d\n[low]\t%3d(sec)\t%2d/%2d\nrst=%2d\n", up_duration, up_numerator, up_denominator, \
                  low_duration, low_numerator, low_denominator, low_rst_max);
    //ret = strlen(tmp);

    //memcpy(buf, tmp, ret*sizeof(char));

    wmt_tm_printk("[%s] [up]%d %d/%d, [low]%d %d/%d, rst=%d\n", __func__, up_duration, \
                  up_numerator, up_denominator, low_duration, low_numerator, low_denominator, low_rst_max);

    return 0;
}

static int wmt_wifi_algo_open(struct inode *inode, struct file *file)
{
#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 10, 0)
    return single_open(file, wmt_wifi_algo_read, PDE_DATA(inode));
#else
    return single_open(file, wmt_wifi_algo_read, PDE(inode)->data);
#endif
}
/*New Wifi throttling Algo-*/

ssize_t wmt_tm_wfd_write(struct file *filp, const char __user *buf, size_t len, loff_t *data)
{
	int ret = 0;
	char tmp[MAX_LEN] = {0};

	len = min(len,MAX_LEN-1);
	/* write data to the buffer */
	if (copy_from_user(tmp, buf, len)) {
		return -EFAULT;
	}

	ret = sscanf(tmp, "%d", &tm_wfd_stat);

	//wmt_tm_printk("[%s] %s = %d, len=%lu, ret=%d\n", __func__, tmp, tm_wfd_stat, len, ret);

	return len;
}

int wmt_tm_wfd_read(struct seq_file *m, void *v)
{
	//int len;
	//int ret = 0;
	//char tmp[MAX_LEN] = {0};

	seq_printf(m, "%d\n", tm_wfd_stat);
	//len = strlen(tmp);

	//memcpy(buf, tmp, ret*sizeof(char));

	wmt_tm_printk("[%s] %d\n", __func__, tm_wfd_stat);

	return 0;
}

static int wmt_tm_wfd_open(struct inode *inode, struct file *file)
{
#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 10, 0)
    return single_open(file, wmt_tm_wfd_read, PDE_DATA(inode));
#else
    return single_open(file, wmt_tm_wfd_read, PDE(inode)->data);
#endif
}

ssize_t wmt_tm_pid_write(struct file *filp, const char __user *buf, size_t len, loff_t *data)
{
	int ret = 0;
	char tmp[MAX_LEN] = {0};

	len = (len < (MAX_LEN - 1)) ? len : (MAX_LEN - 1);

	/* write data to the buffer */
	if ( copy_from_user(tmp, buf, len) ) {
		return -EFAULT;
	}

	ret = kstrtouint(tmp, 10, &tm_input_pid);
	if (ret)
		WARN_ON(1);

	wmt_tm_printk("[%s] %s = %d\n", __func__, tmp, tm_input_pid);

	return len;
}

int wmt_tm_pid_read(struct seq_file *m, void *v)
{
    //int ret;
    //char tmp[MAX_LEN] = {0};

    seq_printf(m, "%d\n", tm_input_pid);
    //ret = strlen(tmp);

    //memcpy(buf, tmp, ret*sizeof(char));

    wmt_tm_printk("[%s] %d\n", __func__, tm_input_pid);

    return 0;
}

static int wmt_tm_pid_open(struct inode *inode, struct file *file)
{
#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 10, 0)
    return single_open(file, wmt_tm_pid_read, PDE_DATA(inode));
#else
    return single_open(file, wmt_tm_pid_read, PDE(inode)->data);
#endif
}

#define check_str(x) (x[0]=='\0'?"none\t":x)

static int wmt_tm_read(struct seq_file *m, void *v)
{
    //int len = 0;
    //char *p = buf;
    struct linux_thermal_ctrl_if *p_linux_if = 0;

    wmt_tm_printk("[%s]\n", __func__);

    //sanity
    if(pg_wmt_tm) {
       p_linux_if = &pg_wmt_tm->linux_if;
    } else {
       wmt_tm_info("[wmt_tm_read] fail! \n");
       return -EINVAL;
    }

    seq_printf(m, "[wmt_tm_read]"\
                  "\n \tcooler\t\ttrip_temp\ttrip_type" \
                  "\n [0] %s\t%d\t\t%d" \
                  "\n [1] %s\t%d\t\t%d" \
                  "\n [2] %s\t%d\t\t%d" \
                  "\n [3] %s\t%d\t\t%d" \
                  "\n [4] %s\t%d\t\t%d" \
                  "\n [5] %s\t%d\t\t%d" \
                  "\n [6] %s\t%d\t\t%d" \
                  "\n [7] %s\t%d\t\t%d" \
                  "\n [8] %s\t%d\t\t%d" \
                  "\n [9] %s\t%d\t\t%d" \
                  "\ntime_ms=%d\n", \
                  check_str(g_bind0),g_trip_temp[0],g_thermal_trip[0], check_str(g_bind1),g_trip_temp[1],g_thermal_trip[1],\
                  check_str(g_bind2),g_trip_temp[2],g_thermal_trip[2], check_str(g_bind3),g_trip_temp[3],g_thermal_trip[3],\
                  check_str(g_bind4),g_trip_temp[4],g_thermal_trip[4], check_str(g_bind5),g_trip_temp[5],g_thermal_trip[5],\
                  check_str(g_bind6),g_trip_temp[6],g_thermal_trip[6], check_str(g_bind7),g_trip_temp[7],g_thermal_trip[7],\
                  check_str(g_bind8),g_trip_temp[8],g_thermal_trip[8], check_str(g_bind9),g_trip_temp[9],g_thermal_trip[9],\
                  p_linux_if->interval);

    return 0;
}

static int wmt_tm_open(struct inode *inode, struct file *file)
{
#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 10, 0)
    return single_open(file, wmt_tm_read, PDE_DATA(inode));
#else
    return single_open(file, wmt_tm_read, PDE(inode)->data);
#endif
}

static ssize_t wmt_tm_write(struct file *filp, const char __user *buf, size_t count, loff_t *data)
{
    int i = 0;
    int len=0,time_msec=0;
    int trip_temp[COOLER_NUM] = {0};
    int thermal_trip[COOLER_NUM] = {0};

    char desc[512];
    char bind0[20],bind1[20],bind2[20],bind3[20],bind4[20];
    char bind5[20],bind6[20],bind7[20],bind8[20],bind9[20];

    struct linux_thermal_ctrl_if *p_linux_if = 0;

    wmt_tm_printk("[%s]\n", __func__);

    //sanity
    if(pg_wmt_tm) {
       p_linux_if = &pg_wmt_tm->linux_if;
    } else {
       wmt_tm_info("[wmt_thz_write] fail! \n");
       return -EINVAL;
    }

    len = (count < (sizeof(desc) - 1)) ? count : (sizeof(desc) - 1);

    if (copy_from_user(desc, buf, len)) {
        return 0;
    }

    desc[len] = '\0';

    if (sscanf(desc, "%d %d %d %s %d %d %s %d %d %s %d %d %s %d %d %s %d %d %s %d %d %s %d %d %s %d %d %s %d %d %s %d",
                      &g_num_trip, &trip_temp[0], &thermal_trip[0], bind0,
                      &trip_temp[1], &thermal_trip[1], bind1,
                      &trip_temp[2], &thermal_trip[2], bind2,
                      &trip_temp[3], &thermal_trip[3], bind3,
                      &trip_temp[4], &thermal_trip[4], bind4,
                      &trip_temp[5], &thermal_trip[5], bind5,
                      &trip_temp[6], &thermal_trip[6], bind6,
                      &trip_temp[7], &thermal_trip[7], bind7,
                      &trip_temp[8], &thermal_trip[8], bind8,
                      &trip_temp[9], &thermal_trip[9], bind9,
                      &time_msec) == 32)
    {
        // unregister
        if (p_linux_if->thz_dev) {
    		mtk_thermal_zone_device_unregister(p_linux_if->thz_dev);
    		p_linux_if->thz_dev = NULL;
    	}

		for ( i = 0; i < g_num_trip; i++) {
			g_thermal_trip[i] = thermal_trip[i];
		}

		g_bind0[0]=g_bind1[0]=g_bind2[0]=g_bind3[0]=g_bind4[0]='\0';
		g_bind5[0]=g_bind6[0]=g_bind7[0]=g_bind8[0]=g_bind9[0]='\0';

		for ( i = 0; i < 20; i++ ) {
			g_bind0[i]=bind0[i];
			g_bind1[i]=bind1[i];
			g_bind2[i]=bind2[i];
			g_bind3[i]=bind3[i];
			g_bind4[i]=bind4[i];
			g_bind5[i]=bind5[i];
			g_bind6[i]=bind6[i];
			g_bind7[i]=bind7[i];
			g_bind8[i]=bind8[i];
			g_bind9[i]=bind9[i];
		}

		for ( i = 0; i < g_num_trip; i++) {
			g_trip_temp[i] = trip_temp[i];
		}

        p_linux_if->interval = time_msec;

        wmt_tm_dprintk("[wmt_tm_write] g_trip_temp [0]=%d, [1]=%d, [2]=%d, [3]=%d, [4]=%d\n",
                       g_thermal_trip[0], g_thermal_trip[1], g_thermal_trip[2],
                       g_thermal_trip[3], g_thermal_trip[4]);

        wmt_tm_dprintk("[wmt_tm_write] g_trip_temp [5]=%d, [6]=%d, [7]=%d, [8]=%d, [9]=%d\n",
                       g_thermal_trip[5], g_thermal_trip[6], g_thermal_trip[7],
                       g_thermal_trip[8], g_thermal_trip[9]);

        wmt_tm_dprintk("[wmt_tm_write] cooldev [0]=%s, [1]=%s, [2]=%s, [3]=%s, [4]=%s,\n",
                       g_bind0, g_bind1, g_bind2, g_bind3, g_bind4);

        wmt_tm_dprintk("[wmt_tm_write] cooldev [5]=%s, [6]=%s, [7]=%s, [8]=%s, [9]=%s,\n",
                       g_bind5, g_bind6, g_bind7, g_bind8, g_bind9);

        wmt_tm_dprintk("[wmt_tm_write] trip_temp [0]=%d, [1]=%d, [2]=%d, [3]=%d, [4]=%d\n",
                       trip_temp[0], trip_temp[1], trip_temp[2], trip_temp[3], trip_temp[4]);

        wmt_tm_dprintk("[wmt_tm_write] trip_temp [5]=%d, [6]=%d, [7]=%d, [8]=%d, [9]=%d\n",
                       trip_temp[5], trip_temp[6], trip_temp[7], trip_temp[8], trip_temp[9]);

        wmt_tm_dprintk("[wmt_tm_write] polling time=%d\n", p_linux_if->interval);

        //p_linux_if->thz_dev->polling_delay = p_linux_if->interval*1000;

        //thermal_zone_device_update(p_linux_if->thz_dev);

        // register
        p_linux_if->thz_dev = mtk_thermal_zone_device_register("mtktswmt", g_num_trip, NULL,
                                &wmt_thz_dev_ops, 0, 0, 0, p_linux_if->interval);

        wmt_tm_dprintk("[wmt_tm_write] time_ms=%d\n", p_linux_if->interval);

        return count;
    } else {
        wmt_tm_info("[%s] bad argument = %s\n", __func__, desc);
    }

    return -EINVAL;
}


void mtkts_wmt_cancel_thermal_timer(void)
{

	struct linux_thermal_ctrl_if *p_linux_if = 0;

	//wmt_tm_dprintk("[%s]\n", __func__);

	if(pg_wmt_tm) {
		p_linux_if = &pg_wmt_tm->linux_if;
	} else {
		return;
	}

	//cancel timer
	//printk("mtkts_wmt_cancel_thermal_timer \n");

	// stop thermal framework polling when entering deep idle
	if (p_linux_if->thz_dev)
		cancel_delayed_work(&(p_linux_if->thz_dev->poll_queue));
}

void mtkts_wmt_start_thermal_timer(void)
{
	struct linux_thermal_ctrl_if *p_linux_if = 0;

	//wmt_tm_dprintk("[%s]\n", __func__);

	if(pg_wmt_tm) {
		p_linux_if = &pg_wmt_tm->linux_if;
	} else {
		return;
	}
	//printk("mtkts_wmt_start_thermal_timer \n");
	// resume thermal framework polling when leaving deep idle
	if (p_linux_if->thz_dev != NULL && p_linux_if->interval != 0)
		mod_delayed_work(system_freezable_wq, &(p_linux_if->thz_dev->poll_queue), round_jiffies(msecs_to_jiffies(2000))); // 3sec
}

static const struct file_operations _wmt_tm_fops = {
    .owner = THIS_MODULE,
    .open = wmt_tm_open,
    .read = seq_read,
    .llseek = seq_lseek,
    .write = wmt_tm_write,
    .release = single_release,
};

static const struct file_operations _tm_pid_fops = {
    .owner = THIS_MODULE,
    .open = wmt_tm_pid_open,
    .read = seq_read,
    .llseek = seq_lseek,
    .write = wmt_tm_pid_write,
    .release = single_release,
};

static const struct file_operations _wmt_val_fops = {
    .owner = THIS_MODULE,
    .open = wmt_wifi_algo_open,
    .read = seq_read,
    .llseek = seq_lseek,
    .write = wmt_wifi_algo_write,
    .release = single_release,
};

static const struct file_operations _tx_thro_fops = {
    .owner = THIS_MODULE,
    .open = wmt_wifi_tx_thro_open,
    .read = seq_read,
    .llseek = seq_lseek,
    .release = single_release,
};

static const struct file_operations _wfd_stat_fops = {
    .owner = THIS_MODULE,
    .open = wmt_tm_wfd_open,
    .read = seq_read,
    .llseek = seq_lseek,
    .write = wmt_tm_wfd_write,
    .release = single_release,
};

static int wmt_tm_proc_register(void)
{
    struct proc_dir_entry *entry = NULL;
    struct proc_dir_entry *wmt_tm_proc_dir = NULL;

    wmt_tm_dprintk("[%s]\n", __func__);

    wmt_tm_proc_dir = mtk_thermal_get_proc_drv_therm_dir_entry();
    if (!wmt_tm_proc_dir) {
        wmt_tm_printk("[%s]: mkdir /proc/driver/thermal failed\n", __func__);
    } else {
        entry =
		    proc_create("tzwmt", S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP, wmt_tm_proc_dir,
				&_wmt_tm_fops);
        if (entry) {
#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 10, 0)
            proc_set_user(entry, 0, 1000);
#else
            entry->gid = 1000;
#endif
        }

        entry =
		    proc_create("clwmt_pid", S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP, wmt_tm_proc_dir,
				&_tm_pid_fops);
        if (entry) {
#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 10, 0)
            proc_set_user(entry, 0, 1000);
#else
            entry->gid = 1000;
#endif
        }

        entry =
		    proc_create("clwmt_val", S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP, wmt_tm_proc_dir,
				&_wmt_val_fops);
        if (entry) {
#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 10, 0)
            proc_set_user(entry, 0, 1000);
#else
            entry->gid = 1000;
#endif
        }

        entry = proc_create("wifi_tx_thro", S_IRUGO | S_IWUSR, wmt_tm_proc_dir, &_tx_thro_fops);

        entry =
		    proc_create("clwmt_wfdstat", S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP, wmt_tm_proc_dir,
				&_wfd_stat_fops);
        if (entry) {
#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 10, 0)
            proc_set_user(entry, 0, 1000);
#else
            entry->gid = 1000;
#endif
        }
    }
    return 0;
}

static int wmt_tm_proc_unregister(void)
{
    wmt_tm_dprintk("[%s]\n", __func__);
    //remove_proc_entry("wmt_tm", proc_entry);
    return 0;
}

static int wmt_tm_thz_cl_register(void)
{
    #define DEFAULT_POLL_TIME 0 /*Default disable, turn on by thermal policy*/

    struct linux_thermal_ctrl_if *p_linux_if = 0;

	wmt_tm_dprintk("[%s]\n", __func__);

    if(pg_wmt_tm) {
       p_linux_if = &pg_wmt_tm->linux_if;
    } else {
       return -1;
    }

    /* cooling devices */
    p_linux_if->cl_dev = mtk_thermal_cooling_device_register("mtktswmt-sysrst", NULL,
			    &mtktspa_cooling_sysrst_ops);

    p_linux_if->cl_pa1_dev = mtk_thermal_cooling_device_register("mtktswmt-pa1", NULL,
			    &mtktspa_cooling_pa1_ops);

    p_linux_if->cl_pa2_dev = mtk_thermal_cooling_device_register("mtktswmt-pa2", NULL,
			    &mtktspa_cooling_pa2_ops);

#ifdef NEVER
    p_linux_if->cl_pa3_dev = mtk_thermal_cooling_device_register("mtktswmt-pa3", NULL,
			    &mtktspa_cooling_pa3_ops);
#endif /* NEVER */

	p_linux_if->interval = DEFAULT_POLL_TIME;

    /* trips */
    p_linux_if->thz_dev = mtk_thermal_zone_device_register("mtktswmt", g_num_trip, NULL,
			    &wmt_thz_dev_ops, 0, 0, 0, p_linux_if->interval);

    return 0;
}

static int wmt_tm_thz_cl_unregister(void)
{
    struct linux_thermal_ctrl_if *p_linux_if = 0;

    wmt_tm_dprintk("[%s]\n", __func__);

    if(pg_wmt_tm) {
       p_linux_if = &pg_wmt_tm->linux_if;
    } else {
       return -1;
    }

    if (p_linux_if->cl_dev) {
        mtk_thermal_cooling_device_unregister(p_linux_if->cl_dev);
        p_linux_if->cl_dev = NULL;
    }

    if (p_linux_if->cl_pa1_dev) {
        mtk_thermal_cooling_device_unregister(p_linux_if->cl_pa1_dev);
        p_linux_if->cl_pa1_dev = NULL;
    }

    if (p_linux_if->cl_pa2_dev) {
        mtk_thermal_cooling_device_unregister(p_linux_if->cl_pa2_dev);
        p_linux_if->cl_pa2_dev = NULL;
    }

#ifdef NEVER
    if (p_linux_if->cl_pa3_dev) {
        mtk_thermal_cooling_device_unregister(p_linux_if->cl_pa3_dev);
        p_linux_if->cl_pa3_dev = NULL;
    }
#endif /* NEVER */

    if (p_linux_if->thz_dev) {
        mtk_thermal_zone_device_unregister(p_linux_if->thz_dev);
        p_linux_if->thz_dev = NULL;
    }

    return 0;
}

#if 0
static int wmt_tm_ops_register(struct wmt_thermal_ctrl_ops *ops)
{
    struct wmt_thermal_ctrl_ops *p_des;

   wmt_tm_printk("[%s]\n", __func__);

    if (pg_wmt_tm) {
#if 1
        p_des = &pg_wmt_tm->wmt_if.ops;
        if (ops!=NULL) {
            wmt_tm_printk("[wmt_tm_ops_register] reg start ...\n");
            p_des->query_temp = ops->query_temp;
            p_des->set_temp = ops->set_temp;
            wmt_tm_printk("[wmt_tm_ops_register] reg end ...\n");
        } else {
            p_des->query_temp =  0;
            p_des->set_temp = 0;
        }
#endif
        return 0;
    } else {
        return -1;
    }
}

static int wmt_tm_ops_unregister(void)
{
    struct wmt_thermal_ctrl_ops *p_des;

   wmt_tm_printk("[%s]\n", __func__);

    if (pg_wmt_tm) {
        p_des = &pg_wmt_tm->wmt_if.ops;
        p_des->query_temp = 0;
        p_des->set_temp = 0;

        return 0;
    } else {
        return -1;
    }
}
#endif

static int __init wmt_tm_init(void)
{
    int err = 0;

    wmt_tm_printk("[wmt_tm_init] start -->\n");

#if 0
    err = wmt_tm_ops_register(ops);
    if(err)
        return err;
#endif

    err = wmt_tm_proc_register();
    if(err)
        return err;

    /* init a timer for stats tx bytes */
    wmt_stats_info.pre_time = 0;
    wmt_stats_info.pre_tx_bytes = 0;

    init_timer(&wmt_stats_timer);
    wmt_stats_timer.function = (void *)&wmt_cal_stats;
    wmt_stats_timer.data = (unsigned long) &wmt_stats_info;
    wmt_stats_timer.expires = jiffies + 1 * HZ;
    add_timer(&wmt_stats_timer);

#if 1
    err = wmt_tm_thz_cl_register();
    if(err)
        return err;
#endif
    wmt_tm_printk("[wmt_tm_init] end <--\n");

    return 0;
}

#if 0
int wmt_tm_init_rt()
{
    int err = 0;

    wmt_tm_printk("[wmt_tm_init_rt] start -->\n");

    err = wmt_tm_thz_cl_register();
    if(err)
        return err;

    wmt_tm_printk("[wmt_tm_init_rt] end <--\n");

    return 0;
}

int wmt_tm_deinit_rt()
{
    int err = 0;

    wmt_tm_printk("[wmt_tm_deinit_rt] start -->\n");

    err = wmt_tm_thz_cl_unregister();
    if(err)
        return err;

    wmt_tm_printk("[wmt_tm_deinit_rt] end <--\n");

    return 0;
}
#endif

static void __exit wmt_tm_deinit(void)
{
    int err = 0;

    wmt_tm_printk("[%s]\n", __func__);
#if 1
    err = wmt_tm_thz_cl_unregister();
    if(err)
        return;
#endif
    err = wmt_tm_proc_unregister();
    if(err)
        return;

#if 0
    err = wmt_tm_ops_unregister();
    if(err)
        return;
#endif

    del_timer(&wmt_stats_timer);

    return;
}

module_init(wmt_tm_init);
module_exit(wmt_tm_deinit);