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.

Tiler Implementation in IPNC RDK 3.8 with My own Application

Other Parts Discussed in Thread: TPS65910, DM385

Hi,

I am using IPNC RDK DM8127 reference kit, version 3.8, where try to implement 'tiler' module in My own full feature usecase. (4 channel H.264 Encoding and streaming).

1. First I Tried to implement Tiler module in Original IPNC RDK version 3.8 (Without Any changes) - Its works fine.

2. Second I Implement my own 4 channel H.264 streaming usecase, And without Tiler module implement - Its works fine.

3. Third I Tried to implement Tiler in my own Usecase, Got Results as following.

- All 4 channels resolutions are 1920x1080, 960x544, 720x480 & 640x480. Among them, last 2 channels 720x480 and 640x480 streaming properly, but     when I tried to rotate 90 degree or 270 degree, there is some issue. [Please verify attached file - "640_480_Image.jpg" for your reference.]

- Where, First and Second channels (1080p & 960x544) are streaming but getting frames not properly. [Please verify attached file - 960_544_Image.jpg for your reference]

I think Memory Issue is there but not sure, Please guide me where to change.

I also attached Rules.make, Log file & config_512M_tiler.bld, Where I Modify config_512_tiler.bld file to reduce TILER_SIZE and increse SR2_FRAME_BUFFER_SIZE.

For Tiler Enable In Rules.make file, I do following :

# TILER Memory enable
IPNC_TILER_ENABLE := YES
CAMERA_TILER_ENABLE  := YES
BTE_ENABLE := NO

640x480 Resolution file:

960x544 Resolution file:


*  ======== config.bld - config_512M_tiler.bld ========
 *  Build configuration script for HDVPSS drivers
 */

/* load the required modules for the configuration */

var M3 = xdc.useModule('ti.targets.arm.elf.M3');
var C674 = xdc.useModule('ti.targets.elf.C674');

var buildReleaseConfig = true;

/* configure  the options for the M3 targets     */

/* M3 compiler directory path                    */
M3.rootDir = java.lang.System.getenv("CGTOOLS");

/* linker options */

M3.lnkOpts.suffix += " --zero_init=off ";
M3.lnkOpts.suffix += " --dynamic --retain=_Ipc_ResetVector";

/* compiler options                                */
M3.ccOpts.suffix += " --gcc -DTI_814X_BUILD -DPLATFORM_EVM_SI -DSYSLINK_BUILD_RTOS -DUSE_SYSLINK_NOTIFY=0 -DUTILS_ASSERT_ENABLE";

/* set default platform and list of all interested
 * platforms for M3
 */
M3.platforms = [
                        "ti.platforms.evmTI814X:core0",
                        "ti.platforms.evmTI814X:core1",
               ];

/* Select the default platform
 *
 * Making core1 as defualt core configuration to be used
 *  Core 0 ==    Ducati.M3.VIDEO
 *  Core 1 ==    Ducati.M3.VPS
 */
M3.platform = M3.platforms[1];

/* configure  the options for the C674 targets     */

/* C674 compiler directory path                    */
C674.rootDir = java.lang.System.getenv("CGTOOLS_DSP");

/* linker options */

C674.lnkOpts.suffix += " --zero_init=off ";
C674.lnkOpts.suffix += " --dynamic --retain=_Ipc_ResetVector";

/* compiler options                                */
C674.ccOpts.suffix += " -DTI_814X_BUILD -DPLATFORM_EVM_SI -DSYSLINK_BUILD_RTOS -DUSE_SYSLINK_NOTIFY=0";

C674.platforms = ["ti.platforms.evmTI816X:plat"];
C674.platform = C674.platforms[0];

/* list interested targets in Build.targets array  */
Build.targets = [
                    M3,
                    C674,
                ];

/*

Memory Map - 512MB DDR

+--------------+
| 80MB         | Linux
|              |
|              |
+--------------+
| 64MB         | CMEM
|              |
|              |
+--------------+
| 59MB         | (SR1) Bitstream buffer (Cached)
|              |
+--------------+
| 3MB          | Video M3 code
+--------------+
| 14MB         | Video M3 data
+--------------+
| 2MB          | VPSS / DSS M3 code
+--------------+
| 23MB         | VPSS / DSS M3 data
+--------------+
| 1MB          | DSP code
+--------------+
| 10MB         | DSP data
+--------------+
| 192MB        | Tiler buffer
|              |
+--------------+
| 41MB        | SR(2) Frame buffer
|              |
|              |
|              | VPSS-VID M3 Frame buffer
|              |
|              |
|              |
|              |
|              |
+--------------+
| 16MB         | (SR0) Syslink MsgQ / IPC List MP (Non-cached)
+--------------+
| 2MB          | VPSS M3 - VPDMA descriptor
+--------------+
| 2MB          | VPSS M3 - FBDev
+--------------+
| 2MB          | Host - VPSS M3 Notify (for FBDev)
+--------------+
| 1MB          | Remote Printf
+--------------+

*/

var KB=1024;
var MB=KB*KB;
var GB=KB*KB*KB;

var DDR3_ADDR                = 0x80000000;
var DDR3_SIZE                = 1 * GB;
var DDR3_ADDR_256_REG0_START = 0x80000000;
var DDR3_ADDR_256_REG0_END   = 0x90000000;
var DDR3_ADDR_256_REG1_START = 0xB0000000;
var DDR3_ADDR_256_REG1_END   = 0xC0000000;



var OCMC0_ADDR                 = 0x40300000;
var OCMC1_ADDR                 = 0x40400000;
var OCMC_SIZE                  = 256*KB;

/* first 256MB */
var LINUX_SIZE                 = 80*MB;
var CMEM_SIZE                  = 64*MB         
var SR1_SIZE                   = 59*MB;    
var VIDEO_M3_CODE_SIZE         = 3*MB;
var VIDEO_M3_DATA_SIZE         = 14*MB;
var DSS_M3_CODE_SIZE           = 2*MB;
var DSS_M3_DATA_SIZE           = 23*MB;
var DSP_CODE_SIZE              = 1*MB;
var DSP_DATA_SIZE              = 10*MB;

/* second 256MB */
var TILER_SIZE                 = 160*MB; /* Reducing this to fix Vid Frame Alloc failures. Need to fix */ /* MUST be aligned on 128MB boundary */
var SR2_FRAME_BUFFER_SIZE      = 73*MB;  
var SR0_SIZE                   = 16*MB;
var HDVPSS_DESC_SIZE           = 2*MB;
var HDVPSS_SHARED_SIZE         = 2*MB;
var NOTIFY_SHARED_SIZE         = 2*MB;
var REMOTE_DEBUG_SIZE          = 1*MB;

/* first 256MB */
var LINUX_ADDR                 = DDR3_ADDR_256_REG0_START;
var CMEM_ADDR                  = LINUX_ADDR                 + LINUX_SIZE;
var SR1_ADDR                   = CMEM_ADDR                  + CMEM_SIZE;
var VIDEO_M3_CODE_ADDR         = SR1_ADDR                   + SR1_SIZE;
var VIDEO_M3_DATA_ADDR         = VIDEO_M3_CODE_ADDR         + VIDEO_M3_CODE_SIZE;
var DSS_M3_CODE_ADDR           = VIDEO_M3_DATA_ADDR         + VIDEO_M3_DATA_SIZE;
var DSS_M3_DATA_ADDR           = DSS_M3_CODE_ADDR           + DSS_M3_CODE_SIZE;
var DSP_CODE_ADDR              = DSS_M3_DATA_ADDR           + DSS_M3_DATA_SIZE;
var DSP_DATA_ADDR              = DSP_CODE_ADDR              + DSP_CODE_SIZE;
if ((DSP_DATA_ADDR + DSP_DATA_SIZE) > DDR3_ADDR_256_REG0_END)
{
  throw xdc.$$XDCException("MEMORY_MAP OVERFLOW ERROR ",
                           "\nRegion End: " + "0x" + java.lang.Long.toHexString(DDR3_ADDR_256_REG0_END) +
                           "\nActual End: " + "0x" + java.lang.Long.toHexString(DSP_DATA_ADDR + DSP_DATA_SIZE));
}

/* second 256MB */
var TILER_ADDR             = DDR3_ADDR_256_REG1_START;
var SR2_FRAME_BUFFER_ADDR  = TILER_ADDR  + TILER_SIZE;
var SR0_ADDR               = SR2_FRAME_BUFFER_ADDR + SR2_FRAME_BUFFER_SIZE;
var HDVPSS_DESC_ADDR       = SR0_ADDR + SR0_SIZE;
var HDVPSS_SHARED_ADDR     = HDVPSS_DESC_ADDR  + HDVPSS_DESC_SIZE;          
var NOTIFY_SHARED_ADDR     = HDVPSS_SHARED_ADDR + HDVPSS_SHARED_SIZE;
var REMOTE_DEBUG_ADDR      = NOTIFY_SHARED_ADDR + NOTIFY_SHARED_SIZE;
if ((REMOTE_DEBUG_ADDR + REMOTE_DEBUG_SIZE) > DDR3_ADDR_256_REG1_END)
{
  throw xdc.$$XDCException("MEMORY_MAP OVERFLOW ERROR ",
                           "\nRegion End: " + "0x" + java.lang.Long.toHexString(DDR3_ADDR_256_REG1_END) +
                           "\nActual End: " + "0x" + java.lang.Long.toHexString(REMOTE_DEBUG_ADDR + REMOTE_DEBUG_SIZE ));
}

var TOTAL_DDR_USED_SIZE_IN_MB  = ((((REMOTE_DEBUG_ADDR + REMOTE_DEBUG_SIZE) - DDR3_ADDR_256_REG1_START)) + ((DSP_DATA_ADDR + DSP_DATA_SIZE) - DDR3_ADDR_256_REG0_START))/MB;

print(" ### ");
print(" ### Total DDR usage in MB = " + TOTAL_DDR_USED_SIZE_IN_MB + " MB ###");
print(" ### ");

