# fp1-serial-boot.log -rw-r--r-- 41.5 KiB View raw
                                                                                
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
[PWRAP] pwrap_init_preloader
[PWRAP] pwrap_init
[PWRAP] _pwrap_init_sidly [Read Test] pass,SIDLY=0 rdata=5AA5
[PWRAP] _pwrap_init_sidly [Read Test] pass,SIDLY=1 rdata=5AA5
[PWRAP] _pwrap_init_sidly [Read Test] pass,SIDLY=2 rdata=5AA5
[PWRAP] _pwrap_init_sidly [Read Test] pass,SIDLY=3 rdata=5AA5
[PMIC_WRAP]wrap_init pass,the return value=0.
pl pmic init start
pl pmic efuse start
pl pmic efuse BUCK trim
[0x1C8]=0xF802
[0x1CA]=0x807B
[0x20E]=0xE0
[0x260]=0xF0
[0x286]=0xE0
pl pmic efuse end
pl pmic en rst [0x126]=0x13
[0xE]=0x1
[0x540]=0xA0
Battery exist
[0xE]=0x1
[0x540]=0xA0
pl vm read [0x290]=0x50
pl vm set [0x290]=0x52
pl vm check [0x290]=0x52
pl pmic init done
[PLFM] Init I2C: OK(0)
[PLFM] Init PWRAP: OK(0)
[PLFM] Init PMIC: OK(0)
[PLFM] chip[CA00]

[BLDR] Build Time: 20150814-110658
==== Dump RGU Reg ========
RGU MODE:     34
RGU LENGTH:   FFE0
RGU STA:      40000000
RGU INTERVAL: FFF
RGU SWSYSRST: 0
==== Dump RGU Reg End ====
RGU: g_rgu_satus:2
 mtk_wdt_mode_config  mode value=34, tmp:22000030
PL RGU RST: ??
SW reset with bypass power key flag
Find bypass powerkey flag
 mtk_wdt_mode_config  mode value=70, tmp:22000071
kpd register for pmic set!
mt_usb_calibraion: input_reg = 0x0 
mt_usb_calibraion: term_vref = 0x0,  clkref = 0x0, vrt_vref = 0x0,
[RTC] bbpu = 0xD, con = 0x406
[RTC] irqsta = 0x0, pdn1 = 0x1000, pdn2 = 0x201, spar0 = 0x40, spar1 = 0x800
[RTC] new_spare0 = 0x1500, new_spare1 = 0x1, new_spare2 = 0x1, new_spare3 = 0x8
[RTC] bbpu = 0xD, con = 0x406
SW reset with bypass power key flag
SW reset with bypass power key flag
[PLFM] WDT reboot bypass power key!
[RTC] rtc_bbpu_power_on done
[EMI] enable_combo_dis:0,has_emmc_nand:1
[SD0] Bus Width: 1
[SD0] SET_CLK(260kHz): SCLK(259kHz) MODE(0) DDR(0) DIV(193) DS(0) RS(0)
[SD0] Switch to High-Speed mode!
[SD0] SET_CLK(260kHz): SCLK(259kHz) MODE(2) DDR(1) DIV(96) DS(0) RS(0)
[SD0] Bus Width: 8
[SD0] Size: 15188 MB, Max.Speed: 52000 kHz, blklen(512), nblks(31105024), ro(0)
[SD0] Initialized
[SD0] SET_CLK(52000kHz): SCLK(50000kHz) MODE(2) DDR(1) DIV(0) DS(0) RS(0)
msdc_ett_offline_to_pl: size<2> m_id<0x45>
msdc <0> <HYNIX > <SEM16G>
msdc <1> <xxxxxx> <SEM16G>
msdc failed to find
*******EMMC_INFO*******
eMMC partition size(1 block = 512Bytes):
BOOT1:<4096> blocks
BOOT2:<4096> blocks
RPMB :<256> blocks
GP1  :<0> blocks
GP2  :<0> blocks
GP3  :<0> blocks
GP4  :<0> blocks
USER :<31105024> blocks
*******EMMC_INFO*******
check card state<4>
fw id len:6
found:1,i:0
[EMI] DDR2
[EMI] eMMC/NAND ID = 45,1,0,53,45,4D,31,36,47
[EMI] MDL number = 0
[MEM] 1066 MHZ
[MEM] MMD2
rank 0 coarse = 15
rank 0 fine = 40
10:|    0    0    1    1    1    0
opt_dle value:8
rank 1 coarse = 15
rank 1 fine = 48
10:|    0    0    1    1    1    0
opt_dle value:8
byte:0, (DQS,DQ)=(8,8)
byte:1, (DQS,DQ)=(8,C)
byte:2, (DQS,DQ)=(8,8)
byte:3, (DQS,DQ)=(8,B)
[EMI] DRAMC calibration passed

[EMI] DQSINCTL:50000

[MEM] complex R/W mem test pass
[PLFM] Init Boot Device: OK(0)
============func=load_pt_from_fixed_addr===scan pmt from 700000=====
find pt at 700000 
next pt 0
64bit parse PMT
find pt
part PRELOADER size 0000000000000000 0000000000600000
part MBR size 0000000000600000 0000000000080000
part EBR1 size 0000000000680000 0000000000080000
part __NODL_PMT size 0000000000700000 0000000000400000
part __NODL_PRO_INFO size 0000000000B00000 0000000000300000
part __NODL_NVRAM size 0000000000E00000 0000000000500000
part __NODL_PROTECT_F size 0000000001300000 0000000000A00000
part __NODL_PROTECT_S size 0000000001D00000 0000000000A00000
part __NODL_SECCFG size 0000000002700000 0000000000020000
part UBOOT size 0000000002720000 0000000000060000
part BOOTIMG size 0000000002780000 0000000000600000
part RECOVERY size 0000000002D80000 0000000000600000
part SEC_RO size 0000000003380000 0000000000600000
part __NODL_MISC size 0000000003980000 0000000000080000
part LOGO size 0000000003A00000 0000000000380000
part __NODL_EXPDB size 0000000003D80000 0000000000A00000
part ANDROID size 0000000004780000 0000000028A00000
part CACHE size 000000002D180000 000000001CC00000
part USRDATA size 0000000049D80000 000000036A5A0000

[PART] blksz: 512B
[PART] [0x0000000000000000-0x00000000005FFFFF] "PRELOADER" (12288 blocks) 
[PART] [0x0000000000600000-0x000000000067FFFF] "MBR" (1024 blocks) 
[PART] [0x0000000000680000-0x00000000006FFFFF] "EBR1" (1024 blocks) 
[PART] [0x0000000000700000-0x0000000000AFFFFF] "PMT" (8192 blocks) 
[PART] [0x0000000000B00000-0x0000000000DFFFFF] "PRO_INFO" (6144 blocks) 
[PART] [0x0000000000E00000-0x00000000012FFFFF] "NVRAM" (10240 blocks) 
[PART] [0x0000000001300000-0x0000000001CFFFFF] "PROTECT_F" (20480 blocks) 
[PART] [0x0000000001D00000-0x00000000026FFFFF] "PROTECT_S" (20480 blocks) 
[PART] [0x0000000002700000-0x000000000271FFFF] "SECURE" (256 blocks) 
[PART] [0x0000000002720000-0x000000000277FFFF] "UBOOT" (768 blocks) 
[PART] [0x0000000002780000-0x0000000002D7FFFF] "BOOTIMG" (12288 blocks) 
[PART] [0x0000000002D80000-0x000000000337FFFF] "RECOVERY" (12288 blocks) 
[PART] [0x0000000003380000-0x000000000397FFFF] "SECSTATIC" (12288 blocks) 
[PART] [0x0000000003980000-0x00000000039FFFFF] "MISC" (1024 blocks) 
[PART] [0x0000000003A00000-0x0000000003D7FFFF] "LOGO" (7168 blocks) 
[PART] [0x0000000003D80000-0x000000000477FFFF] "EXPDB" (20480 blocks) 
[PART] [0x0000000004780000-0x000000002D17FFFF] "ANDSYSIMG" (1331200 blocks) 
[PART] [0x000000002D180000-0x0000000049D7FFFF] "CACHE" (942080 blocks) 
[PART] [0x0000000049D80000-0x00000000B427FFFF] "USER" (3483648 blocks) 
[ROM_INFO] 'v2','0x2700000','0x20000','0x3380000','0x2C00'
[SEC_K] SML KEY AC = 0
[SEC_K] SBC_PUBK Found
[SEC] AES Legacy : 0
[SEC] SECCFG AC : 1


