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.

AM5748: Ethernet through PRU

Part Number: AM5748

HI ,


I am working on AM574x processor sitting on our custom board, I am trying to establish Ethernet communication through PRU-ICSS, I followed the below link ,

processors.wiki.ti.com/.../PRU-ICSS_Ethernet

I am unable the see the PRU ethernet ports when i use " ifup eth2" and  "ifconfig",

I looked into the prueth.c driver and added some prints and tried to trace the issue, it is failing to connect to phy with following error message.

 couldn't connect to phy /ocp/pruss_soc_bus@4b2a6004/pruss@0/mdio@32400/ethernet-phy@0

This is caused inside the function "prueth_netdev_init".

I am finding difficulty to understand the entire mechanism.

Is the "prueth.c" driver trying to connect to external Phy or what is it trying to do at this point?

From my initial ground work I assumed that   "am57xx-pru0-prueth-fw.elf" is loaded through remoteproc, once this firmware starts executing the PRU Ethernet would be established.

But, now I am observing that prior to loading the firmware to PRU ,  error message is popping up as  "couldn't connect to phy" from "prueth_probe" function itself.

I feel that my understanding of entire process is going wrong. Somebody please provide me an insight view of whats happening and how to resolve the issue.

Also, Where is the point where configurations is being written to external PHY through MDIO lines with reference to PRU ethernet.

Thanks,

