SK-TDA4VM: dcc tuning Invalid header received 0x04,and network error!

Part Number: SK-TDA4VM

 环境: 硬件 :TDA4VM-SK  +max9296 +X3C

            软件:ti-sdk-rtos-j721e-evm_08_06_01_03 

                       ti-sdk-linux-j721e-evm-08_06_01_03

            dcc version:3.01

修改如下:

 1 在vision_apps_build_flags.mak 

            BUILD_ENABLE_ETHFW=yes

            BUILD_MCU_BOARD_DEPENDENCIES=yes

        in Makefile

          ifeq ($(BUILD_EDGEAI),no)

             DIRECTORIES +=apps

           else

               DIRECTORIES +=apps apps/basic_demos/app-c7x_kernel

            ...

           endif

    2) i2c3 bus 连接 max9296 +x3c

          in app_pinmux_j721e.c

   add .....


static pinmuxPerCfg_t gGpio0PinCfg[] =
{
/* GpioCamCtrl -> GPIO0_64 -> AD28 */
{
PIN_PRG0_PRU1_GPO1, PIN_MODE(7) | \
((PIN_PULL_DISABLE | PIN_INPUT_ENABLE) & (~PIN_PULL_DIRECTION))
},
/* GpioCamCtrl -> GPIO0_74 -> AG26 */
{
PIN_PRG0_PRU1_GPO11, PIN_MODE(7) | \
((PIN_PULL_DISABLE | PIN_INPUT_ENABLE) & (~PIN_PULL_DIRECTION))
},
/* GpioCamCtrl -> GPIO0_75 -> AF27 */
{
PIN_PRG0_PRU1_GPO12, PIN_MODE(7) | \
((PIN_PULL_DISABLE | PIN_INPUT_ENABLE) & (~PIN_PULL_DIRECTION))
},
/* GpioCamCtrl -> GPIO0_76 -> AF26 */
{
PIN_PRG0_PRU1_GPO13, PIN_MODE(7) | \
((PIN_PULL_DISABLE | PIN_INPUT_ENABLE) & (~PIN_PULL_DIRECTION))
},
/* GpioCamCtrl -> GPIO0_77 -> AE25 */
{
PIN_PRG0_PRU1_GPO14, PIN_MODE(7) | \
((PIN_PULL_DISABLE | PIN_INPUT_ENABLE) & (~PIN_PULL_DIRECTION))
},
/* GpioCamCtrl -> GPIO0_78 -> AF29 */
{
PIN_PRG0_PRU1_GPO15, PIN_MODE(7) | \
((PIN_PULL_DISABLE | PIN_INPUT_ENABLE) & (~PIN_PULL_DIRECTION))
},
/* GpioCamCtrl -> GPIO0_79 -> AG29 */
{
PIN_PRG0_PRU1_GPO16, PIN_MODE(7) | \
((PIN_PULL_DISABLE | PIN_INPUT_ENABLE) & (~PIN_PULL_DIRECTION))
},
{PINMUX_END}
};

static pinmuxModuleCfg_t gGpioPinCfg[] =
{
{0, TRUE, gGpio0PinCfg},
{PINMUX_END}
};

static pinmuxPerCfg_t gI2c3PinCfg[] =
{
/* camCtrl -> I2C3_SCL -> T26 */
{
PIN_MMC2_CLK, PIN_MODE(4) | \
((PIN_PULL_DIRECTION | PIN_INPUT_ENABLE) & (~PIN_PULL_DISABLE))
},
/* camCtrl -> I2C3_SDA -> T25 */
{
PIN_MMC2_CMD, PIN_MODE(4) | \
((PIN_PULL_DIRECTION | PIN_INPUT_ENABLE) & (~PIN_PULL_DISABLE))
},
{PINMUX_END}
};


static pinmuxModuleCfg_t gI2cPinCfg[] =
{
{3, TRUE, gI2c3PinCfg},
{PINMUX_END}
};


static pinmuxBoardCfg_t gBasicDemoPinmuxDataInfo[] =
{
{0, gDispPinCfg},
{1, gCaptPinCfg},
//{2, gGpioPinCfg},
{2, gI2cPinCfg},
{PINMUX_END}
};

...end add

    (3) mcu2 :  disable eDP , enable HDMI 

   (4)  A72: disable HDMI

  in app_cfg_mcu2_0.h

  #define ENABLE_DSS_HDMI

  #undef ENABLE_DSS_EDP

   (5)  修改pinmux AG29  

         #if zenll1

            {

                PIN PRGO PRU1 GPO16,PIN MODE(7)|

                ((PIN_PULL DISABLE|PIN INPUT ENABLE)& ( PIN_PULL DIRECTION))

            },

            #else

            {

                PIN PRGO PRU1 GPO16,PIN MODE(4)|

                ((PIN_PULL DISABLE | PIN INPUT ENABLE)& (~PIN PULL DIRECTION))

            },

            #endif

   (6) disable  ethfw  Uart2gpio pin Y1) RX  功能 ----i2c 电压(1.8v 3.3v 电压切换)

    in file:board_pinmux_data.c

 gUart2PinCfg[]=

{

/* MyUART2 -> UART2_RXD -> Y1 */

}   

pinmuxBoardCfg_t gEthFwPinmuxData[]=

