This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Linux/DRA745: wlan chip is not detected in J6 kernel-4.4.23

Part Number: DRA745

Tool/software: Linux

Hello Team,

I am Anil. We are using the TI J6(DRA74X family) processor as host processor and third party wlan chip(MV888X) from Marvell.

The Wlan is connected to host via MMC3 node [SDIO interface]. The wlan chip reset/pd is connected to gpio6_5 pin of host.

The host mmc driver is modified to toggle the wlan chip reset line by using the wlan-pd-gpio attribute.

The dts changes for mmc3 are done by referring to a another MMC example available in specific J6 kernel source.

We have modified the the dts/dtsi to setup for this wlan chip connection, which are mentioned below.

Linux Kernel - 4.4.23

File: dra7.dtsi

            mmc3: mmc@480ad000 {
                        compatible = "ti,dra7-hsmmc", "ti,omap4-hsmmc";
                        reg = <0x480ad000 0x400>;
                        interrupts = <GIC_SPI 89 IRQ_TYPE_LEVEL_HIGH>;
                        ti,hwmods = "mmc3";
                        dmas = <&sdma_xbar 77>, <&sdma_xbar 78>;
                        dma-names = "tx", "rx";
                        status = "disabled";
                        sd-uhs-sdr12;
                        sd-uhs-sdr25;
                        sd-uhs-sdr50;
                };

File: J6_CustomBoard.dts

&mmc3 {
        status = "okay";
        vmmc-supply = <&evm_3v3_sw>;
        bus-width = <4>;
        no-1-8-v;
        wlan-pd-gpio = <&gpio6 5 GPIO_ACTIVE_HIGH>;
/*      non-removable; */     // Tested with addition and removal
};

The WLAN chip is not detected with these changes in dts/dtsi file.

Please let me know how to define the wlan device in mmc/SDIO node in dts/dtsi file.

