TDA4VH-Q1: SGMII configuration of CPSW-9G

Part Number:

Tool/software:

Hi,

  SDK Version: 09.02.0.05

  Reference link: 

https://e2e.ti.com/support/processors-group/processors/f/processors-forum/1385154/am69-sgmii-not-working-with-dp83867is/5316274#5316274

 We configured serdes2 lane2 as SGMII 7.

My device tree configuration:

 

// SPDX-License-Identifier: GPL-2.0
/**
 * DT Overlay for CPSW9G in QSGMII mode using J7 Quad Port ETH EXP Add-On Ethernet Card with
 * J7AHP board. The Add-On Ethernet Card has to be connected to ENET Expansion 1 slot on the
 * board.
 *
 * Product Datasheet: https://www.ti.com/lit/ug/spruj74/spruj74.pdf
 * Product Link: https://www.ti.com/tool/J721EXENETXPANEVM
 *
 * Copyright (C) 2023 Texas Instruments Incorporated - https://www.ti.com/
 */

/dts-v1/;
/plugin/;

#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/mux/ti-serdes.h>
#include <dt-bindings/phy/phy-cadence.h>
#include <dt-bindings/phy/phy.h>

#include "k3-pinctrl.h"

&{/} {
	aliases {
		ethernet1 = "/bus@100000/ethernet@c000000/ethernet-ports/port@5";
		ethernet2 = "/bus@100000/ethernet@c000000/ethernet-ports/port@6";
		ethernet3 = "/bus@100000/ethernet@c000000/ethernet-ports/port@7";

	};
};

&main_cpsw0 {
	status = "okay";
};

&main_cpsw0_port7 {
	status = "okay";
	phy-handle = <&cpsw9g_phy0>;
	phy-mode = "sgmii";
	mac-address = [00 00 00 00 00 00];
	phys = <&cpsw0_phy_gmii_sel 7>, <&serdes2_qsgmii_link>;
	phy-names = "mac", "serdes";
};


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

	cpsw9g_phy0: ethernet-phy@16 {
		reg = <0>;
	};
};

&exp2 {
	/* Power-up ENET1 EXPANDER PHY. */
	qsgmii-line-hog {
		gpio-hog;
		gpios = <16 GPIO_ACTIVE_HIGH>;
		output-low;
	};
	/* Toggle MUX2 for MDIO lines */
	mux-sel-hog {
		gpio-hog;
		gpios = <13 GPIO_ACTIVE_HIGH>, <14 GPIO_ACTIVE_HIGH>, <15 GPIO_ACTIVE_HIGH>;
		output-high;
	};
};

&main_pmx0 {
	mdio0_pins_default: mdio0-pins-default {
		pinctrl-single,pins = <
			J784S4_IOPAD(0x05c, PIN_INPUT, 4) /* (AC36) MCASP2_AXR0.MDIO1_MDIO */
			J784S4_IOPAD(0x058, PIN_INPUT, 4) /* (AE37) MCASP2_AFSX.MDIO1_MDC */
		>;
	};
};

&serdes_ln_ctrl {
	idle-states = <J784S4_SERDES0_LANE0_PCIE1_LANE0>, <J784S4_SERDES0_LANE1_PCIE1_LANE1>,
		      <J784S4_SERDES0_LANE2_IP3_UNUSED>, <J784S4_SERDES0_LANE3_USB>,
		      <J784S4_SERDES1_LANE0_PCIE0_LANE0>, <J784S4_SERDES1_LANE1_PCIE0_LANE1>,
		      <J784S4_SERDES1_LANE2_PCIE0_LANE2>, <J784S4_SERDES1_LANE3_PCIE0_LANE3>,
		      <J784S4_SERDES2_LANE0_QSGMII_LANE5>, <J784S4_SERDES2_LANE1_QSGMII_LANE6>,
		      <J784S4_SERDES2_LANE2_QSGMII_LANE7>, <J784S4_SERDES2_LANE3_QSGMII_LANE8>;
};

&serdes_wiz2 {
	status = "okay";
};

&serdes2 {
	status = "okay";
	#address-cells = <1>;
	#size-cells = <0>;

	serdes2_qsgmii_link: phy@0 {
		reg = <2>;
		cdns,num-lanes = <1>;
		#phy-cells = <0>;
		cdns,phy-type = <PHY_TYPE_SGMII>;
		resets = <&serdes_wiz2 3>;
	};
};

&main_cpsw0_port7 {
status = "okay";
phy-handle = <&cpsw9g_phy0>;
phy-mode = "sgmii";
mac-address = [00 00 00 00 00 00];
phys = <&cpsw0_phy_gmii_sel 7>, <&serdes2_qsgmii_link>;
phy-names = "mac", "serdes";
};

The phy-mode of the node causes the following error.

The log shows:

[ 2.687623] am65-cpsw-nuss c000000.ethernet: initializing am65 cpsw nuss version 0x6BA03102, cpsw version 0x6BA82902 Ports: 9 quirks:00000000
[ 2.700322] phy-gmii-sel 104044.phy: phy_gmii_sel_of_xlate id:7 ext:139780624
[ 2.701486] phy-gmii-sel 104044.phy: port7: unsupported mode: "sgmii"

I checked the driver phy-gmii-sel.c.

static const
struct phy_gmii_sel_soc_data phy_gmii_sel_cpsw9g_soc_j784s4 = {
    .use_of_data = true,
    .regfields = phy_gmii_sel_fields_am654,
    .extra_modes = BIT(PHY_INTERFACE_MODE_QSGMII) |
     BIT(PHY_INTERFACE_MODE_USXGMII),
     .num_ports = 8,
      .num_qsgmii_main_ports = 2,
};

It seems that only  j784s‘s extra_modes does not support SGMII. So the program exits when the mode is selected.

	case PHY_INTERFACE_MODE_QSGMII:
		if (!(soc_data->extra_modes & BIT(PHY_INTERFACE_MODE_QSGMII)))
			goto unsupported;
		if (if_phy->priv->qsgmii_main_ports & BIT(if_phy->id - 1))
			gmii_sel_mode = J72XX_GMII_SEL_MODE_QSGMII;
		else
			gmii_sel_mode = J72XX_GMII_SEL_MODE_QSGMII_SUB;
		break;

	case PHY_INTERFACE_MODE_SGMII:
		if (!(soc_data->extra_modes & BIT(PHY_INTERFACE_MODE_SGMII)))
			goto unsupported;
		else
			gmii_sel_mode = J72XX_GMII_SEL_MODE_SGMII;
		break;

 Is the current driver not supporting SGMII?