[SEC] read '0x2700000'
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,

[LIB] SecLib.a '20121226-155014'
[LIB] CFG read size '0x4000' '0x1860'
[LIB] Name = 
[LIB] Config = 0x22, 0x22
0x31,0x41,0x35,0x35
[platform_vusb_on] PASS
hw_set_cc: 450
[0x0]=0x7B
[0x1]=0x7B
[0x2]=0xB2
[0x3]=0xB2
[0x4]=0x8C
[0x5]=0x8C
[0x6]=0x0
[0x7]=0x0
[0x8]=0xC
[0x9]=0xC
[0xA]=0x0
[0xB]=0x0
[0xC]=0x1
[0xD]=0x1
[0xE]=0x1
[0xF]=0x1
[0x10]=0x0
[0x11]=0x0
[0x12]=0x0
[0x13]=0x0
[0x14]=0x60
[0x15]=0x60
[0x16]=0x0
[0x17]=0x0
[0x18]=0x0
[0x19]=0x0
[0x1A]=0x10
[0x1B]=0x10
[0x1C]=0x0
[0x1D]=0x0
[0x1E]=0x1
[0x1F]=0x1
[0x20]=0x1
[0x21]=0x1
[0x22]=0x0
[0x23]=0x0
[0x24]=0x0
[0x25]=0x0
[0x26]=0x0
[0x27]=0x0
[0x28]=0x21
[0x29]=0x21
[0x2A]=0x14
[0x2B]=0x14
[0x2C]=0x41
[0x2D]=0x41
[0x2E]=0xD4
[0x2F]=0xD4
[0x30]=0x0
[0x31]=0x0
[0x32]=0x0
[0x33]=0x0
[0x34]=0x1
[0x35]=0x1
[0x36]=0x0
[0x37]=0x0
[0x38]=0x55
[0x39]=0x55
[0x3A]=0x0
hw_set_cc: done
pl pmic Charging Host
pl pmic for USB
[0x24]=0xF
[0x26]=0x80

[PLFM] USB cable in
[0xE]=0x1
[0x540]=0xA0
Battery exist
[0xE]=0x1
[0x540]=0xA0
[TOOL] USB enum timeout (Yes), handshake timeout(Yes)
[USBD] USB Full Speed
[TOOL] Enumeration(Start)
[USBD] USB High Speed
[USBD] USB High Speed
[TOOL] Enumeration(End): OK 610ms 
usbdl_flush timeout
usbdl_flush timeout
usbdl_flush timeout
usbdl_flush timeout
usbdl_flush timeout
usbdl_flush timeout
usbdl_flush timeout
usbdl_flush timeout
[TOOL] <USB> cannot detect tools!

[TOOL] <UART> wait sync time 150ms->5ms
[TOOL] <UART> receieved data: ()
[PART] Image with part header
[PART] name : LK
[PART] addr : FFFFFFFFh
[PART] size : 235804
[PART] magic: 58881688h

[PART] load "UBOOT" from 0x0000000002720200 (dev) to 0x81E00000 (mem) [SUCCESS]
[PART] load speed: 15351KB/s, 235804 bytes, 15ms
[0xE]=0x1
[0x540]=0xA0
Battery exist
[0xE]=0x1
[0x540]=0xA0
[SECRO] Don't read
[AUTHEN] rsa.N length = 1024 bytes
[AUTHEN] rsa.E length = 20 bytes
[LIB] NS-CHIP
[LIB] Don't check

Device APC domain init setup:

[PLFM] ram_console->start=0x100A
[PLFM] ram_console(0x2)=0x2 (boot reason)
0:dram_rank_size:20000000
1:dram_rank_size:20000000

[PLFM] boot reason: 4
[PLFM] boot mode: 0
[PLFM] META COM0: 0
[PLFM] <0x800A0008>: 0x0
[PLFM] boot time: 3857ms

[BLDR] jump to 0x81E00000
[BLDR] <0x81E00000>=0xEA000007
[BLDR] <0x81E00004>=0xEA00614C
[PROFILE] ------- i2c init takes 0 ms -------- 
 mtk_wdt_mode LK config  mode value=71
 mtk_wdt_mode_config LK  mode value=30, tmp:22000030
UB wdt init
 mtk_wdt_mode LK config  mode value=30
 mtk_wdt_mode_config LK  mode value=79, tmp:22000079