{

...

//{5,gUartPinCfg},

{ PINMUX_END}

in J721E_pinux_data.c

 

static pinmuxPerCfg_t gUart2PinCfg[] =

{

#if 0

/*MyUART2 ->UART2_RXD -> Y1*/

.......

#edndif

};

in board_j721e_evm.c

if(gEthFwBoard.uartAllowed)

{

// EthFwBoard_configUart();

//boardCfg !=BOARD_INIT_UART_STDIO;

}

 in J721E_pinmux_data_gesi_cpsw9g.c

/* MyRGMII4 ->RGMII4_TXC ->AG29 */

#if 1

PIN_PRG0_PRU1_GPO16,PIN_ODE(7) |\

#else

PIN_PRG0_PRU1_GPO16,PIN_ODE(4) |\

#endif

  (7) network_Read 

        while(tmpDataSize > 0U)

      {

            actDataSize =recv(pObj->connectedSockFd, (void *)dataBuf, tmpDataSize, 0);

            if(actDataSize <= 0)

            {

                dataSize =0U;

                status=-l;printf("%s: tmpDataSize = 0x%x recv returned 0x%x\n",FUNCTON_,tmpDataSize,                         actDataSize);

                break;

            }

            else

            {

 

            dataBuf+= actDataSize;tmpDataSize -=(uint32_t)actDataSize;

            break; //如果这条不加则不会退出这个函数。

            }

       }

    经过以上修改后,出现如下问题:

DCC端发送 get RAW ,在tda4会收到 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 

   Invalid header received(port=5000) header = 0x4!!!

U-Boot SPL 2021.01-g62a9e51344 (May 30 2023 - 11:25:01 +0000)
Model: Texas Instruments J721E SK A72
Board: J721EX-EAIK rev A1
SYSFW ABI: 3.1 (firmware rev 0x0008 '8.6.3--v08.06.03 (Chill Capybar')
Trying to boot from MMC2


U-Boot 2021.01-g62a9e51344 (May 30 2023 - 11:25:01 +0000)

SoC: J721E SR1.1 GP
Model: Texas Instruments J721E SK A72
Board: J721EX-EAIK rev A1
DRAM: 4 GiB
Flash: 0 Bytes
MMC: sdhci@4fb0000: 1
Loading Environment from FAT... OK
In: serial@2800000
Out: serial@2800000
Err: serial@2800000
am65_cpsw_nuss ethernet@46000000: K3 CPSW: nuss_ver: 0x6BA00101 cpsw_ver: 0x6BA80100 ale_ver: 0x00293904 Ports:1 mdio_freq:1000000
cdns,sierra serdes@5000000: sierra probed
Net: eth0: ethernet@46000000port@1
Hit any key to stop autoboot: 0
switch to partitions #0, OK
mmc1 is current device
SD/MMC found on device 1
Failed to load 'boot.scr'
483 bytes read in 7 ms (67.4 KiB/s)
Loaded env from uEnv.txt
Importing environment from mmc1 ...
Running uenvcmd ...
1 bytes read in 8 ms (0 Bytes/s)
Already setup.
k3_r5f_rproc r5f@41000000: Core 1 is already in use. No rproc commands work
k3_r5f_rproc r5f@41400000: Core 2 is already in use. No rproc commands work
1387896 bytes read in 68 ms (19.5 MiB/s)
Load Remote Processor 2 with data@addr=0x82000000 1387896 bytes: Success!
302028 bytes read in 23 ms (12.5 MiB/s)
Load Remote Processor 3 with data@addr=0x82000000 302028 bytes: Success!
Failed to load '/lib/firmware/j7-main-r5f1_0-fw'
Failed to load '/lib/firmware/j7-main-r5f1_1-fw'
1334036 bytes read in 65 ms (19.6 MiB/s)
Load Remote Processor 6 with data@addr=0x82000000 1334036 bytes: Success!
1334036 bytes read in 65 ms (19.6 MiB/s)
Load Remote Processor 7 with data@addr=0x82000000 1334036 bytes: Success!
12849048 bytes read in 212 ms (57.8 MiB/s)
Load Remote Processor 8 with data@addr=0x82000000 12849048 bytes: Success!
19079680 bytes read in 796 ms (22.9 MiB/s)
108935 bytes read in 13 ms (8 MiB/s)
12654 bytes read in 9 ms (1.3 MiB/s)
## Flattened Device Tree blob at 88000000
Booting using the fdt blob at 0x88000000
Loading Device Tree to 000000008fee2000, end 000000008fffffff ... OK

Starting kernel ...

[ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x411fd080]
[ 0.000000] Linux version 5.10.162-g76b3e88d56 (oe-user@oe-host) (aarch64-none-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10)) 9.2.1 20191025, GNU ld (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10)) 2.33.1.201912093
[ 0.000000] Machine model: Texas Instruments J721E SK
[ 0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
[ 0.000000] printk: bootconsole [ns16550a0] enabled
[ 0.000000] efi: UEFI not found.
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a0000000, size 1 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a0000000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a0100000, size 15 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a0100000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a1000000, size 1 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a1000000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a1100000, size 15 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a1100000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a2000000, size 1 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a2000000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a2100000, size 31 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a2100000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a4000000, size 1 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a4000000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a4100000, size 31 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a4100000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a6000000, size 1 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a6000000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a6100000, size 15 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a6100000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a7000000, size 1 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a7000000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a7100000, size 15 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a7100000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a8000000, size 1 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-c66-dma-memory@a8000000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a8100000, size 15 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-c66-memory@a8100000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a9000000, size 1 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-c66-dma-memory@a9000000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a9100000, size 15 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-c66-memory@a9100000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000ac000000, size 96 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-dma-memory@ac000000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000b2000000, size 1 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-c71-dma-memory@b2000000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000b2100000, size 95 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-c71-memory@b2100000, compatible id shared-dma-pool
[ 0.000000] OF: reserved mem: initialized node vision_apps_shared-memories, compatible id dma-heap-carveout
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000d8000000, size 192 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-core-heap-memory-lo@d8000000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000e4000000, size 8 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-virtual-eth-queues@e4000000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x00000000e4800000, size 24 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-virtual-eth-buffers@e4800000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created DMA memory pool at 0x0000000880000000, size 624 MiB
[ 0.000000] OF: reserved mem: initialized node vision-apps-core-heap-memory-hi@880000000, compatible id shared-dma-pool
[ 0.000000] Reserved memory: created CMA memory pool at 0x00000008a7000000, size 512 MiB
[ 0.000000] OF: reserved mem: initialized node linux-cma-buffers@8a7000000, compatible id shared-dma-pool
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000080000000-0x00000000ffffffff]
[ 0.000000] DMA32 empty
[ 0.000000] Normal [mem 0x0000000100000000-0x00000008ffffffff]
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000080000000-0x000000009e7fffff]
[ 0.000000] node 0: [mem 0x000000009e800000-0x00000000b7ffffff]
[ 0.000000] node 0: [mem 0x00000000b8000000-0x00000000d7ffffff]
[ 0.000000] node 0: [mem 0x00000000d8000000-0x00000000e5ffffff]
[ 0.000000] node 0: [mem 0x00000000e6000000-0x00000000ffffffff]
[ 0.000000] node 0: [mem 0x0000000880000000-0x00000008a6ffffff]
[ 0.000000] node 0: [mem 0x00000008a7000000-0x00000008ffffffff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000008ffffffff]
[ 0.000000] psci: probing for conduit method from DT.
[ 0.000000] psci: PSCIv1.1 detected in firmware.
[ 0.000000] psci: Using standard PSCI v0.2 function IDs
[ 0.000000] psci: Trusted OS migration not required
[ 0.000000] psci: SMC Calling Convention v1.2
[ 0.000000] percpu: Embedded 22 pages/cpu s50392 r8192 d31528 u90112
[ 0.000000] Detected PIPT I-cache on CPU0
[ 0.000000] CPU features: detected: GIC system register CPU interface
[ 0.000000] CPU features: detected: EL2 vector hardening
[ 0.000000] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
[ 0.000000] CPU features: detected: Spectre-BHB
[ 0.000000] CPU features: detected: ARM erratum 1742098
[ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 1032192
[ 0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 mtdparts=47040000.spi.0:512k(ospi.tiboot3),2m(ospi.tispl),4m(ospi.u-boot),256k(ospi.env),1m(ospi.sysfw),256k(ospi.env.backup),57088k@8m(ospi.rootfs),256k(ospi.phypattern);47034000t
[ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[ 0.000000] software IO TLB: mapped [mem 0x00000000fbfff000-0x00000000fffff000] (64MB)
[ 0.000000] Memory: 1696384K/4194304K available (11200K kernel code, 1160K rwdata, 4300K rodata, 1856K init, 433K bss, 1973632K reserved, 524288K cma-reserved)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[ 0.000000] rcu: Preemptible hierarchical RCU implementation.
[ 0.000000] rcu: RCU event tracing is enabled.
[ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=2.
[ 0.000000] Trampoline variant of Tasks RCU enabled.
[ 0.000000] Tracing variant of Tasks RCU enabled.
[ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
[ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[ 0.000000] GICv3: GIC: Using split EOI/Deactivate mode
[ 0.000000] GICv3: 960 SPIs implemented
[ 0.000000] GICv3: 0 Extended SPIs implemented
[ 0.000000] GICv3: Distributor has no Range Selector support
[ 0.000000] GICv3: 16 PPIs implemented
[ 0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001900000
[ 0.000000] ITS [mem 0x01820000-0x0182ffff]
[ 0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
[ 0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
[ 0.000000] ITS@0x0000000001820000: allocated 524288 Devices @8c7800000 (flat, esz 8, psz 64K, shr 0)
[ 0.000000] ITS: using cache flushing for cmd queue
[ 0.000000] GICv3: using LPI property table @0x00000008c7030000
[ 0.000000] GIC: using cache flushing for LPI property table
[ 0.000000] GICv3: CPU0: using allocated LPI pending table @0x00000008c7040000
[ 0.000000] arch_timer: cp15 timer(s) running at 200.00MHz (phys).
[ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns
[ 0.000001] sched_clock: 56 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns
[ 0.008406] Console: colour dummy device 80x25
[ 0.012971] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
[ 0.023641] pid_max: default: 32768 minimum: 301
[ 0.028398] LSM: Security Framework initializing
[ 0.033155] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 0.040733] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 0.049581] rcu: Hierarchical SRCU implementation.
[ 0.054655] Platform MSI: msi-controller@1820000 domain created
[ 0.060912] PCI/MSI: /bus@100000/interrupt-controller@1800000/msi-controller@1820000 domain created
[ 0.070218] EFI services will not be available.
[ 0.074942] smp: Bringing up secondary CPUs ...
I/TC: Secondary CPU 1 initializing
I/TC: Secondary CPU 1 switching to normal world boot
[ 0.088194] Detected PIPT I-cache on CPU1
[ 0.088218] GICv3: CPU1: found redistributor 1 region 0:0x0000000001920000
[ 0.088229] GICv3: CPU1: using allocated LPI pending table @0x00000008c7050000
[ 0.088266] CPU1: Booted secondary processor 0x0000000001 [0x411fd080]
[ 0.088316] smp: Brought up 1 node, 2 CPUs
[ 0.117662] SMP: Total of 2 processors activated.
[ 0.122467] CPU features: detected: 32-bit EL0 Support
[ 0.127721] CPU features: detected: CRC32 instructions
[ 0.141886] CPU: All CPU(s) started at EL2
[ 0.146081] alternatives: patching kernel code
[ 0.151120] devtmpfs: initialized
[ 0.160332] KASLR disabled due to lack of seed
[ 0.164984] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.174948] futex hash table entries: 512 (order: 3, 32768 bytes, linear)
[ 0.189613] pinctrl core: initialized pinctrl subsystem
[ 0.195275] DMI not present or invalid.
[ 0.199524] NET: Registered protocol family 16
[ 0.204971] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations
[ 0.212283] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.220295] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.228601] thermal_sys: Registered thermal governor 'step_wise'
[ 0.228603] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.235179] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[ 0.248819] ASID allocator initialised with 65536 entries
[ 0.271335] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.278203] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[ 0.285053] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.291901] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[ 0.299366] cryptd: max_cpu_qlen set to 1000
[ 0.305460] k3-chipinfo 43000014.chipid: Family:J721E rev:SR2.0 JTAGID[0x1bb6402f] Detected
[ 0.314279] vsys_3v3: supplied by vusb-main5v0
[ 0.319301] iommu: Default domain type: Translated
[ 0.324472] SCSI subsystem initialized
[ 0.328558] mc: Linux media interface: v0.10
[ 0.332931] videodev: Linux video capture interface: v2.00
[ 0.338558] pps_core: LinuxPPS API ver. 1 registered
[ 0.343628] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.352966] PTP clock support registered
[ 0.356988] EDAC MC: Ver: 3.0.0
[ 0.360761] FPGA manager framework
[ 0.364275] Advanced Linux Sound Architecture Driver Initialized.
[ 0.370884] clocksource: Switched to clocksource arch_sys_counter
[ 0.377207] VFS: Disk quotas dquot_6.6.0
[ 0.381239] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.390925] Carveout Heap: Exported 512 MiB at 0x00000000b8000000
[ 0.397215] NET: Registered protocol family 2
[ 0.401955] IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.410543] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
[ 0.419301] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.427506] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear)
[ 0.435319] TCP: Hash tables configured (established 32768 bind 32768)
[ 0.442122] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
[ 0.449015] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
[ 0.456420] NET: Registered protocol family 1
[ 0.461159] RPC: Registered named UNIX socket transport module.
[ 0.467216] RPC: Registered udp transport module.
[ 0.472032] RPC: Registered tcp transport module.
[ 0.476835] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 0.483417] NET: Registered protocol family 44
[ 0.487963] PCI: CLS 0 bytes, default 64
[ 0.492316] hw perfevents: enabled with armv8_cortex_a72 PMU driver, 7 counters available
[ 0.502697] Initialise system trusted keyrings
[ 0.507327] workingset: timestamp_bits=46 max_order=20 bucket_order=0
[ 0.515485] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 0.521722] NFS: Registering the id_resolver key type
[ 0.526914] Key type id_resolver registered
[ 0.531187] Key type id_legacy registered
[ 0.535308] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[ 0.542157] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
[ 0.549800] 9p: Installing v9fs 9p2000 file system support
[ 0.575254] Key type asymmetric registered
[ 0.579440] Asymmetric key parser 'x509' registered
[ 0.584439] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[ 0.591999] io scheduler mq-deadline registered
[ 0.596624] io scheduler kyber registered
[ 0.602306] pinctrl-single 4301c000.pinctrl: 94 pins, size 376
[ 0.608504] pinctrl-single 11c000.pinctrl: 173 pins, size 692
[ 0.617461] ti-pat 31010000.pat: Found PAT Rev 1.0 with 16384 pages
[ 0.623889] debugfs: Directory '31010000.pat' with parent 'regmap' already present!
[ 0.631897] ti-pat 31011000.pat: Found PAT Rev 1.0 with 16384 pages
[ 0.638320] debugfs: Directory '31011000.pat' with parent 'regmap' already present!
[ 0.646255] ti-pat 31012000.pat: Found PAT Rev 1.0 with 16384 pages
[ 0.652671] debugfs: Directory '31012000.pat' with parent 'regmap' already present!
[ 0.660600] ti-pat 31013000.pat: Found PAT Rev 1.0 with 2048 pages
[ 0.666931] debugfs: Directory '31013000.pat' with parent 'regmap' already present!
[ 0.674884] ti-pat 31014000.pat: Found PAT Rev 1.0 with 2048 pages
[ 0.681207] debugfs: Directory '31014000.pat' with parent 'regmap' already present!
[ 0.690856] Serial: 8250/16550 driver, 10 ports, IRQ sharing enabled
[ 0.699160] arm-smmu-v3 36600000.iommu: ias 48-bit, oas 48-bit (features 0x00001faf)
[ 0.707364] arm-smmu-v3 36600000.iommu: allocated 65536 entries for cmdq
[ 0.714541] arm-smmu-v3 36600000.iommu: allocated 32768 entries for evtq
[ 0.723155] arm-smmu-v3 36600000.iommu: msi_domain absent - falling back to wired irqs
[ 0.736513] brd: module loaded
[ 0.743059] loop: module loaded
[ 0.746843] megasas: 07.714.04.00-rc1
[ 0.752580] tun: Universal TUN/TAP device driver, 1.6
[ 0.758065] igbvf: Intel(R) Gigabit Virtual Function Network Driver
[ 0.764472] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[ 0.770543] sky2: driver version 1.30
[ 0.774902] VFIO - User Level meta-driver version: 0.3
[ 0.780668] i2c /dev entries driver
[ 0.785109] sdhci: Secure Digital Host Controller Interface driver
[ 0.791426] sdhci: Copyright(c) Pierre Ossman
[ 0.796073] sdhci-pltfm: SDHCI platform and OF driver helper
[ 0.802537] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.808866] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
[ 0.816236] optee: probing for conduit method.
I/TC: Reserved shared memory is enabled
I/TC: Dynamic shared memory is enabled
I/TC: Normal World virtualization support is disabled
I/TC: Asynchronous notifications are disabled
[ 0.820797] optee: revision 3.20 (8e74d476)
[ 0.837200] optee: dynamic shared memory is enabled
[ 0.846659] optee: initialized driver
[ 0.851750] NET: Registered protocol family 17
[ 0.856381] 9pnet: Installing 9P2000 support
[ 0.860782] Key type dns_resolver registered
[ 0.865236] Loading compiled-in X.509 certificates
[ 0.878928] ti-sci 44083000.dmsc: ABI: 3.1 (firmware rev 0x0008 '8.6.3--v08.06.03 (Chill Capybar')
[ 0.930617] omap_i2c 40b00000.i2c: bus 0 rev0.12 at 100 kHz
[ 0.936722] omap_i2c 40b10000.i2c: bus 1 rev0.12 at 100 kHz
[ 0.942788] omap_i2c 42120000.i2c: bus 2 rev0.12 at 100 kHz
[ 0.971045] i2c i2c-3: Added multiplexed i2c bus 4
[ 0.976024] i2c i2c-3: Added multiplexed i2c bus 5
[ 0.980924] pca954x 3-0071: registered 2 multiplexed busses for I2C switch pca9543
[ 0.988681] omap_i2c 2000000.i2c: bus 3 rev0.12 at 400 kHz
[ 0.994762] omap_i2c 2010000.i2c: bus 6 rev0.12 at 100 kHz
[ 1.000771] omap_i2c 2050000.i2c: bus 7 rev0.12 at 400 kHz
[ 1.007233] ti-sci-intr bus@100000:bus@28380000:interrupt-controller2: Interrupt Router 137 domain created
[ 1.017207] ti-sci-intr bus@100000:interrupt-controller0: Interrupt Router 131 domain created
[ 1.026019] ti-sci-intr bus@100000:main-navss:interrupt-controller1: Interrupt Router 213 domain created
[ 1.035902] ti-sci-inta 33d00000.interrupt-controller: Interrupt Aggregator domain 209 created
[ 1.056271] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
[ 1.063959] j721e-pcie 2900000.pcie: IO 0x0010001000..0x0010010fff -> 0x0010001000
[ 1.072237] j721e-pcie 2900000.pcie: MEM 0x0010011000..0x0017ffffff -> 0x0010011000
[ 1.080513] j721e-pcie 2900000.pcie: IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[ 1.089407] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
[ 1.097098] j721e-pcie 2910000.pcie: IO 0x0018001000..0x0018010fff -> 0x0018001000
[ 1.105376] j721e-pcie 2910000.pcie: MEM 0x0018011000..0x001fffffff -> 0x0018011000
[ 1.113653] j721e-pcie 2910000.pcie: IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[ 1.122952] k3-ringacc 2b800000.ringacc: Ring Accelerator probed rings:286, gp-rings[96,20] sci-dev-id:235
[ 1.132827] k3-ringacc 2b800000.ringacc: dma-ring-reset-quirk: disabled
[ 1.139586] k3-ringacc 2b800000.ringacc: RA Proxy rev. 66346100, num_proxies:64
[ 1.148626] k3-ringacc 3c000000.ringacc: Ring Accelerator probed rings:1024, gp-rings[440,150] sci-dev-id:211
[ 1.158783] k3-ringacc 3c000000.ringacc: dma-ring-reset-quirk: disabled
[ 1.165542] k3-ringacc 3c000000.ringacc: RA Proxy rev. 66346100, num_proxies:64
[ 1.173514] 40a00000.serial: ttyS1 at MMIO 0x40a00000 (irq = 15, base_baud = 6000000) is a 8250
[ 1.182952] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 30, base_baud = 3000000) is a 8250
[ 1.191701] printk: console [ttyS2] enabled
[ 1.191701] printk: console [ttyS2] enabled
[ 1.200139] printk: bootconsole [ns16550a0] disabled
[ 1.200139] printk: bootconsole [ns16550a0] disabled
[ 1.210635] 2810000.serial: ttyS3 at MMIO 0x2810000 (irq = 31, base_baud = 3000000) is a 8250
[ 1.219589] 2840000.serial: ttyS6 at MMIO 0x2840000 (irq = 32, base_baud = 3000000) is a 8250
[ 1.233957] davinci_mdio 46000f00.mdio: Configuring MDIO in manual mode
[ 1.278889] davinci_mdio 46000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
[ 1.287387] davinci_mdio 46000f00.mdio: phy[0]: device 46000f00.mdio:00, driver TI DP83867
[ 1.295682] am65-cpsw-nuss 46000000.ethernet: initializing am65 cpsw nuss version 0x6BA00101, cpsw version 0x6BA80100 Ports: 2 quirks:00000000
[ 1.308488] am65-cpsw-nuss 46000000.ethernet: initialized cpsw ale version 1.4
[ 1.315694] am65-cpsw-nuss 46000000.ethernet: ALE Table size 64
[ 1.321996] am65-cpsw-nuss 46000000.ethernet: CPTS ver 0x4e8a010a, freq:500000000, add_val:1 pps:0
[ 1.332232] davinci_mdio c000f00.mdio: Configuring MDIO in manual mode
[ 1.378888] davinci_mdio c000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
[ 1.386441] davinci_mdio c000f00.mdio: no live phy, scanning all
[ 1.404591] davinci_mdio c000f00.mdio: phy[0]: device c000f00.mdio:00, driver unknown
[ 1.412432] davinci_mdio c000f00.mdio: phy[1]: device c000f00.mdio:01, driver unknown
[ 1.420244] davinci_mdio c000f00.mdio: phy[2]: device c000f00.mdio:02, driver unknown
[ 1.428056] davinci_mdio c000f00.mdio: phy[3]: device c000f00.mdio:03, driver unknown
[ 1.435867] davinci_mdio c000f00.mdio: phy[4]: device c000f00.mdio:04, driver unknown
[ 1.443679] davinci_mdio c000f00.mdio: phy[5]: device c000f00.mdio:05, driver unknown
[ 1.451490] davinci_mdio c000f00.mdio: phy[6]: device c000f00.mdio:06, driver unknown
[ 1.459301] davinci_mdio c000f00.mdio: phy[7]: device c000f00.mdio:07, driver unknown
[ 1.467112] davinci_mdio c000f00.mdio: phy[8]: device c000f00.mdio:08, driver unknown
[ 1.474922] davinci_mdio c000f00.mdio: phy[9]: device c000f00.mdio:09, driver unknown
[ 1.482734] davinci_mdio c000f00.mdio: phy[10]: device c000f00.mdio:0a, driver unknown
[ 1.490632] davinci_mdio c000f00.mdio: phy[11]: device c000f00.mdio:0b, driver unknown
[ 1.498529] davinci_mdio c000f00.mdio: phy[12]: device c000f00.mdio:0c, driver unknown
[ 1.506428] davinci_mdio c000f00.mdio: phy[13]: device c000f00.mdio:0d, driver unknown
[ 1.514326] davinci_mdio c000f00.mdio: phy[14]: device c000f00.mdio:0e, driver unknown
[ 1.522229] davinci_mdio c000f00.mdio: phy[15]: device c000f00.mdio:0f, driver unknown
[ 1.530174] davinci_mdio c000f00.mdio: phy[16]: device c000f00.mdio:10, driver unknown
[ 1.538071] davinci_mdio c000f00.mdio: phy[17]: device c000f00.mdio:11, driver unknown
[ 1.545968] davinci_mdio c000f00.mdio: phy[18]: device c000f00.mdio:12, driver unknown
[ 1.553864] davinci_mdio c000f00.mdio: phy[19]: device c000f00.mdio:13, driver unknown
[ 1.561760] davinci_mdio c000f00.mdio: phy[20]: device c000f00.mdio:14, driver unknown
[ 1.569658] davinci_mdio c000f00.mdio: phy[21]: device c000f00.mdio:15, driver unknown
[ 1.577554] davinci_mdio c000f00.mdio: phy[22]: device c000f00.mdio:16, driver unknown
[ 1.585451] davinci_mdio c000f00.mdio: phy[23]: device c000f00.mdio:17, driver unknown
[ 1.593348] davinci_mdio c000f00.mdio: phy[24]: device c000f00.mdio:18, driver unknown
[ 1.601245] davinci_mdio c000f00.mdio: phy[25]: device c000f00.mdio:19, driver unknown
[ 1.609142] davinci_mdio c000f00.mdio: phy[26]: device c000f00.mdio:1a, driver unknown
[ 1.617039] davinci_mdio c000f00.mdio: phy[27]: device c000f00.mdio:1b, driver unknown
[ 1.624937] davinci_mdio c000f00.mdio: phy[28]: device c000f00.mdio:1c, driver unknown
[ 1.632838] davinci_mdio c000f00.mdio: phy[29]: device c000f00.mdio:1d, driver unknown
[ 1.640747] davinci_mdio c000f00.mdio: phy[30]: device c000f00.mdio:1e, driver unknown
[ 1.648644] davinci_mdio c000f00.mdio: phy[31]: device c000f00.mdio:1f, driver unknown
[ 1.656604] am65-cpsw-nuss c000000.ethernet: initializing am65 cpsw nuss version 0x6BA01901, cpsw version 0x6BA80101 Ports: 9 quirks:00000000
[ 1.669285] am65-cpsw-nuss c000000.ethernet: /bus@100000/ethernet@c000000/ethernet-ports/port@1 error retrieving port phy: -19
[ 1.682531] am65-cpts 310d0000.cpts: CPTS ver 0x4e8a010a, freq:200000000, add_val:4 pps:0
[ 1.795253] gpio-378 (CSI_CAM_RSTz): hogged as output/high
[ 1.800739] gpio-388 (CSI_MUX_SEL_2): hogged as output/low
[ 1.808812] vdd_mmc1: supplied by vsys_3v3
[ 1.813669] omap-mailbox 31f80000.mailbox: omap mailbox rev 0x66fc7100
[ 1.820546] omap-mailbox 31f81000.mailbox: omap mailbox rev 0x66fc7100
[ 1.827387] omap-mailbox 31f82000.mailbox: omap mailbox rev 0x66fc7100
[ 1.834202] omap-mailbox 31f83000.mailbox: omap mailbox rev 0x66fc7100
[ 1.841010] omap-mailbox 31f84000.mailbox: omap mailbox rev 0x66fc7100
[ 1.851181] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
[ 1.858671] j721e-pcie 2900000.pcie: IO 0x0010001000..0x0010010fff -> 0x0010001000
[ 1.866751] j721e-pcie 2900000.pcie: MEM 0x0010011000..0x0017ffffff -> 0x0010011000
[ 1.874835] j721e-pcie 2900000.pcie: IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[ 2.885563] j721e-pcie 2900000.pcie: PCI host bridge to bus 0000:00
[ 2.891822] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 2.897297] pci_bus 0000:00: root bus resource [io 0x0000-0xffff] (bus address [0x10001000-0x10010fff])
[ 2.906755] pci_bus 0000:00: root bus resource [mem 0x10011000-0x17ffffff]
[ 2.913638] pci 0000:00:00.0: [104c:b00d] type 01 class 0x060400
[ 2.919631] pci_bus 0000:00: 2-byte config write to 0000:00:00.0 offset 0x4 may corrupt adjacent RW1C bits
[ 2.929328] pci 0000:00:00.0: supports D1
[ 2.933327] pci 0000:00:00.0: PME# supported from D0 D1 D3hot
[ 2.941153] pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[ 2.951031] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
[ 2.957641] pci 0000:00:00.0: PCI bridge to [bus 01]
[ 2.962832] pcieport 0000:00:00.0: PME: Signaling with IRQ 499
[ 2.969184] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
[ 2.976672] j721e-pcie 2910000.pcie: IO 0x0018001000..0x0018010fff -> 0x0018001000
[ 2.984752] j721e-pcie 2910000.pcie: MEM 0x0018011000..0x001fffffff -> 0x0018011000
[ 2.992832] j721e-pcie 2910000.pcie: IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[ 4.003621] j721e-pcie 2910000.pcie: PCI host bridge to bus 0001:00
[ 4.009882] pci_bus 0001:00: root bus resource [bus 00-ff]
[ 4.015356] pci_bus 0001:00: root bus resource [io 0x10000-0x1ffff] (bus address [0x18001000-0x18010fff])
[ 4.024988] pci_bus 0001:00: root bus resource [mem 0x18011000-0x1fffffff]
[ 4.031867] pci 0001:00:00.0: [104c:b00d] type 01 class 0x060400
[ 4.037861] pci_bus 0001:00: 2-byte config write to 0001:00:00.0 offset 0x4 may corrupt adjacent RW1C bits
[ 4.047555] pci 0001:00:00.0: supports D1
[ 4.051553] pci 0001:00:00.0: PME# supported from D0 D1 D3hot
[ 4.059316] pci 0001:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[ 4.069170] pci_bus 0001:01: busn_res: [bus 01-ff] end is updated to 01
[ 4.075778] pci 0001:00:00.0: PCI bridge to [bus 01]
[ 4.080939] pcieport 0001:00:00.0: PME: Signaling with IRQ 501
[ 4.087658] ti-udma 285c0000.dma-controller: Channels: 26 (tchan: 13, rchan: 13, gp-rflow: 8)
[ 4.098258] ti-udma 31150000.dma-controller: Channels: 122 (tchan: 61, rchan: 61, gp-rflow: 16)
[ 4.112993] spi-nor spi11.0: s28hs512t (65536 Kbytes)
[ 4.118062] 8 cmdlinepart partitions found on MTD device 47040000.spi.0
[ 4.124664] Creating 8 MTD partitions on "47040000.spi.0":
[ 4.130136] 0x000000000000-0x000000080000 : "ospi.tiboot3"
[ 4.136116] 0x000000080000-0x000000280000 : "ospi.tispl"
[ 4.141815] 0x000000280000-0x000000680000 : "ospi.u-boot"
[ 4.147589] 0x000000680000-0x0000006c0000 : "ospi.env"
[ 4.153103] 0x0000006c0000-0x0000007c0000 : "ospi.sysfw"
[ 4.158802] 0x0000007c0000-0x000000800000 : "ospi.env.backup"
[ 4.164936] 0x000000800000-0x000003fc0000 : "ospi.rootfs"
[ 4.170726] 0x000003fc0000-0x000004000000 : "ospi.phypattern"
[ 4.181392] davinci_mdio 46000f00.mdio: Configuring MDIO in manual mode
[ 4.226894] davinci_mdio 46000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
[ 4.235340] davinci_mdio 46000f00.mdio: phy[0]: device 46000f00.mdio:00, driver TI DP83867
[ 4.243636] am65-cpsw-nuss 46000000.ethernet: initializing am65 cpsw nuss version 0x6BA00101, cpsw version 0x6BA80100 Ports: 2 quirks:00000000
[ 4.256439] am65-cpsw-nuss 46000000.ethernet: initialized cpsw ale version 1.4
[ 4.263645] am65-cpsw-nuss 46000000.ethernet: ALE Table size 64
[ 4.269913] am65-cpsw-nuss 46000000.ethernet: CPTS ver 0x4e8a010a, freq:500000000, add_val:1 pps:0
[ 4.280495] am65-cpsw-nuss 46000000.ethernet: set new flow-id-base 48
[ 4.289056] debugfs: Directory 'pd:27' with parent 'pm_genpd' already present!
[ 4.289487] mmc0: CQHCI version 5.10
[ 4.296374] debugfs: Directory 'pd:26' with parent 'pm_genpd' already present!
[ 4.308251] debugfs: Directory 'pd:242' with parent 'pm_genpd' already present!
[ 4.315582] debugfs: Directory 'pd:241' with parent 'pm_genpd' already present!
[ 4.322901] debugfs: Directory 'pd:240' with parent 'pm_genpd' already present!
[ 4.330205] debugfs: Directory 'pd:239' with parent 'pm_genpd' already present!
[ 4.349065] ALSA device list:
[ 4.352034] No soundcards found.
[ 5.360412] mmc0: SDHCI controller on 4fb0000.mmc [4fb0000.mmc] using ADMA 64-bit
[ 5.368228] Waiting for root device PARTUUID=75b861c1-02...
[ 5.420623] mmc0: new ultra high speed DDR50 SDHC card at address aaaa
[ 5.427499] mmcblk0: mmc0:aaaa SD32G 29.7 GiB
[ 5.433237] mmcblk0: p1 p2
[ 5.456254] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null)
[ 5.464373] VFS: Mounted root (ext4 filesystem) on device 179:2.
[ 5.472529] devtmpfs: mounted
[ 5.476390] Freeing unused kernel memory: 1856K
[ 5.481014] Run /sbin/init as init process
[ 5.693417] systemd[1]: System time before build time, advancing clock.
[ 5.749892] NET: Registered protocol family 10
[ 5.754829] Segment Routing with IPv6
[ 5.789897] systemd[1]: systemd 244.5+ running in system mode. (+PAM -AUDIT -SELINUX +IMA -APPARMOR -SMACK +SYSVINIT +UTMP -LIBCRYPTSETUP -GCRYPT -GNUTLS +ACL +XZ -LZ4 -SECCOMP +BLKID -ELFUTILS +KMOD -IDN2 -IDN -PCRE2 default-hierarchy=hybrid)
[ 5.811670] systemd[1]: Detected architecture arm64.

