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
|
/* linux/arch/arm/mach-exynos/tmu.c
*
* Copyright (c) 2010 Samsung Electronics Co., Ltd.
* http://www.samsung.com
*
* EXYNOS4 - Thermal Management support
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#include <linux/module.h>
#include <linux/fs.h>
#include <linux/string.h>
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/delay.h>
#include <linux/platform_device.h>
#include <linux/power_supply.h>
#include <linux/interrupt.h>
#include <linux/err.h>
#include <linux/io.h>
#include <linux/irq.h>
#include <linux/gpio.h>
#include <linux/slab.h>
#include <linux/kobject.h>
#include <asm/irq.h>
#include <mach/regs-tmu.h>
#include <mach/cpufreq.h>
#include <mach/map.h>
#include <mach/smc.h>
#include <plat/s5p-tmu.h>
#include <plat/map-s5p.h>
#include <plat/gpio-cfg.h>
#include <plat/cpu.h>
#define CONFIG_TMU_DEBUG
/* for factory mode */
#define CONFIG_TMU_SYSFS
/* flags that throttling or trippint is treated */
#define THROTTLE_FLAG (0x1 << 0)
#define WARNING_FLAG (0x1 << 1)
#define TRIPPING_FLAG (0x1 << 2)
#define MEM_THROTTLE_FLAG (0x1 << 4)
#define TIMING_AREF_OFFSET 0x30
static struct workqueue_struct *tmu_monitor_wq;
static DEFINE_MUTEX(tmu_lock);
#ifdef CONFIG_ARCH_EXYNOS4
struct s5p_tmu_info_extend {
void __iomem *tmu_base;
unsigned char te1; /* triminfo_25 */
};
static struct s5p_tmu_info_extend info_ex;
unsigned int get_curr_temp_extend(void)
{
unsigned char curr_temp_code;
int temperature;
if (!info_ex.tmu_base) {
/* Called before tmu driver is loaded, can't read current_temp
* So return 0 for minimum voltage.
*/
pr_info("called before loading tmu driver!\n");
return 0;
}
if (!info_ex.tmu_base) {
/* Called before tmu driver is loaded, can't read current_temp
* So return 0 for minimum voltage.
*/
pr_info("called before loading tmu driver!\n");
return 0;
}
/* After reading temperature code from register, compensating
* its value and calculating celsius temperatue,
* get current temperatue.
*/
curr_temp_code =
__raw_readl(info_ex.tmu_base + EXYNOS4_TMU_CURRENT_TEMP) & 0xff;
pr_debug("CURRENT_TEMP = 0x%02x\n", curr_temp_code);
/* compensate and calculate current temperature */
temperature = curr_temp_code - info_ex.te1 + TMU_DC_VALUE;
if (temperature < 0) {
/* temperature code range are extended btn min 0 & 125 */
pr_info("current temp is under %d celsius degree!\n", temperature);
temperature = 0;
}
return (unsigned int)temperature;
}
EXPORT_SYMBOL_GPL(get_curr_temp_extend);
#endif
static unsigned int get_curr_temp(struct s5p_tmu_info *info)
{
unsigned char curr_temp_code;
int temperature;
if (!info)
return -EAGAIN;
/* After reading temperature code from register, compensating
* its value and calculating celsius temperatue,
* get current temperatue.
*/
curr_temp_code =
__raw_readl(info->tmu_base + EXYNOS4_TMU_CURRENT_TEMP) & 0xff;
/* Check range of temprature code with curr_temp_code & efusing info */
pr_debug("CURRENT_TEMP = 0x%02x\n", curr_temp_code);
if ((curr_temp_code - info->te1) < 0 || (curr_temp_code - info->te1) > 100)
pr_err("temperature code is in inaccurate range->"
"check if vdd_18_ts is on or room temperature.\n");
/* compensate and calculate current temperature */
temperature = curr_temp_code - info->te1 + TMU_DC_VALUE;
if (temperature < TEMP_MIN_CELCIUS) {
/* temperature code range are between min 25 and 125 */
pr_info("current temp is under %d celsius degree!\n", TEMP_MIN_CELCIUS);
temperature = TEMP_MIN_CELCIUS;
}
return (unsigned int)temperature;
}
static ssize_t show_temperature(struct device *dev,
struct device_attribute *attr, char *buf)
{
struct s5p_tmu_info *info = dev_get_drvdata(dev);
unsigned int temperature;
if (!dev)
return -ENODEV;
mutex_lock(&tmu_lock);
temperature = get_curr_temp(info);
mutex_unlock(&tmu_lock);
return sprintf(buf, "%d\n", temperature);
}
static ssize_t show_tmu_state(struct device *dev,
struct device_attribute *attr, char *buf)
{
struct s5p_tmu_info *info = dev_get_drvdata(dev);
if (!dev)
return -ENODEV;
return sprintf(buf, "%d\n", info->tmu_state);
}
static ssize_t show_lot_id(struct device *dev,
struct device_attribute *attr, char *buf)
{
u32 id1 = 0;
u32 id2 = 0;
id1 = __raw_readl(S5P_VA_CHIPID + 0x14);
id2 = __raw_readl(S5P_VA_CHIPID + 0x18);
return sprintf(buf, "%08x-%08x\n", id1, id2);
}
static DEVICE_ATTR(temperature, 0444, show_temperature, NULL);
static DEVICE_ATTR(tmu_state, 0444, show_tmu_state, NULL);
static DEVICE_ATTR(lot_id, 0444, show_lot_id, NULL);
static void print_temperature_params(struct s5p_tmu_info *info)
{
struct s5p_platform_tmu *pdata = info->dev->platform_data;
pr_info("** temperature set value **\n"
"1st throttling stop_temp = %d, start_temp = %d\n"
"2nd throttling stop_temp = %d, start_tmep = %d\n"
"tripping temp = %d, s/w emergency temp = %d\n"
"mem throttling stop_temp = %d, start_temp = %d\n",
pdata->ts.stop_1st_throttle,
pdata->ts.start_1st_throttle,
pdata->ts.stop_2nd_throttle,
pdata->ts.start_2nd_throttle,
pdata->ts.start_tripping,
pdata->ts.start_emergency,
pdata->ts.stop_mem_throttle,
pdata->ts.start_mem_throttle);
}
unsigned int get_refresh_interval(unsigned int freq_ref,
unsigned int refresh_nsec)
{
unsigned int uRlk, refresh = 0;
/*
* uRlk = FIN / 100000;
* refresh_usec = (unsigned int)(fMicrosec * 10);
* uRegVal = ((unsigned int)(uRlk * uMicroSec / 100)) - 1;
* refresh =
* (unsigned int)(freq_ref * (unsigned int)(refresh_usec * 10) / 100) - 1;
*/
uRlk = freq_ref / 1000000;
refresh = ((unsigned int)(uRlk * refresh_nsec / 1000));
pr_info("@@@ get_refresh_interval = 0x%02x\n", refresh);
return refresh;
}
#ifdef CONFIG_TMU_DEBUG
static int tmu_test_on;
static struct temperature_params in;
static int tmu_limit_on;
static int freq_limit_1st_throttle;
static int freq_limit_2nd_throttle;
static int set_sampling_rate;
static int tmu_print_temp_on_off;
static int __init get_temperature_params(char *str)
{
unsigned int tmu_temp[8] = { (int)NULL, (int)NULL, (int)NULL,
(int)NULL, (int)NULL, (int)NULL, (int)NULL, (int)NULL };
get_options(str, 8, tmu_temp);
tmu_test_on = tmu_temp[0];
printk(KERN_INFO "@@@ tmu_test enable = %d\n", tmu_test_on);
if (tmu_temp[1] > 0)
in.stop_1st_throttle = tmu_temp[1];
if (tmu_temp[2] > 0)
in.start_1st_throttle = tmu_temp[2];
if (tmu_temp[3] > 0)
in.stop_2nd_throttle = tmu_temp[3];
if (tmu_temp[4] > 0)
in.start_2nd_throttle = tmu_temp[4];
if (tmu_temp[5] > 0)
in.start_tripping = tmu_temp[5];
if (tmu_temp[6] > 0)
in.start_mem_throttle = tmu_temp[6];
if (tmu_temp[7] > 0)
in.start_emergency = tmu_temp[7];
/* output the input value */
pr_info("@@ 1st throttling temp: start = %d, stop = %d @@\n"
"@@ 2nd throttling temp: start = %d, stop = %d @@\n"
"@@ trpping temp = %d, start_tq0 temp = %d @@\n"
"@@ emergency temp = %d\n",
in.start_1st_throttle, in.stop_1st_throttle,
in.start_2nd_throttle, in.stop_2nd_throttle,
in.start_tripping, in.start_mem_throttle,
in.start_emergency);
return 0;
}
early_param("tmu_test", get_temperature_params);
static int __init get_cpufreq_limit_param(char *str)
{
int tmu_temp[3] = { (int)NULL, (int)NULL, (int)NULL};
get_options(str, 3, tmu_temp);
tmu_limit_on = tmu_temp[0];
printk(KERN_INFO "@@@ tmu_limit_on = %d\n", tmu_limit_on);
if (tmu_temp[1] > 0)
freq_limit_1st_throttle = tmu_temp[1];
if (tmu_temp[2] > 0)
freq_limit_2nd_throttle = tmu_temp[2];
pr_info("@@ 1st throttling : cpu_level = %d, 2nd cpu_level = %d\n",
freq_limit_1st_throttle, freq_limit_2nd_throttle);
return 0;
}
early_param("cpu_level", get_cpufreq_limit_param);
static int __init get_sampling_rate_param(char *str)
{
get_option(&str, &set_sampling_rate);
if (set_sampling_rate < 0)
set_sampling_rate = 0;
return 0;
}
early_param("tmu_sampling_rate", get_sampling_rate_param);
static void exynos4_poll_cur_temp(struct work_struct *work)
{
unsigned int cur_temp;
struct delayed_work *delayed_work = to_delayed_work(work);
struct s5p_tmu_info *info =
container_of(delayed_work, struct s5p_tmu_info, monitor);
mutex_lock(&tmu_lock);
cur_temp = get_curr_temp(info);
if (tmu_print_temp_on_off)
pr_info("curr temp in polling_interval = %d state = %d\n"
, cur_temp, info->tmu_state);
else
pr_debug("curr temp in polling_interval = %d\n", cur_temp);
queue_delayed_work_on(0, tmu_monitor_wq, &info->monitor,
info->monitor_period);
mutex_unlock(&tmu_lock);
}
static ssize_t tmu_show_print_state(struct device *dev,
struct device_attribute *attr, char *buf)
{
int ret;
ret = sprintf(buf, "[TMU] tmu_print_temp_on_off=%d\n"
, tmu_print_temp_on_off);
return ret;
}
static ssize_t tmu_store_print_state(struct device *dev,
struct device_attribute *attr, const char *buf, size_t count)
{
int ret = 0;
if (!strncmp(buf, "0", 1)) {
tmu_print_temp_on_off = 0;
ret = 0;
} else if (!strncmp(buf, "1", 1)) {
tmu_print_temp_on_off = 1;
ret = 1;
} else {
dev_err(dev, "Invalid cmd !!\n");
return -EINVAL;
}
return ret;
}
static DEVICE_ATTR(print_state, S_IRUGO | S_IWUSR,\
tmu_show_print_state, tmu_store_print_state);
#endif
void set_refresh_rate(unsigned int auto_refresh)
{
/*
* uRlk = FIN / 100000;
* refresh_usec = (unsigned int)(fMicrosec * 10);
* uRegVal = ((unsigned int)(uRlk * uMicroSec / 100)) - 1;
*/
pr_debug("@@@ set_auto_refresh = 0x%02x\n", auto_refresh);
#ifdef CONFIG_ARCH_EXYNOS4
#ifdef CONFIG_ARM_TRUSTZONE
exynos_smc(SMC_CMD_REG,
SMC_REG_ID_SFR_W((EXYNOS4_PA_DMC0_4212 + TIMING_AREF_OFFSET)),
auto_refresh, 0);
exynos_smc(SMC_CMD_REG,
SMC_REG_ID_SFR_W((EXYNOS4_PA_DMC1_4212 + TIMING_AREF_OFFSET)),
auto_refresh, 0);
#else
/* change auto refresh period in TIMING_AREF register of dmc0 */
__raw_writel(auto_refresh, S5P_VA_DMC0 + TIMING_AREF_OFFSET);
/* change auto refresh period in TIMING_AREF regisger of dmc1 */
__raw_writel(auto_refresh, S5P_VA_DMC1 + TIMING_AREF_OFFSET);
#endif
#else /* CONFIG_ARCH_EXYNOS4 */
#ifdef CONFIG_ARM_TRUSTZONE
exynos_smc(SMC_CMD_REG,
SMC_REG_ID_SFR_W((EXYNOS5_PA_DMC + TIMING_AREF_OFFSET)),
auto_refresh, 0);
#else
/* change auto refresh period in TIMING_AREF register of dmc */
__raw_writel(auto_refresh, S5P_VA_DMC0 + TIMING_AREF_OFFSET);
#endif
#endif /* CONFIG_ARCH_EXYNOS4 */
}
static void set_temperature_params(struct s5p_tmu_info *info)
{
#ifdef CONFIG_TMU_DEBUG
struct s5p_platform_tmu *data = info->dev->platform_data;
if (tmu_test_on) {
/* In the tmu_test mode, change temperature_params value
* input data.
*/
data->ts.stop_1st_throttle = in.stop_1st_throttle;
data->ts.start_1st_throttle = in.start_1st_throttle;
data->ts.stop_2nd_throttle = in.stop_2nd_throttle;
data->ts.start_2nd_throttle = in.start_2nd_throttle;
data->ts.start_tripping = in.start_tripping;
data->ts.start_emergency = in.start_emergency;
data->ts.stop_mem_throttle = in.start_mem_throttle - 5;
data->ts.start_mem_throttle = in.start_mem_throttle;
}
if (tmu_limit_on) {
info->cpufreq_level_1st_throttle = freq_limit_1st_throttle;
info->cpufreq_level_2nd_throttle = freq_limit_2nd_throttle;
}
if (set_sampling_rate) {
info->sampling_rate =
usecs_to_jiffies(set_sampling_rate * 1000);
info->monitor_period =
usecs_to_jiffies(set_sampling_rate * 10 * 1000);
}
#endif
print_temperature_params(info);
}
static int notify_change_of_tmu_state(struct s5p_tmu_info *info)
{
char temp_buf[20];
char *envp[2];
int env_offset = 0;
snprintf(temp_buf, sizeof(temp_buf), "TMUSTATE=%d", info->tmu_state);
envp[env_offset++] = temp_buf;
envp[env_offset] = NULL;
pr_info("%s: uevent: %d, name = %s\n",
__func__, info->tmu_state, temp_buf);
return kobject_uevent_env(&info->dev->kobj, KOBJ_CHANGE, envp);
}
static void exynos4_handler_tmu_state(struct work_struct *work)
{
struct delayed_work *delayed_work = to_delayed_work(work);
struct s5p_tmu_info *info =
container_of(delayed_work, struct s5p_tmu_info, polling);
struct s5p_platform_tmu *data = info->dev->platform_data;
unsigned int cur_temp;
static int auto_refresh_changed;
static int check_handle;
int trend = 0;
mutex_lock(&tmu_lock);
cur_temp = get_curr_temp(info);
trend = cur_temp - info->last_temperature;
pr_debug("curr_temp = %d, temp_diff = %d\n", cur_temp, trend);
switch (info->tmu_state) {
case TMU_STATUS_NORMAL:
/* 1. change state: 1st-throttling */
if (cur_temp >= data->ts.start_1st_throttle) {
info->tmu_state = TMU_STATUS_THROTTLED;
pr_info("change state: normal->throttle.\n");
/* 2. polling end and uevent */
} else if ((cur_temp <= data->ts.stop_1st_throttle)
&& (cur_temp <= data->ts.stop_mem_throttle)) {
if (check_handle & THROTTLE_FLAG) {
exynos_cpufreq_upper_limit_free(DVFS_LOCK_ID_TMU);
check_handle &= ~(THROTTLE_FLAG);
}
pr_debug("check_handle = %d\n", check_handle);
notify_change_of_tmu_state(info);
pr_info("normal: free cpufreq_limit & interrupt enable.\n");
/* clear to prevent from interfupt by peindig bit */
__raw_writel(INTCLEARALL,
info->tmu_base + EXYNOS4_TMU_INTCLEAR);
enable_irq(info->irq);
mutex_unlock(&tmu_lock);
return;
}
break;
case TMU_STATUS_THROTTLED:
/* 1. change state: 2nd-throttling or warning */
if (cur_temp >= data->ts.start_2nd_throttle) {
info->tmu_state = TMU_STATUS_WARNING;
pr_info("change state: 1st throttle->2nd throttle.\n");
/* 2. cpufreq limitation and uevent */
} else if ((cur_temp >= data->ts.start_1st_throttle) &&
!(check_handle & THROTTLE_FLAG)) {
if (check_handle & WARNING_FLAG) {
exynos_cpufreq_upper_limit_free(DVFS_LOCK_ID_TMU);
check_handle &= ~(WARNING_FLAG);
}
exynos_cpufreq_upper_limit(DVFS_LOCK_ID_TMU,
info->cpufreq_level_1st_throttle);
check_handle |= THROTTLE_FLAG;
pr_debug("check_handle = %d\n", check_handle);
notify_change_of_tmu_state(info);
pr_info("throttling: set cpufreq upper limit.\n");
/* 3. change state: normal */
} else if ((cur_temp <= data->ts.stop_1st_throttle)
&& (trend < 0)) {
info->tmu_state = TMU_STATUS_NORMAL;
pr_info("change state: 1st throttle->normal.\n");
}
break;
case TMU_STATUS_WARNING:
/* 1. change state: tripping */
if (cur_temp >= data->ts.start_tripping) {
info->tmu_state = TMU_STATUS_TRIPPED;
pr_info("change state: 2nd throttle->trip\n");
/* 2. cpufreq limitation and uevent */
} else if ((cur_temp >= data->ts.start_2nd_throttle) &&
!(check_handle & WARNING_FLAG)) {
if (check_handle & THROTTLE_FLAG) {
exynos_cpufreq_upper_limit_free(DVFS_LOCK_ID_TMU);
check_handle &= ~(THROTTLE_FLAG);
}
exynos_cpufreq_upper_limit(DVFS_LOCK_ID_TMU,
info->cpufreq_level_2nd_throttle);
check_handle |= WARNING_FLAG;
pr_debug("check_handle = %d\n", check_handle);
notify_change_of_tmu_state(info);
pr_info("2nd throttle: cpufreq is limited.\n");
/* 3. change state: 1st-throttling */
} else if ((cur_temp <= data->ts.stop_2nd_throttle)
&& (trend < 0)) {
info->tmu_state = TMU_STATUS_THROTTLED;
pr_info("change state: 2nd throttle->1st throttle, "
"and release cpufreq upper limit.\n");
}
break;
case TMU_STATUS_TRIPPED:
/* 1. call uevent to shut-down */
if ((cur_temp >= data->ts.start_tripping) &&
(trend > 0) && !(check_handle & TRIPPING_FLAG)) {
notify_change_of_tmu_state(info);
pr_info("tripping: on waiting shutdown.\n");
check_handle |= TRIPPING_FLAG;
pr_debug("check_handle = %d\n", check_handle);
/* 2. change state: 2nd-throttling or warning */
} else if ((cur_temp <= data->ts.stop_2nd_throttle)
&& (trend < 0)) {
info->tmu_state = TMU_STATUS_WARNING;
pr_info("change state: trip->2nd throttle, "
"Check! occured only test mode.\n");
}
/* 3. chip protection: kernel panic as SW workaround */
if ((cur_temp >= data->ts.start_emergency) && (trend > 0)) {
panic("Emergency!!!! tripping is not treated!\n");
/* clear to prevent from interfupt by peindig bit */
__raw_writel(INTCLEARALL,
info->tmu_state + EXYNOS4_TMU_INTCLEAR);
enable_irq(info->irq);
mutex_unlock(&tmu_lock);
return;
}
break;
case TMU_STATUS_INIT:
/* sned tmu initial status to platform */
disable_irq(info->irq);
if (cur_temp >= data->ts.start_tripping)
info->tmu_state = TMU_STATUS_TRIPPED;
else if (cur_temp >= data->ts.start_2nd_throttle)
info->tmu_state = TMU_STATUS_WARNING;
else if (cur_temp >= data->ts.start_1st_throttle)
info->tmu_state = TMU_STATUS_THROTTLED;
else if (cur_temp <= data->ts.stop_1st_throttle)
info->tmu_state = TMU_STATUS_NORMAL;
notify_change_of_tmu_state(info);
pr_info("%s: inform to init state to platform.\n", __func__);
break;
default:
pr_warn("Bug: checked tmu_state.\n");
if (cur_temp >= data->ts.start_tripping)
info->tmu_state = TMU_STATUS_TRIPPED;
else
info->tmu_state = TMU_STATUS_WARNING;
break;
} /* end */
/* memory throttling */
if (cur_temp >= data->ts.start_mem_throttle) {
if (!(auto_refresh_changed) && (trend > 0)) {
pr_info("set auto_refresh 1.95us\n");
set_refresh_rate(info->auto_refresh_tq0);
auto_refresh_changed = 1;
}
} else if (cur_temp <= (data->ts.stop_mem_throttle)) {
if ((auto_refresh_changed) && (trend < 0)) {
pr_info("set auto_refresh 3.9us\n");
set_refresh_rate(info->auto_refresh_normal);
auto_refresh_changed = 0;
}
}
info->last_temperature = cur_temp;
/* reschedule the next work */
queue_delayed_work_on(0, tmu_monitor_wq, &info->polling,
info->sampling_rate);
mutex_unlock(&tmu_lock);
return;
}
static int exynos4210_tmu_init(struct s5p_tmu_info *info)
{
struct s5p_platform_tmu *data = info->dev->platform_data;
unsigned int tmp;
unsigned int temp_code_threshold;
unsigned int temp_code_throttle, temp_code_warning, temp_code_trip;
/* To compensate temperature sensor
* get trim informatoin and save to struct tmu_info
*/
tmp = __raw_readl(info->tmu_base + EXYNOS4_TMU_TRIMINFO);
info->te1 = tmp & TMU_TRIMINFO_MASK;
info->te2 = ((tmp >> 8) & TMU_TRIMINFO_MASK);
/* check boundary the triminfo */
if ((EFUSE_MIN_VALUE > info->te1)
|| (info->te1 > EFUSE_MAX_VALUE) || (info->te2 != 0))
info->te1 = EFUSE_AVG_VALUE;
pr_info("%s: triminfo = 0x%08x, low 8bit = %d, high 24 bit = %d\n",
__func__, tmp, info->te1, info->te2);
/* Need to initial regsiter setting after getting parameter info */
/* [28:23] vref [11:8] slope - Tunning parameter */
__raw_writel(VREF_SLOPE, info->tmu_base + EXYNOS4_TMU_CONTROL);
/* Convert celsius temperature value to temperature code value
* such as threshold_level, 1st throttle, 2nd throttle,
* tripping temperature.
*/
temp_code_threshold = data->ts.stop_1st_throttle
+ info->te1 - TMU_DC_VALUE;
temp_code_throttle = data->ts.start_1st_throttle
- data->ts.stop_1st_throttle;
temp_code_warning = data->ts.start_2nd_throttle
- data->ts.stop_1st_throttle;
temp_code_trip = data->ts.start_tripping
- data->ts.stop_1st_throttle;
/* Set interrupt trigger level */
__raw_writel(temp_code_threshold, info->tmu_base + EXYNOS4210_TMU_THRESHOLD_TEMP);
__raw_writel(temp_code_throttle, info->tmu_base + EXYNOS4210_TMU_TRIG_LEVEL0);
__raw_writel(temp_code_warning, info->tmu_base + EXYNOS4210_TMU_TRIG_LEVEL1);
__raw_writel(temp_code_trip, info->tmu_base + EXYNOS4210_TMU_TRIG_LEVEL2);
__raw_writel(TRIGGER_LEV_MAX, info->tmu_base + EXYNOS4210_TMU_TRIG_LEVEL3);
pr_info("THD_TEMP:0x%02x: TRIG_LEV0: 0x%02x\n"
"TRIG_LEV1: 0x%02x TRIG_LEV2: 0x%02x, TRIG_LEV3: 0x%02x\n",
__raw_readl(info->tmu_base + EXYNOS4210_TMU_THRESHOLD_TEMP),
__raw_readl(info->tmu_base + EXYNOS4210_TMU_TRIG_LEVEL0),
__raw_readl(info->tmu_base + EXYNOS4210_TMU_TRIG_LEVEL1),
__raw_readl(info->tmu_base + EXYNOS4210_TMU_TRIG_LEVEL2),
__raw_readl(info->tmu_base + EXYNOS4210_TMU_TRIG_LEVEL3));
mdelay(50);
/* Need to initial regsiter setting after getting parameter info */
/* [28:23] vref [11:8] slope - Tunning parameter */
__raw_writel(VREF_SLOPE, info->tmu_base + EXYNOS4_TMU_CONTROL);
/* TMU core enable */
tmp = __raw_readl(info->tmu_base + EXYNOS4_TMU_CONTROL);
tmp |= TMUCORE_ENABLE;
__raw_writel(tmp, info->tmu_base + EXYNOS4_TMU_CONTROL);
/* check interrupt status register */
pr_debug("tmu interrupt status: 0x%02x\n",
__raw_readl(info->tmu_base + EXYNOS4_TMU_INTSTAT));
/* LEV0 LEV1 LEV2 interrupt enable */
__raw_writel(INTEN0 | INTEN1 | INTEN2, info->tmu_base + EXYNOS4_TMU_INTEN);
return 0;
}
static int exynos4x12_tmu_init(struct s5p_tmu_info *info)
{
struct s5p_platform_tmu *data = info->dev->platform_data;
unsigned int tmp;
unsigned char temp_code_throttle, temp_code_warning, temp_code_trip;
/* To compensate temperature sensor,
* set triminfo control register & get trim informatoin
* and save to struct tmu_info
*/
tmp = __raw_readl(info->tmu_base + EXYNOS4x12_TMU_TRIMINFO_CONROL);
tmp |= TMU_RELOAD;
__raw_writel(tmp, info->tmu_base + EXYNOS4x12_TMU_TRIMINFO_CONROL);
mdelay(1);
tmp = __raw_readl(info->tmu_base + EXYNOS4_TMU_TRIMINFO);
info->te1 = tmp & TMU_TRIMINFO_MASK;
#ifdef CONFIG_ARCH_EXYNOS4
info_ex.te1 = info->te1;
#endif
/* In case of non e-fusing chip, s/w workaround */
if (tmp == 0)
info->te1 = 0x37;
pr_debug("%s: triminfo reg = 0x%08x, value = %d\n", __func__,
tmp, info->te1);
/* Convert celsius temperature value to temperature code value
* such as 1st throttle, 2nd throttle, tripping temperature.
* its ranges are between 25 cesius(0x32) to 125 cesius4(0x96)
*/
temp_code_throttle = data->ts.start_1st_throttle
+ info->te1 - TMU_DC_VALUE;
temp_code_warning = data->ts.start_2nd_throttle
+ info->te1 - TMU_DC_VALUE;
temp_code_trip = data->ts.start_tripping
+ info->te1 - TMU_DC_VALUE;
pr_debug("temp_code_throttle: %d, temp_code_warning: %d\n"
"temp_code_trip: %d, info->te1 = %d\n",
temp_code_throttle, temp_code_warning,
temp_code_trip, info->te1);
/* Set interrupt trigger level */
tmp = ((0xFF << 24) | (temp_code_trip << 16) |
(temp_code_warning << 8) | (temp_code_throttle << 0));
__raw_writel(tmp, info->tmu_base + EXYNOS4x12_TMU_TRESHOLD_TEMP_RISE);
pr_debug("THD_TEMP_RISE: 0x%08x\n",
__raw_readl(info->tmu_base + EXYNOS4x12_TMU_TRESHOLD_TEMP_RISE));
mdelay(50);
/* TMU core enable */
tmp = __raw_readl(info->tmu_base + EXYNOS4_TMU_CONTROL);
tmp |= (TMUCORE_ENABLE | (0x6 << 20)); /* MUX_ADDR : 110b */
__raw_writel(tmp, info->tmu_base + EXYNOS4_TMU_CONTROL);
/* check interrupt status register */
pr_debug("tmu interrupt status: 0x%02x\n",
__raw_readl(info->tmu_base + EXYNOS4_TMU_INTSTAT));
/* THRESHOLD_TEMP_RISE0, RISE1, RISE2 interrupt enable */
__raw_writel(INTEN_RISE0 | INTEN_RISE1 | INTEN_RISE2,
info->tmu_base + EXYNOS4_TMU_INTEN);
return 0;
}
static int tmu_initialize(struct platform_device *pdev)
{
struct s5p_tmu_info *info = platform_get_drvdata(pdev);
unsigned int tmp;
unsigned ret;
/* check if sensing is idle */
tmp = (__raw_readl(info->tmu_base + EXYNOS4_TMU_STATUS) & 0x1);
if (!tmp) {
pr_err("failed to start tmu driver\n");
return -ENOENT;
}
if (soc_is_exynos4210())
ret = exynos4210_tmu_init(info);
else
ret = exynos4x12_tmu_init(info);
return ret;
}
static irqreturn_t exynos4x12_tmu_irq_handler(int irq, void *id)
{
struct s5p_tmu_info *info = id;
unsigned int status;
disable_irq_nosync(irq);
status = __raw_readl(info->tmu_base + EXYNOS4_TMU_INTSTAT) & 0x1FF;
pr_info("EXYNOS4x12_tmu interrupt: INTSTAT = 0x%08x\n", status);
/* To handle multiple interrupt pending,
* interrupt by high temperature are serviced with priority.
*/
if (status & INTSTAT_RISE2) {
info->tmu_state = TMU_STATUS_TRIPPED;
__raw_writel(INTCLEAR_RISE2, info->tmu_base + EXYNOS4_TMU_INTCLEAR);
} else if (status & INTSTAT_RISE1) {
info->tmu_state = TMU_STATUS_WARNING;
__raw_writel(INTCLEAR_RISE1, info->tmu_base + EXYNOS4_TMU_INTCLEAR);
} else if (status & INTSTAT_RISE0) {
info->tmu_state = TMU_STATUS_THROTTLED;
__raw_writel(INTCLEAR_RISE0, info->tmu_base + EXYNOS4_TMU_INTCLEAR);
} else {
pr_err("%s: interrupt error\n", __func__);
__raw_writel(INTCLEARALL, info->tmu_base + EXYNOS4_TMU_INTCLEAR);
queue_delayed_work_on(0, tmu_monitor_wq,
&info->polling, info->sampling_rate / 2);
return -ENODEV;
}
/* read current temperature & save */
info->last_temperature = get_curr_temp(info);
queue_delayed_work_on(0, tmu_monitor_wq, &info->polling,
info->sampling_rate);
return IRQ_HANDLED;
}
static irqreturn_t exynos4210_tmu_irq_handler(int irq, void *id)
{
struct s5p_tmu_info *info = id;
unsigned int status;
disable_irq_nosync(irq);
status = __raw_readl(info->tmu_base + EXYNOS4_TMU_INTSTAT);
pr_info("EXYNOS4212_tmu interrupt: INTSTAT = 0x%08x\n", status);
/* To handle multiple interrupt pending,
* interrupt by high temperature are serviced with priority.
*/
if (status & TMU_INTSTAT2) {
info->tmu_state = TMU_STATUS_TRIPPED;
__raw_writel(INTCLEAR2, info->tmu_base + EXYNOS4_TMU_INTCLEAR);
} else if (status & TMU_INTSTAT1) {
info->tmu_state = TMU_STATUS_WARNING;
__raw_writel(INTCLEAR1, info->tmu_base + EXYNOS4_TMU_INTCLEAR);
} else if (status & TMU_INTSTAT0) {
info->tmu_state = TMU_STATUS_THROTTLED;
__raw_writel(INTCLEAR0, info->tmu_base + EXYNOS4_TMU_INTCLEAR);
} else {
pr_err("%s: interrupt error\n", __func__);
__raw_writel(INTCLEARALL, info->tmu_base + EXYNOS4_TMU_INTCLEAR);
queue_delayed_work_on(0, tmu_monitor_wq,
&info->polling, info->sampling_rate / 2);
return -ENODEV;
}
/* read current temperature & save */
info->last_temperature = get_curr_temp(info);
queue_delayed_work_on(0, tmu_monitor_wq, &info->polling,
info->sampling_rate);
return IRQ_HANDLED;
}
#ifdef CONFIG_TMU_SYSFS
static ssize_t s5p_tmu_show_curr_temp(struct device *dev,
struct device_attribute *attr, char *buf)
{
struct s5p_tmu_info *info = dev_get_drvdata(dev);
unsigned int curr_temp;
curr_temp = get_curr_temp(info);
curr_temp *= 10;
pr_info("curr temp = %d\n", curr_temp);
return sprintf(buf, "%d\n", curr_temp);
}
static DEVICE_ATTR(curr_temp, S_IRUGO, s5p_tmu_show_curr_temp, NULL);
#endif
static int __devinit s5p_tmu_probe(struct platform_device *pdev)
{
struct s5p_tmu_info *info;
struct s5p_platform_tmu *pdata;
struct resource *res;
int ret = 0;
pr_debug("%s: probe=%p\n", __func__, pdev);
info = kzalloc(sizeof(struct s5p_tmu_info), GFP_KERNEL);
if (!info) {
dev_err(&pdev->dev, "failed to alloc memory!\n");
ret = -ENOMEM;
goto err_nomem;
}
platform_set_drvdata(pdev, info);
info->dev = &pdev->dev;
info->tmu_state = TMU_STATUS_INIT;
/* set cpufreq limit level at 1st_throttle & 2nd throttle */
pdata = info->dev->platform_data;
if (pdata->cpufreq.limit_1st_throttle)
exynos_cpufreq_get_level(pdata->cpufreq.limit_1st_throttle,
&info->cpufreq_level_1st_throttle);
if (pdata->cpufreq.limit_2nd_throttle)
exynos_cpufreq_get_level(pdata->cpufreq.limit_2nd_throttle,
&info->cpufreq_level_2nd_throttle);
pr_info("@@@ %s: cpufreq_limit: 1st_throttle: %d, 2nd_throttle = %d\n",
__func__, info->cpufreq_level_1st_throttle,
info->cpufreq_level_2nd_throttle);
/* Map auto_refresh_rate of normal & tq0 mode */
info->auto_refresh_tq0 =
get_refresh_interval(FREQ_IN_PLL, AUTO_REFRESH_PERIOD_TQ0);
info->auto_refresh_normal =
get_refresh_interval(FREQ_IN_PLL, AUTO_REFRESH_PERIOD_NORMAL);
/* To poll current temp, set sampling rate to ONE second sampling */
info->sampling_rate = usecs_to_jiffies(1000 * 1000);
/* 10sec monitroing */
info->monitor_period = usecs_to_jiffies(10000 * 1000);
set_temperature_params(info);
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
if (!res) {
dev_err(&pdev->dev, "failed to get memory region resource\n");
ret = -ENODEV;
goto err_nores;
}
info->ioarea = request_mem_region(res->start,
res->end-res->start + 1, pdev->name);
if (!(info->ioarea)) {
dev_err(&pdev->dev, "failed to reserve memory region\n");
ret = -EBUSY;
goto err_nores;
}
info->tmu_base = ioremap(res->start, (res->end - res->start) + 1);
if (!(info->tmu_base)) {
dev_err(&pdev->dev, "failed ioremap()\n");
ret = -ENOMEM;
goto err_nomap;
}
#ifdef CONFIG_ARCH_EXYNOS4
info_ex.tmu_base = info->tmu_base;
#endif
tmu_monitor_wq = create_freezable_workqueue(dev_name(&pdev->dev));
if (!tmu_monitor_wq) {
pr_info("Creation of tmu_monitor_wq failed\n");
ret = -ENOMEM;
goto err_wq;
}
#ifdef CONFIG_TMU_DEBUG
INIT_DELAYED_WORK_DEFERRABLE(&info->monitor, exynos4_poll_cur_temp);
queue_delayed_work_on(0, tmu_monitor_wq, &info->monitor,
info->monitor_period);
#endif
INIT_DELAYED_WORK_DEFERRABLE(&info->polling, exynos4_handler_tmu_state);
info->irq = platform_get_irq(pdev, 0);
if (info->irq < 0) {
dev_err(&pdev->dev, "no irq for thermal %d\n", info->irq);
ret = -EINVAL;
goto err_irq;
}
if (soc_is_exynos4210())
ret = request_irq(info->irq, exynos4210_tmu_irq_handler,
IRQF_DISABLED, "s5p-tmu interrupt", info);
else
ret = request_irq(info->irq, exynos4x12_tmu_irq_handler,
IRQF_DISABLED, "s5p-tmu interrupt", info);
if (ret) {
dev_err(&pdev->dev, "request_irq is failed. %d\n", ret);
goto err_irq;
}
ret = device_create_file(&pdev->dev, &dev_attr_temperature);
if (ret != 0) {
pr_err("Failed to create temperatue file: %d\n", ret);
goto err_sysfs_file1;
}
ret = device_create_file(&pdev->dev, &dev_attr_tmu_state);
if (ret != 0) {
pr_err("Failed to create tmu_state file: %d\n", ret);
goto err_sysfs_file2;
}
ret = device_create_file(&pdev->dev, &dev_attr_lot_id);
if (ret != 0) {
pr_err("Failed to create lot id file: %d\n", ret);
goto err_sysfs_file3;
}
ret = tmu_initialize(pdev);
if (ret)
goto err_init;
#ifdef CONFIG_TMU_SYSFS
ret = device_create_file(&pdev->dev, &dev_attr_curr_temp);
if (ret < 0) {
dev_err(&pdev->dev, "Failed to create sysfs group\n");
goto err_init;
}
#endif
#ifdef CONFIG_TMU_DEBUG
ret = device_create_file(&pdev->dev, &dev_attr_print_state);
if (ret) {
dev_err(&pdev->dev, "Failed to create tmu sysfs group\n\n");
return ret;
}
#endif
/* initialize tmu_state */
queue_delayed_work_on(0, tmu_monitor_wq, &info->polling,
info->sampling_rate);
return ret;
err_init:
device_remove_file(&pdev->dev, &dev_attr_lot_id);
err_sysfs_file3:
device_remove_file(&pdev->dev, &dev_attr_tmu_state);
err_sysfs_file2:
device_remove_file(&pdev->dev, &dev_attr_temperature);
err_sysfs_file1:
if (info->irq >= 0)
free_irq(info->irq, info);
err_irq:
destroy_workqueue(tmu_monitor_wq);
err_wq:
iounmap(info->tmu_base);
err_nomap:
release_resource(info->ioarea);
kfree(info->ioarea);
err_nores:
kfree(info);
info = NULL;
err_nomem:
dev_err(&pdev->dev, "initialization failed.\n");
return ret;
}
static int __devinit s5p_tmu_remove(struct platform_device *pdev)
{
struct s5p_tmu_info *info = platform_get_drvdata(pdev);
cancel_delayed_work(&info->polling);
destroy_workqueue(tmu_monitor_wq);
device_remove_file(&pdev->dev, &dev_attr_temperature);
device_remove_file(&pdev->dev, &dev_attr_tmu_state);
if (info->irq >= 0)
free_irq(info->irq, info);
iounmap(info->tmu_base);
release_resource(info->ioarea);
kfree(info->ioarea);
kfree(info);
info = NULL;
pr_info("%s is removed\n", dev_name(&pdev->dev));
return 0;
}
#ifdef CONFIG_PM
static int s5p_tmu_suspend(struct platform_device *pdev, pm_message_t state)
{
struct s5p_tmu_info *info = platform_get_drvdata(pdev);
/* save register value */
info->reg_save[0] = __raw_readl(info->tmu_base + EXYNOS4_TMU_CONTROL);
info->reg_save[1] = __raw_readl(info->tmu_base + EXYNOS4_TMU_SAMPLING_INTERNAL);
info->reg_save[2] = __raw_readl(info->tmu_base + EXYNOS4_TMU_COUNTER_VALUE0);
info->reg_save[3] = __raw_readl(info->tmu_base + EXYNOS4_TMU_COUNTER_VALUE1);
info->reg_save[4] = __raw_readl(info->tmu_base + EXYNOS4_TMU_INTEN);
if (soc_is_exynos4210()) {
info->reg_save[5] =
__raw_readl(info->tmu_base + EXYNOS4210_TMU_THRESHOLD_TEMP);
info->reg_save[6] =
__raw_readl(info->tmu_base + EXYNOS4210_TMU_TRIG_LEVEL0);
info->reg_save[7] =
__raw_readl(info->tmu_base + EXYNOS4210_TMU_TRIG_LEVEL1);
info->reg_save[8] =
__raw_readl(info->tmu_base + EXYNOS4210_TMU_TRIG_LEVEL2);
info->reg_save[9] =
__raw_readl(info->tmu_base + EXYNOS4210_TMU_TRIG_LEVEL3);
} else {
info->reg_save[5] =
__raw_readl(info->tmu_base + EXYNOS4x12_TMU_TRESHOLD_TEMP_RISE);
}
disable_irq(info->irq);
return 0;
}
static int s5p_tmu_resume(struct platform_device *pdev)
{
struct s5p_tmu_info *info = platform_get_drvdata(pdev);
/* restore tmu register value */
__raw_writel(info->reg_save[0], info->tmu_base + EXYNOS4_TMU_CONTROL);
__raw_writel(info->reg_save[1],
info->tmu_base + EXYNOS4_TMU_SAMPLING_INTERNAL);
__raw_writel(info->reg_save[2],
info->tmu_base + EXYNOS4_TMU_COUNTER_VALUE0);
__raw_writel(info->reg_save[3],
info->tmu_base + EXYNOS4_TMU_COUNTER_VALUE1);
__raw_writel(info->reg_save[4],
info->tmu_base + EXYNOS4_TMU_INTEN);
if (soc_is_exynos4210()) {
__raw_writel(info->reg_save[5],
info->tmu_base + EXYNOS4210_TMU_THRESHOLD_TEMP);
__raw_writel(info->reg_save[6],
info->tmu_base + EXYNOS4210_TMU_TRIG_LEVEL0);
__raw_writel(info->reg_save[7],
info->tmu_base + EXYNOS4210_TMU_TRIG_LEVEL1);
__raw_writel(info->reg_save[8],
info->tmu_base + EXYNOS4210_TMU_TRIG_LEVEL2);
__raw_writel(info->reg_save[9],
info->tmu_base + EXYNOS4210_TMU_TRIG_LEVEL3);
} else
__raw_writel(info->reg_save[5],
info->tmu_base + EXYNOS4x12_TMU_TRESHOLD_TEMP_RISE);
enable_irq(info->irq);
return 0;
}
#else
#define s5p_tmu_suspend NULL
#define s5p_tmu_resume NULL
#endif
static struct platform_driver s5p_tmu_driver = {
.probe = s5p_tmu_probe,
.remove = s5p_tmu_remove,
.suspend = s5p_tmu_suspend,
.resume = s5p_tmu_resume,
.driver = {
.name = "s5p-tmu",
.owner = THIS_MODULE,
},
};
static int __init s5p_tmu_driver_init(void)
{
return platform_driver_register(&s5p_tmu_driver);
}
static void __exit s5p_tmu_driver_exit(void)
{
platform_driver_unregister(&s5p_tmu_driver);
}
late_initcall(s5p_tmu_driver_init);
module_exit(s5p_tmu_driver_exit);
|