Because of the holidays, TI E2E™ design support forum responses will be delayed from Dec. 25 through Jan. 2. Thank you for your patience.

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.

AM625: Testing Ethernet PHY on U-Boot

Part Number: AM625
Other Parts Discussed in Thread: DP83620

Hi TI,

main_rmii2_pins_default: main-rmii2-pins-default{

            pinctrl-single,pins = <

                  AM62X_IOPAD(0x0168, PIN_INPUT, 1) /* (AE21) RGMII2_TXC.RMII2_CRS_DV */

                  AM62X_IOPAD(0x0180, PIN_INPUT, 1) /* (AD23) RGMII2_RXC.RMII2_REF_CLK */

                  AM62X_IOPAD(0x0184, PIN_INPUT, 1) /* (AE23) RGMII2_RD0.RMII2_RXD0 */

                  AM62X_IOPAD(0x0188, PIN_INPUT, 1) /* (AB20) RGMII2_RD1.RMII2_RXD1 */

                  AM62X_IOPAD(0x017c, PIN_INPUT, 1) /* (AD22) RGMII2_RX_CTL.RMII2_RX_ER */

                  AM62X_IOPAD(0x016c, PIN_OUTPUT, 1) /* (Y18) RGMII2_TD0.RMII2_TXD0 */

                  AM62X_IOPAD(0x0170, PIN_OUTPUT, 1) /* (AA18) RGMII2_TD1.RMII2_TXD1 */

                  AM62X_IOPAD(0x0164, PIN_OUTPUT, 1) /* (AA19) RGMII2_TX_CTL.RMII2_TX_EN */

            >;

      };

 

 

main_rmii1_pins_default: main-rmii1-pins-default{

            pinctrl-single,pins = <

                  AM62X_IOPAD(0x0130, PIN_INPUT, 1) /* (AE19) RGMII1_TXC.RMII1_CRS_DV */

                  AM62X_IOPAD(0x0148, PIN_INPUT, 1) /* (AD17) RGMII1_RXC.RMII1_REF_CLK */

                  AM62X_IOPAD(0x014c, PIN_INPUT, 1) /* (AB17) RGMII1_RD0.RMII1_RXD0 */

                  AM62X_IOPAD(0x0150, PIN_INPUT, 1) /* (AC17) RGMII1_RD1.RMII1_RXD1 */

                  AM62X_IOPAD(0x0144, PIN_INPUT, 1) /* (AE17) RGMII1_RX_CTL.RMII1_RX_ER */

                  AM62X_IOPAD(0x0134, PIN_OUTPUT, 1) /* (AE20) RGMII1_TD0.RMII1_TXD0 */

                  AM62X_IOPAD(0x0138, PIN_OUTPUT, 1) /* (AD20) RGMII1_TD1.RMII1_TXD1 */

                  AM62X_IOPAD(0x012c, PIN_OUTPUT, 1) /* (AD19) RGMII1_TX_CTL.RMII1_TX_EN */

            >;

      };

 

 

&cpsw3g {

      pinctrl-names = "default";

      pinctrl-0 = <&main_mdio1_pins_default

                 &main_rmii1_pins_default

                 &main_rmii2_pins_default>;

};

 

 

&cpsw_port1 {

      phy-mode = "rmii";

      phy-handle = <&cpsw3g_phy0>;

};

 

&cpsw3g_mdio{

      cpsw3g_phy0: ethernet-phy@3 {

        reg = <0x03>;

      };

 

};

 

&cpsw_port2 {

 

      phy-mode = "rmii";

      phy-handle = <&cpsw3g_phy1>;

};

 

&cpsw3g_mdio {

      cpsw3g_phy1: ethernet-phy@5 {

            reg = <0x05>;

            

      };

};

 

2. Config file

 

am62x_evm_a53_defconfig

-----------------------

 

CONFIG_PHY_TI_GENERIC=y

  

3. Driver File:

   ----------

drivers/net/phy/ti_init_phy.c

 

#ifdef CONFIG_PHY_TI_GENERIC

static struct phy_driver dp83620_driver = {

                  .name = "TI DP83620",

                  //.uid = 0x20005ce0,

                   .uid = 0x20005ce1,

                  .mask = 0xfffffff0,

                  .features = PHY_BASIC_FEATURES,

                  .config = &genphy_config_aneg,

                  .startup = &genphy_startup,

                  .shutdown = &genphy_shutdown,

 

};

#endif

 

 

#ifdef CONFIG_PHY_TI_GENERIC

phy_register(&dp83620_driver);

#endif

 

 

After these changes, We are seeing the LED's on the RJ45 Connector and can able to read the PHY register's using MII commands on U-boot. The MII dump for the status register is shown below.

  

As you can see the Auto-negotiation and Link is Completed Successfully. 

 

Then when we try to Ping the Host, the Ping Command Fails.

  At u-boot Command prompt

setenv ipaddr 192.168.1.10

setenv serverip 192.168.1.11

setenv netmask 255.255.255.0

ping 192.168.1.11

 

Kindly let us know, Whether we are missing any configuration details for Ethernet PHY (DP83620).

How to proceed further on this.

 