Welcome to Arago 2021.09!

[ 5.855614] systemd[1]: Set hostname to <tda4vm-sk>.
[ 6.061307] systemd[1]: /lib/systemd/system/irqbalanced.service:6: Unknown key name 'ConditionCPUs' in section 'Unit', ignoring.
[ 6.088529] systemd[1]: /lib/systemd/system/docker.socket:6: ListenStream= references a path below legacy directory /var/run/, updating /var/run/docker.sock → /run/docker.sock; please update the unit file accordingly.
[ 6.169460] random: systemd: uninitialized urandom read (16 bytes read)
[ 6.177787] systemd[1]: Created slice system-getty.slice.
[ OK ] Created slice system-getty.slice.
[ 6.199017] random: systemd: uninitialized urandom read (16 bytes read)
[ 6.206397] systemd[1]: Created slice system-serial\x2dgetty.slice.
[ OK ] Created slice system-serial\x2dgetty.slice.
[ 6.226969] random: systemd: uninitialized urandom read (16 bytes read)
[ 6.234218] systemd[1]: Created slice User and Session Slice.
[ OK ] Created slice User and Session Slice.
[ 6.255090] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[ OK ] Started Dispatch Password …ts to Console Directory Watch.
[ 6.279014] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ OK ] Started Forward Password R …uests to Wall Directory Watch.
[ 6.303001] systemd[1]: Reached target Paths.
[ OK ] Reached target Paths.
[ 6.318961] systemd[1]: Reached target Remote File Systems.
[ OK ] Reached target Remote File Systems.
[ 6.338943] systemd[1]: Reached target Slices.
[ OK ] Reached target Slices.
[ 6.354944] systemd[1]: Reached target Swap.
[ OK ] Reached target Swap.
[ 6.384368] systemd[1]: Listening on RPCbind Server Activation Socket.
[ OK ] Listening on RPCbind Server Activation Socket.
[ 6.407049] systemd[1]: Reached target RPC Port Mapper.
[ OK ] Reached target RPC Port Mapper.
[ 6.429607] systemd[1]: Listening on Process Core Dump Socket.
[ OK ] Listening on Process Core Dump Socket.
[ 6.451108] systemd[1]: Listening on initctl Compatibility Named Pipe.
[ OK ] Listening on initctl Compatibility Named Pipe.
[ 6.476550] systemd[1]: Condition check resulted in Journal Audit Socket being skipped.
[ 6.484902] systemd[1]: Listening on Journal Socket (/dev/log).
[ OK ] Listening on Journal Socket (/dev/log).
[ 6.507225] systemd[1]: Listening on Journal Socket.
[ OK ] Listening on Journal Socket.
[ 6.523249] systemd[1]: Listening on Network Service Netlink Socket.
[ OK ] Listening on Network Service Netlink Socket.
[ 6.547164] systemd[1]: Listening on udev Control Socket.
[ OK ] Listening on udev Control Socket.
[ 6.567084] systemd[1]: Listening on udev Kernel Socket.
[ OK ] Listening on udev Kernel Socket.
[ 6.589236] systemd[1]: Mounting Huge Pages File System...
Mounting Huge Pages File System...
[ 6.609180] systemd[1]: Mounting POSIX Message Queue File System...
Mounting POSIX Message Queue File System...
[ 6.633164] systemd[1]: Mounting Kernel Debug File System...
Mounting Kernel Debug File System...
[ 6.653870] systemd[1]: Mounting Temporary Directory (/tmp)...
Mounting Temporary Directory (/tmp)...
[ 6.673441] systemd[1]: Starting Create list of static device nodes for the current kernel...
Starting Create list of st …odes for the current kernel...
[ 6.707772] systemd[1]: Starting Start psplash boot splash screen...
Starting Start psplash boot splash screen...
[ 6.733976] systemd[1]: Starting RPC Bind...
Starting RPC Bind...
[ 6.747081] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
[ 6.759558] systemd[1]: Starting Journal Service...
Starting Journal Service...
[ 6.783158] systemd[1]: Starting Load Kernel Modules...
Starting Load Kernel Modules...
[ 6.797432] systemd[1]: Starting Remount Root and Kernel File Systems...
Starting Remount Root and Kernel File Systems...
[ 6.811431] cryptodev: loading out-of-tree module taints kernel.
[ 6.821422] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null)
[ 6.829752] systemd[1]: Starting udev Coldplug all Devices...
[ 6.831966] cryptodev: driver 1.10 loaded.
Starting udev Coldplug all Devices...
[ 6.853810] systemd[1]: Started RPC Bind.
[ OK ] Started RPC Bind.
[ 6.871423] systemd[1]: Started Journal Service.
[ OK ] Started Journal Service.
[ OK ] Mounted Huge Pages File System.
[ OK ] Mounted POSIX Message Queue File System.
[ OK ] Mounted Kernel Debug File System.
[ OK ] Mounted Temporary Directory (/tmp).
[ OK ] Started Create list of sta … nodes for the current kernel.
[FAILED] Failed to start Start psplash boot splash screen.
See 'systemctl status psplash-start.service' for details.
[DEPEND] Dependency failed for Star …progress communication helper.
[ OK ] Started Load Kernel Modules.
[ OK ] Started Remount Root and Kernel File Systems.
Mounting Kernel Configuration File System...
Starting Flush Journal to Persistent Storage...
[ 7.088111] systemd-journald[210]: Received client request to flush runtime journal.
Starting Apply Kernel Variables...
Starting Create Static Device Nodes in /dev...
[ OK ] Mounted Kernel Configuration File System.
[ OK ] Started Flush Journal to Persistent Storage.
[ OK ] Started Apply Kernel Variables.
[ OK ] Started Create Static Device Nodes in /dev.
[ 7.199573] random: systemd: uninitialized urandom read (16 bytes read)
[ OK ] Reached target Local File Systems (Pre).
[ 7.223041] random: systemd: uninitialized urandom read (16 bytes read)
Mounting /media/ram...
[ 7.233613] random: systemd-journal: uninitialized urandom read (16 bytes read)
Mounting /var/volatile...
Starting udev Kernel Device Manager...
[ OK ] Started udev Coldplug all Devices.
[ OK ] Mounted /media/ram.
[ OK ] Mounted /var/volatile.
Starting udev Wait for Complete Device Initialization...
Starting Load/Save Random Seed...
[ OK ] Reached target Local File Systems.
Starting Create Volatile Files and Directories...
[ OK ] Started udev Kernel Device Manager.
[ OK ] Started Create Volatile Files and Directories.
Starting Network Time Synchronization...
Starting Update UTMP about System Boot/Shutdown...
[ OK ] Started Update UTMP about System Boot/Shutdown.
[ OK ] Started Network Time Synchronization.
[ OK ] Reached target System Time Set.
[ OK ] Reached target System Time Synchronized.
[ 7.649470] random: crng init done
[ 7.652907] random: 66 urandom warning(s) missed due to ratelimiting
[ OK ] Started Load/Save Random Seed.[ 7.676570] CAN device driver interface

