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.

TDA4VM: 移植phy无法获取ip

Part Number: TDA4VM


hi,

我们在sdk 8.4

ti-processor-sdk-rtos-j721e-evm-08_04_00_02中移植phy,phy已经处于linked状态,但是无法获取ip,按如下方法设置静态IP,也无法ping通

我们的phy已在7.3的sdk中将功能调通,升级sdk8。4后出现此问题,pinmux,rgmii mode都是正确的

rgmii pinmux 

root@j7-evm:~# devmem2 0x00011C100
/dev/mem opened.
Memory mapped at address 0xffff99f50000.
Read at address 0x0011C100 (0xffff99f5c100): 0x00050004
root@j7-evm:~# devmem2 0x00011C104
/dev/mem opened.
Memory mapped at address 0xffff92e40000.
Read at address 0x0011C104 (0xffff92e4c104): 0x00050004
root@j7-evm:~# devmem2 0x00011C108
/dev/mem opened.
Memory mapped at address 0xffff991d0000.
Read at address 0x0011C108 (0xffff991dc108): 0x00050004
root@j7-evm:~# devmem2 0x00011C108
/dev/mem opened.
Memory mapped at address 0xffff94620000.
Read at address 0x0011C108 (0xffff9462c108): 0x00050004
root@j7-evm:~# devmem2 0x00011C108
/dev/mem opened.
Memory mapped at address 0xffff9f200000.
Read at address 0x0011C108 (0xffff9f20c108): 0x00050004
root@j7-evm:~# devmem2 0x00011C110
/dev/mem opened.
Memory mapped at address 0xffff97ef0000.
Read at address 0x0011C110 (0xffff97efc110): 0x00050004
root@j7-evm:~# devmem2 0x00011C12C
/dev/mem opened.
Memory mapped at address 0xffffb3f40000.
Read at address 0x0011C12C (0xffffb3f4c12c): 0x00010004
root@j7-evm:~# devmem2 0x00011C130
/dev/mem opened.
Memory mapped at address 0xffff7edf0000.
Read at address 0x0011C130 (0xffff7edfc130): 0x00010004
root@j7-evm:~# devmem2 0x00011C134
/dev/mem opened.
Memory mapped at address 0xffffa89e0000.
Read at address 0x0011C134 (0xffffa89ec134): 0x00010004
root@j7-evm:~# devmem2 0x00011C138
/dev/mem opened.
Memory mapped at address 0xffff9b070000.
Read at address 0x0011C138 (0xffff9b07c138): 0x00010004
root@j7-evm:~# devmem2 0x00011C140
/dev/mem opened.
Memory mapped at address 0xffff88a30000.
Read at address 0x0011C140 (0xffff88a3c140): 0x00050004
root@j7-evm:~# devmem2 0x00011C13C
/dev/mem opened.
Memory mapped at address 0xffffb25d0000.
Read at address 0x0011C13C (0xffffb25dc13c): 0x00050004
root@j7-evm:~#

rgmii mode

root@j7-evm:~# devmem2 0x104050
/dev/mem opened.
Memory mapped at address 0xffffa1c10000.
Read at address 0x00104050 (0xffffa1c14050): 0x00000012
root@j7-evm:~#

static ip settings

diff --git a/ethfw/apps/app_remoteswitchcfg_client/mcu_2_1/main.c b/ethfw/apps/app_remoteswitchcfg_client/mcu_2_1/main.c
index b5c47cd9e..6e6512551 100644
--- a/ethfw/apps/app_remoteswitchcfg_client/mcu_2_1/main.c
+++ b/ethfw/apps/app_remoteswitchcfg_client/mcu_2_1/main.c
@@ -169,7 +169,7 @@
#endif

/* DHCP or static IP */
-#define ETHAPP_LWIP_USE_DHCP (1)
+#define ETHAPP_LWIP_USE_DHCP (0)
#if !ETHAPP_LWIP_USE_DHCP
#define ETHFW_CLIENT_IPADDR_SWITCH_PORT(addr) IP4_ADDR((addr), 192,168,1,201)
#define ETHFW_CLIENT_GW_SWITCH_PORT(addr) IP4_ADDR((addr), 192,168,1,1)
diff --git a/ethfw/apps/app_remoteswitchcfg_server/mcu_2_0/main.c b/ethfw/apps/app_remoteswitchcfg_server/mcu_2_0/main.c
index 67b866e73..d16817416 100644
--- a/ethfw/apps/app_remoteswitchcfg_server/mcu_2_0/main.c
+++ b/ethfw/apps/app_remoteswitchcfg_server/mcu_2_0/main.c
@@ -184,7 +184,7 @@
#endif