[LEDS]LK: leds_init: mt65xx_backlight_off 
[LEDS]LK: mt65xx_backlight_off 
[LEDS]LK: lcd-backlight level is 0 
[DDP] disp_bls_set_backlight: 0, PWM div 36
[PROFILE] ------- led init takes 2 ms -------- 
[LEDS]LK: isink_init: turn on PMIC6320 isink 
DISP/disp common log enabled
DISP/lcd log enabled
DISP_Init, 599
DISP/DISP_Init, 603
DISP/DISP_Init, 608
DISP/DISP_Init, 614
DISP/DISP_Init, 637
[DISP] - uboot - DSI_PowerOn. 0x       0,0x       0,0x       0
DISP/[DISP] - kernel - DSI_PHY_TIMCONFIG, Cycle Time = 18(ns), Unit Interval = 3(ns). div1 = 2, div2 = 2, fbk_div = 16, lane# = 2 
DISP/[DISP] - kernel - DSI_PHY_TIMCONFIG, HS_TRAIL = 15, HS_ZERO = 8, HS_PRPR = 5, LPX = 4, TA_GET = 20, TA_SURE = 6, TA_GO = 16, CLK_TRAIL = 16, CLK_ZERO = 19, CLK_HS_PRPR = 4 
LCM PLL Config = 3, 1,1,1,16,0,2,2,4,1,12
DISP/ Polling DSI read ready timeout!!!
DISP/---------- Start dump DSI registers ----------
DISP/DSI+0000 : 0x00000001
DISP/DSI+0004 : 0x00000000
DISP/DSI+0008 : 0x00000003
DISP/DSI+000c : 0x80000000
DISP/DSI+0010 : 0x00000000
DISP/DSI+0014 : 0x00000000
DISP/DSI+0018 : 0x0001000c
DISP/DSI+001c : 0x00030654
DISP/DSI+0020 : 0x00000000
DISP/DSI+0024 : 0x00000000
DISP/DSI+0028 : 0x00000000
DISP/DSI+002c : 0x000003c0
DISP/DSI+0030 : 0x00000000
DISP/DSI+0034 : 0x00000000
DISP/DSI+0038 : 0x00000000
DISP/DSI+003c : 0x00000000
DISP/DSI+0040 : 0x00000000
DISP/DSI+0044 : 0x00000000
DISP/DSI+0048 : 0x00000000
DISP/DSI+004c : 0x00000000
DISP/DSI+0050 : 0x00000000
DISP/DSI+0054 : 0x00000000
DISP/DSI+0058 : 0x00000000
DISP/DSI+005c : 0x00000000
DISP/DSI+0060 : 0x00000001
DISP/DSI+0064 : 0x00000654
DISP/DSI+0068 : 0x00000000
DISP/DSI+006c : 0x00000000
DISP/DSI+0070 : 0x00000000
DISP/DSI+0074 : 0x00000000
DISP/DSI+0078 : 0x00000000
DISP/DSI+007c : 0x00000000
DISP/DSI+0080 : 0x00000000
DISP/DSI+0084 : 0x00000000
DISP/DSI+0088 : 0x00000020
DISP/DSI+008c : 0x00000000
DISP/DSI+0090 : 0x0000003c
DISP/DSI+0094 : 0x00000000
DISP/DSI+0098 : 0x00000000
DISP/DSI+009c : 0x00000000
DISP/DSI+00a0 : 0x00000000
DISP/DSI+00a4 : 0x00000000
DISP/DSI+00a8 : 0x00000000
DISP/DSI+00ac : 0x00000000
DISP/DSI+00b0 : 0x00000000
DISP/DSI+00b4 : 0x00000000
DISP/DSI+00b8 : 0x00000000
DISP/DSI+00bc : 0x00000000
DISP/DSI+00c0 : 0x00000000
DISP/DSI+00c4 : 0x00000000
DISP/DSI+00c8 : 0x00000000
DISP/DSI+00cc : 0x00000000
DISP/DSI+00d0 : 0x00000000
DISP/DSI+00d4 : 0x00000000
DISP/DSI+00d8 : 0x00000000
DISP/DSI+00dc : 0x00000000
DISP/DSI+00e0 : 0x00000000
DISP/DSI+00e4 : 0x00000000
DISP/DSI+00e8 : 0x00000000
DISP/DSI+00ec : 0x00000000
DISP/DSI+00f0 : 0x00000000
DISP/DSI+00f4 : 0x00000000
DISP/DSI+00f8 : 0x00000000
DISP/DSI+00fc : 0x00000000
DISP/DSI+0100 : 0x00000000
DISP/DSI+0104 : 0x00000000
DISP/DSI+0108 : 0x00000000
DISP/DSI+010c : 0x00000000
DISP/DSI+0110 : 0x0f080504
DISP/DSI+0114 : 0x08140610
DISP/DSI+0118 : 0x10130000
DISP/DSI+011c : 0x00080e04
DISP/DSI+0120 : 0x00000000
DISP/DSI+0124 : 0x00000000
DISP/DSI+0128 : 0x00000000
DISP/DSI+012c : 0x00000000
DISP/DSI+0130 : 0x00000000
DISP/DSI+0134 : 0x00000000
DISP/DSI+0138 : 0x00000000
DISP/DSI+013c : 0x00000000
DISP/DSI+0140 : 0x00000000
DISP/DSI+0144 : 0x0000ffff
DISP/DSI+0148 : 0x00010001
DISP/DSI+014c : 0x01010100
DISP/DSI+0150 : 0x01080001
DISP/DSI+0154 : 0x01010101
DISP/DSI+0158 : 0x00000101
DISP/DSI+015c : 0x00000000
DISP/DSI+0160 : 0x00010200
DISP/DSI+0164 : 0x00000001
DISP/DSI+0168 : 0x00000000
DISP/DSI+016c : 0x00000000
DISP/DSI+0170 : 0x00000000
DISP/DSI+0174 : 0xfff00000
DISP/DSI+0178 : 0x00000000
DISP/DSI+017c : 0x00200000
DISP/DSI_CMD+0000(0x1400d180) : 0x000a0604
DISP/DSI_CMD+0004(0x1400d184) : 0x0300002b
DISP/DSI_CMD+0008(0x1400d188) : 0x000000bf
DISP/DSI_CMD+000c(0x1400d18c) : 0x037e0366
DISP/DSI_CMD+0010(0x1400d190) : 0x03b1039f
DISP/DSI_CMD+0014(0x1400d194) : 0x000000cf
DISP/DSI_CMD+0018(0x1400d198) : 0x00000000
DISP/DSI_CMD+001c(0x1400d19c) : 0x00000000
DISP/DSI_CMD+0020(0x1400d1a0) : 0x51014000
DISP/DSI_CMD+0024(0x1400d1a4) : 0x01000100
DISP/DSI_CMD+0028(0x1400d1a8) : 0x66f1d735
DISP/DSI_CMD+002c(0x1400d1ac) : 0xd501e511
DISP/DSI_CMD+0030(0x1400d1b0) : 0xe632c798
DISP/DSI_CMD+0034(0x1400d1b4) : 0x1d4c9951
DISP/DSI_CMD+0038(0x1400d1b8) : 0xe55455dc
DISP/DSI_CMD+003c(0x1400d1bc) : 0x5130e7ba
DISP/DSI_CMD+0040(0x1400d1c0) : 0xf5d69cdd
DISP/DSI_CMD+0044(0x1400d1c4) : 0x40d66531
DISP/DSI_CMD+0048(0x1400d1c8) : 0x746c7507
DISP/DSI_CMD+004c(0x1400d1cc) : 0x545d454f
DISP/DSI_CMD+0050(0x1400d1d0) : 0x39445771
DISP/DSI_CMD+0054(0x1400d1d4) : 0x5d5b3554
DISP/DSI_CMD+0058(0x1400d1d8) : 0x5bf5b714
DISP/DSI_CMD+005c(0x1400d1dc) : 0x15584334
DISP/DSI_CMD+0060(0x1400d1e0) : 0xc1741f7d
DISP/DSI_CMD+0064(0x1400d1e4) : 0x54ede744
DISP/DSI_CMD+0068(0x1400d1e8) : 0x16145477
DISP/DSI_CMD+006c(0x1400d1ec) : 0x5cd35d54
DISP/DSI_CMD+0070(0x1400d1f0) : 0x68459059
DISP/DSI_CMD+0074(0x1400d1f4) : 0xcd94551d
DISP/DSI_CMD+0078(0x1400d1f8) : 0x92445dd1
DISP/DSI_CMD+007c(0x1400d1fc) : 0x4fe3f85b
DISP/DSI_PHY+0000(0x10012800) : 0x00008000
DISP/DSI_PHY+0004(0x10012804) : 0x00008000
DISP/DSI_PHY+0008(0x10012808) : 0x00008000
DISP/DSI_PHY+000c(0x1001280c) : 0x00008000
DISP/DSI_PHY+0010(0x10012810) : 0x00008000
DISP/DSI_PHY+0014(0x10012814) : 0x00008000
DISP/DSI_PHY+0018(0x10012818) : 0x00008000
DISP/DSI_PHY+001c(0x1001281c) : 0x00008000
DISP/DSI_PHY+0020(0x10012820) : 0x00000000
DISP/DSI_PHY+0024(0x10012824) : 0x24248800
DISP/DSI_PHY+0028(0x10012828) : 0x24242424
DISP/DSI_PHY+002c(0x1001282c) : 0x00000000
DISP/DSI_PHY+0030(0x10012830) : 0x00000000
Check LCM Status: 0x000000a5
ASSERT error OVLLayerSwitch,89
ASSERT error 
ASSERT error 
ASSERT error 
ASSERT error 
RDMA: w=540, h=960, pitch=1620, mode=0 
ASSERT error 
disp_bls_config : PWM config data (0,0)
[DDP] disp_bls_config : gBLSMutexID = 3
DISP/DISP_Init, 642
DISP/ Polling DSI read ready timeout!!!
DISP/---------- Start dump DSI registers ----------
DISP/DSI+0000 : 0x00000001
DISP/DSI+0004 : 0x00000000
DISP/DSI+0008 : 0x00000003
DISP/DSI+000c : 0x80000000
DISP/DSI+0010 : 0x00000000
DISP/DSI+0014 : 0x00000000
DISP/DSI+0018 : 0x0001000c
DISP/DSI+001c : 0x00030654
DISP/DSI+0020 : 0x00000000
DISP/DSI+0024 : 0x00000000
DISP/DSI+0028 : 0x00000000
DISP/DSI+002c : 0x000003c0
DISP/DSI+0030 : 0x00000000
DISP/DSI+0034 : 0x00000000
DISP/DSI+0038 : 0x00000000
DISP/DSI+003c : 0x00000000
DISP/DSI+0040 : 0x00000000
DISP/DSI+0044 : 0x00000000
DISP/DSI+0048 : 0x00000000
DISP/DSI+004c : 0x00000000
DISP/DSI+0050 : 0x00000000
DISP/DSI+0054 : 0x00000000
DISP/DSI+0058 : 0x00000000
DISP/DSI+005c : 0x00000000
DISP/DSI+0060 : 0x00000001
DISP/DSI+0064 : 0x00000654
DISP/DSI+0068 : 0x00000000
DISP/DSI+006c : 0x00000000
DISP/DSI+0070 : 0x00000000
DISP/DSI+0074 : 0x00000000
DISP/DSI+0078 : 0x00000000
DISP/DSI+007c : 0x00000000
DISP/DSI+0080 : 0x00000000
DISP/DSI+0084 : 0x00000000
DISP/DSI+0088 : 0x00000020
DISP/DSI+008c : 0x00000000
DISP/DSI+0090 : 0x0000003c
DISP/DSI+0094 : 0x00000000
DISP/DSI+0098 : 0x00000000
DISP/DSI+009c : 0x00000000
DISP/DSI+00a0 : 0x00000000
DISP/DSI+00a4 : 0x00000000
DISP/DSI+00a8 : 0x00000000
DISP/DSI+00ac : 0x00000000
DISP/DSI+00b0 : 0x00000000
DISP/DSI+00b4 : 0x00000000
DISP/DSI+00b8 : 0x00000000
DISP/DSI+00bc : 0x00000000
DISP/DSI+00c0 : 0x00000000
DISP/DSI+00c4 : 0x00000000
DISP/DSI+00c8 : 0x00000000
DISP/DSI+00cc : 0x00000000
DISP/DSI+00d0 : 0x00000000
DISP/DSI+00d4 : 0x00000000
DISP/DSI+00d8 : 0x00000000
DISP/DSI+00dc : 0x00000000
DISP/DSI+00e0 : 0x00000000
DISP/DSI+00e4 : 0x00000000
DISP/DSI+00e8 : 0x00000000
DISP/DSI+00ec : 0x00000000
DISP/DSI+00f0 : 0x00000000
DISP/DSI+00f4 : 0x00000000
DISP/DSI+00f8 : 0x00000000
DISP/DSI+00fc : 0x00000000
DISP/DSI+0100 : 0x00000000
DISP/DSI+0104 : 0x00000000
DISP/DSI+0108 : 0x00000000
DISP/DSI+010c : 0x00000000
DISP/DSI+0110 : 0x0f080504
DISP/DSI+0114 : 0x08140610
DISP/DSI+0118 : 0x10130000
DISP/DSI+011c : 0x00080e04
DISP/DSI+0120 : 0x00000000
DISP/DSI+0124 : 0x00000000
DISP/DSI+0128 : 0x00000000
DISP/DSI+012c : 0x00000000
DISP/DSI+0130 : 0x00000000
DISP/DSI+0134 : 0x00000000
DISP/DSI+0138 : 0x00000000
DISP/DSI+013c : 0x00000000
DISP/DSI+0140 : 0x00000000
DISP/DSI+0144 : 0x0000ffff
DISP/DSI+0148 : 0x00010001
DISP/DSI+014c : 0x01010100
DISP/DSI+0150 : 0x01080001
DISP/DSI+0154 : 0x01010101
DISP/DSI+0158 : 0x00000101
DISP/DSI+015c : 0x00000000
DISP/DSI+0160 : 0x00010200
DISP/DSI+0164 : 0x00000001
DISP/DSI+0168 : 0x00000000
DISP/DSI+016c : 0x00000000
DISP/DSI+0170 : 0x00000000
DISP/DSI+0174 : 0xfff00000
DISP/DSI+0178 : 0x00000000
DISP/DSI+017c : 0x00200000
DISP/DSI_CMD+0000(0x1400d180) : 0x000a0604
DISP/DSI_CMD+0004(0x1400d184) : 0x0300002b
DISP/DSI_CMD+0008(0x1400d188) : 0x000000bf
DISP/DSI_CMD+000c(0x1400d18c) : 0x037e0366
DISP/DSI_CMD+0010(0x1400d190) : 0x03b1039f
DISP/DSI_CMD+0014(0x1400d194) : 0x000000cf
DISP/DSI_CMD+0018(0x1400d198) : 0x00000000
DISP/DSI_CMD+001c(0x1400d19c) : 0x00000000
DISP/DSI_CMD+0020(0x1400d1a0) : 0x51014000
DISP/DSI_CMD+0024(0x1400d1a4) : 0x01000100
DISP/DSI_CMD+0028(0x1400d1a8) : 0x66f1d735
DISP/DSI_CMD+002c(0x1400d1ac) : 0xd501e511
DISP/DSI_CMD+0030(0x1400d1b0) : 0xe632c798
DISP/DSI_CMD+0034(0x1400d1b4) : 0x1d4c9951
DISP/DSI_CMD+0038(0x1400d1b8) : 0xe55455dc
DISP/DSI_CMD+003c(0x1400d1bc) : 0x5130e7ba
DISP/DSI_CMD+0040(0x1400d1c0) : 0xf5d69cdd
DISP/DSI_CMD+0044(0x1400d1c4) : 0x40d66531
DISP/DSI_CMD+0048(0x1400d1c8) : 0x746c7507
DISP/DSI_CMD+004c(0x1400d1cc) : 0x545d454f
DISP/DSI_CMD+0050(0x1400d1d0) : 0x39445771
DISP/DSI_CMD+0054(0x1400d1d4) : 0x5d5b3554
DISP/DSI_CMD+0058(0x1400d1d8) : 0x5bf5b714
DISP/DSI_CMD+005c(0x1400d1dc) : 0x15584334
DISP/DSI_CMD+0060(0x1400d1e0) : 0xc1741f7d
DISP/DSI_CMD+0064(0x1400d1e4) : 0x54ede744
DISP/DSI_CMD+0068(0x1400d1e8) : 0x16145477
DISP/DSI_CMD+006c(0x1400d1ec) : 0x5cd35d54
DISP/DSI_CMD+0070(0x1400d1f0) : 0x68459059
DISP/DSI_CMD+0074(0x1400d1f4) : 0xcd94551d
DISP/DSI_CMD+0078(0x1400d1f8) : 0x92445dd1
DISP/DSI_CMD+007c(0x1400d1fc) : 0x4fe3f85b
DISP/DSI_PHY+0000(0x10012800) : 0x00008000
DISP/DSI_PHY+0004(0x10012804) : 0x00008000
DISP/DSI_PHY+0008(0x10012808) : 0x00008000
DISP/DSI_PHY+000c(0x1001280c) : 0x00008000
DISP/DSI_PHY+0010(0x10012810) : 0x00008000
DISP/DSI_PHY+0014(0x10012814) : 0x00008000
DISP/DSI_PHY+0018(0x10012818) : 0x00008000
DISP/DSI_PHY+001c(0x1001281c) : 0x00008000
DISP/DSI_PHY+0020(0x10012820) : 0x00000000
DISP/DSI_PHY+0024(0x10012824) : 0x24248800
DISP/DSI_PHY+0028(0x10012828) : 0x24242424
DISP/DSI_PHY+002c(0x1001282c) : 0x00000000
DISP/DSI_PHY+0030(0x10012830) : 0x00000000
Check LCM Status: 0x0000009c
DISP/DISP_Init, 657
[PROFILE] ------- disp init takes 583 ms -------- 