[ 7.737527] k3-dsp-rproc 4d80800000.dsp: assigned reserved memory node vision-apps-c66-dma-memory@a9000000
[ 7.765304] img_enc 4200000.video-encoder: vxe_enc_probe: using heap 1 for internal alloc
[ 7.840131] k3-dsp-rproc 4d80800000.dsp: configured DSP for IPC-only mode
[ 7.850568] img_enc 4200000.video-encoder: encoder registered as /dev/video0
[ 7.860580] remoteproc remoteproc0: 4d80800000.dsp is available
[ 7.863696] img_dec 4300000.video-decoder: decoder registered as /dev/video1
[ 7.868736] remoteproc remoteproc0: attaching to 4d80800000.dsp
[ 7.880038] k3-dsp-rproc 4d80800000.dsp: DSP initialized in IPC-only mode
[ 7.888875] remoteproc0#vdev0buffer: assigned reserved memory node vision-apps-c66-dma-memory@a9000000
[ 7.904140] virtio_rpmsg_bus virtio0: rpmsg host is online
[ 7.907772] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xd
[ 7.911924] remoteproc0#vdev0buffer: registered virtio0 (type 7)
[ 7.924866] remoteproc remoteproc0: remote processor 4d80800000.dsp is now attached
[ 7.961312] k3-dsp-rproc 4d81800000.dsp: assigned reserved memory node vision-apps-c66-dma-memory@a8000000
[ 7.974486] platform 41000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
[ 7.995225] pvrsrvkm 4e20000000.gpu: More than one power domain for this GPU, gpu driver manages power domains
[ 8.041208] k3-dsp-rproc 4d81800000.dsp: configured DSP for IPC-only mode
[ 8.048902] PVR_K: 235: Read BVNC 22.104.208.318 from HW device registers
[ 8.064380] PVR_K: 235: RGX Device registered with BVNC 22.104.208.318
[ 8.064791] platform 41000000.r5f: configured R5F for IPC-only mode
[ 8.071975] remoteproc remoteproc1: 4d81800000.dsp is available
[ 8.083398] remoteproc remoteproc1: attaching to 4d81800000.dsp
[ 8.089199] [drm] Initialized pvr 1.15.6133109 20170530 for 4e20000000.gpu on minor 0
[ 8.089440] k3-dsp-rproc 4d81800000.dsp: DSP initialized in IPC-only mode
[ 8.105425] remoteproc1#vdev0buffer: assigned reserved memory node vision-apps-c66-dma-memory@a8000000
[ 8.116487] virtio_rpmsg_bus virtio1: rpmsg host is online
[ 8.119968] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0xd
[ 8.123314] remoteproc1#vdev0buffer: registered virtio1 (type 7)
[ 8.152554] platform 41000000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a0000000
[ 8.196639] remoteproc remoteproc2: 41000000.r5f is available
[ 8.220581] remoteproc remoteproc1: remote processor 4d81800000.dsp is now attached
[ 8.259282] remoteproc remoteproc2: attaching to 41000000.r5f
[ 8.290527] k3-dsp-rproc 64800000.dsp: assigned reserved memory node vision-apps-c71-dma-memory@b2000000
[ 8.306466] platform 41000000.r5f: R5F core initialized in IPC-only mode
[ 8.341295] remoteproc2#vdev0buffer: assigned reserved memory node vision-apps-r5f-dma-memory@a0000000
[ 8.363790] virtio_rpmsg_bus virtio2: rpmsg host is online
[ 8.367773] k3-dsp-rproc 64800000.dsp: configured DSP for IPC-only mode
[ 8.369707] remoteproc2#vdev0buffer: registered virtio2 (type 7)
[ 8.375931] virtio_rpmsg_bus virtio2: creating channel ti.ipc4.ping-pong addr 0xd
[ 8.382418] remoteproc remoteproc2: remote processor 41000000.r5f is now attached
[ 8.397421] remoteproc remoteproc3: 64800000.dsp is available
[ 8.397573] virtio_rpmsg_bus virtio2: creating channel rpmsg_chrdev addr 0xe
[ 8.413445] remoteproc remoteproc3: attaching to 64800000.dsp
[ 8.421504] platform 5c00000.r5f: configured R5F for IPC-only mode
[ 8.431931] platform 5c00000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a2000000
[ 8.453615] remoteproc remoteproc3: unsupported resource 65538
[ 8.473228] k3-dsp-rproc 64800000.dsp: DSP initialized in IPC-only mode
[ 8.482343] remoteproc remoteproc4: 5c00000.r5f is available
[ 8.492077] remoteproc remoteproc4: attaching to 5c00000.r5f
[ 8.495792] remoteproc3#vdev0buffer: assigned reserved memory node vision-apps-c71-dma-memory@b2000000
[ 8.497946] platform 5c00000.r5f: R5F core initialized in IPC-only mode
[ 8.516910] remoteproc4#vdev0buffer: assigned reserved memory node vision-apps-r5f-dma-memory@a2000000
[ 8.527245] virtio_rpmsg_bus virtio3: rpmsg host is online
[ 8.535428] remoteproc4#vdev0buffer: registered virtio3 (type 7)
[ 8.542131] remoteproc remoteproc4: remote processor 5c00000.r5f is now attached
[ 8.542179] virtio_rpmsg_bus virtio3: creating channel rpmsg_chrdev addr 0xd
[ 8.550228] virtio_rpmsg_bus virtio4: rpmsg host is online
[ 8.563339] remoteproc3#vdev0buffer: registered virtio4 (type 7)
[ 8.564801] virtio_rpmsg_bus virtio4: creating channel rpmsg_chrdev addr 0xd
[ 8.569953] remoteproc remoteproc3: remote processor 64800000.dsp is now attached
[ 8.587571] platform 5d00000.r5f: configured R5F for IPC-only mode
[ 8.619465] m_can_platform 40528000.can: m_can device registered (irq=20, version=32)
[ 8.629680] platform 5d00000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a4000000
[ 8.641350] m_can_platform 2791000.can: m_can device registered (irq=44, version=32)
[ 8.653307] m_can_platform 2701000.can: m_can device registered (irq=40, version=32)
[ 8.661612] remoteproc remoteproc5: 5d00000.r5f is available
[ 8.667496] remoteproc remoteproc5: attaching to 5d00000.r5f
[ 8.673817] platform 5d00000.r5f: R5F core initialized in IPC-only mode
[ 8.682288] m_can_platform 2751000.can: m_can device registered (irq=42, version=32)
[ 8.690517] remoteproc5#vdev0buffer: assigned reserved memory node vision-apps-r5f-dma-memory@a4000000
[ 8.700988] virtio_rpmsg_bus virtio5: rpmsg host is online
[ 8.706581] remoteproc5#vdev0buffer: registered virtio5 (type 7)
[ 8.715317] remoteproc remoteproc5: remote processor 5d00000.r5f is now attached
[ 8.715749] virtio_rpmsg_bus virtio5: creating channel rpmsg_chrdev addr 0xd
[ 8.739054] virtio_rpmsg_bus virtio5: creating channel rpmsg_chrdev addr 0x15
[ 8.751316] virtio_rpmsg_bus virtio5: creating channel ti.ipc4.ping-pong addr 0xe
[ 8.760752] platform 5e00000.r5f: configured R5F for remoteproc mode
[ 8.767343] virtio_rpmsg_bus virtio4: creating channel rpmsg_chrdev addr 0x15
[ 8.781358] virtio_rpmsg_bus virtio4: creating channel ti.ipc4.ping-pong addr 0xe
[ 8.788955] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0x15
[ 8.798651] platform 5e00000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a6000000
[ 8.807899] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xe
[ 8.815545] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0x15
[ 8.828292] virtio_rpmsg_bus virtio1: creating channel ti.ipc4.ping-pong addr 0xe
[ 8.835910] virtio_rpmsg_bus virtio3: creating channel rpmsg_chrdev addr 0x15
[ 8.843795] remoteproc remoteproc6: 5e00000.r5f is available
[ 8.849605] virtio_rpmsg_bus virtio3: creating channel ti.ethfw.notifyservice addr 0x1e
[ 8.857722] virtio_rpmsg_bus virtio3: creating channel rpmsg-kdrv addr 0x1a
[ 8.865254] remoteproc remoteproc6: Direct firmware load for j7-main-r5f1_0-fw failed with error -2
[ 8.874351] remoteproc remoteproc6: powering up 5e00000.r5f
[ 8.879990] remoteproc remoteproc6: Direct firmware load for j7-main-r5f1_0-fw failed with error -2
[ 8.890297] platform 5f00000.r5f: configured R5F for remoteproc mode
[ 8.896696] remoteproc remoteproc6: request_firmware failed: -2
[ 8.902783] rpmsg-kdrv-eth-switch rpmsg-kdrv-1-mpu_1_0_ethswitch-device-0: Device info: permissions: 3FFFFFFF uart_id: 2
[ 8.913714] rpmsg-kdrv-eth-switch rpmsg-kdrv-1-mpu_1_0_ethswitch-device-0: FW ver 0.2 (rev 0) 29/Apr/2024 SHA:
[ 8.923849] rpmsg-kdrv-eth-switch rpmsg-kdrv-3-mpu_1_0_ethmac-device-1: Device info: permissions: 3FFFFFFF uart_id: 2
[ 8.934477] rpmsg-kdrv-eth-switch rpmsg-kdrv-3-mpu_1_0_ethmac-device-1: FW ver 0.2 (rev 0) 29/Apr/2024 SHA:
[ 8.944305] virtio_rpmsg_bus virtio3: creating channel ti.ipc4.ping-pong addr 0xe
[ 8.953424] platform 5f00000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a7000000
[ 8.969528] remoteproc remoteproc7: 5f00000.r5f is available
[ 8.979694] remoteproc remoteproc7: Direct firmware load for j7-main-r5f1_1-fw failed with error -2
[ 8.990353] remoteproc remoteproc7: powering up 5f00000.r5f
[ 8.996095] remoteproc remoteproc7: Direct firmware load for j7-main-r5f1_1-fw failed with error -2
[ 9.008166] remoteproc remoteproc7: request_firmware failed: -2
[ 9.371431] remoteproc remoteproc8: b034000.pru is available
[ 9.380012] remoteproc remoteproc9: b004000.rtu is available
[ 9.393432] usbcore: registered new interface driver usbfs
[ 9.400165] usbcore: registered new interface driver hub
[ 9.406045] remoteproc remoteproc10: b00a000.txpru is available
[ 9.406187] remoteproc remoteproc11: b038000.pru is available
[ 9.406345] remoteproc remoteproc12: b006000.rtu is available
[ 9.406496] remoteproc remoteproc13: b00c000.txpru is available
[ 9.406631] remoteproc remoteproc14: b134000.pru is available
[ 9.406787] remoteproc remoteproc15: b104000.rtu is available
[ 9.408898] remoteproc remoteproc16: b10a000.txpru is available
[ 9.409069] remoteproc remoteproc17: b138000.pru is available
[ 9.409272] remoteproc remoteproc18: b106000.rtu is available
[ 9.409449] remoteproc remoteproc19: b10c000.txpru is available
[ 9.426368] usbcore: registered new device driver usb
[ 9.438839] omap_rng 4e10000.rng: Random Number Generator ver. 241b34c
[ 9.471146] cdns-csi2rx: probe of 4514000.csi-bridge failed with error -22
[ OK ] Created slice system-systemd\x2dfsck.slice.
[ OK ] Found device /dev/mmcblk0p1.
Starting File System Check on /dev/mmcblk0p1...
[ OK ] Started File System Check on /dev/mmcblk0p1.
Mounting /run/media/mmcblk0p1...
[ OK ] Mounted /run/media/mmcblk0p1.
[ 10.267052] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
[ 10.272652] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1
[ 10.280416] xhci-hcd xhci-hcd.0.auto: hcc params 0x200073c9 hci version 0x100 quirks 0x0000002000010010
[ 10.289836] xhci-hcd xhci-hcd.0.auto: irq 656, io mem 0x06410000
[ 10.296019] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[ 10.304279] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 10.311489] usb usb1: Product: xHCI Host Controller
[ 10.316358] usb usb1: Manufacturer: Linux 5.10.162-g76b3e88d56 xhci-hcd
[ 10.322964] usb usb1: SerialNumber: xhci-hcd.0.auto
[ 10.328097] hub 1-0:1.0: USB hub found
[ 10.331872] hub 1-0:1.0: 1 port detected
[ 10.335989] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
[ 10.341479] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2
[ 10.349133] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed
[ 10.355684] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[ 10.363827] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
[ 10.372080] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 10.379289] usb usb2: Product: xHCI Host Controller
[ 10.384161] usb usb2: Manufacturer: Linux 5.10.162-g76b3e88d56 xhci-hcd
[ 10.390763] usb usb2: SerialNumber: xhci-hcd.0.auto
[ 10.395868] hub 2-0:1.0: USB hub found
[ 10.399633] hub 2-0:1.0: 1 port detected
[ 10.594903] usb 1-1: new high-speed USB device number 2 using xhci-hcd
[ 10.747256] usb 1-1: New USB device found, idVendor=0451, idProduct=8142, bcdDevice= 1.00
[ 10.755422] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=1
[ 10.762548] usb 1-1: SerialNumber: 0C050061A4CD
[ 10.767863] hub 1-1:1.0: USB hub found
[ 10.771650] hub 1-1:1.0: 4 ports detected
[ OK ] Started udev Wait for Complete Device Initialization.
[ OK ] Started Hardware RNG Entropy Gatherer Daemon.
[ OK ] Reached target System Initialization.
[ 10.875220] usb 2-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd
[ OK ] Started Daily rotation of log files.
[ OK ] Started Daily Cleanup of Temporary [ 10.903170] usb 2-1: New USB device found, idVendor=0451, idProduct=8140, bcdDevice= 1.00
Directories.
[ 10.918885] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ OK ] Reached target Timers.[ 10.926774] hub 2-1:1.0: USB hub found