/* DHCP or static IP */
-#define ETHAPP_LWIP_USE_DHCP (1)
+#define ETHAPP_LWIP_USE_DHCP (0)
#if !ETHAPP_LWIP_USE_DHCP
#define ETHFW_SERVER_IPADDR(addr) IP4_ADDR((addr), 192,168,1,200)
#define ETHFW_SERVER_GW(addr) IP4_ADDR((addr), 192,168,1,1)
diff --git a/vision_apps/utils/ethfw/src/app_ethfw_freertos.c b/vision_apps/utils/ethfw/src/app_ethfw_freertos.c
index 1cde4e1c9..2d465bf04 100755
--- a/vision_apps/utils/ethfw/src/app_ethfw_freertos.c
+++ b/vision_apps/utils/ethfw/src/app_ethfw_freertos.c
@@ -82,7 +82,7 @@ static uint8_t gEthAppLwipStackBuf[ETHAPP_LWIP_TASK_STACKSIZE] __attribute__ ((s
#endif

/* DHCP or static IP */
-#define ETHAPP_LWIP_USE_DHCP (1)
+#define ETHAPP_LWIP_USE_DHCP (0)
#if !ETHAPP_LWIP_USE_DHCP
#define ETHFW_SERVER_IPADDR(addr) IP4_ADDR((addr), 192,168,1,200)
#define ETHFW_SERVER_GW(addr) IP4_ADDR((addr), 192,168,1,1)

pc 与平台同网段,无法ping通

请问一下,应该如何调试此问题

  • This might be very basic, but can you confirm if you are rebuilding the ethfw binary and replacing it in the linux kernel?

    这个需要怎样做啊?

    Can you check if there is any difference in the following registers between SDK 7.3 and SDK 8.4

    • 0x0C000F08
    • 0x0C000F0C

    后面回复你

    Which MAC port is the phy attached to?

    mac 4

    Which phy are you using?

    88Q2112

  • This might be very basic, but can you confirm if you are rebuilding the ethfw binary and replacing it in the linux kernel?

    这个需要怎样做啊

    cp ./ethfw/out/J721E/R5Ft/FREERTOS/release/app_remoteswitchcfg_server_strip.xer5f /lib/firmware/ethfw/app_remoteswitchcfg_server_strip.xer5f  ?

  • root@j7-evm:~# devmem2 0x0C000F0b
    /dev/mem opened.
    Memory mapped at address 0xffff80b5d000.
    Read at address 0x0C000F0B (0xffff80b5df08): 0x00000004
    root@j7-evm:~# devmem2 0x0C000F0c
    /dev/mem opened.
    Memory mapped at address 0xffff820fc000.
    Read at address 0x0C000F0C (0xffff820fcf0c): 0x00000000
    root@j7-evm:~#

  • [MCU2_0] 149500.296863 s: Cpsw_handleLinkUp: Port 4: Link up: 1-Gbps Full-Duplex
    [MCU2_0] 149500.296863 s: Cpsw_handleLinkUp: Port 4: Link up: 1-Gbps Full-Duplex

  • Can you provide me the values at these addresses along with the registers mentioned in the earlier post:

    • 0x0C00003C
    • 0x0C025330
    • 0x0C025334
    • 0x00104050

    root@j7-evm:~# devmem2 0x0C00003C
    /dev/mem opened.
    Memory mapped at address 0xffffa1be5000.
    Read at address 0x0C00003C (0xffffa1be503c): 0x0000000D
    root@j7-evm:~# devmem2 0x0C025330
    /dev/mem opened.
    Memory mapped at address 0xffff9697a000.
    Read at address 0x0C025330 (0xffff9697a330): 0x000200A1
    root@j7-evm:~# devmem2 0x0C025334
    /dev/mem opened.
    Memory mapped at address 0xffffbb71a000.
    Read at address 0x0C025334 (0xffffbb71a334): 0xF0000018
    root@j7-evm:~# devmem2 0x00104050
    /dev/mem opened.
    Memory mapped at address 0xffffbf2d5000.
    Read at address 0x00104050 (0xffffbf2d5050): 0x00000012
    root@j7-evm:~#

    Can you also provide the ethfw log on MAIN UART 2. If you do not have MAIN UART 2 on your board, give me the out put of the command "cat /sys/kernel/debug/remoteproc/remoteproc*/trace0

    root@j7-evm:~# cat /sys/kernel/debug/remoteproc/remoteproc*/trace*
    Sciclient_boardCfgRm init Passed
    DM Built On: Jun 16 2022 04:16:33
    Sciserver Version: v2022.01.1.0-REL.CORESDK.08.02.01.03-1-g59713
    RM_PM_HAL Version: REL.CORESDK.08.02.01.03-1-g59713
    Starting Sciserver..... PASSED
    IPC_echo_test (core : mcu1_0) .....

  • Can you provide me the values at these addresses along with the registers mentioned in the earlier post:

    root@j7-evm:~# devmem2 0x0C000F0b
    /dev/mem opened.
    Memory mapped at address 0xffff80b5d000.
    Read at address 0x0C000F0B (0xffff80b5df08): 0x00000004
    root@j7-evm:~# devmem2 0x0C000F0c
    /dev/mem opened.
    Memory mapped at address 0xffff820fc000.
    Read at address 0x0C000F0C (0xffff820fcf0c): 0x00000000
    root@j7-evm:~#

  • Also can you provide what are the internal delays configured in the phy?

  • 已把您的回复更新到e2e帖子,请关注帖子的回复。

  • Is this the complete output? If it is, then your remote cores are not running any binaries. So no ethfw is running. Have you changed both Linux and RTOS SDK to 8.4? or is one still earlier version?

    这个是从sdcard启动

  • 能否回答上面工程师的问题?

  • Is this the complete output?

    是的,但是我另外一款phy,100M,挂在mac 3上rmii3上,可以 获取Ip,现在我是单独调试1000M mac4/rgmii4

  • Have you changed both Linux and RTOS SDK to 8.4? or is one still earlier version?是的,我现在用的都是8.4sdk里的img

  • 请看e2e工程师的最新回复。

    It boots from sd card.

    By this I am assuming that it boots from the default SD card from 8.4. Respond if this is incorrect.

    You can turn the tx and rx delays on and off in the phy using bootstraps in the hardware design. This is the usual practice. Please let me know what are they configured as. There will also be some phy register which has this information.

    Please provide response on this.

  • 我看7.3中类似的代码是这样

    void Dp83867_initCfg(Dp83867_Cfg *cfg)
    {
    cfg->txClkShiftEn = false;
    cfg->rxClkShiftEn = false;
    cfg->txDelayInPs = 2000U; /* 2.00 ns */
    cfg->rxDelayInPs = 2000U; /* 2.00 ns */
    cfg->txFifoDepth = 4U; /* 4 bytes/nibbles */
    cfg->impedanceInMilliOhms = 50000U; /* 50 ohms */
    cfg->gpio0Mode = DP83867_GPIO0_RXERR;
    cfg->gpio1Mode = DP83867_GPIO1_COL;
    cfg->ledMode[0] = DP83867_LED_LINKED;
    cfg->ledMode[1] = DP83867_LED_LINKED_1000BT;
    cfg->ledMode[2] = DP83867_LED_RXTXACT;
    cfg->ledMode[3] = DP83867_LED_LINKED_100BTX;
    }

    这应该是型号Dp83867的code,但相应的88Q2112并没有去控制rgmii tx shift 在7.3中

  • 图片显示不出来,请回复时点击"插入"图片。

  • By this I am assuming that it boots from the default SD card from 8.4. Respond if this is incorrect.

    还有这个问题,麻烦回答一下。

  • 7.3中phy默认是align,即phy处于no delay的情况

  • By this I am assuming that it boots from the default SD card from 8.4. Respond if this is incorrect.

    还有这个问题,麻烦回答一下。

    麻烦回答一下这个问题,是否默认是从8.4 sd卡启动的?

  • 是的,现在我用8.4,sdcard启动(bootmode 拨码默认从sdcard启动)


  • root@j7-evm:~# /opt/vision_apps/vision_apps_init.sh
    root@j7-evm:~# [MCU2_0] 158.950501 s: CIO: Init ... Done !!!
    [MCU2_0] 158.950578 s: ### CPU Frequency = 1000000000 Hz
    [MCU2_0] 158.950637 s: APP: Init ... !!!
    [MCU2_0] 158.950669 s: SCICLIENT: Init ... !!!
    [MCU2_0] 158.951648 s: SCICLIENT: DMSC FW version [21.1.1--v2021.01a (Terrific Lla]
    [MCU2_0] 158.951702 s: SCICLIENT: DMSC FW revision 0x15
    [MCU2_0] 158.951741 s: SCICLIENT: DMSC FW ABI revision 3.1
    [MCU2_0] 158.951779 s: SCICLIENT: Init ... Done !!!
    [MCU2_0] 158.951807 s: UDMA: Init ... !!!
    [MCU2_0] 158.961043 s: UDMA: Init ... Done !!!
    [MCU2_0] 158.961109 s: MEM: Init ... !!!
    [MCU2_0] 158.961156 s: MEM: Created heap (DDR_LOCAL_MEM, id=0, flags=0x00000004) @ d9000000 of size 16777216 bytes !!!
    [MCU2_0] 158.961236 s: MEM: Created heap (L3_MEM, id=1, flags=0x00000000) @ 3600000 of size 262144 bytes !!!
    [MCU2_0] 158.961301 s: MEM: Init ... Done !!!
    [MCU2_0] 158.961329 s: IPC: Init ... !!!
    [MCU2_0] 158.961394 s: IPC: 6 CPUs participating in IPC !!!
    [MCU2_0] 158.961466 s: IPC: Waiting for HLOS to be ready ... !!!
    [MCU2_0] 163.436719 s: IPC: HLOS is ready !!!
    [MCU2_0] 163.456965 s: IPC: Init ... Done !!!
    [MCU2_0] 163.457037 s: APP: Syncing with 5 CPUs ... !!!
    [MCU2_0] 163.494209 s: APP: Syncing with 5 CPUs ... Done !!!
    [MCU2_0] 163.494570 s: REMOTE_SERVICE: Init ... !!!
    [MCU2_0] 163.496578 s: REMOTE_SERVICE: Init ... Done !!!
    [MCU2_0] 163.496652 s: ETHFW: Init ... !!!
    [MCU2_0] 163.517888 s: ETHFW: appEthFwTimmingInit start... !!!
    [MCU2_0] 163.517951 s: ETHFW: appEthFwTimmingInit exit... !!!
    [MCU2_0] 163.518017 s: Warning: Using 6 MAC address(es) from static pool
    [MCU2_0] 163.518106 s: ETHFW: Shared multicasts (software fanout):
    [MCU2_0] 163.518149 s: 01:00:5e:00:00:01
    [MCU2_0] 163.518203 s: 01:00:5e:00:00:fb
    [MCU2_0] 163.518251 s: 01:00:5e:00:00:fc
    [MCU2_0] 163.518299 s: 33:33:00:00:00:01
    [MCU2_0] 163.518346 s: 33:33:ff:1d:92:c2
    [MCU2_0] 163.518394 s: 01:80:c2:00:00:00
    [MCU2_0] 163.518441 s: 01:80:c2:00:00:03
    [MCU2_0] 163.518490 s: ETHFW: Reserved multicasts:
    [MCU2_0] 163.518517 s: 01:80:c2:00:00:0e
    [MCU2_0] 163.518565 s: 01:1b:19:00:00:00
    [MCU2_0] 163.518835 s: EnetMcm: CPSW_9G on MAIN NAVSS
    [MCU2_0] 163.535654 s: PHY 0 is alive
    [MCU2_0] 163.535743 s: PHY 1 is not alive
    [MCU2_0] 163.535790 s: PHY 2 is alive
    [MCU2_0] 163.535829 s: PHY 3 is not alive
    [MCU2_0] 163.535865 s: PHY 4 is alive
    [MCU2_0] 163.535898 s: PHY 5 is not alive
    [MCU2_0] 163.535932 s: PHY 6 is not alive
    [MCU2_0] 163.535965 s: PHY 7 is not alive
    [MCU2_0] 163.535999 s: PHY 8 is not alive
    [MCU2_0] 163.536033 s: PHY 9 is not alive
    [MCU2_0] 163.536068 s: PHY 10 is not alive
    [MCU2_0] 163.536101 s: PHY 11 is not alive
    [MCU2_0] 163.536137 s: PHY 12 is not alive
    [MCU2_0] 163.536172 s: PHY 13 is not alive
    [MCU2_0] 163.536205 s: PHY 14 is not alive
    [MCU2_0] 163.536239 s: PHY 15 is not alive
    [MCU2_0] 163.536272 s: PHY 16 is not alive
    [MCU2_0] 163.536306 s: PHY 17 is not alive
    [MCU2_0] 163.536343 s: PHY 18 is not alive
    [MCU2_0] 163.536377 s: PHY 19 is not alive
    [MCU2_0] 163.536411 s: PHY 20 is not alive
    [MCU2_0] 163.536446 s: PHY 21 is not alive
    [MCU2_0] 163.536480 s: PHY 22 is not alive
    [MCU2_0] 163.536515 s: PHY 23 is not alive
    [MCU2_0] 163.536549 s: PHY 24 is not alive
    [MCU2_0] 163.536584 s: PHY 25 is not alive
    [MCU2_0] 163.536630 s: PHY 26 is not alive
    [MCU2_0] 163.536667 s: PHY 27 is not alive
    [MCU2_0] 163.536701 s: PHY 28 is not alive
    [MCU2_0] 163.536735 s: PHY 29 is not alive
    [MCU2_0] 163.536767 s: PHY 30 is not alive
    [MCU2_0] 163.537519 s: EnetPhy_getIdx: zyk xPHY 2: read ID1 register: 0x2b
    [MCU2_0] 163.537825 s: EnetPhy_getIdx: zyk xPHY 2: read ID1 register: 0x2b
    [MCU2_0] 163.538114 s: EnetPhy_getIdx: PHY 2: Failed to read 0x8001U register: 0x0
    [MCU2_0] 163.538647 s: EnetPhy_getIdx: zyk xPHY 2: read 8001U register: 0x0
    [MCU2_0] 163.538729 s: EnetPhy_bindDriver: PHY 2: OUI:000ac2 Model:18 Ver:03 <-> 'generic' : OK
    [MCU2_0] 163.540909 s:
    [MCU2_0] ETHFW Version : 0.02.00
    [MCU2_0] 163.540993 s: ETHFW Build Date: Dec 28, 2022
    [MCU2_0] 163.540993 s: ETHFW Build Date: Dec 28, 2022
    [MCU2_0] 163.541032 s: ETHFW Build Time: 14:58:36
    [MCU2_0] 163.541032 s: ETHFW Build Time: 14:58:36
    [MCU2_0] 163.541066 s: ETHFW Commit SHA: df534c92
    [MCU2_0] 163.541066 s: ETHFW Commit SHA: df534c92
    [MCU2_0] 163.541145 s: ETHFW: Init ... DONE !!!
    [MCU2_0] 163.541145 s: ETHFW: Init ... DONE !!!
    [MCU2_0] 163.541181 s: ETHFW: Remove server Init ... !!!
    [MCU2_0] 163.541181 s: ETHFW: Remove server Init ... !!!
    [MCU2_0] 163.541375 s: CpswProxyServer: Virtual port configuration:
    [MCU2_0] 163.541375 s: CpswProxyServer: Virtual port configuration:
    [MCU2_0] 163.541433 s: mpu_1_0 <-> Switch port 0: mpu_1_0_ethswitch-device-0
    [MCU2_0] 163.541433 s: mpu_1_0 <-> Switch port 0: mpu_1_0_ethswitch-device-0
    [MCU2_0] 163.541482 s: mcu_2_1 <-> Switch port 1: mcu_2_1_ethswitch-device-1
    [MCU2_0] 163.541482 s: mcu_2_1 <-> Switch port 1: mcu_2_1_ethswitch-device-1
    [MCU2_0] 163.541527 s: mpu_1_0 <-> MAC port 1: mpu_1_0_ethmac-device-1
    [MCU2_0] 163.541527 s: mpu_1_0 <-> MAC port 1: mpu_1_0_ethmac-device-1
    [MCU2_0] 163.541569 s: mcu_2_1 <-> MAC port 4: mcu_2_1_ethmac-device-4
    [MCU2_0] 163.541569 s: mcu_2_1 <-> MAC port 4: mcu_2_1_ethmac-device-4
    [MCU2_0] 163.542650 s: CpswProxyServer: initialization completed (core: mcu2_0)
    [MCU2_0] 163.542650 s: CpswProxyServer: initialization completed (core: mcu2_0)
    [MCU2_0] 163.542718 s: ETHFW: Remove server Init ... DONE !!!
    [MCU2_0] 163.542718 s: ETHFW: Remove server Init ... DONE !!!
    [MCU2_0] 163.544086 s: Starting lwIP, local interface IP is dhcp-enabled
    [MCU2_0] 163.544086 s: Starting lwIP, local interface IP is dhcp-enabled
    [MCU2_0] 163.564941 s: Host MAC address: 70:ff:76:1d:92:c3
    [MCU2_0] 163.564941 s: Host MAC address: 70:ff:76:1d:92:c3
    [MCU2_0] 163.573962 s: [LWIPIF_LWIP] Enet LLD netif initialized successfully
    [MCU2_0] 163.573962 s: [LWIPIF_LWIP] Enet LLD netif initialized successfully
    [MCU2_0] 163.603930 s: [LWIPIF_LWIP_IC] Interface started successfully
    [MCU2_0] 163.603930 s: [LWIPIF_LWIP_IC] Interface started successfully
    [MCU2_0] 163.604002 s: [LWIPIF_LWIP_IC] NETIF INIT SUCCESS
    [MCU2_0] 163.604002 s: [LWIPIF_LWIP_IC] NETIF INIT SUCCESS
    [MCU2_0] 163.614620 s: FVID2: Init ... !!!
    [MCU2_0] 163.614620 s: FVID2: Init ... !!!
    [MCU2_0] 163.614721 s: FVID2: Init ... Done !!!
    [MCU2_0] 163.614721 s: FVID2: Init ... Done !!!
    [MCU2_0] 163.614777 s: DSS: Init ... !!!
    [MCU2_0] 163.614777 s: DSS: Init ... !!!
    [MCU2_0] 163.614804 s: DSS: Display type is HDMI !!!
    [MCU2_0] 163.614804 s: DSS: Display type is HDMI !!!
    [MCU2_0] 163.614834 s: DSS: M2M Path is enabled !!!
    [MCU2_0] 163.614834 s: DSS: M2M Path is enabled !!!
    [MCU2_0] 163.614861 s: DSS: SoC init ... !!!
    [MCU2_0] 163.614861 s: DSS: SoC init ... !!!
    [MCU2_0] 163.614886 s: SCICLIENT: Sciclient_pmSetModuleState module=152 state=2
    [MCU2_0] 163.614886 s: SCICLIENT: Sciclient_pmSetModuleState module=152 state=2
    [MCU2_0] 163.615858 s: SCICLIENT: Sciclient_pmSetModuleState success
    [MCU2_0] 163.615858 s: SCICLIENT: Sciclient_pmSetModuleState success
    [MCU2_0] 163.615913 s: SCICLIENT: Sciclient_pmSetModuleClkParent module=152 clk=4 parent=6
    [MCU2_0] 163.615913 s: SCICLIENT: Sciclient_pmSetModuleClkParent module=152 clk=4 parent=6
    [MCU2_0] 163.616385 s: SCICLIENT: Sciclient_pmSetModuleClkParent success
    [MCU2_0] 163.616385 s: SCICLIENT: Sciclient_pmSetModuleClkParent success
    [MCU2_0] 163.616427 s: SCICLIENT: Sciclient_pmSetModuleClkFreq module=152 clk=4 freq=74250000
    [MCU2_0] 163.616427 s: SCICLIENT: Sciclient_pmSetModuleClkFreq module=152 clk=4 freq=74250000
    [MCU2_0] 163.642322 s: SCICLIENT: Sciclient_pmSetModuleClkFreq success
    [MCU2_0] 163.642379 s: SCICLIENT: Sciclient_pmModuleClkRequest module=152 clk=4 state=2 flag=0
    [MCU2_0] 163.642379 s: SCICLIENT: Sciclient_pmModuleClkRequest module=152 clk=4 state=2 flag=0
    [MCU2_0] 163.642796 s: SCICLIENT: Sciclient_pmModuleClkRequest success
    [MCU2_0] 163.642796 s: SCICLIENT: Sciclient_pmModuleClkRequest success
    [MCU2_0] 163.642848 s: DSS: SoC init ... Done !!!
    [MCU2_0] 163.642848 s: DSS: SoC init ... Done !!!
    [MCU2_0] 163.642882 s: DSS: Board init ... !!!
    [MCU2_0] 163.642882 s: DSS: Board init ... !!!
    [MCU2_0] 163.647642 s: DSS: Board init ... Done !!!
    [MCU2_0] 163.647642 s: DSS: Board init ... Done !!!
    [MCU2_0] 163.650865 s: DSS: Init ... Done !!!
    [MCU2_0] 163.650865 s: DSS: Init ... Done !!!
    [MCU2_0] 163.650938 s: VHWA: VPAC Init ... !!!
    [MCU2_0] 163.650938 s: VHWA: VPAC Init ... !!!
    [MCU2_0] 163.650974 s: SCICLIENT: Sciclient_pmSetModuleState module=290 state=2
    [MCU2_0] 163.650974 s: SCICLIENT: Sciclient_pmSetModuleState module=290 state=2
    [MCU2_0] 163.651728 s: SCICLIENT: Sciclient_pmSetModuleState success
    [MCU2_0] 163.651728 s: SCICLIENT: Sciclient_pmSetModuleState success
    [MCU2_0] 163.651786 s: VHWA: LDC Init ... !!!
    [MCU2_0] 163.651786 s: VHWA: LDC Init ... !!!
    [MCU2_0] 163.662006 s: VHWA: LDC Init ... Done !!!
    [MCU2_0] 163.662006 s: VHWA: LDC Init ... Done !!!
    [MCU2_0] 163.662075 s: VHWA: MSC Init ... !!!
    [MCU2_0] 163.662075 s: VHWA: MSC Init ... !!!
    [MCU2_0] 163.696890 s: VHWA: MSC Init ... Done !!!
    [MCU2_0] 163.696890 s: VHWA: MSC Init ... Done !!!
    [MCU2_0] 163.696957 s: VHWA: NF Init ... !!!
    [MCU2_0] 163.696957 s: VHWA: NF Init ... !!!
    [MCU2_0] 163.702409 s: VHWA: NF Init ... Done !!!
    [MCU2_0] 163.702409 s: VHWA: NF Init ... Done !!!
    [MCU2_0] 163.702479 s: VHWA: VISS Init ... !!!
    [MCU2_0] 163.702479 s: VHWA: VISS Init ... !!!
    [MCU2_0] 163.732577 s: VHWA: VISS Init ... Done !!!
    [MCU2_0] 163.732577 s: VHWA: VISS Init ... Done !!!
    [MCU2_0] 163.732741 s: VHWA: VPAC Init ... Done !!!
    [MCU2_0] 163.732741 s: VHWA: VPAC Init ... Done !!!
    [MCU2_0] 163.732790 s: VX_ZONE_INIT:Enabled
    [MCU2_0] 163.732790 s: VX_ZONE_INIT:Enabled
    [MCU2_0] 163.732824 s: VX_ZONE_ERROR:Enabled
    [MCU2_0] 163.732824 s: VX_ZONE_ERROR:Enabled
    [MCU2_0] 163.732855 s: VX_ZONE_WARNING:Enabled
    [MCU2_0] 163.732855 s: VX_ZONE_WARNING:Enabled
    [MCU2_0] 163.734204 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target MCU2-0
    [MCU2_0] 163.734204 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target MCU2-0
    [MCU2_0] 163.734466 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target VPAC_NF
    [MCU2_0] 163.734466 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target VPAC_NF
    [MCU2_0] 163.734886 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target VPAC_LDC1
    [MCU2_0] 163.734886 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target VPAC_LDC1
    [MCU2_0] 163.735169 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target VPAC_MSC1
    [MCU2_0] 163.735169 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target VPAC_MSC1
    [MCU2_0] 163.735428 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target VPAC_MSC2
    [MCU2_0] 163.735428 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target VPAC_MSC2
    [MCU2_0] 163.735867 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target VPAC_VISS1
    [MCU2_0] 163.735867 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target VPAC_VISS1
    [MCU2_0] 163.736185 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target CAPTURE1
    [MCU2_0] 163.736464 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target CAPTURE2
    [MCU2_0] 163.736464 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target CAPTURE2
    [MCU2_0] 163.736872 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target DISPLAY1
    [MCU2_0] 163.736872 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target DISPLAY1
    [MCU2_0] 163.737176 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target DISPLAY2
    [MCU2_0] 163.737176 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target DISPLAY2
    [MCU2_0] 163.737431 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target CSITX
    [MCU2_0] 163.737431 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target CSITX
    [MCU2_0] 163.737843 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target CAPTURE3
    [MCU2_0] 163.737843 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target CAPTURE3
    [MCU2_0] 163.738151 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target CAPTURE4
    [MCU2_0] 163.738151 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target CAPTURE4
    [MCU2_0] 163.738419 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target CAPTURE5
    [MCU2_0] 163.738419 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target CAPTURE5
    [MCU2_0] 163.738823 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target CAPTURE6
    [MCU2_0] 163.738823 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target CAPTURE6
    [MCU2_0] 163.739119 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target CAPTURE7
    [MCU2_0] 163.739119 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target CAPTURE7
    [MCU2_0] 163.739386 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target CAPTURE8
    [MCU2_0] 163.739386 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target CAPTURE8
    [MCU2_0] 163.739788 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target DSS_M2M1
    [MCU2_0] 163.739788 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target DSS_M2M1
    [MCU2_0] 163.740076 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target DSS_M2M2
    [MCU2_0] 163.740076 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target DSS_M2M2
    [MCU2_0] 163.740339 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target DSS_M2M3
    [MCU2_0] 163.740339 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target DSS_M2M3
    [MCU2_0] 163.740756 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target DSS_M2M4
    [MCU2_0] 163.740756 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target DSS_M2M4
    [MCU2_0] 163.740836 s: VX_ZONE_INIT:[tivxInitLocal:130] Initialization Done !!!
    [MCU2_0] 163.740836 s: VX_ZONE_INIT:[tivxInitLocal:130] Initialization Done !!!
    [MCU2_0] 163.740876 s: APP: OpenVX Target kernel init ... !!!
    [MCU2_0] 163.740876 s: APP: OpenVX Target kernel init ... !!!
    [MCU2_0] 163.765075 s: APP: OpenVX Target kernel init ... Done !!!
    [MCU2_0] 163.765075 s: APP: OpenVX Target kernel init ... Done !!!
    [MCU2_0] 163.765144 s: CSI2RX: Init ... !!!
    [MCU2_0] 163.765144 s: CSI2RX: Init ... !!!
    [MCU2_0] 163.765173 s: SCICLIENT: Sciclient_pmSetModuleState module=25 state=2
    [MCU2_0] 163.765173 s: SCICLIENT: Sciclient_pmSetModuleState module=25 state=2
    [MCU2_0] 163.765583 s: SCICLIENT: Sciclient_pmSetModuleState success
    [MCU2_0] 163.765583 s: SCICLIENT: Sciclient_pmSetModuleState success
    [MCU2_0] 163.765771 s: SCICLIENT: Sciclient_pmSetModuleState module=26 state=2
    [MCU2_0] 163.765771 s: SCICLIENT: Sciclient_pmSetModuleState module=26 state=2
    [MCU2_0] 163.766450 s: SCICLIENT: Sciclient_pmSetModuleState success
    [MCU2_0] 163.766491 s: SCICLIENT: Sciclient_pmSetModuleState module=27 state=2
    [MCU2_0] 163.766491 s: SCICLIENT: Sciclient_pmSetModuleState module=27 state=2
    [MCU2_0] 163.767053 s: SCICLIENT: Sciclient_pmSetModuleState success
    [MCU2_0] 163.767053 s: SCICLIENT: Sciclient_pmSetModuleState success
    [MCU2_0] 163.767103 s: SCICLIENT: Sciclient_pmSetModuleState module=147 state=2
    [MCU2_0] 163.767103 s: SCICLIENT: Sciclient_pmSetModuleState module=147 state=2
    [MCU2_0] 163.767514 s: SCICLIENT: Sciclient_pmSetModuleState success
    [MCU2_0] 163.767514 s: SCICLIENT: Sciclient_pmSetModuleState success
    [MCU2_0] 163.767553 s: SCICLIENT: Sciclient_pmSetModuleState module=148 state=2
    [MCU2_0] 163.767553 s: SCICLIENT: Sciclient_pmSetModuleState module=148 state=2
    [MCU2_0] 163.768012 s: SCICLIENT: Sciclient_pmSetModuleState success
    [MCU2_0] 163.768012 s: SCICLIENT: Sciclient_pmSetModuleState success
    [MCU2_0] 163.770688 s: CSI2RX: Init ... Done !!!
    [MCU2_0] 163.770688 s: CSI2RX: Init ... Done !!!
    [MCU2_0] 163.770757 s: ISS: Init ... !!!
    [MCU2_0] 163.770757 s: ISS: Init ... !!!
    [MCU2_0] 163.770804 s: IssSensor_Init ... Done !!!
    [MCU2_0] 163.770804 s: IssSensor_Init ... Done !!!
    [MCU2_0] 163.770907 s: IttRemoteServer_Init ... Done !!!
    [MCU2_0] 163.770907 s: IttRemoteServer_Init ... Done !!!
    [MCU2_0] 163.770948 s: VISS REMOTE SERVICE: Init ... !!!
    [MCU2_0] 163.770948 s: VISS REMOTE SERVICE: Init ... !!!
    [MCU2_0] 163.771018 s: VISS REMOTE SERVICE: Init ... Done !!!
    [MCU2_0] 163.771018 s: VISS REMOTE SERVICE: Init ... Done !!!
    [MCU2_0] 163.771054 s: UDMA Copy: Init ... !!!
    [MCU2_0] 163.771054 s: UDMA Copy: Init ... !!!
    [MCU2_0] 163.776485 s: UDMA Copy: Init ... Done !!!
    [MCU2_0] 163.776485 s: UDMA Copy: Init ... Done !!!
    [MCU2_0] 163.776596 s: APP: Init ... Done !!!
    [MCU2_0] 163.776596 s: APP: Init ... Done !!!
    [MCU2_0] 163.776761 s: APP: Run ... !!!
    [MCU2_0] 163.776761 s: APP: Run ... !!!
    [MCU2_0] 163.776788 s: IPC: Starting echo test ...
    [MCU2_0] 163.776788 s: IPC: Starting echo test ...
    [MCU2_0] 163.780083 s: APP: Run ... Done !!!
    [MCU2_0] 163.780083 s: APP: Run ... Done !!!
    [MCU2_0] 163.795267 s: [LWIPIF_LWIP_IC] Interface started successfully
    [MCU2_0] 163.795267 s: [LWIPIF_LWIP_IC] Interface started successfully
    [MCU2_0] 163.795344 s: [LWIPIF_LWIP_IC] NETIF INIT SUCCESS
    [MCU2_0] 163.795344 s: [LWIPIF_LWIP_IC] NETIF INIT SUCCESS
    [MCU2_0] 163.795454 s: Added interface 'br4', IP is 0.0.0.0
    [MCU2_0] 163.795454 s: Added interface 'br4', IP is 0.0.0.0
    [MCU2_0] 163.797428 s: IPC: Echo status: mpu1_0[x] mcu2_0[s] mcu2_1[.] C66X_1[P] C66X_2[.] C7X_1[.]
    [MCU2_0] 163.797428 s: IPC: Echo status: mpu1_0[x] mcu2_0[s] mcu2_1[.] C66X_1[P] C66X_2[.] C7X_1[.]
    [MCU2_0] 163.797784 s: IPC: Echo status: mpu1_0[x] mcu2_0[s] mcu2_1[.] C66X_1[P] C66X_2[P] C7X_1[.]
    [MCU2_0] 163.797784 s: IPC: Echo status: mpu1_0[x] mcu2_0[s] mcu2_1[.] C66X_1[P] C66X_2[P] C7X_1[.]
    [MCU2_0] 163.797918 s: IPC: Echo status: mpu1_0[x] mcu2_0[s] mcu2_1[.] C66X_1[P] C66X_2[P] C7X_1[P]
    [MCU2_0] 163.797918 s: IPC: Echo status: mpu1_0[x] mcu2_0[s] mcu2_1[.] C66X_1[P] C66X_2[P] C7X_1[P]
    [MCU2_0] 163.798022 s: IPC: Echo status: mpu1_0[x] mcu2_0[s] mcu2_1[P] C66X_1[P] C66X_2[P] C7X_1[P]
    [MCU2_0] 163.798022 s: IPC: Echo status: mpu1_0[x] mcu2_0[s] mcu2_1[P] C66X_1[P] C66X_2[P] C7X_1[P]
    [MCU2_0] 163.860731 s: EnetPhy_tick: PHY 2: ENABLE
    [MCU2_0] 163.860731 s: EnetPhy_tick: PHY 2: ENABLE
    [MCU2_0] 163.961760 s: Cpsw_handleLinkUp: Port 4: Link up: 1-Gbps Full-Duplex
    [MCU2_0] 163.961760 s: Cpsw_handleLinkUp: Port 4: Link up: 1-Gbps Full-Duplex
    [MCU2_0] 165.143556 s: Function:CpswProxyServer_attachExtHandlerCb,HostId:0,CpswType:6
    [MCU2_0] 165.143556 s: Function:CpswProxyServer_attachExtHandlerCb,HostId:0,CpswType:6
    [MCU2_0] 165.166244 s: Function:CpswProxyServer_attachExtHandlerCb,HostId:0,CpswType:6
    [MCU2_0] 165.166244 s: Function:CpswProxyServer_attachExtHandlerCb,HostId:0,CpswType:6
    [MCU2_0] 167.552962 s: Function:CpswProxyServer_registerMacHandlerCb,HostId:0,Handle:a3979e14,CoreKey:38acb7e6, MacAddress:70:ff:76:1d:92:c2, FlowIdx:173, FlowIdxOffset:1
    [MCU2_0] 167.552962 s: Function:CpswProxyServer_registerMacHandlerCb,HostId:0,Handle:a3979e14,CoreKey:38acb7e6, MacAddress:70:ff:76:1d:92:c2, FlowIdx:173, FlowIdxOffset:1
    [MCU2_0] 167.556734 s: Function:CpswProxyServer_setPromiscModeHandlerCb,HostId:0,Handle:a3979e14,CoreKey:38acb7e6,mode:disable
    [MCU2_0] 167.556734 s: Function:CpswProxyServer_setPromiscModeHandlerCb,HostId:0,Handle:a3979e14,CoreKey:38acb7e6,mode:disable
    [MCU2_0] 167.557106 s: Function:CpswProxyServer_setPromiscModeHandlerCb,HostId:0,Handle:a3979e14,CoreKey:38acb7e6,mode:disable
    [MCU2_0] 167.557106 s: Function:CpswProxyServer_setPromiscModeHandlerCb,HostId:0,Handle:a3979e14,CoreKey:38acb7e6,mode:disable
    [MCU2_0] 167.560367 s: Function:CpswProxyServer_registerMacHandlerCb,HostId:0,Handle:a3979e14,CoreKey:38acb7e6, MacAddress:70:ff:76:1d:92:c1, FlowIdx:172, FlowIdxOffset:0
    [MCU2_0] 167.560367 s: Function:CpswProxyServer_registerMacHandlerCb,HostId:0,Handle:a3979e14,CoreKey:38acb7e6, MacAddress:70:ff:76:1d:92:c1, FlowIdx:172, FlowIdxOffset:0
    [MCU2_0] 167.563523 s: Cpsw_ioctlInternal: CPSW: Registered MAC address. ALE entry:7, Policer Entry:2
    [MCU2_0] 167.563523 s: Cpsw_ioctlInternal: CPSW: Registered MAC address. ALE entry:7, Policer Entry:2
    [MCU2_0] 167.565135 s: Function:CpswProxyServer_filterAddMacHandlerCb,HostId:0,Handle:a3979e14,CoreKey:38acb7e6, MacAddress:33:33:0:0:0:1, vlanId:0, FlowIdx:172, FlowIdOffset:0
    [MCU2_0] 167.565135 s: Function:CpswProxyServer_filterAddMacHandlerCb,HostId:0,Handle:a3979e14,CoreKey:38acb7e6, MacAddress:33:33:0:0:0:1, vlanId:0, FlowIdx:172, FlowIdOffset:0
    [MCU2_0] 167.567439 s: Function:CpswProxyServer_filterAddMacHandlerCb,HostId:0,Handle:a3979e14,CoreKey:38acb7e6, MacAddress:1:0:5e:0:0:1, vlanId:0, FlowIdx:172, FlowIdOffset:0
    [MCU2_0] 167.567439 s: Function:CpswProxyServer_filterAddMacHandlerCb,HostId:0,Handle:a3979e14,CoreKey:38acb7e6, MacAddress:1:0:5e:0:0:1, vlanId:0, FlowIdx:172, FlowIdOffset:0
    [MCU2_0] 167.569447 s: Function:CpswProxyServer_filterAddMacHandlerCb,HostId:0,Handle:a3979e14,CoreKey:38acb7e6, MacAddress:33:33:ff:1d:92:c1, vlanId:0, FlowIdx:172, FlowIdOffset:0
    [MCU2_0] 167.569447 s: Function:CpswProxyServer_filterAddMacHandlerCb,HostId:0,Handle:a3979e14,CoreKey:38acb7e6, MacAddress:33:33:ff:1d:92:c1, vlanId:0, FlowIdx:172, FlowIdOffset:0
    [MCU2_0] 167.670138 s: Function:CpswProxyServer_setPromiscModeHandlerCb,HostId:0,Handle:a3979e14,CoreKey:38acb7e6,mode:disable
    [MCU2_0] 167.670138 s: Function:CpswProxyServer_setPromiscModeHandlerCb,HostId:0,Handle:a3979e14,CoreKey:38acb7e6,mode:disable
    [MCU2_0] 167.670549 s: Function:CpswProxyServer_setPromiscModeHandlerCb,HostId:0,Handle:a3979e14,CoreKey:38acb7e6,mode:disable
    [MCU2_0] 167.670549 s: Function:CpswProxyServer_setPromiscModeHandlerCb,HostId:0,Handle:a3979e14,CoreKey:38acb7e6,mode:disable
    [MCU2_0] 167.687956 s: Function:CpswProxyServer_filterAddMacHandlerCb,HostId:0,Handle:a3979e14,CoreKey:38acb7e6, MacAddress:1:80:c2:0:0:0, vlanId:0, FlowIdx:172, FlowIdOffset:0
    [MCU2_0] 167.687956 s: Function:CpswProxyServer_filterAddMacHandlerCb,HostId:0,Handle:a3979e14,CoreKey:38acb7e6, MacAddress:1:80:c2:0:0:0, vlanId:0, FlowIdx:172, FlowIdOffset:0
    [MCU2_0] 167.690172 s: Function:CpswProxyServer_filterAddMacHandlerCb,HostId:0,Handle:a3979e14,CoreKey:38acb7e6, MacAddress:1:80:c2:0:0:3, vlanId:0, FlowIdx:172, FlowIdOffset:0
    [MCU2_0] 167.692157 s: Function:CpswProxyServer_filterAddMacHandlerCb,HostId:0,Handle:a3979e14,CoreKey:38acb7e6, MacAddress:1:80:c2:0:0:e, vlanId:0, FlowIdx:172, FlowIdOffset:0
    [MCU2_0] 167.692157 s: Function:CpswProxyServer_filterAddMacHandlerCb,HostId:0,Handle:a3979e14,CoreKey:38acb7e6, MacAddress:1:80:c2:0:0:e, vlanId:0, FlowIdx:172, FlowIdOffset:0
    [MCU2_0] 167.692310 s: CpswProxyServer_isRsvdMcast: Reserved mcast cannot be added to filter
    [MCU2_0] 167.692310 s: CpswProxyServer_isRsvdMcast: Reserved mcast cannot be added to filter
    [MCU2_0] 168.040363 s: Function:CpswProxyServer_setPromiscModeHandlerCb,HostId:0,Handle:a3979e14,CoreKey:38acb7e6,mode:disable
    [MCU2_0] 168.040363 s: Function:CpswProxyServer_setPromiscModeHandlerCb,HostId:0,Handle:a3979e14,CoreKey:38acb7e6,mode:disable
    [MCU2_0] 168.040695 s: Function:CpswProxyServer_filterAddMacHandlerCb,HostId:0,Handle:a3979e14,CoreKey:38acb7e6, MacAddress:33:33:0:0:0:fb, vlanId:0, FlowIdx:172, FlowIdOffset:0
    [MCU2_0] 168.040695 s: Function:CpswProxyServer_filterAddMacHandlerCb,HostId:0,Handle:a3979e14,CoreKey:38acb7e6, MacAddress:33:33:0:0:0:fb, vlanId:0, FlowIdx:172, FlowIdOffset:0
    [MCU2_0] 168.753770 s: Function:CpswProxyServer_setPromiscModeHandlerCb,HostId:0,Handle:a3979e14,CoreKey:38acb7e6,mode:disable
    [MCU2_0] 168.753770 s: Function:CpswProxyServer_setPromiscModeHandlerCb,HostId:0,Handle:a3979e14,CoreKey:38acb7e6,mode:disable
    [MCU2_0] 168.848653 s: Function:CpswProxyServer_filterAddMacHandlerCb,HostId:0,Handle:a3979e14,CoreKey:38acb7e6, MacAddress:33:33:0:1:0:3, vlanId:0, FlowIdx:172, FlowIdOffset:0
    [MCU2_0] 168.848653 s: Function:CpswProxyServer_filterAddMacHandlerCb,HostId:0,Handle:a3979e14,CoreKey:38acb7e6, MacAddress:33:33:0:1:0:3, vlanId:0, FlowIdx:172, FlowIdOffset:0
    [MCU2_1] 158.882639 s: CIO: Init ... Done !!!
    [MCU2_1] 158.882639 s: CIO: Init ... Done !!!
    [MCU2_1] 158.882710 s: ### CPU Frequency = 1000000000 Hz
    [MCU2_1] 158.882710 s: ### CPU Frequency = 1000000000 Hz
    [MCU2_1] 158.882754 s: APP: Init ... !!!
    [MCU2_1] 158.882754 s: APP: Init ... !!!
    [MCU2_1] 158.882782 s: SCICLIENT: Init ... !!!
    [MCU2_1] 158.882782 s: SCICLIENT: Init ... !!!
    [MCU2_1] 158.883793 s: SCICLIENT: DMSC FW version [21.1.1--v2021.01a (Terrific Lla]
    [MCU2_1] 158.883793 s: SCICLIENT: DMSC FW version [21.1.1--v2021.01a (Terrific Lla]
    [MCU2_1] 158.883844 s: SCICLIENT: DMSC FW revision 0x15
    [MCU2_1] 158.883844 s: SCICLIENT: DMSC FW revision 0x15
    [MCU2_1] 158.883880 s: SCICLIENT: DMSC FW ABI revision 3.1
    [MCU2_1] 158.883880 s: SCICLIENT: DMSC FW ABI revision 3.1
    [MCU2_1] 158.883917 s: SCICLIENT: Init ... Done !!!
    [MCU2_1] 158.883917 s: SCICLIENT: Init ... Done !!!
    [MCU2_1] 158.883945 s: UDMA: Init ... !!!
    [MCU2_1] 158.883945 s: UDMA: Init ... !!!
    [MCU2_1] 158.894397 s: UDMA: Init ... Done !!!
    [MCU2_1] 158.894397 s: UDMA: Init ... Done !!!
    [MCU2_1] 158.894465 s: MEM: Init ... !!!
    [MCU2_1] 158.894465 s: MEM: Init ... !!!
    [MCU2_1] 158.894512 s: MEM: Created heap (DDR_LOCAL_MEM, id=0, flags=0x00000004) @ da000000 of size 16777216 bytes !!!
    [MCU2_1] 158.894512 s: MEM: Created heap (DDR_LOCAL_MEM, id=0, flags=0x00000004) @ da000000 of size 16777216 bytes !!!
    [MCU2_1] 158.894592 s: MEM: Created heap (L3_MEM, id=1, flags=0x00000001) @ 3640000 of size 262144 bytes !!!
    [MCU2_1] 158.894592 s: MEM: Created heap (L3_MEM, id=1, flags=0x00000001) @ 3640000 of size 262144 bytes !!!
    [MCU2_1] 158.894654 s: MEM: Init ... Done !!!
    [MCU2_1] 158.894654 s: MEM: Init ... Done !!!
    [MCU2_1] 158.894682 s: IPC: Init ... !!!
    [MCU2_1] 158.894682 s: IPC: Init ... !!!
    [MCU2_1] 158.894752 s: IPC: 6 CPUs participating in IPC !!!
    [MCU2_1] 158.894752 s: IPC: 6 CPUs participating in IPC !!!
    [MCU2_1] 158.894809 s: IPC: Waiting for HLOS to be ready ... !!!
    [MCU2_1] 158.894809 s: IPC: Waiting for HLOS to be ready ... !!!
    [MCU2_1] 163.473515 s: IPC: HLOS is ready !!!
    [MCU2_1] 163.473515 s: IPC: HLOS is ready !!!
    [MCU2_1] 163.494082 s: IPC: Init ... Done !!!
    [MCU2_1] 163.494082 s: IPC: Init ... Done !!!
    [MCU2_1] 163.494156 s: APP: Syncing with 5 CPUs ... !!!
    [MCU2_1] 163.494156 s: APP: Syncing with 5 CPUs ... !!!
    [MCU2_1] 163.494209 s: APP: Syncing with 5 CPUs ... Done !!!
    [MCU2_1] 163.494209 s: APP: Syncing with 5 CPUs ... Done !!!
    [MCU2_1] 163.494249 s: REMOTE_SERVICE: Init ... !!!
    [MCU2_1] 163.494249 s: REMOTE_SERVICE: Init ... !!!
    [MCU2_1] 163.496667 s: REMOTE_SERVICE: Init ... Done !!!
    [MCU2_1] 163.496667 s: REMOTE_SERVICE: Init ... Done !!!
    [MCU2_1] 163.496730 s: FVID2: Init ... !!!
    [MCU2_1] 163.496730 s: FVID2: Init ... !!!
    [MCU2_1] 163.496803 s: FVID2: Init ... Done !!!
    [MCU2_1] 163.496803 s: FVID2: Init ... Done !!!
    [MCU2_1] 163.496835 s: VHWA: DMPAC: Init ... !!!
    [MCU2_1] 163.496835 s: VHWA: DMPAC: Init ... !!!
    [MCU2_1] 163.496865 s: SCICLIENT: Sciclient_pmSetModuleState module=48 state=2
    [MCU2_1] 163.496865 s: SCICLIENT: Sciclient_pmSetModuleState module=48 state=2
    [MCU2_1] 163.499298 s: SCICLIENT: Sciclient_pmSetModuleState success
    [MCU2_1] 163.499298 s: SCICLIENT: Sciclient_pmSetModuleState success
    [MCU2_1] 163.499343 s: SCICLIENT: Sciclient_pmSetModuleState module=305 state=2
    [MCU2_1] 163.499343 s: SCICLIENT: Sciclient_pmSetModuleState module=305 state=2
    [MCU2_1] 163.501306 s: SCICLIENT: Sciclient_pmSetModuleState success
    [MCU2_1] 163.501306 s: SCICLIENT: Sciclient_pmSetModuleState success
    [MCU2_1] 163.501343 s: VHWA: DOF Init ... !!!
    [MCU2_1] 163.501343 s: VHWA: DOF Init ... !!!
    [MCU2_1] 163.536002 s: VHWA: DOF Init ... Done !!!
    [MCU2_1] 163.536002 s: VHWA: DOF Init ... Done !!!
    [MCU2_1] 163.536071 s: VHWA: SDE Init ... !!!
    [MCU2_1] 163.536071 s: VHWA: SDE Init ... !!!
    [MCU2_1] 163.543881 s: VHWA: SDE Init ... Done !!!
    [MCU2_1] 163.543881 s: VHWA: SDE Init ... Done !!!
    [MCU2_1] 163.543945 s: VHWA: DMPAC: Init ... Done !!!
    [MCU2_1] 163.543945 s: VHWA: DMPAC: Init ... Done !!!
    [MCU2_1] 163.543999 s: VX_ZONE_INIT:Enabled
    [MCU2_1] 163.543999 s: VX_ZONE_INIT:Enabled
    [MCU2_1] 163.544030 s: VX_ZONE_ERROR:Enabled
    [MCU2_1] 163.544030 s: VX_ZONE_ERROR:Enabled
    [MCU2_1] 163.544059 s: VX_ZONE_WARNING:Enabled
    [MCU2_1] 163.544059 s: VX_ZONE_WARNING:Enabled
    [MCU2_1] 163.545268 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target DMPAC_SDE
    [MCU2_1] 163.545268 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target DMPAC_SDE
    [MCU2_1] 163.545543 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target DMPAC_DOF
    [MCU2_1] 163.545543 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target DMPAC_DOF
    [MCU2_1] 163.545781 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target MCU2-1
    [MCU2_1] 163.545781 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target MCU2-1
    [MCU2_1] 163.545839 s: VX_ZONE_INIT:[tivxInitLocal:130] Initialization Done !!!
    [MCU2_1] 163.545839 s: VX_ZONE_INIT:[tivxInitLocal:130] Initialization Done !!!
    [MCU2_1] 163.545877 s: APP: OpenVX Target kernel init ... !!!
    [MCU2_1] 163.545877 s: APP: OpenVX Target kernel init ... !!!
    [MCU2_1] 163.546180 s: APP: OpenVX Target kernel init ... Done !!!
    [MCU2_1] 163.546180 s: APP: OpenVX Target kernel init ... Done !!!
    [MCU2_1] 163.546223 s: UDMA Copy: Init ... !!!
    [MCU2_1] 163.555762 s: UDMA Copy: Init ... Done !!!
    [MCU2_1] 163.555833 s: APP: Init ... Done !!!
    [MCU2_1] 163.555833 s: APP: Init ... Done !!!
    [MCU2_1] 163.555866 s: APP: Run ... !!!
    [MCU2_1] 163.555866 s: APP: Run ... !!!
    [MCU2_1] 163.555893 s: IPC: Starting echo test ...
    [MCU2_1] 163.555893 s: IPC: Starting echo test ...
    [MCU2_1] 163.558695 s: APP: Run ... Done !!!
    [MCU2_1] 163.558695 s: APP: Run ... Done !!!
    [MCU2_1] 163.559918 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[s] C66X_1[P] C66X_2[.] C7X_1[.]
    [MCU2_1] 163.559918 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[s] C66X_1[P] C66X_2[.] C7X_1[.]
    [MCU2_1] 163.560044 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[s] C66X_1[P] C66X_2[P] C7X_1[.]
    [MCU2_1] 163.560044 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[s] C66X_1[P] C66X_2[P] C7X_1[.]
    [MCU2_1] 163.560144 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[s] C66X_1[P] C66X_2[P] C7X_1[P]
    [MCU2_1] 163.560144 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[s] C66X_1[P] C66X_2[P] C7X_1[P]
    [MCU2_1] 163.796543 s: IPC: Echo status: mpu1_0[x] mcu2_0[P] mcu2_1[s] C66X_1[P] C66X_2[P] C7X_1[P]
    [MCU2_1] 163.796543 s: IPC: Echo status: mpu1_0[x] mcu2_0[P] mcu2_1[s] C66X_1[P] C66X_2[P] C7X_1[P]
    [C6x_1 ] 158.868115 s: CIO: Init ... Done !!!
    [C6x_1 ] 158.868142 s: ### CPU Frequency = 1350000000 Hz
    [C6x_1 ] 158.868115 s: CIO: Init ... Done !!!
    [C6x_1 ] 158.868153 s: APP: Init ... !!!
    [C6x_1 ] 158.868153 s: APP: Init ... !!!
    [C6x_1 ] 158.868162 s: SCICLIENT: Init ... !!!
    [C6x_1 ] 158.868162 s: SCICLIENT: Init ... !!!
    [C6x_1 ] 158.869286 s: SCICLIENT: DMSC FW version [21.1.1--v2021.01a (Terrific Lla]
    [C6x_1 ] 158.869286 s: SCICLIENT: DMSC FW version [21.1.1--v2021.01a (Terrific Lla]
    [C6x_1 ] 158.869299 s: SCICLIENT: DMSC FW revision 0x15
    [C6x_1 ] 158.869299 s: SCICLIENT: DMSC FW revision 0x15
    [C6x_1 ] 158.869309 s: SCICLIENT: DMSC FW ABI revision 3.1
    [C6x_1 ] 158.869309 s: SCICLIENT: DMSC FW ABI revision 3.1
    [C6x_1 ] 158.869319 s: SCICLIENT: Init ... Done !!!
    [C6x_1 ] 158.869319 s: SCICLIENT: Init ... Done !!!
    [C6x_1 ] 158.869329 s: UDMA: Init ... !!!
    [C6x_1 ] 158.869329 s: UDMA: Init ... !!!
    [C6x_1 ] 158.882912 s: UDMA: Init ... Done !!!
    [C6x_1 ] 158.882912 s: UDMA: Init ... Done !!!
    [C6x_1 ] 158.882931 s: MEM: Init ... !!!
    [C6x_1 ] 158.882931 s: MEM: Init ... !!!
    [C6x_1 ] 158.882947 s: MEM: Created heap (DDR_LOCAL_MEM, id=0, flags=0x00000004) @ dc000000 of size 16777216 bytes !!!
    [C6x_1 ] 158.882947 s: MEM: Created heap (DDR_LOCAL_MEM, id=0, flags=0x00000004) @ dc000000 of size 16777216 bytes !!!
    [C6x_1 ] 158.882965 s: MEM: Created heap (L2_MEM, id=2, flags=0x00000001) @ 800000 of size 229376 bytes !!!
    [C6x_1 ] 158.882965 s: MEM: Created heap (L2_MEM, id=2, flags=0x00000001) @ 800000 of size 229376 bytes !!!
    [C6x_1 ] 158.882980 s: MEM: Created heap (DDR_SCRATCH_MEM, id=4, flags=0x00000001) @ dd000000 of size 50331648 bytes !!!
    [C6x_1 ] 158.882980 s: MEM: Created heap (DDR_SCRATCH_MEM, id=4, flags=0x00000001) @ dd000000 of size 50331648 bytes !!!
    [C6x_1 ] 158.882997 s: MEM: Init ... Done !!!
    [C6x_1 ] 158.882997 s: MEM: Init ... Done !!!
    [C6x_1 ] 158.883005 s: IPC: Init ... !!!
    [C6x_1 ] 158.883005 s: IPC: Init ... !!!
    [C6x_1 ] 158.883026 s: IPC: 6 CPUs participating in IPC !!!
    [C6x_1 ] 158.883026 s: IPC: 6 CPUs participating in IPC !!!
    [C6x_1 ] 158.883041 s: IPC: Waiting for HLOS to be ready ... !!!
    [C6x_1 ] 158.883041 s: IPC: Waiting for HLOS to be ready ... !!!
    [C6x_1 ] 163.069525 s: IPC: HLOS is ready !!!
    [C6x_1 ] 163.087906 s: IPC: Init ... Done !!!
    [C6x_1 ] 163.087906 s: IPC: Init ... Done !!!
    [C6x_1 ] 163.087936 s: APP: Syncing with 5 CPUs ... !!!
    [C6x_1 ] 163.087936 s: APP: Syncing with 5 CPUs ... !!!
    [C6x_1 ] 163.494207 s: APP: Syncing with 5 CPUs ... Done !!!
    [C6x_1 ] 163.494207 s: APP: Syncing with 5 CPUs ... Done !!!
    [C6x_1 ] 163.494224 s: REMOTE_SERVICE: Init ... !!!
    [C6x_1 ] 163.494224 s: REMOTE_SERVICE: Init ... !!!
    [C6x_1 ] 163.494970 s: REMOTE_SERVICE: Init ... Done !!!
    [C6x_1 ] 163.494970 s: REMOTE_SERVICE: Init ... Done !!!
    [C6x_1 ] 163.495016 s: VX_ZONE_INIT:Enabled
    [C6x_1 ] 163.495016 s: VX_ZONE_INIT:Enabled
    [C6x_1 ] 163.495029 s: VX_ZONE_ERROR:Enabled
    [C6x_1 ] 163.495029 s: VX_ZONE_ERROR:Enabled
    [C6x_1 ] 163.495039 s: VX_ZONE_WARNING:Enabled
    [C6x_1 ] 163.495039 s: VX_ZONE_WARNING:Enabled
    [C6x_1 ] 163.495860 s: VX_ZONE_INIT:[tivxInitLocal:130] Initialization Done !!!
    [C6x_1 ] 163.495860 s: VX_ZONE_INIT:[tivxInitLocal:130] Initialization Done !!!
    [C6x_1 ] 163.495876 s: APP: OpenVX Target kernel init ... !!!
    [C6x_1 ] 163.495876 s: APP: OpenVX Target kernel init ... !!!
    [C6x_1 ] 163.496209 s: APP: OpenVX Target kernel init ... Done !!!
    [C6x_1 ] 163.496209 s: APP: OpenVX Target kernel init ... Done !!!
    [C6x_1 ] 163.496230 s: UDMA Copy: Init ... !!!
    [C6x_1 ] 163.496230 s: UDMA Copy: Init ... !!!
    [C6x_1 ] 163.511346 s: UDMA Copy: Init ... Done !!!
    [C6x_1 ] 163.511346 s: UDMA Copy: Init ... Done !!!
    [C6x_1 ] 163.511364 s: APP: Init ... Done !!!
    [C6x_1 ] 163.511364 s: APP: Init ... Done !!!
    [C6x_1 ] 163.511373 s: APP: Run ... !!!
    [C6x_1 ] 163.511373 s: APP: Run ... !!!
    [C6x_1 ] 163.511382 s: IPC: Starting echo test ...
    [C6x_1 ] 163.511382 s: IPC: Starting echo test ...
    [C6x_1 ] 163.512424 s: APP: Run ... Done !!!
    [C6x_1 ] 163.512424 s: APP: Run ... Done !!!
    [C6x_1 ] 163.512734 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] C66X_1[s] C66X_2[x] C7X_1[P]
    [C6x_1 ] 163.512734 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] C66X_1[s] C66X_2[x] C7X_1[P]
    [C6x_1 ] 163.514107 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] C66X_1[s] C66X_2[P] C7X_1[P]
    [C6x_1 ] 163.514107 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] C66X_1[s] C66X_2[P] C7X_1[P]
    [C6x_1 ] 163.559227 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[P] C66X_1[s] C66X_2[P] C7X_1[P]
    [C6x_1 ] 163.559227 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[P] C66X_1[s] C66X_2[P] C7X_1[P]
    [C6x_1 ] 163.796393 s: IPC: Echo status: mpu1_0[x] mcu2_0[P] mcu2_1[P] C66X_1[s] C66X_2[P] C7X_1[P]
    [C6x_1 ] 163.796393 s: IPC: Echo status: mpu1_0[x] mcu2_0[P] mcu2_1[P] C66X_1[s] C66X_2[P] C7X_1[P]
    [C6x_2 ] 158.921740 s: CIO: Init ... Done !!!
    [C6x_2 ] 158.921740 s: CIO: Init ... Done !!!
    [C6x_2 ] 158.921766 s: ### CPU Frequency = 1350000000 Hz
    [C6x_2 ] 158.921766 s: ### CPU Frequency = 1350000000 Hz
    [C6x_2 ] 158.921778 s: APP: Init ... !!!
    [C6x_2 ] 158.921778 s: APP: Init ... !!!
    [C6x_2 ] 158.921787 s: SCICLIENT: Init ... !!!
    [C6x_2 ] 158.921787 s: SCICLIENT: Init ... !!!
    [C6x_2 ] 158.922715 s: SCICLIENT: DMSC FW version [21.1.1--v2021.01a (Terrific Lla]
    [C6x_2 ] 158.922715 s: SCICLIENT: DMSC FW version [21.1.1--v2021.01a (Terrific Lla]
    [C6x_2 ] 158.922729 s: SCICLIENT: DMSC FW revision 0x15
    [C6x_2 ] 158.922729 s: SCICLIENT: DMSC FW revision 0x15
    [C6x_2 ] 158.922739 s: SCICLIENT: DMSC FW ABI revision 3.1
    [C6x_2 ] 158.922739 s: SCICLIENT: DMSC FW ABI revision 3.1
    [C6x_2 ] 158.922750 s: SCICLIENT: Init ... Done !!!
    [C6x_2 ] 158.922750 s: SCICLIENT: Init ... Done !!!
    [C6x_2 ] 158.922759 s: UDMA: Init ... !!!
    [C6x_2 ] 158.935443 s: UDMA: Init ... Done !!!
    [C6x_2 ] 158.935463 s: MEM: Init ... !!!
    [C6x_2 ] 158.935477 s: MEM: Created heap (DDR_LOCAL_MEM, id=0, flags=0x00000004) @ e0000000 of size 16777216 bytes !!!
    [C6x_2 ] 158.935477 s: MEM: Created heap (DDR_LOCAL_MEM, id=0, flags=0x00000004) @ e0000000 of size 16777216 bytes !!!
    [C6x_2 ] 158.935495 s: MEM: Created heap (L2_MEM, id=2, flags=0x00000001) @ 800000 of size 229376 bytes !!!
    [C6x_2 ] 158.935495 s: MEM: Created heap (L2_MEM, id=2, flags=0x00000001) @ 800000 of size 229376 bytes !!!
    [C6x_2 ] 158.935511 s: MEM: Created heap (DDR_SCRATCH_MEM, id=4, flags=0x00000001) @ e1000000 of size 50331648 bytes !!!
    [C6x_2 ] 158.935511 s: MEM: Created heap (DDR_SCRATCH_MEM, id=4, flags=0x00000001) @ e1000000 of size 50331648 bytes !!!
    [C6x_2 ] 158.935527 s: MEM: Init ... Done !!!
    [C6x_2 ] 158.935527 s: MEM: Init ... Done !!!
    [C6x_2 ] 158.935536 s: IPC: Init ... !!!
    [C6x_2 ] 158.935536 s: IPC: Init ... !!!
    [C6x_2 ] 158.935558 s: IPC: 6 CPUs participating in IPC !!!
    [C6x_2 ] 158.935558 s: IPC: 6 CPUs participating in IPC !!!
    [C6x_2 ] 158.935574 s: IPC: Waiting for HLOS to be ready ... !!!
    [C6x_2 ] 158.935574 s: IPC: Waiting for HLOS to be ready ... !!!
    [C6x_2 ] 163.095647 s: IPC: HLOS is ready !!!
    [C6x_2 ] 163.095647 s: IPC: HLOS is ready !!!
    [C6x_2 ] 163.112727 s: IPC: Init ... Done !!!
    [C6x_2 ] 163.112727 s: IPC: Init ... Done !!!
    [C6x_2 ] 163.112754 s: APP: Syncing with 5 CPUs ... !!!
    [C6x_2 ] 163.112754 s: APP: Syncing with 5 CPUs ... !!!
    [C6x_2 ] 163.494207 s: APP: Syncing with 5 CPUs ... Done !!!
    [C6x_2 ] 163.494207 s: APP: Syncing with 5 CPUs ... Done !!!
    [C6x_2 ] 163.494224 s: REMOTE_SERVICE: Init ... !!!
    [C6x_2 ] 163.494224 s: REMOTE_SERVICE: Init ... !!!
    [C6x_2 ] 163.494980 s: REMOTE_SERVICE: Init ... Done !!!
    [C6x_2 ] 163.494980 s: REMOTE_SERVICE: Init ... Done !!!
    [C6x_2 ] 163.495027 s: VX_ZONE_INIT:Enabled
    [C6x_2 ] 163.495027 s: VX_ZONE_INIT:Enabled
    [C6x_2 ] 163.495039 s: VX_ZONE_ERROR:Enabled
    [C6x_2 ] 163.495039 s: VX_ZONE_ERROR:Enabled
    [C6x_2 ] 163.495049 s: VX_ZONE_WARNING:Enabled
    [C6x_2 ] 163.495049 s: VX_ZONE_WARNING:Enabled
    [C6x_2 ] 163.495862 s: VX_ZONE_INIT:[tivxInitLocal:130] Initialization Done !!!
    [C6x_2 ] 163.495862 s: VX_ZONE_INIT:[tivxInitLocal:130] Initialization Done !!!
    [C6x_2 ] 163.495877 s: APP: OpenVX Target kernel init ... !!!
    [C6x_2 ] 163.495877 s: APP: OpenVX Target kernel init ... !!!
    [C6x_2 ] 163.496223 s: APP: OpenVX Target kernel init ... Done !!!
    [C6x_2 ] 163.496223 s: APP: OpenVX Target kernel init ... Done !!!
    [C6x_2 ] 163.496244 s: UDMA Copy: Init ... !!!
    [C6x_2 ] 163.496244 s: UDMA Copy: Init ... !!!
    [C6x_2 ] 163.512645 s: UDMA Copy: Init ... Done !!!
    [C6x_2 ] 163.512645 s: UDMA Copy: Init ... Done !!!
    [C6x_2 ] 163.512668 s: APP: Init ... Done !!!
    [C6x_2 ] 163.512668 s: APP: Init ... Done !!!
    [C6x_2 ] 163.512679 s: APP: Run ... !!!
    [C6x_2 ] 163.512679 s: APP: Run ... !!!
    [C6x_2 ] 163.512688 s: IPC: Starting echo test ...
    [C6x_2 ] 163.512688 s: IPC: Starting echo test ...
    [C6x_2 ] 163.513773 s: APP: Run ... Done !!!
    [C6x_2 ] 163.513773 s: APP: Run ... Done !!!
    [C6x_2 ] 163.514107 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] C66X_1[P] C66X_2[s] C7X_1[.]
    [C6x_2 ] 163.514107 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] C66X_1[P] C66X_2[s] C7X_1[.]
    [C6x_2 ] 163.514144 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] C66X_1[P] C66X_2[s] C7X_1[P]
    [C6x_2 ] 163.514144 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] C66X_1[P] C66X_2[s] C7X_1[P]
    [C6x_2 ] 163.559252 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[P] C66X_1[P] C66X_2[s] C7X_1[P]
    [C6x_2 ] 163.796440 s: IPC: Echo status: mpu1_0[x] mcu2_0[P] mcu2_1[P] C66X_1[P] C66X_2[s] C7X_1[P]
    [C6x_2 ] 163.796440 s: IPC: Echo status: mpu1_0[x] mcu2_0[P] mcu2_1[P] C66X_1[P] C66X_2[s] C7X_1[P]
    [C7x_1 ] 158.984127 s: CIO: Init ... Done !!!
    [C7x_1 ] 158.984127 s: CIO: Init ... Done !!!
    [C7x_1 ] 158.984142 s: ### CPU Frequency = 1000000000 Hz
    [C7x_1 ] 158.984142 s: ### CPU Frequency = 1000000000 Hz
    [C7x_1 ] 158.984154 s: APP: Init ... !!!
    [C7x_1 ] 158.984154 s: APP: Init ... !!!
    [C7x_1 ] 158.984162 s: SCICLIENT: Init ... !!!
    [C7x_1 ] 158.984162 s: SCICLIENT: Init ... !!!
    [C7x_1 ] 158.985076 s: SCICLIENT: DMSC FW version [21.1.1--v2021.01a (Terrific Lla]
    [C7x_1 ] 158.985076 s: SCICLIENT: DMSC FW version [21.1.1--v2021.01a (Terrific Lla]
    [C7x_1 ] 158.985090 s: SCICLIENT: DMSC FW revision 0x15
    [C7x_1 ] 158.985090 s: SCICLIENT: DMSC FW revision 0x15
    [C7x_1 ] 158.985101 s: SCICLIENT: DMSC FW ABI revision 3.1
    [C7x_1 ] 158.985101 s: SCICLIENT: DMSC FW ABI revision 3.1
    [C7x_1 ] 158.985113 s: SCICLIENT: Init ... Done !!!
    [C7x_1 ] 158.985113 s: SCICLIENT: Init ... Done !!!
    [C7x_1 ] 158.985122 s: UDMA: Init ... !!!
    [C7x_1 ] 158.985122 s: UDMA: Init ... !!!
    [C7x_1 ] 158.995550 s: UDMA: Init ... Done !!!
    [C7x_1 ] 158.995550 s: UDMA: Init ... Done !!!
    [C7x_1 ] 158.995563 s: MEM: Init ... !!!
    [C7x_1 ] 158.995563 s: MEM: Init ... !!!
    [C7x_1 ] 158.995573 s: MEM: Created heap (DDR_LOCAL_MEM, id=0, flags=0x00000004) @ 117000000 of size 268435456 bytes !!!
    [C7x_1 ] 158.995573 s: MEM: Created heap (DDR_LOCAL_MEM, id=0, flags=0x00000004) @ 117000000 of size 268435456 bytes !!!
    [C7x_1 ] 158.995593 s: MEM: Created heap (L3_MEM, id=1, flags=0x00000001) @ 70020000 of size 8159232 bytes !!!
    [C7x_1 ] 158.995593 s: MEM: Created heap (L3_MEM, id=1, flags=0x00000001) @ 70020000 of size 8159232 bytes !!!
    [C7x_1 ] 158.995612 s: MEM: Created heap (L2_MEM, id=2, flags=0x00000001) @ 64800000 of size 458752 bytes !!!
    [C7x_1 ] 158.995612 s: MEM: Created heap (L2_MEM, id=2, flags=0x00000001) @ 64800000 of size 458752 bytes !!!
    [C7x_1 ] 158.995629 s: MEM: Created heap (L1_MEM, id=3, flags=0x00000001) @ 64e00000 of size 16384 bytes !!!
    [C7x_1 ] 158.995629 s: MEM: Created heap (L1_MEM, id=3, flags=0x00000001) @ 64e00000 of size 16384 bytes !!!
    [C7x_1 ] 158.995646 s: MEM: Created heap (DDR_SCRATCH_MEM, id=4, flags=0x00000001) @ 100000000 of size 385875968 bytes !!!
    [C7x_1 ] 158.995646 s: MEM: Created heap (DDR_SCRATCH_MEM, id=4, flags=0x00000001) @ 100000000 of size 385875968 bytes !!!
    [C7x_1 ] 158.995665 s: MEM: Init ... Done !!!
    [C7x_1 ] 158.995665 s: MEM: Init ... Done !!!
    [C7x_1 ] 158.995673 s: IPC: Init ... !!!
    [C7x_1 ] 158.995673 s: IPC: Init ... !!!
    [C7x_1 ] 158.995687 s: IPC: 6 CPUs participating in IPC !!!
    [C7x_1 ] 158.995687 s: IPC: 6 CPUs participating in IPC !!!
    [C7x_1 ] 158.995706 s: IPC: Waiting for HLOS to be ready ... !!!
    [C7x_1 ] 158.995706 s: IPC: Waiting for HLOS to be ready ... !!!
    [C7x_1 ] 163.123170 s: IPC: HLOS is ready !!!
    [C7x_1 ] 163.123170 s: IPC: HLOS is ready !!!
    [C7x_1 ] 163.131808 s: IPC: Init ... Done !!!
    [C7x_1 ] 163.131808 s: IPC: Init ... Done !!!
    [C7x_1 ] 163.131824 s: APP: Syncing with 5 CPUs ... !!!
    [C7x_1 ] 163.131824 s: APP: Syncing with 5 CPUs ... !!!
    [C7x_1 ] 163.494209 s: APP: Syncing with 5 CPUs ... Done !!!
    [C7x_1 ] 163.494209 s: APP: Syncing with 5 CPUs ... Done !!!
    [C7x_1 ] 163.494226 s: REMOTE_SERVICE: Init ... !!!
    [C7x_1 ] 163.494226 s: REMOTE_SERVICE: Init ... !!!
    [C7x_1 ] 163.494387 s: REMOTE_SERVICE: Init ... Done !!!
    [C7x_1 ] 163.494387 s: REMOTE_SERVICE: Init ... Done !!!
    [C7x_1 ] 163.494410 s: VX_ZONE_INIT:Enabled
    [C7x_1 ] 163.494410 s: VX_ZONE_INIT:Enabled
    [C7x_1 ] 163.494421 s: VX_ZONE_ERROR:Enabled
    [C7x_1 ] 163.494421 s: VX_ZONE_ERROR:Enabled
    [C7x_1 ] 163.494431 s: VX_ZONE_WARNING:Enabled
    [C7x_1 ] 163.494431 s: VX_ZONE_WARNING:Enabled
    [C7x_1 ] 163.494574 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1
    [C7x_1 ] 163.494574 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1
    [C7x_1 ] 163.494640 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1_PRI_2
    [C7x_1 ] 163.494640 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1_PRI_2
    [C7x_1 ] 163.494715 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1_PRI_3
    [C7x_1 ] 163.494715 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1_PRI_3
    [C7x_1 ] 163.494785 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1_PRI_4
    [C7x_1 ] 163.494785 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1_PRI_4
    [C7x_1 ] 163.494852 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1_PRI_5
    [C7x_1 ] 163.494852 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1_PRI_5
    [C7x_1 ] 163.494915 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1_PRI_6
    [C7x_1 ] 163.494915 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1_PRI_6
    [C7x_1 ] 163.495023 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1_PRI_7
    [C7x_1 ] 163.495023 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1_PRI_7
    [C7x_1 ] 163.495099 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1_PRI_8
    [C7x_1 ] 163.495099 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1_PRI_8
    [C7x_1 ] 163.495123 s: VX_ZONE_INIT:[tivxInitLocal:130] Initialization Done !!!
    [C7x_1 ] 163.495123 s: VX_ZONE_INIT:[tivxInitLocal:130] Initialization Done !!!
    [C7x_1 ] 163.495139 s: APP: OpenVX Target kernel init ... !!!
    [C7x_1 ] 163.495139 s: APP: OpenVX Target kernel init ... !!!
    [C7x_1 ] 163.495366 s: APP: OpenVX Target kernel init ... Done !!!
    [C7x_1 ] 163.495366 s: APP: OpenVX Target kernel init ... Done !!!
    [C7x_1 ] 163.495381 s: APP: Init ... Done !!!
    [C7x_1 ] 163.495381 s: APP: Init ... Done !!!
    [C7x_1 ] 163.495391 s: APP: Run ... !!!
    [C7x_1 ] 163.495391 s: APP: Run ... !!!
    [C7x_1 ] 163.495399 s: IPC: Starting echo test ...
    [C7x_1 ] 163.495399 s: IPC: Starting echo test ...
    [C7x_1 ] 163.495555 s: APP: Run ... Done !!!
    [C7x_1 ] 163.495555 s: APP: Run ... Done !!!
    [C7x_1 ] 163.512737 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] C66X_1[P] C66X_2[x] C7X_1[s]
    [C7x_1 ] 163.512737 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] C66X_1[P] C66X_2[x] C7X_1[s]
    [C7x_1 ] 163.514100 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] C66X_1[P] C66X_2[P] C7X_1[s]
    [C7x_1 ] 163.514100 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] C66X_1[P] C66X_2[P] C7X_1[s]
    [C7x_1 ] 163.559271 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[P] C66X_1[P] C66X_2[P] C7X_1[s]
    [C7x_1 ] 163.559271 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[P] C66X_1[P] C66X_2[P] C7X_1[s]
    [C7x_1 ] 163.796472 s: IPC: Echo status: mpu1_0[x] mcu2_0[P] mcu2_1[P] C66X_1[P] C66X_2[P] C7X_1[s]
    [C7x_1 ] 163.796472 s: IPC: Echo status: mpu1_0[x] mcu2_0[P] mcu2_1[P] C66X_1[P] C66X_2[P] C7X_1[s]

  • 上面是我出问题的日志

  • rgmii 默认模式2

    不能获取ip

    设置成mode1仍然无法获取IP

    root@j7-evm:~# ifconfig
    eth1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 metric 1
    inet6 fe80::72ff:76ff:fe1d:92c1 prefixlen 64 scopeid 0x20<link>
    ether 70:ff:76:1d:92:c1 txqueuelen 1000 (Ethernet)
    RX packets 88 bytes 8120 (7.9 KiB)
    RX errors 0 dropped 0 overruns 0 frame 0
    TX packets 23 bytes 3714 (3.6 KiB)
    TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

    eth2: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 metric 1
    inet6 fe80::72ff:76ff:fe1d:92c2 prefixlen 64 scopeid 0x20<link>
    ether 70:ff:76:1d:92:c2 txqueuelen 1000 (Ethernet)
    RX packets 0 bytes 0 (0.0 B)
    RX errors 0 dropped 0 overruns 0 frame 0
    TX packets 23 bytes 3714 (3.6 KiB)
    TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

    lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536 metric 1
    inet 127.0.0.1 netmask 255.0.0.0
    inet6 ::1 prefixlen 128 scopeid 0x10<host>
    loop txqueuelen 1000 (Local Loopback)
    RX packets 82 bytes 6220 (6.0 KiB)
    RX errors 0 dropped 0 overruns 0 frame 0
    TX packets 82 bytes 6220 (6.0 KiB)
    TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

    我发现一个现象,为什么100M 通的,eth0有,调这个出问题的phy时,eth0没有,不知道这是不是一个问题

  • 已更新e2e帖子,请关注帖子的回复,因为美国放假,回复可能会晚些。

  • shine,可以给一个在sdk 8.4里portting rgmii 的说明嘛?

  • 抱歉,没有Poring rgmii的说明文档。

  • ok,

    我这边打开了8.4dhcp的打印,在win10上创建了一个dhcp server

    --- a/pdk_jacinto_08_04_00_21/packages/ti/transport/lwip/lwip-stack/src/include/lwip/debug.h
    +++ b/pdk_jacinto_08_04_00_21/packages/ti/transport/lwip/lwip-stack/src/include/lwip/debug.h
    @@ -143,14 +143,8 @@

    #ifdef LWIP_DEBUG
    #define LWIP_DEBUGF(debug, message) do { \
    - if ( \
    - ((debug) & LWIP_DBG_ON) && \
    - ((debug) & LWIP_DBG_TYPES_ON) && \
    - ((s16_t)((debug) & LWIP_DBG_MASK_LEVEL) >= LWIP_DBG_MIN_LEVEL)) { \
    + if (1) { \
    LWIP_PLATFORM_DIAG(message); \
    - if ((debug) & LWIP_DBG_HALT) { \
    - while(1); \
    - } \
    } \
    } while(0)

    7.3可以发出dhcp cmd

    8.4打印如下,wireshark没有dhcp cmd(过滤)

    j7-evm login: root
    root@j7-evm:~# /opt/vision_apps/vision_apps_init.sh
    root@j7-evm:~# [MCU2_0] 1053.803476 s: CIO: Init ... Done !!!
    [MCU2_0] 1053.803554 s: ### CPU Frequency = 1000000000 Hz
    [MCU2_0] 1053.803601 s: APP: Init ... !!!
    [MCU2_0] 1053.803627 s: SCICLIENT: Init ... !!!
    [MCU2_0] 1053.804658 s: SCICLIENT: DMSC FW version [21.1.1--v2021.01a (Terrific Lla]
    [MCU2_0] 1053.804713 s: SCICLIENT: DMSC FW revision 0x15
    [MCU2_0] 1053.804752 s: SCICLIENT: DMSC FW ABI revision 3.1
    [MCU2_0] 1053.804790 s: SCICLIENT: Init ... Done !!!
    [MCU2_0] 1053.804818 s: UDMA: Init ... !!!
    [MCU2_0] 1053.813963 s: UDMA: Init ... Done !!!
    [MCU2_0] 1053.814033 s: MEM: Init ... !!!
    [MCU2_0] 1053.814078 s: MEM: Created heap (DDR_LOCAL_MEM, id=0, flags=0x00000004) @ d9000000 of size 16777216 bytes !!!
    [MCU2_0] 1053.814158 s: MEM: Created heap (L3_MEM, id=1, flags=0x00000000) @ 3600000 of size 262144 bytes !!!
    [MCU2_0] 1053.814222 s: MEM: Init ... Done !!!
    [MCU2_0] 1053.814249 s: IPC: Init ... !!!
    [MCU2_0] 1053.814313 s: IPC: 6 CPUs participating in IPC !!!
    [MCU2_0] 1053.814364 s: IPC: Waiting for HLOS to be ready ... !!!
    [MCU2_0] 1063.991966 s: IPC: HLOS is ready !!!
    [MCU2_0] 1064.011730 s: IPC: Init ... Done !!!
    [MCU2_0] 1064.011799 s: APP: Syncing with 5 CPUs ... !!!
    [MCU2_0] 1064.279856 s: APP: Syncing with 5 CPUs ... Done !!!
    [MCU2_0] 1064.280148 s: REMOTE_SERVICE: Init ... !!!
    [MCU2_0] 1064.281996 s: REMOTE_SERVICE: Init ... Done !!!
    [MCU2_0] 1064.282060 s: ETHFW: Init ... !!!
    [MCU2_0] 1064.303233 s: ETHFW: appEthFwTimmingInit start... !!!
    [MCU2_0] 1064.462721 s: ETHFW: appEthFwTimmingInit exit... !!!
    [MCU2_0] 1064.462806 s: Warning: Using 6 MAC address(es) from static pool
    [MCU2_0] 1064.462906 s: ETHFW: Shared multicasts (software fanout):
    [MCU2_0] 1064.462948 s: 01:00:5e:00:00:01
    [MCU2_0] 1064.462997 s: 01:00:5e:00:00:fb
    [MCU2_0] 1064.463042 s: 01:00:5e:00:00:fc
    [MCU2_0] 1064.463087 s: 33:33:00:00:00:01
    [MCU2_0] 1064.463130 s: 33:33:ff:1d:92:c2
    [MCU2_0] 1064.463174 s: 01:80:c2:00:00:00
    [MCU2_0] 1064.463217 s: 01:80:c2:00:00:03
    [MCU2_0] 1064.463262 s: ETHFW: Reserved multicasts:
    [MCU2_0] 1064.463288 s: 01:80:c2:00:00:0e
    [MCU2_0] 1064.463332 s: 01:1b:19:00:00:00
    [MCU2_0] 1064.463578 s: EnetMcm: CPSW_9G on MAIN NAVSS
    [MCU2_0] 1064.476681 s: PHY 0 is not alive
    [MCU2_0] 1064.476778 s: PHY 1 is not alive
    [MCU2_0] 1064.476822 s: PHY 2 is alive
    [MCU2_0] 1064.476858 s: PHY 3 is not alive
    [MCU2_0] 1064.476891 s: PHY 4 is not alive
    [MCU2_0] 1064.476925 s: PHY 5 is not alive
    [MCU2_0] 1064.476956 s: PHY 6 is not alive
    [MCU2_0] 1064.476991 s: PHY 7 is not alive
    [MCU2_0] 1064.477023 s: PHY 8 is not alive
    [MCU2_0] 1064.477054 s: PHY 9 is not alive
    [MCU2_0] 1064.477085 s: PHY 10 is not alive
    [MCU2_0] 1064.477118 s: PHY 11 is not alive
    [MCU2_0] 1064.477151 s: PHY 12 is not alive
    [MCU2_0] 1064.477182 s: PHY 13 is not alive
    [MCU2_0] 1064.477217 s: PHY 14 is not alive
    [MCU2_0] 1064.477250 s: PHY 15 is not alive
    [MCU2_0] 1064.477282 s: PHY 16 is not alive
    [MCU2_0] 1064.477313 s: PHY 17 is not alive
    [MCU2_0] 1064.477344 s: PHY 18 is not alive
    [MCU2_0] 1064.477376 s: PHY 19 is not alive
    [MCU2_0] 1064.477409 s: PHY 20 is not alive
    [MCU2_0] 1064.477442 s: PHY 21 is not alive
    [MCU2_0] 1064.477474 s: PHY 22 is not alive
    [MCU2_0] 1064.477508 s: PHY 23 is not alive
    [MCU2_0] 1064.477539 s: PHY 24 is not alive
    [MCU2_0] 1064.477571 s: PHY 25 is not alive
    [MCU2_0] 1064.477603 s: PHY 26 is not alive
    [MCU2_0] 1064.477636 s: PHY 27 is not alive
    [MCU2_0] 1064.477670 s: PHY 28 is not alive
    [MCU2_0] 1064.477703 s: PHY 29 is not alive
    [MCU2_0] 1064.477747 s: PHY 30 is not alive
    [MCU2_0] 1064.478956 s: EnetPhy_getIdx: PHY 2: Failed to read 0x8001U register: 0x0
    [MCU2_0] 1064.479041 s: EnetPhy_bindDriver: PHY 2: OUI:000ac2 Model:18 Ver:03 <-> 'Q212X' : OK
    [MCU2_0] 1064.481225 s:
    [MCU2_0] ETHFW Version : 0.02.00
    [MCU2_0] 1064.481308 s: ETHFW Build Date: Dec 30, 2022
    [MCU2_0] 1064.481349 s: ETHFW Build Time: 14:58:33
    [MCU2_0] 1064.481377 s: ETHFW Commit SHA: 55ad2804
    [MCU2_0] 1064.481451 s: ETHFW: Init ... DONE !!!
    [MCU2_0] 1064.481486 s: ETHFW: Remove server Init ... !!!
    [MCU2_0] 1064.481670 s: CpswProxyServer: Virtual port configuration:
    [MCU2_0] 1064.481734 s: mpu_1_0 <-> Switch port 0: mpu_1_0_ethswitch-device-0
    [MCU2_0] 1064.481783 s: mcu_2_1 <-> Switch port 1: mcu_2_1_ethswitch-device-1
    [MCU2_0] 1064.481825 s: mpu_1_0 <-> MAC port 1: mpu_1_0_ethmac-device-1
    [MCU2_0] 1064.481865 s: mcu_2_1 <-> MAC port 4: mcu_2_1_ethmac-device-4
    [MCU2_0] 1064.482910 s: CpswProxyServer: initialization completed (core: mcu2_0)
    [MCU2_0] 1064.482980 s: ETHFW: Remove server Init ... DONE !!!
    [MCU2_0] 1064.484018 s: netif: netmask of interface set to 255.0.0.0
    [MCU2_0] 1064.484102 s: netif: GW address of interface set to 127.0.0.1
    [MCU2_0] 1064.484144 s: netif_set_ipaddr: netif address being changed
    [MCU2_0] 1064.484258 s: netif: added interface lo IP addr 127.0.0.1 netmask 255.0.0.0 gw 127.0.0.1
    [MCU2_0] 1064.484314 s: igmp_init: initializing
    [MCU2_0] 1064.484347 s: dns_init: initializing
    [MCU2_0] 1064.484547 s: Starting lwIP, local interface IP is dhcp-enabled
    [MCU2_0] 1064.500612 s: Host MAC address: 70:ff:76:1d:92:c3
    [MCU2_0] 1064.509203 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.509290 s: pbuf_alloc(length=1536) == a325bb00
    [MCU2_0] 1064.509338 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.509385 s: pbuf_alloc(length=1536) == a325b480
    [MCU2_0] 1064.509424 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.509465 s: pbuf_alloc(length=1536) == a325ae00
    [MCU2_0] 1064.509503 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.509541 s: pbuf_alloc(length=1536) == a325a780
    [MCU2_0] 1064.509577 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.509615 s: pbuf_alloc(length=1536) == a325a100
    [MCU2_0] 1064.509651 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.509689 s: pbuf_alloc(length=1536) == a3259a80
    [MCU2_0] 1064.509740 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.509781 s: pbuf_alloc(length=1536) == a3259400
    [MCU2_0] 1064.509818 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.509856 s: pbuf_alloc(length=1536) == a3258d80
    [MCU2_0] 1064.509892 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.509930 s: pbuf_alloc(length=1536) == a3258700
    [MCU2_0] 1064.509966 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.510004 s: pbuf_alloc(length=1536) == a3258080
    [MCU2_0] 1064.510041 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.510078 s: pbuf_alloc(length=1536) == a3257a00
    [MCU2_0] 1064.510115 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.510154 s: pbuf_alloc(length=1536) == a3257380
    [MCU2_0] 1064.510192 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.510230 s: pbuf_alloc(length=1536) == a3256d00
    [MCU2_0] 1064.510267 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.510304 s: pbuf_alloc(length=1536) == a3256680
    [MCU2_0] 1064.510341 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.510378 s: pbuf_alloc(length=1536) == a3256000
    [MCU2_0] 1064.510415 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.510453 s: pbuf_alloc(length=1536) == a3255980
    [MCU2_0] 1064.510489 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.510527 s: pbuf_alloc(length=1536) == a3255300
    [MCU2_0] 1064.510563 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.510601 s: pbuf_alloc(length=1536) == a3254c80
    [MCU2_0] 1064.510638 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.510675 s: pbuf_alloc(length=1536) == a3254600
    [MCU2_0] 1064.510712 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.510757 s: pbuf_alloc(length=1536) == a3253f80
    [MCU2_0] 1064.510795 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.510834 s: pbuf_alloc(length=1536) == a3253900
    [MCU2_0] 1064.510871 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.510909 s: pbuf_alloc(length=1536) == a3253280
    [MCU2_0] 1064.510946 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.510985 s: pbuf_alloc(length=1536) == a3252c00
    [MCU2_0] 1064.511022 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.511062 s: pbuf_alloc(length=1536) == a3252580
    [MCU2_0] 1064.511099 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.511137 s: pbuf_alloc(length=1536) == a3251f00
    [MCU2_0] 1064.511174 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.511212 s: pbuf_alloc(length=1536) == a3251880
    [MCU2_0] 1064.511249 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.511286 s: pbuf_alloc(length=1536) == a3251200
    [MCU2_0] 1064.511323 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.511361 s: pbuf_alloc(length=1536) == a3250b80
    [MCU2_0] 1064.511399 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.511437 s: pbuf_alloc(length=1536) == a3250500
    [MCU2_0] 1064.511474 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.511511 s: pbuf_alloc(length=1536) == a324fe80
    [MCU2_0] 1064.511548 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.511586 s: pbuf_alloc(length=1536) == a324f800
    [MCU2_0] 1064.511623 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.511660 s: pbuf_alloc(length=1536) == a324f180
    [MCU2_0] 1064.511697 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.511740 s: pbuf_alloc(length=1536) == a324eb00
    [MCU2_0] 1064.511778 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.511816 s: pbuf_alloc(length=1536) == a324e480
    [MCU2_0] 1064.511852 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.511892 s: pbuf_alloc(length=1536) == a324de00
    [MCU2_0] 1064.511929 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.511967 s: pbuf_alloc(length=1536) == a324d780
    [MCU2_0] 1064.512004 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.512042 s: pbuf_alloc(length=1536) == a324d100
    [MCU2_0] 1064.512079 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.512118 s: pbuf_alloc(length=1536) == a324ca80
    [MCU2_0] 1064.512154 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.512193 s: pbuf_alloc(length=1536) == a324c400
    [MCU2_0] 1064.512230 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.512269 s: pbuf_alloc(length=1536) == a324bd80
    [MCU2_0] 1064.512306 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.512345 s: pbuf_alloc(length=1536) == a324b700
    [MCU2_0] 1064.512382 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.512420 s: pbuf_alloc(length=1536) == a324b080
    [MCU2_0] 1064.512457 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.512495 s: pbuf_alloc(length=1536) == a324aa00
    [MCU2_0] 1064.512532 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.512571 s: pbuf_alloc(length=1536) == a324a380
    [MCU2_0] 1064.512608 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.512647 s: pbuf_alloc(length=1536) == a3249d00
    [MCU2_0] 1064.512683 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.512726 s: pbuf_alloc(length=1536) == a3249680
    [MCU2_0] 1064.512765 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.512804 s: pbuf_alloc(length=1536) == a3249000
    [MCU2_0] 1064.512841 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.512879 s: pbuf_alloc(length=1536) == a3248980
    [MCU2_0] 1064.512916 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.512954 s: pbuf_alloc(length=1536) == a3248300
    [MCU2_0] 1064.512991 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.513029 s: pbuf_alloc(length=1536) == a3247c80
    [MCU2_0] 1064.513067 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.513105 s: pbuf_alloc(length=1536) == a3247600
    [MCU2_0] 1064.513142 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.513180 s: pbuf_alloc(length=1536) == a3246f80
    [MCU2_0] 1064.513217 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.513255 s: pbuf_alloc(length=1536) == a3246900
    [MCU2_0] 1064.513293 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.513331 s: pbuf_alloc(length=1536) == a3246280
    [MCU2_0] 1064.513368 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.513405 s: pbuf_alloc(length=1536) == a3245c00
    [MCU2_0] 1064.513443 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.513480 s: pbuf_alloc(length=1536) == a3245580
    [MCU2_0] 1064.513517 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.513555 s: pbuf_alloc(length=1536) == a3244f00
    [MCU2_0] 1064.513591 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.513629 s: pbuf_alloc(length=1536) == a3244880
    [MCU2_0] 1064.513666 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.513704 s: pbuf_alloc(length=1536) == a3244200
    [MCU2_0] 1064.513747 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.513787 s: pbuf_alloc(length=1536) == a3243b80
    [MCU2_0] 1064.513823 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.513862 s: pbuf_alloc(length=1536) == a3243500
    [MCU2_0] 1064.513899 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.513938 s: pbuf_alloc(length=1536) == a3242e80
    [MCU2_0] 1064.513974 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.514013 s: pbuf_alloc(length=1536) == a3242800
    [MCU2_0] 1064.514049 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.514088 s: pbuf_alloc(length=1536) == a3242180
    [MCU2_0] 1064.514404 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.514470 s: pbuf_alloc(length=1536) == a3241b00
    [MCU2_0] 1064.514515 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.514562 s: pbuf_alloc(length=1536) == a3241480
    [MCU2_0] 1064.514601 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.514643 s: pbuf_alloc(length=1536) == a3240e00
    [MCU2_0] 1064.514680 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.514729 s: pbuf_alloc(length=1536) == a3240780
    [MCU2_0] 1064.514767 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.514806 s: pbuf_alloc(length=1536) == a3240100
    [MCU2_0] 1064.514844 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.514882 s: pbuf_alloc(length=1536) == a323fa80
    [MCU2_0] 1064.514920 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.514958 s: pbuf_alloc(length=1536) == a323f400
    [MCU2_0] 1064.514996 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.515034 s: pbuf_alloc(length=1536) == a323ed80
    [MCU2_0] 1064.515070 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.515108 s: pbuf_alloc(length=1536) == a323e700
    [MCU2_0] 1064.515145 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.515183 s: pbuf_alloc(length=1536) == a323e080
    [MCU2_0] 1064.515219 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.515257 s: pbuf_alloc(length=1536) == a323da00
    [MCU2_0] 1064.515294 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.515332 s: pbuf_alloc(length=1536) == a323d380
    [MCU2_0] 1064.515369 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.515407 s: pbuf_alloc(length=1536) == a323cd00
    [MCU2_0] 1064.515444 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.515482 s: pbuf_alloc(length=1536) == a323c680
    [MCU2_0] 1064.515518 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.515557 s: pbuf_alloc(length=1536) == a323c000
    [MCU2_0] 1064.515594 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.515634 s: pbuf_alloc(length=1536) == a323b980
    [MCU2_0] 1064.515671 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.515709 s: pbuf_alloc(length=1536) == a323b300
    [MCU2_0] 1064.515755 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.515795 s: pbuf_alloc(length=1536) == a323ac80
    [MCU2_0] 1064.515832 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.515871 s: pbuf_alloc(length=1536) == a323a600
    [MCU2_0] 1064.515908 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.515946 s: pbuf_alloc(length=1536) == a3239f80
    [MCU2_0] 1064.515983 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.516022 s: pbuf_alloc(length=1536) == a3239900
    [MCU2_0] 1064.516060 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.516098 s: pbuf_alloc(length=1536) == a3239280
    [MCU2_0] 1064.516135 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.516173 s: pbuf_alloc(length=1536) == a3238c00
    [MCU2_0] 1064.516209 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.516247 s: pbuf_alloc(length=1536) == a3238580
    [MCU2_0] 1064.516284 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.516323 s: pbuf_alloc(length=1536) == a3237f00
    [MCU2_0] 1064.516360 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.516398 s: pbuf_alloc(length=1536) == a3237880
    [MCU2_0] 1064.516434 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.516472 s: pbuf_alloc(length=1536) == a3237200
    [MCU2_0] 1064.516509 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.516547 s: pbuf_alloc(length=1536) == a3236b80
    [MCU2_0] 1064.516583 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.516622 s: pbuf_alloc(length=1536) == a3236500
    [MCU2_0] 1064.516659 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.516698 s: pbuf_alloc(length=1536) == a3235e80
    [MCU2_0] 1064.516737 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.516776 s: pbuf_alloc(length=1536) == a3235800
    [MCU2_0] 1064.516813 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.516851 s: pbuf_alloc(length=1536) == a3235180
    [MCU2_0] 1064.516888 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.516926 s: pbuf_alloc(length=1536) == a3234b00
    [MCU2_0] 1064.516963 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.517001 s: pbuf_alloc(length=1536) == a3234480
    [MCU2_0] 1064.517037 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.517075 s: pbuf_alloc(length=1536) == a3233e00
    [MCU2_0] 1064.517112 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.517150 s: pbuf_alloc(length=1536) == a3233780
    [MCU2_0] 1064.517187 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.517224 s: pbuf_alloc(length=1536) == a3233100
    [MCU2_0] 1064.517261 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.517299 s: pbuf_alloc(length=1536) == a3232a80
    [MCU2_0] 1064.517336 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.517374 s: pbuf_alloc(length=1536) == a3232400
    [MCU2_0] 1064.517411 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.517449 s: pbuf_alloc(length=1536) == a3231d80
    [MCU2_0] 1064.517485 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.517523 s: pbuf_alloc(length=1536) == a3231700
    [MCU2_0] 1064.517560 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.517598 s: pbuf_alloc(length=1536) == a3231080
    [MCU2_0] 1064.517634 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.517672 s: pbuf_alloc(length=1536) == a3230a00
    [MCU2_0] 1064.517709 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.517754 s: pbuf_alloc(length=1536) == a3230380
    [MCU2_0] 1064.517792 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.517831 s: pbuf_alloc(length=1536) == a322fd00
    [MCU2_0] 1064.517867 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.517905 s: pbuf_alloc(length=1536) == a322f680
    [MCU2_0] 1064.517941 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.517979 s: pbuf_alloc(length=1536) == a322f000
    [MCU2_0] 1064.518015 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.518053 s: pbuf_alloc(length=1536) == a322e980
    [MCU2_0] 1064.518089 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.518127 s: pbuf_alloc(length=1536) == a322e300
    [MCU2_0] 1064.518163 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.518202 s: pbuf_alloc(length=1536) == a322dc80
    [MCU2_0] 1064.518238 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.518276 s: pbuf_alloc(length=1536) == a322d600
    [MCU2_0] 1064.518312 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.518351 s: pbuf_alloc(length=1536) == a322cf80
    [MCU2_0] 1064.518387 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.518425 s: pbuf_alloc(length=1536) == a322c900
    [MCU2_0] 1064.518461 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.518500 s: pbuf_alloc(length=1536) == a322c280
    [MCU2_0] 1064.518536 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.518575 s: pbuf_alloc(length=1536) == a322bc00
    [MCU2_0] 1064.518611 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.518649 s: pbuf_alloc(length=1536) == a322b580
    [MCU2_0] 1064.518685 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.518728 s: pbuf_alloc(length=1536) == a322af00
    [MCU2_0] 1064.518766 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.518805 s: pbuf_alloc(length=1536) == a322a880
    [MCU2_0] 1064.518841 s: pbuf_alloc(length=1536)
    [MCU2_0] 1064.518879 s: pbuf_alloc(length=1536) == a322a200
    [MCU2_0] 1078.501811 s: etharp_timer
    [MCU2_0] 1078.501885 s: dns_tmr: dns_check_entries
    [MCU2_0] 1078.501932 s: dhcp_fine_tmr(): request timeout
    [MCU2_0] 1078.501964 s: dhcp_timeout()
    [MCU2_0] 1078.501990 s: dhcp_timeout(): restarting discovery
    [MCU2_0] 1078.502021 s: dhcp_discover()
    [MCU2_0] 1078.502059 s: pbuf_alloc(length=308)
    [MCU2_0] 1078.502108 s: pbuf_alloc(length=308) == a35a5500
    [MCU2_0] 1078.502145 s: transaction id xid(11bf)
    [MCU2_0] 1078.502177 s: dhcp_discover: making request
    [MCU2_0] 1078.502214 s: dhcp_discover: sendto(DISCOVER, IP_ADDR_BROADCAST, LWIP_IANA_PORT_DHCP_SERVER)
    [MCU2_0] 1078.502285 s: pbuf_add_header: old a35a5600 new a35a55f8 (8)
    [MCU2_0] 1078.502333 s: udp_send: added header in given pbuf a35a5500
    [MCU2_0] 1078.502378 s: udp_send: sending datagram of length 316
    [MCU2_0] 1078.502417 s: udp_send: UDP packet length 316
    [MCU2_0] 1078.502466 s: inet_chksum_pseudo(): checksumming pbuf a35a5500 (has next 0)
    [MCU2_0] 1078.502520 s: inet_chksum_pseudo(): pbuf chain lwip_chksum()=296f
    [MCU2_0] 1078.502562 s: udp_send: UDP checksum 0xd690
    [MCU2_0] 1078.502598 s: udp_send: ip_output_if (,,,,0x11,)
    [MCU2_0] 1078.502651 s: pbuf_add_header: old a35a55f8 new a35a55e4 (20)
    [MCU2_0] 1078.502705 s: ip4_output_if: br4
    [MCU2_0] 1078.502894 s: ip4_output_if: call netif->output()
    [MCU2_0] 1078.502965 s: pbuf_add_header: old a35a55e4 new a35a55d6 (14)
    [MCU2_0] 1078.503014 s: ethernet_output: sending packet a35a5500
    [MCU2_0] 1078.503066 s: br -> flood(a35a5500:0) -> 2
    [MCU2_0] 1078.503171 s: br -> flood(a35a5500:0) -> 3
    [MCU2_0] 1078.503245 s: br -> flood(a35a5500:0) -> 4
    [MCU2_0] 1078.503295 s: dhcp_discover: deleting()ing
    [MCU2_0] 1078.503332 s: pbuf_free(a35a5500)
    [MCU2_0] 1078.503380 s: pbuf_free: a35a5500 has ref 1, ending here.
    [MCU2_0] 1078.503412 s: dhcp_discover: SELECTING
    [MCU2_0] 1078.503452 s: dhcp_discover(): set request timeout 16000 msecs
    [MCU2_0] 1079.501818 s: etharp_timer
    [MCU2_0] 1079.501898 s: dns_tmr: dns_check_entries
    [MCU2_1] 1053.735009 s: CIO: Init ... Done !!!
    [MCU2_1] 1053.735082 s: ### CPU Frequency = 1000000000 Hz
    [MCU2_1] 1053.735128 s: APP: Init ... !!!
    [MCU2_1] 1053.735155 s: SCICLIENT: Init ... !!!
    [MCU2_1] 1053.736302 s: SCICLIENT: DMSC FW version [21.1.1--v2021.01a (Terrific Lla]
    [MCU2_1] 1053.736356 s: SCICLIENT: DMSC FW revision 0x15
    [MCU2_1] 1053.736395 s: SCICLIENT: DMSC FW ABI revision 3.1
    [MCU2_1] 1053.736433 s: SCICLIENT: Init ... Done !!!
    [MCU2_1] 1053.736470 s: UDMA: Init ... !!!
    [MCU2_1] 1053.748414 s: UDMA: Init ... Done !!!
    [MCU2_1] 1053.748497 s: MEM: Init ... !!!
    [MCU2_1] 1053.748554 s: MEM: Created heap (DDR_LOCAL_MEM, id=0, flags=0x00000004) @ da000000 of size 16777216 bytes !!!
    [MCU2_1] 1053.748638 s: MEM: Created heap (L3_MEM, id=1, flags=0x00000001) @ 3640000 of size 262144 bytes !!!
    [MCU2_1] 1053.748705 s: MEM: Init ... Done !!!
    [MCU2_1] 1053.748737 s: IPC: Init ... !!!
    [MCU2_1] 1053.748813 s: IPC: 6 CPUs participating in IPC !!!
    [MCU2_1] 1053.748870 s: IPC: Waiting for HLOS to be ready ... !!!
    [MCU2_1] 1064.259707 s: IPC: HLOS is ready !!!
    [MCU2_1] 1064.279737 s: IPC: Init ... Done !!!
    [MCU2_1] 1064.279808 s: APP: Syncing with 5 CPUs ... !!!
    [MCU2_1] 1064.279854 s: APP: Syncing with 5 CPUs ... Done !!!
    [MCU2_1] 1064.279892 s: REMOTE_SERVICE: Init ... !!!
    [MCU2_1] 1064.282113 s: REMOTE_SERVICE: Init ... Done !!!
    [MCU2_1] 1064.282178 s: FVID2: Init ... !!!
    [MCU2_1] 1064.282248 s: FVID2: Init ... Done !!!
    [MCU2_1] 1064.282284 s: VHWA: DMPAC: Init ... !!!
    [MCU2_1] 1064.282313 s: SCICLIENT: Sciclient_pmSetModuleState module=48 state=2
    [MCU2_1] 1064.284036 s: SCICLIENT: Sciclient_pmSetModuleState success
    [MCU2_1] 1064.284082 s: SCICLIENT: Sciclient_pmSetModuleState module=305 state=2
    [MCU2_1] 1064.286067 s: SCICLIENT: Sciclient_pmSetModuleState success
    [MCU2_1] 1064.286108 s: VHWA: DOF Init ... !!!
    [MCU2_1] 1064.316538 s: VHWA: DOF Init ... Done !!!
    [MCU2_1] 1064.316607 s: VHWA: SDE Init ... !!!
    [MCU2_1] 1064.324136 s: VHWA: SDE Init ... Done !!!
    [MCU2_1] 1064.324197 s: VHWA: DMPAC: Init ... Done !!!
    [MCU2_1] 1064.324251 s: VX_ZONE_INIT:Enabled
    [MCU2_1] 1064.324285 s: VX_ZONE_ERROR:Enabled
    [MCU2_1] 1064.324314 s: VX_ZONE_WARNING:Enabled
    [MCU2_1] 1064.325573 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target DMPAC_SDE
    [MCU2_1] 1064.325839 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target DMPAC_DOF
    [MCU2_1] 1064.326083 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:64] Added target MCU2-1
    [MCU2_1] 1064.326140 s: VX_ZONE_INIT:[tivxInitLocal:130] Initialization Done !!!
    [MCU2_1] 1064.326177 s: APP: OpenVX Target kernel init ... !!!
    [MCU2_1] 1064.326477 s: APP: OpenVX Target kernel init ... Done !!!
    [MCU2_1] 1064.326521 s: UDMA Copy: Init ... !!!
    [MCU2_1] 1064.331656 s: UDMA Copy: Init ... Done !!!
    [MCU2_1] 1064.331727 s: APP: Init ... Done !!!
    [MCU2_1] 1064.331762 s: APP: Run ... !!!
    [MCU2_1] 1064.331789 s: IPC: Starting echo test ...
    [MCU2_1] 1064.334423 s: APP: Run ... Done !!!
    [MCU2_1] 1064.335732 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[s] C66X_1[P] C66X_2[.] C7X_1[.]
    [MCU2_1] 1064.335861 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[s] C66X_1[P] C66X_2[.] C7X_1[P]
    [MCU2_1] 1064.335968 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[s] C66X_1[P] C66X_2[P] C7X_1[P]
    [MCU2_1] 1064.747341 s: IPC: Echo status: mpu1_0[x] mcu2_0[P] mcu2_1[s] C66X_1[P] C66X_2[P] C7X_1[P]
    [C6x_1 ] 1053.720933 s: CIO: Init ... Done !!!
    [C6x_1 ] 1053.720960 s: ### CPU Frequency = 1350000000 Hz
    [C6x_1 ] 1053.720971 s: APP: Init ... !!!
    [C6x_1 ] 1053.720979 s: SCICLIENT: Init ... !!!
    [C6x_1 ] 1053.722102 s: SCICLIENT: DMSC FW version [21.1.1--v2021.01a (Terrific Lla]
    [C6x_1 ] 1053.722116 s: SCICLIENT: DMSC FW revision 0x15
    [C6x_1 ] 1053.722125 s: SCICLIENT: DMSC FW ABI revision 3.1
    [C6x_1 ] 1053.722136 s: SCICLIENT: Init ... Done !!!
    [C6x_1 ] 1053.722145 s: UDMA: Init ... !!!
    [C6x_1 ] 1053.735413 s: UDMA: Init ... Done !!!
    [C6x_1 ] 1053.735432 s: MEM: Init ... !!!
    [C6x_1 ] 1053.735445 s: MEM: Created heap (DDR_LOCAL_MEM, id=0, flags=0x00000004) @ dc000000 of size 16777216 bytes !!!
    [C6x_1 ] 1053.735464 s: MEM: Created heap (L2_MEM, id=2, flags=0x00000001) @ 800000 of size 229376 bytes !!!
    [C6x_1 ] 1053.735480 s: MEM: Created heap (DDR_SCRATCH_MEM, id=4, flags=0x00000001) @ dd000000 of size 50331648 bytes !!!
    [C6x_1 ] 1053.735498 s: MEM: Init ... Done !!!
    [C6x_1 ] 1053.735507 s: IPC: Init ... !!!
    [C6x_1 ] 1053.735528 s: IPC: 6 CPUs participating in IPC !!!
    [C6x_1 ] 1053.735544 s: IPC: Waiting for HLOS to be ready ... !!!
    [C6x_1 ] 1062.904079 s: IPC: HLOS is ready !!!
    [C6x_1 ] 1062.920426 s: IPC: Init ... Done !!!
    [C6x_1 ] 1062.920454 s: APP: Syncing with 5 CPUs ... !!!
    [C6x_1 ] 1064.279853 s: APP: Syncing with 5 CPUs ... Done !!!
    [C6x_1 ] 1064.279870 s: REMOTE_SERVICE: Init ... !!!
    [C6x_1 ] 1064.280579 s: REMOTE_SERVICE: Init ... Done !!!
    [C6x_1 ] 1064.280660 s: VX_ZONE_INIT:Enabled
    [C6x_1 ] 1064.280674 s: VX_ZONE_ERROR:Enabled
    [C6x_1 ] 1064.280684 s: VX_ZONE_WARNING:Enabled
    [C6x_1 ] 1064.281452 s: VX_ZONE_INIT:[tivxInitLocal:130] Initialization Done !!!
    [C6x_1 ] 1064.281468 s: APP: OpenVX Target kernel init ... !!!
    [C6x_1 ] 1064.281806 s: APP: OpenVX Target kernel init ... Done !!!
    [C6x_1 ] 1064.281826 s: UDMA Copy: Init ... !!!
    [C6x_1 ] 1064.297144 s: UDMA Copy: Init ... Done !!!
    [C6x_1 ] 1064.297163 s: APP: Init ... Done !!!
    [C6x_1 ] 1064.297173 s: APP: Run ... !!!
    [C6x_1 ] 1064.297182 s: IPC: Starting echo test ...
    [C6x_1 ] 1064.298227 s: APP: Run ... Done !!!
    [C6x_1 ] 1064.298546 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] C66X_1[s] C66X_2[x] C7X_1[P]
    [C6x_1 ] 1064.299309 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] C66X_1[s] C66X_2[P] C7X_1[P]
    [C6x_1 ] 1064.335003 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[P] C66X_1[s] C66X_2[P] C7X_1[P]
    [C6x_1 ] 1064.746735 s: IPC: Echo status: mpu1_0[x] mcu2_0[P] mcu2_1[P] C66X_1[s] C66X_2[P] C7X_1[P]
    [C6x_2 ] 1053.766645 s: CIO: Init ... Done !!!
    [C6x_2 ] 1053.766672 s: ### CPU Frequency = 1350000000 Hz
    [C6x_2 ] 1053.766683 s: APP: Init ... !!!
    [C6x_2 ] 1053.766692 s: SCICLIENT: Init ... !!!
    [C6x_2 ] 1053.767661 s: SCICLIENT: DMSC FW version [21.1.1--v2021.01a (Terrific Lla]
    [C6x_2 ] 1053.767675 s: SCICLIENT: DMSC FW revision 0x15
    [C6x_2 ] 1053.767685 s: SCICLIENT: DMSC FW ABI revision 3.1
    [C6x_2 ] 1053.767696 s: SCICLIENT: Init ... Done !!!
    [C6x_2 ] 1053.767706 s: UDMA: Init ... !!!
    [C6x_2 ] 1053.780410 s: UDMA: Init ... Done !!!
    [C6x_2 ] 1053.780430 s: MEM: Init ... !!!
    [C6x_2 ] 1053.780444 s: MEM: Created heap (DDR_LOCAL_MEM, id=0, flags=0x00000004) @ e0000000 of size 16777216 bytes !!!
    [C6x_2 ] 1053.780463 s: MEM: Created heap (L2_MEM, id=2, flags=0x00000001) @ 800000 of size 229376 bytes !!!
    [C6x_2 ] 1053.780478 s: MEM: Created heap (DDR_SCRATCH_MEM, id=4, flags=0x00000001) @ e1000000 of size 50331648 bytes !!!
    [C6x_2 ] 1053.780495 s: MEM: Init ... Done !!!
    [C6x_2 ] 1053.780504 s: IPC: Init ... !!!
    [C6x_2 ] 1053.780526 s: IPC: 6 CPUs participating in IPC !!!
    [C6x_2 ] 1053.780542 s: IPC: Waiting for HLOS to be ready ... !!!
    [C6x_2 ] 1063.448267 s: IPC: HLOS is ready !!!
    [C6x_2 ] 1063.464558 s: IPC: Init ... Done !!!
    [C6x_2 ] 1063.464586 s: APP: Syncing with 5 CPUs ... !!!
    [C6x_2 ] 1064.279854 s: APP: Syncing with 5 CPUs ... Done !!!
    [C6x_2 ] 1064.279871 s: REMOTE_SERVICE: Init ... !!!
    [C6x_2 ] 1064.280588 s: REMOTE_SERVICE: Init ... Done !!!
    [C6x_2 ] 1064.280672 s: VX_ZONE_INIT:Enabled
    [C6x_2 ] 1064.280686 s: VX_ZONE_ERROR:Enabled
    [C6x_2 ] 1064.280699 s: VX_ZONE_WARNING:Enabled
    [C6x_2 ] 1064.281461 s: VX_ZONE_INIT:[tivxInitLocal:130] Initialization Done !!!
    [C6x_2 ] 1064.281477 s: APP: OpenVX Target kernel init ... !!!
    [C6x_2 ] 1064.281809 s: APP: OpenVX Target kernel init ... Done !!!
    [C6x_2 ] 1064.281830 s: UDMA Copy: Init ... !!!
    [C6x_2 ] 1064.297787 s: UDMA Copy: Init ... Done !!!
    [C6x_2 ] 1064.297806 s: APP: Init ... Done !!!
    [C6x_2 ] 1064.297816 s: APP: Run ... !!!
    [C6x_2 ] 1064.297825 s: IPC: Starting echo test ...
    [C6x_2 ] 1064.298967 s: APP: Run ... Done !!!
    [C6x_2 ] 1064.299307 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] C66X_1[P] C66X_2[s] C7X_1[.]
    [C6x_2 ] 1064.299344 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] C66X_1[P] C66X_2[s] C7X_1[P]
    [C6x_2 ] 1064.335033 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[P] C66X_1[P] C66X_2[s] C7X_1[P]
    [C6x_2 ] 1064.747230 s: IPC: Echo status: mpu1_0[x] mcu2_0[P] mcu2_1[P] C66X_1[P] C66X_2[s] C7X_1[P]
    [C7x_1 ] 1053.822607 s: CIO: Init ... Done !!!
    [C7x_1 ] 1053.822622 s: ### CPU Frequency = 1000000000 Hz
    [C7x_1 ] 1053.822635 s: APP: Init ... !!!
    [C7x_1 ] 1053.822643 s: SCICLIENT: Init ... !!!
    [C7x_1 ] 1053.823613 s: SCICLIENT: DMSC FW version [21.1.1--v2021.01a (Terrific Lla]
    [C7x_1 ] 1053.823628 s: SCICLIENT: DMSC FW revision 0x15
    [C7x_1 ] 1053.823639 s: SCICLIENT: DMSC FW ABI revision 3.1
    [C7x_1 ] 1053.823650 s: SCICLIENT: Init ... Done !!!
    [C7x_1 ] 1053.823660 s: UDMA: Init ... !!!
    [C7x_1 ] 1053.834211 s: UDMA: Init ... Done !!!
    [C7x_1 ] 1053.834224 s: MEM: Init ... !!!
    [C7x_1 ] 1053.834235 s: MEM: Created heap (DDR_LOCAL_MEM, id=0, flags=0x00000004) @ 117000000 of size 268435456 bytes !!!
    [C7x_1 ] 1053.834255 s: MEM: Created heap (L3_MEM, id=1, flags=0x00000001) @ 70020000 of size 8159232 bytes !!!
    [C7x_1 ] 1053.834273 s: MEM: Created heap (L2_MEM, id=2, flags=0x00000001) @ 64800000 of size 458752 bytes !!!
    [C7x_1 ] 1053.834291 s: MEM: Created heap (L1_MEM, id=3, flags=0x00000001) @ 64e00000 of size 16384 bytes !!!
    [C7x_1 ] 1053.834308 s: MEM: Created heap (DDR_SCRATCH_MEM, id=4, flags=0x00000001) @ 100000000 of size 385875968 bytes !!!
    [C7x_1 ] 1053.834327 s: MEM: Init ... Done !!!
    [C7x_1 ] 1053.834335 s: IPC: Init ... !!!
    [C7x_1 ] 1053.834349 s: IPC: 6 CPUs participating in IPC !!!
    [C7x_1 ] 1053.834363 s: IPC: Waiting for HLOS to be ready ... !!!
    [C7x_1 ] 1064.222559 s: IPC: HLOS is ready !!!
    [C7x_1 ] 1064.231372 s: IPC: Init ... Done !!!
    [C7x_1 ] 1064.231386 s: APP: Syncing with 5 CPUs ... !!!
    [C7x_1 ] 1064.279855 s: APP: Syncing with 5 CPUs ... Done !!!
    [C7x_1 ] 1064.279872 s: REMOTE_SERVICE: Init ... !!!
    [C7x_1 ] 1064.280016 s: REMOTE_SERVICE: Init ... Done !!!
    [C7x_1 ] 1064.280038 s: VX_ZONE_INIT:Enabled
    [C7x_1 ] 1064.280050 s: VX_ZONE_ERROR:Enabled
    [C7x_1 ] 1064.280061 s: VX_ZONE_WARNING:Enabled
    [C7x_1 ] 1064.280211 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1
    [C7x_1 ] 1064.280276 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1_PRI_2
    [C7x_1 ] 1064.280337 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1_PRI_3
    [C7x_1 ] 1064.280400 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1_PRI_4
    [C7x_1 ] 1064.280501 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1_PRI_5
    [C7x_1 ] 1064.280566 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1_PRI_6
    [C7x_1 ] 1064.280630 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1_PRI_7
    [C7x_1 ] 1064.280729 s: VX_ZONE_INIT:[tivxPlatformCreateTargetId:59] Added target DSP_C7-1_PRI_8
    [C7x_1 ] 1064.280756 s: VX_ZONE_INIT:[tivxInitLocal:130] Initialization Done !!!
    [C7x_1 ] 1064.280771 s: APP: OpenVX Target kernel init ... !!!
    [C7x_1 ] 1064.280961 s: APP: OpenVX Target kernel init ... Done !!!
    [C7x_1 ] 1064.280976 s: APP: Init ... Done !!!
    [C7x_1 ] 1064.280986 s: APP: Run ... !!!
    [C7x_1 ] 1064.280994 s: IPC: Starting echo test ...
    [C7x_1 ] 1064.281137 s: APP: Run ... Done !!!
    [C7x_1 ] 1064.298552 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] C66X_1[P] C66X_2[x] C7X_1[s]
    [C7x_1 ] 1064.299301 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[x] C66X_1[P] C66X_2[P] C7X_1[s]
    [C7x_1 ] 1064.335059 s: IPC: Echo status: mpu1_0[x] mcu2_0[x] mcu2_1[P] C66X_1[P] C66X_2[P] C7X_1[s]
    [C7x_1 ] 1064.747265 s: IPC: Echo status: mpu1_0[x] mcu2_0[P] mcu2_1[P] C66X_1[P] C66X_2[P] C7X_1[s]
    [MCU2_0] 1080.501812 s: etharp_timer
    [MCU2_0] 1080.501890 s: dns_tmr: dns_check_entries
    [MCU2_0] 1081.501818 s: etharp_timer
    [MCU2_0] 1081.501896 s: dns_tmr: dns_check_entries
    [MCU2_0] 1082.494848 s: pbuf_alloc(length=1536)
    [MCU2_0] 1082.494923 s: pbuf_alloc(length=1536) == a325ae00
    [MCU2_0] 1082.495088 s: tcpip_thread: PACKET a35ced00
    [MCU2_0] 1082.495180 s: br: update src 00:68:eb:a7:36:1e (from 0) @ idx 0
    [MCU2_0] 1082.495240 s: br -> flood(a325a780:2) -> 3
    [MCU2_0] 1082.495307 s: br -> flood(a325a780:2) -> 4
    [MCU2_0] 1082.495360 s: br -> input(a325a780)
    [MCU2_0] 1082.495453 s: ethernet_input: dest:33:33:ff:12:8d:c9, src:00:68:eb:a7:36:1e, type:86dd
    [MCU2_0] 1082.495505 s: pbuf_free(a325a780)
    [MCU2_0] 1082.495545 s: pbuf_free: deallocating a325a780
    [MCU2_0] 1082.501813 s: etharp_timer
    [MCU2_0] 1082.501887 s: dns_tmr: dns_check_entries
    [MCU2_0] 1083.466847 s: pbuf_alloc(length=1536)
    [MCU2_0] 1083.466918 s: pbuf_alloc(length=1536) == a325a780
    [MCU2_0] 1083.467085 s: tcpip_thread: PACKET a35ced00
    [MCU2_0] 1083.467177 s: br: update src 00:68:eb:a7:36:1e (from 0) @ idx 0
    [MCU2_0] 1083.467240 s: br -> flood(a325a100:2) -> 3
    [MCU2_0] 1083.467306 s: br -> flood(a325a100:2) -> 4
    [MCU2_0] 1083.467355 s: br -> input(a325a100)
    [MCU2_0] 1083.467451 s: ethernet_input: dest:33:33:ff:12:8d:c9, src:00:68:eb:a7:36:1e, type:86dd
    [MCU2_0] 1083.467505 s: pbuf_free(a325a100)
    [MCU2_0] 1083.467544 s: pbuf_free: deallocating a325a100
    [MCU2_0] 1083.501818 s: etharp_timer
    [MCU2_0] 1083.501897 s: dns_tmr: dns_check_entries
    [MCU2_0] 1084.466852 s: pbuf_alloc(length=1536)
    [MCU2_0] 1084.466927 s: pbuf_alloc(length=1536) == a325a100
    [MCU2_0] 1084.467095 s: tcpip_thread: PACKET a35ced00
    [MCU2_0] 1084.467188 s: br: update src 00:68:eb:a7:36:1e (from 0) @ idx 0
    [MCU2_0] 1084.467249 s: br -> flood(a3259a80:2) -> 3
    [MCU2_0] 1084.467315 s: br -> flood(a3259a80:2) -> 4
    [MCU2_0] 1084.467365 s: br -> input(a3259a80)
    [MCU2_0] 1084.467459 s: ethernet_input: dest:33:33:ff:12:8d:c9, src:00:68:eb:a7:36:1e, type:86dd
    [MCU2_0] 1084.467514 s: pbuf_free(a3259a80)
    [MCU2_0] 1084.467555 s: pbuf_free: deallocating a3259a80
    [MCU2_0] 1084.501816 s: etharp_timer
    [MCU2_0] 1084.501894 s: dns_tmr: dns_check_entries
    [MCU2_0] 1085.497867 s: pbuf_alloc(length=1536)
    [MCU2_0] 1085.497940 s: pbuf_alloc(length=1536) == a3259a80
    [MCU2_0] 1085.498165 s: tcpip_thread: PACKET a35ced00
    [MCU2_0] 1085.498255 s: br: update src 00:68:eb:a7:36:1e (from 0) @ idx 0
    [MCU2_0] 1085.498320 s: br -> flood(a3259400:2) -> 3
    [MCU2_0] 1085.498386 s: br -> flood(a3259400:2) -> 4
    [MCU2_0] 1085.498437 s: br -> input(a3259400)
    [MCU2_0] 1085.498532 s: ethernet_input: dest:33:33:ff:12:8d:c9, src:00:68:eb:a7:36:1e, type:86dd
    [MCU2_0] 1085.498586 s: pbuf_free(a3259400)
    [MCU2_0] 1085.498627 s: pbuf_free: deallocating a3259400
    [MCU2_0] 1085.501813 s: etharp_timer
    [MCU2_0] 1085.501878 s: dns_tmr: dns_check_entries
    [MCU2_0] 1086.465850 s: pbuf_alloc(length=1536)
    [MCU2_0] 1086.465924 s: pbuf_alloc(length=1536) == a3259400
    [MCU2_0] 1086.466092 s: tcpip_thread: PACKET a35ced00
    [MCU2_0] 1086.466183 s: br: update src 00:68:eb:a7:36:1e (from 0) @ idx 0
    [MCU2_0] 1086.466244 s: br -> flood(a3258d80:2) -> 3
    [MCU2_0] 1086.466312 s: br -> flood(a3258d80:2) -> 4
    [MCU2_0] 1086.466362 s: br -> input(a3258d80)
    [MCU2_0] 1086.466454 s: ethernet_input: dest:33:33:ff:12:8d:c9, src:00:68:eb:a7:36:1e, type:86dd
    [MCU2_0] 1086.466506 s: pbuf_free(a3258d80)
    [MCU2_0] 1086.466546 s: pbuf_free: deallocating a3258d80
    [MCU2_0] 1086.501819 s: etharp_timer
    [MCU2_0] 1086.501890 s: dns_tmr: dns_check_entries
    [MCU2_0] 1087.463854 s: pbuf_alloc(length=1536)
    [MCU2_0] 1087.463931 s: pbuf_alloc(length=1536) == a3258d80
    [MCU2_0] 1087.464099 s: tcpip_thread: PACKET a35ced00
    [MCU2_0] 1087.464189 s: br: update src 00:68:eb:a7:36:1e (from 0) @ idx 0
    [MCU2_0] 1087.464251 s: br -> flood(a3258700:2) -> 3
    [MCU2_0] 1087.464317 s: br -> flood(a3258700:2) -> 4
    [MCU2_0] 1087.464368 s: br -> input(a3258700)
    [MCU2_0] 1087.464463 s: ethernet_input: dest:33:33:ff:12:8d:c9, src:00:68:eb:a7:36:1e, type:86dd
    [MCU2_0] 1087.464515 s: pbuf_free(a3258700)
    [MCU2_0] 1087.464557 s: pbuf_free: deallocating a3258700
    [MCU2_0] 1087.501818 s: etharp_timer
    [MCU2_0] 1087.501893 s: dns_tmr: dns_check_entries
    [MCU2_0] 1088.501813 s: etharp_timer
    [MCU2_0] 1088.501893 s: dns_tmr: dns_check_entries
    [MCU2_0] 1089.501809 s: etharp_timer
    [MCU2_0] 1089.501885 s: dns_tmr: dns_check_entries
    [MCU2_0] 1089.510843 s: pbuf_alloc(length=1536)
    [MCU2_0] 1089.510913 s: pbuf_alloc(length=1536) == a3258700
    [MCU2_0] 1089.511077 s: tcpip_thread: PACKET a35ced00
    [MCU2_0] 1089.511169 s: br: update src 00:68:eb:a7:36:1e (from 0) @ idx 0
    [MCU2_0] 1089.511231 s: br -> flood(a3258080:2) -> 3
    [MCU2_0] 1089.511297 s: br -> flood(a3258080:2) -> 4
    [MCU2_0] 1089.511347 s: br -> input(a3258080)
    [MCU2_0] 1089.511440 s: ethernet_input: dest:33:33:ff:12:8d:c9, src:00:68:eb:a7:36:1e, type:86dd
    [MCU2_0] 1089.511491 s: pbuf_free(a3258080)
    [MCU2_0] 1089.511532 s: pbuf_free: deallocating a3258080
    [MCU2_0] 1090.466848 s: pbuf_alloc(length=1536)
    [MCU2_0] 1090.466919 s: pbuf_alloc(length=1536) == a3258080
    [MCU2_0] 1090.467080 s: tcpip_thread: PACKET a35ced00
    [MCU2_0] 1090.467174 s: br: update src 00:68:eb:a7:36:1e (from 0) @ idx 0
    [MCU2_0] 1090.467237 s: br -> flood(a3257a00:2) -> 3
    [MCU2_0] 1090.467302 s: br -> flood(a3257a00:2) -> 4
    [MCU2_0] 1090.467355 s: br -> input(a3257a00)
    [MCU2_0] 1090.467450 s: ethernet_input: dest:33:33:ff:12:8d:c9, src:00:68:eb:a7:36:1e, type:86dd
    [MCU2_0] 1090.467503 s: pbuf_free(a3257a00)
    [MCU2_0] 1090.467544 s: pbuf_free: deallocating a3257a00
    [MCU2_0] 1090.501811 s: etharp_timer
    [MCU2_0] 1090.501886 s: dns_tmr: dns_check_entries
    [MCU2_0] 1091.466846 s: pbuf_alloc(length=1536)
    [MCU2_0] 1091.466920 s: pbuf_alloc(length=1536) == a3257a00
    [MCU2_0] 1091.467093 s: tcpip_thread: PACKET a35ced00
    [MCU2_0] 1091.467187 s: br: update src 00:68:eb:a7:36:1e (from 0) @ idx 0
    [MCU2_0] 1091.467253 s: br -> flood(a3257380:2) -> 3
    [MCU2_0] 1091.467319 s: br -> flood(a3257380:2) -> 4
    [MCU2_0] 1091.467370 s: br -> input(a3257380)
    [MCU2_0] 1091.467464 s: ethernet_input: dest:33:33:ff:12:8d:c9, src:00:68:eb:a7:36:1e, type:86dd
    [MCU2_0] 1091.467518 s: pbuf_free(a3257380)
    [MCU2_0] 1091.467559 s: pbuf_free: deallocating a3257380
    [MCU2_0] 1091.501812 s: etharp_timer
    [MCU2_0] 1091.501885 s: dns_tmr: dns_check_entries
    [MCU2_0] 1092.501814 s: etharp_timer
    [MCU2_0] 1092.501895 s: dns_tmr: dns_check_entries
    [MCU2_0] 1093.501811 s: etharp_timer
    [MCU2_0] 1093.501891 s: dns_tmr: dns_check_entries
    [MCU2_0] 1094.501811 s: etharp_timer
    [MCU2_0] 1094.501891 s: dns_tmr: dns_check_entries
    [MCU2_0] 1094.501942 s: dhcp_fine_tmr(): request timeout
    [MCU2_0] 1094.501975 s: dhcp_timeout()
    [MCU2_0] 1094.502002 s: dhcp_timeout(): restarting discovery
    [MCU2_0] 1094.502031 s: dhcp_discover()
    [MCU2_0] 1094.502070 s: pbuf_alloc(length=308)
    [MCU2_0] 1094.502120 s: pbuf_alloc(length=308) == a35a5080
    [MCU2_0] 1094.502158 s: transaction id xid(11bf)
    [MCU2_0] 1094.502190 s: dhcp_discover: making request
    [MCU2_0] 1094.502226 s: dhcp_discover: sendto(DISCOVER, IP_ADDR_BROADCAST, LWIP_IANA_PORT_DHCP_SERVER)
    [MCU2_0] 1094.502297 s: pbuf_add_header: old a35a5180 new a35a5178 (8)
    [MCU2_0] 1094.502343 s: udp_send: added header in given pbuf a35a5080
    [MCU2_0] 1094.502389 s: udp_send: sending datagram of length 316
    [MCU2_0] 1094.502430 s: udp_send: UDP packet length 316
    [MCU2_0] 1094.502479 s: inet_chksum_pseudo(): checksumming pbuf a35a5080 (has next 0)
    [MCU2_0] 1094.502534 s: inet_chksum_pseudo(): pbuf chain lwip_chksum()=296f
    [MCU2_0] 1094.502576 s: udp_send: UDP checksum 0xd690
    [MCU2_0] 1094.502612 s: udp_send: ip_output_if (,,,,0x11,)
    [MCU2_0] 1094.502663 s: pbuf_add_header: old a35a5178 new a35a5164 (20)
    [MCU2_0] 1094.502871 s: ip4_output_if: br4
    [MCU2_0] 1094.502915 s: ip4_output_if: call netif->output()
    [MCU2_0] 1094.502978 s: pbuf_add_header: old a35a5164 new a35a5156 (14)
    [MCU2_0] 1094.503029 s: ethernet_output: sending packet a35a5080
    [MCU2_0] 1094.503084 s: br -> flood(a35a5080:0) -> 2
    [MCU2_0] 1094.503193 s: br -> flood(a35a5080:0) -> 3
    [MCU2_0] 1094.503272 s: br -> flood(a35a5080:0) -> 4
    [MCU2_0] 1094.503326 s: dhcp_discover: deleting()ing
    [MCU2_0] 1094.503363 s: pbuf_free(a35a5080)
    [MCU2_0] 1094.503408 s: pbuf_free: a35a5080 has ref 1, ending here.
    [MCU2_0] 1094.503440 s: dhcp_discover: SELECTING
    [MCU2_0] 1094.503479 s: dhcp_discover(): set request timeout 32000 msecs
    [MCU2_0] 1095.501817 s: etharp_timer
    [MCU2_0] 1095.501897 s: dns_tmr: dns_check_entries

    我再次对比了pinmux& rgmii mode,是一样的

  • 已更新e2e帖子,请关注帖子的回复,因为美国放假,回复可能会晚些。

  • ok,麻烦update一下,想问一下什么时候有回复呢

    我们在平台上测试了波形,txd0没有量到信号,rxd0量到信号

    日志显示接收到来自phy的数据(mac的rx),目标地址不是平台,应该是来自路由的信号

    对应的port3 phy正常工作,在dhcp时都有波形

  • 已把您的问题更新到e2e论坛,请关注帖子的回复。