[LK_pmic6329_init] Start...................
[LK_PMIC_INIT] PMIC CID=0x2020
[LK_PMIC_INIT] Turn Off chrind
[LK_PMIC_INIT_SETTING_V1] PMIC Chip = 2020
[LK_PMIC_INIT_SETTING_V1] 20121220 (>=2)
[LK_PMIC_INIT_SETTING_V1] Done
[LK_PMIC_INIT_SETTING_V1] 
[LK_PMIC_CUSTOM_SETTING_V1] Done
[PROFILE] ------- pmic6329_init takes 4 ms -------- 
[PROFILE] ------- platform_early_init takes 793 ms -------- 
[mmc_legacy_init]: start
[mmc_legacy_init]: start mmc_init_host
[msdc_init]: start
[SD0] Bus Width: 1
[SD0] SET_CLK(260kHz): SCLK(259kHz) MODE(0) DDR(0) DIV(193) DS(0) RS(0)
[msdc_init]: finish succesfully
[mmc_legacy_init]: start mmc_init_card
[mmc_init_card]: start
[SD0] Switch to High-Speed mode!
[SD0] SET_CLK(260kHz): SCLK(259kHz) MODE(2) DDR(1) DIV(96) DS(0) RS(0)
[SD0] Bus Width: 8
[SD0] Size: 15188 MB, Max.Speed: 52000 kHz, blklen(512), nblks(31105024), ro(0)
[SD0] Initialized
[SD0] SET_CLK(52000kHz): SCLK(50000kHz) MODE(2) DDR(1) DIV(0) DS(0) RS(0)
[mmc_init_card]: finish successfully
addr_trans_init
addr_trans_init done
[mt_part_register_device]
[mt_part_register_device]malloc 1024 : 81e594fc
mt6577_part_init_pmt 
============func=load_pt_from_fixed_addr===scan pmt from 700000=====
find pt at 700000 
next pt 0
64bit parse PMT, size pt = 88
Find pt 
partition PRELOADER size 0000000000000000 0000000000600000 
partition MBR size 0000000000600000 0000000000080000 
partition EBR1 size 0000000000680000 0000000000080000 
partition __NODL_PMT size 0000000000700000 0000000000400000 
partition __NODL_PRO_INFO size 0000000000b00000 0000000000300000 
partition __NODL_NVRAM size 0000000000e00000 0000000000500000 
partition __NODL_PROTECT_F size 0000000001300000 0000000000a00000 
partition __NODL_PROTECT_S size 0000000001d00000 0000000000a00000 
partition __NODL_SECCFG size 0000000002700000 0000000000020000 
partition UBOOT size 0000000002720000 0000000000060000 
partition BOOTIMG size 0000000002780000 0000000000600000 
partition RECOVERY size 0000000002d80000 0000000000600000 
partition SEC_RO size 0000000003380000 0000000000600000 
partition __NODL_MISC size 0000000003980000 0000000000080000 
partition LOGO size 0000000003a00000 0000000000380000 
partition __NODL_EXPDB size 0000000003d80000 0000000000a00000 
partition ANDROID size 0000000004780000 0000000028a00000 
partition CACHE size 000000002d180000 000000001cc00000 
partition USRDATA size 0000000049d80000 000000036a5a0000 
[SD0] boot device found
[PROFILE] ------- NAND/EMMC init takes 120 ms -------- 
[mt_part_get_partition] MISC
[mt_part_get_partition] 1cc00
[LK_ENV]ENV initialize sucess
[LK_ENV]env:
data_free_size_th=52428800
hibboot=0
resume=
[PROFILE] ------- ENV init takes 3 ms -------- 
[mt_part_get_partition] LOGO
[mt_part_get_partition] 1d000
[mt_part_get_partition] LOGO
[mt_part_get_partition] 1d000

