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: Using TDA4's CPSW9G,RGMII connecting to PHY DP83TG720 link up but can't ping

Part Number: TDA4VM


Tool/software:

hi:

Using TDA4's CPSW9G,, port5-port8 with sgmii connect to phy and ping successfully,port3 with rgmii connecting to phy chip link up  but we can't ping

SDK-10.01

1. uboot

2. linux dts  k3-j721e-common-proc-board.dts

	rgmii3_default_pins: rgmii3-default-pins {
	pinctrl-single,pins = <
		J721E_IOPAD(0xb0, PIN_INPUT, 4) /* (AF28) PRG0_PRU0_GPO0.RGMII3_RD0 */
		J721E_IOPAD(0xb4, PIN_INPUT, 4) /* (AE28) PRG0_PRU0_GPO1.RGMII3_RD1 */
		J721E_IOPAD(0xb8, PIN_INPUT, 4) /* (AE27) PRG0_PRU0_GPO2.RGMII3_RD2 */
		J721E_IOPAD(0xbc, PIN_INPUT, 4) /* (AD26) PRG0_PRU0_GPO3.RGMII3_RD3 */
		J721E_IOPAD(0xc8, PIN_INPUT, 4) /* (AE26) PRG0_PRU0_GPO6.RGMII3_RXC */
		J721E_IOPAD(0xc0, PIN_INPUT, 4) /* (AD25) PRG0_PRU0_GPO4.RGMII3_RX_CTL */
		J721E_IOPAD(0xdc, PIN_OUTPUT, 4) /* (AJ28) PRG0_PRU0_GPO11.RGMII3_TD0 */
		J721E_IOPAD(0xe0, PIN_OUTPUT, 4) /* (AH27) PRG0_PRU0_GPO12.RGMII3_TD1 */
		J721E_IOPAD(0xe4, PIN_OUTPUT, 4) /* (AH29) PRG0_PRU0_GPO13.RGMII3_TD2 */
		J721E_IOPAD(0xe8, PIN_OUTPUT, 4) /* (AG28) PRG0_PRU0_GPO14.RGMII3_TD3 */
		J721E_IOPAD(0xf0, PIN_OUTPUT, 4) /* (AH28) PRG0_PRU0_GPO16.RGMII3_TXC */
		J721E_IOPAD(0xec, PIN_OUTPUT, 4) /* (AG27) PRG0_PRU0_GPO15.RGMII3_TX_CTL */
	>;
};



&cpsw0 {
	status = "okay";
	pinctrl-names = "default";
    pinctrl-0 = <&rgmii3_default_pins>;
};
&cpsw0_port1 {
	status = "disabled";
};

&cpsw0_port2 {
	status = "okay";
	phy-handle = <&cpsw9g_phy0>;
	phy-mode = "sgmii";
	mac-address = [00 00 00 00 00 00];
	phys = <&cpsw0_phy_gmii_sel 2>,<&serdes0_sgmii_link>;
	//phy-names = "portmode", "serdes-phy";
	phy-names = "portmode", "serdes";
};

&cpsw0_port3 {
	status = "okay";
	phy-handle = <&cpsw9g_phy13>;
	phy-mode = "rgmii-rxid";
	mac-address = [00 00 00 00 00 00];
	phys = <&cpsw0_phy_gmii_sel 3>;
};

&cpsw0_port4 {
	status = "disabled";
};

&cpsw0_port5 {
	status = "okay";
	phy-handle = <&cpsw9g_phy1>;
	phy-mode = "sgmii";
	mac-address = [00 00 00 00 00 00];
	phys = <&cpsw0_phy_gmii_sel 5>,<&serdes4_sgmii_link>;
    // phy-names = "portmode", "serdes-phy";
	phy-names = "portmode", "serdes";
	 
};

&cpsw0_port6 {
	status = "okay";
	phy-handle = <&cpsw9g_phy2>;
	phy-mode = "sgmii";
	mac-address = [00 00 00 00 00 00];
	phys = <&cpsw0_phy_gmii_sel 6>;
	//phy-names = "portmode", "serdes-phy";
	phy-names = "portmode", "serdes";
	
};

&cpsw0_port7 {
	status = "okay";
	phy-handle = <&cpsw9g_phy3>;
	phy-mode = "sgmii";
	mac-address = [00 00 00 00 00 00];
	phys = <&cpsw0_phy_gmii_sel 7>;
	//phy-names = "portmode", "serdes-phy";
	phy-names = "portmode", "serdes";
	
};

&cpsw0_port8 {
	status = "okay";
	phy-handle = <&cpsw9g_phy4>;
	phy-mode = "sgmii";
	mac-address = [00 00 00 00 00 00];
	phys = <&cpsw0_phy_gmii_sel 8>;
	//phy-names = "portmode", "serdes-phy";
	phy-names = "portmode", "serdes";
	
};

&cpsw9g_mdio {
	status = "okay";
	pinctrl-names = "default";
	pinctrl-0 = <&mdio0_pins_default>;
	//reset-gpios = <&exp2 17 GPIO_ACTIVE_LOW>;
	reset-post-delay-us = <120000>;
	//bus_freq = <1000000>;
	#address-cells = <1>;
	#size-cells = <0>;

	cpsw9g_phy0: ethernet-phy@4 {
		reg = <4>;
	};
	cpsw9g_phy1: ethernet-phy@5 {
		reg = <5>;
	};
	cpsw9g_phy2: ethernet-phy@8 {
		reg = <8>;
	};
	cpsw9g_phy3: ethernet-phy@10 {
		reg = <10>;
	};
	cpsw9g_phy4: ethernet-phy@12 {
	reg = <12>;
	};
	cpsw9g_phy13: ethernet-phy@13 {
    reg = <13>;
	ti,rx-internal-delay = <DP83867_RGMIIDCTL_2_00_NS>;
    ti,fifo-depth = <DP83867_PHYCR_FIFO_DEPTH_4_B_NIB>;
    };
};

3. remove j7-main-r5f0_0-fw   

4. remove uenv.txt  overlays

5. ethtool eth show link

root@j721e-evm:~# ethtool eth2
Settings for eth2:
        Supported ports: [ TP    MII ]
        Supported link modes:   1000baseT/Full
        Supported pause frame use: Symmetric
        Supports auto-negotiation: No
        Supported FEC modes: Not reported
        Advertised link modes:  Not reported
        Advertised pause frame use: Symmetric
        Advertised auto-negotiation: No
        Advertised FEC modes: Not reported
        Speed: 1000Mb/s
        Duplex: Full
        Auto-negotiation: off
        Port: Twisted Pair
        PHYAD: 13
        Transceiver: external
        MDI-X: Unknown
        Supports Wake-on: d
        Wake-on: d
        Current message level: 0x000020f7 (8439)
                               drv probe link ifdown ifup rx_err tx_err hw
        Link detected: yes
root@j721e-evm:~#
root@j721e-evm:~#

6. RGMII rgmii link ,but can not ping 

root@j721e-evm:/home/weston/scripts# ./j7_devmem2_cpsw9g_check_status.sh
    Platform: J7 TDA4VM
    Command:  k3conf
MDIO_ALIVE_REG (0x0c000f08) = 0x00000000
MDIO_LINK_REG (0x0c000f0c) = 0x00000000
please input your port: 1-8 3
CTRLMMR_ENET 3 CTRL (0x0010404c) = 0x00000002
        PORT_MODE_SEL          : 2h RGMII
        RGMII_ID_MODE          : 0h Internal Transmit Desaly
CPSW SS RGMII 3 STATUS (0x0c000038) = 0x0000000D
        FULLDUPLEX           : 1h Full duplex
        SPEED                : 1000Mbps
        LINK                 : 1h Link is up
CPSW_SS_STATUS_SGMII_LINK_REG (0x0c000078) = 0x00000000
        SGMII1_LINK          : 0h No
CPSW_SS_SGMII_CONTROL_REG_ 3 (0x0c000310) = 0x00000000
        TEST_PATTERN_EN      : 0h operation
        MASTER               : 0h Slave Mode
        LOOPBACK             : 0h Not in internal loopback mode
        MR_NP_LOADED         : 0h --------
        FAST_LINK_TIMER      : 0h link timer 10ms in FIBER mode and 1.6ms in SGMII mode
        MA_AN_RESTART        : 0h Write 1h and tehn 0h to this bit caused the auto negotiation
        MR_AN_ENABLE         : 0h wirte 1 to this bit enbales the auto negotiation progess
CPSW_SS_SGMII_STATUS_REG_ 3 (0x0c000314) = 0x00000028
        LOCK                  : 0h SEDES PLL isn't locked
        MR_AN_COMPLETE        : 0h no AUTO Negotiation is not complete
        AN_EEROR              : 0h no negotiation error
        LINK                  : 0h link is not up
