Ubuntu Pastebin

Paste from iolc at Fri, 19 Aug 2016 09:38:44 +0000

Download as text
   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
[    0.000000] Booting Linux on physical CPU 0x0
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 3.10.49-g55f6ac8-dirty (ioc@ioc) (gcc version 4.8 (GCC) ) #2 SMP PREEMPT Tue Aug 16 16:18:04 BST 2016
[    0.000000] CPU: ARMv7 Processor [410fd030] revision 0 (ARMv7), cr=10c0387d
[    0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
[    0.000000] Machine: Qualcomm Technologies, Inc. MSM 8916 (Flattened Device Tree), model: Motorola Mobility MSM 8916 Styx
[    0.000000] Node android,ramoops-hole memblock_reserve memory af000000-af080000
[    0.000000] cma: Found external_image__region@0, memory base 0x86000000, size 8 MiB, limit 0xffffffff
[    0.000000] cma: Found modem_adsp_region@0, memory base 0x86800000, size 85 MiB, limit 0xffffffff
[    0.000000] cma: Found pheripheral_region@0, memory base 0x8bd00000, size 6 MiB, limit 0xffffffff
[    0.000000] cma: Found secure_region@0, memory base 0x00000000, size 40 MiB, limit 0xffffffff
[    0.000000] cma: Found venus_qseecom_region@0, memory base 0x00000000, size 18 MiB, limit 0x90000000
[    0.000000] cma: Found audio_region@0, memory base 0x00000000, size 3 MiB, limit 0xffffffff
[    0.000000] cma: Found splash_region@83000000, memory base 0x83000000, size 20 MiB, limit 0xffffffff
[    0.000000] cma: Found tzlog_bck_region, memory base 0xaeff1000, size 0 MiB, limit 0xffffffff
[    0.000000] cma: Found wdog_cpuctx_region, memory base 0xaeff3000, size 0 MiB, limit 0xffffffff
[    0.000000] cma: CMA: reserved 8 MiB at 0x86000000 for external_image_mem
[    0.000000] cma: CMA: reserved 85 MiB at 0x86800000 for modem_adsp_mem
[    0.000000] cma: CMA: reserved 6 MiB at 0x8bd00000 for peripheral_mem
[    0.000000] cma: CMA: reserved 40 MiB at 0xbd800000 for secure_mem
[    0.000000] cma: CMA: reserved 20 MiB at 0x8ec00000 for venus_qseecom_mem
[    0.000000] cma: CMA: reserved 4 MiB at 0xbd400000 for audio_mem
[    0.000000] cma: CMA: reserved 20 MiB at 0x83000000 for cont_splash_mem
[    0.000000] cma: CMA: reserved 0 MiB at 0xaeff1000 for tzlog_bck_mem
[    0.000000] cma: CMA: reserved 0 MiB at 0xaeff3000 for wdog_cpuctx_mem
[    0.000000] cma: CMA: reserved 8 MiB at 0xa5800000 for default region
[    0.000000] Memory policy: ECC disabled, Data cache writealloc
[    0.000000] Zone ranges:
[    0.000000]   Normal   [mem 0x80000000-0xa5ffffff]
[    0.000000]   HighMem  [mem 0xa6000000-0xbfffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x80000000-0x85ffffff]
[    0.000000]   node   0: [mem 0x8c300000-0xaeff0fff]
[    0.000000]   node   0: [mem 0xaf000000-0xbfffffff]
[    0.000000] On node 0 totalpages: 236785
[    0.000000] free_area_init_node: node 0, pgdat c13ed840, node_mem_map c1590000
[    0.000000]   Normal zone: 1216 pages used for memmap
[    0.000000]   Normal zone: 0 pages reserved
[    0.000000]   Normal zone: 130304 pages, LIFO batch:31
[    0.000000]   HighMem zone: 832 pages used for memmap
[    0.000000]   HighMem zone: 106481 pages, LIFO batch:31
[    0.000000] PERCPU: Embedded 14 pages/cpu @c1e2c000 s34880 r8192 d14272 u57344
[    0.000000] pcpu-alloc: s34880 r8192 d14272 u57344 alloc=14*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 235569
[    0.000000] Kernel command line: console=ttyHSL0, 115200,n8 androidboot.console=ttyHSL0 console=tty0 apparmor=0 selinux=permissive androidboot.hardware=qcom msm_rtb.filter=0x3F ehci-hcd.park=3 vmalloc=400M androidboot.bootdevice=soc.0 utags.blkdev=/dev/block/platform/soc.0/by-name/utags sched_enable_hmp=1 console=null 115200,n8 console=null apparmor=0 selinux=permissive androidboot.hardware=qcom msm_rtb.filter=0x3F ehci-hcd.park=3 vmalloc=400M androidboot.bootdevice=soc.0 utags.blkdev=/dev/block/platform/soc.0/by-name/utags androidboot.emmc=true androidboot.serialno=TA36400TNO androidboot.baseband=msm androidboot.mode=normal androidboot.device=surnia androidboot.hwrev=0x8300 androidboot.radio=0x4 androidboot.powerup_reason=0x00004000 androidboot.bootreason=reboot androidboot.write_protect=0 msm_poweroff.download_mode=0 androidboot.fsg-id= androidboot.secure_hardware=1 androidboot.cid=0x7 androidboot.wifimacaddr=44:80:EB:85:BF:59,44:80:EB:85:BF:5A mdss_mdp.panel=1:dsi:0:qcom,mdss_dsi_mot
[    0.000000] PID hash table entries: 2048 (order: 1, 8192 bytes)
[    0.000000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.000000] allocated 2097152 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] Memory: 816308K/947140K available (12291K kernel code, 1173K rwdata, 4808K rodata, 1094K init, 1374K bss, 130832K reserved, 380356K highmem)
[    0.000000] Virtual kernel memory layout:
    vector  : 0xffff0000 - 0xffff1000   (   4 kB)
    fixmap  : 0xfff00000 - 0xfffe0000   ( 896 kB)
[    0.000000]     vmalloc : 0xe6800000 - 0xff000000   ( 392 MB)
    lowmem  : 0xc0000000 - 0xe6000000   ( 608 MB)
[    0.000000]     pkmap   : 0xbfe00000 - 0xc0000000   (   2 MB)
    modules : 0xbf000000 - 0xbfe00000   (  14 MB)
      .text : 0xc0008000 - 0xc11b2fd4   (18092 kB)
      .init : 0xc1200000 - 0xc1311840   (1095 kB)
      .data : 0xc1312000 - 0xc1437518   (1174 kB)
       .bss : 0xc14375dc - 0xc158f0b0   (1375 kB)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] HMP scheduling enabled.
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4.
[    0.000000] NR_IRQS:16 nr_irqs:16 16
[    0.000000] Architected cp15 and mmio timer(s) running at 19.20MHz (virt/virt).
[    0.000000] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 3579139424256ns
[    0.000000] Switching to timer-based delay loop
[    0.000000] sched_clock: 32 bits at 19MHz, resolution 52ns, wraps every 223696213963ns
[    0.000000] Console: colour dummy device 80x30
[    0.000000] console [tty0] enabled
[    0.001836] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)
[    0.001872] pid_max: default: 32768 minimum: 301
[    0.002092] Security Framework initialized
[    0.002137] AppArmor: AppArmor disabled by boot time parameter
[    0.002158] Yama: becoming mindful.
[    0.002263] Mount-cache hash table entries: 512
[    0.051913] Initializing cgroup subsys debug
[    0.051948] Initializing cgroup subsys memory
[    0.051995] Initializing cgroup subsys devices
[    0.052018] Initializing cgroup subsys freezer
[    0.052081] CPU: Testing write buffer coherency: ok
[    0.052580] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000
[    0.052676] Setting up static identity map for 0xc0c6e068 - 0xc0c6e0c0
[    0.053711] ftrace: Allocated trace_printk buffers
[    0.068566] MSM Memory Dump base table set up
[    0.068607] MSM Memory Dump apps data table set up
[    0.068648] Configuring XPU violations to be fatal errors
[    0.070357] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001
[    0.071397] CPU2: thread -1, cpu 2, socket 0, mpidr 80000002
[    0.072361] CPU3: thread -1, cpu 3, socket 0, mpidr 80000003
[    0.072520] Brought up 4 CPUs
[    0.072593] SMP: Total of 4 processors activated (153.60 BogoMIPS).
[    0.072613] CPU: All CPU(s) started in SVC mode.
[    0.073613] devtmpfs: initialized
[    0.088003] EVM: security.selinux
[    0.088024] EVM: security.SMACK64
[    0.088041] EVM: security.capability
[    0.094089] pinctrl core: initialized pinctrl subsystem
[    0.094468] regulator-dummy: no parameters
[    0.097014] NET: Registered protocol family 16
[    0.101344] DMA: preallocated 256 KiB pool for atomic coherent allocations
[    0.138193] gpiochip_find_base: found new base at 902
[    0.138302] gpiochip_add: registered GPIOs 902 to 1023 on device: msm_tlmm_gpio
[    0.149528] cma: Assigned CMA region at 0 to b017000.qcom,wdt device
[    0.149726] msm_watchdog b017000.qcom,wdt: wdog absent resource not present
[    0.156355] msm_watchdog b017000.qcom,wdt: MSM Watchdog Initialized
[    0.157139] cma: Assigned CMA region at 0 to 8600720.tz-log device
[    0.161267] spmi_pmic_arb 200f000.qcom,spmi: PMIC Arb Version-2 0x20010000
[    0.165751] cma: Assigned CMA region at 0 to 1de0000.qcom,venus device
[    0.166288] cma: Assigned CMA region at 0 to 4080000.qcom,mss device
[    0.166737] cma: Assigned CMA region at 0 to a21b000.qcom,pronto device
[    0.167495] ACC: mem_acc_efuse_init: efuse_addr = 0x00058000 (len=0x1000)
[    0.167585] ACC: mem_acc_fuse_is_setting_expected: [row:0] = 0x4820000000800705 @52:1 == 1 ?: no
[    0.167750] mem_acc_corner: 0 <--> 0 mV 
[    0.170006] persistent_ram: paddr: af000000, vaddr: e6830000, buf size = 0x1fff4
[    0.170036] persistent_ram: found existing invalid buffer, size 134217728, start 0
[    0.170072] persistent_ram: paddr: af020000, vaddr: e6851000, buf size = 0x3fff4
[    0.170099] persistent_ram: found existing invalid buffer, size 134285813, start 68085
[    0.170130] persistent_ram: paddr: af060000, vaddr: e6892000, buf size = 0x7f4
[    0.170843] console [pstore-1] enabled
[    0.170862] pstore: psi registered
[    0.170882] ramoops: attached 0x80000@0xaf000000, ecc: 0/0
[    0.174507] KPI: Bootloader start count = 61422
[    0.174533] KPI: Bootloader end count = 136425
[    0.174553] KPI: Bootloader display count = 1074270208
[    0.174574] KPI: Bootloader load kernel count = 3598
[    0.174596] KPI: Kernel MPM timestamp = 166854
[    0.174615] KPI: Kernel MPM Clock frequency = 32768
[    0.174650] socinfo_print: v8, id=206, ver=1.0, raw_id=1797, raw_ver=0, hw_plat=8, hw_plat_ver=65536
 accessory_chip=0, hw_plat_subtype=0, pmic_model=65547, pmic_die_revision=131072
