IMX6Q surround view change to IMX6D,video color abnormal

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

IMX6Q surround view change to IMX6D,video color abnormal

1,993 Views
zhanxiaozhang
Contributor III

We use imx6q for surround view,we use isl79987 with the patch from community (L3.10.53_ISL7998x_Surroundview_Patch_20161121),we can get the video data ,and display are normal .Then we change the cpu from imx6q to imx6d(dual ,not dual lite) with the same PCBA (code not change),we can get video ,but the video color is abnormal,webwxgetmsgimg.jpg

We ask the nxp AE ,they tell us ,the code is same for imx6d and imx6q.

dmesg show some message (both 6q and 6d)

mxc_v4l2_master_attach: ipu_id doesn't match  

mxc_v4l2_master_attach: csi doesn't match

my code related:

    isl7998x_data[0].ipu_id = 0;
    isl7998x_data[0].csi = 0;
    isl7998x_data[0].v_channel = 0;

    isl7998x_data[1].ipu_id = 0;
    isl7998x_data[1].csi = 1;
    isl7998x_data[1].v_channel = 1;

    isl7998x_data[2].ipu_id = 1;
    isl7998x_data[2].csi = 0;
    isl7998x_data[2].v_channel = 2;

    isl7998x_data[3].ipu_id = 1;
    isl7998x_data[3].csi = 1;
    isl7998x_data[3].v_channel = 3;