Thanks

  • I have alleady add these patchs, eth1 can be create ,but we can not ping . please check my device tree,thanks!

  • Hello,

    Please share the device-tree, the boot-logs and the output of:
    devmem2 0x0502e000

    Regards,
    Siddharth.

  • // SPDX-License-Identifier: GPL-2.0
    /**
     * DT Overlay for CPSW9G in QSGMII mode using J7 Quad Port ETH EXP Add-On Ethernet Card with
     * J7AHP board. The Add-On Ethernet Card has to be connected to ENET Expansion 1 slot on the
     * board.
     *
     * Product Datasheet: https://www.ti.com/lit/ug/spruj74/spruj74.pdf
     * Product Link: https://www.ti.com/tool/J721EXENETXPANEVM
     *
     * Copyright (C) 2023 Texas Instruments Incorporated - https://www.ti.com/
     */
    
    /dts-v1/;
    /plugin/;
    
    #include <dt-bindings/gpio/gpio.h>
    #include <dt-bindings/mux/ti-serdes.h>
    #include <dt-bindings/phy/phy-cadence.h>
    #include <dt-bindings/phy/phy.h>
    
    #include "k3-pinctrl.h"
    
    &{/} {
    	aliases {
    		ethernet1 = "/bus@100000/ethernet@c000000/ethernet-ports/port@5";
    		ethernet2 = "/bus@100000/ethernet@c000000/ethernet-ports/port@6";
    		ethernet3 = "/bus@100000/ethernet@c000000/ethernet-ports/port@7";
    
    	};
    };
    
    &main_cpsw0 {
    	status = "okay";
    };
    
    &main_cpsw0_port7 {
    	status = "okay";
    	phy-handle = <&cpsw9g_phy0>;
    	phy-mode = "sgmii";
    	mac-address = [00 00 00 00 00 00];
    	phys = <&cpsw0_phy_gmii_sel 7>, <&serdes2_sgmii_link>;
    	phy-names = "mac", "serdes";
    };
    
    
    &main_cpsw0_mdio {
    	status = "okay";
    	pinctrl-names = "default";
    	pinctrl-0 = <&mdio0_pins_default>;
    	bus_freq = <1000000>;
    	reset-gpios = <&exp2 17 GPIO_ACTIVE_LOW>;
    	reset-post-delay-us = <120000>;
    	#address-cells = <1>;
    	#size-cells = <0>;
    
    	cpsw9g_phy0: ethernet-phy@16 {
    		reg = <0>;
    	};
    };
    
    &exp2 {
    	/* Power-up ENET1 EXPANDER PHY. */
    	qsgmii-line-hog {
    		gpio-hog;
    		gpios = <16 GPIO_ACTIVE_HIGH>;
    		output-low;
    	};
    	/* Toggle MUX2 for MDIO lines */
    	mux-sel-hog {
    		gpio-hog;
    		gpios = <13 GPIO_ACTIVE_HIGH>, <14 GPIO_ACTIVE_HIGH>, <15 GPIO_ACTIVE_HIGH>;
    		output-high;
    	};
    };
    
    &main_pmx0 {
    	mdio0_pins_default: mdio0-pins-default {
    		pinctrl-single,pins = <
    			J784S4_IOPAD(0x05c, PIN_INPUT, 4) /* (AC36) MCASP2_AXR0.MDIO1_MDIO */
    			J784S4_IOPAD(0x058, PIN_INPUT, 4) /* (AE37) MCASP2_AFSX.MDIO1_MDC */
    		>;
    	};
    };
    
    &serdes_ln_ctrl {
    	idle-states = <J784S4_SERDES0_LANE0_PCIE1_LANE0>, <J784S4_SERDES0_LANE1_PCIE1_LANE1>,
    		      <J784S4_SERDES0_LANE2_IP3_UNUSED>, <J784S4_SERDES0_LANE3_USB>,
    		      <J784S4_SERDES1_LANE0_PCIE0_LANE0>, <J784S4_SERDES1_LANE1_PCIE0_LANE1>,
    		      <J784S4_SERDES1_LANE2_PCIE0_LANE2>, <J784S4_SERDES1_LANE3_PCIE0_LANE3>,
    		      <J784S4_SERDES2_LANE0_QSGMII_LANE5>, <J784S4_SERDES2_LANE1_QSGMII_LANE6>,
    		      <J784S4_SERDES2_LANE2_QSGMII_LANE7>, <J784S4_SERDES2_LANE3_QSGMII_LANE8>;
    };
    
    &serdes_wiz2 {
    	status = "okay";
    };
    
    &serdes2 {
    	status = "okay";
    	#address-cells = <1>;
    	#size-cells = <0>;
    
    	serdes2_sgmii_link: phy@0 {
    		reg = <3>;
    		cdns,num-lanes = <1>;
    		#phy-cells = <0>;
    		cdns,phy-type = <PHY_TYPE_SGMII>;
    		resets = <&serdes_wiz2 3>;
    	};
    };

    log:

    U-Boot SPL 2023.04-dirty (Jul 29 2024 - 14:34:42 +0800)
    ti_i2c_eeprom_am6_get: Ignoring record id 255
    ti_i2c_eeprom_am6_get: Ignoring record id 255
    ti_i2c_eeprom_am6_get: Ignoring record id 255
    ti_i2c_eeprom_am6_get: Ignoring record id 255
    ti_i2c_eeprom_am6_get: Ignoring record id 255
    ti_i2c_eeprom_am6_get: Ignoring record id 255
    ti_i2c_eeprom_am6_get: Ignoring record id 255
    ti_i2c_eeprom_am6_get: Ignoring record id 255
    ti_i2c_eeprom_am6_get: Ignoring record id 255
    ti_i2c_eeprom_am6_get: Ignoring record id 255
    SYSFW ABI: 3.1 (firmware rev 0x0009 '9.1.2--v09.01.02 (Kool Koala)')
    SPL initial stack usage: 13424 bytes
    Trying to boot from MMC2
    Warning: Detected image signing certificate on GP device. Skipping certificate to prevent boot failure. This will fail if the image was also encrypted
    Warning: Detected image signing certificate on GP device. Skipping certificate to prevent boot failure. This will fail if the image was also encrypted
    Warning: Detected image signing certificate on GP device. Skipping certificate to prevent boot failure. This will fail if the image was also encrypted
    Warning: Detected image signing certificate on GP device. Skipping certificate to prevent boot failure. This will fail if the image was also encrypted
    Warning: Detected image signing certificate on GP device. Skipping certificate to prevent boot failure. This will fail if the image was also encrypted
    Loading Environment from nowhere... OK
    Starting ATF on ARM64 core...
    
    NOTICE:  BL31: v2.9(release):v2.9.0-614-gd7a7135d32-dirty
    NOTICE:  BL31: Built : 09:34:15, Aug 24 2023
    I/TC: 
    I/TC: OP-TEE version: 4.0.0 (gcc version 11.4.0 (GCC)) #1 Fri Oct 20 18:29:31 UTC 2023 aarch64
    I/TC: WARNING: This OP-TEE configuration might be insecure!
    I/TC: WARNING: Please check https://optee.readthedocs.io/en/latest/architecture/porting_guidelines.html
    I/TC: Primary CPU initializing
    I/TC: SYSFW ABI: 3.1 (firmware rev 0x0009 '9.1.2--v09.01.02 (Kool Koala)')
    I/TC: HUK Initialized
    I/TC: Activated SA2UL device
    I/TC: Fixing SA2UL firewall owner for GP device
    I/TC: Enabled firewalls for SA2UL TRNG device
    I/TC: SA2UL TRNG initialized
    I/TC: SA2UL Drivers initialized
    I/TC: Primary CPU switching to normal world boot
    
    U-Boot SPL 2023.04-g71b8c840ca (Nov 27 2023 - 08:55:35 +0000)
    SYSFW ABI: 3.1 (firmware rev 0x0009 '9.1.2--v09.01.02 (Kool Koala)')
    Trying to boot from MMC2
    Warning: Detected image signing certificate on GP device. Skipping certificate to prevent boot failure. This will fail if the image was also encrypted
    Warning: Detected image signing certificate on GP device. Skipping certificate to prevent boot failure. This will fail if the image was also encrypted
    
    
    U-Boot 2023.04-g71b8c840ca (Nov 27 2023 - 08:55:35 +0000)
    
    SoC:   J784S4 SR1.0 GP
    Model: Texas Instruments J784S4 EVM
    Board: J784S4X-EVM rev E4
    DRAM:  32 GiB
    idle-statesCore:  91 devices, 33 uclasses, devicetree: separate
    Flash: spi_nand nand@0: Winbond SPI NAND was found.
    spi_nand nand@0: 128 MiB, block size: 256 KiB, page size: 4096, OOB size: 128
    0 Bytes
    MMC:   mmc@4f80000: 0, mmc@4fb0000: 1
    Loading Environment from nowhere... OK
    In:    serial@2880000
    Out:   serial@2880000
    Err:   serial@2880000
    am65_cpsw_nuss ethernet@46000000: K3 CPSW: nuss_ver: 0x6BA02102 cpsw_ver: 0x6BA82102 ale_ver: 0x00293904 Ports:1 mdio_freq:1000000
    Net:   eth0: ethernet@46000000port@1
    Hit any key to stop autoboot:  0 
    switch to partitions #0, OK
    mmc1 is current device
    SD/MMC found on device 1
    Failed to load 'boot.scr'
    1572 bytes read in 24 ms (63.5 KiB/s)
    Loaded env from uEnv.txt
    Importing environment from mmc1 ...
    Running uenvcmd ...
    gpio: pin gpio@22_17 (gpio 188) value is 1
    gpio: pin gpio@22_16 (gpio 187) value is 0
    k3_r5f_rproc r5f@41000000: Core 1 is already in use. No rproc commands work
    Failed to load '/lib/firmware/j784s4-mcu-r5f0_1-fw'
    1338924 bytes read in 40 ms (31.9 MiB/s)
    Load Remote Processor 2 with data@addr=0x82000000 1338924 bytes: Success!
    322772 bytes read in 30 ms (10.3 MiB/s)
    Load Remote Processor 3 with data@addr=0x82000000 322772 bytes: Success!
    146592 bytes read in 28 ms (5 MiB/s)
    Load Remote Processor 4 with data@addr=0x82000000 146592 bytes: Success!
    146592 bytes read in 28 ms (5 MiB/s)
    Load Remote Processor 5 with data@addr=0x82000000 146592 bytes: Success!
    474304 bytes read in 31 ms (14.6 MiB/s)
    Load Remote Processor 6 with data@addr=0x82000000 474304 bytes: Success!
    146592 bytes read in 28 ms (5 MiB/s)
    Load Remote Processor 7 with data@addr=0x82000000 146592 bytes: Success!
    14942536 bytes read in 205 ms (69.5 MiB/s)
    Load Remote Processor 8 with data@addr=0x82000000 14942536 bytes: Success!
    15339848 bytes read in 184 ms (79.5 MiB/s)
    Load Remote Processor 9 with data@addr=0x82000000 15339848 bytes: Success!
    14942480 bytes read in 181 ms (78.7 MiB/s)
    Load Remote Processor 10 with data@addr=0x82000000 14942480 bytes: Success!
    14942480 bytes read in 180 ms (79.2 MiB/s)
    Load Remote Processor 11 with data@addr=0x82000000 14942480 bytes: Success!
    20312576 bytes read in 234 ms (82.8 MiB/s)
    113787 bytes read in 27 ms (4 MiB/s)
    Working FDT set to 88000000
    3943 bytes read in 26 ms (147.5 KiB/s)
    14601 bytes read in 26 ms (547.9 KiB/s)
    2607 bytes read in 26 ms (97.7 KiB/s)
    ## Flattened Device Tree blob at 88000000
       Booting using the fdt blob at 0x88000000
    Working FDT set to 88000000
    ERROR: reserving fdt memory region failed (addr=880000000 size=80000000 flags=4)
       Loading Device Tree to 000000008fee1000, end 000000008fffffff ... OK
    Working FDT set to 8fee1000
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x411fd080]
    [    0.000000] Linux version 6.1.46-rt13-gb830f72b26a2 (panjiawei@hqpmls01l) (aarch64-none-linux-gnu-11_3_1-gcc (Arm GNU Toolchain 11.3.Rel1) 11.3.1 20220712, GNU ld (Arm GNU Toolchain 11.3.Rel1) 2.38.20220708) #37 SMP PREEMPT Thu Aug  1 13:27:23 CST 2024
    [    0.000000] Machine model: Texas Instruments J784S4 EVM
    [    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002880000 (options '')
    [    0.000000] printk: bootconsole [ns16550a0] enabled
    [    0.000000] efi: UEFI not found.
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a0000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a0000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a0100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a0100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a1000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a1000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a1100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a1100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a2000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a2000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a2100000, size 31 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a2100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a4000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a4000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a4100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a4100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a5000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a5000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a5100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a5100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a6000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a6000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a6100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a6100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a7000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a7000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a7100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a7100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a8000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a8000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a8100000, size 15 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a8100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000ac000000, size 48 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-rtos-ipc-memory-region@ac000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000af000000, size 48 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-dma-memory@af000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000b2000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-c71-dma-memory@b2000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000b2100000, size 5 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-c71_0-memory@b2100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000b4000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-c71_1-dma-memory@b4000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000b4100000, size 5 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-c71_1-memory@b4100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000b6000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-c71_2-dma-memory@b6000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000b6100000, size 5 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-c71_2-memory@b6100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000b8000000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-c71_3-dma-memory@b8000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000b8100000, size 5 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-c71_3-memory@b8100000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000ba000000, size 64 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-core-heap-memory-lo@ba000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000be000000, size 8 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-virtual-eth-queues@be000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000be800000, size 24 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-r5f-virtual-eth-buffers@be800000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000880000000, size 2048 MiB
    [    0.000000] OF: reserved mem: initialized node vision-apps-core-heap-memory-hi@880000000, compatible id shared-dma-pool
    [    0.000000] OF: reserved mem: initialized node vision_apps_shared-memories, compatible id dma-heap-carveout
    [    0.000000] Reserved memory: created CMA memory pool at 0x0000000980000000, size 1792 MiB
    [    0.000000] OF: reserved mem: initialized node linux-cma-buffers@980000000, compatible id shared-dma-pool
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x00000000ffffffff]
    [    0.000000]   DMA32    empty
    [    0.000000]   Normal   [mem 0x0000000100000000-0x0000000fffffefff]
    [    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-0x00000000abffffff]
    [    0.000000]   node   0: [mem 0x00000000ac000000-0x00000000b2603fff]
    [    0.000000]   node   0: [mem 0x00000000b2604000-0x00000000b3ffffff]
    [    0.000000]   node   0: [mem 0x00000000b4000000-0x00000000b4603fff]
    [    0.000000]   node   0: [mem 0x00000000b4604000-0x00000000b5ffffff]
    [    0.000000]   node   0: [mem 0x00000000b6000000-0x00000000b6603fff]
    [    0.000000]   node   0: [mem 0x00000000b6604000-0x00000000b7ffffff]
    [    0.000000]   node   0: [mem 0x00000000b8000000-0x00000000b8603fff]
    [    0.000000]   node   0: [mem 0x00000000b8604000-0x00000000b9ffffff]
    [    0.000000]   node   0: [mem 0x00000000ba000000-0x00000000bfffffff]
    [    0.000000]   node   0: [mem 0x00000000c0000000-0x00000000ffffefff]
    [    0.000000]   node   0: [mem 0x0000000880000000-0x00000008ffffffff]
    [    0.000000]   node   0: [mem 0x0000000900000000-0x0000000fffffefff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x0000000fffffefff]
    [    0.000000] On node 0, zone Normal: 1 pages in unavailable ranges
    [    0.000000] On node 0, zone Normal: 1 pages in unavailable ranges
    [    0.000000] psci: probing for conduit method from DT.
    [    0.000000] psci: PSCIv1.1 detected in firmware.
    [    0.000000] psci: Using standard PSCI v0.2 function IDs
    [    0.000000] psci: Trusted OS migration not required
    [    0.000000] psci: SMC Calling Convention v1.4
    [    0.000000] percpu: Embedded 19 pages/cpu s38376 r8192 d31256 u77824
    [    0.000000] Detected PIPT I-cache on CPU0
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] CPU features: detected: Spectre-v3a
    [    0.000000] CPU features: detected: Spectre-BHB
    [    0.000000] CPU features: detected: ARM erratum 1742098
    [    0.000000] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
    [    0.000000] alternatives: applying boot alternatives
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 8257534
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02880000 mtdparts=47040000.spi.0:512k(ospi.tiboot3),2m(ospi.tispl),4m(ospi.u-boot),256k(ospi.env),256k(ospi.env.backup),57088k@8m(ospi.rootfs),256k(ospi.phypattern);spi-nand0:512k(ospi_nand.tiboot3),2m(ospi_nand.tispl),4m(ospi_nand.u-boot),256k(ospi_nand.env),256k(ospi_nand.env.backup),98048k@32m(ospi_nand.rootfs),256k@130816k(ospi_nand.phypattern) root=PARTUUID=76d54915-02 rw rootfstype=ext4 rootwait
    [    0.000000] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
    [    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
    [    0.000000] software IO TLB: area num 8.
    [    0.000000] software IO TLB: mapped [mem 0x00000000fbfff000-0x00000000fffff000] (64MB)
    [    0.000000] Memory: 27523768K/33554424K available (12288K kernel code, 1276K rwdata, 4048K rodata, 2112K init, 434K bss, 4195648K reserved, 1835008K cma-reserved)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    [    0.000000] rcu: Preemptible hierarchical RCU implementation.
    [    0.000000] rcu:     RCU event tracing is enabled.
    [    0.000000] rcu:     RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=8.
    [    0.000000]  Trampoline variant of Tasks RCU enabled.
    [    0.000000]  Tracing variant of Tasks RCU enabled.
    [    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
    [    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: [Firmware Bug]: GICR region 0x0000000001900000 has overlapping address
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 960 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] Root IRQ handler: gic_handle_irq
    [    0.000000] GICv3: GICv3 features: 16 PPIs
    [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001900000
    [    0.000000] ITS [mem 0x01820000-0x0182ffff]
    [    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
    [    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
    [    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @93c800000 (flat, esz 8, psz 64K, shr 0)
    [    0.000000] ITS: using cache flushing for cmd queue
    [    0.000000] GICv3: using LPI property table @0x000000093c050000
    [    0.000000] GIC: using cache flushing for LPI property table
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x000000093c060000
    [    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.008452] Console: colour dummy device 80x25
    [    0.013024] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=200000)
    [    0.023697] pid_max: default: 32768 minimum: 301
    [    0.028552] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
    [    0.036367] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
    [    0.045664] cblist_init_generic: Setting adjustable number of callback queues.
    [    0.053054] cblist_init_generic: Setting shift to 3 and lim to 1.
    [    0.059323] cblist_init_generic: Setting adjustable number of callback queues.
    [    0.066709] cblist_init_generic: Setting shift to 3 and lim to 1.
    [    0.073060] rcu: Hierarchical SRCU implementation.
    [    0.073062] rcu:     Max phase no-delay instances is 400.
    [    0.073099] printk: bootconsole [ns16550a0] printing thread started
    ntI/  TC 0: .0S8e9co77nd1a]r Py laCPtfUo r1 m iMniStI:ia mlsiiz-incog
      roIll/TerC@:1 S82e0co00n0d ardoym aCiPUn  1cr esawitetdch
     /[ g   t o0 n.0o8rm99al43 w] oPrCldI/ bMSoIo:t
      bus@100000/interrupt-controller@1800000/msi-controller@1820000 domain created
    [    0.090146] EFI services will not be available.
    [    0.090391] smp: Bringing up secondary CPUs ...
    [    0.106933] Detected PIPT I-cache on CPU1
    [    0.106998] GICv3: CPU1: found redistributor 1 region 0:0x0000000001920000
    [    0.107012] GICv3: CPU1: using allocated LPI pending table @0x000000093c070000
    [    0.107049] CPU1: Booted secondary processor 0x0000000001 [0x411fd080]
    I/TC: Secondary CPU 2 initializing
    I/TC: Secondary CPU 2 switching to normal world boot
    I/TC: S[e c  o nd0.a1ry56 7C9PU0 ]3 D eitnietcitaedli zPiIPnTg 
    a-cIac/hTeC:  onS ecCPonUd2
    try[   CP U  0.3 15sw6i83tc1h]i GnIgC tvo3 : nCorPmU2al:  wfoorulndd  breoodtis
     ributor 2 region 0:0x0000000001940000
    [    0.156844] GICv3: CPU2: using allocated LPI pending table @0x000000093c080000
    [    0.156868] CPU2: Booted secondary processor 0x0000000002 [0x411fd080]
    [    0.172760] Detected PIPT I-cache on CPU3
    [    0.172807] GICv3: CPU3: found redistributor 3 region 0:0x0000000001960000
    [    0.172819] GICv3: CPU3: using allocated LPI pending table @0x000000093c090000
    [    0.172843] CPU3: Booted secondary processor 0x0000000003 [0x411fd080]
    I/TC: Secondary CPU 4 initializing
    I/TC: Secondary CPU 4 switching to normal world boot
    I/TC: S[ e c on d0.a2r2y3 C8P78U] 5  Deitneictitaedl iPzIinPTg 
    r-caIc/hTeC:  onS ecCoPUn4da
     y[  C  P U0 5. 22s3w9i6t6c]h iGnIg Ctv3o:  nCoPrUm4al:  fwoournldd  rbeodoits
    tributor 100 region 0:0x0000000001980000
    [    0.223979] GICv3: CPU4: using allocated LPI pending table @0x000000093c0a0000
    [    0.224010] CPU4: Booted secondary processor 0x0000000100 [0x411fd080]
    [    0.239959] Detected PIPT I-cache on CPU5
    [    0.240015] GICv3: CPU5: found redistributor 101 region 0:0x00000000019a0000
    [    0.240027] GICv3: CPU5: using allocated LPI pending table @0x000000093c0b0000
    [    0.240051] CPU5: Booted secondary processor 0x0000000101 [0x411fd080]
    I/TC: Secondary CPU 6 initializing
    I/TC: Secondary CPU 6 switching to normal world boot
    I/TC: S[e c  o n0d.a2ry9 13C9P0U ]7 D eitneicttieadl iPzIinPgT 
    r-cI/acThCe:  Soen cCoPndUa6
    is [ CP U   07. 2s9wi1t44c8h]i nGgI Ctvo 3n: oCrPmUa6l:  wfoorludn d broeotd
      tributor 102 region 0:0x00000000019c0000
    [    0.291461] GICv3: CPU6: using allocated LPI pending table @0x000000093c0c0000
    [    0.291484] CPU6: Booted secondary processor 0x0000000102 [0x411fd080]
    [    0.307335] Detected PIPT I-cache on CPU7
    [    0.307393] GICv3: CPU7: found redistributor 103 region 0:0x00000000019e0000
    [    0.307405] GICv3: CPU7: using allocated LPI pending table @0x000000093c0d0000
    [    0.307429] CPU7: Booted secondary processor 0x0000000103 [0x411fd080]
    [    0.350444] smp: Brought up 1 node, 8 CPUs
    [    0.350448] SMP: Total of 8 processors activated.
    [    0.350451] CPU features: detected: 32-bit EL0 Support
    [    0.350454] CPU features: detected: CRC32 instructions
    [    0.350506] CPU: All CPU(s) started at EL2
    [    0.350507] alternatives: applying system-wide alternatives
    [    0.351707] devtmpfs: initialized
    [    0.363072] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
    [    0.363087] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
    [    0.392499] pinctrl core: initialized pinctrl subsystem
    [    0.392948] DMI not present or invalid.
    [    0.393360] NET: Registered PF_NETLINK/PF_ROUTE protocol family
    [    0.395215] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
    [    0.396346] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.397465] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.397527] audit: initializing netlink subsys (disabled)
    [    0.397697] audit: type=2000 audit(0.337:1): state=initialized audit_enabled=0 res=1
    [    0.397914] thermal_sys: Registered thermal governor 'step_wise'
    [    0.397919] thermal_sys: Registered thermal governor 'power_allocator'
    [    0.398015] cpuidle: using governor menu
    [    0.398107] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    :    0.398217] ASID allocator initialised with 65536 entrIi/eTCs
    - R[ es  e r0v.ed40 9s0h7ar8]ed p lmaemtfororym  isa0 e0n0a00bl0.eddp
    dprIi/dTgCe::  FDyinxeamd icde pshenardeendc yme cmoycryle i(ss)  ewnaitblhe d/
      0-Ic/oTnnC:ec tNoorrm
    ol[  W o  r0ld.4 0v9ir82t2ua]l KizASaLtRio dn issuapblpoedrt d uies  tdoi slabaclek d
    :  sI/eeTdC
     GA[ s y nc 0hr.4o1n2o9us46 n] oHtiugfieTcLatB:i onresg iarste erdeidsa 1bl.e00d
      iB page size, pre-allocated 0 pages
    [    0.412949] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
    [    0.412952] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.412954] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
    [    0.412956] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.412958] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
    [    0.412959] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.412961] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
    [    0.424389] k3-chipinfo 43000014.chipid: Family:J784S4 rev:SR1.0 JTAGID[0x0bb8002f] Detected
    [    0.425203] iommu: Default domain type: Translated 
    [    0.425205] iommu: DMA domain TLB invalidation policy: strict mode 
    [    0.425340] SCSI subsystem initialized
    [    0.425506] usbcore: registered new interface driver u3,之C醄    0.5[95291] printk: console [ttyS2] printing thread started
        0.425522] usbcore: registered new interface driver hub
    [    0.425536] usbcore: registered new device driver usb
    [    0.425737] pps_core: LinuxPPS API ver. 1 registered
    [    0.595294] printk: console [ttyS2] enabled
    [    0.595298] printk: bootconsole [ns16550a0] disabled
    [    0.616502] printk: bootconsole [ns16550a0] printing thread stopped
    [    0.618151] davinci_mdio 46000f00.mdio: Configuring MDIO in manual mode
    [    0.651903] davinci_mdio 46000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
    [    0.652872] davinci_mdio 46000f00.mdio: phy[0]: device 46000f00.mdio:00, driver TI DP83867
    [    0.652907] am65-cpsw-nuss 46000000.ethernet: initializing am65 cpsw nuss version 0x6BA02102, cpsw version 0x6BA82102 Ports: 2 quirks:00000000
    [    0.653037] am65-cpsw-nuss 46000000.ethernet: initialized cpsw ale version 1.4
    [    0.653041] am65-cpsw-nuss 46000000.ethernet: ALE Table size 64
    [    0.653309] pps pps0: new PPS source ptp0
    [    0.653450] am65-cpsw-nuss 46000000.ethernet: CPTS ver 0x4e8a010b, freq:500000000, add_val:1 pps:1
    [    0.654717] davinci_mdio c000f00.mdio: Configuring MDIO in manual mode
    [    0.813896] davinci_mdio c000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
    [    0.814525] gpy_probe ---------------> in
    [    0.818436] gpy_probe  ret = 0
    [    0.818437] gpy_probe ++++++++++++++++ out >
    [    0.818670] Maxlinear Ethernet GPY211C c000f00.mdio:00: Firmware Version: 8.167 (0x88A7)
    [    0.821848] davinci_mdio c000f00.mdio: phy[0]: device c000f00.mdio:00, driver Maxlinear Ethernet GPY211C
    [    0.821865] am65-cpsw-nuss c000000.ethernet: initializing am65 cpsw nuss version 0x6BA03102, cpsw version 0x6BA82902 Ports: 9 quirks:00000000
    [    0.822852] davinci_mdio c200f00.mdio: Configuring MDIO in manual mode
    [    0.859892] davinci_mdio c200f00.mdio: davinci mdio revision 9.7, bus freq 1000000
    [    0.860676] davinci_mdio c200f00.mdio: phy[0]: device c200f00.mdio:00, driver TI DP83867
    [    0.860692] am65-cpsw-nuss c200000.ethernet: initializing am65 cpsw nuss version 0x6BA02102, cpsw version 0x6BA82102 Ports: 2 quirks:00000000
    [    0.860785] am65-cpsw-nuss c200000.ethernet: Use random MAC address
    [    0.860790] am65-cpsw-nuss c200000.ethernet: initialized cpsw ale version 1.4
    [    0.860792] am65-cpsw-nuss c200000.ethernet: ALE Table size 64
    [    0.861152] am65-cpsw-nuss c200000.ethernet: CPTS ver 0x4e8a010b, freq:250000000, add_val:3 pps:0
    [    0.862552] am65-cpts 310d0000.cpts: CPTS ver 0x4e8a010c, freq:250000000, add_val:3 pps:0
    [    0.863325] mmc0: CQHCI version 5.10
    [    0.902896] mmc0: SDHCI controller on 4f80000.mmc [4f80000.mmc] using ADMA 64-bit
    [    0.986145] mmc0: Command Queue Engine enabled
    [    0.986154] mmc0: new HS200 MMC card at address 0001
    [    0.986567] mmcblk0: mmc0:0001 G1M15L 29.6 GiB 
    [    0.987708]  mmcblk0: p1 p2
    [    0.988051] mmcblk0boot0: mmc0:0001 G1M15L 31.5 MiB 
    [    0.988780] mmcblk0boot1: mmc0:0001 G1M15L 31.5 MiB 
    [    0.989398] mmcblk0rpmb: mmc0:0001 G1M15L 4.00 MiB, chardev (239:0)
    [    1.146358] tps6594-rtc tps6594-rtc.4.auto: registered as rtc0
    [    1.146499] tps6594-rtc tps6594-rtc.4.auto: hctosys: unable to read the hardware clock
    [    1.146860] omap-mailbox 31f80000.mailbox: omap mailbox rev 0x66fca100
    [    1.147151] omap-mailbox 31f81000.mailbox: omap mailbox rev 0x66fca100
    [    1.147417] omap-mailbox 31f82000.mailbox: omap mailbox rev 0x66fca100
    [    1.147681] omap-mailbox 31f83000.mailbox: omap mailbox rev 0x66fca100
    [    1.147941] omap-mailbox 31f84000.mailbox: omap mailbox rev 0x66fca100
    [    1.148206] omap-mailbox 31f85000.mailbox: omap mailbox rev 0x66fca100
    [    1.150578] j721e-pcie-host 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
    [    1.150604] j721e-pcie-host 2900000.pcie:       IO 0x0010001000..0x0010010fff -> 0x0010001000
    [    1.150616] j721e-pcie-host 2900000.pcie:      MEM 0x0010011000..0x0017ffffff -> 0x0010011000
    [    1.150627] j721e-pcie-host 2900000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    2.154678] j721e-pcie-host 2900000.pcie: PCI host bridge to bus 0000:00
    [    2.154682] pci_bus 0000:00: root bus resource [bus 00-ff]
    [    2.154688] pci_bus 0000:00: root bus resource [io  0x0000-0xffff] (bus address [0x10001000-0x10010fff])
    [    2.154691] pci_bus 0000:00: root bus resource [mem 0x10011000-0x17ffffff]
    [    2.154726] pci 0000:00:00.0: [104c:b00d] type 01 class 0x060400
    [    2.154730] pci_bus 0000:00: 2-byte config write to 0000:00:00.0 offset 0x4 may corrupt adjacent RW1C bits
    [    2.154841] pci 0000:00:00.0: supports D1
    [    2.154843] pci 0000:00:00.0: PME# supported from D0 D1 D3hot
    [    2.156967] pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
    [    2.157091] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
    [    2.157111] pci 0000:00:00.0: PCI bridge to [bus 01]
    [    2.157401] pcieport 0000:00:00.0: PME: Signaling with IRQ 485
    [    2.157596] pcieport 0000:00:00.0: AER: enabled with IRQ 485
    [    2.157921] j721e-pcie-host 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
    [    2.157939] j721e-pcie-host 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
    [    2.157948] j721e-pcie-host 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
    [    2.157962] j721e-pcie-host 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
    [    3.159790] j721e-pcie-host 2910000.pcie: PCI host bridge to bus 0001:00
    [    3.159793] pci_bus 0001:00: root bus resource [bus 00-ff]
    [    3.159797] pci_bus 0001:00: root bus resource [io  0x10000-0x1ffff] (bus address [0x18001000-0x18010fff])
    [    3.159800] pci_bus 0001:00: root bus resource [mem 0x18011000-0x1fffffff]
    [    3.159823] pci 0001:00:00.0: [104c:b013] type 01 class 0x060400
    [    3.159827] pci_bus 0001:00: 2-byte config write to 0001:00:00.0 offset 0x4 may corrupt adjacent RW1C bits
    [    3.159970] pci 0001:00:00.0: supports D1
    [    3.159972] pci 0001:00:00.0: PME# supported from D0 D1 D3hot
    [    3.160002] pci 0001:00:00.0: reg 0x224: [mem 0x00000000-0x003fffff 64bit]
    [    3.160007] pci 0001:00:00.0: VF(n) BAR0 space: [mem 0x00000000-0x00ffffff 64bit] (contains BAR0 for 4 VFs)
    [    3.161981] pci 0001:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
    [    3.162104] pci_bus 0001:01: busn_res: [bus 01-ff] end is updated to 01
    [    3.162121] pci 0001:00:00.0: BAR 7: assigned [mem 0x18400000-0x193fffff 64bit]
    [    3.162128] pci 0001:00:00.0: PCI bridge to [bus 01]
    [    3.162354] pcieport 0001:00:00.0: PME: Signaling with IRQ 489
    [    3.162488] pcieport 0001:00:00.0: AER: enabled with IRQ 489
    [    3.163284] ti-udma 285c0000.dma-controller: Channels: 22 (tchan: 11, rchan: 11, gp-rflow: 8)
    [    3.164877] ti-udma 31150000.dma-controller: Channels: 66 (tchan: 33, rchan: 33, gp-rflow: 16)
    [    3.168340] spi-nand spi0.0: Winbond SPI NAND was found.
    [    3.168343] spi-nand spi0.0: 128 MiB, block size: 256 KiB, page size: 4096, OOB size: 128
    [    3.168516] 7 fixed-partitions partitions found on MTD device spi0.0
    [    3.168521] Creating 7 MTD partitions on "spi0.0":
    [    3.168524] 0x000000000000-0x000000080000 : "ospi_nand.tiboot3"
    [    3.169536] 0x000000080000-0x000000280000 : "ospi_nand.tispl"
    [    3.170856] 0x000000280000-0x000000680000 : "ospi_nand.u-boot"
    [    3.172823] 0x000000680000-0x0000006c0000 : "ospi_nand.env"
    [    3.173520] 0x0000006c0000-0x000000700000 : "ospi_nand.env.backup"
    [    3.174215] 0x000002000000-0x000007fc0000 : "ospi_nand.rootfs"
    [    3.207273] 0x000007fc0000-0x000008000000 : "ospi_nand.phypattern"
    [    3.210179] spi-nor spi1.0: mt25qu512a (65536 Kbytes)
    [    3.210217] 7 fixed-partitions partitions found on MTD device 47050000.spi.0
    [    3.210222] Creating 7 MTD partitions on "47050000.spi.0":
    [    3.210225] 0x000000000000-0x000000080000 : "qspi.tiboot3"
    [    3.210884] 0x000000080000-0x000000280000 : "qspi.tispl"
    [    3.211465] 0x000000280000-0x000000680000 : "qspi.u-boot"
    [    3.212081] 0x000000680000-0x0000006c0000 : "qspi.env"
    [    3.212648] 0x0000006c0000-0x000000700000 : "qspi.env.backup"
    [    3.213254] 0x000000800000-0x000003fc0000 : "qspi.rootfs"
    [    3.213845] 0x000003fc0000-0x000004000000 : "qspi.phypattern"
    [    3.215024] davinci_mdio 46000f00.mdio: Configuring MDIO in manual mode
    [    3.247905] davinci_mdio 46000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
    [    3.248978] davinci_mdio 46000f00.mdio: phy[0]: device 46000f00.mdio:00, driver TI DP83867
    [    3.248995] am65-cpsw-nuss 46000000.ethernet: initializing am65 cpsw nuss version 0x6BA02102, cpsw version 0x6BA82102 Ports: 2 quirks:00000000
    [    3.249136] am65-cpsw-nuss 46000000.ethernet: initialized cpsw ale version 1.4
    [    3.249139] am65-cpsw-nuss 46000000.ethernet: ALE Table size 64
    [    3.249415] pps pps0: new PPS source ptp1
    [    3.249585] am65-cpsw-nuss 46000000.ethernet: CPTS ver 0x4e8a010b, freq:500000000, add_val:1 pps:1
    [    3.268838] am65-cpsw-nuss 46000000.ethernet: set new flow-id-base 48
    [    3.270367] davinci_mdio c000f00.mdio: Configuring MDIO in manual mode
    [    3.429898] davinci_mdio c000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
    [    3.430549] gpy_probe ---------------> in
    [    3.434472] gpy_probe  ret = 0
    [    3.434473] gpy_probe ++++++++++++++++ out >
    [    3.434704] Maxlinear Ethernet GPY211C c000f00.mdio:00: Firmware Version: 8.167 (0x88A7)
    [    3.437876] davinci_mdio c000f00.mdio: phy[0]: device c000f00.mdio:00, driver Maxlinear Ethernet GPY211C
    [    3.437896] am65-cpsw-nuss c000000.ethernet: initializing am65 cpsw nuss version 0x6BA03102, cpsw version 0x6BA82902 Ports: 9 quirks:00000000
    [    3.439109] am65-cpsw-nuss c000000.ethernet: Use random MAC address
    [    3.439128] am65-cpsw-nuss c000000.ethernet: initialized cpsw ale version 1.5
    [    3.439131] am65-cpsw-nuss c000000.ethernet: ALE Table size 512
    [    3.439546] am65-cpsw-nuss c000000.ethernet: CPTS ver 0x4e8a010c, freq:250000000, add_val:3 pps:0
    [    3.459645] am65-cpsw-nuss c000000.ethernet: set new flow-id-base 82
    [    3.461265] davinci_mdio c200f00.mdio: Configuring MDIO in manual mode
    [    3.494901] davinci_mdio c200f00.mdio: davinci mdio revision 9.7, bus freq 1000000
    [    3.495759] davinci_mdio c200f00.mdio: phy[0]: device c200f00.mdio:00, driver TI DP83867
    [    3.495776] am65-cpsw-nuss c200000.ethernet: initializing am65 cpsw nuss version 0x6BA02102, cpsw version 0x6BA82102 Ports: 2 quirks:00000000
    [    3.495861] am65-cpsw-nuss c200000.ethernet: Use random MAC address
    [    3.495872] am65-cpsw-nuss c200000.ethernet: initialized cpsw ale version 1.4
    [    3.495875] am65-cpsw-nuss c200000.ethernet: ALE Table size 64
    [    3.496203] am65-cpsw-nuss c200000.ethernet: CPTS ver 0x4e8a010b, freq:200000000, add_val:4 pps:0
    [    3.530577] am65-cpsw-nuss c200000.ethernet: set new flow-id-base 83
    [    3.532143] k3-dsp-rproc 64800000.dsp: assigned reserved memory node vision-apps-c71-dma-memory@b2000000
    [    3.532353] k3-dsp-rproc 64800000.dsp: configured DSP for IPC-only mode
    [    3.532430] remoteproc remoteproc0: 64800000.dsp is available
    [    3.532466] remoteproc remoteproc0: attaching to 64800000.dsp
    [    3.532616] remoteproc remoteproc0: unsupported resource 65538
    [    3.532630] mmc1: CQHCI version 5.10
    [    3.532679] k3-dsp-rproc 64800000.dsp: DSP initialized in IPC-only mode
    [    3.532687] rproc-virtio rproc-virtio.5.auto: assigned reserved memory node vision-apps-c71-dma-memory@b2000000
    [    3.532724] rproc-virtio rproc-virtio.5.auto: registered virtio0 (type 7)
    [    3.532728] remoteproc remoteproc0: remote processor 64800000.dsp is now attached
    [    3.533010] k3-dsp-rproc 65800000.dsp: assigned reserved memory node vision-apps-c71_1-dma-memory@b4000000
    [    3.533193] k3-dsp-rproc 65800000.dsp: configured DSP for IPC-only mode
    [    3.533252] remoteproc remoteproc1: 65800000.dsp is available
    [    3.533297] remoteproc remoteproc1: attaching to 65800000.dsp
    [    3.533379] remoteproc remoteproc1: unsupported resource 65538
    [    3.533403] k3-dsp-rproc 65800000.dsp: DSP initialized in IPC-only mode
    [    3.533408] rproc-virtio rproc-virtio.6.auto: assigned reserved memory node vision-apps-c71_1-dma-memory@b4000000
    [    3.533432] rproc-virtio rproc-virtio.6.auto: registered virtio1 (type 7)
    [    3.533435] remoteproc remoteproc1: remote processor 65800000.dsp is now attached
    [    3.533676] k3-dsp-rproc 66800000.dsp: assigned reserved memory node vision-apps-c71_2-dma-memory@b6000000
    [    3.533850] k3-dsp-rproc 66800000.dsp: configured DSP for IPC-only mode
    [    3.533912] remoteproc remoteproc2: 66800000.dsp is available
    [    3.533934] remoteproc remoteproc2: attaching to 66800000.dsp
    [    3.534000] remoteproc remoteproc2: unsupported resource 65538
    [    3.534030] k3-dsp-rproc 66800000.dsp: DSP initialized in IPC-only mode
    [    3.534034] rproc-virtio rproc-virtio.7.auto: assigned reserved memory node vision-apps-c71_2-dma-memory@b6000000
    [    3.534060] rproc-virtio rproc-virtio.7.auto: registered virtio2 (type 7)
    [    3.534063] remoteproc remoteproc2: remote processor 66800000.dsp is now attached
    [    3.534292] k3-dsp-rproc 67800000.dsp: assigned reserved memory node vision-apps-c71_3-dma-memory@b8000000
    [    3.534468] k3-dsp-rproc 67800000.dsp: configured DSP for IPC-only mode
    [    3.534521] remoteproc remoteproc3: 67800000.dsp is available
    [    3.534543] remoteproc remoteproc3: attaching to 67800000.dsp
    [    3.534610] remoteproc remoteproc3: unsupported resource 65538
    [    3.534631] k3-dsp-rproc 67800000.dsp: DSP initialized in IPC-only mode
    [    3.534635] rproc-virtio rproc-virtio.8.auto: assigned reserved memory node vision-apps-c71_3-dma-memory@b8000000
    [    3.534658] rproc-virtio rproc-virtio.8.auto: registered virtio3 (type 7)
    [    3.534661] remoteproc remoteproc3: remote processor 67800000.dsp is now attached
    [    3.535471] debugfs: Directory 'pd:74' with parent 'pm_genpd' already present!
    [    3.535493] debugfs: Directory 'pd:73' with parent 'pm_genpd' already present!
    [    3.535526] debugfs: Directory 'pd:72' with parent 'pm_genpd' already present!
    [    3.536094] debugfs: Directory 'pd:335' with parent 'pm_genpd' already present!
    [    3.536111] debugfs: Directory 'pd:333' with parent 'pm_genpd' already present!
    [    3.536141] debugfs: Directory 'pd:332' with parent 'pm_genpd' already present!
    [    3.546290] ALSA device list:
    [    3.546297]   No soundcards found.
    [    3.573601] mmc1: SDHCI controller on 4fb0000.mmc [4fb0000.mmc] using ADMA 64-bit
    [    3.579167] Waiting for root device PARTUUID=76d54915-02...
    [    3.629196] mmc1: new ultra high speed SDR104 SDHC card at address aaaa
    [    3.629685] mmcblk1: mmc1:aaaa SL32G 29.7 GiB 
    [    3.632267]  mmcblk1: p1 p2
    [    3.672054] EXT4-fs (mmcblk1p2): recovery complete
    [    3.672899] EXT4-fs (mmcblk1p2): mounted filesystem with ordered data mode. Quota mode: none.
    [    3.672933] VFS: Mounted root (ext4 filesystem) on device 179:98.
    [    3.676806] devtmpfs: mounted
    [    3.677821] Freeing unused kernel memory: 2112K
    [    3.807003] Run /sbin/init as init process
    [    3.980418] systemd[1]: System time before build time, advancing clock.
    [    4.010350] systemd[1]: systemd 250.5+ running in system mode (+PAM -AUDIT -SELINUX -APPARMOR +IMA -SMACK +SECCOMP -GCRYPT -GNUTLS -OPENSSL +ACL +BLKID -CURL -ELFUTILS -FIDO2 -IDN2 -IDN -IPTC +KMOD -LIBCRYPTSETUP +LIBFDISK -PCRE2 -PWQUALITY -P11KIT -QRENCODE -BZIP2 -LZ4 -XZ -ZLIB +ZSTD -BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=hybrid)
    [    4.010704] systemd[1]: Detected architecture arm64.
    
    Welcome to Arago 2023.10!
    
    [    4.081608] systemd[1]: Hostname set to <j784s4-evm>.
    [    4.138675] systemd-sysv-generator[208]: SysV service '/etc/init.d/netopeer2-server' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
    [    4.139812] systemd-sysv-generator[208]: SysV service '/etc/init.d/sysrepo' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
    [    4.139897] systemd-sysv-generator[208]: SysV service '/etc/init.d/thermal-zone-init' lacks a native systemd unit file. Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it more safe and robust.
    [    4.277216] systemd[1]: Binding to IPv6 address not available since kernel does not support IPv6.
    [    4.277236] systemd[1]: Binding to IPv6 address not available since kernel does not support IPv6.
    [    4.291130] systemd[1]: /lib/systemd/system/bt-enable.service:9: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether.
    [    4.316405] systemd[1]: /etc/systemd/system/sync-clocks.service:11: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether.
    [    4.345569] systemd[1]: Queued start job for default target Graphical Interface.
    [  OK  ] Created slice Slice /system/getty    4.387495] systemd[1]: Created slice Slice /system/getty.
    0m.
    [  OK  ] Created slice Slice /system/modprob[    4.402242] systemd[1]: Created slice Slice /system/modprobe.
    e.
    [  OK  ] Created slice Slice /system/serial-[    4.417086] systemd[1]: Created slice Slice /system/serial-getty.
    getty.
    [  OK  ] Created slice User and Session Slic[    4.431805] systemd[1]: Created slice User and Session Slice.
    e.
    [  OK  ] Started Dispatch Password 鈥s to [    4.446075] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    Console Directory Watch.
    [  OK  ] Started Forward Password R鈥ests [    4.465011] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    to Wall Directory Watch.
    [  OK  ] Reached target Path Units.
    [    4.481085] systemd[1]: Reached target Path Units.
    [  OK  ] Reached target Remote File Systems   4.491250] systemd[1]: Reached target Remote File Systems.
    [0m.
    [  OK  ] Reached target Slice Units.
    [    4.504948] systemd[1]: Reached target Slice Units.
    [  OK  ] Reached target Swaps.
    [    4.515286] systemd[1]: Reached target Swaps.
    [  OK  ] Listening on RPCbind Server Activat[    4.544015] systemd[1]: Listening on RPCbind Server Activation Socket.
    ion Socket.
    [  OK  ] Reached target RPC Port Mapper.[    4.559005] systemd[1]: Reached target RPC Port Mapper.
    
    [  OK  ] Listening on Process Core Dump Sock[    4.577033] systemd[1]: Listening on Process Core Dump Socket.
    et.
    [  OK  ] Listening on initctl Compatibility [    4.591061] systemd[1]: Listening on initctl Compatibility Named Pipe.
    Named Pipe.
    [  OK  ] Listening on Journal Audit Socket    4.606209] systemd[1]: Listening on Journal Audit Socket.
    0m.
    [  OK  ] Listening on Journal Socket (/dev/l[    4.620111] systemd[1]: Listening on Journal Socket (/dev/log).
    og).
    [  OK  ] Listening on Journal Socket.
    [    4.634145] systemd[1]: Listening on Journal Socket.
    [  OK  ] Listening on Network Service Netlin[    4.644900] systemd[1]: Listening on Network Service Netlink Socket.
    k Socket.
    [  OK  ] Listening on udev Control Socket    4.659168] systemd[1]: Listening on udev Control Socket.
    m.
    [  OK  ] Listening on udev Kernel Socket[    4.673068] systemd[1]: Listening on udev Kernel Socket.
    .
    [  OK  ] Listening on User Database Manager [    4.687095] systemd[1]: Listening on User Database Manager Socket.
    Socket.
             Mounting Huge Pages File System...
    [    4.713173] systemd[1]: Mounting Huge Pages File System...
             Mounting POSIX Message Queue File System..[    4.726270] systemd[1]: Mounting POSIX Message Queue File System...
    .
             Mounting Kernel Debug File System...
    [    4.743499] systemd[1]: Mounting Kernel Debug File System...
    [    4.754662] systemd[1]: Kernel Trace File System was skipped because of a failed condition check (ConditionPathExists=/sys/kernel/tracing).
    [    4.760134] systemd[1]: Mounting Temporary Directory /tmp...
             Mounting Temporary Directory /tmp...
    [    4.779171] systemd[1]: Create List of Static Device Nodes was skipped because of a failed condition check (ConditionFileNotEmpty=/lib/modules/6.1.46-rt13-gb830f72b26a2/modules.devname).
    [    4.781416] systemd[1]: Starting Load Kernel Module configfs...
             Starting Load Kernel Module configfs...
             Starting Load Kernel Module drm...
    [    4.813069] systemd[1]: Starting Load Kernel Module drm...
             Starting Load Kernel Module fuse...
    [    4.825784] systemd[1]: Starting Load Kernel Module fuse...
             Starting Start psplash boot splash screen.[    4.857308] systemd[1]: Starting Start psplash boot splash screen...
    ..
             Starting RPC Bind...
    [    4.875537] systemd[1]: Starting RPC Bind...
    [    4.883925] systemd[1]: File System Check on Root Device was skipped because of a failed condition check (ConditionPathIsReadWrite=!/).
             Starting Journal Service...
    [    4.899037] systemd[1]: Starting Journal Service...
             Starting Load Kernel Modules...
    [    4.915513] systemd[1]: Starting Load Kernel Modules...
             Starting Generate network 鈥s from Kernel co[    4.928905] systemd[1]: Starting Generate network units from Kernel command line...
    mmand line...
             Starting Remount Root and Kernel File Systems   4.948440] systemd[1]: Starting Remount Root and Kernel File Systems...
    [0m...
    [    4.962780] EXT4-fs (mmcblk1p2): re-mounted. Quota mode: none.
             Starting Coldplug All udev Devices...
    [    4.966476] systemd[1]: Starting Coldplug All udev Devices...
    [    4.984847] systemd[1]: Started RPC Bind.
    [  OK  ] Started RPC Bind.
    [  OK  ] Mounted Huge Pages File System.[    4.995361] systemd[1]: Mounted Huge Pages File System.
    
    [  OK  ] Mounted POSIX Message Queue File Sy[    5.009303] systemd[1]: Mounted POSIX Message Queue File System.
    stem.
    [  OK  ] Mounted Kernel Debug File System    5.024318] systemd[1]: Mounted Kernel Debug File System.
    m.
    [  OK  ] Started Journal Service.
    [    5.038283] systemd[1]: Started Journal Service.
    [  OK  ] Mounted Temporary Directory /tmp.
    [  OK  ] Finished Load Kernel Module configfs.
    [  OK  ] Finished Load Kernel Module drm.
    [  OK  ] Finished Load Kernel Module fuse.
    [FAILED] Failed to start Start psplash boot splash screen.
    See 'systemctl status psplash-start.service' for details.
    [DEPEND] Dependency failed for Star鈥rogress communication helper.
    [FAILED] Failed to start Load Kernel Modules.
    See 'systemctl status systemd-modules-load.service' for details.
    [  OK  ] Finished Generate network units from Kernel command line.
    [  OK  ] Finished Remount Root and Kernel File Systems.
             Mounting Kernel Configuration File System...
             Starting Flush Journal to Persistent Storage...
    [    5.187225] systemd-journald[225]: Received client request to flush runtime journal.
             Starting Apply Kernel Variables...
             Starting Create Static Device Nodes in /dev...
    [  OK  ] Mounted Kernel Configuration File System.
    [  OK  ] Finished Flush Journal to Persistent Storage.
    [  OK  ] Finished Apply Kernel Variables.
    [  OK  ] Finished Create Static Device Nodes in /dev.
    [  OK  ] Reached target Preparation for Local File Systems.
             Mounting /media/ram...
             Mounting /var/volatile...
    [    5.303709] audit: type=1334 audit(1651167746.323:2): prog-id=5 op=LOAD
             Starting Rule-based Manage鈥or Device Events[    5.303779] audit: type=1334 audit(1651167746.323:3): prog-id=6 op=LOAD
     and Files...
    [  OK  ] Mounted /media/ram.
    [  OK  ] Mounted /var/volatile.
             Starting Load/Save Random Seed...
    [  OK  ] Reached target Local File Systems.
             Starting Create Volatile Files and Directories...
    [  OK  ] Finished Coldplug All udev Devices.
    [  OK  ] Started Rule-based Manager for Device Events and Files.
    [  OK  ] Finished Create Volatile Files and Directories.
             Starting Network Time Synchronization...
             Starting Record System Boot/Shutdown in UTMP...
    [  OK  ] Finished Record System Boot/Shutdown in UTMP.
    [  OK  ] Found device /dev/ttyS2.
    [    5.547916] random: crng init done
    [  OK  ] Finished Load/Save Random Seed.
    [    5.578228] mtdblock: MTD device 'ospi_nand.tispl' is NAND, please consider using UBI block devices instead.
    [  OK  ] Started Network Time Synchronizatio[    5.578672] mtdblock: MTD device 'ospi_nand.env.backup' is NAND, please consider using UBI block devices instead.
    n.
    [    5.584833] mtdblock: MTD device 'ospi_nand.u-boot' is NAND, please consider using UBI block devices instead.
    [  OK  ] Reached target System Initializatio[    5.589038] mtdblock: MTD device 'ospi_nand.phypattern' is NAND, please consider using UBI block devices instead.
    n.
    [    5.593341] mtdblock: MTD device 'ospi_nand.tiboot3' is NAND, please consider using UBI block devices instead.
    [    5.594518] mtdblock: MTD device 'ospi_nand.env' is NAND, please consider using UBI block devices instead.
    [    5.596338] mtdblock: MTD device 'ospi_nand.rootfs' is NAND, please consider using UBI block devices instead.
    [  OK  ] Started Daily Cleanup of Temporary Directories.
    [  OK  ] Reached target System Time Set.
    [  OK  ] Started Daily rotation of log files.
    [  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...
             Starting Console System Startup Logging...
             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  ] Finished Reboot and dump vmcore via kexec.
    [  OK  ] Finished Console System Startup Logging.
    [  OK  ] Started D-Bus System Message Bus.
    [  OK  ] Reached target Socket Units.
    [  OK  ] Reached target Basic System.
    [  OK  ] Started Job spooling tools.
    [    6.039073] mtdblock: MTD device 'ospi_nand.phypattern' is NAND, please consider using UBI block devices instead.
    [  OK  ] Started Periodic Command Scheduler.
             Starting DEMO...
             Starting Print notice about GPLv3 packages...
             Starting IPv6 Packet Filtering Framework...
    [    6.105125] mtdblock: MTD device 'ospi_nand.env.backup' is NAND, please consider using UBI block devices instead.
             Starting IPv4 Packet Filtering Framework...
    [  OK  ] Started irqbalance daemon.
             Starting Telephony service...
    [    6.163631] mtdblock: MTD device 'ospi_nand.u-boot' is NAND, please consider using UBI block devices instead.
             Starting Expand the rootfs鈥l size of the boot device....
    [  OK  ] Started startwlanap.
    [  OK  ] Started startwlansta.
    [  OK  ] Started strongSwan IPsec I鈥KEv2 [    6.212054] mtdblock: MTD device 'ospi_nand.tiboot3' is NAND, please consider using UBI block devices instead.
    daemon using ipsec.conf.
    [    6.230578] audit: type=1334 audit(1652047860.568:4): prog-id=7 op=LOAD
    [    6.230673] audit: type=1334 audit(1652047860.568:5): prog-id=8 op=LOAD
    [    6.254425] mtdblock: MTD device 'ospi_nand.rootfs' is NAND, please consider using UBI block devices instead.
             Starting User Login Management...
    [  OK  ] Started TEE Supplicant.
             Starting Telnet Server...
    [  OK  ] Started DEMO.
    [FAILED] Failed to start Print notice about GPLv3 packages.
    See 'systemctl status gplv3-notice.service' for details.
    [  OK  ] Finished IPv6 Packet Filtering Framework.
    [  OK  ] Finished IPv4 Packet Filtering Framework.
    [  OK  ] Finished Expand the rootfs鈥ull size of the boot device..
    [  OK  ] Finished Telnet Server.
    [  OK  ] Started Telephony service.
    [  OK  ] Started User Login Management.
    [  OK  ] Reached target Preparation for Network.
             Starting Network Configuration...
    [  OK  ] Started Network Configuration.
    [    6.584139] am65-cpsw-nuss c200000.ethernet eth2: PHY [c200f00.mdio:00] driver [TI DP83867] (irq=POLL)
    [    6.584157] am65-cpsw-nuss c200000.ethernet eth2: configuring for phy/rgmii-rxid link mode
             Starting Network Name Resolution...
    [    6.607468] am65-cpsw-nuss c000000.ethernet eth1: PHY [c000f00.mdio:00] driver [Maxlinear Ethernet GPY211C] (irq=POLL)
    [    6.607486] am65-cpsw-nuss c000000.ethernet eth1: configuring for phy/sgmii link mode
    [    6.615371] am65-cpsw-nuss c000000.ethernet eth1: Link is Up - Unknown/Full - flow control rx/tx
    [    6.645028] am65-cpsw-nuss 46000000.ethernet eth0: PHY [46000f00.mdio:00] driver [TI DP83867] (irq=POLL)
    [    6.645043] am65-cpsw-nuss 46000000.ethernet eth0: configuring for phy/rgmii-rxid link mode
    [  OK  ] Started Network Name Resolution.
    [  OK  ] Reached target Network.
    [  OK  ] Reached target Host and Network Name Lookups.
    [    6.755015] mtdblock: MTD device 'ospi_nand.env' is NAND, please consider using UBI block devices instead.
             Starting Avahi mDNS/DNS-SD Stack...
    [    6.770751] mtdblock: MTD device 'ospi_nand.tispl' is NAND, please consider using UBI block devices instead.
             Starting Enable and configure wl18xx bluetooth stack...
             Starting containerd container runtime...
    [  OK  ] Started Netperf Benchmark Server.
    [  OK  ] Started NFS status monitor for NFSv2/3 locking..
             Starting Simple Network Ma鈥nt Protocol (SNMP) Daemon....
             Starting Permit User Sessions...
    [FAILED] Failed to start Enable and鈥igure wl18xx bluetooth stack.
    See 'systemctl status bt-enable.service' for details.
    [  OK  ] Finished Permit User Sessions.
    [  OK  ] Started Avahi mDNS/DNS-SD Stack.
    [  OK  ] Started Getty on tty1.
    [  OK  ] Started Serial Getty on ttyS2.
    [  OK  ] Reached target Login Prompts.
             Starting Synchronize System and HW clocks...
             Starting Weston, a Wayland鈥sitor, as a system service...
    [  OK  ] Created slice Slice /system/systemd-fsck.
    [  OK  ] Found device /dev/mmcblk0p2.
    [  OK  ] Found device /dev/mmcblk0p1.
             Starting File System Check on /dev/mmcblk0p1...
             Starting File System Check on /dev/mmcblk0p2...
    [    7.211356] audit: type=1334 audit(1652047861.549:6): prog-id=9 op=LOAD
    [    7.211458] audit: type=1334 audit(1652047861.549:7): prog-id=10 op=LOAD
             Starting User Database Manager...
    [  OK  ] Finished File System Check on /dev/mmcblk0p1.
             Mounting /run/media/boot-mmcblk0p1...
    [  OK  ] Started User Database Manager.
    [  OK  ] Mounted /run/media/boot-mmcblk0p1.
    [  OK  ] Finished File System Check on /dev/mmcblk0p2.
    [  OK  ] Created slice User Slice of UID 1000.
             Mounting /run/media/rootfs-mmcblk0p2...
             Starting User Runtime Directory /run/user/1000...
    [    7.434441] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Quota mode: none.
    [  OK  ] Mounted /run/media/rootfs-mmcblk0p2.
    [  OK  ] Finished User Runtime Directory /run/user/1000.
    [  OK  ] Found device /dev/mmcblk1p1.
             Starting File System Check on /dev/mmcblk1p1...
             Starting User Manager for UID 1000...
    [    7.536027] audit: type=1006 audit(1652047861.874:8): pid=868 uid=0 old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=1 res=1
    [    7.536042] audit: type=1300 audit(1652047861.874:8): arch=c00000b7 syscall=64 success=yes exit=4 a0=8 a1=fffff2661f58 a2=4 a3=ffffb1eaa020 items=0 ppid=1 pid=868 auid=1000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=1 comm="(systemd)" exe="/lib/systemd/systemd" key=(null)
    [    7.536048] audit: type=1327 audit(1652047861.874:8): proctitle="(systemd)"
    [  OK  ] Finished Synchronize System and HW clocks.
    [  OK  ] Finished File System Check on /dev/mmcblk1p1.
             Mounting /run/media/BOOT-mmcblk1p1...
    [  OK  ] Started Simple Network Man鈥ment Protocol (SNMP) Daemon..
    [  OK  ] Mounted /run/media/BOOT-mmcblk1p1.
    [  OK  ] Started User Manager for UID 1000.
    [  OK  ] Started Session c1 of User weston.
    [    7.968141] audit: type=1006 audit(1652047862.306:9): pid=776 uid=0 old-auid=4294967295 auid=1000 tty=tty7 old-ses=4294967295 ses=2 res=1
    [    7.968159] audit: type=1300 audit(1652047862.306:9): arch=c00000b7 syscall=64 success=yes exit=4 a0=8 a1=fffff2661f58 a2=4 a3=ffffb1eaa020 items=0 ppid=1 pid=776 auid=1000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=tty7 ses=2 comm="(weston)" exe="/lib/systemd/systemd" key=(null)
    [    7.968165] audit: type=1327 audit(1652047862.306:9): proctitle="(weston)"
    [FAILED] Failed to start Weston, a 鈥positor, as a system service.
    See 'systemctl status weston.service' for details.
    [  OK  ] Started containerd container runtime.
    [  OK  ] Reached target Multi-User System.
    [  OK  ] Reached target Graphical Interface.
             Starting Record Runlevel Change in UTMP...
    [  OK  ] Finished Record Runlevel Change in UTMP.
    
     _____                    _____           _         _   
    |  _  |___ ___ ___ ___   |  _  |___ ___  |_|___ ___| |_ 
    |     |  _| .'| . | . |  |   __|  _| . | | | -_|  _|  _|
    |__|__|_| |__,|_  |___|  |__|  |_| |___|_| |___|___|_|  
                  |___|                    |___|            
    
    Arago Project j784s4-evm -
    
    Arago 2023.10 j784s4-evm -
    
    j784s4-evm login: [   13.852126] platform regulator-dp0-prw: deferred probe pending
    [   13.852137] platform regulator-dp1-prw: deferred probe pending
    

    devmem2 0x0502e000

    0x00490011

  • Hi,

    The resets property in "serdes2" this case should be "<&serdes_wiz2 4>". Can you please check with this change.

    After this change, can you also share the output of "ethtool eth1"

    Regards,
    Tanmay

  • HI , we use SERDES2 lane2 , what is that mean <&serdes_wiz2 4>? we will test later and feed back, thank you.

  • Hi,

    But in the device-tree, you have mentioned the "reg" property of serdes as <3>. This means that you are using serdes 2 lane 3.

    So basically, the reg property is the starting lane number for the protocol and cdns,num-lanes is the number of lanes being used. So if you are using only one lane at serdes 2 lane 2, you should have the reg property as <2> and cdns,num-lanes as <1>.

    The reset property is the reset signal for the lanes. You should have resets for all the lanes being used in that subnode. The reset index to use is <[0-indexed lane number + 1]>. So for serdes 2 lane 2, the reset would be <&serdes_wiz2 3> and for serdes 2 lane 3, the reset would be <&serdes_wiz2 4>.

    See this page for more details on the serdes.

    Regards,
    Tanmay

  • Thanks for help,

    we need use SERDES1,SERDES2, SERDES4 for evaluated 8 eth ports.

    should we modify k3-j784s4-main.dtsi ?  how can we do that?  there  are only SERDES0  SERDES1 SERDES2 in k3-j784s4-main.dtsi;  should we modify other file ?

    serdes_ln_ctrl:mux-controller@4080 {

    ...

    mux-reg-masks = <0x4080 0x3>, <0x4084 0x3>, /* SERDES0 lane0/1 select */

                                 ........

                                 <0x40a8 0x3>,<0x40ac 0x3>;/* SERDES2 lane2/3 select  */

    }

  • Hi Sid, Tanmay,

    As this application need to extend 8 SGMII ethernet port, so need the serdes 4 to be configured as SGMII. Please provide a example dts configuration, the feature needs to be verified before making PCB, hardware is waiting for the test conclusion.

    @Chen Chen

    In the mean time, refer this post:

    https://e2e.ti.com/support/processors-group/processors/f/processors-forum/1256003/tda4vh-q1-usb3-0-connected-serdes4-lane3-cannot-init

  • Hi,

    As this application need to extend 8 SGMII ethernet port, so need the serdes 4 to be configured as SGMII. Please provide a example dts configuration

    This is not possible to test on EVM because no connection from serdes4 are available for ethernet. Hence I can provide you with a reference device-tree file, but you won't be able to test it on EVM.

    let me know if you would like to see the reference device-tree file.

    Regards,
    Tanmay

  • Hi Tanmay,

    let me know if you would like to see the reference device-tree file.

    Yes, needed, we can work with customer debug together on their modified EVM board. 

  • Hello Chen Chen

        is this issue fixed now?

     Regards

        Semon