=========================================
[LK_BOOT] LOGO magic number : 0x58881688
[LK_BOOT] LOGO name         : LOGO
[LK_BOOT] LOGO size         : 239875
=========================================
read the data of LOGO
DISP/panel is enabled
DISP/ Polling DSI read ready timeout!!!
DISP/---------- Start dump DSI registers ----------
DISP/DSI+0000 : 0x00000001
DISP/DSI+0004 : 0x00000000
DISP/DSI+0008 : 0x00000003
DISP/DSI+000c : 0x80000000
DISP/DSI+0010 : 0x00000000
DISP/DSI+0014 : 0x00000000
DISP/DSI+0018 : 0x0001000c
DISP/DSI+001c : 0x00030654
DISP/DSI+0020 : 0x00000000
DISP/DSI+0024 : 0x00000000
DISP/DSI+0028 : 0x00000000
DISP/DSI+002c : 0x000003c0
DISP/DSI+0030 : 0x00000000
DISP/DSI+0034 : 0x00000000
DISP/DSI+0038 : 0x00000000
DISP/DSI+003c : 0x00000000
DISP/DSI+0040 : 0x00000000
DISP/DSI+0044 : 0x00000000
DISP/DSI+0048 : 0x00000000
DISP/DSI+004c : 0x00000000
DISP/DSI+0050 : 0x00000000
DISP/DSI+0054 : 0x00000000
DISP/DSI+0058 : 0x00000000
DISP/DSI+005c : 0x00000000
DISP/DSI+0060 : 0x00000001
DISP/DSI+0064 : 0x00000654
DISP/DSI+0068 : 0x00000000
DISP/DSI+006c : 0x00000000
DISP/DSI+0070 : 0x00000000
DISP/DSI+0074 : 0x00000000
DISP/DSI+0078 : 0x00000000
DISP/DSI+007c : 0x00000000
DISP/DSI+0080 : 0x00000000
DISP/DSI+0084 : 0x00000000
DISP/DSI+0088 : 0x00000020
DISP/DSI+008c : 0x00000000
DISP/DSI+0090 : 0x0000003c
DISP/DSI+0094 : 0x00000000
DISP/DSI+0098 : 0x00000000
DISP/DSI+009c : 0x00000000
DISP/DSI+00a0 : 0x00000000
DISP/DSI+00a4 : 0x00000000
DISP/DSI+00a8 : 0x00000000
DISP/DSI+00ac : 0x00000000
DISP/DSI+00b0 : 0x00000000
DISP/DSI+00b4 : 0x00000000
DISP/DSI+00b8 : 0x00000000
DISP/DSI+00bc : 0x00000000
DISP/DSI+00c0 : 0x00000000
DISP/DSI+00c4 : 0x00000000
DISP/DSI+00c8 : 0x00000000
DISP/DSI+00cc : 0x00000000
DISP/DSI+00d0 : 0x00000000
DISP/DSI+00d4 : 0x00000000
DISP/DSI+00d8 : 0x00000000
DISP/DSI+00dc : 0x00000000
DISP/DSI+00e0 : 0x00000000
DISP/DSI+00e4 : 0x00000000
DISP/DSI+00e8 : 0x00000000
DISP/DSI+00ec : 0x00000000
DISP/DSI+00f0 : 0x00000000
DISP/DSI+00f4 : 0x00000000
DISP/DSI+00f8 : 0x00000000
DISP/DSI+00fc : 0x00000000
DISP/DSI+0100 : 0x00000000
DISP/DSI+0104 : 0x00000000
DISP/DSI+0108 : 0x00000000
DISP/DSI+010c : 0x00000000
DISP/DSI+0110 : 0x0f080504
DISP/DSI+0114 : 0x08140610
DISP/DSI+0118 : 0x10130000
DISP/DSI+011c : 0x00080e04
DISP/DSI+0120 : 0x00000000
DISP/DSI+0124 : 0x00000000
DISP/DSI+0128 : 0x00000000
DISP/DSI+012c : 0x00000000
DISP/DSI+0130 : 0x00000000
DISP/DSI+0134 : 0x00000000
DISP/DSI+0138 : 0x00000000
DISP/DSI+013c : 0x00000000
DISP/DSI+0140 : 0x00000000
DISP/DSI+0144 : 0x0000ffff
DISP/DSI+0148 : 0x00010001
DISP/DSI+014c : 0x01010100
DISP/DSI+0150 : 0x01080001
DISP/DSI+0154 : 0x01010101
DISP/DSI+0158 : 0x00000101
DISP/DSI+015c : 0x00000000
DISP/DSI+0160 : 0x00010200
DISP/DSI+0164 : 0x00000001
DISP/DSI+0168 : 0x00000000
DISP/DSI+016c : 0x00000000
DISP/DSI+0170 : 0x00000000
DISP/DSI+0174 : 0xfff00000
DISP/DSI+0178 : 0x00000000
DISP/DSI+017c : 0x00200000
DISP/DSI_CMD+0000(0x1400d180) : 0x000a0604
DISP/DSI_CMD+0004(0x1400d184) : 0x0300002b
DISP/DSI_CMD+0008(0x1400d188) : 0x000000bf
DISP/DSI_CMD+000c(0x1400d18c) : 0x037e0366
DISP/DSI_CMD+0010(0x1400d190) : 0x03b1039f
DISP/DSI_CMD+0014(0x1400d194) : 0x000000cf
DISP/DSI_CMD+0018(0x1400d198) : 0x00000000
DISP/DSI_CMD+001c(0x1400d19c) : 0x00000000
DISP/DSI_CMD+0020(0x1400d1a0) : 0x51014000
DISP/DSI_CMD+0024(0x1400d1a4) : 0x01000100
DISP/DSI_CMD+0028(0x1400d1a8) : 0x66f1d735
DISP/DSI_CMD+002c(0x1400d1ac) : 0xd501e511
DISP/DSI_CMD+0030(0x1400d1b0) : 0xe632c798
DISP/DSI_CMD+0034(0x1400d1b4) : 0x1d4c9951
DISP/DSI_CMD+0038(0x1400d1b8) : 0xe55455dc
DISP/DSI_CMD+003c(0x1400d1bc) : 0x5130e7ba
DISP/DSI_CMD+0040(0x1400d1c0) : 0xf5d69cdd
DISP/DSI_CMD+0044(0x1400d1c4) : 0x40d66531
DISP/DSI_CMD+0048(0x1400d1c8) : 0x746c7507
DISP/DSI_CMD+004c(0x1400d1cc) : 0x545d454f
DISP/DSI_CMD+0050(0x1400d1d0) : 0x39445771
DISP/DSI_CMD+0054(0x1400d1d4) : 0x5d5b3554
DISP/DSI_CMD+0058(0x1400d1d8) : 0x5bf5b714
DISP/DSI_CMD+005c(0x1400d1dc) : 0x15584334
DISP/DSI_CMD+0060(0x1400d1e0) : 0xc1741f7d
DISP/DSI_CMD+0064(0x1400d1e4) : 0x54ede744
DISP/DSI_CMD+0068(0x1400d1e8) : 0x16145477
DISP/DSI_CMD+006c(0x1400d1ec) : 0x5cd35d54
DISP/DSI_CMD+0070(0x1400d1f0) : 0x68459059
DISP/DSI_CMD+0074(0x1400d1f4) : 0xcd94551d
DISP/DSI_CMD+0078(0x1400d1f8) : 0x92445dd1
DISP/DSI_CMD+007c(0x1400d1fc) : 0x4fe3f85b
DISP/DSI_PHY+0000(0x10012800) : 0x00008000
DISP/DSI_PHY+0004(0x10012804) : 0x00008000
DISP/DSI_PHY+0008(0x10012808) : 0x00008000
DISP/DSI_PHY+000c(0x1001280c) : 0x00008000
DISP/DSI_PHY+0010(0x10012810) : 0x00008000
DISP/DSI_PHY+0014(0x10012814) : 0x00008000
DISP/DSI_PHY+0018(0x10012818) : 0x00008000
DISP/DSI_PHY+001c(0x1001281c) : 0x00008000
DISP/DSI_PHY+0020(0x10012820) : 0x00000000
DISP/DSI_PHY+0024(0x10012824) : 0x24248800
DISP/DSI_PHY+0028(0x10012828) : 0x24242424
DISP/DSI_PHY+002c(0x1001282c) : 0x00000000
DISP/DSI_PHY+0030(0x10012830) : 0x00000000
Check LCM Status: 0x0000008c
[LK]DISP_GetPages: disp_fb_pages=2!
DISP/[Func]LCD_ConfigOVL
ASSERT error OVLLayerSwitch,89
ASSERT error OVLLayerConfig,161
ASSERT error OVLLayerSwitch,89
ASSERT error OVLLayerConfig,161
DISP/Wait for TE_RDY timeout!!!
DISP/---------- Start dump DSI registers ----------
DISP/DSI+0000 : 0x00000001
DISP/DSI+0004 : 0x00000000
DISP/DSI+0008 : 0x00000003
DISP/DSI+000c : 0x80000000
DISP/DSI+0010 : 0x00000000
DISP/DSI+0014 : 0x00000000
DISP/DSI+0018 : 0x0001000c
DISP/DSI+001c : 0x00030654
DISP/DSI+0020 : 0x00000000
DISP/DSI+0024 : 0x00000000
DISP/DSI+0028 : 0x00000000
DISP/DSI+002c : 0x000003c0
DISP/DSI+0030 : 0x00000000
DISP/DSI+0034 : 0x00000000
DISP/DSI+0038 : 0x00000000
DISP/DSI+003c : 0x00000000
DISP/DSI+0040 : 0x00000000
DISP/DSI+0044 : 0x00000000
DISP/DSI+0048 : 0x00000000
DISP/DSI+004c : 0x00000000
DISP/DSI+0050 : 0x00000000
DISP/DSI+0054 : 0x00000000
DISP/DSI+0058 : 0x00000000
DISP/DSI+005c : 0x00000000
DISP/DSI+0060 : 0x00000001
DISP/DSI+0064 : 0x00000654
DISP/DSI+0068 : 0x00000000
DISP/DSI+006c : 0x00000000
DISP/DSI+0070 : 0x00000000
DISP/DSI+0074 : 0x00000000
DISP/DSI+0078 : 0x00000000
DISP/DSI+007c : 0x00000000
DISP/DSI+0080 : 0x00000000
DISP/DSI+0084 : 0x00000000
DISP/DSI+0088 : 0x00000020
DISP/DSI+008c : 0x00000000
DISP/DSI+0090 : 0x0000003c
DISP/DSI+0094 : 0x00000000
DISP/DSI+0098 : 0x00000000
DISP/DSI+009c : 0x00000000
DISP/DSI+00a0 : 0x00000000
DISP/DSI+00a4 : 0x00000000
DISP/DSI+00a8 : 0x00000000
DISP/DSI+00ac : 0x00000000
DISP/DSI+00b0 : 0x00000000
DISP/DSI+00b4 : 0x00000000
DISP/DSI+00b8 : 0x00000000
DISP/DSI+00bc : 0x00000000
DISP/DSI+00c0 : 0x00000000
DISP/DSI+00c4 : 0x00000000
DISP/DSI+00c8 : 0x00000000
DISP/DSI+00cc : 0x00000000
DISP/DSI+00d0 : 0x00000000
DISP/DSI+00d4 : 0x00000000
DISP/DSI+00d8 : 0x00000000
DISP/DSI+00dc : 0x00000000
DISP/DSI+00e0 : 0x00000000
DISP/DSI+00e4 : 0x00000000
DISP/DSI+00e8 : 0x00000000
DISP/DSI+00ec : 0x00000000
DISP/DSI+00f0 : 0x00000000
DISP/DSI+00f4 : 0x00000000
DISP/DSI+00f8 : 0x00000000
DISP/DSI+00fc : 0x00000000
DISP/DSI+0100 : 0x00000000
DISP/DSI+0104 : 0x00000000
DISP/DSI+0108 : 0x00000000
DISP/DSI+010c : 0x00000000
DISP/DSI+0110 : 0x0f080504
DISP/DSI+0114 : 0x08140610
DISP/DSI+0118 : 0x10130000
DISP/DSI+011c : 0x00080e04
DISP/DSI+0120 : 0x00000000
DISP/DSI+0124 : 0x00000000
DISP/DSI+0128 : 0x00000000
DISP/DSI+012c : 0x00000000
DISP/DSI+0130 : 0x00000000
DISP/DSI+0134 : 0x00000000
DISP/DSI+0138 : 0x00000000
DISP/DSI+013c : 0x00000000
DISP/DSI+0140 : 0x00000000
DISP/DSI+0144 : 0x0000ffff
DISP/DSI+0148 : 0x00010001
DISP/DSI+014c : 0x01010100
DISP/DSI+0150 : 0x01080001
DISP/DSI+0154 : 0x01010101
DISP/DSI+0158 : 0x00000101
DISP/DSI+015c : 0x00000000
DISP/DSI+0160 : 0x00010800
DISP/DSI+0164 : 0x00000001
DISP/DSI+0168 : 0x00000000
DISP/DSI+016c : 0x00000000
DISP/DSI+0170 : 0x00000000
DISP/DSI+0174 : 0xfff00000
DISP/DSI+0178 : 0x00000000
DISP/DSI+017c : 0x00200000
DISP/DSI_CMD+0000(0x1400d180) : 0x00000020
DISP/DSI_CMD+0004(0x1400d184) : 0x0300002b
DISP/DSI_CMD+0008(0x1400d188) : 0x000000bf
DISP/DSI_CMD+000c(0x1400d18c) : 0x037e0366
DISP/DSI_CMD+0010(0x1400d190) : 0x03b1039f
DISP/DSI_CMD+0014(0x1400d194) : 0x000000cf
DISP/DSI_CMD+0018(0x1400d198) : 0x00000000
DISP/DSI_CMD+001c(0x1400d19c) : 0x00000000
DISP/DSI_CMD+0020(0x1400d1a0) : 0x51014000
DISP/DSI_CMD+0024(0x1400d1a4) : 0x01000100
DISP/DSI_CMD+0028(0x1400d1a8) : 0x66f1d735
DISP/DSI_CMD+002c(0x1400d1ac) : 0xd501e511
DISP/DSI_CMD+0030(0x1400d1b0) : 0xe632c798
DISP/DSI_CMD+0034(0x1400d1b4) : 0x1d4c9951
DISP/DSI_CMD+0038(0x1400d1b8) : 0xe55455dc
DISP/DSI_CMD+003c(0x1400d1bc) : 0x5130e7ba
DISP/DSI_CMD+0040(0x1400d1c0) : 0xf5d69cdd
DISP/DSI_CMD+0044(0x1400d1c4) : 0x40d66531
DISP/DSI_CMD+0048(0x1400d1c8) : 0x746c7507
DISP/DSI_CMD+004c(0x1400d1cc) : 0x545d454f
DISP/DSI_CMD+0050(0x1400d1d0) : 0x39445771
DISP/DSI_CMD+0054(0x1400d1d4) : 0x5d5b3554
DISP/DSI_CMD+0058(0x1400d1d8) : 0x5bf5b714
DISP/DSI_CMD+005c(0x1400d1dc) : 0x15584334
DISP/DSI_CMD+0060(0x1400d1e0) : 0xc1741f7d
DISP/DSI_CMD+0064(0x1400d1e4) : 0x54ede744
DISP/DSI_CMD+0068(0x1400d1e8) : 0x16145477
DISP/DSI_CMD+006c(0x1400d1ec) : 0x5cd35d54
DISP/DSI_CMD+0070(0x1400d1f0) : 0x68459059
DISP/DSI_CMD+0074(0x1400d1f4) : 0xcd94551d
DISP/DSI_CMD+0078(0x1400d1f8) : 0x92445dd1
DISP/DSI_CMD+007c(0x1400d1fc) : 0x4fe3f85b
DISP/DSI_PHY+0000(0x10012800) : 0x00008000
DISP/DSI_PHY+0004(0x10012804) : 0x00008000
DISP/DSI_PHY+0008(0x10012808) : 0x00008000
DISP/DSI_PHY+000c(0x1001280c) : 0x00008000
DISP/DSI_PHY+0010(0x10012810) : 0x00008000
DISP/DSI_PHY+0014(0x10012814) : 0x00008000
DISP/DSI_PHY+0018(0x10012818) : 0x00008000
DISP/DSI_PHY+001c(0x1001281c) : 0x00008000
DISP/DSI_PHY+0020(0x10012820) : 0x00000000
DISP/DSI_PHY+0024(0x10012824) : 0x24248800
DISP/DSI_PHY+0028(0x10012828) : 0x24242424
DISP/DSI_PHY+002c(0x1001282c) : 0x00000000
DISP/DSI_PHY+0030(0x10012830) : 0x00000000
[LK]DISP_GetPages: disp_fb_pages=2!
DISP/[Func]LCD_ConfigOVL
ASSERT error OVLLayerSwitch,89
ASSERT error OVLLayerConfig,161
ASSERT error OVLLayerSwitch,89
ASSERT error OVLLayerConfig,161
[wwy] hardware address = bfdfd000, fb_offset_logo = 3
[LK]DISP_GetPages: disp_fb_pages=2!
DISP/[Func]LCD_ConfigOVL
ASSERT error OVLLayerSwitch,89
ASSERT error OVLLayerConfig,161
ASSERT error OVLLayerSwitch,89
ASSERT error OVLLayerConfig,161
[LK]DISP_GetPages: disp_fb_pages=2!
DISP/[Func]LCD_ConfigOVL
ASSERT error OVLLayerSwitch,89
ASSERT error OVLLayerConfig,161
ASSERT error OVLLayerSwitch,89
ASSERT error OVLLayerConfig,161
[PROFILE] ------- load_logo takes 767 ms -------- 
kpd read addr: 0x0502: data:0x400c
kpd register for pmic set!
[LEDS]LK: mt65xx_backlight_on 
[LEDS]LK: lcd-backlight level is 255 
[DDP] disp_bls_set_backlight: 255, PWM div 36
[PROFILE] ------- backlight takes 103 ms -------- 