Build.platformTable["ti.platforms.evmTI814X:core1"] =
{
    externalMemoryMap:
    [
        ["DDR3_RAM", {
            comment: "DDR3_RAM",
            name: "DDR3_RAM",
            base: DDR3_ADDR,
            len:  DDR3_SIZE
        }],
        ["OCMC0_RAM", {
            comment: "OCMC0_RAM",
            name: "OCMC0_RAM",
            base: OCMC0_ADDR,
            len:  OCMC_SIZE
        }],
        ["OCMC1_RAM", {
            comment: "OCMC1_RAM",
            name: "OCMC1_RAM",
            base: OCMC1_ADDR,
            len:  OCMC_SIZE
        }],
    ],
    customMemoryMap:
    [
        ["LINUX_MEM", {
            comment : "LINUX_MEM",
            name    : "LINUX_MEM",
            base    : LINUX_ADDR,
            len     : LINUX_SIZE
        }],
        ["SR1", {
            comment : "SR1",
            name    : "SR1",
            base    : SR1_ADDR,
            len     : SR1_SIZE
        }],
        ["VIDEO_M3_CODE_MEM", {
            comment : "VIDEO_M3_CODE_MEM",
            name    : "VIDEO_M3_CODE_MEM",
            base    : VIDEO_M3_CODE_ADDR,
            len     : VIDEO_M3_CODE_SIZE
        }],
        ["VIDEO_M3_DATA_MEM", {
            comment : "VIDEO_M3_DATA_MEM",
            name    : "VIDEO_M3_DATA_MEM",
            base    : VIDEO_M3_DATA_ADDR,
            len     : VIDEO_M3_DATA_SIZE
        }],
        ["DSS_M3_CODE_MEM", {
            comment : "DSS_M3_CODE_MEM",
            name    : "DSS_M3_CODE_MEM",
            base    : DSS_M3_CODE_ADDR,
            len     : DSS_M3_CODE_SIZE
        }],
        ["DDR3_M3", {
            comment : "DDR3_M3",
            name    : "DDR3_M3",
            base    : DSS_M3_DATA_ADDR,
            len     : DSS_M3_DATA_SIZE
        }],
        ["DSP_CODE_MEM", {
            comment : "DSP_CODE_MEM",
            name    : "DSP_CODE_MEM",
            base    : DSP_CODE_ADDR,
            len     : DSP_CODE_SIZE
        }],
        ["DSP_DATA_MEM", {
            comment : "DSP_DATA_MEM",
            name    : "DSP_DATA_MEM",
            base    : DSP_DATA_ADDR,
            len     : DSP_DATA_SIZE
        }],
         ["TILER_MEM", {
            comment : "TILER_MEM",
            name    : "TILER_MEM",
            base    : TILER_ADDR,
            len     : TILER_SIZE
        }],
        ["SR2_FRAME_BUFFER_MEM", {
            comment : "SR2_FRAME_BUFFER_MEM",
            name    : "SR2_FRAME_BUFFER_MEM",
            base    : SR2_FRAME_BUFFER_ADDR,
            len     : SR2_FRAME_BUFFER_SIZE
        }],
        ["SR0", {
            comment : "SR0",
            name    : "SR0",
            base    : SR0_ADDR,
            len     : SR0_SIZE
        }],
        ["HDVPSS_DESC_MEM", {
            comment : "HDVPSS_DESC_MEM",
            name    : "HDVPSS_DESC_MEM",
            base    : HDVPSS_DESC_ADDR,
            len     : HDVPSS_DESC_SIZE
        }],
        ["HDVPSS_SHARED_MEM", {
            comment : "HDVPSS_SHARED_MEM",
            name    : "HDVPSS_SHARED_MEM",
            base    : HDVPSS_SHARED_ADDR,
            len     : HDVPSS_SHARED_SIZE
        }],
        ["HOST_VPSS_NOTIFYMEM", {
            comment : "HOST_VPSS_NOTIFYMEM",
            name    : "HOST_VPSS_NOTIFYMEM",
            base    : NOTIFY_SHARED_ADDR,
            len     : NOTIFY_SHARED_SIZE
        }],
        ["REMOTE_DEBUG_MEM", {
            comment : "REMOTE_DEBUG_MEM",
            name    : "REMOTE_DEBUG_MEM",
            base    : REMOTE_DEBUG_ADDR,
            len     : REMOTE_DEBUG_SIZE
        }],
        ["L2_RAM", {
            comment: "L2_RAM",
            name: "L2_RAM",
            base: 0x20004000,
            len:  0x00010000
        }],
        ["L2_ROM", {
            comment: "L2_ROM",
            name: "L2_ROM",
            base: 0x00000000,
            len:  0x00004000
        }],
        ["OCMC0_RAM", {
            comment: "OCMC0_RAM",
            name: "OCMC0_RAM",
            base: OCMC0_ADDR,
            len:  OCMC_SIZE
        }],
        ["OCMC1_RAM", {
            comment: "OCMC1_RAM",
            name: "OCMC1_RAM",
            base: OCMC1_ADDR,
            len:  OCMC_SIZE
        }],
    ]
};

Build.platformTable["ti.platforms.evmTI814X:core0"] =
{
    externalMemoryMap:
    [
        ["DDR3_RAM", {
            comment: "DDR3_RAM",
            name: "DDR3_RAM",
            base: DDR3_ADDR,
            len:  DDR3_SIZE
        }],
        ["OCMC0_RAM", {
            comment: "OCMC0_RAM",
            name: "OCMC0_RAM",
            base: OCMC0_ADDR,
            len:  OCMC_SIZE
        }],
        ["OCMC1_RAM", {
            comment: "OCMC1_RAM",
            name: "OCMC1_RAM",
            base: OCMC1_ADDR,
            len:  OCMC_SIZE
        }],
    ],
    customMemoryMap:
    [
        ["LINUX_MEM", {
            comment : "LINUX_MEM",
            name    : "LINUX_MEM",
            base    : LINUX_ADDR,
            len     : LINUX_SIZE
        }],
        ["SR1", {
            comment : "SR1",
            name    : "SR1",
            base    : SR1_ADDR,
            len     : SR1_SIZE
        }],
        ["VIDEO_M3_CODE_MEM", {
            comment : "VIDEO_M3_CODE_MEM",
            name    : "VIDEO_M3_CODE_MEM",
            base    : VIDEO_M3_CODE_ADDR,
            len     : VIDEO_M3_CODE_SIZE
        }],
        ["DDR_M3", {
            comment : "DDR3_M3",
            name    : "DDR3_M3",
            base    : VIDEO_M3_DATA_ADDR,
            len     : VIDEO_M3_DATA_SIZE
        }],
        ["DSS_M3_CODE_MEM", {
            comment : "DSS_M3_CODE_MEM",
            name    : "DSS_M3_CODE_MEM",
            base    : DSS_M3_CODE_ADDR,
            len     : DSS_M3_CODE_SIZE
        }],
        ["DSS_M3_DATA_MEM", {
            comment : "DSS_M3_DATA_MEM",
            name    : "DSS_M3_DATA_MEM",
            base    : DSS_M3_DATA_ADDR,
            len     : DSS_M3_DATA_SIZE
        }],
        ["DSP_CODE_MEM", {
            comment : "DSP_CODE_MEM",
            name    : "DSP_CODE_MEM",
            base    : DSP_CODE_ADDR,
            len     : DSP_CODE_SIZE
        }],
        ["DSP_DATA_MEM", {
            comment : "DDR3_DSP",
            name    : "DDR3_DSP",
            base    : DSP_DATA_ADDR,
            len     : DSP_DATA_SIZE
        }],
        ["TILER_MEM", {
            comment : "TILER_MEM",
            name    : "TILER_MEM",
            base    : TILER_ADDR,
            len     : TILER_SIZE
        }],
        ["SR2_FRAME_BUFFER_MEM", {
            comment : "SR2_FRAME_BUFFER_MEM",
            name    : "SR2_FRAME_BUFFER_MEM",
            base    : SR2_FRAME_BUFFER_ADDR,
            len     : SR2_FRAME_BUFFER_SIZE
        }],
        ["SR0", {
            comment : "SR0",
            name    : "SR0",
            base    : SR0_ADDR,
            len     : SR0_SIZE
        }],
        ["HDVPSS_DESC_MEM", {
            comment : "HDVPSS_DESC_MEM",
            name    : "HDVPSS_DESC_MEM",
            base    : HDVPSS_DESC_ADDR,
            len     : HDVPSS_DESC_SIZE
        }],
        ["HDVPSS_SHARED_MEM", {
            comment : "HDVPSS_SHARED_MEM",
            name    : "HDVPSS_SHARED_MEM",
            base    : HDVPSS_SHARED_ADDR,
            len     : HDVPSS_SHARED_SIZE
        }],
        ["HOST_VPSS_NOTIFYMEM", {
            comment : "HOST_VPSS_NOTIFYMEM",
            name    : "HOST_VPSS_NOTIFYMEM",
            base    : NOTIFY_SHARED_ADDR,
            len     : NOTIFY_SHARED_SIZE
        }],
        ["REMOTE_DEBUG_MEM", {
            comment : "REMOTE_DEBUG_MEM",
            name    : "REMOTE_DEBUG_MEM",
            base    : REMOTE_DEBUG_ADDR,
            len     : REMOTE_DEBUG_SIZE
        }],
        ["L2_RAM", {
            comment: "L2_RAM",
            name: "L2_RAM",
            base: 0x20004000,
            len:  0x00010000
        }],
        ["L2_ROM", {
            comment: "L2_ROM",
            name: "L2_ROM",
            base: 0x00000000,
            len:  0x00004000
        }],
        ["OCMC0_RAM", {
            comment: "OCMC0_RAM",
            name: "OCMC0_RAM",
            base: OCMC0_ADDR,
            len:  OCMC_SIZE
        }],
        ["OCMC1_RAM", {
            comment: "OCMC1_RAM",
            name: "OCMC1_RAM",
            base: OCMC1_ADDR,
            len:  OCMC_SIZE
        }],
    ]
};

Build.platformTable["ti.platforms.evmTI814X:plat"] =
{
    externalMemoryMap:
    [
        ["DDR3_RAM", {
            comment: "DDR3_RAM",
            name: "DDR3_RAM",
            base: DDR3_ADDR,
            len:  DDR3_SIZE
        }],
        ["OCMC0_RAM", {
            comment: "OCMC0_RAM",
            name: "OCMC0_RAM",
            base: OCMC0_ADDR,
            len:  OCMC_SIZE
        }],
        ["OCMC1_RAM", {
            comment: "OCMC1_RAM",
            name: "OCMC1_RAM",
            base: OCMC1_ADDR,
            len:  OCMC_SIZE
        }],
    ],
    customMemoryMap:
    [

        ["LINUX_MEM", {
            comment : "LINUX_MEM",
            name    : "LINUX_MEM",
            base    : LINUX_ADDR,
            len     : LINUX_SIZE
        }],
        ["SR1", {
            comment : "SR1",
            name    : "SR1",
            base    : SR1_ADDR,
            len     : SR1_SIZE
        }],
        ["VIDEO_M3_CODE_MEM", {
            comment : "VIDEO_M3_CODE_MEM",
            name    : "VIDEO_M3_CODE_MEM",
            base    : VIDEO_M3_CODE_ADDR,
            len     : VIDEO_M3_CODE_SIZE
        }],
        ["VIDEO_M3_DATA_MEM", {
            comment : "VIDEO_M3_DATA_MEM",
            name    : "VIDEO_M3_DATA_MEM",
            base    : VIDEO_M3_DATA_ADDR,
            len     : VIDEO_M3_DATA_SIZE
        }],
        ["DSS_M3_CODE_MEM", {
            comment : "DSS_M3_CODE_MEM",
            name    : "DSS_M3_CODE_MEM",
            base    : DSS_M3_CODE_ADDR,
            len     : DSS_M3_CODE_SIZE
        }],
        ["DSS_M3_DATA_MEM", {
            comment : "DSS_M3_DATA_MEM",
            name    : "DSS_M3_DATA_MEM",
            base    : DSS_M3_DATA_ADDR,
            len     : DSS_M3_DATA_SIZE
        }],
        ["DSP_CODE_MEM", {
            comment : "DSP_CODE_MEM",
            name    : "DSP_CODE_MEM",
            base    : DSP_CODE_ADDR,
            len     : DSP_CODE_SIZE
        }],
        ["DSP_DATA_MEM", {
            comment : "DDR3_DSP",
            name    : "DDR3_DSP",
            base    : DSP_DATA_ADDR,
            len     : DSP_DATA_SIZE
        }],
        ["TILER_MEM", {
            comment : "TILER_MEM",
            name    : "TILER_MEM",
            base    : TILER_ADDR,
            len     : TILER_SIZE
        }],
        ["SR2_FRAME_BUFFER_MEM", {
            comment : "SR2_FRAME_BUFFER_MEM",
            name    : "SR2_FRAME_BUFFER_MEM",
            base    : SR2_FRAME_BUFFER_ADDR,
            len     : SR2_FRAME_BUFFER_SIZE
        }],
        ["SR0", {
            comment : "SR0",
            name    : "SR0",
            base    : SR0_ADDR,
            len     : SR0_SIZE
        }],
        ["HDVPSS_DESC_MEM", {
            comment : "HDVPSS_DESC_MEM",
            name    : "HDVPSS_DESC_MEM",
            base    : HDVPSS_DESC_ADDR,
            len     : HDVPSS_DESC_SIZE
        }],
        ["HDVPSS_SHARED_MEM", {
            comment : "HDVPSS_SHARED_MEM",
            name    : "HDVPSS_SHARED_MEM",
            base    : HDVPSS_SHARED_ADDR,
            len     : HDVPSS_SHARED_SIZE
        }],
        ["HOST_VPSS_NOTIFYMEM", {
            comment : "HOST_VPSS_NOTIFYMEM",
            name    : "HOST_VPSS_NOTIFYMEM",
            base    : NOTIFY_SHARED_ADDR,
            len     : NOTIFY_SHARED_SIZE
        }],
        ["REMOTE_DEBUG_MEM", {
            comment : "REMOTE_DEBUG_MEM",
            name    : "REMOTE_DEBUG_MEM",
            base    : REMOTE_DEBUG_ADDR,
            len     : REMOTE_DEBUG_SIZE
        }],
        ["OCMC0_RAM", {
            comment: "OCMC0_RAM",
            name: "OCMC0_RAM",
            base: OCMC0_ADDR,
            len:  OCMC_SIZE
        }],
        ["OCMC1_RAM", {
            comment: "OCMC1_RAM",
            name: "OCMC1_RAM",
            base: OCMC1_ADDR,
            len:  OCMC_SIZE
        }],
        ["DSP_L2_RAM", {
            comment: "DSP_L2_RAM",
            name: "DSP_L2_RAM",
            base: 0x10800000,
            len:  0x00020000
        }],
    ],
    l1PMode: "32k",
    l1DMode: "32k",
    l2Mode:  "128k"
};