dts related:

 &mipi_csi {
    status = "okay";
    lanes = <2>;

     mipi-csi2-channel@0 {
        ipu_id = <0>;
        csi_id = <0>;
        v_channel = <0>;
        status = "okay";
    };

    mipi-csi2-channel@1 {
        ipu_id = <0>;
        csi_id = <1>;
        v_channel = <1>;
        status = "okay";
    };
    mipi-csi2-channel@2 {
        ipu_id = <1>;
        csi_id = <0>;
        v_channel = <2>;
        status = "okay";
    };

    mipi-csi2-channel@3 {
         ipu_id = <1>;
         csi_id = <1>;
         v_channel = <3>;
        status = "okay";
     };

        v4l2_cap_0 {
        compatible = "fsl,imx6q-v4l2-capture";
        ipu_id = <0>;
        csi_id = <0>;
        mclk_source = <0>;
        status = "okay";
    };

    v4l2_cap_1{
        compatible = "fsl,imx6q-v4l2-capture";
        ipu_id = <0>;
        csi_id = <1>;
        mclk_source = <0>;
        status = "okay";
     };   
    v4l2_cap_2 {
        compatible = "fsl,imx6q-v4l2-capture";
         ipu_id = <1>;
        csi_id = <0>;
        mclk_source = <0>;
        status = "okay";
    };

    v4l2_cap_3 {
        compatible = "fsl,imx6q-v4l2-capture";
        ipu_id = <1>;
        csi_id = <1>;
        mclk_source = <0>;
        status = "okay";
     };

is there any mistake?

_____________________________________________________________________________________________

<6>[ 0.000000] Booting Linux on physical CPU 0x0
<6>[ 0.000000] Initializing cgroup subsys cpu
<6>[ 0.000000] Initializing cgroup subsys cpuacct
<5>[ 0.000000] Linux version 3.10.53-88111-ga040d8a-dirty (shinco@shinco-ThinkPad-T460p) (gcc version 4.6.x-google 20120106 (prerelease) (GCC) ) #408 SMP PREEMPT Mon Aug 21 09:39:25 CST 2017
<4>[ 0.000000] CPU: ARMv7 Processor [412fc09a] revision 10 (ARMv7), cr=10c53c7d
<4>[ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
<6>[ 0.000000] Machine: Freescale i.MX6 Quad/DualLite (Device Tree), model: Freescale i.MX6 QUAD SHINCO Automotive Board
<6>[ 0.000000] cma: CMA: reserved 384 MiB at 5e000000
<4>[ 0.000000] Memory policy: ECC disabled, Data cache writealloc
<7>[ 0.000000] On node 0 totalpages: 524032
<7>[ 0.000000] free_area_init_node: node 0, pgdat 80988b00, node_mem_map 80a15000
<7>[ 0.000000] DMA zone: 3264 pages used for memmap
<7>[ 0.000000] DMA zone: 0 pages reserved
<7>[ 0.000000] DMA zone: 417792 pages, LIFO batch:31
<7>[ 0.000000] HighMem zone: 832 pages used for memmap
<7>[ 0.000000] HighMem zone: 106240 pages, LIFO batch:31
<6>[ 0.000000] PERCPU: Embedded 8 pages/cpu @81a32000 s9152 r8192 d15424 u32768
<7>[ 0.000000] pcpu-alloc: s9152 r8192 d15424 u32768 alloc=8*4096
<7>[ 0.000000] pcpu-alloc: [0] 0 [0] 1
<4>[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 520768
<5>[ 0.000000] Kernel command line: console=ttymxc0,115200 quiet init=/init video=mxcfb0:dev=ldb,bpp=32 video=mxcfb1:off video=mxcfb2:off video=mxcfb3:off vmalloc=400M androidboot.console=ttymxc0 consoleblank=0 androidboot.hardware=freescale cma=384M loglevel=3 androidboot.selinux=disabled androidboot.bootopt=2 androidboot.serialno=111a39d4ea9d0568
<6>[ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
<6>[ 0.000000] Dentry cache hash table entries: 262144 (order: 8, 1048576 bytes)
<6>[ 0.000000] Inode-cache hash table entries: 131072 (order: 7, 524288 bytes)
<6>[ 0.000000] Memory: 1983MB 64MB = 2047MB total
<5>[ 0.000000] Memory: 1673044k/1673044k available, 424108k reserved, 424960K highmem
<5>[ 0.000000] Virtual kernel memory layout:
<5>[ 0.000000] vector : 0xffff0000 - 0xffff1000 ( 4 kB)
<5>[ 0.000000] fixmap : 0xfff00000 - 0xfffe0000 ( 896 kB)
<5>[ 0.000000] vmalloc : 0xe6800000 - 0xff000000 ( 392 MB)
<5>[ 0.000000] lowmem : 0x80000000 - 0xe6000000 (1632 MB)
<5>[ 0.000000] pkmap : 0x7fe00000 - 0x80000000 ( 2 MB)
<5>[ 0.000000] modules : 0x7f000000 - 0x7fe00000 ( 14 MB)
<5>[ 0.000000] .text : 0x80008000 - 0x808587f4 (8514 kB)
<5>[ 0.000000] .init : 0x80859000 - 0x8093a3c0 ( 901 kB)
<5>[ 0.000000] .data : 0x8093c000 - 0x80989f80 ( 312 kB)
<5>[ 0.000000] .bss : 0x80989f80 - 0x80a142b0 ( 553 kB)
<6>[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
<6>[ 0.000000] Preemptible hierarchical RCU implementation.
<6>[ 0.000000] RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=2.
<6>[ 0.000000] NR_IRQS:16 nr_irqs:16 16
<6>[ 0.000000] L310 cache controller enabled
<6>[ 0.000000] l2x0: 16 ways, CACHE_ID 0x410000c7, AUX_CTRL 0x32070000, Cache size: 1048576 B
<6>[ 0.000000] sched_clock: 32 bits at 3000kHz, resolution 333ns, wraps every 1431655ms
<6>[ 0.000000] CPU identified as i.MX6Q, unknown revision
<6>[ 0.000000] Console: colour dummy device 80x30
<6>[ 0.000871] Calibrating delay loop... 1581.05 BogoMIPS (lpj=7905280)
<6>[ 0.090140] pid_max: default: 32768 minimum: 301
<6>[ 0.090311] Mount-cache hash table entries: 512
<6>[ 0.090972] Initializing cgroup subsys debug
<6>[ 0.090984] Initializing cgroup subsys freezer
<6>[ 0.091016] CPU: Testing write buffer coherency: ok
<6>[ 0.091272] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000
<6>[ 0.091348] Setting up static identity map for 0x80613dc0 - 0x80613e18
<4>[ 0.152066] CPU1: Booted secondary processor
<6>[ 0.191320] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001
<6>[ 0.191441] Brought up 2 CPUs
<6>[ 0.191460] SMP: Total of 2 processors activated (3162.11 BogoMIPS).
<6>[ 0.191467] CPU: All CPU(s) started in SVC mode.
<6>[ 0.192061] devtmpfs: initialized
<6>[ 0.196459] pinctrl core: initialized pinctrl subsystem
<6>[ 0.196729] regulator-dummy: no parameters
<6>[ 0.223345] NET: Registered protocol family 16
<6>[ 0.232805] DMA: preallocated 256 KiB pool for atomic coherent allocations
<4>[ 0.233522] >>> imx6q_init_machine
<6>[ 0.233615] Use WDOG1 as reset source
<6>[ 0.241233] syscon 20c8000.anatop: regmap [mem 0x020c8000-0x020c8fff] registered
<6>[ 0.241504] vdd1p1: 800 <--> 1375 mV at 1125 mV
<6>[ 0.241796] vdd3p0: 2800 <--> 3150 mV at 3000 mV
<6>[ 0.242081] vdd2p5: 2000 <--> 2750 mV at 2425 mV
<6>[ 0.242412] cpu: 725 <--> 1450 mV at 1150 mV
<6>[ 0.242693] vddpu: 725 <--> 1450 mV
<6>[ 0.243042] vddsoc: 725 <--> 1450 mV at 1175 mV
<6>[ 0.244824] syscon 20e0000.iomuxc-gpr: regmap [mem 0x020e0000-0x020e0037] registered
<6>[ 0.246953] syscon 21bc000.ocotp-ctrl: regmap [mem 0x021bc000-0x021bffff] registered
<6>[ 0.251866] hw-breakpoint: found 5 (+1 reserved) breakpoint and 1 watchpoint registers.
<6>[ 0.251877] hw-breakpoint: maximum watchpoint size is 4 bytes.
<6>[ 0.253387] imx6q-pinctrl 20e0000.iomuxc: initialized IMX pinctrl driver
<6>[ 0.261674] bio: create slab <bio-0> at 0
<6>[ 0.263583] mxs-dma 110000.dma-apbh: initialized
<6>[ 0.264230] cs42888_supply: 3300 mV
<6>[ 0.264431] vio1: 3300 mV
<6>[ 0.264602] vio2: 3300 mV
<6>[ 0.264765] vd: 3300 mV
<6>[ 0.264947] va: 5000 mV
<6>[ 0.265118] usb_h1_vbus: 5000 mV
<6>[ 0.265299] usb_otg_vbus: 5000 mV
<6>[ 0.265487] 3P3V: 3300 mV
<4>[ 0.265728] i2c-core: driver [max17135] using legacy suspend method
<4>[ 0.265737] i2c-core: driver [max17135] using legacy resume method
<5>[ 0.266271] SCSI subsystem initialized
<6>[ 0.267923] i2c i2c-0: IMX I2C adapter registered
<3>[ 0.268199] i2c i2c-1: of_i2c: modalias failure on /soc/aips-bus@02100000/i2c@021a4000/ov5640_mipi@3c
<6>[ 0.268503] i2c i2c-1: IMX I2C adapter registered
<6>[ 0.269086] i2c i2c-2: IMX I2C adapter registered
<6>[ 0.269211] Linux video capture interface: v2.00
<6>[ 0.269254] pps_core: LinuxPPS API ver. 1 registered
<6>[ 0.269264] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
<6>[ 0.269285] PTP clock support registered
<6>[ 0.281407] imx-ipuv3 2400000.ipu: IPU DMFC NORMAL mode: 1(0~1), 5B(4,5), 5F(6,7)
<6>[ 0.301451] imx-ipuv3 2800000.ipu: IPU DMFC NORMAL mode: 1(0~1), 5B(4,5), 5F(6,7)
<6>[ 0.302283] mxc_mipi_csi2 21dc000.mipi_csi: i.MX MIPI CSI2 driver probed
<6>[ 0.302297] mxc_mipi_csi2 21dc000.mipi_csi: i.MX MIPI CSI2 dphy version is 0x3130302a
<6>[ 0.302384] MIPI CSI2 driver module loaded
<6>[ 0.302517] Advanced Linux Sound Architecture Driver Initialized.
<6>[ 0.303857] cfg80211: Calling CRDA to update world regulatory domain
<6>[ 0.304835] pureg-dummy: no parameters
<6>[ 0.305584] Switching to clocksource mxc_timer1
<6>[ 0.314340] NET: Registered protocol family 2
<6>[ 0.315058] TCP established hash table entries: 16384 (order: 5, 131072 bytes)
<6>[ 0.315309] TCP bind hash table entries: 16384 (order: 5, 131072 bytes)
<6>[ 0.315589] TCP: Hash tables configured (established 16384 bind 16384)
<6>[ 0.315707] TCP: reno registered
<6>[ 0.315725] UDP hash table entries: 1024 (order: 3, 32768 bytes)
<6>[ 0.315828] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
<6>[ 0.316143] NET: Registered protocol family 1
<6>[ 0.316353] Trying to unpack rootfs image as initramfs...
<6>[ 0.356043] Freeing initrd memory: 576K (85000000 - 85090000)
<6>[ 0.356541] hw perfevents: enabled with ARMv7 Cortex-A9 PMU driver, 7 counters available
<4>[ 0.357249] mxc_epit: probe of 20d0000.epit failed with error -22
<4>[ 0.357299] mxc_epit: probe of 20d4000.epit failed with error -22
<6>[ 0.357915] imx6_busfreq busfreq.16: DDR medium rate not supported.
<6>[ 0.358334] Bus freq driver module loaded
<6>[ 0.359231] console [pstore-1] enabled
<6>[ 0.359241] ramoops: attached 0x100000@0x8bf00000, ecc: 0/0
<6>[ 0.359255] mxc_ramoops device success loaded
<6>[ 0.359799] futex hash table entries: 512 (order: 3, 32768 bytes)
<6>[ 0.359882] audit: initializing netlink socket (disabled)
<5>[ 0.359921] type=2000 audit(0.350:1): initialized
<4>[ 0.361629] bounce pool size: 64 pages
<5>[ 0.365959] VFS: Disk quotas dquot_6.5.2
<4>[ 0.366185] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
<6>[ 0.367856] NTFS driver 2.1.30 [Flags: R/W DEBUG].
<6>[ 0.368096] jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
<6>[ 0.368597] fuse init (API version 7.22)
<6>[ 0.369084] msgmni has been set to 3206
<6>[ 0.372208] io scheduler noop registered
<6>[ 0.372220] io scheduler deadline registered
<6>[ 0.372380] io scheduler cfq registered (default)
<4>[ 0.374626]
<4>[ 0.374640] modedb fb_add_videomode:
<4>[ 0.374640] name: pinctrl-%d
<4>[ 0.374640] refresh: 60
<4>[ 0.374640] xres: 1024
<4>[ 0.374640] yres: 600
<4>[ 0.374640] pixclock: 18181
<4>[ 0.374640]
<6>[ 0.374665] mxc_sdc_fb fb.17: registered mxc display driver ldb
<6>[ 0.415714] imx-ipuv3 2400000.ipu: IPU DMFC DP HIGH RESOLUTION: 1(0,1), 5B(2~5), 5F(6,7)
<6>[ 0.506660] Console: switching to colour frame buffer device 128x37
<4>[ 0.526275]
<4>[ 0.526288] modedb fb_add_videomode:
<4>[ 0.526288] name: (null)
<4>[ 0.526288] refresh: 60
<4>[ 0.526288] xres: 1024
<4>[ 0.526288] yres: 600
<4>[ 0.526288] pixclock: 27126
<4>[ 0.526288]
<4>[ 0.538928] imx-sdma 20ec000.sdma: no iram assigned, using external mem
<6>[ 0.540547] imx-sdma 20ec000.sdma: loaded firmware 1.1
<6>[ 0.542726] imx-sdma 20ec000.sdma: initialized
<6>[ 0.547942] pfuze100-regulator 0-0008: Full lay: 2, Metal lay: 1
<6>[ 0.550419] pfuze100-regulator 0-0008: FAB: 0, FIN: 0
<6>[ 0.550432] pfuze100-regulator 0-0008: pfuze100 found.
<6>[ 0.555591] SW1AB: 300 <--> 1875 mV at 1375 mV
<6>[ 0.563158] SW1C: 300 <--> 1875 mV at 1375 mV
<6>[ 0.570727] SW2: 800 <--> 3300 mV at 3300 mV
<6>[ 0.578267] SW3A: 400 <--> 1975 mV at 1500 mV
<6>[ 0.585804] SW3B: 400 <--> 1975 mV at 1500 mV
<6>[ 0.593328] SW4: 800 <--> 3300 mV at 3150 mV
<6>[ 0.598406] SWBST: 5000 <--> 5150 mV at 5000 mV
<6>[ 0.603495] VSNVS: 1000 <--> 3000 mV at 3000 mV
<6>[ 0.606098] VREFDDR: 750 mV
<6>[ 0.608680] VGEN1: 800 <--> 1550 mV at 1500 mV
<6>[ 0.613715] VGEN2: 800 <--> 1550 mV at 1500 mV
<6>[ 0.618791] VGEN3: 1800 <--> 3300 mV at 2500 mV
<6>[ 0.626330] VGEN4: 1800 <--> 3300 mV at 1800 mV
<6>[ 0.633887] VGEN5: 1800 <--> 3300 mV at 2800 mV
<6>[ 0.641422] VGEN6: 1800 <--> 3300 mV at 3300 mV
<6>[ 0.644154] Serial: IMX driver
<6>[ 0.644425] 2020000.serial: ttymxc0 at MMIO 0x2020000 (irq = 58) is a IMX
<6>[ 0.644896] console [ttymxc0] enabled
<6>[ 0.645484] 21e8000.serial: ttymxc1 at MMIO 0x21e8000 (irq = 59) is a IMX
<6>[ 0.645857] 21ec000.serial: ttymxc2 at MMIO 0x21ec000 (irq = 60) is a IMX
<6>[ 0.646225] 21f0000.serial: ttymxc3 at MMIO 0x21f0000 (irq = 61) is a IMX
<6>[ 0.646630] 21f4000.serial: ttymxc4 at MMIO 0x21f4000 (irq = 62) is a IMX
<6>[ 0.646949] serial: Freescale lpuart driver
<6>[ 0.648648] imx sema4 driver is registered.
<6>[ 0.648707] [drm] Initialized drm 1.1.0 20060810
<6>[ 0.649119] [drm] Initialized vivante 1.0.0 20120216 on minor 0
<6>[ 0.655482] brd: module loaded
<6>[ 0.658878] loop: module loaded
<3>[ 0.661017] imx6q-pinctrl 20e0000.iomuxc: pin MX6Q_PAD_NANDF_D4 already requested by 20e0000.iomuxc; cannot claim for 112000.gpmi-nand
<3>[ 0.661033] imx6q-pinctrl 20e0000.iomuxc: pin-195 (112000.gpmi-nand) status -22
<3>[ 0.661045] imx6q-pinctrl 20e0000.iomuxc: could not request pin 195 on device 20e0000.iomuxc
<3>[ 0.661059] gpmi-nand 112000.gpmi-nand: Error applying setting, reverse things back
<4>[ 0.662511] nand: No NAND device found
<3>[ 0.662568] gpmi-nand 112000.gpmi-nand: driver registration failed: -19
<6>[ 0.662986] tun: Universal TUN/TAP device driver, 1.6
<6>[ 0.662994] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
<6>[ 0.663177] PPP generic driver version 2.4.2
<6>[ 0.663368] PPP BSD Compression module registered
<6>[ 0.663377] PPP Deflate Compression module registered
<6>[ 0.663403] PPP MPPE Compression module registered
<6>[ 0.663412] NET: Registered protocol family 24
<6>[ 0.663993] mousedev: PS/2 mouse device common for all mice
<6>[ 0.665648] snvs_rtc 20cc034.snvs-rtc-lp: rtc core: registered 20cc034.snvs-rtc-lp as rtc0
<6>[ 0.665779] i2c /dev entries driver
<7>[ 0.666632] In MVC:camera_init
<7>[ 0.666833] In MVC: init_camera_struct
<7>[ 0.666991] Video device registered: Mxc Camera #0
<7>[ 0.667045] In MVC: init_camera_struct
<7>[ 0.667203] Video device registered: Mxc Camera #1
<7>[ 0.667251] In MVC: init_camera_struct
<7>[ 0.667417] Video device registered: Mxc Camera #2
<7>[ 0.667470] In MVC: init_camera_struct
<7>[ 0.667624] Video device registered: Mxc Camera #3
<7>[ 0.746727] In MVC: mxc_v4l2_master_attach
<7>[ 0.746737] slave.name = isl79985
<7>[ 0.746743] master.name = mxc_v4l2_cap3
<7>[ 0.746750] mxc_v4l2_master_attach: ipu_id doesn't match
<7>[ 0.746756] In MVC: mxc_v4l2_master_attach
<7>[ 0.746761] slave.name = isl79985
<7>[ 0.746767] master.name = mxc_v4l2_cap2
<7>[ 0.746773] mxc_v4l2_master_attach: ipu_id doesn't match
<7>[ 0.746778] In MVC: mxc_v4l2_master_attach
<7>[ 0.746783] slave.name = isl79985
<7>[ 0.746789] master.name = mxc_v4l2_cap1
<7>[ 0.746795] mxc_v4l2_master_attach: csi doesn't match
<7>[ 0.746801] In MVC: mxc_v4l2_master_attach
<7>[ 0.746806] slave.name = isl79985
<7>[ 0.746811] master.name = mxc_v4l2_cap0
<7>[ 0.746822] End of mxc_v4l2_master_attach: v2f pix widthxheight 288 x 352
<7>[ 0.746829] End of mxc_v4l2_master_attach: crop_bounds widthxheight 720 x 480
<7>[ 0.746836] End of mxc_v4l2_master_attach: crop_defrect widthxheight 720 x 480
<7>[ 0.746843] End of mxc_v4l2_master_attach: crop_current widthxheight 720 x 480
<7>[ 0.746856] In MVC: mxc_v4l2_master_attach
<7>[ 0.746862] slave.name = isl79985
<7>[ 0.746867] master.name = mxc_v4l2_cap3
<7>[ 0.746873] mxc_v4l2_master_attach: ipu_id doesn't match
<7>[ 0.746878] In MVC: mxc_v4l2_master_attach
<7>[ 0.746884] slave.name = isl79985
<7>[ 0.746889] master.name = mxc_v4l2_cap2
<7>[ 0.746894] mxc_v4l2_master_attach: ipu_id doesn't match
<7>[ 0.746900] In MVC: mxc_v4l2_master_attach
<7>[ 0.746905] slave.name = isl79985
<7>[ 0.746910] master.name = mxc_v4l2_cap1
<7>[ 0.746918] End of mxc_v4l2_master_attach: v2f pix widthxheight 288 x 352
<7>[ 0.746926] End of mxc_v4l2_master_attach: crop_bounds widthxheight 720 x 480
<7>[ 0.746932] End of mxc_v4l2_master_attach: crop_defrect widthxheight 720 x 480
<7>[ 0.746939] End of mxc_v4l2_master_attach: crop_current widthxheight 720 x 480
<7>[ 0.746951] In MVC: mxc_v4l2_master_attach
<7>[ 0.746957] slave.name = isl79985
<7>[ 0.746963] master.name = mxc_v4l2_cap3
<7>[ 0.746968] mxc_v4l2_master_attach: csi doesn't match
<7>[ 0.746975] In MVC: mxc_v4l2_master_attach
<7>[ 0.746980] slave.name = isl79985
<7>[ 0.746985] master.name = mxc_v4l2_cap2
<7>[ 0.746993] End of mxc_v4l2_master_attach: v2f pix widthxheight 288 x 352
<7>[ 0.747000] End of mxc_v4l2_master_attach: crop_bounds widthxheight 720 x 480
<7>[ 0.747007] End of mxc_v4l2_master_attach: crop_defrect widthxheight 720 x 480
<7>[ 0.747014] End of mxc_v4l2_master_attach: crop_current widthxheight 720 x 480
<7>[ 0.747026] In MVC: mxc_v4l2_master_attach
<7>[ 0.747031] slave.name = isl79985
<7>[ 0.747036] master.name = mxc_v4l2_cap3
<7>[ 0.747044] End of mxc_v4l2_master_attach: v2f pix widthxheight 288 x 352
<7>[ 0.747050] End of mxc_v4l2_master_attach: crop_bounds widthxheight 720 x 480
<7>[ 0.747057] End of mxc_v4l2_master_attach: crop_defrect widthxheight 720 x 480
<7>[ 0.747064] End of mxc_v4l2_master_attach: crop_current widthxheight 720 x 480
<6>[ 0.747073] isl7998x_mipi is found
<6>[ 0.747596] imx2-wdt 20bc000.wdog: IMX2+ Watchdog Timer enabled. timeout=60s (nowayout=0)
<6>[ 0.747874] device-mapper: uevent: version 1.0.3
<6>[ 0.748151] device-mapper: ioctl: 4.24.0-ioctl (2013-01-15) initialised: dm-devel@redhat.com
<6>[ 0.748369] cpuidle: using governor ladder
<6>[ 0.748378] cpuidle: using governor menu
<6>[ 0.748411] sdhci: Secure Digital Host Controller Interface driver
<6>[ 0.748418] sdhci: Copyright(c) Pierre Ossman
<6>[ 0.748425] sdhci-pltfm: SDHCI platform and OF driver helper
<6>[ 0.750276] mmc1: no vqmmc regulator found
<6>[ 0.750292] mmc1: no vmmc regulator found
<6>[ 0.795668] mmc1: SDHCI controller on 2194000.usdhc [2194000.usdhc] using ADMA
<6>[ 0.798777] mmc2: no vqmmc regulator found
<6>[ 0.798794] mmc2: no vmmc regulator found
<6>[ 0.835667] mmc2: SDHCI controller on 2198000.usdhc [2198000.usdhc] using ADMA
<6>[ 0.838313] Galcore version 5.0.11.25762
<6>[ 0.931075] mmc2: BKOPS_EN bit is not set
<6>[ 0.947782] mmc2: new high speed DDR MMC card at address 0001
<6>[ 0.955788] mmcblk2: mmc2:0001 016G70 14.6 GiB
<6>[ 0.956218] mmcblk2boot0: mmc2:0001 016G70 partition 1 4.00 MiB
<6>[ 0.956557] mmcblk2boot1: mmc2:0001 016G70 partition 2 4.00 MiB
<6>[ 0.956867] mmcblk2rpmb: mmc2:0001 016G70 partition 3 4.00 MiB
<6>[ 0.961624] mmcblk2: p1 p2 p3 < p5 p6 p7 p8 > p4
<4>[ 0.962373] mmcblk2: p4 size 28598272 extends beyond EOD, truncated
<6>[ 0.966857] mmcblk2boot1: unknown partition table
<6>[ 0.969720] mmcblk2boot0: unknown partition table
<6>[ 1.136416] mxc_vdoa 21e4000.vdoa: i.MX Video Data Order Adapter(VDOA) driver probed
<6>[ 1.136987] mxc_asrc 2034000.asrc: mxc_asrc registered
<6>[ 1.137741] mxc_vpu 2040000.vpu: VPU initialized
<6>[ 1.139266] hidraw: raw HID events driver (C) Jiri Kosina
<6>[ 1.140496] ashmem: initialized
<6>[ 1.140707] logger: created 256K log 'log_main'
<6>[ 1.140885] logger: created 256K log 'log_events'
<6>[ 1.141060] logger: created 256K log 'log_radio'
<6>[ 1.141251] logger: created 256K log 'log_system'
<0>[ 1.141850] sha204_init enter. ver=Aug 21 2017, 08:47:56.
<0>[ 1.147322] sha204_main entry
<0>[ 1.150322] sha204p_init done
<0>[ 1.160267] sha204c_wakeup ret=0X0,count=0, 89
<0>[ 1.165195] sha204c_wakeup ret=0XE4,94
<0>[ 1.168990] sha204c_wakeup ret=0XE4
<0>[ 1.172509] sha204_main:ret=0XE4
<0>[ 1.175781] sha204_init done. ver=Aug 21 2017, 08:47:56.
<4>[ 1.181957] sound/soc/codecs/tef6635_ssi.c:tef6635_ssi_probe
<4>[ 1.182402] sound/soc/codecs/tef6635_esai.c:tef6635_esai_probe
<3>[ 1.184208] imx-tef6635_ssi sound-media.34: ASoC: Property 'audio-routing' does not exist or its length is not even
<6>[ 1.188924] imx-tef6635_ssi sound-media.34: tef6635_ssi <-> 2028000.ssi mapping ok
<6>[ 1.194609] imx-bt sound-bt.36: bt-codec-pcm <-> 202c000.ssi mapping ok
<4>[ 1.195770] sound/soc/fsl/imx-tef6635_esai.c:imx_tef6635_esai_probe
<4>[ 1.195875] sound/soc/fsl/imx-tef6635_esai.c:imx_tef6635_esai_probe - mclk_freq: 22579200
<4>[ 1.196037] snd-soc-dummy snd-soc-dummy: ASoC: Failed to create platform debugfs directory
<6>[ 1.199443] imx-tef6635_esai sound-navi.35: tef6635_esai <-> 2024000.esai mapping ok
<6>[ 1.205395] imx-tef6635_esai sound-navi.35: snd-soc-dummy-dai <-> asrc_p2p.3 mapping ok
<6>[ 1.205706] imx-tef6635_esai sound-navi.35: tef6635_esai <-> 2024000.esai mapping ok
<6>[ 1.207135] NET: Registered protocol family 26
<6>[ 1.207152] u32 classifier
<6>[ 1.207158] Actions configured
<6>[ 1.207168] Netfilter messages via NETLINK v0.30.
<6>[ 1.207232] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
<6>[ 1.207733] ctnetlink v0.93: registering with nfnetlink.
<6>[ 1.207819] NF_TPROXY: Transparent proxy support initialized, version 4.1.0
<6>[ 1.207827] NF_TPROXY: Copyright (c) 2006-2007 BalaBit IT Ltd.
<6>[ 1.208190] xt_time: kernel timezone is -0000
<6>[ 1.208502] ip_tables: (C) 2000-2006 Netfilter Core Team
<6>[ 1.208682] arp_tables: (C) 2002 David S. Miller
<6>[ 1.208735] TCP: cubic registered
<6>[ 1.208744] Initializing XFRM netlink socket
<6>[ 1.209178] NET: Registered protocol family 10
<6>[ 1.209919] mip6: Mobile IPv6
<6>[ 1.209957] ip6_tables: (C) 2000-2006 Netfilter Core Team
<6>[ 1.210147] NET: Registered protocol family 17
<6>[ 1.210176] NET: Registered protocol family 15
<6>[ 1.210186] 8021q: 802.1Q VLAN Support v1.8
<5>[ 1.210252] Key type dns_resolver registered
<6>[ 1.210582] VFP support v0.3: implementor 41 architecture 3 part 30 variant 9 rev 4
<6>[ 1.215178] VGEN3: disabling
<6>[ 1.221879] VGEN2: disabling
<6>[ 1.228588] VGEN1: disabling
<6>[ 1.232861] SWBST: disabling
<6>[ 1.232870] SW4: disabling
<6>[ 1.232880] usb_otg_vbus: disabling
<6>[ 1.232886] usb_h1_vbus: disabling
<6>[ 1.232901] regulator-dummy: disabling
<6>[ 1.233160] imx mcc test is registered.
<6>[ 1.233678] snvs_rtc 20cc034.snvs-rtc-lp: setting system clock to 2017-01-01 00:00:00 UTC (1483228800)
<6>[ 1.241640] ALSA device list:
<6>[ 1.241654] #0: tef6635-ssi
<6>[ 1.241660] #1: imx6-bt-codec
<6>[ 1.241665] #2: tef6635-esai
<6>[ 1.242620] Freeing unused kernel memory: 900K (80859000 - 8093a000)
<11>[ 1.246836] init: /init.rc: 762: ignored duplicate definition of service 'adbd'
<11>[ 1.246865] init: /init.rc: 768: ignored duplicate definition of service 'debuggerd'
<11>[ 1.247457] init: /init.freescale.rc: 246: ignored duplicate definition of service 'dhcpcd_wlan0'
<11>[ 1.247480] init: /init.freescale.rc: 251: ignored duplicate definition of service 'dhcpcd_p2p'
<11>[ 1.247499] init: /init.freescale.rc: 256: ignored duplicate definition of service 'iprenew_wlan0'
<11>[ 1.247519] init: /init.freescale.rc: 261: ignored duplicate definition of service 'iprenew_p2p'
<4>[ 1.247974] init (1): /proc/1/oom_adj is deprecated, please use /proc/1/oom_score_adj instead.
<13>[ 1.248200] init: starting 'ueventd'
<11>[ 1.339482] init: /dev/hw_random not found
<10>[ 1.339832] BOOTOPT: Android boot start
<6>[ 1.348393] Console: switching to colour dummy device 80x30
<6>[ 1.363781] EXT4-fs (mmcblk2p5): mounted filesystem with ordered data mode. Opts: (null)
<4>[ 1.364349] EXT4-fs (mmcblk2p4): Ignoring removed nomblk_io_submit option
<6>[ 1.510295] EXT4-fs (mmcblk2p4): recovery complete
<6>[ 1.510769] EXT4-fs (mmcblk2p4): mounted filesystem with ordered data mode. Opts: nomblk_io_submit,noauto_da_alloc,errors=panic
<4>[ 1.511341] EXT4-fs (mmcblk2p6): Ignoring removed nomblk_io_submit option
<6>[ 1.518487] EXT4-fs (mmcblk2p6): recovery complete
<6>[ 1.518996] EXT4-fs (mmcblk2p6): mounted filesystem with ordered data mode. Opts: nomblk_io_submit
<6>[ 1.520749] EXT4-fs (mmcblk2p7): mounted filesystem with ordered data mode. Opts: (null)
<11>[ 1.529397] init: /dev/hw_random not found
<6>[ 1.546052] binder: 106:106 transaction failed 29189, size 0-0
<11>[ 1.550931] init: cannot find '/system/etc/install-recovery.sh', disabling 'flash_recovery'
<11>[ 1.551449] init: cannot find '/system/bin/rild', disabling 'ril-daemon'
<4>[ 1.648840] <<-GTP-INFO->> GTP driver installing...
<4>[ 1.649089] <<-GTP-INFO->> GTP Driver Version: V2.4<2014/11/28>
<4>[ 1.649098] <<-GTP-INFO->> GTP Driver Built@08:47:01, Aug 21 2017
<4>[ 1.649104] <<-GTP-INFO->> GTP I2C Address: 0x5d
<4>[ 1.649148] <<-GTP-INFO->> Guitar reset
<4>[ 1.779530] <<-GTP-INFO->> IC Version: 928_1040
<4>[ 1.813718] <<-GTP-ERROR->> ----shinco:reading out is x=1204 y=600
<4>[ 1.813728] <<-GTP-ERROR->> -----remap to custom defined 1024x400
<4>[ 1.813735] <<-GTP-INFO->> X_MAX: 1024, Y_MAX: 600, TRIGGER: 0x00
<4>[ 1.827845] <<-GTP-INFO->> create proc entry gt9xx_config success
<6>[ 1.828061] input: goodix-ts as /devices/virtual/input/input0
<6>[ 1.828642] keychord: using input dev goodix-ts for fevent
<4>[ 1.828717] <<-GTP-INFO->> GTP works in interrupt mode.
<4>[ 1.828729] <<-GTP-INFO->> Applied memory size:2562.
<4>[ 1.828735] <<-GTP-INFO->> I2C function: without pre and end cmd!
<4>[ 1.828752] <<-GTP-INFO->> Create proc entry success!
<6>[ 1.841621] usbcore: registered new interface driver usbfs
<6>[ 1.841753] usbcore: registered new interface driver hub
<6>[ 1.841990] usbcore: registered new device driver usb
<6>[ 1.875345] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
<6>[ 1.892046] ci_hdrc ci_hdrc.0: EHCI Host Controller
<6>[ 1.892077] ci_hdrc ci_hdrc.0: new USB bus registered, assigned bus number 1
<6>[ 1.905709] ci_hdrc ci_hdrc.0: USB 2.0 started, EHCI 1.00
<3>[ 1.905798] usb usb1: deviceclass:9,devicesubclass:0,deviceprotocol:1,vendor:7531,product:2
<6>[ 1.905810] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
<6>[ 1.905820] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
<6>[ 1.905829] usb usb1: Product: EHCI Host Controller
<6>[ 1.905837] usb usb1: Manufacturer: Linux 3.10.53-88111-ga040d8a-dirty ehci_hcd
<6>[ 1.905845] usb usb1: SerialNumber: ci_hdrc.0
<4>[ 1.906268] usb_choose_configuration - num_configs: 1, idVendor: 0x1d6b, idProduct: 0x0002
<6>[ 1.906439] hub 1-0:1.0: USB hub found
<6>[ 1.906459] hub 1-0:1.0: 1 port detected
<6>[ 1.910204] ci_hdrc ci_hdrc.1: doesn't support gadget
<6>[ 1.910225] ci_hdrc ci_hdrc.1: EHCI Host Controller
<6>[ 1.910252] ci_hdrc ci_hdrc.1: new USB bus registered, assigned bus number 2
<6>[ 1.925833] ci_hdrc ci_hdrc.1: USB 2.0 started, EHCI 1.00
<3>[ 1.925909] usb usb2: deviceclass:9,devicesubclass:0,deviceprotocol:1,vendor:7531,product:2
<6>[ 1.925921] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
<6>[ 1.925931] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
<6>[ 1.925939] usb usb2: Product: EHCI Host Controller
<6>[ 1.925947] usb usb2: Manufacturer: Linux 3.10.53-88111-ga040d8a-dirty ehci_hcd
<6>[ 1.925954] usb usb2: SerialNumber: ci_hdrc.1
<4>[ 1.926341] usb_choose_configuration - num_configs: 1, idVendor: 0x1d6b, idProduct: 0x0002
<6>[ 1.926469] hub 2-0:1.0: USB hub found
<6>[ 1.926492] hub 2-0:1.0: 1 port detected
<6>[ 1.930043] ci_hdrc ci_hdrc.2: doesn't support gadget
<6>[ 1.930062] ci_hdrc ci_hdrc.2: EHCI Host Controller
<6>[ 1.930095] ci_hdrc ci_hdrc.2: new USB bus registered, assigned bus number 3
<6>[ 1.945717] ci_hdrc ci_hdrc.2: USB 2.0 started, EHCI 1.00
<3>[ 1.945803] usb usb3: deviceclass:9,devicesubclass:0,deviceprotocol:1,vendor:7531,product:2
<6>[ 1.945816] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
<6>[ 1.945825] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
<6>[ 1.945833] usb usb3: Product: EHCI Host Controller
<6>[ 1.945840] usb usb3: Manufacturer: Linux 3.10.53-88111-ga040d8a-dirty ehci_hcd
<6>[ 1.945848] usb usb3: SerialNumber: ci_hdrc.2
<4>[ 1.946308] usb_choose_configuration - num_configs: 1, idVendor: 0x1d6b, idProduct: 0x0002
<6>[ 1.946434] hub 3-0:1.0: USB hub found
<6>[ 1.946453] hub 3-0:1.0: 1 port detected
<6>[ 1.961770] usbcore: registered new interface driver usb-storage
<6>[ 1.967150] bt power gpio is:101
<6>[ 1.967329] mxc_bt_rfkill driver success loaded
<6>[ 1.967709] rfkill: BT RF going to : on
<6>[ 1.967717] mxc_bt_rfkill_reset----
<6>[ 1.984976] usbcore: registered new interface driver cdc_ether
<6>[ 1.986835] usbcore: registered new interface driver rndis_host
<4>[ 1.988618] iac_probe
<4>[ 1.988642] iac_probe: reset using gpio 106
<4>[ 2.075691] [drivers/iac/iac.c]iac_probe - done
<6>[ 2.086105] file system registered
<6>[ 2.099557] android_usb gadget: Mass Storage Function, version: 2009/09/11
<6>[ 2.099575] android_usb gadget: Number of LUNs=1
<6>[ 2.099585] lun0: LUN: removable file: (no medium)
<6>[ 2.101114] android_usb gadget: android_usb ready
<6>[ 2.105031] usbcore: registered new interface driver usbhid
<6>[ 2.105040] usbhid: USB HID core driver
<6>[ 2.124876] usbcore: registered new interface driver snd-usb-audio
<11>[ 2.135951] init: using deprecated syntax for specifying property 'ro.serialno', use ${name} instead
<11>[ 2.136065] init: using deprecated syntax for specifying property 'ro.product.manufacturer', use ${name} instead
<11>[ 2.136136] init: using deprecated syntax for specifying property 'ro.product.model', use ${name} instead
<11>[ 2.138296] init: property 'sys.powerctl' doesn't exist while expanding '${sys.powerctl}'
<11>[ 2.138312] init: powerctl: cannot expand '${sys.powerctl}'
<11>[ 2.138345] init: property 'sys.sysctl.extra_free_kbytes' doesn't exist while expanding '${sys.sysctl.extra_free_kbytes}'
<11>[ 2.138359] init: cannot expand '${sys.sysctl.extra_free_kbytes}' while writing to '/proc/sys/vm/extra_free_kbytes'
<3>[ 2.138487] android_usb: already disabled
<6>[ 2.150159] read descriptors
<6>[ 2.150176] read strings
<6>[ 2.150206] mtp_bind_config
<7>[ 2.365369]
<7>[ 2.365369] In MVC: mxc_v4l_open
<7>[ 2.365382] device name is Mxc Camera
<4>[ 2.365392] #2 mclk: 27000000, csi_param.clk_mode: 0
<7>[ 2.365400] End of mxc_v4l_open: v2f pix widthxheight 288 x 352
<7>[ 2.365406] End of mxc_v4l_open: crop_bounds widthxheight 720 x 480
<7>[ 2.365412] End of mxc_v4l_open: crop_defrect widthxheight 720 x 480
<7>[ 2.365417] End of mxc_v4l_open: crop_current widthxheight 720 x 480
<7>[ 2.365422] On Open: Input to ipu size is 720 x 480
<6>[ 2.365458] mxc_mipi_csi2 21dc000.mipi_csi: mipi_csi2_reset: mipi_lane_bps = 432 Mbps
<6>[ 2.365471] mxc_mipi_csi2 21dc000.mipi_csi: mipi_csi2_reset: value = 0xc.
<7>[ 2.435815] In MVC:mxc_v4l_ioctl
<7>[ 2.435831] In MVC: mxc_v4l_do_ioctl 80685600
<7>[ 2.435841] case VIDIOC_QUERYCAP
<7>[ 2.435851] In MVC:mxc_v4l_ioctl
<7>[ 2.435857] In MVC: mxc_v4l_do_ioctl c02c5651
<7>[ 2.435895] In MVC:mxc_v4l_close
<7>[ 2.435907] mxc_v4l_close: release resource
<7>[ 2.435915] MVC: In mxc_free_frame_buf
<7>[ 2.435924] In MVC:mxc_free_frames
<7>[ 2.436034]
<7>[ 2.436034] In MVC: mxc_v4l_open
<7>[ 2.436044] device name is Mxc Camera
<4>[ 2.436055] #2 mclk: 27000000, csi_param.clk_mode: 0
<7>[ 2.436065] End of mxc_v4l_open: v2f pix widthxheight 288 x 352
<7>[ 2.436071] End of mxc_v4l_open: crop_bounds widthxheight 720 x 480
<7>[ 2.436077] End of mxc_v4l_open: crop_defrect widthxheight 720 x 480
<7>[ 2.436082] End of mxc_v4l_open: crop_current widthxheight 720 x 480
<7>[ 2.436087] On Open: Input to ipu size is 720 x 480
<7>[ 2.436107] In MVC:mxc_v4l_ioctl
<7>[ 2.436113] In MVC: mxc_v4l_do_ioctl 80685600
<7>[ 2.436118] case VIDIOC_QUERYCAP
<7>[ 2.436124] In MVC:mxc_v4l_ioctl
<7>[ 2.436129] In MVC: mxc_v4l_do_ioctl c02c5651
<7>[ 2.436148] In MVC:mxc_v4l_close
<7>[ 2.436160] mxc_v4l_close: release resource
<7>[ 2.436168] MVC: In mxc_free_frame_buf
<7>[ 2.436174] In MVC:mxc_free_frames
<7>[ 2.436254]
<7>[ 2.436254] In MVC: mxc_v4l_open
<7>[ 2.436264] device name is Mxc Camera
<4>[ 2.436271] #2 mclk: 27000000, csi_param.clk_mode: 0
<7>[ 2.436278] End of mxc_v4l_open: v2f pix widthxheight 288 x 352
<7>[ 2.436288] End of mxc_v4l_open: crop_bounds widthxheight 720 x 480
<7>[ 2.436295] End of mxc_v4l_open: crop_defrect widthxheight 720 x 480
<7>[ 2.436300] End of mxc_v4l_open: crop_current widthxheight 720 x 480
<7>[ 2.436305] On Open: Input to ipu size is 720 x 480
<7>[ 2.436330] In MVC:mxc_v4l_ioctl
<7>[ 2.436336] In MVC: mxc_v4l_do_ioctl 80685600
<7>[ 2.436340] case VIDIOC_QUERYCAP
<7>[ 2.436346] In MVC:mxc_v4l_ioctl
<7>[ 2.436351] In MVC: mxc_v4l_do_ioctl c02c5651
<7>[ 2.436370] In MVC:mxc_v4l_close
<7>[ 2.436378] mxc_v4l_close: release resource
<7>[ 2.436383] MVC: In mxc_free_frame_buf
<7>[ 2.436391] In MVC:mxc_free_frames
<7>[ 2.436471]
<7>[ 2.436471] In MVC: mxc_v4l_open
<7>[ 2.436481] device name is Mxc Camera
<4>[ 2.436489] #2 mclk: 27000000, csi_param.clk_mode: 0
<7>[ 2.436495] End of mxc_v4l_open: v2f pix widthxheight 288 x 352
<7>[ 2.436501] End of mxc_v4l_open: crop_bounds widthxheight 720 x 480
<7>[ 2.436506] End of mxc_v4l_open: crop_defrect widthxheight 720 x 480
<7>[ 2.436511] End of mxc_v4l_open: crop_current widthxheight 720 x 480
<7>[ 2.436516] On Open: Input to ipu size is 720 x 480
<7>[ 2.436537] In MVC:mxc_v4l_ioctl
<7>[ 2.436544] In MVC: mxc_v4l_do_ioctl 80685600
<7>[ 2.436549] case VIDIOC_QUERYCAP
<7>[ 2.436555] In MVC:mxc_v4l_ioctl
<7>[ 2.436560] In MVC: mxc_v4l_do_ioctl c02c5651
<7>[ 2.436578] In MVC:mxc_v4l_close
<7>[ 2.436585] mxc_v4l_close: release resource
<7>[ 2.436591] MVC: In mxc_free_frame_buf
<7>[ 2.436596] In MVC:mxc_free_frames
<4>[ 2.642701] <<-GTP-INFO->> System resume.
<4>[ 2.656456] <<-GTP-INFO->> GTP wakeup sleep.
<6>[ 8.568310] warning: `zygote' uses 32-bit capabilities (legacy support in use)
<6>[ 15.935861] request_suspend_state: wakeup (3->0) at 15930232001 (2017-01-01 00:00:15.202190335 UTC)
<6>[ 16.028954] lowmemorykiller: lowmem_shrink: convert oom_adj to oom_score_adj:
<6>[ 16.028969] lowmemorykiller: oom_adj 0 => oom_score_adj 0
<6>[ 16.028975] lowmemorykiller: oom_adj 1 => oom_score_adj 58
<6>[ 16.028980] lowmemorykiller: oom_adj 2 => oom_score_adj 117
<6>[ 16.028985] lowmemorykiller: oom_adj 3 => oom_score_adj 176
<6>[ 16.028991] lowmemorykiller: oom_adj 9 => oom_score_adj 529
<6>[ 16.028997] lowmemorykiller: oom_adj 15 => oom_score_adj 1000
<6>[ 16.540702] acc_open
<6>[ 16.540723] acc_release
<4>[ 16.975216] dhd_module_init in
<6>[ 16.975227] dhd_wlan_init: START
<4>[ 16.975397] dhd_wifi_init_country: BRCM WLAN chip name not found
<3>[ 16.975496] dhd_wifi_init_gpio: shinco**********wl_host_wake:163.
<3>[ 16.979585] dhd_wifi_init_gpio: gpio_request WL_SET_DETECT done
<3>[ 16.979945] dhd_wifi_init_gpio: gpio_request WL_REG_ON done
<4>[ 16.980105] dhd_wifi_platform_load: Enter
<4>[ 16.980122] Power-up adapter 'DHD generic adapter'
<4>[ 16.980406] wifi_platform_set_power = 1
<6>[ 16.980418] dhd_wlan_power Enter: power on ------ myp=7f180ab0 , nyp=7f180ab0 dhd_pwer=7f1809a0
<4>[ 17.515681] wifi_platform_bus_enumerate device present 1
<4>[ 17.515693] ---------******************wifi_platform_bus_enumerate 1
<3>[ 17.515700] dhd_wlan_set_carddetect: WL_SET_DETECT111111 1
<3>[ 17.515706] dhd_wlan_set_carddetect: WL_SET_DETECT 1
<4>[ 17.792069] mmc1: queuing unknown CIS tuple 0x80 (2 bytes)
<4>[ 17.793894] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
<4>[ 17.795727] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
<4>[ 17.799110] mmc1: queuing unknown CIS tuple 0x80 (7 bytes)
<6>[ 17.822871] mmc1: new high speed SDIO card at address 0001
<4>[ 17.840006] bcmsdh_register: register client driver
<4>[ 17.841376] bcmsdh_sdmmc: bcmsdh_sdmmc_probe Enter
<4>[ 17.842932] bcmsdh_sdmmc: bcmsdh_sdmmc_probe Enter
<4>[ 17.842953] bus num (host idx)=1, slot num (rca)=1
<4>[ 17.842961] found adapter info 'DHD generic adapter'
<4>[ 17.844466] F1 signature read @0x18000000=0x1591a962
<4>[ 17.845913] dhd_conf_set_hw_oob_intr: Enable HW OOB for 43362
<4>[ 17.858996] F1 signature OK, socitype:0x1 chip:0xa962 rev:0x1 pkg:0x9
<4>[ 17.862924] DHD: dongle ram size is set to 245760(orig 245760) at 0x0
<4>[ 17.865064] dhdsdio_probe: Disable prop_txstatus
<4>[ 17.878647] tsk Enter, tsk = 0xcaec147c
<4>[ 17.878668] wl_create_event_handler(): thread:wl_event_handler:258 started
<4>[ 17.883128] dhd_attach(): thread:dhd_watchdog_thread:259 started
<4>[ 17.884207] dhd_attach(): thread:dhd_dpc:25a started
<4>[ 17.885735] dhd_attach(): thread:dhd_rxf:25c started
<4>[ 17.885753] dhd_deferred_work_init: work queue initialized
<4>[ 17.885973] Dongle Host Driver, version 1.201.34.1 (r491657)
<4>[ 17.885973] Compiled in drivers/net/wireless/bcmdhd on Aug 21 2017 at 08:47:51
<4>[ 17.887581] Register interface [wlan0] MAC: 00:90:4c:11:22:33
<4>[ 17.887581]
<4>[ 17.887595] dhd_prot_ioctl : bus is down. we have nothing to do
<4>[ 17.887669] bcmsdh_oob_intr_unregister: Enter
<4>[ 17.887676] bcmsdh_oob_intr_unregister: irq is not registered
<4>[ 17.887686] dhd_bus_devreset: WLAN OFF DONE
<4>[ 17.887760] wifi_platform_set_power = 0
<6>[ 17.887771] dhd_wlan_power Enter: power off ------ myp=7f180ab0 , nyp=7f180ab0 dhd_pwer=7f1809a0
<6>[ 17.905831]
<6>[ 17.905831] **************** no power off ****************
<4>[ 17.907380] dhd_module_init: Exit err=0
<4>[ 18.170822] dhd_open: Enter ca998800
<4>[ 18.170841]
<4>[ 18.170841] Dongle Host Driver, version 1.201.34.1 (r491657)
<4>[ 18.170841] Compiled in drivers/net/wireless/bcmdhd on Aug 21 2017 at 08:47:51
<4>[ 18.170851] wl_android_wifi_on in 1
<4>[ 18.170857] wl_android_wifi_on in 2: g_wifi_on=0
<4>[ 18.170863] wifi_platform_set_power = 1
<6>[ 18.170872] dhd_wlan_power Enter: power on ------ myp=7f180ab0 , nyp=7f180ab0 dhd_pwer=7f1809a0
<4>[ 18.705715] sdio_reset_comm():
<4>[ 18.803569] mmc1: queuing unknown CIS tuple 0x80 (2 bytes)
<4>[ 18.816619] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
<4>[ 18.829486] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
<4>[ 18.852788] mmc1: queuing unknown CIS tuple 0x80 (7 bytes)
<4>[ 18.970683]
<4>[ 18.970683]
<4>[ 18.970683] dhd_bus_devreset: == WLAN ON ==
<4>[ 18.970854] F1 signature read @0x18000000=0x1591a962
<4>[ 18.971192] dhd_conf_set_hw_oob_intr: Enable HW OOB for 43362
<4>[ 18.975719] F1 signature OK, socitype:0x1 chip:0xa962 rev:0x1 pkg:0x9
<4>[ 18.977316] DHD: dongle ram size is set to 245760(orig 245760) at 0x0
<4>[ 18.987555] dhd_conf_read_config: Ignore config file /system/etc/firmware/config.txt
<4>[ 18.987570] Final fw_path=/system/etc/firmware/fw_bcmdhd.bin
<4>[ 18.987576] Final nv_path=/system/etc/firmware/nvram.txt
<4>[ 18.987581] Final conf_path=/system/etc/firmware/config.txt
<4>[ 19.090301] NVRAM version: AP6181_NVRAM_V1.1_01152013
<4>[ 19.091620] dhdsdio_write_vars: Download, Upload and compare of NVRAM succeeded.
<4>[ 19.092957] dhd_bus_init: delay 100ms for BCM43362
<4>[ 19.320549] dhd_bus_init: enable 0x06, ready 0x06 (waited 0us)
<4>[ 19.320716] bcmsdh_oob_intr_register: Enter
<4>[ 19.320725] bcmsdh_oob_intr_register OOB irq=163 flags=4
<4>[ 19.320805] bcmsdh_oob_intr_register: enable_irq_wake
<4>[ 19.322623] dhd_conf_set_band: Set band 0
<4>[ 19.325685] Firmware up: op_mode=0x0005, MAC=98:3b:16:e8:81:b2
<4>[ 19.325697] dhd_conf_set_country: Set country ALL, revision 0
<4>[ 19.409346] Country code: ALL (ALL/0)
<4>[ 19.409909] dhd_conf_set_roam: Set roam_off 1
<4>[ 19.413923] dhd_preinit_ioctls buf_key_b4_m4 set failed -23
<4>[ 19.423522] Firmware version = wl0: Apr 22 2013 14:50:00 version 5.90.195.89.6 FWID 01-b30a427d
<4>[ 19.423534] Driver: 1.201.34.1 (r491657)
<4>[ 19.423534] Firmware: wl0: Apr 22 2013 14:50:00 version 5.90.195.89.6 FWID 01-b30a427d
<4>[ 19.426901] dhd_preinit_ioctls wl ampdu_hostreorder failed -23
<4>[ 19.427432] Current firmware doesn't support Android Location Service
<4>[ 19.427442] wl_android_wifi_on: Success
<4>[ 19.514713] dhd_set_scb_probe: GET max_scb_probe failed
<4>[ 19.515240] dhd_set_scb_probe: max_scb_probe setting failed

Labels (2)
0 Kudos
4 Replies

1,169 Views
igorpadykov
NXP Employee
NXP Employee

Hi  zhanxiaozhang

what is full part name of i.MX6D, as this is different processor one can rerun ddr test

i.MX6/7 DDR Stress Test Tool V2.80 

and rebuild image with new ddr calibration settings, then write it on new board with mfg tool found on

https://www.nxp.com/support/developer-resources/run-time-software/i.mx-developer-resources/i.mx-6ser...

Best regards
igor
-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------

0 Kudos

1,169 Views
zhanxiaozhang
Contributor III

I use the chip imx6d full part name is MCIMX6D5EYM10AE ,it is imx6D ,not dual lite ,it should be same as 6Q,ddr calibrition is no need, it can already work properly.

0 Kudos

1,169 Views
pengtaopengtao
Contributor I

Hello!I have the same problem as you, how did you solve it?
As follows:
<7>[ 0.666632] In MVC:camera_init
<7>[ 0.666833] In MVC: init_camera_struct
<7>[ 0.666991] Video device registered: Mxc Camera #0
<7>[ 0.667045] In MVC: init_camera_struct
<7>[ 0.667203] Video device registered: Mxc Camera #1
<7>[ 0.667251] In MVC: init_camera_struct
<7>[ 0.667417] Video device registered: Mxc Camera #2
<7>[ 0.667470] In MVC: init_camera_struct
<7>[ 0.667624] Video device registered: Mxc Camera #3
<7>[ 0.746727] In MVC: mxc_v4l2_master_attach
<7>[ 0.746737] slave.name = isl79985
<7>[ 0.746743] master.name = mxc_v4l2_cap3
<7>[ 0.746750] mxc_v4l2_master_attach: ipu_id doesn't match
<7>[ 0.746756] In MVC: mxc_v4l2_master_attach
<7>[ 0.746761] slave.name = isl79985
<7>[ 0.746767] master.name = mxc_v4l2_cap2
<7>[ 0.746773] mxc_v4l2_master_attach: ipu_id doesn't match
<7>[ 0.746778] In MVC: mxc_v4l2_master_attach
<7>[ 0.746783] slave.name = isl79985
<7>[ 0.746789] master.name = mxc_v4l2_cap1
<7>[ 0.746795] mxc_v4l2_master_attach: csi doesn't match
<7>[ 0.746801] In MVC: mxc_v4l2_master_attach
<7>[ 0.746806] slave.name = isl79985
<7>[ 0.746811] master.name = mxc_v4l2_cap0
<7>[ 0.746822] End of mxc_v4l2_master_attach: v2f pix widthxheight 288 x 352
<7>[ 0.746829] End of mxc_v4l2_master_attach: crop_bounds widthxheight 720 x 480
<7>[ 0.746836] End of mxc_v4l2_master_attach: crop_defrect widthxheight 720 x 480
<7>[ 0.746843] End of mxc_v4l2_master_attach: crop_current widthxheight 720 x 480
<7>[ 0.746856] In MVC: mxc_v4l2_master_attach
<7>[ 0.746862] slave.name = isl79985
<7>[ 0.746867] master.name = mxc_v4l2_cap3
<7>[ 0.746873] mxc_v4l2_master_attach: ipu_id doesn't match
<7>[ 0.746878] In MVC: mxc_v4l2_master_attach
<7>[ 0.746884] slave.name = isl79985
<7>[ 0.746889] master.name = mxc_v4l2_cap2
<7>[ 0.746894] mxc_v4l2_master_attach: ipu_id doesn't match
<7>[ 0.746900] In MVC: mxc_v4l2_master_attach
<7>[ 0.746905] slave.name = isl79985
<7>[ 0.746910] master.name = mxc_v4l2_cap1
<7>[ 0.746918] End of mxc_v4l2_master_attach: v2f pix widthxheight 288 x 352
<7>[ 0.746926] End of mxc_v4l2_master_attach: crop_bounds widthxheight 720 x 480
<7>[ 0.746932] End of mxc_v4l2_master_attach: crop_defrect widthxheight 720 x 480
<7>[ 0.746939] End of mxc_v4l2_master_attach: crop_current widthxheight 720 x 480
<7>[ 0.746951] In MVC: mxc_v4l2_master_attach
<7>[ 0.746957] slave.name = isl79985
<7>[ 0.746963] master.name = mxc_v4l2_cap3
<7>[ 0.746968] mxc_v4l2_master_attach: csi doesn't match
<7>[ 0.746975] In MVC: mxc_v4l2_master_attach
<7>[ 0.746980] slave.name = isl79985
<7>[ 0.746985] master.name = mxc_v4l2_cap2
<7>[ 0.746993] End of mxc_v4l2_master_attach: v2f pix widthxheight 288 x 352
<7>[ 0.747000] End of mxc_v4l2_master_attach: crop_bounds widthxheight 720 x 480
<7>[ 0.747007] End of mxc_v4l2_master_attach: crop_defrect widthxheight 720 x 480
<7>[ 0.747014] End of mxc_v4l2_master_attach: crop_current widthxheight 720 x 480
<7>[ 0.747026] In MVC: mxc_v4l2_master_attach
<7>[ 0.747031] slave.name = isl79985
<7>[ 0.747036] master.name = mxc_v4l2_cap3

0 Kudos

1,169 Views
igorpadykov
NXP Employee
NXP Employee

you can debug it using AN4553 Using Open Source Debugging Tools for Linux on i.MX Processors
https://www.nxp.com/docs/en/application-note/AN4553.pdf

and find place in code where messages produced.

0 Kudos