root@j721e-evm:/home/weston/scripts#

  • Hi,

    Can you share the kernel logs seen. Is this custom board or EVM? What is the phy part used for port3 RGMII?

    Regards,
    Tanmay

  • 1. log:

    U-Boot SPL 2024.04-ti-dirty (Aug 22 2025 - 16:54:25 +0800)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.1.6--v10.01.06 (Fiery Fox)')
    EEPROM not available at 0x50, trying to read at 0x51
    Reading on-board EEPROM at 0x51 failed -1
    read error from device: 41c863bc register: x!
    Trying to boot from MMC2
    Warning: Detected image signing certificate on GP device. Skipping certificate to prevent boot failure. This will fail if the image was also encrypted
    Warning: Detected image signing certificate on GP device. Skipping certificate to prevent boot failure. This will fail if the image was also encrypted
    Warning: Detected image signing certificate on GP device. Skipping certificate to prevent boot failure. This will fail if the image was also encrypted
    Warning: Detected image signing certificate on GP device. Skipping certificate to prevent boot failure. This will fail if the image was also encrypted
    Warning: Detected image signing certificate on GP device. Skipping certificate to prevent boot failure. This will fail if the image was also encrypted
    read error from device: 41c863bc register: x!
    Loading Environment from nowhere... OK
    Starting ATF on ARM64 core...
    
    NOTICE:  BL31: v2.11.0(release):v2.11.0-906-g58b25570c9-dirty
    NOTICE:  BL31: Built : 04:20:32, Nov  1 2024
    I/TC:
    I/TC: OP-TEE version: 4.4.0-dev (gcc version 13.3.0 (GCC)) #1 Fri Oct 18 17:45:27 UTC 2024 aarch64
    I/TC: WARNING: This OP-TEE configuration might be insecure!
    I/TC: WARNING: Please check https://optee.readthedocs.io/en/latest/architecture/porting_guidelines.html
    I/TC: Primary CPU initializing
    I/TC: GIC redistributor base address not provided
    I/TC: Assuming default GIC group status and modifier
    I/TC: SYSFW ABI: 4.0 (firmware rev 0x000a '10.1.6--v10.01.06 (Fiery Fox)')
    I/TC: Activated SA2UL device
    I/TC: Fixing SA2UL firewall owner for GP device
    I/TC: Enabled firewalls for SA2UL TRNG device
    I/TC: SA2UL TRNG initialized
    I/TC: SA2UL Drivers initialized
    I/TC: HUK Initialized
    I/TC: Primary CPU switching to normal world boot
    
    U-Boot SPL 2024.04-ti-dirty (Aug 22 2025 - 16:54:09 +0800)
    SYSFW ABI: 4.0 (firmware rev 0x000a '10.1.6--v10.01.06 (Fiery Fox)')
    EEPROM not available at 0x50, trying to read at 0x51
    Reading on-board EEPROM at 0x51 failed -1
    Trying to boot from MMC2
    Warning: Detected image signing certificate on GP device. Skipping certificate to prevent boot failure. This will fail if the image was also encrypted
    Warning: Detected image signing certificate on GP device. Skipping certificate to prevent boot failure. This will fail if the image was also encrypted
    
    
    U-Boot 2024.04-ti-dirty (Aug 22 2025 - 16:54:09 +0800)
    
    SoC:   J721E SR1.1 GP
    Model: Texas Instruments J721e EVM
    EEPROM not available at 0x50, trying to read at 0x51
    Reading on-board EEPROM at 0x51 failed -1
    Board: J721EX-PM1-SOM rev E2
    DRAM:  2 GiB (effective 4 GiB)
    Core:  126 devices, 34 uclasses, devicetree: separate
    Flash: 0 Bytes
    MMC:   mmc@4f80000: 0, mmc@4fb0000: 1
    Loading Environment from nowhere... OK
    In:    serial@2800000
    Out:   serial@2800000
    Err:   serial@2800000
    am65_cpsw_nuss ethernet@46000000: K3 CPSW: nuss_ver: 0x6BA00101 cpsw_ver: 0x6BA80100 ale_ver: 0x00293904 Ports:1
    EEPROM not available at 0x50, trying to read at 0x51
    Reading on-board EEPROM at 0x51 failed -1
    Net:   eth0: ethernet@46000000port@1
    Hit any key to stop autoboot:  0
    failed to set vqmmc-voltage to 1.8V
    failed to set vqmmc-voltage to 1.8V
    failed to set vqmmc-voltage to 1.8V
    failed to set vqmmc-voltage to 1.8V
    switch to partitions #0, OK
    mmc1 is current device
    failed to set vqmmc-voltage to 1.8V
    failed to set vqmmc-voltage to 1.8V
    failed to set vqmmc-voltage to 1.8V
    failed to set vqmmc-voltage to 1.8V
    failed to set vqmmc-voltage to 1.8V
    SD/MMC found on device 1
    1294 bytes read in 64 ms (19.5 KiB/s)
    Loaded env from uEnv.txt
    Importing environment from mmc1 ...
    Running uenvcmd ...
    1 bytes read in 64 ms (0 Bytes/s)
    Already setup.
    i2c_write: error waiting for data ACK (status=0x116)
    pca953x gpio@20: Error reading output register
    i2c_write: error waiting for data ACK (status=0x116)
    pca953x gpio@22: Error reading output register
    i2c_write: error waiting for data ACK (status=0x116)
    pca953x gpio@20: Error reading output register
    GPIO: 'gpio@22_17' not found
    Command 'gpio' failed: Error -22
    i2c_write: error waiting for data ACK (status=0x116)
    pca953x gpio@20: Error reading output register
    i2c_write: error waiting for data ACK (status=0x116)
    pca953x gpio@22: Error reading output register
    i2c_write: error waiting for data ACK (status=0x116)
    pca953x gpio@20: Error reading output register
    GPIO: 'gpio@22_16' not found
    Command 'gpio' failed: Error -22
    k3_r5f_rproc r5f@41000000: Core 1 is already in use. No rproc commands work
    k3_r5f_rproc r5f@41400000: Core 2 is already in use. No rproc commands work
    89944 bytes read in 129 ms (680.7 KiB/s)
    Load Remote Processor 2 with data@addr=0x82000000 89944 bytes: Success!
    326868 bytes read in 132 ms (2.4 MiB/s)
    Load Remote Processor 3 with data@addr=0x82000000 326868 bytes: Success!
    Failed to load '/lib/firmware/j7-main-r5f1_0-fw'
    Failed to load '/lib/firmware/j7-main-r5f1_1-fw'
    1014608 bytes read in 145 ms (6.7 MiB/s)
    Load Remote Processor 6 with data@addr=0x82000000 1014608 bytes: Success!
    1014608 bytes read in 147 ms (6.6 MiB/s)
    Load Remote Processor 7 with data@addr=0x82000000 1014608 bytes: Success!
    12574864 bytes read in 384 ms (31.2 MiB/s)
    Load Remote Processor 8 with data@addr=0x82000000 12574864 bytes: Success!
    21031424 bytes read in 498 ms (40.3 MiB/s)
    125686 bytes read in 68 ms (1.8 MiB/s)
    Working FDT set to 88000000
    ## Flattened Device Tree blob at 88000000
       Booting using the fdt blob at 0x88000000
    Working FDT set to 88000000
       Loading Device Tree to 000000008fede000, end 000000008fffffff ... OK
    Working FDT set to 8fede000
    
    Starting kernel ...
    
    failed to set vqmmc-voltage to 1.8V
    failed to set vqmmc-voltage to 1.8V
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x411fd080]
    [    0.000000] Linux version 6.6.44-ti-g541c20281af7-dirty (ray@ray) (aarch64-oe-linux-gcc (GCC) 13.3.0, GNU ld (GNU Binutils) 2.42.0.20240723) #7 SMP PREEMPT Fri Aug 22 17:27:35 CST 2025
    [    0.000000] KASLR disabled due to lack of seed
    [    0.000000] Machine model: Texas Instruments J721e EVM
    [    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
    [    0.000000] printk: bootconsole [ns16550a0] enabled
    [    0.000000] efi: UEFI not found.
    [    0.000000] Reserved memory: created CMA memory pool at 0x00000008e0000000, size 512 MiB
    [    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x00000008e0000000..0x00000008ffffffff (524288 KiB) map reusable linux,cma
    [    0.000000] OF: reserved mem: 0x000000009e800000..0x000000009fffffff (24576 KiB) nomap non-reusable optee@9e800000
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a0000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@a0000000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x00000000a0000000..0x00000000a00fffff (1024 KiB) nomap non-reusable r5f-dma-memory@a0000000
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a0100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@a0100000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x00000000a0100000..0x00000000a0ffffff (15360 KiB) nomap non-reusable r5f-memory@a0100000
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a1000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@a1000000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x00000000a1000000..0x00000000a10fffff (1024 KiB) nomap non-reusable r5f-dma-memory@a1000000
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a1100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@a1100000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x00000000a1100000..0x00000000a1ffffff (15360 KiB) nomap non-reusable r5f-memory@a1100000
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a2000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@a2000000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x00000000a2000000..0x00000000a20fffff (1024 KiB) nomap non-reusable r5f-dma-memory@a2000000
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a2100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@a2100000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x00000000a2100000..0x00000000a2ffffff (15360 KiB) nomap non-reusable r5f-memory@a2100000
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a3000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@a3000000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x00000000a3000000..0x00000000a30fffff (1024 KiB) nomap non-reusable r5f-dma-memory@a3000000
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a3100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@a3100000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x00000000a3100000..0x00000000a3ffffff (15360 KiB) nomap non-reusable r5f-memory@a3100000
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a4000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@a4000000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x00000000a4000000..0x00000000a40fffff (1024 KiB) nomap non-reusable r5f-dma-memory@a4000000
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a4100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@a4100000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x00000000a4100000..0x00000000a4ffffff (15360 KiB) nomap non-reusable r5f-memory@a4100000
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a5000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@a5000000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x00000000a5000000..0x00000000a50fffff (1024 KiB) nomap non-reusable r5f-dma-memory@a5000000
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a5100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@a5100000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x00000000a5100000..0x00000000a5ffffff (15360 KiB) nomap non-reusable r5f-memory@a5100000
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a6000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node c66-dma-memory@a6000000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x00000000a6000000..0x00000000a60fffff (1024 KiB) nomap non-reusable c66-dma-memory@a6000000
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a6100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node c66-memory@a6100000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x00000000a6100000..0x00000000a6ffffff (15360 KiB) nomap non-reusable c66-memory@a6100000
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a7000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node c66-dma-memory@a7000000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x00000000a7000000..0x00000000a70fffff (1024 KiB) nomap non-reusable c66-dma-memory@a7000000
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a7100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node c66-memory@a7100000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x00000000a7100000..0x00000000a7ffffff (15360 KiB) nomap non-reusable c66-memory@a7100000
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a8000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node c71-dma-memory@a8000000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x00000000a8000000..0x00000000a80fffff (1024 KiB) nomap non-reusable c71-dma-memory@a8000000
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a8100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node c71-memory@a8100000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: 0x00000000a8100000..0x00000000a8ffffff (15360 KiB) nomap non-reusable c71-memory@a8100000
    [    0.000000] OF: reserved mem: 0x00000000aa000000..0x00000000abbfffff (28672 KiB) nomap non-reusable ipc-memories@aa000000
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x00000000ffffffff]
    [    0.000000]   DMA32    empty
    [    0.000000]   Normal   [mem 0x0000000100000000-0x00000008ffffffff]
    [    0.000000] Movable zone start for each node
    [    0.000000] Early memory node ranges
    [    0.000000]   node   0: [mem 0x0000000080000000-0x000000009e7fffff]
    [    0.000000]   node   0: [mem 0x000000009e800000-0x00000000a8ffffff]
    [    0.000000]   node   0: [mem 0x00000000a9000000-0x00000000a9ffffff]
    [    0.000000]   node   0: [mem 0x00000000aa000000-0x00000000abbfffff]
    [    0.000000]   node   0: [mem 0x00000000abc00000-0x00000000ffffffff]
    [    0.000000]   node   0: [mem 0x0000000880000000-0x00000008ffffffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000008ffffffff]
    [    0.000000] psci: probing for conduit method from DT.
    [    0.000000] psci: PSCIv1.1 detected in firmware.
    [    0.000000] psci: Using standard PSCI v0.2 function IDs
    [    0.000000] psci: Trusted OS migration not required
    [    0.000000] psci: SMC Calling Convention v1.5
    [    0.000000] percpu: Embedded 20 pages/cpu s43176 r8192 d30552 u81920
    [    0.000000] Detected PIPT I-cache on CPU0
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] CPU features: detected: Spectre-v3a
    [    0.000000] CPU features: detected: Spectre-BHB
    [    0.000000] CPU features: detected: ARM erratum 1742098
    [    0.000000] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
    [    0.000000] alternatives: applying boot alternatives
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=PARTUUID=7b31cf16-02 rw rootfstype=ext4 rootwait
    [    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 1032192
    [    0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
    [    0.000000] software IO TLB: area num 2.
    [    0.000000] software IO TLB: mapped [mem 0x00000000fbfff000-0x00000000fffff000] (64MB)
    [    0.000000] Memory: 3301548K/4194304K available (12480K kernel code, 1274K rwdata, 4184K rodata, 2496K init, 526K bss, 368468K reserved, 524288K cma-reserved)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    [    0.000000] rcu: Preemptible hierarchical RCU implementation.
    [    0.000000] rcu:     RCU event tracing is enabled.
    [    0.000000] rcu:     RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=2.
    [    0.000000]  Trampoline variant of Tasks RCU enabled.
    [    0.000000]  Tracing variant of Tasks RCU enabled.
    [    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
    [    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 960 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] Root IRQ handler: gic_handle_irq
    [    0.000000] GICv3: GICv3 features: 16 PPIs
    [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001900000
    [    0.000000] ITS [mem 0x01820000-0x0182ffff]
    [    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
    [    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
    [    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @880800000 (flat, esz 8, psz 64K, shr 0)
    [    0.000000] ITS: using cache flushing for cmd queue
    [    0.000000] GICv3: using LPI property table @0x0000000880040000
    [    0.000000] GIC: using cache flushing for LPI property table
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000880050000
    [    0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention.
    [    0.000000] arch_timer: cp15 timer(s) running at 200.00MHz (phys).
    [    0.000000] clocksource: arch_sys_counter: mask: 0x3ffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns
    [    0.000000] sched_clock: 58 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns
    [    0.008444] Console: colour dummy device 80x25
    [    0.013020] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.023690] pid_max: default: 32768 minimum: 301
    [    0.028456] LSM: initializing lsm=capability,selinux,integrity
    [    0.034429] SELinux:  Initializing.
    [    0.038080] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
    [    0.045656] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
    [    0.054747] RCU Tasks: Setting shift to 1 and lim to 1 rcu_task_cb_adjust=1.
    [    0.062025] RCU Tasks Trace: Setting shift to 1 and lim to 1 rcu_task_cb_adjust=1.
    [    0.069895] rcu: Hierarchical SRCU implementation.
    [    0.074793] rcu:     Max phase no-delay instances is 1000.
    [    0.080374] Platform MSI: msi-controller@1820000 domain created
    [    0.086707] PCI/MSI: /bus@100000/interrupt-controller@1800000/msi-controller@1820000 domain created
    [    0.096143] EFI services will not be available.
    [    0.100929] smp: Bringing up secondary CPUs ...
    I/TC: Secondary CPU 1 initializing
    I/TC: Secondary CPU 1 switching to normal world boot
    [    0.114227] Detected PIPT I-cache on CPU1
    [    0.114283] GICv3: CPU1: found redistributor 1 region 0:0x0000000001920000
    [    0.114296] GICv3: CPU1: using allocated LPI pending table @0x0000000880060000
    [    0.114343] CPU1: Booted secondary processor 0x0000000001 [0x411fd080]
    [    0.114424] smp: Brought up 1 node, 2 CPUs
    [    0.143771] SMP: Total of 2 processors activated.
    [    0.148575] CPU features: detected: 32-bit EL0 Support
    [    0.153829] CPU features: detected: CRC32 instructions
    [    0.159113] CPU: All CPU(s) started at EL2
    [    0.163295] alternatives: applying system-wide alternatives
    [    0.170092] devtmpfs: initialized
    [    0.181750] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.191736] futex hash table entries: 512 (order: 3, 32768 bytes, linear)
    [    0.208117] pinctrl core: initialized pinctrl subsystem
    [    0.213847] DMI not present or invalid.
    [    0.218139] NET: Registered PF_NETLINK/PF_ROUTE protocol family
    [    0.224761] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations
    [    0.232070] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.240071] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.248199] audit: initializing netlink subsys (disabled)
    [    0.253841] audit: type=2000 audit(0.164:1): state=initialized audit_enabled=0 res=1
    [    0.254078] thermal_sys: Registered thermal governor 'step_wise'
    [    0.261762] thermal_sys: Registered thermal governor 'power_allocator'
    [    0.267992] cpuidle: using governor menu
    [    0.278764] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.285727] ASID allocator initialised with 65536 entries
    [    0.302803] platform a40000.pinctrl: Fixed dependency cycle(s) with /bus@100000/pinctrl@a40000/mcu-cpsw-cpts
    [    0.314509] Modules: 27488 pages in range for non-PLT usage
    [    0.314515] Modules: 519008 pages in range for PLT usage
    [    0.320761] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.333129] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
    [    0.339531] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.346464] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
    [    0.352865] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.359799] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
    [    0.366199] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.373135] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
    [    0.380400] k3-chipinfo 43000014.chipid: Family:J721E rev:SR1.1 JTAGID[0x1bb6402f] Detected
    [    0.389489] iommu: Default domain type: Translated
    [    0.394405] iommu: DMA domain TLB invalidation policy: strict mode
    [    0.400885] SCSI subsystem initialized
    [    0.404906] usbcore: registered new interface driver usbfs
    [    0.410531] usbcore: registered new interface driver hub
    [    0.415979] usbcore: registered new device driver usb
    [    0.421455] pps_core: LinuxPPS API ver. 1 registered
    [    0.426528] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    [    0.435865] PTP clock support registered
    [    0.439996] EDAC MC: Ver: 3.0.0
    [    0.443470] scmi_core: SCMI protocol bus registered
    [    0.448615] FPGA manager framework
    [    0.452133] Advanced Linux Sound Architecture Driver Initialized.
    [    0.458855] vgaarb: loaded
    [    0.461828] clocksource: Switched to clocksource arch_sys_counter
    [    0.468210] VFS: Disk quotas dquot_6.6.0
    [    0.472242] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.482802] NET: Registered PF_INET protocol family
    [    0.488003] IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear)
    [    0.497202] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
    [    0.505969] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
    [    0.513890] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
    [    0.522104] TCP bind hash table entries: 32768 (order: 8, 1048576 bytes, linear)
    [    0.531019] TCP: Hash tables configured (established 32768 bind 32768)
    [    0.537860] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
    [    0.544769] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
    [    0.552260] NET: Registered PF_UNIX/PF_LOCAL protocol family
    [    0.558484] RPC: Registered named UNIX socket transport module.
    [    0.564543] RPC: Registered udp transport module.
    [    0.569346] RPC: Registered tcp transport module.
    [    0.574149] RPC: Registered tcp-with-tls transport module.
    [    0.579751] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.586333] NET: Registered PF_XDP protocol family
    [    0.591241] PCI: CLS 0 bytes, default 64
    [    0.596019] Initialise system trusted keyrings
    [    0.600692] workingset: timestamp_bits=46 max_order=20 bucket_order=0
    [    0.607488] squashfs: version 4.0 (2009/01/31) Phillip Lougher
    [    0.613601] NFS: Registering the id_resolver key type
    [    0.618791] Key type id_resolver registered
    [    0.623065] Key type id_legacy registered
    [    0.627167] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.634015] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.655453] Key type asymmetric registered
    [    0.659646] Asymmetric key parser 'x509' registered
    [    0.664658] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
    [    0.672326] io scheduler mq-deadline registered
    [    0.676958] io scheduler kyber registered
    [    0.681072] io scheduler bfq registered
    [    0.687445] pinctrl-single 4301c000.pinctrl: 94 pins, size 376
    [    0.693931] pinctrl-single 11c000.pinctrl: 173 pins, size 692
    [    0.700259] pinctrl-single 104200.pinctrl: 20 pins, size 80
    [    0.706025] pinctrl-single 104280.pinctrl: 8 pins, size 32
    [    0.712030] pinctrl-single a40000.pinctrl: 512 pins, size 2048
    [    0.721982] Serial: 8250/16550 driver, 12 ports, IRQ sharing enabled
    [    0.731284] arm-smmu-v3 36600000.iommu: ias 48-bit, oas 48-bit (features 0x00001faf)
    [    0.739613] arm-smmu-v3 36600000.iommu: allocated 65536 entries for cmdq
    [    0.746835] arm-smmu-v3 36600000.iommu: allocated 32768 entries for evtq
    [    0.755077] arm-smmu-v3 36600000.iommu: msi_domain absent - falling back to wired irqs
    [    0.766883] loop: module loaded
    [    0.770778] megasas: 07.725.01.00-rc1
    [    0.776565] tun: Universal TUN/TAP device driver, 1.6
    [    0.782416] VFIO - User Level meta-driver version: 0.3
    [    0.788361] usbcore: registered new interface driver usb-storage
    [    0.794906] i2c_dev: i2c /dev entries driver
    [    0.799965] sdhci: Secure Digital Host Controller Interface driver
    [    0.806285] sdhci: Copyright(c) Pierre Ossman
    [    0.810859] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.816994] ledtrig-cpu: registered to indicate activity on CPUs
    [    0.823303] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.830303] usbcore: registered new interface driver usbhid
    [    0.836003] usbhid: USB HID core driver
    [    0.840694] hw perfevents: enabled with armv8_cortex_a72 PMU driver, 7 counters available
    [    0.849348] optee: probing for conduit method.
    I/TC: Reserved shared memory is enabled
    I/TC: Dynamic shared memory is enabled
    I/TC: Normal World virtualization support is disabled
    I/TC: Asynchronous notifications are disabled
    [    0.853904] optee: revision 4.4 (8f645256efc0dc66)
    [    0.870366] optee: dynamic shared memory is enabled
    [    0.880703] random: crng init done
    [    0.884243] optee: initialized driver
    [    0.889629] Initializing XFRM netlink socket
    [    0.894033] NET: Registered PF_PACKET protocol family
    [    0.899239] Key type dns_resolver registered
    [    0.907429] registered taskstats version 1
    [    0.911708] Loading compiled-in X.509 certificates
    [    0.925487] ti-sci 44083000.system-controller: ABI: 4.0 (firmware rev 0x000a '10.1.6--v10.01.06 (Fiery Fox)')
    [    1.070737] omap_i2c 42120000.i2c: bus 0 rev0.12 at 400 kHz
    [    1.077131] pca953x 1-0020: supply vcc not found, using dummy regulator
    [    1.083978] pca953x 1-0020: using no AI
    [    1.109872] pca953x 1-0020: failed writing register
    [    1.114915] pca953x: probe of 1-0020 failed with error -121
    [    1.120782] pca953x 1-0022: supply vcc not found, using dummy regulator
    [    1.127597] pca953x 1-0022: using AI
    [    1.131303] pca953x 1-0022: failed writing register
    [    1.136339] pca953x: probe of 1-0022 failed with error -121
    [    1.142078] omap_i2c 2000000.i2c: bus 1 rev0.12 at 400 kHz
    [    1.148347] omap_i2c 2010000.i2c: bus 2 rev0.12 at 400 kHz
    [    1.154538] pca953x 3-0020: supply vcc not found, using dummy regulator
    [    1.161375] pca953x 3-0020: using no AI
    [    2.169828] omap_i2c 2030000.i2c: timeout waiting for bus ready
    [    2.175887] pca953x 3-0020: failed writing register
    [    2.180933] pca953x: probe of 3-0020 failed with error -16
    [    2.186795] omap_i2c 2030000.i2c: bus 3 rev0.12 at 400 kHz
    [    2.193136] pca953x 4-0020: supply vcc not found, using dummy regulator
    [    2.199970] pca953x 4-0020: using no AI
    [    3.209830] omap_i2c 2060000.i2c: timeout waiting for bus ready
    [    3.215893] pca953x 4-0020: failed writing register
    [    3.220945] pca953x: probe of 4-0020 failed with error -16
    [    3.226609] omap_i2c 2060000.i2c: bus 4 rev0.12 at 400 kHz
    [    3.232382] ti-sci-intr 42200000.interrupt-controller: Interrupt Router 137 domain created
    [    3.240935] ti-sci-intr bus@100000:interrupt-controller@a00000: Interrupt Router 131 domain created
    [    3.250299] ti-sci-intr 310e0000.interrupt-controller: Interrupt Router 213 domain created
    [    3.258939] ti-sci-inta 33d00000.interrupt-controller: Interrupt Aggregator domain 209 created
    [    3.273153] k3-ringacc 2b800000.ringacc: Ring Accelerator probed rings:286, gp-rings[96,20] sci-dev-id:235
    [    3.283046] k3-ringacc 2b800000.ringacc: dma-ring-reset-quirk: disabled
    [    3.289812] k3-ringacc 2b800000.ringacc: RA Proxy rev. 66346100, num_proxies:64
    [    3.299760] k3-ringacc 3c000000.ringacc: Ring Accelerator probed rings:1024, gp-rings[440,150] sci-dev-id:211
    [    3.309930] k3-ringacc 3c000000.ringacc: dma-ring-reset-quirk: disabled
    [    3.316688] k3-ringacc 3c000000.ringacc: RA Proxy rev. 66346100, num_proxies:64
    [    3.324956] 40a00000.serial: ttyS1 at MMIO 0x40a00000 (irq = 206, base_baud = 6000000) is a 8250
    [    3.334639] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 207, base_baud = 3000000) is a 8250
    [    3.343504] printk: console [ttyS2] enabled
    [    3.343504] printk: console [ttyS2] enabled
    [    3.351991] printk: bootconsole [ns16550a0] disabled
    [    3.351991] printk: bootconsole [ns16550a0] disabled
    [    3.362871] 2810000.serial: ttyS3 at MMIO 0x2810000 (irq = 208, base_baud = 3000000) is a 8250
    [    3.372194] 2820000.serial: ttyS4 at MMIO 0x2820000 (irq = 209, base_baud = 3000000) is a 8250
    [    3.381454] 2840000.serial: ttyS6 at MMIO 0x2840000 (irq = 210, base_baud = 3000000) is a 8250
    [    3.391634] davinci_mdio 46000f00.mdio: Configuring MDIO in manual mode
    [    3.437827] davinci_mdio 46000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
    [    3.446179] davinci_mdio 46000f00.mdio: phy[0]: device 46000f00.mdio:00, driver unknown
    [    3.454202] am65-cpsw-nuss 46000000.ethernet: initializing am65 cpsw nuss version 0x6BA00101, cpsw version 0x6BA80100 Ports: 2 quirks:00000000
    [    3.467022] am65-cpsw-nuss 46000000.ethernet: initialized cpsw ale version 1.4
    [    3.474228] am65-cpsw-nuss 46000000.ethernet: ALE Table size 64
    [    3.480529] pps pps0: new PPS source ptp0
    [    3.484692] am65-cpsw-nuss 46000000.ethernet: CPTS ver 0x4e8a010a, freq:500000000, add_val:1 pps:1
    [    3.495374] davinci_mdio c000f00.mdio: Configuring MDIO in manual mode
    [    3.541828] davinci_mdio c000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
    [    4.881199] davinci_mdio c000f00.mdio: phy[4]: device c000f00.mdio:04, driver TI DP83TG720CS1.1
    [    4.889892] davinci_mdio c000f00.mdio: phy[5]: device c000f00.mdio:05, driver TI DP83TG720CS1.1
    [    4.898571] davinci_mdio c000f00.mdio: phy[8]: device c000f00.mdio:08, driver TI DP83TG720CS1.1
    [    4.907249] davinci_mdio c000f00.mdio: phy[10]: device c000f00.mdio:0a, driver TI DP83TG720CS1.1
    [    4.916014] davinci_mdio c000f00.mdio: phy[12]: device c000f00.mdio:0c, driver TI DP83TG720CS1.1
    [    4.924781] davinci_mdio c000f00.mdio: phy[13]: device c000f00.mdio:0d, driver TI DP83TG720CS1.1
    [    4.933570] am65-cpsw-nuss c000000.ethernet: initializing am65 cpsw nuss version 0x6BA01901, cpsw version 0x6BA80101 Ports: 9 quirks:00000000
    [    4.948057] am65-cpts 310d0000.cpts: CPTS ver 0x4e8a010a, freq:200000000, add_val:4 pps:0
    [    4.957153] mmc0: CQHCI version 5.10
    [    4.989873] tps6594 0-0048: error -EREMOTEIO: Failed to set PMIC state
    [    4.996438] tps6594: probe of 0-0048 failed with error -121
    [    5.002154] mmc0: SDHCI controller on 4f80000.mmc [4f80000.mmc] using ADMA 64-bit
    [    5.009641] tps6594 0-004c: error -EREMOTEIO: Failed to set PMIC state
    [    5.016178] tps6594: probe of 0-004c failed with error -121
    [    5.021952] pca953x 2-0020: supply vcc not found, using dummy regulator
    [    5.028622] pca953x 2-0020: using no AI
    [    5.053872] pca953x 2-0020: failed writing register
    [    5.058786] pca953x: probe of 2-0020 failed with error -121
    [    5.070606] ti-udma 285c0000.dma-controller: Channels: 26 (tchan: 13, rchan: 13, gp-rflow: 8)
    [    5.082262] ti-udma 31150000.dma-controller: Channels: 122 (tchan: 61, rchan: 61, gp-rflow: 16)
    [    5.097642] spi-nor: probe of spi0.0 failed with error -22
    [    5.103644] davinci_mdio 46000f00.mdio: Configuring MDIO in manual mode
    [    5.149828] davinci_mdio 46000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
    [    5.158182] davinci_mdio 46000f00.mdio: phy[0]: device 46000f00.mdio:00, driver unknown
    [    5.166223] am65-cpsw-nuss 46000000.ethernet: initializing am65 cpsw nuss version 0x6BA00101, cpsw version 0x6BA80100 Ports: 2 quirks:00000000
    [    5.166287] mmc0: Command Queue Engine enabled
    [    5.179052] am65-cpsw-nuss 46000000.ethernet: initialized cpsw ale version 1.4
    [    5.183426] mmc0: new HS200 MMC card at address 0001
    [    5.190620] am65-cpsw-nuss 46000000.ethernet: ALE Table size 64
    [    5.201716] pps pps0: new PPS source ptp1
    [    5.201939] mmcblk0: mmc0:0001 A8A58B 29.1 GiB
    [    5.205936] am65-cpsw-nuss 46000000.ethernet: CPTS ver 0x4e8a010a, freq:500000000, add_val:1 pps:1
    [    5.217075] mmcblk0boot0: mmc0:0001 A8A58B 31.9 MiB
    [    5.224941] mmcblk0boot1: mmc0:0001 A8A58B 31.9 MiB
    [    5.230658] mmcblk0rpmb: mmc0:0001 A8A58B 4.00 MiB, chardev (239:0)
    [    5.244282] am65-cpsw-nuss 46000000.ethernet: set new flow-id-base 48
    [    5.255844] davinci_mdio c000f00.mdio: Configuring MDIO in manual mode
    [    5.301827] davinci_mdio c000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
    [    6.640981] davinci_mdio c000f00.mdio: phy[4]: device c000f00.mdio:04, driver TI DP83TG720CS1.1
    [    6.649672] davinci_mdio c000f00.mdio: phy[5]: device c000f00.mdio:05, driver TI DP83TG720CS1.1
    [    6.658353] davinci_mdio c000f00.mdio: phy[8]: device c000f00.mdio:08, driver TI DP83TG720CS1.1
    [    6.667032] davinci_mdio c000f00.mdio: phy[10]: device c000f00.mdio:0a, driver TI DP83TG720CS1.1
    [    6.675798] davinci_mdio c000f00.mdio: phy[12]: device c000f00.mdio:0c, driver TI DP83TG720CS1.1
    [    6.684564] davinci_mdio c000f00.mdio: phy[13]: device c000f00.mdio:0d, driver TI DP83TG720CS1.1
    [    6.693354] am65-cpsw-nuss c000000.ethernet: initializing am65 cpsw nuss version 0x6BA01901, cpsw version 0x6BA80101 Ports: 9 quirks:00000000
    [    6.707232] am65-cpsw-nuss c000000.ethernet: Use random MAC address
    [    6.713555] am65-cpsw-nuss c000000.ethernet: Use random MAC address
    [    6.720990] am65-cpsw-nuss c000000.ethernet: Use random MAC address
    [    6.727310] am65-cpsw-nuss c000000.ethernet: Use random MAC address
    [    6.733624] am65-cpsw-nuss c000000.ethernet: Use random MAC address
    [    6.739934] am65-cpsw-nuss c000000.ethernet: Use random MAC address
    [    6.746192] am65-cpsw-nuss c000000.ethernet: initialized cpsw ale version 1.4
    [    6.753311] am65-cpsw-nuss c000000.ethernet: ALE Table size 512
    [    6.759741] am65-cpsw-nuss c000000.ethernet: CPTS ver 0x4e8a010a, freq:200000000, add_val:4 pps:0
    [    6.777988] am65-cpsw-nuss c000000.ethernet: set new flow-id-base 140
    [    6.791563] mmc1: CQHCI version 5.10
    [    6.799706] input: gpio-keys as /devices/platform/gpio-keys/input/input0
    [    6.806909] clk: Disabling unused clocks
    [    6.830374] mmc1: SDHCI controller on 4fb0000.mmc [4fb0000.mmc] using ADMA 64-bit
    [    6.846291] ALSA device list:
    [    6.849250]   No soundcards found.
    [    6.852873] Waiting for root device PARTUUID=7b31cf16-02...
    [    6.870858] mmc1: new high speed SDHC card at address 5048
    [    6.876875] mmcblk1: mmc1:5048 SD16G 14.4 GiB
    [    6.883163]  mmcblk1: p1 p2
    [    7.372730] EXT4-fs (mmcblk1p2): recovery complete
    [    7.378897] EXT4-fs (mmcblk1p2): mounted filesystem 3399312a-59ce-47de-a300-a7f4c840d4c7 r/w with ordered data mode. Quota mode: none.
    [    7.391011] VFS: Mounted root (ext4 filesystem) on device 179:98.
    [    7.398504] devtmpfs: mounted
    [    7.403033] Freeing unused kernel memory: 2496K
    [    7.407674] Run /sbin/init as init process
    [    7.946332] systemd[1]: System time before build time, advancing clock.
    [    8.034239] NET: Registered PF_INET6 protocol family
    [    8.040068] Segment Routing with IPv6
    [    8.043758] In-situ OAM (IOAM) with IPv6
    [    8.099729] systemd[1]: systemd 255.13^ running in system mode (+PAM -AUDIT -SELINUX -APPARMOR +IMA -SMACK +SECCOMP -GCRYPT -GNUTLS -OPENSSL +ACL +BLKID -CURL -ELFUTILS -FIDO2 -IDN2 -IDN -IPTC +KMOD -LIBCRYPTSETUP +LIBFDISK -PCRE2 -PWQUALITY -P11KIT -QRENCODE -TPM2 -BZIP2 -LZ4 -XZ -ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
    [    8.131596] systemd[1]: Detected architecture arm64.
    
    Welcome to Arago 2023.10!
    
    [    8.154861] systemd[1]: Hostname set to <j721e-evm>.
    [    8.413436] systemd[1]: /usr/lib/systemd/system/bt-enable.service:9: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether.
    [    8.480553] systemd[1]: /etc/systemd/system/sync-clocks.service:11: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether.
    [    8.538879] systemd[1]: Queued start job for default target Graphical Interface.
    [    8.581300] systemd[1]: Created slice Slice /system/getty.
    [  OK  ] Created slice Slice /system/getty.
    [    8.603347] systemd[1]: Created slice Slice /system/modprobe.
    [  OK  ] Created slice Slice /system/modprobe.
    [    8.627192] systemd[1]: Created slice Slice /system/serial-getty.
    [  OK  ] Created slice Slice /system/serial-getty.
    [    8.650927] systemd[1]: Created slice User and Session Slice.
    [  OK  ] Created slice User and Session Slice.
    [    8.674115] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [  OK  ] Started Dispatch Password Requests to Console Directory Watch.
    [    8.698010] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [  OK  ] Started Forward Password Requests to Wall Directory Watch.
    [    8.721923] systemd[1]: Expecting device /dev/ttyS2...
             Expecting device /dev/ttyS2...
    [    8.741955] systemd[1]: Reached target Path Units.
    [  OK  ] Reached target Path Units.
    [    8.761895] systemd[1]: Reached target Remote File Systems.
    [  OK  ] Reached target Remote File Systems.
    [    8.781878] systemd[1]: Reached target Slice Units.
    [  OK  ] Reached target Slice Units.
    [    8.801884] systemd[1]: Reached target Swaps.
    [  OK  ] Reached target Swaps.
    [    8.853896] systemd[1]: Listening on RPCbind Server Activation Socket.
    [  OK  ] Listening on RPCbind Server Activation Socket.
    [    8.882016] systemd[1]: Reached target RPC Port Mapper.
    [  OK  ] Reached target RPC Port Mapper.
    [    8.905907] systemd[1]: Listening on Process Core Dump Socket.
    [  OK  ] Listening on Process Core Dump Socket.
    [    8.926161] systemd[1]: Listening on initctl Compatibility Named Pipe.
    [  OK  ] Listening on initctl Compatibility Named Pipe.
    [    8.950617] systemd[1]: Listening on Journal Audit Socket.
    [  OK  ] Listening on Journal Audit Socket.
    [    8.974322] systemd[1]: Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket (/dev/log).
    [    8.998328] systemd[1]: Listening on Journal Socket.
    [  OK  ] Listening on Journal Socket.
    [    9.014397] systemd[1]: Listening on Network Service Netlink Socket.
    [  OK  ] Listening on Network Service Netlink Socket.
    [    9.039355] systemd[1]: Listening on udev Control Socket.
    [  OK  ] Listening on udev Control Socket.
    [    9.062232] systemd[1]: Listening on udev Kernel Socket.
    [  OK  ] Listening on udev Kernel Socket.
    [    9.082262] systemd[1]: Listening on User Database Manager Socket.
    [  OK  ] Listening on User Database Manager Socket.
    [    9.134094] systemd[1]: Mounting Huge Pages File System...
             Mounting Huge Pages File System...
    [    9.152509] systemd[1]: Mounting POSIX Message Queue File System...
             Mounting POSIX Message Queue File System...
    [    9.178370] systemd[1]: Mounting Kernel Debug File System...
             Mounting Kernel Debug File System...
    [    9.194303] systemd[1]: Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
    [    9.210952] systemd[1]: Mounting Temporary Directory /tmp...
             Mounting Temporary Directory /tmp...
    [    9.240332] systemd[1]: Starting Create List of Static Device Nodes...
             Starting Create List of Static Device Nodes...
    [    9.282637] systemd[1]: Starting Load Kernel Module configfs...
             Starting Load Kernel Module configfs...
    [    9.302618] systemd[1]: Starting Load Kernel Module drm...
             Starting Load Kernel Module drm...
    [    9.338347] systemd[1]: Starting Load Kernel Module fuse...
             Starting Load Kernel Module fuse...
    [    9.362437] fuse: init (API version 7.39)
    [    9.386428] systemd[1]: Starting Start psplash boot splash screen...
             Starting Start psplash boot splash screen...
    [    9.414467] systemd[1]: Starting RPC Bind...
             Starting RPC Bind...
    [    9.430313] systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
    [    9.447735] systemd[1]: Starting Journal Service...
             Starting Journal Service...
    [    9.486651] systemd[1]: Starting Load Kernel Modules...
             Starting Load Kernel Modules...
    [    9.508591] systemd[1]: Starting Generate network units from Kernel command line...
             Starting Generate network units from Kernel command line...
    [    9.524451] systemd-journald[129]: Collecting audit messages is enabled.
    [    9.539570] systemd[1]: Starting Remount Root and Kernel File Systems...
             Starting Remount Root and Kernel File Systems...
    [    9.594408] systemd[1]: Starting Coldplug All udev Devices...
             Starting Coldplug All udev Devices...
    [    9.622194] systemd[1]: Started RPC Bind.
    [  OK  ] Started RPC Bind.
    [    9.643598] systemd[1]: Started Journal Service.
    [    9.648692] EXT4-fs (mmcblk1p2): re-mounted 3399312a-59ce-47de-a300-a7f4c840d4c7 r/w. Quota mode: none.
    
    [  OK  ] Mounted Huge Pages File System.
    [  OK  ] Mounted POSIX Message Queue File System.
    [  OK  ] Mounted Kernel Debug File System.
    [  OK  ] Mounted Temporary Directory /tmp.
    [  OK  ] Finished Create List of Static Device Nodes.
    [  OK  ] Finished Load Kernel Module configfs.
    [  OK  ] Finished Load Kernel Module drm.
    [  OK  ] Finished Load Kernel Module fuse.
    [FAILED] Failed to start Start psplash boot splash screen.
    See 'systemctl status psplash-start.service' for details.
    [DEPEND] Dependency failed for Start psplas…temd progress communication helper.
    [  OK  ] Finished Load Kernel Modules.
    [  OK  ] Finished Generate network units from Kernel command line.
    [  OK  ] Finished Remount Root and Kernel File Systems.
             Mounting FUSE Control File System...
             Mounting Kernel Configuration File System...
             Starting Flush Journal to Persistent Storage...
             Starting Apply Kernel Variables...
    [   10.073237] systemd-journald[129]: Received client request to flush runtime journal.
             Starting Create Static Device Nodes in /dev gracefully...
    [  OK  ] Mounted FUSE Control File System.
    [  OK  ] Mounted Kernel Configuration File System.
    [  OK  ] Finished Flush Journal to Persistent Storage.
    [  OK  ] Finished Apply Kernel Variables.
    [  OK  ] Finished Coldplug All udev Devices.
    [  OK  ] Finished Create Static Device Nodes in /dev gracefully.
             Starting Create Static Device Nodes in /dev...
    [  OK  ] Finished Create Static Device Nodes in /dev.
    [  OK  ] Reached target Preparation for Local File Systems.
             Mounting /var/volatile...
    [   10.315604] audit: type=1334 audit(1728487094.364:2): prog-id=6 op=LOAD
    [   10.322599] audit: type=1334 audit(1728487094.372:3): prog-id=7 op=LOAD
             Starting Rule-based Manager for Device Events and Files...
    [  OK  ] Mounted /var/volatile.
             Starting Load/Save OS Random Seed...
    [  OK  ] Reached target Local File Systems.
             Starting Create System Files and Directories...
    [  OK  ] Finished Load/Save OS Random Seed.
    [  OK  ] Finished Create System Files and Directories.
    [   10.533077] audit: type=1334 audit(1728487094.580:4): prog-id=8 op=LOAD
             Starting Network Name Resolution...
    [   10.572129] audit: type=1334 audit(1728487094.620:5): prog-id=9 op=LOAD
             Starting Network Time Synchronization...
             Starting Record System Boot/Shutdown in UTMP...
    [   10.642358] audit: type=1334 audit(1728487094.692:6): prog-id=10 op=LOAD
    [   10.651061] audit: type=1334 audit(1728487094.696:7): prog-id=11 op=LOAD
    [   10.665998] audit: type=1334 audit(1728487094.696:8): prog-id=12 op=LOAD
    
    [  OK  ] Finished Record System Boot/Shutdown in UTMP.
    [  OK  ] Started User Database Manager.
    [  OK  ] Started Rule-based Manager for Device Events and Files.
    [  OK  ] Found device /dev/ttyS2.
    [  OK  ] Started Network Time Synchronization.
    [  OK  ] Reached target System Time Set.
    [  OK  ] Started Network Name Resolution.
    [  OK  ] Reached target Host and Network Name Lookups.
    [  OK  ] Reached target System Initialization.
    [  OK  ] Started Daily rotation of log files.
    [  OK  ] Started Daily Cleanup of Temporary Directories.
    [  OK  ] Reached target Timer Units.
    [  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
    [  OK  ] Listening on D-Bus System Message Bus Socket.
             Starting Docker Socket for the API...
    [  OK  ] Listening on dropbear.socket.
    [  OK  ] Listening on PC/SC Smart Card Daemon Activation Socket.
             Starting Weston socket...
    [   11.316544] audit: type=1334 audit(1728537999.048:9): prog-id=13 op=LOAD
             Starting D-Bus System Message Bus...
             Starting Reboot and dump vmcore via kexec...
    [  OK  ] Listening on Docker Socket for the API.
    [  OK  ] Listening on Weston socket.
    [  OK  ] Started D-Bus System Message Bus.
    [  OK  ] Finished Reboot and dump vmcore via[   11.513153] dbus-broker-lau[292]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set
     kexec.
    [  OK  ] Reached target Socket Units.
    [  OK  ] Reached target Basic System.
    [  OK  ] Started Job spooling tools.
             Starting Avahi mDNS/DNS-SD Stack...
    [  OK  ] Started Periodic Command Scheduler.
             Starting Print notice about GPLv3 packages...
             Starting IPv6 Packet Filtering Framework...
             Starting IPv4 Packet Filtering Framework...
    [  OK  ] Started irqbalance daemon.
             Starting Telephony service...
             Starting Update pmic registers for…le safety feature on power rails...
             Starting Expand the rootfs partiti…to full size of the boot device....
    [  OK  ] Started strongSwan IPsec IKEv1/IKEv2 daemon using ipsec.conf.
    [   11.901895] audit: type=1334 audit(1728537999.632:10): prog-id=14 op=LOAD
             Starting User Login Management...
    [   11.921644] audit: type=1334 audit(1728537999.632:11): prog-id=15 op=LOAD
             Starting Telnet Server...
    [  OK  ] Finished IPv6 Packet Filtering Framework.
    [  OK  ] Finished IPv4 Packet Filtering Framework.
    [  OK  ] Reached target Preparation for Network.
             Starting Network Configuration...
    [  OK  ] Started Avahi mDNS/DNS-SD Stack.
    [  OK  ] Finished Telnet Server.
    [  OK  ] Finished Update pmic registers for…able safety feature on power rails.
    [  OK  ] Started Telephony service.
    [   12.443540] CAN device driver interface
    [  OK  ] Started User Login Management.
    [   12.570420] omap-mailbox 31f80000.mailbox: omap mailbox rev 0x66fc7100
    [   12.587267] omap_rng 4e10000.rng: Random Number Generator ver. 241b34c
    [   12.602832] omap-mailbox 31f81000.mailbox: omap mailbox rev 0x66fc7100
    [   12.611323] [drm] Initialized tidss 1.0.0 20180215 for 4a00000.dss on minor 0
    [   12.620183] tidss 4a00000.dss: [drm] No compatible format found
    [   12.623288] at24 0-0050: supply vcc not found, using dummy regulator
    [   12.626960] tidss 4a00000.dss: [drm] Cannot find any crtc or sizes
    [   12.662684] omap-mailbox 31f82000.mailbox: omap mailbox rev 0x66fc7100
    [   12.749087] cfg80211: Loading compiled-in X.509 certificates for regulatory database
    [   12.782371] omap-mailbox 31f83000.mailbox: omap mailbox rev 0x66fc7100
    [   12.798283] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
    [   12.806259] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
    [   12.822236] Bluetooth: Core ver 2.22
    [   12.831687] NET: Registered PF_BLUETOOTH protocol family
    [   12.843973] m_can_platform 40528000.can: m_can device registered (irq=660, version=32)
    [   12.852800] Bluetooth: HCI device and connection manager initialized
    [   12.862719] Bluetooth: HCI socket layer initialized
    [   12.870524] omap-mailbox 31f84000.mailbox: omap mailbox rev 0x66fc7100
    [   12.872257] m_can_platform 40568000.can: m_can device registered (irq=662, version=32)
    [   12.888083] Bluetooth: L2CAP socket layer initialized
    [   12.896728] Bluetooth: SCO socket layer initialized
    [   12.907232] m_can_platform 2721000.can: m_can device registered (irq=663, version=32)
    [  OK  ] Finished Expand the rootfs partition to full size of the boot device..
    [  OK  ] Created slice Slice /system/tee-supplicant.
    [  OK  ] Started TEE Supplicant on teepriv0.
             Starting Virtual Console Setup...
    [   13.158043] cdns-ufshcd 4e84000.ufs: ufshcd_populate_vreg: Unable to find vdd-hba-supply regulator, assuming enabled
    [   13.167659] remoteproc remoteproc0: b034000.pru is available
    [   13.180303] cdns-ufshcd 4e84000.ufs: ufshcd_populate_vreg: Unable to find vcc-supply regulator, assuming enabled
    [   13.188875] remoteproc remoteproc1: b004000.rtu is available
    [   13.192150] cdns-ufshcd 4e84000.ufs: ufshcd_populate_vreg: Unable to find vccq-supply regulator, assuming enabled
    [   13.207170] cdns-ufshcd 4e84000.ufs: ufshcd_populate_vreg: Unable to find vccq2-supply regulator, assuming enabled
    [   13.219288] remoteproc remoteproc2: b00a000.txpru is available
    [   13.227807] remoteproc remoteproc3: b038000.pru is available
    [   13.234837] scsi host0: ufshcd
    [   13.239459] remoteproc remoteproc4: b006000.rtu is available
    [  OK  ] Started Network Configuration.
    [  OK  ] Reached target Network.
    [   13.255546] remoteproc remoteproc5: b00c000.txpru is available
    [   13.276163] am65-cpsw-nuss 46000000.ethernet eth0: validation of rgmii-rxid with support 00,00000000,00000000,00006280 and advertisement 00,00000000,00000000,00002280 failed: -EINVAL
    [   13.285953] remoteproc remoteproc6: b134000.pru is available
             Starting Enable and configure wl18xx bluetooth[   13.300583] remoteproc remoteproc7: b104000.rtu is available
     stack...
    [   13.314696] remoteproc remoteproc8: b10a000.txpru is available
    
    [   13.326083] remoteproc remoteproc9: b138000.pru is available
    [   13.336692] remoteproc remoteproc10: b106000.rtu is available
    [   13.342995] remoteproc remoteproc11: b10c000.txpru is available
             Starting LLDP daemon...
    [  OK  ] Started Netperf Benchmark Server.
             Starting Simple Network Management Protocol (SNMP) Daemon....
             Starting Permit User Sessions...
    [  OK  ] Finished Enable and configure wl18xx bluetooth stack.
    [  OK  ] Finished Permit User Sessions.
    [  OK  ] Started Getty on tty1.
    [  OK  ] Started Serial Getty on ttyS2.
    [  OK  ] Reached target Login Prompts.
             Starting Synchronize System and HW clocks...
             Starting Weston, a Wayland compositor, as a system service...
    [   13.651045] cdns-ufshcd 4e84000.ufs: link startup failed 1
    [  OK  ] Started LLDP daemon.
    [   13.656727] cdns-ufshcd 4e84000.ufs: UFS Host state=0
    [   13.667444] cdns-ufshcd 4e84000.ufs: outstanding reqs=0x0 tasks=0x0
    [   13.673833] cdns-ufshcd 4e84000.ufs: saved_err=0x0, saved_uic_err=0x0
    [   13.680403] cdns-ufshcd 4e84000.ufs: Device power mode=1, UIC link state=0
    [   13.687344] cdns-ufshcd 4e84000.ufs: PM in progress=0, sys. suspended=0
    [   13.694140] cdns-ufshcd 4e84000.ufs: Auto BKOPS=0, Host self-block=0
    [   13.700537] cdns-ufshcd 4e84000.ufs: Clk gate=1
    [   13.705135] cdns-ufshcd 4e84000.ufs: last_hibern8_exit_tstamp at 0 us, hibern8_exit_cnt=0
    [   13.713411] cdns-ufshcd 4e84000.ufs: last intr at 13651013 us, last intr status=0x404
    [   13.721738] cdns-ufshcd 4e84000.ufs: error handling flags=0x0, req. abort count=0
    [   13.729327] cdns-ufshcd 4e84000.ufs: hba->ufs_version=0x210, Host capabilities=0x1587031f, caps=0x0
    [   13.738419] cdns-ufshcd 4e84000.ufs: quirks=0x0, dev. quirks=0x0
    [   13.744514] cdns-ufshcd 4e84000.ufs: clk: core_clk, rate: 250000000
    [   13.751038] cdns-ufshcd 4e84000.ufs: clk: phy_clk, rate: 19200000
    [   13.752134] am65-cpsw-nuss c000000.ethernet eth1: PHY [c000f00.mdio:04] driver [TI DP83TG720CS1.1] (irq=POLL)
    [   13.757209] cdns-ufshcd 4e84000.ufs: clk: ref_clk, rate: 19200000
    [   13.768555] am65-cpsw-nuss c000000.ethernet eth1: configuring for phy/sgmii link mode
    [   13.773218] host_regs: 00000000: 1587031f 00000000 00000210 00000000
    [   13.788068] host_regs: 00000010: 00000000 00000000 00000000 00000000
    [   13.794571] host_regs: 00000020: 00000000 00000470 00000000 00000000
    [FAILED] Failed to start Synchronize Syste[   13.801093] host_regs: 00000030: 00000008 00000001 00000000 00000000
    m and HW clocks.
    [   13.813044] host_regs: 00000040: 00000000 00000000 00000000 00000000
    [   13.821483] host_regs: 00000050: 00000000 00000000 00000000 00000000
    See 'systemctl status sync-clocks.service' for details.
    [   13.828250] host_regs: 00000060: 00000000 00000000 00000000 00000000
    [   13.839425] host_regs: 00000070: 00000000 00000000 00000000 00000000
    [   13.845852] host_regs: 00000080: 00000000 00000000 00000000 00000000
    [   13.852283] host_regs: 00000090: 00000016 00000000 00000001 00000000
    [   13.858692] cdns-ufshcd 4e84000.ufs: No record of pa_err
    [   13.864269] cdns-ufshcd 4e84000.ufs: No record of dl_err
    [   13.869678] cdns-ufshcd 4e84000.ufs: No record of nl_err
    [   13.875065] cdns-ufshcd 4e84000.ufs: No record of tl_err
    [   13.880475] cdns-ufshcd 4e84000.ufs: No record of dme_err
    [   13.885919] cdns-ufshcd 4e84000.ufs: No record of auto_hibern8_err
    [   13.892263] cdns-ufshcd 4e84000.ufs: No record of fatal_err
    [   13.898189] cdns-ufshcd 4e84000.ufs: link_startup_fail[0] = 0x1 at 13651036 us
    [   13.905496] cdns-ufshcd 4e84000.ufs: link_startup_fail: total cnt=1
    [   13.911855] cdns-ufshcd 4e84000.ufs: No record of resume_fail
    [   13.917696] cdns-ufshcd 4e84000.ufs: No record of suspend_fail
    [   13.923608] cdns-ufshcd 4e84000.ufs: No record of wlun resume_fail
    [   13.929881] cdns-ufshcd 4e84000.ufs: No record of wlun suspend_fail
    [   13.936193] cdns-ufshcd 4e84000.ufs: No record of dev_reset
    [   13.941792] cdns-ufshcd 4e84000.ufs: No record of host_reset
    [   13.947520] cdns-ufshcd 4e84000.ufs: No record of task_abort
    [   13.953693] cdns-ufshcd 4e84000.ufs: ufshcd_async_scan failed: 1
    [  OK  ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
    [  OK  ] Finished Virtual Console Setup.
    [   14.350799] am65-cpsw-nuss c000000.ethernet eth2: PHY [c000f00.mdio:0d] driver [TI DP83TG720CS1.1] (irq=POLL)
    [   14.360731] am65-cpsw-nuss c000000.ethernet eth2: configuring for phy/rgmii-rxid link mode
    [   14.610591] xhci-hcd xhci-hcd.2.auto: xHCI Host Controller
    [   14.616208] xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 1
    [   14.624308] xhci-hcd xhci-hcd.2.auto: hcc params 0x200073c9 hci version 0x100 quirks 0x0000002000008010
    [   14.635414] xhci-hcd xhci-hcd.2.auto: irq 664, io mem 0x06010000
    [   14.642083] xhci-hcd xhci-hcd.2.auto: xHCI Host Controller
    [   14.647711] xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 2
    [   14.655740] xhci-hcd xhci-hcd.2.auto: Host supports USB 3.0 SuperSpeed
    [   14.663746] hub 1-0:1.0: USB hub found
    [   14.667526] hub 1-0:1.0: 1 port detected
    [   14.672408] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
    [   14.681482] hub 2-0:1.0: USB hub found
    [   14.685258] hub 2-0:1.0: 1 port detected
    [   14.697261] xhci-hcd xhci-hcd.3.auto: xHCI Host Controller
    [   14.702972] xhci-hcd xhci-hcd.3.auto: new USB bus registered, assigned bus number 3
    [   14.706116] am65-cpsw-nuss c000000.ethernet eth3: PHY [c000f00.mdio:05] driver [TI DP83TG720CS1.1] (irq=POLL)
    [   14.711448] xhci-hcd xhci-hcd.3.auto: hcc params 0x200073c9 hci version 0x100 quirks 0x0000002000008010
    [   14.721541] am65-cpsw-nuss c000000.ethernet eth3: configuring for phy/sgmii link mode
    [   14.730400] xhci-hcd xhci-hcd.3.auto: irq 688, io mem 0x06410000
    [   14.745446] xhci-hcd xhci-hcd.3.auto: xHCI Host Controller
    [   14.752158] xhci-hcd xhci-hcd.3.auto: new USB bus registered, assigned bus number 4
    [   14.753775] m_can_platform 40528000.can mcu_mcan0: renamed from can0
    [   14.759865] xhci-hcd xhci-hcd.3.auto: Host supports USB 3.0 SuperSpeed
    [   14.773203] hub 3-0:1.0: USB hub found
    [   14.776982] hub 3-0:1.0: 1 port detected
    [   14.781235] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
    [   14.789767] hub 4-0:1.0: USB hub found
    [   14.791913] m_can_platform 40568000.can mcu_mcan1: renamed from can1
    [   14.793749] hub 4-0:1.0: 1 port detected
    [  OK  ] Created slice User Slice of UID 1000.
             Starting User Runtime Directory /run/user/1000...
    [  OK  ] Finished User Runtime Directory /run/user/1000.
             Starting User Manager for UID 1000...
    [   15.201074] am65-cpsw-nuss c000000.ethernet eth4: PHY [c000f00.mdio:08] driver [TI DP83TG720CS1.1] (irq=POLL)
    [   15.211436] am65-cpsw-nuss c000000.ethernet eth4: configuring for phy/sgmii link mode
    [   15.228061] m_can_platform 2721000.can main_mcan2: renamed from can2
    [   15.331130] kauditd_printk_skb: 2 callbacks suppressed
    [   15.331138] audit: type=1006 audit(1728538003.064:14): pid=516 uid=0 subj=kernel old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=1 res=1
    [   15.352148] audit: type=1300 audit(1728538003.064:14): arch=c00000b7 syscall=64 success=yes exit=4 a0=8 a1=ffffc847ead8 a2=4 a3=1 items=0 ppid=1 pid=516 auid=1000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=1 comm="(systemd)" exe="/usr/lib/systemd/systemd-executor" subj=kernel key=(null)
    [   15.380780] am65-cpsw-nuss c000000.ethernet eth2: Link is Up - 1Gbps/Full - flow control off
    [   15.389644] audit: type=1327 audit(1728538003.064:14): proctitle="(systemd)"
    [   15.605375] am65-cpsw-nuss c000000.ethernet eth5: PHY [c000f00.mdio:0a] driver [TI DP83TG720CS1.1] (irq=POLL)
    [   15.615331] am65-cpsw-nuss c000000.ethernet eth5: configuring for phy/sgmii link mode
    [  OK  ] Created slice Slice /system/systemd-fsck.
             Expecting device /dev/mmcblk1p1...
    [  OK  ] Found device /dev/mmcblk1p1.
             Starting File System Check on /dev/mmcblk1p1...
    [   16.044903] am65-cpsw-nuss c000000.ethernet eth6: PHY [c000f00.mdio:0c] driver [TI DP83TG720CS1.1] (irq=POLL)
    [  OK  ] Started User Manager for UID 1000   16.057700] am65-cpsw-nuss c000000.ethernet eth6: configuring for phy/sgmii link mode
    0m.
    [  OK  ] Started Session c1 of User weston.
    [   16.088741] audit: type=1006 audit(1728538003.820:15): pid=472 uid=0 subj=kernel old-auid=4294967295 auid=1000 tty=tty7 old-ses=4294967295 ses=2 res=1
    [   16.103471] audit: type=1300 audit(1728538003.820:15): arch=c00000b7 syscall=64 success=yes exit=4 a0=8 a1=ffffd8664b88 a2=4 a3=1 items=0 ppid=1 pid=472 auid=1000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=tty7 ses=2 comm="(weston)" exe="/usr/lib/systemd/systemd-executor" subj=kernel key=(null)
    [   16.138377] audit: type=1327 audit(1728538003.820:15): proctitle="(weston)"
    [  OK  ] Finished File System Check on /dev/mmcblk1p1.
             Mounting /run/media/boot-mmcblk1p1...
    [  OK  ] Mounted /run/media/boot-mmcblk1p1.
    [FAILED] Failed to start Weston, a Wayland compositor, as a system service.
    See 'systemctl status weston.service' for details.
    [  OK  ] Started Simple Network Management Protocol (SNMP) Daemon..
    
     _____                    _____           _         _
    |  _  |___ ___ ___ ___   |  _  |___ ___  |_|___ ___| |_
    |     |  _| .'| . | . |  |   __|  _| . | | | -_|  _|  _|
    |__|__|_| |__,|_  |___|  |__|  |_| |___|_| |___|___|_|
                  |___|                    |___|
    
    Arago Project j721e-evm ttyS2
    
    Arago 2023.10 j721e-evm ttyS2
    
    j721e-evm login: ***************************************************************
    ***************************************************************
    NOTICE: This file system contains the following GPL-3.0 packages:
            adwaita-icon-theme-symbolic
            autoconf
            bash-dev
            bash
            bc
            binutils
            cifs-utils
            coreutils-stdbuf
            coreutils
            cpio
            cpp-symlinks
            cpp
            dosfstools
            elfutils-dev
            elfutils
            findutils
            g++-symlinks
            g++
            gawk
            gcc-symlinks
            gcc
            gdb
            gdbserver
            gettext
            glmark2
            gnu-config
            grub-common
            grub-editenv
            grub-efi
            gzip
            hidapi
            kbd-dev
            kbd-keymaps-pine
            less
            libasm1
            libatomic-dev
            libatomic1
            libbfd
            libdebuginfod1
            libdw1
            libelf1
            libgcc-s-dev
            libgcc1
            libgdbm-compat4
            libgdbm-dev
            libgdbm6
            libgettextlib
            libgettextsrc
            libgmp-dev
            libgmp10
            libgmpxx4
            libgnutls-dev
            libgnutls-openssl27
            libidn2-0
            libidn2-dev
            libmpc3
            libmpfr6
            libopcodes
            libqt5charts-examples
            libqt5charts-plugins
            libqt5charts-qmlplugins
            libqt5charts5
            libqt5serialport-examples
            libqt5serialport-plugins
            libqt5serialport-qmlplugins
            libqt5serialport5
            libqt5svg-examples
            libqt5svg-plugins
            libqt5svg-qmlplugins
            libqt5svg5
            libqt5virtualkeyboard-plugins
            libqt5virtualkeyboard-qmlplugins
            libqt5virtualkeyboard5
            libreadline-dev
            libreadline8
            libstdc++-dev
            libstdc++6
            libtasn1-dev
            libunistring-dev
            libunistring5
            m4
            make
            nettle-dev
            nettle
            parted
            piglit
            qt3d-plugins
            qt3d-qmlplugins
            qt3d
            qtbase-examples
            qtbase-plugins
            qtbase-qmlplugins
            qtbase
            qtconnectivity-plugins
            qtconnectivity-qmlplugins
            qtconnectivity
            qtdeclarative-plugins
            qtdeclarative-qmlplugins
            qtdeclarative-tools
            qtdeclarative
            qtgraphicaleffects-qmlplugins
            qtlocation-examples
            qtlocation-plugins
            qtlocation-qmlplugins
            qtlocation
            qtmultimedia-examples
            qtmultimedia-plugins
            qtmultimedia-qmlplugins
            qtmultimedia
            qtquics-qmlplugins.control
            qtquics2-plugins.control
            qtquics2-qmlplugins.control
            qtquics2.control
            qtscript-examples
            qtscript-plugins
            qtscript-qmlplugins
            qtscript
            qtwayland-examples
            qtwayland-plugins
            qtwayland-qmlplugins
            qtwayland
            tar
            which
    
    If you do not wish to distribute GPL-3.0 components please remove
    the above packages prior to distribution.  This can be done using
    the opkg remove command.  i.e.:
        opkg remove <package>
    Where <package> is the name printed in the list above
    
    NOTE: If the package is a dependency of another package you
          will be notified of the dependent packages.  You should
          use the --force-removal-of-dependent-packages option to
          also remove the dependent packages as well
    ***************************************************************
    ***************************************************************
    [   24.946641] platform can-phy2: deferred probe pending
    [   24.951703] platform sound-0: deferred probe pending
    [   24.956663] platform 2701000.can: deferred probe pending
    [   24.961971] i2c 3-0044: deferred probe pending
    
    j721e-evm login: root
    [   62.430166] audit: type=1006 audit(1728538050.160:16): pid=976 uid=0 subj=kernel old-auid=4294967295 auid=0 tty=(none) old-ses=4294967295 ses=3 res=1
    [   62.444037] audit: type=1300 audit(1728538050.160:16): arch=c00000b7 syscall=64 success=yes exit=1 a0=8 a1=ffffdf7279b8 a2=1 a3=1 items=0 ppid=1 pid=976 auid=0 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=3 comm="(systemd)" exe="/usr/lib/systemd/systemd-executor" subj=kernel key=(null)
    [   62.472007] audit: type=1327 audit(1728538050.160:16): proctitle="(systemd)"
    [   62.481026] audit: type=1334 audit(1728538050.180:17): prog-id=18 op=LOAD
    [   62.488744] audit: type=1300 audit(1728538050.180:17): arch=c00000b7 syscall=280 success=yes exit=8 a0=5 a1=ffffd719c298 a2=90 a3=0 items=0 ppid=1 pid=976 auid=0 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=3 comm="systemd" exe="/usr/lib/systemd/systemd" subj=kernel key=(null)
    [   62.516267] audit: type=1327 audit(1728538050.180:17): proctitle="(systemd)"
    [   62.523661] audit: type=1334 audit(1728538050.208:18): prog-id=18 op=UNLOAD
    [   62.530960] audit: type=1300 audit(1728538050.208:18): arch=c00000b7 syscall=57 success=yes exit=0 a0=8 a1=1 a2=0 a3=ffffa9bf5c60 items=0 ppid=1 pid=976 auid=0 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=3 comm="systemd" exe="/usr/lib/systemd/systemd" subj=kernel key=(null)
    [   62.557782] audit: type=1327 audit(1728538050.208:18): proctitle="(systemd)"
    [   62.564976] audit: type=1334 audit(1728538050.208:19): prog-id=19 op=LOAD
    root@j721e-evm:~#
    root@j721e-evm:~#
    root@j721e-evm:~#
    root@j721e-evm:~#
    root@j721e-evm:~# dmesg | grep eth
    [    0.000000] psci: probing for conduit method from DT.
    [    0.849348] optee: probing for conduit method.
    [    3.454202] am65-cpsw-nuss 46000000.ethernet: initializing am65 cpsw nuss version 0x6BA00101, cpsw version 0x6BA80100 Ports: 2 quirks:00000000
    [    3.467022] am65-cpsw-nuss 46000000.ethernet: initialized cpsw ale version 1.4
    [    3.474228] am65-cpsw-nuss 46000000.ethernet: ALE Table size 64
    [    3.484692] am65-cpsw-nuss 46000000.ethernet: CPTS ver 0x4e8a010a, freq:500000000, add_val:1 pps:1
    [    4.933570] am65-cpsw-nuss c000000.ethernet: initializing am65 cpsw nuss version 0x6BA01901, cpsw version 0x6BA80101 Ports: 9 quirks:00000000
    [    5.166223] am65-cpsw-nuss 46000000.ethernet: initializing am65 cpsw nuss version 0x6BA00101, cpsw version 0x6BA80100 Ports: 2 quirks:00000000
    [    5.179052] am65-cpsw-nuss 46000000.ethernet: initialized cpsw ale version 1.4
    [    5.190620] am65-cpsw-nuss 46000000.ethernet: ALE Table size 64
    [    5.205936] am65-cpsw-nuss 46000000.ethernet: CPTS ver 0x4e8a010a, freq:500000000, add_val:1 pps:1
    [    5.244282] am65-cpsw-nuss 46000000.ethernet: set new flow-id-base 48
    [    6.693354] am65-cpsw-nuss c000000.ethernet: initializing am65 cpsw nuss version 0x6BA01901, cpsw version 0x6BA80101 Ports: 9 quirks:00000000
    [    6.707232] am65-cpsw-nuss c000000.ethernet: Use random MAC address
    [    6.713555] am65-cpsw-nuss c000000.ethernet: Use random MAC address
    [    6.720990] am65-cpsw-nuss c000000.ethernet: Use random MAC address
    [    6.727310] am65-cpsw-nuss c000000.ethernet: Use random MAC address
    [    6.733624] am65-cpsw-nuss c000000.ethernet: Use random MAC address
    [    6.739934] am65-cpsw-nuss c000000.ethernet: Use random MAC address
    [    6.746192] am65-cpsw-nuss c000000.ethernet: initialized cpsw ale version 1.4
    [    6.753311] am65-cpsw-nuss c000000.ethernet: ALE Table size 512
    [    6.759741] am65-cpsw-nuss c000000.ethernet: CPTS ver 0x4e8a010a, freq:200000000, add_val:4 pps:0
    [    6.777988] am65-cpsw-nuss c000000.ethernet: set new flow-id-base 140
    [    8.413436] systemd[1]: /usr/lib/systemd/system/bt-enable.service:9: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether.
    [    8.480553] systemd[1]: /etc/systemd/system/sync-clocks.service:11: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether.
    [   13.276163] am65-cpsw-nuss 46000000.ethernet eth0: validation of rgmii-rxid with support 00,00000000,00000000,00006280 and advertisement 00,00000000,00000000,00002280 failed: -EINVAL
    [   13.752134] am65-cpsw-nuss c000000.ethernet eth1: PHY [c000f00.mdio:04] driver [TI DP83TG720CS1.1] (irq=POLL)
    [   13.768555] am65-cpsw-nuss c000000.ethernet eth1: configuring for phy/sgmii link mode
    [   14.350799] am65-cpsw-nuss c000000.ethernet eth2: PHY [c000f00.mdio:0d] driver [TI DP83TG720CS1.1] (irq=POLL)
    [   14.360731] am65-cpsw-nuss c000000.ethernet eth2: configuring for phy/rgmii-rxid link mode
    [   14.706116] am65-cpsw-nuss c000000.ethernet eth3: PHY [c000f00.mdio:05] driver [TI DP83TG720CS1.1] (irq=POLL)
    [   14.721541] am65-cpsw-nuss c000000.ethernet eth3: configuring for phy/sgmii link mode
    [   15.201074] am65-cpsw-nuss c000000.ethernet eth4: PHY [c000f00.mdio:08] driver [TI DP83TG720CS1.1] (irq=POLL)
    [   15.211436] am65-cpsw-nuss c000000.ethernet eth4: configuring for phy/sgmii link mode
    [   15.380780] am65-cpsw-nuss c000000.ethernet eth2: Link is Up - 1Gbps/Full - flow control off
    [   15.605375] am65-cpsw-nuss c000000.ethernet eth5: PHY [c000f00.mdio:0a] driver [TI DP83TG720CS1.1] (irq=POLL)
    [   15.615331] am65-cpsw-nuss c000000.ethernet eth5: configuring for phy/sgmii link mode
    [   16.044903] am65-cpsw-nuss c000000.ethernet eth6: PHY [c000f00.mdio:0c] driver [TI DP83TG720CS1.1] (irq=POLL)
    [   16.057700] am65-cpsw-nuss c000000.ethernet eth6: configuring for phy/sgmii link mode
    root@j721e-evm:~#
    root@j721e-evm:~#
    root@j721e-evm:~#
    root@j721e-evm:~#
    root@j721e-evm:~#
    root@j721e-evm:~# ethtool eth2
    Settings for eth2:
            Supported ports: [ TP    MII ]
            Supported link modes:   1000baseT/Full
            Supported pause frame use: Symmetric
            Supports auto-negotiation: No
            Supported FEC modes: Not reported
            Advertised link modes:  Not reported
            Advertised pause frame use: Symmetric
            Advertised auto-negotiation: No
            Advertised FEC modes: Not reported
            Speed: 1000Mb/s
            Duplex: Full
            Auto-negotiation: off
            Port: Twisted Pair
            PHYAD: 13
            Transceiver: external
            MDI-X: Unknown
            Supports Wake-on: d
            Wake-on: d
            Current message level: 0x000020f7 (8439)
                                   drv probe link ifdown ifup rx_err tx_err hw
            Link detected: yes
    root@j721e-evm:~#
    root@j721e-evm:~# cd /home/weston/scripts/
    root@j721e-evm:/home/weston/scripts# ./j7_devmem2_cpsw9g_check_status.sh
        Platform: J7 TDA4VM
        Command:  k3conf
    MDIO_ALIVE_REG (0x0c000f08) = 0x00000000
    MDIO_LINK_REG (0x0c000f0c) = 0x00000000
    please input your port: 1-8 3
    CTRLMMR_ENET 3 CTRL (0x0010404c) = 0x00000002
            PORT_MODE_SEL          : 2h RGMII
            RGMII_ID_MODE          : 0h Internal Transmit Desaly
    CPSW SS RGMII 3 STATUS (0x0c000038) = 0x0000000D
            FULLDUPLEX           : 1h Full duplex
            SPEED                : 1000Mbps
            LINK                 : 1h Link is up
    CPSW_SS_STATUS_SGMII_LINK_REG (0x0c000078) = 0x00000000
            SGMII1_LINK          : 0h No
    CPSW_SS_SGMII_CONTROL_REG_ 3 (0x0c000310) = 0x00000000
            TEST_PATTERN_EN      : 0h operation
            MASTER               : 0h Slave Mode
            LOOPBACK             : 0h Not in internal loopback mode
            MR_NP_LOADED         : 0h --------
            FAST_LINK_TIMER      : 0h link timer 10ms in FIBER mode and 1.6ms in SGMII mode
            MA_AN_RESTART        : 0h Write 1h and tehn 0h to this bit caused the auto negotiation
            MR_AN_ENABLE         : 0h wirte 1 to this bit enbales the auto negotiation progess
    CPSW_SS_SGMII_STATUS_REG_ 3 (0x0c000314) = 0x00000028
            LOCK                  : 0h SEDES PLL isn't locked
            MR_AN_COMPLETE        : 0h no AUTO Negotiation is not complete
            AN_EEROR              : 0h no negotiation error
            LINK                  : 0h link is not up
    

    2. this is custom board

    3. phy is dp83tg720

  • Hi,

    What are the delay settings used on phy side. You are using internal transmit delay on the MAC side. Can you confirm that you are setting the rx delay from the phy side?

    Can you share the phy node being used in the device-tree.

    Regards,
    Tanmay

  • hi: 

    what i understand related to phy node in the device-tree. just k3-j721e-common-proc-board.dts ( port3 ) 

    	rgmii3_default_pins: rgmii3-default-pins {
    	pinctrl-single,pins = <
    		J721E_IOPAD(0xb0, PIN_INPUT, 4) /* (AF28) PRG0_PRU0_GPO0.RGMII3_RD0 */
    		J721E_IOPAD(0xb4, PIN_INPUT, 4) /* (AE28) PRG0_PRU0_GPO1.RGMII3_RD1 */
    		J721E_IOPAD(0xb8, PIN_INPUT, 4) /* (AE27) PRG0_PRU0_GPO2.RGMII3_RD2 */
    		J721E_IOPAD(0xbc, PIN_INPUT, 4) /* (AD26) PRG0_PRU0_GPO3.RGMII3_RD3 */
    		J721E_IOPAD(0xc8, PIN_INPUT, 4) /* (AE26) PRG0_PRU0_GPO6.RGMII3_RXC */
    		J721E_IOPAD(0xc0, PIN_INPUT, 4) /* (AD25) PRG0_PRU0_GPO4.RGMII3_RX_CTL */
    		J721E_IOPAD(0xdc, PIN_OUTPUT, 4) /* (AJ28) PRG0_PRU0_GPO11.RGMII3_TD0 */
    		J721E_IOPAD(0xe0, PIN_OUTPUT, 4) /* (AH27) PRG0_PRU0_GPO12.RGMII3_TD1 */
    		J721E_IOPAD(0xe4, PIN_OUTPUT, 4) /* (AH29) PRG0_PRU0_GPO13.RGMII3_TD2 */
    		J721E_IOPAD(0xe8, PIN_OUTPUT, 4) /* (AG28) PRG0_PRU0_GPO14.RGMII3_TD3 */
    		J721E_IOPAD(0xf0, PIN_OUTPUT, 4) /* (AH28) PRG0_PRU0_GPO16.RGMII3_TXC */
    		J721E_IOPAD(0xec, PIN_OUTPUT, 4) /* (AG27) PRG0_PRU0_GPO15.RGMII3_TX_CTL */
    	>;
    };
    
    
    
    &cpsw0 {
    	status = "okay";
    	pinctrl-names = "default";
        pinctrl-0 = <&rgmii3_default_pins>;
    };
    &cpsw0_port1 {
    	status = "disabled";
    };
    
    &cpsw0_port2 {
    	status = "okay";
    	phy-handle = <&cpsw9g_phy0>;
    	phy-mode = "sgmii";
    	mac-address = [00 00 00 00 00 00];
    	phys = <&cpsw0_phy_gmii_sel 2>,<&serdes0_sgmii_link>;
    	//phy-names = "portmode", "serdes-phy";
    	phy-names = "portmode", "serdes";
    };
    
    &cpsw0_port3 {
    	status = "okay";
    	phy-handle = <&cpsw9g_phy13>;
    	phy-mode = "rgmii-rxid";
    	mac-address = [00 00 00 00 00 00];
    	phys = <&cpsw0_phy_gmii_sel 3>;
    };
    
    &cpsw0_port4 {
    	status = "disabled";
    };
    
    &cpsw0_port5 {
    	status = "okay";
    	phy-handle = <&cpsw9g_phy1>;
    	phy-mode = "sgmii";
    	mac-address = [00 00 00 00 00 00];
    	phys = <&cpsw0_phy_gmii_sel 5>,<&serdes4_sgmii_link>;
        // phy-names = "portmode", "serdes-phy";
    	phy-names = "portmode", "serdes";
    	 
    };
    
    &cpsw0_port6 {
    	status = "okay";
    	phy-handle = <&cpsw9g_phy2>;
    	phy-mode = "sgmii";
    	mac-address = [00 00 00 00 00 00];
    	phys = <&cpsw0_phy_gmii_sel 6>;
    	//phy-names = "portmode", "serdes-phy";
    	phy-names = "portmode", "serdes";
    	
    };
    
    &cpsw0_port7 {
    	status = "okay";
    	phy-handle = <&cpsw9g_phy3>;
    	phy-mode = "sgmii";
    	mac-address = [00 00 00 00 00 00];
    	phys = <&cpsw0_phy_gmii_sel 7>;
    	//phy-names = "portmode", "serdes-phy";
    	phy-names = "portmode", "serdes";
    	
    };
    
    &cpsw0_port8 {
    	status = "okay";
    	phy-handle = <&cpsw9g_phy4>;
    	phy-mode = "sgmii";
    	mac-address = [00 00 00 00 00 00];
    	phys = <&cpsw0_phy_gmii_sel 8>;
    	//phy-names = "portmode", "serdes-phy";
    	phy-names = "portmode", "serdes";
    	
    };
    
    &cpsw9g_mdio {
    	status = "okay";
    	pinctrl-names = "default";
    	pinctrl-0 = <&mdio0_pins_default>;
    	//reset-gpios = <&exp2 17 GPIO_ACTIVE_LOW>;
    	reset-post-delay-us = <120000>;
    	//bus_freq = <1000000>;
    	#address-cells = <1>;
    	#size-cells = <0>;
    
    	cpsw9g_phy0: ethernet-phy@4 {
    		reg = <4>;
    	};
    	cpsw9g_phy1: ethernet-phy@5 {
    		reg = <5>;
    	};
    	cpsw9g_phy2: ethernet-phy@8 {
    		reg = <8>;
    	};
    	cpsw9g_phy3: ethernet-phy@10 {
    		reg = <10>;
    	};
    	cpsw9g_phy4: ethernet-phy@12 {
    	reg = <12>;
    	};
    	cpsw9g_phy13: ethernet-phy@13 {
        reg = <13>;
    	ti,rx-internal-delay = <DP83867_RGMIIDCTL_2_00_NS>;
        ti,fifo-depth = <DP83867_PHYCR_FIFO_DEPTH_4_B_NIB>;
        };
    };

     

    can you tell me other setting in dts ,thank you.

  • Hi,

    Can you please check CPSW Port-3 statistics while running the ping using the ethool command?
    # ethtool -S eth2

    Also, ensure the RGMII3 pins are not used for any other functionality, cross-confirm by reading the PADCONFIG registers.

    Best Regards,
    Sudheer