[    0.175462] smd_channel_probe_worker: allocation table not initialized
[    0.175623] smd_channel_probe_worker: allocation table not initialized
[    0.181857] msm_mpm_dev_probe(): Cannot get clk resource for XO
[    0.181902] platform 601d0.qcom,mpm: Driver mpm-v2 requests probe deferral
[    0.182232] msm-jtag-fuse 5e01c.jtagfuse: JTag Fuse initialized
[    0.183727] 8916_s1_corner: 0 <--> 0 mV at 0 mV normal idle 
[    0.184184] 8916_s1_corner_ao: 0 <--> 0 mV at 0 mV normal idle 
[    0.184647] 8916_s1_floor_corner: 0 <--> 0 mV at 0 mV normal idle 
[    0.185136] 8916_s3: 1200 <--> 1300 mV at 1200 mV normal idle 
[    0.185627] 8916_s4: 1800 <--> 2100 mV at 1800 mV normal idle 
[    0.186108] 8916_l1: 1225 mV normal idle 
[    0.186603] 8916_l2: 1200 mV normal idle 
[    0.187094] 8916_l3: 500 <--> 1287 mV at 0 mV normal idle 
[    0.187559] 8916_l3_corner_ao: 0 <--> 0 mV at 0 mV normal idle 
[    0.188062] 8916_l3_corner_so: 0 <--> 0 mV at 0 mV normal idle 
[    0.188559] 8916_l4: 2050 mV normal idle 
[    0.189060] 8916_l5: 1800 mV normal idle 
[    0.189765] 8916_l6: 1800 mV normal idle 
[    0.190262] 8916_l7: 1800 mV normal idle 
[    0.190735] 8916_l7_ao: 1800 mV normal idle 
[    0.191195] 8916_l7_so: 1800 mV normal idle 
[    0.191691] 8916_l8: 2850 <--> 2900 mV at 2850 mV normal idle 
[    0.192203] 8916_l9: 3300 mV normal idle 
[    0.192713] 8916_l10: 1800 mV normal idle 
[    0.193236] 8916_l11: 1800 <--> 2950 mV at 1800 mV normal idle 
[    0.193739] 8916_l12: 1800 <--> 2950 mV at 1800 mV normal idle 
[    0.194253] 8916_l13: 3075 mV normal idle 
[    0.194781] 8916_l14: 1800 <--> 3300 mV at 1800 mV normal idle 
[    0.195310] 8916_l15: 1800 <--> 3300 mV at 1800 mV normal idle 
[    0.195824] 8916_l16: 1800 <--> 3300 mV at 3100 mV normal idle 
[    0.196565] 8916_l17: 2850 mV normal idle 
[    0.197093] 8916_l18: 2700 mV normal idle 
[    0.197712] 8916_s2: 1050 <--> 1350 mV at 1150 mV 
[    0.197857] spm_regulator_probe: name=8916_s2, range=LV, voltage=1150000 uV, mode=PWM, step rate=1200 uV/us
[    0.198510] cpr_efuse_init: apc_corner: efuse_addr = 0x00058000 (len=0x1000)
[    0.198572] cpr_parse_speed_bin_fuse: apc_corner: [row: 1]: 0x210616d83b, speed_bits = 0
[    0.198610] cpr_parse_pvs_version_fuse: apc_corner: [row: 0]: 0x4820000000800705, pvs_version = 0
[    0.198717] cpr_pvs_init: apc_corner: pvs voltage: [1050000 1125000 1337500] uV
[    0.198747] cpr_pvs_init: apc_corner: ceiling voltage: [1050000 1150000 1350000] uV
[    0.198778] cpr_pvs_init: apc_corner: floor voltage: [1050000 1050000 1162500] uV
[    0.199051] cpr_init_cpr_efuse: apc_corner: [row:27] = 0x988e72039c8d4aa2
[    0.199089] cpr_init_cpr_efuse: apc_corner: CPR disable fuse = 0
[    0.199119] cpr_init_cpr_efuse: apc_corner: Corner[1]: ro_sel = 2, target quot = 924
[    0.199151] cpr_init_cpr_efuse: apc_corner: Corner[2]: ro_sel = 2, target quot = 924
[    0.199184] cpr_init_cpr_efuse: apc_corner: Corner[3]: ro_sel = 2, target quot = 1322
[    0.199258] cpr_get_corner_quot_adjustment: apc_corner: fuse corner 2 quotient adjustment scaling factor: 0.000
[    0.199292] cpr_get_corner_quot_adjustment: apc_corner: fuse corner 3 quotient adjustment scaling factor: 0.650
[    0.199329] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[1] = 924
[    0.199357] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[2] = 924
[    0.199386] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[3] = 924
[    0.199414] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[4] = 924
[    0.199443] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[5] = 1185
[    0.199471] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[6] = 1248
[    0.199500] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[7] = 1285
[    0.199528] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[8] = 1322
[    0.199557] cpr_get_corner_quot_adjustment: apc_corner: adjusted quotient[9] = 1322
[    0.199625] cpr_populate_opp_table: apc_corner: adding OPP entry failed - OPP may not be enabled, rc=-22
[    0.199686] cpr_init_cpr_parameters: apc_corner: up threshold = 0, down threshold = 2
[    0.199733] cpr_init_cpr_parameters: apc_corner: CPR is enabled by default.
[    0.199762] cpr_config: apc_corner: Timer count: 0x17700 (for 5000 us)
[    0.200059] apc_corner: 0 <--> 0 mV 
[    0.200853] i2c-msm-v2 78b6000.i2c: probing driver i2c-msm-v2
[    0.200962] i2c-msm-v2 78b6000.i2c: error on clk_get(core_clk):-517
[    0.200992] i2c-msm-v2 78b6000.i2c: error probe() failed with err:-517
[    0.201033] platform 78b6000.i2c: Driver i2c-msm-v2 requests probe deferral
[    0.201217] i2c-msm-v2 78b8000.i2c: probing driver i2c-msm-v2
[    0.201309] i2c-msm-v2 78b8000.i2c: error on clk_get(core_clk):-517
[    0.201337] i2c-msm-v2 78b8000.i2c: error probe() failed with err:-517
[    0.201374] platform 78b8000.i2c: Driver i2c-msm-v2 requests probe deferral
[    0.201617] i2c-msm-v2 78b5000.i2c: probing driver i2c-msm-v2
[    0.201705] i2c-msm-v2 78b5000.i2c: error on clk_get(core_clk):-517
[    0.201732] i2c-msm-v2 78b5000.i2c: error probe() failed with err:-517
[    0.201769] platform 78b5000.i2c: Driver i2c-msm-v2 requests probe deferral
[    0.203988] msm-thermal qcom,msm-thermal.58: msm_thermal:Failed reading node=/soc/qcom,msm-thermal, key=qcom,rpm-phase-resource-type err=-22. KTM continues
[    0.204039] msm-thermal qcom,msm-thermal.58: msm_thermal:Failed reading node=/soc/qcom,msm-thermal, key=qcom,gfx-sensor-id. err=-22. KTM continues
[    0.204083] msm-thermal qcom,msm-thermal.58: probe_therm_reset:Failed reading node=/soc/qcom,msm-thermal, key=qcom,therm-reset-temp err=-22. KTM continues
[    0.204130] msm-thermal qcom,msm-thermal.58: probe_vdd_mx:Failed reading node=/soc/qcom,msm-thermal, key=qcom,mx-restriction-temp. KTM continues
[    0.204176] msm-thermal qcom,msm-thermal.58: probe_psm:Failed reading node=/soc/qcom,msm-thermal, key=qcom,pmic-sw-mode-temp. err=-22. KTM continues
[    0.204518] msm_thermal:vdd_restriction_reg_init Defer vdd rstr freq init.
[    0.204942] msm-thermal qcom,msm-thermal.58: probe_sensor_info:unable to find DT for sensor-information.KTM continues
[    0.204987] msm-thermal qcom,msm-thermal.58: probe_ocr:Failed reading node=/soc/qcom,msm-thermal, key=qcom,pmic-opt-curr-temp err:-22. KTM continues
[    0.206111] sps:sps is ready.
[    0.212719] qcom,rpmcc-8916 1800000.qcom,rpmcc: Registered RPM clocks.
[    0.222881] qcom,gcc-8916 1800000.qcom,gcc: Registered GCC clocks
[    0.224856] clock-a7 b011050.qcom,clock-a7: Speed bin: 0 PVS Version: 0
[    0.227449] i2c-msm-v2 78b6000.i2c: probing driver i2c-msm-v2
[    0.227593] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.
[    0.227628] i2c-msm-v2 78b6000.i2c: msm_bus_scale_register_client(mstr-id:86):0 (not a problem)
[    0.228355] kworker/u8:2 (47) used greatest stack depth: 6748 bytes left
[    0.228839] i2c-msm-v2 78b8000.i2c: probing driver i2c-msm-v2
[    0.228963] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.
[    0.228996] i2c-msm-v2 78b8000.i2c: msm_bus_scale_register_client(mstr-id:86):0 (not a problem)
[    0.229622] kworker/u8:3 (49) used greatest stack depth: 6216 bytes left
[    0.230486] i2c-msm-v2 78b5000.i2c: probing driver i2c-msm-v2
[    0.230658] AXI: msm_bus_scale_register_client(): msm_bus_scale_register_client: Bus driver not ready.
[    0.230692] i2c-msm-v2 78b5000.i2c: msm_bus_scale_register_client(mstr-id:86):0 (not a problem)
[    0.266732] bio: create slab <bio-0> at 0
[    0.268183] of_get_named_gpio_flags: can't parse gpios property
[    0.268321] dummy_vreg: no parameters
[    0.269490] SCSI subsystem initialized
[    0.269736] usbcore: registered new interface driver usbfs
[    0.269828] usbcore: registered new interface driver hub
[    0.269964] usbcore: registered new device driver usb
[    0.270097] media: Linux media interface: v0.10
[    0.270163] Linux video capture interface: v2.00
[    0.270411] BATTERY: batterydata_init: Battery-data device created!
[    0.271974] cma: Assigned CMA region at 0 to 8.qcom,ion-heap device
[    0.272112] ION-heap mm: Cannot specify alignment for this type of heap
[    0.272264] cma: Assigned CMA region at 0 to 1b.qcom,ion-heap device
[    0.272487] cma: Assigned CMA region at 0 to 1c.qcom,ion-heap device
[    0.272687] cma: Assigned CMA region at 0 to 17.qcom,ion-heap device
[    0.272883] cma: Assigned CMA region at 0 to 1a.qcom,ion-heap device
[    0.273152] ION heap system created
[    0.273251] ION heap kmalloc created
[    0.273287] ION heap mm created at 0xbd800000 with size 2800000
[    0.273311] ION heap qsecom created at 0x8ec00000 with size 1200000
[    0.273335] ION heap audio created at 0xbd400000 with size 314000
[    0.273360] ION heap pil_1 created at 0x8bd00000 with size 600000
[    0.273381] ION heap pil_2 created at 0x86800000 with size 5500000
[    0.273520] msm_bus_fabric_init_driver
[    0.273725] msm_bus_device 580000.ad-hoc-bus: Dev 1024
[    0.273750] msm_bus_device 580000.ad-hoc-bus: Util-fact is missing, default to 100
[    0.273772] msm_bus_device 580000.ad-hoc-bus: Vrail-comp is missing, default to 100
[    0.273932] msm_bus_device 580000.ad-hoc-bus: msmbus_coresight initialized
[    0.273967] msm_bus_device 580000.ad-hoc-bus: Dev 0
[    0.273988] msm_bus_device 580000.ad-hoc-bus: Util-fact is missing, default to 100
[    0.274009] msm_bus_device 580000.ad-hoc-bus: Vrail-comp is missing, default to 100
[    0.274147] msm_bus_device 580000.ad-hoc-bus: msmbus_coresight initialized
[    0.274183] msm_bus_device 580000.ad-hoc-bus: Dev 4096
[    0.274205] msm_bus_device 580000.ad-hoc-bus: Util-fact is missing, default to 100
[    0.274226] msm_bus_device 580000.ad-hoc-bus: Vrail-comp is missing, default to 100
[    0.274365] msm_bus_device 580000.ad-hoc-bus: msmbus_coresight initialized
[    0.277249] msm_bus_init_clk: Valid node clk node 1024 ctx 0
[    0.277264] msm_bus_init_clk: Valid node clk node 1024 ctx 1
[    0.277339] msm_bus_init_clk: Valid node clk node 0 ctx 0
[    0.277351] msm_bus_init_clk: Valid node clk node 0 ctx 1
[    0.277424] msm_bus_init_clk: Valid node clk node 4096 ctx 0
[    0.277436] msm_bus_init_clk: Valid node clk node 4096 ctx 1
[    0.283887] gdsc_venus: no parameters
[    0.284114] gdsc_mdss: no parameters
[    0.284338] gdsc_jpeg: no parameters
[    0.284551] gdsc_vfe: no parameters
[    0.284795] gdsc_oxili_gx: no parameters
[    0.285427] mdss_pll_probe: MDSS pll label = MDSS DSI 0 PLL
[    0.286067] dsi_pll_clock_register_lpm: Registered DSI PLL clocks successfully
[    0.287352] msm_iommu 1f00000.qcom,iommu: device gfx_iommu (model: 500) mapped at e69e0000, with 2 ctx banks
[    0.291506] msm_iommu 1e00000.qcom,iommu: device apps_iommu (model: 500) mapped at e6f80000, with 20 ctx banks
[    0.292504] msm_iommu_ctx 1f09000.qcom,iommu-ctx: context gfx3d_user using bank 1
[    0.292635] msm_iommu_ctx 1f0a000.qcom,iommu-ctx: context gfx3d_priv using bank 2
[    0.292749] msm_iommu_ctx 1e22000.qcom,iommu-ctx: context jpeg_enc0 using bank 2
[    0.292857] msm_iommu_ctx 1e23000.qcom,iommu-ctx: context vfe using bank 3
[    0.292955] msm_iommu_ctx 1e24000.qcom,iommu-ctx: context mdp_0 using bank 4
[    0.293055] msm_iommu_ctx 1e25000.qcom,iommu-ctx: context venus_ns using bank 5
[    0.293156] msm_iommu_ctx 1e26000.qcom,iommu-ctx: context cpp using bank 6
[    0.293253] msm_iommu_ctx 1e27000.qcom,iommu-ctx: context mDSP using bank 7
[    0.293350] msm_iommu_ctx 1e28000.qcom,iommu-ctx: context gss using bank 8
[    0.293445] msm_iommu_ctx 1e29000.qcom,iommu-ctx: context a2 using bank 9
[    0.293551] msm_iommu_ctx 1e32000.qcom,iommu-ctx: context mdp_1 using bank 18
[    0.293652] msm_iommu_ctx 1e33000.qcom,iommu-ctx: context venus_sec_pixel using bank 19
[    0.293753] msm_iommu_ctx 1e34000.qcom,iommu-ctx: context venus_sec_bitstream using bank 20
[    0.293858] msm_iommu_ctx 1e35000.qcom,iommu-ctx: context venus_sec_non_pixel using bank 21
[    0.293959] msm_iommu_ctx 1e36000.qcom,iommu-ctx: context venus_fw using bank 22
[    0.294062] msm_iommu_ctx 1e37000.qcom,iommu-ctx: context periph_rpm using bank 23
[    0.294163] msm_iommu_ctx 1e38000.qcom,iommu-ctx: context periph_CE using bank 24
[    0.294269] msm_iommu_ctx 1e39000.qcom,iommu-ctx: context periph_BLSP using bank 25
[    0.294370] msm_iommu_ctx 1e3a000.qcom,iommu-ctx: context periph_SDC1 using bank 26
[    0.294482] msm_iommu_ctx 1e3b000.qcom,iommu-ctx: context periph_SDC2 using bank 27
[    0.294584] msm_iommu_ctx 1e3c000.qcom,iommu-ctx: context periph_audio using bank 28
[    0.294688] msm_iommu_ctx 1e3d000.qcom,iommu-ctx: context periph_USB_HS1 using bank 29
[    0.295512] Advanced Linux Sound Architecture Driver Initialized.
[    0.296139] Bluetooth: Core ver 2.16
[    0.296181] NET: Registered protocol family 31
[    0.296196] Bluetooth: HCI device and connection manager initialized
[    0.296217] Bluetooth: HCI socket layer initialized
[    0.296236] Bluetooth: L2CAP socket layer initialized
[    0.296275] Bluetooth: SCO socket layer initialized
[    0.296566] cfg80211: Calling CRDA to update world regulatory domain
[    0.296599] cfg80211: World regulatory domain updated:
[    0.296613] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[    0.296635] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    0.296655] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    0.296674] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    0.296694] cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz), (300 mBi, 2000 mBm)
[    0.296714] cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz), (300 mBi, 2000 mBm)
[    0.296734] cfg80211:   (5490000 KHz - 5710000 KHz @ 80000 KHz), (300 mBi, 2000 mBm)
[    0.296753] cfg80211:   (5735000 KHz - 5835000 KHz @ 80000 KHz), (300 mBi, 2000 mBm)
[    0.296773] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm)
[    0.296897] NetLabel: Initializing
[    0.296911] NetLabel:  domain hash size = 128
[    0.296924] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.296993] NetLabel:  unlabeled traffic allowed by default
[    0.298812] Switching to clocksource arch_sys_counter
[    0.339280] mmi,hob_ram hob_ram.65: allocation type: smem
[    0.339723] NET: Registered protocol family 2
[    0.340189] TCP established hash table entries: 4096 (order: 3, 32768 bytes)
[    0.340273] TCP bind hash table entries: 4096 (order: 4, 81920 bytes)
[    0.340372] TCP: Hash tables configured (established 4096 bind 4096)
[    0.340426] TCP: reno registered
[    0.340444] UDP hash table entries: 256 (order: 1, 12288 bytes)
[    0.340475] UDP-Lite hash table entries: 256 (order: 1, 12288 bytes)
[    0.340696] NET: Registered protocol family 1
[    0.341254] gcc-mdss-8916 qcom,gcc-mdss.29: Registered GCC MDSS clocks.
[    0.342029] Trying to unpack rootfs image as initramfs...
[    0.529282] Freeing initrd memory: 4320K (c2000000 - c2438000)
[    0.533557] hw perfevents: enabled with ARMv8 Cortex-A53 PMU driver, 7 counters available
[    0.534762] audit: initializing netlink socket (disabled)
[    0.534805] type=2000 audit(0.509:1): initialized
[    0.697564] bounce pool size: 64 pages
[    0.705187] Registering esdfs 0.2
[    0.705337] fuse init (API version 7.22)
[    0.705690] SGI XFS with security attributes, large block/inode numbers, no debug enabled
[    0.707341] msgmni has been set to 924
[    0.709714] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[    0.709740] io scheduler noop registered
[    0.709753] io scheduler deadline registered
[    0.709780] io scheduler row registered
[    0.709811] io scheduler cfq registered (default)
[    0.709919] gpiochip_find_base: found new base at 900
[    0.710004] gpiochip_add: registered GPIOs 900 to 901 on device: pm8916-mpp
[    0.710141] qcom,qpnp-pin qpnp-pin-e53e6000: qpnp_pin_probe: gpio_chip registered between 900-901
[    0.710193] gpiochip_find_base: found new base at 899
[    0.710266] gpiochip_add: registered GPIOs 899 to 899 on device: pm8916-gpio
[    0.710311] qcom,qpnp-pin qpnp-pin-e53e6200: qpnp_pin_probe: gpio_chip registered between 899-899
[    0.710465] gpiochip_find_base: found new base at 867
[    0.710541] gpiochip_add: registered GPIOs 867 to 898 on device: smp2p
[    0.711035] gpiochip_find_base: found new base at 835
[    0.711109] gpiochip_add: registered GPIOs 835 to 866 on device: smp2p
[    0.711140] gpiochip_find_base: found new base at 803
[    0.711214] gpiochip_add: registered GPIOs 803 to 834 on device: smp2p
[    0.711714] gpiochip_find_base: found new base at 771
[    0.711791] gpiochip_add: registered GPIOs 771 to 802 on device: smp2p
[    0.711822] gpiochip_find_base: found new base at 739
[    0.711894] gpiochip_add: registered GPIOs 739 to 770 on device: slave-kernel
[    0.711977] platform qcom,smp2pgpio-ssr-smp2p-1-in.12: Driver smp2pgpio requests probe deferral
[    0.712023] gpiochip_find_base: found new base at 739
[    0.712096] gpiochip_add: registered GPIOs 739 to 770 on device: master-kernel
[    0.712167] platform qcom,smp2pgpio-ssr-smp2p-1-out.13: Driver smp2pgpio requests probe deferral
[    0.712211] gpiochip_find_base: found new base at 739
[    0.712283] gpiochip_add: registered GPIOs 739 to 770 on device: smp2p
[    0.712794] gpiochip_find_base: found new base at 707
[    0.712869] gpiochip_add: registered GPIOs 707 to 738 on device: smp2p
[    0.712899] gpiochip_find_base: found new base at 675
[    0.712972] gpiochip_add: registered GPIOs 675 to 706 on device: slave-kernel
[    0.713044] platform qcom,smp2pgpio-ssr-smp2p-4-in.18: Driver smp2pgpio requests probe deferral
[    0.713088] gpiochip_find_base: found new base at 675
[    0.713160] gpiochip_add: registered GPIOs 675 to 706 on device: master-kernel
[    0.713230] platform qcom,smp2pgpio-ssr-smp2p-4-out.19: Driver smp2pgpio requests probe deferral
[    0.714104] msm_dss_get_res_byname: 'vbif_nrt_phys' resource not found
[    0.714130] mdss_mdp_probe+0x180/0xd08->msm_dss_ioremap_byname: 'vbif_nrt_phys' msm_dss_get_res_byname failed
[    0.714156] mdss_mdp_parse_dt_hw_settings: MDSS VBIF settings not found
[    0.714191] mdss_mdp_parse_dt_prop_len: prop qcom,mdss-pipe-cursor-off : doesn't exist in device tree
[    0.714242] mdss_mdp_pipe_addr_setup: type:1 ftchid:1 xinid:0 num:0 ndx:0x1 prio:0
[    0.714268] mdss_mdp_pipe_addr_setup: type:2 ftchid:7 xinid:1 num:3 ndx:0x8 prio:1
[    0.714288] mdss_mdp_pipe_addr_setup: type:2 ftchid:8 xinid:5 num:4 ndx:0x10 prio:2
[    0.714314] mdss_mdp_pipe_addr_setup: type:3 ftchid:4 xinid:2 num:6 ndx:0x40 prio:3
[    0.714346] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-pipe-sw-reset-off : u32 array read
[    0.714515] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-ib-factor-overlap : u32 array read
[    0.714540] mdss_mdp_parse_dt_handler: Error from prop qcom,mdss-ib-factor-cmd : u32 array read
[    0.714570] mdss_mdp_parse_dt_prop_len: prop qcom,mdss-clk-levels : doesn't exist in device tree
[    0.714611] mdss_mdp_parse_dt_prop_len: prop qcom,mdss-ad-off : doesn't exist in device tree
[    0.714982] mdss_mdp_irq_clk_register: unable to get clk: lut_clk
[    0.716835] mdss_dsi_ctrl_probe: DSI Ctrl name = MDSS DSI CTRL->0
[    0.717081] BL: panel=mipi_mot_video_boe_qhd_450, manufacture_id(0xDA)= 0xd2 controller_ver(0xDB)= 0xc controller_drv_ver(0XDC)= 0x1, full=0x0000000000010cd2
[    0.717150] mdss_dsi_panel_init: Panel Name = mipi_mot_video_boe_qhd_450_v3
[    0.717503] mdss_dsi_parse_panel_features: ulps feature disabled
[    0.717526] mdss_dsi_parse_panel_features: ulps during suspend feature disabled
[    0.717546] mdss_dsi_parse_panel_features: dynamic switch feature enabled: 0
[    0.717576] of_get_named_gpio_flags: can't parse gpios property
[    0.717582] mdss_dsi_parse_panel_features:1365, Disp_en gpio not specified
[    0.717641] mdss_dsi_panel_init: Continuous splash enabled
[    0.717934] of_get_named_gpio_flags: can't parse gpios property
[    0.717941] dsi_panel_device_register:1901, Disp_en gpio not specified
[    0.717960] of_get_named_gpio_flags: can't parse gpios property
[    0.717965] dsi_panel_device_register:1909, TE gpio not specified
[    0.717982] of_get_named_gpio_flags: can't parse gpios property
[    0.717987] dsi_panel_device_register: bklt_en gpio not specified
[    0.718258] mdss_dsi_pll_1_clk_init: can't find vco_clk. rc=-517
[    0.718274] PLL 1 Clock's did not register
[    0.718303] mdss_dsi_retrieve_ctrl_resources: ctrl_base=e68f8000 ctrl_size=25c phy_base=e68fa500 phy_size=2b0
[    0.739619] mdss_register_panel: adding framebuffer device 1a98000.qcom,mdss_dsi
[    0.739856] mdss_hw_rev_init: MDP Rev=10060000
[    0.740520] mdss_dsi_status_init: DSI status check interval:8000
[    0.740911] mdss_register_panel: adding framebuffer device qcom,mdss_wb_panel.24
[    0.741903] mdss_fb_register: FrameBuffer[0] 540x960 registered successfully!
[    0.741966] mdss_mdp_overlay_init: mdss_mdp_overlay_init: unable to add event timer
[    0.742448] mdss_fb_register: FrameBuffer[1] 1280x720 registered successfully!
[    0.742497] mdss_mdp_overlay_init: mdss_mdp_overlay_init: unable to add event timer
[    0.742574] mdss_mdp_splash_parse_dt: splash mem child node is not present
[    0.744502] IPC_RTR: msm_ipc_router_smd_driver_register Already driver registered IPCRTR
[    0.745822] msm_rpm_log_probe: OK
[    0.746108] msm-jtagv8-mm: probe of 85c000.jtagmm failed with error -1
[    0.746148] msm-jtagv8-mm: probe of 85d000.jtagmm failed with error -1
[    0.746186] msm-jtagv8-mm: probe of 85e000.jtagmm failed with error -1
[    0.746225] msm-jtagv8-mm: probe of 85f000.jtagmm failed with error -1
[    0.747926] NET: Registered protocol family 27
[    0.749526] In memshare_probe, Memshare probe success
[    0.751724] of_get_named_gpio_flags exited with status -517
[    0.751734] subsys-pil-tz a21b000.qcom,pronto: [wcnss]: Error getting proxy unvoting gpio
[    0.751807] platform a21b000.qcom,pronto: Driver subsys-pil-tz requests probe deferral
[    0.752983] of_get_named_gpio_flags exited with status -517
[    0.752993] pil-q6v5-mss 4080000.qcom,mss: [modem]: Error getting proxy unvoting gpio
[    0.753138] platform 4080000.qcom,mss: Driver pil-q6v5-mss requests probe deferral
[    0.754054] mmi_unit_info (SMEM) for modem: version = 0x03, device = 'surnia', radio = 4, system_rev = 0x8300, system_serial = 0x3bd8160600000000, machine = 'Qualcomm Technologies, Inc. MSM ', barcode = 'TA36400TNO', baseband = '', carrier = '' pu_reason = 0x00004000
[    0.754626] msm_serial_hsl_probe: detected port #0 (ttyHSL0)
[    0.754692] AXI: get_pdata(): Error: Client name not found
[    0.754708] AXI: msm_bus_cl_get_pdata(): client has to provide missing entry for successful registration
[    0.754729] msm_serial_hsl_probe: Bus scaling is disabled
[    0.754808] 78af000.serial: ttyHSL0 at MMIO 0x78af000 (irq = 139) is a MSM
[    0.754862] msm_hsl_console_setup: console setup on port #0
[    3.497948] console [ttyHSL0] enabled
[    3.502109] msm_serial_hsl_init: driver initialized
[    3.519134] kgsl kgsl-3d0: Initialized kgsl-3d0: mmu=on
[    3.530612] brd: module loaded
[    3.535287] loop: module loaded
[    3.538212] QSEECOM: qseecom_probe: qseecom.qsee_version = 0x800000
[    3.544043] QSEECOM: qseecom_probe: disk-encrypt-pipe-pair=0x2
[    3.549830] QSEECOM: qseecom_probe: Device does not support PFE
[    3.555886] QSEECOM: qseecom_probe: qsee-ce-hw-instance=0x0
[    3.559982] QSEECOM: qseecom_probe: qseecom clocks handled by other subsystem
[    3.567801] QSEECOM: qseecom_probe: secure app region addr=0x86000000 size=0x300000
[    3.578357] AKM compass driver: initialize.
[    3.582025] i2c-core: driver [tabla-i2c-core] using legacy suspend method
[    3.588616] i2c-core: driver [tabla-i2c-core] using legacy resume method
[    3.595589] i2c-core: driver [wcd9xxx-i2c-core] using legacy suspend method
[    3.602612] i2c-core: driver [wcd9xxx-i2c-core] using legacy resume method
[    3.610241] SCSI Media Changer driver v0.25 
[    3.614601] of_get_named_gpio_flags: can't parse gpios property
[    3.614609] of_get_named_gpio_flags: can't parse gpios property
[    3.614616] of_get_named_gpio_flags: can't parse gpios property
[    3.614622] of_get_named_gpio_flags: can't parse gpios property
[    3.614628] of_get_named_gpio_flags: can't parse gpios property
[    3.614634] of_get_named_gpio_flags: can't parse gpios property
[    3.614640] of_get_named_gpio_flags: can't parse gpios property
[    3.614670] sps:sps_connect:pipe is NULL.
[    3.618221] spi_qsd 78b7000.spi: msm_spi_bam_pipe_connect: sps_connect((null):0x  (null)):-1
[    3.626841] sps:sps_connect:pipe is NULL.
[    3.630999] spi_qsd 78b7000.spi: msm_spi_bam_pipe_connect: sps_connect((null):0x  (null)):-1
[    3.639754] sps: BAM device 0x07884000 is not registered yet.
[    3.654015] modprobe (134) used greatest stack depth: 6072 bytes left
[    3.645477] sps:BAM 0x07884000 is registered.
[    3.661977] sps:BAM 0x07884000 (va:0xe6f40000) enabled: ver:0x18, number of pipes:16
[    3.671644] input: sensorprocessor as /devices/virtual/input/input0
[    3.677166] stml0xx spi0.0: stml0xx_reset
[    3.780225] tun: Universal TUN/TAP device driver, 1.6
[    3.784443] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    3.793251] PPP generic driver version 2.4.2
[    3.796803] PPP BSD Compression module registered
[    3.801543] PPP Deflate Compression module registered
[    3.804718] stml0xx spi0.0: Sensor Hub reports reset
[    3.811877] PPP MPPE Compression module registered
[    3.816798] NET: Registered protocol family 24
[    3.821851] wcnss_wlan probed in built-in mode
[    3.826383] stml0xx spi0.0: Sensor Hub initialization successful
[    3.826841] usbcore: registered new interface driver asix
[    3.826902] usbcore: registered new interface driver ax88179_178a
[    3.826935] usbcore: registered new interface driver cdc_ether
[    3.826967] usbcore: registered new interface driver net1080
[    3.826999] usbcore: registered new interface driver cdc_subset
[    3.827029] usbcore: registered new interface driver zaurus
[    3.867809] usbcore: registered new interface driver cdc_ncm
[    3.873893] msm_sharedmem: sharedmem_register_qmi: qmi init successful
[    3.880456] stml0xx spi0.0: Cover status: 1
[    3.880469] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rmtfs'
[    3.880642] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rfsa_dsp'
[    3.880808] msm_sharedmem: msm_sharedmem_probe: Device created for client 'rfsa_mdm'
[    3.880909] msm_sharedmem: msm_sharedmem_probe: qcom,client-id property not found
[    3.881042] msm_sharedmem: msm_sharedmem_probe: Device created for client 'bimc'
[    3.881495] msm_otg 78d9000.usb: msm_otg probe
[    3.882099] of_get_named_gpio_flags: can't parse gpios property
[    3.884181] msm_otg 78d9000.usb: OTG regs = e69da000
[    3.886253] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    3.886256] ehci-msm: Qualcomm On-Chip EHCI Host Controller
[    3.886547] Unable to get vbus_otg
[    3.886552] msm_hsusb_host msm_hsusb_host: unable to register with transceiver
[    3.886568] platform msm_hsusb_host: Driver msm_hsusb_host requests probe deferral
[    3.886589] ehci-msm2: Qualcomm EHCI Host Controller
[    3.887406] usbcore: registered new interface driver cdc_acm
[    3.887408] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[    3.887457] usbcore: registered new interface driver ccid_bridge
[    3.887606] ccid_bridge_init: success
[    3.887657] usbcore: registered new interface driver usb-storage
[    3.887689] usbcore: registered new interface driver ums-alauda
[    3.887721] usbcore: registered new interface driver ums-cypress
[    3.887749] usbcore: registered new interface driver ums-datafab
[    3.887777] usbcore: registered new interface driver ums-freecom
[    3.887804] usbcore: registered new interface driver ums-isd200
[    3.887831] usbcore: registered new interface driver ums-jumpshot
[    3.887858] usbcore: registered new interface driver ums-karma
[    3.887886] usbcore: registered new interface driver ums-onetouch
[    3.887914] usbcore: registered new interface driver ums-sddr09
[    3.887941] usbcore: registered new interface driver ums-sddr55
[    3.887969] usbcore: registered new interface driver ums-usbat
[    3.888063] usbcore: registered new interface driver usbserial
[    3.888092] usbcore: registered new interface driver qc_csvt
[    3.888119] usbserial: USB Serial support registered for qc_csvt
[    3.888154] usbcore: registered new interface driver usb_ehset_test
[    4.090829] stml0xx spi0.0: sensorhub : 000: Boot Complete 10
[    4.098695] mousedev: PS/2 mouse device common for all mice
[    4.103690] usbcore: registered new interface driver xpad
[    4.109134] input: input_mt_wrapper as /devices/virtual/input/input1
[    4.115992] synaptics_dsx_of_init: entered of_init function
[    4.121307] synaptics_dsx_dt_parse_mode: can't find touchstate modes node
[    4.128149] synaptics_dsx_of_init: failed to load default mode
[    4.134176] synaptics_dsx_of_init: using gpio config
[    4.184048] i2c-msm-v2 78b6000.i2c: msm_bus_scale_register_client(mstr-id:86):0x9 (ok)
[    4.195706] synaptics_dsx_i2c 2-0020: synaptics_rmi4_cap_button_map: cap_button_map is 				NULL in board file
[    4.210130] input: synaptics_dsx_i2c as /devices/soc.0/78b6000.i2c/i2c-2/2-0020/input/input2
[    4.217837] synaptics_rmi4_query_device: Product: s2316b, firmware id: 175833, config id: 15031101
[    4.227374] synaptics_dsx_sensor_state: state change UNKNOWN -> STANDBY
[    4.233664] touchx init
[    4.236214] Initial touchx state = 0
[    4.241399] qcom,qpnp-rtc qpnp-rtc-e53e6400: rtc core: registered qpnp_rtc as rtc0
[    4.242869] synaptics_rmi4_fwu_init: F34 version 0
[    4.253297] i2c /dev entries driver
[    4.259493] platform 1d00000.qcom,vidc: Driver msm_vidc_v4l2 requests probe deferral
[    4.271905] msm_flash_init_module:1024 Enter
[    4.275635] msm_flash_lm3642_init entry
[    4.280452] g_sctrl[0] e48ac000
[    4.282571] mt9m114_init_module:1155
[    4.286793] mt9m114_init_module:1160 rc -19
[    4.290872] ov5645_init_module:557
[    4.294666] ov7695_init_module:315
[    4.298212] MT9V113_init_module:699
[    4.302167] mt9v113_sensor_power_up called
[    4.403020] msm_cci_ioreg_enable failed to get regulator
[    4.407501]  msm_cci_init: Failed in getting TOP gdscr regulator handle
[    4.414325] msm_cci_init:829: hw_version = 0x10000008
[    4.419680] msm_sensor_platform_probe mt9v113 probe succeeded
[    4.525453] MT9V113_platform_probe: mt9v113 probe succeeded!
[    4.530676] MSM-CPP cpp_probe:2997 Bus master 0
[    4.549713] MSM-CPP cpp_init_hardware:952 CPP HW Version: 0x40000000
[    4.555210] MSM-CPP cpp_init_hardware:973 stream_cnt:0
[    4.564271] __msm_jpeg_init:1522] Jpeg Device id 0
[    4.569465] iris_radio: Cannot open the command channel
[    4.574028] BATT SUPPLY NAME = battery
[    4.577913] Battsn = SNN5956A
[    4.580895] max17042 4-0036: Default Serial Number SNN5956
[    4.586508] max17042 4-0036: Battery Match Found using maxim,ft40-sony-batterydata
[    4.594314] max17042 4-0036: Config Revision = 3
[    4.599287] i2c-msm-v2 78b8000.i2c: msm_bus_scale_register_client(mstr-id:86):0xa (ok)
[    4.607622] power_supply max170xx_battery: driver failed to report `present' property: -11
[    4.615674] thermal thermal_zone0: failed to read out thermal zone 0
[    4.622246] power_supply max170xx_battery: driver failed to report `present' property: -11
[    4.630820] Battery Temp State = 1
[    4.634018] power_supply max170xx_battery: driver failed to report `present' property: -11
[    4.644382] BMS: bms_get_adc: vadc not found - defer probe rc=-517
[    4.649728] BMS: qpnp_vm_bms_probe: Failed to get adc rc=-517
[    4.655616] spmi qpnp-vm-bms-e53e6c00: Driver qcom,qpnp-vm-bms requests probe deferral
[    4.664277] CBL: qpnp_cbldet_probe: Probe usb=1
[    4.669045] unable to find DT imem DLOAD mode node
[    4.673622] unable to find DT imem EDLOAD mode node
[    4.679964] qpnp_adc_tm_channel_measure: chip not valid
[    4.684330] fan5404x-charger 4-006b: tm disable failed: -19
[    4.691014] fan54046_otg_vreg: no parameters
[    4.695192] fan5404x_charger_probe: vadc not ready, defer probe
[    4.842663] ------------[ cut here ]------------
[    4.846425] WARNING: at /home/ioc/Documents/phablet1/kernel/motorola/msm8916/drivers/regulator/core.c:4144 regulator_unregister+0xbc/0xc0()
[    4.859115] Modules linked in:
[    4.862304] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 3.10.49-g55f6ac8-dirty #2
[    4.869798] Backtrace: 
[    4.872380] [<c010b000>] (dump_backtrace+0x0/0x110) from [<c010b214>] (show_stack+0x18/0x1c)
[    4.880987]  r6:c0545c38 r5:00000009 r4:00000000 r3:e79af774
[    4.886788] [<c010b1fc>] (show_stack+0x0/0x1c) from [<c0c5edb0>] (dump_stack+0x24/0x28)
[    4.894970] [<c0c5ed8c>] (dump_stack+0x0/0x28) from [<c011e6d0>] (warn_slowpath_common+0x5c/0x74)
[    4.904002] [<c011e674>] (warn_slowpath_common+0x0/0x74) from [<c011e8c4>] (warn_slowpath_null+0x24/0x2c)
[    4.913710]  r8:e42b3444 r7:e42b3410 r6:c14168c0 r5:e4878800 r4:e42b3c00
r3:00000009
[    4.921682] [<c011e8a0>] (warn_slowpath_null+0x0/0x2c) from [<c0545c38>] (regulator_unregister+0xbc/0xc0)
[    4.931427] [<c0545b7c>] (regulator_unregister+0x0/0xc0) from [<c0842d34>] (fan5404x_regulator_deinit.isra.4+0x38/0x54)
[    4.942356]  r4:e42b3608 r3:c14168c0
[    4.946075] [<c0842cfc>] (fan5404x_regulator_deinit.isra.4+0x0/0x54) from [<c0845834>] (fan5404x_charger_probe+0x884/0xc2c)
[    4.957373]  r4:e4878820 r3:000008e0
[    4.961095] [<c0844fb0>] (fan5404x_charger_probe+0x0/0xc2c) from [<c0745044>] (i2c_device_probe+0xc4/0x124)
[    4.971008] [<c0744f80>] (i2c_device_probe+0x0/0x124) from [<c05d4858>] (driver_probe_device+0x140/0x3a4)
[    4.980723]  r8:c139a5d0 r7:00000000 r6:c14013b0 r5:e4878820 r4:c152cea4
r3:c0744f80
[    4.988695] [<c05d4718>] (driver_probe_device+0x0/0x3a4) from [<c05d4b9c>] (__driver_attach+0x94/0x98)
[    4.998171]  r9:c12450c8 r8:00000000 r7:00000000 r6:e4878854 r5:c139a5d0
r4:e4878820
[    5.006145] [<c05d4b08>] (__driver_attach+0x0/0x98) from [<c05d28ac>] (bus_for_each_dev+0x68/0x9c)
[    5.015274]  r6:c05d4b08 r5:c139a5d0 r4:00000000 r3:00000000
[    5.021075] [<c05d2844>] (bus_for_each_dev+0x0/0x9c) from [<c05d41e0>] (driver_attach+0x24/0x28)
[    5.030031]  r6:c1380228 r5:e412be80 r4:c139a5d0
[    5.034789] [<c05d41bc>] (driver_attach+0x0/0x28) from [<c05d3db4>] (bus_add_driver+0x1dc/0x280)
[    5.043749] [<c05d3bd8>] (bus_add_driver+0x0/0x280) from [<c05d520c>] (driver_register+0x80/0x148)
[    5.052881]  r7:e5160008 r6:c1438000 r5:00000006 r4:c139a5d0
[    5.058662] [<c05d518c>] (driver_register+0x0/0x148) from [<c0743e58>] (i2c_register_driver+0x38/0xf0)
[    5.068137]  r8:00000000 r7:e5160008 r6:c1438000 r5:00000006 r4:c139a5ac
r3:c1380228
[    5.076112] [<c0743e20>] (i2c_register_driver+0x0/0xf0) from [<c12450e4>] (fan5404x_charger_driver_init+0x1c/0x20)
[    5.086626]  r4:c1307e20 r3:e5160000
[    5.090347] [<c12450c8>] (fan5404x_charger_driver_init+0x0/0x20) from [<c0100694>] (do_one_initcall+0xe0/0x18c)
[    5.100610] [<c01005b4>] (do_one_initcall+0x0/0x18c) from [<c1200d58>] (kernel_init_freeable+0x1c0/0x260)
[    5.110330] [<c1200b98>] (kernel_init_freeable+0x0/0x260) from [<c0c50f80>] (kernel_init+0x10/0x154)
[    5.119618] [<c0c50f70>] (kernel_init+0x0/0x154) from [<c0106d78>] (ret_from_fork+0x14/0x3c)
[    5.128187]  r5:c0c50f70 r4:00000000
[    5.131950] ---[ end trace 177b997f4d76ef0d ]---
[    5.238956] i2c 4-006b: Driver fan5404x-charger requests probe deferral
[    5.262849] device-mapper: ioctl: 4.24.0-ioctl (2013-01-15) initialised: dm-devel@redhat.com
[    5.270463] device-mapper: req-crypt: dm-req-crypt successfully initalized.

[    5.279445] cpuidle: using governor ladder
[    5.283453] cpuidle: using governor menu
[    5.287559] sdhci: Secure Digital Host Controller Interface driver
[    5.293894] sdhci: Copyright(c) Pierre Ossman
[    5.298382] sdhci-pltfm: SDHCI platform and OF driver helper
[    5.304646] of_get_named_gpio_flags: can't parse gpios property
[    5.309020] mmc0: no vqmmc regulator found
[    5.312263] mmc0: no vmmc regulator found
[    5.345601] mmc0: SDHCI controller on 7824900.sdhci [7824900.sdhci] using 32-bit ADMA
[    5.362360] mmc1: no vqmmc regulator found
[    5.365604] mmc1: no vmmc regulator found
[    5.400276] mmc1: SDHCI controller on 7864900.sdhci [7864900.sdhci] using 32-bit ADMA
[    5.407641] qcom,leds-qpnp: probe of leds-qpnp-e53e6e00 failed with error -10
[    5.415649] i2c-msm-v2 78b5000.i2c: msm_bus_scale_register_client(mstr-id:86):0xd (ok)
[    5.432042] qce 720000.qcedev: Qualcomm Crypto 5.3.1 device found @0x720000
[    5.438185] qce 720000.qcedev: CE device = 0x0
, IO base, CE = 0xe7440000
, Consumer (IN) PIPE 2,    Producer (OUT) PIPE 3
IO base BAM = 0x  (null)
BAM IRQ 239
Engines Availability = 0x2010853
[    5.438188] mmc0: BKOPS_EN bit = 0
[    5.466858] sps:BAM 0x00704000 is registered.
[    5.475107] sps:BAM 0x00704000 (va:0xe7480000) enabled: ver:0x25, number of pipes:8
[    5.486523] QCE50: qce_sps_init:  Qualcomm MSM CE-BAM at 0x0000000000704000 irq 239
[    5.493927] qcedev: FIPS140-2 Known Answer Tests : Skipped
[    5.497638] mmc0: new HS200 MMC card at address 0001
[    5.504194] mmcblk0: mmc0:0001 P1J95K 7.29 GiB 
[    5.509406] qcrypto 720000.qcrypto: Qualcomm Crypto 5.3.1 device found @0x720000
[    5.516330] qcrypto 720000.qcrypto: CE device = 0x0
, IO base, CE = 0xe74c0000
, Consumer (IN) PIPE 4,    Producer (OUT) PIPE 5
IO base BAM = 0x  (null)
BAM IRQ 239
Engines Availability = 0x2010853
[    5.542081] mmcblk0rpmb: mmc0:0001 P1J95K partition 3 2.00 MiB
[    5.550514]  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 p44
[    5.570449] QCE50: qce_sps_init:  Qualcomm MSM CE-BAM at 0x0000000000704000 irq 239
[    5.578030] qcrypto 720000.qcrypto: qcrypto-ecb-aes
[    5.582472] qcrypto 720000.qcrypto: qcrypto-cbc-aes
[    5.587458] qcrypto 720000.qcrypto: qcrypto-ctr-aes
[    5.592542] qcrypto 720000.qcrypto: qcrypto-ecb-des
[    5.597516] qcrypto 720000.qcrypto: qcrypto-cbc-des
[    5.602575] qcrypto 720000.qcrypto: qcrypto-ecb-3des
[    5.607665] qcrypto 720000.qcrypto: qcrypto-cbc-3des
[    5.612861] qcrypto 720000.qcrypto: qcrypto-xts-aes
[    5.617815] qcrypto 720000.qcrypto: qcrypto-sha1
[    5.622622] qcrypto 720000.qcrypto: qcrypto-sha256
[    5.627550] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha1-cbc-aes
[    5.633913] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha1-cbc-des
[    5.640233] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha1-cbc-3des
[    5.646643] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha256-cbc-aes
[    5.653186] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha256-cbc-des
[    5.659678] qcrypto 720000.qcrypto: qcrypto-aead-hmac-sha256-cbc-3des
[    5.666258] qcrypto 720000.qcrypto: qcrypto-hmac-sha1
[    5.671483] qcrypto 720000.qcrypto: qcrypto-hmac-sha256
[    5.676839] qcrypto 720000.qcrypto: qcrypto-aes-ccm
[    5.681938] qcrypto 720000.qcrypto: qcrypto-rfc4309-aes-ccm
[    5.687513] qcrypto: FIPS140-2 Known Answer Tests: Skipped
[    5.693958] usbcore: registered new interface driver usbhid
[    5.698892] usbhid: USB HID core driver
[    5.703255] zram: Created 1 device(s) ...
[    5.707513] ashmem: initialized
[    5.711075] sps:BAM 0x078c4000 is registered.
[    5.715026] qcom,qpnp-power-on qpnp-power-on-e53c5e00: PMIC@SID0 Power-on reason: Triggered from Hard Reset and 'cold' boot
[    5.726178] qcom,qpnp-power-on qpnp-power-on-e53c5e00: PMIC@SID0: Power-off reason: Triggered from PS_HOLD (PS_HOLD/MSM controlled shutdown)
[    5.739111] input: qpnp_pon as /devices/virtual/input/input3
[    5.746413] PMIC@SID0: PM8916 v2.0 options: 0, 2, 0, 0
[    5.752376] armbw-pm qcom,armbw-pm.31: BW HWmon governor registered.
[    5.764704] devfreq qcom,cpubw.30: Couldn't update frequency transition information.
[    5.772745] coresight-fuse 5e01c.fuse: Fuse initialized
[    5.777559] coresight-cti: probe of 810000.cti failed with error -1
[    5.783610] coresight-cti: probe of 811000.cti failed with error -1
[    5.790068] coresight-cti: probe of 812000.cti failed with error -1
[    5.796440] coresight-cti: probe of 813000.cti failed with error -1
[    5.802873] coresight-cti: probe of 814000.cti failed with error -1
[    5.809290] coresight-cti: probe of 815000.cti failed with error -1
[    5.815696] coresight-cti: probe of 816000.cti failed with error -1
[    5.822141] coresight-cti: probe of 817000.cti failed with error -1
[    5.828550] coresight-cti: probe of 818000.cti failed with error -1
[    5.834995] coresight-cti: probe of 858000.cti failed with error -1
[    5.841416] coresight-cti: probe of 859000.cti failed with error -1
[    5.847899] coresight-cti: probe of 85a000.cti failed with error -1
[    5.854273] coresight-cti: probe of 85b000.cti failed with error -1
[    5.860687] coresight-cti: probe of 830000.cti failed with error -1
[    5.867087] coresight-cti: probe of 835000.cti failed with error -1
[    5.873534] coresight-cti: probe of 838000.cti failed with error -1
[    5.879956] coresight-cti: probe of 83c000.cti failed with error -1
[    5.880027] mmc1: new ultra high speed SDR50 SDHC card at address 0001
[    5.893112] mmcblk1: mmc1:0001 00000 29.8 GiB 
[    5.893447] coresight-csr: probe of 801000.csr failed with error -1
[    5.893838] coresight-tmc: probe of 826000.tmc failed with error -1
[    5.893866] coresight-tmc: probe of 825000.tmc failed with error -1
[    5.894229] coresight-tpiu: probe of 820000.tpiu failed with error -1
[    5.894600] coresight-funnel: probe of 821000.funnel failed with error -1
[    5.894625] coresight-funnel: probe of 841000.funnel failed with error -1
[    5.894651] coresight-funnel: probe of 869000.funnel failed with error -1
[    5.894677] coresight-funnel: probe of 868000.funnel failed with error -1
[    5.895032] coresight-replicator: probe of 824000.replicator failed with error -1
[    5.895420] coresight-stm: probe of 802000.stm failed with error -1
[    5.895791] coresight-hwevent: probe of 86c000.hwevent failed with error -1
[    5.896131] coresight-etmv4: probe of 85c000.etm failed with error -1
[    5.896157] coresight-etmv4: probe of 85d000.etm failed with error -1
[    5.896182] coresight-etmv4: probe of 85e000.etm failed with error -1
[    5.896208] coresight-etmv4: probe of 85f000.etm failed with error -1
[    5.999199] coresight-modem-etm modem_etm0.3: Modem ETM initialized
[    6.005968] coresight-wcn-etm wcn_etm0.2: Wireless ETM initialized
[    6.011674]  mmcblk1: p1
[    6.012315] coresight-rpm-etm rpm_etm0.1: RPM ETM initialized
[    6.012987] coresight-qpdi 1941000.qpdi: CoreSight QPDI driver initialized
[    6.013546] usbcore: registered new interface driver snd-usb-audio
[    6.014191] spmi msm8x16_wcd_codec-e53e7800: Driver wcd-spmi-core requests probe deferral
[    6.014219] spmi msm8x16_wcd_codec-e53e7a00: Driver wcd-spmi-core requests probe deferral
[    6.035152] msm-pcm-lpa qcom,msm-pcm-lpa.39: msm_pcm_probe: dev name qcom,msm-pcm-lpa.39
[    6.035913] platform qcom,msm-voip-dsp.41: Driver msm-voip-dsp requests probe deferral
[    6.036289] platform qcom,msm-pcm-voice.42: Driver msm-pcm-voice requests probe deferral
[    6.040513] msm8x16-asoc-wcd sound.67: property qcom,tfa9890-left-name not detected in node /soc/sound
[    6.040517] msm8x16-asoc-wcd sound.67: default codec configured
[    6.040578] of_get_named_gpio_flags: can't parse gpios property
[    6.041986] msm8x16-asoc-wcd sound.67: ASoC: platform (null) not registered
[    6.042015] msm8x16-asoc-wcd sound.67: snd_soc_register_card failed (-517)
[    6.042043] platform sound.67: Driver msm8x16-asoc-wcd requests probe deferral
[    6.043019] oprofile: using timer interrupt.
[    6.043105] u32 classifier
[    6.043106]     Actions configured
[    6.043112] Netfilter messages via NETLINK v0.30.
[    6.043120] nfnl_acct: registering with nfnetlink.
[    6.043190] nf_conntrack version 0.5.0 (14041 buckets, 56164 max)
[    6.043531] ctnetlink v0.93: registering with nfnetlink.
[    6.043608] NF_TPROXY: Transparent proxy support initialized, version 4.1.0
[    6.043610] NF_TPROXY: Copyright (c) 2006-2007 BalaBit IT Ltd.
[    6.043892] xt_time: kernel timezone is -0000
[    6.044333] ip_tables: (C) 2000-2006 Netfilter Core Team
[    6.044488] arp_tables: (C) 2002 David S. Miller
[    6.044524] TCP: cubic registered
[    6.044525] Initializing XFRM netlink socket
[    6.045120] NET: Registered protocol family 10
[    6.045721] mip6: Mobile IPv6
[    6.045748] ip6_tables: (C) 2000-2006 Netfilter Core Team
[    6.045923] sit: IPv6 over IPv4 tunneling driver
[    6.046349] NET: Registered protocol family 17
[    6.046368] NET: Registered protocol family 15
[    6.046427] Bridge firewalling registered
[    6.046436] Ebtables v2.0 registered
[    6.215223] Bluetooth: RFCOMM TTY layer initialized
[    6.220210] Bluetooth: RFCOMM socket layer initialized
[    6.225459] Bluetooth: RFCOMM ver 1.11
[    6.229389] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    6.234833] Bluetooth: BNEP filters: protocol multicast
[    6.240245] Bluetooth: BNEP socket layer initialized
[    6.245337] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[    6.251437] Bluetooth: HIDP socket layer initialized
[    6.256585] Key type dns_resolver registered
[    6.261136] gpiochip_find_base: found new base at 675
[    6.261229] gpiochip_add: registered GPIOs 675 to 706 on device: slave-kernel
[    6.261658] gpiochip_find_base: found new base at 643
[    6.261743] gpiochip_add: registered GPIOs 643 to 674 on device: master-kernel
[    6.261842] gpiochip_find_base: found new base at 611
[    6.261920] gpiochip_add: registered GPIOs 611 to 642 on device: slave-kernel
[    6.262330] gpiochip_find_base: found new base at 579
[    6.262409] gpiochip_add: registered GPIOs 579 to 610 on device: master-kernel
[    6.265765] Unable to get vbus_otg
[    6.268312] msm_hsusb_host msm_hsusb_host: unable to register with transceiver
[    6.275730] platform msm_hsusb_host: Driver msm_hsusb_host requests probe deferral
[    6.284899] BMS: qpnp_vm_bms_probe: VMBMS disabled (disable-bms = 1)
[    6.291719] qpnp_adc_tm_channel_measure: chip not valid
[    6.296086] fan5404x-charger 4-006b: tm disable failed: -19
[    6.302781] fan54046_otg_vreg: no parameters
[    6.311320] spmi msm8x16_wcd_codec-e53e7800: Driver wcd-spmi-core requests probe deferral
[    6.318767] spmi msm8x16_wcd_codec-e53e7a00: Driver wcd-spmi-core requests probe deferral
[    6.329557] msm8x16-asoc-wcd sound.67: property qcom,tfa9890-left-name not detected in node /soc/sound
[    6.338011] msm8x16-asoc-wcd sound.67: default codec configured
[    6.344173] of_get_named_gpio_flags: can't parse gpios property
[    6.344503] msm8x16-asoc-wcd sound.67: ASoC: CODEC (null) not registered
[    6.350991] msm8x16-asoc-wcd sound.67: snd_soc_register_card failed (-517)
[    6.357999] platform sound.67: Driver msm8x16-asoc-wcd requests probe deferral
[    6.365669] spmi msm8x16_wcd_codec-e53e7800: Driver wcd-spmi-core requests probe deferral
[    6.366820] msm_otg 78d9000.usb: phy_reset: success
[    6.378801] spmi msm8x16_wcd_codec-e53e7a00: Driver wcd-spmi-core requests probe deferral
[    6.387407] msm8x16-asoc-wcd sound.67: property qcom,tfa9890-left-name not detected in node /soc/sound
[    6.396538] msm8x16-asoc-wcd sound.67: default codec configured
[    6.402667] of_get_named_gpio_flags: can't parse gpios property
[    6.402973] msm8x16-asoc-wcd sound.67: ASoC: CODEC (null) not registered
[    6.409491] msm8x16-asoc-wcd sound.67: snd_soc_register_card failed (-517)
[    6.416501] platform sound.67: Driver msm8x16-asoc-wcd requests probe deferral
[    6.425657] VFP support v0.3: implementor 41 architecture 3 part 40 variant 3 rev 0
[    6.432496] Registering SWP/SWPB emulation handler
[    6.441428] modprobe (189) used greatest stack depth: 5976 bytes left
[    6.450274] cryptomgr_probe (192) used greatest stack depth: 5928 bytes left
[    6.456504] Key type encrypted registered
[    6.563638] mem_acc_corner: disabling
[    6.566444] regulator-dummy: disabling
[    6.570472] spmi msm8x16_wcd_codec-e53e7800: Driver wcd-spmi-core requests probe deferral
[    6.578731] spmi msm8x16_wcd_codec-e53e7a00: Driver wcd-spmi-core requests probe deferral
[    6.587463] msm8x16-asoc-wcd sound.67: property qcom,tfa9890-left-name not detected in node /soc/sound
[    6.596503] msm8x16-asoc-wcd sound.67: default codec configured
[    6.598931] msm_otg 78d9000.usb: chg_type = USB_SDP_CHARGER
[    6.608373] of_get_named_gpio_flags: can't parse gpios property
[    6.608702] msm8x16-asoc-wcd sound.67: ASoC: CODEC (null) not registered
[    6.615190] msm8x16-asoc-wcd sound.67: snd_soc_register_card failed (-517)
[    6.622227] platform sound.67: Driver msm8x16-asoc-wcd requests probe deferral
[    6.630975] file system registered
[    6.633564] mbim_init: initialize 1 instances
[    6.638161] mbim_init: Initialized 1 ports
[    6.642308] mbim_bam_setup: no_ports:1
[    6.646320] mbim_bam_setup: Initialized 1 ports
[    6.652068] rndis_qc_init: initialize rndis QC instance
[    6.656859] android_usb gadget: Mass Storage Function, version: 2009/09/11
[    6.663485] android_usb gadget: Number of LUNs=2
[    6.668237]  lun0: LUN: removable file: (no medium)
[    6.673301]  lun1: LUN: removable file: (no medium)
[    6.679278] android_usb gadget: android_usb ready
[    6.683170] msm_hsusb msm_hsusb: [ci13xxx_start] hw_ep_max = 16
[    6.689297] msm_hsusb msm_hsusb: CI13XXX_CONTROLLER_RESET_EVENT received
[    6.696218] spmi msm8x16_wcd_codec-e53e7800: Driver wcd-spmi-core requests probe deferral
[    6.697156] gpiod_set_debounce: gpio-1009 status -22
[    6.697446] input: gpio-keys as /devices/soc.0/gpio_keys.68/input/input4
[    6.711302] qcom,qpnp-rtc qpnp-rtc-e53e6400: setting system clock to 1970-01-16 22:22:38 UTC (1376558)
[    6.711417] spmi msm8x16_wcd_codec-e53e7a00: Driver wcd-spmi-core requests probe deferral
[    6.711816] msm8x16-asoc-wcd sound.67: property qcom,tfa9890-left-name not detected in node /soc/sound
[    6.711820] msm8x16-asoc-wcd sound.67: default codec configured
[    6.711882] of_get_named_gpio_flags: can't parse gpios property
[    6.712210] msm8x16-asoc-wcd sound.67: ASoC: CODEC (null) not registered
[    6.712237] msm8x16-asoc-wcd sound.67: snd_soc_register_card failed (-517)
[    6.712263] platform sound.67: Driver msm8x16-asoc-wcd requests probe deferral
[    6.712334] spmi msm8x16_wcd_codec-e53e7800: Driver wcd-spmi-core requests probe deferral
[    6.775708] spmi msm8x16_wcd_codec-e53e7a00: Driver wcd-spmi-core requests probe deferral
[    6.775919] msm_thermal:interrupt_mode_init Interrupt mode init
[    6.789546] msm8x16-asoc-wcd sound.67: property qcom,tfa9890-left-name not detected in node /soc/sound
[    6.789783] /soc/qcom,lpm-levels/qcom,pm-cluster@0: No CPU phandle, assuming single cluster
[    6.807104] msm8x16-asoc-wcd sound.67: default codec configured
[    6.813266] of_get_named_gpio_flags: can't parse gpios property
[    6.813586] msm8x16-asoc-wcd sound.67: ASoC: CODEC (null) not registered
[    6.823749] qcom,cc-debug-8916 1874000.qcom,cc-debug: Registered Debug Mux successfully
[    6.830985] msm8x16-asoc-wcd sound.67: snd_soc_register_card failed (-517)
[    6.831789] clock_late_init: Removing enables held for handed-off clocks
[    6.831792] clock_late_init: clk xo_clk_src
[    6.831797] clock_late_init: clk xo_a_clk_src
[    6.831801] clock_late_init: clk xo_otg_clk
[    6.831804] clock_late_init: clk xo_lpm_clk
[    6.831809] clock_late_init: clk xo_pil_mss_clk
[    6.831814] clock_late_init: clk xo_pil_pronto_clk
[    6.831819] clock_late_init: clk xo_wlan_clk
[    6.831824] clock_late_init: clk snoc_clk
[    6.831827] clock_late_init: clk snoc_msmbus_clk
[    6.831831] clock_late_init: clk snoc_a_clk
[    6.831834] clock_late_init: clk snoc_msmbus_a_clk
[    6.832021] clock_late_init: clk pcnoc_clk
[    6.832025] clock_late_init: clk pcnoc_msmbus_clk
[    6.832028] clock_late_init: clk pcnoc_a_clk
[    6.832032] clock_late_init: clk pcnoc_msmbus_a_clk
[    6.832199] clock_late_init: clk bimc_clk
[    6.832203] clock_late_init: clk bimc_msmbus_clk
[    6.832206] clock_late_init: clk bimc_a_clk
[    6.832209] clock_late_init: clk bimc_msmbus_a_clk
[    6.832212] clock_late_init: clk bimc_acpu_a_clk
[    6.832374] clock_late_init: clk pcnoc_keepalive_a_clk
[    6.832377] clock_late_init: clk pcnoc_usb_a_clk
[    6.832380] clock_late_init: clk snoc_usb_a_clk
[    6.832384] clock_late_init: clk bimc_usb_a_clk
[    6.832387] clock_late_init: clk qdss_clk
[    6.832539] clock_late_init: clk qdss_a_clk
[    6.832710] clock_late_init: clk bb_clk1
[    6.832895] clock_late_init: clk bb_clk2
[    6.833099] clock_late_init: clk rf_clk2
[    6.833294] clock_late_init: clk bb_clk1_pin
[    6.833443] clock_late_init: clk bb_clk2_pin
[    6.833648] clock_late_init: clk rf_clk2_pin
[    6.833832] clock_late_init: clk gpll0_clk_src
[    6.833836] clock_late_init: clk gpll0_ao_clk_src
[    6.833842] clock_late_init: clk apss_ahb_clk_src
[    6.833845] clock_late_init: clk crypto_clk_src
[    6.833848] clock_late_init: clk mdp_clk_src
[    6.833852] clock_late_init: clk blsp1_qup1_i2c_apps_clk_src
[    6.833855] clock_late_init: clk blsp1_qup4_i2c_apps_clk_src
[    6.833859] clock_late_init: clk blsp1_uart1_apps_clk_src
[    6.833862] clock_late_init: clk esc0_clk_src
[    6.833865] clock_late_init: clk vsync_clk_src
[    6.833868] clock_late_init: clk sdcc1_apps_clk_src
[    6.833871] clock_late_init: clk sdcc2_apps_clk_src
[    6.833875] clock_late_init: clk usb_hs_system_clk_src
[    6.833878] clock_late_init: clk gcc_blsp1_ahb_clk
[    6.833882] clock_late_init: clk gcc_blsp1_qup1_i2c_apps_clk
[    6.833892] clock_late_init: clk gcc_blsp1_qup4_i2c_apps_clk
[    6.833900] clock_late_init: clk gcc_blsp1_uart1_apps_clk
[    6.833903] clock_late_init: clk gcc_mdss_ahb_clk
[    6.833906] clock_late_init: clk gcc_mdss_axi_clk
[    6.833910] clock_late_init: clk gcc_mdss_esc0_clk
[    6.833913] clock_late_init: clk gcc_mdss_mdp_clk
[    6.833917] clock_late_init: clk gcc_mdss_vsync_clk
[    6.833925] clock_late_init: clk gcc_sdcc1_ahb_clk
[    6.833931] clock_late_init: clk gcc_sdcc1_apps_clk
[    6.833938] clock_late_init: clk gcc_sdcc2_ahb_clk
[    6.833943] clock_late_init: clk gcc_sdcc2_apps_clk
[    6.833951] clock_late_init: clk gcc_usb_hs_ahb_clk
[    6.833954] clock_late_init: clk gcc_usb_hs_system_clk
[    6.833957] clock_late_init: clk gcc_crypto_clk
[    6.833965] clock_late_init: clk gcc_crypto_ahb_clk
[    6.833969] clock_late_init: clk gcc_crypto_axi_clk
[    6.833974] clock_late_init: clk a7ssmux
[    6.833978] clock_late_init: clk dsi_vco_clk_8916
[    6.833981] clock_late_init: clk byte0_clk_src
[    6.833985] clock_late_init: clk pclk0_clk_src
[    6.833988] clock_late_init: clk gcc_mdss_pclk0_clk
[    6.833991] clock_late_init: clk gcc_mdss_byte0_clk
[    6.834007] ALSA device list:
[    6.834009]   No soundcards found.
[    7.181546] platform sound.67: Driver msm8x16-asoc-wcd requests probe deferral
[    7.181560] Freeing unused kernel memory: 68K (c1300000 - c1311000)
[    7.195398] spmi msm8x16_wcd_codec-e53e7800: Driver wcd-spmi-core requests probe deferral
[    7.203678] spmi msm8x16_wcd_codec-e53e7a00: Driver wcd-spmi-core requests probe deferral
[    7.212380] msm8x16-asoc-wcd sound.67: property qcom,tfa9890-left-name not detected in node /soc/sound
[    7.217353] all_generic_ide (226) used greatest stack depth: 5832 bytes left
[    7.228616] msm8x16-asoc-wcd sound.67: default codec configured
[    7.228704] of_get_named_gpio_flags: can't parse gpios property
[    7.229089] msm8x16-asoc-wcd sound.67: ASoC: CODEC (null) not registered
[    7.229112] msm8x16-asoc-wcd sound.67: snd_soc_register_card failed (-517)
[    7.229144] platform sound.67: Driver msm8x16-asoc-wcd requests probe deferral
[    7.416162] udevadm (233) used greatest stack depth: 5312 bytes left
[    7.945354] initrd: checking filesystem integrity for the userdata partition
[    7.958307] EXT3-fs (mmcblk0p44): error: couldn't mount because of unsupported optional features (40)
[    7.967739] EXT2-fs (mmcblk0p44): error: couldn't mount because of unsupported optional features (40)
[    7.981439] EXT4-fs (mmcblk0p44): mounted filesystem with ordered data mode. Opts: errors=remount-ro
[    7.989950] exe (272) used greatest stack depth: 5096 bytes left
[    8.021661] initrd: checking filesystem for userdata took (including e2fsck) 0 seconds
[    8.028913] initrd: mounting /dev/mmcblk0p44
[    8.050698] EXT3-fs (mmcblk0p44): error: unrecognized mount option "discard" or missing value
[    8.059598] EXT4-fs: Warning: mounting with data=journal disables delayed allocation and O_DIRECT support!
[    8.073161] EXT4-fs (mmcblk0p44): mounted filesystem with journalled data mode. Opts: discard,data=journal
[    8.085354] initrd: boot mode: ubuntu
[    8.096958] EXT2-fs (loop0): warning: mounting unchecked fs, running e2fsck is recommended
[    8.105597] initrd: mounting system.img (image developer mode)
[    8.128805] initrd: mounting device image as ro
[    8.145631] EXT3-fs (loop1): error: couldn't mount because of unsupported optional features (40)
[    8.154057] EXT2-fs (loop1): error: couldn't mount because of unsupported optional features (40)
[    8.184040] EXT4-fs (loop1): mounted filesystem with ordered data mode. Opts: (null)
[    8.199070] initrd: device is surnia
[    8.716119] init (454) used greatest stack depth: 4488 bytes left
[    8.821835] init (481) used greatest stack depth: 4448 bytes left
[    9.141648] initrd: checking fstab /root/var/lib/lxc/android/rootfs/fstab* for additional mount points
[    9.224491] initrd: checking mount label cache
[    9.229117] initrd: mounting /dev/disk/by-partlabel/cache as /root/android//cache
[    9.243553] EXT4-fs (mmcblk0p43): mounted filesystem with ordered data mode. Opts: barrier=1,data=ordered
[    9.262296] initrd: checking mount label persist
[    9.267001] initrd: mounting /dev/disk/by-partlabel/persist as /root/android//persist
[    9.280444] EXT4-fs (mmcblk0p31): recovery complete
[    9.284474] EXT4-fs (mmcblk0p31): mounted filesystem with ordered data mode. Opts: barrier=1,noauto_da_alloc
[    9.304942] initrd: checking mount label misc
[    9.309457] initrd: mounting /dev/disk/by-partlabel/misc as /root/android//misc
[    9.331358] initrd: checking mount label fsg
[    9.335701] initrd: mounting /dev/disk/by-partlabel/fsg as /root/android//fsg
[    9.345091] EXT4-fs (mmcblk0p25): Unrecognized mount option "context=u:object_r:fsg_file:s0" or missing value
[    9.364846] initrd: checking mount label modem
[    9.369487] initrd: mounting /dev/disk/by-partlabel/modem as /root/android//firmware
[    9.379299] EXT4-fs (mmcblk0p1): Unrecognized mount option "context=u:object_r:firmware_file:s0" or missing value
[    9.399343] initrd: checking mount label boot
[    9.403791] initrd: mounting /dev/disk/by-partlabel/boot as /root/android//boot
[    9.426208] initrd: checking mount label recovery
[    9.431215] initrd: mounting /dev/disk/by-partlabel/recovery as /root/android//recovery
[    9.453700] initrd: checking mount label mmc_host
[    9.467656] initrd: checking mount label spi0.0
[    9.481488] initrd: checking mount label spi0.0
[    9.494789] initrd: checking mount label msm_hsusb
[    9.508740] initrd: checking mount label zram0
[    9.513477] initrd: mounting /dev/zram0 as /root/android/none
[    9.524705] initrd: mounting /root/var/lib/lxc/android/system.img as /root/android/system
[    9.830355] functions_store: android_usb: Cannot enable 'adb' (-22)
[    9.835765] mtp_bind_config
[    9.838766] msm_hsusb msm_hsusb: CI13XXX_CONTROLLER_CONNECT_EVENT received
[    9.852160] init: Failed to spawn adbd main process: unable to execute: No such file or directory
[    9.945579] init: ureadahead-touch main process (779) terminated with status 5
[    9.963005] msm_otg 78d9000.usb: Avail curr from USB = 100
[    9.968044] android_work: android_work: did not send uevent (0 0   (null))
[   10.073622] android_work: android_work: sent uevent USB_STATE=CONNECTED
[   10.083427] android_work: android_work: sent uevent USB_STATE=DISCONNECTED
[   10.197154] list-records (840) used greatest stack depth: 4344 bytes left
[   10.217430] android_work: android_work: sent uevent USB_STATE=CONNECTED
[   10.226453] android_usb gadget: high-speed config #1: 86000c8.android_usb
[   10.232442] msm_otg 78d9000.usb: Avail curr from USB = 500
[   10.239551] fan5404x-charger 4-006b: Set IBUSLIM: 500 mA
[   10.241777] init: android-tools-adbd main process (808) terminated with status 126
[   10.241810] init: android-tools-adbd main process ended, respawning
[   10.251627] persistent_ram_annotation_merge: discarded 63
[   10.251638] pstore: Created annotate-ramoops
[   10.280546] init: android-tools-adbd post-stop process (868) terminated with status 1
[   10.288942] android_work: android_work: sent uevent USB_STATE=CONFIGURED
[   12.649081] systemd-logind[1136]: New seat seat0.
[   14.167624] init: failsafe main process (1252) killed by TERM signal
Download as text