[ OK ] Listening on Avahi mDNS/DNS-SD Stac[ 10.943652] hub 2-1:1.0: 4 ports detected
k Activation Socket.
[ OK ] Listening on D-Bus System Message Bus Socket.
Starting Docker Socket for the API.
[ OK ] Listening on dropbear.socket.
Starting Reboot and dump vmcore via kexec...
[ OK ] Listening on Docker Socket for the API.
[ OK ] Started Reboot and dump vmcore via kexec.
[ OK ] Reached target Sockets.
[ OK ] Reached target Basic System.
[ OK ] Started Job spooling tools.
[ OK ] Started Periodic Command Scheduler.
[ OK ] Started D-Bus System Message Bus.
Starting Print notice about GPLv3 packages...
Starting set host name as per compatible name...
Starting IPv6 Packet Filtering Framework...
Starting IPv4 Packet Filtering Framework...
[ OK ] Started irqbalance daemon.
Starting Telephony service...
Starting Update pmic regis …fety feature on power rails...
Starting rc.pvr.service...
Starting startwlanap...
Starting startwlansta...
Starting Login Service...
[ OK ] Started TEE Supplicant.
Starting Update weston ini … based on the platform name...
[ OK ] Started IPv6 Packet Filtering Framework.
[ OK ] Started IPv4 Packet Filtering Framework.
[ OK ] Started startwlansta.
[ OK ] Reached target Network (Pre).
Starting Network Service...
[ OK ] Started Telephony service.
[ OK ] Started set host name as per compatible name.
[ 11.368033] Bluetooth: Core ver 2.22
[ 11.374981] NET: Registered protocol family 31
[ OK ] Started Update weston ini …ge bas[ 11.383194] Bluetooth: HCI device and connection manager initialized
ed on the platform name.
[ 11.401072] Bluetooth: HCI socket layer initialized
[ 11.410306] Bluetooth: L2CAP socket layer initialized
[ 11.417296] Bluetooth: SCO socket layer initialized
[ OK ] Started startwlanap.
[ OK ] Listening on Load/Save RF …itch Status /dev/rfkill Watch.
[ OK ] Started Network Service.
Starting Wait for Network to be Configured...
Starting Network Name Resolution...
[ OK ] Started Update pmic regist …safety feature on power rails.
[ 11.628280] am65-cpsw-nuss 46000000.ethernet eth0: PHY [46000f00.mdio:00] driver [TI DP83867] (irq=POLL)
[ 11.684867] am65-cpsw-nuss 46000000.ethernet eth0: configuring for phy/rgmii-rxid link mode
[ OK ] Started Login Service.
[ OK ] Started Network Name Resolution.
[ OK ] Reached target Network.
[ OK ] Reached target Host and Network Name Lookups.
Starting Avahi mDNS/DNS-SD Stack...
Starting Enable and configure wl18xx bluetooth stack...
[ OK ] Started NFS status monitor for NFSv2/3 locking..
Starting Simple Network Ma …ent Protocol (SNMP) Daemon....
Starting Permit User Sessions...
[ OK ] Started Permit User Sessions.
[ OK ] Started Getty on tty1.
[ OK ] Started Serial Getty on ttyS2.
[ OK ] Started Serial Getty on ttyS3.
[ OK ] Reached target Login Prompts.
Starting Synchronize System and HW clocks...
[ OK ] Started Enable and configure wl18xx bluetooth stack.
[ OK ] Started Avahi mDNS/DNS-SD Stack.
[FAILED] Failed to start Synchronize System and HW clocks.
See 'systemctl status sync-clocks.service' for details.
[ OK ] Started rc.pvr.service.
Starting weston.service...
[ OK ] Started Simple Network Man …ement Protocol (SNMP) Daemon..
***************************************************************
***************************************************************
NOTICE: This file system contains the following GPLv3 packages:
autoconf
bash-dev
bash
bc
binutils
cifs-utils
coreutils-stdbuf
coreutils
cpio
cpp-symlinks
cpp
dosfstools
elfutils
g++-symlinks
g++
gawk
gcc-symlinks
gcc
gdb
gdbserver
gettext
glmark2
gstreamer1.0-libav-dev
gstreamer1.0-libav
gzip
less
libasm1
libbfd
libdw1
libelf1
libgdbm-compat4
libgdbm-dev
libgdbm6
libgettextlib
libgettextsrc
libgmp-dev
libgmp10
libgmpxx4
libidn2-0
libidn2-dev
libmpc3
libmpfr6
libreadline-dev
libreadline8
libunistring-dev
libunistring2
m4-dev
m4
make
nettle-dev
nettle
parted
python3-rfc3987
python3-strict-rfc3339
tar
which
zeromq

If you do not wish to distribute GPLv3 components please remove
the above packages prior to distribution. This can be done using
the opkg remove command. i.e.:
opkg remove <package>
Where <package> is the name printed in the list above