Any sample J6 dts/dtsi entries for the wlan chip, which is connected over mmc/sdio interface.

  • Hi,

    I have forwarded your question to a wlan expert.

    Regards,
    Yordan
  • Hi Anil,

    Don't modify the mmc3 node defined in dra7.dtsi.

    Take a look at mmc3 node of arch/arm/boot/dts/am57xx-evm-common.dtsi file as an example on how we add a wireless device to mmc3 controller.


    Regards,
    Vishal
  • Hello Vishal,

    Thanks for reply.

    I don't modify the dra7.dtsi file much, only change is the addition of data rate support mode 'sd-uhs-sdr50' and removed 'ti,needs-special-reset'. I will try add this 'ti,needs-special-reset' property back into dtsi and see the behaviour.

    I have added the above mentioned changes for the mmc3 device in dts file[J6_customBoard.dts]. Also we don't need to add the wireless device specific changes(like wlcore) in mmc node for Marvell WiFi chipset(MV888X).

    Currently the same WiFi chip is working on the other host processor from different Chip Vendor, where we don't need to mention this wireless device specific changes(like wlcore) in mmc node of dts. I mean the wlan device detection/identification is done during the kernel boot or mmc subsystem initialization, if the wlan chip reset is done using the wlan_pd pin.

    I think this may be an issue with wlan chip detection at mmc initialization. I will share the patch file with current changes at my end along with dmesg logs.


    Regards,
    Anil
  • Hello Vishal,

    I have reverted the changes changes in dtsi file. PFA patch changes related to dts file and mmc host driver file along with dmesg logs.

    The WiFi chip reset is done using the " wlan-pd-gpio" pin. It is to set active low in dts and set to high from the mmc host driver.
    For these changes, you can refer to the patch files. Already few experiments tried with toggle of this gpio pin or setting to high or low state, but no success.

    From the dmesg, we can see that the sdio initialization is fails. Not sure exact reason for this failure.
    "mmc2: error -110 whilst initialising SDIO card"

    Also, the latest updated dra7 dts file, no changes done.
    mmc3: mmc@480ad000 {
    compatible = "ti,dra7-hsmmc", "ti,omap4-hsmmc";
    reg = <0x480ad000 0x400>;
    interrupts = <GIC_SPI 89 IRQ_TYPE_LEVEL_HIGH>;
    ti,hwmods = "mmc3";
    ti,needs-special-reset;
    dmas = <&sdma_xbar 77>, <&sdma_xbar 78>;
    dma-names = "tx", "rx";
    status = "disabled";
    sd-uhs-sdr12;
    sd-uhs-sdr25;
    sd-uhs-sdr50;
    };


    Just another query,
    > arch/arm/boot/dts/am57xx-evm-common.dtsi
    It defines the explicit pin multiplex for mmc3. Do we need to set similar pin multiple for mmc3 pins for J6?

    Regards,
    Anil
  • [    0.000000] Booting Linux on physical CPU 0x0
    [    0.000000] Linux version 4.4.23+ (anil@ubuntu) (gcc version 5.2.0 (GCC) ) #Rel_Elina_J6_MMT_17171A-27-g119c723 SMP PREEMPT Wed Jun 14 16:0
    [    0.000000] CPU: ARMv7 Processor [412fc0f2] revision 2 (ARMv7), cr=10c5387d
    [    0.000000] CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction cache
    [    0.000000] Machine model: MMT-2020 ADVANCED+ B0 Sample
    [    0.000000] bootconsole [earlycon0] enabled
    [    0.000000] Reserved memory: created CMA memory pool at 0x95800000, size 56 MiB
    [    0.000000] Reserved memory: initialized node ipu2_cma@95800000, compatible id shared-dma-pool
    [    0.000000] cma: Reserved 24 MiB at 0xbd400000
    [    0.000000] Memory policy: Data cache writealloc
    [    0.000000] OMAP4: Map 0xbed00000 to fe600000 for dram barrier
    [    0.000000] On node 0 totalpages: 257280
    [    0.000000] free_area_init_node: node 0, pgdat c0a991c0, node_mem_map ef7fc000
    [    0.000000]   Normal zone: 1536 pages used for memmap
    [    0.000000]   Normal zone: 0 pages reserved
    [    0.000000]   Normal zone: 196608 pages, LIFO batch:31
    [    0.000000]   HighMem zone: 60672 pages, LIFO batch:15
    [    0.000000] DRA752 ES1.1
    [    0.000000] powerdomain: cam_pwrdm: waited too long to complete transition
    [    0.000000] PERCPU: Embedded 13 pages/cpu @ef793000 s22720 r8192 d22336 u53248
    [    0.000000] pcpu-alloc: s22720 r8192 d22336 u53248 alloc=13*4096
    [    0.000000] pcpu-alloc: [0] 0 [0] 1 
    [    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 255744
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlyprintk debug loglevel=3 clk_ignore_unused 			    root=/dev/mmcblk0p3 rw rootfstype=ext4 rootwait mem=1007M@0x80000000 			    oops=panic panic=1 ramoops.mem_address=0xBEF00000 ramoops.mem_size=16384
    [    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
    [    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    [    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    [    0.000000] Memory: 926344K/1029120K available (7031K kernel code, 528K rwdata, 2532K rodata, 836K init, 398K bss, 20856K reserved, 81920K cma-reserved, 218112K highmem)
    [    0.000000] Virtual kernel memory layout:
    [    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
    [    0.000000]     fixmap  : 0xffc00000 - 0xfff00000   (3072 kB)
    [    0.000000]     vmalloc : 0xf0800000 - 0xff800000   ( 240 MB)
    [    0.000000]     lowmem  : 0xc0000000 - 0xf0000000   ( 768 MB)
    [    0.000000]     pkmap   : 0xbfe00000 - 0xc0000000   (   2 MB)
    [    0.000000]     modules : 0xbf000000 - 0xbfe00000   (  14 MB)
    [    0.000000]       .text : 0xc0008000 - 0xc095efdc   (9564 kB)
    [    0.000000]       .init : 0xc095f000 - 0xc0a30000   ( 836 kB)
    [    0.000000]       .data : 0xc0a30000 - 0xc0ab425c   ( 529 kB)
    [    0.000000]        .bss : 0xc0ab6000 - 0xc0b198c4   ( 399 kB)
    [    0.000000] Preemptible hierarchical RCU implementation.
    [    0.000000] 	Build-time adjustment of leaf fanout to 32.
    [    0.000000] NR_IRQS:16 nr_irqs:16 16
    [    0.000000] clock: associated clk dpll_usb_ck to clkdm coreaon_clkdm
    [    0.000000] ti_dt_clocks_register: failed to lookup clock node gmac_gmii_ref_clk_div
    [    0.000000] omap2: timer: OMAP clockevent source: timer1 at 31475 Hz
    [    0.000000] Architected cp15 timer(s) running at 5.90MHz (virt).
    [    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x15c70fb29, max_idle_ns: 440795202138 ns
    [    0.000005] sched_clock: 56 bits at 5MHz, resolution 169ns, wraps every 4398046511093ns
    [    0.000018] Switching to timer-based delay loop, resolution 169ns
    [    0.000344] clocksource: 32k_counter: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 58327039986419 ns
    [    0.000353] OMAP clocksource: 32k_counter at 32768 Hz
    [    0.000939] Console: colour dummy device 80x30
    [    0.000963] Calibrating delay loop (skipped), value calculated using timer frequency.. 11.80 BogoMIPS (lpj=59016)
    [    0.000979] pid_max: default: 32768 minimum: 301
    [    0.001117] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
    [    0.001131] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
    [    0.001777] CPU: Testing write buffer coherency: ok
    [    0.001815] ftrace: allocating 22739 entries in 67 pages
    [    0.037441] /cpus/cpu@0 missing clock-frequency property
    [    0.037465] /cpus/cpu@1 missing clock-frequency property
    [    0.037479] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000
    [    0.037537] Setting up static identity map for 0x80008340 - 0x800083b0
    [    0.117712] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001
    [    0.117786] Brought up 2 CPUs
    [    0.117803] SMP: Total of 2 processors activated (23.60 BogoMIPS).
    [    0.117811] CPU: All CPU(s) started in SVC mode.
    [    0.118875] devtmpfs: initialized
    [    0.150099] VFP support v0.3: implementor 41 architecture 4 part 30 variant f rev 0
    [    0.151179] omap_hwmod: l3_main_2 using broken dt data from ocp
    [    0.364822] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
    [    0.366395] pinctrl core: initialized pinctrl subsystem
    [    0.367706] NET: Registered protocol family 16
    [    0.369033] DMA: preallocated 256 KiB pool for atomic coherent allocations
    [    0.369200] ramoops: using module parameters
    [    0.369633] console [pstore-1] enabled
    [    0.369663] pstore: Registered ramoops as persistent store backend
    [    0.369673] ramoops: attached 0x4000@0xbef00000, ecc: 0/0
    [    0.373889] omap_l3_noc 44000000.ocp: L3 debug error: target 2 mod:1 (unclearable)
    [    0.374000] omap_l3_noc 44000000.ocp: L3 application error: target 2 mod:1 (unclearable)
    [    0.382977] gpiochip_add: registered GPIOs 0 to 31 on device: gpio
    [    0.383636] OMAP GPIO hardware version 0.1
    [    0.384505] gpiochip_add: registered GPIOs 32 to 63 on device: gpio
    [    0.385698] gpiochip_add: registered GPIOs 64 to 95 on device: gpio
    [    0.386877] gpiochip_add: registered GPIOs 96 to 127 on device: gpio
    [    0.388138] gpiochip_add: registered GPIOs 128 to 159 on device: gpio
    [    0.389315] gpiochip_add: registered GPIOs 160 to 191 on device: gpio
    [    0.390497] gpiochip_add: registered GPIOs 192 to 223 on device: gpio
    [    0.391670] gpiochip_add: registered GPIOs 224 to 255 on device: gpio
    [    0.394473] platform 4883a000.mailbox: Cannot lookup hwmod 'mailbox2'
    [    0.406867] platform 40d01000.mmu: Cannot lookup hwmod 'mmu0_dsp1'
    [    0.407277] platform 40d02000.mmu: Cannot lookup hwmod 'mmu1_dsp1'
    [    0.415562] omap-gpmc 50000000.gpmc: GPMC revision 6.0
    [    0.415577] gpmc_mem_init: disabling cs 0 mapped at 0x0-0x1000000
    [    0.415590] gpiochip_find_base: found new base at 510
    [    0.415778] gpiochip_add: registered GPIOs 510 to 511 on device: omap-gpmc
    [    0.415946] gpmc cs0 before gpmc_cs_program_settings:
    [    0.415957] cs0 GPMC_CS_CONFIG1: 0x00401100
    [    0.415966] cs0 GPMC_CS_CONFIG2: 0x00101001
    [    0.415975] cs0 GPMC_CS_CONFIG3: 0x22060514
    [    0.415984] cs0 GPMC_CS_CONFIG4: 0x10057016
    [    0.415993] cs0 GPMC_CS_CONFIG5: 0x010f1111
    [    0.416001] cs0 GPMC_CS_CONFIG6: 0x8f070000
    [    0.416009] gpmc cs0 access configuration:
    [    0.416018] gpmc,mux-add-data = <1>
    [    0.416026] gpmc,device-width = <1>
    [    0.416034] gpmc,wait-pin = <0>
    [    0.416042] gpmc,wait-on-read = <1>
    [    0.416050] gpmc,burst-length = <4>
    [    0.416060] gpmc cs0 timings configuration:
    [    0.416072] gpmc,cs-on-ns = <3> /* 1 ns - 3 ns; 1 ticks */
    [    0.416083] gpmc,cs-rd-off-ns = <60> /* 57 ns - 60 ns; 16 ticks */
    [    0.416094] gpmc,cs-wr-off-ns = <60> /* 57 ns - 60 ns; 16 ticks */
    [    0.416104] gpmc,adv-on-ns = <15> /* 12 ns - 15 ns; 4 ticks */
    [    0.416115] gpmc,adv-rd-off-ns = <18> /* 16 ns - 18 ns; 5 ticks */
    [    0.416125] gpmc,adv-wr-off-ns = <22> /* 19 ns - 22 ns; 6 ticks */
    [    0.416135] gpmc,oe-on-ns = <22> /* 19 ns - 22 ns; 6 ticks */
    [    0.416145] gpmc,oe-off-ns = <60> /* 57 ns - 60 ns; 16 ticks */
    [    0.416155] gpmc,we-on-ns = <18> /* 16 ns - 18 ns; 5 ticks */
    [    0.416164] gpmc,we-off-ns = <60> /* 57 ns - 60 ns; 16 ticks */
    [    0.416174] gpmc,rd-cycle-ns = <63> /* 61 ns - 63 ns; 17 ticks */
    [    0.416184] gpmc,wr-cycle-ns = <63> /* 61 ns - 63 ns; 17 ticks */
    [    0.416194] gpmc,access-ns = <56> /* 53 ns - 56 ns; 15 ticks */
    [    0.416204] gpmc,page-burst-access-ns = <3> /* 1 ns - 3 ns; 1 ticks */
    [    0.416214] gpmc,bus-turnaround-ns = <0> /* 0 ns - 0 ns; 0 ticks */
    [    0.416224] gpmc,cycle2cycle-delay-ns = <0> /* 0 ns - 0 ns; 0 ticks */
    [    0.416234] gpmc,wait-monitoring-ns = <0> /* 0 ns - 0 ns; 0 ticks */
    [    0.416243] gpmc,clk-activation-ns = <0> /* 0 ns - 0 ns; 0 ticks */
    [    0.416254] gpmc,wr-data-mux-bus-ns = <26> /* 23 ns - 26 ns; 7 ticks */
    [    0.416264] gpmc,wr-access-ns = <56> /* 53 ns - 56 ns; 15 ticks */
    [    0.416278] GPMC CS0: cs_on            :   0 ticks,   0 ns (was   1 ticks)   0 ns
    [    0.416290] GPMC CS0: cs_rd_off        :  22 ticks,  82 ns (was  16 ticks)  80 ns
    [    0.416301] GPMC CS0: cs_wr_off        :  22 ticks,  82 ns (was  16 ticks)  80 ns
    [    0.416312] GPMC CS0: adv_on           :   0 ticks,   0 ns (was   4 ticks)   0 ns
    [    0.416322] GPMC CS0: adv_rd_off       :  16 ticks,  60 ns (was   5 ticks)  60 ns
    [    0.416333] GPMC CS0: adv_wr_off       :  16 ticks,  60 ns (was   6 ticks)  60 ns
    [    0.416343] GPMC CS0: oe_on            :   2 ticks,   7 ns (was   6 ticks)   4 ns
    [    0.416354] GPMC CS0: oe_off           :  11 ticks,  41 ns (was  16 ticks)  40 ns
    [    0.416364] GPMC CS0: we_on            :   3 ticks,  11 ns (was   5 ticks)  10 ns
    [    0.416375] GPMC CS0: we_off           :  14 ticks,  52 ns (was  16 ticks)  50 ns
    [    0.416385] GPMC CS0: rd_cycle         :  22 ticks,  82 ns (was  17 ticks)  80 ns
    [    0.416395] GPMC CS0: wr_cycle         :  22 ticks,  82 ns (was  17 ticks)  80 ns
    [    0.416405] GPMC CS0: access           :  11 ticks,  41 ns (was  15 ticks)  40 ns
    [    0.416415] GPMC CS0: page_burst_access:   0 ticks,   0 ns (was   1 ticks)   0 ns
    [    0.416424] GPMC CS0: bus_turnaround   :   0 ticks,   0 ns (was   0 ticks)   0 ns
    [    0.416434] GPMC CS0: cycle2cycle_delay:   0 ticks,   0 ns (was   0 ticks)   0 ns
    [    0.416443] GPMC CS0: wr_data_mux_bus  :   0 ticks,   0 ns (was   7 ticks)   0 ns
    [    0.416454] GPMC CS0: wr_access        :  22 ticks,  82 ns (was  15 ticks)  80 ns
    [    0.416464] GPMC CS0: wait_monitoring  :   0 ticks,   0 ns (was   0 ticks)   0 ns
    [    0.416473] GPMC CS0: clk_activation   :   0 ticks,   0 ns (was   0 ticks)   0 ns
    [    0.416482] GPMC CS0 CLK period is 3 ns (div 1)
    [    0.416491] gpmc cs0 after gpmc_cs_set_timings:
    [    0.416499] cs0 GPMC_CS_CONFIG1: 0x00001800
    [    0.416508] cs0 GPMC_CS_CONFIG2: 0x00161600
    [    0.416516] cs0 GPMC_CS_CONFIG3: 0x22101010
    [    0.416525] cs0 GPMC_CS_CONFIG4: 0x0e036b12
    [    0.416533] cs0 GPMC_CS_CONFIG5: 0x000b1616
    [    0.416540] cs0 GPMC_CS_CONFIG6: 0x96000000
    [    0.416548] gpmc cs0 access configuration:
    [    0.416556] gpmc,mux-add-data = <0>
    [    0.416564] gpmc,device-width = <1>
    [    0.416572] gpmc,wait-pin = <0>
    [    0.416580] gpmc,burst-length = <4>
    [    0.416590] gpmc cs0 timings configuration:
    [    0.416599] gpmc,cs-on-ns = <0> /* 0 ns - 0 ns; 0 ticks */
    [    0.416610] gpmc,cs-rd-off-ns = <82> /* 79 ns - 82 ns; 22 ticks */
    [    0.416620] gpmc,cs-wr-off-ns = <82> /* 79 ns - 82 ns; 22 ticks */
    [    0.416630] gpmc,adv-on-ns = <0> /* 0 ns - 0 ns; 0 ticks */
    [    0.416640] gpmc,adv-rd-off-ns = <60> /* 57 ns - 60 ns; 16 ticks */
    [    0.416650] gpmc,adv-wr-off-ns = <60> /* 57 ns - 60 ns; 16 ticks */
    [    0.416660] gpmc,oe-on-ns = <7> /* 4 ns - 7 ns; 2 ticks */
    [    0.416670] gpmc,oe-off-ns = <41> /* 38 ns - 41 ns; 11 ticks */
    [    0.416680] gpmc,we-on-ns = <11> /* 8 ns - 11 ns; 3 ticks */
    [    0.416690] gpmc,we-off-ns = <52> /* 49 ns - 52 ns; 14 ticks */
    [    0.416700] gpmc,rd-cycle-ns = <82> /* 79 ns - 82 ns; 22 ticks */
    [    0.416710] gpmc,wr-cycle-ns = <82> /* 79 ns - 82 ns; 22 ticks */
    [    0.416719] gpmc,access-ns = <41> /* 38 ns - 41 ns; 11 ticks */
    [    0.416729] gpmc,page-burst-access-ns = <0> /* 0 ns - 0 ns; 0 ticks */
    [    0.416738] gpmc,bus-turnaround-ns = <0> /* 0 ns - 0 ns; 0 ticks */
    [    0.416748] gpmc,cycle2cycle-delay-ns = <0> /* 0 ns - 0 ns; 0 ticks */
    [    0.416757] gpmc,wait-monitoring-ns = <0> /* 0 ns - 0 ns; 0 ticks */
    [    0.416767] gpmc,clk-activation-ns = <0> /* 0 ns - 0 ns; 0 ticks */
    [    0.416776] gpmc,wr-data-mux-bus-ns = <0> /* 0 ns - 0 ns; 0 ticks */
    [    0.416786] gpmc,wr-access-ns = <82> /* 79 ns - 82 ns; 22 ticks */
    [    0.427534] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers.
    [    0.427546] hw-breakpoint: maximum watchpoint size is 8 bytes.
    [    0.428636] omap4_sram_init:Unable to allocate sram needed to handle errata I688
    [    0.428649] omap4_sram_init:Unable to get sram pool needed to handle errata I688
    [    0.428886] OMAP DMA hardware revision 0.0
    [    0.484533] omap-dma-engine 4a056000.dma-controller: OMAP DMA engine driver
    [    0.485821] edma 43300000.edma: memcpy is disabled
    [    0.495447] edma 43300000.edma: TI EDMA DMA engine driver
    [    0.496067] of_get_named_gpiod_flags: can't parse 'gpio' property of node '/fixedregulator-evm_3v3_sw[0]'
    [    0.498002] omap-iommu 40d01000.mmu: 40d01000.mmu registered
    [    0.498319] omap-iommu 40d02000.mmu: 40d02000.mmu registered
    [    0.498526] omap-iommu 58882000.mmu: 58882000.mmu registered
    [    0.498721] omap-iommu 55082000.mmu: 55082000.mmu registered
    [    0.499078] omap-iommu 41501000.mmu: 41501000.mmu registered
    [    0.499295] omap-iommu 41502000.mmu: 41502000.mmu registered
    [    0.500854] SCSI subsystem initialized
    [    0.501475] usbcore: registered new interface driver usbfs
    [    0.501606] usbcore: registered new interface driver hub
    [    0.501746] usbcore: registered new device driver usb
    [    0.503417] omap_i2c 48072000.i2c: bus 1 rev0.12 at 400 kHz
    [    0.503877] omap_i2c 48060000.i2c: bus 2 rev0.12 at 100 kHz
    [    0.504345] omap_i2c 4807a000.i2c: bus 3 rev0.12 at 40 kHz
    [    0.504635] media: Linux media interface: v0.10
    [    0.504752] Linux video capture interface: v2.00
    [    0.504919] pps_core: LinuxPPS API ver. 1 registered
    [    0.504930] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    [    0.505014] PTP clock support registered
    [    0.506432] clocksource: Switched to clocksource arch_sys_counter
    [    0.575309] FS-Cache: Loaded
    [    0.591678] NET: Registered protocol family 2
    [    0.592278] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
    [    0.592354] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
    [    0.592488] TCP: Hash tables configured (established 8192 bind 8192)
    [    0.592549] UDP hash table entries: 512 (order: 2, 16384 bytes)
    [    0.592582] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    [    0.592806] NET: Registered protocol family 1
    [    0.594119] hw perfevents: enabled with armv7_cortex_a15 PMU driver, 7 counters available
    [    0.597626] futex hash table entries: 512 (order: 3, 32768 bytes)
    [    0.600317] squashfs: version 4.0 (2009/01/31) Phillip Lougher
    [    0.600620] Key type cifs.spnego registered
    [    0.600640] ntfs: driver 2.1.32 [Flags: R/W DEBUG].
    [    0.600693] jffs2: version 2.2. (NAND) (SUMMARY)  © 2001-2006 Red Hat, Inc.
    [    0.600839] fuse init (API version 7.23)
    [    0.603329] bounce: pool size: 64 pages
    [    0.603433] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
    [    0.603452] io scheduler noop registered
    [    0.603468] io scheduler deadline registered
    [    0.603489] io scheduler cfq registered (default)
    [    0.626581] of_get_named_gpiod_flags: can't parse 'gpios' property of node '/ocp/i2c@48072000/serializer@0C[0]'
    [    0.627012] of_get_named_gpiod_flags: can't parse 'gpios' property of node '/ocp/i2c@48072000/serializer@0C/deserializer@35[0]'
    [    0.651016] fpd3_serdes: probe of 5-0035 failed with error -5
    [    0.651042] fpd3_serdes 1-000c: Serializer fpd3_24b_ser ready
    [    0.651112] of_get_named_gpiod_flags: can't parse 'gpios' property of node '/ocp/i2c@48072000/serializer@0C/deserializer@35[0]'
    [    0.652638] fpd3_serdes 5-0035: Deserializer fpd3_24b_des ready
    [    0.654124] Serial: 8250/16550 driver, 10 ports, IRQ sharing disabled
    [    0.657907] console [ttyS2] disabled
    [    0.657959] 48020000.serial: ttyS2 at MMIO 0x48020000 (irq = 301, base_baud = 3000000) is a 8250
    [    0.658037] console [ttyS2] enabled
    [    0.658047] bootconsole [earlycon0] disabled
    [    0.658825] 48066000.serial: ttyS4 at MMIO 0x48066000 (irq = 302, base_baud = 3000000) is a 8250
    [    0.659571] 48424000.serial: ttyS8 at MMIO 0x48424000 (irq = 303, base_baud = 3000000) is a 8250
    [    0.660324] 4ae2b000.serial: ttyS9 at MMIO 0x4ae2b000 (irq = 304, base_baud = 3000000) is a 8250
    [    0.661103] [drm] Initialized drm 1.1.0 20060810
    [    0.662391] 58000000.dss supply vdda_video not found, using dummy regulator
    [    0.662622] OMAP DSS rev 6.1
    [    0.663534] omapdss_dss 58000000.dss: bound 58001000.dispc (ops dispc_component_ops)
    [    0.664285] panel-dpi display: GPIO lookup for consumer enable
    [    0.664297] panel-dpi display: using device tree for GPIO lookup
    [    0.664310] of_get_named_gpiod_flags: can't parse 'enable-gpios' property of node '/display[0]'
    [    0.664322] of_get_named_gpiod_flags: can't parse 'enable-gpio' property of node '/display[0]'
    [    0.664333] panel-dpi display: using lookup tables for GPIO lookup
    [    0.664344] panel-dpi display: lookup for GPIO enable failed
    [    0.671989] loop: module loaded
    [    0.678733] m25p80 spi32766.0: n25q064 (8192 Kbytes)
    [    0.678932] 3 ofpart partitions found on MTD device spi32766.0
    [    0.678943] Creating 3 MTD partitions on "spi32766.0":
    [    0.678956] 0x000000000000-0x000000200000 : "QSPI.IPL"
    [    0.680352] 0x000000200000-0x000000400000 : "QSPI.DSP"
    [    0.681713] 0x000000400000-0x000000800000 : "QSPI.RESERVED"
    [    0.683745] libphy: Fixed MDIO Bus: probed
    [    0.685523] cpsw 48484000.ethernet: No slave[0] phy_id, phy-handle, or fixed-link property
    [    0.685739] cpsw 48484000.ethernet: Detected MACID = 5c:f8:21:30:e2:a8
    [    0.736484] davinci_mdio 48485000.mdio: davinci mdio revision 1.6
    [    0.736497] davinci_mdio 48485000.mdio: detected phy mask fffffffd
    [    0.745893] libphy: 48485000.mdio: probed
    [    0.745908] davinci_mdio 48485000.mdio: phy[1]: device 48485000.mdio:01, driver MVL 88Q1010
    [    0.746162] usbcore: registered new interface driver asix
    [    0.746297] usbcore: registered new interface driver ax88179_178a
    [    0.746472] usbcore: registered new interface driver cdc_ether
    [    0.746617] usbcore: registered new interface driver smsc75xx
    [    0.746758] usbcore: registered new interface driver smsc95xx
    [    0.746876] usbcore: registered new interface driver net1080
    [    0.746993] usbcore: registered new interface driver cdc_subset
    [    0.747112] usbcore: registered new interface driver zaurus
    [    0.747275] usbcore: registered new interface driver cdc_ncm
    [    1.154450] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
    [    1.154480] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1
    [    1.154787] xhci-hcd xhci-hcd.0.auto: hcc params 0x0220f04c hci version 0x100 quirks 0x00010010
    [    1.154847] xhci-hcd xhci-hcd.0.auto: irq 440, io mem 0x48890000
    [    1.155082] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
    [    1.155095] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [    1.155106] usb usb1: Product: xHCI Host Controller
    [    1.155116] usb usb1: Manufacturer: Linux 4.4.23+ xhci-hcd
    [    1.155126] usb usb1: SerialNumber: xhci-hcd.0.auto
    [    1.155908] hub 1-0:1.0: USB hub found
    [    1.155961] hub 1-0:1.0: 1 port detected
    [    1.156376] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
    [    1.156395] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2
    [    1.156554] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
    [    1.156730] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
    [    1.156742] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [    1.156752] usb usb2: Product: xHCI Host Controller
    [    1.156762] usb usb2: Manufacturer: Linux 4.4.23+ xhci-hcd
    [    1.156772] usb usb2: SerialNumber: xhci-hcd.0.auto
    [    1.157499] hub 2-0:1.0: USB hub found
    [    1.157545] hub 2-0:1.0: 1 port detected
    [    1.158042] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
    [    1.158067] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 3
    [    1.158363] xhci-hcd xhci-hcd.1.auto: hcc params 0x0220f04c hci version 0x100 quirks 0x00010010
    [    1.158422] xhci-hcd xhci-hcd.1.auto: irq 441, io mem 0x488d0000
    [    1.158638] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
    [    1.158650] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [    1.158661] usb usb3: Product: xHCI Host Controller
    [    1.158670] usb usb3: Manufacturer: Linux 4.4.23+ xhci-hcd
    [    1.158680] usb usb3: SerialNumber: xhci-hcd.1.auto
    [    1.159392] hub 3-0:1.0: USB hub found
    [    1.159438] hub 3-0:1.0: 1 port detected
    [    1.159851] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
    [    1.159869] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 4
    [    1.159981] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
    [    1.160160] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
    [    1.160172] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [    1.160183] usb usb4: Product: xHCI Host Controller
    [    1.160192] usb usb4: Manufacturer: Linux 4.4.23+ xhci-hcd
    [    1.160202] usb usb4: SerialNumber: xhci-hcd.1.auto
    [    1.160947] hub 4-0:1.0: USB hub found
    [    1.160992] hub 4-0:1.0: 1 port detected
    [    1.161694] usbcore: registered new interface driver usb-storage
    [    1.161855] i2c /dev entries driver
    [    1.162936] adv7180_mmt2020 1-0020: chip found @ 0x20 (OMAP I2C adapter)
    [    1.162984] of_get_named_gpiod_flags: parsed 'pwrdwn-gpio' property of node '/ocp/i2c@48072000/adv7182-in@20[0]' - status (0)
    [    1.163013] of_get_named_gpiod_flags: parsed 'reset-gpio' property of node '/ocp/i2c@48072000/adv7182-in@20[0]' - status (0)
    [    1.163041] of_get_named_gpiod_flags: parsed 'intrq-gpio' property of node '/ocp/i2c@48072000/adv7182-in@20[0]' - status (0)
    [    1.190802] vip 48990000.vip: loading firmware vpdma-1b8.bin
    [    1.191577] of_get_named_gpiod_flags: can't parse 'wlan-pd-gpio' property of node '/ocp/mmc@480b4000[0]'
    [    1.191657] omap_hsmmc 480b4000.mmc: GPIO lookup for consumer cd
    [    1.191668] omap_hsmmc 480b4000.mmc: using device tree for GPIO lookup
    [    1.191681] of_get_named_gpiod_flags: can't parse 'cd-gpios' property of node '/ocp/mmc@480b4000[0]'
    [    1.191695] of_get_named_gpiod_flags: can't parse 'cd-gpio' property of node '/ocp/mmc@480b4000[0]'
    [    1.191705] omap_hsmmc 480b4000.mmc: using lookup tables for GPIO lookup
    [    1.191716] omap_hsmmc 480b4000.mmc: lookup for GPIO cd failed
    [    1.191729] omap_hsmmc 480b4000.mmc: GPIO lookup for consumer wp
    [    1.191738] omap_hsmmc 480b4000.mmc: using device tree for GPIO lookup
    [    1.191750] of_get_named_gpiod_flags: can't parse 'wp-gpios' property of node '/ocp/mmc@480b4000[0]'
    [    1.191762] of_get_named_gpiod_flags: can't parse 'wp-gpio' property of node '/ocp/mmc@480b4000[0]'
    [    1.191772] omap_hsmmc 480b4000.mmc: using lookup tables for GPIO lookup
    [    1.191782] omap_hsmmc 480b4000.mmc: lookup for GPIO wp failed
    [    1.191926] 
    [    1.191926]  OMAP_HSMMC_HL_HWINFO = 0x0  memsize = 0x0
    [    1.206475] vip 48990000.vip: VPDMA firmware loaded
    [    1.206562] vip2-s0: Port A: Using subdev adv7180_mmt2020 1-0020 for capture
    [    1.206954] vip2-s0: device registered as video0
    [    1.226483] DEBUG: Passed omap_hsmmc_probe 3065 mmc_hostname=mmc0 cap=0x18f07 cap2=0x20 
    [    1.226495] DEBUG: Passed omap_hsmmc_probe 3066 mmc_hostname=mmc0 irq=0x151 ocr=0x300000 
    [    1.226506] DEBUG: Passed omap_hsmmc_probe 3067 mmc_hostname=mmc0 ocr_sdio=0x0 ocr_mmc=0x0 
    [    1.226599] of_get_named_gpiod_flags: can't parse 'wlan-pd-gpio' property of node '/ocp/mmc@4809c000[0]'
    [    1.226683] omap_hsmmc 4809c000.mmc: GPIO lookup for consumer cd
    [    1.226695] omap_hsmmc 4809c000.mmc: using device tree for GPIO lookup
    [    1.226725] of_get_named_gpiod_flags: parsed 'cd-gpios' property of node '/ocp/mmc@4809c000[0]' - status (0)
    [    1.226744] omap_hsmmc 4809c000.mmc: Got CD GPIO
    [    1.226756] omap_hsmmc 4809c000.mmc: GPIO lookup for consumer wp
    [    1.226765] omap_hsmmc 4809c000.mmc: using device tree for GPIO lookup
    [    1.226777] of_get_named_gpiod_flags: can't parse 'wp-gpios' property of node '/ocp/mmc@4809c000[0]'
    [    1.226788] of_get_named_gpiod_flags: can't parse 'wp-gpio' property of node '/ocp/mmc@4809c000[0]'
    [    1.226798] omap_hsmmc 4809c000.mmc: using lookup tables for GPIO lookup
    [    1.226808] omap_hsmmc 4809c000.mmc: lookup for GPIO wp failed
    [    1.226997] 
    [    1.226997]  OMAP_HSMMC_HL_HWINFO = 0x0  memsize = 0x0
    [    1.266613] DEBUG: Passed omap_hsmmc_probe 3065 mmc_hostname=mmc1 cap=0xf8607 cap2=0x0 
    [    1.266625] DEBUG: Passed omap_hsmmc_probe 3066 mmc_hostname=mmc1 irq=0x152 ocr=0x300000 
    [    1.266635] DEBUG: Passed omap_hsmmc_probe 3067 mmc_hostname=mmc1 ocr_sdio=0x0 ocr_mmc=0x0 
    [    1.266770] of_get_named_gpiod_flags: parsed 'wlan-pd-gpio' property of node '/ocp/mmc@480ad000[0]' - status (0)
    [    1.266782] DEBUG: [of_get_hsmmc_pdata] [2675] wlan-pd-pin=165  name=(null)
    [    1.266798] DEBUG: [of_get_hsmmc_pdata] [2678] wlan-pd-pin=165  result=0
    [    1.266812] DEBUG: [of_get_hsmmc_pdata] [2680] wlan-pd-pin=165  result=0  get_val=0
    [    1.269171] mmc0: MAN_BKOPS_EN bit is not set
    [    1.274397] mmc0: new HS200 MMC card at address 0001
    [    1.284936] mmcblk0: mmc0:0001 008G92 7.28 GiB 
    [    1.285183] mmcblk0boot0: mmc0:0001 008G92 partition 1 4.00 MiB
    [    1.285430] mmcblk0boot1: mmc0:0001 008G92 partition 2 4.00 MiB
    [    1.286493] DEBUG: [of_get_hsmmc_pdata] [2689] wlan-pd-pin=165  getVal=1
    [    1.291692]  mmcblk0: p1 p2 p3 p4 < p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 >
    [    1.306579] omap_hsmmc 480ad000.mmc: GPIO lookup for consumer cd
    [    1.306592] omap_hsmmc 480ad000.mmc: using device tree for GPIO lookup
    [    1.306606] of_get_named_gpiod_flags: can't parse 'cd-gpios' property of node '/ocp/mmc@480ad000[0]'
    [    1.306620] of_get_named_gpiod_flags: can't parse 'cd-gpio' property of node '/ocp/mmc@480ad000[0]'
    [    1.306631] omap_hsmmc 480ad000.mmc: using lookup tables for GPIO lookup
    [    1.306642] omap_hsmmc 480ad000.mmc: lookup for GPIO cd failed
    [    1.306655] omap_hsmmc 480ad000.mmc: GPIO lookup for consumer wp
    [    1.306665] omap_hsmmc 480ad000.mmc: using device tree for GPIO lookup
    [    1.306677] of_get_named_gpiod_flags: can't parse 'wp-gpios' property of node '/ocp/mmc@480ad000[0]'
    [    1.306688] of_get_named_gpiod_flags: can't parse 'wp-gpio' property of node '/ocp/mmc@480ad000[0]'
    [    1.306699] omap_hsmmc 480ad000.mmc: using lookup tables for GPIO lookup
    [    1.306709] omap_hsmmc 480ad000.mmc: lookup for GPIO wp failed
    [    1.306852] 
    [    1.306852]  OMAP_HSMMC_HL_HWINFO = 0x0  memsize = 0x0
    [    1.346473] DEBUG: Passed omap_hsmmc_probe 3065 mmc_hostname=mmc2 cap=0x38707 cap2=0x0 
    [    1.346485] DEBUG: Passed omap_hsmmc_probe 3066 mmc_hostname=mmc2 irq=0x153 ocr=0x300000 
    [    1.346495] DEBUG: Passed omap_hsmmc_probe 3067 mmc_hostname=mmc2 ocr_sdio=0x0 ocr_mmc=0x0 
    [    1.346592] of_get_named_gpiod_flags: can't parse 'wlan-pd-gpio' property of node '/ocp/mmc@480d1000[0]'
    [    1.346670] omap_hsmmc 480d1000.mmc: GPIO lookup for consumer cd
    [    1.346682] omap_hsmmc 480d1000.mmc: using device tree for GPIO lookup
    [    1.346712] of_get_named_gpiod_flags: parsed 'cd-gpios' property of node '/ocp/mmc@480d1000[0]' - status (0)
    [    1.346752] omap_hsmmc 480d1000.mmc: Got CD GPIO
    [    1.346765] omap_hsmmc 480d1000.mmc: GPIO lookup for consumer wp
    [    1.346775] omap_hsmmc 480d1000.mmc: using device tree for GPIO lookup
    [    1.346788] of_get_named_gpiod_flags: can't parse 'wp-gpios' property of node '/ocp/mmc@480d1000[0]'
    [    1.346799] of_get_named_gpiod_flags: can't parse 'wp-gpio' property of node '/ocp/mmc@480d1000[0]'
    [    1.346809] omap_hsmmc 480d1000.mmc: using lookup tables for GPIO lookup
    [    1.346819] omap_hsmmc 480d1000.mmc: lookup for GPIO wp failed
    [    1.346956] 
    [    1.346956]  OMAP_HSMMC_HL_HWINFO = 0x0  memsize = 0x0
    [    1.386637] DEBUG: Passed omap_hsmmc_probe 3065 mmc_hostname=mmc3 cap=0x18607 cap2=0x0 
    [    1.386649] DEBUG: Passed omap_hsmmc_probe 3066 mmc_hostname=mmc3 irq=0x154 ocr=0x300000 
    [    1.386660] DEBUG: Passed omap_hsmmc_probe 3067 mmc_hostname=mmc3 ocr_sdio=0x0 ocr_mmc=0x0 
    [    1.387177] hidraw: raw HID events driver (C) Jiri Kosina
    [    1.387358] usbcore: registered new interface driver usbhid
    [    1.387367] usbhid: USB HID core driver
    [    1.388415] oprofile: using timer interrupt.
    [    1.388637] ipip: IPv4 over IPv4 tunneling driver
    [    1.389414] NET: Registered protocol family 10
    [    1.400333] sit: IPv6 over IPv4 tunneling driver
    [    1.401009] NET: Registered protocol family 17
    [    1.401043] 8021q: 802.1Q VLAN Support v1.8
    [    1.401107] Key type dns_resolver registered
    [    1.401284] omap_voltage_late_init: Voltage driver support not added
    [    1.401572] Power Management for TI OMAP4+ devices.
    [    1.401815] ThumbEE CPU extension supported.
    [    1.401837] Registering SWP/SWPB emulation handler
    [    1.402610] registered taskstats version 1
    [    1.404858] dmm 4e000000.dmm: initialized all PAT entries
    [    1.418892] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    [    1.418903] [drm] No driver support for vblank timestamp query.
    [    1.424412] [drm] Enabling DMM ywrap scrolling
    [    1.471249] Console: switching to colour frame buffer device 100x30
    [    1.474854] omapdrm omapdrm.0: fb0: omapdrm frame buffer device
    [    1.518657] [drm] Initialized omapdrm 1.0.0 20110917 on minor 0
    [    1.549287] clk: Not disabling unused clocks
    [    1.569869] EXT4-fs (mmcblk0p3): recovery complete
    [    1.569895] EXT4-fs (mmcblk0p3): mounted filesystem with ordered data mode. Opts: (null)
    [    1.569931] VFS: Mounted root (ext4 filesystem) on device 179:3.
    [    1.570793] devtmpfs: mounted
    [    1.571362] Freeing unused kernel memory: 836K (c095f000 - c0a30000)
    [    1.571371] This architecture does not have kernel memory protection.
    [    1.774986] systemd[1]: Failed to insert module 'autofs4': No such file or directory
    [    1.786922] random: systemd: uninitialized urandom read (16 bytes read, 12 bits of entropy available)
    [    1.796042] systemd[1]: systemd 225 running in system mode. (-PAM -AUDIT -SELINUX -IMA -APPARMOR -SMACK -SYSVINIT +UTMP -LIBCRYPTSETUP -GCRYPT -GNUTLS -ACL +XZ -LZ4 -SECCOMP -BLKID -ELFUTILS +KMOD -IDN)
    [    1.796577] systemd[1]: Detected architecture arm.
    [    1.817066] systemd[1]: Set hostname to <mmt2020-a879-b0>.
    [    1.818697] systemd[1]: Using cgroup controller systemd. File system hierarchy is at /sys/fs/cgroup/systemd.
    [    1.819121] systemd[1]: Installed release agent.
    [    1.846704] systemd[1]: Set up TFD_TIMER_CANCEL_ON_SET timerfd.
    [    1.848110] systemd[1]: Looking for unit files in (higher priority first):
    [    1.848127] systemd[1]: 	/etc/systemd/system
    [    1.848142] systemd[1]: 	/run/systemd/system
    [    1.848156] systemd[1]: 	/usr/local/lib/systemd/system
    [    1.848170] systemd[1]: 	/lib/systemd/system
    [    1.848183] systemd[1]: 	/usr/lib/systemd/system
    [    1.848198] systemd[1]: SysV init scripts and rcN.d links support disabled
    [    1.848719] random: systemd: uninitialized urandom read (16 bytes read, 13 bits of entropy available)
    [    1.849469] random: systemd: uninitialized urandom read (16 bytes read, 13 bits of entropy available)
    [    1.849615] random: systemd: uninitialized urandom read (16 bytes read, 13 bits of entropy available)
    [    1.850130] systemd[1]: Unit type .busname is not supported on this system.
    [    1.855912] systemd[1]: local-fs.target: Failed to load configuration: No such file or directory
    [    1.856090] systemd[1]: Unit type .automount is not supported on this system.
    [    1.856542] systemd[1]: shutdown.target: Failed to load configuration: No such file or directory
    [    1.856711] systemd[1]: Using notification socket /run/systemd/notify
    [    1.857705] systemd[1]: Successfully created private D-Bus server.
    [    1.857728] systemd[1]: dev-mmcblk0p3.device: Changed dead -> tentative
    [    1.857833] systemd[1]: -.mount: Changed dead -> mounted
    [    1.857993] systemd[1]: Activating default unit: default.target
    [    1.858775] random: systemd: uninitialized urandom read (16 bytes read, 13 bits of entropy available)
    [    1.860818] random: systemd: uninitialized urandom read (16 bytes read, 13 bits of entropy available)
    [    1.865813] systemd[1]: systemd-tmpfiles-setup.service: Failed to load configuration: No such file or directory
    [    1.865850] systemd[1]: systemd-remount-fs.service: Failed to load configuration: No such file or directory
    [    1.874239] random: systemd: uninitialized urandom read (16 bytes read, 14 bits of entropy available)
    [    1.876966] systemd[1]: dropbear.service: Failed to load configuration: No such file or directory
    [    1.877706] random: systemd: uninitialized urandom read (16 bytes read, 14 bits of entropy available)
    [    1.880001] systemd[1]: syslog.socket: Failed to load configuration: No such file or directory
    [    1.880731] systemd[1]: network.target: Failed to load configuration: No such file or directory
    [    1.882082] random: systemd: uninitialized urandom read (16 bytes read, 15 bits of entropy available)
    [    1.882856] random: systemd: uninitialized urandom read (16 bytes read, 15 bits of entropy available)
    [    1.894389] systemd[1]: org.genivi.NodeStateManager.Consumer_NodeStateManager.inst0.busname: Failed to load configuration: No such file or directory
    [    1.896665] systemd[1]: org.genivi.NodeStartupController1.NodeStartupController_NodeStartupController.inst0.busname: Failed to load configuration: No such file or directory
    [    1.896734] systemd[1]: Default target could not be isolated, starting instead: Operation refused, unit may not be isolated.
    [    1.896754] systemd[1]: multi-user.target: Trying to enqueue job multi-user.target/start/replace
    [    1.897067] systemd[1]: Assertion '!bus_error_is_dirty(e)' failed at /data/work/Jenkins/TI-BASE-MMT2020-SDK1/elina-distro/build-mmt2020-a879-b0/tmp/work/cortexa15hf-vfp-neon-elina-linux-gnueabi/systemd/1_225+gitAUTOINC+e1439a1472-r0/git/src/libsystemd/sd-bus/bus-error.c:262, function bus_error_setfv(). Ignoring.
    [    1.897088] systemd[1]: syslog.socket: Cannot add dependency job, ignoring: Operation refused, unit may not be isolated.
    [    1.897617] systemd[1]: udevd.service: Installed new job udevd.service/start as 38
    [    1.897646] systemd[1]: systemd-journald.socket: Installed new job systemd-journald.socket/start as 19
    [    1.897670] systemd[1]: dlt-daemon.service: Installed new job dlt-daemon.service/start as 30
    [    1.897693] systemd[1]: busybox-syslog.service: Installed new job busybox-syslog.service/start as 36
    [    1.897716] systemd[1]: network.service: Installed new job network.service/start as 24
    [    1.897740] systemd[1]: basic_applications.target: Installed new job basic_applications.target/start as 8
    [    1.897763] systemd[1]: var-volatile.mount: Installed new job var-volatile.mount/start as 22
    [    1.897786] systemd[1]: load-video-modules.service: Installed new job load-video-modules.service/start as 7
    [    1.897810] systemd[1]: multi-user.target: Installed new job multi-user.target/start as 1
    [    1.897832] systemd[1]: unfocussed.target: Installed new job unfocussed.target/start as 42
    [    1.897854] systemd[1]: busybox-klogd.service: Installed new job busybox-klogd.service/start as 37
    [    1.897875] systemd[1]: mount-swdl.service: Installed new job mount-swdl.service/start as 27
    [    1.897897] systemd[1]: usbupdate.service: Installed new job usbupdate.service/start as 46
    [    1.897918] systemd[1]: syslog-ng.service: Installed new job syslog-ng.service/start as 13
    [    1.897939] systemd[1]: tmp.mount: Installed new job tmp.mount/start as 23
    [    1.897960] systemd[1]: systemd-journald.service: Installed new job systemd-journald.service/start as 18
    [    1.897982] systemd[1]: dropbear.socket: Installed new job dropbear.socket/start as 34
    [    1.898003] systemd[1]: vsftpd.service: Installed new job vsftpd.service/start as 40
    [    1.898024] systemd[1]: run-postinsts.service: Installed new job run-postinsts.service/start as 25
    [    1.898047] systemd[1]: basic.target: Installed new job basic.target/start as 9
    [    1.898067] systemd[1]: applications.target: Installed new job applications.target/start as 47
    [    1.898090] systemd[1]: populate-volatile.service: Installed new job populate-volatile.service/start as 26
    [    1.898112] systemd[1]: dbus.service: Installed new job dbus.service/start as 15
    [    1.898133] systemd[1]: pvrinit.service: Installed new job pvrinit.service/start as 39
    [    1.898154] systemd[1]: -.slice: Installed new job -.slice/start as 4
    [    1.898176] systemd[1]: alsa-restore.service: Installed new job alsa-restore.service/start as 11
    [    1.898197] systemd[1]: alsa-state.service: Installed new job alsa-state.service/start as 10
    [    1.898218] systemd[1]: rpcbind.socket: Installed new job rpcbind.socket/start as 33
    [    1.898239] systemd[1]: dlt-system.service: Installed new job dlt-system.service/start as 31
    [    1.898260] systemd[1]: focussed.target: Installed new job focussed.target/start as 43
    [    1.898285] systemd[1]: system.slice: Installed new job system.slice/start as 3
    [    1.898305] systemd[1]: thox.service: Installed new job thox.service/start as 12
    [    1.898325] systemd[1]: lazy.target: Installed new job lazy.target/start as 41
    [    1.898346] systemd[1]: mount-data.service: Installed new job mount-data.service/start as 20
    [    1.898366] systemd[1]: ambd.service: Installed new job ambd.service/start as 48
    [    1.898386] systemd[1]: hdlc_ipc4.service: Installed new job hdlc_ipc4.service/start as 6
    [    1.898407] systemd[1]: network-usb.service: Installed new job network-usb.service/start as 28
    [    1.898428] systemd[1]: dbus-session.service: Installed new job dbus-session.service/start as 14
    [    1.898448] systemd[1]: sysinit.target: Installed new job sysinit.target/start as 17
    [    1.898469] systemd[1]: createDirs.service: Installed new job createDirs.service/start as 21
    [    1.898489] systemd[1]: dbus.socket: Installed new job dbus.socket/start as 16
    [    1.898510] systemd[1]: nodestatemanager.service: Installed new job nodestatemanager.service/start as 45
    [    1.898530] systemd[1]: getty.service: Installed new job getty.service/start as 50
    [    1.898551] systemd[1]: weston.service: Installed new job weston.service/start as 2
    [    1.898571] systemd[1]: sockets.target: Installed new job sockets.target/start as 32
    [    1.898592] systemd[1]: nodestartupcontroller.service: Installed new job nodestartupcontroller.service/start as 44
    [    1.898612] systemd[1]: tracesrv.service: Installed new job tracesrv.service/start as 29
    [    1.898632] systemd[1]: pathology.service: Installed new job pathology.service/start as 49
    [    1.898680] systemd[1]: multi-user.target: Enqueued job multi-user.target/start as 1
    [    1.898707] systemd[1]: Loaded units and determined initial transaction in 50ms.
    [    1.898873] systemd[1]: -.slice changed dead -> active
    [    1.898898] systemd[1]: -.slice: Job -.slice/start finished, result=done
    [    1.898932] systemd[1]: Created slice -.slice.
    [    1.916727] systemd[1]: system.slice changed dead -> active
    [    1.916753] systemd[1]: system.slice: Job system.slice/start finished, result=done
    [    1.916782] systemd[1]: Created slice system.slice.
    [    1.936577] systemd[1]: applications.target changed dead -> active
    [    1.936601] systemd[1]: applications.target: Job applications.target/start finished, result=done
    [    1.936630] systemd[1]: Reached target applications.target.
    [    1.956560] systemd[1]: basic.target changed dead -> active
    [    1.956584] systemd[1]: basic.target: Job basic.target/start finished, result=done
    [    1.956611] systemd[1]: Reached target Basic target.
    [    1.976568] systemd[1]: basic_applications.target changed dead -> active
    [    1.976592] systemd[1]: basic_applications.target: Job basic_applications.target/start finished, result=done
    [    1.976621] systemd[1]: Reached target This target is common for all hw samples (applinux and emlinux).
    [    1.996821] systemd[1]: systemd-journald.socket: Changed dead -> listening
    [    1.996847] systemd[1]: systemd-journald.socket: Job systemd-journald.socket/start finished, result=done
    [    1.996876] systemd[1]: Listening on Socket for journal of systemd.
    [    2.018175] systemd[1]: var-volatile.mount: About to execute: /bin/mount tmpfs /var/volatile -t tmpfs -o mode=1777,strictatime,size=10M
    [    2.018568] systemd[1]: var-volatile.mount: Forked /bin/mount as 849
    [    2.056604] systemd[1]: var-volatile.mount: Changed dead -> mounting
    [    2.056661] systemd[1]: Mounting Mount /var/volatile...
    [    2.077323] systemd[1]: dlt-system.service: About to execute: /usr/bin/dlt-system
    [    2.077681] systemd[1]: dlt-system.service: Forked /usr/bin/dlt-system as 852
    [    2.078270] systemd[1]: dlt-system.service: Changed dead -> running
    [    2.078298] systemd[1]: dlt-system.service: Job dlt-system.service/start finished, result=done
    [    2.078347] systemd[1]: Started GENIVI DLT system. Application to forward syslog messages to DLT, transfer system information, logs and files..
    [    2.096933] systemd[1]: pvrinit.service: About to execute: /sbin/modprobe -q pvrsrvkm
    [    2.097280] systemd[1]: pvrinit.service: Forked /sbin/modprobe as 853
    [    2.097743] systemd[1]: pvrinit.service: Changed dead -> start
    [    2.097813] systemd[1]: Starting Load the PVR Services module and run the PVR initialisation server...
    [    2.116882] systemd[1]: getty.service: About to execute: /sbin/getty 115200 ttyS2
    [    2.117264] systemd[1]: getty.service: Forked /sbin/getty as 859
    [    2.117852] systemd[1]: getty.service: Changed dead -> running
    [    2.117894] systemd[1]: getty.service: Job getty.service/start finished, result=done
    [    2.117938] systemd[1]: Started Getty on TTYS2.
    [    2.136919] systemd[1]: load-video-modules.service: About to execute: /sbin/modprobe -qab omap-mailbox rpmsg-rpc omap_remoteproc
    [    2.137279] systemd[1]: load-video-modules.service: Forked /sbin/modprobe as 860
    [    2.137742] systemd[1]: load-video-modules.service: Changed dead -> start
    [    2.137814] systemd[1]: Starting load drivers required for video playback and dependencies...
    [    2.151984] omap-mailbox 48840000.mailbox: omap mailbox rev 0x400
    [    2.152372] omap-mailbox 48842000.mailbox: omap mailbox rev 0x400
    [    2.162198] systemd[1]: busybox-syslog.service: About to execute: /sbin/syslogd -n $OPTIONS
    [    2.162581] systemd[1]: busybox-syslog.service: Forked /sbin/syslogd as 870
    [    2.163209] systemd[1]: busybox-syslog.service: Changed dead -> running
    [    2.163239] systemd[1]: busybox-syslog.service: Job busybox-syslog.service/start finished, result=done
    [    2.163286] systemd[1]: Started System Logging Service.
    [    2.163777] systemd[1]: vsftpd.service: About to execute: /usr/sbin/vsftpd
    [    2.164142] systemd[1]: vsftpd.service: Forked /usr/sbin/vsftpd as 871
    [    2.164705] systemd[1]: vsftpd.service: Changed dead -> running
    [    2.164731] systemd[1]: vsftpd.service: Job vsftpd.service/start finished, result=done
    [    2.164775] systemd[1]: Started Vsftpd ftp daemon.
    [    2.165258] systemd[1]: mount-data.service: About to execute: /bin/mount -t ext4 -o rw /dev/mmcblk0p9 /mnt/data/
    [    2.165626] systemd[1]: mount-data.service: Forked /bin/mount as 872
    [    2.166062] systemd[1]: mount-data.service: Changed dead -> start
    [    2.166130] systemd[1]: Starting Mount p9 as read-write partition on RO FS...
    [    2.166403] systemd[1]: tmp.mount: Directory /tmp to mount over is not empty, mounting anyway.
    [    2.167186] systemd[1]: tmp.mount: About to execute: /bin/mount tmpfs /tmp -t tmpfs -o mode=1777,strictatime,size=10M
    [    2.167624] systemd[1]: tmp.mount: Forked /bin/mount as 873
    [    2.167901] systemd[1]: tmp.mount: Changed dead -> mounting
    [    2.167987] systemd[1]: Mounting Mount /tmp...
    [    2.169287] systemd[1]: busybox-klogd.service: About to execute: /sbin/klogd -n
    [    2.169709] systemd[1]: busybox-klogd.service: Forked /sbin/klogd as 874
    [    2.170345] systemd[1]: busybox-klogd.service: Changed dead -> running
    [    2.170373] systemd[1]: busybox-klogd.service: Job busybox-klogd.service/start finished, result=done
    [    2.170422] systemd[1]: Started Kernel Logging Service.
    [    2.171062] systemd[1]: hdlc_ipc4.service: About to execute: /bin/mkdir -p /dev/ipc
    [    2.172334] systemd[1]: hdlc_ipc4.service: Forked /bin/mkdir as 877
    [    2.172654] systemd[1]: hdlc_ipc4.service: Changed dead -> start-pre
    [    2.172722] systemd[1]: Starting HDLC_IPC4 service...
    [    2.173471] systemd[1]: mount-swdl.service: About to execute: /bin/mount -t ext4 -o rw /dev/mmcblk0p14 /mnt/swdl/
    [    2.173852] systemd[1]: mount-swdl.service: Forked /bin/mount as 878
    [    2.174396] systemd[1]: mount-swdl.service: Changed dead -> start
    [    2.174454] systemd[1]: Starting Mount p14 as read-write partition on RO FS...
    [    2.174803] systemd[1]: systemd-journald.service: About to execute: /lib/systemd/systemd-journald
    [    2.179845] systemd[1]: systemd-journald.service: Forked /lib/systemd/systemd-journald as 879
    [    2.180467] systemd[1]: systemd-journald.service: Changed dead -> running
    [    2.180496] systemd[1]: systemd-journald.service: Job systemd-journald.service/start finished, result=done
    [    2.180544] systemd[1]: Started Journal Service.
    [    2.180768] systemd[1]: systemd-journald.socket: Changed listening -> running
    [    2.196522] systemd[1]: udevd.service: Forked /lib/systemd/systemd-udevd as 880
    [    2.206593] systemd[1]: udevd.service: Changed dead -> start
    [    2.216015] EXT4-fs (mmcblk0p9): recovery complete
    [    2.216039] EXT4-fs (mmcblk0p9): mounted filesystem with ordered data mode. Opts: (null)
    [    2.226517] systemd[1]: dev-mmcblk0p9.device: Changed dead -> tentative
    [    2.236468] systemd[1]: umount.target: Failed to load configuration: No such file or directory
    [    2.246514] systemd[1]: local-fs-pre.target: Failed to load configuration: No such file or directory
    [    2.256471] systemd[1]: mnt-data.mount: Changed dead -> mounted
    [    2.264109] omap-rproc 55020000.ipu: assigned reserved memory node ipu2_cma@95800000
    [    2.264175]  remoteproc0: 55020000.ipu is available
    [    2.264186]  remoteproc0: Note: remoteproc is still under development and considered experimental.
    [    2.264195]  remoteproc0: THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn't yet guaranteed.
    [    2.266498] systemd[1]: var-volatile.mount: Changed mounting -> mounting-done
    [    2.276478] systemd[1]: var-volatile.mount: Job var-volatile.mount/start finished, result=done
    [    2.296485] systemd[1]: tmp.mount: Changed mounting -> mounting-done
    [    2.306477] systemd[1]: tmp.mount: Job tmp.mount/start finished, result=done
    [    2.326475] systemd[1]: Received SIGCHLD from PID 849 (mount).
    [    2.336481] systemd[1]: Child 849 (mount) died (code=exited, status=0/SUCCESS)
    [    2.346484] systemd[1]: var-volatile.mount: Child 849 belongs to var-volatile.mount
    [    2.356481] systemd[1]: var-volatile.mount: Mount process exited, code=exited status=0
    [    2.366483] systemd[1]: var-volatile.mount: Changed mounting-done -> mounted
    [    2.372231] mmc2: error -110 whilst initialising SDIO card
    [    2.376488] systemd[1]: Child 853 (modprobe) died (code=exited, status=1/FAILURE)
    [    2.386473] systemd[1]: pvrinit.service: Child 853 belongs to pvrinit.service
    [    2.406550] systemd[1]: pvrinit.service: Changed start -> failed
    [    2.416531] systemd[1]: pvrinit.service: Job pvrinit.service/start finished, result=failed
    [    2.436479] systemd[1]: pvrinit.service: Unit entered failed state.
    [    2.441934]  remoteproc0: powering up 55020000.ipu
    [    2.441951]  remoteproc0: Booting fw image dra7-ipu2-fw.xem4, size 3743108
    [    2.442031] omap-iommu 55082000.mmu: 55082000.mmu: version 2.1
    [    2.446505] systemd[1]: pvrinit.service: Failed with result 'exit-code'.
    [    2.456484] systemd[1]: pvrinit.service: cgroup is empty
    [    2.466530] systemd[1]: Child 860 (modprobe) died (code=exited, status=0/SUCCESS)
    [    2.476487] systemd[1]: load-video-modules.service: Child 860 belongs to load-video-modules.service
    [    2.496610] systemd[1]: load-video-modules.service: Changed start -> exited
    [    2.502325]  remoteproc0: remote processor 55020000.ipu is now up
    [    2.502742] virtio_rpmsg_bus virtio0: rpmsg host is online
    [    2.502804]  remoteproc0: registered virtio0 (type 7)
    [    2.506488] systemd[1]: load-video-modules.service: Job load-video-modules.service/start finished, result=done
    [    2.510694] virtio_rpmsg_bus virtio0: creating channel rpmsg-rpc addr 0x65
    [    2.510976] rpmsg_rpc rpmsg0: probing service dce-callback with src 1024 dst 101
    [    2.511750] rpmsg_rpc rpmsg0: published functions = 4
    [    2.511796] virtio_rpmsg_bus virtio0: creating channel rpmsg-rpc addr 0x66
    [    2.512041] rpmsg_rpc rpmsg1: probing service rpmsg-dce with src 1025 dst 102
    [    2.512782] rpmsg_rpc rpmsg1: published functions = 9
    [    2.526529] systemd[1]: load-video-modules.service: cgroup is empty
    [    2.536475] systemd[1]: Child 872 (mount) died (code=exited, status=0/SUCCESS)
    [    2.546588] systemd[1]: mount-data.service: Child 872 belongs to mount-data.service
    [    2.566483] systemd[1]: mount-data.service: Changed start -> exited
    [    2.576471] systemd[1]: mount-data.service: Job mount-data.service/start finished, result=done
    [    2.596516] systemd[1]: mount-data.service: cgroup is empty
    [    2.606499] systemd[1]: Child 873 (mount) died (code=exited, status=0/SUCCESS)
    [    2.616498] systemd[1]: tmp.mount: Child 873 belongs to tmp.mount
    [    2.626554] systemd[1]: tmp.mount: Mount process exited, code=exited status=0
    [    2.636496] systemd[1]: tmp.mount: Changed mounting-done -> mounted
    [    2.646500] systemd[1]: Failed to determine peer security context: Protocol not available
    [    2.656552] systemd[1]: Accepted new private connection.
    [    2.666553] systemd[1]: Failed to determine peer security context: Protocol not available
    [    2.676496] systemd[1]: Accepted new private connection.
    [    2.686498] systemd[1]: Failed to determine peer security context: Protocol not available
    [    2.696521] systemd[1]: Accepted new private connection.
    [    2.706496] systemd[1]: Failed to determine peer security context: Protocol not available
    [    2.716503] systemd[1]: Accepted new private connection.
    [    2.726496] systemd[1]: Failed to determine peer security context: Protocol not available
    [    2.736501] systemd[1]: Accepted new private connection.
    [    2.746496] systemd[1]: Got message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a
    [    2.756505] systemd[1]: Got message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1/agent interface=org.freedesktop.systemd1.Agent member=Released cookie=1 reply_cookie=0 error=n/a
    [    2.766500] systemd[1]: run-postinsts.service: ConditionPathExistsGlob=/etc/*-postinsts failed.
    [    2.776495] systemd[1]: run-postinsts.service: Starting requested but condition failed. Not starting unit.
    [    2.786490] systemd[1]: run-postinsts.service: Job run-postinsts.service/start finished, result=done
    [    2.796471] systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobRemoved cookie=1 reply_cookie=0 error=n/a
    [    2.806470] systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobRemoved cookie=1 reply_cookie=0 error=n/a
    [    2.816468] systemd[1]: sysinit.target changed dead -> active
    [    2.826468] systemd[1]: sysinit.target: Job sysinit.target/start finished, result=done
    [    2.846494] systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobRemoved cookie=2 reply_cookie=0 error=n/a
    [    2.856495] systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobRemoved cookie=2 reply_cookie=0 error=n/a
    [    2.876527] systemd[1]: network.service: Forked /sbin/ifconfig as 901
    [    2.916523] systemd[1]: network.service: Forked /sbin/udhcpc as 902
    [    2.926517] systemd[1]: network.service: Changed dead -> start-post
    [    2.946519] systemd[1]: rpcbind.socket: Changed dead -> listening
    [    2.956509] systemd[1]: rpcbind.socket: Job rpcbind.socket/start finished, result=done
    [    2.976492] systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobRemoved cookie=3 reply_cookie=0 error=n/a
    [    2.986494] systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobRemoved cookie=3 reply_cookie=0 error=n/a
    [    2.996497] systemd[1]: alsa-state.service: ConditionPathExists=/etc/alsa/state-daemon.conf failed.
    [    3.006492] systemd[1]: alsa-state.service: Starting requested but condition failed. Not starting unit.
    [    3.016489] systemd[1]: alsa-state.service: Job alsa-state.service/start finished, result=done
    [    3.026471] systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobRemoved cookie=4 reply_cookie=0 error=n/a
    [    3.036471] systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobRemoved cookie=4 reply_cookie=0 error=n/a
    [    3.046492] systemd[1]: alsa-restore.service: ConditionPathExists=/var/lib/alsa/asound.state succeeded.
    [    3.056494] systemd[1]: alsa-restore.service: ConditionPathExists=!/etc/alsa/state-daemon.conf succeeded.
    [    3.076510] systemd[1]: alsa-restore.service: Forked /usr/sbin/alsactl as 903
    [    3.116496] systemd[1]: alsa-restore.service: Changed dead -> start
    [    3.146496] systemd[1]: network-usb.service: Forked /sbin/ifconfig as 904
    [    3.166495] systemd[1]: network-usb.service: Forked /sbin/udhcpc as 905
    [    3.176511] systemd[1]: network-usb.service: Changed dead -> start-post
    [    3.196492] systemd[1]: dbus.socket: Changed dead -> listening
    [    3.206487] systemd[1]: dbus.socket: Job dbus.socket/start finished, result=done
    [    3.226490] systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobRemoved cookie=5 reply_cookie=0 error=n/a
    [    3.236486] systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobRemoved cookie=5 reply_cookie=0 error=n/a
    [    3.256504] systemd[1]: dbus.service: Forked /usr/bin/dbus-daemon as 906
    [    3.296515] systemd[1]: dbus.service: Changed dead -> running
    [    3.306509] systemd[1]: dbus.service: Job dbus.service/start finished, result=done
    [    3.326507] systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobRemoved cookie=6 reply_cookie=0 error=n/a
    [    3.336511] systemd[1]: Sent message type=signal sender=n/a destination=n/a object=/org/freedesktop/systemd1 interface=org.freedesktop.systemd1.Manager member=JobRemoved cookie=6 reply_cookie=0 error=n/a
    [    3.346506] systemd[1]: dbus.socket: Changed listening -> running
    [    3.356496] systemd[1]: Failed to determine peer security context: Protocol not available
    [    3.366497] systemd[1]: Successfully connected to system bus.
    [    5.036468] usb 1-1: new high-speed USB device number 2 using xhci-hcd
    [    5.182887] usb 1-1: New USB device found, idVendor=0123, idProduct=0011
    [    5.182901] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
    [    5.182912] usb 1-1: Product:                 
    [    5.182922] usb 1-1: Manufacturer:         
    [    5.182932] usb 1-1: SerialNumber: 30B60900B64E4189
    [    5.183915] usb-storage 1-1:1.0: USB Mass Storage device detected
    [    5.194303] scsi host0: usb-storage 1-1:1.0
    [    6.226610] scsi 0:0:0:0: Direct-Access                               PMAP PQ: 0 ANSI: 0 CCS
    [    8.322751] sd 0:0:0:0: [sda] 7831552 512-byte logical blocks: (4.01 GB/3.73 GiB)
    [    8.322987] sd 0:0:0:0: [sda] Write Protect is off
    [    8.323002] sd 0:0:0:0: [sda] Mode Sense: 23 00 00 00
    [    8.323237] sd 0:0:0:0: [sda] No Caching mode page found
    [    8.323249] sd 0:0:0:0: [sda] Assuming drive cache: write through
    [    8.360763]  sda:
    [    8.362715] sd 0:0:0:0: [sda] Attached SCSI removable disk
    [   12.186680] systemd-cgroups-agent[881]: Failed to determine peer security context: Protocol not available
    [   12.216518] systemd-cgroups-agent[888]: Failed to determine peer security context: Protocol not available
    [   12.242948] systemd-journald[879]: Audit not supported in the kernel.
    [   12.244219] systemd-journald[879]: Fixed max_use=49.2M max_size=6.1M min_size=4.0M keep_free=73.9M
    [   12.244693] EXT4-fs (mmcblk0p14): recovery complete
    [   12.245474] EXT4-fs (mmcblk0p14): mounted filesystem with ordered data mode. Opts: (null)
    [   12.254534] systemd-journald[879]: Reserving 11214 entries in hash table.
    [   12.255715] systemd-journald[879]: Vacuuming...
    [   12.255798] systemd-journald[879]: Vacuuming done, freed 0B of archived journals on disk.
    [   12.256570] systemd-journald[879]: Flushing /dev/kmsg...
    [   12.260701] systemd-journald[879]: Compressed data object 537 -> 296 using XZ
    [   12.266524] systemd-cgroups-agent[894]: Failed to determine peer security context: Protocol not available
    [   12.376887] systemd-journald[879]: systemd-journald running as pid 879
    [   12.388945] net eth0: initializing cpsw version 1.15 (0)
    [   12.388964] net eth0: initialized cpsw ale version 1.4
    [   12.388975] net eth0: ALE Table size 1024
    [   12.390998] libphy: PHY  not found
    [   12.391012] net eth0: phy "" not found on slave 0, err -19
    [   12.391037] davinci_mdio 48485000.mdio: resetting idled controller
    [   12.476495] net eth0: phy found : id is : 0x2b0b31
    [   12.483594] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
    [   12.483608] 8021q: adding VLAN 0 to HW filter on device eth0
    [   12.506514] systemd[1]: Sent message type=method_call sender=n/a destination=org.freedesktop.DBus object=/org/freedesktop/DBus interface=org.freedesktop.DBus member=ListNames cookie=6 reply_cookie=0 error=n/a
    [   12.556654] systemd[1]: sockets.target: Job sockets.target/start finished, result=done
    [   12.596495] systemd[1]: dbus.socket: Failed to send unit change signal for dbus.socket: Transport endpoint is not connected
    [   12.606554] systemd[1]: sysinit.target: Failed to send unit change signal for sysinit.target: Transport endpoint is not connected
    [   12.656737] systemd[1]: alsa-restore.service: cgroup is empty
    [   12.666737] systemd[1]: network-usb.service: Changed failed -> auto-restart
    [   12.676934] systemd[1]: populate-volatile.service: Child 943 belongs to populate-volatile.service
    [   12.686525] systemd[1]: createDirs.service: cgroup is empty
    [   15.106602] systemd[1]: Sent message type=method_return sender=n/a destination=:1.3 object=n/a interface=n/a member=n/a cookie=25 reply_cookie=30 error=n/a
    [   94.666507] random: nonblocking pool is initialized
    [  146.763336] cfg80211: World regulatory domain updated:
    [  146.763351] cfg80211:  DFS Master region: unset
    [  146.763359] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
    [  146.763373] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
    [  146.763387] cfg80211:   (2457000 KHz - 2482000 KHz @ 20000 KHz, 92000 KHz AUTO), (N/A, 2000 mBm), (N/A)
    [  146.763398] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)
    [  146.763410] cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (N/A)
    [  146.763422] cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (0 s)
    [  146.763433] cfg80211:   (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)
    [  146.763444] cfg80211:   (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
    [  146.763455] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)
    [  194.097670] mlan: module license 'Marvell Proprietary' taints kernel.
    [  194.097687] Disabling lock debugging due to kernel taint
    [  199.997361] wlan: Loading MWLAN driver
    [  200.002325] wlan: Driver loaded successfully
    
    mmc3_wlan.zip

  • Hi Anil,

    Yes, you need to add the MMC3 pin muxes.

    Regards,
    Vishal