· 9 years ago · Oct 05, 2016, 07:46 AM
1
2
31
42
53
64
75
86
97
108
119
1210
1311
1412
1513
1614
1715
1816
1917
2018
2119
2220
2321
2422
2523
2624
2725
2826
2927
3028
3129
3230
3331
3432
3533
3634
3735
3836
3937
4038
4139
4240
4341
4442
4543
4644
4745
4846
4947
5048
5149
5250
5351
5452
5553
5654
5755
5856
5957
6058
6159
6260
6361
6462
6563
6664
6765
6866
6967
7068
7169
7270
7371
7472
7573
7674
7775
7876
7977
8078
8179
8280
8381
8482
8583
8684
8785
8886
8987
9088
9189
9290
9391
9492
9593
9694
9795
9896
9997
10098
10199
102100
103101
104102
105103
106104
107105
108106
109107
110108
111109
112110
113111
114112
115113
116114
117115
118116
119117
120118
121119
122120
123121
124122
125123
126124
127125
128126
129127
130128
131129
132130
133131
134132
135133
136134
137135
138136
139137
140138
141139
142140
143141
144142
145143
146144
147145
148146
149147
150148
151149
152150
153151
154152
155153
156154
157155
158156
159157
160158
161159
162160
163161
164162
165163
166164
167165
168166
169167
170168
171169
172170
173171
174172
175173
176174
177175
178176
179177
180178
181179
182180
183181
184182
185183
186184
187185
188186
189187
190188
191189
192190
193191
194192
195193
196194
197195
198196
199197
200198
201199
202200
203201
204202
205203
206204
207205
208206
209207
210208
211209
212210
213211
214212
215213
216214
217215
218216
219217
220218
221219
222220
223221
224222
225223
226224
227225
228226
229227
230228
231229
232230
233231
234232
235233
236234
237235
238236
239237
240238
241239
242240
243241
244242
245243
246244
247245
248246
249247
250248
251249
252250
253251
254252
255253
256254
257255
258256
259257
260258
261259
262260
263261
264262
265263
266264
267265
268266
269267
270268
271269
272270
273271
274272
275273
276274
277275
278276
279277
280278
281279
282280
283281
284282
285283
286284
287285
288286
289287
290288
291289
292290
293291
294292
295293
296294
297295
298296
299297
300298
301299
302300
303301
304302
305303
306304
307305
308306
309307
310308
311309
312310
313311
314312
315313
316314
317315
318316
319317
320318
321319
322320
323321
324322
325323
326324
327325
328326
329327
330328
331329
332330
333331
334332
335333
336334
337335
338336
339337
340338
341339
342340
343341
344342
345343
346344
347345
348346
349347
350348
351349
352350
353351
354352
355353
356354
357355
358356
359357
360358
361359
362360
363361
364362
365363
366364
367365
368366
369367
370368
371369
372370
373371
374372
375373
376374
377375
378376
379377
380378
381379
382380
383381
384382
385383
386384
387385
388386
389387
390388
391389
392390
393391
394392
395393
396394
397395
398396
399397
400398
401399
402400
403401
404402
405403
406404
407405
408406
409407
410408
411409
412410
413411
414412
415413
416414
417415
418416
419417
420418
421419
422420
423421
424422
425423
426424
427425
428426
429427
430428
431429
432430
433431
434432
435433
436434
437435
438436
439437
440438
441439
442440
443441
444442
445443
446444
447445
448446
449447
450448
451449
452450
453451
454452
455453
456454
457455
458456
459457
460458
461459
462460
463461
464462
465463
466464
467465
468466
469467
470468
471469
472470
473471
474472
475473
476474
477475
478476
479477
480478
481479
482480
483481
484482
485483
486484
487485
488486
489487
490488
491489
492490
493491
494492
495493
496494
497495
498496
499497
500498
501499
502500
503501
504502
505503
506504
507505
508506
509507
510508
511509
512510
513511
514512
515513
516514
517515
518516
519517
520518
521519
522520
523521
524522
525523
526524
527525
528526
529527
530528
531529
532530
533531
534532
535533
536534
537535
538536
539537
540538
541539
542540
543541
544542
545543
546544
547545
548546
549547
550548
551549
552550
553551
554552
555553
556554
557555
558556
559557
560558
561559
562560
563561
564562
565563
566564
567565
568566
569567
570568
571569
572570
573571
574572
575573
576574
577575
578576
579577
580578
581579
582580
583581
584582
585583
586584
587585
588586
589587
590588
591589
592590
593591
594592
595593
596594
597595
598596
599597
600598
601599
602600
603601
604602
605603
606604
607605
608606
609607
610608
611609
612610
613611
614612
615613
616614
617615
618616
619617
620618
621619
622620
623621
624622
625623
626624
627625
628626
629627
630628
631629
632630
633631
634632
635633
636634
637635
638636
639637
640638
641639
642640
643641
644642
645643
646644
647645
648646
649647
650648
651649
652650
653651
654652
655653
656654
657655
658656
659657
660658
661659
662660
663661
664662
665663
666664
667665
668666
669667
670668
671669
672670
673671
674672
675673
676674
677675
678676
679677
680678
681679
682680
683681
684682
685683
686684
687685
688686
689687
690688
691689
692690
693691
694692
695693
696694
697695
698696
699697
700698
701699
702700
703701
704702
705703
706704
707705
708706
709707
710708
711709
712710
713711
714712
715713
716714
717715
718716
719717
720718
721719
722720
723721
724722
725723
726724
727725
728726
729727
730728
731729
732730
733731
734732
735733
736734
737735
738736
739737
740738
741739
742740
743741
744742
745743
746744
747745
748746
749747
750748
751749
752750
753751
754752
755753
756754
757755
758756
759757
760758
761759
762760
763761
764762
765763
766764
767765
768766
769767
770768
771769
772770
773771
774772
775773
776774
777775
778776
779777
780778
781779
782780
783781
784782
785783
786784
787785
788786
789787
790788
791789
792790
793791
794792
795793
796794
797795
798796
799797
800798
801799
802800
803801
804802
805803
806804
807805
808806
809807
810808
811809
812810
813811
814812
815813
816814
817815
818816
819817
820818
821819
822820
823821
824822
825823
826824
827825
828826
829827
830828
831829
832830
833831
834832
835833
836834
837835
838836
839837
840838
841839
842840
843841
844842
845843
846844
847845
848846
849847
850848
851849
852850
853851
854852
855853
856854
857855
858856
859857
860858
861859
862860
863861
864862
865863
866864
867865
868866
869867
870868
871869
872870
873871
874872
875873
876874
877875
878876
879877
880878
881879
882880
883881
884882
885883
886884
887885
888886
889887
890888
891889
892890
893891
894892
895893
896894
897895
898896
899897
900898
901899
902900
903901
904902
905903
906904
907905
908906
909907
910908
911909
912910
913911
914912
915913
916914
917915
918916
919917
920918
921919
922920
923921
924922
925923
926924
927925
928926
929927
930928
931929
932930
933931
934932
935933
936934
937935
938936
939937
940938
941939
942940
943941
944942
945943
946944
947945
948946
949947
950948
951949
952950
953951
954952
955953
956954
957955
958956
959957
960958
961959
962960
963961
964962
965963
966964
967965
968966
969967
970968
971969
972970
973971
974972
975973
976974
977975
978976
979977
980978
981979
982980
983981
984982
985983
986984
987985
988986
989987
990988
991989
992990
993991
994992
995993
996994
997995
998996
999997
1000998
1001999
10021000
10031001
10041002
10051003
10061004
10071005
10081006
10091007
10101008
10111009
10121010
10131011
10141012
10151013
10161014
10171015
10181016
10191017
10201018
10211019
10221020
10231021
10241022
10251023
10261024
10271025
10281026
10291027
10301028
10311029
10321030
10331031
10341032
10351033
10361034
10371035
10381036
10391037
10401038
10411039
10421040
10431041
10441042
10451043
10461044
10471045
10481046
10491047
10501048
10511049
10521050
10531051
10541052
10551053
10561054
10571055
10581056
10591057
10601058
10611059
10621060
10631061
10641062
10651063
10661064
10671065
10681066
10691067
10701068
10711069
10721070
10731071
10741072
10751073
10761074
10771075
10781076
10791077
10801078
10811079
10821080
10831081
10841082
10851083
10861084
10871085
10881086
10891087
10901088
10911089
10921090
10931091
10941092
10951093
10961094
10971095
10981096
10991097
11001098
11011099
11021100
11031101
11041102
11051103
11061104
11071105
11081106
11091107
11101108
11111109
11121110
11131111
11141112
11151113
11161114
11171115
11181116
11191117
11201118
11211119
11221120
11231121
11241122
11251123
11261124
11271125
11281126
11291127
11301128
11311129
11321130
11331131
11341132
11351133
11361134
11371135
11381136
11391137
11401138
11411139
11421140
11431141
11441142
11451143
11461144
11471145
11481146
11491147
11501148
11511149
11521150
11531151
11541152
11551153
11561154
11571155
11581156
11591157
11601158
11611159
11621160
11631161
11641162
11651163
11661164
11671165
11681166
11691167
11701168
11711169
11721170
11731171
11741172
11751173
11761174
11771175
11781176
11791177
11801178
11811179
11821180
11831181
11841182
11851183
11861184
11871185
11881186
11891187
11901188
11911189
11921190
11931191
11941192
11951193
11961194
11971195
11981196
11991197
12001198
12011199
12021200
12031201
12041202
12051203
12061204
12071205
12081206
12091207
12101208
12111209
12121210
12131211
12141212
12151213
12161214
12171215
12181216
12191217
12201218
12211219
12221220
12231221
12241222
12251223
12261224
12271225
12281226
12291227
12301228
12311229
12321230
12331231
12341232
12351233
12361234
12371235
12381236
12391237
1240
1241[ 0.000000] Initializing cgroup subsys cpuset
1242[ 0.000000] Initializing cgroup subsys cpu
1243[ 0.000000] Initializing cgroup subsys cpuacct
1244[ 0.000000] Linux version 3.18.31-g0c6a383-dirty (root@seldlx21330) (gcc version 4.9.x-google 20140827 (prerelease) (GCC) ) #9 SMP PREEMPT Wed Oct 5 09:37:33 CEST 2016
1245[ 0.000000] CPU: AArch64 Processor [410fd032] revision 2
1246[ 0.000000] alternatives: enabling workaround for ARM errata 826319, 827319, 824069
1247[ 0.000000] alternatives: enabling workaround for ARM erratum 845719
1248[ 0.000000] Machine: SoMC Ivy-ROW
1249[ 0.000000] efi: Getting EFI parameters from FDT:
1250[ 0.000000] efi: UEFI not found.
1251[ 0.000000] Reserved memory: reserved region for node 'removed_regions@6300000': base 0x0000000006300000, size 13 MiB
1252[ 0.000000] Reserved memory: reserved region for node 'dfps_data_mem@3400000': base 0x0000000003400000, size 0 MiB
1253[ 0.000000] Reserved memory: reserved region for node 'cont_splash_mem@3400000': base 0x0000000003401000, size 34 MiB
1254[ 0.000000] Reserved memory: reserved region for node 'peripheral_region@c800000': base 0x000000000ca00000, size 31 MiB
1255[ 0.000000] Reserved memory: reserved region for node 'modem_region@7000000': base 0x0000000007000000, size 90 MiB
1256[ 0.000000] Reserved memory: reserved region for node 'fb_region@0': base 0x0000000040000000, size 16 MiB
1257[ 0.000000] Reserved memory: reserved region for node 'ramoops_region@1fe00000': base 0x000000001fe00000, size 2 MiB
1258[ 0.000000] Reserved memory: allocated memory for 'secure_region' node: base 0x00000000cd400000, size 300 MiB
1259[ 0.000000] Reserved memory: created CMA memory pool at 0x00000000cd400000, size 300 MiB
1260[ 0.000000] Reserved memory: initialized node secure_region, compatible id shared-dma-pool
1261[ 0.000000] Reserved memory: allocated memory for 'adsp_region' node: base 0x00000000c9400000, size 64 MiB
1262[ 0.000000] Reserved memory: created CMA memory pool at 0x00000000c9400000, size 64 MiB
1263[ 0.000000] Reserved memory: initialized node adsp_region, compatible id shared-dma-pool
1264[ 0.000000] Reserved memory: allocated memory for 'qsecom_region' node: base 0x00000000c8000000, size 20 MiB
1265[ 0.000000] Reserved memory: created CMA memory pool at 0x00000000c8000000, size 20 MiB
1266[ 0.000000] Reserved memory: initialized node qsecom_region, compatible id shared-dma-pool
1267[ 0.000000] Reserved memory: allocated memory for 'audio_region' node: base 0x00000000c7800000, size 8 MiB
1268[ 0.000000] Reserved memory: created CMA memory pool at 0x00000000c7800000, size 8 MiB
1269[ 0.000000] Reserved memory: initialized node audio_region, compatible id shared-dma-pool
1270[ 0.000000] Removed memory: created DMA memory pool at 0x0000000006300000, size 13 MiB
1271[ 0.000000] Reserved memory: initialized node removed_regions@6300000, compatible id removed-dma-pool
1272[ 0.000000] Reserved memory: created DMA memory pool at 0x0000000003400000, size 0 MiB
1273[ 0.000000] Reserved memory: initialized node dfps_data_mem@3400000, compatible id shared-dma-pool
1274[ 0.000000] Removed memory: created DMA memory pool at 0x000000000ca00000, size 31 MiB
1275[ 0.000000] Reserved memory: initialized node peripheral_region@c800000, compatible id removed-dma-pool
1276[ 0.000000] Removed memory: created DMA memory pool at 0x0000000007000000, size 90 MiB
1277[ 0.000000] Reserved memory: initialized node modem_region@7000000, compatible id removed-dma-pool
1278[ 0.000000] Removed memory: created DMA memory pool at 0x000000001fe00000, size 2 MiB
1279[ 0.000000] Reserved memory: initialized node ramoops_region@1fe00000, compatible id removed-dma-pool
1280[ 0.000000] cma: Reserved 64 MiB at 0x00000000c3800000
1281[ 0.000000] PERCPU: Embedded 13 pages/cpu @ffffffc0c34b0000 s22400 r0 d30848 u53248
1282[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 722255
1283[ 0.000000] Kernel command line: sched_enable_hmp=1 sched_enable_power_aware=1 console=ttyHSL0,115200,n8 lpm_levels.sleep_disabled=1 boot_cpus=0-5 user_debug=31 androidboot.selinux=permissive msm_rtb.filter=0x3F ehci-hcd.park=3 dwc3.maximum_speed=high dwc3_msm.prop_chg_detect=Y coherent_pool=8M sched_enable_power_aware=1 androidboot.hardware=ivy androidboot.bootdevice=f9824900.sdhci androidboot.bootloader=s1 oemandroidboot.s1boot=1289-5620_S1_Boot_MSM8994_LA1.2.2_38 androidboot.serialno=CB5A24Y97F ta_info=1,16,256 startup=0x00000004 warmboot=0x77665501 oemandroidboot.imei=0044024545638400 oemandroidboot.phoneid=0000:0044024545638400 oemandroidboot.security=0 oemandroidboot.babe08b3=50000000 oemandroidboot.securityflags=0x00000000 oemandroidboot.aid=1 lcdid_adc=0x7B37C display_status=off androidboot.baseband=msm
1284[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
1285[ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
1286[ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
1287[ 0.000000] Memory: 2289672K/3006460K available (11749K kernel code, 1999K rwdata, 5336K rodata, 492K init, 3084K bss, 716788K reserved)
1288[ 0.000000] Virtual kernel memory layout:
1289[ 0.000000] vmalloc : 0xffffff8000000000 - 0xffffffbabfff0000 ( 234 GB)
1290[ 0.000000] vmemmap : 0xffffffbac0000000 - 0xffffffbfc0000000 ( 20 GB maximum)
1291[ 0.000000] 0xffffffbac0000000 - 0xffffffbac8c00000 ( 140 MB actual)
1292[ 0.000000] PCI I/O : 0xffffffbffa000000 - 0xffffffbffb000000 ( 16 MB)
1293[ 0.000000] fixed : 0xffffffbffbdfd000 - 0xffffffbffbdff000 ( 8 KB)
1294[ 0.000000] modules : 0xffffffbffc000000 - 0xffffffc000000000 ( 64 MB)
1295[ 0.000000] memory : 0xffffffc000000000 - 0xffffffc0e0000000 ( 3584 MB)
1296[ 0.000000] .init : 0xffffffc001132000 - 0xffffffc0011ad000 ( 492 KB)
1297[ 0.000000] .text : 0xffffffc000080000 - 0xffffffc0011316a4 ( 17094 KB)
1298[ 0.000000] .data : 0xffffffc0011b7000 - 0xffffffc0013aac00 ( 1999 KB)
1299[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
1300[ 0.000000] HMP scheduling enabled.
1301[ 0.000000] Preemptible hierarchical RCU implementation.
1302[ 0.000000] RCU debugfs-based tracing is enabled.
1303[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
1304[ 0.000000] Additional per-CPU info printed with stalls.
1305[ 0.000000] NR_IRQS:64 nr_irqs:64 0
1306[ 0.000000] mpm_init_irq_domain(): Cannot find irq controller for qcom,gpio-parent
1307[ 0.000000] MPM 1 irq mapping errored -517
1308[ 0.000000] Offload RCU callbacks from all CPUs
1309[ 0.000000] Offload RCU callbacks from CPUs: 0-7.
1310[ 0.000000] Architected cp15 and mmio timer(s) running at 19.20MHz (virt/virt).
1311[ 0.000007] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 3579139424256ns
1312[ 0.000024] Switched to clocksource arch_sys_counter
1313[ 0.006111] allocated 16777216 bytes of page_cgroup
1314[ 0.006125] please try 'cgroup_disable=memory' option if you don't want memory cgroups
1315[ 0.006140] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)
1316[ 0.006153] pid_max: default: 32768 minimum: 301
1317[ 0.006259] Security Framework initialized
1318[ 0.006293] SELinux: Initializing.
1319[ 0.006420] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
1320[ 0.006435] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
1321[ 0.007220] Initializing cgroup subsys memory
1322[ 0.007247] Initializing cgroup subsys devices
1323[ 0.007261] Initializing cgroup subsys freezer
1324[ 0.007273] Initializing cgroup subsys debug
1325[ 0.007869] /cpus/cpu@0: Missing clock-frequency property
1326[ 0.007884] /cpus/cpu@1: Missing clock-frequency property
1327[ 0.007900] /cpus/cpu@2: Missing clock-frequency property
1328[ 0.007916] /cpus/cpu@3: Missing clock-frequency property
1329[ 0.007932] /cpus/cpu@4: Missing clock-frequency property
1330[ 0.007949] /cpus/cpu@5: Missing clock-frequency property
1331[ 0.007967] /cpus/cpu@6: Missing clock-frequency property
1332[ 0.007986] /cpus/cpu@7: Missing clock-frequency property
1333[ 0.010859] hw perfevents: enabled with arm/armv8-pmuv3 PMU driver, 7 counters available
1334[ 0.010897] EFI services will not be available.
1335[ 0.011038] NOHZ: local_softirq_pending 02
1336[ 0.015353]
1337[ 0.015353] **********************************************************
1338[ 0.015364] ** NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE **
1339[ 0.015370] ** **
1340[ 0.015376] ** trace_printk() being used. Allocating extra memory. **
1341[ 0.015382] ** **
1342[ 0.015388] ** This means that this is a DEBUG kernel and it is **
1343[ 0.015394] ** unsafe for produciton use. **
1344[ 0.015400] ** **
1345[ 0.015406] ** If you see this message and you are not debugging **
1346[ 0.015412] ** the kernel, report this immediately to your vendor! **
1347[ 0.015417] ** **
1348[ 0.015423] ** NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE **
1349[ 0.015429] **********************************************************
1350[ 0.028531] msm8994-v2: configuring clocks for the A57 cluster
1351[ 0.028587] msm8994-v2: finished configuring A57 cluster clocks.
1352[ 0.047782] alternatives: enabling workaround for ARM erratum 832075
1353[ 0.051767] Brought up 6 CPUs
1354[ 0.051789] SMP: Total of 6 processors activated.
1355[ 0.051874] alternatives: patching kernel code
1356[ 0.124058] pinctrl core: initialized pinctrl subsystem
1357[ 0.124543] regulator-dummy: no parameters
1358[ 0.214659] NET: Registered protocol family 16
1359[ 0.270155] cpuidle: using governor menu
1360[ 0.290169] cpuidle: using governor qcom
1361[ 0.292098] vdso: 2 pages (1 code @ ffffffc0011bd000, 1 data @ ffffffc0011bc000)
1362[ 0.293476] software IO TLB [mem 0xb6800000-0xb6c00000] (4MB) mapped at [ffffffc0b6800000-ffffffc0b6bfffff]
1363[ 0.300775] DMA: preallocated 8192 KiB pool for atomic allocations
1364[ 0.302084] rpm_smd_regulator_driver_init: ----------------------------RPM-SMD-REGULATOR REGISTER VREG DEVICE DRIVER-----------------------------
1365[ 0.302142] rpm_smd_regulator_driver_init: ----------------------------RPM-SMD-REGULATOR REGISTER VREG RESOURCE DRIVER-----------------------------
1366[ 0.312720] platform fd998300.qcom,mdss_dsi_pll: assigned reserved memory node dfps_data_mem@3400000
1367[ 0.320199] sps:sps is ready.
1368[ 0.327251] smd_channel_probe_now: allocation table not initialized
1369[ 0.328443] smd_channel_probe_now: allocation table not initialized
1370[ 0.329973] msm_watchdog f9017000.qcom,wdt: wdog absent resource not present
1371[ 0.330285] cpu 0 reg dump setup failed
1372[ 0.330295] cpu 1 reg dump setup failed
1373[ 0.330303] cpu 2 reg dump setup failed
1374[ 0.330311] cpu 3 reg dump setup failed
1375[ 0.330318] cpu 4 reg dump setup failed
1376[ 0.330326] cpu 5 reg dump setup failed
1377[ 0.330334] cpu 6 reg dump setup failed
1378[ 0.330341] cpu 7 reg dump setup failed
1379[ 0.330380] msm_watchdog f9017000.qcom,wdt: MSM Watchdog Initialized
1380[ 0.332460] msm_rpm_glink_dt_parse: qcom,rpm-glink compatible not matches
1381[ 0.332472] msm_rpm_dev_probe: APSS-RPM communication over SMD
1382[ 0.333312] pm8994_s1_corner: 0 <--> 0 mV at 0 mV normal idle
1383[ 0.333896] pm8994_s1_floor_corner: 0 <--> 0 mV at 0 mV normal idle
1384[ 0.334653] pm8994_s1_corner_ao: 0 <--> 0 mV at 0 mV normal idle
1385[ 0.335531] pm8994_s2_corner: 0 <--> 0 mV at 0 mV normal idle
1386[ 0.336056] pm8994_s2_corner_ao: 0 <--> 0 mV at 0 mV normal idle
1387[ 0.336726] pm8994_s3: 1300 mV normal idle
1388[ 0.337438] pm8994_s4: 1800 mV normal idle
1389[ 0.338105] pm8994_s5: 2150 mV normal idle
1390[ 0.338806] pm8994_s7: 1000 mV normal idle
1391[ 0.339480] pm8994_l1: 1000 mV normal idle
1392[ 0.340249] pm8994_l2: 1250 mV normal idle
1393[ 0.341878] pm8994_l3: 1000 mV normal idle
1394[ 0.342595] pm8994_l4: 1225 mV normal idle
1395[ 0.343274] pm8994_l6: 1800 mV normal idle
1396[ 0.343965] pm8994_l8: 1800 mV normal idle
1397[ 0.344628] pm8994_l9: 1800 mV normal idle
1398[ 0.345333] pm8994_l10: 1800 mV normal idle
1399[ 0.346014] pm8994_l11: 1200 mV normal idle
1400[ 0.346741] pm8994_l12: 1800 mV normal idle
1401[ 0.348248] pm8994_l13: 1800 <--> 2950 mV at 2950 mV normal idle
1402[ 0.348993] pm8994_l14: 1800 mV normal idle
1403[ 0.350360] pm8994_l15: 1800 mV normal idle
1404[ 0.351052] pm8994_l16: 2700 mV normal idle
1405[ 0.351782] pm8994_l17: 2700 mV normal idle
1406[ 0.352478] pm8994_l18: 2850 mV normal idle
1407[ 0.353670] pm8994_l20: 2950 mV normal idle
1408[ 0.354353] pm8994_l21: 2950 mV normal idle
1409[ 0.355097] pm8994_l22: 3000 mV normal idle
1410[ 0.355787] pm8994_l23: 2800 mV normal idle
1411[ 0.356515] pm8994_l24: 3075 <--> 3150 mV at 3075 mV normal idle
1412[ 0.357201] pm8994_l25: 1000 mV normal idle
1413[ 0.357906] pm8994_l26: 987 mV normal idle
1414[ 0.358604] pm8994_l27: 1200 mV normal idle
1415[ 0.359604] pm8994_l28: 1000 mV normal idle
1416[ 0.360568] pm8994_l29: 2700 mV normal idle
1417[ 0.361530] pm8994_l30: 1800 mV normal idle
1418[ 0.362826] pm8994_l31: 1200 mV normal idle
1419[ 0.363737] pm8994_lvs1: no parameters
1420[ 0.364360] pm8994_lvs2: no parameters
1421[ 0.365034] pmi8994_s1: 1025 mV normal idle
1422[ 0.365743] pmi8994_s2_corner: 0 <--> 0 mV at 0 mV normal idle
1423[ 0.366272] pmi8994_s2_floor_corner: 0 <--> 0 mV at 0 mV normal idle
1424[ 0.366938] pmi8994_boost_5v: no parameters
1425[ 0.367385] pmi8994_boost_pin_ctrl: no parameters
1426[ 0.368053] pmi8994_boostbypass: 3150 <--> 3600 mV at 3150 mV normal idle
1427[ 0.369403] platform 0.qcom,dsp_sharedmem: assigned reserved memory node adsp_region
1428[ 0.370241] platform 0.qcom,sensors_sharedmem: assigned reserved memory node adsp_region
1429[ 0.373312] irq: no irq domain found for /soc/pinctrl@fd510000 !
1430[ 0.374807] spmi_pmic_arb fc4cf000.qcom,spmi: missing property: qcom,pmic-arb-max-peripherals
1431[ 0.374823] spmi_pmic_arb fc4cf000.qcom,spmi: PMIC Arb Version-1 0x20000002
1432[ 0.375096] spmi_pmic_arb fc4cf000.qcom,spmi: missing property: qcom,pmic-arb-max-periph-interrupts
1433[ 0.384370] platform fdce0000.qcom,venus: assigned reserved memory node peripheral_region@c800000
1434[ 0.385046] platform fc880000.qcom,mss: assigned reserved memory node modem_region@7000000
1435[ 0.385573] platform fe200000.qcom,lpass: assigned reserved memory node peripheral_region@c800000
1436[ 0.401969] qcom,rpmcc-8994 fc401880.qcom,rpmcc: Registered RPM clocks.
1437[ 0.410882] ------------[ cut here ]------------
1438[ 0.410922] WARNING: CPU: 1 PID: 1 at drivers/clk/msm/clock-local2.c:1005 branch_clk_handoff+0x74/0xb4()
1439[ 0.410932] gcc_lpass_q6_axi_clk clock is enabled in HW even though ENABLE_BIT is not set
1440[ 0.410948] CPU: 1 PID: 1 Comm: swapper/0 Not tainted 3.18.31-g0c6a383-dirty #9
1441[ 0.410956] Hardware name: SoMC Ivy-ROW (DT)
1442[ 0.410965] Call trace:
1443[ 0.410983] [<ffffffc0000899c0>] dump_backtrace+0x0/0x270
1444[ 0.410998] [<ffffffc000089c44>] show_stack+0x14/0x1c
1445[ 0.411016] [<ffffffc000be21e4>] dump_stack+0x88/0xac
1446[ 0.411033] [<ffffffc0000a2d8c>] warn_slowpath_common+0x88/0xb0
1447[ 0.411047] [<ffffffc0000a2e40>] warn_slowpath_fmt+0x60/0x80
1448[ 0.411061] [<ffffffc0008d3e64>] branch_clk_handoff+0x74/0xb4
1449[ 0.411075] [<ffffffc0008d063c>] __handoff_clk+0xc8/0x300
1450[ 0.411088] [<ffffffc0008d10cc>] msm_clock_register+0x19c/0x258
1451[ 0.411102] [<ffffffc0008d1210>] of_msm_clock_register+0x88/0x98
1452[ 0.411117] [<ffffffc0008dd334>] msm_gcc_8994_probe+0x314/0x388
1453[ 0.411133] [<ffffffc000505340>] platform_drv_probe+0x38/0x84
1454[ 0.411148] [<ffffffc000503978>] driver_probe_device+0x164/0x380
1455[ 0.411160] [<ffffffc000503bc0>] __device_attach+0x2c/0x4c
1456[ 0.411174] [<ffffffc000502294>] bus_for_each_drv+0x7c/0xac
1457[ 0.411186] [<ffffffc000503cdc>] device_attach+0x6c/0x98
1458[ 0.411199] [<ffffffc000502498>] bus_probe_device+0x2c/0xa0
1459[ 0.411212] [<ffffffc0004ffe30>] device_add+0x35c/0x5a4
1460[ 0.411229] [<ffffffc000807ad4>] of_device_add+0x3c/0x44
1461[ 0.411243] [<ffffffc000808504>] of_platform_device_create_pdata+0x98/0xd8
1462[ 0.411259] [<ffffffc000808814>] of_platform_bus_create+0x2d0/0x3a4
1463[ 0.411273] [<ffffffc000808888>] of_platform_bus_create+0x344/0x3a4
1464[ 0.411288] [<ffffffc000808a7c>] of_platform_populate+0x70/0xac
1465[ 0.411306] [<ffffffc001135df4>] arm64_device_init+0x20/0x2c
1466[ 0.411318] [<ffffffc001132bb8>] do_one_initcall+0x1a0/0x1bc
1467[ 0.411331] [<ffffffc001132da8>] kernel_init_freeable+0x1d4/0x28c
1468[ 0.411345] [<ffffffc000bdb4c0>] kernel_init+0x10/0xdc
1469[ 0.411377] ---[ end trace ec257c398f648212 ]---
1470[ 0.414231] qcom,gcc-8994 fc400000.qcom,gcc: Registered GCC clocks.
1471[ 0.426766] qcom,mmsscc-8994 fd8c0000.qcom,mmsscc: Registered MMSS clocks.
1472[ 0.430729] i2c-msm-v2 f9924000.i2c: could not find pctldev for node /soc/pinctrl@fd510000/pmx_i2c_2/i2c_2_active, deferring probe
1473[ 0.431345] i2c-msm-v2 f9928000.i2c: could not find pctldev for node /soc/pinctrl@fd510000/msm_gpio_27, deferring probe
1474[ 0.436433] tsens_tm_probe: TSENS init OK
1475[ 0.440370] msm-thermal soc:qcom,msm-thermal: msm_thermal:Failed reading node=/soc/qcom,msm-thermal, key=qcom,rpm-phase-resource-type err=-22. KTM continues
1476[ 0.440398] msm-thermal soc:qcom,msm-thermal: msm_thermal:Failed reading node=/soc/qcom,msm-thermal, key=qcom,gfx-sensor-id. err=-22. KTM continues
1477[ 0.440606] msm-thermal soc:qcom,msm-thermal: probe_psm:Failed reading node=/soc/qcom,msm-thermal, key=qcom,pmic-sw-mode-temp. err=-22. KTM continues
1478[ 0.441314] cpu cpu0: dev_pm_opp_get_opp_count: device OPP not found (-19)
1479[ 0.441328] msm_thermal:get_cpu_freq_plan_len Error reading CPU0 freq table len. error:-19
1480[ 0.441344] cpu cpu4: dev_pm_opp_get_opp_count: device OPP not found (-19)
1481[ 0.441354] msm_thermal:get_cpu_freq_plan_len Error reading CPU4 freq table len. error:-19
1482[ 0.441364] msm_thermal:vdd_restriction_reg_init Defer vdd rstr freq init.
1483[ 0.441394] msm-thermal soc:qcom,msm-thermal: probe_ocr:Failed reading node=/soc/qcom,msm-thermal, key=qcom,pmic-opt-curr-temp err:-22. KTM continues
1484[ 0.444338] cpu cpu0: dev_pm_opp_get_opp_count: device OPP not found (-19)
1485[ 0.444352] msm_thermal:get_cpu_freq_plan_len Error reading CPU0 freq table len. error:-19
1486[ 0.444366] cpu cpu4: dev_pm_opp_get_opp_count: device OPP not found (-19)
1487[ 0.444376] msm_thermal:get_cpu_freq_plan_len Error reading CPU4 freq table len. error:-19
1488[ 0.444390] cpu cpu0: dev_pm_opp_get_opp_count: device OPP not found (-19)
1489[ 0.444400] msm_thermal:get_cpu_freq_plan_len Error reading CPU0 freq table len. error:-19
1490[ 0.444413] cpu cpu4: dev_pm_opp_get_opp_count: device OPP not found (-19)
1491[ 0.444423] msm_thermal:get_cpu_freq_plan_len Error reading CPU4 freq table len. error:-19
1492[ 0.445663] platform soc:audio_heap: assigned reserved memory node audio_region
1493[ 0.446176] platform soc:adsp_heap: assigned reserved memory node adsp_region
1494[ 0.448365] mem_acc0_corner: 0 <--> 0 mV
1495[ 0.448969] mem_acc1_corner: 0 <--> 0 mV
1496[ 0.449681] cpr_efuse_init: apc0_corner: efuse_addr = 0x00000000fc4bc000 (len=0x1000)
1497[ 0.449771] cpr_fuse_is_setting_expected: apc0_corner: [row:140] = 0x11129ce700889d2c @61:3 == 1 ?: no
1498[ 0.449796] cpr_read_fuse_revision: apc0_corner: fuse revision = 4
1499[ 0.449948] cpr_adjust_init_voltages: apc0_corner: adjusted initial voltage[2]: 900000 -> 875000 uV
1500[ 0.449965] cpr_adjust_init_voltages: apc0_corner: adjusted initial voltage[3]: 900000 -> 875000 uV
1501[ 0.449991] cpr_pvs_init: apc0_corner: pvs voltage: [800000 875000 875000 1075000] uV
1502[ 0.450006] cpr_pvs_init: apc0_corner: ceiling voltage: [900000 900000 1000000 1180000] uV
1503[ 0.450072] cpr_pvs_init: apc0_corner: floor voltage: [700000 700000 780000 835000] uV
1504[ 0.450945] cpr_efuse_init: apc1_corner: efuse_addr = 0x00000000fc4bc000 (len=0x1000)
1505[ 0.451005] cpr_fuse_is_setting_expected: apc1_corner: [row:140] = 0x11129ce700889d2c @61:3 == 1 ?: no
1506[ 0.451029] cpr_read_fuse_revision: apc1_corner: fuse revision = 4
1507[ 0.451049] cpr_parse_speed_bin_fuse: apc1_corner: [row: 22]: 0x10820820883925c8, speed_bits = 0
1508[ 0.451201] cpr_adjust_init_voltages: apc1_corner: adjusted initial voltage[3]: 910000 -> 885000 uV
1509[ 0.451219] cpr_adjust_init_voltages: apc1_corner: adjusted initial voltage[4]: 1085000 -> 1050000 uV
1510[ 0.451237] cpr_pvs_init: apc1_corner: pvs voltage: [810000 810000 885000 1050000] uV
1511[ 0.451252] cpr_pvs_init: apc1_corner: ceiling voltage: [900000 900000 1000000 1225000] uV
1512[ 0.451266] cpr_pvs_init: apc1_corner: floor voltage: [700000 700000 750000 835000] uV
1513[ 0.480503] msm_pinctrl_probe: Probing MSM PINCTRL........
1514[ 0.483725] __of_mpm_init(): MPM driver mapping exists
1515[ 0.483917] MPM initialization SUCCESS.
1516[ 0.484850] platform soc:ramoops: assigned reserved memory node ramoops_region@1fe00000
1517[ 0.486857] console [pstore-1] enabled
1518[ 0.487011] ramoops: attached 0x200000@0x1fe00000, ecc: 0/0
1519[ 0.488516] i2c-msm-v2 f9926000.i2c: probing driver i2c-msm-v2
1520[ 0.488758] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.
1521[ 0.488775] i2c-msm-v2 f9926000.i2c: msm_bus_scale_register_client(mstr-id:86):0 (not a problem)
1522[ 0.531524] msm8994-pinctrl fd510000.pinctrl: not freeing pin 2 (GPIO_2) as part of deactivating group gpio2 - it is already used for some other setting
1523[ 0.534198] pm8994_s8: 700 <--> 1180 mV at 1000 mV normal idle
1524[ 0.534440] spm_regulator_probe: name=pm8994_s8, range=LV, voltage=1000000 uV, mode=AUTO, step rate=2400 uV/us
1525[ 0.534727] pm8994_s11: 700 <--> 1225 mV at 1000 mV normal idle
1526[ 0.534889] spm_regulator_probe: name=pm8994_s11, range=LV, voltage=1000000 uV, mode=AUTO, step rate=2400 uV/us
1527[ 0.536032] i2c-msm-v2 f9924000.i2c: probing driver i2c-msm-v2
1528[ 0.536263] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.
1529[ 0.536281] i2c-msm-v2 f9924000.i2c: msm_bus_scale_register_client(mstr-id:86):0 (not a problem)
1530[ 0.538050] i2c-msm-v2 f9928000.i2c: probing driver i2c-msm-v2
1531[ 0.538266] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.
1532[ 0.538283] i2c-msm-v2 f9928000.i2c: msm_bus_scale_register_client(mstr-id:86):0 (not a problem)
1533[ 0.539784] cpr_efuse_init: apc0_corner: efuse_addr = 0x00000000fc4bc000 (len=0x1000)
1534[ 0.539850] cpr_fuse_is_setting_expected: apc0_corner: [row:140] = 0x11129ce700889d2c @61:3 == 1 ?: no
1535[ 0.539877] cpr_read_fuse_revision: apc0_corner: fuse revision = 4
1536[ 0.540075] cpr_adjust_init_voltages: apc0_corner: adjusted initial voltage[2]: 900000 -> 875000 uV
1537[ 0.540097] cpr_adjust_init_voltages: apc0_corner: adjusted initial voltage[3]: 900000 -> 875000 uV
1538[ 0.540125] cpr_pvs_init: apc0_corner: pvs voltage: [800000 875000 875000 1075000] uV
1539[ 0.540143] cpr_pvs_init: apc0_corner: ceiling voltage: [900000 900000 1000000 1180000] uV
1540[ 0.540159] cpr_pvs_init: apc0_corner: floor voltage: [700000 700000 780000 835000] uV
1541[ 0.540497] cpr_init_cpr_parameters: apc0_corner: up threshold = 2, down threshold = 4
1542[ 0.540537] cpr_init_cpr_parameters: apc0_corner: CPR is enabled by default.
1543[ 0.540608] cpr_init_cpr_efuse: apc0_corner: [row:137] = 0x2999949280000000
1544[ 0.540642] cpr_init_cpr_efuse: apc0_corner: Corner[1]: ro_sel = 0, target quot = 410
1545[ 0.540660] cpr_init_cpr_efuse: apc0_corner: Corner[2]: ro_sel = 0, target quot = 410
1546[ 0.540676] cpr_init_cpr_efuse: apc0_corner: Corner[3]: ro_sel = 0, target quot = 510
1547[ 0.540693] cpr_init_cpr_efuse: apc0_corner: Corner[4]: ro_sel = 0, target quot = 830
1548[ 0.540739] cpr_adjust_target_quots: apc0_corner: Corner[2]: adjusted target quot = 360
1549[ 0.540757] cpr_adjust_target_quots: apc0_corner: Corner[3]: adjusted target quot = 420
1550[ 0.540783] cpr_init_cpr_efuse: apc0_corner: invalid quotient values; permanently disabling CPR
1551[ 0.540868] cpr_get_corner_quot_adjustment: apc0_corner: fuse corner 2 quotient adjustment scaling factor: 0.000
1552[ 0.540882] cpr_get_corner_quot_adjustment: apc0_corner: fuse corner 3 quotient adjustment scaling factor: 0.194
1553[ 0.540896] cpr_get_corner_quot_adjustment: apc0_corner: fuse corner 4 quotient adjustment scaling factor: 0.520
1554[ 0.540916] cpr_get_corner_quot_adjustment: apc0_corner: adjusted quotient[1] = 410
1555[ 0.540929] cpr_get_corner_quot_adjustment: apc0_corner: adjusted quotient[2] = 360
1556[ 0.540941] cpr_get_corner_quot_adjustment: apc0_corner: adjusted quotient[3] = 360
1557[ 0.540953] cpr_get_corner_quot_adjustment: apc0_corner: adjusted quotient[4] = 360
1558[ 0.540965] cpr_get_corner_quot_adjustment: apc0_corner: adjusted quotient[5] = 388
1559[ 0.540977] cpr_get_corner_quot_adjustment: apc0_corner: adjusted quotient[6] = 402
1560[ 0.540989] cpr_get_corner_quot_adjustment: apc0_corner: adjusted quotient[7] = 420
1561[ 0.541001] cpr_get_corner_quot_adjustment: apc0_corner: adjusted quotient[8] = 471
1562[ 0.541013] cpr_get_corner_quot_adjustment: apc0_corner: adjusted quotient[9] = 521
1563[ 0.541025] cpr_get_corner_quot_adjustment: apc0_corner: adjusted quotient[10] = 671
1564[ 0.541037] cpr_get_corner_quot_adjustment: apc0_corner: adjusted quotient[11] = 721
1565[ 0.541049] cpr_get_corner_quot_adjustment: apc0_corner: adjusted quotient[12] = 790
1566[ 0.541061] cpr_get_corner_quot_adjustment: apc0_corner: adjusted quotient[13] = 830
1567[ 0.541156] cpr_fill_override_voltage: apc0_corner: ceiling override voltage: [900000 900000 900000 900000 1000000 1000000 1000000 1115000 1115000 1180000 1180000 1180000 1180000] uV
1568[ 0.541201] cpr_fill_override_voltage: apc0_corner: floor override voltage: [700000 700000 700000 725000 780000 800000 825000 835000 850000 915000 970000 980000 1000000] uV
1569[ 0.541344] cpr_config: apc0_corner: Timer count: 0x17700 (for 5000 us)
1570[ 0.541854] apc0_corner: 0 <--> 0 mV
1571[ 0.542441] cpr_efuse_init: apc1_corner: efuse_addr = 0x00000000fc4bc000 (len=0x1000)
1572[ 0.542503] cpr_fuse_is_setting_expected: apc1_corner: [row:140] = 0x11129ce700889d2c @61:3 == 1 ?: no
1573[ 0.542531] cpr_read_fuse_revision: apc1_corner: fuse revision = 4
1574[ 0.542553] cpr_parse_speed_bin_fuse: apc1_corner: [row: 22]: 0x10820820883925c8, speed_bits = 0
1575[ 0.542712] cpr_adjust_init_voltages: apc1_corner: adjusted initial voltage[3]: 910000 -> 885000 uV
1576[ 0.542732] cpr_adjust_init_voltages: apc1_corner: adjusted initial voltage[4]: 1085000 -> 1050000 uV
1577[ 0.542753] cpr_pvs_init: apc1_corner: pvs voltage: [810000 810000 885000 1050000] uV
1578[ 0.542770] cpr_pvs_init: apc1_corner: ceiling voltage: [900000 900000 1000000 1225000] uV
1579[ 0.542786] cpr_pvs_init: apc1_corner: floor voltage: [700000 700000 750000 835000] uV
1580[ 0.543075] cpr_init_cpr_parameters: apc1_corner: up threshold = 2, down threshold = 4
1581[ 0.543112] cpr_init_cpr_parameters: apc1_corner: CPR is enabled by default.
1582[ 0.543184] cpr_init_cpr_efuse: apc1_corner: [row:138] = 0x9a520daa8a82faa0
1583[ 0.543218] cpr_init_cpr_efuse: apc1_corner: Corner[1]: ro_sel = 4, target quot = 840
1584[ 0.543235] cpr_init_cpr_efuse: apc1_corner: Corner[2]: ro_sel = 4, target quot = 840
1585[ 0.543251] cpr_init_cpr_efuse: apc1_corner: Corner[3]: ro_sel = 4, target quot = 1090
1586[ 0.543269] cpr_init_cpr_efuse: apc1_corner: Corner[4]: ro_sel = 4, target quot = 1440
1587[ 0.543547] cpr_adjust_target_quots: apc1_corner: Corner[3]: adjusted target quot = 985
1588[ 0.543567] cpr_adjust_target_quots: apc1_corner: Corner[4]: adjusted target quot = 1325
1589[ 0.543666] cpr_get_corner_quot_adjustment: apc1_corner: fuse corner 2 quotient adjustment scaling factor: 0.000
1590[ 0.543680] cpr_get_corner_quot_adjustment: apc1_corner: fuse corner 3 quotient adjustment scaling factor: 0.443
1591[ 0.543694] cpr_get_corner_quot_adjustment: apc1_corner: fuse corner 4 quotient adjustment scaling factor: 0.340
1592[ 0.543715] cpr_get_corner_quot_adjustment: apc1_corner: adjusted quotient[1] = 840
1593[ 0.543728] cpr_get_corner_quot_adjustment: apc1_corner: adjusted quotient[2] = 840
1594[ 0.543740] cpr_get_corner_quot_adjustment: apc1_corner: adjusted quotient[3] = 840
1595[ 0.543752] cpr_get_corner_quot_adjustment: apc1_corner: adjusted quotient[4] = 840
1596[ 0.543764] cpr_get_corner_quot_adjustment: apc1_corner: adjusted quotient[5] = 840
1597[ 0.543776] cpr_get_corner_quot_adjustment: apc1_corner: adjusted quotient[6] = 900
1598[ 0.543788] cpr_get_corner_quot_adjustment: apc1_corner: adjusted quotient[7] = 943
1599[ 0.543800] cpr_get_corner_quot_adjustment: apc1_corner: adjusted quotient[8] = 985
1600[ 0.543813] cpr_get_corner_quot_adjustment: apc1_corner: adjusted quotient[9] = 1084
1601[ 0.543825] cpr_get_corner_quot_adjustment: apc1_corner: adjusted quotient[10] = 1117
1602[ 0.543838] cpr_get_corner_quot_adjustment: apc1_corner: adjusted quotient[11] = 1149
1603[ 0.543850] cpr_get_corner_quot_adjustment: apc1_corner: adjusted quotient[12] = 1182
1604[ 0.543862] cpr_get_corner_quot_adjustment: apc1_corner: adjusted quotient[13] = 1215
1605[ 0.543874] cpr_get_corner_quot_adjustment: apc1_corner: adjusted quotient[14] = 1247
1606[ 0.543886] cpr_get_corner_quot_adjustment: apc1_corner: adjusted quotient[15] = 1260
1607[ 0.543898] cpr_get_corner_quot_adjustment: apc1_corner: adjusted quotient[16] = 1280
1608[ 0.543910] cpr_get_corner_quot_adjustment: apc1_corner: adjusted quotient[17] = 1325
1609[ 0.544003] cpr_fill_override_voltage: apc1_corner: ceiling override voltage: [900000 900000 900000 900000 900000 1000000 1000000 1000000 1160000 1160000 1160000 1160000 1160000 1225000 1225000 1225000 1225000] uV
1610[ 0.544052] cpr_fill_override_voltage: apc1_corner: floor override voltage: [700000 700000 700000 700000 725000 750000 775000 795000 835000 860000 880000 895000 915000 935000 945000 950000 980000] uV
1611[ 0.544196] cpr_config: apc1_corner: Timer count: 0x17700 (for 5000 us)
1612[ 0.544746] apc1_corner: 0 <--> 0 mV
1613[ 0.545945] cpu-clock-8994 f9015000.qcom,cpu-clock-8994: using A57 speed bin 0 and pvs_ver 0
1614[ 0.553042] clock-cpu-8994: set OPP pair (384000000 Hz, 875000 uv) on cpu0
1615[ 0.553092] clock-cpu-8994: set OPP pair (1555200000 Hz, 1075000 uv) on cpu0
1616[ 0.553130] clock-cpu-8994: set OPP pair (384000000 Hz, 875000 uv) on cpu1
1617[ 0.553171] clock-cpu-8994: set OPP pair (1555200000 Hz, 1075000 uv) on cpu1
1618[ 0.553209] clock-cpu-8994: set OPP pair (384000000 Hz, 875000 uv) on cpu2
1619[ 0.553248] clock-cpu-8994: set OPP pair (1555200000 Hz, 1075000 uv) on cpu2
1620[ 0.553289] clock-cpu-8994: set OPP pair (384000000 Hz, 875000 uv) on cpu3
1621[ 0.553328] clock-cpu-8994: set OPP pair (1555200000 Hz, 1075000 uv) on cpu3
1622[ 0.553382] clock-cpu-8994: set OPP pair (384000000 Hz, 810000 uv) on cpu4
1623[ 0.553436] clock-cpu-8994: set OPP pair (1958400000 Hz, 1050000 uv) on cpu4
1624[ 0.553485] clock-cpu-8994: set OPP pair (384000000 Hz, 810000 uv) on cpu5
1625[ 0.553534] clock-cpu-8994: set OPP pair (1958400000 Hz, 1050000 uv) on cpu5
1626[ 0.553586] clock-cpu-8994: set OPP pair (384000000 Hz, 810000 uv) on cpu6
1627[ 0.553637] clock-cpu-8994: set OPP pair (1958400000 Hz, 1050000 uv) on cpu6
1628[ 0.553694] clock-cpu-8994: set OPP pair (384000000 Hz, 810000 uv) on cpu7
1629[ 0.553744] clock-cpu-8994: set OPP pair (1958400000 Hz, 1050000 uv) on cpu7
1630[ 0.553757] clock-cpu-8994: OPP tables populated (cpu 3 and 7)
1631[ 0.553770] clock_cpu: a53: OPP voltage for 384000000: 875000
1632[ 0.553782] clock_cpu: a53: OPP voltage for 1555200000: 1075000
1633[ 0.553793] clock_cpu: a57: OPP voltage for 384000000: 810000
1634[ 0.553805] clock_cpu: a57: OPP voltage for 1958400000: 1050000
1635[ 0.610404] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 36
1636[ 0.611845] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 37
1637[ 0.613272] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 38
1638[ 0.614696] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 39
1639[ 0.616116] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 68
1640[ 0.617537] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 69
1641[ 0.618954] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 70
1642[ 0.620412] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 71
1643[ 0.621845] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 288
1644[ 0.623279] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 289
1645[ 0.623322] msm_cpuss_dump soc:cpuss_dump: Couldn't get memory for dumping
1646[ 0.628081] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 193
1647[ 0.630459] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 96
1648[ 0.631937] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 97
1649[ 0.633415] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 98
1650[ 0.634882] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 99
1651[ 0.636380] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 100
1652[ 0.637879] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 101
1653[ 0.639375] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 102
1654[ 0.640920] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 103
1655[ 0.642415] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 128
1656[ 0.643881] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 129
1657[ 0.645367] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 130
1658[ 0.646858] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 131
1659[ 0.648334] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 132
1660[ 0.649804] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 133
1661[ 0.651312] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 134
1662[ 0.652791] msm_cpuss_dump soc:cpuss_dump: Data dump setup failed, id = 135
1663[ 0.654464] KPI: Bootloader start count = 41328
1664[ 0.654484] KPI: Bootloader end count = 80450
1665[ 0.654501] KPI: Bootloader display count = 1103717342
1666[ 0.654518] KPI: Bootloader load kernel count = 1314
1667[ 0.654535] KPI: Kernel MPM timestamp = 115486
1668[ 0.654550] KPI: Kernel MPM Clock frequency = 32768
1669[ 0.654598] socinfo_print: v0.10, id=207, ver=2.1, raw_id=2368, raw_ver=1, hw_plat=8, hw_plat_ver=65536
1670[ 0.654598] accessory_chip=0, hw_plat_subtype=0, pmic_model=65545, pmic_die_revision=131072 foundry_id=0 serial_number=4873782
1671[ 0.655836] msm_shared_memory_probe: Unable to unlock heap due to error -22
1672[ 0.655871] msm-shared-memory: probe of soc:audio_heap failed with error -22
1673[ 0.656165] msm_shared_memory_probe: Unable to unlock heap due to error -22
1674[ 0.656196] msm-shared-memory: probe of soc:adsp_heap failed with error -22
1675[ 0.658024] bt_vreg: no parameters
1676[ 0.658547] usb_otg_vreg: no parameters
1677[ 0.658692] reg-fixed-voltage soc:usb-otg-switch: Failed to find supply vin
1678[ 0.658863] reg-fixed-voltage soc:usb-otg-switch: Failed to register regulator: -517
1679[ 0.659413] vgaarb: loaded
1680[ 0.660004] wcd9xxx_intc soc:wcd9xxx-irq: TLMM connect gpio not found
1681[ 0.661060] SCSI subsystem initialized
1682[ 0.662425] usbcore: registered new interface driver usbfs
1683[ 0.662504] usbcore: registered new interface driver hub
1684[ 0.662816] usbcore: registered new device driver usb
1685[ 0.663083] media: Linux media interface: v0.10
1686[ 0.663175] Linux video capture interface: v2.00
1687[ 0.700809] cpufreq: driver msm up and running
1688[ 0.701385] platform soc:qcom,ion:qcom,ion-heap@8: assigned reserved memory node secure_region
1689[ 0.701552] platform soc:qcom,ion:qcom,ion-heap@22: assigned reserved memory node adsp_region
1690[ 0.701706] platform soc:qcom,ion:qcom,ion-heap@27: assigned reserved memory node qsecom_region
1691[ 0.701854] platform soc:qcom,ion:qcom,ion-heap@28: assigned reserved memory node audio_region
1692[ 0.702006] platform soc:qcom,ion:qcom,ion-heap@23: assigned reserved memory node peripheral_region@c800000
1693[ 0.702153] ION heap system created
1694[ 0.702245] ION heap kmalloc created
1695[ 0.702260] ION heap mm created at 0x00000000cd400000 with size 12c00000
1696[ 0.702274] ION heap adsp created at 0x00000000c9400000 with size 4000000
1697[ 0.702283] ION heap qsecom created at 0x00000000c8000000 with size 1400000
1698[ 0.702291] ION heap audio created at 0x00000000c7800000 with size 800000
1699[ 0.702299] ION heap pil_1 created at 0x000000000ca00000 with size 1f00000
1700[ 0.702426] msm_bus_fabric_init_driver
1701[ 0.706701] msm_bus_fabric_init: Skip Fab init for virtual device 6144
1702[ 0.714521] msm_bus_dev_init_qos: Skipping QOS init for 10039msm_bus_dev_init_qos: Skipping QOS init for 58
1703[ 0.714532] msm_bus_dev_init_qos: Skipping QOS init for 89msm_bus_dev_init_qos: Skipping QOS init for 68
1704[ 0.714542] msm_bus_dev_init_qos: Skipping QOS init for 604[ 0.716006] qcom,qpnp-power-on 00-qcom,power-on-0800: PMIC@SID0 Power-on reason: Triggered from PON1 (secondary PMIC) and 'warm' boot
1705[ 0.716024] qcom,qpnp-power-on 00-qcom,power-on-0800: PMIC@SID0: Unknown power-off reason
1706[ 0.716178] input: qpnp_pon as /devices/virtual/input/input0
1707[ 0.716903] pon_spare_reg: no parameters
1708[ 0.716970] qcom,qpnp-power-on 02-qcom,power-on-0800: No PON config. specified
1709[ 0.717021] qcom,qpnp-power-on 02-qcom,power-on-0800: PMIC@SID2 Power-on reason: Triggered from USB (USB charger insertion) and 'warm' boot
1710[ 0.717036] qcom,qpnp-power-on 02-qcom,power-on-0800: PMIC@SID2: Power-off reason: Triggered from UVLO (Under Voltage Lock Out)
1711[ 0.717219] PMIC@SID0: PM8994 v2.0 options: 0, 2, 2, 2
1712[ 0.717304] PMIC@SID2: PMI8994 v2.0.4 options: 0, 0, 0, 0
1713[ 0.717664] ipa ipa2_uc_state_check:296 uC interface not initialized
1714[ 0.717671] ipa ipa_sps_irq_control_all:938 EP (2) not allocated.
1715[ 0.717676] ipa ipa_sps_irq_control_all:938 EP (5) not allocated.
1716[ 0.719967] sps:BAM 0x00000000fd4c4000 is registered.
1717[ 0.721400] ipa ipa2_uc_state_check:296 uC interface not initialized
1718[ 0.721558] sps:BAM 0x00000000fd4c4000 (va:0xffffff80010a0000) enabled: ver:0x24, number of pipes:20
1719[ 0.723083] ipa ipa2_uc_state_check:296 uC interface not initialized
1720[ 0.729799] ipa ipa2_uc_state_check:296 uC interface not initialized
1721[ 0.731789] IPA driver initialization was successful.
1722[ 0.733817] gdsc_venus: no parameters
1723[ 0.734098] gdsc_venus_core0: fast normal
1724[ 0.734307] gdsc_venus_core1: fast normal
1725[ 0.734543] gdsc_venus_core2: fast normal
1726[ 0.734829] gdsc_camss_top: no parameters
1727[ 0.735123] gdsc_mdss: no parameters
1728[ 0.735437] gdsc_jpeg: no parameters
1729[ 0.735468] gdsc_jpeg: supplied by gdsc_camss_top
1730[ 0.735697] gdsc_vfe: no parameters
1731[ 0.735718] gdsc_vfe: supplied by gdsc_camss_top
1732[ 0.735950] gdsc_cpp: no parameters
1733[ 0.735972] gdsc_cpp: supplied by gdsc_camss_top
1734[ 0.736217] gdsc_oxili_gx: no parameters
1735[ 0.736263] gdsc_oxili_gx: supplied by pmi8994_s2_corner
1736[ 0.736485] gdsc_oxili_cx: no parameters
1737[ 0.736657] gdsc_pcie_0: no parameters
1738[ 0.736857] gdsc_pcie_1: no parameters
1739[ 0.737023] gdsc_usb30: no parameters
1740[ 0.737226] gdsc_ufs: no parameters
1741[ 0.737486] gdsc_fd: no parameters
1742[ 0.738741] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL
1743[ 0.739589] BUG: Bad page state in process swapper/0 pfn:03400
1744[ 0.739601] page:ffffffbac0208000 count:0 mapcount:1 mapping: (null) index:0x0
1745[ 0.739609] flags: 0x0()
1746[ 0.739622] page dumped because: nonzero mapcount
1747[ 0.739638] CPU: 5 PID: 1 Comm: swapper/0 Tainted: G W 3.18.31-g0c6a383-dirty #9
1748[ 0.739645] Hardware name: SoMC Ivy-ROW (DT)
1749[ 0.739655] Call trace:
1750[ 0.739675] [<ffffffc0000899c0>] dump_backtrace+0x0/0x270
1751[ 0.739688] [<ffffffc000089c44>] show_stack+0x14/0x1c
1752[ 0.739707] [<ffffffc000be21e4>] dump_stack+0x88/0xac
1753[ 0.739721] [<ffffffc00016ce04>] bad_page+0xfc/0x124
1754[ 0.739729] [<ffffffc00016cf50>] free_pages_prepare+0x124/0x19c
1755[ 0.739738] [<ffffffc00016f140>] free_hot_cold_page+0x34/0x19c
1756[ 0.739745] [<ffffffc00016f3dc>] __free_pages+0x2c/0x3c
1757[ 0.739762] [<ffffffc0008e11d0>] mdss_pll_util_resource_parse+0x794/0x81c
1758[ 0.739770] [<ffffffc0008e15ac>] mdss_pll_probe+0x278/0x864
1759[ 0.739793] [<ffffffc000505340>] platform_drv_probe+0x38/0x84
1760[ 0.739803] [<ffffffc000503978>] driver_probe_device+0x164/0x380
1761[ 0.739811] [<ffffffc000503c44>] __driver_attach+0x64/0x90
1762[ 0.739820] [<ffffffc000501e20>] bus_for_each_dev+0x80/0xb0
1763[ 0.739827] [<ffffffc000503d28>] driver_attach+0x20/0x28
1764[ 0.739836] [<ffffffc000502784>] bus_add_driver+0x120/0x1f8
1765[ 0.739845] [<ffffffc000504788>] driver_register+0x98/0xe4
1766[ 0.739853] [<ffffffc000505d90>] __platform_driver_register+0x60/0x68
1767[ 0.739863] [<ffffffc00117bc0c>] mdss_pll_driver_init+0x1c/0x48
1768[ 0.739875] [<ffffffc001132bb8>] do_one_initcall+0x1a0/0x1bc
1769[ 0.739882] [<ffffffc001132da8>] kernel_init_freeable+0x1d4/0x28c
1770[ 0.739891] [<ffffffc000bdb4c0>] kernel_init+0x10/0xdc
1771[ 0.739898] Disabling lock debugging due to kernel taint
1772[ 0.741598] dsi_pll_clock_register_20nm: Registered DSI PLL clocks successfully
1773[ 0.741652] mdss_pll_probe: MDSS pll label = MDSS DSI 1 PLL
1774[ 0.742867] dsi_pll_clock_register_20nm: Registered DSI PLL clocks successfully
1775[ 0.742923] mdss_pll_probe: MDSS pll label = MDSS HDMI PLL
1776[ 0.742933] mdss_pll_probe: Unable to get the cell-index rc=-22
1777[ 0.745592] fda64000.qcom,iommu supply qcom,alt-vdd not found, using dummy regulator
1778[ 0.746021] msm_iommu fda64000.qcom,iommu: device jpeg_iommu (model: 0) mapped at ffffff80011e0000, with 4 ctx banks
1779[ 0.747317] fdc84000.qcom,iommu supply qcom,alt-vdd not found, using dummy regulator
1780[ 0.747650] msm_iommu fdc84000.qcom,iommu: device venus_iommu (model: 0) mapped at ffffff8001200000, with 5 ctx banks
1781[ 0.748910] msm_iommu fdb10000.qcom,iommu: device kgsl_iommu (model: 0) mapped at ffffff8001220000, with 3 ctx banks
1782[ 0.749667] fda44000.qcom,iommu supply qcom,alt-vdd not found, using dummy regulator
1783[ 0.749968] msm_iommu_dev_v1: vfe_iommu: Keeping vfe non-secure
1784[ 0.749980] msm_iommu fda44000.qcom,iommu: device vfe_iommu (model: 0) mapped at ffffff8001240000, with 3 ctx banks
1785[ 0.750768] fd864000.qcom,iommu supply qcom,alt-vdd not found, using dummy regulator
1786[ 0.751010] msm_iommu fd864000.qcom,iommu: device fd_iommu (model: 0) mapped at ffffff8001260000, with 3 ctx banks
1787[ 0.751740] fda84000.qcom,iommu supply qcom,alt-vdd not found, using dummy regulator
1788[ 0.751959] msm_iommu fda84000.qcom,iommu: device cpp_iommu (model: 0) mapped at ffffff8001280000, with 3 ctx banks
1789[ 0.752653] fd9cc000.qcom,iommu supply qcom,alt-vdd not found, using dummy regulator
1790[ 0.752880] msm_iommu fd9cc000.qcom,iommu: device mdp_iommu (model: 0) mapped at ffffff80012a0000, with 3 ctx banks
1791[ 0.754953] msm_iommu_ctx fda6c000.qcom,iommu-ctx: context jpeg_enc0 using bank 0
1792[ 0.755110] msm_iommu_ctx fda6d000.qcom,iommu-ctx: context jpeg_enc1 using bank 1
1793[ 0.755259] msm_iommu_ctx fda6e000.qcom,iommu-ctx: context jpeg_dec using bank 2
1794[ 0.755390] msm_iommu_ctx fda6f000.qcom,iommu-ctx: context jpeg_dma using bank 3
1795[ 0.755615] msm_iommu_ctx fdc8c000.qcom,iommu-ctx: context venus_ns using bank 0
1796[ 0.755780] msm_iommu_ctx fdc8d000.qcom,iommu-ctx: context venus_sec_bitstream using bank 1
1797[ 0.755932] msm_iommu_ctx fdc8e000.qcom,iommu-ctx: context venus_fw using bank 2
1798[ 0.756070] msm_iommu_ctx fdc8f000.qcom,iommu-ctx: context venus_sec_pixel using bank 3
1799[ 0.756210] msm_iommu_ctx fdc90000.qcom,iommu-ctx: context venus_sec_non_pixel using bank 4
1800[ 0.756384] msm_iommu_ctx fdb18000.qcom,iommu-ctx: context gfx3d_user using bank 0
1801[ 0.756545] msm_iommu_ctx fdb19000.qcom,iommu-ctx: context gfx3d_priv using bank 1
1802[ 0.756705] msm_iommu_ctx fdb1a000.qcom,iommu-ctx: context gfx3d_secure using bank 2
1803[ 0.756877] msm_iommu_ctx fda4c000.qcom,iommu-ctx: context vfe using bank 0
1804[ 0.757018] msm_iommu_ctx fda4d000.qcom,iommu-ctx: context cpp using bank 1
1805[ 0.757150] msm_iommu_ctx fda4e000.qcom,iommu-ctx: context vfe_secure using bank 2
1806[ 0.757347] msm_iommu_ctx fd86c000.qcom,iommu-ctx: context camera_fd using bank 0
1807[ 0.757494] msm_iommu_ctx fd86d000.qcom,iommu-ctx: context fd_1 using bank 1
1808[ 0.757627] msm_iommu_ctx fd86e000.qcom,iommu-ctx: context fd_2 using bank 2
1809[ 0.757809] msm_iommu_ctx fda8c000.qcom,iommu-ctx: context cpp_0 using bank 0
1810[ 0.757977] msm_iommu_ctx fda8d000.qcom,iommu-ctx: context cpp_1 using bank 1
1811[ 0.758106] msm_iommu_ctx fda8e000.qcom,iommu-ctx: context cpp_2 using bank 2
1812[ 0.758276] msm_iommu_ctx fd9d4000.qcom,iommu-ctx: context mdp_0 using bank 0
1813[ 0.758437] msm_iommu_ctx fd9d5000.qcom,iommu-ctx: context mdp_1 using bank 1
1814[ 0.758578] msm_iommu_ctx fd9d6000.qcom,iommu-ctx: context mdp_2 using bank 2
1815[ 0.761648] Advanced Linux Sound Architecture Driver Initialized.
1816[ 0.762313] Bluetooth: ffffffc00e987cf8
1817[ 0.762377] NET: Registered protocol family 31
1818[ 0.762387] Bluetooth: ffffffc00e987cf8
1819[ 0.762400] Bluetooth: ffffffc00e987cd8Bluetooth: ffffffc00e987ca8
1820[ 0.762440] Bluetooth: ffffffc00e987cb8[ 0.762825] cfg80211: Calling CRDA to update world regulatory domain
1821[ 0.762850] cfg80211: World regulatory domain updated:
1822[ 0.762859] cfg80211: DFS Master region: unset
1823[ 0.762865] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
1824[ 0.762878] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
1825[ 0.762886] cfg80211: (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
1826[ 0.762893] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)
1827[ 0.762900] cfg80211: (5170000 KHz - 5250000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
1828[ 0.762907] cfg80211: (5250000 KHz - 5330000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
1829[ 0.762914] cfg80211: (5490000 KHz - 5710000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
1830[ 0.762921] cfg80211: (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
1831[ 0.762927] cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)
1832[ 0.763072] pcie:pcie_init.
1833[ 0.767298] fc528000.qcom,pcie supply vreg-3.3 not found, using dummy regulator
1834[ 0.767514] fc528000.qcom,pcie supply vreg-cx not found, using dummy regulator
1835[ 0.767633] fc528000.qcom,pcie supply gdsc-smmu not found, using dummy regulator
1836[ 0.768827] msm_pcie_get_resources: PCIe: RC1 can't get tcsr resource.
1837[ 0.771475] ibb_reg: 4600 <--> 6000 mV at 6000 mV
1838[ 0.772000] lab_reg: 4600 <--> 6000 mV at 6000 mV
1839[ 0.772671] usb_otg_vreg: no parameters
1840[ 0.772786] reg-fixed-voltage soc:usb-otg-switch: Failed to find supply vin
1841[ 0.772886] reg-fixed-voltage soc:usb-otg-switch: Failed to register regulator: -517
1842[ 0.773070] wcd9xxx_intc soc:wcd9xxx-irq: TLMM connect gpio not found
1843[ 0.773565] Switched to clocksource arch_sys_counter
1844[ 0.807013] bcl_peripheral:bcl_perph_init BCL Initialized
1845[ 0.812589] NET: Registered protocol family 2
1846[ 0.813216] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
1847[ 0.813473] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
1848[ 0.814196] TCP: Hash tables configured (established 32768 bind 32768)
1849[ 0.814378] TCP: reno registered
1850[ 0.814393] UDP hash table entries: 2048 (order: 4, 65536 bytes)
1851[ 0.814461] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
1852[ 0.814740] NET: Registered protocol family 1
1853[ 0.815135] usb_otg_vreg: no parameters
1854[ 0.815258] reg-fixed-voltage soc:usb-otg-switch: Failed to find supply vin
1855[ 0.815319] reg-fixed-voltage soc:usb-otg-switch: Failed to register regulator: -517
1856[ 0.815429] wcd9xxx_intc soc:wcd9xxx-irq: TLMM connect gpio not found
1857[ 0.815829] Trying to unpack rootfs image as initramfs...
1858[ 0.880533] Freeing initrd memory: 2304K (ffffffc002000000 - ffffffc002240000)
1859[ 0.887810] futex hash table entries: 2048 (order: 6, 262144 bytes)
1860[ 0.887992] Initialise system trusted keyring
1861[ 0.888073] audit: initializing netlink subsys (disabled)
1862[ 0.888172] audit: type=2000 audit(0.879:1): initialized
1863[ 0.888993] vmscan: error setting kswapd cpu affinity mask
1864[ 0.893800] Registering sdcardfs 0.1
1865[ 0.893935] fuse init (API version 7.23)
1866[ 0.894177] msgmni has been set to 5388
1867[ 0.896936] Key type asymmetric registered
1868[ 0.896952] Asymmetric key parser 'x509' registered
1869[ 0.897105] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
1870[ 0.897119] io scheduler noop registered
1871[ 0.897266] io scheduler cfq registered (default)
1872[ 0.901193] msm_dss_get_res_byname: 'vbif_nrt_phys' resource not found
1873[ 0.901218] mdss_mdp_probe+0x278/0x1318->msm_dss_ioremap_byname: 'vbif_nrt_phys' msm_dss_get_res_byname failed
1874[ 0.901842] mdss_mdp_irq_clk_register: unable to get clk: lut_clk
1875[ 0.902207] Circ Path 618
1876[ 0.902230] register_client_adhoc:Failed to find path.src 1 dest 590
1877[ 0.902237] mdss_mdp_bus_scale_register: reg_bus_client register failed
1878[ 0.903035] No change in context(0==0), skip
1879[ 0.904081] mdss_mdp_pipe_addr_setup: type:0 ftchid:1 xinid:0 num:0 rect:0 ndx:0x1 prio:0
1880[ 0.904088] mdss_mdp_pipe_addr_setup: type:0 ftchid:4 xinid:4 num:1 rect:0 ndx:0x2 prio:1
1881[ 0.904095] mdss_mdp_pipe_addr_setup: type:0 ftchid:7 xinid:8 num:2 rect:0 ndx:0x4 prio:2
1882[ 0.904100] mdss_mdp_pipe_addr_setup: type:0 ftchid:19 xinid:12 num:8 rect:0 ndx:0x100 prio:3
1883[ 0.904133] mdss_mdp_pipe_addr_setup: type:1 ftchid:16 xinid:1 num:3 rect:0 ndx:0x8 prio:4
1884[ 0.904139] mdss_mdp_pipe_addr_setup: type:1 ftchid:17 xinid:5 num:4 rect:0 ndx:0x10 prio:5
1885[ 0.904145] mdss_mdp_pipe_addr_setup: type:1 ftchid:18 xinid:9 num:5 rect:0 ndx:0x20 prio:6
1886[ 0.904150] mdss_mdp_pipe_addr_setup: type:1 ftchid:22 xinid:13 num:9 rect:0 ndx:0x200 prio:7
1887[ 0.904176] mdss_mdp_pipe_addr_setup: type:2 ftchid:10 xinid:2 num:6 rect:0 ndx:0x40 prio:8
1888[ 0.904181] mdss_mdp_pipe_addr_setup: type:2 ftchid:13 xinid:10 num:7 rect:0 ndx:0x80 prio:9
1889[ 0.904206] mdss_mdp_pipe_addr_setup: type:3 ftchid:-1 xinid:7 num:10 rect:0 ndx:0x400 prio:0
1890[ 0.904212] mdss_mdp_pipe_addr_setup: type:3 ftchid:-1 xinid:7 num:11 rect:0 ndx:0x800 prio:1
1891[ 0.904307] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-ib-factor-overlap : u32 array read
1892[ 0.904714] xlog_status: enable:0, panic:1, dump:2
1893[ 0.905209] mdss_mdp_probe: mdss version = 0x10090000, bootloader display is off, num 0, intf_sel=0x00000000
1894[ 0.909343] mdss_dsi_ctrl_probe: DSI Ctrl name = MDSS DSI CTRL->0
1895[ 0.909939] mdss_dsi_config_panel:2895:dsi specific cfg not present
1896[ 0.910219] mdss_dsi_panel: mdss_dsi_panel_init: spec_pdata->vsn_gpio=-2 Invalid
1897[ 0.910231] mdss_dsi_panel: mdss_dsi_panel_init: spec_pdata->vsp_gpio=-2 Invalid
1898[ 0.910399] panel_detect_setup: DriverIC GPIO: 1
1899[ 0.910408] do_panel_detect: Starting ADC Panel Detection...
1900[ 0.910416] adc_panel_detect: Found panel ADC: 1514100
1901[ 0.910628] mdss_panel_parse_dt: Panel Name = 2
1902[ 0.910639] mdss_dsi_parse_dcs_cmds: Cannot find property: somc,mdss-dsi-id-read-command
1903[ 0.910744] mdss_dsi_panel_timing_from_dt: found new timing "somc,novatek_lgd_1080p_cmd_panel" (ffffffc00e987238)
1904[ 0.910754] mdss_dsi_parse_dcs_cmds: Cannot find property: somc,mdss-dsi-early-init-command
1905[ 0.910770] mdss_dsi_parse_dcs_cmds: Cannot find property: qcom,mdss-dsi-post-panel-on-command
1906[ 0.910778] mdss_dsi_parse_dcs_cmds: Cannot find property: qcom,mdss-dsi-timing-switch-command
1907[ 0.910807] mdss_dsi_panel_timing_switch: ndx=0 switching to panel timing "somc,novatek_lgd_1080p_cmd_panel"
1908[ 0.910860] mdss_panel_parse_dt:4147, panel physical size not specified
1909[ 0.910871] mdss_dsi_parse_dcs_cmds: Cannot find property: somc,mdss-dsi-pre-uv-command
1910[ 0.910908] mdss_dsi_parse_dcs_cmds: Cannot find property: somc,mdss-dsi-cabc-early-on-command
1911[ 0.910915] mdss_dsi_parse_dcs_cmds: Cannot find property: somc,mdss-dsi-cabc-on-command
1912[ 0.910922] mdss_dsi_parse_dcs_cmds: Cannot find property: somc,mdss-dsi-cabc-off-command
1913[ 0.910928] mdss_dsi_parse_dcs_cmds: Cannot find property: somc,mdss-dsi-cabc-late-off-command
1914[ 0.910956] mdss_dsi_parse_panel_features: partial_update_enabled=0
1915[ 0.910965] mdss_dsi_parse_panel_features: ulps feature disabled
1916[ 0.910972] mdss_dsi_parse_panel_features: ulps during suspend feature disabled
1917[ 0.910979] mdss_dsi_parse_dms_config: dynamic switch feature enabled: 0
1918[ 0.911001] mdss_dsi_parse_panel_features:3202, Disp_en gpio not specified
1919[ 0.911042] mdss_dsi_parse_dcs_cmds: Cannot find property: qcom,mdss-dsi-post-panel-on-command
1920[ 0.911060] mdss_dsi_panel_init:4557 Continuous splash flag not found.
1921[ 0.911076] mdss_panel_parse_bl_settings: WLED bkl-trigger registered!
1922[ 0.911298] mdss_dsi_parse_gpio_params:4143, TE gpio not specified
1923[ 0.911397] mdss_dsi_parse_gpio_params:4176, disp_dcdc_en gpio gpio not specified
1924[ 0.911417] mdss_dsi_retrieve_ctrl_resources: phy_regulator_base=ffffff80011f6780 phy_regulator_size=30
1925[ 0.911424] mdss_dsi_retrieve_ctrl_resources: ctrl_base=ffffff80011f2000 ctrl_size=260 phy_base=ffffff80011f4500 phy_size=280
1926[ 0.911795] dsi_panel_device_register: Continuous splash disabled
1927[ 0.912001] mdss_register_panel: adding framebuffer device fd998000.qcom,mdss_dsi_ctrl0
1928[ 0.914491] mdss_dsi_ctrl_probe: Dsi Ctrl->0 initialized, DSI rev:0x10030000, PHY rev:0x1
1929[ 0.915198] mdss_dsi_status_init: DSI status check interval:5000
1930[ 0.915504] mdss_register_panel: adding framebuffer device soc:qcom,mdss_wb_panel
1931[ 0.916155] mdss_fb_probe: fb0: split_mode:2 left:0 right:0
1932[ 0.916615] mdss_fb_register: FrameBuffer[0] 1080x1920 registered successfully!
1933[ 0.924355] mdss_dsi_ctrl fd998000.qcom,mdss_dsi_ctrl0: mipi_dsi_panel_create_debugfs: create folder fd998000.qcom,mdss_dsi_ctrl0
1934[ 0.924457] mdss_fb_probe: fb1: split_mode:0 left:0 right:0
1935[ 0.924573] mdss_fb_register: FrameBuffer[1] 1920x1080 registered successfully!
1936[ 0.924650] mdss_mdp_splash_parse_dt: splash mem child node is not present
1937[ 0.927524] Gladiator Error Reporting not available
1938[ 0.929022] IPC_RTR: msm_ipc_router_smd_driver_register Already driver registered IPCRTR
1939[ 0.932010] msm_rpm_log_probe: OK
1940[ 0.934243] subsys-pil-tz fdce0000.qcom,venus: for venus segments only will be dumped.
1941[ 0.936309] pil-q6v5-mss fc880000.qcom,mss: Failed to find the pas_id.
1942[ 0.938269] uart_tx_gpio is not available
1943[ 0.938281] uart_rx_gpio is not available
1944[ 0.938290] uart_cts_gpio is not available
1945[ 0.938300] uart_rfr_gpio is not available
1946[ 0.938307] msm_hs_dt_to_pdata:Out of Band sleep flag is set
1947[ 0.938386] Wakeup irq not specified.
1948[ 0.938778] sps: BAM device 0x00000000f9944000 is not registered yet.
1949[ 0.939037] sps:BAM 0x00000000f9944000 is registered.
1950[ 0.940588] f995e000.uart: ttyHS0 at MMIO 0xf995e000 (irq = 11, base_baud = 460800) is a MSM HS UART
1951[ 0.942386] msm_serial_hs module loaded
1952[ 0.942877] msm_serial_hsl_probe: detected port #0 (ttyHSL0)
1953[ 0.943154] f991e000.serial: ttyHSL0 at MMIO 0xf991e000 (irq = 10, base_baud = 460800) is a MSM
1954[ 0.944304] msm_hsl_console_setup: console setup on port #0
1955[ 5.814829] console [ttyHSL0] enabled
1956[ 5.819040] msm_serial_hsl_init: driver initialized
1957[ 5.824103] ****** Probing MSM QRNG ******
1958[ 5.827803] ****** MSM QRNG Registered!******
1959[ 5.843682] kgsl kgsl-3d0: Initialized kgsl-3d0: mmu=on
1960[ 5.852587] brd: module loaded
1961[ 5.855959] loop: module loaded
1962[ 5.858067] Loading pn547 driver
1963[ 5.862038] pn547_parse_dt: irq : 29, ven : 1011, firm : 30, pvdd_en : -2
1964[ 5.868054] pn547_probe : IRQ num 201
1965[ 5.871755] pn547_probe : requesting IRQ 201
1966[ 5.887248] i2c-msm-v2 f9924000.i2c: msm_bus_scale_register_client(mstr-id:86):0x11 (ok)
1967[ 5.894614] pn547_probe : i2c addr=0x28
1968[ 5.898126] pn547_probe : success
1969[ 5.902127] QSEECOM: qseecom_probe: qseecom.qsee_version = 0x405000
1970[ 5.907689] QSEECOM: qseecom_probe: disk-encrypt-pipe-pair=0x2
1971[ 5.913321] QSEECOM: qseecom_probe: file-encrypt-pipe-pair=0x0QSEECOM: qseecom_probe: qsee-ce-hw-instance=0x0
1972[ 5.923210] QSEECOM: qseecom_probe: qseecom.appsbl_qseecom_support = 0x0QSEECOM: qseecom_probe: no-clock-support=0x1
1973[ 5.933714] QSEECOM: qseecom_probe: qsee reentrancy support phase is not defined, setting to default 0
1974[ 5.943186] QSEECOM: qseecom_probe: secure app region addr=0x6500000 size=0x500000
1975[ 5.953186] i2c-core: driver [tabla-i2c-core] using legacy suspend method
1976[ 5.959101] i2c-core: driver [tabla-i2c-core] using legacy resume method
1977[ 5.965852] i2c-core: driver [wcd9xxx-i2c-core] using legacy suspend method
1978[ 5.972740] i2c-core: driver [wcd9xxx-i2c-core] using legacy resume method
1979[ 5.979635] i2c-core: driver [tasha-i2c-core] using legacy suspend method
1980[ 5.986369] i2c-core: driver [tasha-i2c-core] using legacy resume method
1981[ 5.993473] QCE50: __qce_get_device_tree_data: BAM Apps EE is not defined, setting to default 1
1982[ 6.002389] qce fd440000.qcedev: Qualcomm Crypto 5.3.0 device found @0xfd440000
1983[ 6.009020] qce fd440000.qcedev: CE device = 0x0
1984[ 6.009020] , IO base, CE = 0xffffff8001440000
1985[ 6.009020] , Consumer (IN) PIPE 2, Producer (OUT) PIPE 3
1986[ 6.009020] IO base BAM = 0x (null)
1987[ 6.009020] BAM IRQ 130
1988[ 6.009020] Engines Availability = 0x2010853
1989[ 6.034913] sps:BAM 0x00000000fd444000 is registered.
1990[ 6.039718] sps:BAM 0x00000000fd444000 (va:0xffffff8001470000) enabled: ver:0x24, number of pipes:8
1991[ 6.048977] QCE50: qce_sps_init: Qualcomm MSM CE-BAM at 0x00000000fd444000 irq 130
1992[ 6.062129] QCE50: __qce_get_device_tree_data: BAM Apps EE is not defined, setting to default 1
1993[ 6.070310] qcrypto fd440000.qcrypto1fde: Qualcomm Crypto 5.3.0 device found @0xfd440000
1994[ 6.077864] qcrypto fd440000.qcrypto1fde: CE device = 0x0
1995[ 6.077864] , IO base, CE = 0xffffff8001cc0000
1996[ 6.077864] , Consumer (IN) PIPE 4, Producer (OUT) PIPE 5
1997[ 6.077864] IO base BAM = 0x (null)
1998[ 6.077864] BAM IRQ 130
1999[ 6.077864] Engines Availability = 0x2010853
2000[ 6.104657] QCE50: qce_sps_init: Qualcomm MSM CE-BAM at 0x00000000fd444000 irq 130
2001[ 6.116652] qcrypto fd440000.qcrypto1fde: qcrypto-ecb-aes
2002[ 6.121116] qcrypto fd440000.qcrypto1fde: qcrypto-cbc-aes
2003[ 6.126487] qcrypto fd440000.qcrypto1fde: qcrypto-ctr-aes
2004[ 6.131867] qcrypto fd440000.qcrypto1fde: qcrypto-ecb-des
2005[ 6.137238] qcrypto fd440000.qcrypto1fde: qcrypto-cbc-des
2006[ 6.142735] qcrypto fd440000.qcrypto1fde: qcrypto-ecb-3des
2007[ 6.148091] qcrypto fd440000.qcrypto1fde: qcrypto-cbc-3des
2008[ 6.153572] qcrypto fd440000.qcrypto1fde: qcrypto-xts-aes
2009[ 6.158935] qcrypto fd440000.qcrypto1fde: qcrypto-sha1
2010[ 6.164080] qcrypto fd440000.qcrypto1fde: qcrypto-sha256
2011[ 6.169360] qcrypto fd440000.qcrypto1fde: qcrypto-aead-hmac-sha1-cbc-aes
2012[ 6.176063] qcrypto fd440000.qcrypto1fde: qcrypto-aead-hmac-sha1-cbc-des
2013[ 6.182741] qcrypto fd440000.qcrypto1fde: qcrypto-aead-hmac-sha1-cbc-3des
2014[ 6.189496] qcrypto fd440000.qcrypto1fde: qcrypto-aead-hmac-sha256-cbc-aes
2015[ 6.196361] qcrypto fd440000.qcrypto1fde: qcrypto-aead-hmac-sha256-cbc-des
2016[ 6.203222] qcrypto fd440000.qcrypto1fde: qcrypto-aead-hmac-sha256-cbc-3des
2017[ 6.210164] qcrypto fd440000.qcrypto1fde: qcrypto-hmac-sha1
2018[ 6.215711] qcrypto fd440000.qcrypto1fde: qcrypto-hmac-sha256
2019[ 6.221455] qcrypto fd440000.qcrypto1fde: qcrypto-aes-ccm
2020[ 6.226824] qcrypto fd440000.qcrypto1fde: qcrypto-rfc4309-aes-ccm
2021[ 6.232910] QCE50: __qce_get_device_tree_data: BAM Apps EE is not defined, setting to default 1
2022[ 6.242248] qcrypto fd3c0000.qcrypto2fde: Qualcomm Crypto 5.3.0 device found @0xfd3c0000
2023[ 6.249572] qcrypto fd3c0000.qcrypto2fde: CE device = 0x0
2024[ 6.249572] , IO base, CE = 0xffffff8001dc0000
2025[ 6.249572] , Consumer (IN) PIPE 4, Producer (OUT) PIPE 5
2026[ 6.249572] IO base BAM = 0x (null)
2027[ 6.249572] BAM IRQ 131
2028[ 6.249572] Engines Availability = 0x2010853
2029[ 6.276252] sps:BAM 0x00000000fd3c4000 is registered.
2030[ 6.281051] sps:BAM 0x00000000fd3c4000 (va:0xffffff8001db0000) enabled: ver:0x24, number of pipes:8
2031[ 6.290283] QCE50: qce_sps_init: Qualcomm MSM CE-BAM at 0x00000000fd3c4000 irq 131
2032[ 6.302532] QCE50: __qce_get_device_tree_data: BAM Apps EE is not defined, setting to default 1
2033[ 6.310667] qcrypto fd440000.qcrypto1pfe: Qualcomm Crypto 5.3.0 device found @0xfd440000
2034[ 6.318264] qcrypto fd440000.qcrypto1pfe: CE device = 0x1
2035[ 6.318264] , IO base, CE = 0xffffff8001e80000
2036[ 6.318264] , Consumer (IN) PIPE 0, Producer (OUT) PIPE 1
2037[ 6.318264] IO base BAM = 0x (null)
2038[ 6.318264] BAM IRQ 130
2039[ 6.318264] Engines Availability = 0x2010853
2040[ 6.345035] QCE50: qce_sps_init: Qualcomm MSM CE-BAM at 0x00000000fd444000 irq 130
2041[ 6.356785] QCE50: __qce_get_device_tree_data: BAM Apps EE is not defined, setting to default 1
2042[ 6.364930] qcrypto fd3c0000.qcrypto2pfe: Qualcomm Crypto 5.3.0 device found @0xfd3c0000
2043[ 6.372531] qcrypto fd3c0000.qcrypto2pfe: CE device = 0x1
2044[ 6.372531] , IO base, CE = 0xffffff8001f40000
2045[ 6.372531] , Consumer (IN) PIPE 0, Producer (OUT) PIPE 1
2046[ 6.372531] IO base BAM = 0x (null)
2047[ 6.372531] BAM IRQ 131
2048[ 6.372531] Engines Availability = 0x2010853
2049[ 6.399274] QCE50: qce_sps_init: Qualcomm MSM CE-BAM at 0x00000000fd3c4000 irq 131
2050[ 6.414297] tun: Universal TUN/TAP device driver, 1.6
2051[ 6.418308] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
2052[ 6.426253] PPP generic driver version 2.4.2
2053[ 6.429559] PPP BSD Compression module registered
2054[ 6.434185] PPP Deflate Compression module registered
2055[ 6.439221] PPP MPPE Compression module registered
2056[ 6.443995] NET: Registered protocol family 24
2057[ 6.450109] somc_wifi_init_mem: Wi-Fi static memory allocated
2058[ 6.455467] msm_sharedmem: sharedmem_register_qmi: qmi init successful
2059[ 6.458177] scm_call failed: func id 0x2000c16, arginfo: 0x1117, args: 0xb6c80000, 0x10, 0xb5780780, 0xb5552000, ret: -1, syscall returns: 0x0, 0x0, 0x0
2060[ 6.458180] hyp_assign_table: Failed to assign memory protection, ret = -5
2061[ 6.458185] msm_sharedmem: setup_shared_ram_perms: hyp_assign_phys failed IPA=0x0160x00000000c4400000 size=1572864 err=-5
2062[ 6.458277] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'
2063[ 6.459047] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rfsa_dsp'
2064[ 6.459242] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rfsa_mdm'
2065[ 6.459380] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rfsa_sensor'
2066[ 6.462057] msm-usb-ssphy-qmp f9b38000.ssphy: Failed getting vls_clamp_reg. Going on.
2067[ 6.464208] msm-dwc3 f9200000.ssusb: unable to get dbm device
2068[ 6.465394] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
2069[ 6.465410] ehci-pci: EHCI PCI platform driver
2070[ 6.465433] ehci-msm: Qualcomm On-Chip EHCI Host Controller
2071[ 6.465676] usbcore: registered new interface driver usb-storage
2072[ 6.466510] gbridge_init: gbridge_init successs.
2073[ 6.466662] mousedev: PS/2 mouse device common for all mice
2074[ 6.466832] usbcore: registered new interface driver xpad
2075[ 6.468961] clearpad clearpad: no reset_l2h config
2076[ 6.469120] clearpad-rmi-dev clearpad-rmi-dev: Major number of rmidev: 233
2077[ 6.469123] clearpad-rmi-dev clearpad-rmi-dev: Allocated rmidev 233 0.
2078[ 6.469540] bu520x1nvx soc:bu520x1nvx: bu520x1nvx_probe: invalid gpio -2
2079[ 6.469551] bu520x1nvx: probe of soc:bu520x1nvx failed with error -22
2080[ 6.469981] clearpad clearpad: clearpad_vreg_suspend: vdd: set mode (HPM) ok, new mode=2
2081[ 6.471239] input: hbtp_vm as /devices/virtual/input/input1
2082[ 6.471492] fpc1145_init OK
2083[ 6.472216] qcom,qpnp-rtc 00-qcom,pm8994_rtc: rtc core: registered qpnp_rtc as rtc0
2084[ 6.472453] i2c /dev entries driver
2085[ 6.474098] msm_vidc: err: Failed to read firmware name: -22
2086[ 6.474103] msm_vidc: err: Failed to get platform resources
2087[ 6.474105] msm_vidc: err: Failed to init core
2088[ 6.474121] msm_vidc_v4l2: probe of fdc00000.qcom,vidc failed with error -22
2089[ 6.477962] msm_tspp_probe: vdd_cx regulator will not be used
2090[ 6.481342] gspca_main: v2.14.0 registered
2091[ 6.483363] FG: fg_probe: FG Probe success - FG Revision DIG:2.1 ANA:1.2 PMIC subtype=10
2092[ 6.485916] qpnp_vadc_probe: QPNP VADC init OK
2093[ 6.486308] qpnp_vadc_probe: QPNP VADC init OK
2094[ 6.517212] device-mapper: uevent: version 1.0.3
2095[ 6.517361] device-mapper: ioctl: 4.28.0-ioctl (2014-09-17) initialised: dm-devel@redhat.com
2096[ 6.517535] device-mapper: req-crypt: dm-req-crypt successfully initalized.
2097[ 6.517535]
2098[ 6.519701] Bluetooth: ffffffc00e987c98
2099[ 6.519701] Bluetooth: bluesleep_probe: bluesleep in pinctl mode
2100[ 6.519851] Bluetooth: ffffffc00e987aa8
2101[ 6.520611] Bluetooth: ffffffc00e987aa8
2102[ 6.520612] sdhci: Secure Digital Host Controller Interface driver
2103[ 6.520613] sdhci: Copyright(c) Pierre Ossman
2104[ 6.520619] sdhci-pltfm: SDHCI platform and OF driver helper
2105[ 6.521861] sdhci_msm f9824900.sdhci: sdhci_msm_probe: ICE device is not enabled
2106[ 6.525419] sdhci_msm f9824900.sdhci: No vmmc regulator found
2107[ 6.525423] sdhci_msm f9824900.sdhci: No vqmmc regulator found
2108[ 6.525832] mmc0: SDHCI controller on f9824900.sdhci [f9824900.sdhci] using 32-bit ADMA in legacy mode
2109[ 6.558876] sdhci_msm f98a4900.sdhci: sdhci_msm_probe: ICE device is not enabled
2110[ 6.563608] sdhci_msm f98a4900.sdhci: No vmmc regulator found
2111[ 6.563612] sdhci_msm f98a4900.sdhci: No vqmmc regulator found
2112[ 6.564023] mmc1: SDHCI controller on f98a4900.sdhci [f98a4900.sdhci] using 32-bit ADMA in legacy mode
2113[ 6.596826] hidraw: raw HID events driver (C) Jiri Kosina
2114[ 6.598381] usbcore: registered new interface driver usbhid
2115[ 6.598383] usbhid: USB HID core driver
2116[ 6.598713] ashmem: initialized
2117[ 6.598847] logger: created 256K log 'log_main'
2118[ 6.598959] logger: created 256K log 'log_events'
2119[ 6.599074] logger: created 256K log 'log_radio'
2120[ 6.599193] logger: created 256K log 'log_system'
2121[ 6.599931] qpnp_coincell_charger_show_state: enabled=Y, voltage=3200 mV, resistance=2100 ohm
2122[ 6.607330] bimc-bwmon fc388000.qcom,cpu-bwmon: BW HWmon governor registered.
2123[ 6.607608] bimc-bwmon fc390000.qcom,gpu-bwmon: BW HWmon governor registered.
2124[ 6.613262] devfreq soc:qcom,cpubw: Couldn't update frequency transition information.
2125[ 6.613353] devfreq soc:qcom,mincpubw: Couldn't update frequency transition information.
2126[ 6.614679] probe: Version mismatch expected 0x20000 got 0x0
2127[ 6.614679] usbcore: registered new interface driver snd-usb-audio
2128[ 6.621500] msm-compr-dsp soc:qcom,msm-compr-dsp: msm_compr_probe: dev name soc:qcom,msm-compr-dsp
2129[ 6.621727] msm-pcm-lpa soc:qcom,msm-pcm-lpa: msm_pcm_probe: dev name soc:qcom,msm-pcm-lpa
2130[ 6.625799] msm8994-pinctrl fd510000.pinctrl: could not parse property pins
2131[ 6.625872] msm8994-asoc-snd fe034000.sound: msm8994_asoc_machine_probe: hdmi audio support present
2132[ 6.627826] msm8994-asoc-snd fe034000.sound: ASoC: platform (null) not registered
2133[ 6.628057] u32 classifier
2134[ 6.628058] Actions configured
2135[ 6.628075] Netfilter messages via NETLINK v0.30.
2136[ 6.628102] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
2137[ 6.628298] ctnetlink v0.93: registering with nfnetlink.
2138[ 6.628657] xt_time: kernel timezone is -0000
2139[ 6.628836] ip_tables: (C) 2000-2006 Netfilter Core Team
2140[ 6.628919] arp_tables: (C) 2002 David S. Miller
2141[ 6.628945] TCP: cubic registered
2142[ 6.628955] Initializing XFRM netlink socket
2143[ 6.629143] NET: Registered protocol family 10
2144[ 6.629857] mip6: Mobile IPv6
2145[ 6.629876] ip6_tables: (C) 2000-2006 Netfilter Core Team
2146[ 6.629984] sit: IPv6 over IPv4 tunneling driver
2147[ 6.630296] NET: Registered protocol family 17
2148[ 6.630311] NET: Registered protocol family 15
2149[ 6.630342] bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this.
2150[ 6.630356] Bridge firewalling registered
2151[ 6.630360] Ebtables v2.0 registered
2152[ 6.630513] Bluetooth: ffffffc00e987cc8
2153[ 6.630550] Bluetooth: ffffffc00e987ca8
2154[ 6.630558] Bluetooth: ffffffc00e987ce8
2155[ 6.630559] Bluetooth: ffffffc00e987cc8
2156[ 6.630566] Bluetooth: ffffffc00e987cc8
2157[ 6.630568] Bluetooth: ffffffc00e987ca8
2158[ 6.630572] Bluetooth: ffffffc00e987d18
2159[ 6.630591] Bluetooth: ffffffc00e987cf8
2160[ 6.630591] l2tp_core: L2TP core driver, V2.0
2161[ 6.630599] l2tp_ppp: PPPoL2TP kernel driver, V2.0
2162[ 6.630602] l2tp_ip: L2TP IP encapsulation support (L2TPv3)
2163[ 6.630614] l2tp_netlink: L2TP netlink interface
2164[ 6.630626] l2tp_eth: L2TP ethernet pseudowire support (L2TPv3)
2165[ 6.630636] l2tp_debugfs: L2TP debugfs support
2166[ 6.630638] l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3)
2167[ 6.631164] NET: Registered protocol family 27
2168[ 6.632392] usb_otg_vreg: no parameters
2169[ 6.632471] reg-fixed-voltage soc:usb-otg-switch: Failed to find supply vin
2170[ 6.632519] reg-fixed-voltage soc:usb-otg-switch: Failed to register regulator: -517
2171[ 6.632691] wcd9xxx_intc soc:wcd9xxx-irq: TLMM connect gpio not found
2172[ 6.633767] subsys-pil-tz fe200000.qcom,lpass: for adsp segments only will be dumped.
2173[ 6.634877] pil-q6v5-mss fc880000.qcom,mss: Failed to find the pas_id.
2174[ 6.635359] pil-q6v5-mss fc880000.qcom,mss: for modem segments only will be dumped.
2175[ 6.638884] qpnp-smbcharger 02-qcom,qpnp-smbcharger: node /soc/qcom,spmi@fc4c0000/qcom,pmi8994@2/qcom,qpnp-smbcharger IO resource absent!
2176[ 6.639045] smbcharger_charger_otg: no parameters
2177[ 6.639162] smbcharger_external_otg: no parameters
2178[ 6.639195] smbcharger_external_otg: supplied by pmi8994_boost_5v
2179[ 6.648151] mmc0: Out-of-interrupt timeout is 100[ms]
2180[ 6.648152] mmc0: BKOPS_EN equals 0x3
2181[ 6.648155] mmc0: eMMC FW version: 0x02
2182[ 6.648156] mmc0: cache barrier support 1 flush policy 1
2183[ 6.654689] mmc0: new HS200 MMC card at address 0001
2184[ 6.654922] sdhci_msm_pm_qos_cpu_init (): voted for group #0 (mask=0xf) latency=301 (0xffffffc0051eb280)
2185[ 6.655027] mmcblk0: mmc0:0001 032G74 29.1 GiB
2186[ 6.655108] mmcblk0rpmb: mmc0:0001 032G74 partition 3 4.00 MiB
2187[ 6.657539] mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 p16 p17 p18 p19 p20 p21 p22 p23 p24 p25 p26 p27 p28 p29 p30 p31 p32 p33 p34 p35 p36 p37 p38 p39 p40 p41 p42 p43
2188[ 6.670484] msm-dwc3 f9200000.ssusb: dwc3_msm_power_set_property_usb: clear retry count=0
2189[ 6.674030] qpnp-smbcharger 02-qcom,qpnp-smbcharger: node /soc/qcom,spmi@fc4c0000/qcom,pmi8994@2/qcom,qpnp-smbcharger IO resource absent!
2190[ 6.715089] msm-usb-hsphy f92f8800.hsphy: set phy param for peripheral value=0x00fbdfa7
2191[ 6.715615] msm-usb-hsphy f92f8800.hsphy: set phy param for peripheral value=0x00fbdfa7
2192[ 6.716848] msm-usb-hsphy f92f8800.hsphy: set phy param for peripheral value=0x00fbdfa7
2193[ 6.717494] qpnp-smbcharger 02-qcom,qpnp-smbcharger: SMBCHG successfully probe Charger version=SCHG Revision DIG:2.0 ANA:1.1 batt=1 dc=0 usb=1
2194[ 6.719455] msm8994-pinctrl fd510000.pinctrl: could not parse property pins
2195[ 6.719554] msm8994-asoc-snd fe034000.sound: msm8994_asoc_machine_probe: hdmi audio support present
2196[ 6.722347] msm8994-asoc-snd fe034000.sound: ASoC: CODEC DAI tomtom_vifeedback not registered
2197[ 6.722608] usb_otg_vreg: no parameters
2198[ 6.722639] usb_otg_vreg: supplied by smbcharger_external_otg
2199[ 6.722781] wcd9xxx_intc soc:wcd9xxx-irq: TLMM connect gpio not found
2200[ 6.723664] msm8994-pinctrl fd510000.pinctrl: could not parse property pins
2201[ 6.723755] msm8994-asoc-snd fe034000.sound: msm8994_asoc_machine_probe: hdmi audio support present
2202[ 6.726433] msm8994-asoc-snd fe034000.sound: ASoC: CODEC DAI tomtom_vifeedback not registered
2203[ 6.728686] Registered cp15_barrier emulation handler
2204[ 6.733024] Registered setend emulation handler
2205[ 6.733208] Loading compiled-in X.509 certificates
2206[ 6.733248] Problem loading in-kernel X.509 certificate (-65)
2207[ 6.733259] registered taskstats version 1
2208[ 6.735766] scm_call failed: func id 0x2001601, arginfo: 0x12, args: 0xc406b000, 0x8, 0x0, 0x0, ret: -1, syscall returns: 0x0, 0x0, 0x0
2209[ 6.736895] wcd9xxx_intc soc:wcd9xxx-irq: TLMM connect gpio not found
2210[ 6.737990] msm8994-pinctrl fd510000.pinctrl: could not parse property pins
2211[ 6.738085] msm8994-asoc-snd fe034000.sound: msm8994_asoc_machine_probe: hdmi audio support present
2212[ 6.740850] msm8994-asoc-snd fe034000.sound: ASoC: CODEC DAI tomtom_vifeedback not registered
2213[ 6.741542] wcd9xxx_intc soc:wcd9xxx-irq: TLMM connect gpio not found
2214[ 6.741852] otg_wakelock_init: No USB transceiver found
2215[ 6.742662] msm8994-pinctrl fd510000.pinctrl: could not parse property pins
2216[ 6.742760] msm8994-asoc-snd fe034000.sound: msm8994_asoc_machine_probe: hdmi audio support present
2217[ 6.742923] file system registered
2218[ 6.742957] mbim_init: initialize 1 instances
2219[ 6.743001] mbim_init: Initialized 1 ports
2220[ 6.743915] rndis_qc_init: initialize rndis QC instance
2221[ 6.744057] Number of LUNs=8
2222[ 6.744064] Mass Storage Function, version: 2009/09/11
2223[ 6.744067] LUN: removable file: (no medium)
2224[ 6.744079] Number of LUNs=1
2225[ 6.744113] LUN: removable file: (no medium)
2226[ 6.744114] Number of LUNs=1
2227[ 6.744283] android_usb gadget: android_usb ready
2228[ 6.745534] msm8994-asoc-snd fe034000.sound: ASoC: CODEC DAI tomtom_vifeedback not registered
2229[ 6.745695] wcd9xxx_intc soc:wcd9xxx-irq: TLMM connect gpio not found
2230[ 6.746468] input: gpio-keys as /devices/soc/soc:gpio_keys/input/input2
2231[ 6.746859] msm8994-pinctrl fd510000.pinctrl: could not parse property pins
2232[ 6.746952] msm8994-asoc-snd fe034000.sound: msm8994_asoc_machine_probe: hdmi audio support present
2233[ 6.749649] msm8994-asoc-snd fe034000.sound: ASoC: CODEC DAI tomtom_vifeedback not registered
2234[ 6.749776] wcd9xxx_intc soc:wcd9xxx-irq: TLMM connect gpio not found
2235[ 6.750718] msm8994-pinctrl fd510000.pinctrl: could not parse property pins
2236[ 6.750811] msm8994-asoc-snd fe034000.sound: msm8994_asoc_machine_probe: hdmi audio support present
2237[ 6.751780] qcom,qpnp-rtc 00-qcom,pm8994_rtc: setting system clock to 1970-01-01 00:03:45 UTC (225)
2238[ 6.753683] msm8994-asoc-snd fe034000.sound: ASoC: CODEC DAI tomtom_vifeedback not registered
2239[ 6.754062] wcd9xxx_intc soc:wcd9xxx-irq: TLMM connect gpio not found
2240[ 6.754694] msm8994-pinctrl fd510000.pinctrl: could not parse property pins
2241[ 6.754762] msm8994-asoc-snd fe034000.sound: msm8994_asoc_machine_probe: hdmi audio support present
2242[ 6.756827] msm8994-asoc-snd fe034000.sound: ASoC: CODEC DAI tomtom_vifeedback not registered
2243[ 6.757548] wcd9xxx_intc soc:wcd9xxx-irq: TLMM connect gpio not found
2244[ 6.758105] msm8994-pinctrl fd510000.pinctrl: could not parse property pins
2245[ 6.758166] msm8994-asoc-snd fe034000.sound: msm8994_asoc_machine_probe: hdmi audio support present
2246[ 6.760178] msm8994-asoc-snd fe034000.sound: ASoC: CODEC DAI tomtom_vifeedback not registered
2247[ 6.760603] msm_core_tsens_init: Cannot read tsens scaling factor
2248[ 6.760664] msm_core_tsens_init: Cannot read tsens scaling factor
2249[ 6.760722] msm_core_tsens_init: Cannot read tsens scaling factor
2250[ 6.760779] msm_core_tsens_init: Cannot read tsens scaling factor
2251[ 6.760835] msm_core_tsens_init: Cannot read tsens scaling factor
2252[ 6.760894] msm_core_tsens_init: Cannot read tsens scaling factor
2253[ 6.760953] msm_core_tsens_init: Cannot read tsens scaling factor
2254[ 6.761012] msm_core_tsens_init: Cannot read tsens scaling factor
2255[ 6.761496] wcd9xxx_intc soc:wcd9xxx-irq: TLMM connect gpio not found
2256[ 6.762176] msm_thermal:devmgr_client_cpufreq_update Frequency mitigation task is not initialized
2257[ 6.762179] msm_thermal:devmgr_client_cpufreq_update Frequency mitigation task is not initialized
2258[ 6.762181] msm_thermal:devmgr_client_cpufreq_update Frequency mitigation task is not initialized
2259[ 6.762183] msm_thermal:devmgr_client_cpufreq_update Frequency mitigation task is not initialized
2260[ 6.762278] msm_thermal:devmgr_client_hotplug_update Hotplug task is not initialized
2261[ 6.763226] msm8994-pinctrl fd510000.pinctrl: could not parse property pins
2262[ 6.763341] msm8994-asoc-snd fe034000.sound: msm8994_asoc_machine_probe: hdmi audio support present
2263[ 6.763666] lmh_lite:lmh_parse_sensor Registering sensor:[LLM_IA57]
2264[ 6.763879] lmh_lite:lmh_parse_sensor Registering sensor:[THRM_57-0]
2265[ 6.764063] lmh_lite:lmh_parse_sensor Registering sensor:[THRM_57-1]
2266[ 6.764225] lmh_lite:lmh_parse_sensor Registering sensor:[THRM_57-2]
2267[ 6.764377] lmh_lite:lmh_parse_sensor Registering sensor:[THRM_57-3]
2268[ 6.764538] lmh_lite:lmh_parse_sensor Registering sensor:[THRM_53-0]
2269[ 6.764691] lmh_lite:lmh_parse_sensor Registering sensor:[THRM_53-1]
2270[ 6.764840] lmh_lite:lmh_parse_sensor Registering sensor:[THRM_53-2]
2271[ 6.764991] lmh_lite:lmh_parse_sensor Registering sensor:[THRM_53-3]
2272[ 6.765218] f9117000.qcom,lmh supply vdd-apss not found, using dummy regulator
2273[ 6.765257] lmh_lite:lmh_get_sensor_devicetree Error getting ODCM thresh. err:-22
2274[ 6.765573] lmh_lite:lmh_check_tz_debug_cmds SCM cmd:8 not available
2275[ 6.765576] lmh_lite:lmh_probe LMH debug init failed. err:-19
2276[ 6.766364] msm8994-asoc-snd fe034000.sound: ASoC: CODEC DAI tomtom_vifeedback not registered
2277[ 6.766524] wcd9xxx_intc soc:wcd9xxx-irq: TLMM connect gpio not found
2278[ 6.767404] parse_cpu_levels: idx 1 298
2279[ 6.767405] parse_cpu_levels: idx 2 2360
2280[ 6.767406] parse_cpu_levels: idx 3 1630
2281[ 6.767408] parse_cpu_levels: idx 2 31225
2282[ 6.767409] parse_cpu_levels: idx 3 2517
2283[ 6.767410] parse_cpu_levels: idx 3 1082
2284[ 6.767775] msm8994-pinctrl fd510000.pinctrl: could not parse property pins
2285[ 6.767825] parse_cpu_levels: idx 1 537
2286[ 6.767826] parse_cpu_levels: idx 2 2611
2287[ 6.767827] parse_cpu_levels: idx 3 3053
2288[ 6.767828] parse_cpu_levels: idx 2 4455
2289[ 6.767829] parse_cpu_levels: idx 3 4883
2290[ 6.767830] parse_cpu_levels: idx 3 6808
2291[ 6.767887] msm8994-asoc-snd fe034000.sound: msm8994_asoc_machine_probe: hdmi audio support present
2292[ 6.770743] msm8994-asoc-snd fe034000.sound: ASoC: CODEC DAI tomtom_vifeedback not registered
2293[ 6.775485] wcd9xxx_intc soc:wcd9xxx-irq: TLMM connect gpio not found
2294[ 6.776693] qcom,qpnp-flash-led 03-qcom,leds-d300: Unable to acquire pinctrl
2295[ 6.776757] msm8994-pinctrl fd510000.pinctrl: could not parse property pins
2296[ 6.776872] msm8994-asoc-snd fe034000.sound: msm8994_asoc_machine_probe: hdmi audio support present
2297[ 6.778533] rmnet_ipa started initialization
2298[ 6.778548] IPA SSR support = True
2299[ 6.778570] IPA ipa-loaduC = True
2300[ 6.778571] IPA SG support = False
2301[ 6.779876] msm8994-asoc-snd fe034000.sound: ASoC: CODEC DAI tomtom_vifeedback not registered
2302[ 6.780119] wcd9xxx_intc soc:wcd9xxx-irq: TLMM connect gpio not found
2303[ 6.780625] ipa ipa_sps_irq_control_all:938 EP (5) not allocated.
2304[ 6.780627] ipa ipa2_uc_state_check:301 uC is not loaded
2305[ 6.781596] rmnet_ipa completed initialization
2306[ 6.781638] msm8994-pinctrl fd510000.pinctrl: could not parse property pins
2307[ 6.781765] msm8994-asoc-snd fe034000.sound: msm8994_asoc_machine_probe: hdmi audio support present
2308[ 6.784813] msm8994-asoc-snd fe034000.sound: ASoC: CODEC DAI tomtom_vifeedback not registered
2309[ 6.785043] wcd9xxx_intc soc:wcd9xxx-irq: TLMM connect gpio not found
2310[ 6.785994] msm8994-pinctrl fd510000.pinctrl: could not parse property pins
2311[ 6.786091] msm8994-asoc-snd fe034000.sound: msm8994_asoc_machine_probe: hdmi audio support present
2312[ 6.786578] qcom,cc-debug-8994 fc401880.qcom,cc-debug: Registered debug mux.
2313[ 6.787832] usb_otg_vreg: disabling
2314[ 6.787868] bt_vreg: disabling
2315[ 6.787871] mem_acc1_corner: disabling
2316[ 6.787873] mem_acc0_corner: disabling
2317[ 6.787880] pm8994_l31: disabling
2318[ 6.787928] regulator_proxy_consumer_remove_all: removing regulator proxy consumer requests
2319[ 6.788153] clock_late_init: Removing enables held for handed-off clocks
2320[ 6.789193] msm8994-asoc-snd fe034000.sound: ASoC: CODEC DAI tomtom_vifeedback not registered
2321[ 6.789406] wcd9xxx_intc soc:wcd9xxx-irq: TLMM connect gpio not found
2322[ 6.790520] msm8994-pinctrl fd510000.pinctrl: could not parse property pins
2323[ 6.790596] msm8994-asoc-snd fe034000.sound: msm8994_asoc_machine_probe: hdmi audio support present
2324[ 6.792663] msm8994-asoc-snd fe034000.sound: ASoC: CODEC DAI tomtom_vifeedback not registered
2325[ 6.794635] ALSA device list:
2326[ 6.794637] No soundcards found.
2327[ 6.880174] i2c-msm-v2 f9928000.i2c: msm_bus_scale_register_client(mstr-id:86):0x20 (ok)
2328[ 7.060078] msm_thermal:devmgr_client_cpufreq_update Frequency mitigation task is not initialized
2329[ 7.060087] msm_thermal:devmgr_client_hotplug_update Hotplug task is not initialized
2330[ 7.060095] msm_thermal:devmgr_client_cpufreq_update Frequency mitigation task is not initialized
2331[ 7.060097] msm_thermal:devmgr_client_cpufreq_update Frequency mitigation task is not initialized
2332[ 7.060099] msm_thermal:devmgr_client_cpufreq_update Frequency mitigation task is not initialized
2333[ 7.390047] i2c-msm-v2 f9928000.i2c: TIMEOUT_ERROR(val:510msec) misconfigured GPIO or slave pulling bus line(s) low
2334[ 7.390047] : msgs(n:2 cur:0 tx) bc(rx:1 tx:1) mode:FIFO slv_addr:0x2c MSTR_STS:0x00132100 OPER:0x00000010
2335[ 7.500029] i2c-msm-v2 f9928000.i2c: bus lines held low by a slave detected
2336[ 7.500031] i2c-msm-v2 f9928000.i2c: Executing bus recovery procedure (9 clk pulse)
2337[ 7.522762] i2c-msm-v2 f9928000.i2c: Bus recovery fail after 10 retries
2338[ 7.522781] clearpad-i2c 6-002c: clearpad_i2c_read: rc = -110
2339[ 7.522785] clearpad clearpad: failed clearpad initialization
2340[ 7.580106] clearpad-i2c 6-002c: clearpad_i2c_probe: sucess
2341[ 7.580157] wcd9xxx_intc soc:wcd9xxx-irq: TLMM connect gpio not found
2342[ 7.581201] msm8994-pinctrl fd510000.pinctrl: could not parse property pins
2343[ 7.581294] msm8994-asoc-snd fe034000.sound: msm8994_asoc_machine_probe: hdmi audio support present
2344[ 7.584124] msm8994-asoc-snd fe034000.sound: ASoC: CODEC DAI tomtom_vifeedback not registered
2345[ 7.584407] clearpad clearpad: no reset_l2h config
2346[ 7.585150] clearpad clearpad: clearpad_vreg_suspend: vdd: set mode (HPM) ok, nâ–’[ 8.270128] Freeing unused kernel memory: 492K (ffffffc001132000 - ffffffc0011ad000)
2347[ 8.276845] Freeing alternatives memory: 28K (ffffffc0011ad000 - ffffffc0011b4000)
2348__bionic_open_tzdata_path: ANDROID_DATA not set!
2349__bionic_open_tzdata_path: ANDROID_ROOT not set!
2350[ 8.500146] i2c-msm-v2 f9928000.i2c: TIMEOUT_ERROR(val:510msec) misconfigured GPIO or slave pulling bus line(s) low
2351[ 8.500146] : msgs(n:2 cur:0 tx) bc(rx:1 tx:1) mode:FIFO slv_addr:0x2c MSTR_STS:0x00132100 OPER:0x00000010
2352[ 8.620027] i2c-msm-v2 f9928000.i2c: bus lines held low by a slave detected
2353[ 8.625951] i2c-msm-v2 f9928000.i2c: Executing bus recovery procedure (9 clk pulse)
2354[ 8.656334] i2c-msm-v2 f9928000.i2c: Bus recovery fail after 10 retries
2355[ 8.661943] clearpad-i2c 6-002c: clearpad_i2c_read: rc = -110
2356[ 8.667639] clearpad clearpad: failed clearpad initialization
2357[ 8.670045] msm-dwc3 f9200000.ssusb: detect FLOATED, retry=1
2358[ 8.761239] msm_thermal:devmgr_client_cpufreq_update Frequency mitigation task is not initialized
2359[ 8.769072] msm_thermal:devmgr_client_cpufreq_update Frequency mitigation task is not initialized
2360[ 8.777945] msm_thermal:devmgr_client_cpufreq_update Frequency mitigation task is not initialized
2361[ 8.786791] msm_thermal:devmgr_client_cpufreq_update Frequency mitigation task is not initialized
2362[ 8.795763] msm_thermal:devmgr_client_hotplug_update Hotplug task is not initialized
2363ANDROID! format...
2364Offset: 8998912
2365Size: 6583732
2366Original size: 6583732, gunzipped: 10549248
2367Copying '/dev/block/mmcblk0p32' to '/sbin/ramdisk-recovery.cpio'
2368Finished writing file: '/sbin/ramdisk-recovery.cpio'
2369Uncompressed ramdisk written to '/sbin/ramdisk-recovery.cpio'.
2370cpio: acct: File exists
2371cpio: cache: File exists
2372cpio: config: File exists
2373cpio: data: File exists
2374cpio: dev: File exists
2375cpio: fstab.ivy: File exists
2376cpio: mnt: File exists
2377cpio: oem: File exists
2378cpio: proc: File exists
2379cpio: res: File exists
2380cpio: sbin: File exists
2381cpio: mkpath 'sbin/init_sony': File exists
2382cpio: mkpath 'sbin/keycheck': File exists
2383cpio: mkpath 'sbin/toybox_init': File exists
2384cpio: storage: File exists
2385cpio: sys: File exists
2386cpio: system: File exists
2387[ 10.960239] init: init first stage started!
2388[ 10.970701] SELinux: Class can_socket not defined in policy.
2389[ 10.975407] SELinux: the above unknown classes and permissions will be allowed
2390[ 10.980679] of_batterydata_get_best_profile: 1288-9125 found
2391[ 11.032601] audit: type=1403 audit(229.779:2): policy loaded auid=4294967295 ses=4294967295
2392[ 11.040365] init: (Initializing SELinux non-enforcing took 0.08s.)
2393[ 11.048301] init: init second stage started!
2394[ 11.054991] init: Running restorecon...
2395[ 11.188795] init: waitpid failed: No child processes
2396[ 11.193466] init: (Loading properties from /default.prop took 0.00s.)
2397[ 11.199757] init: (Parsing /init.recovery.ivy.rc took 0.00s.)
2398[ 11.204900] init: (Parsing /init.rc took 0.01s.)
2399[ 11.209550] init: Starting service 'ueventd'...
2400[ 11.214357] init: Starting service 'healthd'...
2401[ 11.215321] ueventd: ueventd started!
2402[ 11.222608] init: Waiting for /dev/.coldboot_done...
2403[ 11.225146] audit: type=1400 audit(229.969:3): avc: denied { write } for pid=384 comm="healthd" name="/" dev="tmpfs" ino=15461 scontext=u:r:healthd:s0 tcontext=u:object_r:device:s0 tclass=dir permissive=1
2404[ 11.225164] audit: type=1400 audit(229.969:4): avc: denied { mknod } for pid=384 comm="healthd" capability=27 scontext=u:r:healthd:s0 tcontext=u:r:healthd:s0 tclass=capability permissive=1
2405[ 11.225181] audit: type=1400 audit(229.969:5): avc: denied { add_name } for pid=384 comm="healthd" name="__kmsg__" scontext=u:r:healthd:s0 tcontext=u:object_r:device:s0 tclass=dir permissive=1
2406[ 11.225214] audit: type=1400 audit(229.969:6): avc: denied { create } for pid=384 comm="healthd" name="__kmsg__" scontext=u:r:healthd:s0 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
2407[ 11.225250] audit: type=1400 audit(229.969:7): avc: denied { write } for pid=384 comm="healthd" name="__kmsg__" dev="tmpfs" ino=270 scontext=u:r:healthd:s0 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
2408[ 11.225271] audit: type=1400 audit(229.969:8): avc: denied { open } for pid=384 comm="healthd" path="/dev/__kmsg__" dev="tmpfs" ino=270 scontext=u:r:healthd:s0 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
2409[ 11.225297] audit: type=1400 audit(229.969:9): avc: denied { remove_name } for pid=384 comm="healthd" name="__kmsg__" dev="tmpfs" ino=270 scontext=u:r:healthd:s0 tcontext=u:object_r:device:s0 tclass=dir permissive=1
2410[ 11.225313] audit: type=1400 audit(229.969:10): avc: denied { unlink } for pid=384 comm="healthd" name="__kmsg__" dev="tmpfs" ino=270 scontext=u:r:healthd:s0 tcontext=u:object_r:device:s0 tclass=chr_file permissive=1
2411[ 11.225320] healthd: BatteryCycleCountPath not found
2412[ 11.292365] healthd: battery l=50 v=3832 t=28.7 h=2 st=3 c=1073 fc=0 chg=
2413[ 11.292999] healthd: battery l=50 v=3832 t=28.7 h=2 st=3 c=1073 fc=0 chg=
2414[ 11.325742] healthd: battery l=50 v=3832 t=28.7 h=2 st=3 c=1073 fc=0 chg=
2415[ 11.348213] healthd: battery l=50 v=3832 t=28.7 h=2 st=3 c=1073 fc=0 chg=
2416[ 11.350694] healthd: battery l=50 v=3832 t=28.7 h=2 st=3 c=1073 fc=0 chg=
2417[ 11.356480] healthd: battery l=50 v=3832 t=28.7 h=2 st=3 c=1073 fc=0 chg=
2418[ 11.507005] ueventd: Coldboot took 0.29s.
2419[ 11.511613] init: Waiting for /dev/.coldboot_done took 0.29s.
2420[ 11.516571] msm_rng:Data not available!
2421[ 11.540220] msm_rng:Data not available!
2422[ 11.562076] msm_rng:Data not available!
2423[ 11.580234] msm_rng:Data not available!
2424[ 11.600870] enable_store: android_usb: already disabled
2425[ 11.605381] init: (Loading properties from /system/build.prop took 0.00s.)
2426[ 11.612025] init: (Loading properties from /vendor/build.prop took 0.00s.)
2427[ 11.618788] init: (Loading properties from /factory/factory.prop took 0.00s.)
2428[ 11.626058] init: error opening block device /dev/block/bootdevice/by-name/FOTAKernel: No such file or directory
2429[ 11.636382] init: Starting service 'recovery'...
2430[ 11.641179] init: Starting service 'adbd'...
2431[ 11.646851] read descriptors
2432[ 11.648700] read strings
2433[ 11.653522] dwc3 f9200000.dwc3: Set Endpoint Configuration command timeout for ep0out
2434[ 11.660313] dwc3 f9200000.dwc3: set_ep_config() failed for ep0out
2435[ 11.666390] dwc3 f9200000.dwc3: failed to enable ep0out
2436[ 11.790097] msm_thermal:devmgr_client_cpufreq_update Frequency mitigation task is not initialized
2437[ 11.797942] msm_thermal:devmgr_client_hotplug_update Hotplug task is not initialized
2438[ 11.805682] msm_thermal:devmgr_client_cpufreq_update Frequency mitigation task is not initialized
2439[ 11.814523] msm_thermal:devmgr_client_cpufreq_update Frequency mitigation task is not initialized
2440[ 11.823376] msm_thermal:devmgr_client_cpufreq_update Frequency mitigation task is not initialized
2441[ 16.291724] random: nonblocking pool is initialized
2442[ 16.296513] FG: fg_batt_profile_init: Battery SOC: 65, V: 3832527uV
2443[ 16.302867] healthd: battery l=65 v=3832 t=28.7 h=2 st=3 c=1073 fc=3035000 chg=
2444[ 16.310103] healthd: battery l=65 v=3832 t=28.7 h=2 st=3 c=1073 fc=3035000 chg=
2445[ 31.647415] mdss_fb_open: can't turn on fb0! rc=-19
2446[ 31.651379] recovery[385]: unhandled level 2 translation fault (11) at 0x00000004, esr 0x92000006
2447[ 31.660123] pgd = ffffffc003c51000
2448[ 31.663495] [00000004] *pgd=0000000003c6f003, *pud=0000000003c6f003, *pmd=0000000000000000
2449[ 31.671740]
2450[ 31.673223] CPU: 5 PID: 385 Comm: recovery Tainted: G B W 3.18.31-g0c6a383-dirty #9
2451[ 31.681735] Hardware name: SoMC Ivy-ROW (DT)
2452[ 31.685978] task: ffffffc00476db00 ti: ffffffc0041dc000 task.ti: ffffffc0041dc000
2453[ 31.693451] PC is at 0x4353b8
2454[ 31.696394] LR is at 0x40907c
2455[ 31.699347] pc : [<00000000004353b8>] lr : [<000000000040907c>] pstate: 20000000
2456[ 31.706733] sp : 0000007ffd9f9510
2457[ 31.710029] x29: 0000007ffd9f9540 x28: 0000000000523028
2458[ 31.715318] x27: 0000000000000000 x26: 0000000000000000
2459[ 31.720614] x25: 0000007ffd9f9640 x24: 0000007ffd9fa640
2460[ 31.725908] x23: 0000000000559018 x22: 0000000000000001
2461[ 31.731203] x21: 0000007ffd9fabd8 x20: 0000007f1a42a290
2462[ 31.736499] x19: 0000007f1a448000 x18: 0000000000000000
2463[ 31.741794] x17: 0000007ffd9f8ca0 x16: 000000000052e7d0
2464[ 31.747088] x15: ffffffffffffffff x14: ffff000000000000
2465[ 31.752386] x13: ffffffffffffffff x12: 0000000000000010
2466[ 31.757681] x11: 0101010101010101 x10: 0000007ffd9f9440
2467[ 31.762974] x9 : 0000000000000000 x8 : 0000000000000000
2468[ 31.768268] x7 : 68726d64635e6362 x6 : 0000007ffd9f9450
2469[ 31.773565] x5 : 0000000000000000 x4 : 0000000000000079
2470[ 31.778860] x3 : 0000000000303834 x2 : 0000000000000000
2471[ 31.784155] x1 : 0000007ffd9f9440 x0 : 00000000000001e0
2472[ 31.789449]
2473[ 31.791228] init: Service 'recovery' (pid 385) killed by signal 11
2474[ 31.797106] init: Service 'recovery' (pid 385) killing any children in process group
2475[ 31.804878] init: Untracked pid 386 exited with status 1
2476[ 31.810144] init: Starting service 'recovery'...