[FACTORY] Check factory boot
[FACTORY] Wait 50ms for special keys
detecting pmic just reset

[BOOT_MENU] Check  boot menu
[BOOT_MENU] Wait 50ms for special keys
[mboot_recovery_load_misc]: size is 6144
[mboot_recovery_load_misc]: misc_addr is 0x81e5d914
[mt_part_get_partition] MISC
[mt_part_get_partition] 1cc00
[LK_BOOT] Load 'MISC' partition to 0x81E5D914 (6144 bytes in 1 ms)

[RECOVERY] Check recovery boot
[RECOVERY] Wait 50ms for special keys
detecting pmic just reset
[mboot_recovery_load_misc]: size is 6144
[mboot_recovery_load_misc]: misc_addr is 0x81e5f120
[mt_part_get_partition] MISC
[mt_part_get_partition] 1cc00
[LK_BOOT] Load 'MISC' partition to 0x81E5F120 (6144 bytes in 1 ms)
[pmic_detect_powerkey] Release
WDT get boot reason is 4 from pre-loader
[is_force_boot] Bypass Kernel Power off charging mode and enter Normal Boot
[kernel_power_off_charging_detection] Turn off HW Led
< Kernel Enter Normal Boot > 
[PROFILE] ------- boot mode select takes 155 ms -------- 
[partition_get_index]find preloader PRELOADER index 0
[partition_get_index]find seccfg SECURE index 8
[mt_part_get_partition] SECURE
[mt_part_get_partition] 13800
[partition_get_index]find sec_ro SECSTATIC index 12
[mt_part_get_partition] SECSTATIC
[mt_part_get_partition] 19c00
[partition_get_index]find seccfg SECURE index 8
[partition_get_index]find seccfg SECURE index 8
[partition_get_index]find seccfg SECURE index 8
[partition_get_index]find seccfg SECURE index 8
[partition_get_index]find seccfg SECURE index 8
[partition_get_index]find seccfg SECURE index 8
[partition_get_index]find seccfg SECURE index 8
[partition_get_index]find seccfg SECURE index 8
[partition_get_index]find seccfg SECURE index 8
[partition_get_index]find seccfg SECURE index 8
[partition_get_index]find seccfg SECURE index 8
[partition_get_index]find seccfg SECURE index 8
[partition_get_index]find seccfg SECURE index 8
[partition_get_index]find seccfg SECURE index 8
[partition_get_index]find seccfg SECURE index 8
[partition_get_index]find seccfg SECURE index 8
[partition_get_index]find seccfg SECURE index 8
[partition_get_index]find seccfg SECURE index 8
[partition_get_index]find seccfg SECURE index 8
[partition_get_index]find seccfg SECURE index 8
[partition_get_index]find seccfg SECURE index 8
[partition_get_index]find seccfg SECURE index 8
[partition_get_index]find seccfg SECURE index 8
[partition_get_index]find seccfg SECURE index 8
[partition_get_index]find seccfg SECURE index 8
[partition_get_index]find seccfg SECURE index 8
[partition_get_index]find seccfg SECURE index 8
[partition_get_index]find seccfg SECURE index 8
[partition_get_index]find seccfg SECURE index 8
[SEC_CFG] seccfg magic is incorrect
[SEC_INIT] sec_func_init -- fail to search seccfg
[AUXADC] u4Sample_times=1, ret_data=802, u4channel[0]=802.
[AUXADC] adc_result_temp=802, adc_result=3759, r_val_temp=4.
check VBAT=3759 mV with 3450 mV
[bq24158_hw_init] (0x06,0x77)
--------------------------------------------------
--------------------------------------------------
[bq24158_config_interface] Reg[6]=0x77
[bq24158_config_interface] write Reg[6]=0x77
[bq24158_config_interface] Check Reg[6]=0x77
[bq24158_config_interface] write Reg[6]=0x77
--------------------------------------------------
[bq24158_read_interface] Reg[6]=0x77
[bq24158_read_interface] val=0x77
[bq24158_config_interface] Check Reg[6]=0x77
[mt65xx_bat_init] bq24158 hw init
[bq24158_dump_register] Reg[0x0]=0x0
[bq24158_dump_register] Reg[0x1]=0x30
[bq24158_dump_register] Reg[0x2]=0x8E
[bq24158_dump_register] Reg[0x3]=0x51
[bq24158_dump_register] Reg[0x4]=0x1B
[bq24158_dump_register] Reg[0x5]=0xC
[bq24158_dump_register] Reg[0x6]=0x77
[MT BAT_probe] ChargerHwInit
--------------------------------------------------
--------------------------------------------------
[bq24158_config_interface] Reg[6]=0x77
[bq24158_config_interface] write Reg[6]=0x77
[bq24158_config_interface] Check Reg[6]=0x77
[bq24158_config_interface] write Reg[6]=0x77
--------------------------------------------------
[bq24158_read_interface] Reg[6]=0x77
[bq24158_read_interface] val=0x77
[bq24158_config_interface] Check Reg[6]=0x77
--------------------------------------------------
--------------------------------------------------
[bq24158_config_interface] Reg[0]=0x80
[bq24158_config_interface] write Reg[0]=0x80
[bq24158_config_interface] Check Reg[0]=0x80
[bq24158_config_interface] write Reg[0]=0x80
--------------------------------------------------
[bq24158_read_interface] Reg[0]=0x80
[bq24158_read_interface] val=0x80
[bq24158_config_interface] Check Reg[0]=0x80
--------------------------------------------------
--------------------------------------------------
[bq24158_config_interface] Reg[1]=0x30
[bq24158_config_interface] write Reg[1]=0xb1
[bq24158_config_interface] Check Reg[1]=0xb1
[bq24158_config_interface] write Reg[1]=0xb1
--------------------------------------------------
[bq24158_read_interface] Reg[1]=0xb1
[bq24158_read_interface] val=0xb1
[bq24158_config_interface] Check Reg[1]=0xb1
--------------------------------------------------
--------------------------------------------------
[bq24158_config_interface] Reg[2]=0x8e
[bq24158_config_interface] write Reg[2]=0xaa
[bq24158_config_interface] Check Reg[2]=0xaa
[bq24158_config_interface] write Reg[2]=0xaa
--------------------------------------------------
[bq24158_read_interface] Reg[2]=0xaa
[bq24158_read_interface] val=0xaa
[bq24158_config_interface] Check Reg[2]=0xaa
--------------------------------------------------
--------------------------------------------------
[bq24158_config_interface] Reg[5]=0x4
[bq24158_config_interface] write Reg[5]=0x4
[bq24158_config_interface] Check Reg[5]=0x4
[bq24158_config_interface] write Reg[5]=0x4
--------------------------------------------------
[bq24158_read_interface] Reg[5]=0x4
[bq24158_read_interface] val=0x4
[bq24158_config_interface] Check Reg[5]=0x4
--------------------------------------------------
--------------------------------------------------
[bq24158_config_interface] Reg[4]=0x1b
[bq24158_config_interface] write Reg[4]=0x1b
[bq24158_config_interface] Check Reg[4]=0x1b
[bq24158_config_interface] write Reg[4]=0x1b
--------------------------------------------------
[bq24158_read_interface] Reg[4]=0x1b
[bq24158_read_interface] val=0x1b
[bq24158_config_interface] Check Reg[4]=0x1b
[BATTERY] pchr_turn_on_charging_bq24158 !
--------------------------------------------------
--------------------------------------------------
[bq24158_config_interface] Reg[1]=0xb1
[bq24158_config_interface] write Reg[1]=0x78
[bq24158_config_interface] Check Reg[1]=0x78
[bq24158_config_interface] write Reg[1]=0x78
--------------------------------------------------
[bq24158_read_interface] Reg[1]=0x78
[bq24158_read_interface] val=0x78
[bq24158_config_interface] Check Reg[1]=0x78
[BATTERY:bq24158] default set g_temp_CC_value = USB_CHARGER_CURRENT 
[BATTERY] charger enable !
[BATTERY] check_point_sync_leds  battery_level = -352321538 
[LEDS]LK: red level is 255 
[LEDS]LED PMIC#6:255
[LEDS]LK: green level is 0 
[LEDS]LED PMIC#7:0
[LEDS]LK: blue level is 0 
[LEDS]LED PMIC#8:0
[PROFILE] ------- battery init takes 51 ms -------- 
show_logo, in_addr=0xbf7000a4, fb_addr=0xbfb00000, logolen=3022, ticks=5919
ticks=5928
[wwy] hardware address = bfb00000, fb_offset_logo = 0
[LK]DISP_GetPages: disp_fb_pages=2!
DISP/[Func]LCD_ConfigOVL
ASSERT error OVLLayerSwitch,89
ASSERT error OVLLayerConfig,161
ASSERT error OVLLayerSwitch,89
ASSERT error OVLLayerConfig,161
[PROFILE] ------- show logo takes 13 ms -------- 
[PROFILE] ------- sw_env takes 0 ms -------- 
[PROFILE] ------- platform_init takes 1256 ms -------- 
[mt_part_get_partition] PRO_INFO
[mt_part_get_partition] 5800
[LK_BOOT] Load 'PRO_INFO' partition to 0x81E5949C (19 bytes in 0 ms)
[mt_part_get_partition] BOOTIMG
[mt_part_get_partition] 13c00
[mt_part_get_partition] BOOTIMG
[mt_part_get_partition] 13c00
part page addr is 0xd