var addrFileGenerated = false;
if (addrFileGenerated == false)
{
    xdc.loadCapsule("genaddrinfo.xs").GenAddrFile();
    addrFileGenerated = true;
}

=============================================================================================

Log File

link up on port 0, speed 100, full duplex
BOOTP broadcast 1
DHCP client bound to address 10.102.2.190
Using cpsw device
TFTP from server 192.168.6.59; our IP address is 10.102.2.190; sending through gateway 10.102.1.1
Filename 'pxelinux.0'.
Load address: 0x81000000
Loading: *###
done
Bytes transferred = 14776 (39b8 hex)
link up on port 0, speed 100, full duplex
Using cpsw device
TFTP from server 10.102.3.61; our IP address is 10.102.2.190
Filename '/tftpboot/uImage'.
Load address: 0x81000000
Loading: *#################################################################
     #################################################################
     #################################################################
     #################################################################
     #################################################################
     #################################################################
     #################################################################
     #################################
done
Bytes transferred = 2493752 (260d38 hex)
## Booting kernel from Legacy Image at 81000000 ...
   Image Name:   Linux-2.6.37_DM8127_IPNC_3.80.00
   Created:      2014-01-24  11:29:39 UTC
   Image Type:   ARM Linux Kernel Image (uncompressed)
   Data Size:    2493688 Bytes = 2.4 MiB
   Load Address: 80008000
   Entry Point:  80008000
   Verifying Checksum ... OK
   Loading Kernel Image ... OK
OK

Starting kernel ...

Uncompressing Linux... done, booting the kernel.
Linux version 2.6.37_DM8127_IPNC_3.80.00-00103-g1a13629 (x0066085@bangvideoapps01) (gcc version 4.5.3 20110311 (prerelease) (GCC) ) #1 Fri Jan 24 16:59:33 IST 2014
CPU: ARMv7 Processor [413fc082] revision 2 (ARMv7), cr=10c53c7f
CPU: VIPT nonaliasing data cache, VIPT aliasing instruction cache
Machine: ti8148ipnc
vram size = 4194304 at 0x0
bootconsole [earlycon0] enabled
ti81xx_reserve: ### Reserved DDR region @84f00000
reserved size = 4194304 at 0x0
FB: Reserving 4194304 bytes SDRAM for VRAM
Memory policy: ECC disabled, Data cache writeback
OMAP chip is TI8148 2.1
SRAM: Mapped pa 0x402f1000 to va 0xfe400000 size: 0xf000
Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 19040
Kernel command line: console=ttyO0,115200n8 root=/dev/nfs rw mem=80M vram=4M notifyk.vpssm3_sva=0xBFD00000 nfsroot=10.102.2.81:/home/einfochips/sandip_ipnc_rdk_3_8/IPNC_RDK/Source/ipnc_rdk/target/filesys,nolock eth=00:0C:0C:A0:07:66 ip=dhcp cmemk.phys_start=0x85000000 cmemk.phys_end=0x89000000 cmemk.allowOverlap=1 earlyprintk
cpsw: kernel boot params Ethernet address: 00:0C:0C:A0:07:66
PID hash table entries: 512 (order: -1, 2048 bytes)
Dentry cache hash table entries: 16384 (order: 4, 65536 bytes)
Inode-cache hash table entries: 8192 (order: 3, 32768 bytes)
Memory: 74MB 1MB = 75MB total
Memory: 70652k/70652k available, 11268k reserved, 0K highmem
Virtual kernel memory layout:
    vector  : 0xffff0000 - 0xffff1000   (   4 kB)
    fixmap  : 0xfff00000 - 0xfffe0000   ( 896 kB)
    DMA     : 0xffc00000 - 0xffe00000   (   2 MB)
    vmalloc : 0xc5800000 - 0xf8000000   ( 808 MB)
    lowmem  : 0xc0000000 - 0xc5000000   (  80 MB)
    pkmap   : 0xbfe00000 - 0xc0000000   (   2 MB)
    modules : 0xbf000000 - 0xbfe00000   (  14 MB)
      .init : 0xc0008000 - 0xc003e000   ( 216 kB)
      .text : 0xc003e000 - 0xc04bf000   (4612 kB)
      .data : 0xc04c0000 - 0xc05005c0   ( 258 kB)
SLUB: Genslabs=11, HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
NR_IRQS:375
IRQ: Found an INTC at 0xfa200000 (revision 5.0) with 128 interrupts
Total of 128 interrupts on 1 active controller
GPMC revision 6.0
Trying to install interrupt handler for IRQ368
Trying to install interrupt handler for IRQ369
Trying to install interrupt handler for IRQ370
Trying to install interrupt handler for IRQ371
Trying to install interrupt handler for IRQ372
Trying to install interrupt handler for IRQ373
Trying to install interrupt handler for IRQ374
Trying to install type control for IRQ375
Trying to set irq flags for IRQ375
OMAP clockevent source: GPTIMER1 at 20000000 Hz
Console: colour dummy device 80x30
Calibrating delay loop... 599.65 BogoMIPS (lpj=2998272)
pid_max: default: 32768 minimum: 301
Security Framework initialized
Mount-cache hash table entries: 512
CPU: Testing write buffer coherency: ok
devtmpfs: initialized
TI81XX: Map 0x84f00000 to 0xfe500000 for dram barrier
TI81XX: Map 0x40300000 to 0xfe600000 for sram barrier
omap_voltage_early_init: voltage driver support not added
regulator: core version 0.5
regulator: dummy:
NET: Registered protocol family 16
omap_voltage_domain_lookup: Voltage driver init not yet happened.Faulting!
omap_voltage_add_dev: VDD specified does not exist!
OMAP GPIO hardware version 0.1
OMAP GPIO hardware version 0.1
OMAP GPIO hardware version 0.1
OMAP GPIO hardware version 0.1
omap_mux_init: Add partition: #1: core, flags: 4
_omap_mux_init_gpio: Could not set gpio79
_omap_mux_init_gpio: Could not set gpio80
Cannot clk_get ck_32
Debugfs: Only enabling/disabling deep sleep and wakeup timer is supported now
registered ti81xx_vpss device
registered ti81xx_vidout device
registered ti81xx on-chip HDMI device
registered ti81xx_fb device
PWM0 init success.
PWM1 init success.
bio: create slab <bio-0> at 0
SCSI subsystem initialized
USBSS revision 4ea2080b
registerd cppi-dma Intr @ IRQ 17
Cppi41 Init Done
omap_i2c omap_i2c.1: bus 1 rev4.0 at 100 kHz
regulator: VRTC: 1800 mV
regulator: VIO: 1500 mV
regulator: VDD1: 600 <--> 1500 mV at 1100 mV
regulator: VDD2: 600 <--> 1500 mV at 1350 mV
regulator: VDDCTRL: 600 <--> 1400 mV at 1200 mV
regulator: LDO1: 1100 <--> 3300 mV at 1800 mV
regulator: LDO2: 1100 <--> 3300 mV at 1800 mV
regulator: LDO3: 1100 <--> 3300 mV at 3300 mV
regulator: LDO4: 1100 <--> 3300 mV at 1800 mV
regulator: LDO5: 1100 <--> 3300 mV at 3300 mV
regulator: LDO6: 1100 <--> 3300 mV at 3300 mV
regulator: LDO7: 1100 <--> 3300 mV at 3300 mV
regulator: LDO8: 1100 <--> 3300 mV at 1800 mV
tps65911-rtc tps65911-rtc: rtc core: registered tps65911-rtc as rtc0
tps65910 1-002d: No interrupt support, no core IRQ
Advanced Linux Sound Architecture Driver Version 1.0.23.
Switching to clocksource gp timer
musb-hdrc: version 6.0, peripheral, debug=0
musb-hdrc musb-hdrc.0: dma type: dma-cppi41
MUSB controller-0 revision 4ea20800
usb2phy: computed values rxcalib(15)DACs(28 15 17)
usb2phy: override computed values rxcalib(15)DACs(28 15 17)
usb2phy_config: musb(0) rxcalib done, rxcalib read value 6f6e5f8e
musb-hdrc musb-hdrc.0: USB Peripheral mode controller at c581e000 using DMA, IRQ 18
NET: Registered protocol family 2
IP route cache hash table entries: 1024 (order: 0, 4096 bytes)
TCP established hash table entries: 4096 (order: 3, 32768 bytes)
TCP bind hash table entries: 4096 (order: 2, 16384 bytes)
TCP: Hash tables configured (established 4096 bind 4096)
TCP reno registered
UDP hash table entries: 256 (order: 0, 4096 bytes)
UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
NET: Registered protocol family 1
RPC: Registered udp transport module.
RPC: Registered tcp transport module.
RPC: Registered tcp NFSv4.1 backchannel transport module.
NetWinder Floating Point Emulator V0.97 (double precision)
PMU: registered new PMU device of type 0
omap-iommu omap-iommu.0: ducati registered
omap-iommu omap-iommu.1: sys registered
JFFS2 version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
msgmni has been set to 137
io scheduler noop registered
io scheduler deadline registered
io scheduler cfq registered (default)
CMEMK module: built on Jan 24 2014 at 16:48:56
  Reference Linux version 2.6.37
  File /data/datalocal1_videoapps01/user/santosh/Nightly/DM812x_DM385/ti_tools/linuxutils_3_23_00_01/packages/ti/sdo/linuxutils/cmem/src/module/cmemk.c
allocated heap buffer 0xc7000000 of size 0x4000000
cmemk initialized
Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
omap_uart.0: ttyO0 at MMIO 0x48020000 (irq = 72) is a OMAP UART0
console [ttyO0] enabled, bootconsole disabled
console [ttyO0] enabled, bootconsole disabled
omap_uart.1: ttyO1 at MMIO 0x48022000 (irq = 73) is a OMAP UART1
omap_uart.2: ttyO2 at MMIO 0x48024000 (irq = 74) is a OMAP UART2
omap_uart.3: ttyO3 at MMIO 0x481a6000 (irq = 44) is a OMAP UART3
omap_uart.4: ttyO4 at MMIO 0x481a8000 (irq = 45) is a OMAP UART4
omap_uart.5: ttyO5 at MMIO 0x481aa000 (irq = 46) is a OMAP UART5
brd: module loaded
loop: module loaded
omap2-nand driver initializing
ONFI param page 0 valid
ONFI flash detected
NAND device: Manufacturer ID: 0x2c, Chip ID: 0xca (Micron NAND 256MiB 3,3V 16-bit)
omap2-nand: detected x16 NAND flash
Creating 8 MTD partitions on "omap2-nand.0":
0x000000000000-0x000000020000 : "U-Boot-min"
0x000000020000-0x000000260000 : "U-Boot"
0x000000260000-0x000000280000 : "U-Boot Env"
0x000000280000-0x0000006c0000 : "Kernel"
0x0000006c0000-0x000006fc0000 : "File System"
0x000006fc0000-0x000007bc0000 : "Data"
0x000007bc0000-0x00000b0c0000 : "File System2"
0x00000b0c0000-0x000010000000 : "Reserved"
davinci_mdio davinci_mdio.0: davinci mdio revision 1.6
davinci_mdio davinci_mdio.0: detected phy mask fffffffe
davinci_mdio.0: probed
davinci_mdio davinci_mdio.0: phy[0]: device 0:00, driver unknown
mice: PS/2 mouse device common for all mice
i2c /dev entries driver
Linux video capture interface: v2.00
OMAP Watchdog Timer Rev 0x00: initial timeout 60 sec
notify_init : notify drivercreated  for  remote proc id 2 at physical Address 0xbfd00000
cm: Module associated with clock hdmi_i2s_fck didn't enable in 100000 tries
asoc: tlv320aic3x-hifi <-> davinci-mcasp.2 mapping ok
asoc: HDMI-DAI-CODEC <-> hdmi-dai mapping ok
ALSA device list:
  #0: TI8148 IPNC
