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
|
#include <linux/gfp.h>
#include <linux/types.h>
#include <linux/string.h> // for test cases
#include <asm/cacheflush.h>
#include <linux/slab.h>
#include <linux/dma-mapping.h>
#include <mach/memory.h>
#include "ddp_wdma.h"
#include <linux/uaccess.h>
#include <mach/mt_irq.h>
#include <mach/mt_clkmgr.h>
#include <mach/mt_typedefs.h>
#include <mach/mt_spm_idle.h>
#include "disp_drv_platform.h"
#include "cmdq_def.h"
#include "ddp_drv.h"
#include "ddp_od.h"
#include "ddp_reg.h"
#include "ddp_debug.h"
#include "ddp_dither.h"
#include "ddp_misc.h"
#include "ddp_log.h"
#include "lcm_drv.h"
#if defined(MTK_FB_OD_SUPPORT)
#define OD_ALLOW_DEFAULT_TABLE
#define OD_LINEAR_TABLE_IF_NONE
#define OD_USE_CMDQ 0
#define OD_TBL_S_DIM 17
#define OD_TBL_M_DIM 33
/* compression ratio */
#define OD_MANUAL_CPR 58 // 38
#define OD_HSYNC_WIDTH 100
// Additional space after the given memory to avoid unexpected memory corruption
// In the experiments, OD hardware overflew 240 bytes
#define OD_ADDITIONAL_BUFFER 256
#define OD_GUARD_PATTERN 0x16881688
#define OD_GUARD_PATTERN_SIZE 4
#define OD_TBL_S_SIZE (OD_TBL_S_DIM * OD_TBL_S_DIM)
#define OD_TBL_M_SIZE (OD_TBL_M_DIM * OD_TBL_M_DIM)
#define FB_TBL_SIZE (FB_TBL_DIM * FB_TBL_DIM)
#define OD_DBG_ALWAYS 0
#define OD_DBG_VERBOSE 1
#define OD_DBG_DEBUG 2
#define OD_REG_SET_FIELD(cmdq, reg, val, field) DISP_REG_SET_FIELD(cmdq, field, reg, val)
#define ABS(a) ((a > 0) ? a : -a)
/* debug macro */
#define ODDBG(level, fmt, arg...) \
do { \
if (od_debug_level >= (level)) \
printk(KERN_DEBUG "[OD] " fmt "\n", ##arg); \
} while (0)
// ioctl
typedef enum
{
OD_CTL_READ_REG,
OD_CTL_WRITE_REG,
OD_CTL_ENABLE_DEMO_MODE,
OD_CTL_RUN_TEST,
OD_CTL_WRITE_TABLE,
OD_CTL_CMD_NUM
} DISP_OD_CMD_TYPE;
enum
{
OD_RED,
OD_GREEN,
OD_BLUE,
OD_ALL
};
enum
{
OD_TABLE_17,
OD_TABLE_33
};
static void od_dbg_dump(void);
typedef struct REG_INIT_TABLE_STRUCT
{
unsigned long reg_addr;
unsigned int reg_value;
unsigned int reg_mask;
} REG_INIT_TABLE_STRUCT;
// dummy 17x17
static u8 OD_Table_dummy_17x17[OD_TBL_S_SIZE] =
{
0, 16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 176, 192, 208, 224, 240, 255,
0, 16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 176, 192, 208, 224, 240, 255,
0, 16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 176, 192, 208, 224, 240, 255,
0, 16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 176, 192, 208, 224, 240, 255,
0, 16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 176, 192, 208, 224, 240, 255,
0, 16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 176, 192, 208, 224, 240, 255,
0, 16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 176, 192, 208, 224, 240, 255,
0, 16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 176, 192, 208, 224, 240, 255,
0, 16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 176, 192, 208, 224, 240, 255,
0, 16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 176, 192, 208, 224, 240, 255,
0, 16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 176, 192, 208, 224, 240, 255,
0, 16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 176, 192, 208, 224, 240, 255,
0, 16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 176, 192, 208, 224, 240, 255,
0, 16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 176, 192, 208, 224, 240, 255,
0, 16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 176, 192, 208, 224, 240, 255,
0, 16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 176, 192, 208, 224, 240, 255,
0, 16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 176, 192, 208, 224, 240, 255,
};
#if 0
// 60 hz
static u8 OD_Table_17x17[OD_TBL_S_SIZE] =
{
0,18,36,56,76,95,114,132,148,163,177,192,208,223,236,248,255,
0,16,34,53,73,92,112,129,146,161,176,191,207,220,235,248,255,
0,15,32,50,69,91,109,127,143,160,174,189,205,221,234,247,255,
0,14,29,48,67,87,106,123,140,156,172,187,203,220,234,247,255,
0,13,27,45,64,84,103,120,138,155,170,185,202,219,233,246,255,
0,10,25,43,61,80,99,117,135,152,169,184,200,217,232,246,255,
0,8,24,40,58,77,96,115,133,150,167,183,199,216,231,245,255,
0,6,23,39,56,74,93,112,130,148,165,182,198,214,230,245,255,
0,5,22,38,54,71,89,108,128,146,164,180,197,213,229,244,255,
0,4,20,35,51,68,86,105,125,144,162,179,196,212,228,243,255,
0,3,18,33,48,64,83,102,122,141,160,177,194,211,227,243,255,
0,1,16,31,46,63,80,99,119,138,157,176,193,210,227,242,255,
0,0,13,28,43,59,77,96,116,136,155,173,192,209,226,242,255,
0,0,11,26,41,56,74,93,113,133,152,171,189,208,225,241,255,
0,0,9,24,39,54,71,90,110,130,150,169,187,205,224,240,255,
0,0,7,21,36,50,68,86,106,126,147,166,184,202,222,240,255,
0,0,4,18,32,47,62,82,103,123,143,163,181,199,219,238,255,
};
#else
// 120 hz
static u8 OD_Table_17x17[OD_TBL_S_SIZE] =
{
0,21,44,71,99,122,141,160,175,190,203,216,228,239,251,255,255,
0,16,38,65,90,115,136,153,171,186,200,213,226,237,249,255,255,
0,10,32,56,83,107,130,148,166,182,196,210,223,236,248,255,255,
0,4,25,48,73,98,120,142,159,176,191,206,219,234,246,255,255,
0,0,19,41,64,88,113,135,154,171,188,203,217,231,245,255,255,
0,0,14,35,56,80,104,126,148,166,184,200,214,229,243,255,255,
0,0,9,28,49,71,96,119,141,161,179,196,212,227,241,255,255,
0,0,4,23,42,64,87,112,135,155,175,192,210,226,240,254,255,
0,0,0,18,37,55,78,103,128,150,171,190,208,226,239,253,255,
0,0,0,12,31,49,71,95,119,144,166,186,205,224,238,252,255,
0,0,0,8,24,42,62,86,111,136,160,181,202,222,237,251,255,
0,0,0,3,19,36,54,77,102,127,152,176,197,216,235,250,255,
0,0,0,0,13,28,47,68,94,120,145,169,192,213,232,248,255,
0,0,0,0,8,22,40,59,83,110,136,161,183,208,228,245,255,
0,0,0,0,2,16,30,50,72,99,127,154,175,196,224,242,255,
0,0,0,0,0,8,22,39,60,84,112,142,165,192,218,240,255,
0,0,0,0,0,1,15,28,48,70,99,130,158,188,213,235,255,
};
#endif
#if 0
// dummy 33x33
static u8 OD_Table_33x33[OD_TBL_M_SIZE] =
{
0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120, 128, 136, 144, 152, 160, 168, 176, 184, 192, 200, 208, 216, 224, 232, 240, 248, 255,
0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120, 128, 136, 144, 152, 160, 168, 176, 184, 192, 200, 208, 216, 224, 232, 240, 248, 255,
0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120, 128, 136, 144, 152, 160, 168, 176, 184, 192, 200, 208, 216, 224, 232, 240, 248, 255,
0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120, 128, 136, 144, 152, 160, 168, 176, 184, 192, 200, 208, 216, 224, 232, 240, 248, 255,
0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120, 128, 136, 144, 152, 160, 168, 176, 184, 192, 200, 208, 216, 224, 232, 240, 248, 255,
0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120, 128, 136, 144, 152, 160, 168, 176, 184, 192, 200, 208, 216, 224, 232, 240, 248, 255,
0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120, 128, 136, 144, 152, 160, 168, 176, 184, 192, 200, 208, 216, 224, 232, 240, 248, 255,
0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120, 128, 136, 144, 152, 160, 168, 176, 184, 192, 200, 208, 216, 224, 232, 240, 248, 255,
0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120, 128, 136, 144, 152, 160, 168, 176, 184, 192, 200, 208, 216, 224, 232, 240, 248, 255,
0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120, 128, 136, 144, 152, 160, 168, 176, 184, 192, 200, 208, 216, 224, 232, 240, 248, 255,
0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120, 128, 136, 144, 152, 160, 168, 176, 184, 192, 200, 208, 216, 224, 232, 240, 248, 255,
0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120, 128, 136, 144, 152, 160, 168, 176, 184, 192, 200, 208, 216, 224, 232, 240, 248, 255,
0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120, 128, 136, 144, 152, 160, 168, 176, 184, 192, 200, 208, 216, 224, 232, 240, 248, 255,
0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120, 128, 136, 144, 152, 160, 168, 176, 184, 192, 200, 208, 216, 224, 232, 240, 248, 255,
0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120, 128, 136, 144, 152, 160, 168, 176, 184, 192, 200, 208, 216, 224, 232, 240, 248, 255,
0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120, 128, 136, 144, 152, 160, 168, 176, 184, 192, 200, 208, 216, 224, 232, 240, 248, 255,
0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120, 128, 136, 144, 152, 160, 168, 176, 184, 192, 200, 208, 216, 224, 232, 240, 248, 255,
0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120, 128, 136, 144, 152, 160, 168, 176, 184, 192, 200, 208, 216, 224, 232, 240, 248, 255,
0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120, 128, 136, 144, 152, 160, 168, 176, 184, 192, 200, 208, 216, 224, 232, 240, 248, 255,
0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120, 128, 136, 144, 152, 160, 168, 176, 184, 192, 200, 208, 216, 224, 232, 240, 248, 255,
0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120, 128, 136, 144, 152, 160, 168, 176, 184, 192, 200, 208, 216, 224, 232, 240, 248, 255,
0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120, 128, 136, 144, 152, 160, 168, 176, 184, 192, 200, 208, 216, 224, 232, 240, 248, 255,
0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120, 128, 136, 144, 152, 160, 168, 176, 184, 192, 200, 208, 216, 224, 232, 240, 248, 255,
0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120, 128, 136, 144, 152, 160, 168, 176, 184, 192, 200, 208, 216, 224, 232, 240, 248, 255,
0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120, 128, 136, 144, 152, 160, 168, 176, 184, 192, 200, 208, 216, 224, 232, 240, 248, 255,
0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120, 128, 136, 144, 152, 160, 168, 176, 184, 192, 200, 208, 216, 224, 232, 240, 248, 255,
0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120, 128, 136, 144, 152, 160, 168, 176, 184, 192, 200, 208, 216, 224, 232, 240, 248, 255,
0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120, 128, 136, 144, 152, 160, 168, 176, 184, 192, 200, 208, 216, 224, 232, 240, 248, 255,
0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120, 128, 136, 144, 152, 160, 168, 176, 184, 192, 200, 208, 216, 224, 232, 240, 248, 255,
0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120, 128, 136, 144, 152, 160, 168, 176, 184, 192, 200, 208, 216, 224, 232, 240, 248, 255,
0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120, 128, 136, 144, 152, 160, 168, 176, 184, 192, 200, 208, 216, 224, 232, 240, 248, 255,
0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120, 128, 136, 144, 152, 160, 168, 176, 184, 192, 200, 208, 216, 224, 232, 240, 248, 255,
0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 80, 88, 96, 104, 112, 120, 128, 136, 144, 152, 160, 168, 176, 184, 192, 200, 208, 216, 224, 232, 240, 248, 255
};
#endif
#if 1
// 60 hz
static u8 OD_Table_33x33[OD_TBL_M_SIZE] =
{
0,9,18,26,36,46,56,66,76,86,95,105,114,123,132,140,148,155,163,170,177,185,192,200,208,216,223,230,236,242,248,254,255,
0,8,17,26,35,45,55,65,75,84,94,104,113,122,131,139,147,155,162,169,177,184,192,199,207,215,222,229,236,242,248,254,255,
0,8,16,25,34,44,53,63,73,83,92,103,112,121,129,137,146,154,161,169,176,183,191,198,207,215,220,229,235,241,248,254,255,
0,7,16,24,33,42,52,61,71,82,91,101,110,119,128,136,144,153,161,168,175,182,190,198,206,214,220,229,235,241,247,254,255,
0,7,15,24,32,41,50,59,69,80,91,100,109,118,127,135,143,152,160,167,174,182,189,197,205,213,221,228,234,241,247,253,255,
0,7,15,23,31,40,49,58,68,78,89,98,107,116,125,134,142,150,158,166,173,181,188,196,204,212,221,228,234,240,247,253,255,
0,6,14,22,29,39,48,57,67,77,87,96,106,115,123,132,140,149,156,165,172,180,187,195,203,212,220,227,234,240,247,253,255,
0,6,13,21,28,37,47,56,65,75,85,95,104,113,122,131,139,147,155,164,171,179,186,194,202,211,219,227,233,240,246,253,255,
0,5,13,20,27,36,45,55,64,74,84,94,103,111,120,129,138,146,155,163,170,178,185,193,202,210,219,226,233,239,246,253,255,
0,4,11,19,26,35,44,53,63,72,82,92,101,110,119,127,136,145,154,162,169,177,185,193,201,209,218,226,232,239,246,252,255,
0,3,10,18,25,33,43,52,61,71,80,90,99,108,117,126,135,144,152,161,169,176,184,192,200,209,217,225,232,239,246,252,255,
0,1,9,17,24,32,42,51,60,69,79,88,98,107,116,125,134,143,151,160,168,176,184,191,200,208,216,224,231,238,245,252,255,
0,0,8,16,24,32,40,49,58,68,77,86,96,105,115,124,133,142,150,159,167,175,183,191,199,207,216,224,231,238,245,252,255,
0,0,7,15,23,32,40,49,57,67,76,85,94,104,113,123,132,140,149,157,166,174,182,190,199,207,215,222,230,238,245,252,255,
0,0,6,15,23,31,39,48,56,66,74,83,93,102,112,121,130,139,148,156,165,174,182,190,198,206,214,222,230,237,245,252,255,
0,0,6,14,22,31,39,47,55,64,73,82,91,100,110,120,129,138,147,155,164,173,181,189,198,206,214,221,229,237,244,252,255,
0,0,5,13,22,30,38,46,54,62,71,80,89,99,108,118,128,137,146,155,164,172,180,189,197,205,213,221,229,236,244,251,255,
0,0,4,13,21,29,37,45,53,61,69,79,88,97,107,117,126,136,145,154,163,171,180,188,196,204,213,221,229,236,244,251,255,
0,0,4,12,20,27,35,43,51,59,68,77,86,96,105,115,125,135,144,153,162,170,179,187,196,204,212,220,228,236,243,251,255,
0,0,3,11,19,26,34,42,50,58,66,75,85,94,104,114,123,133,143,152,161,169,178,186,195,203,211,220,228,235,243,250,255,
0,0,3,10,18,25,33,41,48,56,64,73,83,92,102,112,122,132,141,151,160,169,177,186,194,202,211,219,227,235,243,250,255,
0,0,2,9,17,24,32,39,47,55,64,72,81,91,101,111,120,130,140,149,159,168,177,185,194,202,210,219,227,235,242,250,255,
0,0,1,8,16,23,31,38,46,53,63,70,80,89,99,109,119,129,138,148,157,167,176,185,193,202,210,218,227,234,242,250,255,
0,0,0,7,15,22,30,37,45,52,61,69,78,88,98,108,118,127,137,147,156,165,175,184,193,201,210,218,226,234,242,250,255,
0,0,0,6,13,21,28,36,43,51,59,67,77,86,96,106,116,126,136,145,155,164,173,183,192,201,209,218,226,234,242,250,255,
0,0,0,5,12,20,27,35,42,50,57,67,75,85,95,105,115,125,134,144,154,163,172,181,191,200,209,217,225,233,241,249,255,
0,0,0,4,11,19,26,34,41,49,56,66,74,83,93,103,113,123,133,143,152,162,171,180,189,199,208,217,225,233,241,249,255,
0,0,0,3,10,18,25,33,40,48,55,64,72,82,92,101,111,121,131,141,151,161,170,179,188,197,207,216,224,232,240,248,255,
0,0,0,2,9,17,24,32,39,47,54,61,71,80,90,100,110,120,130,140,150,160,169,178,187,196,205,215,224,232,240,248,255,
0,0,0,0,8,15,23,30,37,45,52,60,70,78,88,98,108,118,128,138,148,158,167,176,185,195,204,213,223,232,240,248,255,
0,0,0,0,7,14,21,29,36,43,50,58,68,76,86,96,106,116,126,137,147,156,166,175,184,193,202,212,222,231,240,248,255,
0,0,0,0,5,12,20,27,34,41,49,56,65,74,84,94,104,115,125,135,145,154,164,173,182,191,201,211,220,230,239,248,255,
0,0,0,0,4,11,18,25,32,40,47,54,62,71,82,92,103,113,123,133,143,153,163,172,181,189,199,209,219,229,238,247,255,
};
#else
// 120 hz
static u8 OD_Table_33x33[OD_TBL_M_SIZE] =
{
0,11,21,31,44,57,71,86,99,111,122,132,141,151,160,168,175,183,190,197,203,209,216,222,228,234,239,245,251,255,255,255,255,
0,8,18,28,41,54,68,81,95,107,118,128,139,148,156,164,173,181,188,194,202,208,214,221,227,233,238,244,250,255,255,255,255,
0,5,16,25,38,50,65,77,90,103,115,125,136,145,153,162,171,178,186,192,200,206,213,219,226,232,237,243,249,255,255,255,255,
0,2,13,24,35,47,61,73,86,100,111,122,133,142,151,159,168,176,184,190,198,205,211,218,224,231,237,243,249,255,255,255,255,
0,0,10,21,32,44,56,69,83,96,107,119,130,139,148,157,166,174,182,190,196,203,210,217,223,229,236,242,248,254,255,255,255,
0,0,7,18,29,40,52,65,78,91,103,115,125,135,145,154,162,171,179,187,193,201,208,215,221,228,235,241,247,254,255,255,255,
0,0,4,15,25,36,48,60,73,86,98,110,120,131,142,151,159,168,176,185,191,199,206,213,219,227,234,240,246,253,255,255,255,
0,0,1,12,22,33,44,56,68,81,93,105,116,128,138,148,156,166,174,182,189,197,205,212,218,226,232,239,246,252,255,255,255,
0,0,0,9,19,29,41,52,64,76,88,101,113,125,135,144,154,163,171,179,188,195,203,210,217,224,231,238,245,252,255,255,255,
0,0,0,7,16,26,38,48,60,72,84,96,108,120,130,141,151,159,169,177,186,193,201,209,216,223,230,237,244,251,255,255,255,
0,0,0,4,14,24,35,45,56,67,80,92,104,116,126,138,148,156,166,175,184,191,200,207,214,221,229,236,243,250,255,255,255,
0,0,0,2,12,21,32,41,52,63,76,88,100,112,123,134,144,153,164,173,182,189,198,206,213,220,228,235,242,249,255,255,255,
0,0,0,0,9,18,28,38,49,59,71,84,96,108,119,130,141,151,161,170,179,188,196,204,212,219,227,234,241,249,255,255,255,
0,0,0,0,7,16,25,36,45,56,68,79,92,104,116,127,138,148,157,168,177,186,194,203,211,219,226,234,241,248,255,255,255,
0,0,0,0,4,13,23,33,42,52,64,75,87,100,112,124,135,145,155,166,175,184,192,202,210,218,226,233,240,247,254,255,255,
0,0,0,0,1,11,20,30,39,49,60,70,83,95,108,120,131,142,152,163,173,182,190,200,209,218,226,233,240,247,254,255,255,
0,0,0,0,0,8,18,27,37,46,55,66,78,91,103,116,128,139,150,161,171,180,190,199,208,217,226,232,239,246,253,255,255,
0,0,0,0,0,6,15,24,34,43,52,63,75,86,99,111,124,136,147,158,168,178,188,197,207,216,225,232,239,246,253,255,255,
0,0,0,0,0,4,12,21,31,39,49,60,71,82,95,107,119,132,144,156,166,176,186,196,205,215,224,231,238,245,252,255,255,
0,0,0,0,0,2,10,18,28,36,46,56,67,78,90,103,115,128,140,152,163,173,184,194,204,214,224,231,238,245,252,255,255,
0,0,0,0,0,0,8,16,24,33,42,52,62,74,86,98,111,123,136,148,160,171,181,192,202,212,222,230,237,244,251,255,255,
0,0,0,0,0,0,5,13,21,31,40,48,58,70,82,94,106,119,131,144,156,168,179,189,200,210,219,229,236,243,251,255,255,
0,0,0,0,0,0,3,11,19,28,36,45,54,66,77,89,102,115,127,140,152,165,176,187,197,208,216,227,235,242,250,255,255,
0,0,0,0,0,0,1,8,16,25,33,41,51,61,72,85,98,111,124,136,149,161,172,184,195,205,214,225,233,241,249,255,255,
0,0,0,0,0,0,0,6,13,21,28,37,47,56,68,80,94,107,120,132,145,157,169,180,192,203,213,224,232,240,248,255,255,
0,0,0,0,0,0,0,3,11,18,25,35,44,52,64,76,88,101,115,127,141,153,165,176,187,200,211,222,230,238,246,255,255,
0,0,0,0,0,0,0,1,8,15,22,32,40,48,59,71,83,96,110,122,136,149,161,172,183,193,208,220,228,236,245,253,255,
0,0,0,0,0,0,0,0,5,12,19,28,35,44,55,65,77,90,104,118,132,145,157,169,179,189,202,216,226,235,243,252,255,
0,0,0,0,0,0,0,0,2,9,16,23,30,40,50,59,72,85,99,113,127,140,154,165,175,185,196,210,224,233,242,250,255,
0,0,0,0,0,0,0,0,0,5,12,19,26,36,45,54,66,78,91,105,120,134,148,159,169,183,194,208,221,232,241,250,255,
0,0,0,0,0,0,0,0,0,1,8,15,22,31,39,48,60,71,84,98,112,127,142,153,165,180,192,205,218,230,240,249,255,
0,0,0,0,0,0,0,0,0,0,4,11,18,26,34,42,53,64,77,91,105,120,135,148,161,177,190,203,216,227,238,248,255,
0,0,0,0,0,0,0,0,0,0,1,8,15,21,28,37,48,58,70,84,99,114,130,144,158,173,188,201,213,225,235,246,255,
};
#endif
/// init table
static REG_INIT_TABLE_STRUCT OD_INIT_TABLE[]=
{
{0, 0x82040201, 0xffffffff},
// {OD_REG01, 0x00071401, 0x000000ff},
{0, 0x00070E01, 0x000000ff},
{0, 0x00000400, 0xffffffff},
{0, 0x00E0FF04, 0xffffffff},
{0, 0x00010026, 0xffffffff}, //set cr rate ==0x42
//{OD_REG32, 0x04055600, 0xffffffff},
{0, 0x00021000, 0x003fffff},
{0, 0x0674A0E6, 0xffffffff},
{0, 0x000622E0, 0xffffffff}, //0x00051170
{0, 0xE0849C40, 0xffffffff}, //DET8B_POS=4
{0, 0x05CFDE08, 0xffffffff}, //0x04E6D998
{0, 0x011F1013, 0xffffffff}, //line size=0xf8 | (0x37 << 13)
{0, 0x00200000, 0x00ff0000}, //dram_crc_cnt=0x20
{0, 0x20000610, 0xffffffff}, //enable GM
{0, 0x001E02D0, 0xffffffff},
{0, 0x00327C7C, 0xffffffff},
{0, 0x00180000, 0xffffffff}, //disable film mode detection
{0, 0x006400C8, 0xffffffff},
{0, 0x00210032, 0xfffffffc},//pcid_alig_sel=1
{0, 0x4E00023F, 0xffffffff},
{0, 0xC306B16A, 0xffffffff}, //pre_bw=3
{0, 0x10240408, 0xffffffff}, //???00210408???
{0, 0xC5C00000, 0xC7C00000},
{0, 0x21A1B800, 0xffffffff},//dump burst
{0, 0x60000044, 0xe00000ff},//DUMP_WFF_FULL_CONF=3
{0, 0x2FFF3E00, 0xffffffff},
{0, 0x80039000, 0xffffffff}, //new 3x3
{0, 0x352835CA, 0xffffffff}, //skip color thr
{0, 0x00014438, 0xffffffff}, //pattern gen
{0, 0x27800898, 0xffffffff},
{0, 0x00438465, 0xffffffff},
{0, 0x01180001, 0xffffffff},
{0, 0x0002D000, 0xffffffff},
{0, 0x3FFFFFFF, 0xffffffff},
{0, 0x00000000, 0xffffffff},
{0, 0x000200C0, 0xffffffff},
//{OD_REG78, 0x04000000, 0x0C000000}, //force_1st_frame_end
} ;
static void od_init_table_init(void)
{
OD_INIT_TABLE[0 ].reg_addr = OD_REG00;
OD_INIT_TABLE[1 ].reg_addr = OD_REG01;
OD_INIT_TABLE[2 ].reg_addr = OD_REG02;
OD_INIT_TABLE[3 ].reg_addr = OD_REG03;
OD_INIT_TABLE[4 ].reg_addr = OD_REG30;
OD_INIT_TABLE[5 ].reg_addr = OD_REG33;
OD_INIT_TABLE[6 ].reg_addr = OD_REG34;
OD_INIT_TABLE[7 ].reg_addr = OD_REG35;
OD_INIT_TABLE[8 ].reg_addr = OD_REG36;
OD_INIT_TABLE[9 ].reg_addr = OD_REG37;
OD_INIT_TABLE[10 ].reg_addr = OD_REG38;
OD_INIT_TABLE[11 ].reg_addr = OD_REG39;
OD_INIT_TABLE[12 ].reg_addr = OD_REG40;
OD_INIT_TABLE[13 ].reg_addr = OD_REG41;
OD_INIT_TABLE[14 ].reg_addr = OD_REG42;
OD_INIT_TABLE[15 ].reg_addr = OD_REG43;
OD_INIT_TABLE[16 ].reg_addr = OD_REG44;
OD_INIT_TABLE[17 ].reg_addr = OD_REG45;
OD_INIT_TABLE[18 ].reg_addr = OD_REG46;
OD_INIT_TABLE[19 ].reg_addr = OD_REG47;
OD_INIT_TABLE[20 ].reg_addr = OD_REG48;
OD_INIT_TABLE[21 ].reg_addr = OD_REG49;
OD_INIT_TABLE[22 ].reg_addr = OD_REG51;
OD_INIT_TABLE[23 ].reg_addr = OD_REG52;
OD_INIT_TABLE[24 ].reg_addr = OD_REG53;
OD_INIT_TABLE[25 ].reg_addr = OD_REG54;
OD_INIT_TABLE[26 ].reg_addr = OD_REG57;
OD_INIT_TABLE[27 ].reg_addr = OD_REG62;
OD_INIT_TABLE[28 ].reg_addr = OD_REG63;
OD_INIT_TABLE[29 ].reg_addr = OD_REG64;
OD_INIT_TABLE[30 ].reg_addr = OD_REG65;
OD_INIT_TABLE[31 ].reg_addr = OD_REG66;
OD_INIT_TABLE[32 ].reg_addr = OD_REG67;
OD_INIT_TABLE[33 ].reg_addr = OD_REG68;
OD_INIT_TABLE[34 ].reg_addr = OD_REG69;
}
static u32 g_od_buf_size = 0;
static unsigned long g_od_buf_pa = NULL;
static void *g_od_buf_va = NULL;
static int od_debug_level = 0;
static int g_od_is_demo_mode = 0;
static ddp_module_notify g_od_ddp_notify = NULL;
static void _od_reg_init(void *cmdq, const REG_INIT_TABLE_STRUCT *init_table, int tbl_size)
{
int index = 0;
for (index = 0; index < tbl_size; index++, init_table++) {
DISP_REG_SET(cmdq, init_table->reg_addr, (init_table->reg_value & init_table->reg_mask));
}
}
static void od_refresh_screen(void)
{
if (g_od_ddp_notify != NULL)
g_od_ddp_notify(DISP_MODULE_OD, DISP_PATH_EVENT_TRIGGER);
}
static void _od_set_dram_buffer_addr(void *cmdq, int manual_comp, int image_width, int image_height)
{
u32 u4ODDramSize;
u32 u4Linesize;
u32 od_buf_pa_32;
static int is_inited = 0;
// set line size
u4Linesize = ((image_width * manual_comp) >> 9) + 2; // linesize = ( h active/4* manual CR )/128 ==>linesize = (h active * manual CR)/512
u4ODDramSize = u4Linesize * (image_height / 2) * 16;
if (!is_inited)
{
void *va;
dma_addr_t dma_addr;
va = dma_alloc_coherent(NULL, u4ODDramSize + OD_ADDITIONAL_BUFFER + OD_GUARD_PATTERN_SIZE, &dma_addr, GFP_KERNEL);
if (va == NULL) {
ODDBG(OD_DBG_ALWAYS, "OD: MEM NOT ENOUGH %d", u4Linesize);
BUG();
}
ODDBG(OD_DBG_ALWAYS, "OD: pa %08lx size %d order %d va %lx\n",
(unsigned long)(dma_addr), u4ODDramSize, get_order(u4ODDramSize), (unsigned long)va);
is_inited = 1;
g_od_buf_size = u4ODDramSize;
g_od_buf_pa = (unsigned long)dma_addr;
g_od_buf_va = va;
/* set guard pattern */
*((u32*)((unsigned long)va + u4ODDramSize)) = OD_GUARD_PATTERN;
*((u32*)((unsigned long)va + u4ODDramSize + OD_ADDITIONAL_BUFFER)) = OD_GUARD_PATTERN;
}
od_buf_pa_32 = (u32)g_od_buf_pa;
OD_REG_SET_FIELD(cmdq, OD_REG06, (od_buf_pa_32 >> 4), RG_BASE_ADR);
OD_REG_SET_FIELD(cmdq, OD_REG56, ((od_buf_pa_32 + u4ODDramSize) >> 4), DRAM_UPBOUND);
OD_REG_SET_FIELD(cmdq, OD_REG56, 1, DRAM_PROT);
}
static void _od_set_frame_protect_init(void *cmdq, int image_width, int image_height)
{
OD_REG_SET_FIELD(cmdq, OD_REG08, image_width, OD_H_ACTIVE );
OD_REG_SET_FIELD(cmdq, OD_REG32, image_width, OD_DE_WIDTH);
OD_REG_SET_FIELD(cmdq, OD_REG08, image_height, OD_V_ACTIVE);
OD_REG_SET_FIELD(cmdq, OD_REG53, 0x0BFB, FRAME_ERR_CON); /// don't care v blank
OD_REG_SET_FIELD(cmdq, OD_REG09, 0x01E, RG_H_BLANK); /// h_blank = htotal - h_active
OD_REG_SET_FIELD(cmdq, OD_REG09, 0x0A, RG_H_OFFSET); /// tolerrance
OD_REG_SET_FIELD(cmdq, OD_REG10, 0xFFF, RG_H_BLANK_MAX);
OD_REG_SET_FIELD(cmdq, OD_REG10, 0x3FFFF, RG_V_BLANK_MAX); /// pixel-based counter
OD_REG_SET_FIELD(cmdq, OD_REG11, 0xB000, RG_V_BLANK); /// v_blank = vtotal - v_active
OD_REG_SET_FIELD(cmdq, OD_REG11, 2, RG_FRAME_SET);
}
static void _od_set_param(void *cmdq, int manual_comp, int image_width, int image_height)
{
u32 u4GMV_width;
u32 u4Linesize;
//set gmv detection width
u4GMV_width = image_width / 6;
OD_REG_SET_FIELD(cmdq, OD_REG40, (u4GMV_width*1)>>4, GM_R0_CENTER);
OD_REG_SET_FIELD(cmdq, OD_REG40, (u4GMV_width*2)>>4, GM_R1_CENTER);
OD_REG_SET_FIELD(cmdq, OD_REG41, (u4GMV_width*3)>>4, GM_R2_CENTER);
OD_REG_SET_FIELD(cmdq, OD_REG41, (u4GMV_width*4)>>4, GM_R3_CENTER);
OD_REG_SET_FIELD(cmdq, OD_REG42, (u4GMV_width*5)>>4, GM_R4_CENTER);
OD_REG_SET_FIELD(cmdq, OD_REG43, 12 >> 2 , GM_V_ST );
OD_REG_SET_FIELD(cmdq, OD_REG43, (image_height-12)>>2 , GM_V_END);
OD_REG_SET_FIELD(cmdq, OD_REG42, (100*image_height)/1080 , GM_LGMIN_DIFF);
OD_REG_SET_FIELD(cmdq, OD_REG44, (400*image_height)/1080 , GM_LMIN_THR);
OD_REG_SET_FIELD(cmdq, OD_REG44, (200*image_height)/1080 , GM_GMIN_THR);
//set compression ratio
OD_REG_SET_FIELD(cmdq, OD_REG30, manual_comp, MANU_CPR);
// set line size
u4Linesize = ((image_width * manual_comp) >> 9) + 2; // linesize = ( h active/4* manual CR )/128 ==>linesize = (h active * manual CR)/512
OD_REG_SET_FIELD(cmdq, OD_REG47, 3, PRE_BW); //vIO32WriteFldAlign(OD_REG47, 3, PRE_BW);
OD_REG_SET_FIELD(cmdq, OD_REG34, 0xF, ODT_SB_TH0);
OD_REG_SET_FIELD(cmdq, OD_REG34, 0x10, ODT_SB_TH1);
OD_REG_SET_FIELD(cmdq, OD_REG34, 0x11, ODT_SB_TH2);
OD_REG_SET_FIELD(cmdq, OD_REG34, 0x12, ODT_SB_TH3);
OD_REG_SET_FIELD(cmdq, OD_REG47, 0x13, ODT_SB_TH4);
OD_REG_SET_FIELD(cmdq, OD_REG47, 0x14, ODT_SB_TH5);
OD_REG_SET_FIELD(cmdq, OD_REG47, 0x15, ODT_SB_TH6);
OD_REG_SET_FIELD(cmdq, OD_REG47, 0x16, ODT_SB_TH7);
OD_REG_SET_FIELD(cmdq, OD_REG38, u4Linesize, LINE_SIZE);
// use 64 burst length
OD_REG_SET_FIELD(cmdq, OD_REG38, 3, WR_BURST_LEN);
OD_REG_SET_FIELD(cmdq, OD_REG38, 3, RD_BURST_LEN);
//set auto 8bit parameters
if (image_width > 1900)
{
OD_REG_SET_FIELD(cmdq, OD_REG35, (140000 << 0), DET8B_DC_NUM );
OD_REG_SET_FIELD(cmdq, OD_REG36, (40000 << 18), DET8B_BTC_NUM);
OD_REG_SET_FIELD(cmdq, OD_REG37, (1900000>>4) , DET8B_BIT_MGN);
}
else
{
OD_REG_SET_FIELD(cmdq, OD_REG35, 70000, DET8B_DC_NUM);
OD_REG_SET_FIELD(cmdq, OD_REG36, 20000, DET8B_BTC_NUM);
OD_REG_SET_FIELD(cmdq, OD_REG37, (950000>>4) ,DET8B_BIT_MGN);
}
//set auto Y5 mode thr
OD_REG_SET_FIELD(cmdq, OD_REG46, 0x4E00, AUTO_Y5_NUM);
OD_REG_SET_FIELD(cmdq, OD_REG53, 0x4E00, AUTO_Y5_NUM_1);
//set OD threshold
OD_REG_SET_FIELD(cmdq, OD_REG01, 10, MOTION_THR);
OD_REG_SET_FIELD(cmdq, OD_REG48, 8, ODT_INDIFF_TH);
OD_REG_SET_FIELD(cmdq, OD_REG02, 1, FBT_BYPASS);
//set dump param
OD_REG_SET_FIELD(cmdq, OD_REG51, 0, DUMP_STLINE);
OD_REG_SET_FIELD(cmdq, OD_REG51, (image_height-1), DUMP_ENDLINE);
//set compression param
OD_REG_SET_FIELD(cmdq, OD_REG77, 0xfc, RC_U_RATIO);
OD_REG_SET_FIELD(cmdq, OD_REG78, 0xfc, RC_U_RATIO_FIRST2);
OD_REG_SET_FIELD(cmdq, OD_REG77, 0x68, RC_L_RATIO);
OD_REG_SET_FIELD(cmdq, OD_REG78, 0x68, RC_L_RATIO_FIRST2);
OD_REG_SET_FIELD(cmdq, OD_REG76, 0x3, CHG_Q_FREQ);
OD_REG_SET_FIELD(cmdq, OD_REG76, 0x2, CURR_Q_UV);
OD_REG_SET_FIELD(cmdq, OD_REG76, 0x2, CURR_Q_BYPASS);
OD_REG_SET_FIELD(cmdq, OD_REG77, 0x8, IP_SAD_TH);
}
static void _od_write_table(void *cmdq, u8 TableSel, u8 ColorSel, u8* pTable, int table_inverse)
{
u32 i, u4TblSize;
u32 u1ODBypass = DISP_REG_GET(OD_REG02) & (1 << 9) ? 1 : 0;
u32 u1FBBypass = DISP_REG_GET(OD_REG02) & (1 << 10) ? 1 : 0;
u32 u1PCIDBypass = DISP_REG_GET(OD_REG02) & (1 << 21) ? 1 : 0;
if (ColorSel > 3)
{
return;
}
// disable OD_START
DISP_REG_SET(cmdq, OD_REG12, 0);
OD_REG_SET_FIELD(cmdq, OD_REG02, 1, ODT_BYPASS);
OD_REG_SET_FIELD(cmdq, OD_REG02, 1, FBT_BYPASS);
OD_REG_SET_FIELD(cmdq, OD_REG45, 0, OD_PCID_EN);
OD_REG_SET_FIELD(cmdq, OD_REG45, 1, OD_PCID_BYPASS);
OD_REG_SET_FIELD(cmdq, OD_REG04, 1, TABLE_ONLY_W_ADR_INC);
OD_REG_SET_FIELD(cmdq, OD_REG04, 0, ADDR_YX);
OD_REG_SET_FIELD(cmdq, OD_REG04, 0x3, TABLE_RW_SEL_OD_BGR);
if (ColorSel == 3)
{
OD_REG_SET_FIELD(cmdq, OD_REG04, 7, TABLE_RW_SEL_OD_BGR);
}
else
{
OD_REG_SET_FIELD(cmdq, OD_REG04, (1 << ColorSel), TABLE_RW_SEL_OD_BGR);
}
switch (TableSel)
{
case OD_TABLE_33:
u4TblSize = OD_TBL_M_SIZE;
OD_REG_SET_FIELD(cmdq, OD_REG32, 0, OD_IDX_41);
OD_REG_SET_FIELD(cmdq, OD_REG32, 0, OD_IDX_17);
break;
case OD_TABLE_17:
u4TblSize = OD_TBL_S_SIZE;
OD_REG_SET_FIELD(cmdq, OD_REG32, 0, OD_IDX_41);
OD_REG_SET_FIELD(cmdq, OD_REG32, 1, OD_IDX_17);
break;
default:
return;
}
for (i = 0; i < u4TblSize; i++)
{
if (table_inverse)
{
u8 value = ABS(255 - *(pTable+i));
DISP_REG_SET(cmdq, OD_REG05, value);
}
else
{
DISP_REG_SET(cmdq, OD_REG05, *(pTable+i));
}
}
DISP_REG_SET(cmdq, OD_REG04, 0);
OD_REG_SET_FIELD(cmdq, OD_REG02, u1ODBypass, ODT_BYPASS);
OD_REG_SET_FIELD(cmdq, OD_REG02, u1FBBypass, FBT_BYPASS);
OD_REG_SET_FIELD(cmdq, OD_REG45, (!u1PCIDBypass), OD_PCID_EN);
OD_REG_SET_FIELD(cmdq, OD_REG45, (u1PCIDBypass), OD_PCID_BYPASS);
}
static u8 _od_read_table(void *cmdq, u8 TableSel, u8 ColorSel, u8* pTable, int table_inverse)
{
u32 i, u4TblVal, u4TblSize, u4ErrCnt = 0;
u32 mask;
u32 u1ODBypass = DISP_REG_GET(OD_REG02) & (1 << 9) ? 1 : 0;
u32 u1FBBypass = DISP_REG_GET(OD_REG02) & (1 << 10) ? 1 : 0;
u32 u1PCIDBypass = DISP_REG_GET(OD_REG02) & (1 << 21) ? 1 : 0;
if (ColorSel > 2)
{
return 1;
}
OD_REG_SET_FIELD(cmdq, OD_REG02, u1ODBypass, ODT_BYPASS);
OD_REG_SET_FIELD(cmdq, OD_REG02, u1FBBypass, FBT_BYPASS);
OD_REG_SET_FIELD(cmdq, OD_REG04, 0, TABLE_ONLY_W_ADR_INC);
OD_REG_SET_FIELD(cmdq, OD_REG04, 0, ADDR_YX);
mask = ~(0x7 << 19);
OD_REG_SET_FIELD(cmdq, OD_REG04, 7, TABLE_RW_SEL_OD_BGR);
switch (TableSel)
{
case OD_TABLE_33:
u4TblSize = OD_TBL_M_SIZE;
OD_REG_SET_FIELD(cmdq, OD_REG32, 0, OD_IDX_41);
OD_REG_SET_FIELD(cmdq, OD_REG32, 0, OD_IDX_17);
break;
case OD_TABLE_17:
u4TblSize = OD_TBL_S_SIZE;
OD_REG_SET_FIELD(cmdq, OD_REG32, 0, OD_IDX_41);
OD_REG_SET_FIELD(cmdq, OD_REG32, 1, OD_IDX_17);
break;
default:
return 0;
}
for (i = 0; i < u4TblSize; i++)
{
u4TblVal = DISP_REG_GET(OD_REG05);
if (table_inverse)
{
u8 value = ABS(255 - *(pTable+i));
if (value != u4TblVal)
{
u4ErrCnt++;
}
}
else
{
if (*(pTable+i) != u4TblVal)
{
ODDBG(OD_DBG_ALWAYS, "OD %d TBL %d %d != %d\n", ColorSel, i, *(pTable+i), u4TblVal);
u4ErrCnt++;
}
}
}
DISP_REG_SET(cmdq, OD_REG04, 0);
OD_REG_SET_FIELD(cmdq, OD_REG02, u1ODBypass, ODT_BYPASS);
OD_REG_SET_FIELD(cmdq, OD_REG02, u1FBBypass, FBT_BYPASS);
OD_REG_SET_FIELD(cmdq, OD_REG45, !u1PCIDBypass, OD_PCID_EN);
OD_REG_SET_FIELD(cmdq, OD_REG45, u1PCIDBypass, OD_PCID_BYPASS);
return u4ErrCnt;
}
static void _od_set_table(void *cmdq, int tableSelect, u8 *od_table, int table_inverse)
{
/// Write OD table
if (OD_TABLE_17 == tableSelect)
{
_od_write_table(cmdq, OD_TABLE_17, OD_ALL, od_table, table_inverse);
/// Check OD table
/// #ifndef DEF_CMDQ
/// _od_read_table(OD_TABLE_17, OD_RED, OD_Table_17x17, table_inverse);
/// _od_read_table(OD_TABLE_17, OD_GREEN, OD_Table_17x17, table_inverse);
/// _od_read_table(OD_TABLE_17, OD_BLUE, OD_Table_17x17, table_inverse);
/// #endif
DISP_REG_SET(cmdq, OD_REG02, (1 << 10));
OD_REG_SET_FIELD(cmdq, OD_REG45, 1, OD_PCID_BYPASS);
OD_REG_SET_FIELD(cmdq, OD_REG45, 0, OD_PCID_EN);
DISP_REG_SET(cmdq, OD_REG12, 1 << 0);
}
else if (OD_TABLE_33 == tableSelect)
{
_od_write_table(cmdq, OD_TABLE_33, OD_ALL, od_table, table_inverse);
/// #ifndef DEF_CMDQ
/// /// Check OD table
/// _od_read_table(OD_TABLE_33, OD_RED, OD_Table_33x33, table_inverse);
/// _od_read_table(OD_TABLE_33, OD_GREEN, OD_Table_33x33, table_inverse);
/// _od_read_table(OD_TABLE_33, OD_BLUE, OD_Table_33x33, table_inverse);
/// #endif
DISP_REG_SET(cmdq, OD_REG02, (1 << 10));
OD_REG_SET_FIELD(cmdq, OD_REG45, 1, OD_PCID_BYPASS);
OD_REG_SET_FIELD(cmdq, OD_REG45, 0, OD_PCID_EN);
DISP_REG_SET(cmdq, OD_REG12, 1 << 0);
}
else
{
ODDBG(OD_DBG_ALWAYS, "Error OD table\n");
BUG();
}
}
static void od_dbg_dump(void)
{
ODDBG(OD_DBG_ALWAYS, "OD EN %d INPUT %d %d\n", DISP_REG_GET(DISP_OD_EN), DISP_REG_GET(DISP_OD_INPUT_COUNT) >> 16, DISP_REG_GET(DISP_OD_INPUT_COUNT) & 0xFFFF);
ODDBG(OD_DBG_ALWAYS, "STA 0x%08x\n", DISP_REG_GET(OD_STA00));
ODDBG(OD_DBG_ALWAYS, "REG49 0x%08x\n", DISP_REG_GET(OD_REG49));
}
static void od_test_stress_table(void *cmdq)
{
int i;
ODDBG(OD_DBG_ALWAYS, "OD TEST -- STRESS TABLE START\n");
DISP_REG_SET(cmdq, DISP_OD_MISC, 1); /// [1]:can access OD table; [0]:can't access OD table
/* read/write table for 100 times, 17x17 and 33x33 50 times each */
for (i = 0; i < 50; i++)
{
/* test 17 table */
_od_set_table(cmdq, OD_TABLE_17, OD_Table_17x17, 0);
_od_read_table(cmdq, OD_TABLE_17, 0, OD_Table_17x17, 0);
_od_read_table(cmdq, OD_TABLE_17, 1, OD_Table_17x17, 0);
_od_read_table(cmdq, OD_TABLE_17, 2, OD_Table_17x17, 0);
/* test 33 table */
_od_set_table(cmdq, OD_TABLE_33, OD_Table_33x33, 0); /// default use 17x17 table
_od_read_table(cmdq, OD_TABLE_33, 0, OD_Table_33x33, 0);
_od_read_table(cmdq, OD_TABLE_33, 1, OD_Table_33x33, 0);
_od_read_table(cmdq, OD_TABLE_33, 2, OD_Table_33x33, 0);
}
DISP_REG_SET(cmdq, DISP_OD_MISC, 0); /// [1]:can access OD table; [0]:can't access OD table
ODDBG(OD_DBG_ALWAYS, "OD TEST -- STRESS TABLE END\n");
}
void disp_config_od(unsigned int width, unsigned int height, void *cmdq, unsigned int od_table_size, void *od_table)
{
int manual_cpr = OD_MANUAL_CPR;
int od_table_select = 0;
ODDBG(OD_DBG_ALWAYS, "OD conf start %lx %x %lx\n", (unsigned long)cmdq, od_table_size, (unsigned long)od_table);
switch (od_table_size)
{
case 17*17:
od_table_select = OD_TABLE_17;
break;
case 33*33:
od_table_select = OD_TABLE_33;
break;
// default linear table
default:
od_table_select = OD_TABLE_17;
od_table = OD_Table_dummy_17x17;
break;
}
if (od_table == NULL)
{
ODDBG(OD_DBG_ALWAYS, "LCM NULL OD table\n");
BUG();
}
DISP_REG_SET(cmdq, DISP_OD_EN, 1);
DISP_REG_SET(cmdq, DISP_OD_SIZE, (width << 16) | height);
DISP_REG_SET(cmdq, DISP_OD_HSYNC_WIDTH, OD_HSYNC_WIDTH);
DISP_REG_SET(cmdq, DISP_OD_VSYNC_WIDTH, (OD_HSYNC_WIDTH << 16)| (width * 3 / 2));
/// OD register init
od_init_table_init();
_od_reg_init(cmdq, OD_INIT_TABLE, sizeof(OD_INIT_TABLE) / sizeof(OD_INIT_TABLE[0]));
_od_set_dram_buffer_addr(cmdq, manual_cpr, width, height);
_od_set_frame_protect_init(cmdq, width, height);
/// OD on/off align to vsync
DISP_REG_SET(cmdq, OD_REG53, DISP_REG_GET(OD_REG53) | (1 << 30));
// _od_set_param(38, width, height);
_od_set_param(cmdq, manual_cpr, width, height);
DISP_REG_SET(cmdq, OD_REG53, 0x6BFB7E00);
DISP_REG_SET(cmdq, DISP_OD_MISC, 1); /// [1]:can access OD table; [0]:can't access OD table
// _od_set_table(OD_TABLE_17, 0); /// default use 17x17 table
_od_set_table(cmdq, od_table_select, od_table, 0);
DISP_REG_SET(cmdq, DISP_OD_MISC, 0); /// [1]:can access OD table; [0]:can't access OD table
/// modified ALBUF2_DLY OD_REG01
// OD_REG_SET_FIELD(cmdq, OD_REG01, (0xD), ALBUF2_DLY); // 1080w
OD_REG_SET_FIELD(cmdq, OD_REG01, (0xE), ALBUF2_DLY); // 720w
/// enable INK
// OD_REG_SET_FIELD(cmdq, OD_REG03, 1, ODT_INK_EN);
// disable hold for debug
// OD_REG_SET_FIELD(cmdq, OD_REG71, 0, RG_WDRAM_HOLD_EN);
// OD_REG_SET_FIELD(cmdq, OD_REG72, 0, RG_RDRAM_HOLD_EN);
// enable debug OSD for status reg
// OD_REG_SET_FIELD(cmdq, OD_REG46, 1, OD_OSD_SEL);
// lower hold threshold
// OD_REG_SET_FIELD(cmdq, OD_REG73, 0, RG_WDRAM_HOLD_THR);
// OD_REG_SET_FIELD(cmdq, OD_REG73, 0, RG_RDRAM_HOLD_THR);
/* restore demo mode for suspend / resume */
if (g_od_is_demo_mode)
OD_REG_SET_FIELD(cmdq, OD_REG02, 1, DEMO_MODE);
OD_REG_SET_FIELD(cmdq, OD_REG00, 0, BYPASS_ALL);
// GO OD. relay = 0, od_core_en = 1, DITHER_EN = 1
// Dynamic turn on from ioctl
// DISP_REG_SET(cmdq, DISP_OD_CFG, 2);
// clear crc error first
OD_REG_SET_FIELD(cmdq, OD_REG38, 1, DRAM_CRC_CLR);
if (od_debug_level >= OD_DBG_DEBUG)
od_dbg_dump();
ODDBG(OD_DBG_ALWAYS, "OD inited W %d H %d \n", width, height);
}
static void disp_od_set_enabled(unsigned long user_arg, void *cmdq)
{
int enabled = 0;
if (copy_from_user((void*)&enabled, (void*)user_arg, sizeof(int))) {
return -EFAULT;
}
enabled &= 0x1;
DISP_REG_MASK(cmdq, DISP_OD_CFG, (enabled << 1), 0x2);
}
static int disp_od_ioctl_ctlcmd(DISP_MODULE_ENUM module, int msg, unsigned long arg, void *cmdq)
{
DISP_OD_CMD cmd;
if (copy_from_user((void*)&cmd, (void*)arg, sizeof(DISP_OD_CMD)))
{
return -EFAULT;
}
ODDBG(OD_DBG_ALWAYS, "OD ioctl cmdq %lx\n", (unsigned long)cmdq);
switch (cmd.type) {
/* read reg */
case OD_CTL_READ_REG:
if (cmd.param0 < 0x1000) { // deny OOB access
cmd.ret = DISP_REG_GET(cmd.param0 + OD_BASE);
} else {
cmd.ret = 0;
}
break;
/* write reg */
case OD_CTL_WRITE_REG:
if (cmd.param0 < 0x1000) { // deny OOB access
DISP_REG_SET(cmdq, cmd.param0 + OD_BASE, cmd.param1);
cmd.ret = DISP_REG_GET(cmd.param0 + OD_BASE);
} else {
cmd.ret = 0;
}
break;
/* enable split screen OD demo mode for miravision */
case OD_CTL_ENABLE_DEMO_MODE:
{
switch (cmd.param0) {
/* demo mode */
case 0:
case 1:
{
int enable = cmd.param0 ? 1 : 0;
OD_REG_SET_FIELD(cmdq, OD_REG02, enable, DEMO_MODE);
ODDBG(OD_DBG_ALWAYS, "OD demo %d\n", enable);
/* save demo mode flag for suspend/resume */
g_od_is_demo_mode = enable;
}
break;
/* enable ink */
case 2: /* off */
case 3: /* on */
OD_REG_SET_FIELD(cmdq, OD_REG03, (cmd.param0 - 2), ODT_INK_EN);
break;
/* eanble debug OSD */
case 4: /* off */
case 5: /* on */
OD_REG_SET_FIELD(cmdq, OD_REG46, (cmd.param0 - 4), OD_OSD_SEL);
break;
default:
break;
}
}
break;
/* write od table */
case OD_CTL_WRITE_TABLE:
{
#if 0
unsigned char od_table[33 * 33] = {0};
int od_table_select;
if (cmd.param0 == 17 * 17) {
od_table_select = OD_TABLE_17;
} else if (cmd.param0 == 33 * 33) {
od_table_select = OD_TABLE_33;
} else { // deny OOB attack
break;
}
if (copy_from_user((void*)od_table, (void*)cmd.param1, cmd.param0))
break;
ODDBG(OD_DBG_ALWAYS, "OD wtbl %d: %d %d %d\n", cmd.param0, od_table[0], od_table[1], od_table[2]);
DISP_REG_SET(cmdq, DISP_OD_MISC, 1);
_od_set_table(cmdq, od_table_select, od_table, 0);
DISP_REG_SET(cmdq, DISP_OD_MISC, 0);
#else
return -EFAULT;
#endif
}
break;
default:
break;
}
if (copy_to_user((void*)arg, (void*)&cmd, sizeof(DISP_OD_CMD)))
{
return -EFAULT;
}
return 0;
}
static int disp_od_ioctl(DISP_MODULE_ENUM module, int msg, unsigned long arg, void *cmdq)
{
switch (msg) {
case DISP_IOCTL_OD_CTL:
return disp_od_ioctl_ctlcmd(module, msg, arg, cmdq);
default:
return -EFAULT;
}
return 0;
}
static void ddp_bypass_od(unsigned int width, unsigned int height, void * handle)
{
printk(KERN_NOTICE "ddp_bypass_od\n");
DISP_REG_SET(handle, DISP_REG_OD_SIZE, (width << 16) | height);
/* do not use OD relay mode (dither will be bypassed) od_core_en = 0 */
DISP_REG_SET(handle, DISP_REG_OD_CFG, 0);
DISP_REG_SET(handle, DISP_REG_OD_EN, 0x1);
}
static int od_config_od(DISP_MODULE_ENUM module, disp_ddp_path_config* pConfig, void* cmdq)
{
const LCM_PARAMS *lcm_param = &(pConfig->dispif_config);
if (pConfig->dst_dirty) {
#if defined(CONFIG_MTK_OD_SUPPORT)
unsigned int od_table_size = lcm_param->od_table_size;
void *od_table = lcm_param->od_table;
#if defined(OD_ALLOW_DEFAULT_TABLE)
if (od_table == NULL) {
od_table_size = 33 * 33;
od_table = OD_Table_33x33;
}
#endif
#if defined(OD_LINEAR_TABLE_IF_NONE)
if (od_table == NULL) {
od_table_size = 17 * 17;
od_table = OD_Table_dummy_17x17;
}
#endif
if (od_table != NULL) {
spm_enable_sodi(0);
disp_config_od(pConfig->dst_w, pConfig->dst_h, cmdq, od_table_size, od_table);
#if 0
// For debug
DISP_REG_MASK(cmdq, DISP_OD_INTEN, (1 << 6) | (1 << 3) | (1 << 2), (1 << 6) | (1 << 3) | (1 << 2));
#endif
} else {
ddp_bypass_od(pConfig->dst_w, pConfig->dst_h, cmdq);
}
#else /* Not support OD */
ddp_bypass_od(pConfig->dst_w, pConfig->dst_h, cmdq);
#endif
}
if (pConfig->dst_dirty) {
/* dither0 is in the OD module, and it uses OD clk, such that the OD clock must be on when screen is on. */
disp_dither_init(DISP_DITHER0, pConfig->dst_w, pConfig->dst_h,
pConfig->lcm_bpp, cmdq);
}
#if defined(CONFIG_MTK_OD_SUPPORT)
if (!pConfig->dst_dirty &&
(lcm_param->type == LCM_TYPE_DSI) && (lcm_param->dsi.mode == CMD_MODE))
{
if (pConfig->ovl_dirty || pConfig->rdma_dirty)
od_refresh_screen();
}
#endif
return 0;
}
static int od_clock_on(DISP_MODULE_ENUM module,void * handle)
{
#ifdef ENABLE_CLK_MGR
enable_clock(MT_CG_DISP0_DISP_OD, "od");
DDPMSG("od_clock on CG 0x%x \n", DISP_REG_GET(DISP_REG_CONFIG_MMSYS_CG_CON0));
#endif
return 0;
}
static int od_clock_off(DISP_MODULE_ENUM module,void * handle)
{
#ifdef ENABLE_CLK_MGR
disable_clock(MT_CG_DISP0_DISP_OD , "od");
DDPMSG("od_clock off CG 0x%x \n",DISP_REG_GET(DISP_REG_CONFIG_MMSYS_CG_CON0));
#endif
return 0;
}
// for SODI to check OD is enabled or not, this will be called when screen is on and disp clock is enabled
int disp_od_is_enabled(void)
{
return (DISP_REG_GET(DISP_OD_CFG) & (1 << 1)) ? 1 : 0;
}
static int od_set_listener(DISP_MODULE_ENUM module, ddp_module_notify notify)
{
g_od_ddp_notify = notify;
return 0;
}
/* OD driver module */
DDP_MODULE_DRIVER ddp_driver_od =
{
.init = od_clock_on,
.deinit = od_clock_off,
.config = od_config_od,
.start = NULL,
.trigger = NULL,
.stop = NULL,
.reset = NULL,
.power_on = od_clock_on,
.power_off = od_clock_off,
.is_idle = NULL,
.is_busy = NULL,
.dump_info = NULL,
.bypass = NULL,
.build_cmdq = NULL,
.set_lcm_utils = NULL,
.cmd = disp_od_ioctl,
.set_listener = od_set_listener
};
// ----------------------------------------------------------------------
// Test code
// Following is only for OD functional test, not normal code
// Will not be linked into user build.
// ----------------------------------------------------------------------
#define OD_TLOG(fmt, arg...) printk(KERN_NOTICE "[OD] " fmt "\n", ##arg)
static int od_parse_triple(const char *cmd, unsigned long *offset, unsigned int *value, unsigned int *mask)
{
int count = 0;
char *next = (char*)cmd;
*value = 0;
*mask = 0;
*offset = (unsigned long)simple_strtoul(next, &next, 0);
if (*offset > 0x1000UL || (*offset & 0x3UL) != 0) {
*offset = 0UL;
return 0;
}
count++;
if (*next == ',')
next++;
*value = (unsigned int)simple_strtoul(next, &next, 0);
count++;
if (*next == ',')
next++;
*mask = (unsigned int)simple_strtoul(next, &next, 0);
count++;
return count;
}
static void od_dump_reg(const char *reg_list)
{
unsigned long offset;
unsigned int value;
char *next = (char*)reg_list;
OD_TLOG("OD reg base = %lx", (unsigned long)(OD_BASE));
while (1) {
offset = (unsigned long)simple_strtoul(next, &next, 0);
if (offset < 0x1000UL && (offset & 0x3UL) == 0) {
value = DISP_REG_GET(OD_BASE + offset);
OD_TLOG("[+0x%03lx] = 0x%08x(%d)", offset, value, value);
}
if (next[0] != ',')
break;
next++;
}
}
static void od_test_slow_mode(void)
{
#if 0
msleep(30);
// SLOW
WDMASlowMode(DISP_MODULE_WDMA0, 1, 4, 0xff, 0x7, NULL); // time period between two write request is 0xff
ODDBG(OD_DBG_ALWAYS, "OD SLOW\n");
msleep(2000);
ODDBG(OD_DBG_ALWAYS, "OD OK\n");
WDMASlowMode(DISP_MODULE_WDMA0, 0, 0, 0, 0x7, NULL);
#endif
}
static void od_verify_boundary(void)
{
int guard1, guard2;
guard1 = (*((u32*)((unsigned long)g_od_buf_va + g_od_buf_size)) == OD_GUARD_PATTERN);
guard2 = (*((u32*)((unsigned long)g_od_buf_va + g_od_buf_size + OD_ADDITIONAL_BUFFER)) == OD_GUARD_PATTERN);
OD_TLOG("od_verify_boundary(): guard 1 = %d, guard 2 = %d", guard1, guard2);
}
#endif
|