============================================================
[LK_BOOT] Android Partition Name     	        : BOOTIMG
[LK_BOOT] Android Boot IMG Hdr - Magic 	        : ANDROID
[LK_BOOT] Android Boot IMG Hdr - Kernel Size 	: 0x4bd540
[LK_BOOT] Android Boot IMG Hdr - Rootfs Size 	: 0x10a917
[LK_BOOT] Android Boot IMG Hdr - Page Size    	: 0x800
============================================================
 > page count of kernel image = 2427
 > kernel mem offset = 0x80008000
 > rootfs mem offset = 0x804c5800
 > boot image size = 0x5c9800
[mt_part_get_partition] BOOTIMG
[mt_part_get_partition] 13c00

read the data of BOOTIMG (size = 0x5c9800)
 > from - 0x0000000002780800 (skip boot img hdr)
 > to   - 0x80007e00 (starts with kernel img hdr)

=========================================
[LK_BOOT] KERNEL magic number : 0x58881688
[LK_BOOT] KERNEL name         : KERNEL
[LK_BOOT] KERNEL size         : 0x4bd340
=========================================

=========================================
[LK_BOOT] ROOTFS magic number : 0x58881688
[LK_BOOT] ROOTFS name         : ROOTFS
[LK_BOOT] ROOTFS size         : 0x10a717
=========================================
[PROFILE] ------- load boot.img takes 115 ms -------- 
[LK]DISP_GetPages: disp_fb_pages=2!
DISP/[Func]LCD_ConfigOVL
ASSERT error OVLLayerSwitch,89
ASSERT error OVLLayerConfig,161
ASSERT error OVLLayerSwitch,89
ASSERT error OVLLayerConfig,161
DISP/[Func]LCD_ConfigOVL
ASSERT error OVLLayerSwitch,89
ASSERT error OVLLayerConfig,161
ASSERT error OVLLayerSwitch,89
ASSERT error OVLLayerConfig,161
lcd one 15289 
[wwy] mt_disp_adjusting_hardware_addr fb_offset_logo = 3
SSSS:0x80060244
SSSS:0x0
SSSS:0x0
SSSS:0x30
[PROFILE] ------- boot_time takes 2206 ms -------- 
[LK_ENV]get_env hibboot
[LK_ENV]get_env hibboot
[LK_ENV]get_env resume
booting linux @ 0x80008000, ramdisk @ 0x84000000 (1091351)
[LEDS]LK: leds_deinit: LEDS off 
[LEDS]LK: red level is 0 
[LEDS]LED PMIC#6:0
DRAM Rank :2
DRAM Rank[0] Size = 0x20000000
DRAM Rank[1] Size = 0x20000000
cmdline: console=tty0 console=ttyMT3,921600n1 root=/dev/ram lcm=1-nt35516_qhd_dsi_cmd fps=6540 lcm_type=1 pl_t=3857 lk_t=2206 printk.disable_uart=1 boot_reason=4 androidboot.serialno=4101732565
lk boot time = 2206 ms
lk boot mode = 0
lk finished --> jump to linux kernel

<hit enter to activate fiq debugger>
mount: mounting configfs on /config failed: No such device
### postmarketOS initramfs ###
NOTE: All output from the initramfs gets redirected to:
/pmOS_init.log
If you want to disable this behavior (e.g. because you're
debugging over serial), please add this to your kernel
command line: PMOS_NO_OUTPUT_REDIRECT