nf_conntrack version 0.5.0 (1103 buckets, 4412 max)
ip_tables: (C) 2000-2006 Netfilter Core Team
TCP cubic registered
NET: Registered protocol family 17
Bridge firewalling registered
lib80211: common routines for IEEE802.11 drivers
Registering the dns_resolver key type
VFP support v0.3: implementor 41 architecture 3 part 30 variant c rev 3
omap_voltage_late_init: Voltage driver support not added
Power Management for TI81XX.
Detected MACID=0:c:c:a0:7:66
tps65911-rtc tps65911-rtc: setting system clock to 2000-01-01 00:01:08 UTC (946684868)

CPSW phy found : id is : 0x4dd074
PHY 0:01 not found
Sending DHCP requests ..
PHY: 0:00 - Link is Up - 100/Full
., OK
IP-Config: Got DHCP answer from 192.168.6.59, my address is 10.102.2.194
IP-Config: Complete:
     device=eth0, addr=10.102.2.194, mask=255.255.252.0, gw=10.102.1.1,
     host=10.102.2.194, domain=, nis-domain=(none),
     bootserver=192.168.6.59, rootserver=10.102.2.81, rootpath=
VFS: Mounted root (nfs filesystem) on device 0:14.
devtmpfs: mounted
Freeing init memory: 216K
INIT: version 2.86 booting
Please wait: booting...
Starting udev
Root filesystem already rw, not remounting
Caching udev devnodes
root: mount: mounting /dev/root on / failed: No such file or directory
NOT configuring network interfaces: / is an NFS mount
rm: cannot remove '/tmp': Device or resource busy
Fri Nov  9 12:48:00 GMT-8 2012
 inside finish.sh