Janardan

 

  • Hi,

    Which SDK are you using? Also could you please attach your boot log?

    The DTS file provides information to the kernel on which MDIO bus and what the address is of the PHY. By looking at the boot log if you do not see the PHY being identified as the kernel initializes the PRU eth interface will not be able to come up. If you do a ifconfig -a and the interface is not listed this could be one reason why.

    Best Regards,
    Schuyler
  • I hit reply too quick, could you also please attach the relevant portion of your board DTS file showing the PRU and MDIO nodes? Since this is a custom board is u-boot configured pin mux wise for these interfaces?

    Again, Best Regards,
    Schuyler
  • Hi Schuyler,

    Let me elaborate what exactly we are trying to do.

    Please find the attached image for the connection details,

    In our present scheme, AM5748 PRU-ICSS unit is used in MII mode and there is a ARM9 based processor from some other vendor configured to work in rev MII / PHY mode (No PHY IC in middle)

    Please find the below PinMux details.

    {MCASP3_FSX, (M11 | PIN_INPUT_SLEW)},   /* mcasp3_fsx.pr2_mii0_col */
           {MCASP3_ACLKX, (M11 | PIN_INPUT_PULLDOWN)}, /* mcasp3_aclkx.pr2_mii0_crs */
           {MCASP1_AXR13, (M11 | PIN_INPUT_PULLUP | SLEWCONTROL)}, /* mcasp1_axr13.pr2_mii_mr0_clk */
           {MCASP2_AXR2, (M11 | PIN_INPUT_SLEW)},  /* mcasp2_axr2.pr2_mii0_rxd0 */
           {MCASP2_FSX, (M11 | PIN_INPUT_SLEW)},   /* mcasp2_fsx.pr2_mii0_rxd1 */
           {MCASP2_ACLKX, (M11 | PIN_INPUT)},  /* mcasp2_aclkx.pr2_mii0_rxd2  */
           {MCASP1_AXR15, (M11 | PIN_INPUT_SLEW)}, /* mcasp1_axr15.pr2_mii0_rxd3 */
           {MCASP1_AXR14, (M11 | PIN_INPUT_SLEW)}, /* mcasp1_axr14.pr2_mii0_rxdv */
           {MCASP1_AXR0, (M11 | PIN_INPUT_PULLUP | SLEWCONTROL)},  /* C : mcasp1_axr0.pr2_mii0_rxer */
           {MCASP2_AXR3, (M11 | PIN_INPUT_SLEW)},  /* mcasp2_axr3.pr2_mii0_rxlink */
           {MCASP1_AXR1, (M11 | PIN_INPUT_PULLUP | SLEWCONTROL)},  /* C: mcasp1_axr1.pr2_mii_mt0_clk */
           {MCASP1_AXR12, (M11 | PIN_OUTPUT_PULLUP | SLEWCONTROL)},    /* mcasp1_axr12.pr2_mii0_txd0 */
           {MCASP1_AXR11, (M11 | PIN_OUTPUT_PULLUP | SLEWCONTROL)},    /* mcasp1_axr11.pr2_mii0_txd1 */
           {MCASP1_AXR10, (M11 | PIN_OUTPUT_PULLUP | SLEWCONTROL)},    /* mcasp1_axr10.pr2_mii0_txd2 */
           {MCASP1_AXR9, (M11 | PIN_OUTPUT_PULLUP | SLEWCONTROL)}, /* mcasp1_axr9.pr2_mii0_txd3 */
           {MCASP1_AXR8, (M11 | PIN_OUTPUT_PULLUP | SLEWCONTROL)}, /* mcasp1_axr8.pr2_mii0_txen */
           {MCASP1_ACLKX, (M11 | PIN_INPUT_PULLDOWN)}, /* mcasp1_aclkx.pr2_mdio_mdclk */
           {MCASP1_FSX, (M11 | PIN_INPUT_SLEW)}, /* mcasp1_fsx.pr2_mdio_data */

    Below is the section of DTS file.

     pruss2_eth: pruss2_eth {
                    compatible = "ti,am57-prueth";
                    prus = <&pru2_0>, <&pru2_1>;
                    firmware-name = "ti-pruss/am57xx-pru0-prueth-fw.elf",
                                    "ti-pruss/am57xx-pru1-prueth-fw.elf";
                    sram = <&ocmcram1>;
                    interrupt-parent = <&pruss2_intc>;
                    status = "okay";
    
                    pruss2_emac0: ethernet-mii0 {
                            phy-handle = <&pruss2_eth0_phy>;
                            phy-mode = "mii";
                            interrupts = <20>, <22>, <23>;
                            interrupt-names = "rx", "tx", "ptp_tx";
                            /* Filled in by bootloader */
                            local-mac-address = [00 00 00 00 00 00];
                    };
    
                    pruss2_emac1: ethernet-mii1 {
                            phy-handle = <&pruss2_eth1_phy>;
                            phy-mode = "mii";
                            interrupts = <21>, <23>, <24>;
                            interrupt-names = "rx", "tx", "ptp_tx";
                            /* Filled in by bootloader */
                            local-mac-address = [00 00 00 00 00 00];
                    };
            };
    
    &pruss_soc_bus1 {
            status = "okay";
    
            pruss1: pruss@0 {
                    status = "okay";
            };
    };
    
    &pruss_soc_bus2 {
            status = "okay";
    
            pruss2: pruss@0 {
                    status = "okay";
            };
    };
    
    &pruss2_mdio {
            status = "okay";
            pruss2_eth0_phy: ethernet-phy@0 {
                    reg = <0>;
                    interrupt-parent = <&gpio3>;
                    interrupts = <30 IRQ_TYPE_EDGE_FALLING>;
            };
    
            pruss2_eth1_phy: ethernet-phy@1 {
                    reg = <1>;
                    interrupt-parent = <&gpio3>;
                    interrupts = <31 IRQ_TYPE_EDGE_FALLING>;
            };
    };
    

    I have the following queries,

    1) AM5748 PRU ICSS MII mode directly connected to ARM9 based processor working in reverse MII/PHY mode, is this kind of configuration possible?

    2) Is my pin-mux and DTS configurations proper?

    3) We are using Linux SDK version 5.0, in AM574x IDK board PRU-ICSS is connected to TLK10x PHY, can you please let me know in which file is configurations written to TLK10x PHY so that I can alter this section to write the configurations to ARM 9 working in Reverse MII/PHY mode?

    Thanks,

    Janardan M

  • Hi,

    Also, please find the attached boot log.

    Thanks,

    Janardan

    U-Boot SPL 2018.01-00228-gb1361bb-dirty (Oct 04 2018 - 18:59:08)
    DRA762-GP ES1.0 ABZ package
    JD:Control is in omap24_i2c_findpsc
    JD:Control is in flush_fifi
    JD:Control is in wait_for_bb
    Trying to boot from MMC1
    no pinctrl state for default mode
    ldo_volt=81, ldo_ctrl = 80 and voltage =43
    JD: The control is in omap24_i2c_write
    JD: control is in write
    JD:Control is in wait_for_bb
    LWS status 5136
    LWS status 5136
    LWS status 260
    JD:Control is in flush_fifi
    JD: The control is in omap24_i2c_write
    JD: control is in write
    JD:Control is in wait_for_bb
    LWS status 5136
    LWS status 5136
    LWS status 260
    JD:Control is in flush_fifi
    no pinctrl state for default mode
    Card did not respond to voltage select!
    *** Warning - MMC init failed, using default environment
    
    reading u-boot.img
    reading u-boot.img
    reading u-boot.img
    reading u-boot.img
    
    
    U-Boot 2018.01-00228-gb1361bb-dirty (Oct 04 2018 - 18:59:08 +0530)
    
    CPU  : DRA762-GP ES1.0 ABZ package
    Model: TI AM5748 IDK
    BOARD: AM5748LWS DRAM:  LWS inside dram_init3 BytesLWS sdram init 1LWS dram init banksize2 GiB
    2 GiB
    MMC:   OMAP SD/MMC: 0, OMAP SD/MMC: 1
    Card did not respond to voltage select!
    *** Warning - MMC init failed, using default environment
    
    JD:Control is in omap24_i2c_findpsc
    JD:Control is in flush_fifi
    JD:Control is in wait_for_bb
    JD:Control is in omap24_i2c_findpsc
    JD:Control is in omap_i2c_xfer
    JD: control is in write
    JD:Control is in wait_for_bb
    LWS status 5136
    LWS status 5136
    LWS status 260
    JD:Control is in flush_fifi
    JD:Control is in omap_i2c_xfer
    JD: control is in write
    JD:Control is in wait_for_bb
    LWS status 5136
    LWS status 260
    JD:Control is in flush_fifi
    JD:PC is in i2c_read
    JD:Control is in wait_for_bb
    LWS status 4104
    LWS status 260
    JD:Control is in flush_fifi
    JD:Control is in omap_i2c_xfer
    JD: control is in write
    JD:Control is in wait_for_bb
    LWS status 5136
    LWS status 5136
    LWS status 260
    JD:Control is in flush_fifi
    Warning: fastboot.board_rev: unknown board revision
    Card did not respond to voltage select!
    invalid mmc device
    SCSI:  SATA link 0 timeout.
    AHCI 0001.0300 32 slots 1 ports 3 Gbps 0x1 impl SATA mode
    flags: 64bit ncq stag pm led clo only pmp pio slum part ccc apst 
    scanning bus for devices...
    Found 0 device(s).
    Net:   JD: Control entered to probe eth
    JD: Control entered to _cpsw_register
    JD: Control is in cpsw_mdio_init
    name=ethernet@48484000, mdio_base=1212698624, mdio_div=255
    JD: Control is in cpsw_phy_init
    JD: Control is in cpsw_mdio_read
    JD: Control is in cpsw_mdio_read
    JD: Control is in cpsw_mdio_write
    JD: Control is in cpsw_mdio_read
    JD: Control is in cpsw_mdio_write
    JD: Control is in cpsw_mdio_write
    JD: Control is in cpsw_mdio_write
    JD: Control is in cpsw_mdio_write
    JD: Control is in cpsw_mdio_write
    JD: Control is in cpsw_mdio_write
    JD: Control is in cpsw_mdio_write
    JD: Control is in cpsw_mdio_write
    JD: Control is in cpsw_mdio_read
    JD: Control is in cpsw_mdio_read
    JD: Control is in cpsw_mdio_read
    JD: Control is in cpsw_mdio_read
    JD: Control is in cpsw_mdio_read
    JD: Control is in cpsw_mdio_write
    JD: Control is in cpsw_mdio_read
    
    Warning: ethernet@48484000 using MAC address from ROM
    eth0: ethernet@48484000
    Hit any key to stop autoboot:  2  1  0 
    JD:Control is in omap_i2c_xfer
    JD: control is in write
    JD:Control is in wait_for_bb
    LWS status 5136
    LWS status 260
    JD:Control is in flush_fifi
    JD:PC is in i2c_read
    JD:Control is in wait_for_bb
    LWS status 4104
    LWS status 260
    JD:Control is in flush_fifi
    JD:Control is in omap_i2c_xfer
    JD: control is in write
    JD:Control is in wait_for_bb
    LWS status 5136
    LWS status 5136
    LWS status 260
    JD:Control is in flush_fifi
    JD:Control is in omap_i2c_xfer
    JD: control is in write
    JD:Control is in wait_for_bb
    LWS status 5136
    LWS status 260
    JD:Control is in flush_fifi
    JD:PC is in i2c_read
    JD:Control is in wait_for_bb
    LWS status 4104
    LWS status 260
    JD:Control is in flush_fifi
    JD:Control is in omap_i2c_xfer
    JD: control is in write
    JD:Control is in wait_for_bb
    LWS status 5136
    LWS status 5136
    LWS status 260
    JD:Control is in flush_fifi
    JD:Control is in omap_i2c_xfer
    JD: control is in write
    JD:Control is in wait_for_bb
    LWS status 5136
    LWS status 260
    JD:Control is in flush_fifi
    JD:PC is in i2c_read
    JD:Control is in wait_for_bb
    LWS status 4104
    LWS status 260
    JD:Control is in flush_fifi
    JD:Control is in omap_i2c_xfer
    JD: control is in write
    JD:Control is in wait_for_bb
    LWS status 5136
    LWS status 5136
    LWS status 260
    JD:Control is in flush_fifi
    switch to partitions #0, OK
    mmc0 is current device
    SD/MMC found on device 0
    ** Unable to read file boot.scr **
    ** Unable to read file uEnv.txt **
    switch to partitions #0, OK
    mmc0 is current device
    SD/MMC found on device 0
    3969536 bytes read in 274 ms (13.8 MiB/s)
    98665 bytes read in 38 ms (2.5 MiB/s)
    ## Flattened Device Tree blob at 88000000
       Booting using the fdt blob at 0x88000000
       Loading Device Tree to 8ffe4000, end 8ffff168 ... OK
    
    Starting kernel ...
    
    JD: Control is in setbit_and_wait_for_clear32
    JD: Control is in setbit_and_wait_for_clear32
    [    0.000000] Booting Linux on physical CPU 0x0
    [    0.000000] Linux version 4.14.40-g4796173fc5 (lekha@Ram-Team) (gcc version 4.8.4 (Ubuntu/Linaro 4.8.4-2ubuntu1~14.04.1)) #3 SMP PREEMPT Mon Oct 8 10:28:28 IST 2018
    [    0.000000] CPU: ARMv7 Processor [412fc0f2] revision 2 (ARMv7), cr=30c5387d
    [    0.000000] CPU: div instructions available: patching division code
    [    0.000000] CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction cache
    [    0.000000] OF: fdt: Machine model: TI AM5748 IDK
    [    0.000000] Memory policy: Data cache writealloc
    [    0.000000] efi: Getting EFI parameters from FDT:
    [    0.000000] efi: UEFI not found.
    [    0.000000] Reserved memory: created CMA memory pool at 0x0000000095800000, size 56 MiB
    [    0.000000] OF: reserved mem: initialized node ipu2-memory@95800000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created CMA memory pool at 0x0000000099000000, size 64 MiB
    [    0.000000] OF: reserved mem: initialized node dsp1-memory@99000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created CMA memory pool at 0x000000009d000000, size 32 MiB
    [    0.000000] OF: reserved mem: initialized node ipu1-memory@9d000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created CMA memory pool at 0x000000009f000000, size 8 MiB
    [    0.000000] OF: reserved mem: initialized node dsp2-memory@9f000000, compatible id shared-dma-pool
    [    0.000000] cma: Reserved 24 MiB at 0x00000000fd400000
    [    0.000000] OMAP4: Map 0x00000000fed00000 to fe600000 for dram barrier
    [    0.000000] DRA762 ES1.0
    [    0.000000] percpu: Embedded 15 pages/cpu @eed58000 s31424 r8192 d21824 u61440
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 468544
    [    0.000000] Kernel command line: console=ttyO2,115200n8 root=PARTUUID=000b6bff-02 rw rootfstype=ext4 rootwait
    [    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
    [    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    [    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    [    0.000000] Memory: 1659408K/1881088K available (8192K kernel code, 344K rwdata, 2500K rodata, 2048K init, 299K bss, 33264K reserved, 188416K cma-reserved, 1266688K highmem)
    [    0.000000] Virtual kernel memory layout:
    [    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
    [    0.000000]     fixmap  : 0xffc00000 - 0xfff00000   (3072 kB)
    [    0.000000]     vmalloc : 0xf0800000 - 0xff800000   ( 240 MB)
    [    0.000000]     lowmem  : 0xc0000000 - 0xf0000000   ( 768 MB)
    [    0.000000]     pkmap   : 0xbfe00000 - 0xc0000000   (   2 MB)
    [    0.000000]     modules : 0xbf000000 - 0xbfe00000   (  14 MB)
    [    0.000000]       .text : 0xc0008000 - 0xc0a00000   (10208 kB)
    [    0.000000]       .init : 0xc0e00000 - 0xc1000000   (2048 kB)
    [    0.000000]       .data : 0xc1000000 - 0xc10560e8   ( 345 kB)
    [    0.000000]        .bss : 0xc1058000 - 0xc10a2da4   ( 300 kB)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    [    0.000000] Preemptible hierarchical RCU implementation.
    [    0.000000] 	Tasks RCU enabled.
    [    0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16
    [    0.000000] OMAP clockevent source: timer1 at 32786 Hz
    [    0.000000] arch_timer: cp15 timer(s) running at 6.14MHz (virt).
    [    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x16af5adb9, max_idle_ns: 440795202250 ns
    [    0.000005] sched_clock: 56 bits at 6MHz, resolution 162ns, wraps every 4398046511023ns
    [    0.000017] Switching to timer-based delay loop, resolution 162ns
    [    0.000346] clocksource: 32k_counter: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 58327039986419 ns
    [    0.000355] OMAP clocksource: 32k_counter at 32768 Hz
    [    0.000824] Console: colour dummy device 80x30
    [    0.000842] WARNING: Your 'console=ttyO2' has been replaced by 'ttyS2'
    [    0.000849] This ensures that you still see kernel messages. Please
    [    0.000855] update your kernel commandline.
    [    0.000877] Calibrating delay loop (skipped), value calculated using timer frequency.. 12.29 BogoMIPS (lpj=61475)
    [    0.000893] pid_max: default: 32768 minimum: 301
    [    0.001009] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
    [    0.001023] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
    [    0.001600] CPU: Testing write buffer coherency: ok
    [    0.001861] /cpus/cpu@0 missing clock-frequency property
    [    0.001880] /cpus/cpu@1 missing clock-frequency property
    [    0.001893] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000
    [    0.039871] Setting up static identity map for 0x80200000 - 0x80200060
    [    0.059876] Hierarchical SRCU implementation.
    [    0.080073] EFI services will not be available.
    [    0.099938] smp: Bringing up secondary CPUs ...
    [    0.170291] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001
    [    0.170389] smp: Brought up 1 node, 2 CPUs
    [    0.170404] SMP: Total of 2 processors activated (24.59 BogoMIPS).
    [    0.170412] CPU: All CPU(s) started in SVC mode.
    [    0.170995] devtmpfs: initialized
    [    0.189269] random: get_random_u32 called from bucket_table_alloc+0xfc/0x25c with crng_init=0
    [    0.189546] VFP support v0.3: implementor 41 architecture 4 part 30 variant f rev 0
    [    0.189751] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
    [    0.189769] futex hash table entries: 512 (order: 3, 32768 bytes)
    [    0.194299] pinctrl core: initialized pinctrl subsystem
    [    0.194806] DMI not present or invalid.
    [    0.195079] NET: Registered protocol family 16
    [    0.196153] DMA: preallocated 256 KiB pool for atomic coherent allocations
    [    0.197142] omap_hwmod: l3_main_2 using broken dt data from ocp
    [    0.302812] omap_hwmod: dcan1: _wait_target_disable failed
    [    0.403517] cpuidle: using governor ladder
    [    0.403551] cpuidle: using governor menu
    [    0.411520] OMAP GPIO hardware version 0.1
    [    0.438393] No ATAGs?
    [    0.438473] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers.
    [    0.438487] hw-breakpoint: maximum watchpoint size is 8 bytes.
    [    0.438844] omap4_sram_init:Unable to allocate sram needed to handle errata I688
    [    0.438855] omap4_sram_init:Unable to get sram pool needed to handle errata I688
    [    0.439392] OMAP DMA hardware revision 0.0
    [    0.454923] omap-dma-engine 4a056000.dma-controller: OMAP DMA engine driver (LinkedList1/2/3 supported)
    [    0.456230] edma 43300000.edma: memcpy is disabled
    [    0.459590] edma 43300000.edma: TI EDMA DMA engine driver
    [    0.462800] omap-iommu 40d01000.mmu: 40d01000.mmu registered
    [    0.462999] omap-iommu 40d02000.mmu: 40d02000.mmu registered
    [    0.463239] omap-iommu 58882000.mmu: 58882000.mmu registered
    [    0.463490] omap-iommu 55082000.mmu: 55082000.mmu registered
    [    0.463834] omap-iommu 41501000.mmu: 41501000.mmu registered
    [    0.464045] omap-iommu 41502000.mmu: 41502000.mmu registered
    [    0.464278] iommu: Adding device 58820000.ipu to group 1
    [    0.464354] iommu: Adding device 55020000.ipu to group 2
    [    0.464484] iommu: Adding device 40800000.dsp to group 0
    [    0.464716] iommu: Adding device 41000000.dsp to group 3
    [    0.466967] palmas 0-0058: Irq flag is 0x00000004
    [    0.492231] palmas 0-0058: Muxing GPIO 2b, PWM 0, LED 0
    [    0.493833] SMPS12: supplied by regulator-dummy
    [    0.495564] SMPS3: supplied by VMAIN
    [    0.497123] SMPS45: supplied by regulator-dummy
    [    0.498968] SMPS6: supplied by VMAIN
    [    0.500632] SMPS7: supplied by VMAIN
    [    0.502441] SMPS8: supplied by VMAIN
    [    0.503715] SMPS9: supplied by VMAIN
    [    0.504682] LDO1: supplied by VMAIN
    [    0.511191] random: fast init done
    [    0.511321] LDO2: supplied by VMAIN
    [    0.521163] LDO3: supplied by VMAIN
    [    0.531197] LDO4: supplied by VMAIN
    [    0.541183] LDO5: supplied by regulator-dummy
    [    0.541873] LDO6: supplied by regulator-dummy
    [    0.542575] LDO7: supplied by regulator-dummy
    [    0.543261] LDO8: supplied by regulator-dummy
    [    0.543967] LDO9: supplied by VMAIN
    [    0.551510] LDOLN: supplied by VMAIN
    [    0.561233] LDOUSB: supplied by VMAIN
    [    0.573941] omap_i2c 48070000.i2c: bus 0 rev0.12 at 400 kHz
    [    0.574146] media: Linux media interface: v0.10
    [    0.574183] Linux video capture interface: v2.00
    [    0.574268] pps_core: LinuxPPS API ver. 1 registered
    [    0.574276] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    [    0.574296] PTP clock support registered
    [    0.574324] EDAC MC: Ver: 3.0.0
    [    0.580719] dmi: Firmware registration failed.
    [    0.581100] omap-mailbox 48840000.mailbox: omap mailbox rev 0x400
    [    0.581381] omap-mailbox 48842000.mailbox: omap mailbox rev 0x400
    [    0.581697] Advanced Linux Sound Architecture Driver Initialized.
    [    0.582331] clocksource: Switched to clocksource arch_sys_counter
    [    0.590006] NET: Registered protocol family 2
    [    0.590563] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
    [    0.590655] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
    [    0.590782] TCP: Hash tables configured (established 8192 bind 8192)
    [    0.590864] UDP hash table entries: 512 (order: 2, 16384 bytes)
    [    0.590896] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    [    0.591031] NET: Registered protocol family 1
    [    0.591376] RPC: Registered named UNIX socket transport module.
    [    0.591386] RPC: Registered udp transport module.
    [    0.591394] RPC: Registered tcp transport module.
    [    0.591401] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.592314] hw perfevents: no interrupt-affinity property for /pmu, guessing.
    [    0.592544] hw perfevents: enabled with armv7_cortex_a15 PMU driver, 7 counters available
    [    0.593578] workingset: timestamp_bits=14 max_order=19 bucket_order=5
    [    0.597746] squashfs: version 4.0 (2009/01/31) Phillip Lougher
    [    0.598252] NFS: Registering the id_resolver key type
    [    0.598281] Key type id_resolver registered
    [    0.598289] Key type id_legacy registered
    [    0.598328] ntfs: driver 2.1.32 [Flags: R/O].
    [    0.599627] bounce: pool size: 64 pages
    [    0.599675] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
    [    0.599685] io scheduler noop registered
    [    0.599693] io scheduler deadline registered
    [    0.599843] io scheduler cfq registered (default)
    [    0.599853] io scheduler mq-deadline registered
    [    0.599861] io scheduler kyber registered
    [    0.605292] pinctrl-single 4a003400.pinmux: 282 pins at pa fc003400 size 1128
    [    0.607967] dra7-pcie 51000000.pcie: Linked as a consumer to phy-4a094000.pciephy.3
    [    0.608338] OF: PCI: host bridge /ocp/axi@0/pcie@51000000 ranges:
    [    0.608373] OF: PCI:    IO 0x20003000..0x20012fff -> 0x00000000
    [    0.608395] OF: PCI:   MEM 0x20013000..0x2fffffff -> 0x20013000
    [    1.608668] dra7-pcie 51000000.pcie: phy link never came up
    [    1.608802] dra7-pcie 51000000.pcie: PCI host bridge to bus 0000:00
    [    1.608817] pci_bus 0000:00: root bus resource [bus 00-ff]
    [    1.608828] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
    [    1.608839] pci_bus 0000:00: root bus resource [mem 0x20013000-0x2fffffff]
    [    1.609160] PCI: bus0: Fast back to back transfers disabled
    [    1.609252] PCI: bus1: Fast back to back transfers enabled
    [    1.609292] pci 0000:00:00.0: BAR 0: assigned [mem 0x20100000-0x201fffff 64bit]
    [    1.609311] pci 0000:00:00.0: PCI bridge to [bus 01-ff]
    [    1.609635] pcieport 0000:00:00.0: Signaling PME with IRQ 174
    [    1.609769] pcieport 0000:00:00.0: AER enabled with IRQ 174
    [    1.612814] V3_3D: supplied by smps9
    [    1.613080] vtt_fixed: supplied by V3_3D
    [    1.655445] Serial: 8250/16550 driver, 10 ports, IRQ sharing disabled
    [    1.658111] 48020000.serial: ttyS2 at MMIO 0x48020000 (irq = 45, base_baud = 3000000) is a 8250
    [    2.702348] console [ttyS2] enabled
    [    2.707714] omap_rng 48090000.rng: Random Number Generator ver. 20
    [    2.715739] DSS: OMAP DSS rev 6.1
    [    2.719564] omapdss_dss 58000000.dss: bound 58001000.dispc (ops dispc_component_ops)
    [    2.728012] omapdss_dss 58000000.dss: bound 58040000.encoder (ops hdmi5_component_ops)
    [    2.745994] brd: module loaded
    [    2.754827] loop: module loaded
    [    2.761774] m25p80 spi0.0: found mx25l25635e, expected s25fl256s1
    [    2.768109] m25p80 spi0.0: mx25l25635e (32768 Kbytes)
    [    2.773268] 7 ofpart partitions found on MTD device spi0.0
    [    2.778777] Creating 7 MTD partitions on "spi0.0":
    [    2.783612] 0x000000000000-0x000000040000 : "QSPI.SPL"
    [    2.789457] 0x000000040000-0x000000140000 : "QSPI.u-boot"
    [    2.795526] 0x000000140000-0x0000001c0000 : "QSPI.u-boot-spl-os"
    [    2.802194] 0x0000001c0000-0x0000001d0000 : "QSPI.u-boot-env"
    [    2.808627] 0x0000001d0000-0x0000001e0000 : "QSPI.u-boot-env.backup1"
    [    2.815751] 0x0000001e0000-0x0000009e0000 : "QSPI.kernel"
    [    2.821777] 0x0000009e0000-0x000002000000 : "QSPI.file-system"
    [    2.828857] libphy: Fixed MDIO Bus: probed
    [    2.892367] davinci_mdio 48485000.mdio: davinci mdio revision 1.6, bus freq 1000000
    [    2.900060] davinci_mdio 48485000.mdio: detected phy mask fffffffc
    [    2.910803] libphy: 48485000.mdio: probed
    [    2.914868] davinci_mdio 48485000.mdio: phy[0]: device 48485000.mdio:00, driver Micrel KSZ9031 Gigabit PHY
    [    2.924585] davinci_mdio 48485000.mdio: phy[1]: device 48485000.mdio:01, driver Micrel KSZ9031 Gigabit PHY
    [    2.934972] cpsw 48484000.ethernet: Detected MACID = 40:bd:32:e7:6c:e2
    [    2.941578] cpsw 48484000.ethernet: initialized cpsw ale version 1.4
    [    2.948007] cpsw 48484000.ethernet: ALE Table size 1024
    [    2.953284] cpsw 48484000.ethernet: device node lookup for pps timer failed
    [    2.960310] cpsw 48484000.ethernet: cpts: overflow check period 500 (jiffies)
    [    2.968225] cpsw 48484000.ethernet: cpsw: Detected MACID = 40:bd:32:e7:6c:e3
    [    2.976583] i2c /dev entries driver
    [    2.980739] IR NEC protocol handler initialized
    [    2.985318] IR RC5(x/sz) protocol handler initialized
    [    2.990391] IR RC6 protocol handler initialized
    [    2.994957] IR JVC protocol handler initialized
    [    2.999506] IR Sony protocol handler initialized
    [    3.004159] IR SANYO protocol handler initialized
    [    3.008882] IR Sharp protocol handler initialized
    [    3.013986] IR MCE Keyboard/mouse protocol handler initialized
    [    3.019842] IR XMP protocol handler initialized
    [    3.028014] cpu cpu0: dev_pm_opp_set_regulators: no regulator (vdd) found: -19
    [    3.035690] sdhci: Secure Digital Host Controller Interface driver
    [    3.041897] sdhci: Copyright(c) Pierre Ossman
    [    3.046784] sdhci-pltfm: SDHCI platform and OF driver helper
    [    3.053468] sdhci-omap 4809c000.mmc: Got CD GPIO
    [    3.059077] sdhci-omap 4809c000.mmc: no pinctrl state for ddr_1_8v mode
    [    3.065758] sdhci-omap 4809c000.mmc: no pinctrl state for hs200_1_8v mode
    [    3.132546] mmc0: SDHCI controller on 4809c000.mmc [4809c000.mmc] using ADMA
    [    3.202369] mmc1: SDHCI controller on 480b4000.mmc [480b4000.mmc] using ADMA
    [    3.214511] ledtrig-cpu: registered to indicate activity on CPUs
    [    3.226273] NET: Registered protocol family 10
    [    3.231715] Segment Routing with IPv6
    [    3.235475] mmc0: host does not support reading read-only switch, assuming write-enable
    [    3.243690] mmc0: new high speed SDHC card at address aaaa
    [    3.249496] mmcblk0: mmc0:aaaa SS08G 7.40 GiB 
    [    3.254593] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
    [    3.260635]  mmcblk0: p1 p2
    [    3.264010] NET: Registered protocol family 17
    [    3.268536] Key type dns_resolver registered
    [    3.272965] omap_voltage_late_init: Voltage driver support not added
    [    3.279346] Power Management for TI OMAP4+ devices.
    [    3.284493] Registering SWP/SWPB emulation handler
    [    3.302051] dmm 4e000000.dmm: workaround for errata i878 in use
    [    3.309741] dmm 4e000000.dmm: initialized all PAT entries
    [    3.316802] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    [    3.323473] [drm] No driver support for vblank timestamp query.
    [    3.329446] [drm] Cannot find any crtc or sizes
    [    3.335147] [drm] Initialized omapdrm 1.0.0 20110917 for omapdrm.0 on minor 0
    [    3.342781] hctosys: unable to open rtc device (rtc0)
    [    3.348743] ALSA device list:
    [    3.351725]   No soundcards found.
    [    3.406836] EXT4-fs (mmcblk0p2): recovery complete
    [    3.412639] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null)
    [    3.420796] VFS: Mounted root (ext4 filesystem) on device 179:2.
    [    3.431979] devtmpfs: mounted
    [    3.436278] Freeing unused kernel memory: 2048K
    [    3.771022] systemd[1]: System time before build time, advancing clock.
    [    3.810424] systemd[1]: systemd 234 running in system mode. (+PAM -AUDIT -SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP -LIBCRYPTSETUP -GCRYPT -GNUTLS +ACL +XZ -LZ4 -SECCOMP +BLKID -ELFUTILS +KMOD -IDN2 -IDN default-hierarchy=hybrid)
    [    3.831647] systemd[1]: Detected architecture arm.
    
    Welcome to Arago 2018.04!
    
    [    3.876023] systemd[1]: Set hostname to <am57xx-evm>.
    [    4.237905] random: systemd: uninitialized urandom read (16 bytes read)
    [    4.244676] systemd[1]: Listening on Network Service Netlink Socket.
    [  OK  ] Listening on Network Service Netlink Socket.
    [    4.282493] random: systemd: uninitialized urandom read (16 bytes read)
    [    4.289275] systemd[1]: Listening on udev Control Socket.
    [  OK  ] Listening on udev Control Socket.
    [    4.322451] random: systemd: uninitialized urandom read (16 bytes read)
    [    4.330855] systemd[1]: Created slice System Slice.
    [  OK  ] Created slice System Slice.
    [    4.365367] systemd[1]: Mounting Kernel Debug File System...
             Mounting Kernel Debug File System...
    [    4.392416] [drm] Cannot find any crtc or sizes
    [    4.403455] systemd[1]: Created slice system-serial\x2dgetty.slice.
    [  OK  ] Created slice system-serial\x2dgetty.slice.
    [    4.432605] systemd[1]: Listening on udev Kernel Socket.
    [  OK  ] Listening on udev Kernel Socket.
    [    4.462987] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [  OK  ] Started Dispatch Password Requests to Console Directory Watch.
    [  OK  ] Reached target Swap.
             Mounting Temporary Directory (/tmp)...
    [  OK  ] Created slice system-getty.slice.
    [  OK  ] Listening on Journal Socket.
             Starting Load Kernel Modules...
    [  OK  ] Reached target Remote File Systems.
    [    4.686739] cmemk: loading out-of-tree module taints kernel.
    [    4.693291] CMEMK module: reference Linux version 4.14.40
    [    4.699341] CMEMK Error: cmem block 1 already assigned
    [[    4.704540] CMEMK Error: bad DT config
      OK  ] Created slice User and Session Slice.
    [  OK  ] Reached target Slices.
    [  OK  ] Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Process Core Dump Socket.
    [    4.809358] cryptodev: driver 1.9 loaded.
    [  OK  ] Listening on Syslog Socket.
    [    4.847192] usbcore: registered new interface driver usbfs
    [    4.852859] usbcore: registered new interface driver hub
    [    4.858280] usbcore: registered new device driver usb
    [    4.871106] usbcore: registered new interface driver usbserial
    [    4.891115] uio: exports duplicate symbol __uio_register_device (owned by kernel)
             Starting Journal Service...
    [  OK  ] Started Forward Password Requests to Wall Directory Watch.
             Mounting POSIX Message Queue File System...
    [  OK  ] Listening on /dev/initctl Compatibility Named Pipe.
             Starting Remount Root and Kernel File Systems...
    [    5.045893] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null)
    [  OK  ] Reached target Paths.
    [  OK  ] Mounted Kernel Debug File System.
    [  OK  ] Mounted POSIX Message Queue File System.
    [  OK  ] Mounted Temporary Directory (/tmp).
    [  OK  ] Started Journal Service.
    [FAILED] Failed to start Load Kernel Modules.
    See 'systemctl status systemd-modules-load.service' for details.
    [  OK  ] Started Remount Root and Kernel File Systems.
             Starting udev Coldplug all Devices...
             Starting Create Static Device Nodes in /dev...
             Starting Apply Kernel Variables...
             Mounting Kernel Configuration File System...
             Starting Flush Journal to Persistent Storage...
    [  OK  ] Mounted Kernel Configuration File System.
    [  OK  ] Started Create Static Device Nodes in /dev.
    [  OK  ] Started Apply Kernel Variables.
             Starting udev Kernel Device Manager...
    [  OK  ] Reached target Local File Systems (Pre).
             Mounting /var/volatile...
             Mounting /media/ram...
    [  OK  ] Mounted /var/volatile.
    [  OK  ] Mounted /media/ram.
    [  OK  ] Started udev Kernel Device Manager.
    [    5.788128] systemd-journald[81]: Received request to flush runtime journal from PID 1
             Starting Load/Save Random Seed...
    [  OK  ] Reached target Local File Systems.
    [  OK  ] Started Flush Journal to Persistent Storage.
    [  OK  ] Started Load/Save Random Seed.
             Starting Create Volatile Files and Directories...
    [  OK  ] Started Create Volatile Files and Directories.
             Starting Update UTMP about System Boot/Shutdown...
             Starting Network Time Synchronization...
    [  OK  ] Started Update UTMP about System Boot/Shutdown.
    [  OK  ] Started Network Time Synchronization.
    [  OK  ] Reached target System Time Synchronized.
    [    6.271636] omap-rproc 58820000.ipu: assigned reserved memory node ipu1-memory@9d000000
    [    6.318688] remoteproc remoteproc0: 58820000.ipu is available
    [  OK  ] Started udev Coldplug all Devices.
    [    6.345742] omap-rproc 55020000.ipu: assigned reserved memory node ipu2-memory@95800000
    [    6.345832] remoteproc remoteproc1: 55020000.ipu is available
    [    6.346262] omap-rproc 40800000.dsp: assigned reserved memory node dsp1-memory@99000000
    [    6.346344] remoteproc remoteproc2: 40800000.dsp is available
    [    6.346834] omap-rproc 41000000.dsp: assigned reserved memory node dsp2-memory@9f000000
    [    6.346916] remoteproc remoteproc3: 41000000.dsp is available
    [  OK  ] Reached target System Initialization.
    [    6.763668] omap_gpio 48057000.gpio: Could not set line 16 debounce to 20000 microseconds (-22)
    [    6.791125] palmas-rtc 48070000.i2c:tps659038@58:tps659038_rtc: rtc core: registered 48070000.i2c:tps659038@58:tps659038_rtc as rtc0
    [    6.808283] ov2659 0-0030: Sensor detection failed (3030, 0)
    [    6.820719] remoteproc remoteproc1: powering up 55020000.ipu
    [    6.820902] omap_rtc 48838000.rtc: registered as rtc1
    [    6.859295] remoteproc remoteproc1: Booting fw image dra7-ipu2-fw.xem4, size 3743076
    [    6.876040] omap-iommu 55082000.mmu: 55082000.mmu: version 2.1
    [  OK  ] Listening on dropbear.socket.
    [    6.975043] remoteproc remoteproc0: powering up 58820000.ipu
             [    6.997665] remoteproc remoteproc0: Booting fw image dra7-ipu1-fw.xem4, size 6636332
    Starting Network Service...
    [  OK  ] Started Daily Cleanup of Temporary Directorie[    7.055523] omap-iommu 58882000.mmu: 58882000.mmu: version 2.1
    s.
    [  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
    [    7.087192] virtio_rpmsg_bus virtio0: rpmsg host is online
    [    7.090793] virtio_rpmsg_bus virtio0: creating channel rpmsg-rpc addr 0x65
    [    7.091825] virtio_rpmsg_bus virtio0: creating channel rpmsg-rpc addr 0x66
    [  OK  ] Listening on RPCbind Server Activation Socket[    7.113132] remoteproc remoteproc1: registered virtio0 (type 7)
    .
    [    7.130347] remoteproc remoteproc1: remote processor 55020000.ipu is now up
    [    7.164084] virtio_rpmsg_bus virtio1: rpmsg host is online
    [    7.171930] remoteproc remoteproc0: registered virtio1 (type 7)
    [    7.181775] remoteproc remoteproc0: remote processor 58820000.ipu is now up
    [    7.243952] omap-des 480a5000.des: OMAP DES hw accel rev: 2.2
    [    7.253241] omap-des 480a5000.des: will run requests pump with realtime priority
    [    7.273045] SCSI subsystem initialized
    [  OK  ] Started Daily rotation of log files.
    [    7.293935] virtio_rpmsg_bus virtio1: creating channel rpmsg-proto addr 0x3d
    [  OK  ] Reached target Timers.
    [  OK  ] Listening on D-Bus System Message Bus Socket.
    [    7.363401] CAN device driver interface
    [    7.367520] omap_wdt: OMAP Watchdog Timer Rev 0x01: initial timeout 60 sec
    [  OK  ] Reached target Sockets.
    [    7.385233] c_can_platform 4ae3c000.can: c_can_platform device registered (regs=fce3c000, irq=88)
    [    7.401016] net eth1: initializing cpsw version 1.15 (0)
    [    7.404227] (NULL device *): pru: control is in phy_connect
    [  OK  ] Reached target Basic System.
    [    7.430412] vpe 489d0000.vpe: loading firmware vpdma-1b8.bin
    [    7.443810] omap-sham 4b101000.sham: hw accel on OMAP rev 4.3
             Starting uim-sysfs.service...
    [    7.502928] vpe 489d0000.vpe: Device registered as /dev/video0
    [    7.529060] Micrel KSZ9031 Gigabit PHY 48485000.mdio:01: attached PHY driver [Micrel KSZ9031 Gigabit PHY] (mii_bus:phy_addr=48485000.mdio:01, irq=POLL)
    [    7.544862] cpts ptp bc clkid 0
    [    7.556001] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
    [    7.556774] omap-aes 4b500000.aes: OMAP AES hw accel rev: 3.3
    [    7.567834] omap-aes 4b500000.aes: will run requests pump with realtime priority
    [    7.577264] net eth0: initializing cpsw version 1.15 (0)
    [    7.580779] (NULL device *): pru: control is in phy_connect
    [    7.592659] omap-aes 4b700000.aes: OMAP AES hw accel rev: 3.3
    [    7.598733] omap-aes 4b700000.aes: will run requests pump with realtime priority
    [    7.616984] remoteproc remoteproc2: powering up 40800000.dsp
    [    7.624980] remoteproc remoteproc2: Booting fw image dra7-dsp1-fw.xe66, size 4520076
    [    7.641473] omap_hwmod: mmu0_dsp1: _wait_target_disable failed
    [    7.647401] omap-iommu 40d01000.mmu: 40d01000.mmu: version 3.0
    [    7.653399] omap-iommu 40d02000.mmu: 40d02000.mmu: version 3.0
    [  OK  ] Started System Logging Service.
    [    7.696629] Micrel KSZ9031 Gigabit PHY 48485000.mdio:00: attached PHY driver [Micrel KSZ9031 Gigabit PHY] (mii_bus:phy_addr=48485000.mdio:00, irq=POLL)
             Starting Avahi mDNS/DNS-SD Stack...
    [    7.740388] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
    [  OK  ] Started Hardware RNG Entropy Gatherer Daemon.
             Starting Print notice about GPLv3 packages...
    [    7.771690] virtio_rpmsg_bus virtio2: rpmsg host is online
    [    7.771862] virtio_rpmsg_bus virtio2: creating channel rpmsg-proto addr 0x3d
    [    7.797057] remoteproc remoteproc2: registered virtio2 (type 7)
    [    7.797066] remoteproc remoteproc2: remote processor 40800000.dsp is now up
    [  OK  ] Started Kernel Logging Service.
    [  OK  ] Started D-Bus System Message Bus.
    [    8.240923] ahci 4a140000.sata: SSS flag set, parallel bus scan disabled
    [    8.252418] ahci 4a140000.sata: AHCI 0001.0300 32 slots 1 ports 3 Gbps 0x1 impl platform mode
    [    8.260987] ahci 4a140000.sata: flags: 64bit ncq sntf stag pm led clo only pmp pio slum part ccc apst 
    [    8.284496] scsi host0: ahci
    [    8.287627] ata1: SATA max UDMA/133 mmio [mem 0x4a140000-0x4a1410ff] port 0x100 irq 80
    [    8.368143] remoteproc remoteproc3: powering up 41000000.dsp
    [    8.374795] remoteproc remoteproc3: Booting fw image dra7-dsp2-fw.xe66, size 20323956
    [    8.391777] omap_hwmod: mmu0_dsp2: _wait_target_disable failed
    [    8.397680] omap-iommu 41501000.mmu: 41501000.mmu: version 3.0
    [    8.403631] omap-iommu 41502000.mmu: 41502000.mmu: version 3.0
    [    8.428953] virtio_rpmsg_bus virtio3: rpmsg host is online
    [    8.431910] virtio_rpmsg_bus virtio3: creating channel rpmsg-proto addr 0x3d
    [    8.442153] remoteproc remoteproc3: registered virtio3 (type 7)
    [    8.450710] remoteproc remoteproc3: remote processor 41000000.dsp is now up
    [    8.529155] random: crng init done
    [    8.532628] random: 7 urandom warning(s) missed due to ratelimiting
    [    8.622663] ata1: SATA link down (SStatus 0 SControl 300)
    [    8.627779] vip 48990000.vip: loading firmware vpdma-1b8.bin
    [    8.652400] vip 48990000.vip: VPDMA firmware loaded
    [  OK  ] Started Avahi mDNS/DNS-SD Stack.
    [  OK  ] Started Periodic Command Scheduler.
             Starting TI MultiCore Tools Daemon...
    [  OK  ] Reached target Containers.
    [    8.867280] [drm] Initialized pvr 1.14.3699939 20110701 for 56000000.gpu on minor 1
             Starting Login Service...
             Starting RPC Bind Service...
    [  OK  ] Started Job spooling tools.
    [  OK  ] Started Network Service.
    [    9.008314] omap-hdmi-audio omap-hdmi-audio.0.auto: snd-soc-dummy-dai <-> 58040000.encoder mapping ok
    [  OK  ] Found device /dev/ttyS2.
    [    9.048543] omap-hdmi-audio omap-hdmi-audio.0.auto: ASoC: no DMI vendor name!
    [  OK  ] Started RPC Bind Service.
    [    9.133629] pruss 4b200000.pruss: creating PRU cores and other child platform devices
    [    9.242411] davinci_mdio 4b232400.mdio: davinci mdio revision 1.6, bus freq 1000000
    [    9.261709] davinci_mdio 4b232400.mdio: no live phy, scanning all
    [FAILED] Failed to start TI MultiCore Tools Daemon.
    See 'systemctl status ti-mct-daemon.service' for details.
    [  OK  ] Started Login Service.
    [    9.352406] davinci_mdio 4b232400.mdio: timed out waiting for user access
    [  OK  ] Reached target Network.
             Starting Simple Network Management Protocol (SNMP) Daemon....
             Starting Lightning Fast Webserver With Light System Requirements...
    [    9.463908] davinci_mdio 4b232400.mdio: timed out waiting for idle
    [  OK  ] Started Redis In-Memory Data Store.
             Starting Permit User Sessions...
    [    9.500847] davinci_mdio: probe of 4b232400.mdio failed with error -5
             Starting Enable and configure wl18xx bluetooth stack...
             Starting Wait for Network to be Configured...
    [    9.545843] pruss 4b280000.pruss: creating PRU cores and other child platform devices
             Starting Network Name Resolution...
    [  OK  ] Started Permit User Sessions.
    [  OK  ] Started Getty on tty1.
    [    9.672392] davinci_mdio 4b2b2400.mdio: davinci mdio revision 1.6, bus freq 1000000
    [    9.680239] libphy: 4b2b2400.mdio: probed
    [  OK  ] Started Serial Getty on ttyS2.
    [  OK  ] Reached target Login Prompts.
    [    9.743843] davinci_mdio: probe of 4b2b2400.mdio failed with error -5
             Starting Synchronize System and HW clocks...
    [  OK  ] Started Lightning Fast Webserver With Light System Requirements.
    [    9.879933] remoteproc remoteproc4: 4b234000.pru is available
    [  OK  ] Started Synchronize System and HW clocks.
    [    9.933329] pru-rproc 4b234000.pru: PRU rproc node /ocp/pruss_soc_bus@4b226004/pruss@0/pru@34000 probed successfully
    [  OK  ] Started Enable and configure wl18xx bluetooth stack.
    [   10.042254] remoteproc remoteproc5: 4b238000.pru is available
    [   10.094121] pru-rproc 4b238000.pru: PRU rproc node /ocp/pruss_soc_bus@4b226004/pruss@0/pru@38000 probed successfully
    [   10.138937] FAT-fs (mmcblk0p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
    [  OK  ] Started Network Name Resolution.
    [   10.304833] remoteproc remoteproc6: 4b2b4000.pru is available
    [   10.373830] pru-rproc 4b2b4000.pru: PRU rproc node /ocp/pruss_soc_bus@4b2a6004/pruss@0/pru@34000 probed successfully
    [   10.455902] remoteproc remoteproc7: 4b2b8000.pru is available
    [   10.494661] pru-rproc 4b2b8000.pru: PRU rproc node /ocp/pruss_soc_bus@4b2a6004/pruss@0/pru@38000 probed successfully
    [  OK  ] Started Simple Network Management Protocol (SNMP) Daemon..
    [   10.613112] prueth pruss2_eth: pruss MC Mask 0:0:0:0:0:0
    [   10.623754] prueth pruss2_eth: port 1: using random MAC addr: 3e:d1:8c:3e:89:8e
    [  OK  ] Reached target Host and Network Name Lookups.
    [  OK  ] Started NFS status monitor for NFSv2/3 locking..
    [   11.647985] prueth pruss2_eth: pruss MC Mask 0:0:0:0:0:0
    [   11.656466] prueth pruss2_eth: port 1: using random MAC addr: 6e:f9:1a:a0:1d:20
    [   11.669393] NET: Registered protocol family 44
    [   11.680488] rpmsg_rpc virtio0.rpmsg-rpc.-1.101: probing service dce-callback with src 1024 dst 101
    [   11.681155] rpmsg_rpc virtio0.rpmsg-rpc.-1.102: probing service rpmsg-dce with src 1025 dst 102
    [   11.681525] rpmsg_rpc virtio0.rpmsg-rpc.-1.101: published functions = 4
    [   11.694783] rpmsg_rpc virtio0.rpmsg-rpc.-1.102: published functions = 9
    [  OK  ] Started uim-sysfs.service.
    [   11.758774] prueth pruss2_eth: pruss MC Mask 0:0:0:0:0:0
    [   11.783997] prueth pruss2_eth: port 1: using random MAC addr: 72:9f:dd:ba:fc:2c
    [   11.830340] dwc3 488d0000.usb: changing max_speed on rev 5533202a
    [   11.851752] prueth pruss2_eth: pruss MC Mask 0:0:0:0:0:0
    [   11.860065] prueth pruss2_eth: port 1: using random MAC addr: fa:35:39:23:9f:ee
    [   11.968763] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
    [   11.976790] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 1
    [   11.989110] xhci-hcd xhci-hcd.1.auto: hcc params 0x0220f04c hci version 0x100 quirks 0x02010010
    [   11.998043] xhci-hcd xhci-hcd.1.auto: irq 181, io mem 0x48890000
    [   12.005349] hub 1-0:1.0: USB hub found
    [   12.009405] hub 1-0:1.0: 1 port detected
    [   12.014628] prueth pruss2_eth: pruss MC Mask 0:0:0:0:0:0
    [   12.020567] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
    [   12.020586] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 2
    [   12.026304] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
    [   12.026982] hub 2-0:1.0: USB hub found
    [   12.027017] hub 2-0:1.0: 1 port detected
    [   12.070186] prueth pruss2_eth: port 1: using random MAC addr: 36:e3:71:28:1d:74
    [   12.099245] prueth pruss2_eth: pruss MC Mask 0:0:0:0:0:0
    [   12.112506] prueth pruss2_eth: port 1: using random MAC addr: 6a:90:0f:51:ba:6c
    [  OK  ] Reached target Sound Card.
             Starting rc.pvr.service...
    [   12.925094] PVR_K: UM DDK-(3699939) and KM DDK-(3699939) match. [ OK ]
    [  OK  ] Started rc.pvr.service.
             Starting weston.service...
    [  OK  ] Started weston.service.
             Starting telnetd.service...
             Starting tiipclad-daemon.service...
    [  OK  ] Started telnetd.service.
    [  OK  ] Started tiipclad-daemon.service.
    ***************************************************************
    ***************************************************************
    NOTICE: This file system contains the following GPLv3 packages:
    	autoconf
    	bash-dev
    	bash
    	binutils-dev
    	binutils
    	bison-dev
    	bison
    	cifs-utils
    	cpio
    	cpp-symlinks
    	cpp
    	dosfstools
    	elfutils-dev
    	elfutils
    	findutils
    	g++-symlinks
    	g++
    	gawk
    	gcc-symlinks
    	gcc
    	gdb
    	gdbc6x
    	gdbserver
    	gettext
    	gstreamer1.0-libav
    	gzip
    	hidapi
    	libasm1
    	libcairo-perf-utils
    	libdw1
    	libelf1
    	libgdbm-compat4
    	libgdbm-dev
    	libgdbm4
    	libgettextlib
    	libgettextsrc
    	libgmp10
    	libidn11
    	libmavconn
    	libmpc3
    	libmpfr4
    	libreadline-dev
    	libreadline7
    	libunistring2
    	m4-dev
    	m4
    	make
    	mavlink
    	mavros-extras
    	mavros-msgs
    	mavros
    	nettle
    	parted
    	python3-pycairo
    	socketcan-interface
    	swig-dev
    	swig
    	which
    
             Starting thttpd.service...
    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 thttpd.service.
    [  OK  ] Started Print notice about GPLv3 packages.
             Starting rng-tools.service...
    [  OK  ] Started rng-tools.service.
    
     _____                    _____           _         _   
    |  _  |___ ___ ___ ___   |  _  |___ ___  |_|___ ___| |_ 
    |     |  _| .'| . | . |  |   __|  _| . | | | -_|  _|  _|
    |__|__|_| |__,|_  |___|  |__|  |_| |___|_| |___|___|_|  
                  |___|                    |___|            
    
    Arago Project http://arago-project.org am57xx-evm ttyS2
    
    Arago 2018.04 am57xx-evm ttyS2
    
    am57xx-evm login: root
    [   19.039908] omap_hwmod: mmu0_dsp2: _wait_target_disable failed
    root@am57xx-evm:~# 

  • Hi Janardan,

    Thank you for the block diagram and DTS snippet.

    Unfortunately TI is only able to support use-case questions related to connecting directly to a PHY. Since this is a MAC to MAC connection TI will not be able to support this query.

    Best Regards,
    Schuyler