NOTE: If the package is a dependency of another package you
will be notified of the dependent packages. You should
use the --force-removal-of-dependent-packages option to
also remove the dependent packages as well
***************************************************************
***************************************************************
[ OK ] Started Print notice about GPLv3 packages.
[ 13.771697] am65-cpsw-nuss 46000000.ethernet eth0: Link is Up - 100Mbps/Full - flow control rx/tx
[ 13.780581] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Starting Hostname Service...
[ OK ] Started Hostname Service.
[ OK ] Started weston.service.
Starting DEMO...
Starting EdgeAI OOB demos...
Starting telnetd.service...
[ OK ] Started DEMO.
[ OK ] Started telnetd.service.
[ 15.200711] PVR_K: 943: RGX Firmware image 'rgx.fw.22.104.208.318' loaded
[ 15.227307] PVR_K: 943: Shader binary image 'rgx.sh.22.104.208.318' loaded

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

Arago Project tda4vm-sk ttyS2

Arago 2021.09 tda4vm-sk ttyS2

tda4vm-sk login: [ 28.889379] Initializing XFRM netlink socket
[ 30.482605] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[ 30.498881] Bridge firewalling registered
[ 31.047689] process 'docker/tmp/qemu-check607762243/check' started with executable stack

tda4vm-sk login:
tda4vm-sk login:
tda4vm-sk login: root
root@tda4vm-sk:~# cd /opt/vision_apps/
root@tda4vm-sk:/opt/vision_apps# source ./vision_apps_init.sh
root@tda4vm-sk:/opt/vision_apps# [MCU2_0] 3.977637 s: CIO: Init ... Done !!!
[MCU2_0] 3.977706 s: ### CPU Frequency = 1000000000 Hz
[MCU2_0] 3.977745 s: CPU is running FreeRTOS
[MCU2_0] 3.977770 s: APP: Init ... !!!
[MCU2_0] 3.977791 s: SCICLIENT: Init ... !!!
[MCU2_0] 3.978047 s: SCICLIENT: DMSC FW version [8.6.3--v08.06.03 (Chill Capybar]
[MCU2_0] 3.978098 s: SCICLIENT: DMSC FW revision 0x8
[MCU2_0] 3.978129 s: SCICLIENT: DMSC FW ABI revision 3.1
[MCU2_0] 3.978163 s: SCICLIENT: Init ... Done !!!
[MCU2_0] 3.978189 s: UDMA: Init ... !!!
[MCU2_0] 3.979452 s: UDMA: Init ... Done !!!
[MCU2_0] 3.979515 s: MEM: Init ... !!!
[MCU2_0] 3.979559 s: MEM: Created heap (DDR_LOCAL_MEM, id=0, flags=0x00000004) @ d9000000 of size 16777216 bytes !!!
[MCU2_0] 3.979635 s: MEM: Created heap (L3_MEM, id=1, flags=0x00000000) @ 3600000 of size 262144 bytes !!!
[MCU2_0] 3.979698 s: MEM: Init ... Done !!!
[MCU2_0] 3.979723 s: IPC: Init ... !!!
[MCU2_0] 3.979783 s: IPC: 6 CPUs participating in IPC !!!
[MCU2_0] 3.979833 s: IPC: Waiting for HLOS to be ready ... !!!
[MCU2_0] 14.826347 s: IPC: HLOS is ready !!!
[MCU2_0] 14.841825 s: IPC: Init ... Done !!!
[MCU2_0] 14.841891 s: APP: Syncing with 5 CPUs ... !!!
[MCU2_0] 15.015449 s: APP: Syncing with 5 CPUs ... Done !!!
[MCU2_0] 15.015648 s: REMOTE_SERVICE: Init ... !!!
[MCU2_0] 15.017273 s: REMOTE_SERVICE: Init ... Done !!!
[MCU2_0] 15.017348 s: ETHFW: Init ... !!!
[MCU2_0] 15.022156 s: Warning: Using 6 MAC address(es) from static pool
[MCU2_0] 15.022269 s: ETHFW: Shared multicasts (software fanout):
[MCU2_0] 15.022328 s: ETHFW: Reserved multicasts:
[MCU2_0] 15.022358 s: 01:80:c2:00:00:0e
[MCU2_0] 15.022407 s: 01:1b:19:00:00:00
[MCU2_0] 15.022743 s: EnetMcm: CPSW_9G on MAIN NAVSS
[MCU2_0] 15.032192 s: Mdio_open: MDIO manual mode enabled
[MCU2_0] 15.039671 s:
[MCU2_0] ETHFW Version : 0.02.00
[MCU2_0] 15.039755 s: ETHFW Build Date: Apr 29, 2024
[MCU2_0] 15.039791 s: ETHFW Build Time: 09:18:19
[MCU2_0] 15.039817 s: ETHFW Commit SHA:
[MCU2_0] 15.039885 s: ETHFW: Init ... DONE !!!
[MCU2_0] 15.039920 s: ETHFW: Remove server Init ... !!!
[MCU2_0] 15.040111 s: CpswProxyServer: Virtual port configuration:
[MCU2_0] 15.040170 s: mpu_1_0 <-> Switch port 0: mpu_1_0_ethswitch-device-0
[MCU2_0] 15.040219 s: mcu_2_1 <-> Switch port 1: mcu_2_1_ethswitch-device-1
[MCU2_0] 15.040263 s: mpu_1_0 <-> MAC port 1: mpu_1_0_ethmac-device-1
[MCU2_0] 15.040304 s: mcu_2_1 <-> MAC port 4: mcu_2_1_ethmac-device-4
[MCU2_0] 15.041392 s: CpswProxyServer: initialization completed (core: mcu2_0)
[MCU2_0] 15.041462 s: ETHFW: Remove server Init ... DONE !!!
[MCU2_0] 15.042635 s: Starting lwIP, local interface IP is dhcp-enabled
[MCU2_0] 15.050653 s: Host MAC address: 70:ff:76:1d:92:c3
[MCU2_0] 15.054965 s: [LWIPIF_LWIP] Enet LLD netif initialized successfully
[MCU2_0] 15.055062 s: Added interface 'ti1', IP is 0.0.0.0
[MCU2_0] 15.091342 s: FVID2: Init ... !!!
[MCU2_0] 15.091457 s: FVID2: Init ... Done !!!
[MCU2_0] 15.091513 s: DSS: Init ... !!!
[MCU2_0] 15.091544 s: DSS: Display type is HDMI !!!
[MCU2_0] 15.091574 s: DSS: M2M Path is enabled !!!
[MCU2_0] 15.091601 s: DSS: SoC init ... !!!
[MCU2_0] 15.091625 s: SCICLIENT: Sciclient_pmSetModuleState module=152 state=2
[MCU2_0] 15.091854 s: SCICLIENT: Sciclient_pmSetModuleState success
[MCU2_0] 15.091901 s: SCICLIENT: Sciclient_pmSetModuleClkParent module=152 clk=4 parent=6
[MCU2_0] 15.092049 s: SCICLIENT: Sciclient_pmSetModuleClkParent success
[MCU2_0] 15.092087 s: SCICLIENT: Sciclient_pmSetModuleClkFreq module=152 clk=4 freq=148500000
[MCU2_0] 15.093976 s: SCICLIENT: Sciclient_pmSetModuleClkFreq success
[MCU2_0] 15.094034 s: SCICLIENT: Sciclient_pmModuleClkRequest module=152 clk=4 state=2 flag=0
[MCU2_0] 15.094208 s: SCICLIENT: Sciclient_pmModuleClkRequest success
[MCU2_0] 15.094247 s: DSS: SoC init ... Done !!!
[MCU2_0] 15.094274 s: DSS: Board init ... !!!
[MCU2_0] 15.099361 s: DSS: Board init ... Done !!!
[MCU2_0] 15.102722 s: DSS: Init ... Done !!!
[MCU2_0] 15.102786 s: VHWA: VPAC Init ... !!!
[MCU2_0] 15.102816 s: SCICLIENT: Sciclient_pmSetModuleState module=290 state=2
[MCU2_0] 15.103024 s: SCICLIENT: Sciclient_pmSetModuleState success
[MCU2_0] 15.103065 s: VHWA: LDC Init ... !!!
[MCU2_0] 15.106928 s: VHWA: LDC Init ... Done !!!
[MCU2_0] 15.106998 s: VHWA: MSC Init ... !!!
[MCU2_0] 15.119714 s: VHWA: MSC Init ... Done !!!
[MCU2_0] 15.119783 s: VHWA: NF Init ... !!!
[MCU2_0] 15.121674 s: VHWA: NF Init ... Done !!!
[MCU2_0] 15.121739 s: VHWA: VISS Init ... !!!
[MCU2_0] 15.133468 s: VHWA: VISS Init ... Done !!!
[MCU2_0] 15.133536 s: VHWA: VPAC Init ... Done !!!
[MCU2_0] 15.133579 s: VX_ZONE_INIT:Enabled
[MCU2_0] 15.133608 s: VX_ZONE_ERROR:Enabled
[MCU2_0] 15.133635 s: VX_ZONE_WARNING:Enabled
[MCU2_0] 15.135167 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:66] Added target MCU2-0
[MCU2_0] 15.135577 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:66] Added target VPAC_NF
[MCU2_0] 15.135860 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:66] Added target VPAC_LDC1
[MCU2_0] 15.136182 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:66] Added target VPAC_MSC1
[MCU2_0] 15.136623 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:66] Added target VPAC_MSC2
[MCU2_0] 15.136957 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:66] Added target VPAC_VISS1
[MCU2_0] 15.137237 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:66] Added target CAPTURE1
[MCU2_0] 15.137649 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:66] Added target CAPTURE2
[MCU2_0] 15.137951 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:66] Added target DISPLAY1
[MCU2_0] 15.138229 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:66] Added target DISPLAY2
[MCU2_0] 15.138608 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:66] Added target CSITX
[MCU2_0] 15.138928 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:66] Added target CAPTURE3
[MCU2_0] 15.139214 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:66] Added target CAPTURE4
[MCU2_0] 15.139618 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:66] Added target CAPTURE5
[MCU2_0] 15.139925 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:66] Added target CAPTURE6
[MCU2_0] 15.140206 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:66] Added target CAPTURE7
[MCU2_0] 15.140597 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:66] Added target CAPTURE8
[MCU2_0] 15.140884 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:66] Added target DSS_M2M1
[MCU2_0] 15.141141 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:66] Added target DSS_M2M2
[MCU2_0] 15.141565 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:66] Added target DSS_M2M3
[MCU2_0] 15.141840 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:66] Added target DSS_M2M4
[MCU2_0] 15.141896 s: VX_ZONE_INIT:[tivxInitLocal:130] Initialization Done !!!
[MCU2_0] 15.141930 s: APP: OpenVX Target kernel init ... !!!
[MCU2_0] 15.164163 s: APP: OpenVX Target kernel init ... Done !!!
[MCU2_0] 15.164233 s: CSI2RX: Init ... !!!
[MCU2_0] 15.164266 s: SCICLIENT: Sciclient_pmSetModuleState module=25 state=2
[MCU2_0] 15.164750 s: SCICLIENT: Sciclient_pmSetModuleState success
[MCU2_0] 15.164797 s: SCICLIENT: Sciclient_pmSetModuleState module=26 state=2
[MCU2_0] 15.164951 s: SCICLIENT: Sciclient_pmSetModuleState success
[MCU2_0] 15.164989 s: SCICLIENT: Sciclient_pmSetModuleState module=27 state=2
[MCU2_0] 15.165095 s: SCICLIENT: Sciclient_pmSetModuleState success
[MCU2_0] 15.165133 s: SCICLIENT: Sciclient_pmSetModuleState module=147 state=2
[MCU2_0] 15.165226 s: SCICLIENT: Sciclient_pmSetModuleState success
[MCU2_0] 15.165259 s: SCICLIENT: Sciclient_pmSetModuleState module=148 state=2
[MCU2_0] 15.165420 s: SCICLIENT: Sciclient_pmSetModuleState success
[MCU2_0] 15.165675 s: CSI2RX: Init ... Done !!!
[MCU2_0] 15.165721 s: CSI2TX: Init ... !!!
[MCU2_0] 15.165749 s: SCICLIENT: Sciclient_pmSetModuleState module=25 state=2
[MCU2_0] 15.165853 s: SCICLIENT: Sciclient_pmSetModuleState success
[MCU2_0] 15.165893 s: SCICLIENT: Sciclient_pmSetModuleState module=28 state=2
[MCU2_0] 15.166052 s: SCICLIENT: Sciclient_pmSetModuleState success
[MCU2_0] 15.166086 s: SCICLIENT: Sciclient_pmSetModuleState module=296 state=2
[MCU2_0] 15.166215 s: SCICLIENT: Sciclient_pmSetModuleState success
[MCU2_0] 15.166304 s: CSI2TX: Init ... Done !!!
[MCU2_0] 15.166482 s: ISS: Init ... !!!
[MCU2_0] 15.166518 s: Found sensor OX03C10_MAX9296 at location 0
[MCU2_0] 15.166559 s: IssSensor_Init ... Done !!!
[MCU2_0] 15.166655 s: IttRemoteServer_Init ... Done !!!
[MCU2_0] 15.166693 s: VISS REMOTE SERVICE: Init ... !!!
[MCU2_0] 15.166767 s: VISS REMOTE SERVICE: Init ... Done !!!
[MCU2_0] 15.166804 s: UDMA Copy: Init ... !!!
[MCU2_0] 15.168746 s: UDMA Copy: Init ... Done !!!
[MCU2_0] 15.168858 s: APP: Init ... Done !!!
[MCU2_0] 15.168896 s: APP: Run ... !!!
[MCU2_0] 15.168924 s: IPC: Starting echo test ...
[MCU2_0] 15.171885 s: APP: Run ... Done !!!
[MCU2_0] 15.173882 s: IPC: Echo status: mpu1_0[x] mcu2_0[s] mcu2_1[P] C66X_1[.] C66X_2[.] C7X_1[.]
[MCU2_0] 15.174004 s: IPC: Echo status: mpu1_0[x] mcu2_0[s] mcu2_1[P] C66X_1[P] C66X_2[.] C7X_1[.]
[MCU2_0] 15.174105 s: IPC: Echo status: mpu1_0[x] mcu2_0[s] mcu2_1[P] C66X_1[P] C66X_2[P] C7X_1[.]
[MCU2_0] 15.174197 s: IPC: Echo status: mpu1_0[x] mcu2_0[s] mcu2_1[P] C66X_1[P] C66X_2[P] C7X_1[P]
[MCU2_1] 3.919650 s: CIO: Init ... Done !!!
[MCU2_1] 3.919721 s: ### CPU Frequency = 1000000000 Hz
[MCU2_1] 3.919764 s: CPU is running FreeRTOS
[MCU2_1] 3.919789 s: APP: Init ... !!!
[MCU2_1] 3.919812 s: SCICLIENT: Init ... !!!
[MCU2_1] 3.920071 s: SCICLIENT: DMSC FW version [8.6.3--v08.06.03 (Chill Capybar]
[MCU2_1] 3.920121 s: SCICLIENT: DMSC FW revision 0x8
[MCU2_1] 3.920157 s: SCICLIENT: DMSC FW ABI revision 3.1
[MCU2_1] 3.920210 s: SCICLIENT: Init ... Done !!!
[MCU2_1] 3.920239 s: UDMA: Init ... !!!
[MCU2_1] 3.921651 s: UDMA: Init ... Done !!!
[MCU2_1] 3.921713 s: MEM: Init ... !!!
[MCU2_1] 3.921757 s: MEM: Created heap (DDR_LOCAL_MEM, id=0, flags=0x00000004) @ da000000 of size 16777216 bytes !!!
[MCU2_1] 3.921830 s: MEM: Created heap (L3_MEM, id=1, flags=0x00000001) @ 3640000 of size 262144 bytes !!!
[MCU2_1] 3.921894 s: MEM: Init ... Done !!!
[MCU2_1] 3.921921 s: IPC: Init ... !!!
[MCU2_1] 3.921984 s: IPC: 6 CPUs participating in IPC !!!
[MCU2_1] 3.922032 s: IPC: Waiting for HLOS to be ready ... !!!
[MCU2_1] 15.000088 s: IPC: HLOS is ready !!!
[MCU2_1] 15.015328 s: IPC: Init ... Done !!!
[MCU2_1] 15.015397 s: APP: Syncing with 5 CPUs ... !!!
[MCU2_1] 15.015446 s: APP: Syncing with 5 CPUs ... Done !!!
[MCU2_1] 15.015483 s: REMOTE_SERVICE: Init ... !!!
[MCU2_1] 15.017173 s: REMOTE_SERVICE: Init ... Done !!!
[MCU2_1] 15.017253 s: FVID2: Init ... !!!
[MCU2_1] 15.017318 s: FVID2: Init ... Done !!!
[MCU2_1] 15.017349 s: VHWA: DMPAC: Init ... !!!
[MCU2_1] 15.017374 s: SCICLIENT: Sciclient_pmSetModuleState module=48 state=2
[MCU2_1] 15.017842 s: SCICLIENT: Sciclient_pmSetModuleState success
[MCU2_1] 15.017884 s: SCICLIENT: Sciclient_pmSetModuleState module=305 state=2
[MCU2_1] 15.018340 s: SCICLIENT: Sciclient_pmSetModuleState success
[MCU2_1] 15.018377 s: VHWA: DOF Init ... !!!
[MCU2_1] 15.026964 s: VHWA: DOF Init ... Done !!!
[MCU2_1] 15.027033 s: VHWA: SDE Init ... !!!
[MCU2_1] 15.029666 s: VHWA: SDE Init ... Done !!!
[MCU2_1] 15.029731 s: VHWA: DMPAC: Init ... Done !!!
[MCU2_1] 15.029778 s: VX_ZONE_INIT:Enabled
[MCU2_1] 15.029810 s: VX_ZONE_ERROR:Enabled
[MCU2_1] 15.029836 s: VX_ZONE_WARNING:Enabled
[MCU2_1] 15.031281 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:66] Added target MCU2-1
[MCU2_1] 15.031526 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:66] Added target DMPAC_SDE
[MCU2_1] 15.031750 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:66] Added target DMPAC_DOF
[MCU2_1] 15.031809 s: VX_ZONE_INIT:[tivxInitLocal:130] Initialization Done !!!
[MCU2_1] 15.031848 s: APP: OpenVX Target kernel init ... !!!
[MCU2_1] 15.032128 s: APP: OpenVX Target kernel init ... Done !!!
[MCU2_1] 15.032172 s: UDMA Copy: Init ... !!!
[MCU2_1] 15.034263 s: UDMA Copy: Init ... Done !!!
[MCU2_1] 15.034334 s: APP: Init ... Done !!!
[MCU2_1] 15.034367 s: APP: Run ... !!!
[MCU2_1] 15.034390 s: IPC: Starting echo test ...
[MCU2_1] 15.036960 s: APP: Run ... Done !!!
[MCU2_1] 15.038138 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[s] C66X_1[P] C66X_2[.] C7X_1[.]
[MCU2_1] 15.038270 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[s] C66X_1[P] C66X_2[P] C7X_1[.]
[MCU2_1] 15.038364 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[s] C66X_1[P] C66X_2[P] C7X_1[P]
[MCU2_1] 15.173844 s: IPC: Echo status: mpu1_0[x] mcu2_0[P] mcu2_1[s] C66X_1[P] C66X_2[P] C7X_1[P]
[C6x_1 ] 3.974887 s: CIO: Init ... Done !!!
[C6x_1 ] 3.974912 s: ### CPU Frequency = 1350000000 Hz
[C6x_1 ] 3.974922 s: CPU is running FreeRTOS
[C6x_1 ] 3.974930 s: APP: Init ... !!!
[C6x_1 ] 3.974937 s: SCICLIENT: Init ... !!!
[C6x_1 ] 3.975146 s: SCICLIENT: DMSC FW version [8.6.3--v08.06.03 (Chill Capybar]
[C6x_1 ] 3.975159 s: SCICLIENT: DMSC FW revision 0x8
[C6x_1 ] 3.975168 s: SCICLIENT: DMSC FW ABI revision 3.1
[C6x_1 ] 3.975177 s: SCICLIENT: Init ... Done !!!
[C6x_1 ] 3.975186 s: UDMA: Init ... !!!
[C6x_1 ] 3.976700 s: UDMA: Init ... Done !!!
[C6x_1 ] 3.976717 s: MEM: Init ... !!!
[C6x_1 ] 3.976730 s: MEM: Created heap (DDR_LOCAL_MEM, id=0, flags=0x00000004) @ dc000000 of size 16777216 bytes !!!
[C6x_1 ] 3.976747 s: MEM: Created heap (L2_MEM, id=2, flags=0x00000001) @ 800000 of size 229376 bytes !!!
[C6x_1 ] 3.976762 s: MEM: Created heap (DDR_SCRATCH_MEM, id=4, flags=0x00000001) @ dd000000 of size 50331648 bytes !!!
[C6x_1 ] 3.976778 s: MEM: Init ... Done !!!
[C6x_1 ] 3.976786 s: IPC: Init ... !!!
[C6x_1 ] 3.976807 s: IPC: 6 CPUs participating in IPC !!!
[C6x_1 ] 3.976820 s: IPC: Waiting for HLOS to be ready ... !!!
[C6x_1 ] 14.203240 s: IPC: HLOS is ready !!!
[C6x_1 ] 14.207030 s: IPC: Init ... Done !!!
[C6x_1 ] 14.207058 s: APP: Syncing with 5 CPUs ... !!!
[C6x_1 ] 15.015445 s: APP: Syncing with 5 CPUs ... Done !!!
[C6x_1 ] 15.015458 s: REMOTE_SERVICE: Init ... !!!
[C6x_1 ] 15.016088 s: REMOTE_SERVICE: Init ... Done !!!
[C6x_1 ] 15.016123 s: VX_ZONE_INIT:Enabled
[C6x_1 ] 15.016133 s: VX_ZONE_ERROR:Enabled
[C6x_1 ] 15.016142 s: VX_ZONE_WARNING:Enabled
[C6x_1 ] 15.016937 s: VX_ZONE_INIT:[tivxInitLocal:130] Initialization Done !!!
[C6x_1 ] 15.016950 s: APP: OpenVX Target kernel init ... !!!
[C6x_1 ] 15.017208 s: APP: OpenVX Target kernel init ... Done !!!
[C6x_1 ] 15.017223 s: UDMA Copy: Init ... !!!
[C6x_1 ] 15.020892 s: UDMA Copy: Init ... Done !!!
[C6x_1 ] 15.020913 s: APP: Init ... Done !!!
[C6x_1 ] 15.020922 s: APP: Run ... !!!
[C6x_1 ] 15.020930 s: IPC: Starting echo test ...
[C6x_1 ] 15.021963 s: APP: Run ... Done !!!
[C6x_1 ] 15.022266 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] C66X_1[s] C66X_2[x] C7X_1[P]
[C6x_1 ] 15.022776 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] C66X_1[s] C66X_2[P] C7X_1[P]
[C6x_1 ] 15.037518 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[P] C66X_1[s] C66X_2[P] C7X_1[P]
[C6x_1 ] 15.173324 s: IPC: Echo status: mpu1_0[x] mcu2_0[P] mcu2_1[P] C66X_1[s] C66X_2[P] C7X_1[P]
[C6x_2 ] 4.055978 s: CIO: Init ... Done !!!
[C6x_2 ] 4.056003 s: ### CPU Frequency = 1350000000 Hz
[C6x_2 ] 4.056014 s: CPU is running FreeRTOS
[C6x_2 ] 4.056022 s: APP: Init ... !!!
[C6x_2 ] 4.056030 s: SCICLIENT: Init ... !!!
[C6x_2 ] 4.056230 s: SCICLIENT: DMSC FW version [8.6.3--v08.06.03 (Chill Capybar]
[C6x_2 ] 4.056242 s: SCICLIENT: DMSC FW revision 0x8
[C6x_2 ] 4.056251 s: SCICLIENT: DMSC FW ABI revision 3.1
[C6x_2 ] 4.056261 s: SCICLIENT: Init ... Done !!!
[C6x_2 ] 4.056271 s: UDMA: Init ... !!!
[C6x_2 ] 4.057764 s: UDMA: Init ... Done !!!
[C6x_2 ] 4.057781 s: MEM: Init ... !!!
[C6x_2 ] 4.057794 s: MEM: Created heap (DDR_LOCAL_MEM, id=0, flags=0x00000004) @ e0000000 of size 16777216 bytes !!!
[C6x_2 ] 4.057810 s: MEM: Created heap (L2_MEM, id=2, flags=0x00000001) @ 800000 of size 229376 bytes !!!
[C6x_2 ] 4.057826 s: MEM: Created heap (DDR_SCRATCH_MEM, id=4, flags=0x00000001) @ e1000000 of size 50331648 bytes !!!
[C6x_2 ] 4.057842 s: MEM: Init ... Done !!!
[C6x_2 ] 4.057850 s: IPC: Init ... !!!
[C6x_2 ] 4.057871 s: IPC: 6 CPUs participating in IPC !!!
[C6x_2 ] 4.057885 s: IPC: Waiting for HLOS to be ready ... !!!
[C6x_2 ] 14.415584 s: IPC: HLOS is ready !!!
[C6x_2 ] 14.419210 s: IPC: Init ... Done !!!
[C6x_2 ] 14.419236 s: APP: Syncing with 5 CPUs ... !!!
[C6x_2 ] 15.015446 s: APP: Syncing with 5 CPUs ... Done !!!
[C6x_2 ] 15.015458 s: REMOTE_SERVICE: Init ... !!!
[C6x_2 ] 15.016102 s: REMOTE_SERVICE: Init ... Done !!!
[C6x_2 ] 15.016135 s: VX_ZONE_INIT:Enabled
[C6x_2 ] 15.016145 s: VX_ZONE_ERROR:Enabled
[C6x_2 ] 15.016154 s: VX_ZONE_WARNING:Enabled
[C6x_2 ] 15.016943 s: VX_ZONE_INIT:[tivxInitLocal:130] Initialization Done !!!
[C6x_2 ] 15.016957 s: APP: OpenVX Target kernel init ... !!!
[C6x_2 ] 15.017213 s: APP: OpenVX Target kernel init ... Done !!!
[C6x_2 ] 15.017227 s: UDMA Copy: Init ... !!!
[C6x_2 ] 15.021251 s: UDMA Copy: Init ... Done !!!
[C6x_2 ] 15.021274 s: APP: Init ... Done !!!
[C6x_2 ] 15.021283 s: APP: Run ... !!!
[C6x_2 ] 15.021291 s: IPC: Starting echo test ...
[C6x_2 ] 15.022413 s: APP: Run ... Done !!!
[C6x_2 ] 15.022716 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] C66X_1[P] C66X_2[s] C7X_1[.]
[C6x_2 ] 15.022785 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] C66X_1[P] C66X_2[s] C7X_1[P]
[C6x_2 ] 15.037543 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[P] C66X_1[P] C66X_2[s] C7X_1[P]
[C6x_2 ] 15.173741 s: IPC: Echo status: mpu1_0[x] mcu2_0[P] mcu2_1[P] C66X_1[P] C66X_2[s] C7X_1[P]
[C7x_1 ] 4.278148 s: CIO: Init ... Done !!!
[C7x_1 ] 4.278162 s: ### CPU Frequency = 1000000000 Hz
[C7x_1 ] 4.278173 s: CPU is running FreeRTOS
[C7x_1 ] 4.278181 s: APP: Init ... !!!
[C7x_1 ] 4.278188 s: SCICLIENT: Init ... !!!
[C7x_1 ] 4.278391 s: SCICLIENT: DMSC FW version [8.6.3--v08.06.03 (Chill Capybar]
[C7x_1 ] 4.278406 s: SCICLIENT: DMSC FW revision 0x8
[C7x_1 ] 4.278417 s: SCICLIENT: DMSC FW ABI revision 3.1
[C7x_1 ] 4.278427 s: SCICLIENT: Init ... Done !!!
[C7x_1 ] 4.278436 s: UDMA: Init ... !!!
[C7x_1 ] 4.279565 s: UDMA: Init ... Done !!!
[C7x_1 ] 4.279577 s: MEM: Init ... !!!
[C7x_1 ] 4.279587 s: MEM: Created heap (DDR_LOCAL_MEM, id=0, flags=0x00000004) @ 117000000 of size 268435456 bytes !!!
[C7x_1 ] 4.279609 s: MEM: Created heap (L3_MEM, id=1, flags=0x00000001) @ 70020000 of size 8159232 bytes !!!
[C7x_1 ] 4.279627 s: MEM: Created heap (L2_MEM, id=2, flags=0x00000001) @ 64800000 of size 458752 bytes !!!
[C7x_1 ] 4.279644 s: MEM: Created heap (L1_MEM, id=3, flags=0x00000001) @ 64e00000 of size 16384 bytes !!!
[C7x_1 ] 4.279661 s: MEM: Created heap (DDR_SCRATCH_MEM, id=4, flags=0x00000001) @ 100000000 of size 385875968 bytes !!!
[C7x_1 ] 4.279680 s: MEM: Init ... Done !!!
[C7x_1 ] 4.279688 s: IPC: Init ... !!!
[C7x_1 ] 4.279701 s: IPC: 6 CPUs participating in IPC !!!
[C7x_1 ] 4.279714 s: IPC: Waiting for HLOS to be ready ... !!!
[C7x_1 ] 14.849332 s: IPC: HLOS is ready !!!
[C7x_1 ] 14.851289 s: IPC: Init ... Done !!!
[C7x_1 ] 14.851303 s: APP: Syncing with 5 CPUs ... !!!
[C7x_1 ] 15.015447 s: APP: Syncing with 5 CPUs ... Done !!!
[C7x_1 ] 15.015463 s: REMOTE_SERVICE: Init ... !!!
[C7x_1 ] 15.015611 s: REMOTE_SERVICE: Init ... Done !!!
[C7x_1 ] 15.015634 s: VX_ZONE_INIT:Enabled
[C7x_1 ] 15.015644 s: VX_ZONE_ERROR:Enabled
[C7x_1 ] 15.015654 s: VX_ZONE_WARNING:Enabled
[C7x_1 ] 15.015806 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1
[C7x_1 ] 15.015894 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1_PRI_2
[C7x_1 ] 15.015988 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1_PRI_3
[C7x_1 ] 15.016064 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1_PRI_4
[C7x_1 ] 15.016127 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1_PRI_5
[C7x_1 ] 15.016208 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1_PRI_6
[C7x_1 ] 15.016301 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1_PRI_7
[C7x_1 ] 15.016368 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1_PRI_8
[C7x_1 ] 15.016390 s: VX_ZONE_INIT:[tivxInitLocal:130] Initialization Done !!!
[C7x_1 ] 15.016404 s: APP: OpenVX Target kernel init ... !!!
[C7x_1 ] 15.016542 s: APP: OpenVX Target kernel init ... Done !!!
[C7x_1 ] 15.016556 s: APP: Init ... Done !!!
[C7x_1 ] 15.016565 s: APP: Run ... !!!
[C7x_1 ] 15.016573 s: IPC: Starting echo test ...
[C7x_1 ] 15.016720 s: APP: Run ... Done !!!
[C7x_1 ] 15.022271 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] C66X_1[P] C66X_2[x] C7X_1[s]
[C7x_1 ] 15.022791 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] C66X_1[P] C66X_2[P] C7X_1[s]
[C7x_1 ] 15.037569 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[P] C66X_1[P] C66X_2[P] C7X_1[s]
[C7x_1 ] 15.173828 s: IPC: Echo status: mpu1_0[x] mcu2_0[P] mcu2_1[P] C66X_1[P] C66X_2[P] C7X_1[s]