UBI: attaching mtd5 to ubi0
UBI: physical eraseblock size:   131072 bytes (128 KiB)
UBI: logical eraseblock size:    126976 bytes
UBI: smallest flash I/O unit:    2048
UBI: sub-page size:              512
UBI: VID header offset:          2048 (aligned 2048)
UBI: data offset:                4096
UBI: max. sequence number:       58
UBI: attached mtd5 to ubi0
UBI: MTD device name:            "Data"
UBI: MTD device size:            12 MiB
UBI: number of good PEBs:        96
UBI: number of bad PEBs:         0
UBI: number of corrupted PEBs:   0
UBI: max. allowed volumes:       128
UBI: wear-leveling threshold:    4096
UBI: number of internal volumes: 1
UBI: number of user volumes:     1
UBI: available PEBs:             0
UBI: total number of reserved PEBs: 96
UBI: number of PEBs reserved for bad PEB handling: 2
UBI: max/mean erase counter: 2/1
UBI: image sequence number:  992736795
UBI: background thread "ubi_bgt0d" started, PID 262
UBI device number 0, total 96 LEBs (12189696 bytes, 11.6 MiB), available 0 LEBs (0 bytes), LEB size 126976 bytes (124.0 KiB)
UBIFS: recovery needed
UBIFS: recovery completed
UBIFS: mounted UBI device 0, volume 0, name "ubifs_volume"
UBIFS: file system size:   10285056 bytes (10044 KiB, 9 MiB, 81 LEBs)
UBIFS: journal size:       1015809 bytes (992 KiB, 0 MiB, 6 LEBs)
UBIFS: media format:       w4/r0 (latest is w4/r0)
UBIFS: default compressor: lzo
UBIFS: reserved for root:  485787 bytes (474 KiB)
UBI: attaching mtd7 to ubi1
UBI: physical eraseblock size:   131072 bytes (128 KiB)
UBI: logical eraseblock size:    126976 bytes
UBI: smallest flash I/O unit:    2048
UBI: sub-page size:              512
UBI: VID header offset:          2048 (aligned 2048)
UBI: data offset:                4096
UBI: max. sequence number:       335
UBI: attached mtd7 to ubi1
UBI: MTD device name:            "Reserved"
UBI: MTD device size:            79 MiB
UBI: number of good PEBs:        634
UBI: number of bad PEBs:         0
UBI: number of corrupted PEBs:   0
UBI: max. allowed volumes:       128
UBI: wear-leveling threshold:    4096
UBI: number of internal volumes: 1
UBI: number of user volumes:     1
UBI: available PEBs:             0
UBI: total number of reserved PEBs: 634
UBI: number of PEBs reserved for bad PEB handling: 6
UBI: max/mean erase counter: 30/27
UBI: image sequence number:  733737126
UBI: background thread "ubi_bgt1d" started, PID 274
UBI device number 1, total 634 LEBs (80502784 bytes, 76.8 MiB), available 0 LEBs (0 bytes), LEB size 126976 bytes (124.0 KiB)
UBIFS: recovery needed
UBIFS: recovery completed
UBIFS: mounted UBI device 1, volume 0, name "ubifs_volume"
UBIFS: file system size:   78090240 bytes (76260 KiB, 74 MiB, 615 LEBs)
UBIFS: journal size:       3936256 bytes (3844 KiB, 3 MiB, 31 LEBs)
UBIFS: media format:       w4/r0 (latest is w4/r0)
UBIFS: default compressor: lzo
UBIFS: reserved for root:  3688395 bytes (3601 KiB)
numid=1,iface=MIXER,name='PCM Playback Volume'
  ; type=INTEGER,access=rw---R--,values=2,min=0,max=127,step=0
  : values=127,127
  | dBscale-min=-63.50dB,step=0.50dB,mute=0
 [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
 [m3video] Remote Debug Shared Memory @ 0xbff05020
 [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
SysLink version : 2.21.02.10
SysLink module created on Date:Dec 11 2014 Time:02:48:09
Trace enabled
Trace SetFailureReason enabled
/dev/mem opened.
             Phy Addr : 0x48181560 Data : 0x00000002
secss put in low power state
             Phy Addr : 0x48180f10 Data : 0x00000000
             Phy Addr : 0x48180508 Data : 0x00000302
             Phy Addr : 0x48180520 Data : 0x00000002
             Phy Addr : 0x48180524 Data : 0x00000002
             Phy Addr : 0x48180528 Data : 0x00000002
             Phy Addr : 0x4c0000e4 Data : 0x00170208
             Phy Addr : 0x4d0000e4 Data : 0x00170208
             Phy Addr : 0x4c0000e4 Data : 0x00170208
             Phy Addr : 0x4d0000e4 Data : 0x00170208
DDR IOs RX is shutdown


Creat queue id:0
 [host]  Setting L3 bandwidth regulator for [ISS     ] to [press=[3,3] BW=400, WM Cycles=2500]
 [host]  Setting L3 bandwidth regulator for [HDVICP0 ] to [press=[0,0] BW=900, WM Cycles=2500]
queue id:0
FileMngThread created
Creat queue id:32769
queue id:32769
AlramThread created
Share memory init success
IPNC_3.80.00-00103-g1a13629 (x0066085@bangvideoapps01) (gcc version 4.5
Creat queue id:65538
queue id:65538
Creat queue id:98307
queue id:98307

 [host]  Setting DMM priority for [ISS     ] to [0] ( 0x4e000634 = 0x00080000 )
queue id:32769

 [host]  Setting DMM priority for [HDVICP0 ] to [1] ( 0x4e000634 = 0x00000009 )

 [host] Attached to slave procId 2.

 [host] Attached to slave procId 1.
 [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
 [m3video] Remote Debug Shared Memory @ 0xbff05020
 [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040

 [host] Loaded file ./firmware/ipnc_rdk_fw_m3video.xem3 on slave procId 1.


 [host] Started slave procId 1.
 [host] Attached to slave procId 0.

 [host] Loaded file ./firmware/ipnc_rdk_fw_m3vpss.xem3 on slave procId 2.

 [host] Started slave procId 2.

 [host] After Ipc_loadcallback status [0x00000000]
 [m3video] ***** SYSTEM  : Frequency <ORG> - 200000000, <NEW> - 200000000

 [host] Loaded file ./firmware/ipnc_rdk_fw_c6xdsp.xe674 on slave procId 0.

 [host] Started slave procId 0.

 [host] After Ipc_loadcallback status [0x00000000]
 [c6xdsp ] ***** SYSTEM  : Frequency <ORG> - 500000000, <NEW> - 500000000
 [m3video]  
 [c6xdsp ]  
 [m3video]  *** UTILS: CPU KHz = 400000 Khz ***
 [c6xdsp ]  *** UTILS: CPU KHz = 500000 Khz ***
 [m3video]  
 [c6xdsp ]  
 [m3video]  83: SYSTEM  : System Common Init in progress !!!
 [c6xdsp ]  1: SYSTEM  : System Common Init in progress !!!
 [m3video]  89: SYSTEM: IPC init in progress !!!
 [c6xdsp ]  1: SYSTEM: IPC init in progress !!!
 [m3video]  93: SYSTEM: Attaching to [HOST] ...
 [c6xdsp ]  1: SYSTEM: Attaching to [HOST] ...
 [c6xdsp ]  51: SYSTEM: Attaching to [HOST] ...

 [host] After Ipc_loadcallback status [0x00000000]
 [c6xdsp ]  66: SYSTEM: Attaching to [HOST] ... SUCCESS !!!
 [m3video]  147: SYSTEM: Attaching to [HOST] ...
 [c6xdsp ]  66: SYSTEM: Attaching to [VIDEO-M3] ...
 [c6xdsp ]  116: SYSTEM: Attaching to [VIDEO-M3] ...
 [m3video]  161: SYSTEM: Attaching to [HOST] ... SUCCESS !!!
 [m3vpss ] ***** SYSTEM  : Frequency <ORG> - 200000000, <NEW> - 200000000
 [m3video]  166: SYSTEM: Attaching to [DSP] ...
 [m3vpss ] notify_attach  rtnVal  0
 [m3vpss ] initProxyServer  rtnVal  0

 [host] After Ipc_startcallback status [0x00000000]
 [m3vpss ]  
 [m3vpss ]  *** UTILS: CPU KHz = 400000 Khz ***
 [m3vpss ]  
 [m3vpss ]  202: SYSTEM  : System Common Init in progress !!!
 [m3vpss ]  202: SYSTEM: IPC init in progress !!!
 [m3vpss ]  202: SYSTEM: Attaching to [HOST] ...
 [c6xdsp ]  140: SYSTEM: Attaching to [VIDEO-M3] ... SUCCESS !!!
 [m3video]  216: SYSTEM: Attaching to [DSP] ...
 [m3vpss ]  252: SYSTEM: Attaching to [HOST] ...
 [c6xdsp ]  140: SYSTEM: Attaching to [VPSS-M3] ...
 [m3video]  216: SYSTEM: Attaching to [DSP] ... SUCCESS !!!
 [m3vpss ]  255: SYSTEM: Attaching to [HOST] ... SUCCESS !!!
 [m3video]  216: SYSTEM: Attaching to [VPSS-M3] ...
 [m3vpss ]  255: SYSTEM: Attaching to [DSP] ...

 [host] After Ipc_startcallback status [0x00000000]

 [host] After Ipc_startcallback status [0x00000000]
 [c6xdsp ]  189: SYSTEM: Attaching to [VPSS-M3] ...
 [m3video]  266: SYSTEM: Attaching to [VPSS-M3] ...
 [c6xdsp ]  229: SYSTEM: Attaching to [VPSS-M3] ... SUCCESS !!!
 [m3vpss ]  305: SYSTEM: Attaching to [DSP] ...
 [c6xdsp ]  229: SYSTEM: Opening MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...
 [m3vpss ]  305: SYSTEM: Attaching to [DSP] ... SUCCESS !!!
 [m3vpss ]  306: SYSTEM: Attaching to [VIDEO-M3] ...
 [m3video]  316: SYSTEM: Attaching to [VPSS-M3] ...
 [m3video]  356: SYSTEM: Attaching to [VPSS-M3] ... SUCCESS !!!
 [m3vpss ]  356: SYSTEM: Attaching to [VIDEO-M3] ...
 [m3video]  357: SYSTEM: Opening MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...
 [m3vpss ]  356: SYSTEM: Attaching to [VIDEO-M3] ... SUCCESS !!!
 [m3video]  357: SYSTEM: Creating MsgQ [VIDEO-M3_MSGQ] ...
 [m3vpss ]  357: SYSTEM: Creating MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...
 [m3video]  358: SYSTEM: Creating MsgQ [VIDEO-M3_ACK_MSGQ] ...
 [m3vpss ]  357: SYSTEM: Creating MsgQ [VPSS-M3_MSGQ] ...
 [m3video]  359: SYSTEM: Notify register to [HOST] line 0, event 12 ...
 [m3vpss ]  357: SYSTEM: Creating MsgQ [VPSS-M3_ACK_MSGQ] ...
 [m3video]  360: SYSTEM: Notify register to [DSP] line 0, event 12 ...
 [m3vpss ]  359: SYSTEM: Notify register to [HOST] line 0, event 12 ...
 [m3video]  360: SYSTEM: Notify register to [VPSS-M3] line 0, event 12 ...
 [m3vpss ]  360: SYSTEM: Notify register to [DSP] line 0, event 12 ...
 [m3video]  360: SYSTEM: IPC init DONE !!!
 [m3vpss ]  360: SYSTEM: Notify register to [VIDEO-M3] line 0, event 12 ...
 [m3vpss ]  360: SYSTEM: IPC init DONE !!!
 [m3video]  371: MEM: Shared Region 2: Base = 0xba000000, Length = 0x04900000 (73 MB)
 [m3vpss ]  371: MEM: Shared Region 2: Base = 0xba000000, Length = 0x04900000 (73 MB)
 [m3vpss ]  371: MEM: Shared Region 1: Base = 0x89000000, Length = 0x03b00000 (59 MB)
 [m3vpss ] Received character 's'
 [m3video]  371: MEM: Shared Region 1: Base = 0x89000000, Length = 0x03b00000 (59 MB)
 [m3vpss ]  373: SYSTEM  : System Common Init Done !!!
 [m3video]  373: SYSTEM  : System Common Init Done !!!
 [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
 [m3video] Remote Debug Shared Memory @ 0xbff05020
 [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
 [m3video] Received character 's'
 [c6xdsp ]  329: SYSTEM: Opening MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...
 [c6xdsp ]  329: SYSTEM: Creating MsgQ [DSP_MSGQ] ...
 [c6xdsp ]  329: SYSTEM: Creating MsgQ [DSP_ACK_MSGQ] ...
 [c6xdsp ]  330: SYSTEM: Notify register to [HOST] line 0, event 12 ...
 [c6xdsp ]  330: SYSTEM: Notify register to [VIDEO-M3] line 0, event 12 ...
 [c6xdsp ]  330: SYSTEM: Notify register to [VPSS-M3] line 0, event 12 ...
 [c6xdsp ]  330: SYSTEM: IPC init DONE !!!
 [c6xdsp ]  334: MEM: Shared Region 2: Base = 0xba000000, Length = 0x04900000 (73 MB)
 [c6xdsp ]  334: MEM: Shared Region 1: Base = 0x89000000, Length = 0x03b00000 (59 MB)
 [c6xdsp ]  334: SYSTEM  : System Common Init Done !!!
 [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
 [m3video] Remote Debug Shared Memory @ 0xbff05020
 [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
 [c6xdsp ] Received character 's'
queue id:65538
Creat queue id:131076
queue id:131076

CPU is TI812x

*****************************************************************

    IPNC BUILD VERSION: IPNC RDK VERSION 03.80.00.05 (FULL FEATURE)    

*****************************************************************

DEMOCFG Value    : 0
Videocodecmode    : 8
Videocodecres     : 0
streamtype     : 2

 vsenable : 0
./bin/ipnc_rdk_mcfw.out   VNF_QUALITY TRISTREAM TRIPLE_H264 TI2A AEWB 1080P_D1 H264 HIGH_SPEED1 H264 HIGH_SPEED2 MJPEG 80 &
Error: SemWait: Invalid Semaphore handler
Error: SemRelease: Invalid Semaphore handler
Creat queue id:163845
queue id:163845
queue id:65538
 [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
 [m3video] Remote Debug Shared Memory @ 0xbff05020
 [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
 [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
 [m3video] Remote Debug Shared Memory @ 0xbff05020
 [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
 [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
 [m3video] Remote Debug Shared Memory @ 0xbff05020
 [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
 [m3video]  674: SYSTEM  : System Video Init in progress !!!
 [m3vpss ]  673: SYSTEM  : System VPSS Init in progress !!!
 [m3video]  674: SYSTEM: Creating ListMP [VIDEO-M3_IPC_OUT_0] in region 0 ...
 [m3video]  675: SYSTEM: Creating ListMP [VIDEO-M3_IPC_IN_0] in region 0 ...
 [m3video]  675: SYSTEM: ListElem Shared Addr = 0xbe98b680
 [m3video]  677: SYSTEM: Creating ListMP [VIDEO-M3_IPC_OUT_1] in region 0 ...
 [m3video]  677: SYSTEM: Creating ListMP [VIDEO-M3_IPC_IN_1] in region 0 ...
 [m3video]  678: SYSTEM: ListElem Shared Addr = 0xbe98eb80
 [m3video]  687: SYSTEM: Creating ListMP [VIDEO-M3_IPC_OUT_29] in region 0 ...
 [m3vpss ] === I2C0/2 Clk is active ===
 [m3video]  688: SYSTEM: Creating ListMP [VIDEO-M3_IPC_IN_29] in region 0 ...
 [m3vpss ]  691: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_0] in region 0 ...
 [m3video]  688: SYSTEM: ListElem Shared Addr = 0xbe992080
 [m3vpss ]  692: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_0] in region 0 ...
 [m3video]  690: SYSTEM: Creating ListMP [VIDEO-M3_IPC_OUT_30] in region 0 ...
 [m3vpss ]  692: SYSTEM: ListElem Shared Addr = 0xbe9c5980
 [m3video]  691: SYSTEM: Creating ListMP [VIDEO-M3_IPC_IN_30] in region 0 ...
 [m3video]  691: SYSTEM: ListElem Shared Addr = 0xbe9abd00
 [m3video]  693: HDVICP: Doing PRCM for IVAHD[0] ...
 [m3video]  693: HDVICP: PRCM for IVAHD[0] ... DONE.
 [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
 [m3video] Remote Debug Shared Memory @ 0xbff05020
 [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
 [m3video]  694: SYSTEM  : Initializing Links !!!
 [m3vpss ]  695: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_1] in region 0 ...
 [m3vpss ]  695: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_1] in region 0 ...
 [m3video]  694: SYSTEM  : FREE SPACE : System Heap      = 6282072 B, Mbx = 10240 msgs)
 [m3vpss ]  695: SYSTEM: ListElem Shared Addr = 0xbe9c8e80
 [c6xdsp ]  633: SYSTEM  : System DSP Init in progress !!!
 [m3video]  695: SYSTEM  : FREE SPACE : SR0 Heap         = 15955200 B (15 MB)
 [m3vpss ]  709: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_24] in region 0 ...
 [m3vpss ]  710: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_24] in region 0 ...
 [m3video]  695: SYSTEM  : FREE SPACE : Frame Buffer     = 76545920 B (72 MB)
 [m3vpss ]  710: SYSTEM: ListElem Shared Addr = 0xbe9cc380
 [m3vpss ]  713: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_25] in region 0 ...
 [m3video]  695: SYSTEM  : FREE SPACE : Bitstream Buffer = 61865856 B (58 MB)
 [m3vpss ]  713: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_25] in region 0 ...
 [m3vpss ]  713: SYSTEM: ListElem Shared Addr = 0xbe9ebd80
 [m3video]  696: SYSTEM: Opening MsgQ [VPSS-M3_MSGQ] ...
 [m3video]  697: SYSTEM  : FREE SPACE : Tiler 8-bit      = 83886080 B (80 MB)  - TILER ON
 [c6xdsp ]  639: SYSTEM: Creating ListMP [DSP_IPC_OUT_24] in region 0 ...
 [m3video]  697: SYSTEM  : FREE SPACE : Tiler 16-bit     = 83886080 B (80 MB)  - TILER ON
 [m3vpss ]  716: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_26] in region 0 ...
 [c6xdsp ]  639: SYSTEM: Creating ListMP [DSP_IPC_IN_24] in region 0 ...
 [m3vpss ]  717: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_26] in region 0 ...
 [c6xdsp ]  639: SYSTEM: ListElem Shared Addr = 0xbea0b780
 [m3video] Entered the MctnfLink_init()
 [m3vpss ]  717: SYSTEM: ListElem Shared Addr = 0xbea2b480
 [c6xdsp ]  640: SYSTEM: Creating ListMP [DSP_IPC_OUT_25] in region 0 ...
 [m3vpss ]  723: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_29] in region 0 ...
 [c6xdsp ]  640: SYSTEM: Creating ListMP [DSP_IPC_IN_25] in region 0 ...
 [m3vpss ]  724: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_29] in region 0 ...
 [c6xdsp ]  640: SYSTEM: ListElem Shared Addr = 0xbea4ab80
 [m3vpss ]  724: SYSTEM: ListElem Shared Addr = 0xbeabd880
 [c6xdsp ]  642: SYSTEM: Creating ListMP [DSP_IPC_OUT_26] in region 0 ...
 [c6xdsp ]  642: SYSTEM: Creating ListMP [DSP_IPC_IN_26] in region 0 ...
 [c6xdsp ]  642: SYSTEM: ListElem Shared Addr = 0xbea6a580
 [c6xdsp ]  643: SYSTEM: Creating ListMP [DSP_IPC_OUT_29] in region 0 ...
 [c6xdsp ]  643: SYSTEM: Creating ListMP [DSP_IPC_IN_29] in region 0 ...
 [c6xdsp ]  643: SYSTEM: ListElem Shared Addr = 0xbea89f80
 [c6xdsp ]  644: SYSTEM: Creating ListMP [DSP_IPC_OUT_30] in region 0 ...
 [c6xdsp ]  644: SYSTEM: Creating ListMP [DSP_IPC_IN_30] in region 0 ...
 [c6xdsp ]  644: SYSTEM: ListElem Shared Addr = 0xbeaa3c00
 [c6xdsp ] !!WARNING.Resource already registered:2
 [c6xdsp ]  644: SYSTEM  : Initializing Links !!!
 [m3video]  757: SYSTEM  : Initializing Links ... DONE !!!
 [m3vpss ]  726: SYSTEM: Creating ListMP [VPSS-M3_IPC_OUT_30] in region 0 ...
 [m3vpss ]  727: SYSTEM: Creating ListMP [VPSS-M3_IPC_IN_30] in region 0 ...
 [c6xdsp ]  646: SYSTEM  : FREE SPACE : System Heap      = 6282440 B, Mbx = 10240 msgs)
 [m3video]  757: SYSTEM  : System Video Init Done !!!
 [m3vpss ]  727: SYSTEM: ListElem Shared Addr = 0xbead7500
 [m3vpss ]  729: SYSTEM : HDVPSS Drivers Version: HDVPSS_01_00_01_37
 [c6xdsp ]  661: SYSTEM  : Initializing Links ... DONE !!!
 [m3vpss ]  730: SYSTEM  : FVID2 Init in progress !!!
 [m3vpss ]  800: SYSTEM  : FVID2 Init in progress DONE !!!
 [c6xdsp ]  661: SYSTEM  : System DSP Init Done !!!
 [m3vpss ]  800: SYSTEM  : Device Init in progress !!!
 [m3vpss ]  Iss_init called !!!!!!
 [m3vpss ]  func: Iss_ispInit line: 734
 [m3vpss ]  func: Iss_ispInit line: 796
 [m3vpss ]  CPIS_init DONE !!!!!!
ApproDrvInit: 7
queue id:163845
 [m3vpss ] initPrms.isI2cInitReq = 1
 [m3vpss ] initPrms.isI2cInitReq = 1
 [m3vpss ]  Vps_deviceInit Daughter card not detected/connected!
 [m3vpss ]  I2C2: Passed for address 0x36 !!!
 [m3vpss ]  I2C2: Passed for address 0x55 !!!
 [m3vpss ]  3534: SYSTEM  : Device Init in progress DONE !!!
 [m3vpss ]  3563: SYSTEM  : System VPSS Init Done !!!
 [m3vpss ]  3563: UTILS: DMA: HWI Create for INT62 !!!
 [m3vpss ]  3563: SYSTEM  : Initializing Links !!!
 [m3vpss ]  3563: SYSTEM  : FREE SPACE : System Heap      = 1677496 B, Mbx = 10240 msgs)
 [m3vpss ]  3563: SYSTEM  : FREE SPACE : SR0 Heap         = 14742656 B (14 MB)
 [m3vpss ]  3564: SYSTEM  : FREE SPACE : Frame Buffer     = 72235904 B (68 MB)
 [m3vpss ]  3564: SYSTEM  : FREE SPACE : Bitstream Buffer = 61865856 B (58 MB)
 [m3vpss ]  3564: SYSTEM  : FREE SPACE : Tiler 8-bit      = 65798144 B (62 MB)  - TILER ON
 [m3vpss ]  3565: SYSTEM  : FREE SPACE : Tiler 16-bit     = 47710208 B (45 MB)  - TILER ON
 [m3vpss ] Received character 't'
 [m3vpss ]  3698: SYSTEM  : Initializing Links ... DONE !!!
 [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
 [m3video] Remote Debug Shared Memory @ 0xbff05020
 [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
 [m3video] Received character 't'
 [c6xdsp ] Remote Debug Shared Memory @ 0xbff00000
 [m3video] Remote Debug Shared Memory @ 0xbff05020
 [m3vpss ] Remote Debug Shared Memory @ 0xbff0a040
 [c6xdsp ] Received character 't'
HDMI W1 rev 4.0
HDMI CEC Spec version 1.2
DMA: Module install successful, device major num = 247
DRV: Module install successful
DRV: Module built on Dec 13 2014 03:44:29
I2C No Ack

HDMI failed to read E-EDID

 [host]  

 [host]  ORG 0x46c00524: 0

 [host]  NEW 0x46c00524: 2

 [host]  

 [host] Application Start Completed

 [host] QUAD_STREAM_H264_USE_CASE

 [host]  0: SYSTEM: System Common Init in progress !!!

 [host]  0: SYSTEM: IPC init in progress !!!

 [host]  11: SYSTEM: CPU [DSP] syslink proc ID is [0] !!!

 [host]  11: SYSTEM: CPU [VIDEO-M3] syslink proc ID is [1] !!!

 [host]  11: SYSTEM: CPU [VPSS-M3] syslink proc ID is [2] !!!

 [host]  11: SYSTEM: CPU [HOST] syslink proc ID is [3] !!!

 [host]  11: SYSTEM: Opening MsgQ Heap [IPC_MSGQ_MSG_HEAP] ...

 [host]  13: SYSTEM: Creating MsgQ [HOST_MSGQ] ...

 [host]  14: SYSTEM: Creating MsgDMA: ChannelID allocated:4
Q [HOST_ACK_MSGQDMA: ChannelID allocated:5
] ...

 [host]  16: SYSTEM: Opening MsgQ [DSP_MSGQ] ...

 [host]  17: SYSTEM: Opening MsgQ [VIDEO-M3_MSGQ] ...

 [host]  17: SYSTEM: Opening MsgQ [VPSS-M3_MSGQ] ...

 [host]  18: SYSTEM: Notify register to [DSP] line 0, event 12 ...

 [host]  19: SYSTEM: Notify register to [VIDEO-M3] line 0, event 12 ...

 [host]  19: SYSTEM: Notify register to [VPSS-M3] line 0, event 12 ...

 [host]  20: SYSTEM: IPC init DONE !!!

 [host]  21: SYSTEM: Creating ListMP [HOST_IPC_OUT_29] in region 0 ...

 [host]  23: SYSTEM: Creating ListMP [HOST_IPC_IN_29] in region 0 ...

 [host]  25: SYSTEM: ListElem Shared Addr = 0x40f1f180

 [host]  25: SYSTEM: Creating ListMP [HOST_IPC_OUT_30] in region 0 ...

 [host]  28: SYSTEM: Creating ListMP [HOST_IPC_IN_30] in region 0 ...

 [host]  29: SYSTEM: ListElem Shared Addr = 0x40f38e00

 [host]  31: SYSTEM: Creating ListMP [HOST_IPC_OUT_24] in region 0 ...

 [host]  33: SYSTEM: Creating ListMP [HOST_IPC_IN_24] in region 0 ...

 [host]  34: SYSTEM: ListElem Shared Addr = 0x40f52a80

 [host]  35: SYSTEM: Creating ListMP [HOST_IPC_OUT_25] in region 0 ...

 [host]  37: SYSTEM: Creating ListMP [HOST_IPC_IN_25] in region 0 ...

 [host]  39: SYSTEM: ListElem Shared Addr = 0x40f72480

 [host]  39: SYSTEM: Creating ListMP [HOST_IPC_OUT_26] in region 0 ...

 [host]  42: SYSTEM: Creating ListMP [HOST_IPC_IN_26] in region 0 ...

 [host]  43: SYSTEM: ListElem Shared Addr = 0x40f91e80

 [host]  44: SYSTEM: System Common Init Done !!!

 [host] Vsys_allocBuf - addr = 0x4c790000,size = 65011712
##########pInfo->totalsize 53411840

 [host] MemMng_memcpy_open:OSA_dmaOpen passed with ch id = 4

 [host] CacheMng_MemCpy_open:OSA_dmaOpen passed with ch id = 5

 [host] MCFW_IPCFRAMES:App_ipcFramesSendRecvFxn:Entered...
 [host] Vsys_allocBuf - addr = 0x51875000,size = 33603

 [host] DCC buffer allocated for size 33603

 [host] DCC Default File Intialization Done

 [host] Before System_linkControl SYSTEM_M3VPSS_CMD_GET_DISPLAYCTRL_INIT

 [host] ******************** SMART ANALYTICS USECASE WITH QUAD STREAM ********************

 [host] ****** H264-1080p@30fps + H264-1080p@30fps + H264-D1@15fps + H264-D1@15fps ******


 [host]  144: MCFW  : CPU Revision [ES2.1] !!!

 [host]  144: MCFW  : Detected [UNKNOWN] Board !!!

 [host]  144: MCFW  : Base Board Revision [REV A] !!!
 [m3vpss ] VPS_DCTRL_INST_0
 [m3vpss ] IOCTL_VPS_DCTRL_SET_VENC_OUTPUT SYSTEM_DC_VENC_DVO2
 [m3vpss ] IOCTL_VPS_DCTRL_SET_VENC_OUTPUT SYSTEM_DC_VENC_HDMI
 [m3vpss ] IOCTL_VPS_DCTRL_SET_VENC_OUTPUT SYSTEM_DC_VENC_SD
 [m3vpss ] IOCTL_VPS_DCTRL_SET_VENC_CLK_SRC VPS_DC_VENC_HDMI | VPS_DC_VENC_DVO2
 [m3vpss ]  4817: CAMERA: Create in progress !!!
 [m3vpss ]  Channel Num Stream 0 Ch 0 ChannelNum 0
 [m3vpss ]  Channel Num Stream 1 Ch 0 ChannelNum 1
 [m3vpss ]  4817: CAMERA: VIP0 PortA camera mode is [ 8-bit, Non-mux Embedded Sync] !!!
 [m3vpss ]  4827: CAMERA: VIP 0: VID DEC 268436736 (0x36): 0002:20202020:20202020, AUD_STATUS 538976288
 [m3vpss ] Iss_captCreate:1661
 [m3vpss ] !!!!!!!!!!!!!! IssAlg_capt2AInit, Entered
 [m3vpss ]  func: Iss_captCreate line: 1838
 [m3vpss ] !!!!!!!!!!!!!! IssAlg_capt2AInit, Entered
 [m3vpss ]  4832: CAMERA: Create Done !!!
 [m3vpss ]  4921: CAMERA: Detect video in progress !!!
 [m3vpss ]  4922: CAMERA: Detect video Done !!!
 [m3vpss ]  4922: VNF:
 [m3vpss ] Create in progress ... !!!
 [m3vpss ]  4923: VNF:
 [m3vpss ] Input Channel CH0 of 1952 x 1112, pitch = (16384, 32768) [0,0][PROGRESSIVE] [7] ...
 [m3vpss ]  4923: VNF:
 [m3vpss ]  [VNF] eOperateMode=0 [6-TNF3,7-NSF2]chVnfCreateParams->ulStartX = 0             chVnfCreateParams->ulStartY = 0 chVnfCreateParams->ulInputStride = 16384                chVnfCreateParams->ulInputWidth=1952,chVnfCreateParams->ulInputHeight=1112
 [m3vpss ]  4924: VNF:
 [m3vpss ]  [VNF] outChInfo->StartX = 0 outChInfo->startY = 0 outChInfo->pitch[0] = 1920    outChInfo->width=1920,outChInfo->height=1080
 [m3vpss ]  4926: VNF:
 [m3vpss ] Create ... DONE !!!
 [m3vpss ]  5134: DUP   : Create Done !!!
 [m3vpss ]  5140: DUP   : Create Done !!!
 [m3vpss ]  IssAlg_captTsk2A:2024: 2A task Main function Entered !!!
 [m3vpss ] DCC server task running
 [m3vpss ]  5144: SCLR: Create in progress !!!
 [m3vpss ]  5228: SCLR    : Loading Up-scaling Co-effs ...
 [m3vpss ]  5228: SCLR    : Co-effs Loading ... DONE !!!
 [m3vpss ] SCLR:HEAPID:0    USED:64
 [m3vpss ] SCLR:HEAPID:1    USED:5952
 [m3vpss ]  5228: SCLR: Create Done !!!
 [m3vpss ]  5228: SCLR: Create in progress !!!
 [m3vpss ]  5250: SCLR    : Loading Up-scaling Co-effs ...
 [m3vpss ]  5251: SCLR    : Co-effs Loading ... DONE !!!
 [m3vpss ] SCLR:HEAPID:0    USED:64
 [m3vpss ] SCLR:HEAPID:1    USED:2432
 [m3vpss ]  5251: SCLR: Create Done !!!
 [m3vpss ]  5251: DEI    : Create in progress !!!
 [m3vpss ]  5266: DEI: OUT1:  0: 0xbbfd1680, 720 x 480, 4 frames
 [m3vpss ]  5267: DEI     : Loading Down-scaling Co-effs
 [m3vpss ]  5267: DEI     : Co-effs Loading ... DONE !!!
 [m3vpss ] DEI:HEAPID:0    USED:64
 [m3vpss ] DEI:HEAPID:1    USED:4528
 [m3vpss ]  5268: DEI    : Create Done !!!
 [m3vpss ]  5268: DEI    : Create in progress !!!
 [m3vpss ]  5281: DEI: OUT1:  0: 0xbc1cba80, 640 x 480, 4 frames
 [m3vpss ]  5282: DEI     : Loading Down-scaling Co-effs
 [m3vpss ]  5282: DEI     : Co-effs Loading ... DONE !!!
 [m3vpss ] DEI:HEAPID:0    USED:64
 [m3vpss ] DEI:HEAPID:1    USED:1008
 [m3vpss ]  5283: DEI    : Create Done !!!
 [m3vpss ]  5285: MERGE   : Create Done !!!
 [m3vpss ] {SWOSD} edma3Handle->tccVal = 36
 [m3vpss ] {SWOSD} edma3Handle->chId   = 36
 [m3vpss ] {SWOSD} edma3Handle->tccVal = 37
 [m3vpss ] {SWOSD} edma3Handle->chId   = 37
 [m3vpss ] {SWOSD} edma3Handle->tccVal = 38
 [m3vpss ] {SWOSD} edma3Handle->chId   = 38
 [m3vpss ] {SWOSD} edma3Handle->tccVal = 39
 [m3vpss ] {SWOSD} edma3Handle->chId   = 39
 [m3vpss ]  5296: SYSTEM: Opening MsgQ [HOST_MSGQ] ...
 [m3vpss ]  5164: SWOSD   : Create Done !!!
 [m3vpss ]  5364: SCLR: Create in progress !!!
 [m3vpss ]  5368: SCLR    : Loading Up-scaling Co-effs ...
 [m3vpss ]  5368: SCLR    : Co-effs Loading ... DONE !!!
 [c6xdsp ]  5303: IPC_FRAMES_IN   : Create in progress !!!
 [c6xdsp ]  5303: SYSTEM: Opening ListMP [VPSS-M3_IPC_OUT_24] ...
 [m3vpss ] SCLR:HEAPID:0    USED:64
 [c6xdsp ]  5303: SYSTEM: Opening ListMP [VPSS-M3_IPC_IN_24] ...
 [m3vpss ] SCLR:HEAPID:1    USED:2432
 [c6xdsp ]  5304: SYSTEM: Opening MsgQ [VPSS-M3_MSGQ] ...
 [m3vpss ]  5369: SCLR: Create Done !!!
 [m3vpss ]  5376: DUP   : Create Done !!!
 [m3vpss ]  5376: IPC_FRAMES_OUT   : Create in progress !!!
 [c6xdsp ] IPC_FRAMES_IN:HEAPID:0    USED:304
 [c6xdsp ]  5306: IPC_FRAMES_IN   : Create Done !!!
 [m3vpss ]  5379: IPC_FRAMES_OUT   : Create Done !!!
 [c6xdsp ]  5307: VA   : Create Done !!!
 [m3video]  5394: IPC_IN_M3   : Create in progress !!!
 [m3vpss ]  5192: FD   : Alg Create Done !!!
 [c6xdsp ]  5309: SYSTEM: Opening MsgQ [HOST_MSGQ] ...
 [m3video]  5395: SYSTEM: Opening ListMP [VPSS-M3_IPC_OUT_0] ...
 [m3vpss ]  5192: FD   : Create Done !!!
 [c6xdsp ]  5308: VA   : ALG Init Done !!!
 [m3vpss ]  5392: IPC_OUT_M3   : Create in progress !!!
 [c6xdsp ] DMVAL:
 [c6xdsp ] > DMVAL: 9172807 bytes required for DMVAL instance.
 [m3vpss ]  5394: IPC_OUT_M3   : Create Done !!!
 [m3video]  5395: SYSTEM: Opening ListMP [VPSS-M3_IPC_IN_0] ...
 [m3video]  5398: IPC_IN_M3   : Create Done !!!
 [m3video]  5399: ENCODE: Create in progress ... !!!
 [c6xdsp ]  5354: VA   : MEMALLOC 9172807 bytes for DMVAL memory at addr 0x89000080!!!
 [c6xdsp ] DMVAL:
 [c6xdsp ] > DMVAL: Library framework initialized for the 1st time.
 [c6xdsp ] DMVAL:
 [c6xdsp ] > DMVAL: Assigned memory to Camera Tamper Detection application.
 [c6xdsp ] DMVAL:
 [c6xdsp ] > DMVAL: Completed memory assignments to library applications.
 [c6xdsp ] DMVAL:
 [c6xdsp ] > DMVAL: Library framework reset.
 [c6xdsp ] DMVAL:
 [c6xdsp ] > DMVAL: Initialized library applications.
 [c6xdsp ]  5368: VA   : ALG Create Done !!!
 [m3video]  5502: ENCODE: Creating CH0 of 1920 x 1080, pitch = (1920, 1920) [PROGRESSIVE] [NON-TILED  ], bitrate = 8000 Kbps ...
 [m3video] ENCLINK_H264:HEAPID:0    USED:13272
 [m3video]  5583: ENCODE: Creating CH1 of 960 x 544, pitch = (960, 960) [PROGRESSIVE] [NON-TILED  ], bitrate = 8000 Kbps ...
 [m3video] ENCLINK_H264:HEAPID:0    USED:11720
 [m3video]  5664: ENCODE: Creating CH2 of 720 x 480, pitch = (720, 720) [PROGRESSIVE] [NON-TILED  ], bitrate = 2000 Kbps ...
 [m3video] ENCLINK_H264:HEAPID:0    USED:11720
 [m3video]  5745: ENCODE: Creating CH3 of 640 x 480, pitch = (640, 640) [PROGRESSIVE] [NON-TILED  ], bitrate = 2000 Kbps ...

 [host] IpcBitsInLink_tskMain:Entered
 [host]  963: IPC_BITS_IN   : Create in progress !!!

 [host]  963: IPC_BITS_IN   : ListMPOpen start !!!

 [host]  963: SYSTEM: Opening ListMP [VIDEO-M3_IPC_OUT_29] ...

 [host]  965: SYSTEM: Opening ListMP [VIDEO-M3_IPC_IN_29] ...

 [host]  967: IPC_BITS_IN   : ListMPOpen done !!!

 [host]  968: IPC_BITS_IN   : System_linkGetInfo done !!!

 [host]  968: IPC_BITS_IN   : Create Done !!!

 [host] ****************** Usecase Done **********************
 [m3video] ENCLINK_H264:HEAPID:0    USED:11720
 [m3vpss ]  5643: CAMERA: Start in progress !!!
 [m3video]  5828: ENCODE: All  inside autorun

 [host]
Application Run Completed
 [m3vpss ] TI_2A_UpdateDynamicParams1 876 brightness: 128  pObj: 0
 [m3vpss ] TI_2A_UpdateDynamicParams1 878 contrast: 128  pObj: 0
 [m3vpss ] TI_2A_UpdateDynamicParams1 893 saturation: 128  pObj: 0
 [m3vpss ] TI_2A_UpdateDynamicParams1 906 sharpness: 128  pObj: 0
 [m3vpss ] CT: 1000, 3dlut index:0
 [m3vpss ]  5760: CAMERA: Fields = 2 (fps = 0), Total Resets = 0 (Avg 0 ms per reset)
 [c6xdsp ]  
 
 [c6xdsp ]  *** UTILS: CPU MHz = 500 Mhz ***
 
 [c6xds sbulla: unknown partition table
p ]  
 [m3video]  Channel:2 inputframerate:30 targetfps:60
 [c6xdsp ]  5891: SYSTEM: Opening MsgQ [VIDEO-M3_MSGQ] ...
 [m3video]  Channel:3 inputframerate:30 targetfps:60
INIT: Entering runlevel: 5
 [m3video]  Channel:0 inputframerate:30 targetfps:60

 [host] ITT server task running !!!

 [host]
 ITT ittServer_run

 [host] ITT Server Message initialization successful

 [host]
 ITT capture task created

 [host] DCC server Message ques is open succefully

 [host] Setting cmd <1> in message <40d39100>

 [host] Posting message <40d39100> in QId <20002>
insmod: error inserting 'sbull.ko': -1 File exists
 [m3video]  Channel:1 inputframerate:30 targetfps:60
 [m3vpss ] Command 1 recived from HOST A8

 [host] Response from M3 is : 1

 [host] Response from M3 is : 1

 [host] Default parameters were sent sucessfully

 [host] Server Socket created with ID <22>
 [m3vpss ] Command 2 recived from HOST A8
 [m3vpss ] New DCC data of size <33603>
 [m3vpss ] Call to VNF_LINK_CMD_UPDATE_DCC -1

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

Arago Project http://arago-project.org DM8127_IPNC ttyO0

Arago 2011.09 DM8127_IPNC ttyO0

DM8127_IPNC login: root (automatic login)
 
 [host] ********** tiler_implement : Into cmd MSG_CMD_SET_MIRROR

 [host] ********** tiler_implement : Into cmd STREAM_FEATURE_MIRROR

 [host] VNF MESSAGE RECIEVED: (Enable:0) (Mode:5) (Strength:0) (EnableTNF:0) (EnableSNF:0)

 [host] TargetedBitrateValue = 10000000, Function = stream_feature_setup, Line = 2696

 [host]
 Channel Selected: 0
 [host]
 Channel Selected: 0,rate control = 0 [m3vpss ]  6886: VNF:
 [m3vpss ] EnableSNF current SNF 1 => new 0!!!

 [host] *************** params.frameRate1 = 30

 [host]
 Channel Selected: 0
 [host]
 Channel Selected: 0
 [host]
 Channel Selected: 0 [m3vpss ]  6886: VNF:
 [m3vpss ] EnableTNF current TNF 0 => new 0!!!
 [m3video]  ENCLINK: new targetbitrate to set:10000000
 [m3video]  ENCLINK: new rate control algorithm  to set:0
 [m3vpss ] TI_2A_UpdateDynamicParams1 876 brightness: 0  pObj: 128
 [m3vpss ] TI_2A_UpdateDynamicParams1 878 contrast: 0  pObj: 128
 [m3vpss ] TI_2A_UpdateDynamicParams1 893 saturation: 0  pObj: 128
 [m3vpss ] TI_2A_UpdateDynamicParams1 906 sharpness: 0  pObj: 128
 [m3vpss ] TI_2A_UpdateDynamicParams1 934 blc: 0  pObj: 2

 [host]
 Channel Selected: 0,packet size = 100
 [host]
 Channel Selected: 0,encPreset = 0
 [host]
 Channel Selected: 0,enable = 0
 [host]
 Channel Selected: 0
 [host] TargetedBitrateValue = 2000000, Function = stream_feature_setup, Line = 2710

 [host]
 Channel Selected: 1
 [host]
 Channel Selected: 1,rate control = 0

 [host] *************** params.frameRate2 = 30
 [m3vpss ] VNF: chVnfCreateParams->ulInputWidth = 1952,pInFrameInfo->rtChInfo.width = 1104
 [m3video]  Eg_file_storage gadget: No serial-number string provided!
NCLINK: new targetbitrate to set:2000000

 [host]
 Channel Selected: 1
g_file_storage gadget: File-backed Storage Gadget, version: 1 September 2010
 [host]
 Chang_file_storage gadget: Number of LUNs=1
nel Selected: 1g_file_storage gadget-lun0: ro=0, nofua=0, file: /dev/sbulla

 [host]
 Channel Selected: 1
 [host]
 Channel Selected: 1,packet size = 100 [m3video]  ENCLINK: new rate control algorithm  to set:0

 [host]
 Channel Selected: 1,encPreset = 0
 [host]
 Channel Selected: 1,enable = 0
 [host]
 Channel Selected: 1
 [host] TargetedBitrateValue = 2000000, Function = stream_feature_setup, Line = 2727

 [host]
 Channel Selected: 2

 [host] *************** params.frameRate3 = 15

 [host]
 Channel Selected: 2
 [host]
 Channel Selected: 2
 [host]
 Channel Selected: 2
 [host]
 Channel Selected: 2,packet size = 100 [m3video]  Channel:0 inputframerate:30 targetfps:30
 [m3video]  ENCLINK: new targetframerate to set:30000

 [host]
 Channel Selected: 2,encPreset = 0
 [host]
 Channel Selected: 2 [m3video]  ENCLINK: new intraFrameInterval to set:30,new maxPicSizeRatioI to set = 960

 [host] TargetedBitrateValue = 2000000, Function = stream_feature_setup, Line = 2742

 [host]
 Channel Selected: 3mkdosfs 3.0.12 (29 Oct 2011)

 [host] *************** params.frameRate4 = 15

 [host]
 Channel Selected: 3
 [host]
 Channel Selected: 3
 [host]
 Channel Selected: 3
 [host]
 Channel Selected: 3,packet size = 100
 [host]
 Channel Selected: 3,encPreset = 0
 [host]
 Channel Selected: 3Check_device_version : DEVICE VER = 1 !!
 [m3video]  ENCLINK: new QP I Param to set:10 36 -1
unable to get drive geometry, using default 255/63
/dev/sbulla has 255 heads and 63 sectors per track,
logical sector size is 512,
using 0xf8 media descriptor, with 1024 sectors;
file system has 2 12-bit FATs and 4 sectors per cluster.
FAT size is 1 sector, and provides 247 clusters.
There is 1 reserved sector.
Root directory contains 512 slots and uses 32 sectors.
Volume ID is b1095150, no volume label.
 [m3video]  ENCLINK: new QP P Param to set:10 40 28
 [m3video]  ENCLINK: new PacketSize Param to set:100
 [m3video]  ENCLINK: new Encode Preset Param to set:0
 [m3video]  Channel:1 inputframerate:30 targetfps:30
 [m3video]  ENCLINK: new targetbitrate to set:2000000
 [m3video]  ENCLINK: new targetframerate to set:15000
 [m3video]  ENCLINK: new intraFrameInterval to set:30,new maxPicSizeRatioI to set = 960
 [m3video]  ENCLINK: new QP I Param to set:10 36 -1
 [m3video]  Channel:2 inputframerate:30 targetfps:15
 [m3video]  ENCLINK: new targetframerate to set:30000
 [m3video]  ENCLINK: new intraFrameInterval to set:30,new maxPicSizeRatioI to set = 960
 [m3video]  ENCLINK: new QP I Param to set:10 36 -1
 [m3video]  ENCLINK: new QP P Param to set:10 40 28
 [m3video]  ENCLINK: new PacketSize Param to set:100
 [m3video]  ENCLINK: new Encode Preset Param to set:0
 [m3video]  ENCLINK: new intraFrameInterval to set:30,new maxPicSizeRatioI to set = 960
 [m3video]  ENCLINK: new QP P Param to set:10 40 28
 [m3video]  ENCLINK: new PacketSize Param to set:100
 [m3video]  ENCLINK: new Encode Preset Param to set:0
 [m3video]  ENCLINK: new targetbitrate to set:2000000
 [m3video]  ENCLINK: new targetframerate to set:15000
 [m3video]  ENCLINK: new intraFrameInterval to set:30,new maxPicSizeRatioI to set = 960
 [m3video]  ENCLINK: new QP I Param to set:10 36 -1
Simple mixer control 'PGA',0
  Capabilities: cvolume cswitch penum
  Capture channels: Front Left - Front Right
  Limits: Capture 0 - 119
  Front Left: Capture 95 [80%] [47.50dB] [on]
  Front Right: Capture 95 [80%] [47.50dB] [on]
Check_device_version : DEVICE VER = 1 !!
 [m3video]  ENCLINK: new QP P Param to set:10 40 28
 [m3video]  ENCLINK: new PacketSize Param to set:100
 [m3video]  ENCLINK: new Encode Preset Param to set:0
 [m3video]  Channel:3 inputframerate:30 targetfps:15
Simple mixer control 'PGA',0
  Capabilities: cvolume cswitch penum
  Capture channels: Front Left - Front Right
  Limits: Capture 0 - 119
  Front Left: Capture 80 [67%] [40.00dB] [on]
  Front Right: Capture 80 [67%] [40.00dB] [on]
Simple mixer control 'PCM',0
  Capabilities: pvolume penum
  Playback channels: Front Left - Front Right
  Limits: Playback 0 - 127
  Mono:
  Front Left: Playback 101 [80%] [-13.00dB]
  Front Right: Playback 101 [80%] [-13.00dB]

 [host]
Force IDR on Channel: 0
 [host]
Force IDR on Channel: 1SystemInit success
Schedule manager init success
Dmva Schedule manager init success
queue id:0
umount: can't umount /mnt/mmc: Invalid argument
killall: dhcpcd: no process killed
 [m3vpss ] CT: 4413, 3dlut index:1
net_search_gateway:eth0, 660A, 0, 1
net_search_gateway:eth0, 0, 101660A, 3
dns=192.168.6.50
g_file_storage gadget: No serial-number string provided!
g_file_storage gadget: File-backed Storage Gadget, version: 1 September 2010
g_file_storage gadget: Number of LUNs=1
g_file_storage gadget-lun0: ro=0, nofua=0, file: /dev/sbulla
./boa: /usr/lib/libssl.so.1.0.0: no version information available (required by ./boa)
./boa: /usr/lib/libcrypto.so.1.0.0: no version information available (required by ./boa)
ApproDrvInit: 3
queue id:163845
queue id:0
queue id:32769
[09/Nov/2012:04:48:20 +0000] boa: server version Boa/0.94.13
[09/Nov/2012:04:48:20 +0000] boa: server built Dec 13 2014 at 03:34:42.
[09/Nov/2012:04:48:20 +0000] boa: starting server pid=539, port 80
func: Dyn_Tiler_Change_Thread line: 322
func: ReaderThread line: 190
return Value: 4
 [m3vpss ] CameraLink_drvSetIntegrationTime: 3372
 [m3vpss ] func: Iss_captControl line: 2507
return Value: 4
 [m3vpss ] func: IssAlg_capt2ASetIntegrationTime line: 254
 [m3vpss ] func: Iss_Mt9j003Control line: 119
 [m3vpss ] func: Iss_Mt9j003IntegrationTimeSet line: 1306
 [m3vpss ] func: Iss_Mt9j003IntegrationTimeSet line: 1337 createArgs: 2000
 [m3vpss ] func: Iss_Mt9j003IntegrationTimeSet line: 1380
 [m3vpss ] func: IssAlg_capt2ASetIntegrationTime line: 264
 [m3vpss ] CameraLink_drvSetGain: 3411
 [m3vpss ] func: Iss_captControl line: 2514
 [m3vpss ] func: IssAlg_capt2ASetGain line: 295
 [m3vpss ] func: Iss_Mt9j003Control line: 123
 [m3vpss ] func: Iss_Mt9j003GainSet line: 1497
 [m3vpss ] func: Iss_Mt9j003GainSet line: 1558
 [m3vpss ] func: IssAlg_capt2ASetGain line: 305
return Value: 255
queue id:131076
ApproDrvInit: 10
queue id:163845
Initializing...
...done initializing
Play this stream using the URL:
    rtsp://10.102.2.194:8557/PSIA/Streaming/channels/2?videoCodecType=H.264

(We use port 8304 for optional RTSP-over-HTTP tunneling.)
ApproDrvInit: 6
queue id:163845
Initializing...
...done initializing
Play this stream using the URL:
    rtsp://10.102.2.194:8554/PSIA/Streaming/channels/2?videoCodecType=H.264

(We use port 8301 for optional RTSP-over-HTTP tunneling.)
ApproDrvInit: 2
queue id:163845
Initializing...
ApproDrvInit: 8
queue id:163845
Initializing...
...done initializing
Play this stream using the URL:
    rtsp://10.102.2.194:8555/PSIA/Streaming/channels/0?videoCodecType=MJPEG

(We use port 8302 for optional RTSP-over-HTTP tunneling.)
ApproDrvInit: 9
...done initializing
Play this stream using the URL:
    rtsp://10.102.2.194:8553/PSIA/Streaming/channels/2?videoCodecType=H.264

(We use port 8300 for optional RTSP-over-HTTP tunneling.)
queue id:163845
Initializing...
...done initializing
Play this stream using the URL:
    rtsp://10.102.2.194:8558/PSIA/Streaming/channels/2?videoCodecType=H.264

(We use port 8303 for optional RTSP-over-HTTP tunneling.)
********** tiler_implement : Into cmd SFIELD_SET_MIRROR
********** tiler_implement : Into cmd SYS_MSG_SET_MIRROR
********** tiler_implement : Into cmd SYS_MSG_SET_MIRROR : value=5
********** tiler_implement : Into Function SetMirror() : value=5
return Value: 4
queue id:0
queue id:0
<UDN>uuid:Upnp-TVEmulator-1_0-00_0014971028</UDN>

Upnp port is 0
UPnP Initialized OK ip=10.102.2.194, port=0
desc_doc_url = http://10.102.2.194/tvdevicedesc.xml
error code = 0
device advertisement succeed.
 [m3video]  ==================== EncLink_PrintDetails ====================
 [m3video]     24977: HDVICP-ID:0
 [m3video]         totalAcquire2wait in msec:       458
 [m3video]         totalWait2Isr in msec:     13662
 [m3video]         totalIsr2Done in msec:        58
 [m3video]         totalWait2Done in msec:     13720
 [m3video]         totalDone2Release in msec:         0
 [m3video]         totalAcquire2Release in msec:     14446
 [m3video]         totalAcq2acqDelay in msec:      4551
 [m3video]         totalElapsedTime in msec:     18996
 [m3video]         numAccessCnt:      2066
 [m3video]         IVA-FPS :       114
 [m3video]  
 [m3video]  *** ENCODE Statistics ***
 [m3video]  
 [m3video]  Elasped Time           : 18 secs
 [m3video]  
 [m3video]  
 [m3video]  CH  | In Recv In Skip In User  Out Latency  
 [m3video]  Num | FPS     FPS     Skip FPS FPS Min / Max
 [m3video]  --------------------------------------------
 [m3video]    0 |      31       0        0 31.33  86 / 107
 [m3video]    1 |      31       0        0 31.33  97 / 116
 [m3video]    2 |      31       0       14 16.56   9 /  49
 [m3video]    3 |      31       0       14 16.56  10 /  49
 [m3video]  
 [m3video] Multi Channel Encode Average Submit Batch Size
 [m3video] Max Submit Batch Size : 24
 [m3video] IVAHD_0 Average Batch Size : 1
 [m3video] IVAHD_0 Max achieved Batch Size : 3
 [m3video]  ==============================================================
 [m3vpss ] CT: 5457, 3dlut index:2

 [host]
Usecase is Active !!!
 [m3video]  ==================== EncLink_PrintDetails ====================
 [m3video]     43919: HDVICP-ID:0
 [m3video]         totalAcquire2wait in msec:       916
 [m3video]         totalWait2Isr in msec:     27351
 [m3video]         totalIsr2Done in msec:       108
 [m3video]         totalWait2Done in msec:     27459
 [m3video]         totalDone2Release in msec:         0
 [m3video]         totalAcquire2Release in msec:     28901
 [m3video]         totalAcq2acqDelay in msec:      9045
 [m3video]         totalElapsedTime in msec:     37946
 [m3video]         numAccessCnt:      3914
 [m3video]         IVA-FPS :       105
 [m3video]  
 [m3video]  *** ENCODE Statistics ***
 [m3video]  
 [m3video]  Elasped Time           : 18 secs
 [m3video]  
 [m3video]  
 [m3video]  CH  | In Recv In Skip In User  Out Latency  
 [m3video]  Num | FPS     FPS     Skip FPS FPS Min / Max
 [m3video]  --------------------------------------------
 [m3video]    0 |      31       0        0 31.61  95 / 104
 [m3video]    1 |      31       0        0 31.61 100 / 113
 [m3video]    2 |      31       0       15 15.78   9 /  16
 [m3video]    3 |      31       0       15 15.78  10 /  46
 [m3video]  
 [m3video] Multi Channel Encode Average Submit Batch Size
 [m3video] Max Submit Batch Size : 24
 [m3video] IVAHD_0 Average Batch Size : 1
 [m3video] IVAHD_0 Max achieved Batch Size : 2
 [m3video]  ==============================================================

 [m3vpss ] VNF: chVnfCreateParams->ulInputWidth = 1104,pInFrameInfo->rtChInfo.width = 1952
 [m3video]  ==================== EncLink_PrintDetails ====================
 [m3video]     62946: HDVICP-ID:0
 [m3video]         totalAcquire2wait in msec:      1372
 [m3video]         totalWait2Isr in msec:     41134
 [m3video]         totalIsr2Done in msec:       146
 [m3video]         totalWait2Done in msec:     41280
 [m3video]         totalDone2Release in msec:         0
 [m3video]         totalAcquire2Release in msec:     43414
 [m3video]         totalAcq2acqDelay in msec:     13559
 [m3video]         totalElapsedTime in msec:     56964
 [m3video]         numAccessCnt:      5787
 [m3video]         IVA-FPS :       103
 [m3video]  
 [m3video]  *** ENCODE Statistics ***
 [m3video]  
 [m3video]  Elasped Time           : 19 secs
 [m3video]  
 [m3video]  
 [m3video]  CH  | In Recv In Skip In User  Out Latency  
 [m3video]  Num | FPS     FPS     Skip FPS FPS Min / Max
 [m3video]  --------------------------------------------
 [m3video]    0 |      30       0        0 30.05  88 / 104
 [m3video]    1 |      30       0        0 30.05  96 / 112
 [m3video]    2 |      30       0       15 15.00  10 /  35
 [m3video]    3 |      30       0       15 15.05  10 /  46
 [m3video]  
 [m3video] Multi Channel Encode Average Submit Batch Size
 [m3video] Max Submit Batch Size : 24
 [m3video] IVAHD_0 Average Batch Size : 1
 [m3video] IVAHD_0 Max achieved Batch Size : 2
 [m3video]  ==============================================================
 [m3vpss ]  65770: CAMERA: Fields = 3602 (fps = 60), Total Resets = 0 (Avg 0 ms per reset)

 [host]
Usecase is Active !!!

 [host]
Usecase is Active !!!

 [host]
Usecase is Active !!!