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.

TDA4VH-Q1: How to enable SGMII for Native Linux drivers?

Part Number: TDA4VH-Q1
Other Parts Discussed in Thread: TDA4VH

Tool/software:

My SDK version:

        linux:  ti-processor-sdk-linux-adas-j784s4-evm-09_01_00_06 

        rtos:  ti-processor-sdk-rtos-j784s4-evm-09_01_00_06

The connection diagram and hardware schematic are as follows:

CPSW9G--SERDES1--SGMII1(PIN:AR3/AR2/AU3/AU2)---PHY(RTL9010)----1000m Transfer box---PC

The previous link is as follows:e2e.ti.com/.../tda4vh-q1-how-to-use-sgmii-driver

  • Based on the above link and my actual situation, modify the device tree as follows:

    // SPDX-License-Identifier: GPL-2.0
    /**
     * DT Overlay for CPSW9G in QSGMII mode using J7 Quad Port ETH EXP Add-On Ethernet Card with
     * J7AHP board. The Add-On Ethernet Card has to be connected to ENET Expansion 1 slot on the
     * board.
     *
     * Product Datasheet: https://www.ti.com/lit/ug/spruj74/spruj74.pdf
     * Product Link: https://www.ti.com/tool/J721EXENETXPANEVM
     *
     * Copyright (C) 2023 Texas Instruments Incorporated - https://www.ti.com/
     */
    
    /dts-v1/;
    /plugin/;
    
    #include <dt-bindings/gpio/gpio.h>
    #include <dt-bindings/mux/ti-serdes.h>
    #include <dt-bindings/phy/phy-cadence.h>
    #include <dt-bindings/phy/phy.h>
    
    #include "k3-pinctrl.h"
    
    &{/} {
    	aliases {
    		ethernet1 = "/bus@100000/ethernet@c000000/ethernet-ports/port@1";
    	};
    };
    
    &main_cpsw0 {
    	status = "okay";
    };
    
    &main_cpsw0_port1 {
    	status = "okay";
    	phy-handle = <&cpsw9g_phy1>;
    	phy-mode = "sgmii";
    	mac-address = [00 00 00 00 00 00];
    	phys = <&cpsw0_phy_gmii_sel 1>, <&serdes1_sgmii_link>;
    	phy-names = "portmode", "serdes-phy";
    };
    
    &main_cpsw0_mdio {
    	status = "okay";
    	pinctrl-names = "default";
    	pinctrl-0 = <&mdio0_pins_default>;
    	bus_freq = <1000000>;
    	reset-post-delay-us = <120000>;
    	#address-cells = <1>;
    	#size-cells = <0>;
    
    	cpsw9g_phy1: ethernet-phy@1 {
    		reg = <1>;
    		compatible = "ethernet-phy-ieee802.3-c22";
    		ethphy-mode = "master";
    		ethphy-speed = <1000>;
    	};
    };
    
    
    &main_pmx0 {
    	mdio0_pins_default: mdio0-pins-default {
    		pinctrl-single,pins = <
    			J784S4_IOPAD(0x05c, PIN_INPUT, 4) /* (AC36) MCASP2_AXR0.MDIO1_MDIO */
    			J784S4_IOPAD(0x058, PIN_INPUT, 4) /* (AE37) MCASP2_AFSX.MDIO1_MDC */
    		>;
    	};
    };
    
    &serdes_ln_ctrl {
    	idle-states = <J784S4_SERDES0_LANE0_PCIE1_LANE0>, <J784S4_SERDES0_LANE1_PCIE1_LANE1>,
    		      <J784S4_SERDES0_LANE2_IP3_UNUSED>, <J784S4_SERDES0_LANE3_USB>,
    		      <J784S4_SERDES1_LANE0_QSGMII_LANE3>, <J784S4_SERDES1_LANE1_QSGMII_LANE4>,
    		      <J784S4_SERDES1_LANE2_QSGMII_LANE1>, <J784S4_SERDES1_LANE3_QSGMII_LANE2>,
    		      <J784S4_SERDES2_LANE0_QSGMII_LANE5>, <J784S4_SERDES2_LANE1_QSGMII_LANE6>,
    		      <J784S4_SERDES2_LANE2_QSGMII_LANE7>, <J784S4_SERDES2_LANE3_QSGMII_LANE8>;
    };
    
    &serdes_wiz1 {
    	status = "okay";
    };
    
    &serdes1 {
    	status = "okay";
    	#address-cells = <1>;
    	#size-cells = <0>;
    	serdes1_sgmii_link: phy@0 {
    		reg = <0>;
    		cdns,num-lanes = <1>;
    		#phy-cells = <0>;
    		cdns,phy-type = <PHY_TYPE_SGMII>;
    		resets = <&serdes_wiz1 3>;
    	};
    };

    The printed log is as follows:

    U-Boot SPL 2023.04 (Jul 04 2024 - 17:18:54 +0800)
    (j784s4)The board we use does not have eeprom!
    SYSFW ABI: 3.1 (firmware rev 0x0009 '9.1.2--v09.01.02 (Kool Koala)')
    SPL initial stack usage: 13424 bytes
    Trying to boot from MMC2
    Warning: Detected image signing certificate on GP device. Skipping certificate to prevent boot failure. This will fail if the image was also encrypted
    Warning: Detected image signing certificate on GP device. Skipping certificate to prevent boot failure. This will fail if the image was also encrypted
    Warning: Detected image signing certificate on GP device. Skipping certificate to prevent boot failure. This will fail if the image was also encrypted
    Warning: Detected image signing certificate on GP device. Skipping certificate to prevent boot failure. This will fail if the image was also encrypted
    Warning: Detected image signing certificate on GP device. Skipping certificate to prevent boot failure. This will fail if the image was also encrypted
    Loading Environment from nowhere... OK
    Starting ATF on ARM64 core...
    
    NOTICE:  BL31: v2.9(release):v2.9.0-614-gd7a7135d32-dirty
    NOTICE:  BL31: Built : 09:34:15, Aug 24 2023
    I/TC: 
    I/TC: OP-TEE version: 4.0.0 (gcc version 11.4.0 (GCC)) #1 Fri Oct 20 18:29:31 UTC 2023 aarch64
    I/TC: WARNING: This OP-TEE configuration might be insecure!
    I/TC: WARNING: Please check https://optee.readthedocs.io/en/latest/architecture/porting_guidelines.html
    I/TC: Primary CPU initializing
    I/TC: SYSFW ABI: 3.1 (firmware rev 0x0009 '9.1.2--v09.01.02 (Kool Koala)')
    I/TC: HUK Initialized
    I/TC: Activated SA2UL device
    I/TC: Fixing SA2UL firewall owner for GP device
    I/TC: Enabled firewalls for SA2UL TRNG device
    I/TC: SA2UL TRNG initialized
    I/TC: SA2UL Drivers initialized
    I/TC: Primary CPU switching to normal world boot
    
    U-Boot SPL 2023.04 (Jul 04 2024 - 17:19:01 +0800)
    SYSFW ABI: 3.1 (firmware rev 0x0009 '9.1.2--v09.01.02 (Kool Koala)')
    Trying to boot from MMC2
    Warning: Detected image signing certificate on GP device. Skipping certificate to prevent boot failure. This will fail if the image was also encrypted
    Warning: Detected image signing certificate on GP device. Skipping certificate to prevent boot failure. This will fail if the image was also encrypted
    
    
    U-Boot 2023.04 (Jul 04 2024 - 17:19:01 +0800)
    
    SoC:   J784S4 SR1.0 GP
    Model: Texas Instruments J784S4 EVM
    (j784s4)The board we use does not have eeprom!
    Board: J784S4-EVM rev E1
    DRAM:  8 GiB
    idle-statesCore:  91 devices, 33 uclasses, devicetree: separate
    Flash: 0 Bytes
    MMC:   mmc@4f80000: 0, mmc@4fb0000: 1
    Loading Environment from MMC... sd_send_op_cond mmc_send_cmd 1:-110
    *** Warning - bad CRC, using default environment
    
    In:    serial@2880000
    Out:   serial@2880000
    Err:   serial@2880000
    am65_cpsw_nuss ethernet@46000000: K3 CPSW: nuss_ver: 0x6BA02102 cpsw_ver: 0x6BA82102 ale_ver: 0x00293904 Ports:1 mdio_freq:1000000
    (j784s4)The board we use does not have eeprom!
    Hit any key to stop autoboot:  2  1  0 
    switch to partitions #0, OK
    mmc1 is current device
    SD/MMC found on device 1
    (fs)Failed to load 'boot.scr'
    727 bytes read in 24 ms (29.3 KiB/s)
    Loaded env from uEnv.txt
    Importing environment from mmc1 ...
    Running uenvcmd ...
    1 bytes read in 25 ms (0 Bytes/s)
    Already setup.
    (omap24xx)i2c_write: error waiting for data ACK (status=0x116)
    pca953x gpio@20: Error reading output register:-121
    (omap24xx)i2c_write: error waiting for data ACK (status=0x116)
    pca953x gpio@22: Error reading output register:-121
    GPIO: 'gpio@22_17' not found
    Command 'gpio' failed: Error -22
    (omap24xx)i2c_write: error waiting for data ACK (status=0x116)
    pca953x gpio@20: Error reading output register:-121
    (omap24xx)i2c_write: error waiting for data ACK (status=0x116)
    pca953x gpio@22: Error reading output register:-121
    GPIO: 'gpio@22_16' not found
    Command 'gpio' failed: Error -22
    k3_r5f_rproc r5f@41000000: Core 1 is already in use. No rproc commands work
    (fs)Failed to load '/lib/firmware/j784s4-mcu-r5f0_1-fw'
    1363532 bytes read in 83 ms (15.7 MiB/s)
    Load Remote Processor 2 with data@addr=0x82000000 1363532 bytes: Success!
    330964 bytes read in 40 ms (7.9 MiB/s)
    Load Remote Processor 3 with data@addr=0x82000000 330964 bytes: Success!
    146592 bytes read in 33 ms (4.2 MiB/s)
    Load Remote Processor 4 with data@addr=0x82000000 146592 bytes: Success!
    146592 bytes read in 32 ms (4.4 MiB/s)
    Load Remote Processor 5 with data@addr=0x82000000 146592 bytes: Success!
    474304 bytes read in 46 ms (9.8 MiB/s)
    Load Remote Processor 6 with data@addr=0x82000000 474304 bytes: Success!
    146592 bytes read in 33 ms (4.2 MiB/s)
    Load Remote Processor 7 with data@addr=0x82000000 146592 bytes: Success!
    14942592 bytes read in 303 ms (47 MiB/s)
    Load Remote Processor 8 with data@addr=0x82000000 14942592 bytes: Success!
    15339792 bytes read in 319 ms (45.9 MiB/s)
    Load Remote Processor 9 with data@addr=0x82000000 15339792 bytes: Success!
    14942480 bytes read in 300 ms (47.5 MiB/s)
    Load Remote Processor 10 with data@addr=0x82000000 14942480 bytes: Success!
    14942480 bytes read in 301 ms (47.3 MiB/s)
    Load Remote Processor 11 with data@addr=0x82000000 14942480 bytes: Success!
    20367872 bytes read in 858 ms (22.6 MiB/s)
    114739 bytes read in 31 ms (3.5 MiB/s)
    Working FDT set to 88000000
    3943 bytes read in 26 ms (147.5 KiB/s)
    14272 bytes read in 27 ms (515.6 KiB/s)
    ## Flattened Device Tree blob at 88000000
       Booting using the fdt blob at 0x88000000
    Working FDT set to 88000000
    (fdt)ERROR: reserving fdt memory region failed (addr=880000000 size=20000000 flags=4)
       Loading Device Tree to 000000008fee0000, end 000000008fffffff ... OK
    Working FDT set to 8fee0000
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x411fd080]
    [    0.000000] Linux version 6.1.46 (jinzhu@work) (aarch64-oe-linux-gcc (GCC) 11.4.0, GNU ld (GNU Binutils) 2.38.20220708) #1 SMP PREEMPT Thu Jul  4 17:01:03 CST 2024
    [    0.000000] Machine model: Texas Instruments J784S4 EVM
    [    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002880000 (options '')
    [    0.000000] printk: bootconsole [ns16550a0] enabled
    [    0.000000] efi: UEFI not found.
    [    0.000000] Reserved memory: created CMA memory pool at 0x000000098fe00000, size 1792 MiB
    [    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool
    [    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 63 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 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 31 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 0x00000000a8000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-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-r5f-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-r5f-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-r5f-memory@a9100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000aa000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@aa000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000aa100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@aa100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000ab000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@ab000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000ab100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@ab100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000ac000000, size 48 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-rtos-ipc-memory-region@ac000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000af000000, size 48 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-dma-memory@af000000, 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 5 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-c71_0-memory@b2100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000b5800000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-c71_1-dma-memory@b5800000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000b5900000, size 5 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-c71_1-memory@b5900000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000b7800000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-c71_2-dma-memory@b7800000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000b7900000, size 5 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-c71_2-memory@b7900000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000b9800000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-c71_3-dma-memory@b9800000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000b9900000, size 5 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-c71_3-memory@b9900000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000bb800000, size 512 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-core-heap-memory-lo@bb800000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000db800000, size 24 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-virtual-eth-queues@db800000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000dd000000, size 48 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-virtual-eth-buffers@dd000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000880000000, size 512 MiB
    [    0.000000] OF: reserved mem: initialized node c7x-ddr-heaps-hi@880000000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: initialized node vision_apps_shared-memories, compatible id dma-heap-carveout
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x00000000ffffffff]
    [    0.000000]   DMA32    empty
    [    0.000000]   Normal   [mem 0x0000000100000000-0x00000009ffffefff]
    [    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-0x00000000b2603fff]
    [    0.000000]   node   0: [mem 0x00000000b2604000-0x00000000b57fffff]
    [    0.000000]   node   0: [mem 0x00000000b5800000-0x00000000b5e03fff]
    [    0.000000]   node   0: [mem 0x00000000b5e04000-0x00000000b77fffff]
    [    0.000000]   node   0: [mem 0x00000000b7800000-0x00000000b7e03fff]
    [    0.000000]   node   0: [mem 0x00000000b7e04000-0x00000000b97fffff]
    [    0.000000]   node   0: [mem 0x00000000b9800000-0x00000000b9e03fff]
    [    0.000000]   node   0: [mem 0x00000000b9e04000-0x00000000bb7fffff]
    [    0.000000]   node   0: [mem 0x00000000bb800000-0x00000000dfffffff]
    [    0.000000]   node   0: [mem 0x00000000e0000000-0x00000000ffffefff]
    [    0.000000]   node   0: [mem 0x0000000880000000-0x000000089fffffff]
    [    0.000000]   node   0: [mem 0x00000008a0000000-0x00000009ffffefff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000009ffffefff]
    [    0.000000] On node 0, zone Normal: 1 pages in unavailable ranges
    [    0.000000] On node 0, zone Normal: 1 pages in unavailable ranges
    [    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.4
    [    0.000000] percpu: Embedded 19 pages/cpu s38376 r8192 d31256 u77824
    [    0.000000] Detected PIPT I-cache on CPU0
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] CPU features: detected: Spectre-v3a
    [    0.000000] CPU features: detected: Spectre-BHB
    [    0.000000] CPU features: detected: ARM erratum 1742098
    [    0.000000] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
    [    0.000000] alternatives: applying boot alternatives
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 2064382
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02880000 mtdparts=47040000.spi.0:512k(ospi.tiboot3),2m(ospi.tispl),4m(ospi.u-boot),256k(ospi.env),256k(ospi.env.backup),57088k@8m(ospi.rootfs),256k(ospi.phypattern);spi-nand0:512k(ospi_nand.tiboot3),2m(ospi_nand.tispl),4m(ospi_nand.u-boot),256k(ospi_nand.env),256k(ospi_nand.env.backup),98048k@32m(ospi_nand.rootfs),256k@130816k(ospi_nand.phypattern) root=PARTUUID=be26e9fb-02 rw rootfstype=ext4 rootwait
    [    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
    [    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
    [    0.000000] software IO TLB: area num 8.
    [    0.000000] software IO TLB: mapped [mem 0x00000000fbfff000-0x00000000fffff000] (64MB)
    [    0.000000] Memory: 4350792K/8388600K available (12352K kernel code, 1266K rwdata, 4028K rodata, 2112K init, 432K bss, 2202800K reserved, 1835008K cma-reserved)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, 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=8.
    [    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=8
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: [Firmware Bug]: GICR region 0x0000000001900000 has overlapping address
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 960 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] Root IRQ handler: gic_handle_irq
    [    0.000000] GICv3: GICv3 features: 16 PPIs
    [    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 @8be800000 (flat, esz 8, psz 64K, shr 0)
    [    0.000000] ITS: using cache flushing for cmd queue
    [    0.000000] GICv3: using LPI property table @0x00000008be050000
    [    0.000000] GIC: using cache flushing for LPI property table
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x00000008be060000
    [    0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention.
    [    0.000000] arch_timer: cp15 timer(s) running at 200.00MHz (phys).
    [    0.000000] clocksource: arch_sys_counter: mask: 0x3ffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns
    [    0.000000] sched_clock: 58 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns
    [    0.008443] Console: colour dummy device 80x25
    [    0.013014] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.023686] pid_max: default: 32768 minimum: 301
    [    0.028424] LSM: Security Framework initializing
    [    0.033201] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
    [    0.040958] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
    [    0.050108] cblist_init_generic: Setting adjustable number of callback queues.
    [    0.057505] cblist_init_generic: Setting shift to 3 and lim to 1.
    [    0.063771] cblist_init_generic: Setting adjustable number of callback queues.
    [    0.071157] cblist_init_generic: Setting shift to 3 and lim to 1.
    [    0.077464] rcu: Hierarchical SRCU implementation.
    [    0.082361] rcu: 	Max phase no-delay instances is 1000.
    [    0.087853] Platform MSI: msi-controller@1820000 domain created
    [    0.094053] PCI/MSI: /bus@100000/interrupt-controller@1800000/msi-controller@1820000 domain created
    [    0.103505] EFI services will not be available.
    [    0.108348] smp: Bringing up secondary CPUs ...
    I/TC: Secondary CPU 1 initializing
    I/TC: Secondary CPU 1 switching to normal world boot
    I/TC: Secondary CPU 2 initializing
    I/TC: Secondary CPU 2 switching to normal world boot
    I/TC: Secondary CPU 3 initializing
    I/TC: Secondary CPU 3 switching to normal world boot
    I/TC: Secondary CPU 4 initializing
    I/TC: Secondary CPU 4 switching to normal world boot
    I/TC: Secondary CPU 5 initializing
    I/TC: Secondary CPU 5 switching to normal world boot
    I/TC: Secondary CPU 6 initializing
    I/TC: Secondary CPU 6 switching to normal world boot
    I/TC: Secondary CPU 7 initializing
    I/TC: Secondary CPU 7 switching to normal world boot
    [    0.121425] Detected PIPT I-cache on CPU1
    [    0.121484] GICv3: CPU1: found redistributor 1 region 0:0x0000000001920000
    [    0.121498] GICv3: CPU1: using allocated LPI pending table @0x00000008be070000
    [    0.121529] CPU1: Booted secondary processor 0x0000000001 [0x411fd080]
    [    0.129989] Detected PIPT I-cache on CPU2
    [    0.130025] GICv3: CPU2: found redistributor 2 region 0:0x0000000001940000
    [    0.130038] GICv3: CPU2: using allocated LPI pending table @0x00000008be080000
    [    0.130061] CPU2: Booted secondary processor 0x0000000002 [0x411fd080]
    [    0.138475] Detected PIPT I-cache on CPU3
    [    0.138520] GICv3: CPU3: found redistributor 3 region 0:0x0000000001960000
    [    0.138533] GICv3: CPU3: using allocated LPI pending table @0x00000008be090000
    [    0.138556] CPU3: Booted secondary processor 0x0000000003 [0x411fd080]
    [    0.147020] Detected PIPT I-cache on CPU4
    [    0.147098] GICv3: CPU4: found redistributor 100 region 0:0x0000000001980000
    [    0.147112] GICv3: CPU4: using allocated LPI pending table @0x00000008be0a0000
    [    0.147143] CPU4: Booted secondary processor 0x0000000100 [0x411fd080]
    [    0.155617] Detected PIPT I-cache on CPU5
    [    0.155667] GICv3: CPU5: found redistributor 101 region 0:0x00000000019a0000
    [    0.155680] GICv3: CPU5: using allocated LPI pending table @0x00000008be0b0000
    [    0.155703] CPU5: Booted secondary processor 0x0000000101 [0x411fd080]
    [    0.164145] Detected PIPT I-cache on CPU6
    [    0.164196] GICv3: CPU6: found redistributor 102 region 0:0x00000000019c0000
    [    0.164209] GICv3: CPU6: using allocated LPI pending table @0x00000008be0c0000
    [    0.164233] CPU6: Booted secondary processor 0x0000000102 [0x411fd080]
    [    0.172669] Detected PIPT I-cache on CPU7
    [    0.172720] GICv3: CPU7: found redistributor 103 region 0:0x00000000019e0000
    [    0.172732] GICv3: CPU7: using allocated LPI pending table @0x00000008be0d0000
    [    0.172755] CPU7: Booted secondary processor 0x0000000103 [0x411fd080]
    [    0.172801] smp: Brought up 1 node, 8 CPUs
    [    0.353795] SMP: Total of 8 processors activated.
    [    0.358601] CPU features: detected: 32-bit EL0 Support
    [    0.363857] CPU features: detected: CRC32 instructions
    [    0.369154] CPU: All CPU(s) started at EL2
    [    0.373344] alternatives: applying system-wide alternatives
    [    0.380147] devtmpfs: initialized
    [    0.390999] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.400983] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
    [    0.432433] pinctrl core: initialized pinctrl subsystem
    [    0.438131] DMI not present or invalid.
    [    0.442394] NET: Registered PF_NETLINK/PF_ROUTE protocol family
    [    0.449287] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
    [    0.456784] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.464968] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.473199] audit: initializing netlink subsys (disabled)
    [    0.478819] audit: type=2000 audit(0.340:1): state=initialized audit_enabled=0 res=1
    [    0.479014] thermal_sys: Registered thermal governor 'step_wise'
    [    0.486739] thermal_sys: Registered thermal governor 'power_allocator'
    [    0.492959] cpuidle: using governor menu
    [    0.503708] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.510734] ASID allocator initialised with 65536 entries
    [    0.525705] platform a000000.dp-bridge: Fixed dependency cycle(s) with /dp0-connector
    [    0.534265] KASLR disabled due to lack of seed
    [    0.541668] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.548618] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
    [    0.555022] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.561958] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
    [    0.568361] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.575296] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
    [    0.581699] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.588634] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
    [    0.595744] k3-chipinfo 43000014.chipid: Family:J784S4 rev:SR1.0 JTAGID[0x0bb8002f] Detected
    [    0.605198] iommu: Default domain type: Translated 
    [    0.610209] iommu: DMA domain TLB invalidation policy: strict mode 
    [    0.616729] SCSI subsystem initialized
    [    0.620706] usbcore: registered new interface driver usbfs
    [    0.626326] usbcore: registered new interface driver hub
    [    0.631765] usbcore: registered new device driver usb
    [    0.637113] pps_core: LinuxPPS API ver. 1 registered
    [    0.642185] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    [    0.651523] PTP clock support registered
    [    0.655605] EDAC MC: Ver: 3.0.0
    [    0.659282] FPGA manager framework
    [    0.662789] Advanced Linux Sound Architecture Driver Initialized.
    [    0.669443] clocksource: Switched to clocksource arch_sys_counter
    [    0.675789] VFS: Disk quotas dquot_6.6.0
    [    0.679815] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.689803] Carveout Heap: Exported 480 MiB at 0x00000008a0000000
    [    0.696087] NET: Registered PF_INET protocol family
    [    0.701283] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
    [    0.711660] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
    [    0.720430] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
    [    0.728354] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
    [    0.736676] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
    [    0.745126] TCP: Hash tables configured (established 65536 bind 65536)
    [    0.751912] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
    [    0.758949] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
    [    0.766523] NET: Registered PF_UNIX/PF_LOCAL protocol family
    [    0.772576] RPC: Registered named UNIX socket transport module.
    [    0.778632] RPC: Registered udp transport module.
    [    0.783435] RPC: Registered tcp transport module.
    [    0.788238] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.794819] NET: Registered PF_XDP protocol family
    [    0.799725] PCI: CLS 0 bytes, default 64
    [    0.804420] hw perfevents: enabled with armv8_cortex_a72 PMU driver, 7 counters available
    [    0.813697] Initialise system trusted keyrings
    [    0.818350] workingset: timestamp_bits=46 max_order=21 bucket_order=0
    [    0.826906] squashfs: version 4.0 (2009/01/31) Phillip Lougher
    [    0.833106] NFS: Registering the id_resolver key type
    [    0.838283] Key type id_resolver registered
    [    0.842554] Key type id_legacy registered
    [    0.846673] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.853522] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.879970] Key type asymmetric registered
    [    0.884153] Asymmetric key parser 'x509' registered
    [    0.889162] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
    [    0.896793] io scheduler mq-deadline registered
    [    0.901425] io scheduler kyber registered
    [    0.907693] pinctrl-single 4301c000.pinctrl: 13 pins, size 52
    [    0.913647] pinctrl-single 4301c038.pinctrl: 11 pins, size 44
    [    0.919700] pinctrl-single 4301c068.pinctrl: 72 pins, size 288
    [    0.925739] pinctrl-single 4301c190.pinctrl: 1 pins, size 4
    [    0.931696] pinctrl-single 11c000.pinctrl: 72 pins, size 288
    [    0.937942] pinctrl-single a40000.pinctrl: 512 pins, size 2048
    [    0.947515] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
    [    0.958689] loop: module loaded
    [    0.962566] megasas: 07.719.03.00-rc1
    [    0.967840] tun: Universal TUN/TAP device driver, 1.6
    [    0.973364] thunder_xcv, ver 1.0
    [    0.976676] thunder_bgx, ver 1.0
    [    0.979985] nicpf, ver 1.0
    [    0.982842] e1000: Intel(R) PRO/1000 Network Driver
    [    0.987823] e1000: Copyright (c) 1999-2006 Intel Corporation.
    [    0.993708] e1000e: Intel(R) PRO/1000 Network Driver
    [    0.998778] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
    [    1.004839] igb: Intel(R) Gigabit Ethernet Network Driver
    [    1.010354] igb: Copyright (c) 2007-2014 Intel Corporation.
    [    1.016054] igbvf: Intel(R) Gigabit Virtual Function Network Driver
    [    1.022457] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
    [    1.028571] sky2: driver version 1.30
    [    1.032752] VFIO - User Level meta-driver version: 0.3
    [    1.038335] usbcore: registered new interface driver usb-storage
    [    1.044779] i2c_dev: i2c /dev entries driver
    [    1.049704] sdhci: Secure Digital Host Controller Interface driver
    [    1.056025] sdhci: Copyright(c) Pierre Ossman
    [    1.060591] sdhci-pltfm: SDHCI platform and OF driver helper
    [    1.066783] ledtrig-cpu: registered to indicate activity on CPUs
    [    1.073019] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    1.079748] usbcore: registered new interface driver usbhid
    [    1.085441] usbhid: USB HID core driver
    [    1.089835] 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
    [    1.094390] optee: revision 4.0 (2a5b1d12)
    [    1.110778] optee: dynamic shared memory is enabled
    [    1.120170] optee: initialized driver
    [    1.124977] Initializing XFRM netlink socket
    [    1.129362] NET: Registered PF_PACKET protocol family
    [    1.134557] Key type dns_resolver registered
    [    1.139101] registered taskstats version 1
    [    1.143301] Loading compiled-in X.509 certificates
    [    1.154134] ti-sci 44083000.system-controller: ABI: 3.1 (firmware rev 0x0009 '9.1.2--v09.01.02 (Kool Koala)')
    [    1.190479] omap_i2c 42120000.i2c: bus 1 rev0.12 at 400 kHz
    [    1.196764] pca953x 0-0020: supply vcc not found, using dummy regulator
    [    1.203579] pca953x 0-0020: using no AI
    [    1.221488] pca953x 0-0020: failed writing register
    [    1.226540] pca953x: probe of 0-0020 failed with error -121
    [    1.232341] pca953x 0-0022: supply vcc not found, using dummy regulator
    [    1.239140] pca953x 0-0022: using AI
    [    1.242842] pca953x 0-0022: failed writing register
    [    1.247868] pca953x: probe of 0-0022 failed with error -121
    [    1.253595] omap_i2c 2000000.i2c: bus 0 rev0.12 at 400 kHz
    [    1.259374] ti-sci-intr 42200000.interrupt-controller: Interrupt Router 177 domain created
    [    1.267904] ti-sci-intr bus@100000:interrupt-controller@a00000: Interrupt Router 10 domain created
    [    1.277148] ti-sci-intr 310e0000.interrupt-controller: Interrupt Router 283 domain created
    [    1.285812] ti-sci-inta 33d00000.msi-controller: Interrupt Aggregator domain 321 created
    [    1.297940] ti-udma 311a0000.dma-controller: Number of rings: 48
    [    1.304729] ti-udma 311a0000.dma-controller: Channels: 24 (bchan: 0, tchan: 8, rchan: 16)
    [    1.313911] k3-ringacc 2b800000.ringacc: Ring Accelerator probed rings:286, gp-rings[96,20] sci-dev-id:328
    [    1.323787] k3-ringacc 2b800000.ringacc: dma-ring-reset-quirk: disabled
    [    1.330547] k3-ringacc 2b800000.ringacc: RA Proxy rev. 66349100, num_proxies:64
    [    1.339427] k3-ringacc 3c000000.ringacc: Ring Accelerator probed rings:1024, gp-rings[878,128] sci-dev-id:315
    [    1.349578] k3-ringacc 3c000000.ringacc: dma-ring-reset-quirk: disabled
    [    1.356336] k3-ringacc 3c000000.ringacc: RA Proxy rev. 66349100, num_proxies:64
    [    1.364213] 40a00000.serial: ttyS1 at MMIO 0x40a00000 (irq = 214, base_baud = 6000000) is a 8250
    [    1.373618] 2880000.serial: ttyS2 at MMIO 0x2880000 (irq = 215, base_baud = 3000000) is a 8250
    [    1.382471] printk: console [ttyS2] enabled
    [    1.382471] printk: console [ttyS2] enabled
    [    1.390913] printk: bootconsole [ns16550a0] disabled
    [    1.390913] printk: bootconsole [ns16550a0] disabled
    [    1.441448] davinci_mdio 46000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
    [    1.449518] dans--- test get_phy_c22_id.----=1886976
    [    1.454864] davinci_mdio 46000f00.mdio: phy[0]: device 46000f00.mdio:00, driver RTL9000AA_RTL9000AN Ethernet
    [    1.464693] am65-cpsw-nuss 46000000.ethernet: initializing am65 cpsw nuss version 0x6BA02102, cpsw version 0x6BA82102 Ports: 2 quirks:00000000
    [    1.477546] am65-cpsw-nuss 46000000.ethernet: initialized cpsw ale version 1.4
    [    1.484754] am65-cpsw-nuss 46000000.ethernet: ALE Table size 64
    [    1.490896] pps pps0: new PPS source ptp0
    [    1.495043] am65-cpsw-nuss 46000000.ethernet: CPTS ver 0x4e8a010b, freq:500000000, add_val:1 pps:1
    [    1.541442] davinci_mdio c200f00.mdio: davinci mdio revision 9.7, bus freq 1000000
    [    1.549222] mdio_bus c200f00.mdio: MDIO device at address 0 is missing.
    [    1.555843] am65-cpsw-nuss c200000.ethernet: initializing am65 cpsw nuss version 0x6BA02102, cpsw version 0x6BA82102 Ports: 2 quirks:00000000
    [    1.568599] am65-cpsw-nuss c200000.ethernet: Use random MAC address
    [    1.574855] am65-cpsw-nuss c200000.ethernet: initialized cpsw ale version 1.4
    [    1.581973] am65-cpsw-nuss c200000.ethernet: ALE Table size 64
    [    1.588113] am65-cpsw-nuss c200000.ethernet: CPTS ver 0x4e8a010b, freq:250000000, add_val:3 pps:0
    [    1.598350] am65-cpts 310d0000.cpts: CPTS ver 0x4e8a010c, freq:250000000, add_val:3 pps:0
    [    1.607137] mmc0: CQHCI version 5.10
    [    1.607457] mmc1: CQHCI version 5.10
    [    1.651622] mmc0: SDHCI controller on 4f80000.mmc [4f80000.mmc] using ADMA 64-bit
    [    1.651639] mmc1: SDHCI controller on 4fb0000.mmc [4fb0000.mmc] using ADMA 64-bit
    [    1.702141] mmc1: new high speed SDHC card at address aaaa
    [    1.708025] mmcblk1: mmc1:aaaa SC16G 14.8 GiB 
    [    1.718284]  mmcblk1: p1 p2
    [    1.731069] mmc0: Command Queue Engine enabled
    [    1.735508] mmc0: new HS200 MMC card at address 0001
    [    1.740805] mmcblk0: mmc0:0001 DA6032 29.1 GiB 
    [    1.746278] mmcblk0boot0: mmc0:0001 DA6032 4.00 MiB 
    [    1.751882] mmcblk0boot1: mmc0:0001 DA6032 4.00 MiB 
    [    1.757392] mmcblk0rpmb: mmc0:0001 DA6032 4.00 MiB, chardev (240:0)
    [    1.897998] tps6594-rtc tps6594-rtc.4.auto: registered as rtc0
    [    1.903967] tps6594-rtc tps6594-rtc.4.auto: hctosys: unable to read the hardware clock
    [    1.912220] omap-mailbox 31f80000.mailbox: omap mailbox rev 0x66fca100
    [    1.919005] omap-mailbox 31f81000.mailbox: omap mailbox rev 0x66fca100
    [    1.925786] omap-mailbox 31f82000.mailbox: omap mailbox rev 0x66fca100
    [    1.932561] omap-mailbox 31f83000.mailbox: omap mailbox rev 0x66fca100
    [    1.939340] omap-mailbox 31f84000.mailbox: omap mailbox rev 0x66fca100
    [    1.946126] omap-mailbox 31f85000.mailbox: omap mailbox rev 0x66fca100
    [    1.954622] ti-udma 285c0000.dma-controller: Channels: 22 (tchan: 11, rchan: 11, gp-rflow: 8)
    [    1.964599] ti-udma 31150000.dma-controller: Channels: 66 (tchan: 33, rchan: 33, gp-rflow: 16)
    [    2.376450] spi-nand: probe of spi0.0 failed with error -110
    [    2.384077] spi-nor spi1.0: is25wp064 (8192 Kbytes)
    [    2.388996] 7 fixed-partitions partitions found on MTD device 47050000.spi.0
    [    2.396033] Creating 7 MTD partitions on "47050000.spi.0":
    [    2.401508] 0x000000000000-0x000000080000 : "qspi.tiboot3"
    [    2.407658] 0x000000080000-0x000000280000 : "qspi.tispl"
    [    2.413527] 0x000000280000-0x000000680000 : "qspi.u-boot"
    [    2.419475] 0x000000680000-0x0000006c0000 : "qspi.env"
    [    2.425133] 0x0000006c0000-0x000000700000 : "qspi.env.backup"
    [    2.431415] 0x000000800000-0x000003fc0000 : "qspi.rootfs"
    [    2.436807] mtd: partition "qspi.rootfs" is out of reach -- disabled
    [    2.443679] 0x000003fc0000-0x000004000000 : "qspi.phypattern"
    [    2.449416] mtd: partition "qspi.phypattern" is out of reach -- disabled
    [    2.493451] davinci_mdio 46000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
    [    2.501519] dans--- test get_phy_c22_id.----=1886976
    [    2.506932] davinci_mdio 46000f00.mdio: phy[0]: device 46000f00.mdio:00, driver RTL9000AA_RTL9000AN Ethernet
    [    2.516761] am65-cpsw-nuss 46000000.ethernet: initializing am65 cpsw nuss version 0x6BA02102, cpsw version 0x6BA82102 Ports: 2 quirks:00000000
    [    2.529624] am65-cpsw-nuss 46000000.ethernet: initialized cpsw ale version 1.4
    [    2.536830] am65-cpsw-nuss 46000000.ethernet: ALE Table size 64
    [    2.542975] pps pps0: new PPS source ptp1
    [    2.547121] am65-cpsw-nuss 46000000.ethernet: CPTS ver 0x4e8a010b, freq:500000000, add_val:1 pps:1
    [    2.557122] am65-cpsw-nuss 46000000.ethernet: set new flow-id-base 48
    [    2.601451] davinci_mdio c200f00.mdio: davinci mdio revision 9.7, bus freq 1000000
    [    2.609239] mdio_bus c200f00.mdio: MDIO device at address 0 is missing.
    [    2.615859] am65-cpsw-nuss c200000.ethernet: initializing am65 cpsw nuss version 0x6BA02102, cpsw version 0x6BA82102 Ports: 2 quirks:00000000
    [    2.628604] am65-cpsw-nuss c200000.ethernet: Use random MAC address
    [    2.634859] am65-cpsw-nuss c200000.ethernet: initialized cpsw ale version 1.4
    [    2.641978] am65-cpsw-nuss c200000.ethernet: ALE Table size 64
    [    2.648109] am65-cpsw-nuss c200000.ethernet: CPTS ver 0x4e8a010b, freq:200000000, add_val:4 pps:0
    [    2.657993] am65-cpsw-nuss c200000.ethernet: set new flow-id-base 82
    [    2.665876] debugfs: Directory 'pd:74' with parent 'pm_genpd' already present!
    [    2.673103] debugfs: Directory 'pd:73' with parent 'pm_genpd' already present!
    [    2.680390] debugfs: Directory 'pd:72' with parent 'pm_genpd' already present!
    [    2.688079] debugfs: Directory 'pd:335' with parent 'pm_genpd' already present!
    [    2.695385] debugfs: Directory 'pd:333' with parent 'pm_genpd' already present!
    [    2.702691] debugfs: Directory 'pd:332' with parent 'pm_genpd' already present!
    [    2.718882] ALSA device list:
    [    2.721852]   No soundcards found.
    [    3.280724] EXT4-fs (mmcblk1p2): recovery complete
    [    3.293386] EXT4-fs (mmcblk1p2): mounted filesystem with ordered data mode. Quota mode: none.
    [    3.301931] VFS: Mounted root (ext4 filesystem) on device 179:2.
    [    3.318948] devtmpfs: mounted
    [    3.322741] Freeing unused kernel memory: 2112K
    [    3.327365] Run /sbin/init as init process
    [    3.710443] systemd[1]: System time before build time, advancing clock.
    [    3.791351] NET: Registered PF_INET6 protocol family
    [    3.796924] Segment Routing with IPv6
    [    3.800601] In-situ OAM (IOAM) with IPv6
    [    3.837987] systemd[1]: systemd 250.5+ running in system mode (+PAM -AUDIT -SELINUX -APPARMOR +IMA -SMACK +SECCOMP -GCRYPT -GNUTLS -OPENSSL +ACL +BLKID -CURL -ELFUTILS -FIDO2 -IDN2 -IDN -IPTC +KMOD -LIBCRYPTSETUP +LIBFDISK -PCRE2 -PWQUALITY -P11KIT -QRENCODE -BZIP2 -LZ4 -XZ -ZLIB +ZSTD -BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=hybrid)
    [    3.869496] systemd[1]: Detected architecture arm64.
    
    Welcome to Arago 2023.10!
    
    [    3.949098] systemd[1]: Hostname set to <j784s4-evm>.
    [    4.053310] systemd-sysv-generator[193]: SysV service '/etc/init.d/netopeer2-server' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
    [    4.077895] systemd-sysv-generator[193]: SysV service '/etc/init.d/sysrepo' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
    [    4.105299] systemd-sysv-generator[193]: SysV service '/etc/init.d/thermal-zone-init' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
    [    4.283447] systemd[1]: /lib/systemd/system/bt-enable.service:9: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether.
    [    4.335121] systemd[1]: /etc/systemd/system/sync-clocks.service:11: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether.
    [    4.392754] systemd[1]: Queued start job for default target Graphical Interface.
    [    4.441558] systemd[1]: Created slice Slice /system/getty.
    [  OK  ] Created slice Slice /system/getty.
    [    4.462761] systemd[1]: Created slice Slice /system/modprobe.
    [  OK  ] Created slice Slice /system/modprobe.
    [    4.486511] systemd[1]: Created slice Slice /system/serial-getty.
    [  OK  ] Created slice Slice /system/serial-getty.
    [    4.510347] systemd[1]: Created slice User and Session Slice.
    [  OK  ] Created slice User and Session Slice.
    [    4.533602] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [  OK  ] Started Dispatch Password …ts to Console Directory Watch.
    [    4.557549] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [  OK  ] Started Forward Password R…uests to Wall Directory Watch.
    [    4.581601] systemd[1]: Reached target Path Units.
    [  OK  ] Reached target Path Units.
    [    4.597503] systemd[1]: Reached target Remote File Systems.
    [  OK  ] Reached target Remote File Systems.
    [    4.617494] systemd[1]: Reached target Slice Units.
    [  OK  ] Reached target Slice Units.
    [    4.633502] systemd[1]: Reached target Swaps.
    [  OK  ] Reached target Swaps.
    [    4.679267] systemd[1]: Listening on RPCbind Server Activation Socket.
    [  OK  ] Listening on RPCbind Server Activation Socket.
    [    4.701566] systemd[1]: Reached target RPC Port Mapper.
    [  OK  ] Reached target RPC Port Mapper.
    [    4.727566] systemd[1]: Listening on Process Core Dump Socket.
    [  OK  ] Listening on Process Core Dump Socket.
    [    4.749603] systemd[1]: Listening on initctl Compatibility Named Pipe.
    [  OK  ] Listening on initctl Compatibility Named Pipe.
    [    4.773755] systemd[1]: Listening on Journal Audit Socket.
    [  OK  ] Listening on Journal Audit Socket.
    [    4.793660] systemd[1]: Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket (/dev/log).
    [    4.813685] systemd[1]: Listening on Journal Socket.
    [  OK  ] Listening on Journal Socket.
    [    4.829726] systemd[1]: Listening on Network Service Netlink Socket.
    [  OK  ] Listening on Network Service Netlink Socket.
    [    4.853752] systemd[1]: Listening on udev Control Socket.
    [  OK  ] Listening on udev Control Socket.
    [    4.873621] systemd[1]: Listening on udev Kernel Socket.
    [  OK  ] Listening on udev Kernel Socket.
    [    4.893652] systemd[1]: Listening on User Database Manager Socket.
    [  OK  ] Listening on User Database Manager Socket.
    [    4.933700] systemd[1]: Mounting Huge Pages File System...
             Mounting Huge Pages File System...
    [    4.951829] systemd[1]: Mounting POSIX Message Queue File System...
             Mounting POSIX Message Queue File System...
    [    4.975785] systemd[1]: Mounting Kernel Debug File System...
             Mounting Kernel Debug File System...
    [    4.993678] systemd[1]: Kernel Trace File System was skipped because of a failed condition check (ConditionPathExists=/sys/kernel/tracing).
    [    5.012411] systemd[1]: Mounting Temporary Directory /tmp...
             Mounting Temporary Directory /tmp...
    [    5.032667] systemd[1]: Starting Create List of Static Device Nodes...
             Starting Create List of Static Device Nodes...
    [    5.059789] systemd[1]: Starting Load Kernel Module configfs...
             Starting Load Kernel Module configfs...
    [    5.083855] systemd[1]: Starting Load Kernel Module drm...
             Starting Load Kernel Module drm...
    [    5.103800] systemd[1]: Starting Load Kernel Module fuse...
             Starting Load Kernel Module fuse...
    [    5.147889] systemd[1]: Starting Start psplash boot splash screen...
             Starting Start psplash boot splash screen.[    5.154559] fuse: init (API version 7.37)
    ..
    [    5.184010] systemd[1]: Starting RPC Bind...
             Starting RPC Bind...
    [    5.197732] systemd[1]: File System Check on Root Device was skipped because of a failed condition check (ConditionPathIsReadWrite=!/).
    [    5.213931] systemd[1]: Starting Journal Service...
             Starting Journal Service...
    [    5.242228] systemd[1]: Starting Load Kernel Modules...
             Starting Load Kernel Modules...
    [    5.259278] cryptodev: loading out-of-tree module taints kernel.
    [    5.266246] cryptodev: driver 1.12 loaded.
    [    5.268393] systemd[1]: Starting Generate network units from Kernel command line...
             Starting Generate network …ts from Kernel command line...
    [    5.296494] systemd[1]: Starting Remount Root and Kernel File Systems...
             Starting Remount Root and Kernel File Systems...
    [    5.310558] EXT4-fs (mmcblk1p2): re-mounted. Quota mode: none.
    [    5.320541] systemd[1]: Starting Coldplug All udev Devices...
             Starting Coldplug All udev Devices...
    [    5.346049] systemd[1]: Started RPC Bind.
    [  OK  ] Started RPC Bind.
    [    5.361776] 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  ] Finished Create List of Static Device Nodes.
    [  OK  ] Finished Load Kernel Module configfs.
    [  OK  ] Finished Load Kernel Module drm.
    [  OK  ] Finished Load Kernel Module fuse.
    [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  ] Finished Load Kernel Modules.
    [  OK  ] Finished Generate network units from Kernel command line.
    [  OK  ] Finished Remount Root and Kernel File Systems.
             Mounting FUSE Control File System...
             Mounting Kernel Configuration File System...
             Starting Flush Journal to Persistent Storage...
    [    5.700870] systemd-journald[214]: Received client request to flush runtime journal.
             Starting Apply Kernel Variables...
             Starting Create Static Device Nodes in /dev...
    [  OK  ] Mounted FUSE Control File System.
    [  OK  ] Mounted Kernel Configuration File System.
    [  OK  ] Finished Flush Journal to Persistent Storage.
    [  OK  ] Finished Apply Kernel Variables.
    [  OK  ] Finished Coldplug All udev Devices.
    [  OK  ] Finished Create Static Device Nodes in /dev.
    [  OK  ] Reached target Preparation for Local File Systems.
             Mounting /media/ram...
             Mounting /var/volatile...
    [    5.915781] audit: type=1334 audit(1651167747.204:2): prog-id=5 op=LOAD
    [    5.922418] audit: type=1334 audit(1651167747.212:3): prog-id=6 op=LOAD
             Starting Rule-based Manage…for Device Events and Files...
    [  OK  ] Mounted /media/ram.
    [  OK  ] Mounted /var/volatile.
             Starting Load/Save Random Seed...
    [  OK  ] Reached target Local File Systems.
             Starting Create Volatile Files and Directories...
    [  OK  ] Started Rule-based Manager for Device Events and Files.
    [  OK  ] Finished Create Volatile Files and Directories.
             Starting Network Time Synchronization...
             Starting Record System Boot/Shutdown in UTMP    6.191524] random: crng init done
    0m...
    [  OK  ] Found device /dev/ttyS2.
    [    6.224953] mc: Linux media interface: v0.10
    [  OK  ] Finished Load/Save Random Seed.
    [    6.259285] videodev: Linux video capture interface: v2.00
    [  OK  ] Finished Record System Boot/Shutdown in UTMP.
    [    6.291885] k3-dsp-rproc 64800000.dsp: assigned reserved memory node vision-apps-c71-dma-memory@b2000000
    [    6.302281] k3-dsp-rproc 64800000.dsp: configured DSP for IPC-only mode
    [    6.309092] remoteproc remoteproc0: 64800000.dsp is available
    [    6.315440] remoteproc remoteproc0: attaching to 64800000.dsp
    [    6.321673] remoteproc remoteproc0: unsupported resource 65538
    [    6.327718] k3-dsp-rproc 64800000.dsp: DSP initialized in IPC-only mode
    [    6.334433] rproc-virtio rproc-virtio.5.auto: assigned reserved memory node vision-apps-c71-dma-memory@b2000000
    [    6.355372] virtio_rpmsg_bus virtio0: rpmsg host is online
    [    6.362971] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xd
    [    6.370213] rproc-virtio rproc-virtio.5.auto: registered virtio0 (type 7)
    [    6.377062] remoteproc remoteproc0: remote processor 64800000.dsp is now attached
    [    6.385215] k3-dsp-rproc 65800000.dsp: assigned reserved memory node vision-apps-c71_1-dma-memory@b5800000
    [    6.395127] k3-dsp-rproc 65800000.dsp: configured DSP for IPC-only mode
    [    6.401831] remoteproc remoteproc1: 65800000.dsp is available
    [    6.407662] remoteproc remoteproc1: attaching to 65800000.dsp
    [    6.413615] remoteproc remoteproc1: unsupported resource 65538
    [    6.419584] k3-dsp-rproc 65800000.dsp: DSP initialized in IPC-only mode
    [    6.426220] rproc-virtio rproc-virtio.6.auto: assigned reserved memory node vision-apps-c71_1-dma-memory@b5800000
    [    6.436484] platform 41000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    [    6.448301] platform 41000000.r5f: configured R5F for IPC-only mode
    [    6.448711] virtio_rpmsg_bus virtio1: rpmsg host is online
    [    6.454835] platform 41000000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a0000000
    [    6.460112] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0xd
    [    6.461501] rproc-virtio rproc-virtio.6.auto: registered virtio1 (type 7)
    [    6.461509] remoteproc remoteproc1: remote processor 65800000.dsp is now attached
    [    6.469519] k3-dsp-rproc 66800000.dsp: assigned reserved memory node vision-apps-c71_2-dma-memory@b7800000
    [    6.469912] remoteproc remoteproc2: 41000000.r5f is available
    [    6.469960] remoteproc remoteproc2: attaching to 41000000.r5f
    [    6.470200] platform 41000000.r5f: R5F core initialized in IPC-only mode
    [    6.470209] rproc-virtio rproc-virtio.7.auto: assigned reserved memory node vision-apps-r5f-dma-memory@a0000000
    [    6.470524] virtio_rpmsg_bus virtio2: rpmsg host is online
    [    6.470542] rproc-virtio rproc-virtio.7.auto: registered virtio2 (type 7)
    [    6.470546] remoteproc remoteproc2: remote processor 41000000.r5f is now attached
    [    6.476384] platform 41400000.r5f: configured R5F for remoteproc mode
    [    6.483313] k3-dsp-rproc 66800000.dsp: configured DSP for IPC-only mode
    [    6.490954] platform 41400000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a1000000
    [    6.491908] virtio_rpmsg_bus virtio2: creating channel ti.ipc4.ping-pong addr 0xd
    [    6.492119] virtio_rpmsg_bus virtio2: creating channel rpmsg_chrdev addr 0xe
    [    6.500308] remoteproc remoteproc3: 66800000.dsp is available
    [    6.507201] remoteproc remoteproc4: 41400000.r5f is available
    [    6.511812] remoteproc remoteproc3: attaching to 66800000.dsp
    [    6.520198] platform 5c00000.r5f: configured R5F for IPC-only mode
    [    6.529024] remoteproc remoteproc3: unsupported resource 65538
    [    6.534092] remoteproc remoteproc4: Direct firmware load for j784s4-mcu-r5f0_1-fw failed with error -2
    [    6.534951] platform 5c00000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a2000000
    [    6.536329] remoteproc remoteproc5: 5c00000.r5f is available
    [    6.536377] remoteproc remoteproc5: attaching to 5c00000.r5f
    [    6.536675] platform 5c00000.r5f: R5F core initialized in IPC-only mode
    [    6.536686] rproc-virtio rproc-virtio.9.auto: assigned reserved memory node vision-apps-r5f-dma-memory@a2000000
    [    6.537656] virtio_rpmsg_bus virtio3: rpmsg host is online
    [    6.537678] rproc-virtio rproc-virtio.9.auto: registered virtio3 (type 7)
    [    6.537683] remoteproc remoteproc5: remote processor 5c00000.r5f is now attached
    [    6.537876] platform 5d00000.r5f: configured R5F for IPC-only mode
    [    6.538016] platform 5d00000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a6000000
    [    6.538737] remoteproc remoteproc6: 5d00000.r5f is available
    [    6.538799] remoteproc remoteproc6: attaching to 5d00000.r5f
    [    6.538983] platform 5d00000.r5f: R5F core initialized in IPC-only mode
    [    6.538991] rproc-virtio rproc-virtio.10.auto: assigned reserved memory node vision-apps-r5f-dma-memory@a6000000
    [    6.539377] virtio_rpmsg_bus virtio4: rpmsg host is online
    [    6.539393] rproc-virtio rproc-virtio.10.auto: registered virtio4 (type 7)
    [    6.539396] remoteproc remoteproc6: remote processor 5d00000.r5f is now attached
    [    6.540890] platform 5e00000.r5f: configured R5F for IPC-only mode
    [    6.540945] k3-dsp-rproc 66800000.dsp: DSP initialized in IPC-only mode
    [    6.540959] rproc-virtio rproc-virtio.8.auto: assigned reserved memory node vision-apps-c71_2-dma-memory@b7800000
    [    6.541507] virtio_rpmsg_bus virtio5: rpmsg host is online
    [    6.541522] rproc-virtio rproc-virtio.8.auto: registered virtio5 (type 7)
    [    6.541527] remoteproc remoteproc3: remote processor 66800000.dsp is now attached
    [    6.542200] k3-dsp-rproc 67800000.dsp: assigned reserved memory node vision-apps-c71_3-dma-memory@b9800000
    [    6.545089] virtio_rpmsg_bus virtio3: creating channel rpmsg_chrdev addr 0xd
    [    6.545359] k3-dsp-rproc 67800000.dsp: configured DSP for IPC-only mode
    [    6.545411] remoteproc remoteproc8: 67800000.dsp is available
    [    6.545486] remoteproc remoteproc8: attaching to 67800000.dsp
    [    6.545791] remoteproc remoteproc8: unsupported resource 65538
    [    6.545974] virtio_rpmsg_bus virtio5: creating channel rpmsg_chrdev addr 0xd
    [    6.546119] k3-dsp-rproc 67800000.dsp: DSP initialized in IPC-only mode
    [    6.546134] rproc-virtio rproc-virtio.11.auto: assigned reserved memory node vision-apps-c71_3-dma-memory@b9800000
    [    6.546632] virtio_rpmsg_bus virtio6: rpmsg host is online
    [    6.546651] rproc-virtio rproc-virtio.11.auto: registered virtio6 (type 7)
    [    6.546655] remoteproc remoteproc8: remote processor 67800000.dsp is now attached
    [    6.546861] virtio_rpmsg_bus virtio4: creating channel rpmsg_chrdev addr 0xd
    [    6.548374] remoteproc remoteproc4: powering up 41400000.r5f
    [    6.550546] virtio_rpmsg_bus virtio6: creating channel rpmsg_chrdev addr 0xd
    [    6.555629] platform 5e00000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a8000000
    [    6.561454] remoteproc remoteproc4: Direct firmware load for j784s4-mcu-r5f0_1-fw failed with error -2
    [    6.575754] remoteproc remoteproc7: 5e00000.r5f is available
    [    6.578077] remoteproc remoteproc4: request_firmware failed: -2
    [    6.585201] remoteproc remoteproc7: attaching to 5e00000.r5f
    [    6.713048] omap_rng 4e10000.rng: Random Number Generator ver. 241b34c
    [    6.713958] cdns-ufshcd 4e84000.ufs: ufshcd_populate_vreg: Unable to find vdd-hba-supply regulator, assuming enabled
    [    6.717180] platform 5e00000.r5f: R5F core initialized in IPC-only mode
    [    6.717200] rproc-virtio rproc-virtio.12.auto: assigned reserved memory node vision-apps-r5f-dma-memory@a8000000
    [    6.720338] virtio_rpmsg_bus virtio7: rpmsg host is online
    [    6.720370] rproc-virtio rproc-virtio.12.auto: registered virtio7 (type 7)
    [    6.720376] remoteproc remoteproc7: remote processor 5e00000.r5f is now attached
    [    6.720599] platform 5f00000.r5f: configured R5F for IPC-only mode
    [    6.720827] platform 5f00000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a9000000
    [    6.721669] remoteproc remoteproc9: 5f00000.r5f is available
    [    6.721734] remoteproc remoteproc9: attaching to 5f00000.r5f
    [    6.721976] platform 5f00000.r5f: R5F core initialized in IPC-only mode
    [    6.721985] rproc-virtio rproc-virtio.13.auto: assigned reserved memory node vision-apps-r5f-dma-memory@a9000000
    [    6.722325] virtio_rpmsg_bus virtio8: rpmsg host is online
    [    6.722346] rproc-virtio rproc-virtio.13.auto: registered virtio8 (type 7)
    [    6.722351] remoteproc remoteproc9: remote processor 5f00000.r5f is now attached
    [    6.724216] platform 5900000.r5f: configured R5F for IPC-only mode
    [    6.727301] virtio_rpmsg_bus virtio7: creating channel rpmsg_chrdev addr 0xd
    [    6.729268] virtio_rpmsg_bus virtio8: creating channel rpmsg_chrdev addr 0xd
    [    6.730358] cdns-ufshcd 4e84000.ufs: ufshcd_populate_vreg: Unable to find vcc-supply regulator, assuming enabled
    [    6.736655] platform 5900000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@aa000000
    [    6.745522] cdns-ufshcd 4e84000.ufs: ufshcd_populate_vreg: Unable to find vccq-supply regulator, assuming enabled
    [    6.750776] remoteproc remoteproc10: 5900000.r5f is available
    [    6.756663] cdns-ufshcd 4e84000.ufs: ufshcd_populate_vreg: Unable to find vccq2-supply regulator, assuming enabled
    [    6.766754] remoteproc remoteproc10: attaching to 5900000.r5f
    [  OK  ] Started Network Time Synchronizatio[    7.114219] scsi host0: ufshcd
    n.
    [    7.114429] platform 5900000.r5f: R5F core initialized in IPC-only mode
    [    7.129966] rproc-virtio rproc-virtio.14.auto: assigned reserved memory node vision-apps-r5f-dma-memory@aa000000
    [    7.140803] virtio_rpmsg_bus virtio9: rpmsg host is online
    [    7.146968] rproc-virtio rproc-virtio.14.auto: registered virtio9 (type 7)
    [    7.147659] virtio_rpmsg_bus virtio9: creating channel rpmsg_chrdev addr 0xd
    [    7.154518] remoteproc remoteproc10: remote processor 5900000.r5f is now attached
    [    7.168760] platform 5a00000.r5f: configured R5F for IPC-only mode
    [    7.175204] platform 5a00000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@ab000000
    [    7.184638] remoteproc remoteproc11: 5a00000.r5f is available
    [    7.190420] remoteproc remoteproc11: attaching to 5a00000.r5f
    [    7.196419] platform 5a00000.r5f: R5F core initialized in IPC-only mode
    [    7.203032] rproc-virtio rproc-virtio.15.auto: assigned reserved memory node vision-apps-r5f-dma-memory@ab000000
    [    7.213670] virtio_rpmsg_bus virtio10: rpmsg host is online
    [    7.219271] rproc-virtio rproc-virtio.15.auto: registered virtio10 (type 7)
    [    7.220157] virtio_rpmsg_bus virtio10: creating channel rpmsg_chrdev addr 0xd
    [    7.226232] remoteproc remoteproc11: remote processor 5a00000.r5f is now attached
    [  OK  ] Reached target System Initializatio[    7.241203] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0x15
    n.
    [    7.253898] virtio_rpmsg_bus virtio10: creating channel rpmsg_chrdev addr 0x15
    [    7.261914] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xe
    [    7.269556] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0x15
    [    7.276758] virtio_rpmsg_bus virtio10: creating channel ti.ipc4.ping-pong addr 0xe
    [  OK  ] Started Daily Cleanup of Temporary [    7.284531] virtio_rpmsg_bus virtio5: creating channel rpmsg_chrdev addr 0x15
    Directories.
    [    7.297105] virtio_rpmsg_bus virtio1: creating channel ti.ipc4.ping-pong addr 0xe
    [    7.306241] virtio_rpmsg_bus virtio6: creating channel rpmsg_chrdev addr 0x15
    [    7.313454] virtio_rpmsg_bus virtio5: creating channel ti.ipc4.ping-pong addr 0xe
    [  OK  ] Reached target System Time Set.[    7.321162] virtio_rpmsg_bus virtio7: creating channel rpmsg_chrdev addr 0x15
    
    [    7.333800] virtio_rpmsg_bus virtio6: creating channel ti.ipc4.ping-pong addr 0xe
    [    7.341603] virtio_rpmsg_bus virtio8: creating channel rpmsg_chrdev addr 0x15
    [    7.348967] virtio_rpmsg_bus virtio9: creating channel rpmsg_chrdev addr 0x15
    [    7.356255] virtio_rpmsg_bus virtio9: creating channel ti.ipc4.ping-pong addr 0xe
    [    7.363802] virtio_rpmsg_bus virtio8: creating channel ti.ipc4.ping-pong addr 0xe
    [    7.371357] virtio_rpmsg_bus virtio7: creating channel ti.ipc4.ping-pong addr 0xe
    [  OK  ] Started Daily rotation of log files[    7.379031] virtio_rpmsg_bus virtio3: creating channel rpmsg_chrdev addr 0x15
    .
    [    7.391726] virtio_rpmsg_bus virtio4: creating channel rpmsg_chrdev addr 0x15
    [    7.399428] virtio_rpmsg_bus virtio4: creating channel ti.ipc4.ping-pong addr 0xe
    [    7.406959] virtio_rpmsg_bus virtio3: creating channel ti.ethfw.notifyservice addr 0x72
    [  OK  ] Reached target Timer Units.
    [    7.415120] virtio_rpmsg_bus virtio3: creating channel ti.ethfw.ethdevice addr 0x71
    [  OK  ] Reached target Hardware activated USB gadget.
    [  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
    [    7.456929] virtio_rpmsg_bus virtio3: creating channel ti.ipc4.ping-pong addr 0xe
    [  OK  ] Listening on D-Bus System Message Bus Socket.
             Starting Docker Socket for the API...
    [  OK  ] Listening on dropbear.socket.
    [  OK  ] Listening on PC/SC Smart Card Daemon Activation Socket.
    [    7.551003] cdns-ufshcd 4e84000.ufs: link startup failed 1
    [    7.556498] cdns-ufshcd 4e84000.ufs: UFS Host state=0
    [    7.561551] cdns-ufshcd 4e84000.ufs: outstanding reqs=0x0 tasks=0x0
    [    7.561556] cdns-ufshcd 4e84000.ufs: saved_err=0x0, saved_uic_err=0x0
    [    7.561559] cdns-ufshcd 4e84000.ufs: Device power mode=1, UIC link state=0
    [    7.581092] cdns-ufshcd 4e84000.ufs: PM in progress=0, sys. suspended=0
             Starting Weston socket...
    [    7.587697] cdns-ufshcd 4e84000.ufs: Auto BKOPS=0, Host self-block=0
    [    7.598280] cdns-ufshcd 4e84000.ufs: Clk gate=1
    [    7.602803] cdns-ufshcd 4e84000.ufs: last_hibern8_exit_tstamp at 0 us, hibern8_exit_cnt=0
    [    7.610967] cdns-ufshcd 4e84000.ufs: last intr at 7550979 us, last intr status=0x404
    [    7.618700] cdns-ufshcd 4e84000.ufs: error handling flags=0x0, req. abort count=0
    [    7.626174] cdns-ufshcd 4e84000.ufs: hba->ufs_version=0x210, Host capabilities=0x1587031f, caps=0x0
    [    7.635210] cdns-ufshcd 4e84000.ufs: quirks=0x0, dev. quirks=0x0
    [    7.641206] cdns-ufshcd 4e84000.ufs: clk: core_clk, rate: 250000000
    [    7.647463] cdns-ufshcd 4e84000.ufs: clk: phy_clk, rate: 19200000
    [    7.653544] cdns-ufshcd 4e84000.ufs: clk: ref_clk, rate: 19200000
    [    7.659654] host_regs: 00000000: 1587031f 00000000 00000210 00000000
    [    7.666001] host_regs: 00000010: 00000000 00000000 00000000 00000000
    [    7.672411] host_regs: 00000020: 00000000 00000470 00000000 00000000
    [    7.678761] host_regs: 00000030: 00000008 00000001 00000000 00000000
    [    7.685120] host_regs: 00000040: 00000000 00000000 00000000 00000000
    [    7.685125] host_regs: 00000050: 00000000 00000000 00000000 00000000
    [    7.685127] host_regs: 00000060: 00000000 00000000 00000000 00000000
    [    7.685130] host_regs: 00000070: 00000000 00000000 00000000 00000000
             Starting Console System Startup Logging...[    7.710486] host_regs: 00000080: 00000000 00000000 00000000 00000000
    
    [    7.722373] host_regs: 00000090: 00000016 00000000 00000001 00000000
    [    7.728880] cdns-ufshcd 4e84000.ufs: No record of pa_err
    [    7.734191] cdns-ufshcd 4e84000.ufs: No record of dl_err
    [    7.734196] cdns-ufshcd 4e84000.ufs: No record of nl_err
    [    7.734199] cdns-ufshcd 4e84000.ufs: No record of tl_err
    [    7.750099] cdns-ufshcd 4e84000.ufs: No record of dme_err
             Starting D-Bus System Message Bus...[    7.755514] cdns-ufshcd 4e84000.ufs: No record of auto_hibern8_err
    
    [    7.766685] cdns-ufshcd 4e84000.ufs: No record of fatal_err
    [    7.772405] cdns-ufshcd 4e84000.ufs: link_startup_fail[0] = 0x1 at 7550996 us
    [    7.779534] cdns-ufshcd 4e84000.ufs: link_startup_fail: total cnt=1
    [    7.785804] cdns-ufshcd 4e84000.ufs: No record of resume_fail
    [    7.791560] cdns-ufshcd 4e84000.ufs: No record of suspend_fail
             Starting Reboot and dump vmcore via kexec.[    7.797394] cdns-ufshcd 4e84000.ufs: No record of dev_reset
    ..
    [    7.808511] cdns-ufshcd 4e84000.ufs: No record of host_reset
    [    7.814498] cdns-ufshcd 4e84000.ufs: No record of task_abort
    [  OK  ] Listening on Docker Socket for the API.
    [  OK  ] Listening on Weston socket.
    [  OK  ] Finished Console System Startup Logging.
    [  OK  ] Finished Reboot and dump vmcore via[    7.871468] ti_cpsw_proxy_client virtio3.ti.ethfw.ethdevice.-1.113: 1 Virtual Switch Port(s), 1 Virtual MAC Only Port(s)
     kexec.
    [    7.883304] ti_cpsw_proxy_client virtio3.ti.ethfw.ethdevice.-1.113: Virt Port: 0, Type: Switch Port, Iface: eth2, Token: 0
    [    7.895433] ti_cpsw_proxy_client virtio3.ti.ethfw.ethdevice.-1.113: Virt Port: 4, Type: MAC Port, Iface: eth3, Token: 400
    [  OK  ] Started D-Bus System Message Bus.
    [  OK  ] Created slice Slice /system/systemd-fsck.
    [  OK  ] Reached target Socket Units.
    [  OK  ] Reached target Basic System.
    [  OK  ] Started Job spooling tools.
    [  OK  ] Started Periodic Command Scheduler.
             Starting DEMO...
             Starting Print notice about GPLv3 packages...
             Starting IPv6 Packet Filtering Framework...
             Starting IPv4 Packet Filtering Framework...
    [  OK  ] Started irqbalance daemon.
             Starting Telephony service...
             Starting Expand the rootfs…ll size of the boot device....
    [  OK  ] Started startwlanap.
    [  OK  ] Started startwlansta.
    [  OK  ] Started strongSwan IPsec I…IKEv2 daemon using ipsec.conf.
    [    8.217807] audit: type=1334 audit(1651486750.992:4): prog-id=7 op=LOAD
    [    8.224476] audit: type=1334 audit(1651486750.996:5): prog-id=8 op=LOAD
             Starting User Login Management...
    [  OK  ] Started TEE Supplicant.
             Starting Telnet Server...
    [  OK  ] Started DEMO.
    [FAILED] Failed to start Print notice about GPLv3 packages.
    See 'systemctl status gplv3-notice.service' for details.
    [  OK  ] Finished IPv6 Packet Filtering Framework.
    [  OK  ] Finished IPv4 Packet Filtering Framework.
    [  OK  ] Finished Telnet Server.
    [  OK  ] Started Telephony service.
    [  OK  ] Found device /dev/mmcblk1p1.
    [  OK  ] Reached target Preparation for Network.
             Starting File System Check on /dev/mmcblk1p1...
             Starting Network Configuration...
    [  OK  ] Started User Login Management.
    [  OK  ] Finished Expand the rootfs…full s[    9.020199] cfg80211: Loading compiled-in X.509 certificates for regulatory database
    ize of the boot device..
    [  OK  ] Listening on Load/Save RF …itch S[    9.037845] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
    tatus /dev/rfkill Watch.
    [    9.128811] Bluetooth: Core ver 2.22
    [    9.132559] NET: Registered PF_BLUETOOTH protocol family
    [    9.137878] Bluetooth: HCI device and connection manager initialized
    [    9.144281] Bluetooth: HCI socket layer initialized
    [    9.149158] Bluetooth: L2CAP socket layer initialized
    [    9.154244] Bluetooth: SCO socket layer initialized
    [  OK  ] Finished File System Check on /dev/mmcblk1p1.
    [    9.437633] ti_cpsw_proxy_client virtio3.ti.ethfw.ethdevice.-1.113: started virt port: 4 on interface eth3
             Mounting /run/media/boot-mmcblk1p1...
    [    9.460947] ti_cpsw_proxy_client virtio3.ti.ethfw.ethdevice.-1.113: started virt port: 0 on interface eth2
    [  OK  ] Started Network Configuration.[    9.473710] am65-cpsw-nuss c200000.ethernet eth1: configuring for fixed/rgmii-rxid link mode
    
    [    9.485859] am65-cpsw-nuss c200000.ethernet eth1: Link is Up - 1Gbps/Full - flow control off
    [    9.495508] 
    [    9.495508] dansphy----RTL9000Bx_Initial_Configuration start.
    [    9.505282] 
    [    9.505282] dansphy----RTL9000Bx_Initial_Configuration end = 0.
             Starting Network Name Resolution...
    [    9.513177] 
    [    9.513177] dansphy----RTL9000Bx_Initial_Configuration 0===fb03.
    [    9.525928] 
    [    9.525928] dansphy----RTL9000Bx_Initial_Configuration 1===4010.
    [    9.533837] 
    [    9.533837] dansphy----RTL9000Bx_Initial_Configuration 2===4717.
    [    9.541456] am65-cpsw-nuss 46000000.ethernet eth0: PHY [46000f00.mdio:00] driver [RTL9000AA_RTL9000AN Ethernet] (irq=POLL)
    [    9.552510] am65-cpsw-nuss 46000000.ethernet eth0: configuring for phy/rgmii-rxid link mode
    [    9.562091] am65-cpsw-nuss 46000000.ethernet eth0: Link is Up - 100Mbps/Full - flow control off
    [    9.570852] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
    [  OK  ] Mounted /run/media/boot-mmcblk1p1.
    [  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...
             Starting containerd container runtime...
    [  OK  ] Started Netperf Benchmark Server.
    [  OK  ] Started NFS status monitor for NFSv2/3 locking..
             Starting Simple Network Ma…ent Protocol (SNMP) Daemon....
             Starting Permit User Sessions...
    [FAILED] Failed to start Enable and…figure wl18xx bluetooth stack.
    See 'systemctl status bt-enable.service' for details.
    [  OK  ] Finished Permit User Sessions.
    [  OK  ] Started Avahi mDNS/DNS-SD Stack.
    [  OK  ] Started Getty on tty1.
    [  OK  ] Started Serial Getty on ttyS2.
    [  OK  ] Reached target Login Prompts.
             Starting Synchronize System and HW clocks...
             Starting Weston, a Wayland…ositor, as a system service...
    [   10.720247] audit: type=1334 audit(1651486753.492:6): prog-id=9 op=LOAD
    [   10.726881] audit: type=1334 audit(1651486753.500:7): prog-id=10 op=LOAD
             Starting User Database Manager...
    [  OK  ] Started User Database Manager.
    [  OK  ] Created slice User Slice of UID 1000.
             Starting User Runtime Directory /run/user/1000...
    [  OK  ] Finished User Runtime Directory /run/user/1000.
             Starting User Manager for UID 1000...
    [   11.185547] audit: type=1006 audit(1651486753.960:8): pid=705 uid=0 old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=1 res=1
    [   11.198106] audit: type=1300 audit(1651486753.960:8): arch=c00000b7 syscall=64 success=yes exit=4 a0=8 a1=ffffd02d9358 a2=4 a3=ffff8e206020 items=0 ppid=1 pid=705 auid=1000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=1 comm="(systemd)" exe="/lib/systemd/systemd" key=(null)
    [   11.224587] audit: type=1327 audit(1651486753.960:8): proctitle="(systemd)"
    [  OK  ] Finished Synchronize System and HW clocks.
    [  OK  ] Started User Manager for UID 1000.
    [  OK  ] Started Session c1 of User weston.
    [   11.837454] audit: type=1006 audit(1651486754.608:9): pid=683 uid=0 old-auid=4294967295 auid=1000 tty=tty7 old-ses=4294967295 ses=2 res=1
    [   11.849807] audit: type=1300 audit(1651486754.608:9): arch=c00000b7 syscall=64 success=yes exit=4 a0=8 a1=ffffd02d9358 a2=4 a3=ffff8e206020 items=0 ppid=1 pid=683 auid=1000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=tty7 ses=2 comm="(weston)" exe="/lib/systemd/systemd" key=(null)
    [   11.876006] audit: type=1327 audit(1651486754.608:9): proctitle="(weston)"
    [FAILED] Failed to start Weston, a …mpositor, as a system service.
    See 'systemctl status weston.service' for details.
    [  OK  ] Started Simple Network Man…ement Protocol (SNMP) Daemon..
    
     _____                    _____           _         _   
    |  _  |___ ___ ___ ___   |  _  |___ ___  |_|___ ___| |_ 
    |     |  _| .'| . | . |  |   __|  _| . | | | -_|  _|  _|
    |__|__|_| |__,|_  |___|  |__|  |_| |___|_| |___|___|_|  
                  |___|                    |___|            
    
    Arago Project j784s4-evm -
    
    Arago 2023.10 j784s4-evm -
    
    j784s4-evm login: root
    [   16.740063] audit: type=1006 audit(1651486759.512:10): pid=733 uid=0 old-auid=4294967295 auid=0 tty=(none) old-ses=4294967295 ses=3 res=1
    [   16.752440] audit: type=1300 audit(1651486759.512:10): arch=c00000b7 syscall=64 success=yes exit=1 a0=8 a1=ffffd02d9358 a2=1 a3=ffff8e206020 items=0 ppid=1 pid=733 auid=0 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=3 comm="(systemd)" exe="/lib/systemd/systemd" key=(null)
    [   16.778729] audit: type=1327 audit(1651486759.512:10): proctitle="(systemd)"
    [   16.785786] audit: type=1334 audit(1651486759.524:11): prog-id=11 op=LOAD
    [   16.792577] audit: type=1300 audit(1651486759.524:11): arch=c00000b7 syscall=280 success=yes exit=8 a0=5 a1=ffffe0d74410 a2=78 a3=0 items=0 ppid=1 pid=733 auid=0 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=3 comm="systemd" exe="/lib/systemd/systemd" key=(null)
    [   16.817912] audit: type=1327 audit(1651486759.524:11): proctitle="(systemd)"
    [   16.824954] audit: type=1334 audit(1651486759.524:12): prog-id=11 op=UNLOAD
    [   16.831906] audit: type=1334 audit(1651486759.524:13): prog-id=12 op=LOAD
    [   16.838682] audit: type=1300 audit(1651486759.524:13): arch=c00000b7 syscall=280 success=yes exit=8 a0=5 a1=ffffe0d744b0 a2=78 a3=0 items=0 ppid=1 pid=733 auid=0 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=3 comm="systemd" exe="/lib/systemd/systemd" key=(null)
    [   16.864009] audit: type=1327 audit(1651486759.524:13): proctitle="(systemd)"
    root@j784s4-evm:~# [   17.837295] vdec 4210000.video-codec: VPU wakeup(W5_VPU_REMAP_CORE_START) timeout
    [   17.843537] vdec 4220000.video-codec: VPU wakeup(W5_VPU_REMAP_CORE_START) timeout
    [   18.086336] platform main-r5fss-cpsw9g-virt-mac0: deferred probe pending
    [   18.093030] platform 2910000.pcie: deferred probe pending
    [   18.098419] platform regulator-sd: deferred probe pending
    [   18.103810] platform regulator-dp0-prw: deferred probe pending
    [   18.109633] platform regulator-dp1-prw: deferred probe pending
    [   18.115454] platform 2900000.pcie: deferred probe pending
    [   18.120841] platform dp0-connector: deferred probe pending
    [   18.126316] platform 4800000.dsi: deferred probe pending
    [   18.131616] platform a000000.dp-bridge: deferred probe pending
    [   18.137438] platform main-r5fss-cpsw9g-virt-mac1: deferred probe pending
    
    root@j784s4-evm:~# ifconfig
    eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
            inet6 fe80::2ab5:e8ff:feda:3266  prefixlen 64  scopeid 0x20<link>
            ether 28:b5:e8:da:32:66  txqueuelen 1000  (Ethernet)
            RX packets 0  bytes 0 (0.0 B)
            RX errors 0  dropped 0  overruns 0  frame 0
            TX packets 19  bytes 2686 (2.6 KiB)
            TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
    
    eth1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
            inet6 fe80::fce7:33ff:fec9:ab2d  prefixlen 64  scopeid 0x20<link>
            ether fe:e7:33:c9:ab:2d  txqueuelen 1000  (Ethernet)
            RX packets 221  bytes 16236 (15.8 KiB)
            RX errors 0  dropped 204  overruns 0  frame 0
            TX packets 19  bytes 2686 (2.6 KiB)
            TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
    
    eth2: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
            inet6 fe80::7293:51ff:fe13:7a99  prefixlen 64  scopeid 0x20<link>
            ether 70:93:51:13:7a:99  txqueuelen 1000  (Ethernet)
            RX packets 0  bytes 0 (0.0 B)
            RX errors 0  dropped 0  overruns 0  frame 0
            TX packets 20  bytes 3036 (2.9 KiB)
            TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
    
    eth3: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
            inet6 fe80::72c3:26ff:fec5:8025  prefixlen 64  scopeid 0x20<link>
            ether 70:c3:26:c5:80:25  txqueuelen 1000  (Ethernet)
            RX packets 0  bytes 0 (0.0 B)
            RX errors 0  dropped 0  overruns 0  frame 0
            TX packets 21  bytes 3106 (3.0 KiB)
            TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
    
    lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
            inet 127.0.0.1  netmask 255.0.0.0
            inet6 ::1  prefixlen 128  scopeid 0x10<host>
            loop  txqueuelen 1000  (Local Loopback)
            RX packets 92  bytes 7654 (7.4 KiB)
            RX errors 0  dropped 0  overruns 0  frame 0
            TX packets 92  bytes 7654 (7.4 KiB)
            TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
    
    root@j784s4-evm:~# /opt/vivi  sion_apps/vision_apps_init.sh 
    root@j784s4-evm:~# [MCU2_0]      4.696980 s: CIO: Init ... Done !!!
    [MCU2_0]      4.697015 s: ### CPU Frequency = 1000000000 Hz
    [MCU2_0]      4.697046 s: CPU is running FreeRTOS
    [MCU2_0]      4.697064 s: APP: Init ... !!!
    [MCU2_0]      4.697099 s: SCICLIENT: Init ... !!!
    [MCU2_0]      4.697238 s: SCICLIENT: DMSC FW version [9.1.2--v09.01.02 (Kool Koala)]
    [MCU2_0]      4.697268 s: SCICLIENT: DMSC FW revision 0x9  
    [MCU2_0]      4.697288 s: SCICLIENT: DMSC FW ABI revision 3.1
    [MCU2_0]      4.697309 s: SCICLIENT: Init ... Done !!!
    [MCU2_0]      4.697328 s: UDMA: Init ... !!!
    [MCU2_0]      4.698188 s: UDMA: Init ... Done !!!
    [MCU2_0]      4.698219 s: UDMA: Init for CSITX/CSIRX ... !!!
    [MCU2_0]      4.698660 s: UDMA: Init for CSITX/CSIRX ... Done !!!
    [MCU2_0]      4.698689 s: MEM: Init ... !!!
    [MCU2_0]      4.698713 s: MEM: Created heap (DDR_LOCAL_MEM, id=0, flags=0x00000004) @ bc800000 of size 268435456 bytes !!!
    [MCU2_0]      4.698761 s: MEM: Created heap (L3_MEM, id=1, flags=0x00000000) @ 60000000 of size 262144 bytes !!!
    [MCU2_0]      4.698797 s: MEM: Init ... Done !!!
    [MCU2_0]      4.698815 s: IPC: Init ... !!!
    [MCU2_0]      4.698857 s: IPC: 11 CPUs participating in IPC !!!
    [MCU2_0]      4.698890 s: IPC: Waiting for HLOS to be ready ... !!!
    [MCU2_0]     15.465391 s: IPC: HLOS is ready !!!
    [MCU2_0]     15.472960 s: IPC: Init ... Done !!!
    [MCU2_0]     15.473014 s: APP: Syncing with 10 CPUs ... !!!
    [MCU2_0]     16.148100 s: APP: Syncing with 10 CPUs ... Done !!!
    [MCU2_0]     16.148135 s: REMOTE_SERVICE: Init ... !!!
    [MCU2_0]     16.148950 s: REMOTE_SERVICE: Init ... Done !!!
    [MCU2_0]     16.148989 s: ETHFW: Init ... !!!
    [MCU2_0]     16.255103 s: ETHFW: Warning: Using 6 random MAC address(es)
    [MCU2_0]     16.255147 s: ETHFW: Warning: Using 6 MAC address(es) from static pool
    [MCU2_0]     16.255282 s: ETHFW: CPSW recovery is not enabled
    [MCU2_0]     16.255331 s: ETHFW: Shared multicasts:
    [MCU2_0]     16.255361 s: ETHFW:   01:00:5e:00:00:01
    [MCU2_0]     16.255386 s: ETHFW:   01:00:5e:00:00:fb
    [MCU2_0]     16.255411 s: ETHFW:   01:00:5e:00:00:fc
    [MCU2_0]     16.255435 s: ETHFW:   33:33:00:00:00:01
    [MCU2_0]     16.255459 s: ETHFW:   33:33:ff:1d:92:c2
    [MCU2_0]     16.255483 s: ETHFW:   01:80:c2:00:00:00
    [MCU2_0]     16.255507 s: ETHFW:   01:80:c2:00:00:03
    [MCU2_0]     16.255528 s: ETHFW: Reserved multicasts:
    [MCU2_0]     16.255555 s: ETHFW:   01:80:c2:00:00:0e
    [MCU2_0]     16.255581 s: ETHFW:   01:1b:19:00:00:00
    [MCU2_0]     16.255702 s: EnetMcm: CPSW_9G on MAIN NAVSS
    [MCU2_0]     16.266315 s: PHY 0 is alive
    [MCU2_0]     16.266353 s: PHY 1 is alive
    [MCU2_0]     16.270311 s: ETHFW: 0 VLAN entries added in ALE table
    [MCU2_0]     16.270484 s: 
    [MCU2_0] ETHFW Version   : 0.04.00
    [MCU2_0]     16.270516 s: ETHFW Build Date: Jul  4, 2024
    [MCU2_0]     16.270537 s: ETHFW Build Time: 12:03:25
    [MCU2_0]     16.270557 s: ETHFW Commit SHA: 0bf6a31c
    [MCU2_0]     16.270595 s: ETHFW: Init ... DONE !!!
    [MCU2_0]     16.270793 s: unibase-1.1.4-jacinto
    [MCU2_0]     16.271292 s: Starting lwIP, local interface IP is dhcp-enabled
    [MCU2_0]     16.271771 s: RTOS: semhandle was NULL
    [MCU2_0]     16.276916 s: ETHFW: Host MAC address: 70:b5:bd:bd:03:d1
    [MCU2_0]     16.278129 s: ETHFW: Enable gPTP on MAC port 3 (tilld3)
    [MCU2_0]     16.278169 s: ETHFW: Enable gPTP on MAC port 5 (tilld5)
    [MCU2_0]     16.278242 s: ETHFW: TimeSync PTP enabled
    [MCU2_0]     16.278267 s: ETHFW: Remove server Init ... !!!
    [MCU2_0]     16.278328 s: ETHFW: Virtual port configuration:
    [MCU2_0]     16.278779 s: ETHFW: CpswProxyServer: initialization completed (core: mcu2_0)
    [MCU2_0]     16.278816 s: ETHFW: Remove server Init ... DONE !!!
    [MCU2_0]     16.279665 s: [LWIPIF_LWIP] Enet LLD netif initialized successfully
    [MCU2_0]     16.279724 s: Added interface 'ti0', IP is 0.0.0.0
    [MCU2_0]     16.328839 s: FVID2: Init ... !!!
    [MCU2_0]     16.328902 s: FVID2: Init ... Done !!!
    [MCU2_0]     16.329025 s: DSS: Init ... !!!
    [MCU2_0]     16.329046 s: DSS: Display type is eDP !!!
    [MCU2_0]     16.329064 s: DSS: M2M Path is enabled !!!
    [MCU2_0]     16.329082 s: DSS: SoC init ... !!!
    [MCU2_0]     16.329482 s: DSS: SoC init ... Done !!!
    [MCU2_0]     16.329504 s: DSS: Board init ... !!!
    [MCU2_0]     16.329522 s: DSS: Board init ... Done !!!
    [MCU2_0]     16.348494 s: DSS: Init ... Done !!!
    [MCU2_0]     16.348540 s: VHWA: VPAC Init ... !!!
    [MCU2_0]     16.348648 s: VHWA: LDC Init ... !!!
    [MCU2_0]     16.350357 s: VHWA: LDC Init ... Done !!!
    [MCU2_0]     16.350401 s: VHWA: MSC Init ... !!!
    [MCU2_0]     16.356368 s: VHWA: MSC Init ... Done !!!
    [MCU2_0]     16.356406 s: VHWA: NF Init ... !!!
    [MCU2_0]     16.357293 s: VHWA: NF Init ... Done !!!
    [MCU2_0]     16.357325 s: VHWA: VISS Init ... !!!
    [MCU2_0]     16.362814 s: VHWA: VISS Init ... Done !!!
    [MCU2_0]     16.362903 s: VHWA: VPAC Init ... Done !!!
    [MCU2_0]     16.362940 s:  VX_ZONE_INIT:Enabled
    [MCU2_0]     16.362961 s:  VX_ZONE_ERROR:Enabled
    [MCU2_0]     16.362980 s:  VX_ZONE_WARNING:Enabled
    [MCU2_0]     16.366327 s:  VX_ZONE_INIT:[tivxInitLocal:130] Initialization Done !!!
    [MCU2_0]     16.366358 s: APP: OpenVX Target kernel init ... !!!
    [MCU2_0]     16.373728 s: APP: Register tivxRegisterFrontCameraTargetIpuKernels to CPU_mcu2_0 !!!
    [MCU2_0]     16.373910 s: APP: OpenVX Target kernel init ... Done !!!
    [MCU2_0]     16.373941 s: CSI2RX: Init ... !!!
    [MCU2_0]     16.374452 s: CSI2RX: Init ... Done !!!
    [MCU2_0]     16.374477 s: CSI2TX: Init ... !!!
    [MCU2_0]     16.374703 s: CSI2TX: Init ... Done !!!
    [MCU2_0]     16.374727 s: ISS: Init ... !!!
    [MCU2_0]     16.374753 s: IssSensor_Init ... Done !!!
    [MCU2_0]     16.374813 s: IttRemoteServer_Init ... Done !!!
    [MCU2_0]     16.374897 s: ISS: Init ... Done !!!
    [MCU2_0]     16.374923 s: VISS REMOTE SERVICE: Init ... !!!
    [MCU2_0]     16.374987 s: VISS REMOTE SERVICE: Init ... Done !!!
    [MCU2_0]     16.375011 s: UDMA Copy: Init ... !!!
    [MCU2_0]     16.375981 s: UDMA Copy: Init ... Done !!!
    [MCU2_0]     16.376051 s: APP: Init ... Done !!!
    [MCU2_0]     16.376078 s: APP: Run ... !!!
    [MCU2_0]     16.376096 s: IPC: Starting echo test ...
    [MCU2_0]     16.377345 s: APP: Run ... Done !!!
    [MCU2_0]     16.384469 s: ****** appMain: Init completed! *****
    [MCU2_0]     16.385993 s: IPC: Echo status: mpu1_0[x] mcu2_0[s] mcu2_1[P] mcu3_0[.] mcu3_1[.] mcu4_0[.] mcu4_1[.] c7x_1[.] c7x_2[.] c7x_3[.] c7x_4[.] 
    [MCU2_0]     16.386078 s: IPC: Echo status: mpu1_0[x] mcu2_0[s] mcu2_1[P] mcu3_0[P] mcu3_1[.] mcu4_0[.] mcu4_1[.] c7x_1[.] c7x_2[.] c7x_3[.] c7x_4[.] 
    [MCU2_0]     16.386152 s: IPC: Echo status: mpu1_0[x] mcu2_0[s] mcu2_1[P] mcu3_0[P] mcu3_1[P] mcu4_0[.] mcu4_1[.] c7x_1[.] c7x_2[.] c7x_3[.] c7x_4[.] 
    [MCU2_0]     16.386224 s: IPC: Echo status: mpu1_0[x] mcu2_0[s] mcu2_1[P] mcu3_0[P] mcu3_1[P] mcu4_0[P] mcu4_1[.] c7x_1[.] c7x_2[.] c7x_3[.] c7x_4[.] 
    [MCU2_0]     16.386297 s: IPC: Echo status: mpu1_0[x] mcu2_0[s] mcu2_1[P] mcu3_0[P] mcu3_1[P] mcu4_0[P] mcu4_1[P] c7x_1[.] c7x_2[.] c7x_3[.] c7x_4[.] 
    [MCU2_0]     16.386369 s: IPC: Echo status: mpu1_0[x] mcu2_0[s] mcu2_1[P] mcu3_0[P] mcu3_1[P] mcu4_0[P] mcu4_1[P] c7x_1[P] c7x_2[.] c7x_3[.] c7x_4[.] 
    [MCU2_0]     16.386441 s: IPC: Echo status: mpu1_0[x] mcu2_0[s] mcu2_1[P] mcu3_0[P] mcu3_1[P] mcu4_0[P] mcu4_1[P] c7x_1[P] c7x_2[P] c7x_3[.] c7x_4[.] 
    [MCU2_0]     16.386510 s: IPC: Echo status: mpu1_0[x] mcu2_0[s] mcu2_1[P] mcu3_0[P] mcu3_1[P] mcu4_0[P] mcu4_1[P] c7x_1[P] c7x_2[P] c7x_3[P] c7x_4[.] 
    [MCU2_0]     16.386581 s: IPC: Echo status: mpu1_0[x] mcu2_0[s] mcu2_1[P] mcu3_0[P] mcu3_1[P] mcu4_0[P] mcu4_1[P] c7x_1[P] c7x_2[P] c7x_3[P] c7x_4[P] 
    [MCU2_0]     16.396835 s: ***** appSPI Enter! flag:1 *****
    [MCU2_0]     16.791011 s: ETHFW: VIRT_PORT_INFO | C2S | core=0 endpt=1026
    [MCU2_0]     16.791055 s: ETHFW: VIRT_PORT_INFO | S2C | switchPortMask=1 macPortMask=10
    [MCU2_0]     16.791167 s: ETHFW: ATTACH_EXT | C2S | core=0 endpt=1026 virtPort=0
    [MCU2_0]     16.791332 s: ETHFW: ATTACH_EXT | S2C | token=0 rxMtu=1522 features=8 flow=114,0 rxPsil=0x4a00 txPsil=0xca00 macAddr=70:93:51:13:7a:99
    [MCU2_0]     16.791468 s: ETHFW: ATTACH_EXT | C2S | core=0 endpt=1026 virtPort=4
    [MCU2_0]     16.791574 s: ETHFW: ATTACH_EXT | S2C | token=400 rxMtu=1522 features=0 flow=114,1 rxPsil=0x4a00 txPsil=0xca01 macAddr=70:c3:26:c5:80:25
    [MCU2_0]     17.270005 s: INF:cbase:cb_rawsock_open:dmaTxChId=-1 dmaRxChId=-1 nTxPkts=0 nRxPkts=0 pktSize=0
    [MCU2_0] INF:gptp:gptpnet_init:Open lldtsync OK!
    [MCU2_0] INF:gptp:000011-625162:domainIndex=0, GM changed old=00:00:00:00:00:00:00:00, new=70:B5:BD:FF:FE:BD:03:D1
    [MCU2_0] INF:gptp:set_phase_offsetGM:domainNumber=0, New adjustment(New GM?)
    [MCU2_0]     17.396835 s: appSPI Delay......(19)
    [MCU2_0]     18.362396 s: ETHFW: REGISTER_MAC | C2S | core=0 endpt=1026 token=400 macAdd=70:c3:26:c5:80:25 flowIdx=114,1
    [MCU2_0]     18.365294 s: ETHFW: REGISTER_MAC | S2C | status=0
    [MCU2_0]     18.376422 s: ETHFW: REGISTER_MAC | C2S | core=0 endpt=1026 token=0 macAdd=70:93:51:13:7a:99 flowIdx=114,0
    [MCU2_0]     18.381992 s: Cpsw_ioctlInternal: Registered MAC address (ALE entry=9, policer entry=1)
    [MCU2_0]     18.382027 s: 
    [MCU2_0]     18.388621 s: ETHFW: REGISTER_MAC | S2C | status=0
    [MCU2_0]     18.396834 s: appSPI Delay......(18)
    [MCU2_0]     18.398500 s: ETHFW: ADD_FILTER_MAC | C2S | core=0 endpt=1026 token=0 macAdd=33:33:00:00:00:01 vlanId=65535 flowIdx=114,0
    [MCU2_0]     18.401278 s: filterAddMacSharedCb: Address found: 33:33:0:0:0:1
    [MCU2_0]     18.406792 s: ETHFW: ADD_FILTER_MAC | S2C | status=0
    [MCU2_0]     18.406978 s: ETHFW: ADD_FILTER_MAC | C2S | core=0 endpt=1026 token=0 macAdd=01:00:5e:00:00:01 vlanId=65535 flowIdx=114,0
    [MCU2_0]     18.409742 s: filterAddMacSharedCb: Address found: 1:0:5e:0:0:1
    [MCU2_0]     18.415223 s: ETHFW: ADD_FILTER_MAC | S2C | status=0
    [MCU2_0]     18.415337 s: ETHFW: ADD_FILTER_MAC | C2S | core=0 endpt=1026 token=0 macAdd=33:33:ff:13:7a:99 vlanId=65535 flowIdx=114,0
    [MCU2_0]     18.420930 s: ETHFW: ADD_FILTER_MAC | S2C | status=0
    [MCU2_0]     18.542727 s: ETHFW: ADD_FILTER_MAC | C2S | core=0 endpt=1026 token=0 macAdd=01:80:c2:00:00:00 vlanId=65535 flowIdx=114,0
    [MCU2_0]     18.545532 s: filterAddMacSharedCb: Address found: 1:80:c2:0:0:0
    [MCU2_0]     18.551134 s: ETHFW: ADD_FILTER_MAC | S2C | status=0
    [MCU2_0]     18.551258 s: ETHFW: ADD_FILTER_MAC | C2S | core=0 endpt=1026 token=0 macAdd=01:80:c2:00:00:03 vlanId=65535 flowIdx=114,0
    [MCU2_0]     18.554064 s: filterAddMacSharedCb: Address found: 1:80:c2:0:0:3
    [MCU2_0]     18.559613 s: ETHFW: ADD_FILTER_MAC | S2C | status=0
    [MCU2_0]     18.559724 s: ETHFW: ADD_FILTER_MAC | C2S | core=0 endpt=1026 token=0 macAdd=01:80:c2:00:00:0e vlanId=65535 flowIdx=114,0
    [MCU2_0]     18.559772 s: ETHFW: ADD_FILTER_MAC | S2C | status=0
    [MCU2_0]     18.917126 s: ETHFW: ADD_FILTER_MAC | C2S | core=0 endpt=1026 token=0 macAdd=33:33:00:00:00:fb vlanId=65535 flowIdx=114,0
    [MCU2_0]     18.922741 s: ETHFW: ADD_FILTER_MAC | S2C | status=0
    [MCU2_0]     19.396836 s: appSPI Delay......(17)
    [MCU2_0]     19.658912 s: ETHFW: ADD_FILTER_MAC | C2S | core=0 endpt=1026 token=0 macAdd=33:33:00:01:00:03 vlanId=65535 flowIdx=114,0
    [MCU2_0]     19.664566 s: ETHFW: ADD_FILTER_MAC | S2C | status=0
    [MCU2_0]     20.396835 s: appSPI Delay......(16)
    [MCU2_0]     21.396837 s: appSPI Delay......(15)
    [MCU2_0]     22.396837 s: appSPI Delay......(14)
    [MCU2_0]     23.396837 s: appSPI Delay......(13)
    [MCU2_0]     24.396837 s: appSPI Delay......(12)
    [MCU2_0]     25.396837 s: appSPI Delay......(11)
    [MCU2_0]     26.396836 s: appSPI Delay......(10)
    [MCU2_0]     27.396837 s: appSPI Delay......(9)
    [MCU2_0]     28.396836 s: appSPI Delay......(8)
    [MCU2_0]     29.396836 s: appSPI Delay......(7)
    [MCU2_0]     30.396836 s: appSPI Delay......(6)
    [MCU2_0]     31.396836 s: appSPI Delay......(5)
    [MCU2_0]     32.396836 s: appSPI Delay......(4)
    [MCU2_0]     33.396837 s: appSPI Delay......(3)
    [MCU2_0]     34.396836 s: appSPI Delay......(2)
    [MCU2_0]     35.396837 s: appSPI Delay......(1)
    [MCU2_0]     36.396837 s: appSPI Delay......(0)
    [MCU2_0]     36.396901 s: [SPI][SPI_test_single_channel:142]SPI test Enter
    [MCU2_0]     36.396951 s: [SPI][SPI_initConfig:77]SPI baseAddr:0x40310000    IntrNum:21
    [MCU2_0]     36.397076 s: [SPI][SPI_test_single_channel:155]SPI initializing Done! (Domain:0 Instance:1)
    [MCU2_0]     36.397123 s: [SPI][SPI_test_single_channel:176]SPI mode: MASTER!
    [MCU2_0]     36.397194 s: SPI_open_v1: McSPI_LINKDIS_RD : val:1
    [MCU2_0]     36.596864 s: [SPI][SPI_test_xfer:108]Enter -- 0!
    [MCU2_0]     36.596966 s: Transfer: rx: [0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x08 ]
    [MCU2_0]     36.597016 s: Transfer: tx: [0xff 0x55 0x11 0x11 0x11 0x11 0x55 0xff ]
    [MCU2_0]     36.796867 s: [SPI][SPI_test_xfer:108]Enter -- 0!
    [MCU2_0]     36.796963 s: Transfer: rx: [0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x08 ]
    [MCU2_0]     36.797012 s: Transfer: tx: [0xff 0x55 0x11 0x11 0x11 0x11 0x55 0xff ]
    [MCU2_0]     36.996867 s: [SPI][SPI_test_xfer:108]Enter -- 0!
    [MCU2_0]     36.996963 s: Transfer: rx: [0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x08 ]
    [MCU2_0]     36.997010 s: Transfer: tx: [0xff 0x55 0x11 0x11 0x11 0x11 0x55 0xff ]
    [MCU2_0]     37.196867 s: [SPI][SPI_test_xfer:108]Enter -- 0!
    [MCU2_0]     37.196963 s: Transfer: rx: [0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x08 ]
    [MCU2_0]     37.197010 s: Transfer: tx: [0xff 0x55 0x11 0x11 0x11 0x11 0x55 0xff ]
    [MCU2_0]     37.396867 s: [SPI][SPI_test_xfer:108]Enter -- 0!
    [MCU2_0]     37.396966 s: Transfer: rx: [0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x08 ]
    [MCU2_0]     37.397014 s: Transfer: tx: [0xff 0x55 0x11 0x11 0x11 0x11 0x55 0xff ]
    [MCU2_0]     37.596864 s: [SPI][SPI_test_xfer:108]Enter -- 0!
    [MCU2_0]     37.596958 s: Transfer: rx: [0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x08 ]
    [MCU2_0]     37.597007 s: Transfer: tx: [0xff 0x55 0x11 0x11 0x11 0x11 0x55 0xff ]
    [MCU2_0]     37.796868 s: [SPI][SPI_test_xfer:108]Enter -- 0!
    [MCU2_0]     37.796962 s: Transfer: rx: [0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x08 ]
    [MCU2_0]     37.797010 s: Transfer: tx: [0xff 0x55 0x11 0x11 0x11 0x11 0x55 0xff ]
    [MCU2_1]      4.721659 s: CIO: Init ... Done !!!
    [MCU2_1]      4.721715 s: ### CPU Frequency = 1000000000 Hz
    [MCU2_1]      4.721742 s: CPU is running FreeRTOS
    [MCU2_1]      4.721760 s: APP: Init ... !!!
    [MCU2_1]      4.721793 s: SCICLIENT: Init ... !!!
    [MCU2_1]      4.721910 s: SCICLIENT: DMSC FW version [9.1.2--v09.01.02 (Kool Koala)]
    [MCU2_1]      4.721939 s: SCICLIENT: DMSC FW revision 0x9  
    [MCU2_1]      4.721960 s: SCICLIENT: DMSC FW ABI revision 3.1
    [MCU2_1]      4.721981 s: SCICLIENT: Init ... Done !!!
    [MCU2_1]      4.721999 s: UDMA: Init ... !!!
    [MCU2_1]      4.722845 s: UDMA: Init ... Done !!!
    [MCU2_1]      4.722878 s: MEM: Init ... !!!
    [MCU2_1]      4.722903 s: MEM: Created heap (DDR_LOCAL_MEM, id=0, flags=0x00000004) @ cc800000 of size 134217728 bytes !!!
    [MCU2_1]      4.722946 s: MEM: Init ... Done !!!
    [MCU2_1]      4.722962 s: IPC: Init ... !!!
    [MCU2_1]      4.722994 s: IPC: 11 CPUs participating in IPC !!!
    [MCU2_1]      4.723025 s: IPC: Waiting for HLOS to be ready ... !!!
    [MCU2_1]     15.467113 s: IPC: HLOS is ready !!!
    [MCU2_1]     15.474771 s: IPC: Init ... Done !!!
    [MCU2_1]     15.474814 s: APP: Syncing with 10 CPUs ... !!!
    [MCU2_1]     16.148101 s: APP: Syncing with 10 CPUs ... Done !!!
    [MCU2_1]     16.148136 s: REMOTE_SERVICE: Init ... !!!
    [MCU2_1]     16.148985 s: REMOTE_SERVICE: Init ... Done !!!
    [MCU2_1]     16.149021 s: FVID2: Init ... !!!
    [MCU2_1]     16.149062 s: FVID2: Init ... Done !!!
    [MCU2_1]     16.149081 s: VHWA: DMPAC: Init ... !!!
    [MCU2_1]     16.149325 s: VHWA: DOF Init ... !!!
    [MCU2_1]     16.155547 s: VHWA: DOF Init ... Done !!!
    [MCU2_1]     16.155588 s: VHWA: SDE Init ... !!!
    [MCU2_1]     16.157554 s: VHWA: SDE Init ... Done !!!
    [MCU2_1]     16.157588 s: VHWA: DMPAC: Init ... Done !!!
    [MCU2_1]     16.157623 s:  VX_ZONE_INIT:Enabled
    [MCU2_1]     16.157645 s:  VX_ZONE_ERROR:Enabled
    [MCU2_1]     16.157665 s:  VX_ZONE_WARNING:Enabled
    [MCU2_1]     16.159142 s:  VX_ZONE_INIT:[tivxInitLocal:130] Initialization Done !!!
    [MCU2_1]     16.159175 s: APP: OpenVX Target kernel init ... !!!
    [MCU2_1]     16.159323 s: APP: OpenVX Target kernel init ... Done !!!
    [MCU2_1]     16.159351 s: APP: Init ... Done !!!
    [MCU2_1]     16.159370 s: APP: Run ... !!!
    [MCU2_1]     16.159386 s: IPC: Starting echo test ...
    [MCU2_1]     16.160578 s: APP: Run ... Done !!!
    [MCU2_1]     16.161598 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[s] mcu3_0[P] mcu3_1[.] mcu4_0[x] mcu4_1[.] c7x_1[.] c7x_2[.] c7x_3[.] c7x_4[.] 
    [MCU2_1]     16.161730 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[s] mcu3_0[P] mcu3_1[P] mcu4_0[x] mcu4_1[.] c7x_1[.] c7x_2[.] c7x_3[.] c7x_4[.] 
    [MCU2_1]     16.161799 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[s] mcu3_0[P] mcu3_1[P] mcu4_0[x] mcu4_1[P] c7x_1[.] c7x_2[.] c7x_3[.] c7x_4[.] 
    [MCU2_1]     16.161865 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[s] mcu3_0[P] mcu3_1[P] mcu4_0[x] mcu4_1[P] c7x_1[P] c7x_2[.] c7x_3[.] c7x_4[.] 
    [MCU2_1]     16.161929 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[s] mcu3_0[P] mcu3_1[P] mcu4_0[x] mcu4_1[P] c7x_1[P] c7x_2[P] c7x_3[.] c7x_4[.] 
    [MCU2_1]     16.161993 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[s] mcu3_0[P] mcu3_1[P] mcu4_0[x] mcu4_1[P] c7x_1[P] c7x_2[P] c7x_3[P] c7x_4[.] 
    [MCU2_1]     16.162057 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[s] mcu3_0[P] mcu3_1[P] mcu4_0[x] mcu4_1[P] c7x_1[P] c7x_2[P] c7x_3[P] c7x_4[P] 
    [MCU2_1]     16.178290 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[s] mcu3_0[P] mcu3_1[P] mcu4_0[P] mcu4_1[P] c7x_1[P] c7x_2[P] c7x_3[P] c7x_4[P] 
    [MCU2_1]     16.385635 s: IPC: Echo status: mpu1_0[x] mcu2_0[P] mcu2_1[s] mcu3_0[P] mcu3_1[P] mcu4_0[P] mcu4_1[P] c7x_1[P] c7x_2[P] c7x_3[P] c7x_4[P] 
    [MCU3_0]      4.770148 s: CIO: Init ... Done !!!
    [MCU3_0]      4.770200 s: ### CPU Frequency = 1000000000 Hz
    [MCU3_0]      4.770223 s: CPU is running FreeRTOS
    [MCU3_0]      4.770239 s: APP: Init ... !!!
    [MCU3_0]      4.770267 s: SCICLIENT: Init ... !!!
    [MCU3_0]      4.770387 s: SCICLIENT: DMSC FW version [9.1.2--v09.01.02 (Kool Koala)]
    [MCU3_0]      4.770415 s: SCICLIENT: DMSC FW revision 0x9  
    [MCU3_0]      4.770435 s: SCICLIENT: DMSC FW ABI revision 3.1
    [MCU3_0]      4.770454 s: SCICLIENT: Init ... Done !!!
    [MCU3_0]      4.770472 s: MEM: Init ... !!!
    [MCU3_0]      4.770493 s: MEM: Created heap (DDR_LOCAL_MEM, id=0, flags=0x00000004) @ d4800000 of size 50331648 bytes !!!
    [MCU3_0]      4.770537 s: MEM: Init ... Done !!!
    [MCU3_0]      4.770555 s: IPC: Init ... !!!
    [MCU3_0]      4.770588 s: IPC: 11 CPUs participating in IPC !!!
    [MCU3_0]      4.770618 s: IPC: Waiting for HLOS to be ready ... !!!
    [MCU3_0]     15.648066 s: IPC: HLOS is ready !!!
    [MCU3_0]     15.655165 s: IPC: Init ... Done !!!
    [MCU3_0]     15.655212 s: APP: Syncing with 10 CPUs ... !!!
    [MCU3_0]     16.148098 s: APP: Syncing with 10 CPUs ... Done !!!
    [MCU3_0]     16.148123 s: REMOTE_SERVICE: Init ... !!!
    [MCU3_0]     16.148926 s: REMOTE_SERVICE: Init ... Done !!!
    [MCU3_0]     16.148976 s:  VX_ZONE_INIT:Enabled
    [MCU3_0]     16.148994 s:  VX_ZONE_ERROR:Enabled
    [MCU3_0]     16.149010 s:  VX_ZONE_WARNING:Enabled
    [MCU3_0]     16.150276 s:  VX_ZONE_INIT:[tivxInitLocal:130] Initialization Done !!!
    [MCU3_0]     16.150303 s: APP: OpenVX Target kernel init ... !!!
    [MCU3_0]     16.150324 s: APP: OpenVX Target kernel init ... Done !!!
    [MCU3_0]     16.150344 s: APP: Init ... Done !!!
    [MCU3_0]     16.150361 s: APP: Run ... !!!
    [MCU3_0]     16.150376 s: IPC: Starting echo test ...
    [MCU3_0]     16.151544 s: APP: Run ... Done !!!
    [MCU3_0]     16.152234 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[s] mcu3_1[.] mcu4_0[x] mcu4_1[.] c7x_1[P] c7x_2[x] c7x_3[x] c7x_4[x] 
    [MCU3_0]     16.152389 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[s] mcu3_1[P] mcu4_0[x] mcu4_1[.] c7x_1[P] c7x_2[x] c7x_3[x] c7x_4[x] 
    [MCU3_0]     16.152563 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[s] mcu3_1[P] mcu4_0[x] mcu4_1[P] c7x_1[P] c7x_2[x] c7x_3[x] c7x_4[x] 
    [MCU3_0]     16.153047 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[s] mcu3_1[P] mcu4_0[x] mcu4_1[P] c7x_1[P] c7x_2[x] c7x_3[P] c7x_4[.] 
    [MCU3_0]     16.153265 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[s] mcu3_1[P] mcu4_0[x] mcu4_1[P] c7x_1[P] c7x_2[x] c7x_3[P] c7x_4[P] 
    [MCU3_0]     16.153828 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[s] mcu3_1[P] mcu4_0[x] mcu4_1[P] c7x_1[P] c7x_2[P] c7x_3[P] c7x_4[P] 
    [MCU3_0]     16.161339 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[P] mcu3_0[s] mcu3_1[P] mcu4_0[x] mcu4_1[P] c7x_1[P] c7x_2[P] c7x_3[P] c7x_4[P] 
    [MCU3_0]     16.178251 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[P] mcu3_0[s] mcu3_1[P] mcu4_0[P] mcu4_1[P] c7x_1[P] c7x_2[P] c7x_3[P] c7x_4[P] 
    [MCU3_0]     16.385572 s: IPC: Echo status: mpu1_0[x] mcu2_0[P] mcu2_1[P] mcu3_0[s] mcu3_1[P] mcu4_0[P] mcu4_1[P] c7x_1[P] c7x_2[P] c7x_3[P] c7x_4[P] 
    [MCU3_1]      4.819199 s: CIO: Init ... Done !!!
    [MCU3_1]      4.819255 s: ### CPU Frequency = 1000000000 Hz
    [MCU3_1]      4.819280 s: CPU is running FreeRTOS
    [MCU3_1]      4.819296 s: APP: Init ... !!!
    [MCU3_1]      4.819325 s: SCICLIENT: Init ... !!!
    [MCU3_1]      4.819444 s: SCICLIENT: DMSC FW version [9.1.2--v09.01.02 (Kool Koala)]
    [MCU3_1]      4.819474 s: SCICLIENT: DMSC FW revision 0x9  
    [MCU3_1]      4.819494 s: SCICLIENT: DMSC FW ABI revision 3.1
    [MCU3_1]      4.819514 s: SCICLIENT: Init ... Done !!!
    [MCU3_1]      4.819530 s: MEM: Init ... !!!
    [MCU3_1]      4.819553 s: MEM: Created heap (DDR_LOCAL_MEM, id=0, flags=0x00000004) @ d7800000 of size 50331648 bytes !!!
    [MCU3_1]      4.819594 s: MEM: Init ... Done !!!
    [MCU3_1]      4.819611 s: IPC: Init ... !!!
    [MCU3_1]      4.819643 s: IPC: 11 CPUs participating in IPC !!!
    [MCU3_1]      4.819672 s: IPC: Waiting for HLOS to be ready ... !!!
    [MCU3_1]     15.650058 s: IPC: HLOS is ready !!!
    [MCU3_1]     15.657151 s: IPC: Init ... Done !!!
    [MCU3_1]     15.657194 s: APP: Syncing with 10 CPUs ... !!!
    [MCU3_1]     16.148099 s: APP: Syncing with 10 CPUs ... Done !!!
    [MCU3_1]     16.148126 s: REMOTE_SERVICE: Init ... !!!
    [MCU3_1]     16.148947 s: REMOTE_SERVICE: Init ... Done !!!
    [MCU3_1]     16.148992 s:  VX_ZONE_INIT:Enabled
    [MCU3_1]     16.149015 s:  VX_ZONE_ERROR:Enabled
    [MCU3_1]     16.149032 s:  VX_ZONE_WARNING:Enabled
    [MCU3_1]     16.150303 s:  VX_ZONE_INIT:[tivxInitLocal:130] Initialization Done !!!
    [MCU3_1]     16.150330 s: APP: OpenVX Target kernel init ... !!!
    [MCU3_1]     16.150350 s: APP: OpenVX Target kernel init ... Done !!!
    [MCU3_1]     16.150370 s: APP: Init ... Done !!!
    [MCU3_1]     16.150387 s: APP: Run ... !!!
    [MCU3_1]     16.150401 s: IPC: Starting echo test ...
    [MCU3_1]     16.151569 s: APP: Run ... Done !!!
    [MCU3_1]     16.152227 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[.] mcu3_1[s] mcu4_0[x] mcu4_1[.] c7x_1[P] c7x_2[x] c7x_3[x] c7x_4[x] 
    [MCU3_1]     16.152389 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[P] mcu3_1[s] mcu4_0[x] mcu4_1[.] c7x_1[P] c7x_2[x] c7x_3[x] c7x_4[x] 
    [MCU3_1]     16.152577 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[P] mcu3_1[s] mcu4_0[x] mcu4_1[P] c7x_1[P] c7x_2[x] c7x_3[x] c7x_4[x] 
    [MCU3_1]     16.153057 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[P] mcu3_1[s] mcu4_0[x] mcu4_1[P] c7x_1[P] c7x_2[x] c7x_3[P] c7x_4[.] 
    [MCU3_1]     16.153277 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[P] mcu3_1[s] mcu4_0[x] mcu4_1[P] c7x_1[P] c7x_2[x] c7x_3[P] c7x_4[P] 
    [MCU3_1]     16.153835 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[P] mcu3_1[s] mcu4_0[x] mcu4_1[P] c7x_1[P] c7x_2[P] c7x_3[P] c7x_4[P] 
    [MCU3_1]     16.161362 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[P] mcu3_0[P] mcu3_1[s] mcu4_0[x] mcu4_1[P] c7x_1[P] c7x_2[P] c7x_3[P] c7x_4[P] 
    [MCU3_1]     16.178264 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[P] mcu3_0[P] mcu3_1[s] mcu4_0[P] mcu4_1[P] c7x_1[P] c7x_2[P] c7x_3[P] c7x_4[P] 
    [MCU3_1]     16.385591 s: IPC: Echo status: mpu1_0[x] mcu2_0[P] mcu2_1[P] mcu3_0[P] mcu3_1[s] mcu4_0[P] mcu4_1[P] c7x_1[P] c7x_2[P] c7x_3[P] c7x_4[P] 
    [MCU4_0]      4.894495 s: CIO: Init ... Done !!!
    [MCU4_0]      4.894552 s: ### CPU Frequency = 1000000000 Hz
    [MCU4_0]      4.894579 s: CPU is running FreeRTOS
    [MCU4_0]      4.894596 s: APP: Init ... !!!
    [MCU4_0]      4.894629 s: SCICLIENT: Init ... !!!
    [MCU4_0]      4.894751 s: SCICLIENT: DMSC FW version [9.1.2--v09.01.02 (Kool Koala)]
    [MCU4_0]      4.894781 s: SCICLIENT: DMSC FW revision 0x9  
    [MCU4_0]      4.894802 s: SCICLIENT: DMSC FW ABI revision 3.1
    [MCU4_0]      4.894822 s: SCICLIENT: Init ... Done !!!
    [MCU4_0]      4.894840 s: UDMA: Init ... !!!
    [MCU4_0]      4.895707 s: UDMA: Init ... Done !!!
    [MCU4_0]      4.895741 s: MEM: Init ... !!!
    [MCU4_0]      4.895767 s: MEM: Created heap (DDR_LOCAL_MEM, id=0, flags=0x00000004) @ da800000 of size 8388608 bytes !!!
    [MCU4_0]      4.895812 s: MEM: Init ... Done !!!
    [MCU4_0]      4.895829 s: IPC: Init ... !!!
    [MCU4_0]      4.895865 s: IPC: 11 CPUs participating in IPC !!!
    [MCU4_0]      4.895894 s: IPC: Waiting for HLOS to be ready ... !!!
    [MCU4_0]     16.068533 s: IPC: HLOS is ready !!!
    [MCU4_0]     16.075123 s: IPC: Init ... Done !!!
    [MCU4_0]     16.075162 s: APP: Syncing with 10 CPUs ... !!!
    [MCU4_0]     16.148101 s: APP: Syncing with 10 CPUs ... Done !!!
    [MCU4_0]     16.148131 s: REMOTE_SERVICE: Init ... !!!
    [MCU4_0]     16.148985 s: REMOTE_SERVICE: Init ... Done !!!
    [MCU4_0]     16.149023 s: FVID2: Init ... !!!
    [MCU4_0]     16.149065 s: FVID2: Init ... Done !!!
    [MCU4_0]     16.149083 s: VHWA: VPAC Init ... !!!
    [MCU4_0]     16.149203 s: VHWA: LDC Init ... !!!
    [MCU4_0]     16.153428 s: VHWA: LDC Init ... Done !!!
    [MCU4_0]     16.153466 s: VHWA: MSC Init ... !!!
    [MCU4_0]     16.160696 s: VHWA: MSC Init ... Done !!!
    [MCU4_0]     16.160728 s: VHWA: NF Init ... !!!
    [MCU4_0]     16.161582 s: VHWA: NF Init ... Done !!!
    [MCU4_0]     16.161617 s: VHWA: VISS Init ... !!!
    [MCU4_0]     16.166971 s: VHWA: VISS Init ... Done !!!
    [MCU4_0]     16.167011 s: VHWA: VPAC Init ... Done !!!
    [MCU4_0]     16.167043 s:  VX_ZONE_INIT:Enabled
    [MCU4_0]     16.167063 s:  VX_ZONE_ERROR:Enabled
    [MCU4_0]     16.167080 s:  VX_ZONE_WARNING:Enabled
    [MCU4_0]     16.168662 s:  VX_ZONE_INIT:[tivxInitLocal:130] Initialization Done !!!
    [MCU4_0]     16.168692 s: APP: OpenVX Target kernel init ... !!!
    [MCU4_0]     16.175503 s: APP: OpenVX Target kernel init ... Done !!!
    [MCU4_0]     16.175533 s: VISS REMOTE SERVICE: Init ... !!!
    [MCU4_0]     16.175582 s: VISS REMOTE SERVICE: Init ... Done !!!
    [MCU4_0]     16.175605 s: UDMA Copy: Init ... !!!
    [MCU4_0]     16.176537 s: UDMA Copy: Init ... Done !!!
    [MCU4_0]     16.176570 s: APP: Init ... Done !!!
    [MCU4_0]     16.176592 s: APP: Run ... !!!
    [MCU4_0]     16.176608 s: IPC: Starting echo test ...
    [MCU4_0]     16.177760 s: APP: Run ... Done !!!
    [MCU4_0]     16.178982 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[P] mcu3_0[.] mcu3_1[.] mcu4_0[s] mcu4_1[.] c7x_1[.] c7x_2[.] c7x_3[.] c7x_4[.] 
    [MCU4_0]     16.179063 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[P] mcu3_0[P] mcu3_1[.] mcu4_0[s] mcu4_1[.] c7x_1[.] c7x_2[.] c7x_3[.] c7x_4[.] 
    [MCU4_0]     16.179132 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[P] mcu3_0[P] mcu3_1[P] mcu4_0[s] mcu4_1[.] c7x_1[.] c7x_2[.] c7x_3[.] c7x_4[.] 
    [MCU4_0]     16.179200 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[P] mcu3_0[P] mcu3_1[P] mcu4_0[s] mcu4_1[P] c7x_1[.] c7x_2[.] c7x_3[.] c7x_4[.] 
    [MCU4_0]     16.179266 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[P] mcu3_0[P] mcu3_1[P] mcu4_0[s] mcu4_1[P] c7x_1[P] c7x_2[.] c7x_3[.] c7x_4[.] 
    [MCU4_0]     16.179333 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[P] mcu3_0[P] mcu3_1[P] mcu4_0[s] mcu4_1[P] c7x_1[P] c7x_2[P] c7x_3[.] c7x_4[.] 
    [MCU4_0]     16.179402 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[P] mcu3_0[P] mcu3_1[P] mcu4_0[s] mcu4_1[P] c7x_1[P] c7x_2[P] c7x_3[P] c7x_4[.] 
    [MCU4_0]     16.179468 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[P] mcu3_0[P] mcu3_1[P] mcu4_0[s] mcu4_1[P] c7x_1[P] c7x_2[P] c7x_3[P] c7x_4[P] 
    [MCU4_0]     16.385606 s: IPC: Echo status: mpu1_0[x] mcu2_0[P] mcu2_1[P] mcu3_0[P] mcu3_1[P] mcu4_0[s] mcu4_1[P] c7x_1[P] c7x_2[P] c7x_3[P] c7x_4[P] 
    [MCU4_1]      4.932714 s: CIO: Init ... Done !!!
    [MCU4_1]      4.932778 s: ### CPU Frequency = 1000000000 Hz
    [MCU4_1]      4.932806 s: CPU is running FreeRTOS
    [MCU4_1]      4.932824 s: APP: Init ... !!!
    [MCU4_1]      4.932858 s: SCICLIENT: Init ... !!!
    [MCU4_1]      4.932978 s: SCICLIENT: DMSC FW version [9.1.2--v09.01.02 (Kool Koala)]
    [MCU4_1]      4.933010 s: SCICLIENT: DMSC FW revision 0x9  
    [MCU4_1]      4.933029 s: SCICLIENT: DMSC FW ABI revision 3.1
    [MCU4_1]      4.933049 s: SCICLIENT: Init ... Done !!!
    [MCU4_1]      4.933067 s: MEM: Init ... !!!
    [MCU4_1]      4.933088 s: MEM: Created heap (DDR_LOCAL_MEM, id=0, flags=0x00000004) @ db000000 of size 8388608 bytes !!!
    [MCU4_1]      4.933130 s: MEM: Init ... Done !!!
    [MCU4_1]      4.933147 s: IPC: Init ... !!!
    [MCU4_1]      4.933181 s: IPC: 11 CPUs participating in IPC !!!
    [MCU4_1]      4.933214 s: IPC: Waiting for HLOS to be ready ... !!!
    [MCU4_1]     16.141404 s: IPC: HLOS is ready !!!
    [MCU4_1]     16.148034 s: IPC: Init ... Done !!!
    [MCU4_1]     16.148070 s: APP: Syncing with 10 CPUs ... !!!
    [MCU4_1]     16.148100 s: APP: Syncing with 10 CPUs ... Done !!!
    [MCU4_1]     16.148122 s: REMOTE_SERVICE: Init ... !!!
    [MCU4_1]     16.148984 s: REMOTE_SERVICE: Init ... Done !!!
    [MCU4_1]     16.149033 s:  VX_ZONE_INIT:Enabled
    [MCU4_1]     16.149053 s:  VX_ZONE_ERROR:Enabled
    [MCU4_1]     16.149071 s:  VX_ZONE_WARNING:Enabled
    [MCU4_1]     16.150345 s:  VX_ZONE_INIT:[tivxInitLocal:130] Initialization Done !!!
    [MCU4_1]     16.150373 s: APP: OpenVX Target kernel init ... !!!
    [MCU4_1]     16.150393 s: APP: OpenVX Target kernel init ... Done !!!
    [MCU4_1]     16.150413 s: APP: Init ... Done !!!
    [MCU4_1]     16.150429 s: APP: Run ... !!!
    [MCU4_1]     16.150445 s: IPC: Starting echo test ...
    [MCU4_1]     16.151661 s: APP: Run ... Done !!!
    [MCU4_1]     16.152334 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[.] mcu3_1[.] mcu4_0[x] mcu4_1[s] c7x_1[P] c7x_2[x] c7x_3[x] c7x_4[x] 
    [MCU4_1]     16.152453 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[.] mcu3_1[P] mcu4_0[x] mcu4_1[s] c7x_1[P] c7x_2[x] c7x_3[x] c7x_4[x] 
    [MCU4_1]     16.152569 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[P] mcu3_1[P] mcu4_0[x] mcu4_1[s] c7x_1[P] c7x_2[x] c7x_3[x] c7x_4[x] 
    [MCU4_1]     16.153053 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[P] mcu3_1[P] mcu4_0[x] mcu4_1[s] c7x_1[P] c7x_2[x] c7x_3[P] c7x_4[.] 
    [MCU4_1]     16.153282 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[P] mcu3_1[P] mcu4_0[x] mcu4_1[s] c7x_1[P] c7x_2[x] c7x_3[P] c7x_4[P] 
    [MCU4_1]     16.153855 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[P] mcu3_1[P] mcu4_0[x] mcu4_1[s] c7x_1[P] c7x_2[P] c7x_3[P] c7x_4[P] 
    [MCU4_1]     16.161369 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[P] mcu3_0[P] mcu3_1[P] mcu4_0[x] mcu4_1[s] c7x_1[P] c7x_2[P] c7x_3[P] c7x_4[P] 
    [MCU4_1]     16.178274 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[P] mcu3_0[P] mcu3_1[P] mcu4_0[P] mcu4_1[s] c7x_1[P] c7x_2[P] c7x_3[P] c7x_4[P] 
    [MCU4_1]     16.385636 s: IPC: Echo status: mpu1_0[x] mcu2_0[P] mcu2_1[P] mcu3_0[P] mcu3_1[P] mcu4_0[P] mcu4_1[s] c7x_1[P] c7x_2[P] c7x_3[P] c7x_4[P] 
    [C7x_1 ]      5.302993 s: CIO: Init ... Done !!!
    [C7x_1 ]      5.303009 s: ### CPU Frequency = 1000000000 Hz
    [C7x_1 ]      5.303020 s: CPU is running FreeRTOS
    [C7x_1 ]      5.303028 s: APP: Init ... !!!
    [C7x_1 ]      5.303036 s: SCICLIENT: Init ... !!!
    [C7x_1 ]      5.303142 s: SCICLIENT: DMSC FW version [9.1.2--v09.01.02 (Kool Koala)]
    [C7x_1 ]      5.303156 s: SCICLIENT: DMSC FW revision 0x9  
    [C7x_1 ]      5.303166 s: SCICLIENT: DMSC FW ABI revision 3.1
    [C7x_1 ]      5.303177 s: SCICLIENT: Init ... Done !!!
    [C7x_1 ]      5.303187 s: UDMA: Init ... !!!
    [C7x_1 ]      5.304028 s: UDMA: Init ... Done !!!
    [C7x_1 ]      5.304040 s: MEM: Init ... !!!
    [C7x_1 ]      5.304051 s: MEM: Created heap (DDR_LOCAL_MEM, id=0, flags=0x00000004) @ 102000000 of size 33554432 bytes !!!
    [C7x_1 ]      5.304072 s: MEM: Init ... Done !!!
    [C7x_1 ]      5.304081 s: IPC: Init ... !!!
    [C7x_1 ]      5.304095 s: IPC: 11 CPUs participating in IPC !!!
    [C7x_1 ]      5.304110 s: IPC: Waiting for HLOS to be ready ... !!!
    [C7x_1 ]     15.283088 s: IPC: HLOS is ready !!!
    [C7x_1 ]     15.287477 s: IPC: Init ... Done !!!
    [C7x_1 ]     15.287494 s: APP: Syncing with 10 CPUs ... !!!
    [C7x_1 ]     16.148102 s: APP: Syncing with 10 CPUs ... Done !!!
    [C7x_1 ]     16.148120 s: REMOTE_SERVICE: Init ... !!!
    [C7x_1 ]     16.148343 s: REMOTE_SERVICE: Init ... Done !!!
    [C7x_1 ]     16.148444 s:  VX_ZONE_INIT:Enabled
    [C7x_1 ]     16.148456 s:  VX_ZONE_ERROR:Enabled
    [C7x_1 ]     16.148500 s:  VX_ZONE_WARNING:Enabled
    [C7x_1 ]     16.148852 s:  VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1 
    [C7x_1 ]     16.148929 s:  VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1_PRI_2 
    [C7x_1 ]     16.149001 s:  VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1_PRI_3 
    [C7x_1 ]     16.149066 s:  VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1_PRI_4 
    [C7x_1 ]     16.149135 s:  VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1_PRI_5 
    [C7x_1 ]     16.149208 s:  VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1_PRI_6 
    [C7x_1 ]     16.149276 s:  VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1_PRI_7 
    [C7x_1 ]     16.149343 s:  VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1_PRI_8 
    [C7x_1 ]     16.149368 s:  VX_ZONE_INIT:[tivxInitLocal:130] Initialization Done !!!
    [C7x_1 ]     16.149382 s: APP: OpenVX Target kernel init ... !!!
    [C7x_1 ]     16.150074 s: APP: Register C7120 !!!
    [C7x_1 ]     16.150098 s: APP: Register tivxRegisterTiovxPracticeTargetC7XKernels to CPU_c7x_1!!!
    [C7x_1 ]     16.150122 s: APP: OpenVX Target kernel init ... Done !!!
    [C7x_1 ]     16.150134 s: APP: Init ... Done !!!
    [C7x_1 ]     16.150142 s: APP: Run ... !!!
    [C7x_1 ]     16.150151 s: IPC: Starting echo test ...
    [C7x_1 ]     16.150400 s: APP: Run ... Done !!!
    [C7x_1 ]     16.152120 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[P] mcu3_1[.] mcu4_0[x] mcu4_1[.] c7x_1[s] c7x_2[x] c7x_3[x] c7x_4[x] 
    [C7x_1 ]     16.152240 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[P] mcu3_1[.] mcu4_0[x] mcu4_1[P] c7x_1[s] c7x_2[x] c7x_3[x] c7x_4[x] 
    [C7x_1 ]     16.152346 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[P] mcu3_1[P] mcu4_0[x] mcu4_1[P] c7x_1[s] c7x_2[x] c7x_3[x] c7x_4[x] 
    [C7x_1 ]     16.153071 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[P] mcu3_1[P] mcu4_0[x] mcu4_1[P] c7x_1[s] c7x_2[x] c7x_3[P] c7x_4[.] 
    [C7x_1 ]     16.153291 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[P] mcu3_1[P] mcu4_0[x] mcu4_1[P] c7x_1[s] c7x_2[x] c7x_3[P] c7x_4[P] 
    [C7x_1 ]     16.153848 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[P] mcu3_1[P] mcu4_0[x] mcu4_1[P] c7x_1[s] c7x_2[P] c7x_3[P] c7x_4[P] 
    [C7x_1 ]     16.161377 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[P] mcu3_0[P] mcu3_1[P] mcu4_0[x] mcu4_1[P] c7x_1[s] c7x_2[P] c7x_3[P] c7x_4[P] 
    [C7x_1 ]     16.178301 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[P] mcu3_0[P] mcu3_1[P] mcu4_0[P] mcu4_1[P] c7x_1[s] c7x_2[P] c7x_3[P] c7x_4[P] 
    [C7x_1 ]     16.385643 s: IPC: Echo status: mpu1_0[x] mcu2_0[P] mcu2_1[P] mcu3_0[P] mcu3_1[P] mcu4_0[P] mcu4_1[P] c7x_1[s] c7x_2[P] c7x_3[P] c7x_4[P] 
    [C7x_2 ]      5.637135 s: CIO: Init ... Done !!!
    [C7x_2 ]      5.637150 s: ### CPU Frequency = 1000000000 Hz
    [C7x_2 ]      5.637163 s: CPU is running FreeRTOS
    [C7x_2 ]      5.637171 s: APP: Init ... !!!
    [C7x_2 ]      5.637179 s: SCICLIENT: Init ... !!!
    [C7x_2 ]      5.637292 s: SCICLIENT: DMSC FW version [9.1.2--v09.01.02 (Kool Koala)]
    [C7x_2 ]      5.637306 s: SCICLIENT: DMSC FW revision 0x9  
    [C7x_2 ]      5.637316 s: SCICLIENT: DMSC FW ABI revision 3.1
    [C7x_2 ]      5.637327 s: SCICLIENT: Init ... Done !!!
    [C7x_2 ]      5.637336 s: UDMA: Init ... !!!
    [C7x_2 ]      5.638171 s: UDMA: Init ... Done !!!
    [C7x_2 ]      5.638182 s: MEM: Init ... !!!
    [C7x_2 ]      5.638195 s: MEM: Created heap (DDR_LOCAL_MEM, id=0, flags=0x00000004) @ 102000000 of size 33554432 bytes !!!
    [C7x_2 ]      5.638215 s: MEM: Init ... Done !!!
    [C7x_2 ]      5.638223 s: IPC: Init ... !!!
    [C7x_2 ]      5.638237 s: IPC: 11 CPUs participating in IPC !!!
    [C7x_2 ]      5.638252 s: IPC: Waiting for HLOS to be ready ... !!!
    [C7x_2 ]     15.376437 s: IPC: HLOS is ready !!!
    [C7x_2 ]     15.380653 s: IPC: Init ... Done !!!
    [C7x_2 ]     15.380668 s: APP: Syncing with 10 CPUs ... !!!
    [C7x_2 ]     16.148102 s: APP: Syncing with 10 CPUs ... Done !!!
    [C7x_2 ]     16.148119 s: REMOTE_SERVICE: Init ... !!!
    [C7x_2 ]     16.148350 s: REMOTE_SERVICE: Init ... Done !!!
    [C7x_2 ]     16.148372 s:  VX_ZONE_INIT:Enabled
    [C7x_2 ]     16.148446 s:  VX_ZONE_ERROR:Enabled
    [C7x_2 ]     16.148457 s:  VX_ZONE_WARNING:Enabled
    [C7x_2 ]     16.149252 s:  VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-2 
    [C7x_2 ]     16.149331 s:  VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-2_PRI_2 
    [C7x_2 ]     16.149398 s:  VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-2_PRI_3 
    [C7x_2 ]     16.149461 s:  VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-2_PRI_4 
    [C7x_2 ]     16.149527 s:  VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-2_PRI_5 
    [C7x_2 ]     16.149589 s:  VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-2_PRI_6 
    [C7x_2 ]     16.149650 s:  VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-2_PRI_7 
    [C7x_2 ]     16.149710 s:  VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-2_PRI_8 
    [C7x_2 ]     16.149732 s:  VX_ZONE_INIT:[tivxInitLocal:130] Initialization Done !!!
    [C7x_2 ]     16.149745 s: APP: OpenVX Target kernel init ... !!!
    [C7x_2 ]     16.150487 s: APP: Register C7120 !!!
    [C7x_2 ]     16.150967 s: APP: Register tivxRegisterTiovxPracticeTargetC7XKernels to CPU_c7x_2 !!!
    [C7x_2 ]     16.150988 s: APP: OpenVX Target kernel init ... Done !!!
    [C7x_2 ]     16.150999 s: UDMA Copy: Init ... !!!
    [C7x_2 ]     16.152997 s: UDMA Copy: Init ... Done !!!
    [C7x_2 ]     16.153013 s: APP: Init ... Done !!!
    [C7x_2 ]     16.153022 s: APP: Run ... !!!
    [C7x_2 ]     16.153031 s: IPC: Starting echo test ...
    [C7x_2 ]     16.153285 s: APP: Run ... Done !!!
    [C7x_2 ]     16.153960 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[.] mcu3_1[.] mcu4_0[x] mcu4_1[.] c7x_1[.] c7x_2[s] c7x_3[.] c7x_4[P] 
    [C7x_2 ]     16.154006 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[P] mcu3_1[.] mcu4_0[x] mcu4_1[.] c7x_1[.] c7x_2[s] c7x_3[.] c7x_4[P] 
    [C7x_2 ]     16.154049 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[P] mcu3_1[.] mcu4_0[x] mcu4_1[.] c7x_1[P] c7x_2[s] c7x_3[.] c7x_4[P] 
    [C7x_2 ]     16.154095 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[P] mcu3_1[P] mcu4_0[x] mcu4_1[.] c7x_1[P] c7x_2[s] c7x_3[.] c7x_4[P] 
    [C7x_2 ]     16.154138 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[P] mcu3_1[P] mcu4_0[x] mcu4_1[.] c7x_1[P] c7x_2[s] c7x_3[P] c7x_4[P] 
    [C7x_2 ]     16.154179 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[P] mcu3_1[P] mcu4_0[x] mcu4_1[P] c7x_1[P] c7x_2[s] c7x_3[P] c7x_4[P] 
    [C7x_2 ]     16.161384 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[P] mcu3_0[P] mcu3_1[P] mcu4_0[x] mcu4_1[P] c7x_1[P] c7x_2[s] c7x_3[P] c7x_4[P] 
    [C7x_2 ]     16.178302 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[P] mcu3_0[P] mcu3_1[P] mcu4_0[P] mcu4_1[P] c7x_1[P] c7x_2[s] c7x_3[P] c7x_4[P] 
    [C7x_2 ]     16.385654 s: IPC: Echo status: mpu1_0[x] mcu2_0[P] mcu2_1[P] mcu3_0[P] mcu3_1[P] mcu4_0[P] mcu4_1[P] c7x_1[P] c7x_2[s] c7x_3[P] c7x_4[P] 
    [C7x_3 ]      5.955986 s: CIO: Init ... Done !!!
    [C7x_3 ]      5.956001 s: ### CPU Frequency = 1000000000 Hz
    [C7x_3 ]      5.956012 s: CPU is running FreeRTOS
    [C7x_3 ]      5.956021 s: APP: Init ... !!!
    [C7x_3 ]      5.956029 s: SCICLIENT: Init ... !!!
    [C7x_3 ]      5.956142 s: SCICLIENT: DMSC FW version [9.1.2--v09.01.02 (Kool Koala)]
    [C7x_3 ]      5.956156 s: SCICLIENT: DMSC FW revision 0x9  
    [C7x_3 ]      5.956167 s: SCICLIENT: DMSC FW ABI revision 3.1
    [C7x_3 ]      5.956178 s: SCICLIENT: Init ... Done !!!
    [C7x_3 ]      5.956188 s: UDMA: Init ... !!!
    [C7x_3 ]      5.957009 s: UDMA: Init ... Done !!!
    [C7x_3 ]      5.957020 s: MEM: Init ... !!!
    [C7x_3 ]      5.957032 s: MEM: Created heap (DDR_LOCAL_MEM, id=0, flags=0x00000004) @ 102000000 of size 33554432 bytes !!!
    [C7x_3 ]      5.957053 s: MEM: Init ... Done !!!
    [C7x_3 ]      5.957062 s: IPC: Init ... !!!
    [C7x_3 ]      5.957075 s: IPC: 11 CPUs participating in IPC !!!
    [C7x_3 ]      5.957090 s: IPC: Waiting for HLOS to be ready ... !!!
    [C7x_3 ]     15.469240 s: IPC: HLOS is ready !!!
    [C7x_3 ]     15.473730 s: IPC: Init ... Done !!!
    [C7x_3 ]     15.473746 s: APP: Syncing with 10 CPUs ... !!!
    [C7x_3 ]     16.148102 s: APP: Syncing with 10 CPUs ... Done !!!
    [C7x_3 ]     16.148120 s: REMOTE_SERVICE: Init ... !!!
    [C7x_3 ]     16.148364 s: REMOTE_SERVICE: Init ... Done !!!
    [C7x_3 ]     16.148390 s:  VX_ZONE_INIT:Enabled
    [C7x_3 ]     16.148472 s:  VX_ZONE_ERROR:Enabled
    [C7x_3 ]     16.148526 s:  VX_ZONE_WARNING:Enabled
    [C7x_3 ]     16.148898 s:  VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-3 
    [C7x_3 ]     16.148986 s:  VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-3_PRI_2 
    [C7x_3 ]     16.149057 s:  VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-3_PRI_3 
    [C7x_3 ]     16.149129 s:  VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-3_PRI_4 
    [C7x_3 ]     16.149203 s:  VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-3_PRI_5 
    [C7x_3 ]     16.149279 s:  VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-3_PRI_6 
    [C7x_3 ]     16.149354 s:  VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-3_PRI_7 
    [C7x_3 ]     16.149427 s:  VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-3_PRI_8 
    [C7x_3 ]     16.149453 s:  VX_ZONE_INIT:[tivxInitLocal:130] Initialization Done !!!
    [C7x_3 ]     16.149465 s: APP: OpenVX Target kernel init ... !!!
    [C7x_3 ]     16.150156 s: APP: Register C7120 !!!
    [C7x_3 ]     16.150170 s: APP: OpenVX Target kernel init ... Done !!!
    [C7x_3 ]     16.150182 s: UDMA Copy: Init ... !!!
    [C7x_3 ]     16.152289 s: UDMA Copy: Init ... Done !!!
    [C7x_3 ]     16.152304 s: APP: Init ... Done !!!
    [C7x_3 ]     16.152313 s: APP: Run ... !!!
    [C7x_3 ]     16.152322 s: IPC: Starting echo test ...
    [C7x_3 ]     16.152564 s: APP: Run ... Done !!!
    [C7x_3 ]     16.153241 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[P] mcu3_1[.] mcu4_0[x] mcu4_1[.] c7x_1[.] c7x_2[x] c7x_3[s] c7x_4[.] 
    [C7x_3 ]     16.153290 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[P] mcu3_1[P] mcu4_0[x] mcu4_1[.] c7x_1[.] c7x_2[x] c7x_3[s] c7x_4[.] 
    [C7x_3 ]     16.153363 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[P] mcu3_1[P] mcu4_0[x] mcu4_1[P] c7x_1[.] c7x_2[x] c7x_3[s] c7x_4[.] 
    [C7x_3 ]     16.153487 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[P] mcu3_1[P] mcu4_0[x] mcu4_1[P] c7x_1[P] c7x_2[x] c7x_3[s] c7x_4[.] 
    [C7x_3 ]     16.153590 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[P] mcu3_1[P] mcu4_0[x] mcu4_1[P] c7x_1[P] c7x_2[.] c7x_3[s] c7x_4[P] 
    [C7x_3 ]     16.153862 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[P] mcu3_1[P] mcu4_0[x] mcu4_1[P] c7x_1[P] c7x_2[P] c7x_3[s] c7x_4[P] 
    [C7x_3 ]     16.161393 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[P] mcu3_0[P] mcu3_1[P] mcu4_0[x] mcu4_1[P] c7x_1[P] c7x_2[P] c7x_3[s] c7x_4[P] 
    [C7x_3 ]     16.178316 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[P] mcu3_0[P] mcu3_1[P] mcu4_0[P] mcu4_1[P] c7x_1[P] c7x_2[P] c7x_3[s] c7x_4[P] 
    [C7x_3 ]     16.385667 s: IPC: Echo status: mpu1_0[x] mcu2_0[P] mcu2_1[P] mcu3_0[P] mcu3_1[P] mcu4_0[P] mcu4_1[P] c7x_1[P] c7x_2[P] c7x_3[s] c7x_4[P] 
    [C7x_4 ]      6.275756 s: CIO: Init ... Done !!!
    [C7x_4 ]      6.275771 s: ### CPU Frequency = 1000000000 Hz
    [C7x_4 ]      6.275782 s: CPU is running FreeRTOS
    [C7x_4 ]      6.275791 s: APP: Init ... !!!
    [C7x_4 ]      6.275799 s: SCICLIENT: Init ... !!!
    [C7x_4 ]      6.275911 s: SCICLIENT: DMSC FW version [9.1.2--v09.01.02 (Kool Koala)]
    [C7x_4 ]      6.275925 s: SCICLIENT: DMSC FW revision 0x9  
    [C7x_4 ]      6.275935 s: SCICLIENT: DMSC FW ABI revision 3.1
    [C7x_4 ]      6.275946 s: SCICLIENT: Init ... Done !!!
    [C7x_4 ]      6.275956 s: UDMA: Init ... !!!
    [C7x_4 ]      6.276791 s: UDMA: Init ... Done !!!
    [C7x_4 ]      6.276802 s: MEM: Init ... !!!
    [C7x_4 ]      6.276814 s: MEM: Created heap (DDR_LOCAL_MEM, id=0, flags=0x00000004) @ 102000000 of size 33554432 bytes !!!
    [C7x_4 ]      6.276836 s: MEM: Init ... Done !!!
    [C7x_4 ]      6.276845 s: IPC: Init ... !!!
    [C7x_4 ]      6.276858 s: IPC: 11 CPUs participating in IPC !!!
    [C7x_4 ]      6.276873 s: IPC: Waiting for HLOS to be ready ... !!!
    [C7x_4 ]     15.474361 s: IPC: HLOS is ready !!!
    [C7x_4 ]     15.478295 s: IPC: Init ... Done !!!
    [C7x_4 ]     15.478311 s: APP: Syncing with 10 CPUs ... !!!
    [C7x_4 ]     16.148103 s: APP: Syncing with 10 CPUs ... Done !!!
    [C7x_4 ]     16.148121 s: REMOTE_SERVICE: Init ... !!!
    [C7x_4 ]     16.148374 s: REMOTE_SERVICE: Init ... Done !!!
    [C7x_4 ]     16.148400 s:  VX_ZONE_INIT:Enabled
    [C7x_4 ]     16.148482 s:  VX_ZONE_ERROR:Enabled
    [C7x_4 ]     16.148541 s:  VX_ZONE_WARNING:Enabled
    [C7x_4 ]     16.148916 s:  VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-4 
    [C7x_4 ]     16.148994 s:  VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-4_PRI_2 
    [C7x_4 ]     16.149064 s:  VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-4_PRI_3 
    [C7x_4 ]     16.149135 s:  VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-4_PRI_4 
    [C7x_4 ]     16.149214 s:  VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-4_PRI_5 
    [C7x_4 ]     16.149287 s:  VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-4_PRI_6 
    [C7x_4 ]     16.149362 s:  VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-4_PRI_7 
    [C7x_4 ]     16.149436 s:  VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-4_PRI_8 
    [C7x_4 ]     16.149458 s:  VX_ZONE_INIT:[tivxInitLocal:130] Initialization Done !!!
    [C7x_4 ]     16.149471 s: APP: OpenVX Target kernel init ... !!!
    [C7x_4 ]     16.150164 s: APP: Register C7120 !!!
    [C7x_4 ]     16.150180 s: APP: OpenVX Target kernel init ... Done !!!
    [C7x_4 ]     16.150190 s: UDMA Copy: Init ... !!!
    [C7x_4 ]     16.152442 s: UDMA Copy: Init ... Done !!!
    [C7x_4 ]     16.152459 s: APP: Init ... Done !!!
    [C7x_4 ]     16.152469 s: APP: Run ... !!!
    [C7x_4 ]     16.152478 s: IPC: Starting echo test ...
    [C7x_4 ]     16.152767 s: APP: Run ... Done !!!
    [C7x_4 ]     16.153461 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[P] mcu3_1[.] mcu4_0[x] mcu4_1[.] c7x_1[.] c7x_2[x] c7x_3[.] c7x_4[s] 
    [C7x_4 ]     16.153520 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[P] mcu3_1[.] mcu4_0[x] mcu4_1[.] c7x_1[.] c7x_2[x] c7x_3[P] c7x_4[s] 
    [C7x_4 ]     16.153581 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[P] mcu3_1[P] mcu4_0[x] mcu4_1[.] c7x_1[.] c7x_2[x] c7x_3[P] c7x_4[s] 
    [C7x_4 ]     16.153626 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[P] mcu3_1[P] mcu4_0[x] mcu4_1[P] c7x_1[.] c7x_2[x] c7x_3[P] c7x_4[s] 
    [C7x_4 ]     16.153667 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[P] mcu3_1[P] mcu4_0[x] mcu4_1[P] c7x_1[P] c7x_2[x] c7x_3[P] c7x_4[s] 
    [C7x_4 ]     16.153868 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] mcu3_0[P] mcu3_1[P] mcu4_0[x] mcu4_1[P] c7x_1[P] c7x_2[P] c7x_3[P] c7x_4[s] 
    [C7x_4 ]     16.161403 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[P] mcu3_0[P] mcu3_1[P] mcu4_0[x] mcu4_1[P] c7x_1[P] c7x_2[P] c7x_3[P] c7x_4[s] 
    [C7x_4 ]     16.178324 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[P] mcu3_0[P] mcu3_1[P] mcu4_0[P] mcu4_1[P] c7x_1[P] c7x_2[P] c7x_3[P] c7x_4[s] 
    [C7x_4 ]     16.385680 s: IPC: Echo status: mpu1_0[x] mcu2_0[P] mcu2_1[P] mcu3_0[P] mcu3_1[P] mcu4_0[P] mcu4_1[P] c7x_1[P] c7x_2[P] c7x_3[P] c7x_4[s] 
    [MCU2_0]     37.996865 s: [SPI][SPI_test_xfer:108]Enter -- 0!
    [MCU2_0]     37.996961 s: Transfer: rx: [0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x08 ]
    [MCU2_0]     37.997009 s: Transfer: tx: [0xff 0x55 0x11 0x11 0x11 0x11 0x55 0xff ]
    [MCU2_0]     38.196866 s: [SPI][SPI_test_xfer:108]Enter -- 0!
    

    How to control the registers of phy? I haven't seen any related controls for phy in the logs and links mentioned above. But the CPSW2G in the main domain can correctly control another phy.

    [    2.501519] dans--- test get_phy_c22_id.----=1886976
    [    2.506932] davinci_mdio 46000f00.mdio: phy[0]: device 46000f00.mdio:00, driver RTL9000AA_RTL9000AN Ethernet

  • Hi,

    How to control the registers of phy?

    This is done by the phy drivers which usually come from the phy manufacturers. You will find these at "drivers/net/phy" in u-boot source code.

    Regards,
    Tanmay