root@tda4vm-sk:/opt/vision_apps#
root@tda4vm-sk:/opt/vision_apps#
root@tda4vm-sk:/opt/vision_apps#
root@tda4vm-sk:/opt/vision_apps# ./run_app_single_cam.sh
APP: Init ... !!!
MEM: Init ... !!!
MEM: Initialized DMA HEAP (fd=4) !!!
MEM: Init ... Done !!!
IPC: Init ... !!!
IPC: Init ... Done !!!
REMOTE_SERVICE: Init ... !!!
REMOTE_SERVICE: Init ... Done !!!
65.478108 s: GTC Frequency = 200 MHz
APP: Init ... Done !!!
65.481532 s: VX_ZONE_INIT:Enabled
65.481555 s: VX_ZONE_ERROR:Enabled
65.481561 s: VX_ZONE_WARNING:Enabled
65.482352 s: VX_ZONE_INIT:[tivxInitLocal:130] Initialization Done !!!
65.484327 s: VX_ZONE_INIT:[tivxHostInitLocal:93] Initialization Done for HOST !!!
sensor_selection = [0]
ldc_enable = [0]
num_frames_to_run = [1000000000]
is_interactive = [1]
IttCtrl_registerHandler: command echo registered at location 0
IttCtrl_registerHandler: command iss_read_2a_params registered at location 1
IttCtrl_registerHandler: command iss_write_2a_params registered at location 2
IttCtrl_registerHandler: command iss_raw_save registered at location 3
IttCtrl_registerHandler: command iss_yuv_save registered at location 4
IttCtrl_registerHandler: command iss_read_sensor_reg registered at location 5
IttCtrl_registerHandler: command iss_write_sensor_reg registered at location 6
IttCtrl_registerHandler: command dev_ctrl registered at location 7
IttCtrl_registerHandler: command iss_send_dcc_file registered at location 8
NETWORK: Opened at IP Addr = 192.168.1.147, socket port=5000!!!
65.498150 s: ISS: Enumerating sensors ... !!!
[MCU2_0] 65.498414 s: ImageSensor_RemoteServiceHandler: IM_SENSOR_CMD_ENUMERATE
[MCU2_0] 65.498601 s: set I2C(inst 3)mux to config serdes and camera.
[MCU2_0] 65.499058 s: MAX9296 config start
65.563999 s: ISS: Enumerating sensors ... found 0 : OX03C10_MAX9296
Select camera port index 0-11 : [MCU2_0] 65.563775 s: End of MAX9296 config
0
1 registered sensor drivers
a : OX03C10_MAX9296
Select a sensor above or press '0' to autodetect the sensor : Invalid selection
. Try again
1 registered sensor drivers
a : OX03C10_MAX9296
Select a sensor above or press '0' to autodetect the sensor : a
Sensor selected : OX03C10_MAX9296
LDC Selection Yes(1)/No(0) : LDC Selection Yes(1)/No(0) : 1
Querying OX03C10_MAX9296
72.417152 s: ISS: Querying sensor [OX03C10_MAX9296] ... !!!
72.417654 s: ISS: Querying sensor [OX03C10_MAX9296] ... Done !!!
72.417665 s: ISS: Initializing sensor [OX03C10_MAX9296], doing IM_SENSOR_CMD_PWRON ... !!!
72.418110 s: ISS: Initializing sensor [OX03C10_MAX9296], doing IM_SENSOR_CMD_CONFIG ... !!!
[MCU2_0] 72.417396 s: ImageSensor_RemoteServiceHandler: IM_SENSOR_CMD_QUERY
[MCU2_0] 72.417469 s: Received Query for OX03C10_MAX9296
[MCU2_0] 72.417843 s: ImageSensor_RemoteServiceHandler: IM_SENSOR_CMD_PWRON
[MCU2_0] 72.417901 s: IM_SENSOR_CMD_PWRON : channel_mask = 0x1
[MCU2_0] 72.417948 s: OX03C10_PowerOn chid = 0
[MCU2_0] 72.418288 s: ImageSensor_RemoteServiceHandler: IM_SENSOR_CMD_CONFIG
[MCU2_0] 72.418398 s: Application requested features = 0x158
[MCU2_0]
[MCU2_0] 72.418450 s: Configuring camera # 1
[MCU2_0] 72.418511 s: wyg OX03C10_Config 272
[MCU2_0] 72.418564 s: wyg OX03C10_Config 290 sensorI2cAddr=54
72.518551 s: ISS: Initializing sensor [OX03C10_MAX9296] ... Done !!!
[MCU2_0] 72.518340 s: IM_SENSOR_CMD_CONFIG returning status = 0
read_test_image_raw : Unable to open file /opt/vision_apps/test_data/img_test.raw
app_create_viss : sensor_dcc_id = 3
Enabling LDC
Creating LDC
Scaler is enabled
72.581212 s: ISS: Starting sensor [OX03C10_MAX9296] ... !!!