Regards,
Murali Chikkanna
  • We are testing the Ethernet PHY on the Custom Board.The Ethernet PHY used is DP83620.The changes made on the u-boot source code(u-boot-2021.01+gitAUTOINC+3983bffabc-g3983bffabc) to bring up the Ethernet PHY is in the above thread.

  • Hi,

    The pictures are a little hard to read. There is a link detected it looks like so lets see if packets are coming out. My first suggestion is to direct connect a PC, no switches in between. The PC needs to have Wireshark on it, this is available to run on both Windows and Linux. You will need to setup the device like you are doing but just run Wireshark on PC. You want to see the ARP frames coming from the device.

    Can you boot to Linux?

    Best Regards,

    Schuyler

  • Hi Schuyler,

    Thanks for the reply.

    Kindly find the wireshark output attached. Some packets are received at the time of ping command.

    Yes, i can able to boot Linux.

    At Linux level i have made the below changes and trying to test the interface, but no luck.


    k3-am62x-sk-common.dtsi
    -----------------------------------

    main_rmii2_pins_default: main-rmii2-pins-default{
    pinctrl-single,pins = <
    AM62X_IOPAD(0x0168, PIN_INPUT, 1) /* (AE21) RGMII2_TXC.RMII2_CRS_DV */
    AM62X_IOPAD(0x0180, PIN_OUTPUT, 1) /* (AD23) RGMII2_RXC.RMII2_REF_CLK */
    AM62X_IOPAD(0x0184, PIN_INPUT, 1) /* (AE23) RGMII2_RD0.RMII2_RXD0 */
    AM62X_IOPAD(0x0188, PIN_INPUT, 1) /* (AB20) RGMII2_RD1.RMII2_RXD1 */
    AM62X_IOPAD(0x017c, PIN_INPUT, 1) /* (AD22) RGMII2_RX_CTL.RMII2_RX_ER */
    AM62X_IOPAD(0x016c, PIN_OUTPUT, 1) /* (Y18) RGMII2_TD0.RMII2_TXD0 */
    AM62X_IOPAD(0x0170, PIN_OUTPUT, 1) /* (AA18) RGMII2_TD1.RMII2_TXD1 */
    AM62X_IOPAD(0x0164, PIN_OUTPUT, 1) /* (AA19) RGMII2_TX_CTL.RMII2_TX_EN */
    >;
    };


    main_rmii1_pins_default: main-rmii1-pins-default{
    pinctrl-single,pins = <
    AM62X_IOPAD(0x0130, PIN_INPUT, 1) /* (AE19) RGMII1_TXC.RMII1_CRS_DV */
    AM62X_IOPAD(0x0148, PIN_INPUT, 1) /* (AD17) RGMII1_RXC.RMII1_REF_CLK */
    AM62X_IOPAD(0x014c, PIN_INPUT, 1) /* (AB17) RGMII1_RD0.RMII1_RXD0 */
    AM62X_IOPAD(0x0150, PIN_INPUT, 1) /* (AC17) RGMII1_RD1.RMII1_RXD1 */
    AM62X_IOPAD(0x0144, PIN_INPUT, 1) /* (AE17) RGMII1_RX_CTL.RMII1_RX_ER */
    AM62X_IOPAD(0x0134, PIN_OUTPUT, 1) /* (AE20) RGMII1_TD0.RMII1_TXD0 */
    AM62X_IOPAD(0x0138, PIN_OUTPUT, 1) /* (AD20) RGMII1_TD1.RMII1_TXD1 */
    AM62X_IOPAD(0x012c, PIN_OUTPUT, 1) /* (AD19) RGMII1_TX_CTL.RMII1_TX_EN */
    >;
    };

    &cpsw3g {
    pinctrl-names = "default";
    pinctrl-0 = <&main_mdio1_pins_default
    &main_rmii1_pins_default
    &main_rmii2_pins_default>;
    };

    &cpsw_port1 {
    phy-mode = "rmii";
    phy-handle = <&cpsw3g_phy0>;
    };

    &cpsw_port2 {
    phy-mode = "rmii";
    phy-handle = <&cpsw3g_phy1>;
    };

    &cpsw3g_mdio {
    cpsw3g_phy0: ethernet-phy@3 {
    reg = <3>;
    //ti,rx-internal-delay = <DP83867_RGMIIDCTL_2_00_NS>;
    //ti,fifo-depth = <DP83867_PHYCR_FIFO_DEPTH_4_B_NIB>;
    //ti,min-output-impedance;
    };

    cpsw3g_phy1: ethernet-phy@5 {
    reg = <5>;
    //ti,rx-internal-delay = <DP83867_RGMIIDCTL_2_00_NS>;
    //ti,fifo-depth = <DP83867_PHYCR_FIFO_DEPTH_4_B_NIB>;
    //ti,min-output-impedance;
    };
    };


    tisdk_am62xx-evm_defconfig
    --------------------------

    CONFIG_DP83848_PHY=y

    Do i missing any condifuration changes on Linux.

    I have also attached the kernel log file for your reference. kindly check and let me know your feedback.

    Ethernet_test.txt
    boot
    switch to partitions #0, OK
    mmc0(part 0) is current device
    SD/MMC found on device 0
    Failed to load 'boot.scr'
    ** Unrecognized filesystem type **
    ERROR: reserving fdt memory region failed (addr=9e780000 size=80000)
    ERROR: reserving fdt memory region failed (addr=9e800000 size=1800000)
    ERROR: reserving fdt memory region failed (addr=9db00000 size=c00000)
    18608640 bytes read in 124 ms (143.1 MiB/s)
    ERROR: reserving fdt memory region failed (addr=9e780000 size=80000)
    ERROR: reserving fdt memory region failed (addr=9e800000 size=1800000)
    ERROR: reserving fdt memory region failed (addr=9db00000 size=c00000)
    42519 bytes read in 23 ms (1.8 MiB/s)
    ## Flattened Device Tree blob at 88000000
       Booting using the fdt blob at 0x88000000
    ERROR: reserving fdt memory region failed (addr=9c800000 size=300000)
    ERROR: reserving fdt memory region failed (addr=9cb00000 size=100000)
    ERROR: reserving fdt memory region failed (addr=9cc00000 size=e00000)
    ERROR: reserving fdt memory region failed (addr=9da00000 size=100000)
    ERROR: reserving fdt memory region failed (addr=9db00000 size=c00000)
    ERROR: reserving fdt memory region failed (addr=9e700000 size=80000)
    ERROR: reserving fdt memory region failed (addr=9e780000 size=80000)
    ERROR: reserving fdt memory region failed (addr=9e800000 size=1800000)
       Loading Device Tree to 000000008fef2000, end 000000008fffffff ... OK
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    [    0.000000] Linux version 5.10.153-g3eee621d16 (murali@ZL-FW-197) (aarch64-none-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10)) 9.2.1 20191025, GNU ld (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10)) 2.33.1.20191209) #2 SMP PREEMPT Tue Jun 27 18:40:29 IST 2023
    [    0.000000] Machine model: Texas Instruments AM625 SK
    [    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
    [    0.000000] printk: bootconsole [ns16550a0] enabled
    [    0.000000] efi: UEFI not found.
    [    0.000000] Reserved memory: created DMA memory pool at 0x000000009c800000, size 3 MiB
    [    0.000000] OF: reserved mem: initialized node ipc-memories@9c800000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x000000009cb00000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-dma-memory@9cb00000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x000000009cc00000, size 14 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-memory@9cc00000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x000000009da00000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@9da00000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x000000009db00000, size 12 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@9db00000, compatible id shared-dma-pool
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x000000009fffffff]
    [    0.000000]   DMA32    empty
    [    0.000000]   Normal   empty
    [    0.000000] Movable zone start for each node
    [    0.000000] Early memory node ranges
    [    0.000000]   node   0: [mem 0x0000000080000000-0x000000009c7fffff]
    [    0.000000]   node   0: [mem 0x000000009c800000-0x000000009e6fffff]
    [    0.000000]   node   0: [mem 0x000000009e700000-0x000000009e77ffff]
    [    0.000000]   node   0: [mem 0x000000009e780000-0x000000009fffffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x000000009fffffff]
    [    0.000000] cma: Failed to reserve 512 MiB
    [    0.000000] psci: probing for conduit method from DT.
    [    0.000000] psci: PSCIv1.1 detected in firmware.
    [    0.000000] psci: Using standard PSCI v0.2 function IDs
    [    0.000000] psci: Trusted OS migration not required
    [    0.000000] psci: SMC Calling Convention v1.2
    [    0.000000] percpu: Embedded 22 pages/cpu s50008 r8192 d31912 u90112
    [    0.000000] Detected VIPT I-cache on CPU0
    [    0.000000] CPU features: detected: ARM erratum 845719
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 129024
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=PARTUUID=bc62bfe3-dfbb-4312-b82f-7a63f2cac1aa rw rootfstype=ext4 rootwait
    [    0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
    [    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
    [    0.000000] Memory: 429580K/524288K available (10880K kernel code, 1148K rwdata, 4220K rodata, 1792K init, 432K bss, 94708K reserved, 0K cma-reserved)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, 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=4.
    [    0.000000] 	Trampoline 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=4
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 256 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] GICv3: Distributor has no Range Selector support
    [    0.000000] GICv3: 16 PPIs implemented
    [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
    [    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 @80800000 (flat, esz 8, psz 64K, shr 0)
    [    0.000000] ITS: using cache flushing for cmd queue
    [    0.000000] GICv3: using LPI property table @0x0000000080030000
    [    0.000000] GIC: using cache flushing for LPI property table
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000080040000
    [    0.000000] arch_timer: cp15 timer(s) running at 200.00MHz (phys).
    [    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns
    [    0.000004] sched_clock: 56 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns
    [    0.008511] Console: colour dummy device 80x25
    [    0.013100] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.023782] pid_max: default: 32768 minimum: 301
    [    0.028583] LSM: Security Framework initializing
    [    0.033356] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.040835] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes, linear)
    [    0.050506] rcu: Hierarchical SRCU implementation.
    [    0.055692] Platform MSI: msi-controller@1820000 domain created
    [    0.061981] PCI/MSI: /bus@f0000/interrupt-controller@1800000/msi-controller@1820000 domain created
    [    0.071220] EFI services will not be available.
    [    0.076108] smp: Bringing up secondary CPUs ...
    I/TC: Secondary CPU 1 initializing
    I/TC: Secondary CPU 1 switching to normal world boot
    I/TC: Secondary CPU 2 initializing
    I/TC: Secondary CPU 2 switching to normal world boot
    I/TC: Secondary CPU 3 initializing
    I/TC: Secondary CPU 3 switching to normal world boot
    [    0.089392] Detected VIPT I-cache on CPU1
    [    0.089428] GICv3: CPU1: found redistributor 1 region 0:0x00000000018a0000
    [    0.089443] GICv3: CPU1: using allocated LPI pending table @0x0000000080050000
    [    0.089503] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
    [    0.098153] Detected VIPT I-cache on CPU2
    [    0.098177] GICv3: CPU2: found redistributor 2 region 0:0x00000000018c0000
    [    0.098189] GICv3: CPU2: using allocated LPI pending table @0x0000000080060000
    [    0.098227] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
    [    0.106843] Detected VIPT I-cache on CPU3
    [    0.106864] GICv3: CPU3: found redistributor 3 region 0:0x00000000018e0000
    [    0.106875] GICv3: CPU3: using allocated LPI pending table @0x0000000080070000
    [    0.106908] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
    [    0.106983] smp: Brought up 1 node, 4 CPUs
    [    0.186694] SMP: Total of 4 processors activated.
    [    0.191505] CPU features: detected: 32-bit EL0 Support
    [    0.196770] CPU features: detected: CRC32 instructions
    [    0.209373] CPU: All CPU(s) started at EL2
    [    0.213580] alternatives: patching kernel code
    [    0.219267] devtmpfs: initialized
    [    0.228727] KASLR disabled due to lack of seed
    [    0.233482] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.243461] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
    [    0.250753] pinctrl core: initialized pinctrl subsystem
    [    0.256618] DMI not present or invalid.
    [    0.261185] NET: Registered protocol family 16
    [    0.266271] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
    [    0.273514] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.281455] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.290038] thermal_sys: Registered thermal governor 'step_wise'
    [    0.290043] thermal_sys: Registered thermal governor 'power_allocator'
    [    0.296711] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.310408] ASID allocator initialised with 65536 entries
    [    0.340441] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.347326] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.354199] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.361051] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.368905] cryptd: max_cpu_qlen set to 1000
    [    0.376278] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
    [    0.385347] vcc_5v0: supplied by vmain_pd
    [    0.389805] vcc_3v3_sys: supplied by vmain_pd
    [    0.394741] vcc_1v8: supplied by vcc_3v3_sys
    [    0.400166] iommu: Default domain type: Translated 
    [    0.405494] SCSI subsystem initialized
    [    0.409745] mc: Linux media interface: v0.10
    [    0.414132] videodev: Linux video capture interface: v2.00
    [    0.419807] pps_core: LinuxPPS API ver. 1 registered
    [    0.424882] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    [    0.434229] PTP clock support registered
    [    0.438273] EDAC MC: Ver: 3.0.0
    [    0.442131] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100
    [    0.449267] FPGA manager framework
    [    0.452841] Advanced Linux Sound Architecture Driver Initialized.
    [    0.459981] clocksource: Switched to clocksource arch_sys_counter
    [    0.466431] VFS: Disk quotas dquot_6.6.0
    [    0.470499] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.482898] NET: Registered protocol family 2
    [    0.487550] IP idents hash table entries: 8192 (order: 4, 65536 bytes, linear)
    [    0.495649] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear)
    [    0.504248] TCP established hash table entries: 4096 (order: 3, 32768 bytes, linear)
    [    0.512199] TCP bind hash table entries: 4096 (order: 4, 65536 bytes, linear)
    [    0.519570] TCP: Hash tables configured (established 4096 bind 4096)
    [    0.526208] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.532899] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)
    [    0.540149] NET: Registered protocol family 1
    [    0.545025] RPC: Registered named UNIX socket transport module.
    [    0.551098] RPC: Registered udp transport module.
    [    0.555934] RPC: Registered tcp transport module.
    [    0.560747] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.567341] PCI: CLS 0 bytes, default 64
    [    0.572210] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    [    0.584330] Initialise system trusted keyrings
    [    0.589110] workingset: timestamp_bits=46 max_order=17 bucket_order=0
    [    0.599420] squashfs: version 4.0 (2009/01/31) Phillip Lougher
    [    0.605952] NFS: Registering the id_resolver key type
    [    0.611159] Key type id_resolver registered
    [    0.615437] Key type id_legacy registered
    [    0.619592] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.626449] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.634220] 9p: Installing v9fs 9p2000 file system support
    [    0.674184] Key type asymmetric registered
    [    0.678382] Asymmetric key parser 'x509' registered
    [    0.683405] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
    [    0.690970] io scheduler mq-deadline registered
    [    0.695601] io scheduler kyber registered
    [    0.701815] pinctrl-single 4084000.pinctrl: 34 pins, size 136
    [    0.708144] pinctrl-single f4000.pinctrl: 171 pins, size 684
    [    0.721494] Serial: 8250/16550 driver, 10 ports, IRQ sharing enabled
    [    0.741607] brd: module loaded
    [    0.751741] loop: module loaded
    [    0.755871] megasas: 07.714.04.00-rc1
    [    0.763351] tun: Universal TUN/TAP device driver, 1.6
    [    0.769116] igbvf: Intel(R) Gigabit Virtual Function Network Driver
    [    0.775541] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
    [    0.781649] sky2: driver version 1.30
    [    0.786330] VFIO - User Level meta-driver version: 0.3
    [    0.792667] i2c /dev entries driver
    [    0.797955] sdhci: Secure Digital Host Controller Interface driver
    [    0.804297] sdhci: Copyright(c) Pierre Ossman
    [    0.809075] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.815964] ledtrig-cpu: registered to indicate activity on CPUs
    [    0.822467] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.830638] optee: probing for conduit method.
    [    0.835227] optee: revision 3.19 (d6c5d003)
    [    0.835506] optee: dynamic shared memory is enabled
    [    0.845164] optee: initialized driver
    [    0.850858] NET: Registered protocol family 17
    [    0.855586] 9pnet: Installing 9P2000 support
    [    0.860060] Key type dns_resolver registered
    [    0.864629] Loading compiled-in X.509 certificates
    [    0.880585] ti-sci 44043000.system-controller: ti,ctx-memory-region is required for suspend but not provided.
    [    0.890760] ti-sci 44043000.system-controller: ti_sci_init_suspend failed, mem suspend will be non-functional.
    [    0.900995] ti-sci 44043000.system-controller: ABI: 3.1 (firmware rev 0x0008 '8.5.3--v08.05.03 (Chill Capybar')
    [    0.966743] davinci-mcasp 2b10000.mcasp: IRQ common not found
    [    0.975119] omap-gpmc 3b000000.memory-controller: GPMC revision 6.0
    [    0.981571] gpmc_mem_init: disabling cs 0 mapped at 0x0-0x1000000
    [    1.014006] bq32k 0-0068: registered as rtc0
    [    1.019372] bq32k 0-0068: hctosys: unable to read the hardware clock
    [    1.025937] omap_i2c 4900000.i2c: bus 0 rev0.12 at 100 kHz
    [    1.032833] omap_i2c 20000000.i2c: bus 1 rev0.12 at 400 kHz
    [    1.040440] omap_i2c 20010000.i2c: bus 2 rev0.12 at 100 kHz
    [    1.046729] ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created
    [    1.055078] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
    [    1.064317] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
    [    1.073796] ti-udma 485c0100.dma-controller: Number of rings: 82
    [    1.081875] ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18)
    [    1.092967] ti-udma 485c0000.dma-controller: Number of rings: 150
    [    1.102835] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
    [    1.113014] printk: console [ttyS2] disabled
    [    1.117473] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 28, base_baud = 3000000) is a 8250
    [    1.126241] printk: console [ttyS2] enabled
    [    1.126241] printk: console [ttyS2] enabled
    [    1.134684] printk: bootconsole [ns16550a0] disabled
    [    1.134684] printk: bootconsole [ns16550a0] disabled
    [    1.148883] spi-nor spi0.0: unrecognized JEDEC id bytes: ff ff ff ff ff ff
    [    1.155791] spi-nor: probe of spi0.0 failed with error -2
    [    1.165842] adc128s052 spi5.0: supply vref not found, using dummy regulator
    [    1.174636] davinci_mdio 8000f00.mdio: Configuring MDIO in manual mode
    [    1.219991] davinci_mdio 8000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
    [    1.229458] davinci_mdio 8000f00.mdio: phy[3]: device 8000f00.mdio:03, driver TI DP83620 10/100 Mbps PHY
    [    1.238945] davinci_mdio 8000f00.mdio: phy[5]: device 8000f00.mdio:05, driver TI DP83620 10/100 Mbps PHY
    [    1.248509] am65-cpsw-nuss 8000000.ethernet: initializing am65 cpsw nuss version 0x6BA01103, cpsw version 0x6BA81103 Ports: 3 quirks:00000002
    [    1.261468] am65-cpsw-nuss 8000000.ethernet: Use random MAC address
    [    1.267739] am65-cpsw-nuss 8000000.ethernet: initialized cpsw ale version 1.5
    [    1.274862] am65-cpsw-nuss 8000000.ethernet: ALE Table size 512
    [    1.281519] am65-cpsw-nuss 8000000.ethernet: CPTS ver 0x4e8a010c, freq:500000000, add_val:1 pps:0
    [    1.293883] rtc-ti-k3 2b1f0000.rtc: registered as rtc1
    [    1.403522] mmc0: CQHCI version 5.10
    [    1.405368] davinci-mcasp 2b10000.mcasp: IRQ common not found
    [    1.420637] pinctrl-single f4000.pinctrl: pin PIN4 already requested by fc40000.spi; cannot claim for 601000.gpio
    [    1.430912] pinctrl-single f4000.pinctrl: pin-4 (601000.gpio) status -22
    [    1.437605] pinctrl-single f4000.pinctrl: could not request pin 4 (PIN4) from group main-gpio1-pins-default  on device pinctrl-single
    [    1.449581] davinci_gpio 601000.gpio: Error applying setting, reverse things back
    [    1.452024] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    [    1.457068] davinci_gpio: probe of 601000.gpio failed with error -22
    [    1.479784] debugfs: Directory 'pd:53' with parent 'pm_genpd' already present!
    [    1.487090] debugfs: Directory 'pd:52' with parent 'pm_genpd' already present!
    [    1.494554] debugfs: Directory 'pd:51' with parent 'pm_genpd' already present!
    [    1.502064] debugfs: Directory 'pd:182' with parent 'pm_genpd' already present!
    [    1.521371] ALSA device list:
    [    1.524355]   No soundcards found.
    [    1.528239] Waiting for root device PARTUUID=bc62bfe3-dfbb-4312-b82f-7a63f2cac1aa...
    [    1.536937] mmc0: Command Queue Engine enabled
    [    1.541395] mmc0: new HS200 MMC card at address 0001
    [    1.547020] mmcblk0: mmc0:0001 DG4016 14.7 GiB 
    [    1.551746] mmcblk0boot0: mmc0:0001 DG4016 partition 1 4.00 MiB
    [    1.557826] mmcblk0boot1: mmc0:0001 DG4016 partition 2 4.00 MiB
    [    1.563899] mmcblk0rpmb: mmc0:0001 DG4016 partition 3 4.00 MiB, chardev (237:0)
    [    1.576862]  mmcblk0: p1
    [    1.721722] EXT4-fs (mmcblk0p1): recovery complete
    [    1.727447] EXT4-fs (mmcblk0p1): mounted filesystem with ordered data mode. Opts: (null)
    [    1.735607] VFS: Mounted root (ext4 filesystem) on device 179:1.
    [    1.741988] devtmpfs: mounted
    [    1.746185] Freeing unused kernel memory: 1792K
    [    1.750822] Run /sbin/init as init process
    [    1.814454] systemd[1]: System time before build time, advancing clock.
    [    1.849182] NET: Registered protocol family 10
    [    1.854697] Segment Routing with IPv6
    [    1.872127] systemd[1]: systemd 244.5+ running in system mode. (+PAM -AUDIT -SELINUX +IMA -APPARMOR -SMACK +SYSVINIT +UTMP -LIBCRYPTSETUP -GCRYPT -GNUTLS +ACL +XZ -LZ4 -SECCOMP +BLKID -ELFUTILS +KMOD -IDN2 -IDN -PCRE2 default-hierarchy=hybrid)
    [    1.894251] systemd[1]: Detected architecture arm64.
    
    Welcome to Arago 2021.09!
    
    [    1.928483] systemd[1]: Set hostname to <am62xx-evm>.
    [    2.179619] random: systemd: uninitialized urandom read (16 bytes read)
    [    2.186567] systemd[1]: system-getty.slice: unit configures an IP firewall, but the local system does not support BPF/cgroup firewalling.
    [    2.198911] systemd[1]: (This warning is only shown for the first unit using IP firewalling.)
    [    2.210119] systemd[1]: Created slice system-getty.slice.
    [  OK  ] Created slice system-getty.slice.
    [    2.232164] random: systemd: uninitialized urandom read (16 bytes read)
    [    2.239948] systemd[1]: Created slice system-serial\x2dgetty.slice.
    [  OK  ] Created slice system-serial\x2dgetty.slice.
    [    2.264140] random: systemd: uninitialized urandom read (16 bytes read)
    [    2.271700] systemd[1]: Created slice User and Session Slice.
    [  OK  ] Created slice User and Session Slice.
    [    2.292449] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [  OK  ] Started Dispatch Password …ts to Console Directory Watch.
    [    2.316310] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [  OK  ] Started Forward Password R…uests to Wall Directory Watch.
    [    2.340238] systemd[1]: Reached target Paths.
    [  OK  ] Reached target Paths.
    [    2.356130] systemd[1]: Reached target Remote File Systems.
    [  OK  ] Reached target Remote File Systems.
    [    2.376092] systemd[1]: Reached target Slices.
    [  OK  ] Reached target Slices.
    [    2.392101] systemd[1]: Reached target Swap.
    [  OK  ] Reached target Swap.
    [    2.410905] systemd[1]: Listening on RPCbind Server Activation Socket.
    [  OK  ] Listening on RPCbind Server Activation Socket.
    [    2.432215] systemd[1]: Reached target RPC Port Mapper.
    [  OK  ] Reached target RPC Port Mapper.
    [    2.456187] systemd[1]: Listening on Process Core Dump Socket.
    [  OK  ] Listening on Process Core Dump Socket.
    [    2.476472] systemd[1]: Listening on initctl Compatibility Named Pipe.
    [  OK  ] Listening on initctl Compatibility Named Pipe.
    [    2.506341] systemd[1]: Condition check resulted in Journal Audit Socket being skipped.
    [    2.515202] systemd[1]: Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket (/dev/log).
    [    2.536739] systemd[1]: Listening on Journal Socket.
    [  OK  ] Listening on Journal Socket.
    [    2.552840] systemd[1]: Listening on Network Service Netlink Socket.
    [  OK  ] Listening on Network Service Netlink Socket.
    [    2.576643] systemd[1]: Listening on udev Control Socket.
    [  OK  ] Listening on udev Control Socket.
    [    2.596465] systemd[1]: Listening on udev Kernel Socket.
    [  OK  ] Listening on udev Kernel Socket.
    [    2.620422] systemd[1]: Mounting Huge Pages File System...
             Mounting Huge Pages File System...
    [    2.640238] systemd[1]: Mounting POSIX Message Queue File System...
             Mounting POSIX Message Queue File System...
    [    2.668262] systemd[1]: Mounting Kernel Debug File System...
             Mounting Kernel Debug File System...
    [    2.689122] systemd[1]: Mounting Temporary Directory (/tmp)...
             Mounting Temporary Directory (/tmp)...
    [    2.708426] systemd[1]: Starting Create list of static device nodes for the current kernel...
             Starting Create list of st…odes for the current kernel...
    [    2.740017] systemd[1]: Starting Start psplash boot splash screen...
             Starting Start psplash boot splash screen...
    [    2.768707] systemd[1]: Starting RPC Bind...
             Starting RPC Bind...
    [    2.784321] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
    [    2.798231] systemd[1]: Starting Journal Service...
             Starting Journal Service...
    [    2.817569] systemd[1]: Starting Load Kernel Modules...
             Starting Load Kernel Modules...
    [    2.831469] cryptodev: loading out-of-tree module taints kernel.
    [    2.839385] cryptodev: driver 1.10 loaded.
    [    2.842098] systemd[1]: Starting Remount Root and Kernel File Systems...
             Starting Remount Root and Kernel File Systems...
    [    2.859673] EXT4-fs (mmcblk0p1): re-mounted. Opts: (null)
    [    2.865365] ext4 filesystem being remounted at / supports timestamps until 2038 (0x7fffffff)
    [    2.869965] systemd[1]: Starting udev Coldplug all Devices...
             Starting udev Coldplug all Devices...
    [    2.897866] systemd[1]: Started RPC Bind.
    [  OK  ] Started RPC Bind.
    [    2.916895] systemd[1]: Started Journal Service.
    [  OK  ] Started Journal Service.
    [  OK  ] Mounted Huge Pages File System.
    [  OK  ] Mounted POSIX Message Queue File System.
    [  OK  ] Mounted Kernel Debug File System.
    [  OK  ] Mounted Temporary Directory (/tmp).
    [  OK  ] Started Create list of sta… nodes for the current kernel.
    [FAILED] Failed to start Start psplash boot splash screen.
    See 'systemctl status psplash-start.service' for details.
    [DEPEND] Dependency failed for Star…progress communication helper.
    [  OK  ] Started Load Kernel Modules.
    [  OK  ] Started Remount Root and Kernel File Systems.
             Mounting Kernel Configuration File System...
             Starting Flush Journal to Persistent Storage...
    [    3.134903] systemd-journald[181]: Received client request to flush runtime journal.
             Starting Apply Kernel Variables...
             Starting Create Static Device Nodes in /dev...
    [  OK  ] Mounted Kernel Configuration File System.
    [  OK  ] Started Flush Journal to Persistent Storage.
    [  OK  ] Started Apply Kernel Variables.
    [  OK  ] Started Create Static Device Nodes in /dev.
    [    3.257223] random: systemd: uninitialized urandom read (16 bytes read)
    [  OK  ] Reached target Local File Systems (Pre).
    [    3.280296] random: systemd: uninitialized urandom read (16 bytes read)
             Mounting /media/ram...
    [    3.292955] random: systemd-journal: uninitialized urandom read (16 bytes read)
             Mounting /var/volatile...
             Starting udev Kernel Device Manager...
    [  OK  ] Started udev Coldplug all Devices.
    [  OK  ] Mounted /media/ram.
    [  OK  ] Mounted /var/volatile.
    [  OK  ] Started udev Kernel Device Manager.
             Starting Load/Save Random Seed...
    [  OK  ] Reached target Local File Systems.
             Starting Create Volatile Files and Directories...
    [  OK  ] Started Create Volatile Files and Directories.
             Starting Network Time Synchronization...
             Starting Update UTMP about System Boot/Shutdown...
    [  OK  ] Started Update UTMP about System Boot/Shutdown.
    [    3.679679] random: crng init done
    [  OK  ] Started Network Time Synchronizatio[    3.688073] random: 62 urandom warning(s) missed due to ratelimiting
    n.
    [  OK  ] Started Load/Save Random Seed.
    [  OK  ] Reached target System Initialization.
    [  OK  ] Started Daily Cleanup of Temporary Directories.
    [  OK  ] Reached target System Time Set.
    [  OK  ] Reached target System Time Synchronized.
    [  OK  ] Reached target Timers.
    [  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
    [  OK  ] Listening on D-Bus System Message Bus Socket.
    [  OK  ] Listening on dropbear.socket.
    [  OK  ] Reached target Sockets.
    [  OK  ] Reached target Basic System.
    [  OK  ] Started D-Bus System Message Bus.
             Starting Print notice about GPLv3 packages...
             Starting IPv6 Packet Filtering Framework...
             Starting IPv4 Packet Filtering Framework...
             Starting Login Service...
    [  OK  ] Started TEE Supplicant.
             Starting telnetd.service...
    [  OK  ] Started IPv6 Packet Filtering Framework.
    [  OK  ] Started IPv4 Packet Filtering Framework.
    [  OK  ] Started telnetd.service.
    [  OK  ] Reached target Network (Pre).
             Starting LSB: Expand Rootfs of boot device...
             Starting Network Service...
    [    4.190475] k3-m4-rproc 5000000.m4fss: assigned reserved memory node m4f-dma-memory@9cb00000
    [    4.231710] k3-m4-rproc 5000000.m4fss: configured M4 for remoteproc mode
    [    4.289912] k3-m4-rproc 5000000.m4fss: local reset is deasserted for device
    [    4.311036] remoteproc remoteproc0: 5000000.m4fss is available
    [    4.321264] platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    [    4.325866] remoteproc remoteproc0: Direct firmware load for am62-mcu-m4f0_0-fw failed with error -2
    [    4.342689] remoteproc remoteproc0: powering up 5000000.m4fss
    [    4.348997] remoteproc remoteproc0: Direct firmware load for am62-mcu-m4f0_0-fw failed with error -2
    [    4.361214] remoteproc remoteproc0: request_firmware failed: -2
    [    4.374651] platform 78000000.r5f: configured R5F for IPC-only mode
    [    4.393014] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory@9da00000
    [  OK  ] Started LSB: Expand Rootfs of boot [    4.404834] remoteproc remoteproc1: 78000000.r5f is available
    device.
    [    4.414639] remoteproc remoteproc1: attaching to 78000000.r5f
    [  OK  ] Started Network Service.
    [    4.425076] platform 78000000.r5f: R5F core initialized in IPC-only mode
             Starting Wait for Network to be Configured[    4.433392]  remoteproc1#vdev0buffer: assigned reserved memory node r5f-dma-memory@9da00000
    ...
             Starting Network Name Resolution...
    [    4.448356] am65-cpsw-nuss 8000000.ethernet: down msc_sl e0000000 tmo 0
    [    4.459830] virtio_rpmsg_bus virtio0: rpmsg host is online
    [    4.461864] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
    [    4.473467] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
    [    4.475825]  remoteproc1#vdev0buffer: registered virtio0 (type 7)
    [    4.495219] am65-cpsw-nuss 8000000.ethernet: set new flow-id-base 19
    [    4.511324] remoteproc remoteproc1: remote processor 78000000.r5f is now attached
    [  OK  ] Started Login Service.
    [    4.564791] am65-cpsw-nuss 8000000.ethernet eth1: PHY [8000f00.mdio:05] driver [TI DP83620 10/100 Mbps PHY] (irq=POLL)
    [    4.579184] am65-cpsw-nuss 8000000.ethernet eth1: configuring for phy/rmii link mode
    [    4.609748] am65-cpsw-nuss 8000000.ethernet: down msc_sl e0000000 tmo 0
    [    4.684775] am65-cpsw-nuss 8000000.ethernet eth0: PHY [8000f00.mdio:03] driver [TI DP83620 10/100 Mbps PHY] (irq=POLL)
    [    4.697711] am65-cpsw-nuss 8000000.ethernet eth0: configuring for phy/rmii link mode
    [  OK  ] Started Network Name Resolution.
    [  OK  ] Reached target Network.
    [  OK  ] Reached target Host and Network Name Lookups.
             Starting Avahi mDNS/DNS-SD Stack...
    [  OK  ] Started NFS status monitor for NFSv2/3 locking..
             Starting Permit User Sessions...
    [  OK  ] Started 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...
    [  OK  ] Started Synchronize System and HW clocks.
    ***************************************************************
    ***************************************************************
    NOTICE: This file system contains the following GPLv3 packages:
    	bash
    	cifs-utils
    	dosfstools
    	less
    	libdw1
    	libelf1
    	libreadline8
    	parted
    
    If you do not wish to distribute GPLv3 components please remove
    the above packages prior to distribution.  This can be done using
    the opkg remove command.  i.e.:
        opkg remove <package>
    Where <package> is the name printed in the list above
    
    NOTE: If the package is a dependency of another package you
          will be notified of the dependent packages.  You should
          use the --force-removal-of-dependent-packages option to
          also remove the dependent packages as well
    ***************************************************************
    ***************************************************************
    [  OK  ] Started Print notice about GPLv3 packages.
    [    5.785054] remoteproc remoteproc2: 30074000.pru is available
    [    5.798281] remoteproc remoteproc3: 30078000.pru is available
    [    5.839474] cdns-csi2rx: probe of 30101000.csi-bridge failed with error -22
             Starting Save/Restore Sound Card State...
    [  OK  ] Started Save/Restore Sound Card State.
    [  OK  ] Reached target Sound Card.
    [  OK  ] Reached target Hardware activated USB gadget.
    [    5.993412] usbcore: registered new interface driver usbfs
    [    5.999963] usbcore: registered new interface driver hub
    [    6.005752] usbcore: registered new device driver usb
    [    6.019237] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
    [    6.024831] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 1
    [    6.032748] xhci-hcd xhci-hcd.1.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000002000010010
    [    6.042321] xhci-hcd xhci-hcd.1.auto: irq 387, io mem 0x31100000
    [    6.048769] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
    [    6.057084] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [    6.064313] usb usb1: Product: xHCI Host Controller
    [    6.069201] usb usb1: Manufacturer: Linux 5.10.153-g3eee621d16 xhci-hcd
    [    6.075819] usb usb1: SerialNumber: xhci-hcd.1.auto
    [    6.081335] hub 1-0:1.0: USB hub found
    [    6.085275] hub 1-0:1.0: 1 port detected
    [    6.094699] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
    [    6.100348] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 2
    [    6.108094] xhci-hcd xhci-hcd.1.auto: Host supports USB 3.0 SuperSpeed
    [    6.114748] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
    [    6.122955] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
    [    6.131310] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [    6.138532] usb usb2: Product: xHCI Host Controller
    [    6.143413] usb usb2: Manufacturer: Linux 5.10.153-g3eee621d16 xhci-hcd
    [    6.150039] usb usb2: SerialNumber: xhci-hcd.1.auto
    [    6.155529] hub 2-0:1.0: USB hub found
    [    6.159357] hub 2-0:1.0: config failed, hub doesn't have any ports! (err -19)
    
     _____                    _____           _         _   
    |  _  |___ ___ ___ ___   |  _  |___ ___  |_|___ ___| |_ 
    |     |  _| .'| . | . |  |   __|  _| . | | | -_|  _|  _|
    |__|__|_| |__,|_  |___|  |__|  |_| |___|_| |___|___|_|  
                  |___|                    |___|            
    
    Arago Project am62xx-evm ttyS2
    
    Arago 2021.09 am62xx-evm ttyS2
    
    am62xx-evm login: root
    root@am62xx-evm:~# dmesh   g } | grep -i [   31.836033] tlv71033: disabling
    
    BusyBox v1.31.1 (2022-12-14 11:49:43 UTC) multi-call binary.
    
    Usage: grep [-HhnlLoqvsriwFE] [-m N] [-A/B/C N] PATTERN/-e PATTERN.../-f FILE [FILE]...
    root@am62xx-evm:~# dmesg | grep -i cpsw
    [    1.248509] am65-cpsw-nuss 8000000.ethernet: initializing am65 cpsw nuss version 0x6BA01103, cpsw version 0x6BA81103 Ports: 3 quirks:00000002
    [    1.261468] am65-cpsw-nuss 8000000.ethernet: Use random MAC address
    [    1.267739] am65-cpsw-nuss 8000000.ethernet: initialized cpsw ale version 1.5
    [    1.274862] am65-cpsw-nuss 8000000.ethernet: ALE Table size 512
    [    1.281519] am65-cpsw-nuss 8000000.ethernet: CPTS ver 0x4e8a010c, freq:500000000, add_val:1 pps:0
    [    4.448356] am65-cpsw-nuss 8000000.ethernet: down msc_sl e0000000 tmo 0
    [    4.495219] am65-cpsw-nuss 8000000.ethernet: set new flow-id-base 19
    [    4.564791] am65-cpsw-nuss 8000000.ethernet eth1: PHY [8000f00.mdio:05] driver [TI DP83620 10/100 Mbps PHY] (irq=POLL)
    [    4.579184] am65-cpsw-nuss 8000000.ethernet eth1: configuring for phy/rmii link mode
    [    4.609748] am65-cpsw-nuss 8000000.ethernet: down msc_sl e0000000 tmo 0
    [    4.684775] am65-cpsw-nuss 8000000.ethernet eth0: PHY [8000f00.mdio:03] driver [TI DP83620 10/100 Mbps PHY] (irq=POLL)
    [    4.697711] am65-cpsw-nuss 8000000.ethernet eth0: configuring for phy/rmii link mode
    root@am62xx-evm:~# dmesg | grep -i cpsw    ethernet
    [    1.248509] am65-cpsw-nuss 8000000.ethernet: initializing am65 cpsw nuss version 0x6BA01103, cpsw version 0x6BA81103 Ports: 3 quirks:00000002
    [    1.261468] am65-cpsw-nuss 8000000.ethernet: Use random MAC address
    [    1.267739] am65-cpsw-nuss 8000000.ethernet: initialized cpsw ale version 1.5
    [    1.274862] am65-cpsw-nuss 8000000.ethernet: ALE Table size 512
    [    1.281519] am65-cpsw-nuss 8000000.ethernet: CPTS ver 0x4e8a010c, freq:500000000, add_val:1 pps:0
    [    4.448356] am65-cpsw-nuss 8000000.ethernet: down msc_sl e0000000 tmo 0
    [    4.495219] am65-cpsw-nuss 8000000.ethernet: set new flow-id-base 19
    [    4.564791] am65-cpsw-nuss 8000000.ethernet eth1: PHY [8000f00.mdio:05] driver [TI DP83620 10/100 Mbps PHY] (irq=POLL)
    [    4.579184] am65-cpsw-nuss 8000000.ethernet eth1: configuring for phy/rmii link mode
    [    4.609748] am65-cpsw-nuss 8000000.ethernet: down msc_sl e0000000 tmo 0
    [    4.684775] am65-cpsw-nuss 8000000.ethernet eth0: PHY [8000f00.mdio:03] driver [TI DP83620 10/100 Mbps PHY] (irq=POLL)
    [    4.697711] am65-cpsw-nuss 8000000.ethernet eth0: configuring for phy/rmii link mode
    root@am62xx-evm:~# ifconfig
    eth0      Link encap:Ethernet  HWaddr 34:08:E1:7E:8E:B5  
              UP BROADCAST MULTICAST  MTU:1500  Metric:1
              RX packets:0 errors:0 dropped:0 overruns:0 frame:0
              TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000 
              RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
    
    eth1      Link encap:Ethernet  HWaddr BA:C1:6F:51:7B:3A  
              UP BROADCAST MULTICAST  MTU:1500  Metric:1
              RX packets:0 errors:0 dropped:0 overruns:0 frame:0
              TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000 
              RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
    
    lo        Link encap:Local Loopback  
              inet addr:127.0.0.1  Mask:255.0.0.0
              inet6 addr: ::1/128 Scope:Host
              UP LOOPBACK RUNNING  MTU:65536  Metric:1
              RX packets:82 errors:0 dropped:0 overruns:0 frame:0
              TX packets:82 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000 
              RX bytes:6220 (6.0 KiB)  TX bytes:6220 (6.0 KiB)
    
    root@am62xx-evm:~# ifconfig eth0 192.168.0.9 netmask 255.255.255.0
    root@am62xx-evm:~# ifconfig eth0
    eth0      Link encap:Ethernet  HWaddr 34:08:E1:7E:8E:B5  
              inet addr:192.168.0.9  Bcast:192.168.0.255  Mask:255.255.255.0
              UP BROADCAST MULTICAST  MTU:1500  Metric:1
              RX packets:0 errors:0 dropped:0 overruns:0 frame:0
              TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000 
              RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
    
    root@am62xx-evm:~# ping 192.168.0.9
    PING 192.168.0.9 (192.168.0.9): 56 data bytes
    64 bytes from 192.168.0.9: seq=0 ttl=64 time=0.210 ms
    64 bytes from 192.168.0.9: seq=1 ttl=64 time=0.132 ms
    64 bytes from 192.168.0.9: seq=2 ttl=64 time=0.134 ms
    64 bytes from 192.168.0.9: seq=3 ttl=64 time=0.083 ms
    64 bytes from 192.168.0.9: seq=4 ttl=64 time=0.072 ms
    64 bytes from 192.168.0.9: seq=5 ttl=64 time=0.066 ms
    64 bytes from 192.168.0.9: seq=6 ttl=64 time=0.134 ms
    64 bytes from 192.168.0.9: seq=7 ttl=64 time=0.087 ms
    ^Z
    [1]+  Stopped(SIGTSTP)        ping 192.168.0.9
    root@am62xx-evm:~# ping 192.168.0.9 10
    PING 192.168.0.10 (192.168.0.10): 56 data bytes
    ^Z
    [2]+  Stopped(SIGTSTP)        ping 192.168.0.10
    root@am62xx-evm:~# 

    Regards,

    Murali Chikkanna

  • Hi schuyler,

    I have tested the for packet flowing using wireshark on both Starter Kit and the Custom Board.

    On Starter kit, I am getting some ICMP request and reply packets with some ARP Packets.

    But on the Custom Board, I am not seeing any packets flow.

    Kindly, find the attached screenshot.

    Starter Kit:

    => ping 192.168.1.10
    link up on port 1, speed 1000, full duplex
    Using ethernet@8000000port@1 device
    host 192.168.1.10 is alive

    Customer Board:

    => ping 192.168.1.10
    link up on port 1, speed 100, full duplex
    Using ethernet@8000000port@1 device

    ARP Retry count exceeded; starting again
    ping failed; host 192.168.1.10 is not alive

    Regards,

    Murali Chikkanna

      

  • Hi Murali,

    The first wireshark capture, is that the custom board? If so that shows the ARP packets are coming from the board which is what we wanted to prove. 

    Booting to Linux and performing the ping command proves that the cpsw and PHY are good are working as expected. I am not sure though the question you are asking regarding Linux, to me the network portion appears to be setup correctly.

    In the first example the .10 address was the custom board, in the second example the .10 address is being pinged. What is the .10 device here? Could you please describe the topology with a block diagram?

    Best Regards,

    Schuyler

  • Hi schuyler,

    No, the first wireshark capture is from starter kit, the second wireshark capture is for our Custom Board, where there is no packet flow.

    On Linux also we have issue on link status, kindly find the below log:

     root@am62xx-evm:~# ethtool eth0
    Settings for eth0:
    Supported ports: [ TP MII ]
    Supported link modes: 10baseT/Half 10baseT/Full
    100baseT/Half 100baseT/Full
    Supported pause frame use: Symmetric
    Supports auto-negotiation: Yes
    Supported FEC modes: Not reported
    Advertised link modes: 10baseT/Half 10baseT/Full
    100baseT/Half 100baseT/Full
    Advertised pause frame use: Symmetric
    Advertised auto-negotiation: Yes
    Advertised FEC modes: Not reported
    Speed: Unknown!
    Duplex: Unknown! (255)
    Auto-negotiation: on
    Port: Twisted Pair
    PHYAD: 3
    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: no

    and the 192.168.1.10 is the static ip address configured on Host Machine.

    Regards,

    Murali Chikkanna

  • Hi Murali,

    That is true, as you point out without a link no packets will be transmitted. I apologize as I am getting confused. The post from 2 days ago showed the wireshark of the TI EVM, is the log file in this post from TI EVM? I was thinking it wasn't because the PHYs identified are not the ones on the TI EVM. The log file is showing a successful ping.

    Best Regards,

    Schuyler

  • Hi Schuyler,

    It's been almost a week, i was stuck in this issue. But still can't able to get it work. 

    Still both on u-boot and linux, we can't able to ping successfully using custom Board. 

    From my understanding so far, the ping command is not sending any ARP packets from processor to the Ethernet PHY on Custom Board. 

    I also enabled internal loopback  on the ETHERNET PHY  and tried PING Command, but still the same result ,host is not alive.

    Is there a way to perform loop back test at the processor level (CPSW Loopback).

    Kindly let me know, how can we proceed further on this testing.

    Regards,

    Murali Chikkanna    

  • Hi,

    I will close this thread now as it related to another thread with the same topic. The issue was resolved by removing a pull down resistor on the TX data lines that was lowering voltage below 3.3V.

    Best Regards,

    Schuyler