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.

DM388: How to Create Static IP in DM388-CSK and Disable DHCP

Part Number: DM388


I'm using a DM388_CSK, How can I disable the DHCP from obtaining IP automatically and to create my own IP address.

Booting is from SD Card

I'm trying to do this by making changes in bootargs... Its not working for me.

Does this following command work?

"setenv bootargs root=/dev/nfs rw nfsroot=$(serverip):$(rootpath) ip=$(ipaddr):$(serverip):$(gatewayip):$(netmask):$(hostname)::off"

if not please help with a working command for DM388-CSK, If I required to set an IP 192.168.1.125

Thanks and Regards

  • Hi ,

    Please refer to the below link you find necessary information at the end ,

    e2e.ti.com/.../2232064
  • Thanks Botev,

    I have gone through all those links.. these are for TI81XX which is having booting from;
    1. SDRAM
    2. SPI Flash
    3.NAND Flash
    4. NOR Flash
    5. USB Storage

    As DM388-csk board boots from SD Card..which process from the above booting I can follow?

    in U-boot I entered the IP but suspect bootargs are overwriting them. This is the commands I tried in u-boot prompt

    DM38x-CSK # setenv ipaddr 192.168.1.125
    DM38x-CSK # setenv serverip 192.168.1.100
    DM38x-CSK # setenv netmask 255.255.255.0
    DM38x-CSK # setenv hostname ipnc
    DM38x-CSK # setenv rootpath /etc/network/interfaces
    DM38x-CSK # saveenv

    DM38x-CSK # setenv bootargs root=/dev/nfs rw nfsroot=\$(serverip):\$(rootpath) ip=\$(ipaddr):\$(serverip):\$(gatewayip):\$(netmask):\$(hostname)::off

    Maybe bootsrgs are not getting set properly.. Is the rootpath correct?

    Please give solution.
    Thanks n Regards
  • Nithin Dominic said:
    I have gone through all those links.. these are for TI81XX which is having booting from;
    1. SDRAM

    Boot from SDRAM? Where exactly you have found this ???

    Nithin Dominic said:
    As DM388-csk board boots from SD Card..which process from the above booting I can follow?

    The boot source (SD card or NAND) do not impact static IP vs DHCP settings. To set static IP, you should enetr into the u-boot prompt and use the below command:

    U-Boot#setenv ipaddr ‘192.168.1.1’
    Then check if your settings is accepted:
    U-Boot#print ipaddr
    Nithin Dominic said:
    DM38x-CSK # setenv bootargs root=/dev/nfs rw nfsroot=\$(serverip):\$(rootpath) ip=\$(ipaddr):\$(serverip):\$(gatewayip):\$(netmask):\$(hostname)::off

    Maybe bootsrgs are not getting set properly.. Is the rootpath correct?
    After you setup your boot arguments for static IP, check if settings are accepted:
    ......
    U-Boot # saveenv
    U-Boot # print
  • We have example for NAND boot, you can re-use that approach:

    U-Boot# setenv ethaddr xx:xx:xx:xx:xx:xx
    U-Boot# setenv ipaddr 192.168.1.168; setenv gatewayip 192.168.1.1; setenv netmask 255.255.255.0; setenv serverip 192.168.1.151

    NOTE:IPNC RDK uses a pre-decided static IP address of 192.168.1.168 at the time of boot. It ignores the static IP passed via bootargs. If NFS is needed as the file system in static IP mode, make sure the NFS server static IP settings are appropriate. For example, ipaddr of NFS host – 192.168.1.170

    U-Boot#setenv bootargs 'console=ttyO0,115200n8 root=/dev/nfs nfsroot=192.168.1.151:/home/work/IPNC_RDK/Release_v3.50.00/Source/ipnc_rdk/target/filesys,nolock eth=00:0C:0C:A0:07:66 ip=192.168.1.168 earlyprintk'

    U-Boot# saveenv

    U-Boot# print

    U-Boot# boot

    You you still have issues, please provide me full console log for analysis.

    Regards,
    Pavel
  • Nithin Dominic said:

    This is loading (booting) kernel image only from SDRAM

  • This is my u-boot ..

    test@test-rtdr:~$ minicom -s

    Welcome to minicom 2.7

    OPTIONS: I18n
    Compiled on Jan 1 2014, 17:13:19.
    Port /dev/ttyUSB0, 09:43:39

    Press CTRL-A Z for help on special keys


    U-Boot SPL 2016.05 (Jun 29 2017 - 18:55:08)
    Trying to boot from MMC2
    reading u-boot.img
    reading u-boot.img


    U-Boot 2016.05 (Jun 29 2017 - 18:55:08 +0530)

    I2C: ready
    DRAM: 1 GiB
    MMC: OMAP SD/MMC: 0
    *** Warning - bad CRC, using default environment
    Net: <ethaddr> not set. Reading from E-fuse
    cpsw
    Hit any key to stop autoboot: 0
    DM38x-CSK# print
    arch=arm
    baudrate=115200
    board=dm38x
    board_name=dm38x
    bootcmd=csk_ff_init 1;run mmcboot;run nandboot;
    bootdelay=1
    bootfile=uImage
    console=ttyS0,115200n8
    cpu=armv7
    ethact=cpsw
    ethaddr=7c:66:9d:f8:bb:72
    fdt_high=0x84500000
    fdtcontroladdr=bfe80c98
    fdtfile=dm38x-csk.dtb
    loadaddr=0x82000000
    loaddtbaddr=0x84000000
    loaddtbimage=fatload mmc ${mmcdev} ${loaddtbaddr} ${fdtfile}
    loaduimage=fatload mmc ${mmcdev} ${loadaddr} ${bootfile}
    mem=80M
    mmcargs=setenv bootargs console=${console} root=${mmcroot} mem=${mem} vram=${vram} ${optargs}
    mmcboot=mmc dev ${mmcdev}; if mmc rescan; then echo SD/MMC found on device ${mmcdev};echo Booting from mmc ...; run mmcargs; if run l;
    mmcdev=0
    mmcroot=/dev/mmcblk0p2 rootwait rw
    optargs=cmemk.phys_start=0x85000000 cmemk.phys_end=0x89000000 cmemk.allowOverlap=1 notifyk.vpssm3_sva=0xBFD00000 earlyprintk
    soc=am33xx
    stderr=serial
    stdin=serial
    stdout=serial
    vendor=ti
    ver=U-Boot 2016.05 (Jun 29 2017 - 18:55:08 +0530)
    vram=4M

    Environment size: 1093/131068 bytes
    DM38x-CSK#


    Please have a look at this..
  • Nithin Dominic said:
    U-Boot 2016.05 (Jun 29 2017 - 18:55:08 +0530)

    I2C: ready
    DRAM: 1 GiB
    MMC: OMAP SD/MMC: 0
    *** Warning - bad CRC, using default environment
    Net: <ethaddr> not set. Reading from E-fuse
    cpsw
    Hit any key to stop autoboot: 0
    DM38x-CSK# print

    What I see in your log is that you just boot up and print the environments. But you do not set the static IP settings. I would suggest you to check again my previous posts regarding setting static IP and save that setting afterwards. Printing the environments should be the last step, not the first step and not the only one step.

    Regards,
    Pavel

  • Hi Pavel,

    I'm sorry for the last post, it was my log without any changes made. My intention was to bring the boot arguments in it to your notice.

    The changes I made are as follows;

    setenv ipaddr 192.168.1.125
    setenv serverip 192.168.1.100
    setenv gatewayip 192.168.1.1
    setenv netmask 255.255.255.0
    setenv hostname ipnc

    setenv ip \${ipaddr}:\${serverip}:\${gatewayip}:\${netmask}:\${hostname}::off

    setenv mmcargs setenv bootargs console=\${console} root=\${mmcroot} mem=\${mem} vram=\${vram} \${optargs} ip=\${ip}

    I saved by saveenv, these are the print results after that;

    DM38x-CSK# print
    arch=arm
    baudrate=115200
    board=dm38x
    board_name=dm38x
    bootcmd=csk_ff_init 1;run mmcboot;run nandboot;
    bootdelay=1
    bootfile=uImage
    console=ttyS0,115200n8
    cpu=armv7
    ethact=cpsw
    ethaddr=7c:66:9d:f8:bb:72                                                          
    fdt_high=0x84500000                                                                
    fdtcontroladdr=bfe80c98                                                            
    fdtfile=dm38x-csk.dtb                                                              
    gatewayip=192.168.1.1                                                              
    hostname=ipnc
    ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}::off
    ipaddr=192.168.1.125
    loadaddr=0x82000000
    loaddtbaddr=0x84000000
    loaddtbimage=fatload mmc ${mmcdev} ${loaddtbaddr} ${fdtfile}
    loaduimage=fatload mmc ${mmcdev} ${loadaddr} ${bootfile}
    mem=80M
    mmcargs=setenv bootargs console=${console} root=${mmcroot} mem=${mem} vram=${vram} ${optargs} ip=${ip}
    mmcboot=mmc dev ${mmcdev}; if mmc rescan; then echo SD/MMC found on device ${mmcdev};echo Booting from mmc ...; run mmcargs; if run l;
    mmcdev=0
    mmcroot=/dev/mmcblk0p2 rootwait rw
    netmask=255.255.255.0
    optargs=cmemk.phys_start=0x85000000 cmemk.phys_end=0x89000000 cmemk.allowOverlap=1 notifyk.vpssm3_sva=0xBFD00000 earlyprintk
    serverip=192.168.1.100
    soc=am33xx
    stderr=serial
    stdin=serial
    stdout=serial
    vendor=ti
    ver=U-Boot 2016.05 (Jun 29 2017 - 18:55:08 +0530)
    vram=4M

    Environment size: 1282/131068 bytes
    DM38x-CSK#

    The IP is same after boot, not changing to new IP. Please point out where I'm going wrong

    Thanks.

  • Nithin Dominic said:
    setenv ip \${ipaddr}:\${serverip}:\${gatewayip}:\${netmask}:\${hostname}::off

    Let start with this one. What is this? Where exactly you have found instructions to set such environment as "ip"?

    For settings Host machine (desktop PC, notebook) IP address we use "setenv serverip", for setting DM38x board IP address we use "setenv ipaddr".

    Regards,
    Pavel

  • initially i tried like this;

    setenv ipaddr 192.168.1.125
    setenv serverip 192.168.1.100
    setenv gatewayip 192.168.1.1
    setenv netmask 255.255.255.0
    setenv hostname ipnc

    setenv mmcargs setenv bootargs console=\${console} root=\${mmcroot} mem=\${mem} vram=\${vram} \${optargs} ip=\${ipaddr}:\${serverip}:\${gatewayip}:\${netmask}:\${hostname}::off

    This was not working..
  • Hi ,

    optargs might have to be the last one in mmcargs , also please confirm in your boot logs whatever you set being reflected or not (log will be very early immediately after u-boot prints). Or even "cat /proc/cmdline"


    In latest u-boot recommended way is to modify your optargs than modifying mmcargs itself , so please add your ipargs at end of current optargs itself . (setenv optargs {current_optargs} {your_ipargs})

    One additional thing disable usecase start script and also networkd service (systemctl disable systemd-networkd.service)

    Thanks & Regards,

    Vishwanath Patil

  • Nithin Dominic said:
    setenv mmcargs setenv bootargs console=\${console} root=\${mmcroot} mem=\${mem} vram=\${vram} \${optargs} ip=\${ipaddr}:\${serverip}:\${gatewayip}:\${netmask}:\${hostname}::off

    Where you have found that? U-Boot# setenv mmcargs setenv bootargs ...

    I do not think this is valid.

    Regards,
    Pavel

  • hi pavel,
    That was framed by me..
    Can you help with the valid ones.

    Thanks
  • Nithin,

    Try the below sequence:

    U-Boot#setenv ipaddr 192.168.1.125
    U-Boot#setenv serverip 192.168.1.100
    U-Boot#setenv gatewayip 192.168.1.1
    U-Boot#setenv netmask 255.255.255.0
    U-Boot#setenv hostname ipnc

    U-Boot#setenv bootargs 'console=ttyO0,115200n8 root=/dev/nfs nfsroot=192.168.1.100:<path>,nolock eth=<eth addr> ip=192.168.1.125 earlyprintk'

    U-Boot# saveenv

    U-Boot# print

    U-Boot# boot

    Regards,
    Pavel
  • These values were already set before anychanges:

    mmcargs=setenv bootargs console=${console} root=${mmcroot} mem=${mem} vram=${vram} ${optargs}

    console=ttyS0,115200n8
    mmcroot=/dev/mmcblk0p2 rootwait rw
    mem=80M
    vram=4M
    optargs=cmemk.phys_start=0x85000000 cmemk.phys_end=0x89000000 cmemk.allowOverlap=1 notifyk.vpssm3_sva=0xBFD00000 earlyprintk

    As you suggested, I tired: setenv bootargs 'console=ttyO0,115200n8 root=/dev/nfs nfsroot=192.168.1.100:<path>,nolock eth=<eth addr> ip=192.168.1.125 earlyprintk'

    It was not working.. Like stopping in between boot. I modified the console to ttyS0,115200n8, root to /dev/mmcblk0p2 rootwait rw and Cleared mmcargs present. Improvement was there but it Was not booting fully.

    At present I'm trying with;

    setenv bootargs console=ttyS0,115200n8 root=/dev/mmcblk0p2 rootwait rw mem=80M vram=4M cmemk.phys_start=0x85000000 cmemk.phys_end=0x89000000 cmemk.allowOverlap=1 notifyk.vpssm3_sva=0xBFD00000,nolock eth=<ethaddr> ip=192.168.1.125 earlyprintk

    This boots till step before RTSP Links, not getting links with new IP
  • Nithin,

    Nithin Dominic said:
    mmcargs=setenv bootargs console=${console} root=${mmcroot} mem=${mem} vram=${vram} ${optargs}

    Nithin Dominic said:
    mmcroot=/dev/mmcblk0p2 rootwait rw

    Nithin Dominic said:
    optargs=cmemk.phys_start=0x85000000 cmemk.phys_end=0x89000000 cmemk.allowOverlap=1 notifyk.vpssm3_sva=0xBFD00000 earlyprintk

    From where you find instructions to use mmcargs, mmcroot and optargs? Or these were again "framed by you"?

    Nithin Dominic said:
    As you suggested, I tired: setenv bootargs 'console=ttyO0,115200n8 root=/dev/nfs nfsroot=192.168.1.100:<path>,nolock eth=<eth addr> ip=192.168.1.125 earlyprintk'

    It was not working.. Like stopping in between boot. I modified the console to ttyS0,115200n8, root to /dev/mmcblk0p2 rootwait rw and Cleared mmcargs present. Improvement was there but it Was not booting fully.

    At present I'm trying with;

    setenv bootargs console=ttyS0,115200n8 root=/dev/mmcblk0p2 rootwait rw mem=80M vram=4M cmemk.phys_start=0x85000000 cmemk.phys_end=0x89000000 cmemk.allowOverlap=1 notifyk.vpssm3_sva=0xBFD00000,nolock eth=<ethaddr> ip=192.168.1.125 earlyprintk

    This boots till step before RTSP Links, not getting links with new IP

    Can you provide full boot up console log?

    Regards,
    Pavel

  • Hi Pavel,

    When the SD card is flashed after building and used for booting, If u go to the u-boot and check print; Default Instructions are shown below with nothing  added by me;

    I2C:ready
    DRAM:  1 GiB
    MMC:   OMAP SD/MMC: 0
    *** Warning - bad CRC, using default environment
    Net:   <ethaddr> not set. Reading from E-fuse
    cpsw
    Hit any key to stop autoboot:  0
    DM38x-CSK# print
    arch=arm
    baudrate=115200
    board=dm38x
    board_name=dm38x
    bootcmd=csk_ff_init 1;run mmcboot;run nandboot;
    bootdelay=1
    bootfile=uImage
    console=ttyS0,115200n8
    cpu=armv7
    ethact=cpsw
    ethaddr=7c:66:9d:f8:bb:72
    fdt_high=0x84500000
    fdtcontroladdr=bfe80c98
    fdtfile=dm38x-csk.dtb
    loadaddr=0x82000000
    loaddtbaddr=0x84000000
    loaddtbimage=fatload mmc ${mmcdev} ${loaddtbaddr} ${fdtfile}
    loaduimage=fatload mmc ${mmcdev} ${loadaddr} ${bootfile}
    mem=80M
    mmcargs=setenv bootargs console=${console} root=${mmcroot} mem=${mem} vram=${vram} ${optargs}
    mmcboot=mmc dev ${mmcdev}; if mmc rescan; then echo SD/MMC found on device ${mmcdev};echo Booting from mmc ...; run mmcargs; if run l;
    mmcdev=0
    mmcroot=/dev/mmcblk0p2 rootwait rw
    optargs=cmemk.phys_start=0x85000000 cmemk.phys_end=0x89000000 cmemk.allowOverlap=1 notifyk.vpssm3_sva=0xBFD00000 earlyprintk
    soc=am33xx
    stderr=serial
    stdin=serial
    stdout=serial
    vendor=ti
    ver=U-Boot 2016.05 (Jul 03 2017 - 10:55:48 +0530)
    vram=4M

    Environment size: 1093/131068 bytes
    DM38x-CSK#

    ok, from here I got the mmcargs, mmc root, optargs etc.

    If I boot with these default instructions with DHCP Connected I get IP address 192.168.1.6

    If I boot with these default instructions without DHCP Connected I get static board IP address 192.168.1.224

    Now I added bootargs as u suggested, but still it was generating same IPs. I felt the mmcargs defined is overwriting the bootargs I added.

    So I cleared mmcargs using setenv mmcargs

    then the boot log is as follows;

    I2C:ready
    DRAM:  1 GiB
    MMC:   OMAP SD/MMC: 0        
    Net:   cpsw
    Hit any key to stop autoboot:  0
    switch to partitions #0, OK
    mmc0 is current device
    SD/MMC found on device 0
    Booting from mmc ...
    ## Error: "mmcargs" not defined
    reading uImage
    2662672 bytes read in 299 ms (8.5 MiB/s)
    reading dm38x-csk.dtb
    58698 bytes read in 13 ms (4.3 MiB/s)
    ## Booting kernel from Legacy Image at 82000000 ...
       Image Name:   Linux-4.4.12
       Image Type:   ARM Linux Kernel Image (uncompressed)
       Data Size:    2662608 Bytes = 2.5 MiB
       Load Address: 80008000
       Entry Point:  80008000
       Verifying Checksum ... OK
    ## Flattened Device Tree blob at 84000000
       Booting using the fdt blob at 0x84000000
       Loading Kernel Image ... OK
       Loading Device Tree to 844ee000, end 844ff549 ... OK

    Starting kernel ...

    [    0.000000] Booting Linux on physical CPU 0x0
    [    0.000000] Initializing cgroup subsys cpu
    [    0.000000] Initializing cgroup subsys cpuacct
    [    0.000000] Linux version 4.4.12 (test@test-rtdr) (gcc version 5.3.1 20160113 (Linaro GCC 5.3-2016.02) ) #2 Mon Jul 3 12:42:44 IST7
    [    0.000000] CPU: ARMv7 Processor [413fc082] revision 2 (ARMv7), cr=10c5387d
    [    0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
    [    0.000000] Machine model: DM38X CSK
    [    0.000000] bootconsole [earlycon0] enabled
    [    0.000000] omap_barrier_reserve_memblock():Reserving DRAM area @ addr = 0xbfe00000          size = 1048576 Bytes
    [    0.000000] cma: Reserved 24 MiB at 0xbe400000
    [    0.000000] Memory policy: Data cache writeback
    [    0.000000] TI81XX: Map 0xbfe00000 to 0xfe500000 for dram barrier
    [    0.000000] TI81XX: Map 0x40300000 to 0xfe600000 for sram barrier
    [    0.000000] CPU: All CPU(s) started in SVC mode.
    [    0.000000] TI814X ES1.0 (iva neon )
    [    0.000000] powerdomain: gem_pwrdm: voltagedomain dsp does not exist
    [    0.000000] powerdomain: ivahd_pwrdm: voltagedomain iva does not exist
    [    0.000000] powerdomain: hdvpss_pwrdm: voltagedomain dsp does not exist
    [    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 259904
    [    0.000000] Kernel command line: console=ttyO0,115200n8 root=/dev/nfs nfsroot=192.168.1.100:<path>,nolock eth=<eth addr> ip=192.16k
    [    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: 1004204K/1046528K available (4911K kernel code, 260K rwdata, 1704K rodata, 272K init, 241K bss, 17748K reserve)
    [    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 - 0xc067dfa4   (6616 kB)
    [    0.000000]       .init : 0xc067e000 - 0xc06c2000   ( 272 kB)
    [    0.000000]       .data : 0xc06c2000 - 0xc0703308   ( 261 kB)
    [    0.000000]        .bss : 0xc0703308 - 0xc073f718   ( 242 kB)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    [    0.000000] NR_IRQS:16 nr_irqs:16 16
    [    0.000000] IRQ: Found an INTC at 0xfa200000 (revision 5.0) with 128 interrupts
    [    0.000000] OMAP clockevent source: timer2 at 20000000 Hz
    [    0.000015] sched_clock: 32 bits at 20MHz, resolution 50ns, wraps every 107374182375ns
    [    0.008263] clocksource: timer1: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 95563022313 ns
    [    0.017839] OMAP clocksource: timer1 at 20000000 Hz
    [    0.023133] Console: colour dummy device 80x30
    [    0.027825] WARNING: Your 'console=ttyO0' has been replaced by 'ttyS0'
    [    0.034635] This ensures that you still see kernel messages. Please
    [    0.041169] update your kernel commandline.
    [    0.045578] Calibrating delay loop... 597.60 BogoMIPS (lpj=2988032)
    [    0.106916] pid_max: default: 32768 minimum: 301
    [    0.111873] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
    [    0.118784] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
    [    0.126843] Initializing cgroup subsys io
    [    0.131075] Initializing cgroup subsys memory
    [    0.135701] Initializing cgroup subsys devices
    [    0.140375] Initializing cgroup subsys freezer
    [    0.145055] Initializing cgroup subsys pids
    [    0.149471] CPU: Testing write buffer coherency: ok
    [    0.154918] Setting up static identity map for 0x800082c0 - 0x80008318
    [    0.162723] devtmpfs: initialized
    [    0.188691] VFP support v0.3: implementor 41 architecture 3 part 30 variant c rev 3
    [    0.237024] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
    [    0.249146] pinctrl core: initialized pinctrl subsystem
    [    0.255955] NET: Registered protocol family 16
    [    0.262104] DMA: preallocated 256 KiB pool for atomic coherent allocations
    [    0.274995] OMAP GPIO hardware version 0.1
    [    0.287599] omap-gpmc 50000000.gpmc: could not find pctldev for node /ocp/l4ls@48000000/control@140000/pinmux@800/nandflash_pins_se
    [    0.321167] edma 49000000.edma: TI EDMA DMA engine driver
    [    0.329446] omap_i2c 48028000.i2c: could not find pctldev for node /ocp/l4ls@48000000/control@140000/pinmux@800/pinmux_i2c0_pins, e
    [    0.343049] omap_i2c 4802a000.i2c: could not find pctldev for node /ocp/l4ls@48000000/control@140000/pinmux@800/pinmux_i2c1_pins, e
    [    0.356722] media: Linux media interface: v0.10
    [    0.361537] Linux video capture interface: v2.00
    [    0.366447] pps_core: LinuxPPS API ver. 1 registered
    [    0.371641] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    [    0.381169] PTP clock support registered
    [    0.385310] EDAC MC: Ver: 3.0.0
    [    0.389365] Advanced Linux Sound Architecture Driver Initialized.
    [    0.396714] clocksource: Switched to clocksource timer1
    [    0.414074] NET: Registered protocol family 2
    [    0.419447] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
    [    0.426932] TCP bind hash table entries: 8192 (order: 3, 32768 bytes)
    [    0.433745] TCP: Hash tables configured (established 8192 bind 8192)
    [    0.440495] UDP hash table entries: 512 (order: 1, 8192 bytes)
    [    0.446609] UDP-Lite hash table entries: 512 (order: 1, 8192 bytes)
    [    0.453338] NET: Registered protocol family 1
    [    0.458289] RPC: Registered named UNIX socket transport module.
    [    0.464470] RPC: Registered udp transport module.
    [    0.469428] RPC: Registered tcp transport module.
    [    0.474355] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.482360] omap-iommu 55082000.mmu: 55082000.mmu registered
    [    0.489462] futex hash table entries: 256 (order: -1, 3072 bytes)
    [    0.506453] NFS: Registering the id_resolver key type
    [    0.511849] Key type id_resolver registered
    [    0.516241] Key type id_legacy registered
    [    0.522175] bounce: pool size: 64 pages
    [    0.526225] io scheduler noop registered
    [    0.530407] io scheduler deadline registered
    [    0.535104] io scheduler cfq registered (default)
    [    0.541411] pinctrl-single 48140800.pinmux: 270 pins at pa fa140800 size 1080
    [    0.622441] Serial: 8250/16550 driver, 10 ports, IRQ sharing disabled
    [    0.633466] 48020000.uart: ttyS0 at MMIO 0x48020000 (irq = 21, base_baud = 3000000) is a 8250
    [    0.642453] console [ttyS0] enabled
    [    0.642453] console [ttyS0] enabled
    [    0.649654] bootconsole [earlycon0] disabled
    [    0.649654] bootconsole [earlycon0] disabled
    [    0.659464]   Reference Linux version 4.4.12
    [    0.663761]   File /home/test/ti/ipnc_rdk-3.9.0/Source/ti_tools/linuxutils_3_23_00_01/packages/ti/sdo/linuxutils/cmem/src/module/cc
    [    0.676335] no physical memory specified, continuing with no memory allocation capability...
    [    0.684850] cmemk initialized
    [    0.695117] loop: module loaded
    [    0.756771] davinci_mdio 4a100800.mdio: davinci mdio revision 1.6
    [    0.762907] libphy: 4a100800.mdio: probed
    [    0.767785] davinci_mdio 4a100800.mdio: phy[25]: device 4a100800.mdio:19, driver TI DP83867
    [    0.776777] cpsw 4a100000.ethernet: Detected MACID = 7c:66:9d:f8:bb:72
    [    0.786887] 47401300.usb-phy supply vcc not found, using dummy regulator
    [    0.816922] mousedev: PS/2 mouse device common for all mice
    [    0.823433] omap_rtc 480c0000.rtc: rtc core: registered 480c0000.rtc as rtc0
    [    0.830915] i2c /dev entries driver
    [    0.835392] omap_wdt: OMAP Watchdog Timer Rev 0x00: initial timeout 60 sec
    [    0.842525] sdhci: Secure Digital Host Controller Interface driver
    [    0.848757] sdhci: Copyright(c) Pierre Ossman
    [    0.972203] omap_hsmmc 48060000.mmc: card claims to support voltages below defined range
    [    0.990986] mmc0: queuing unknown CIS tuple 0x91 (3 bytes)
    [    0.997343] mmc0: new high speed SDIO card at address 0001
    [    1.006978] Synopsys Designware Multimedia Card Interface Driver
    [    1.013487] sdhci-pltfm: SDHCI platform and OF driver helper
    [    1.020485] notify_shm_drv: no DSP present (MULTIPROC_INVALIDID)
    [    1.029109] davinci_evm sound: ASoC: CODEC DAI tlv320aic3x-hifi not registered
    [    1.036386] davinci_evm sound: snd_soc_register_card failed (-517)
    [    1.043862] NET: Registered protocol family 10
    [    1.050732] sit: IPv6 over IPv4 tunneling driver
    [    1.056214] NET: Registered protocol family 17
    [    1.060867] Key type dns_resolver registered
    [    1.065350] omap_voltage_late_init: Could not get sys clk.
    [    1.071263] Power Management for TI81XX.
    [    1.080548] omap-gpmc 50000000.gpmc: GPMC revision 6.0
    [    1.085733] gpmc_mem_init: disabling cs 0 mapped at 0x0-0x1000000
    [    1.093558] nand: device found, Manufacturer ID: 0x2c, Chip ID: 0xca
    [    1.100007] nand: Micron MT29F2G16ABAEAWP
    [    1.104040] nand: 256 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64
    [    1.111679] nand: using OMAP_ECC_BCH8_CODE_HW ECC scheme
    [    1.117111] 8 ofpart partitions found on MTD device 8000000.nand
    [    1.123145] Creating 8 MTD partitions on "8000000.nand":
    [    1.128507] 0x000000000000-0x000000020000 : "NAND.SPL"
    [    1.138310] 0x000000020000-0x000000420000 : "NAND.u-boot"
    [    1.146488] 0x000000420000-0x000000440000 : "NAND.u-boot-env"
    [    1.153594] 0x000000440000-0x000000a40000 : "NAND.kernel"
    [    1.162510] 0x000000a40000-0x00000ca40000 : "NAND.file-system"
    [    1.208561] mmc1: host does not support reading read-only switch, assuming write-enable
    [    1.226788] mmc1: new high speed SDHC card at address aaaa
    [    1.246767] mmcblk0: mmc1:aaaa SS08G 7.40 GiB
    [    1.256847]  mmcblk0: p1 p2
    [    1.262760] 0x00000ca40000-0x00000ca80000 : "NAND.u-boot-spl-os"
    [    1.270161] 0x00000ca80000-0x00000d680000 : "NAND.data"
    [    1.280993] 0x00000d680000-0x000010000000 : "NAND.reserved"
    [    1.343764] tps65910-rtc tps65910-rtc: rtc core: registered tps65910-rtc as rtc1
    [    1.351470] omap_i2c 48028000.i2c: bus 0 rev0.11 at 400 kHz
    [    1.358984] omap_i2c 4802a000.i2c: bus 1 rev0.11 at 100 kHz
    [    1.365789] davinci_evm sound: ASoC: DAPM unknown pin MONO_LOUT
    [    1.372929] davinci_evm sound: tlv320aic3x-hifi <-> 4803c000.mcasp mapping ok
    [    1.382352] omap_rtc 480c0000.rtc: setting system clock to 2000-01-01 00:00:00 UTC (946684800)
    [    1.404480] net eth0: initializing cpsw version 1.10 (0)
    [    1.409918] net eth0: initialized cpsw ale version 1.3
    [    1.418410] net eth0: phy found : id is : 0x2000a231
    [    1.423450] libphy: PHY  not found
    [    1.426895] net eth0: phy "" not found on slave 1, err -19
    [    1.438989] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
    [    4.417660] cpsw 4a100000.ethernet eth0: Link is Up - 100Mbps/Full - flow control rx/tx
    [    4.436763] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
    [    4.456739] IP-Config: Guessing netmask 255.255.255.0
    [    4.461957] IP-Config: Complete:
    [    4.465212]      device=eth0, hwaddr=7c:66:9d:f8:bb:72, ipaddr=192.168.1.125, mask=255.255.255.0, gw=255.255.255.255
    [    4.475904]      host=192.168.1.125, domain=, nis-domain=(none)
    [    4.481891]      bootserver=255.255.255.255, rootserver=192.168.1.100, rootpath=
    [    4.489438] wlan-en-regulator: disabling
    [    4.493707] ALSA device list:
    [    4.496691]   #0: TI81XX-CSK

    [  184.549734] random: nonblocking pool is initialized
    [  309.976870] VFS: Unable to mount root fs via NFS, trying floppy.
    [  309.983340] VFS: Cannot open root device "nfs" or unknown-block(2,0): error -6
    [  309.990636] Please append a correct "root=" boot option; here are the available partitions:
    [  309.999059] 1f00             128 mtdblock0  (driver?)
    [  310.004148] 1f01            4096 mtdblock1  (driver?)
    [  310.009248] 1f02             128 mtdblock2  (driver?)
    [  310.014331] 1f03            6144 mtdblock3  (driver?)
    [  310.019428] b300         7761920 mmcblk0  driver: mmcblk
    [  310.024775]   b301           72261 mmcblk0p1 00000000-01
    [  310.030142]   b302         7679070 mmcblk0p2 00000000-02
    [  310.035485] 1f04          196608 mtdblock4  (driver?)
    [  310.040585] 1f05             256 mtdblock5  (driver?)
    [  310.045667] 1f06           12288 mtdblock6  (driver?)
    [  310.050764] 1f07           42496 mtdblock7  (driver?)
    [  310.055846] Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(2,0)
    [  310.064152] ---[ end Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(2,0)

    It stoped booting here.

    I felt like missing root, wrong console etc so modified the bootargs instruction like below;

    setenv bootargs console=ttyS0,115200n8 root=/dev/mmcblk0p2 rootwait rw mem=80M vram=4M  cmemk.phys_start=0x85000000 cmemk.phys_end=0x89000000 cmemk.allowOverlap=1 notifyk.vpssm3_sva=0xBFD00000 ip=192.168.1.125 earlyprintk

    (By including console, root, mem, vram and optargs as in mmcargs instruction)

    For the modified bootargs I'm getting the same static board IP(192.168.1.224), following is the boot log;

    U-Boot SPL 2016.05 (Jul 03 2017 - 12:41:39)
    Trying to boot from MMC2
    reading u-boot.img
    reading u-boot.img


    U-Boot 2016.05 (Jul 03 2017 - 12:41:39 +0530)

    I2C:ready
    DRAM:  1 GiB
    MMC:   OMAP SD/MMC: 0    
    Net:   cpsw
    Hit any key to stop autoboot:  1 0
    switch to partitions #0, OK
    mmc0 is current device
    SD/MMC found on device 0
    Booting from mmc ...
    ## Error: "mmcargs" not defined
    reading uImage
    2662672 bytes read in 299 ms (8.5 MiB/s)
    reading dm38x-csk.dtb
    58698 bytes read in 12 ms (4.7 MiB/s)
    ## Booting kernel from Legacy Image at 82000000 ...
       Image Name:   Linux-4.4.12
       Image Type:   ARM Linux Kernel Image (uncompressed)
       Data Size:    2662608 Bytes = 2.5 MiB
       Load Address: 80008000
       Entry Point:  80008000
       Verifying Checksum ... OK
    ## Flattened Device Tree blob at 84000000
       Booting using the fdt blob at 0x84000000
       Loading Kernel Image ... OK
       Loading Device Tree to 844ee000, end 844ff549 ... OK

    Starting kernel ...

    [    0.000000] Booting Linux on physical CPU 0x0
    [    0.000000] Initializing cgroup subsys cpu
    [    0.000000] Initializing cgroup subsys cpuacct
    [    0.000000] Linux version 4.4.12 (test@test-rtdr) (gcc version 5.3.1 20160113 (Linaro GCC 5.3-2016.02) ) #2 Mon Jul 3 12:42:44 IST 2017
    [    0.000000] CPU: ARMv7 Processor [413fc082] revision 2 (ARMv7), cr=10c5387d
    [    0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
    [    0.000000] Machine model: DM38X CSK
    [    0.000000] bootconsole [earlycon0] enabled
    [    0.000000] omap_barrier_reserve_memblock():Reserving DRAM area @ addr = 0x84e00000         size = 1048576 Bytes
    [    0.000000] cma: Reserved 24 MiB at 0x82c00000
    [    0.000000] Memory policy: Data cache writeback
    [    0.000000] TI81XX: Map 0x84e00000 to 0xfe500000 for dram barrier
    [    0.000000] TI81XX: Map 0x40300000 to 0xfe600000 for sram barrier
    [    0.000000] CPU: All CPU(s) started in SVC mode.
    [    0.000000] TI814X ES1.0 (iva neon )
    [    0.000000] powerdomain: gem_pwrdm: voltagedomain dsp does not exist
    [    0.000000] powerdomain: ivahd_pwrdm: voltagedomain iva does not exist
    [    0.000000] powerdomain: hdvpss_pwrdm: voltagedomain dsp does not exist
    [    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 19788
    [    0.000000] Kernel command line: console=ttyS0,115200n8 root=/dev/mmcblk0p2 rootwait rw mem=80M vram=4M cmemk.phys_start=0x85000000 cmemk.phys_end=0x89000000 cmemk.allowOverlap=1 notifyk.vpssm3_sva=0xBFD00000 earlyprintk ip=192.168.1.125 192.168.1.100 192.168.1.1::off
    [    0.000000] PID hash table entries: 512 (order: -1, 2048 bytes)
    [    0.000000] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)
    [    0.000000] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes)
    [    0.000000] Memory: 46656K/79872K available (4911K kernel code, 260K rwdata, 1704K rodata, 272K init, 241K bss, 8640K reserved, 24576K cma-reserved, 0K highmem)
    [    0.000000] Virtual kernel memory layout:
    [    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
    [    0.000000]     fixmap  : 0xffc00000 - 0xfff00000   (3072 kB)
    [    0.000000]     vmalloc : 0xc5800000 - 0xff800000   ( 928 MB)
    [    0.000000]     lowmem  : 0xc0000000 - 0xc5000000   (  80 MB)
    [    0.000000]     pkmap   : 0xbfe00000 - 0xc0000000   (   2 MB)
    [    0.000000]     modules : 0xbf000000 - 0xbfe00000   (  14 MB)
    [    0.000000]       .text : 0xc0008000 - 0xc067dfa4   (6616 kB)
    [    0.000000]       .init : 0xc067e000 - 0xc06c2000   ( 272 kB)
    [    0.000000]       .data : 0xc06c2000 - 0xc0703308   ( 261 kB)
    [    0.000000]        .bss : 0xc0703308 - 0xc073f718   ( 242 kB)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    [    0.000000] NR_IRQS:16 nr_irqs:16 16
    [    0.000000] IRQ: Found an INTC at 0xfa200000 (revision 5.0) with 128 interrupts
    [    0.000000] OMAP clockevent source: timer2 at 20000000 Hz
    [    0.000017] sched_clock: 32 bits at 20MHz, resolution 50ns, wraps every 107374182375ns
    [    0.008266] clocksource: timer1: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 95563022313 ns
    [    0.017841] OMAP clocksource: timer1 at 20000000 Hz
    [    0.023135] Console: colour dummy device 80x30
    [    0.027834] Calibrating delay loop... 597.60 BogoMIPS (lpj=2988032)
    [    0.086910] pid_max: default: 32768 minimum: 301
    [    0.091861] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes)
    [    0.098772] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes)
    [    0.106811] Initializing cgroup subsys io
    [    0.111044] Initializing cgroup subsys memory
    [    0.115669] Initializing cgroup subsys devices
    [    0.120343] Initializing cgroup subsys freezer
    [    0.125023] Initializing cgroup subsys pids
    [    0.129435] CPU: Testing write buffer coherency: ok
    [    0.134890] Setting up static identity map for 0x800082c0 - 0x80008318
    [    0.142698] devtmpfs: initialized
    [    0.168893] VFP support v0.3: implementor 41 architecture 3 part 30 variant c rev 3
    [    0.217242] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
    [    0.229379] pinctrl core: initialized pinctrl subsystem
    [    0.236173] NET: Registered protocol family 16
    [    0.242469] DMA: preallocated 256 KiB pool for atomic coherent allocations
    [    0.255488] OMAP GPIO hardware version 0.1
    [    0.268106] omap-gpmc 50000000.gpmc: could not find pctldev for node /ocp/l4ls@48000000/control@140000/pinmux@800/nandflash_pins_s0, deferring probe
    [    0.301852] edma 49000000.edma: TI EDMA DMA engine driver
    [    0.310132] omap_i2c 48028000.i2c: could not find pctldev for node /ocp/l4ls@48000000/control@140000/pinmux@800/pinmux_i2c0_pins, deferring probe
    [    0.323736] omap_i2c 4802a000.i2c: could not find pctldev for node /ocp/l4ls@48000000/control@140000/pinmux@800/pinmux_i2c1_pins, deferring probe
    [    0.337408] media: Linux media interface: v0.10
    [    0.342224] Linux video capture interface: v2.00
    [    0.347135] pps_core: LinuxPPS API ver. 1 registered
    [    0.352330] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    [    0.361857] PTP clock support registered
    [    0.365998] EDAC MC: Ver: 3.0.0
    [    0.370052] Advanced Linux Sound Architecture Driver Initialized.
    [    0.377505] clocksource: Switched to clocksource timer1
    [    0.394943] NET: Registered protocol family 2
    [    0.400317] TCP established hash table entries: 1024 (order: 0, 4096 bytes)
    [    0.407632] TCP bind hash table entries: 1024 (order: 0, 4096 bytes)
    [    0.414270] TCP: Hash tables configured (established 1024 bind 1024)
    [    0.420991] UDP hash table entries: 256 (order: 0, 4096 bytes)
    [    0.427096] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
    [    0.433815] NET: Registered protocol family 1
    [    0.438762] RPC: Registered named UNIX socket transport module.
    [    0.444945] RPC: Registered udp transport module.
    [    0.449902] RPC: Registered tcp transport module.
    [    0.454828] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.462941] omap-iommu 55082000.mmu: 55082000.mmu registered
    [    0.470051] futex hash table entries: 256 (order: -1, 3072 bytes)
    [    0.487024] NFS: Registering the id_resolver key type
    [    0.492447] Key type id_resolver registered
    [    0.496839] Key type id_legacy registered
    [    0.502737] io scheduler noop registered
    [    0.506873] io scheduler deadline registered
    [    0.511625] io scheduler cfq registered (default)
    [    0.517964] pinctrl-single 48140800.pinmux: 270 pins at pa fa140800 size 1080
    [    0.599061] Serial: 8250/16550 driver, 10 ports, IRQ sharing disabled
    [    0.610072] console [ttyS0] disabled
    [    0.613888] 48020000.uart: ttyS0 at MMIO 0x48020000 (irq = 21, base_baud = 3000000) is a 8250
    [    0.622848] console [ttyS0] enabled
    [    0.622848] console [ttyS0] enabled
    [    0.630041] bootconsole [earlycon0] disabled
    [    0.630041] bootconsole [earlycon0] disabled
    [    0.639853]   Reference Linux version 4.4.12
    [    0.644149]   File /home/test/ti/ipnc_rdk-3.9.0/Source/ti_tools/linuxutils_3_23_00_01/packages/ti/sdo/linuxutils/cmem/src/module/cmemk.c
    [    0.658877] allocated heap buffer 0xc8000000 of size 0x4000000
    [    0.664754] cmemk initialized
    [    0.675058] loop: module loaded
    [    0.737569] davinci_mdio 4a100800.mdio: davinci mdio revision 1.6
    [    0.743705] libphy: 4a100800.mdio: probed
    [    0.748592] davinci_mdio 4a100800.mdio: phy[25]: device 4a100800.mdio:19, driver TI DP83867
    [    0.757584] cpsw 4a100000.ethernet: Detected MACID = 7c:66:9d:f8:bb:72
    [    0.767697] 47401300.usb-phy supply vcc not found, using dummy regulator
    [    0.797782] mousedev: PS/2 mouse device common for all mice
    [    0.804298] omap_rtc 480c0000.rtc: rtc core: registered 480c0000.rtc as rtc0
    [    0.811773] i2c /dev entries driver
    [    0.816237] omap_wdt: OMAP Watchdog Timer Rev 0x00: initial timeout 60 sec
    [    0.823368] sdhci: Secure Digital Host Controller Interface driver
    [    0.829604] sdhci: Copyright(c) Pierre Ossman
    [    0.953011] omap_hsmmc 48060000.mmc: card claims to support voltages below defined range
    [    0.972024] mmc0: queuing unknown CIS tuple 0x91 (3 bytes)
    [    0.978382] mmc0: new high speed SDIO card at address 0001
    [    0.987772] Synopsys Designware Multimedia Card Interface Driver
    [    0.994275] sdhci-pltfm: SDHCI platform and OF driver helper
    [    1.001276] notify_shm_drv: no DSP present (MULTIPROC_INVALIDID)
    [    1.007434] notify_init : notify drivercreated  for  remote proc id 1 at physical Address 0xbfd00000
    [    1.019178] davinci_evm sound: ASoC: CODEC DAI tlv320aic3x-hifi not registered
    [    1.026453] davinci_evm sound: snd_soc_register_card failed (-517)
    [    1.033919] NET: Registered protocol family 10
    [    1.040783] sit: IPv6 over IPv4 tunneling driver
    [    1.046271] NET: Registered protocol family 17
    [    1.050927] Key type dns_resolver registered
    [    1.055514] omap_voltage_late_init: Could not get sys clk.
    [    1.061424] Power Management for TI81XX.
    [    1.070605] omap-gpmc 50000000.gpmc: GPMC revision 6.0
    [    1.075790] gpmc_mem_init: disabling cs 0 mapped at 0x0-0x1000000
    [    1.083677] nand: device found, Manufacturer ID: 0x2c, Chip ID: 0xca
    [    1.090112] nand: Micron MT29F2G16ABAEAWP
    [    1.094146] nand: 256 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64
    [    1.101782] nand: using OMAP_ECC_BCH8_CODE_HW ECC scheme
    [    1.107198] 8 ofpart partitions found on MTD device 8000000.nand
    [    1.113254] Creating 8 MTD partitions on "8000000.nand":
    [    1.118611] 0x000000000000-0x000000020000 : "NAND.SPL"
    [    1.128399] 0x000000020000-0x000000420000 : "NAND.u-boot"
    [    1.136610] 0x000000420000-0x000000440000 : "NAND.u-boot-env"
    [    1.143731] 0x000000440000-0x000000a40000 : "NAND.kernel"
    [    1.152667] 0x000000a40000-0x00000ca40000 : "NAND.file-system"
    [    1.199362] mmc1: host does not support reading read-only switch, assuming write-enable
    [    1.217582] mmc1: new high speed SDHC card at address aaaa
    [    1.237556] mmcblk0: mmc1:aaaa SS08G 7.40 GiB
    [    1.247437]  mmcblk0: p1 p2
    [    1.252926] 0x00000ca40000-0x00000ca80000 : "NAND.u-boot-spl-os"
    [    1.260324] 0x00000ca80000-0x00000d680000 : "NAND.data"
    [    1.271159] 0x00000d680000-0x000010000000 : "NAND.reserved"
    [    1.334583] tps65910-rtc tps65910-rtc: rtc core: registered tps65910-rtc as rtc1
    [    1.342293] omap_i2c 48028000.i2c: bus 0 rev0.11 at 400 kHz
    [    1.349824] omap_i2c 4802a000.i2c: bus 1 rev0.11 at 100 kHz
    [    1.356625] davinci_evm sound: ASoC: DAPM unknown pin MONO_LOUT
    [    1.363699] davinci_evm sound: tlv320aic3x-hifi <-> 4803c000.mcasp mapping ok
    [    1.373117] omap_rtc 480c0000.rtc: setting system clock to 2000-01-01 00:00:01 UTC (946684801)
    [    1.395248] net eth0: initializing cpsw version 1.10 (0)
    [    1.400687] net eth0: initialized cpsw ale version 1.3
    [    1.409157] net eth0: phy found : id is : 0x2000a231
    [    1.414198] libphy: PHY  not found
    [    1.417645] net eth0: phy "" not found on slave 1, err -19
    [    1.429739] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
    [    4.408408] cpsw 4a100000.ethernet eth0: Link is Up - 100Mbps/Full - flow control rx/tx
    [    4.427550] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
    [    4.447531] IP-Config: Guessing netmask 255.255.255.0
    [    4.452737] IP-Config: Complete:
    [    4.455991]      device=eth0, hwaddr=7c:66:9d:f8:bb:72, ipaddr=192.168.1.125, mask=255.255.255.0, gw=255.255.255.255
    [    4.466685]      host=192.168.1.125, domain=, nis-domain=(none)
    [    4.472674]      bootserver=255.255.255.255, rootserver=255.255.255.255, rootpath=
    [    4.480409] wlan-en-regulator: disabling
    [    4.484678] ALSA device list:
    [    4.487699]   #0: TI81XX-CSK
    [    4.495349] EXT4-fs (mmcblk0p2): mounting ext3 file system using the ext4 subsystem
    [    4.652132] EXT4-fs (mmcblk0p2): recovery complete
    [    4.658603] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null)
    [    4.666790] VFS: Mounted root (ext3 filesystem) on device 179:2.
    [    4.683745] devtmpfs: mounted
    [    4.687319] Freeing unused kernel memory: 272K (c067e000 - c06c2000)
    [    4.693732] This architecture does not have kernel memory protection.
    [    4.913548] systemd[1]: System time before build time, advancing clock.
    [    4.936499] random: systemd urandom read with 23 bits of entropy available
    [    4.955061] systemd[1]: systemd 229 running in system mode. (-PAM -AUDIT -SELINUX -IMA -APPARMOR -SMACK +SYSVINIT -UTMP -LIBCRYPTSETUP -GCRYPT +GNUTLS +ACL -XZ -LZ4 -SECCOMP +BLKID -ELFUTILS +KMOD -IDN)
    [    4.973863] systemd[1]: Detected architecture arm.

    Welcome to Arago 2016.05!

    [    5.001904] systemd[1]: Set hostname to <ti81xx>.
    [    5.247894] systemd[1]: Configuration file /etc/systemd/system/ipnc-rdk-usecase.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.378268] systemd[1]: Reached target Swap.
    [  OK  ] Reached target Swap.
    [    5.398401] systemd[1]: Listening on Network Service Netlink Socket.
    [  OK  ] Listening on Network Service Netlink Socket.
    [    5.427927] systemd[1]: Listening on udev Kernel Socket.
    [  OK  ] Listening on udev Kernel Socket.
    [    5.447771] systemd[1]: Reached target Remote File Systems.
    [  OK  ] Reached target Remote File Systems.
    [    5.468061] systemd[1]: Listening on Journal Socket.
    [  OK  ] Listening on Journal Socket.
    [    5.488101] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [  OK  ] Started Dispatch Password Requests to Console Directory Watch.
    [    5.518000] systemd[1]: Listening on udev Control Socket.
    [  OK  ] Listening on udev Control Socket.
    [    5.537767] systemd[1]: Reached target Timers.
    [  OK  ] Reached target Timers.
    [    5.564134] systemd[1]: Created slice System Slice.
    [  OK  ] Created slice System Slice.
    [    5.603220] systemd[1]: Mounting /var/volatile...
             Mounting /var/volatile...
    [    5.651714] systemd[1]: Mounting Temporary Directory...
             Mounting Temporary Directory...
    [    5.683136] systemd[1]: Reached target Slices.
    [  OK  ] Reached target Slices.
    [    5.725494] systemd[1]: Mounting /media/ram...
             Mounting /media/ram...
    [    5.756043] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [  OK  ] Listening on /dev/initctl Compatibility Named Pipe.
    [    5.791712] systemd[1]: Starting udev Coldplug all Devices...
             Starting udev Coldplug all Devices...
    [    5.828360] systemd[1]: Mounting POSIX Message Queue File System...
             Mounting POSIX Message Queue File System...
    [    5.888049] systemd[1]: Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket (/dev/log).
    [    5.909151] systemd[1]: Created slice system-serial\x2dgetty.slice.
    [  OK  ] Created slice system-serial\x2dgetty.slice.
    [    5.928027] systemd[1]: Listening on Syslog Socket.
    [  OK  ] Listening on Syslog Socket.
    [    5.976628] systemd[1]: Starting Journal Service...
             Starting Journal Service...
    [    6.008551] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [  OK  ] Started Forward Password Requests to Wall Directory Watch.
    [    6.037951] systemd[1]: Reached target Paths.
    [  OK  ] Reached target Paths.
    [    6.049193] systemd[1]: Created slice system-getty.slice.
    [  OK  ] Created slice system-getty.slice.
    [    6.096238] systemd[1]: Starting udev Kernel Device Manager...
             Starting udev Kernel Device Manager...
    [    6.141884] systemd[1]: Starting Synchronize System and HW clocks...
             Starting Synchronize System and HW clocks...
    [    6.207079] systemd[1]: Mounted POSIX Message Queue File System.
    [  OK  ] Mounted POSIX Message Queue File System.
    [    6.258386] systemd[1]: Mounted Temporary Directory.
    [  OK  ] Mounted Temporary Directory.
    [    6.278119] systemd[1]: Mounted /var/volatile.
    [  OK  ] Mounted /var/volatile.
    [    6.298056] systemd[1]: Mounted /media/ram.
    [  OK  ] Mounted /media/ram.
    [    6.318549] systemd[1]: Started Journal Service.
    [  OK  ] Started Journal Service.
    [  OK  ] Started udev Kernel Device Manager.
    [  OK  ] Started Synchronize System and HW clocks.
    [  OK  ] Started udev Coldplug all Devices.
    [  OK  ] Found device /dev/ttyS0.
    [  OK  ] Started IPNC RDK use case service.
    [  OK  ] Reached target Local File Systems.
    [  OK  ] Reached target System Initialization.
    [  OK  ] Listening on D-Bus System Message Bus Socket.
    [  OK  ] Reached target Sockets.
    [  OK  ] Reached target Basic System.
    [  OK  ] Started Kernel Logging Service.
    [    7.436077] autorun-usecase.sh[114]: numid=1,iface=MIXER,name='PCM Playback Volume'
    [    7.437883] autorun-usecase.sh[114]:   ; type=INTEGER,access=rw---R--,values=2,min=0,max=127,step=0
    [    7.439294] autorun-usecase.sh[114]:   : values=115,115
             Starting uim-sysfs.service...
    [    7.470918] autorun-usecase.sh[114]:   | dBscale-min=-63.50dB,step=0.50dB,mute=0
    [  OK  ] Started System Logging Service.
    [  OK  ] Started Serial Getty on ttyS0.
    [  OK  ] Started Getty on tty1.
    [    7.570540] autorun-usecase.sh[114]: numid=31,iface=MIXER,name='PGA Capture Volume'
    [  OK  ] Reached target Login Prompts.
    [    7.593304] autorun-usecase.sh[114]:   ; type=INTEGER,access=rw---R--,values=2,min=0,max=119,step=0
    [    7.617252] autorun-usecase.sh[114]:   : values=72,72
    [    7.619920] autorun-usecase.sh[114]:   | dBscale-min=0.00dB,step=0.50dB,mute=0
    [  OK  ] Started D-Bus System Message Bus.
    [    7.668264] autorun-usecase.sh[114]: numid=51,iface=MIXER,name='Right PGA Mixer Mic2R Switch'
    [    7.693025] autorun-usecase.sh[114]:   ; type=BOOLEAN,access=rw------,values=1
    [    7.722175] autorun-usecase.sh[114]:   : values=on
    [    7.776363] autorun-usecase.sh[114]: numid=46,iface=MIXER,name='Left PGA Mixer Mic2L Switch'
    [    7.801964] autorun-usecase.sh[114]:   ; type=BOOLEAN,access=rw------,values=1
    [    7.821949] autorun-usecase.sh[114]:   : values=on
    [    7.849813] autorun-usecase.sh[114]: Mount mtd6 and mtd7 partitions
             Starting Network Service...
    [    7.985625] ubi0: attaching mtd6
    [    8.165338] ubi0: scanning is finished
    [  OK  ] Started Network Service.
    [    8.250726] ubi0: attached mtd6 (name "NAND.data", size 12 MiB)
    [    8.256697] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes
    [    8.263675] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 512
    [    8.270424] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096
    [    8.277417] ubi0: good PEBs: 96, bad PEBs: 0, corrupted PEBs: 0
    [    8.283391] ubi0: user volume: 1, internal volumes: 1, max. volumes count: 128
    [    8.290666] ubi0: max/mean erase counter: 146/88, WL threshold: 4096, image sequence number: 4257597570
    [    8.300117] ubi0: available PEBs: 0, total reserved PEBs: 96, PEBs reserved for bad PEB handling: 40
    [    8.309791] ubi0: background thread "ubi_bgt0d" started, PID 147
    [    8.500765] autorun-usecase.sh[114]: UBI device number 0, total 96 LEBs (12189696 bytes, 11.6 MiB), available 0 LEBs (0 bytes), LEB size 126976 bytes (124.0 KiB)
    [    9.137670] UBIFS (ubi0:0): background thread "ubifs_bgt0_0" started, PID 151
    [    9.209865] UBIFS (ubi0:0): recovery needed
    [    9.399883] UBIFS (ubi0:0): recovery completed
    [    9.404461] UBIFS (ubi0:0): UBIFS: mounted UBI device 0, volume 0, name "ubifs_volume"
    [    9.412478] UBIFS (ubi0:0): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes
    [    9.422461] UBIFS (ubi0:0): FS size: 5332992 bytes (5 MiB, 42 LEBs), journal size 1015809 bytes (0 MiB, 6 LEBs)
    [    9.432611] UBIFS (ubi0:0): reserved for root: 251889 bytes (245 KiB)
    [    9.439107] UBIFS (ubi0:0): media format: w4/r0 (latest is w4/r0), UUID F461BEDD-8567-4496-BC5C-1BA9A14B7A02, small LPT model
    [  OK  ] Reached target Network.
             Starting Network Name Resolution...
    [  OK  ] Started Network Name Resolution.
    [   10.253751] ubi1: attaching mtd7
    [  OK  ] Started uim-sysfs.service.
             Starting telnetd.service...
    [  OK  ] Started telnetd.service.
    [   10.545448] ubi1: scanning is finished
    [   10.575975] ubi1: attached mtd7 (name "NAND.reserved", size 41 MiB)
    [   10.582360] ubi1: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes
    [   10.589301] ubi1: min./max. I/O unit sizes: 2048/2048, sub-page size 512
    [   10.596034] ubi1: VID header offset: 2048 (aligned 2048), data offset: 4096
    [   10.603043] ubi1: good PEBs: 332, bad PEBs: 0, corrupted PEBs: 0
    [   10.609092] ubi1: user volume: 1, internal volumes: 1, max. volumes count: 128
    [   10.616350] ubi1: max/mean erase counter: 10/5, WL threshold: 4096, image sequence number: 2076213917
    [   10.625627] ubi1: available PEBs: 0, total reserved PEBs: 332, PEBs reserved for bad PEB handling: 40
    [   10.639163] ubi1: background thread "ubi_bgt1d" started, PID 168
             Starting thermal-zone-init.service...
    [  OK  ] Started thermal-zone-init.service.
    [   10.720317] autorun-usecase.sh[114]: UBI device number 1, total 332 LEBs (42156032 bytes, 40.2 MiB), available 0 LEBs (0 bytes), LEB size 126976 bytes (124.0 KiB)
    [  OK  ] Reached target Multi-User System.
    [   11.277684] UBIFS (ubi1:0): background thread "ubifs_bgt1_0" started, PID 181
    [   11.302609] UBIFS (ubi1:0): recovery needed
    [   11.335634] UBIFS (ubi1:0): recovery completed
    [   11.340272] UBIFS (ubi1:0): UBIFS: mounted UBI device 1, volume 0, name "ubifs_volume"
    [   11.348268] UBIFS (ubi1:0): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes
    [   11.358249] UBIFS (ubi1:0): FS size: 35299328 bytes (33 MiB, 278 LEBs), journal size 1777664 bytes (1 MiB, 14 LEBs)
    [   11.368747] UBIFS (ubi1:0): reserved for root: 1667274 bytes (1628 KiB)
    [   11.375400] UBIFS (ubi1:0): media format: w4/r0 (latest is w4/r0), UUID 4EA17009-DE44-4BB2-8641-EE0F5F7AC799, small LPT model

    [   11.891048] autorun-usecase.sh[114]: wifi: in STA mode
     _____                    _____           _         _   
    |  _  |___ ___ ___ ___   |  _  |___ ___  |_|___ ___| |_
    |     |  _| .'| . | . |  |   __|  _| . | | | -_|  _|  _|
    |__|__|_| |__,|_  |___|  |__|  |_| |___|_| |___|___|_|  
                  |___|                    |___|            

    Arago Project http://arago-project.org ti81xx ttyS0

    Arago 2016.05 ti81xx ttyS0

    ti81xx login: [   12.593347] cfg80211: World regulatory domain updated:
    [   12.598629] cfg80211:  DFS Master region: unset
    [   12.603009] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
    [   12.612837] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
    [   12.620898] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
    [   12.628956] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)
    [   12.637001] cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (N/A)
    [   12.646544] cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (0 s)
    [   12.656085] cfg80211:   (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)
    [   12.664229] cfg80211:   (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
    [   12.672285] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)
    [   13.400517] wl18xx_driver wl18xx.1.auto: Direct firmware load for ti-connectivity/wl1271-nvs.bin failed with error -2
    [   13.788153] wlcore: wl18xx HW: 183x or 180x, PG 2.2 (ROM 0x11)
    [   13.815339] wlcore: loaded
    [   14.407059] wlcore: PHY firmware version: Rev 8.2.0.0.232
    [   14.510611] wlcore: firmware booted (Rev 8.9.0.0.48)
    [   14.516009] random: nonblocking pool is initialized
    [   14.534167] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [   18.649774] autorun-usecase.sh[114]:     SSID: Not_a_Red_Buffalo
    [   18.651663] autorun-usecase.sh[114]:     SSID: HP-Print-0B-Officejet Pro 8610
    [   18.653065] autorun-usecase.sh[114]:     SSID: HP-Print-07-Deskjet 3540 series
    [   19.016321] <1>SysLink version : 2.21.02.10
    [   19.016321] SysLink module created on Date:Jul  3 2017 Time:11:06:37
    [   19.026994] <1>Trace enabled
    [   19.029923] <1>Trace SetFailureReason enabled
    [   19.118074] autorun-usecase.sh[114]: /dev/mem opened.
    [   19.119791] autorun-usecase.sh[114]:              Phy Addr : 0x48181560 Data : 0x00000002
    [   19.127435] autorun-usecase.sh[114]:              Phy Addr : 0x48180f10 Data : 0x00000000
    [   19.132289] autorun-usecase.sh[114]:              Phy Addr : 0x48180508 Data : 0x00000302
    [   19.134064] autorun-usecase.sh[114]:              Phy Addr : 0x48180520 Data : 0x00000002
    [   19.135558] autorun-usecase.sh[114]:              Phy Addr : 0x48180524 Data : 0x00000002
    [   19.136941] autorun-usecase.sh[114]:              Phy Addr : 0x48180528 Data : 0x00000002
    [   19.138305] autorun-usecase.sh[114]:              Phy Addr : 0x4c0000e4 Data : 0x00170209
    [   19.139834] autorun-usecase.sh[114]:              Phy Addr : 0x4c0000e4 Data : 0x00170209
    [   19.141321] autorun-usecase.sh[114]: DDR IOs RX is shutdown
    [   19.142789] autorun-usecase.sh[114]:              Phy Addr : 0x48180a04 Data : 0x00000000
    [   20.085091] autorun-usecase.sh[114]: /opt/ipnc/autorun-usecase.sh: line 52: kill: (228) - No such process
    [   20.111898] autorun-usecase.sh[114]:  [host]  Setting DMM priority for [HDVICP0 ] to [1] ( 0x4e000634 = 0x00000009 )
    [   20.115340] autorun-usecase.sh[114]:  [host]  Setting L3 bandwidth regulator for [ISS     ] to [press=[3,3] BW=400, WM Cycles=2500]
    [   20.118720] autorun-usecase.sh[114]:  [host]  Setting L3 bandwidth regulator for [HDVICP0 ] to [press=[0,0] BW=900, WM Cycles=2500]
    [   20.124733] autorun-usecase.sh[114]:  [host]  Setting DMM priority for [ISS     ] to [0] ( 0x4e000634 = 0x00080000 )
    [   20.186099] autorun-usecase.sh[114]: insmod: ERROR: could not insert module sbull.ko: File exists
    [   21.219268] autorun-usecase.sh[114]: mkfs.fat 3.0.28 (2015-05-16)
    [   21.221084] autorun-usecase.sh[114]: unable to get drive geometry, using default 255/63
    [   21.223608] autorun-usecase.sh[114]: /dev/sbulla has 255 heads and 63 sectors per track,
    [   21.230122] autorun-usecase.sh[114]: hidden sectors 0x0000;
    [   21.231987] autorun-usecase.sh[114]: logical sector size is 512,
    [   21.233601] autorun-usecase.sh[114]: using 0xf8 media descriptor, with 1024 sectors;
    [   21.238679] autorun-usecase.sh[114]: drive number 0x80;
    [   21.242272] autorun-usecase.sh[114]: filesystem has 2 16-bit FATs and 4 sectors per cluster.
    [   21.245663] autorun-usecase.sh[114]: FAT size is 1 sector, and provides 247 clusters.
    [   21.247403] autorun-usecase.sh[114]: There is 1 reserved sector.
    [   21.248948] autorun-usecase.sh[114]: Root directory contains 512 slots and uses 32 sectors.
    [   21.252655] autorun-usecase.sh[114]: Volume ID is 9c04e4c0, no volume label.
    [   21.499219] Mass Storage Function, version: 2009/09/11
    [   21.504412] LUN: removable file: (no medium)
    [   21.538261] LUN: removable file: /dev/sbulla
    [   21.542607] Number of LUNs=1
    [   21.562011] g_mass_storage gadget: Mass Storage Gadget, version: 2009/09/11
    [   21.569090] g_mass_storage gadget: userspace failed to provide iSerialNumber
    [   21.576172] g_mass_storage gadget: g_mass_storage ready
    [   21.619486] autorun-usecase.sh[114]: Creat queue id:0
    [   21.622458] autorun-usecase.sh[114]: queue id:0
    [   21.625752] autorun-usecase.sh[114]: Creat queue id:32769
    [   21.633848] autorun-usecase.sh[114]: queue id:32769
    [   21.640116] autorun-usecase.sh[114]: Creat queue id:65538
    [   21.642866] autorun-usecase.sh[114]: queue id:65538
    [   21.648367] autorun-usecase.sh[114]: Creat queue id:98307
    [   21.660122] autorun-usecase.sh[114]: queue id:98307
    [   21.666384] autorun-usecase.sh[114]: queue id:32769
    [   21.735486] autorun-usecase.sh[114]:  [host] Attached to slave procId 1.
    [   22.580990] autorun-usecase.sh[114]:  [host] Attached to slave procId 0.
    [   22.583343] autorun-usecase.sh[114]:  [host] Loaded file ./firmware/ipnc_rdk_fw_m3vpss.xem3 on slave procId 1.
    [   22.750492] autorun-usecase.sh[114]:  [host] Started slave procId 1.
    [   22.752851] autorun-usecase.sh[114]:  [host] Loaded file ./firmware/ipnc_rdk_fw_m3video.xem3 on slave procId 0.
    [   22.837980] autorun-usecase.sh[114]:  [host] Started slave procId 0.
    [   22.840138] autorun-usecase.sh[114]:  [host] After Ipc_loadcallback status [0x00000000]
    [   22.842135] autorun-usecase.sh[114]:  [host] After Ipc_loadcallback status [0x00000000]
    [   22.923851] autorun-usecase.sh[114]:  [host] After Ipc_startcallback status [0x00000000]
    [   22.960956] autorun-usecase.sh[114]:  [host] After Ipc_startcallback status [0x00000000]
    [   23.028376] autorun-usecase.sh[114]:  [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
    [   23.032500] autorun-usecase.sh[114]:  [m3video] Remote Debug Shared Memory @ 0xbff05020
    [   23.035544] autorun-usecase.sh[114]:  [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
    [   23.038707] autorun-usecase.sh[114]:  [m3vpss ] Received character 's'
    [   23.128257] autorun-usecase.sh[114]:  [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
    [   23.130389] autorun-usecase.sh[114]:  [m3video] Remote Debug Shared Memory @ 0xbff05020
    [   23.137709] autorun-usecase.sh[114]:  [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
    [   23.150597] autorun-usecase.sh[114]:  [m3video] Received character 's'
    [   23.152718] autorun-usecase.sh[114]: queue id:65538
    [   23.161344] autorun-usecase.sh[114]: Creat queue id:131076
    [   23.163726] autorun-usecase.sh[114]: queue id:131076
    [   23.171513] autorun-usecase.sh[114]: CPU is TI812x
    [   23.269905] autorun-usecase.sh[114]: Creat queue id:163845
    [   23.271817] autorun-usecase.sh[114]: queue id:163845
    [   23.273212] autorun-usecase.sh[114]: queue id:65538
    [   23.359512] autorun-usecase.sh[114]:  [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
    [   23.361952] autorun-usecase.sh[114]:  [m3video] Remote Debug Shared Memory @ 0xbff05020
    [   23.365797] autorun-usecase.sh[114]:  [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
    [   23.424496] autorun-usecase.sh[114]:  [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
    [   23.426268] autorun-usecase.sh[114]:  [m3video] Remote Debug Shared Memory @ 0xbff05020
    [   23.429253] autorun-usecase.sh[114]:  [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
    [   23.448663] autorun-usecase.sh[114]:  [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
    [   23.450439] autorun-usecase.sh[114]:  [m3video] Remote Debug Shared Memory @ 0xbff05020
    [   23.451882] autorun-usecase.sh[114]:  [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
    [   23.453198] autorun-usecase.sh[114]:  [m3video] ***** SYSTEM  : Frequency <ORG> - 200000000, <NEW> - 200000000
    [   23.472653] autorun-usecase.sh[114]:  [m3vpss ] ***** SYSTEM  : Frequency <ORG> - 200000000, <NEW> - 200000000
    [   23.474566] autorun-usecase.sh[114]:  [m3video]
    [   23.479370] autorun-usecase.sh[114]:  [m3vpss ] notify_attach  rtnVal  0
    [   23.481650] autorun-usecase.sh[114]:  [m3video]  *** UTILS: CPU KHz = 400000 Khz ***
    [   23.487495] autorun-usecase.sh[114]:  [m3video]
    [   23.493973] autorun-usecase.sh[114]:  [m3video]  36: SYSTEM  : System Common Init in progress !!!
    [   23.497058] autorun-usecase.sh[114]:  [m3video]  36: SYSTEM: IPC init in progress !!!
    [   23.499047] autorun-usecase.sh[114]:  [m3video]  36: SYSTEM: Attaching to [HOST] ...
    [   23.500992] autorun-usecase.sh[114]:  [m3video]  86: SYSTEM: Attaching to [HOST] ...
    [   23.502813] autorun-usecase.sh[114]:  [m3vpss ] initProxyServer  rtnVal  0
    [   23.504370] autorun-usecase.sh[114]:  [m3vpss ]
    [   23.505895] autorun-usecase.sh[114]:  [m3vpss ]  *** UTILS: CPU KHz = 400000 Khz ***
    [   23.507348] autorun-usecase.sh[114]:  [m3vpss ]
    [   23.508943] autorun-usecase.sh[114]:  [m3vpss ]  67: SYSTEM  : System Common Init in progress !!!
    [   23.511001] autorun-usecase.sh[114]:  [m3vpss ]  67: SYSTEM: IPC init in progress !!!
    [   23.512562] autorun-usecase.sh[114]:  [m3vpss ]  67: SYSTEM: Attaching to [HOST] ...
    [   23.514076] autorun-usecase.sh[114]:  [m3video]  94: SYSTEM: Attaching to [HOST] ... SUCCESS !!!
    [   23.515536] autorun-usecase.sh[114]:  [m3video]  94: SYSTEM: Attaching to [VPSS-M3] ...
    [   23.517101] autorun-usecase.sh[114]:  [m3vpss ]  117: SYSTEM: Attaching to [HOST] ...
    [   23.518918] autorun-usecase.sh[114]:  [m3vpss ]  131: SYSTEM: Attaching to [HOST] ... SUCCESS !!!
    [   23.520915] autorun-usecase.sh[114]:  [m3vpss ]  131: SYSTEM: Attaching to [VIDEO-M3] ...
    [   23.522487] autorun-usecase.sh[114]:  [m3video]  144: SYSTEM: Attaching to [VPSS-M3] ...
    [   23.523954] autorun-usecase.sh[114]:  [m3vpss ]  181: SYSTEM: Attaching to [VIDEO-M3] ...
    [   23.525399] autorun-usecase.sh[114]:  [m3video]  182: SYSTEM: Attaching to [VPSS-M3] ... SUCCESS !!!
    [   23.527225] autorun-usecase.sh[114]:  [m3vpss ]  182: SYSTEM: Attaching to [VIDEO-M3] ... SUCCESS !!!
    [   23.528745] autorun-usecase.sh[114]:  [m3video]  182: SYSTEM: Opening MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...
    [   23.530361] autorun-usecase.sh[114]:  [m3vpss ]  182: SYSTEM: Creating MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...
    [   23.531867] autorun-usecase.sh[114]:  [m3vpss ]  182: SYSTEM: Creating MsgQ [VPSS-M3_MSGQ] ...
    [   23.533409] autorun-usecase.sh[114]:  [m3vpss ]  183: SYSTEM: Creating MsgQ [VPSS-M3_ACK_MSGQ] ...
    [   23.534881] autorun-usecase.sh[114]:  [m3vpss ]  185: SYSTEM: Notify register to [HOST] line 0, event 12 ...
    [   23.536389] autorun-usecase.sh[114]:  [m3vpss ]  185: SYSTEM: Notify register to [VIDEO-M3] line 0, event 12 ...
    [   23.537853] autorun-usecase.sh[114]:  [m3vpss ]  185: SYSTEM: IPC init DONE !!!
    [   23.539360] autorun-usecase.sh[114]:  [m3vpss ]  196: MEM: Shared Region 2: Base = 0xb8000000, Length = 0x06900000 (105 MB)
    [   23.545196] autorun-usecase.sh[114]:  [m3vpss ]  196: MEM: Shared Region 1: Base = 0x89000000, Length = 0x03b00000 (59 MB)
    [   23.547143] autorun-usecase.sh[114]:  [m3vpss ]  199: SYSTEM  : System Common Init Done !!!
    [   23.548764] autorun-usecase.sh[114]:  [m3video]  283: SYSTEM: Opening MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...
    [   23.550411] autorun-usecase.sh[114]:  [m3video]  283: SYSTEM: Creating MsgQ [VIDEO-M3_MSGQ] ...
    [   23.552020] autorun-usecase.sh[114]:  [m3video]  283: SYSTEM: Creating MsgQ [VIDEO-M3_ACK_MSGQ] ...
    [   23.553587] autorun-usecase.sh[114]:  [m3video]  285: SYSTEM: Notify register to [HOST] line 0, event 12 ...
    [   23.555107] autorun-usecase.sh[114]:  [m3video]  286: SYSTEM: Notify register to [VPSS-M3] line 0, event 12 ...
    [   23.556708] autorun-usecase.sh[114]:  [m3video]  286: SYSTEM: IPC init DONE !!!
    [   23.558181] autorun-usecase.sh[114]:  [m3video]  296: MEM: Shared Region 2: Base = 0xb8000000, Length = 0x06900000 (105 MB)
    [   23.559675] autorun-usecase.sh[114]:  [m3video]  297: MEM: Shared Region 1: Base = 0x89000000, Length = 0x03b00000 (59 MB)
    [   23.561353] autorun-usecase.sh[114]:  [m3video]  299: SYSTEM  : System Common Init Done !!!
    [   23.562863] autorun-usecase.sh[114]:  [m3video]  599: SYSTEM  : System Video Init in progress !!!
    [   23.564319] autorun-usecase.sh[114]:  [m3vpss ]  598: SYSTEM  : System VPSS Init in progress !!!
    [   23.565877] autorun-usecase.sh[114]:  [m3video]  599: SYSTEM: Creating ListMP [VIDEO-M3_IPC_OUT_0] in region 0 ...
    [   23.567544] autorun-usecase.sh[114]:  [m3vpss ]  PLATFORM: UNKNOWN CPU detected, defaulting to ISS_PLATFORM_CPU_REV_2_1
    [   23.572163] autorun-usecase.sh[114]:  [m3video]  600: SYSTEM: Creating ListMP [VIDEO-M3_IPC_IN_0] in region 0 ...
    [   23.581236] autorun-usecase.sh[114]:  [m3vpss ]  599: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_0] in region 0 ...
    [   23.585735] autorun-usecase.sh[114]:  [m3video]  600: SYSTEM: ListElem Shared Addr = 0xbe987680
    [   23.591369] autorun-usecase.sh[114]:  [m3vpss ]  600: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_0] in region 0 ...
    [   23.595868] autorun-usecase.sh[114]:  [m3vpss ]  600: SYSTEM: ListElem Shared Addr = 0xbe984700
    [   23.600133] autorun-usecase.sh[114]:  [m3video]  602: SYSTEM: Creating ListMP [VIDEO-M3_IPC_OUT_1] in region 0 ...
    [   23.610865] autorun-usecase.sh[114]:  [m3vpss ]  602: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_1] in region 0 ...
    [   23.612890] autorun-usecase.sh[114]:  [m3video]  603: SYSTEM: Creating ListMP [VIDEO-M3_IPC_IN_1] in region 0 ...
    [   23.617926] autorun-usecase.sh[114]:  [m3vpss ]  603: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_1] in region 0 ...
    [   23.954307] autorun-usecase.sh[114]:  [m3video]  603: SYSTEM: ListElem Shared Addr = 0xbe98e080
    [   23.956082] autorun-usecase.sh[114]:  [m3vpss ]  603: SYSTEM: ListElem Shared Addr = 0xbe98b180
    [   23.957763] autorun-usecase.sh[114]:  [m3video]  613: SYSTEM: Creating ListMP [VIDEO-M3_IPC_OUT_29] in region 0 ...
    [   23.959436] autorun-usecase.sh[114]:  [m3vpss ]  616: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_24] in region 0 ...
    [   23.961143] autorun-usecase.sh[114]:  [m3video]  613: SYSTEM: Creating ListMP [VIDEO-M3_IPC_IN_29] in region 0 ...
    [   23.962723] autorun-usecase.sh[114]:  [m3vpss ]  617: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_24] in region 0 ...
    [   23.964669] autorun-usecase.sh[114]:  [m3video]  614: SYSTEM: LisApproDrvInit: 7
    [   23.966338] autorun-usecase.sh[114]: queue id:163845
    [   28.681405] autorun-usecase.sh[114]:  [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
    [   28.683219] autorun-usecase.sh[114]:  [m3video] Remote Debug Shared Memory @ 0xbff05020
    [   28.684631] autorun-usecase.sh[114]:  [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
    [   28.685939] autorun-usecase.sh[114]:  [m3vpss ] Received character 't'
    [   28.708885] autorun-usecase.sh[114]:  [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
    [   28.711084] autorun-usecase.sh[114]:  [m3video] Remote Debug Shared Memory @ 0xbff05020
    [   28.715282] autorun-usecase.sh[114]:  [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
    [   28.718653] autorun-usecase.sh[114]:  [m3video] Received character 't'
    [   28.764652] autorun-usecase.sh[114]: rmmod: ERROR: Module osa_kermod is not currently loaded
    [   28.801125] autorun-usecase.sh[114]: /dev/mem opened.
    [   28.802974] autorun-usecase.sh[114]:              Phy Addr : 0x48180e00 Data : 0x00030000
    [   28.804409] autorun-usecase.sh[[   28.831291] DMA: Module install successful, device major num = 244
    114]:              Phy Addr : 0x48180e10 Data : 0x00000007
    [   28.841421] DRV: Module install successful
    [   28.850766] DRV: Module built on Jul  3 2017 11:13:08
    [   28.839841] autorun-usecase.sh[114]:              Phy Addr : 0x48180e04 Data : 0x00000000
    [   28.848526] autorun-usecase.sh[114]:              Phy Addr : 0x48180e14 Data : 0x00000000
    [   28.855363] autorun-usecase.sh[114]:              Phy Addr : 0x48180800 Data : 0x00000001
    [   28.862703] autorun-usecase.sh[114]:              Phy Addr : 0x48180820 Data : 0x00070000
    [   28.864559] autorun-usecase.sh[114]:              Phy Addr : 0x48180824 Data : 0x00030000
    [   28.866336] autorun-usecase.sh[114]:              Phy Addr : 0x48180e04 Data : 0x00000000
    [   28.867955] autorun-usecase.sh[114]:              Phy Addr : 0x48180e00 Data : 0x00030000
    [   28.869720] autorun-usecase.sh[114]:              Phy Addr : 0x48180e10 Data : 0x00000007
    [   28.871435] autorun-usecase.sh[114]:              Phy Addr : 0x48180e04 Data : 0x00000000
    [   28.873063] autorun-usecase.sh[114]:              Phy Addr : 0x48180e14 Data : 0x00000000
    [   28.874652] autorun-usecase.sh[114]:              Phy Addr : 0x48180800 Data : 0x00000001
    [   28.876264] autorun-usecase.sh[114]:              Phy Addr : 0x48180820 Data : 0x00070000
    [   28.877848] autorun-usecase.sh[114]:              Phy Addr : 0x48180824 Data : 0x00030000
    [   28.879516] autorun-usecase.sh[114]:     Dss_Disable Done!.................
    [   28.[   28.966757] DMA: ChannelID allocated:4
    885414] autorun-usecase.sh[114]:  [host] Application Start Completed
    [   28.911170] autorun-usecase.sh[114]:  [host]  0: SYST[   28.986994] DMA: ChannelID allocated:5
    EM: System Common Init in progress !!!
    [   28.917918] autorun-usecase.sh[114]:  [host]  0: SYSTEM: IPC init in progress !!!
    [   28.923681] autorun-usecase.sh[114]:  [host]  10: SYSTEM: CPU [DSP] is NOT available on this platform !!!
    [   28.928364] autorun-usecase.sh[114]:  [host]  11: SYSTEM: CPU [VIDEO-M3] syslink proc ID is [0] !!!
    [   28.932388] autorun-usecase.sh[114]:  [host]  11: SYSTEM: CPU [VPSS-M3] syslink proc ID is [1] !!!
    [   28.946844] autorun-usecase.sh[114]:  [host]  11: SYSTEM: CPU [HOST] syslink proc ID is [2] !!!
    [   28.958643] autorun-usecase.sh[114]:  [host]  11: SYSTEM: Opening MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...
    [   28.960751] autorun-usecase.sh[114]:  [host]  12: SYSTEM: Creating MsgQ [HOST_MSGQ] ...
    [   28.962573] autorun-usecase.sh[114]:  [host]  12: SYSTEM: Creating MsgQ [HOST_ACK_MSGQ] ...
    [   28.964320] autorun-usecase.sh[114]:  [host]  12: SYSTEM: Opening MsgQ [VIDEO-M3_MSGQ] ...
    [   28.965901] autorun-usecase.sh[114]:  [host]  12: SYSTEM: Opening MsgQ [VPSS-M3_MSGQ] ...
    [   28.967508] autorun-usecase.sh[114]:  [host]  13: SYSTEM: Notify register to [VIDEO-M3] line 0, event 12 ...
    [   28.973624] autorun-usecase.sh[114]:  [host]  14: SYSTEM: Notify register to [VPSS-M3] line 0, event 12 ...
    [   28.975291] autorun-usecase.sh[114]:  [host]  14: SYSTEM: IPC init DONE !!!
    [   28.980989] autorun-usecase.sh[114]:  [host]  16: SYSTEM: Creating ListMP [HOST_IPC_OUT_29] in region 0 ...
    [   28.983156] autorun-usecase.sh[114]:  [host]  16: SYSTEM: Creating ListMP [HOST_IPC_IN_29] in region 0 ...
    [   28.986451] autorun-usecase.sh[114]:  [host]  16: SYSTEM: ListElem Shared Addr = 0xb5605580
    [   28.991313] autorun-usecase.sh[114]:  [host]  17: SYSTEM: Creating ListMP [HOST_IPC_OUT_30] in region 0 ...
    [   28.993073] autorun-usecase.sh[114]:  [host]  17: SYSTEM: Creating ListMP [HOST_IPC_IN_30] in region 0 ...
    [   28.994768] autorun-usecase.sh[114]:  [host]  17: SYSTEM: ListElem Shared Addr = 0xb561f200
    [   28.996412] autorun-usecase.sh[114]:  [host]  20: SYSTEM: Creating ListMP [HOST_IPC_OUT_24] in region 0 ...
    [   28.998076] autorun-usecase.sh[114]:  [host]  20: SYSTEM: Creating ListMP [HOST_IPC_IN_24] in region 0 ...
    [   28.999794] autorun-usecase.sh[114]:  [host]  21: SYSTEM: ListElem Shared Addr = 0xb5638e80
    [   29.001600] autorun-usecase.sh[114]:  [host]  23: SYSTEM: Creating ListMP [HOST_IPC_OUT_25] in region 0 ...
    [   29.003263] autorun-usecase.sh[114]:  [host]  23: SYSTEM: Creating ListMP [HOST_IPC_IN_25] in region 0 ...
    [   29.004918] autorun-usecase.sh[114]:  [host]  23: SYSTEM: ListElem Shared Addr = 0xb5658880
    [   29.006499] autorun-usecase.sh[114]:  [host]  24: SYSTEM: Creating ListMP [HOST_IPC_OUT_26] in region 0 ...
    [   29.008175] autorun-usecase.sh[114]:  [host]  25: SYSTEM: Creating ListMP [HOST_IPC_IN_26] in region 0 ...
    [   29.009836] autorun-usecase.sh[114]:  [host]  25: SYSTEM: ListElem Shared Addr = 0xb5678280
    [   29.011577] autorun-usecase.sh[114]:  [host]  27: SYSTEM: System Common Init Done !!!
    [   29.013273] autorun-usecase.sh[114]:  [host] Vsys_allocBuf - addr = 0xa73ae000,size = 65011712
    [   29.014945] autorun-usecase.sh[114]: ##########pInfo->totalsize 63897600
    [   29.016549] autorun-usecase.sh[114]:  [host] MemMng_memcpy_open:OSA_dmaOpen passed with ch id = 4
    [   29.018183] autorun-usecase.sh[114]:  [host] CacheMng_MemCpy_open:OSA_dmaOpen passed with ch id = 5
    [   29.021729] autorun-usecase.sh[114]:  [host] MCFW_IPCFRAMES:App_ipcFramesSendRecvFxn:Entered...
    [   29.023445] autorun-usecase.sh[114]:  [host] Vsys_allocBuf - addr = 0xb6f41000,size = 33603
    [   29.025145] autorun-usecase.sh[114]:  [host] DCC buffer allocated for size 33603
    [   29.026758] autorun-usecase.sh[114]:  [host] DCC Default File Intialization Done
    [   29.028406] autorun-usecase.sh[114]:  [host]
    [   29.030214] autorun-usecase.sh[114]: ********** LOW POWER USECASE ********
    [   29.031826] autorun-usecase.sh[114]: [   29.333576] DMA: ChannelID allocated:6
     [host] ********* Entered Tri Streaming usecase - H264 1080p @60[   29.341889] DMA: ChannelID allocated:7
    fps + H264 D1 @30fps + MJPEG 1080p @5fps ********
    [   29.033504] autorun-usecase.sh[114]:  [host]  82: MCFW  : CPU Revision [ES1.0] !!!
    [   29.035084] autorun-usecase.sh[114]:  [host]  82: MCFW  : Detected [UNKNOWN] Board !!!
    [   29.036707] autorun-usecase.sh[114]:  [host]  82: MCFW  : Base Board Revision [UNKNOWN] !!!
    [   29.312209] autorun-usecase.sh[114]: tElem Shared Addr = 0xbe991580
    [   29.314058] autorun-usecase.sh[114]:  [m3vpss ]  617: SYSTEM: ListElem Shared Addr = 0xbe9c4e80
    [   29.334167] autorun-usecase.sh[114]:  [m3video]  616: SYSTEM: Creating ListMP [VIDEO-M3_IPC_OUT_30] in region 0 ...
    [   29.336175] autorun-usecase.sh[114]:  [m3vpss ]  620: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_25] in region 0 ...
    [   29.337836] autorun-usecase.sh[114]:  [m3video]  616: SYSTEM: Creating ListMP [VIDEO-M3_IPC_IN_30] in region 0 ...
    [   29.339532] autorun-usecase.sh[114]:  [m3vpss ]  620: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_25] in region 0 ...
    [   29.341281] autorun-usecase.sh[114]:  [m3video]  617: SYSTEM: ListElem Shared Addr = 0xbe9ab480
    [   29.343178] autorun-usecase.sh[114]:  [m3vpss ]  621: SYSTEM: ListElem Shared Addr = 0xbe9e4880
    [   29.344958] autorun-usecase.sh[114]:  [m3video]  619: HDVICP: Doing PRCM for IVAHD[0] ...
    [   29.346634] autorun-usecase.sh[114]:  [m3video]  619: HDVICP: PRCM for IVAHD[0] ... DONE.
    [   29.348257] autorun-usecase.sh[114]:  [m3video]  620: SYSTEM  : Initializing Links !!!
    [   29.349923] autorun-usecase.sh[114]:  [m3video]  620: SYSTEM  : FREE SPACE : System Heap      = 2088976 B, Mbx = 10240 msgs)
    [   29.351715] autorun-usecase.sh[114]:  [m3vpss ]  624: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_26] in region 0 ...
    [   29.353306] autorun-usecase.sh[114]:  [m3vpss ]  624: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_26] in region 0 ...
    [   29.355018] autorun-usecase.sh[114]:  [m3video]  620: SYSTEM  : FREE SPACE : SR0 Heap         = 15841280 B (15 MB)
    [   29.356617] autorun-usecase.sh[114]:  [m3vpss ]  624: SYSTEM: ListElem Shared Addr = 0xbea04280
    [   29.358206] autorun-usecase.sh[114]:  [m3vpss ]  630: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_29] in region 0 ...
    [   29.359969] autorun-usecase.sh[114]:  [m3video]  621: SYSTEM  : FREE SPACE : Frame Buffer     = 110100352 B (104 MB)
    [   29.361737] autorun-usecase.sh[114]:  [m3vpss ]  631: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_29] in region 0 ...
    [   29.363364] autorun-usecase.sh[114]:  [m3vpss ]  631: SYSTEM: ListElem Shared Addr = 0xbea23c80
    [   29.365059] autorun-usecase.sh[114]:  [m3video]  621: SYSTEM  : FREE SPACE : Bitstream Buffer = 61865856 B (58 MB)
    [   29.366647] autorun-usecase.sh[114]:  [m3video]  621: SYSTEM: Opening MsgQ [VPSS-M3_MSGQ] ...
    [   29.368312] autorun-usecase.sh[114]:  [m3vpss ]  634: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_30] in region 0 ...
    [   29.369875] autorun-usecase.sh[114]:  [m3video]  622: SYSTEM  : FREE SPACE : Tiler Buffer     = 128 B (0 MB)  - TILER OFF
    [   29.371538] autorun-usecase.sh[114]:  [m3vpss ]  634: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_30] in region 0 ...
    [   29.373178] autorun-usecase.sh[114]:  [m3vpss ]  634: SYSTEM: ListElem Shared Addr = 0xbea3d900
    [   29.374817] autorun-usecase.sh[114]:  [m3video] Entered the MctnfLink_init()
    [   29.376456] autorun-usecase.sh[114]:  [m3vpss ]  636: SYSTEM  : Device Init in progress !!!
    [   29.378065] autorun-usecase.sh[114]:  [m3vpss ]  Iss_init called !!!!!!
    [   29.379718] autorun-usecase.sh[114]:  [m3vpss ]  CPIS_init DONE !!!!!!
    [   29.381369] autorun-usecase.sh[114]:  [m3vpss ]  642: SYSTEM  : Device Init in progress DONE !!!
    [   29.385288] autorun-usecase.sh[114]:  [m3vpss ]     MS TEST NO: 16, TEXT ADDED FOR DEBUG!!!!!!!!!!!!!!!!!!!!!!!!!!!
    [   29.387595] autorun-usecase.sh[114]:  [m3vpss ]     MS TEST NO: 17, TEXT ADDED FOR DEBUG!!!!!!!!!!!!!!!!!!!!!!!!!!
    [   29.389405] autorun-usecase.sh[114]:  [m3vpss ]     MS TEST NO: 18, Enter into Vps_deviceI2cInit
    [   29.391130] autorun-usecase.sh[114]:  [m3vpss ]     MS TEST , PSP_i2cInit Accessed.........
    [   29.393097] autorun-usecase.sh[114]:  [m3vpss ]     MS TEST , PSP_i2cInit Accessed.........
    [   29.394772] autorun-usecase.sh[114]:  [m3vpss ]  I2C2 MS clk freq: 400
    [   29.396648] autorun-usecase.sh[114]:  [m3vpss ]     MS TEST , PSP_i2cInit Accessed.........
    [   29.398255] autorun-usecase.sh[114]:  [m3video]  681: SYSTEM  : Initializing Links ... DONE !!!
    [   29.399908] autorun-usecase.sh[114]:  [m3video]  682: SYSTEM  : System Video Init Done !!!
    [   29.401614] autorun-usecase.sh[114]:  [m3vpss ]  I2C Reg Value For MS = 0x2c, Address: 0x09
    [   29.403318] autorun-usecase.sh[114]:  [m3vpss ]  I2C2: DEV 0x2d: WR 0x09 = 0x2c ... !!!
    [   29.405206] autorun-usecase.sh[114]:  [m3vpss ]  I2C Reg Value For MS = 0x22, Address: 0x0a
    [   29.407011] autorun-usecase.sh[114]:  [m3vpss ]  I2C2: DEV 0x2d: WR 0x0a = 0x22 ... !!!
    [   29.408697] autorun-usecase.sh[114]:  [m3vpss ] DONE ar0331_lvds/src/issdrv_ar0331Api.c:AR0331_Transplant_DRV_imgsSetRegs:706 !!!
    [   29.743500] autorun-usecase.sh[114]:  [m3vpss ]  5764: SYSTEM  : System VPSS Init Done !!!
    [   29.745286] autorun-usecase.sh[114]:  [m3vpss ]  5764: UTILS: DMA: HWI Create for INT62 !!!
    [   29.746982] autorun-usecase.sh[114]:  [m3vpss ]  5764: SYSTEM  : Initializing Links !!!
    [   29.748680] autorun-usecase.sh[114]:  [m3vpss ]  5765: SYSTEM  : FREE SPACE : System Heap      = 1684720 B, Mbx = 10240 msgs)
    [   29.750680] autorun-usecase.sh[114]:  [m3vpss ]  5765: SYSTEM  : FREE SPACE : SR0 Heap         = 15372416 B (14 MB)
    [   29.752430] autorun-usecase.sh[114]:  [m3vpss ]  5765: SYSTEM  : FREE SPACE : Frame Buffer     = 105790336 B (100 MB)
    [   29.754065] autorun-usecase.sh[114]:  [m3vpss ]  5765: SYSTEM  : FREE SPACE : Bitstream Buffer = 61865856 B (58 MB)
    [   29.755726] autorun-usecase.sh[114]:  [m3vpss ]  5766: SYSTEM  : FREE SPACE : Tiler Buffer     = 128 B (0 MB)  - TILER OFF
    [   29.757286] autorun-usecase.sh[114]:  [m3vpss ]  5846: SYSTEM  : Initializing Links ... DONE !!!
    [   29.759297] autorun-usecase.sh[114]:  [m3vpss ]  6099: CAMERA: Create in progress !!!
    [   29.760982] autorun-usecase.sh[114]:  [m3vpss ]  Channel Num Stream 0 Ch 0 ChannelNum 0
    [   29.762638] autorun-usecase.sh[114]:  [m3vpss ]  Channel Num Stream 1 Ch 0 ChannelNum 1
    [   29.764302] autorun-usecase.sh[114]:  [m3vpss ]  6100: CAMERA: VIP0 PortA camera mode is [ 8-bit, Non-mux Embedded Sync] !!!
    [   29.766110] autorun-usecase.sh[114]:  [m3vpss ]  6100: CAMERA: VIP 0: VID DEC 268436737 (0x10): 0002:20202020:20202020, AUD_STATUS 538976288
    [   29.767784] autorun-usecase.sh[114]:  [m3vpss ] Iss_captCreate:1661
    [   29.769537] autorun-usecase.sh[114]:  [m3vpss ]  6313: CAMERA: Create Done !!!
    [   29.771253] autorun-usecase.sh[114]:  [m3vpss ]  6403: CAMERA: Detect video in progress !!!
    [   29.772845] autorun-usecase.sh[114]:  [m3vpss ]  6403: CAMERA: Detect video Done !!!
    [   29.774681] autorun-usecase.sh[114]:  [m3vpss ]  6475: DUP   : Create Done !!!
    [   29.778357] autorun-usecase.sh[114]:  [m3vpss ]  6477: MERGE   : Create Done !!!
    [   29.780236] autorun-usecase.sh[114]:  [host] Vsys_eventHandler:OSA_dmaOpen passed with ch id = 6
    [   29.782340] autorun-usecase.sh[114]:  [host] Vsys_eventHandler:OSA_dmaOpen passed with ch id = 7
    [   29.784178] autorun-usecase.sh[114]: queue id:0
    [   29.785990] autorun-usecase.sh[114]:  [host] IpcBitsInLink_tskMain:Entered
    [   29.787731] autorun-usecase.sh[114]:  [host]  776: IPC_BITS_IN   : Create in progress !!!
    [   29.790205] autorun-usecase.sh[114]:  [host]  776: IPC_BITS_IN   : ListMPOpen start !!!
    [   29.792010] autorun-usecase.sh[114]:  [host]  776: SYSTEM: Opening ListMP [VIDEO-M3_IPC_OUT_29] ...
    [   29.793732] autorun-usecase.sh[114]:  [host]  777: SYSTEM: Opening ListMP [VIDEO-M3_IPC_IN_29] ...
    [   29.795332] autorun-usecase.sh[114]:  [host]  777: IPC_BITS_IN   : ListMPOpen done !!!
    [   29.796945] autorun-usecase.sh[114]:  [host]  778: IPC_BITS_IN   : System_linkGetInfo done !!!
    [   29.798800] autorun-usecase.sh[114]:  [host]  778: IPC_BITS_IN   : Create Done !!!
    [   29.800571] autorun-usecase.sh[114]:  [host] USECASE SETUP DONE
    [   29.802260] autorun-usecase.sh[114]:  [host]
    [   29.804036] autorun-usecase.sh[114]: Application Run Completed
    [   29.889705] autorun-usecase.sh[114]:  [host] ITT server task running !!!
    [   29.891964] autorun-usecase.sh[114]:  [host]
    [   29.893652] autorun-usecase.sh[114]:  ITT ittServer_run
    [   29.895146] autorun-usecase.sh[114]:  [host] ITT Server Message initialization successful
    [   29.902378] autorun-usecase.sh[114]:  [host] DCC server Message ques is open succefully
    [   29.905464] autorun-usecase.sh[114]:  [host] Setting cmd <1> in message <b54b1c00>
    [   29.907306] autorun-usecase.sh[114]:  [host] Posting message <b54b1c00> in QId <10002>
    [   29.909518] autorun-usecase.sh[114]:  [host]
    [   29.911245] autorun-usecase.sh[114]:  ITT capture task created
    [   29.913244] autorun-usecase.sh[114]:  [host] Response from M3 is : 1
    [   29.954806] autorun-usecase.sh[114]:  [host] Response from M3 is : 1
    [   29.956706] autorun-usecase.sh[114]:  [host] Default parameters were sent sucessfully
    [   29.958468] autorun-usecase.sh[114]:  [host] Server Socket created with ID <22>
    [   30.912277] autorun-usecase.sh[114]:  [host]
    [   30.914782] autorun-usecase.sh[114]:  Channel Selected: 0
    [   30.915615] autorun-usecase.sh[114]:  [host]
    [   30.931515] autorun-usecase.sh[114]:  Channel Selected: 0,rate control = 0
    [   30.932315] autorun-usecase.sh[114]:  [host]
    [   30.932798] autorun-usecase.sh[114]: ========== Stream FrameRate1 = 15 =================
    [   30.940925] autorun-usecase.sh[114]:  [host]
    [   30.942785] autorun-usecase.sh[114]:  Channel Selected: 0
    [   30.949941] autorun-usecase.sh[114]:  [host]
    [   30.955974] autorun-usecase.sh[114]:  Channel Selected: 0
    [   30.956818] autorun-usecase.sh[114]:  [host]
    [   30.958034] autorun-usecase.sh[114]:  Channel Selected: 0
    [   30.966126] autorun-usecase.sh[114]:  [host]
    [   30.967021] autorun-usecase.sh[114]:  Channel Selected: 0,packet size = 100
    [   30.967606] autorun-usecase.sh[114]:  [host]
    [   30.968102] autorun-usecase.sh[114]:  Channel Selected: 0,encPreset = 0
    [   30.968567] autorun-usecase.sh[114]:  [host]
    [   31.034594] autorun-usecase.sh[114]:  Channel Selected: 0,enable = 0Simple mixer control 'PGA',0
    [   31.035309] autorun-usecase.sh[114]:   Capabilities: cvolume cswitch
    [   31.035733] autorun-usecase.sh[114]:   Capture channels: Front Left - Front Right
    [   31.036129] autorun-usecase.sh[114]:   Limits: Capture 0 - 119
    [   31.036479] autorun-usecase.sh[114]:   Front Left: Capture 95 [80%] [47.50dB] [on]
    [   31.036815] autorun-usecase.sh[114]:   Front Right: Capture 95 [80%] [47.50dB] [on]
    [   31.216113] autorun-usecase.sh[114]: Simple mixer control 'PCM',0
    [   31.217409] autorun-usecase.sh[114]:   Capabilities: pvolume
    [   31.218134] autorun-usecase.sh[114]:   Playback channels: Front Left - Front Right
    [   31.218706] autorun-usecase.sh[114]:   Limits: Playback 0 - 127
    [   31.219282] autorun-usecase.sh[114]:   Mono:
    [   31.220800] autorun-usecase.sh[114]:   Front Left: Playback 101 [80%] [-13.00dB]
    [   31.221454] autorun-usecase.sh[114]:   Front Right: Playback 101 [80%] [-13.00dB]
    [   31.231114] autorun-usecase.sh[114]:  [host]
    [   31.232231] autorun-usecase.sh[114]: Force IDR on Channel: 0
    [   31.232722] autorun-usecase.sh[114]:  [host]
    [   31.315735] sh (347): drop_caches: 1
    [   31.522984] autorun-usecase.sh[114]: Force IDR on Channel: 1umount: can't unmount /mnt/mmc: Invalid argument
    [   31.695958] autorun-usecase.sh[114]: mount: /dev/mmcblk0 is already mounted or /mnt/mmc busy
    [   31.824846] FAT-fs (mmcblk0p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
    [   31.973114] autorun-usecase.sh[114]: ApproDrvInit: 3
    [   31.984328] autorun-usecase.sh[114]: queue id:163845
    [   31.988849] autorun-usecase.sh[114]: queue id:0
    [   31.989779] autorun-usecase.sh[114]: queue id:32769
    [   32.117957] autorun-usecase.sh[114]: killall: dhcpcd: no process killed
    [   32.270609] autorun-usecase.sh[114]: net_get_netmask_MS_sys: ioctl SIOCGIFNETMASK: Cannot assign requested address
    [   32.310398] autorun-usecase.sh[114]: net_get_netmask_MS_sys: ioctl SIOCGIFNETMASK: Cannot assign requested address
    [   32.362872] autorun-usecase.sh[114]: net_get_netmask_MS_sys: ioctl SIOCGIFNETMASK: Cannot assign requested address
    [   33.501622] Mass Storage Function, version: 2009/09/11
    [   33.506849] LUN: removable file: (no medium)
    [   33.511494] LUN: removable file: /dev/sbulla
    [   33.515791] Number of LUNs=1
    [   33.529713] g_mass_storage gadget: Mass Storage Gadget, version: 2009/09/11
    [   33.536765] g_mass_storage gadget: userspace failed to provide iSerialNumber
    [   33.543896] g_mass_storage gadget: g_mass_storage ready
    [   33.561548] autorun-usecase.sh[114]: [05/Dec/2016:07:39:55 +0000] boa: server version Boa/0.94.13
    [   33.563603] autorun-usecase.sh[114]: [05/Dec/2016:07:39:55 +0000] boa: server built Jul  3 2017 at 12:43:11.
    [   33.564474] autorun-usecase.sh[114]: [05/Dec/2016:07:39:55 +0000] boa: starting server pid=354, port 80
    [   33.666828] autorun-usecase.sh[114]: queue id:0
    [   33.744835] autorun-usecase.sh[114]: queue id:0
    [   34.262884] autorun-usecase.sh[114]: queue id:131076
    [   34.266171] autorun-usecase.sh[114]: ApproDrvInit: 10
    [   34.267962] autorun-usecase.sh[114]: queue id:163845
    [   34.274175] autorun-usecase.sh[114]: ApproDrvInit: 2
    [   34.276493] autorun-usecase.sh[114]: ApproDrvInit: 6
    [   34.279395] autorun-usecase.sh[114]: ApproDrvInit: 8
    [   34.288474] autorun-usecase.sh[114]: queue id:163845
    [   34.289476] autorun-usecase.sh[114]: queue id:163845
    [   34.302020] autorun-usecase.sh[114]: ApproDrvInit: 9
    [   34.304646] autorun-usecase.sh[114]: queue id:163845
    [   34.305569] autorun-usecase.sh[114]: queue id:163845
    [   34.306715] autorun-usecase.sh[114]: Initializing...
    [   34.307461] autorun-usecase.sh[114]: Initializing...
    [   34.322586] autorun-usecase.sh[114]: Initializing...
    [   34.323431] autorun-usecase.sh[114]: Initializing...
    [   34.324115] autorun-usecase.sh[114]: Initializing...
    [   34.325084] autorun-usecase.sh[114]: ...done initializing
    [   34.325858] autorun-usecase.sh[114]: ...done initializing
    [   34.326456] autorun-usecase.sh[114]: Play this stream using the URL:
    [   34.327115] autorun-usecase.sh[114]:     rtsp://192.168.1.224:8557/PSIA/Streaming/channels/2?videoCodecType=H.264
    [   34.327821] autorun-usecase.sh[114]: (We use port 8304 for optional RTSP-over-HTTP tunneling.)
    [   34.336181] autorun-usecase.sh[114]: ...done initializing
    [   34.337262] autorun-usecase.sh[114]: Play this stream using the URL:
    [   34.338227] autorun-usecase.sh[114]:     rtsp://192.168.1.224:8554/PSIA/Streaming/channels/1?videoCodecType=MPEG4
    [   34.338942] autorun-usecase.sh[114]: (We use port 8301 for optional RTSP-over-HTTP tunneling.)
    [   34.339947] autorun-usecase.sh[114]: ...done initializing
    [   34.340793] autorun-usecase.sh[114]: ...done initializing
    [   34.341898] autorun-usecase.sh[114]: Play this stream using the URL:
    [   34.342665] autorun-usecase.sh[114]:     rtsp://192.168.1.224:8555/PSIA/Streaming/channels/0?videoCodecType=MJPEG
    [   34.343331] autorun-usecase.sh[114]: (We use port 8302 for optional RTSP-over-HTTP tunneling.)
    [   34.344308] autorun-usecase.sh[114]: Play this stream using the URL:
    [   34.345685] autorun-usecase.sh[114]:     rtsp://192.168.1.224:8556/PSIA/Streaming/channels/2?videoCodecType=H.264
    [   34.346827] autorun-usecase.sh[114]: (We use port 8303 for optional RTSP-over-HTTP tunneling.)
    [   34.347867] autorun-usecase.sh[114]: Play this stream for using the URL:
    [   34.348808] autorun-usecase.sh[114]:     rtsp://192.168.1.224:8553/PSIA/Streaming/channels/1?videoCodecType=MPEG4
    [   34.349702] autorun-usecase.sh[114]: (We use port 8300 for optional RTSP-over-HTTP tunneling.)
    [   60.000078] autorun-usecase.sh[114]:  [host]
    [   60.001028] autorun-usecase.sh[114]: Usecase is Active !!!

  • Hi Pavel,

    When the SD card is flashed after building and used for booting, If u go to the u-boot and check print; Default Instructions are shown below with nothing added by me;

    I2C:ready
    DRAM: 1 GiB
    MMC: OMAP SD/MMC: 0
    *** Warning - bad CRC, using default environment
    Net: <ethaddr> not set. Reading from E-fuse
    cpsw
    Hit any key to stop autoboot: 0
    DM38x-CSK# print
    .........
    console=ttyS0,115200n8
    ethaddr=7c:66:9d:f8:bb:72
    mem=80M
    mmcargs=setenv bootargs console=${console} root=${mmcroot} mem=${mem} vram=${vram} ${optargs}
    mmcroot=/dev/mmcblk0p2 rootwait rw
    optargs=cmemk.phys_start=0x85000000 cmemk.phys_end=0x89000000 cmemk.allowOverlap=1 notifyk.vpssm3_sva=0xBFD00000 earlyprintk
    vram=4M
    .........
    DM38x-CSK#


    ok, from here I got the mmcargs, mmc root, optargs etc.

    If I boot with these default instructions with DHCP Connected I get IP address 192.168.1.6

    If I boot with these default instructions without DHCP Connected I get static board IP address 192.168.1.224

    Now I added bootargs as u suggested, but still it was generating same IPs. I felt the mmcargs defined is overwriting the bootargs I added.

    So I cleared mmcargs using setenv mmcargs

    then the boot log is as follows;

    I2C:ready
    DRAM: 1 GiB
    MMC: OMAP SD/MMC: 0
    Net: cpsw
    Hit any key to stop autoboot: 0
    switch to partitions #0, OK
    mmc0 is current device
    SD/MMC found on device 0
    Booting from mmc ...
    ## Error: "mmcargs" not defined
    reading uImage
    2662672 bytes read in 299 ms (8.5 MiB/s)
    reading dm38x-csk.dtb
    58698 bytes read in 13 ms (4.3 MiB/s)
    ## Booting kernel from Legacy Image at 82000000 ...
    Image Name: Linux-4.4.12
    Image Type: ARM Linux Kernel Image (uncompressed)
    Data Size: 2662608 Bytes = 2.5 MiB
    Load Address: 80008000
    Entry Point: 80008000
    Verifying Checksum ... OK
    ## Flattened Device Tree blob at 84000000
    Booting using the fdt blob at 0x84000000
    Loading Kernel Image ... OK
    Loading Device Tree to 844ee000, end 844ff549 ... OK

    Starting kernel ...

    [ 0.000000] Booting Linux on physical CPU 0x0
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 4.4.12 (test@test-rtdr) (gcc version 5.3.1 20160113 (Linaro GCC 5.3-2016.02) ) #2 Mon Jul 3 12:42:44 IST7
    [ 0.000000] CPU: ARMv7 Processor [413fc082] revision 2 (ARMv7), cr=10c5387d
    [ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
    [ 0.000000] Machine model: DM38X CSK
    [ 0.000000] bootconsole [earlycon0] enabled
    [ 0.000000] omap_barrier_reserve_memblock():Reserving DRAM area @ addr = 0xbfe00000 size = 1048576 Bytes
    [ 0.000000] cma: Reserved 24 MiB at 0xbe400000
    [ 0.000000] Memory policy: Data cache writeback
    [ 0.000000] TI81XX: Map 0xbfe00000 to 0xfe500000 for dram barrier
    [ 0.000000] TI81XX: Map 0x40300000 to 0xfe600000 for sram barrier
    [ 0.000000] CPU: All CPU(s) started in SVC mode.
    [ 0.000000] TI814X ES1.0 (iva neon )
    [ 0.000000] powerdomain: gem_pwrdm: voltagedomain dsp does not exist
    [ 0.000000] powerdomain: ivahd_pwrdm: voltagedomain iva does not exist
    [ 0.000000] powerdomain: hdvpss_pwrdm: voltagedomain dsp does not exist
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 259904
    [ 0.000000] Kernel command line: console=ttyO0,115200n8 root=/dev/nfs nfsroot=192.168.1.100:<path>,nolock eth=<eth addr> ip=192.16k
    [ 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: 1004204K/1046528K available (4911K kernel code, 260K rwdata, 1704K rodata, 272K init, 241K bss, 17748K reserve)
    [ 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 - 0xc067dfa4 (6616 kB)
    [ 0.000000] .init : 0xc067e000 - 0xc06c2000 ( 272 kB)
    [ 0.000000] .data : 0xc06c2000 - 0xc0703308 ( 261 kB)
    [ 0.000000] .bss : 0xc0703308 - 0xc073f718 ( 242 kB)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    [ 0.000000] NR_IRQS:16 nr_irqs:16 16
    [ 0.000000] IRQ: Found an INTC at 0xfa200000 (revision 5.0) with 128 interrupts
    [ 0.000000] OMAP clockevent source: timer2 at 20000000 Hz
    [ 0.000015] sched_clock: 32 bits at 20MHz, resolution 50ns, wraps every 107374182375ns
    [ 0.008263] clocksource: timer1: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 95563022313 ns
    [ 0.017839] OMAP clocksource: timer1 at 20000000 Hz
    [ 0.023133] Console: colour dummy device 80x30
    [ 0.027825] WARNING: Your 'console=ttyO0' has been replaced by 'ttyS0'
    [ 0.034635] This ensures that you still see kernel messages. Please
    [ 0.041169] update your kernel commandline.
    [ 0.045578] Calibrating delay loop... 597.60 BogoMIPS (lpj=2988032)
    [ 0.106916] pid_max: default: 32768 minimum: 301
    [ 0.111873] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
    [ 0.118784] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
    [ 0.126843] Initializing cgroup subsys io
    [ 0.131075] Initializing cgroup subsys memory
    [ 0.135701] Initializing cgroup subsys devices
    [ 0.140375] Initializing cgroup subsys freezer
    [ 0.145055] Initializing cgroup subsys pids
    [ 0.149471] CPU: Testing write buffer coherency: ok
    [ 0.154918] Setting up static identity map for 0x800082c0 - 0x80008318
    [ 0.162723] devtmpfs: initialized
    [ 0.188691] VFP support v0.3: implementor 41 architecture 3 part 30 variant c rev 3
    [ 0.237024] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
    [ 0.249146] pinctrl core: initialized pinctrl subsystem
    [ 0.255955] NET: Registered protocol family 16
    [ 0.262104] DMA: preallocated 256 KiB pool for atomic coherent allocations
    [ 0.274995] OMAP GPIO hardware version 0.1
    [ 0.287599] omap-gpmc 50000000.gpmc: could not find pctldev for node /ocp/l4ls@48000000/control@140000/pinmux@800/nandflash_pins_se
    [ 0.321167] edma 49000000.edma: TI EDMA DMA engine driver
    [ 0.329446] omap_i2c 48028000.i2c: could not find pctldev for node /ocp/l4ls@48000000/control@140000/pinmux@800/pinmux_i2c0_pins, e
    [ 0.343049] omap_i2c 4802a000.i2c: could not find pctldev for node /ocp/l4ls@48000000/control@140000/pinmux@800/pinmux_i2c1_pins, e
    [ 0.356722] media: Linux media interface: v0.10
    [ 0.361537] Linux video capture interface: v2.00
    [ 0.366447] pps_core: LinuxPPS API ver. 1 registered
    [ 0.371641] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    [ 0.381169] PTP clock support registered
    [ 0.385310] EDAC MC: Ver: 3.0.0
    [ 0.389365] Advanced Linux Sound Architecture Driver Initialized.
    [ 0.396714] clocksource: Switched to clocksource timer1
    [ 0.414074] NET: Registered protocol family 2
    [ 0.419447] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
    [ 0.426932] TCP bind hash table entries: 8192 (order: 3, 32768 bytes)
    [ 0.433745] TCP: Hash tables configured (established 8192 bind 8192)
    [ 0.440495] UDP hash table entries: 512 (order: 1, 8192 bytes)
    [ 0.446609] UDP-Lite hash table entries: 512 (order: 1, 8192 bytes)
    [ 0.453338] NET: Registered protocol family 1
    [ 0.458289] RPC: Registered named UNIX socket transport module.
    [ 0.464470] RPC: Registered udp transport module.
    [ 0.469428] RPC: Registered tcp transport module.
    [ 0.474355] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [ 0.482360] omap-iommu 55082000.mmu: 55082000.mmu registered
    [ 0.489462] futex hash table entries: 256 (order: -1, 3072 bytes)
    [ 0.506453] NFS: Registering the id_resolver key type
    [ 0.511849] Key type id_resolver registered
    [ 0.516241] Key type id_legacy registered
    [ 0.522175] bounce: pool size: 64 pages
    [ 0.526225] io scheduler noop registered
    [ 0.530407] io scheduler deadline registered
    [ 0.535104] io scheduler cfq registered (default)
    [ 0.541411] pinctrl-single 48140800.pinmux: 270 pins at pa fa140800 size 1080
    [ 0.622441] Serial: 8250/16550 driver, 10 ports, IRQ sharing disabled
    [ 0.633466] 48020000.uart: ttyS0 at MMIO 0x48020000 (irq = 21, base_baud = 3000000) is a 8250
    [ 0.642453] console [ttyS0] enabled
    [ 0.642453] console [ttyS0] enabled
    [ 0.649654] bootconsole [earlycon0] disabled
    [ 0.649654] bootconsole [earlycon0] disabled
    [ 0.659464] Reference Linux version 4.4.12
    [ 0.663761] File /home/test/ti/ipnc_rdk-3.9.0/Source/ti_tools/linuxutils_3_23_00_01/packages/ti/sdo/linuxutils/cmem/src/module/cc
    [ 0.676335] no physical memory specified, continuing with no memory allocation capability...
    [ 0.684850] cmemk initialized
    [ 0.695117] loop: module loaded
    [ 0.756771] davinci_mdio 4a100800.mdio: davinci mdio revision 1.6
    [ 0.762907] libphy: 4a100800.mdio: probed
    [ 0.767785] davinci_mdio 4a100800.mdio: phy[25]: device 4a100800.mdio:19, driver TI DP83867
    [ 0.776777] cpsw 4a100000.ethernet: Detected MACID = 7c:66:9d:f8:bb:72
    [ 0.786887] 47401300.usb-phy supply vcc not found, using dummy regulator
    [ 0.816922] mousedev: PS/2 mouse device common for all mice
    [ 0.823433] omap_rtc 480c0000.rtc: rtc core: registered 480c0000.rtc as rtc0
    [ 0.830915] i2c /dev entries driver
    [ 0.835392] omap_wdt: OMAP Watchdog Timer Rev 0x00: initial timeout 60 sec
    [ 0.842525] sdhci: Secure Digital Host Controller Interface driver
    [ 0.848757] sdhci: Copyright(c) Pierre Ossman
    [ 0.972203] omap_hsmmc 48060000.mmc: card claims to support voltages below defined range
    [ 0.990986] mmc0: queuing unknown CIS tuple 0x91 (3 bytes)
    [ 0.997343] mmc0: new high speed SDIO card at address 0001
    [ 1.006978] Synopsys Designware Multimedia Card Interface Driver
    [ 1.013487] sdhci-pltfm: SDHCI platform and OF driver helper
    [ 1.020485] notify_shm_drv: no DSP present (MULTIPROC_INVALIDID)
    [ 1.029109] davinci_evm sound: ASoC: CODEC DAI tlv320aic3x-hifi not registered
    [ 1.036386] davinci_evm sound: snd_soc_register_card failed (-517)
    [ 1.043862] NET: Registered protocol family 10
    [ 1.050732] sit: IPv6 over IPv4 tunneling driver
    [ 1.056214] NET: Registered protocol family 17
    [ 1.060867] Key type dns_resolver registered
    [ 1.065350] omap_voltage_late_init: Could not get sys clk.
    [ 1.071263] Power Management for TI81XX.
    [ 1.080548] omap-gpmc 50000000.gpmc: GPMC revision 6.0
    [ 1.085733] gpmc_mem_init: disabling cs 0 mapped at 0x0-0x1000000
    [ 1.093558] nand: device found, Manufacturer ID: 0x2c, Chip ID: 0xca
    [ 1.100007] nand: Micron MT29F2G16ABAEAWP
    [ 1.104040] nand: 256 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64
    [ 1.111679] nand: using OMAP_ECC_BCH8_CODE_HW ECC scheme
    [ 1.117111] 8 ofpart partitions found on MTD device 8000000.nand
    [ 1.123145] Creating 8 MTD partitions on "8000000.nand":
    [ 1.128507] 0x000000000000-0x000000020000 : "NAND.SPL"
    [ 1.138310] 0x000000020000-0x000000420000 : "NAND.u-boot"
    [ 1.146488] 0x000000420000-0x000000440000 : "NAND.u-boot-env"
    [ 1.153594] 0x000000440000-0x000000a40000 : "NAND.kernel"
    [ 1.162510] 0x000000a40000-0x00000ca40000 : "NAND.file-system"
    [ 1.208561] mmc1: host does not support reading read-only switch, assuming write-enable
    [ 1.226788] mmc1: new high speed SDHC card at address aaaa
    [ 1.246767] mmcblk0: mmc1:aaaa SS08G 7.40 GiB
    [ 1.256847] mmcblk0: p1 p2
    [ 1.262760] 0x00000ca40000-0x00000ca80000 : "NAND.u-boot-spl-os"
    [ 1.270161] 0x00000ca80000-0x00000d680000 : "NAND.data"
    [ 1.280993] 0x00000d680000-0x000010000000 : "NAND.reserved"
    [ 1.343764] tps65910-rtc tps65910-rtc: rtc core: registered tps65910-rtc as rtc1
    [ 1.351470] omap_i2c 48028000.i2c: bus 0 rev0.11 at 400 kHz
    [ 1.358984] omap_i2c 4802a000.i2c: bus 1 rev0.11 at 100 kHz
    [ 1.365789] davinci_evm sound: ASoC: DAPM unknown pin MONO_LOUT
    [ 1.372929] davinci_evm sound: tlv320aic3x-hifi <-> 4803c000.mcasp mapping ok
    [ 1.382352] omap_rtc 480c0000.rtc: setting system clock to 2000-01-01 00:00:00 UTC (946684800)
    [ 1.404480] net eth0: initializing cpsw version 1.10 (0)
    [ 1.409918] net eth0: initialized cpsw ale version 1.3
    [ 1.418410] net eth0: phy found : id is : 0x2000a231
    [ 1.423450] libphy: PHY not found
    [ 1.426895] net eth0: phy "" not found on slave 1, err -19
    [ 1.438989] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 4.417660] cpsw 4a100000.ethernet eth0: Link is Up - 100Mbps/Full - flow control rx/tx
    [ 4.436763] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
    [ 4.456739] IP-Config: Guessing netmask 255.255.255.0
    [ 4.461957] IP-Config: Complete:
    [ 4.465212] device=eth0, hwaddr=7c:66:9d:f8:bb:72, ipaddr=192.168.1.125, mask=255.255.255.0, gw=255.255.255.255
    [ 4.475904] host=192.168.1.125, domain=, nis-domain=(none)
    [ 4.481891] bootserver=255.255.255.255, rootserver=192.168.1.100, rootpath=
    [ 4.489438] wlan-en-regulator: disabling
    [ 4.493707] ALSA device list:
    [ 4.496691] #0: TI81XX-CSK

    [ 184.549734] random: nonblocking pool is initialized
    [ 309.976870] VFS: Unable to mount root fs via NFS, trying floppy.
    [ 309.983340] VFS: Cannot open root device "nfs" or unknown-block(2,0): error -6
    [ 309.990636] Please append a correct "root=" boot option; here are the available partitions:
    [ 309.999059] 1f00 128 mtdblock0 (driver?)
    [ 310.004148] 1f01 4096 mtdblock1 (driver?)
    [ 310.009248] 1f02 128 mtdblock2 (driver?)
    [ 310.014331] 1f03 6144 mtdblock3 (driver?)
    [ 310.019428] b300 7761920 mmcblk0 driver: mmcblk
    [ 310.024775] b301 72261 mmcblk0p1 00000000-01
    [ 310.030142] b302 7679070 mmcblk0p2 00000000-02
    [ 310.035485] 1f04 196608 mtdblock4 (driver?)
    [ 310.040585] 1f05 256 mtdblock5 (driver?)
    [ 310.045667] 1f06 12288 mtdblock6 (driver?)
    [ 310.050764] 1f07 42496 mtdblock7 (driver?)
    [ 310.055846] Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(2,0)
    [ 310.064152] ---[ end Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(2,0)


    It stoped booting here. Continued in next post
  • I felt like missing root, wrong console etc so modified the bootargs instruction like below;

    setenv bootargs console=ttyS0,115200n8 root=/dev/mmcblk0p2 rootwait rw mem=80M vram=4M cmemk.phys_start=0x85000000 cmemk.phys_end=0x89000000 cmemk.allowOverlap=1 notifyk.vpssm3_sva=0xBFD00000 ip=192.168.1.125 earlyprintk

    (By including console, root, mem, vram and optargs as in mmcargs instruction)

    For the modified bootargs I'm getting the same static board IP(192.168.1.224), following is the complete boot log;


    U-Boot SPL 2016.05 (Jul 03 2017 - 12:41:39)
    Trying to boot from MMC2
    reading u-boot.img
    reading u-boot.img


    U-Boot 2016.05 (Jul 03 2017 - 12:41:39 +0530)

    I2C:ready
    DRAM: 1 GiB
    MMC: OMAP SD/MMC: 0
    Net: cpsw
    Hit any key to stop autoboot: 1 0
    switch to partitions #0, OK
    mmc0 is current device
    SD/MMC found on device 0
    Booting from mmc ...
    ## Error: "mmcargs" not defined
    reading uImage
    2662672 bytes read in 299 ms (8.5 MiB/s)
    reading dm38x-csk.dtb
    58698 bytes read in 12 ms (4.7 MiB/s)
    ## Booting kernel from Legacy Image at 82000000 ...
    Image Name: Linux-4.4.12
    Image Type: ARM Linux Kernel Image (uncompressed)
    Data Size: 2662608 Bytes = 2.5 MiB
    Load Address: 80008000
    Entry Point: 80008000
    Verifying Checksum ... OK
    ## Flattened Device Tree blob at 84000000
    Booting using the fdt blob at 0x84000000
    Loading Kernel Image ... OK
    Loading Device Tree to 844ee000, end 844ff549 ... OK

    Starting kernel ...

    [ 0.000000] Booting Linux on physical CPU 0x0
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 4.4.12 (test@test-rtdr) (gcc version 5.3.1 20160113 (Linaro GCC 5.3-2016.02) ) #2 Mon Jul 3 12:42:44 IST 2017
    [ 0.000000] CPU: ARMv7 Processor [413fc082] revision 2 (ARMv7), cr=10c5387d
    [ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
    [ 0.000000] Machine model: DM38X CSK
    [ 0.000000] bootconsole [earlycon0] enabled
    [ 0.000000] omap_barrier_reserve_memblock():Reserving DRAM area @ addr = 0x84e00000 size = 1048576 Bytes
    [ 0.000000] cma: Reserved 24 MiB at 0x82c00000
    [ 0.000000] Memory policy: Data cache writeback
    [ 0.000000] TI81XX: Map 0x84e00000 to 0xfe500000 for dram barrier
    [ 0.000000] TI81XX: Map 0x40300000 to 0xfe600000 for sram barrier
    [ 0.000000] CPU: All CPU(s) started in SVC mode.
    [ 0.000000] TI814X ES1.0 (iva neon )
    [ 0.000000] powerdomain: gem_pwrdm: voltagedomain dsp does not exist
    [ 0.000000] powerdomain: ivahd_pwrdm: voltagedomain iva does not exist
    [ 0.000000] powerdomain: hdvpss_pwrdm: voltagedomain dsp does not exist
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 19788
    [ 0.000000] Kernel command line: console=ttyS0,115200n8 root=/dev/mmcblk0p2 rootwait rw mem=80M vram=4M cmemk.phys_start=0x85000000 cmemk.phys_end=0x89000000 cmemk.allowOverlap=1 notifyk.vpssm3_sva=0xBFD00000 earlyprintk ip=192.168.1.125 192.168.1.100 192.168.1.1::off
    [ 0.000000] PID hash table entries: 512 (order: -1, 2048 bytes)
    [ 0.000000] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)
    [ 0.000000] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes)
    [ 0.000000] Memory: 46656K/79872K available (4911K kernel code, 260K rwdata, 1704K rodata, 272K init, 241K bss, 8640K reserved, 24576K cma-reserved, 0K highmem)
    [ 0.000000] Virtual kernel memory layout:
    [ 0.000000] vector : 0xffff0000 - 0xffff1000 ( 4 kB)
    [ 0.000000] fixmap : 0xffc00000 - 0xfff00000 (3072 kB)
    [ 0.000000] vmalloc : 0xc5800000 - 0xff800000 ( 928 MB)
    [ 0.000000] lowmem : 0xc0000000 - 0xc5000000 ( 80 MB)
    [ 0.000000] pkmap : 0xbfe00000 - 0xc0000000 ( 2 MB)
    [ 0.000000] modules : 0xbf000000 - 0xbfe00000 ( 14 MB)
    [ 0.000000] .text : 0xc0008000 - 0xc067dfa4 (6616 kB)
    [ 0.000000] .init : 0xc067e000 - 0xc06c2000 ( 272 kB)
    [ 0.000000] .data : 0xc06c2000 - 0xc0703308 ( 261 kB)
    [ 0.000000] .bss : 0xc0703308 - 0xc073f718 ( 242 kB)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    [ 0.000000] NR_IRQS:16 nr_irqs:16 16
    [ 0.000000] IRQ: Found an INTC at 0xfa200000 (revision 5.0) with 128 interrupts
    [ 0.000000] OMAP clockevent source: timer2 at 20000000 Hz
    [ 0.000017] sched_clock: 32 bits at 20MHz, resolution 50ns, wraps every 107374182375ns
    [ 0.008266] clocksource: timer1: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 95563022313 ns
    [ 0.017841] OMAP clocksource: timer1 at 20000000 Hz
    [ 0.023135] Console: colour dummy device 80x30
    [ 0.027834] Calibrating delay loop... 597.60 BogoMIPS (lpj=2988032)
    [ 0.086910] pid_max: default: 32768 minimum: 301
    [ 0.091861] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes)
    [ 0.098772] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes)
    [ 0.106811] Initializing cgroup subsys io
    [ 0.111044] Initializing cgroup subsys memory
    [ 0.115669] Initializing cgroup subsys devices
    [ 0.120343] Initializing cgroup subsys freezer
    [ 0.125023] Initializing cgroup subsys pids
    [ 0.129435] CPU: Testing write buffer coherency: ok
    [ 0.134890] Setting up static identity map for 0x800082c0 - 0x80008318
    [ 0.142698] devtmpfs: initialized
    [ 0.168893] VFP support v0.3: implementor 41 architecture 3 part 30 variant c rev 3
    [ 0.217242] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
    [ 0.229379] pinctrl core: initialized pinctrl subsystem
    [ 0.236173] NET: Registered protocol family 16
    [ 0.242469] DMA: preallocated 256 KiB pool for atomic coherent allocations
    [ 0.255488] OMAP GPIO hardware version 0.1
    [ 0.268106] omap-gpmc 50000000.gpmc: could not find pctldev for node /ocp/l4ls@48000000/control@140000/pinmux@800/nandflash_pins_s0, deferring probe
    [ 0.301852] edma 49000000.edma: TI EDMA DMA engine driver
    [ 0.310132] omap_i2c 48028000.i2c: could not find pctldev for node /ocp/l4ls@48000000/control@140000/pinmux@800/pinmux_i2c0_pins, deferring probe
    [ 0.323736] omap_i2c 4802a000.i2c: could not find pctldev for node /ocp/l4ls@48000000/control@140000/pinmux@800/pinmux_i2c1_pins, deferring probe
    [ 0.337408] media: Linux media interface: v0.10
    [ 0.342224] Linux video capture interface: v2.00
    [ 0.347135] pps_core: LinuxPPS API ver. 1 registered
    [ 0.352330] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    [ 0.361857] PTP clock support registered
    [ 0.365998] EDAC MC: Ver: 3.0.0
    [ 0.370052] Advanced Linux Sound Architecture Driver Initialized.
    [ 0.377505] clocksource: Switched to clocksource timer1
    [ 0.394943] NET: Registered protocol family 2
    [ 0.400317] TCP established hash table entries: 1024 (order: 0, 4096 bytes)
    [ 0.407632] TCP bind hash table entries: 1024 (order: 0, 4096 bytes)
    [ 0.414270] TCP: Hash tables configured (established 1024 bind 1024)
    [ 0.420991] UDP hash table entries: 256 (order: 0, 4096 bytes)
    [ 0.427096] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
    [ 0.433815] NET: Registered protocol family 1
    [ 0.438762] RPC: Registered named UNIX socket transport module.
    [ 0.444945] RPC: Registered udp transport module.
    [ 0.449902] RPC: Registered tcp transport module.
    [ 0.454828] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [ 0.462941] omap-iommu 55082000.mmu: 55082000.mmu registered
    [ 0.470051] futex hash table entries: 256 (order: -1, 3072 bytes)
    [ 0.487024] NFS: Registering the id_resolver key type
    [ 0.492447] Key type id_resolver registered
    [ 0.496839] Key type id_legacy registered
    [ 0.502737] io scheduler noop registered
    [ 0.506873] io scheduler deadline registered
    [ 0.511625] io scheduler cfq registered (default)
    [ 0.517964] pinctrl-single 48140800.pinmux: 270 pins at pa fa140800 size 1080
    [ 0.599061] Serial: 8250/16550 driver, 10 ports, IRQ sharing disabled
    [ 0.610072] console [ttyS0] disabled
    [ 0.613888] 48020000.uart: ttyS0 at MMIO 0x48020000 (irq = 21, base_baud = 3000000) is a 8250
    [ 0.622848] console [ttyS0] enabled
    [ 0.622848] console [ttyS0] enabled
    [ 0.630041] bootconsole [earlycon0] disabled
    [ 0.630041] bootconsole [earlycon0] disabled
    [ 0.639853] Reference Linux version 4.4.12
    [ 0.644149] File /home/test/ti/ipnc_rdk-3.9.0/Source/ti_tools/linuxutils_3_23_00_01/packages/ti/sdo/linuxutils/cmem/src/module/cmemk.c
    [ 0.658877] allocated heap buffer 0xc8000000 of size 0x4000000
    [ 0.664754] cmemk initialized
    [ 0.675058] loop: module loaded
    [ 0.737569] davinci_mdio 4a100800.mdio: davinci mdio revision 1.6
    [ 0.743705] libphy: 4a100800.mdio: probed
    [ 0.748592] davinci_mdio 4a100800.mdio: phy[25]: device 4a100800.mdio:19, driver TI DP83867
    [ 0.757584] cpsw 4a100000.ethernet: Detected MACID = 7c:66:9d:f8:bb:72
    [ 0.767697] 47401300.usb-phy supply vcc not found, using dummy regulator
    [ 0.797782] mousedev: PS/2 mouse device common for all mice
    [ 0.804298] omap_rtc 480c0000.rtc: rtc core: registered 480c0000.rtc as rtc0
    [ 0.811773] i2c /dev entries driver
    [ 0.816237] omap_wdt: OMAP Watchdog Timer Rev 0x00: initial timeout 60 sec
    [ 0.823368] sdhci: Secure Digital Host Controller Interface driver
    [ 0.829604] sdhci: Copyright(c) Pierre Ossman
    [ 0.953011] omap_hsmmc 48060000.mmc: card claims to support voltages below defined range
    [ 0.972024] mmc0: queuing unknown CIS tuple 0x91 (3 bytes)
    [ 0.978382] mmc0: new high speed SDIO card at address 0001
    [ 0.987772] Synopsys Designware Multimedia Card Interface Driver
    [ 0.994275] sdhci-pltfm: SDHCI platform and OF driver helper
    [ 1.001276] notify_shm_drv: no DSP present (MULTIPROC_INVALIDID)
    [ 1.007434] notify_init : notify drivercreated for remote proc id 1 at physical Address 0xbfd00000
    [ 1.019178] davinci_evm sound: ASoC: CODEC DAI tlv320aic3x-hifi not registered
    [ 1.026453] davinci_evm sound: snd_soc_register_card failed (-517)
    [ 1.033919] NET: Registered protocol family 10
    [ 1.040783] sit: IPv6 over IPv4 tunneling driver
    [ 1.046271] NET: Registered protocol family 17
    [ 1.050927] Key type dns_resolver registered
    [ 1.055514] omap_voltage_late_init: Could not get sys clk.
    [ 1.061424] Power Management for TI81XX.
    [ 1.070605] omap-gpmc 50000000.gpmc: GPMC revision 6.0
    [ 1.075790] gpmc_mem_init: disabling cs 0 mapped at 0x0-0x1000000
    [ 1.083677] nand: device found, Manufacturer ID: 0x2c, Chip ID: 0xca
    [ 1.090112] nand: Micron MT29F2G16ABAEAWP
    [ 1.094146] nand: 256 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64
    [ 1.101782] nand: using OMAP_ECC_BCH8_CODE_HW ECC scheme
    [ 1.107198] 8 ofpart partitions found on MTD device 8000000.nand
    [ 1.113254] Creating 8 MTD partitions on "8000000.nand":
    [ 1.118611] 0x000000000000-0x000000020000 : "NAND.SPL"
    [ 1.128399] 0x000000020000-0x000000420000 : "NAND.u-boot"
    [ 1.136610] 0x000000420000-0x000000440000 : "NAND.u-boot-env"
    [ 1.143731] 0x000000440000-0x000000a40000 : "NAND.kernel"
    [ 1.152667] 0x000000a40000-0x00000ca40000 : "NAND.file-system"
    [ 1.199362] mmc1: host does not support reading read-only switch, assuming write-enable
    [ 1.217582] mmc1: new high speed SDHC card at address aaaa
    [ 1.237556] mmcblk0: mmc1:aaaa SS08G 7.40 GiB
    [ 1.247437] mmcblk0: p1 p2
    [ 1.252926] 0x00000ca40000-0x00000ca80000 : "NAND.u-boot-spl-os"
    [ 1.260324] 0x00000ca80000-0x00000d680000 : "NAND.data"
    [ 1.271159] 0x00000d680000-0x000010000000 : "NAND.reserved"
    [ 1.334583] tps65910-rtc tps65910-rtc: rtc core: registered tps65910-rtc as rtc1
    [ 1.342293] omap_i2c 48028000.i2c: bus 0 rev0.11 at 400 kHz
    [ 1.349824] omap_i2c 4802a000.i2c: bus 1 rev0.11 at 100 kHz
    [ 1.356625] davinci_evm sound: ASoC: DAPM unknown pin MONO_LOUT
    [ 1.363699] davinci_evm sound: tlv320aic3x-hifi <-> 4803c000.mcasp mapping ok
    [ 1.373117] omap_rtc 480c0000.rtc: setting system clock to 2000-01-01 00:00:01 UTC (946684801)
    [ 1.395248] net eth0: initializing cpsw version 1.10 (0)
    [ 1.400687] net eth0: initialized cpsw ale version 1.3
    [ 1.409157] net eth0: phy found : id is : 0x2000a231
    [ 1.414198] libphy: PHY not found
    [ 1.417645] net eth0: phy "" not found on slave 1, err -19
    [ 1.429739] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 4.408408] cpsw 4a100000.ethernet eth0: Link is Up - 100Mbps/Full - flow control rx/tx
    [ 4.427550] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
    [ 4.447531] IP-Config: Guessing netmask 255.255.255.0
    [ 4.452737] IP-Config: Complete:
    [ 4.455991] device=eth0, hwaddr=7c:66:9d:f8:bb:72, ipaddr=192.168.1.125, mask=255.255.255.0, gw=255.255.255.255
    [ 4.466685] host=192.168.1.125, domain=, nis-domain=(none)
    [ 4.472674] bootserver=255.255.255.255, rootserver=255.255.255.255, rootpath=
    [ 4.480409] wlan-en-regulator: disabling
    [ 4.484678] ALSA device list:
    [ 4.487699] #0: TI81XX-CSK
    [ 4.495349] EXT4-fs (mmcblk0p2): mounting ext3 file system using the ext4 subsystem
    [ 4.652132] EXT4-fs (mmcblk0p2): recovery complete
    [ 4.658603] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null)
    [ 4.666790] VFS: Mounted root (ext3 filesystem) on device 179:2.
    [ 4.683745] devtmpfs: mounted
    [ 4.687319] Freeing unused kernel memory: 272K (c067e000 - c06c2000)
    [ 4.693732] This architecture does not have kernel memory protection.
    [ 4.913548] systemd[1]: System time before build time, advancing clock.
    [ 4.936499] random: systemd urandom read with 23 bits of entropy available
    [ 4.955061] systemd[1]: systemd 229 running in system mode. (-PAM -AUDIT -SELINUX -IMA -APPARMOR -SMACK +SYSVINIT -UTMP -LIBCRYPTSETUP -GCRYPT +GNUTLS +ACL -XZ -LZ4 -SECCOMP +BLKID -ELFUTILS +KMOD -IDN)
    [ 4.973863] systemd[1]: Detected architecture arm.

    Welcome to Arago 2016.05!

    [ 5.001904] systemd[1]: Set hostname to <ti81xx>.
    [ 5.247894] systemd[1]: Configuration file /etc/systemd/system/ipnc-rdk-usecase.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [ 5.378268] systemd[1]: Reached target Swap.
    [ OK ] Reached target Swap.
    [ 5.398401] systemd[1]: Listening on Network Service Netlink Socket.
    [ OK ] Listening on Network Service Netlink Socket.
    [ 5.427927] systemd[1]: Listening on udev Kernel Socket.
    [ OK ] Listening on udev Kernel Socket.
    [ 5.447771] systemd[1]: Reached target Remote File Systems.
    [ OK ] Reached target Remote File Systems.
    [ 5.468061] systemd[1]: Listening on Journal Socket.
    [ OK ] Listening on Journal Socket.
    [ 5.488101] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ OK ] Started Dispatch Password Requests to Console Directory Watch.
    [ 5.518000] systemd[1]: Listening on udev Control Socket.
    [ OK ] Listening on udev Control Socket.
    [ 5.537767] systemd[1]: Reached target Timers.
    [ OK ] Reached target Timers.
    [ 5.564134] systemd[1]: Created slice System Slice.
    [ OK ] Created slice System Slice.
    [ 5.603220] systemd[1]: Mounting /var/volatile...
    Mounting /var/volatile...
    [ 5.651714] systemd[1]: Mounting Temporary Directory...
    Mounting Temporary Directory...
    [ 5.683136] systemd[1]: Reached target Slices.
    [ OK ] Reached target Slices.
    [ 5.725494] systemd[1]: Mounting /media/ram...
    Mounting /media/ram...
    [ 5.756043] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ OK ] Listening on /dev/initctl Compatibility Named Pipe.
    [ 5.791712] systemd[1]: Starting udev Coldplug all Devices...
    Starting udev Coldplug all Devices...
    [ 5.828360] systemd[1]: Mounting POSIX Message Queue File System...
    Mounting POSIX Message Queue File System...
    [ 5.888049] systemd[1]: Listening on Journal Socket (/dev/log).
    [ OK ] Listening on Journal Socket (/dev/log).
    [ 5.909151] systemd[1]: Created slice system-serial\x2dgetty.slice.
    [ OK ] Created slice system-serial\x2dgetty.slice.
    [ 5.928027] systemd[1]: Listening on Syslog Socket.
    [ OK ] Listening on Syslog Socket.
    [ 5.976628] systemd[1]: Starting Journal Service...
    Starting Journal Service...
    [ 6.008551] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ OK ] Started Forward Password Requests to Wall Directory Watch.
    [ 6.037951] systemd[1]: Reached target Paths.
    [ OK ] Reached target Paths.
    [ 6.049193] systemd[1]: Created slice system-getty.slice.
    [ OK ] Created slice system-getty.slice.
    [ 6.096238] systemd[1]: Starting udev Kernel Device Manager...
    Starting udev Kernel Device Manager...
    [ 6.141884] systemd[1]: Starting Synchronize System and HW clocks...
    Starting Synchronize System and HW clocks...
    [ 6.207079] systemd[1]: Mounted POSIX Message Queue File System.
    [ OK ] Mounted POSIX Message Queue File System.
    [ 6.258386] systemd[1]: Mounted Temporary Directory.
    [ OK ] Mounted Temporary Directory.
    [ 6.278119] systemd[1]: Mounted /var/volatile.
    [ OK ] Mounted /var/volatile.
    [ 6.298056] systemd[1]: Mounted /media/ram.
    [ OK ] Mounted /media/ram.
    [ 6.318549] systemd[1]: Started Journal Service.
    [ OK ] Started Journal Service.
    [ OK ] Started udev Kernel Device Manager.
    [ OK ] Started Synchronize System and HW clocks.
    [ OK ] Started udev Coldplug all Devices.
    [ OK ] Found device /dev/ttyS0.
    [ OK ] Started IPNC RDK use case service.
    [ OK ] Reached target Local File Systems.
    [ OK ] Reached target System Initialization.
    [ OK ] Listening on D-Bus System Message Bus Socket.
    [ OK ] Reached target Sockets.
    [ OK ] Reached target Basic System.
    [ OK ] Started Kernel Logging Service.
    [ 7.436077] autorun-usecase.sh[114]: numid=1,iface=MIXER,name='PCM Playback Volume'
    [ 7.437883] autorun-usecase.sh[114]: ; type=INTEGER,access=rw---R--,values=2,min=0,max=127,step=0
    [ 7.439294] autorun-usecase.sh[114]: : values=115,115
    Starting uim-sysfs.service...
    [ 7.470918] autorun-usecase.sh[114]: | dBscale-min=-63.50dB,step=0.50dB,mute=0
    [ OK ] Started System Logging Service.
    [ OK ] Started Serial Getty on ttyS0.
    [ OK ] Started Getty on tty1.
    [ 7.570540] autorun-usecase.sh[114]: numid=31,iface=MIXER,name='PGA Capture Volume'
    [ OK ] Reached target Login Prompts.
    [ 7.593304] autorun-usecase.sh[114]: ; type=INTEGER,access=rw---R--,values=2,min=0,max=119,step=0
    [ 7.617252] autorun-usecase.sh[114]: : values=72,72
    [ 7.619920] autorun-usecase.sh[114]: | dBscale-min=0.00dB,step=0.50dB,mute=0
    [ OK ] Started D-Bus System Message Bus.
    [ 7.668264] autorun-usecase.sh[114]: numid=51,iface=MIXER,name='Right PGA Mixer Mic2R Switch'
    [ 7.693025] autorun-usecase.sh[114]: ; type=BOOLEAN,access=rw------,values=1
    [ 7.722175] autorun-usecase.sh[114]: : values=on
    [ 7.776363] autorun-usecase.sh[114]: numid=46,iface=MIXER,name='Left PGA Mixer Mic2L Switch'
    [ 7.801964] autorun-usecase.sh[114]: ; type=BOOLEAN,access=rw------,values=1
    [ 7.821949] autorun-usecase.sh[114]: : values=on
    [ 7.849813] autorun-usecase.sh[114]: Mount mtd6 and mtd7 partitions
    Starting Network Service...
    [ 7.985625] ubi0: attaching mtd6
    [ 8.165338] ubi0: scanning is finished
    [ OK ] Started Network Service.
    [ 8.250726] ubi0: attached mtd6 (name "NAND.data", size 12 MiB)
    [ 8.256697] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes
    [ 8.263675] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 512
    [ 8.270424] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096
    [ 8.277417] ubi0: good PEBs: 96, bad PEBs: 0, corrupted PEBs: 0
    [ 8.283391] ubi0: user volume: 1, internal volumes: 1, max. volumes count: 128
    [ 8.290666] ubi0: max/mean erase counter: 146/88, WL threshold: 4096, image sequence number: 4257597570
    [ 8.300117] ubi0: available PEBs: 0, total reserved PEBs: 96, PEBs reserved for bad PEB handling: 40
    [ 8.309791] ubi0: background thread "ubi_bgt0d" started, PID 147
    [ 8.500765] autorun-usecase.sh[114]: UBI device number 0, total 96 LEBs (12189696 bytes, 11.6 MiB), available 0 LEBs (0 bytes), LEB size 126976 bytes (124.0 KiB)
    [ 9.137670] UBIFS (ubi0:0): background thread "ubifs_bgt0_0" started, PID 151
    [ 9.209865] UBIFS (ubi0:0): recovery needed
    [ 9.399883] UBIFS (ubi0:0): recovery completed
    [ 9.404461] UBIFS (ubi0:0): UBIFS: mounted UBI device 0, volume 0, name "ubifs_volume"
    [ 9.412478] UBIFS (ubi0:0): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes
    [ 9.422461] UBIFS (ubi0:0): FS size: 5332992 bytes (5 MiB, 42 LEBs), journal size 1015809 bytes (0 MiB, 6 LEBs)
    [ 9.432611] UBIFS (ubi0:0): reserved for root: 251889 bytes (245 KiB)
    [ 9.439107] UBIFS (ubi0:0): media format: w4/r0 (latest is w4/r0), UUID F461BEDD-8567-4496-BC5C-1BA9A14B7A02, small LPT model
    [ OK ] Reached target Network.
    Starting Network Name Resolution...
    [ OK ] Started Network Name Resolution.
    [ 10.253751] ubi1: attaching mtd7
    [ OK ] Started uim-sysfs.service.
    Starting telnetd.service...
    [ OK ] Started telnetd.service.
    [ 10.545448] ubi1: scanning is finished
    [ 10.575975] ubi1: attached mtd7 (name "NAND.reserved", size 41 MiB)
    [ 10.582360] ubi1: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes
    [ 10.589301] ubi1: min./max. I/O unit sizes: 2048/2048, sub-page size 512
    [ 10.596034] ubi1: VID header offset: 2048 (aligned 2048), data offset: 4096
    [ 10.603043] ubi1: good PEBs: 332, bad PEBs: 0, corrupted PEBs: 0
    [ 10.609092] ubi1: user volume: 1, internal volumes: 1, max. volumes count: 128
    [ 10.616350] ubi1: max/mean erase counter: 10/5, WL threshold: 4096, image sequence number: 2076213917
    [ 10.625627] ubi1: available PEBs: 0, total reserved PEBs: 332, PEBs reserved for bad PEB handling: 40
    [ 10.639163] ubi1: background thread "ubi_bgt1d" started, PID 168
    Starting thermal-zone-init.service...
    [ OK ] Started thermal-zone-init.service.
    [ 10.720317] autorun-usecase.sh[114]: UBI device number 1, total 332 LEBs (42156032 bytes, 40.2 MiB), available 0 LEBs (0 bytes), LEB size 126976 bytes (124.0 KiB)
    [ OK ] Reached target Multi-User System.
    [ 11.277684] UBIFS (ubi1:0): background thread "ubifs_bgt1_0" started, PID 181
    [ 11.302609] UBIFS (ubi1:0): recovery needed
    [ 11.335634] UBIFS (ubi1:0): recovery completed
    [ 11.340272] UBIFS (ubi1:0): UBIFS: mounted UBI device 1, volume 0, name "ubifs_volume"
    [ 11.348268] UBIFS (ubi1:0): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes
    [ 11.358249] UBIFS (ubi1:0): FS size: 35299328 bytes (33 MiB, 278 LEBs), journal size 1777664 bytes (1 MiB, 14 LEBs)
    [ 11.368747] UBIFS (ubi1:0): reserved for root: 1667274 bytes (1628 KiB)
    [ 11.375400] UBIFS (ubi1:0): media format: w4/r0 (latest is w4/r0), UUID 4EA17009-DE44-4BB2-8641-EE0F5F7AC799, small LPT model

    [ 11.891048] autorun-usecase.sh[114]: wifi: in STA mode
    _____ _____ _ _
    | _ |___ ___ ___ ___ | _ |___ ___ |_|___ ___| |_
    | | _| .'| . | . | | __| _| . | | | -_| _| _|
    |__|__|_| |__,|_ |___| |__| |_| |___|_| |___|___|_|
    |___| |___|

    Arago Project http://arago-project.org ti81xx ttyS0

    Arago 2016.05 ti81xx ttyS0

    ti81xx login: [ 12.593347] cfg80211: World regulatory domain updated:
    [ 12.598629] cfg80211: DFS Master region: unset
    [ 12.603009] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
    [ 12.612837] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
    [ 12.620898] cfg80211: (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
    [ 12.628956] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)
    [ 12.637001] cfg80211: (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (N/A)
    [ 12.646544] cfg80211: (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (0 s)
    [ 12.656085] cfg80211: (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)
    [ 12.664229] cfg80211: (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
    [ 12.672285] cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)
    [ 13.400517] wl18xx_driver wl18xx.1.auto: Direct firmware load for ti-connectivity/wl1271-nvs.bin failed with error -2
    [ 13.788153] wlcore: wl18xx HW: 183x or 180x, PG 2.2 (ROM 0x11)
    [ 13.815339] wlcore: loaded
    [ 14.407059] wlcore: PHY firmware version: Rev 8.2.0.0.232
    [ 14.510611] wlcore: firmware booted (Rev 8.9.0.0.48)
    [ 14.516009] random: nonblocking pool is initialized
    [ 14.534167] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 18.649774] autorun-usecase.sh[114]: SSID: Not_a_Red_Buffalo
    [ 18.651663] autorun-usecase.sh[114]: SSID: HP-Print-0B-Officejet Pro 8610
    [ 18.653065] autorun-usecase.sh[114]: SSID: HP-Print-07-Deskjet 3540 series
    [ 19.016321] <1>SysLink version : 2.21.02.10
    [ 19.016321] SysLink module created on Date:Jul 3 2017 Time:11:06:37
    [ 19.026994] <1>Trace enabled
    [ 19.029923] <1>Trace SetFailureReason enabled
    [ 19.118074] autorun-usecase.sh[114]: /dev/mem opened.
    [ 19.119791] autorun-usecase.sh[114]: Phy Addr : 0x48181560 Data : 0x00000002
    [ 19.127435] autorun-usecase.sh[114]: Phy Addr : 0x48180f10 Data : 0x00000000
    [ 19.132289] autorun-usecase.sh[114]: Phy Addr : 0x48180508 Data : 0x00000302
    [ 19.134064] autorun-usecase.sh[114]: Phy Addr : 0x48180520 Data : 0x00000002
    [ 19.135558] autorun-usecase.sh[114]: Phy Addr : 0x48180524 Data : 0x00000002
    [ 19.136941] autorun-usecase.sh[114]: Phy Addr : 0x48180528 Data : 0x00000002
    [ 19.138305] autorun-usecase.sh[114]: Phy Addr : 0x4c0000e4 Data : 0x00170209
    [ 19.139834] autorun-usecase.sh[114]: Phy Addr : 0x4c0000e4 Data : 0x00170209
    [ 19.141321] autorun-usecase.sh[114]: DDR IOs RX is shutdown
    [ 19.142789] autorun-usecase.sh[114]: Phy Addr : 0x48180a04 Data : 0x00000000
    [ 20.085091] autorun-usecase.sh[114]: /opt/ipnc/autorun-usecase.sh: line 52: kill: (228) - No such process
    [ 20.111898] autorun-usecase.sh[114]: [host] Setting DMM priority for [HDVICP0 ] to [1] ( 0x4e000634 = 0x00000009 )
    [ 20.115340] autorun-usecase.sh[114]: [host] Setting L3 bandwidth regulator for [ISS ] to [press=[3,3] BW=400, WM Cycles=2500]
    [ 20.118720] autorun-usecase.sh[114]: [host] Setting L3 bandwidth regulator for [HDVICP0 ] to [press=[0,0] BW=900, WM Cycles=2500]
    [ 20.124733] autorun-usecase.sh[114]: [host] Setting DMM priority for [ISS ] to [0] ( 0x4e000634 = 0x00080000 )
    [ 20.186099] autorun-usecase.sh[114]: insmod: ERROR: could not insert module sbull.ko: File exists
    [ 21.219268] autorun-usecase.sh[114]: mkfs.fat 3.0.28 (2015-05-16)
    [ 21.221084] autorun-usecase.sh[114]: unable to get drive geometry, using default 255/63
    [ 21.223608] autorun-usecase.sh[114]: /dev/sbulla has 255 heads and 63 sectors per track,
    [ 21.230122] autorun-usecase.sh[114]: hidden sectors 0x0000;
    [ 21.231987] autorun-usecase.sh[114]: logical sector size is 512,
    [ 21.233601] autorun-usecase.sh[114]: using 0xf8 media descriptor, with 1024 sectors;
    [ 21.238679] autorun-usecase.sh[114]: drive number 0x80;
    [ 21.242272] autorun-usecase.sh[114]: filesystem has 2 16-bit FATs and 4 sectors per cluster.
    [ 21.245663] autorun-usecase.sh[114]: FAT size is 1 sector, and provides 247 clusters.
    [ 21.247403] autorun-usecase.sh[114]: There is 1 reserved sector.
    [ 21.248948] autorun-usecase.sh[114]: Root directory contains 512 slots and uses 32 sectors.
    [ 21.252655] autorun-usecase.sh[114]: Volume ID is 9c04e4c0, no volume label.
    [ 21.499219] Mass Storage Function, version: 2009/09/11
    [ 21.504412] LUN: removable file: (no medium)
    [ 21.538261] LUN: removable file: /dev/sbulla
    [ 21.542607] Number of LUNs=1
    [ 21.562011] g_mass_storage gadget: Mass Storage Gadget, version: 2009/09/11
    [ 21.569090] g_mass_storage gadget: userspace failed to provide iSerialNumber
    [ 21.576172] g_mass_storage gadget: g_mass_storage ready
    [ 21.619486] autorun-usecase.sh[114]: Creat queue id:0
    [ 21.622458] autorun-usecase.sh[114]: queue id:0
    [ 21.625752] autorun-usecase.sh[114]: Creat queue id:32769
    [ 21.633848] autorun-usecase.sh[114]: queue id:32769
    [ 21.640116] autorun-usecase.sh[114]: Creat queue id:65538
    [ 21.642866] autorun-usecase.sh[114]: queue id:65538
    [ 21.648367] autorun-usecase.sh[114]: Creat queue id:98307
    [ 21.660122] autorun-usecase.sh[114]: queue id:98307
    [ 21.666384] autorun-usecase.sh[114]: queue id:32769
    [ 21.735486] autorun-usecase.sh[114]: [host] Attached to slave procId 1.
    [ 22.580990] autorun-usecase.sh[114]: [host] Attached to slave procId 0.
    [ 22.583343] autorun-usecase.sh[114]: [host] Loaded file ./firmware/ipnc_rdk_fw_m3vpss.xem3 on slave procId 1.
    [ 22.750492] autorun-usecase.sh[114]: [host] Started slave procId 1.
    [ 22.752851] autorun-usecase.sh[114]: [host] Loaded file ./firmware/ipnc_rdk_fw_m3video.xem3 on slave procId 0.
    [ 22.837980] autorun-usecase.sh[114]: [host] Started slave procId 0.
    [ 22.840138] autorun-usecase.sh[114]: [host] After Ipc_loadcallback status [0x00000000]
    [ 22.842135] autorun-usecase.sh[114]: [host] After Ipc_loadcallback status [0x00000000]
    [ 22.923851] autorun-usecase.sh[114]: [host] After Ipc_startcallback status [0x00000000]
    [ 22.960956] autorun-usecase.sh[114]: [host] After Ipc_startcallback status [0x00000000]
    [ 23.028376] autorun-usecase.sh[114]: [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
    [ 23.032500] autorun-usecase.sh[114]: [m3video] Remote Debug Shared Memory @ 0xbff05020
    [ 23.035544] autorun-usecase.sh[114]: [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
    [ 23.038707] autorun-usecase.sh[114]: [m3vpss ] Received character 's'
    [ 23.128257] autorun-usecase.sh[114]: [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
    [ 23.130389] autorun-usecase.sh[114]: [m3video] Remote Debug Shared Memory @ 0xbff05020
    [ 23.137709] autorun-usecase.sh[114]: [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
    [ 23.150597] autorun-usecase.sh[114]: [m3video] Received character 's'
    [ 23.152718] autorun-usecase.sh[114]: queue id:65538
    [ 23.161344] autorun-usecase.sh[114]: Creat queue id:131076
    [ 23.163726] autorun-usecase.sh[114]: queue id:131076
    [ 23.171513] autorun-usecase.sh[114]: CPU is TI812x
    [ 23.269905] autorun-usecase.sh[114]: Creat queue id:163845
    [ 23.271817] autorun-usecase.sh[114]: queue id:163845
    [ 23.273212] autorun-usecase.sh[114]: queue id:65538
    [ 23.359512] autorun-usecase.sh[114]: [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
    [ 23.361952] autorun-usecase.sh[114]: [m3video] Remote Debug Shared Memory @ 0xbff05020
    [ 23.365797] autorun-usecase.sh[114]: [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
    [ 23.424496] autorun-usecase.sh[114]: [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
    [ 23.426268] autorun-usecase.sh[114]: [m3video] Remote Debug Shared Memory @ 0xbff05020
    [ 23.429253] autorun-usecase.sh[114]: [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
    [ 23.448663] autorun-usecase.sh[114]: [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
    [ 23.450439] autorun-usecase.sh[114]: [m3video] Remote Debug Shared Memory @ 0xbff05020
    [ 23.451882] autorun-usecase.sh[114]: [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
    [ 23.453198] autorun-usecase.sh[114]: [m3video] ***** SYSTEM : Frequency <ORG> - 200000000, <NEW> - 200000000
    [ 23.472653] autorun-usecase.sh[114]: [m3vpss ] ***** SYSTEM : Frequency <ORG> - 200000000, <NEW> - 200000000
    [ 23.474566] autorun-usecase.sh[114]: [m3video]
    [ 23.479370] autorun-usecase.sh[114]: [m3vpss ] notify_attach rtnVal 0
    [ 23.481650] autorun-usecase.sh[114]: [m3video] *** UTILS: CPU KHz = 400000 Khz ***
    [ 23.487495] autorun-usecase.sh[114]: [m3video]
    [ 23.493973] autorun-usecase.sh[114]: [m3video] 36: SYSTEM : System Common Init in progress !!!
    [ 23.497058] autorun-usecase.sh[114]: [m3video] 36: SYSTEM: IPC init in progress !!!
    [ 23.499047] autorun-usecase.sh[114]: [m3video] 36: SYSTEM: Attaching to [HOST] ...
    [ 23.500992] autorun-usecase.sh[114]: [m3video] 86: SYSTEM: Attaching to [HOST] ...
    [ 23.502813] autorun-usecase.sh[114]: [m3vpss ] initProxyServer rtnVal 0
    [ 23.504370] autorun-usecase.sh[114]: [m3vpss ]
    [ 23.505895] autorun-usecase.sh[114]: [m3vpss ] *** UTILS: CPU KHz = 400000 Khz ***
    [ 23.507348] autorun-usecase.sh[114]: [m3vpss ]
    [ 23.508943] autorun-usecase.sh[114]: [m3vpss ] 67: SYSTEM : System Common Init in progress !!!
    [ 23.511001] autorun-usecase.sh[114]: [m3vpss ] 67: SYSTEM: IPC init in progress !!!
    [ 23.512562] autorun-usecase.sh[114]: [m3vpss ] 67: SYSTEM: Attaching to [HOST] ...
    [ 23.514076] autorun-usecase.sh[114]: [m3video] 94: SYSTEM: Attaching to [HOST] ... SUCCESS !!!
    [ 23.515536] autorun-usecase.sh[114]: [m3video] 94: SYSTEM: Attaching to [VPSS-M3] ...
    [ 23.517101] autorun-usecase.sh[114]: [m3vpss ] 117: SYSTEM: Attaching to [HOST] ...
    [ 23.518918] autorun-usecase.sh[114]: [m3vpss ] 131: SYSTEM: Attaching to [HOST] ... SUCCESS !!!
    [ 23.520915] autorun-usecase.sh[114]: [m3vpss ] 131: SYSTEM: Attaching to [VIDEO-M3] ...
    [ 23.522487] autorun-usecase.sh[114]: [m3video] 144: SYSTEM: Attaching to [VPSS-M3] ...
    [ 23.523954] autorun-usecase.sh[114]: [m3vpss ] 181: SYSTEM: Attaching to [VIDEO-M3] ...
    [ 23.525399] autorun-usecase.sh[114]: [m3video] 182: SYSTEM: Attaching to [VPSS-M3] ... SUCCESS !!!
    [ 23.527225] autorun-usecase.sh[114]: [m3vpss ] 182: SYSTEM: Attaching to [VIDEO-M3] ... SUCCESS !!!
    [ 23.528745] autorun-usecase.sh[114]: [m3video] 182: SYSTEM: Opening MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...
    [ 23.530361] autorun-usecase.sh[114]: [m3vpss ] 182: SYSTEM: Creating MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...
    [ 23.531867] autorun-usecase.sh[114]: [m3vpss ] 182: SYSTEM: Creating MsgQ [VPSS-M3_MSGQ] ...
    [ 23.533409] autorun-usecase.sh[114]: [m3vpss ] 183: SYSTEM: Creating MsgQ [VPSS-M3_ACK_MSGQ] ...
    [ 23.534881] autorun-usecase.sh[114]: [m3vpss ] 185: SYSTEM: Notify register to [HOST] line 0, event 12 ...
    [ 23.536389] autorun-usecase.sh[114]: [m3vpss ] 185: SYSTEM: Notify register to [VIDEO-M3] line 0, event 12 ...
    [ 23.537853] autorun-usecase.sh[114]: [m3vpss ] 185: SYSTEM: IPC init DONE !!!
    [ 23.539360] autorun-usecase.sh[114]: [m3vpss ] 196: MEM: Shared Region 2: Base = 0xb8000000, Length = 0x06900000 (105 MB)
    [ 23.545196] autorun-usecase.sh[114]: [m3vpss ] 196: MEM: Shared Region 1: Base = 0x89000000, Length = 0x03b00000 (59 MB)
    [ 23.547143] autorun-usecase.sh[114]: [m3vpss ] 199: SYSTEM : System Common Init Done !!!
    [ 23.548764] autorun-usecase.sh[114]: [m3video] 283: SYSTEM: Opening MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...
    [ 23.550411] autorun-usecase.sh[114]: [m3video] 283: SYSTEM: Creating MsgQ [VIDEO-M3_MSGQ] ...
    [ 23.552020] autorun-usecase.sh[114]: [m3video] 283: SYSTEM: Creating MsgQ [VIDEO-M3_ACK_MSGQ] ...
    [ 23.553587] autorun-usecase.sh[114]: [m3video] 285: SYSTEM: Notify register to [HOST] line 0, event 12 ...
    [ 23.555107] autorun-usecase.sh[114]: [m3video] 286: SYSTEM: Notify register to [VPSS-M3] line 0, event 12 ...
    [ 23.556708] autorun-usecase.sh[114]: [m3video] 286: SYSTEM: IPC init DONE !!!
    [ 23.558181] autorun-usecase.sh[114]: [m3video] 296: MEM: Shared Region 2: Base = 0xb8000000, Length = 0x06900000 (105 MB)
    [ 23.559675] autorun-usecase.sh[114]: [m3video] 297: MEM: Shared Region 1: Base = 0x89000000, Length = 0x03b00000 (59 MB)
    [ 23.561353] autorun-usecase.sh[114]: [m3video] 299: SYSTEM : System Common Init Done !!!
    [ 23.562863] autorun-usecase.sh[114]: [m3video] 599: SYSTEM : System Video Init in progress !!!
    [ 23.564319] autorun-usecase.sh[114]: [m3vpss ] 598: SYSTEM : System VPSS Init in progress !!!
    [ 23.565877] autorun-usecase.sh[114]: [m3video] 599: SYSTEM: Creating ListMP [VIDEO-M3_IPC_OUT_0] in region 0 ...
    [ 23.567544] autorun-usecase.sh[114]: [m3vpss ] PLATFORM: UNKNOWN CPU detected, defaulting to ISS_PLATFORM_CPU_REV_2_1
    [ 23.572163] autorun-usecase.sh[114]: [m3video] 600: SYSTEM: Creating ListMP [VIDEO-M3_IPC_IN_0] in region 0 ...
    [ 23.581236] autorun-usecase.sh[114]: [m3vpss ] 599: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_0] in region 0 ...
    [ 23.585735] autorun-usecase.sh[114]: [m3video] 600: SYSTEM: ListElem Shared Addr = 0xbe987680
    [ 23.591369] autorun-usecase.sh[114]: [m3vpss ] 600: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_0] in region 0 ...
    [ 23.595868] autorun-usecase.sh[114]: [m3vpss ] 600: SYSTEM: ListElem Shared Addr = 0xbe984700
    [ 23.600133] autorun-usecase.sh[114]: [m3video] 602: SYSTEM: Creating ListMP [VIDEO-M3_IPC_OUT_1] in region 0 ...
    [ 23.610865] autorun-usecase.sh[114]: [m3vpss ] 602: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_1] in region 0 ...
    [ 23.612890] autorun-usecase.sh[114]: [m3video] 603: SYSTEM: Creating ListMP [VIDEO-M3_IPC_IN_1] in region 0 ...
    [ 23.617926] autorun-usecase.sh[114]: [m3vpss ] 603: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_1] in region 0 ...
    [ 23.954307] autorun-usecase.sh[114]: [m3video] 603: SYSTEM: ListElem Shared Addr = 0xbe98e080
    [ 23.956082] autorun-usecase.sh[114]: [m3vpss ] 603: SYSTEM: ListElem Shared Addr = 0xbe98b180
    [ 23.957763] autorun-usecase.sh[114]: [m3video] 613: SYSTEM: Creating ListMP [VIDEO-M3_IPC_OUT_29] in region 0 ...
    [ 23.959436] autorun-usecase.sh[114]: [m3vpss ] 616: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_24] in region 0 ...
    [ 23.961143] autorun-usecase.sh[114]: [m3video] 613: SYSTEM: Creating ListMP [VIDEO-M3_IPC_IN_29] in region 0 ...
    [ 23.962723] autorun-usecase.sh[114]: [m3vpss ] 617: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_24] in region 0 ...
    [ 23.964669] autorun-usecase.sh[114]: [m3video] 614: SYSTEM: LisApproDrvInit: 7
    [ 23.966338] autorun-usecase.sh[114]: queue id:163845
    [ 28.681405] autorun-usecase.sh[114]: [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
    [ 28.683219] autorun-usecase.sh[114]: [m3video] Remote Debug Shared Memory @ 0xbff05020
    [ 28.684631] autorun-usecase.sh[114]: [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
    [ 28.685939] autorun-usecase.sh[114]: [m3vpss ] Received character 't'
    [ 28.708885] autorun-usecase.sh[114]: [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
    [ 28.711084] autorun-usecase.sh[114]: [m3video] Remote Debug Shared Memory @ 0xbff05020
    [ 28.715282] autorun-usecase.sh[114]: [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
    [ 28.718653] autorun-usecase.sh[114]: [m3video] Received character 't'
    [ 28.764652] autorun-usecase.sh[114]: rmmod: ERROR: Module osa_kermod is not currently loaded
    [ 28.801125] autorun-usecase.sh[114]: /dev/mem opened.
    [ 28.802974] autorun-usecase.sh[114]: Phy Addr : 0x48180e00 Data : 0x00030000
    [ 28.804409] autorun-usecase.sh[[ 28.831291] DMA: Module install successful, device major num = 244
    114]: Phy Addr : 0x48180e10 Data : 0x00000007
    [ 28.841421] DRV: Module install successful
    [ 28.850766] DRV: Module built on Jul 3 2017 11:13:08
    [ 28.839841] autorun-usecase.sh[114]: Phy Addr : 0x48180e04 Data : 0x00000000
    [ 28.848526] autorun-usecase.sh[114]: Phy Addr : 0x48180e14 Data : 0x00000000
    [ 28.855363] autorun-usecase.sh[114]: Phy Addr : 0x48180800 Data : 0x00000001
    [ 28.862703] autorun-usecase.sh[114]: Phy Addr : 0x48180820 Data : 0x00070000
    [ 28.864559] autorun-usecase.sh[114]: Phy Addr : 0x48180824 Data : 0x00030000
    [ 28.866336] autorun-usecase.sh[114]: Phy Addr : 0x48180e04 Data : 0x00000000
    [ 28.867955] autorun-usecase.sh[114]: Phy Addr : 0x48180e00 Data : 0x00030000
    [ 28.869720] autorun-usecase.sh[114]: Phy Addr : 0x48180e10 Data : 0x00000007
    [ 28.871435] autorun-usecase.sh[114]: Phy Addr : 0x48180e04 Data : 0x00000000
    [ 28.873063] autorun-usecase.sh[114]: Phy Addr : 0x48180e14 Data : 0x00000000
    [ 28.874652] autorun-usecase.sh[114]: Phy Addr : 0x48180800 Data : 0x00000001
    [ 28.876264] autorun-usecase.sh[114]: Phy Addr : 0x48180820 Data : 0x00070000
    [ 28.877848] autorun-usecase.sh[114]: Phy Addr : 0x48180824 Data : 0x00030000
    [ 28.879516] autorun-usecase.sh[114]: Dss_Disable Done!.................
    [ 28.[ 28.966757] DMA: ChannelID allocated:4
    885414] autorun-usecase.sh[114]: [host] Application Start Completed
    [ 28.911170] autorun-usecase.sh[114]: [host] 0: SYST[ 28.986994] DMA: ChannelID allocated:5
    EM: System Common Init in progress !!!
    [ 28.917918] autorun-usecase.sh[114]: [host] 0: SYSTEM: IPC init in progress !!!
    [ 28.923681] autorun-usecase.sh[114]: [host] 10: SYSTEM: CPU [DSP] is NOT available on this platform !!!
    [ 28.928364] autorun-usecase.sh[114]: [host] 11: SYSTEM: CPU [VIDEO-M3] syslink proc ID is [0] !!!
    [ 28.932388] autorun-usecase.sh[114]: [host] 11: SYSTEM: CPU [VPSS-M3] syslink proc ID is [1] !!!
    [ 28.946844] autorun-usecase.sh[114]: [host] 11: SYSTEM: CPU [HOST] syslink proc ID is [2] !!!
    [ 28.958643] autorun-usecase.sh[114]: [host] 11: SYSTEM: Opening MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...
    [ 28.960751] autorun-usecase.sh[114]: [host] 12: SYSTEM: Creating MsgQ [HOST_MSGQ] ...
    [ 28.962573] autorun-usecase.sh[114]: [host] 12: SYSTEM: Creating MsgQ [HOST_ACK_MSGQ] ...
    [ 28.964320] autorun-usecase.sh[114]: [host] 12: SYSTEM: Opening MsgQ [VIDEO-M3_MSGQ] ...
    [ 28.965901] autorun-usecase.sh[114]: [host] 12: SYSTEM: Opening MsgQ [VPSS-M3_MSGQ] ...
    [ 28.967508] autorun-usecase.sh[114]: [host] 13: SYSTEM: Notify register to [VIDEO-M3] line 0, event 12 ...
    [ 28.973624] autorun-usecase.sh[114]: [host] 14: SYSTEM: Notify register to [VPSS-M3] line 0, event 12 ...
    [ 28.975291] autorun-usecase.sh[114]: [host] 14: SYSTEM: IPC init DONE !!!
    [ 28.980989] autorun-usecase.sh[114]: [host] 16: SYSTEM: Creating ListMP [HOST_IPC_OUT_29] in region 0 ...
    [ 28.983156] autorun-usecase.sh[114]: [host] 16: SYSTEM: Creating ListMP [HOST_IPC_IN_29] in region 0 ...
    [ 28.986451] autorun-usecase.sh[114]: [host] 16: SYSTEM: ListElem Shared Addr = 0xb5605580
    [ 28.991313] autorun-usecase.sh[114]: [host] 17: SYSTEM: Creating ListMP [HOST_IPC_OUT_30] in region 0 ...
    [ 28.993073] autorun-usecase.sh[114]: [host] 17: SYSTEM: Creating ListMP [HOST_IPC_IN_30] in region 0 ...
    [ 28.994768] autorun-usecase.sh[114]: [host] 17: SYSTEM: ListElem Shared Addr = 0xb561f200
    [ 28.996412] autorun-usecase.sh[114]: [host] 20: SYSTEM: Creating ListMP [HOST_IPC_OUT_24] in region 0 ...
    [ 28.998076] autorun-usecase.sh[114]: [host] 20: SYSTEM: Creating ListMP [HOST_IPC_IN_24] in region 0 ...
    [ 28.999794] autorun-usecase.sh[114]: [host] 21: SYSTEM: ListElem Shared Addr = 0xb5638e80
    [ 29.001600] autorun-usecase.sh[114]: [host] 23: SYSTEM: Creating ListMP [HOST_IPC_OUT_25] in region 0 ...
    [ 29.003263] autorun-usecase.sh[114]: [host] 23: SYSTEM: Creating ListMP [HOST_IPC_IN_25] in region 0 ...
    [ 29.004918] autorun-usecase.sh[114]: [host] 23: SYSTEM: ListElem Shared Addr = 0xb5658880
    [ 29.006499] autorun-usecase.sh[114]: [host] 24: SYSTEM: Creating ListMP [HOST_IPC_OUT_26] in region 0 ...
    [ 29.008175] autorun-usecase.sh[114]: [host] 25: SYSTEM: Creating ListMP [HOST_IPC_IN_26] in region 0 ...
    [ 29.009836] autorun-usecase.sh[114]: [host] 25: SYSTEM: ListElem Shared Addr = 0xb5678280
    [ 29.011577] autorun-usecase.sh[114]: [host] 27: SYSTEM: System Common Init Done !!!
    [ 29.013273] autorun-usecase.sh[114]: [host] Vsys_allocBuf - addr = 0xa73ae000,size = 65011712
    [ 29.014945] autorun-usecase.sh[114]: ##########pInfo->totalsize 63897600
    [ 29.016549] autorun-usecase.sh[114]: [host] MemMng_memcpy_open:OSA_dmaOpen passed with ch id = 4
    [ 29.018183] autorun-usecase.sh[114]: [host] CacheMng_MemCpy_open:OSA_dmaOpen passed with ch id = 5
    [ 29.021729] autorun-usecase.sh[114]: [host] MCFW_IPCFRAMES:App_ipcFramesSendRecvFxn:Entered...
    [ 29.023445] autorun-usecase.sh[114]: [host] Vsys_allocBuf - addr = 0xb6f41000,size = 33603
    [ 29.025145] autorun-usecase.sh[114]: [host] DCC buffer allocated for size 33603
    [ 29.026758] autorun-usecase.sh[114]: [host] DCC Default File Intialization Done
    [ 29.028406] autorun-usecase.sh[114]: [host]
    [ 29.030214] autorun-usecase.sh[114]: ********** LOW POWER USECASE ********
    [ 29.031826] autorun-usecase.sh[114]: [ 29.333576] DMA: ChannelID allocated:6
    [host] ********* Entered Tri Streaming usecase - H264 1080p @60[ 29.341889] DMA: ChannelID allocated:7
    fps + H264 D1 @30fps + MJPEG 1080p @5fps ********
    [ 29.033504] autorun-usecase.sh[114]: [host] 82: MCFW : CPU Revision [ES1.0] !!!
    [ 29.035084] autorun-usecase.sh[114]: [host] 82: MCFW : Detected [UNKNOWN] Board !!!
    [ 29.036707] autorun-usecase.sh[114]: [host] 82: MCFW : Base Board Revision [UNKNOWN] !!!
    [ 29.312209] autorun-usecase.sh[114]: tElem Shared Addr = 0xbe991580
    [ 29.314058] autorun-usecase.sh[114]: [m3vpss ] 617: SYSTEM: ListElem Shared Addr = 0xbe9c4e80
    [ 29.334167] autorun-usecase.sh[114]: [m3video] 616: SYSTEM: Creating ListMP [VIDEO-M3_IPC_OUT_30] in region 0 ...
    [ 29.336175] autorun-usecase.sh[114]: [m3vpss ] 620: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_25] in region 0 ...
    [ 29.337836] autorun-usecase.sh[114]: [m3video] 616: SYSTEM: Creating ListMP [VIDEO-M3_IPC_IN_30] in region 0 ...
    [ 29.339532] autorun-usecase.sh[114]: [m3vpss ] 620: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_25] in region 0 ...
    [ 29.341281] autorun-usecase.sh[114]: [m3video] 617: SYSTEM: ListElem Shared Addr = 0xbe9ab480
    [ 29.343178] autorun-usecase.sh[114]: [m3vpss ] 621: SYSTEM: ListElem Shared Addr = 0xbe9e4880
    [ 29.344958] autorun-usecase.sh[114]: [m3video] 619: HDVICP: Doing PRCM for IVAHD[0] ...
    [ 29.346634] autorun-usecase.sh[114]: [m3video] 619: HDVICP: PRCM for IVAHD[0] ... DONE.
    [ 29.348257] autorun-usecase.sh[114]: [m3video] 620: SYSTEM : Initializing Links !!!
    [ 29.349923] autorun-usecase.sh[114]: [m3video] 620: SYSTEM : FREE SPACE : System Heap = 2088976 B, Mbx = 10240 msgs)
    [ 29.351715] autorun-usecase.sh[114]: [m3vpss ] 624: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_26] in region 0 ...
    [ 29.353306] autorun-usecase.sh[114]: [m3vpss ] 624: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_26] in region 0 ...
    [ 29.355018] autorun-usecase.sh[114]: [m3video] 620: SYSTEM : FREE SPACE : SR0 Heap = 15841280 B (15 MB)
    [ 29.356617] autorun-usecase.sh[114]: [m3vpss ] 624: SYSTEM: ListElem Shared Addr = 0xbea04280
    [ 29.358206] autorun-usecase.sh[114]: [m3vpss ] 630: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_29] in region 0 ...
    [ 29.359969] autorun-usecase.sh[114]: [m3video] 621: SYSTEM : FREE SPACE : Frame Buffer = 110100352 B (104 MB)
    [ 29.361737] autorun-usecase.sh[114]: [m3vpss ] 631: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_29] in region 0 ...
    [ 29.363364] autorun-usecase.sh[114]: [m3vpss ] 631: SYSTEM: ListElem Shared Addr = 0xbea23c80
    [ 29.365059] autorun-usecase.sh[114]: [m3video] 621: SYSTEM : FREE SPACE : Bitstream Buffer = 61865856 B (58 MB)
    [ 29.366647] autorun-usecase.sh[114]: [m3video] 621: SYSTEM: Opening MsgQ [VPSS-M3_MSGQ] ...
    [ 29.368312] autorun-usecase.sh[114]: [m3vpss ] 634: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_30] in region 0 ...
    [ 29.369875] autorun-usecase.sh[114]: [m3video] 622: SYSTEM : FREE SPACE : Tiler Buffer = 128 B (0 MB) - TILER OFF
    [ 29.371538] autorun-usecase.sh[114]: [m3vpss ] 634: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_30] in region 0 ...
    [ 29.373178] autorun-usecase.sh[114]: [m3vpss ] 634: SYSTEM: ListElem Shared Addr = 0xbea3d900
    [ 29.374817] autorun-usecase.sh[114]: [m3video] Entered the MctnfLink_init()
    [ 29.376456] autorun-usecase.sh[114]: [m3vpss ] 636: SYSTEM : Device Init in progress !!!
    [ 29.378065] autorun-usecase.sh[114]: [m3vpss ] Iss_init called !!!!!!
    [ 29.379718] autorun-usecase.sh[114]: [m3vpss ] CPIS_init DONE !!!!!!
    [ 29.381369] autorun-usecase.sh[114]: [m3vpss ] 642: SYSTEM : Device Init in progress DONE !!!
    [ 29.385288] autorun-usecase.sh[114]: [m3vpss ] MS TEST NO: 16, TEXT ADDED FOR DEBUG!!!!!!!!!!!!!!!!!!!!!!!!!!!
    [ 29.387595] autorun-usecase.sh[114]: [m3vpss ] MS TEST NO: 17, TEXT ADDED FOR DEBUG!!!!!!!!!!!!!!!!!!!!!!!!!!
    [ 29.389405] autorun-usecase.sh[114]: [m3vpss ] MS TEST NO: 18, Enter into Vps_deviceI2cInit
    [ 29.391130] autorun-usecase.sh[114]: [m3vpss ] MS TEST , PSP_i2cInit Accessed.........
    [ 29.393097] autorun-usecase.sh[114]: [m3vpss ] MS TEST , PSP_i2cInit Accessed.........
    [ 29.394772] autorun-usecase.sh[114]: [m3vpss ] I2C2 MS clk freq: 400
    [ 29.396648] autorun-usecase.sh[114]: [m3vpss ] MS TEST , PSP_i2cInit Accessed.........
    [ 29.398255] autorun-usecase.sh[114]: [m3video] 681: SYSTEM : Initializing Links ... DONE !!!
    [ 29.399908] autorun-usecase.sh[114]: [m3video] 682: SYSTEM : System Video Init Done !!!
    [ 29.401614] autorun-usecase.sh[114]: [m3vpss ] I2C Reg Value For MS = 0x2c, Address: 0x09
    [ 29.403318] autorun-usecase.sh[114]: [m3vpss ] I2C2: DEV 0x2d: WR 0x09 = 0x2c ... !!!
    [ 29.405206] autorun-usecase.sh[114]: [m3vpss ] I2C Reg Value For MS = 0x22, Address: 0x0a
    [ 29.407011] autorun-usecase.sh[114]: [m3vpss ] I2C2: DEV 0x2d: WR 0x0a = 0x22 ... !!!
    [ 29.408697] autorun-usecase.sh[114]: [m3vpss ] DONE ar0331_lvds/src/issdrv_ar0331Api.c:AR0331_Transplant_DRV_imgsSetRegs:706 !!!
    [ 29.743500] autorun-usecase.sh[114]: [m3vpss ] 5764: SYSTEM : System VPSS Init Done !!!
    [ 29.745286] autorun-usecase.sh[114]: [m3vpss ] 5764: UTILS: DMA: HWI Create for INT62 !!!
    [ 29.746982] autorun-usecase.sh[114]: [m3vpss ] 5764: SYSTEM : Initializing Links !!!
    [ 29.748680] autorun-usecase.sh[114]: [m3vpss ] 5765: SYSTEM : FREE SPACE : System Heap = 1684720 B, Mbx = 10240 msgs)
    [ 29.750680] autorun-usecase.sh[114]: [m3vpss ] 5765: SYSTEM : FREE SPACE : SR0 Heap = 15372416 B (14 MB)
    [ 29.752430] autorun-usecase.sh[114]: [m3vpss ] 5765: SYSTEM : FREE SPACE : Frame Buffer = 105790336 B (100 MB)
    [ 29.754065] autorun-usecase.sh[114]: [m3vpss ] 5765: SYSTEM : FREE SPACE : Bitstream Buffer = 61865856 B (58 MB)
    [ 29.755726] autorun-usecase.sh[114]: [m3vpss ] 5766: SYSTEM : FREE SPACE : Tiler Buffer = 128 B (0 MB) - TILER OFF
    [ 29.757286] autorun-usecase.sh[114]: [m3vpss ] 5846: SYSTEM : Initializing Links ... DONE !!!
    [ 29.759297] autorun-usecase.sh[114]: [m3vpss ] 6099: CAMERA: Create in progress !!!
    [ 29.760982] autorun-usecase.sh[114]: [m3vpss ] Channel Num Stream 0 Ch 0 ChannelNum 0
    [ 29.762638] autorun-usecase.sh[114]: [m3vpss ] Channel Num Stream 1 Ch 0 ChannelNum 1
    [ 29.764302] autorun-usecase.sh[114]: [m3vpss ] 6100: CAMERA: VIP0 PortA camera mode is [ 8-bit, Non-mux Embedded Sync] !!!
    [ 29.766110] autorun-usecase.sh[114]: [m3vpss ] 6100: CAMERA: VIP 0: VID DEC 268436737 (0x10): 0002:20202020:20202020, AUD_STATUS 538976288
    [ 29.767784] autorun-usecase.sh[114]: [m3vpss ] Iss_captCreate:1661
    [ 29.769537] autorun-usecase.sh[114]: [m3vpss ] 6313: CAMERA: Create Done !!!
    [ 29.771253] autorun-usecase.sh[114]: [m3vpss ] 6403: CAMERA: Detect video in progress !!!
    [ 29.772845] autorun-usecase.sh[114]: [m3vpss ] 6403: CAMERA: Detect video Done !!!
    [ 29.774681] autorun-usecase.sh[114]: [m3vpss ] 6475: DUP : Create Done !!!
    [ 29.778357] autorun-usecase.sh[114]: [m3vpss ] 6477: MERGE : Create Done !!!
    [ 29.780236] autorun-usecase.sh[114]: [host] Vsys_eventHandler:OSA_dmaOpen passed with ch id = 6
    [ 29.782340] autorun-usecase.sh[114]: [host] Vsys_eventHandler:OSA_dmaOpen passed with ch id = 7
    [ 29.784178] autorun-usecase.sh[114]: queue id:0
    [ 29.785990] autorun-usecase.sh[114]: [host] IpcBitsInLink_tskMain:Entered
    [ 29.787731] autorun-usecase.sh[114]: [host] 776: IPC_BITS_IN : Create in progress !!!
    [ 29.790205] autorun-usecase.sh[114]: [host] 776: IPC_BITS_IN : ListMPOpen start !!!
    [ 29.792010] autorun-usecase.sh[114]: [host] 776: SYSTEM: Opening ListMP [VIDEO-M3_IPC_OUT_29] ...
    [ 29.793732] autorun-usecase.sh[114]: [host] 777: SYSTEM: Opening ListMP [VIDEO-M3_IPC_IN_29] ...
    [ 29.795332] autorun-usecase.sh[114]: [host] 777: IPC_BITS_IN : ListMPOpen done !!!
    [ 29.796945] autorun-usecase.sh[114]: [host] 778: IPC_BITS_IN : System_linkGetInfo done !!!
    [ 29.798800] autorun-usecase.sh[114]: [host] 778: IPC_BITS_IN : Create Done !!!
    [ 29.800571] autorun-usecase.sh[114]: [host] USECASE SETUP DONE
    [ 29.802260] autorun-usecase.sh[114]: [host]
    [ 29.804036] autorun-usecase.sh[114]: Application Run Completed
    [ 29.889705] autorun-usecase.sh[114]: [host] ITT server task running !!!
    [ 29.891964] autorun-usecase.sh[114]: [host]
    [ 29.893652] autorun-usecase.sh[114]: ITT ittServer_run
    [ 29.895146] autorun-usecase.sh[114]: [host] ITT Server Message initialization successful
    [ 29.902378] autorun-usecase.sh[114]: [host] DCC server Message ques is open succefully
    [ 29.905464] autorun-usecase.sh[114]: [host] Setting cmd <1> in message <b54b1c00>
    [ 29.907306] autorun-usecase.sh[114]: [host] Posting message <b54b1c00> in QId <10002>
    [ 29.909518] autorun-usecase.sh[114]: [host]
    [ 29.911245] autorun-usecase.sh[114]: ITT capture task created
    [ 29.913244] autorun-usecase.sh[114]: [host] Response from M3 is : 1
    [ 29.954806] autorun-usecase.sh[114]: [host] Response from M3 is : 1
    [ 29.956706] autorun-usecase.sh[114]: [host] Default parameters were sent sucessfully
    [ 29.958468] autorun-usecase.sh[114]: [host] Server Socket created with ID <22>
    [ 30.912277] autorun-usecase.sh[114]: [host]
    [ 30.914782] autorun-usecase.sh[114]: Channel Selected: 0
    [ 30.915615] autorun-usecase.sh[114]: [host]
    [ 30.931515] autorun-usecase.sh[114]: Channel Selected: 0,rate control = 0
    [ 30.932315] autorun-usecase.sh[114]: [host]
    [ 30.932798] autorun-usecase.sh[114]: ========== Stream FrameRate1 = 15 =================
    [ 30.940925] autorun-usecase.sh[114]: [host]
    [ 30.942785] autorun-usecase.sh[114]: Channel Selected: 0
    [ 30.949941] autorun-usecase.sh[114]: [host]
    [ 30.955974] autorun-usecase.sh[114]: Channel Selected: 0
    [ 30.956818] autorun-usecase.sh[114]: [host]
    [ 30.958034] autorun-usecase.sh[114]: Channel Selected: 0
    [ 30.966126] autorun-usecase.sh[114]: [host]
    [ 30.967021] autorun-usecase.sh[114]: Channel Selected: 0,packet size = 100
    [ 30.967606] autorun-usecase.sh[114]: [host]
    [ 30.968102] autorun-usecase.sh[114]: Channel Selected: 0,encPreset = 0
    [ 30.968567] autorun-usecase.sh[114]: [host]
    [ 31.034594] autorun-usecase.sh[114]: Channel Selected: 0,enable = 0Simple mixer control 'PGA',0
    [ 31.035309] autorun-usecase.sh[114]: Capabilities: cvolume cswitch
    [ 31.035733] autorun-usecase.sh[114]: Capture channels: Front Left - Front Right
    [ 31.036129] autorun-usecase.sh[114]: Limits: Capture 0 - 119
    [ 31.036479] autorun-usecase.sh[114]: Front Left: Capture 95 [80%] [47.50dB] [on]
    [ 31.036815] autorun-usecase.sh[114]: Front Right: Capture 95 [80%] [47.50dB] [on]
    [ 31.216113] autorun-usecase.sh[114]: Simple mixer control 'PCM',0
    [ 31.217409] autorun-usecase.sh[114]: Capabilities: pvolume
    [ 31.218134] autorun-usecase.sh[114]: Playback channels: Front Left - Front Right
    [ 31.218706] autorun-usecase.sh[114]: Limits: Playback 0 - 127
    [ 31.219282] autorun-usecase.sh[114]: Mono:
    [ 31.220800] autorun-usecase.sh[114]: Front Left: Playback 101 [80%] [-13.00dB]
    [ 31.221454] autorun-usecase.sh[114]: Front Right: Playback 101 [80%] [-13.00dB]
    [ 31.231114] autorun-usecase.sh[114]: [host]
    [ 31.232231] autorun-usecase.sh[114]: Force IDR on Channel: 0
    [ 31.232722] autorun-usecase.sh[114]: [host]
    [ 31.315735] sh (347): drop_caches: 1
    [ 31.522984] autorun-usecase.sh[114]: Force IDR on Channel: 1umount: can't unmount /mnt/mmc: Invalid argument
    [ 31.695958] autorun-usecase.sh[114]: mount: /dev/mmcblk0 is already mounted or /mnt/mmc busy
    [ 31.824846] FAT-fs (mmcblk0p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
    [ 31.973114] autorun-usecase.sh[114]: ApproDrvInit: 3
    [ 31.984328] autorun-usecase.sh[114]: queue id:163845
    [ 31.988849] autorun-usecase.sh[114]: queue id:0
    [ 31.989779] autorun-usecase.sh[114]: queue id:32769
    [ 32.117957] autorun-usecase.sh[114]: killall: dhcpcd: no process killed
    [ 32.270609] autorun-usecase.sh[114]: net_get_netmask_MS_sys: ioctl SIOCGIFNETMASK: Cannot assign requested address
    [ 32.310398] autorun-usecase.sh[114]: net_get_netmask_MS_sys: ioctl SIOCGIFNETMASK: Cannot assign requested address
    [ 32.362872] autorun-usecase.sh[114]: net_get_netmask_MS_sys: ioctl SIOCGIFNETMASK: Cannot assign requested address
    [ 33.501622] Mass Storage Function, version: 2009/09/11
    [ 33.506849] LUN: removable file: (no medium)
    [ 33.511494] LUN: removable file: /dev/sbulla
    [ 33.515791] Number of LUNs=1
    [ 33.529713] g_mass_storage gadget: Mass Storage Gadget, version: 2009/09/11
    [ 33.536765] g_mass_storage gadget: userspace failed to provide iSerialNumber
    [ 33.543896] g_mass_storage gadget: g_mass_storage ready
    [ 33.561548] autorun-usecase.sh[114]: [05/Dec/2016:07:39:55 +0000] boa: server version Boa/0.94.13
    [ 33.563603] autorun-usecase.sh[114]: [05/Dec/2016:07:39:55 +0000] boa: server built Jul 3 2017 at 12:43:11.
    [ 33.564474] autorun-usecase.sh[114]: [05/Dec/2016:07:39:55 +0000] boa: starting server pid=354, port 80
    [ 33.666828] autorun-usecase.sh[114]: queue id:0
    [ 33.744835] autorun-usecase.sh[114]: queue id:0
    [ 34.262884] autorun-usecase.sh[114]: queue id:131076
    [ 34.266171] autorun-usecase.sh[114]: ApproDrvInit: 10
    [ 34.267962] autorun-usecase.sh[114]: queue id:163845
    [ 34.274175] autorun-usecase.sh[114]: ApproDrvInit: 2
    [ 34.276493] autorun-usecase.sh[114]: ApproDrvInit: 6
    [ 34.279395] autorun-usecase.sh[114]: ApproDrvInit: 8
    [ 34.288474] autorun-usecase.sh[114]: queue id:163845
    [ 34.289476] autorun-usecase.sh[114]: queue id:163845
    [ 34.302020] autorun-usecase.sh[114]: ApproDrvInit: 9
    [ 34.304646] autorun-usecase.sh[114]: queue id:163845
    [ 34.305569] autorun-usecase.sh[114]: queue id:163845
    [ 34.306715] autorun-usecase.sh[114]: Initializing...
    [ 34.307461] autorun-usecase.sh[114]: Initializing...
    [ 34.322586] autorun-usecase.sh[114]: Initializing...
    [ 34.323431] autorun-usecase.sh[114]: Initializing...
    [ 34.324115] autorun-usecase.sh[114]: Initializing...
    [ 34.325084] autorun-usecase.sh[114]: ...done initializing
    [ 34.325858] autorun-usecase.sh[114]: ...done initializing
    [ 34.326456] autorun-usecase.sh[114]: Play this stream using the URL:
    [ 34.327115] autorun-usecase.sh[114]: rtsp://192.168.1.224:8557/PSIA/Streaming/channels/2?videoCodecType=H.264
    [ 34.327821] autorun-usecase.sh[114]: (We use port 8304 for optional RTSP-over-HTTP tunneling.)
    [ 34.336181] autorun-usecase.sh[114]: ...done initializing
    [ 34.337262] autorun-usecase.sh[114]: Play this stream using the URL:
    [ 34.338227] autorun-usecase.sh[114]: rtsp://192.168.1.224:8554/PSIA/Streaming/channels/1?videoCodecType=MPEG4
    [ 34.338942] autorun-usecase.sh[114]: (We use port 8301 for optional RTSP-over-HTTP tunneling.)
    [ 34.339947] autorun-usecase.sh[114]: ...done initializing
    [ 34.340793] autorun-usecase.sh[114]: ...done initializing
    [ 34.341898] autorun-usecase.sh[114]: Play this stream using the URL:
    [ 34.342665] autorun-usecase.sh[114]: rtsp://192.168.1.224:8555/PSIA/Streaming/channels/0?videoCodecType=MJPEG
    [ 34.343331] autorun-usecase.sh[114]: (We use port 8302 for optional RTSP-over-HTTP tunneling.)
    [ 34.344308] autorun-usecase.sh[114]: Play this stream using the URL:
    [ 34.345685] autorun-usecase.sh[114]: rtsp://192.168.1.224:8556/PSIA/Streaming/channels/2?videoCodecType=H.264
    [ 34.346827] autorun-usecase.sh[114]: (We use port 8303 for optional RTSP-over-HTTP tunneling.)
    [ 34.347867] autorun-usecase.sh[114]: Play this stream for using the URL:
    [ 34.348808] autorun-usecase.sh[114]: rtsp://192.168.1.224:8553/PSIA/Streaming/channels/1?videoCodecType=MPEG4
    [ 34.349702] autorun-usecase.sh[114]: (We use port 8300 for optional RTSP-over-HTTP tunneling.)
    [ 60.000078] autorun-usecase.sh[114]: [host]
    [ 60.001028] autorun-usecase.sh[114]: Usecase is Active !!!
  • I felt like missing root, wrong console etc so modified the bootargs instruction like below;

    setenv bootargs console=ttyS0,115200n8 root=/dev/mmcblk0p2 rootwait rw mem=80M vram=4M cmemk.phys_start=0x85000000 cmemk.phys_end=0x89000000 cmemk.allowOverlap=1 notifyk.vpssm3_sva=0xBFD00000 ip=192.168.1.125 earlyprintk

    (By including console, root, mem, vram and optargs as in mmcargs instruction)

    For the modified bootargs I'm getting the same static board IP(192.168.1.224), following is the full boot log;


    U-Boot SPL 2016.05 (Jul 03 2017 - 12:41:39)
    Trying to boot from MMC2
    reading u-boot.img
    reading u-boot.img


    U-Boot 2016.05 (Jul 03 2017 - 12:41:39 +0530)

    I2C:ready
    DRAM: 1 GiB
    MMC: OMAP SD/MMC: 0
    Net: cpsw
    Hit any key to stop autoboot: 1 0
    switch to partitions #0, OK
    mmc0 is current device
    SD/MMC found on device 0
    Booting from mmc ...
    ## Error: "mmcargs" not defined
    reading uImage
    2662672 bytes read in 299 ms (8.5 MiB/s)
    reading dm38x-csk.dtb
    58698 bytes read in 12 ms (4.7 MiB/s)
    ## Booting kernel from Legacy Image at 82000000 ...
    Image Name: Linux-4.4.12
    Image Type: ARM Linux Kernel Image (uncompressed)
    Data Size: 2662608 Bytes = 2.5 MiB
    Load Address: 80008000
    Entry Point: 80008000
    Verifying Checksum ... OK
    ## Flattened Device Tree blob at 84000000
    Booting using the fdt blob at 0x84000000
    Loading Kernel Image ... OK
    Loading Device Tree to 844ee000, end 844ff549 ... OK

    Starting kernel ...

    [ 0.000000] Booting Linux on physical CPU 0x0
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 4.4.12 (test@test-rtdr) (gcc version 5.3.1 20160113 (Linaro GCC 5.3-2016.02) ) #2 Mon Jul 3 12:42:44 IST 2017
    [ 0.000000] CPU: ARMv7 Processor [413fc082] revision 2 (ARMv7), cr=10c5387d
    [ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
    [ 0.000000] Machine model: DM38X CSK
    [ 0.000000] bootconsole [earlycon0] enabled
    [ 0.000000] omap_barrier_reserve_memblock():Reserving DRAM area @ addr = 0x84e00000 size = 1048576 Bytes
    [ 0.000000] cma: Reserved 24 MiB at 0x82c00000
    [ 0.000000] Memory policy: Data cache writeback
    [ 0.000000] TI81XX: Map 0x84e00000 to 0xfe500000 for dram barrier
    [ 0.000000] TI81XX: Map 0x40300000 to 0xfe600000 for sram barrier
    [ 0.000000] CPU: All CPU(s) started in SVC mode.
    [ 0.000000] TI814X ES1.0 (iva neon )
    [ 0.000000] powerdomain: gem_pwrdm: voltagedomain dsp does not exist
    [ 0.000000] powerdomain: ivahd_pwrdm: voltagedomain iva does not exist
    [ 0.000000] powerdomain: hdvpss_pwrdm: voltagedomain dsp does not exist
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 19788
    [ 0.000000] Kernel command line: console=ttyS0,115200n8 root=/dev/mmcblk0p2 rootwait rw mem=80M vram=4M cmemk.phys_start=0x85000000 cmemk.phys_end=0x89000000 cmemk.allowOverlap=1 notifyk.vpssm3_sva=0xBFD00000 earlyprintk ip=192.168.1.125 192.168.1.100 192.168.1.1::off
    [ 0.000000] PID hash table entries: 512 (order: -1, 2048 bytes)
    [ 0.000000] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)
    [ 0.000000] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes)
    [ 0.000000] Memory: 46656K/79872K available (4911K kernel code, 260K rwdata, 1704K rodata, 272K init, 241K bss, 8640K reserved, 24576K cma-reserved, 0K highmem)
    [ 0.000000] Virtual kernel memory layout:
    [ 0.000000] vector : 0xffff0000 - 0xffff1000 ( 4 kB)
    [ 0.000000] fixmap : 0xffc00000 - 0xfff00000 (3072 kB)
    [ 0.000000] vmalloc : 0xc5800000 - 0xff800000 ( 928 MB)
    [ 0.000000] lowmem : 0xc0000000 - 0xc5000000 ( 80 MB)
    [ 0.000000] pkmap : 0xbfe00000 - 0xc0000000 ( 2 MB)
    [ 0.000000] modules : 0xbf000000 - 0xbfe00000 ( 14 MB)
    [ 0.000000] .text : 0xc0008000 - 0xc067dfa4 (6616 kB)
    [ 0.000000] .init : 0xc067e000 - 0xc06c2000 ( 272 kB)
    [ 0.000000] .data : 0xc06c2000 - 0xc0703308 ( 261 kB)
    [ 0.000000] .bss : 0xc0703308 - 0xc073f718 ( 242 kB)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    [ 0.000000] NR_IRQS:16 nr_irqs:16 16
    [ 0.000000] IRQ: Found an INTC at 0xfa200000 (revision 5.0) with 128 interrupts
    [ 0.000000] OMAP clockevent source: timer2 at 20000000 Hz
    [ 0.000017] sched_clock: 32 bits at 20MHz, resolution 50ns, wraps every 107374182375ns
    [ 0.008266] clocksource: timer1: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 95563022313 ns
    [ 0.017841] OMAP clocksource: timer1 at 20000000 Hz
    [ 0.023135] Console: colour dummy device 80x30
    [ 0.027834] Calibrating delay loop... 597.60 BogoMIPS (lpj=2988032)
    [ 0.086910] pid_max: default: 32768 minimum: 301
    [ 0.091861] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes)
    [ 0.098772] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes)
    [ 0.106811] Initializing cgroup subsys io
    [ 0.111044] Initializing cgroup subsys memory
    [ 0.115669] Initializing cgroup subsys devices
    [ 0.120343] Initializing cgroup subsys freezer
    [ 0.125023] Initializing cgroup subsys pids
    [ 0.129435] CPU: Testing write buffer coherency: ok
    [ 0.134890] Setting up static identity map for 0x800082c0 - 0x80008318
    [ 0.142698] devtmpfs: initialized
    [ 0.168893] VFP support v0.3: implementor 41 architecture 3 part 30 variant c rev 3
    [ 0.217242] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
    [ 0.229379] pinctrl core: initialized pinctrl subsystem
    [ 0.236173] NET: Registered protocol family 16
    [ 0.242469] DMA: preallocated 256 KiB pool for atomic coherent allocations
    [ 0.255488] OMAP GPIO hardware version 0.1
    [ 0.268106] omap-gpmc 50000000.gpmc: could not find pctldev for node /ocp/l4ls@48000000/control@140000/pinmux@800/nandflash_pins_s0, deferring probe
    [ 0.301852] edma 49000000.edma: TI EDMA DMA engine driver
    [ 0.310132] omap_i2c 48028000.i2c: could not find pctldev for node /ocp/l4ls@48000000/control@140000/pinmux@800/pinmux_i2c0_pins, deferring probe
    [ 0.323736] omap_i2c 4802a000.i2c: could not find pctldev for node /ocp/l4ls@48000000/control@140000/pinmux@800/pinmux_i2c1_pins, deferring probe
    [ 0.337408] media: Linux media interface: v0.10
    [ 0.342224] Linux video capture interface: v2.00
    [ 0.347135] pps_core: LinuxPPS API ver. 1 registered
    [ 0.352330] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    [ 0.361857] PTP clock support registered
    [ 0.365998] EDAC MC: Ver: 3.0.0
    [ 0.370052] Advanced Linux Sound Architecture Driver Initialized.
    [ 0.377505] clocksource: Switched to clocksource timer1
    [ 0.394943] NET: Registered protocol family 2
    [ 0.400317] TCP established hash table entries: 1024 (order: 0, 4096 bytes)
    [ 0.407632] TCP bind hash table entries: 1024 (order: 0, 4096 bytes)
    [ 0.414270] TCP: Hash tables configured (established 1024 bind 1024)
    [ 0.420991] UDP hash table entries: 256 (order: 0, 4096 bytes)
    [ 0.427096] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
    [ 0.433815] NET: Registered protocol family 1
    [ 0.438762] RPC: Registered named UNIX socket transport module.
    [ 0.444945] RPC: Registered udp transport module.
    [ 0.449902] RPC: Registered tcp transport module.
    [ 0.454828] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [ 0.462941] omap-iommu 55082000.mmu: 55082000.mmu registered
    [ 0.470051] futex hash table entries: 256 (order: -1, 3072 bytes)
    [ 0.487024] NFS: Registering the id_resolver key type
    [ 0.492447] Key type id_resolver registered
    [ 0.496839] Key type id_legacy registered
    [ 0.502737] io scheduler noop registered
    [ 0.506873] io scheduler deadline registered
    [ 0.511625] io scheduler cfq registered (default)
    [ 0.517964] pinctrl-single 48140800.pinmux: 270 pins at pa fa140800 size 1080
    [ 0.599061] Serial: 8250/16550 driver, 10 ports, IRQ sharing disabled
    [ 0.610072] console [ttyS0] disabled
    [ 0.613888] 48020000.uart: ttyS0 at MMIO 0x48020000 (irq = 21, base_baud = 3000000) is a 8250
    [ 0.622848] console [ttyS0] enabled
    [ 0.622848] console [ttyS0] enabled
    [ 0.630041] bootconsole [earlycon0] disabled
    [ 0.630041] bootconsole [earlycon0] disabled
    [ 0.639853] Reference Linux version 4.4.12
    [ 0.644149] File /home/test/ti/ipnc_rdk-3.9.0/Source/ti_tools/linuxutils_3_23_00_01/packages/ti/sdo/linuxutils/cmem/src/module/cmemk.c
    [ 0.658877] allocated heap buffer 0xc8000000 of size 0x4000000
    [ 0.664754] cmemk initialized
    [ 0.675058] loop: module loaded
    [ 0.737569] davinci_mdio 4a100800.mdio: davinci mdio revision 1.6
    [ 0.743705] libphy: 4a100800.mdio: probed
    [ 0.748592] davinci_mdio 4a100800.mdio: phy[25]: device 4a100800.mdio:19, driver TI DP83867
    [ 0.757584] cpsw 4a100000.ethernet: Detected MACID = 7c:66:9d:f8:bb:72
    [ 0.767697] 47401300.usb-phy supply vcc not found, using dummy regulator
    [ 0.797782] mousedev: PS/2 mouse device common for all mice
    [ 0.804298] omap_rtc 480c0000.rtc: rtc core: registered 480c0000.rtc as rtc0
    [ 0.811773] i2c /dev entries driver
    [ 0.816237] omap_wdt: OMAP Watchdog Timer Rev 0x00: initial timeout 60 sec
    [ 0.823368] sdhci: Secure Digital Host Controller Interface driver
    [ 0.829604] sdhci: Copyright(c) Pierre Ossman
    [ 0.953011] omap_hsmmc 48060000.mmc: card claims to support voltages below defined range
    [ 0.972024] mmc0: queuing unknown CIS tuple 0x91 (3 bytes)
    [ 0.978382] mmc0: new high speed SDIO card at address 0001
    [ 0.987772] Synopsys Designware Multimedia Card Interface Driver
    [ 0.994275] sdhci-pltfm: SDHCI platform and OF driver helper
    [ 1.001276] notify_shm_drv: no DSP present (MULTIPROC_INVALIDID)
    [ 1.007434] notify_init : notify drivercreated for remote proc id 1 at physical Address 0xbfd00000
    [ 1.019178] davinci_evm sound: ASoC: CODEC DAI tlv320aic3x-hifi not registered
    [ 1.026453] davinci_evm sound: snd_soc_register_card failed (-517)
    [ 1.033919] NET: Registered protocol family 10
    [ 1.040783] sit: IPv6 over IPv4 tunneling driver
    [ 1.046271] NET: Registered protocol family 17
    [ 1.050927] Key type dns_resolver registered
    [ 1.055514] omap_voltage_late_init: Could not get sys clk.
    [ 1.061424] Power Management for TI81XX.
    [ 1.070605] omap-gpmc 50000000.gpmc: GPMC revision 6.0
    [ 1.075790] gpmc_mem_init: disabling cs 0 mapped at 0x0-0x1000000
    [ 1.083677] nand: device found, Manufacturer ID: 0x2c, Chip ID: 0xca
    [ 1.090112] nand: Micron MT29F2G16ABAEAWP
    [ 1.094146] nand: 256 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64
    [ 1.101782] nand: using OMAP_ECC_BCH8_CODE_HW ECC scheme
    [ 1.107198] 8 ofpart partitions found on MTD device 8000000.nand
    [ 1.113254] Creating 8 MTD partitions on "8000000.nand":
    [ 1.118611] 0x000000000000-0x000000020000 : "NAND.SPL"
    [ 1.128399] 0x000000020000-0x000000420000 : "NAND.u-boot"
    [ 1.136610] 0x000000420000-0x000000440000 : "NAND.u-boot-env"
    [ 1.143731] 0x000000440000-0x000000a40000 : "NAND.kernel"
    [ 1.152667] 0x000000a40000-0x00000ca40000 : "NAND.file-system"
    [ 1.199362] mmc1: host does not support reading read-only switch, assuming write-enable
    [ 1.217582] mmc1: new high speed SDHC card at address aaaa
    [ 1.237556] mmcblk0: mmc1:aaaa SS08G 7.40 GiB
    [ 1.247437] mmcblk0: p1 p2
    [ 1.252926] 0x00000ca40000-0x00000ca80000 : "NAND.u-boot-spl-os"
    [ 1.260324] 0x00000ca80000-0x00000d680000 : "NAND.data"
    [ 1.271159] 0x00000d680000-0x000010000000 : "NAND.reserved"
    [ 1.334583] tps65910-rtc tps65910-rtc: rtc core: registered tps65910-rtc as rtc1
    [ 1.342293] omap_i2c 48028000.i2c: bus 0 rev0.11 at 400 kHz
    [ 1.349824] omap_i2c 4802a000.i2c: bus 1 rev0.11 at 100 kHz
    [ 1.356625] davinci_evm sound: ASoC: DAPM unknown pin MONO_LOUT
    [ 1.363699] davinci_evm sound: tlv320aic3x-hifi <-> 4803c000.mcasp mapping ok
    [ 1.373117] omap_rtc 480c0000.rtc: setting system clock to 2000-01-01 00:00:01 UTC (946684801)
    [ 1.395248] net eth0: initializing cpsw version 1.10 (0)
    [ 1.400687] net eth0: initialized cpsw ale version 1.3
    [ 1.409157] net eth0: phy found : id is : 0x2000a231
    [ 1.414198] libphy: PHY not found
    [ 1.417645] net eth0: phy "" not found on slave 1, err -19
    [ 1.429739] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 4.408408] cpsw 4a100000.ethernet eth0: Link is Up - 100Mbps/Full - flow control rx/tx
    [ 4.427550] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
    [ 4.447531] IP-Config: Guessing netmask 255.255.255.0
    [ 4.452737] IP-Config: Complete:
    [ 4.455991] device=eth0, hwaddr=7c:66:9d:f8:bb:72, ipaddr=192.168.1.125, mask=255.255.255.0, gw=255.255.255.255
    [ 4.466685] host=192.168.1.125, domain=, nis-domain=(none)
    [ 4.472674] bootserver=255.255.255.255, rootserver=255.255.255.255, rootpath=
    [ 4.480409] wlan-en-regulator: disabling
    [ 4.484678] ALSA device list:
    [ 4.487699] #0: TI81XX-CSK
    [ 4.495349] EXT4-fs (mmcblk0p2): mounting ext3 file system using the ext4 subsystem
    [ 4.652132] EXT4-fs (mmcblk0p2): recovery complete
    [ 4.658603] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null)
    [ 4.666790] VFS: Mounted root (ext3 filesystem) on device 179:2.
    [ 4.683745] devtmpfs: mounted
    [ 4.687319] Freeing unused kernel memory: 272K (c067e000 - c06c2000)
    [ 4.693732] This architecture does not have kernel memory protection.
    [ 4.913548] systemd[1]: System time before build time, advancing clock.
    [ 4.936499] random: systemd urandom read with 23 bits of entropy available
    [ 4.955061] systemd[1]: systemd 229 running in system mode. (-PAM -AUDIT -SELINUX -IMA -APPARMOR -SMACK +SYSVINIT -UTMP -LIBCRYPTSETUP -GCRYPT +GNUTLS +ACL -XZ -LZ4 -SECCOMP +BLKID -ELFUTILS +KMOD -IDN)
    [ 4.973863] systemd[1]: Detected architecture arm.
  • Welcome to Arago 2016.05!

    [ 5.001904] systemd[1]: Set hostname to <ti81xx>.
    [ 5.247894] systemd[1]: Configuration file /etc/systemd/system/ipnc-rdk-usecase.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [ 5.378268] systemd[1]: Reached target Swap.
    [ OK ] Reached target Swap.
    [ 5.398401] systemd[1]: Listening on Network Service Netlink Socket.
    [ OK ] Listening on Network Service Netlink Socket.
    [ 5.427927] systemd[1]: Listening on udev Kernel Socket.
    [ OK ] Listening on udev Kernel Socket.
    [ 5.447771] systemd[1]: Reached target Remote File Systems.
    [ OK ] Reached target Remote File Systems.
    [ 5.468061] systemd[1]: Listening on Journal Socket.
    [ OK ] Listening on Journal Socket.
    [ 5.488101] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ OK ] Started Dispatch Password Requests to Console Directory Watch.
    [ 5.518000] systemd[1]: Listening on udev Control Socket.
    [ OK ] Listening on udev Control Socket.
    [ 5.537767] systemd[1]: Reached target Timers.
    [ OK ] Reached target Timers.
    [ 5.564134] systemd[1]: Created slice System Slice.
    [ OK ] Created slice System Slice.
    [ 5.603220] systemd[1]: Mounting /var/volatile...
    Mounting /var/volatile...
    [ 5.651714] systemd[1]: Mounting Temporary Directory...
    Mounting Temporary Directory...
    [ 5.683136] systemd[1]: Reached target Slices.
    [ OK ] Reached target Slices.
    [ 5.725494] systemd[1]: Mounting /media/ram...
    Mounting /media/ram...
    [ 5.756043] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ OK ] Listening on /dev/initctl Compatibility Named Pipe.
    [ 5.791712] systemd[1]: Starting udev Coldplug all Devices...
    Starting udev Coldplug all Devices...
    [ 5.828360] systemd[1]: Mounting POSIX Message Queue File System...
    Mounting POSIX Message Queue File System...
    [ 5.888049] systemd[1]: Listening on Journal Socket (/dev/log).
    [ OK ] Listening on Journal Socket (/dev/log).
    [ 5.909151] systemd[1]: Created slice system-serial\x2dgetty.slice.
    [ OK ] Created slice system-serial\x2dgetty.slice.
    [ 5.928027] systemd[1]: Listening on Syslog Socket.
    [ OK ] Listening on Syslog Socket.
    [ 5.976628] systemd[1]: Starting Journal Service...
    Starting Journal Service...
    [ 6.008551] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ OK ] Started Forward Password Requests to Wall Directory Watch.
    [ 6.037951] systemd[1]: Reached target Paths.
    [ OK ] Reached target Paths.
    [ 6.049193] systemd[1]: Created slice system-getty.slice.
    [ OK ] Created slice system-getty.slice.
    [ 6.096238] systemd[1]: Starting udev Kernel Device Manager...
    Starting udev Kernel Device Manager...
    [ 6.141884] systemd[1]: Starting Synchronize System and HW clocks...
    Starting Synchronize System and HW clocks...
    [ 6.207079] systemd[1]: Mounted POSIX Message Queue File System.
    [ OK ] Mounted POSIX Message Queue File System.
    [ 6.258386] systemd[1]: Mounted Temporary Directory.
    [ OK ] Mounted Temporary Directory.
    [ 6.278119] systemd[1]: Mounted /var/volatile.
    [ OK ] Mounted /var/volatile.
    [ 6.298056] systemd[1]: Mounted /media/ram.
    [ OK ] Mounted /media/ram.
    [ 6.318549] systemd[1]: Started Journal Service.
    [ OK ] Started Journal Service.
    [ OK ] Started udev Kernel Device Manager.
    [ OK ] Started Synchronize System and HW clocks.
    [ OK ] Started udev Coldplug all Devices.
    [ OK ] Found device /dev/ttyS0.
    [ OK ] Started IPNC RDK use case service.
    [ OK ] Reached target Local File Systems.
    [ OK ] Reached target System Initialization.
    [ OK ] Listening on D-Bus System Message Bus Socket.
    [ OK ] Reached target Sockets.
    [ OK ] Reached target Basic System.
    [ OK ] Started Kernel Logging Service.
    [ 7.436077] autorun-usecase.sh[114]: numid=1,iface=MIXER,name='PCM Playback Volume'
    [ 7.437883] autorun-usecase.sh[114]: ; type=INTEGER,access=rw---R--,values=2,min=0,max=127,step=0
    [ 7.439294] autorun-usecase.sh[114]: : values=115,115
    Starting uim-sysfs.service...
    [ 7.470918] autorun-usecase.sh[114]: | dBscale-min=-63.50dB,step=0.50dB,mute=0
    [ OK ] Started System Logging Service.
    [ OK ] Started Serial Getty on ttyS0.
    [ OK ] Started Getty on tty1.
    [ 7.570540] autorun-usecase.sh[114]: numid=31,iface=MIXER,name='PGA Capture Volume'
    [ OK ] Reached target Login Prompts.
    [ 7.593304] autorun-usecase.sh[114]: ; type=INTEGER,access=rw---R--,values=2,min=0,max=119,step=0
    [ 7.617252] autorun-usecase.sh[114]: : values=72,72
    [ 7.619920] autorun-usecase.sh[114]: | dBscale-min=0.00dB,step=0.50dB,mute=0
    [ OK ] Started D-Bus System Message Bus.
    [ 7.668264] autorun-usecase.sh[114]: numid=51,iface=MIXER,name='Right PGA Mixer Mic2R Switch'
    [ 7.693025] autorun-usecase.sh[114]: ; type=BOOLEAN,access=rw------,values=1
    [ 7.722175] autorun-usecase.sh[114]: : values=on
    [ 7.776363] autorun-usecase.sh[114]: numid=46,iface=MIXER,name='Left PGA Mixer Mic2L Switch'
    [ 7.801964] autorun-usecase.sh[114]: ; type=BOOLEAN,access=rw------,values=1
    [ 7.821949] autorun-usecase.sh[114]: : values=on
    [ 7.849813] autorun-usecase.sh[114]: Mount mtd6 and mtd7 partitions
    Starting Network Service...
    [ 7.985625] ubi0: attaching mtd6
    [ 8.165338] ubi0: scanning is finished
    [ OK ] Started Network Service.
    [ 8.250726] ubi0: attached mtd6 (name "NAND.data", size 12 MiB)
    [ 8.256697] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes
    [ 8.263675] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 512
    [ 8.270424] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096
    [ 8.277417] ubi0: good PEBs: 96, bad PEBs: 0, corrupted PEBs: 0
    [ 8.283391] ubi0: user volume: 1, internal volumes: 1, max. volumes count: 128
    [ 8.290666] ubi0: max/mean erase counter: 146/88, WL threshold: 4096, image sequence number: 4257597570
    [ 8.300117] ubi0: available PEBs: 0, total reserved PEBs: 96, PEBs reserved for bad PEB handling: 40
    [ 8.309791] ubi0: background thread "ubi_bgt0d" started, PID 147
    [ 8.500765] autorun-usecase.sh[114]: UBI device number 0, total 96 LEBs (12189696 bytes, 11.6 MiB), available 0 LEBs (0 bytes), LEB size 126976 bytes (124.0 KiB)
    [ 9.137670] UBIFS (ubi0:0): background thread "ubifs_bgt0_0" started, PID 151
    [ 9.209865] UBIFS (ubi0:0): recovery needed
    [ 9.399883] UBIFS (ubi0:0): recovery completed
    [ 9.404461] UBIFS (ubi0:0): UBIFS: mounted UBI device 0, volume 0, name "ubifs_volume"
    [ 9.412478] UBIFS (ubi0:0): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes
    [ 9.422461] UBIFS (ubi0:0): FS size: 5332992 bytes (5 MiB, 42 LEBs), journal size 1015809 bytes (0 MiB, 6 LEBs)
    [ 9.432611] UBIFS (ubi0:0): reserved for root: 251889 bytes (245 KiB)
    [ 9.439107] UBIFS (ubi0:0): media format: w4/r0 (latest is w4/r0), UUID F461BEDD-8567-4496-BC5C-1BA9A14B7A02, small LPT model
    [ OK ] Reached target Network.
    Starting Network Name Resolution...
    [ OK ] Started Network Name Resolution.
    [ 10.253751] ubi1: attaching mtd7
    [ OK ] Started uim-sysfs.service.
    Starting telnetd.service...
    [ OK ] Started telnetd.service.
    [ 10.545448] ubi1: scanning is finished
    [ 10.575975] ubi1: attached mtd7 (name "NAND.reserved", size 41 MiB)
    [ 10.582360] ubi1: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes
    [ 10.589301] ubi1: min./max. I/O unit sizes: 2048/2048, sub-page size 512
    [ 10.596034] ubi1: VID header offset: 2048 (aligned 2048), data offset: 4096
    [ 10.603043] ubi1: good PEBs: 332, bad PEBs: 0, corrupted PEBs: 0
    [ 10.609092] ubi1: user volume: 1, internal volumes: 1, max. volumes count: 128
    [ 10.616350] ubi1: max/mean erase counter: 10/5, WL threshold: 4096, image sequence number: 2076213917
    [ 10.625627] ubi1: available PEBs: 0, total reserved PEBs: 332, PEBs reserved for bad PEB handling: 40
    [ 10.639163] ubi1: background thread "ubi_bgt1d" started, PID 168
    Starting thermal-zone-init.service...
    [ OK ] Started thermal-zone-init.service.
    [ 10.720317] autorun-usecase.sh[114]: UBI device number 1, total 332 LEBs (42156032 bytes, 40.2 MiB), available 0 LEBs (0 bytes), LEB size 126976 bytes (124.0 KiB)
    [ OK ] Reached target Multi-User System.
    [ 11.277684] UBIFS (ubi1:0): background thread "ubifs_bgt1_0" started, PID 181
    [ 11.302609] UBIFS (ubi1:0): recovery needed
    [ 11.335634] UBIFS (ubi1:0): recovery completed
    [ 11.340272] UBIFS (ubi1:0): UBIFS: mounted UBI device 1, volume 0, name "ubifs_volume"
    [ 11.348268] UBIFS (ubi1:0): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes
    [ 11.358249] UBIFS (ubi1:0): FS size: 35299328 bytes (33 MiB, 278 LEBs), journal size 1777664 bytes (1 MiB, 14 LEBs)
    [ 11.368747] UBIFS (ubi1:0): reserved for root: 1667274 bytes (1628 KiB)
    [ 11.375400] UBIFS (ubi1:0): media format: w4/r0 (latest is w4/r0), UUID 4EA17009-DE44-4BB2-8641-EE0F5F7AC799, small LPT model

    [ 11.891048] autorun-usecase.sh[114]: wifi: in STA mode
    _____ _____ _ _
    | _ |___ ___ ___ ___ | _ |___ ___ |_|___ ___| |_
    | | _| .'| . | . | | __| _| . | | | -_| _| _|
    |__|__|_| |__,|_ |___| |__| |_| |___|_| |___|___|_|
    |___| |___|

    Arago Project http://arago-project.org ti81xx ttyS0

    Arago 2016.05 ti81xx ttyS0

    ti81xx login: [ 12.593347] cfg80211: World regulatory domain updated:
    [ 12.598629] cfg80211: DFS Master region: unset
    [ 12.603009] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
    [ 12.612837] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
    [ 12.620898] cfg80211: (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
    [ 12.628956] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)
    [ 12.637001] cfg80211: (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (N/A)
    [ 12.646544] cfg80211: (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (0 s)
    [ 12.656085] cfg80211: (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)
    [ 12.664229] cfg80211: (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
    [ 12.672285] cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)
    [ 13.400517] wl18xx_driver wl18xx.1.auto: Direct firmware load for ti-connectivity/wl1271-nvs.bin failed with error -2
    [ 13.788153] wlcore: wl18xx HW: 183x or 180x, PG 2.2 (ROM 0x11)
    [ 13.815339] wlcore: loaded
    [ 14.407059] wlcore: PHY firmware version: Rev 8.2.0.0.232
    [ 14.510611] wlcore: firmware booted (Rev 8.9.0.0.48)
    [ 14.516009] random: nonblocking pool is initialized
    [ 14.534167] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 18.649774] autorun-usecase.sh[114]: SSID: Not_a_Red_Buffalo
    [ 18.651663] autorun-usecase.sh[114]: SSID: HP-Print-0B-Officejet Pro 8610
    [ 18.653065] autorun-usecase.sh[114]: SSID: HP-Print-07-Deskjet 3540 series
    [ 19.016321] <1>SysLink version : 2.21.02.10
    [ 19.016321] SysLink module created on Date:Jul 3 2017 Time:11:06:37
    [ 19.026994] <1>Trace enabled
    [ 19.029923] <1>Trace SetFailureReason enabled
    [ 19.118074] autorun-usecase.sh[114]: /dev/mem opened.
    [ 19.119791] autorun-usecase.sh[114]: Phy Addr : 0x48181560 Data : 0x00000002
    [ 19.127435] autorun-usecase.sh[114]: Phy Addr : 0x48180f10 Data : 0x00000000
    [ 19.132289] autorun-usecase.sh[114]: Phy Addr : 0x48180508 Data : 0x00000302
    [ 19.134064] autorun-usecase.sh[114]: Phy Addr : 0x48180520 Data : 0x00000002
    [ 19.135558] autorun-usecase.sh[114]: Phy Addr : 0x48180524 Data : 0x00000002
    [ 19.136941] autorun-usecase.sh[114]: Phy Addr : 0x48180528 Data : 0x00000002
    [ 19.138305] autorun-usecase.sh[114]: Phy Addr : 0x4c0000e4 Data : 0x00170209
    [ 19.139834] autorun-usecase.sh[114]: Phy Addr : 0x4c0000e4 Data : 0x00170209
    [ 19.141321] autorun-usecase.sh[114]: DDR IOs RX is shutdown
    [ 19.142789] autorun-usecase.sh[114]: Phy Addr : 0x48180a04 Data : 0x00000000
    [ 20.085091] autorun-usecase.sh[114]: /opt/ipnc/autorun-usecase.sh: line 52: kill: (228) - No such process
    [ 20.111898] autorun-usecase.sh[114]: [host] Setting DMM priority for [HDVICP0 ] to [1] ( 0x4e000634 = 0x00000009 )
    [ 20.115340] autorun-usecase.sh[114]: [host] Setting L3 bandwidth regulator for [ISS ] to [press=[3,3] BW=400, WM Cycles=2500]
    [ 20.118720] autorun-usecase.sh[114]: [host] Setting L3 bandwidth regulator for [HDVICP0 ] to [press=[0,0] BW=900, WM Cycles=2500]
    [ 20.124733] autorun-usecase.sh[114]: [host] Setting DMM priority for [ISS ] to [0] ( 0x4e000634 = 0x00080000 )
    [ 20.186099] autorun-usecase.sh[114]: insmod: ERROR: could not insert module sbull.ko: File exists
    [ 21.219268] autorun-usecase.sh[114]: mkfs.fat 3.0.28 (2015-05-16)
    [ 21.221084] autorun-usecase.sh[114]: unable to get drive geometry, using default 255/63
    [ 21.223608] autorun-usecase.sh[114]: /dev/sbulla has 255 heads and 63 sectors per track,
    [ 21.230122] autorun-usecase.sh[114]: hidden sectors 0x0000;
    [ 21.231987] autorun-usecase.sh[114]: logical sector size is 512,
    [ 21.233601] autorun-usecase.sh[114]: using 0xf8 media descriptor, with 1024 sectors;
    [ 21.238679] autorun-usecase.sh[114]: drive number 0x80;
    [ 21.242272] autorun-usecase.sh[114]: filesystem has 2 16-bit FATs and 4 sectors per cluster.
    [ 21.245663] autorun-usecase.sh[114]: FAT size is 1 sector, and provides 247 clusters.
    [ 21.247403] autorun-usecase.sh[114]: There is 1 reserved sector.
    [ 21.248948] autorun-usecase.sh[114]: Root directory contains 512 slots and uses 32 sectors.
    [ 21.252655] autorun-usecase.sh[114]: Volume ID is 9c04e4c0, no volume label.
    [ 21.499219] Mass Storage Function, version: 2009/09/11
    [ 21.504412] LUN: removable file: (no medium)
    [ 21.538261] LUN: removable file: /dev/sbulla
    [ 21.542607] Number of LUNs=1
    [ 21.562011] g_mass_storage gadget: Mass Storage Gadget, version: 2009/09/11
    [ 21.569090] g_mass_storage gadget: userspace failed to provide iSerialNumber
    [ 21.576172] g_mass_storage gadget: g_mass_storage ready
    [ 21.619486] autorun-usecase.sh[114]: Creat queue id:0
    [ 21.622458] autorun-usecase.sh[114]: queue id:0
    [ 21.625752] autorun-usecase.sh[114]: Creat queue id:32769
    [ 21.633848] autorun-usecase.sh[114]: queue id:32769
    [ 21.640116] autorun-usecase.sh[114]: Creat queue id:65538
    [ 21.642866] autorun-usecase.sh[114]: queue id:65538
    [ 21.648367] autorun-usecase.sh[114]: Creat queue id:98307
    [ 21.660122] autorun-usecase.sh[114]: queue id:98307
    [ 21.666384] autorun-usecase.sh[114]: queue id:32769
    [ 21.735486] autorun-usecase.sh[114]: [host] Attached to slave procId 1.
    [ 22.580990] autorun-usecase.sh[114]: [host] Attached to slave procId 0.
    [ 22.583343] autorun-usecase.sh[114]: [host] Loaded file ./firmware/ipnc_rdk_fw_m3vpss.xem3 on slave procId 1.
    [ 22.750492] autorun-usecase.sh[114]: [host] Started slave procId 1.
    [ 22.752851] autorun-usecase.sh[114]: [host] Loaded file ./firmware/ipnc_rdk_fw_m3video.xem3 on slave procId 0.
    [ 22.837980] autorun-usecase.sh[114]: [host] Started slave procId 0.
    [ 22.840138] autorun-usecase.sh[114]: [host] After Ipc_loadcallback status [0x00000000]
    [ 22.842135] autorun-usecase.sh[114]: [host] After Ipc_loadcallback status [0x00000000]
    [ 22.923851] autorun-usecase.sh[114]: [host] After Ipc_startcallback status [0x00000000]
    [ 22.960956] autorun-usecase.sh[114]: [host] After Ipc_startcallback status [0x00000000]
    [ 23.028376] autorun-usecase.sh[114]: [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
    [ 23.032500] autorun-usecase.sh[114]: [m3video] Remote Debug Shared Memory @ 0xbff05020
    [ 23.035544] autorun-usecase.sh[114]: [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
    [ 23.038707] autorun-usecase.sh[114]: [m3vpss ] Received character 's'
    [ 23.128257] autorun-usecase.sh[114]: [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
    [ 23.130389] autorun-usecase.sh[114]: [m3video] Remote Debug Shared Memory @ 0xbff05020
    [ 23.137709] autorun-usecase.sh[114]: [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
    [ 23.150597] autorun-usecase.sh[114]: [m3video] Received character 's'
    [ 23.152718] autorun-usecase.sh[114]: queue id:65538
    [ 23.161344] autorun-usecase.sh[114]: Creat queue id:131076
    [ 23.163726] autorun-usecase.sh[114]: queue id:131076
    [ 23.171513] autorun-usecase.sh[114]: CPU is TI812x
    [ 23.269905] autorun-usecase.sh[114]: Creat queue id:163845
    [ 23.271817] autorun-usecase.sh[114]: queue id:163845
    [ 23.273212] autorun-usecase.sh[114]: queue id:65538
    [ 23.359512] autorun-usecase.sh[114]: [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
    [ 23.361952] autorun-usecase.sh[114]: [m3video] Remote Debug Shared Memory @ 0xbff05020
    [ 23.365797] autorun-usecase.sh[114]: [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
    [ 23.424496] autorun-usecase.sh[114]: [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
    [ 23.426268] autorun-usecase.sh[114]: [m3video] Remote Debug Shared Memory @ 0xbff05020
    [ 23.429253] autorun-usecase.sh[114]: [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
    [ 23.448663] autorun-usecase.sh[114]: [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
    [ 23.450439] autorun-usecase.sh[114]: [m3video] Remote Debug Shared Memory @ 0xbff05020
    [ 23.451882] autorun-usecase.sh[114]: [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
    [ 23.453198] autorun-usecase.sh[114]: [m3video] ***** SYSTEM : Frequency <ORG> - 200000000, <NEW> - 200000000
    [ 23.472653] autorun-usecase.sh[114]: [m3vpss ] ***** SYSTEM : Frequency <ORG> - 200000000, <NEW> - 200000000
    [ 23.474566] autorun-usecase.sh[114]: [m3video]
    [ 23.479370] autorun-usecase.sh[114]: [m3vpss ] notify_attach rtnVal 0
    [ 23.481650] autorun-usecase.sh[114]: [m3video] *** UTILS: CPU KHz = 400000 Khz ***
    [ 23.487495] autorun-usecase.sh[114]: [m3video]
    [ 23.493973] autorun-usecase.sh[114]: [m3video] 36: SYSTEM : System Common Init in progress !!!
    [ 23.497058] autorun-usecase.sh[114]: [m3video] 36: SYSTEM: IPC init in progress !!!
    [ 23.499047] autorun-usecase.sh[114]: [m3video] 36: SYSTEM: Attaching to [HOST] ...
    [ 23.500992] autorun-usecase.sh[114]: [m3video] 86: SYSTEM: Attaching to [HOST] ...
    [ 23.502813] autorun-usecase.sh[114]: [m3vpss ] initProxyServer rtnVal 0
    [ 23.504370] autorun-usecase.sh[114]: [m3vpss ]
    [ 23.505895] autorun-usecase.sh[114]: [m3vpss ] *** UTILS: CPU KHz = 400000 Khz ***
    [ 23.507348] autorun-usecase.sh[114]: [m3vpss ]
    [ 23.508943] autorun-usecase.sh[114]: [m3vpss ] 67: SYSTEM : System Common Init in progress !!!
    [ 23.511001] autorun-usecase.sh[114]: [m3vpss ] 67: SYSTEM: IPC init in progress !!!
    [ 23.512562] autorun-usecase.sh[114]: [m3vpss ] 67: SYSTEM: Attaching to [HOST] ...
    [ 23.514076] autorun-usecase.sh[114]: [m3video] 94: SYSTEM: Attaching to [HOST] ... SUCCESS !!!
    [ 23.515536] autorun-usecase.sh[114]: [m3video] 94: SYSTEM: Attaching to [VPSS-M3] ...
    [ 23.517101] autorun-usecase.sh[114]: [m3vpss ] 117: SYSTEM: Attaching to [HOST] ...
    [ 23.518918] autorun-usecase.sh[114]: [m3vpss ] 131: SYSTEM: Attaching to [HOST] ... SUCCESS !!!
    [ 23.520915] autorun-usecase.sh[114]: [m3vpss ] 131: SYSTEM: Attaching to [VIDEO-M3] ...
    [ 23.522487] autorun-usecase.sh[114]: [m3video] 144: SYSTEM: Attaching to [VPSS-M3] ...
    [ 23.523954] autorun-usecase.sh[114]: [m3vpss ] 181: SYSTEM: Attaching to [VIDEO-M3] ...
    [ 23.525399] autorun-usecase.sh[114]: [m3video] 182: SYSTEM: Attaching to [VPSS-M3] ... SUCCESS !!!
    [ 23.527225] autorun-usecase.sh[114]: [m3vpss ] 182: SYSTEM: Attaching to [VIDEO-M3] ... SUCCESS !!!
    [ 23.528745] autorun-usecase.sh[114]: [m3video] 182: SYSTEM: Opening MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...
    [ 23.530361] autorun-usecase.sh[114]: [m3vpss ] 182: SYSTEM: Creating MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...
    [ 23.531867] autorun-usecase.sh[114]: [m3vpss ] 182: SYSTEM: Creating MsgQ [VPSS-M3_MSGQ] ...
    [ 23.533409] autorun-usecase.sh[114]: [m3vpss ] 183: SYSTEM: Creating MsgQ [VPSS-M3_ACK_MSGQ] ...
    [ 23.534881] autorun-usecase.sh[114]: [m3vpss ] 185: SYSTEM: Notify register to [HOST] line 0, event 12 ...
    [ 23.536389] autorun-usecase.sh[114]: [m3vpss ] 185: SYSTEM: Notify register to [VIDEO-M3] line 0, event 12 ...
    [ 23.537853] autorun-usecase.sh[114]: [m3vpss ] 185: SYSTEM: IPC init DONE !!!
    [ 23.539360] autorun-usecase.sh[114]: [m3vpss ] 196: MEM: Shared Region 2: Base = 0xb8000000, Length = 0x06900000 (105 MB)
    [ 23.545196] autorun-usecase.sh[114]: [m3vpss ] 196: MEM: Shared Region 1: Base = 0x89000000, Length = 0x03b00000 (59 MB)
    [ 23.547143] autorun-usecase.sh[114]: [m3vpss ] 199: SYSTEM : System Common Init Done !!!
    [ 23.548764] autorun-usecase.sh[114]: [m3video] 283: SYSTEM: Opening MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...
    [ 23.550411] autorun-usecase.sh[114]: [m3video] 283: SYSTEM: Creating MsgQ [VIDEO-M3_MSGQ] ...
    [ 23.552020] autorun-usecase.sh[114]: [m3video] 283: SYSTEM: Creating MsgQ [VIDEO-M3_ACK_MSGQ] ...
    [ 23.553587] autorun-usecase.sh[114]: [m3video] 285: SYSTEM: Notify register to [HOST] line 0, event 12 ...
    [ 23.555107] autorun-usecase.sh[114]: [m3video] 286: SYSTEM: Notify register to [VPSS-M3] line 0, event 12 ...
    [ 23.556708] autorun-usecase.sh[114]: [m3video] 286: SYSTEM: IPC init DONE !!!
    [ 23.558181] autorun-usecase.sh[114]: [m3video] 296: MEM: Shared Region 2: Base = 0xb8000000, Length = 0x06900000 (105 MB)
    [ 23.559675] autorun-usecase.sh[114]: [m3video] 297: MEM: Shared Region 1: Base = 0x89000000, Length = 0x03b00000 (59 MB)
    [ 23.561353] autorun-usecase.sh[114]: [m3video] 299: SYSTEM : System Common Init Done !!!
    [ 23.562863] autorun-usecase.sh[114]: [m3video] 599: SYSTEM : System Video Init in progress !!!
    [ 23.564319] autorun-usecase.sh[114]: [m3vpss ] 598: SYSTEM : System VPSS Init in progress !!!
    [ 23.565877] autorun-usecase.sh[114]: [m3video] 599: SYSTEM: Creating ListMP [VIDEO-M3_IPC_OUT_0] in region 0 ...
    [ 23.567544] autorun-usecase.sh[114]: [m3vpss ] PLATFORM: UNKNOWN CPU detected, defaulting to ISS_PLATFORM_CPU_REV_2_1
    [ 23.572163] autorun-usecase.sh[114]: [m3video] 600: SYSTEM: Creating ListMP [VIDEO-M3_IPC_IN_0] in region 0 ...
    [ 23.581236] autorun-usecase.sh[114]: [m3vpss ] 599: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_0] in region 0 ...
    [ 23.585735] autorun-usecase.sh[114]: [m3video] 600: SYSTEM: ListElem Shared Addr = 0xbe987680
    [ 23.591369] autorun-usecase.sh[114]: [m3vpss ] 600: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_0] in region 0 ...
    [ 23.595868] autorun-usecase.sh[114]: [m3vpss ] 600: SYSTEM: ListElem Shared Addr = 0xbe984700
    [ 23.600133] autorun-usecase.sh[114]: [m3video] 602: SYSTEM: Creating ListMP [VIDEO-M3_IPC_OUT_1] in region 0 ...
    [ 23.610865] autorun-usecase.sh[114]: [m3vpss ] 602: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_1] in region 0 ...
    [ 23.612890] autorun-usecase.sh[114]: [m3video] 603: SYSTEM: Creating ListMP [VIDEO-M3_IPC_IN_1] in region 0 ...
    [ 23.617926] autorun-usecase.sh[114]: [m3vpss ] 603: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_1] in region 0 ...
    [ 23.954307] autorun-usecase.sh[114]: [m3video] 603: SYSTEM: ListElem Shared Addr = 0xbe98e080
    [ 23.956082] autorun-usecase.sh[114]: [m3vpss ] 603: SYSTEM: ListElem Shared Addr = 0xbe98b180
    [ 23.957763] autorun-usecase.sh[114]: [m3video] 613: SYSTEM: Creating ListMP [VIDEO-M3_IPC_OUT_29] in region 0 ...
    [ 23.959436] autorun-usecase.sh[114]: [m3vpss ] 616: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_24] in region 0 ...
    [ 23.961143] autorun-usecase.sh[114]: [m3video] 613: SYSTEM: Creating ListMP [VIDEO-M3_IPC_IN_29] in region 0 ...
    [ 23.962723] autorun-usecase.sh[114]: [m3vpss ] 617: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_24] in region 0 ...
    [ 23.964669] autorun-usecase.sh[114]: [m3video] 614: SYSTEM: LisApproDrvInit: 7
    [ 23.966338] autorun-usecase.sh[114]: queue id:163845
    [ 28.681405] autorun-usecase.sh[114]: [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
    [ 28.683219] autorun-usecase.sh[114]: [m3video] Remote Debug Shared Memory @ 0xbff05020
    [ 28.684631] autorun-usecase.sh[114]: [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
    [ 28.685939] autorun-usecase.sh[114]: [m3vpss ] Received character 't'
    [ 28.708885] autorun-usecase.sh[114]: [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
    [ 28.711084] autorun-usecase.sh[114]: [m3video] Remote Debug Shared Memory @ 0xbff05020
    [ 28.715282] autorun-usecase.sh[114]: [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
    [ 28.718653] autorun-usecase.sh[114]: [m3video] Received character 't'
    [ 28.764652] autorun-usecase.sh[114]: rmmod: ERROR: Module osa_kermod is not currently loaded
    [ 28.801125] autorun-usecase.sh[114]: /dev/mem opened.
    [ 28.802974] autorun-usecase.sh[114]: Phy Addr : 0x48180e00 Data : 0x00030000
    [ 28.804409] autorun-usecase.sh[[ 28.831291] DMA: Module install successful, device major num = 244
    114]: Phy Addr : 0x48180e10 Data : 0x00000007
    [ 28.841421] DRV: Module install successful
    [ 28.850766] DRV: Module built on Jul 3 2017 11:13:08
    [ 28.839841] autorun-usecase.sh[114]: Phy Addr : 0x48180e04 Data : 0x00000000
    [ 28.848526] autorun-usecase.sh[114]: Phy Addr : 0x48180e14 Data : 0x00000000
    [ 28.855363] autorun-usecase.sh[114]: Phy Addr : 0x48180800 Data : 0x00000001
    [ 28.862703] autorun-usecase.sh[114]: Phy Addr : 0x48180820 Data : 0x00070000
    [ 28.864559] autorun-usecase.sh[114]: Phy Addr : 0x48180824 Data : 0x00030000
    [ 28.866336] autorun-usecase.sh[114]: Phy Addr : 0x48180e04 Data : 0x00000000
    [ 28.867955] autorun-usecase.sh[114]: Phy Addr : 0x48180e00 Data : 0x00030000
    [ 28.869720] autorun-usecase.sh[114]: Phy Addr : 0x48180e10 Data : 0x00000007
    [ 28.871435] autorun-usecase.sh[114]: Phy Addr : 0x48180e04 Data : 0x00000000
    [ 28.873063] autorun-usecase.sh[114]: Phy Addr : 0x48180e14 Data : 0x00000000
    [ 28.874652] autorun-usecase.sh[114]: Phy Addr : 0x48180800 Data : 0x00000001
    [ 28.876264] autorun-usecase.sh[114]: Phy Addr : 0x48180820 Data : 0x00070000
    [ 28.877848] autorun-usecase.sh[114]: Phy Addr : 0x48180824 Data : 0x00030000
    [ 28.879516] autorun-usecase.sh[114]: Dss_Disable Done!.................
    [ 28.[ 28.966757] DMA: ChannelID allocated:4
    885414] autorun-usecase.sh[114]: [host] Application Start Completed
    [ 28.911170] autorun-usecase.sh[114]: [host] 0: SYST[ 28.986994] DMA: ChannelID allocated:5
    EM: System Common Init in progress !!!
    [ 28.917918] autorun-usecase.sh[114]: [host] 0: SYSTEM: IPC init in progress !!!
    [ 28.923681] autorun-usecase.sh[114]: [host] 10: SYSTEM: CPU [DSP] is NOT available on this platform !!!
    [ 28.928364] autorun-usecase.sh[114]: [host] 11: SYSTEM: CPU [VIDEO-M3] syslink proc ID is [0] !!!
    [ 28.932388] autorun-usecase.sh[114]: [host] 11: SYSTEM: CPU [VPSS-M3] syslink proc ID is [1] !!!
    [ 28.946844] autorun-usecase.sh[114]: [host] 11: SYSTEM: CPU [HOST] syslink proc ID is [2] !!!
    [ 28.958643] autorun-usecase.sh[114]: [host] 11: SYSTEM: Opening MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...
    [ 28.960751] autorun-usecase.sh[114]: [host] 12: SYSTEM: Creating MsgQ [HOST_MSGQ] ...
    [ 28.962573] autorun-usecase.sh[114]: [host] 12: SYSTEM: Creating MsgQ [HOST_ACK_MSGQ] ...
    [ 28.964320] autorun-usecase.sh[114]: [host] 12: SYSTEM: Opening MsgQ [VIDEO-M3_MSGQ] ...
    [ 28.965901] autorun-usecase.sh[114]: [host] 12: SYSTEM: Opening MsgQ [VPSS-M3_MSGQ] ...
    [ 28.967508] autorun-usecase.sh[114]: [host] 13: SYSTEM: Notify register to [VIDEO-M3] line 0, event 12 ...
    [ 28.973624] autorun-usecase.sh[114]: [host] 14: SYSTEM: Notify register to [VPSS-M3] line 0, event 12 ...
    [ 28.975291] autorun-usecase.sh[114]: [host] 14: SYSTEM: IPC init DONE !!!
    [ 28.980989] autorun-usecase.sh[114]: [host] 16: SYSTEM: Creating ListMP [HOST_IPC_OUT_29] in region 0 ...
    [ 28.983156] autorun-usecase.sh[114]: [host] 16: SYSTEM: Creating ListMP [HOST_IPC_IN_29] in region 0 ...
    [ 28.986451] autorun-usecase.sh[114]: [host] 16: SYSTEM: ListElem Shared Addr = 0xb5605580
    [ 28.991313] autorun-usecase.sh[114]: [host] 17: SYSTEM: Creating ListMP [HOST_IPC_OUT_30] in region 0 ...
    [ 28.993073] autorun-usecase.sh[114]: [host] 17: SYSTEM: Creating ListMP [HOST_IPC_IN_30] in region 0 ...
    [ 28.994768] autorun-usecase.sh[114]: [host] 17: SYSTEM: ListElem Shared Addr = 0xb561f200
    [ 28.996412] autorun-usecase.sh[114]: [host] 20: SYSTEM: Creating ListMP [HOST_IPC_OUT_24] in region 0 ...
    [ 28.998076] autorun-usecase.sh[114]: [host] 20: SYSTEM: Creating ListMP [HOST_IPC_IN_24] in region 0 ...
    [ 28.999794] autorun-usecase.sh[114]: [host] 21: SYSTEM: ListElem Shared Addr = 0xb5638e80
    [ 29.001600] autorun-usecase.sh[114]: [host] 23: SYSTEM: Creating ListMP [HOST_IPC_OUT_25] in region 0 ...
    [ 29.003263] autorun-usecase.sh[114]: [host] 23: SYSTEM: Creating ListMP [HOST_IPC_IN_25] in region 0 ...
    [ 29.004918] autorun-usecase.sh[114]: [host] 23: SYSTEM: ListElem Shared Addr = 0xb5658880
    [ 29.006499] autorun-usecase.sh[114]: [host] 24: SYSTEM: Creating ListMP [HOST_IPC_OUT_26] in region 0 ...
    [ 29.008175] autorun-usecase.sh[114]: [host] 25: SYSTEM: Creating ListMP [HOST_IPC_IN_26] in region 0 ...
    [ 29.009836] autorun-usecase.sh[114]: [host] 25: SYSTEM: ListElem Shared Addr = 0xb5678280
    [ 29.011577] autorun-usecase.sh[114]: [host] 27: SYSTEM: System Common Init Done !!!
    [ 29.013273] autorun-usecase.sh[114]: [host] Vsys_allocBuf - addr = 0xa73ae000,size = 65011712
    [ 29.014945] autorun-usecase.sh[114]: ##########pInfo->totalsize 63897600
    [ 29.016549] autorun-usecase.sh[114]: [host] MemMng_memcpy_open:OSA_dmaOpen passed with ch id = 4
    [ 29.018183] autorun-usecase.sh[114]: [host] CacheMng_MemCpy_open:OSA_dmaOpen passed with ch id = 5
    [ 29.021729] autorun-usecase.sh[114]: [host] MCFW_IPCFRAMES:App_ipcFramesSendRecvFxn:Entered...
    [ 29.023445] autorun-usecase.sh[114]: [host] Vsys_allocBuf - addr = 0xb6f41000,size = 33603
    [ 29.025145] autorun-usecase.sh[114]: [host] DCC buffer allocated for size 33603
    [ 29.026758] autorun-usecase.sh[114]: [host] DCC Default File Intialization Done
    [ 29.028406] autorun-usecase.sh[114]: [host]
    [ 29.030214] autorun-usecase.sh[114]: ********** LOW POWER USECASE ********
    [ 29.031826] autorun-usecase.sh[114]: [ 29.333576] DMA: ChannelID allocated:6
    [host] ********* Entered Tri Streaming usecase - H264 1080p @60[ 29.341889] DMA: ChannelID allocated:7
    fps + H264 D1 @30fps + MJPEG 1080p @5fps ********
    [ 29.033504] autorun-usecase.sh[114]: [host] 82: MCFW : CPU Revision [ES1.0] !!!
    [ 29.035084] autorun-usecase.sh[114]: [host] 82: MCFW : Detected [UNKNOWN] Board !!!
    [ 29.036707] autorun-usecase.sh[114]: [host] 82: MCFW : Base Board Revision [UNKNOWN] !!!
    [ 29.312209] autorun-usecase.sh[114]: tElem Shared Addr = 0xbe991580
    [ 29.314058] autorun-usecase.sh[114]: [m3vpss ] 617: SYSTEM: ListElem Shared Addr = 0xbe9c4e80
    [ 29.334167] autorun-usecase.sh[114]: [m3video] 616: SYSTEM: Creating ListMP [VIDEO-M3_IPC_OUT_30] in region 0 ...
    [ 29.336175] autorun-usecase.sh[114]: [m3vpss ] 620: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_25] in region 0 ...
    [ 29.337836] autorun-usecase.sh[114]: [m3video] 616: SYSTEM: Creating ListMP [VIDEO-M3_IPC_IN_30] in region 0 ...
    [ 29.339532] autorun-usecase.sh[114]: [m3vpss ] 620: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_25] in region 0 ...
    [ 29.341281] autorun-usecase.sh[114]: [m3video] 617: SYSTEM: ListElem Shared Addr = 0xbe9ab480
    [ 29.343178] autorun-usecase.sh[114]: [m3vpss ] 621: SYSTEM: ListElem Shared Addr = 0xbe9e4880
    [ 29.344958] autorun-usecase.sh[114]: [m3video] 619: HDVICP: Doing PRCM for IVAHD[0] ...
    [ 29.346634] autorun-usecase.sh[114]: [m3video] 619: HDVICP: PRCM for IVAHD[0] ... DONE.
    [ 29.348257] autorun-usecase.sh[114]: [m3video] 620: SYSTEM : Initializing Links !!!
    [ 29.349923] autorun-usecase.sh[114]: [m3video] 620: SYSTEM : FREE SPACE : System Heap = 2088976 B, Mbx = 10240 msgs)
    [ 29.351715] autorun-usecase.sh[114]: [m3vpss ] 624: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_26] in region 0 ...
    [ 29.353306] autorun-usecase.sh[114]: [m3vpss ] 624: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_26] in region 0 ...
    [ 29.355018] autorun-usecase.sh[114]: [m3video] 620: SYSTEM : FREE SPACE : SR0 Heap = 15841280 B (15 MB)
    [ 29.356617] autorun-usecase.sh[114]: [m3vpss ] 624: SYSTEM: ListElem Shared Addr = 0xbea04280
    [ 29.358206] autorun-usecase.sh[114]: [m3vpss ] 630: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_29] in region 0 ...
    [ 29.359969] autorun-usecase.sh[114]: [m3video] 621: SYSTEM : FREE SPACE : Frame Buffer = 110100352 B (104 MB)
    [ 29.361737] autorun-usecase.sh[114]: [m3vpss ] 631: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_29] in region 0 ...
    [ 29.363364] autorun-usecase.sh[114]: [m3vpss ] 631: SYSTEM: ListElem Shared Addr = 0xbea23c80
    [ 29.365059] autorun-usecase.sh[114]: [m3video] 621: SYSTEM : FREE SPACE : Bitstream Buffer = 61865856 B (58 MB)
    [ 29.366647] autorun-usecase.sh[114]: [m3video] 621: SYSTEM: Opening MsgQ [VPSS-M3_MSGQ] ...
    [ 29.368312] autorun-usecase.sh[114]: [m3vpss ] 634: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_30] in region 0 ...
    [ 29.369875] autorun-usecase.sh[114]: [m3video] 622: SYSTEM : FREE SPACE : Tiler Buffer = 128 B (0 MB) - TILER OFF
    [ 29.371538] autorun-usecase.sh[114]: [m3vpss ] 634: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_30] in region 0 ...
    [ 29.373178] autorun-usecase.sh[114]: [m3vpss ] 634: SYSTEM: ListElem Shared Addr = 0xbea3d900
    [ 29.374817] autorun-usecase.sh[114]: [m3video] Entered the MctnfLink_init()
    [ 29.376456] autorun-usecase.sh[114]: [m3vpss ] 636: SYSTEM : Device Init in progress !!!
    [ 29.378065] autorun-usecase.sh[114]: [m3vpss ] Iss_init called !!!!!!
    [ 29.379718] autorun-usecase.sh[114]: [m3vpss ] CPIS_init DONE !!!!!!
    [ 29.381369] autorun-usecase.sh[114]: [m3vpss ] 642: SYSTEM : Device Init in progress DONE !!!
    [ 29.385288] autorun-usecase.sh[114]: [m3vpss ] MS TEST NO: 16, TEXT ADDED FOR DEBUG!!!!!!!!!!!!!!!!!!!!!!!!!!!
    [ 29.387595] autorun-usecase.sh[114]: [m3vpss ] MS TEST NO: 17, TEXT ADDED FOR DEBUG!!!!!!!!!!!!!!!!!!!!!!!!!!
    [ 29.389405] autorun-usecase.sh[114]: [m3vpss ] MS TEST NO: 18, Enter into Vps_deviceI2cInit
    [ 29.391130] autorun-usecase.sh[114]: [m3vpss ] MS TEST , PSP_i2cInit Accessed.........
    [ 29.393097] autorun-usecase.sh[114]: [m3vpss ] MS TEST , PSP_i2cInit Accessed.........
    [ 29.394772] autorun-usecase.sh[114]: [m3vpss ] I2C2 MS clk freq: 400
    [ 29.396648] autorun-usecase.sh[114]: [m3vpss ] MS TEST , PSP_i2cInit Accessed.........
    [ 29.398255] autorun-usecase.sh[114]: [m3video] 681: SYSTEM : Initializing Links ... DONE !!!
    [ 29.399908] autorun-usecase.sh[114]: [m3video] 682: SYSTEM : System Video Init Done !!!
    [ 29.401614] autorun-usecase.sh[114]: [m3vpss ] I2C Reg Value For MS = 0x2c, Address: 0x09
    [ 29.403318] autorun-usecase.sh[114]: [m3vpss ] I2C2: DEV 0x2d: WR 0x09 = 0x2c ... !!!
    [ 29.405206] autorun-usecase.sh[114]: [m3vpss ] I2C Reg Value For MS = 0x22, Address: 0x0a
    [ 29.407011] autorun-usecase.sh[114]: [m3vpss ] I2C2: DEV 0x2d: WR 0x0a = 0x22 ... !!!
    [ 29.408697] autorun-usecase.sh[114]: [m3vpss ] DONE ar0331_lvds/src/issdrv_ar0331Api.c:AR0331_Transplant_DRV_imgsSetRegs:706 !!!
    [ 29.743500] autorun-usecase.sh[114]: [m3vpss ] 5764: SYSTEM : System VPSS Init Done !!!
    [ 29.745286] autorun-usecase.sh[114]: [m3vpss ] 5764: UTILS: DMA: HWI Create for INT62 !!!
    [ 29.746982] autorun-usecase.sh[114]: [m3vpss ] 5764: SYSTEM : Initializing Links !!!
    [ 29.748680] autorun-usecase.sh[114]: [m3vpss ] 5765: SYSTEM : FREE SPACE : System Heap = 1684720 B, Mbx = 10240 msgs)
    [ 29.750680] autorun-usecase.sh[114]: [m3vpss ] 5765: SYSTEM : FREE SPACE : SR0 Heap = 15372416 B (14 MB)
    [ 29.752430] autorun-usecase.sh[114]: [m3vpss ] 5765: SYSTEM : FREE SPACE : Frame Buffer = 105790336 B (100 MB)
    [ 29.754065] autorun-usecase.sh[114]: [m3vpss ] 5765: SYSTEM : FREE SPACE : Bitstream Buffer = 61865856 B (58 MB)
    [ 29.755726] autorun-usecase.sh[114]: [m3vpss ] 5766: SYSTEM : FREE SPACE : Tiler Buffer = 128 B (0 MB) - TILER OFF
    [ 29.757286] autorun-usecase.sh[114]: [m3vpss ] 5846: SYSTEM : Initializing Links ... DONE !!!
    [ 29.759297] autorun-usecase.sh[114]: [m3vpss ] 6099: CAMERA: Create in progress !!!
    [ 29.760982] autorun-usecase.sh[114]: [m3vpss ] Channel Num Stream 0 Ch 0 ChannelNum 0
    [ 29.762638] autorun-usecase.sh[114]: [m3vpss ] Channel Num Stream 1 Ch 0 ChannelNum 1
    [ 29.764302] autorun-usecase.sh[114]: [m3vpss ] 6100: CAMERA: VIP0 PortA camera mode is [ 8-bit, Non-mux Embedded Sync] !!!
    [ 29.766110] autorun-usecase.sh[114]: [m3vpss ] 6100: CAMERA: VIP 0: VID DEC 268436737 (0x10): 0002:20202020:20202020, AUD_STATUS 538976288
    [ 29.767784] autorun-usecase.sh[114]: [m3vpss ] Iss_captCreate:1661
    [ 29.769537] autorun-usecase.sh[114]: [m3vpss ] 6313: CAMERA: Create Done !!!
    [ 29.771253] autorun-usecase.sh[114]: [m3vpss ] 6403: CAMERA: Detect video in progress !!!
    [ 29.772845] autorun-usecase.sh[114]: [m3vpss ] 6403: CAMERA: Detect video Done !!!
    [ 29.774681] autorun-usecase.sh[114]: [m3vpss ] 6475: DUP : Create Done !!!
    [ 29.778357] autorun-usecase.sh[114]: [m3vpss ] 6477: MERGE : Create Done !!!
    [ 29.780236] autorun-usecase.sh[114]: [host] Vsys_eventHandler:OSA_dmaOpen passed with ch id = 6
    [ 29.782340] autorun-usecase.sh[114]: [host] Vsys_eventHandler:OSA_dmaOpen passed with ch id = 7
    [ 29.784178] autorun-usecase.sh[114]: queue id:0
    [ 29.785990] autorun-usecase.sh[114]: [host] IpcBitsInLink_tskMain:Entered
    [ 29.787731] autorun-usecase.sh[114]: [host] 776: IPC_BITS_IN : Create in progress !!!
    [ 29.790205] autorun-usecase.sh[114]: [host] 776: IPC_BITS_IN : ListMPOpen start !!!
    [ 29.792010] autorun-usecase.sh[114]: [host] 776: SYSTEM: Opening ListMP [VIDEO-M3_IPC_OUT_29] ...
    [ 29.793732] autorun-usecase.sh[114]: [host] 777: SYSTEM: Opening ListMP [VIDEO-M3_IPC_IN_29] ...
    [ 29.795332] autorun-usecase.sh[114]: [host] 777: IPC_BITS_IN : ListMPOpen done !!!
    [ 29.796945] autorun-usecase.sh[114]: [host] 778: IPC_BITS_IN : System_linkGetInfo done !!!
    [ 29.798800] autorun-usecase.sh[114]: [host] 778: IPC_BITS_IN : Create Done !!!
    [ 29.800571] autorun-usecase.sh[114]: [host] USECASE SETUP DONE
    [ 29.802260] autorun-usecase.sh[114]: [host]
    [ 29.804036] autorun-usecase.sh[114]: Application Run Completed
    [ 29.889705] autorun-usecase.sh[114]: [host] ITT server task running !!!
    [ 29.891964] autorun-usecase.sh[114]: [host]
    [ 29.893652] autorun-usecase.sh[114]: ITT ittServer_run
    [ 29.895146] autorun-usecase.sh[114]: [host] ITT Server Message initialization successful
    [ 29.902378] autorun-usecase.sh[114]: [host] DCC server Message ques is open succefully
    [ 29.905464] autorun-usecase.sh[114]: [host] Setting cmd <1> in message <b54b1c00>
    [ 29.907306] autorun-usecase.sh[114]: [host] Posting message <b54b1c00> in QId <10002>
    [ 29.909518] autorun-usecase.sh[114]: [host]
    [ 29.911245] autorun-usecase.sh[114]: ITT capture task created
    [ 29.913244] autorun-usecase.sh[114]: [host] Response from M3 is : 1
    [ 29.954806] autorun-usecase.sh[114]: [host] Response from M3 is : 1
    [ 29.956706] autorun-usecase.sh[114]: [host] Default parameters were sent sucessfully
    [ 29.958468] autorun-usecase.sh[114]: [host] Server Socket created with ID <22>
    [ 30.912277] autorun-usecase.sh[114]: [host]
    [ 30.914782] autorun-usecase.sh[114]: Channel Selected: 0
    [ 30.915615] autorun-usecase.sh[114]: [host]
    [ 30.931515] autorun-usecase.sh[114]: Channel Selected: 0,rate control = 0
    [ 30.932315] autorun-usecase.sh[114]: [host]
    [ 30.932798] autorun-usecase.sh[114]: ========== Stream FrameRate1 = 15 =================
    [ 30.940925] autorun-usecase.sh[114]: [host]
    [ 30.942785] autorun-usecase.sh[114]: Channel Selected: 0
    [ 30.949941] autorun-usecase.sh[114]: [host]
    [ 30.955974] autorun-usecase.sh[114]: Channel Selected: 0
    [ 30.956818] autorun-usecase.sh[114]: [host]
    [ 30.958034] autorun-usecase.sh[114]: Channel Selected: 0
    [ 30.966126] autorun-usecase.sh[114]: [host]
    [ 30.967021] autorun-usecase.sh[114]: Channel Selected: 0,packet size = 100
    [ 30.967606] autorun-usecase.sh[114]: [host]
    [ 30.968102] autorun-usecase.sh[114]: Channel Selected: 0,encPreset = 0
    [ 30.968567] autorun-usecase.sh[114]: [host]
    [ 31.034594] autorun-usecase.sh[114]: Channel Selected: 0,enable = 0Simple mixer control 'PGA',0
    [ 31.035309] autorun-usecase.sh[114]: Capabilities: cvolume cswitch
    [ 31.035733] autorun-usecase.sh[114]: Capture channels: Front Left - Front Right
    [ 31.036129] autorun-usecase.sh[114]: Limits: Capture 0 - 119
    [ 31.036479] autorun-usecase.sh[114]: Front Left: Capture 95 [80%] [47.50dB] [on]
    [ 31.036815] autorun-usecase.sh[114]: Front Right: Capture 95 [80%] [47.50dB] [on]
    [ 31.216113] autorun-usecase.sh[114]: Simple mixer control 'PCM',0
    [ 31.217409] autorun-usecase.sh[114]: Capabilities: pvolume
    [ 31.218134] autorun-usecase.sh[114]: Playback channels: Front Left - Front Right
    [ 31.218706] autorun-usecase.sh[114]: Limits: Playback 0 - 127
    [ 31.219282] autorun-usecase.sh[114]: Mono:
    [ 31.220800] autorun-usecase.sh[114]: Front Left: Playback 101 [80%] [-13.00dB]
    [ 31.221454] autorun-usecase.sh[114]: Front Right: Playback 101 [80%] [-13.00dB]
    [ 31.231114] autorun-usecase.sh[114]: [host]
    [ 31.232231] autorun-usecase.sh[114]: Force IDR on Channel: 0
    [ 31.232722] autorun-usecase.sh[114]: [host]
    [ 31.315735] sh (347): drop_caches: 1
    [ 31.522984] autorun-usecase.sh[114]: Force IDR on Channel: 1umount: can't unmount /mnt/mmc: Invalid argument
    [ 31.695958] autorun-usecase.sh[114]: mount: /dev/mmcblk0 is already mounted or /mnt/mmc busy
    [ 31.824846] FAT-fs (mmcblk0p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
    [ 31.973114] autorun-usecase.sh[114]: ApproDrvInit: 3
    [ 31.984328] autorun-usecase.sh[114]: queue id:163845
    [ 31.988849] autorun-usecase.sh[114]: queue id:0
    [ 31.989779] autorun-usecase.sh[114]: queue id:32769
    [ 32.117957] autorun-usecase.sh[114]: killall: dhcpcd: no process killed
    [ 32.270609] autorun-usecase.sh[114]: net_get_netmask_MS_sys: ioctl SIOCGIFNETMASK: Cannot assign requested address
    [ 32.310398] autorun-usecase.sh[114]: net_get_netmask_MS_sys: ioctl SIOCGIFNETMASK: Cannot assign requested address
    [ 32.362872] autorun-usecase.sh[114]: net_get_netmask_MS_sys: ioctl SIOCGIFNETMASK: Cannot assign requested address
    [ 33.501622] Mass Storage Function, version: 2009/09/11
    [ 33.506849] LUN: removable file: (no medium)
    [ 33.511494] LUN: removable file: /dev/sbulla
    [ 33.515791] Number of LUNs=1
    [ 33.529713] g_mass_storage gadget: Mass Storage Gadget, version: 2009/09/11
    [ 33.536765] g_mass_storage gadget: userspace failed to provide iSerialNumber
    [ 33.543896] g_mass_storage gadget: g_mass_storage ready
    [ 33.561548] autorun-usecase.sh[114]: [05/Dec/2016:07:39:55 +0000] boa: server version Boa/0.94.13
    [ 33.563603] autorun-usecase.sh[114]: [05/Dec/2016:07:39:55 +0000] boa: server built Jul 3 2017 at 12:43:11.
    [ 33.564474] autorun-usecase.sh[114]: [05/Dec/2016:07:39:55 +0000] boa: starting server pid=354, port 80
    [ 33.666828] autorun-usecase.sh[114]: queue id:0
    [ 33.744835] autorun-usecase.sh[114]: queue id:0
    [ 34.262884] autorun-usecase.sh[114]: queue id:131076
    [ 34.266171] autorun-usecase.sh[114]: ApproDrvInit: 10
    [ 34.267962] autorun-usecase.sh[114]: queue id:163845
    [ 34.274175] autorun-usecase.sh[114]: ApproDrvInit: 2
    [ 34.276493] autorun-usecase.sh[114]: ApproDrvInit: 6
    [ 34.279395] autorun-usecase.sh[114]: ApproDrvInit: 8
    [ 34.288474] autorun-usecase.sh[114]: queue id:163845
    [ 34.289476] autorun-usecase.sh[114]: queue id:163845
    [ 34.302020] autorun-usecase.sh[114]: ApproDrvInit: 9
    [ 34.304646] autorun-usecase.sh[114]: queue id:163845
    [ 34.305569] autorun-usecase.sh[114]: queue id:163845
    [ 34.306715] autorun-usecase.sh[114]: Initializing...
    [ 34.307461] autorun-usecase.sh[114]: Initializing...
    [ 34.322586] autorun-usecase.sh[114]: Initializing...
    [ 34.323431] autorun-usecase.sh[114]: Initializing...
    [ 34.324115] autorun-usecase.sh[114]: Initializing...
    [ 34.325084] autorun-usecase.sh[114]: ...done initializing
    [ 34.325858] autorun-usecase.sh[114]: ...done initializing
    [ 34.326456] autorun-usecase.sh[114]: Play this stream using the URL:
    [ 34.327115] autorun-usecase.sh[114]: rtsp://192.168.1.224:8557/PSIA/Streaming/channels/2?videoCodecType=H.264
    [ 34.327821] autorun-usecase.sh[114]: (We use port 8304 for optional RTSP-over-HTTP tunneling.)
    [ 34.336181] autorun-usecase.sh[114]: ...done initializing
    [ 34.337262] autorun-usecase.sh[114]: Play this stream using the URL:
    [ 34.338227] autorun-usecase.sh[114]: rtsp://192.168.1.224:8554/PSIA/Streaming/channels/1?videoCodecType=MPEG4
    [ 34.338942] autorun-usecase.sh[114]: (We use port 8301 for optional RTSP-over-HTTP tunneling.)
    [ 34.339947] autorun-usecase.sh[114]: ...done initializing
    [ 34.340793] autorun-usecase.sh[114]: ...done initializing
    [ 34.341898] autorun-usecase.sh[114]: Play this stream using the URL:
    [ 34.342665] autorun-usecase.sh[114]: rtsp://192.168.1.224:8555/PSIA/Streaming/channels/0?videoCodecType=MJPEG
    [ 34.343331] autorun-usecase.sh[114]: (We use port 8302 for optional RTSP-over-HTTP tunneling.)
    [ 34.344308] autorun-usecase.sh[114]: Play this stream using the URL:
    [ 34.345685] autorun-usecase.sh[114]: rtsp://192.168.1.224:8556/PSIA/Streaming/channels/2?videoCodecType=H.264
    [ 34.346827] autorun-usecase.sh[114]: (We use port 8303 for optional RTSP-over-HTTP tunneling.)
    [ 34.347867] autorun-usecase.sh[114]: Play this stream for using the URL:
    [ 34.348808] autorun-usecase.sh[114]: rtsp://192.168.1.224:8553/PSIA/Streaming/channels/1?videoCodecType=MPEG4
    [ 34.349702] autorun-usecase.sh[114]: (We use port 8300 for optional RTSP-over-HTTP tunneling.)
    [ 60.000078] autorun-usecase.sh[114]: [host]
    [ 60.001028] autorun-usecase.sh[114]: Usecase is Active !!!
  • From what I understand you want to boot up using MMC/SD card (filesystem on MMC/SD) with static IP addr.

     

    Nithin Dominic said:
    U-Boot SPL 2016.05 (Jul 03 2017 - 12:41:39)
    Trying to boot from MMC2
    reading u-boot.img
    reading u-boot.img


    U-Boot 2016.05 (Jul 03 2017 - 12:41:39 +0530)

    I2C:ready
    DRAM: 1 GiB
    MMC: OMAP SD/MMC: 0
    Net: cpsw
    Hit any key to stop autoboot: 1 0
    switch to partitions #0, OK
    mmc0 is current device
    SD/MMC found on device 0
    Booting from mmc ...
    ## Error: "mmcargs" not defined
    reading uImage
    2662672 bytes read in 299 ms (8.5 MiB/s)
    reading dm38x-csk.dtb
    58698 bytes read in 12 ms (4.7 MiB/s)
    ## Booting kernel from Legacy Image at 82000000 ...
    Image Name: Linux-4.4.12
    Image Type: ARM Linux Kernel Image (uncompressed)
    Data Size: 2662608 Bytes = 2.5 MiB
    Load Address: 80008000
    Entry Point: 80008000
    Verifying Checksum ... OK
    ## Flattened Device Tree blob at 84000000
    Booting using the fdt blob at 0x84000000
    Loading Kernel Image ... OK
    Loading Device Tree to 844ee000, end 844ff549 ... OK

    Starting kernel ...

    In the log you shared, I do not see where you print u-boot environments and where you set u-boot environments. Can you comment on that point?

    Nithin Dominic said:
    [ 0.000000] Kernel command line: console=ttyS0,115200n8 root=/dev/mmcblk0p2 rootwait rw mem=80M vram=4M cmemk.phys_start=0x85000000 cmemk.phys_end=0x89000000 cmemk.allowOverlap=1 notifyk.vpssm3_sva=0xBFD00000 earlyprintk ip=192.168.1.125 192.168.1.100 192.168.1.1::off

    ip=192.168.1.125 192.168.1.100 192.168.1.1::off, what is this? This does not look correct to me.

    Regards,
    Pavel

  • Hi Pavel,
    yes u are right I want to boot up using MMC/SD card (filesystem on MMC/SD) with static IP addr.

    The following were set in the u-boot env

    setenv ipaddr 192.168.1.125
    setenv serverip 192.168.1.100
    setenv gatewayip 192.168.1.1
    setenv netmask 255.255.255.0
    setenv hostname ipnc

    setenv bootargs console=ttyS0,115200n8 root=/dev/mmcblk0p2 rootwait rw mem=80M vram=4M  cmemk.phys_start=0x85000000 cmemk.phys_end=0x89000000 cmemk.allowOverlap=1 notifyk.vpssm3_sva=0xBFD00000 earlyprintk ip=192.168.1.125
     

    and saved

    I shared the wrong log, this is the correct one;

    Kernel command line: console=ttyS0,115200n8 root=/dev/mmcblk0p2 rootwait rw mem=80M vram=4M cmemk.phys_start=0x85000000 cmemk.phys_end=0x89000000 cmemk.allowOverlap=1 notifyk.vpssm3_sva=0xBFD00000 earlyprintk ip=192.168.1.125

  • Nithin,

    I am requesting again the full console boot up log, not just few fragments of it. I am not able to help you further as I can not see the full boot up log.

    Regards,
    Pavel
  • Nithin,

    I see your IP is static and set to 192.168.1.125, and there is no DHCP request initiated. What is wrong now? What is your question?

    Regards,
    Pavel
  • please check the last part of the log;

    [ 34.341898] autorun-usecase.sh[114]: Play this stream using the URL:
    [ 34.342665] autorun-usecase.sh[114]: rtsp://192.168.1.224:8555/PSIA/Streaming/channels/0?videoCodecType=MJPEG
    [ 34.343331] autorun-usecase.sh[114]: (We use port 8302 for optional RTSP-over-HTTP tunneling.)
    [ 34.344308] autorun-usecase.sh[114]: Play this stream using the URL:
    [ 34.345685] autorun-usecase.sh[114]: rtsp://192.168.1.224:8556/PSIA/Streaming/channels/2?videoCodecType=H.264
    [ 34.346827] autorun-usecase.sh[114]: (We use port 8303 for optional RTSP-over-HTTP tunneling.)
    [ 34.347867] autorun-usecase.sh[114]: Play this stream for using the URL:
    [ 34.348808] autorun-usecase.sh[114]: rtsp://192.168.1.224:8553/PSIA/Streaming/channels/1?videoCodecType=MPEG4
    [ 34.349702] autorun-usecase.sh[114]: (We use port 8300 for optional RTSP-over-HTTP tunneling.)
    [ 60.000078] autorun-usecase.sh[114]: [host]
    [ 60.001028] autorun-usecase.sh[114]: Usecase is Active !!!

    Streaming is through 192.168.1.224
  • Nithin,

    This is some application located and started from the root filesystem.

    Your initial post in this e2e thread was about static IP settings in bootargs:

    I'm trying to do this by making changes in bootargs... Its not working for me.

    Does this following command work?

    "setenv bootargs root=/dev/nfs rw nfsroot=$(serverip):$(rootpath) ip=$(ipaddr):$(serverip):$(gatewayip):$(netmask):$(hostname)::off"

    I think this is done now, you have static IP configured in u-boot and linux kernel.

     

    After linux kernel do its work, it mounts the filesystem and start the init process located in the filesystem. Then some script, process, application located in the filesystem start some additional configuration. I see autorun-usecase.sh is auto started and that script takes control over the system.

    Are you sure that 192.168.1.224 is your DM38x board IP address? How you define this? It seems to me this is some remote server IP address. You should check your DM38x board IP address with "ifconfig" command.

    Regards,
    Pavel

     

  • Hi Pavel,
    192.168.1.224 is IP_Default in DM38x, whenever the board is not connected with any remote server it provides the video streaming RTSP links with this IP always.
    Thanks
  • Nithin Dominic said:
    192.168.1.224 is IP_Default in DM38x, whenever the board is not connected with any remote server it provides the video streaming RTSP links with this IP always.

    If 192.168.1.224 is your DM38x board static IP, not remote server IP (which I doubt), this IP should be set in the scripts located in the filesystem, not from u-boot/kernel. Please remove the autorun.sh and autorun-usecase.sh files from your filesystem and try again.

    Regards,
    Pavel

  • In filesystem we have autorun-usecase.sh alone and No autorun.sh. I removed autorun-usecase.sh and tired to boot, the boot process stopped;

    [ OK ] Started thermal-zone-init.service.
    [ OK ] Reached target Multi-User System.

    _____ _____ _ _
    | _ |___ ___ ___ ___ | _ |___ ___ |_|___ ___| |_
    | | _| .'| . | . | | __| _| . | | | -_| _| _|
    |__|__|_| |__,|_ |___| |__| |_| |___|_| |___|___|_|
    |___| |___|

    Arago Project http://arago-project.org ti81xx ttyS0

    Arago 2016.05 ti81xx ttyS0

    ti81xx login:
  • Nithin Dominic said:
    In filesystem we have autorun-usecase.sh alone and No autorun.sh. I removed autorun-usecase.sh

    Yes, autorun-usecase.sh only

    Nithin Dominic said:
    boot process stopped

    Nithin Dominic said:
    ti81xx login:

    Enter "root" then, enter "ifconfig" and provide me the result

  • Hi Pavel,

    Following are the results;

    Arago Project http://arago-project.org ti81xx ttyS0

    Arago 2016.05 ti81xx ttyS0

    ti81xx login: root
    root@ti81xx:~# ifconfig
    eth0 Link encap:Ethernet HWaddr 7C:66:9D:F8:BB:72
    inet6 addr: fe80::7e66:9dff:fef8:bb72%132976/64 Scope:Link
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    RX packets:0 errors:0 dropped:0 overruns:0 frame:0
    TX packets:12 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:0 (0.0 B) TX bytes:2008 (1.9 KiB)
    Interrupt:170

    lo Link encap:Local Loopback
    inet addr:127.0.0.1 Mask:255.0.0.0
    inet6 addr: ::1%132976/128 Scope:Host
    UP LOOPBACK RUNNING MTU:65536 Metric:1
    RX packets:0 errors:0 dropped:0 overruns:0 frame:0
    TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1
    RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)

    root@ti81xx:~#
  • Please enter "ifconfig -a" and provide me the result
  • Arago Project http://arago-project.org ti81xx ttyS0

    Arago 2016.05 ti81xx ttyS0

    ti81xx login: root
    root@ti81xx:~# ifconfig -a
    eth0 Link encap:Ethernet HWaddr 7C:66:9D:F8:BB:72
    inet6 addr: fe80::7e66:9dff:fef8:bb72%132976/64 Scope:Link
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    RX packets:13 errors:0 dropped:0 overruns:0 frame:0
    TX packets:12 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:780 (780.0 B) TX bytes:2008 (1.9 KiB)
    Interrupt:170

    lo Link encap:Local Loopback
    inet addr:127.0.0.1 Mask:255.0.0.0
    inet6 addr: ::1%132976/128 Scope:Host
    UP LOOPBACK RUNNING MTU:65536 Metric:1
    RX packets:0 errors:0 dropped:0 overruns:0 frame:0
    TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1
    RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)

    sit0 Link encap:IPv6-in-IPv4
    NOARP MTU:1480 Metric:1
    RX packets:0 errors:0 dropped:0 overruns:0 frame:0
    TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1
    RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)

    root@ti81xx:~#
  • Please enter "ip -4 addr" and "ip addr show" and provide me the result
  • Arago Project http://arago-project.org ti81xx ttyS0

    Arago 2016.05 ti81xx ttyS0

    ti81xx login: root
    root@ti81xx:~# ip -4 addr
    1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue qlen 1
    inet 127.0.0.1/8 scope host lo
    valid_lft forever preferred_lft forever
    root@ti81xx:~# ip addr show
    1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue qlen 1
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
    valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host
    valid_lft forever preferred_lft forever
    2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast qlen 1000
    link/ether 7c:66:9d:f8:bb:72 brd ff:ff:ff:ff:ff:ff
    inet6 fe80::7e66:9dff:fef8:bb72/64 scope link
    valid_lft forever preferred_lft forever
    3: sit0@NONE: <NOARP> mtu 1480 qdisc noop qlen 1
    link/sit 0.0.0.0 brd 0.0.0.0
    root@ti81xx:~#
  • Nithin,

    By some reason ipv4 (inet) address can not be shown. You have only ipv6 (inet6) address. Have you made any changes in linux kernel regarding ipv4 and ipv6?

    In the linux kernel boot log you have:

    Kernel command line: console=ttyS0,115200n8 root=/dev/mmcblk0p2 rootwait rw mem=80M vram=4M cmemk.phys_start=0x85000000 cmemk.phys_end=0x89000000 cmemk.allowOverlap=1 notifyk.vpssm3_sva=0xBFD00000 earlyprintk ip=192.168.1.125

    sit: IPv6 over IPv4 tunneling driver

    IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
    cpsw 4a100000.ethernet eth0: Link is Up - 100Mbps/Full - flow control rx/tx
    IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
    IP-Config: Guessing netmask 255.255.255.0
    IP-Config: Complete:
    device=eth0, hwaddr=7c:66:9d:f8:bb:72, ipaddr=192.168.1.125, mask=255.255.255.0, gw=198.168.1.1
    host=192.168.1.125, domain=, nis-domain=(none)
    bootserver=255.255.255.255, rootserver=255.255.255.255, rootpath=
    wlan-en-regulator: disabling


    From kernel boot log, I see you have IP addr of 192.168.1.125. The 192.168.224 IP addr is used afterwards, at user space. You should examine and debug autorun-usecase.sh script. Check all the kernel modules and subscripts that it invokes to find where exactly this 192.168.224 IP addr is set and how it is used (for DM38x board IP or for RTSP server IP).

    Regards,
    Pavel

  • This is my autorun-usecase.sh, Can you please have a look and suggest which area I shouls concentrate more

    #!/bin/bash

    WLAN_MODE=STA
    #WLAN_MODE=AP
    #WLAN_MODE=NONE

    amixer cset name='PCM Playback Volume' 90% 90%
    amixer cset name='PGA Capture Volume' 60%
    amixer cset name='Right PGA Mixer Mic2R Switch' on
    amixer cset name='Left PGA Mixer Mic2L Switch' on

    echo "Mount mtd6 and mtd7 partitions"
    /opt/ipnc/smart_mount UBIFS /dev/mtd6 /mnt/nand
    mkdir /tmp/nand
    /opt/ipnc/smart_mount UBIFS /dev/mtd7 /tmp/nand

    cd /opt/ipnc

    #Wlan
    if [ $WLAN_MODE = AP ]
    then
    #wlan in AP mode
    echo "wifi: in AP mode"
    insmod ./kermod/wlan/cfg80211.ko
    insmod ./kermod/wlan/mac80211.ko
    insmod ./kermod/wlan/wlcore_sdio.ko
    insmod ./kermod/wlan/wlcore.ko
    insmod ./kermod/wlan/wl18xx.ko
    sleep 1
    /usr/share/wl18xx/ap_start.sh &
    elif [ $WLAN_MODE = STA ]
    then
    #wlan in STA mode
    echo "wifi: in STA mode"
    insmod ./kermod/wlan/cfg80211.ko
    insmod ./kermod/wlan/mac80211.ko
    insmod ./kermod/wlan/wlcore_sdio.ko
    insmod ./kermod/wlan/wlcore.ko
    insmod ./kermod/wlan/wl18xx.ko
    sleep 1
    iw wlan0 scan | grep SSID
    iw wlan0 connect ti81xx-AP
    else
    echo "wifi: is not setup"
    fi

    ./bin/remote_debug_client.out 0xbff00000 &
    insmod ./kermod/syslink.ko TRACE=1  TRACEFAILURE=1 2> /dev/null

    ./linux_prcm_ipcam r &
    sleep 1
    kill -9 "$!"

    ./bin/sys_pri.out --L3-bw-reg-set HDVICP0 0 0 900 2500&
    ./bin/sys_pri.out --L3-bw-reg-set ISS 3 3 400 2500&
    ./bin/sys_pri.out --dmm-pri-set ISS 0&
    ./bin/sys_pri.out --dmm-pri-set HDVICP0 1&

    # USB
    insmod sbull.ko
    umount /mnt/ramdisk 2>/dev/null
    rmmod sbull.ko 2>/dev/null
    insmod sbull.ko
    sleep 1
    mkdosfs -v -F16 /dev/sbulla 2>/dev/null
    mkdir /mnt/ramdisk 2>/dev/null
    mount -t vfat /dev/sbulla /mnt/ramdisk 2>/dev/null
    insmod configfs.ko
    insmod libcomposite.ko
    insmod usb_f_mass_storage.ko
    insmod g_mass_storage.ko file=/dev/sbulla stall=0 removable=1

    ./system_server &
    sleep 8
    ./boot_proc 1&
    sleep 2
    ./boa -c /etc &
    sleep 2
    ./boot_proc 2&


  • autorun-usecase.sh[114]: Play this stream using the URL:
    autorun-usecase.sh[114]: rtsp://192.168.1.224:8554/PSIA/Streaming/channels/1?videoCodecType=MPEG4

    Based on the above log messages, I would suggest you to explore the below pointers:

    processors.wiki.ti.com/.../IPNC_RDK_DM38x_,_DM8127

    IPNC_RDK_3.9.1/Source/ipnc_rdk/ipnc_app/network/live/testProgs/testMPEG4VideoStreamer.cpp

    char* url = rtspServer->rtspURL(sms);
    *env << "Play this stream using the URL \"" << url << "\"\n";


    You should track where rtspURL come from and how is set up.

    Regards,
    Pavel

  • Thank you Pavel,

    So can we conclude that in DM38x_CSK we cannot set desired static IP using boot arguments in U-boot environments.?

    and
    *env << "Play this stream using the URL:\n\t" << url << "\n";
    *env << "\n(We use port " << rtspServer->httpServerPortNum() << " for optional RTSP-over-HTTP
    is in

    /ti/ipnc_rdk-3.9.0/Source/ipnc_rdk/ipnc_app/network/live/appro/wis-streamer.cpp

    Regards.
  • Nithin Dominic said:
    So can we conclude that in DM38x_CSK we cannot set desired static IP using boot arguments in U-boot environments.?

    No, I can not conclude this.I can conclude the opposite.

    From what I see in your log, static IP is set successful in u-boot environments and is valid till the kernel boot up. Afterwards it might be changed in user space (by a script, external kernel module, C/C++ application, etc), but I can not be sure from the log. Looking only the log I can not be sure that 192.168.1.224 is the address of your DM38x board. This 192.168.1.224 address is the rtspURL(sms) value, that is why I suggest you to track what is this variable and how it is set.

    Nithin Dominic said:
    and
    *env << "Play this stream using the URL:\n\t" << url << "\n";
    *env << "\n(We use port " << rtspServer->httpServerPortNum() << " for optional RTSP-over-HTTP
    is in

    /ti/ipnc_rdk-3.9.0/Source/ipnc_rdk/ipnc_app/network/live/appro/wis-streamer.cpp

    If this is a question, then yes, it is.

    Regards,
    Pavel

  • Hi ,
    sorry to interrupt povel and nithin,

    It can be done using USB As I told before (check previous post of min) , I have done it for CSK only at my place. Please use ubuntu and wine to run the application and connect USB and make sure you don't run systemd-networkd (systemctl disable systemd-networkd.service) this command will take care from next boot . Make sure you do apply -> exit and then eject USB drive after modifying values using windows application.

    I guess your using 3.9.1 or 3.9.0 , I will check your above posts for that anyhow.

    Thanks & Regards,
    Vishwanath Patil
  • Hi Vishwanath,

    Thank you for the input.

    Regards,
    Pavel
  • This process is to be done after I get IP address either from DHCP or 192.168.1.224 ??
    Will the the IP I set be saved in MMC even after power off?

    Can you explain "systemd-networkd (systemctl disable systemd-networkd.service) " , where I must make sure it is not run?

    After setting the values and applying ..it gives a pop up message 'once USB is removed it will be saved'
  • This as to be done once you get , 192.168.1.224 ..echo "static" > /opt/ipnc/ip_config you have already done i guess. In Systemd init system there will be many services like deamon they will run , If you don't want to run then you can use systemctl command to disable it from shell only.

  • thnaks Vishwanath,

    where do I do this " echo "static" > /opt/ipnc/ip_config''
    i'm using ipnc_rdk-3.9.0, here if we check the filesystem we don't have ip_config in opt/ipnc

    regards.
  • you create that file , that is not a problem
  • Hi Vishwa,

    I created ip_config.sh as you said and did echo "static" in that.

    I tired changing IP from 192.168.1.224 to desired IP in USB Configuration. As soon as I change IP in that...and check ifconfig, complete eth0 is disappeared. 

    It is not set to new IP.

    While applying I get the following message. So I do exit and eject USB.