==========================
Demo : Single Camera w/ 2A
==========================

p: Print performance statistics

s: Save Sensor RAW, VISS Output and H3A output images to File System

e: Export performance statistics

u: Update DCC from File System


x: Exit

Enter Choice:
Unsupported command

==========================
Demo : Single Camera w/ 2A
==========================

p: Print performance statistics

s: Save Sensor RAW, VISS Output and H3A output images to File System

e: Export performance statistics

u: Update DCC from File System


x: Exit

Enter Choice: [MCU2_0] 72.581527 s: ImageSensor_RemoteServiceHandler: IM_SENSOR_CMD_STREAM_ON
[MCU2_0] 72.581608 s: IM_SENSOR_CMD_STREAM_ON: channel_mask = 0x1
[MCU2_0] 72.581653 s: Warning : channel ID 1 already has a registered sensor handle
[MCU2_0] 72.581727 s: wyg OX03C10_StreamOn 337
[MCU2_0] 72.591380 s: wyg OX03C10_StreamOn 351
[MCU2_0] 72.591423 s: MAX9296 config start
72.751573 s: ISS: Starting sensor [OX03C10_MAX9296] ... !!!
[wdr_mode] = 1
get_dcc_dir_data : /opt/vision_apps/dcc/OX03C10_MAX9296/wdr
read 2326 bytes from dcc_ldc_wdr.bin
read 5826 bytes from dcc_2a_wdr.bin
read 17705 bytes from dcc_viss_wdr.bin
[MCU2_0] 72.751342 s: End of MAX9296 config
wyg /home/wyg/work/ti-processor-sdk-rtos-j721e-evm-08_06_01_03/vision_apps/utils/network_api/src/network_api.c Network_read[91] : tmpDataSize=80,actDataSize=20
04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 wyg /home/wyg/work/ti-processor-sdk-rtos-j721e-evm-08_06_01_03/vision_apps/utils/network_api/src/network_api.c Network_read103 get data actDataSize=20
ITT_SERVER Error: Invalid header received (port=5000) header = 0x4!!!
wyg /home/wyg/work/ti-processor-sdk-rtos-j721e-evm-08_06_01_03/vision_apps/utils/network_api/src/network_api.c Network_read[91] : tmpDataSize=80,actDataSize=20
04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 wyg /home/wyg/work/ti-processor-sdk-rtos-j721e-evm-08_06_01_03/vision_apps/utils/network_api/src/network_api.c Network_read103 get data actDataSize=20
ITT_SERVER Error: Invalid header received (port=5000) header = 0x4!!!