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.

Compiler: The difference network bandwidth between DP83TC811R-Q1's specifications and Linux's dmesg

Other Parts Discussed in Thread: DP83TC811R-Q1, DP83TC811EVM

Tool/software: TI C/C++ Compiler

The system information as below:

1. Broad: TDA2EX-17

2. Ethernet PHY: DP83TC811R-Q1

3. Linux System: 4.4.84-00041-geb8fba6-dirty

4. PROCESSOR SDK Version: 3.07

The bandwidth in hardware specifications of DP83TC811R-Q1 is 100 Mbps.

Then I followed this specifications to verify by those steps:

1. Device connect to another one directly.

2. Using the "iperf" software to test the bandwidth. (The one device as server, and the other as client.)

The software shows that the bandwidth between two devices is 91Mbps and the bandwidth anneals to the hardware's specification.

But the system's message(dmesg) shows the ethernet bandwidth is 10 Mbps/Half(cpsw 48484000.ethernet eth0: Link is Up - 10Mbps/Half - flow control off).

So, I have questions about the difference between system's message and hardware's specifications:

(1) Does the hardware's actual bandwidth reach to 100 Mbps?

(2) I guess the system's driver go wrong. How to solve it?

Wxchen

  • Hi

    there are two parts to your observation 

    1. First is the speed at which the link is negotiated between the peers
      1. you can dump the link status by using the ethtool command from Linux console on your board
      2. syntax for usage would be #ethttool eth0
      3. this will help ascertain whether you have an active link and speed of operation
    2. Second is the throughput as measured by iperf (or similar) - the b/w measured in this case depends on a number of factors, but in general each packet sent on the wire comes with additional overhead(inter-packet gap, preamble etc) Additionally you have packetization overhead of adding L2/L3 headers etc. Hence the throughput measured will always be less than the theoretical b/w possible. Lastly CPU cycles are spent in generating the packet content and hence that could also throttle the throughput. for sufficiently large packet MTU size, you should be able to get close enough especially for 100Mbps link where CPU cycles may not be limiting factor

    Can you clarify on the overall goal in terms of performance requirement

  • Hi,

    Thanks for your reply, I want to estimate the system's capability.


    I tried the ethtool to observe the link's speed, the tool showed 10 Mbps( same as dmesg ).
    Message shows in below:

    root@dra7xx-evm:/home# ./ethtool eth0
    Settings for eth0:
    Supported ports: [ TP AUI BNC MII FIBRE ]
    Supported link modes: Not reported
    Supported pause frame use: No
    Supports auto-negotiation: No
    Supported FEC modes: Not reported
    Advertised link modes: Not reported
    Advertised pause frame use: No
    Advertised auto-negotiation: No
    Advertised FEC modes: Not reported
    Speed: 10Mb/s
    Duplex: Half
    Port: MII
    PHYAD: 0
    Transceiver: external
    Auto-negotiation: on
    Supports Wake-on: d
    Wake-on: d
    Current message level: 0x00000000 (0)
    
    Link detected: yes

    But I tested the link's speed by using iperf , it showed 91.X Mbps( similar to my last testing result ).
    Result shows in below:

    root@dra7xx-evm:/home# ./iperf -c 192.168.107.236 -w 16M -t 60 -i 10 -d
    ------------------------------------------------------------
    Server listening on TCP port 5001
    TCP window size: 320 KByte (WARNING: requested 16.0 MByte)
    ------------------------------------------------------------
    ------------------------------------------------------------
    Client connecting to 192.168.107.236, TCP port 5001
    TCP window size: 320 KByte (WARNING: requested 16.0 MByte)
    ------------------------------------------------------------
    [ 3] local 192.168.107.188 port 48488 connected with 192.168.107.236 port 5001
    [ 5] local 192.168.107.188 port 5001 connected with 192.168.107.236 port 41190
    [ ID] Interval Transfer Bandwidth
    [ 3] 0.0-10.0 sec 109 MBytes 91.4 Mbits/sec
    [ 5] 0.0-10.0 sec 109 MBytes 91.5 Mbits/sec
    [ 3] 10.0-20.0 sec 109 MBytes 91.3 Mbits/sec
    [ 5] 10.0-20.0 sec 109 MBytes 91.5 Mbits/sec
    [ 5] 20.0-30.0 sec 109 MBytes 91.3 Mbits/sec
    [ 3] 20.0-30.0 sec 109 MBytes 91.4 Mbits/sec
    [ 3] 30.0-40.0 sec 109 MBytes 91.2 Mbits/sec
    [ 5] 30.0-40.0 sec 109 MBytes 91.3 Mbits/sec
    [ 3] 40.0-50.0 sec 108 MBytes 90.9 Mbits/sec
    [ 5] 40.0-50.0 sec 109 MBytes 91.3 Mbits/sec
    [ 3] 50.0-60.0 sec 109 MBytes 91.3 Mbits/sec
    [ 3] 0.0-60.0 sec 653 MBytes 91.3 Mbits/sec
    [ 5] 50.0-60.0 sec 109 MBytes 91.6 Mbits/sec
    [ 5] 0.0-60.0 sec 654 MBytes 91.4 Mbits/sec

    So, I'm wondering that:

    1. Why makes the different result between system message(dmesg) and software testing?

    2. What is the exactly speed about this hardware?

    3. Is it a bug to the system's driver? How to fix it?

    4. I tried different MTU, but I can't set the value more than 1500(it can set any value below 1500), is it possible to set it up to 9000?

  • Hi

    can you confirm if there is only one network interface i.e eth0 and that all traffic is being sent over that interface

    i am actually concerned that the link is being negotiated at 10Mb/s , half-duplex. Most modern equipment today support auto-negotiation and will establish link at 100/1000Mbps , full duplex. Can you first review why the link is being established at 10Mbps

    can you get dump of the following

    1.  #ifconfig 
    2. if you have more than one network I/F, dump the routing table with # route -n 

    Laslty, i am puzzled at how the reported iperf b/w is actually higher than the link speed.

    Will need to review the complete data to analyze why this could be

  • Hi

    Are there updates on this - is the issue still open. If so, can you revert back with details from my earlier post

  • 1. ifconfig shows the following message:

    root@dra7xx-evm:~# ifconfig
    eth0      Link encap:Ethernet  HWaddr 6C:C3:74:0D:62:EE  
              inet addr:192.168.107.188  Bcast:192.168.107.255  Mask:255.255.255.0
              inet6 addr: fe80::6ec3:74ff:fe0d:62ee%132688/64 Scope:Link
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:284 errors:0 dropped:24 overruns:0 frame:0
              TX packets:39 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000 
              RX bytes:26730 (26.1 KiB)  TX bytes:3934 (3.8 KiB)
              Interrupt:89 
    
    lo        Link encap:Local Loopback  
              inet addr:127.0.0.1  Mask:255.0.0.0
              inet6 addr: ::1%132688/128 Scope:Host
              UP LOOPBACK RUNNING  MTU:65536  Metric:1
              RX packets:166 errors:0 dropped:0 overruns:0 frame:0
              TX packets:166 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1 
              RX bytes:12688 (12.3 KiB)  TX bytes:12688 (12.3 KiB)

    2. the route -n shows the following message:

    root@dra7xx-evm:~# route -n
    Kernel IP routing table
    Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
    0.0.0.0         192.168.107.254 0.0.0.0         UG    1024   0        0 eth0
    192.168.107.0   0.0.0.0         255.255.255.0   U     0      0        0 eth0
    192.168.107.254 0.0.0.0         255.255.255.255 UH    1024   0        0 eth0

    Is there any other software to test and verify the actual speed?

  • Hi

    Link speed should be reported correctly with #ethtool eth0, but in your case, we seem to negotiate 10Mbps only

    Can you confirm if you see this on TI EVM or on a custom board and also share details of what is it connected to

    Also, if possible share the complete boot up log

  • Hi:

    1. I have two types of broad ( TDA2-evm, TDA2EX-17 ), the boot up log as attachment.

    The TDA2EX-17 broad is my custom broad and using 'DP83TC811EVM broad' to convert ethernet signal from 2-pins PHY to RJ-45.

    Then, two devices respectively connect to 1G-switch using the same cable(RJ-45).

    [    0.000000] Booting Linux on physical CPU 0x0
    [    0.000000] Initializing cgroup subsys cpuset
    [    0.000000] Initializing cgroup subsys cpu
    [    0.000000] Initializing cgroup subsys cpuacct
    [    0.000000] Linux version 4.4.84-00041-geb8fba6-dirty (user@tw-eh01005308) (gcc version 5.3.1 20160113 (Linaro GCC 5.3-2016.02) ) #1 SMP PREEMPT Mon Aug 26 10:00:45 CST 2019
    [    0.000000] CPU: ARMv7 Processor [412fc0f2] revision 2 (ARMv7), cr=30c5387d
    [    0.000000] CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction cache
    [    0.000000] Machine model: TI DRA718 EVM
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000040300000, size 3 MiB
    [    0.000000] Reserved memory: initialized node cmem@40300000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: regions without no-map are not yet supported
    [    0.000000] Reserved memory: created CMA memory pool at 0x0000000099000000, size 80 MiB
    [    0.000000] Reserved memory: initialized node ipu2_cma@95800000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created CMA memory pool at 0x000000009e000000, size 32 MiB
    [    0.000000] Reserved memory: initialized node ipu1_cma@9d000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: regions without no-map are not yet supported
    [    0.000000] Reserved memory: created CMA memory pool at 0x00000000a1000000, size 32 MiB
    [    0.000000] Reserved memory: initialized node dsp1_cma@99000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a9000000, size 64 MiB
    [    0.000000] Reserved memory: initialized node cmem@A9000000, compatible id shared-dma-pool
    [    0.000000] cma: Reserved 64 MiB at 0x00000000bbc00000
    [    0.000000] Forcing write-allocate cache policy for SMP
    [    0.000000] Memory policy: Data cache writealloc
    [    0.000000] OMAP4: Map 0x00000000bfd00000 to fe600000 for dram barrier
    [    0.000000] On node 0 totalpages: 244992
    [    0.000000] free_area_init_node: node 0, pgdat c0985740, node_mem_map ef6aa000
    [    0.000000]   DMA zone: 1728 pages used for memmap
    [    0.000000]   DMA zone: 0 pages reserved
    [    0.000000]   DMA zone: 180224 pages, LIFO batch:31
    [    0.000000]   HighMem zone: 64768 pages, LIFO batch:15
    [    0.000000] DRA722 ES2.1
    [    0.000000] PERCPU: Embedded 11 pages/cpu @ef649000 s14912 r8192 d21952 u45056
    [    0.000000] pcpu-alloc: s14912 r8192 d21952 u45056 alloc=11*4096
    [    0.000000] pcpu-alloc: [0] 0 
    [    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 243264
    [    0.000000] Kernel command line: console=ttyO0,115200n8 vram=16M root=/dev/mmcblk0p2 rw rootwait ip=none mem=1024M cma=64M
    [    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: 468248K/979968K available (6671K kernel code, 320K rwdata, 2396K rodata, 336K init, 290K bss, 298728K reserved, 212992K cma-reserved, 193536K 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 - 0xc08e302c   (9069 kB)
    [    0.000000]       .init : 0xc08e4000 - 0xc0938000   ( 336 kB)
    [    0.000000]       .data : 0xc0938000 - 0xc0988220   ( 321 kB)
    [    0.000000]        .bss : 0xc098a000 - 0xc09d2880   ( 291 kB)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    [    0.000000] Preemptible hierarchical RCU implementation.
    [    0.000000] 	Build-time adjustment of leaf fanout to 32.
    [    0.000000] 	RCU restricting CPUs from NR_CPUS=2 to nr_cpu_ids=1.
    [    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=32, nr_cpu_ids=1
    [    0.000000] NR_IRQS:16 nr_irqs:16 16
    [    0.000000] ti_dt_clocks_register: failed to lookup clock node gmac_gmii_ref_clk_div
    [    0.000000] OMAP clockevent source: timer1 at 32786 Hz
    [    0.000000] Architected cp15 timer(s) running at 6.14MHz (phys).
    [    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x16af5adb9, max_idle_ns: 440795202250 ns
    [    0.000004] sched_clock: 56 bits at 6MHz, resolution 162ns, wraps every 4398046511023ns
    [    0.000015] Switching to timer-based delay loop, resolution 162ns
    [    0.000328] clocksource: 32k_counter: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 58327039986419 ns
    [    0.000336] OMAP clocksource: 32k_counter at 32768 Hz
    [    0.000759] Console: colour dummy device 80x30
    [    0.000774] WARNING: Your 'console=ttyO0' has been replaced by 'ttyS0'
    [    0.000780] This ensures that you still see kernel messages. Please
    [    0.000785] update your kernel commandline.
    [    0.000798] Calibrating delay loop (skipped), value calculated using timer frequency.. 12.29 BogoMIPS (lpj=61475)
    [    0.000810] pid_max: default: 32768 minimum: 301
    [    0.000909] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
    [    0.000918] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
    [    0.001452] Initializing cgroup subsys io
    [    0.001468] Initializing cgroup subsys memory
    [    0.001492] Initializing cgroup subsys devices
    [    0.001504] Initializing cgroup subsys freezer
    [    0.001515] Initializing cgroup subsys perf_event
    [    0.001525] Initializing cgroup subsys pids
    [    0.001552] CPU: Testing write buffer coherency: ok
    [    0.001757] /cpus/cpu@0 missing clock-frequency property
    [    0.001769] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000
    [    0.001803] Setting up static identity map for 0x80008380 - 0x800083e0
    [    0.050026] Brought up 1 CPUs
    [    0.050038] SMP: Total of 1 processors activated (12.29 BogoMIPS).
    [    0.050044] CPU: All CPU(s) started in HYP mode.
    [    0.050050] CPU: Virtualization extensions available.
    [    0.050359] devtmpfs: initialized
    [    0.080082] VFP support v0.3: implementor 41 architecture 4 part 30 variant f rev 0
    [    0.081066] omap_hwmod: l3_main_2 using broken dt data from ocp
    [    0.261254] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
    [    0.261277] futex hash table entries: 256 (order: 2, 16384 bytes)
    [    0.274625] pinctrl core: initialized pinctrl subsystem
    [    0.275532] NET: Registered protocol family 16
    [    0.276491] DMA: preallocated 256 KiB pool for atomic coherent allocations
    [    0.300188] cpuidle: using governor ladder
    [    0.330214] cpuidle: using governor menu
    [    0.338936] OMAP GPIO hardware version 0.1
    [    0.345352] irq: no irq domain found for /ocp/l4@4a000000/scm@2000/pinmux@1400 !
    [    0.366434] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers.
    [    0.366445] hw-breakpoint: maximum watchpoint size is 8 bytes.
    [    0.366942] omap4_sram_init:Unable to allocate sram needed to handle errata I688
    [    0.366953] omap4_sram_init:Unable to get sram pool needed to handle errata I688
    [    0.367553] OMAP DMA hardware revision 0.0
    [    0.450960] omap-dma-engine 4a056000.dma-controller: OMAP DMA engine driver (LinkedList1/2/3 supported)
    [    0.452120] edma 43300000.edma: memcpy is disabled
    [    0.456852] edma 43300000.edma: TI EDMA DMA engine driver
    [    0.461646] omap-iommu 40d01000.mmu: 40d01000.mmu registered
    [    0.461831] omap-iommu 40d02000.mmu: 40d02000.mmu registered
    [    0.461996] omap-iommu 58882000.mmu: 58882000.mmu registered
    [    0.462163] omap-iommu 55082000.mmu: 55082000.mmu registered
    [    0.480909] pcf857x: probe of 0-0020 failed with error -121
    [    0.481169] pcf857x: probe of 0-0021 failed with error -121
    [    0.481549] omap_i2c 48070000.i2c: bus 0 rev0.12 at 400 kHz
    [    0.482003] omap_i2c 48060000.i2c: bus 2 rev0.12 at 400 kHz
    [    0.482171] media: Linux media interface: v0.10
    [    0.482223] Linux video capture interface: v2.00
    [    0.482265] pps_core: LinuxPPS API ver. 1 registered
    [    0.482272] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    [    0.482297] PTP clock support registered
    [    0.482347] EDAC MC: Ver: 3.0.0
    [    0.491409] omap-mailbox 48840000.mailbox: omap mailbox rev 0x400
    [    0.491611] omap-mailbox 48842000.mailbox: omap mailbox rev 0x400
    [    0.491937] Advanced Linux Sound Architecture Driver Initialized.
    [    0.492809] clocksource: Switched to clocksource arch_sys_counter
    [    0.502865] NET: Registered protocol family 2
    [    0.503358] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
    [    0.503421] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
    [    0.503546] TCP: Hash tables configured (established 8192 bind 8192)
    [    0.503598] UDP hash table entries: 512 (order: 2, 16384 bytes)
    [    0.503629] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    [    0.503849] NET: Registered protocol family 1
    [    0.514143] RPC: Registered named UNIX socket transport module.
    [    0.514153] RPC: Registered udp transport module.
    [    0.514159] RPC: Registered tcp transport module.
    [    0.514165] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.514184] PCI: CLS 0 bytes, default 64
    [    0.515174] hw perfevents: enabled with armv7_cortex_a15 PMU driver, 7 counters available
    [    0.535116] squashfs: version 4.0 (2009/01/31) Phillip Lougher
    [    0.545801] NFS: Registering the id_resolver key type
    [    0.545832] Key type id_resolver registered
    [    0.545840] Key type id_legacy registered
    [    0.545898] ntfs: driver 2.1.32 [Flags: R/O].
    [    0.547418] bounce: pool size: 64 pages
    [    0.547574] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
    [    0.547589] io scheduler noop registered
    [    0.547601] io scheduler deadline registered
    [    0.547635] io scheduler cfq registered (default)
    [    0.551658] pinctrl-single 4a003400.pinmux: 282 pins at pa fc003400 size 1128
    [    0.551785] pinctrl-single 4a002e8c.pinmux: 1 pins at pa fc002e8c size 4
    [    0.554948] PCI host bridge /ocp/axi@0/pcie_rc@51000000 ranges:
    [    0.554961]   No bus range found for /ocp/axi@0/pcie_rc@51000000, using [bus 00-ff]
    [    0.554995]    IO 0x20003000..0x20012fff -> 0x00000000
    [    0.555016]   MEM 0x20013000..0x2fffffff -> 0x20013000
    [    0.584416] dra7-pcie 51000000.pcie_rc: link is not up
    [    0.584591] dra7-pcie 51000000.pcie_rc: PCI host bridge to bus 0000:00
    [    0.584604] pci_bus 0000:00: root bus resource [bus 00-ff]
    [    0.584614] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
    [    0.584624] pci_bus 0000:00: root bus resource [mem 0x20013000-0x2fffffff]
    [    0.584658] pci 0000:00:00.0: [104c:8888] type 01 class 0x060400
    [    0.584701] pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0x000fffff]
    [    0.584722] pci 0000:00:00.0: reg 0x14: [mem 0x00000000-0x0000ffff]
    [    0.584788] pci 0000:00:00.0: supports D1
    [    0.584797] pci 0000:00:00.0: PME# supported from D0 D1 D3hot
    [    0.585019] PCI: bus0: Fast back to back transfers disabled
    [    0.585142] PCI: bus1: Fast back to back transfers enabled
    [    0.585232] pci 0000:00:00.0: BAR 0: assigned [mem 0x20100000-0x201fffff]
    [    0.585247] pci 0000:00:00.0: BAR 1: assigned [mem 0x20020000-0x2002ffff]
    [    0.585259] pci 0000:00:00.0: PCI bridge to [bus 01]
    [    0.585480] pcieport 0000:00:00.0: Signaling PME through PCIe PME interrupt
    [    0.585493] pcie_pme 0000:00:00.0:pcie01: service driver pcie_pme loaded
    [    0.585610] aer 0000:00:00.0:pcie02: service driver aer loaded
    [    0.641463] Serial: 8250/16550 driver, 10 ports, IRQ sharing disabled
    [    0.644854] 4806a000.serial: ttyS0 at MMIO 0x4806a000 (irq = 301, base_baud = 3000000) is a 8250
    [    1.610600] console [ttyS0] enabled
    [    1.615024] 48020000.serial: ttyS2 at MMIO 0x48020000 (irq = 302, base_baud = 3000000) is a 8250
    [    1.625003] [drm] Initialized drm 1.1.0 20060810
    [    1.630510] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    [    1.637203] [drm] No driver support for vblank timestamp query.
    [    1.643361] [drm] Initialized vdrm 1.0.0 20110917 on minor 0
    [    1.736334] loop: module loaded
    [    1.747037] vmemexp device MAJOR num = 245
    [    1.751167] vmemexp class registered
    [    1.754893] /dev/vmemexp device registered
    [    1.759006] ioctl DBUFIOC_EXPORT_VIRTMEM = -1072899120
    [    1.776845] m25p80 spi32766.0: unrecognized JEDEC id bytes: 00,  0,  0
    [    1.784418] libphy: Fixed MDIO Bus: probed
    [    1.832842] davinci_mdio 48485000.mdio: davinci mdio revision 1.6
    [    1.838966] davinci_mdio 48485000.mdio: detected phy mask fffffffe
    [    1.857240] libphy: 48485000.mdio: probed
    [    1.861272] davinci_mdio 48485000.mdio: phy[0]: device 48485000.mdio:00, driver unknown
    [    1.869904] cpsw 48484000.ethernet: Detected MACID = 6c:c3:74:0d:62:ee
    [    1.876601] cpsw 48484000.ethernet: cpts: overflow check period 800
    [    1.884723] mousedev: PS/2 mouse device common for all mice
    [    1.900923] i2c /dev entries driver
    [    1.909685] omap_hsmmc 4809c000.mmc: Got CD GPIO
    [    1.914826] vsys_3v3: supplied by evm_12v0
    [    1.918985] evm_3v3: supplied by vsys_3v3
    [    1.923076] evm_3v3_sd: supplied by evm_3v3
    [    1.973301] omap_hsmmc 480b4000.mmc: no pinctrl state for sdr25 mode
    [    1.979686] omap_hsmmc 480b4000.mmc: no pinctrl state for sdr12 mode
    [    2.033190] omap_hsmmc 480d1000.mmc: no pinctrl state for sdr25 mode
    [    2.039573] omap_hsmmc 480d1000.mmc: no pinctrl state for sdr12 mode
    [    2.062814] omap_hsmmc 480d1000.mmc: no pinctrl state for hs mode
    [    2.103561] ledtrig-cpu: registered to indicate activity on CPUs
    [    2.123751] aic_dvdd: supplied by evm_3v3
    [    2.134401] NET: Registered protocol family 10
    [    2.143169] sit: IPv6 over IPv4 tunneling driver
    [    2.148351] NET: Registered protocol family 17
    [    2.163038] Key type dns_resolver registered
    [    2.167454] omap_voltage_late_init: Voltage driver support not added
    [    2.193354] Adding alias for supply vdd,cpu0 -> vdd,4a003b20.oppdm
    [    2.199563] Adding alias for supply vbb,cpu0 -> vbb,4a003b20.oppdm
    [    2.212839] cpu0 supply vdd not found, using dummy regulator
    [    2.218784] Adding alias for supply vdd,cpu0 -> vdd,4a003b20.oppdm
    [    2.242848] Adding alias for supply vbb,cpu0 -> vbb,4a003b20.oppdm
    [    2.249070] cpu0 supply vdd not found, using dummy regulator
    [    2.263657] Power Management for TI OMAP4+ devices.
    [    2.268770] Registering SWP/SWPB emulation handler
    [    2.283905] dmm 4e000000.dmm: workaround for errata i878 in use
    [    2.303373] dmm 4e000000.dmm: initialized all PAT entries
    [    2.313292] [drm] Initialized omapdrm 1.0.0 20110917 on minor 1
    [    2.342771] evm_5v0: supplied by evm_12v0
    [    2.346877] lp8733-ldo1: supplied by evm_5v0
    [    2.354238] asoc-simple-card sound@0: tlv320aic3x-hifi <-> 48468000.mcasp mapping ok
    [    2.373032] mmc1: MAN_BKOPS_EN bit is not set
    [    2.378537] hctosys: unable to open rtc device (rtc0)
    [    2.388404] mmc1: new HS200 MMC card at address 0001
    [    2.402073] aic_dvdd: disabling
    [    2.406550] vddshv8: disabling
    [    2.409850] ALSA device list:
    [    2.412853]   #0: DRA7xx-EVM
    [    2.416795] mmcblk0: mmc1:0001 8GTF4R 7.28 GiB 
    [    2.431611] mmcblk0boot0: mmc1:0001 8GTF4R partition 1 4.00 MiB
    [    2.447852] mmcblk0boot1: mmc1:0001 8GTF4R partition 2 4.00 MiB
    [    2.454460]  mmcblk0: p1 p2
    [    2.459219] EXT4-fs (mmcblk0p2): mounting ext3 file system using the ext4 subsystem
    [    2.486714] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null)
    [    2.494910] VFS: Mounted root (ext3 filesystem) on device 179:2.
    [    2.502820] devtmpfs: mounted
    [    2.506072] Freeing unused kernel memory: 336K
    [    2.510534] This architecture does not have kernel memory protection.
    [    2.578130] systemd[1]: System time before build time, advancing clock.
    [    2.599022] random: systemd: uninitialized urandom read (16 bytes read, 12 bits of entropy available)
    [    2.610945] random: systemd: uninitialized urandom read (16 bytes read, 12 bits of entropy available)
    [    2.622650] systemd[1]: systemd 229 running in system mode. (+PAM -AUDIT -SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP -LIBCRYPTSETUP -GCRYPT +GNUTLS +ACL +XZ -LZ4 -SECCOMP +BLKID -ELFUTILS +KMOD -IDN)
    [    2.641255] systemd[1]: Detected architecture arm.
    [    2.663437] systemd[1]: Set hostname to <dra7xx-evm>.
    [    2.708557] random: systemd-sysv-ge: uninitialized urandom read (16 bytes read, 14 bits of entropy available)
    [    2.723680] random: systemd-gpt-aut: uninitialized urandom read (16 bytes read, 14 bits of entropy available)
    [    2.734892] random: systemd-gpt-aut: uninitialized urandom read (16 bytes read, 15 bits of entropy available)
    [    2.746476] random: systemd-sysv-ge: uninitialized urandom read (16 bytes read, 15 bits of entropy available)
    [    2.764837] random: systemd-sysv-ge: uninitialized urandom read (16 bytes read, 16 bits of entropy available)
    [    2.794046] random: systemd: uninitialized urandom read (16 bytes read, 18 bits of entropy available)
    [    2.803662] random: systemd: uninitialized urandom read (16 bytes read, 18 bits of entropy available)
    [    2.813749] random: systemd: uninitialized urandom read (16 bytes read, 18 bits of entropy available)
    [    2.932982] systemd[1]: sysinit.target: Found ordering cycle on sysinit.target/start
    [    2.940775] systemd[1]: sysinit.target: Found dependency on alignment.service/start
    [    2.948559] systemd[1]: sysinit.target: Found dependency on sysinit.target/start
    [    2.956009] systemd[1]: sysinit.target: Breaking ordering cycle by deleting job alignment.service/start
    [    2.965466] systemd[1]: alignment.service: Job alignment.service/start deleted to break ordering cycle starting with sysinit.target/start
    [    3.005389] systemd[1]: Listening on Journal Socket (/dev/log).
    [    3.033215] systemd[1]: Listening on udev Control Socket.
    [    3.070226] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [    3.104597] systemd[1]: Created slice User and Session Slice.
    [    3.133280] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [    3.163790] systemd[1]: Created slice System Slice.
    [    3.193803] systemd[1]: Created slice system-serial\x2dgetty.slice.
    [    3.223303] systemd[1]: Listening on Network Service Netlink Socket.
    [    3.253758] systemd[1]: Created slice system-getty.slice.
    [    3.283240] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [    3.313125] systemd[1]: Listening on Syslog Socket.
    [    3.333035] systemd[1]: Reached target Slices.
    [    3.353038] systemd[1]: Reached target Swap.
    [    3.373024] systemd[1]: Reached target Paths.
    [    3.393086] systemd[1]: Listening on udev Kernel Socket.
    [    3.423033] systemd[1]: Reached target Remote File Systems.
    [    3.453158] systemd[1]: Listening on Journal Socket.
    [    3.486516] systemd[1]: Starting Load Kernel Modules...
    [    3.527306] systemd[1]: Mounting Temporary Directory...
    [    3.565689] systemd[1]: Starting Create list of required static device nodes for the current kernel...
    [    3.615765] systemd[1]: Starting Remount Root and Kernel File Systems...
    [    3.647083] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null)
    [    3.665827] systemd[1]: Mounting Debug File System...
    [    3.695501] systemd[1]: Starting Setup Virtual Console...
    [    3.725739] systemd[1]: Starting Journal Service...
    [    3.755651] systemd[1]: Mounting POSIX Message Queue File System...
    [    3.817001] systemd[1]: Mounted POSIX Message Queue File System.
    [    3.853203] systemd[1]: Mounted Debug File System.
    [    3.863313] systemd[1]: Mounted Temporary Directory.
    [    3.893356] systemd[1]: Started Journal Service.
    [    4.726116] systemd-journald[131]: Received request to flush runtime journal from PID 1
    [    5.629252] omap-rproc 58820000.ipu: assigned reserved memory node ipu1_cma@9d000000
    [    5.699126]  remoteproc0: 58820000.ipu is available
    [    5.745244]  remoteproc0: Note: remoteproc is still under development and considered experimental.
    [    5.849626]  remoteproc0: THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn't yet guaranteed.
    [    5.989746]  remoteproc0: Direct firmware load for dra7-ipu1-fw.xem4 failed with error -2
    [    6.005040] omap-rproc 55020000.ipu: assigned reserved memory node ipu2_cma@95800000
    [    6.054472]  remoteproc0: failed to load dra7-ipu1-fw.xem4
    [    6.060199]  remoteproc1: 55020000.ipu is available
    [    6.136319]  remoteproc1: Note: remoteproc is still under development and considered experimental.
    [    6.179413]  remoteproc1: THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn't yet guaranteed.
    [    6.266153] omap-rproc 40800000.dsp: assigned reserved memory node dsp1_cma@99000000
    [    6.328411]  remoteproc2: 40800000.dsp is available
    [    6.378259]  remoteproc2: Note: remoteproc is still under development and considered experimental.
    [    6.412710]  remoteproc1: registered virtio0 (type 7)
    [    6.432511]  remoteproc2: THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn't yet guaranteed.
    [    6.575320] omap_rng 48090000.rng: OMAP Random Number Generator ver. 20
    [    6.648523] omap-des 480a5000.des: OMAP DES hw accel rev: 2.2
    [    6.754108]  remoteproc2: registered virtio1 (type 7)
    [    7.511386] omap-sham 4b101000.sham: hw accel on OMAP rev 4.3
    [    7.522403] CAN device driver interface
    [    7.671808] FAT-fs (mmcblk0p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
    [    7.687822] omap-aes 4b500000.aes: OMAP AES hw accel rev: 3.3
    [    7.749033] omap-aes 4b700000.aes: OMAP AES hw accel rev: 3.3
    [    7.767833] c_can_platform 4ae3c000.can: c_can_platform device registered (regs=fce3c000, irq=348)
    [    7.863945] [drm] Initialized pvr 1.14.3699939 20110701 on minor 2
    [    9.016104] PVR_K: UM DDK-(3699939) and KM DDK-(3699939) match. [ OK ]
    [    9.131077] net eth0: initializing cpsw version 1.15 (0)
    [    9.170662] net eth0: initialized cpsw ale version 1.4
    [    9.210366] net eth0: ALE Table size 1024
    [    9.259737] net eth0: phy found : id is : 0x2000a253
    [    9.332743] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
    [   10.080897]  remoteproc1: powering up 55020000.ipu
    [   10.167715]  remoteproc1: Booting fw image dra7-ipu2-fw.xem4, size 8106188
    [   10.191219] omap-iommu 55082000.mmu: 55082000.mmu: version 2.1
    [   10.269675]  remoteproc1: remote processor 55020000.ipu is now up
    [   10.298382] virtio_rpmsg_bus virtio0: rpmsg host is online
    [   10.317054]  remoteproc2: powering up 40800000.dsp
    [   10.340534]  remoteproc2: Booting fw image dra7-dsp1-fw.xe66, size 6884588
    [   10.370252] omap_hwmod: mmu0_dsp1: _wait_target_disable failed
    [   10.376151] omap-iommu 40d01000.mmu: 40d01000.mmu: version 3.0
    [   10.382086] omap-iommu 40d02000.mmu: 40d02000.mmu: version 3.0
    [   10.472288]  remoteproc2: remote processor 40800000.dsp is now up
    [   10.479358] virtio_rpmsg_bus virtio0: creating channel rpmsg-proto addr 0x50
    [   10.504681] virtio_rpmsg_bus virtio1: rpmsg host is online
    [   10.510234] virtio_rpmsg_bus virtio1: creating channel rpmsg-proto addr 0x50
    [   10.552250] NET: Registered protocol family 41
    [   11.258442] cpsw 48484000.ethernet eth0: Link is Up - 10Mbps/Half - flow control off
    [   11.303790] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
    

    [    0.000000] Booting Linux on physical CPU 0x0
    [    0.000000] Initializing cgroup subsys cpuset
    [    0.000000] Initializing cgroup subsys cpu
    [    0.000000] Initializing cgroup subsys cpuacct
    [    0.000000] Linux version 4.4.84-00038-g0af2ab5-dirty (root@tw-eh01005308) (gcc version 5.3.1 20160113 (Linaro GCC 5.3-2016.02) ) #1 SMP PREEMPT Thu Sep 19 19:24:00 CST 2019
    [    0.000000] CPU: ARMv7 Processor [412fc0f2] revision 2 (ARMv7), cr=30c5387d
    [    0.000000] CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction cache
    [    0.000000] Machine model: TI DRA742
    [    0.000000] Reserved memory: created DMA memory pool at 0x0000000040300000, size 3 MiB
    [    0.000000] Reserved memory: initialized node cmem@40300000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: regions without no-map are not yet supported
    [    0.000000] Reserved memory: created CMA memory pool at 0x0000000099000000, size 80 MiB
    [    0.000000] Reserved memory: initialized node ipu2_cma@95800000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created CMA memory pool at 0x000000009e000000, size 32 MiB
    [    0.000000] Reserved memory: initialized node ipu1_cma@9d000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: regions without no-map are not yet supported
    [    0.000000] Reserved memory: created CMA memory pool at 0x00000000a1000000, size 32 MiB
    [    0.000000] Reserved memory: initialized node dsp1_cma@99000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created CMA memory pool at 0x00000000a3000000, size 32 MiB
    [    0.000000] Reserved memory: initialized node dsp2_cma@9f000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: regions without no-map are not yet supported
    [    0.000000] Reserved memory: created DMA memory pool at 0x00000000a9000000, size 32 MiB
    [    0.000000] Reserved memory: initialized node cmem@A9000000, compatible id shared-dma-pool
    [    0.000000] cma: Reserved 64 MiB at 0x00000000bbc00000
    [    0.000000] Forcing write-allocate cache policy for SMP
    [    0.000000] Memory policy: Data cache writealloc
    [    0.000000] OMAP4: Map 0x00000000bfd00000 to fe600000 for dram barrier
    [    0.000000] On node 0 totalpages: 253184
    [    0.000000] free_area_init_node: node 0, pgdat c099b740, node_mem_map ef69a000
    [    0.000000]   DMA zone: 1728 pages used for memmap
    [    0.000000]   DMA zone: 0 pages reserved
    [    0.000000]   DMA zone: 188416 pages, LIFO batch:31
    [    0.000000]   HighMem zone: 64768 pages, LIFO batch:15
    [    0.000000] DRA752 ES2.0
    [    0.000000] PERCPU: Embedded 11 pages/cpu @ef62a000 s14912 r8192 d21952 u45056
    [    0.000000] pcpu-alloc: s14912 r8192 d21952 u45056 alloc=11*4096
    [    0.000000] pcpu-alloc: [0] 0 [0] 1 
    [    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 251456
    [    0.000000] Kernel command line: console=ttyO0,115200n8 vram=16M root=PARTUUID=5d031825-02 rw rootwait ip=none mem=1024M cma=64M
    [    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: 353060K/1012736K available (6671K kernel code, 320K rwdata, 2480K rodata, 340K init, 290K bss, 413916K reserved, 245760K cma-reserved, 193536K 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 - 0xc08f802c   (9153 kB)
    [    0.000000]       .init : 0xc08f9000 - 0xc094e000   ( 340 kB)
    [    0.000000]       .data : 0xc094e000 - 0xc099e220   ( 321 kB)
    [    0.000000]        .bss : 0xc09a0000 - 0xc09e8880   ( 291 kB)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    [    0.000000] Preemptible hierarchical RCU implementation.
    [    0.000000] 	Build-time adjustment of leaf fanout to 32.
    [    0.000000] NR_IRQS:16 nr_irqs:16 16
    [    0.000000] ti_dt_clocks_register: failed to lookup clock node gmac_gmii_ref_clk_div
    [    0.000000] OMAP clockevent source: timer1 at 32786 Hz
    [    0.000000] Architected cp15 timer(s) running at 6.14MHz (phys).
    [    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.000015] Switching to timer-based delay loop, resolution 162ns
    [    0.000335] clocksource: 32k_counter: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 58327039986419 ns
    [    0.000343] OMAP clocksource: 32k_counter at 32768 Hz
    [    0.000790] Console: colour dummy device 80x30
    [    0.000806] WARNING: Your 'console=ttyO0' has been replaced by 'ttyS0'
    [    0.000812] This ensures that you still see kernel messages. Please
    [    0.000817] update your kernel commandline.
    [    0.000832] Calibrating delay loop (skipped), value calculated using timer frequency.. 12.29 BogoMIPS (lpj=61475)
    [    0.000845] pid_max: default: 32768 minimum: 301
    [    0.000943] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
    [    0.000952] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
    [    0.001494] Initializing cgroup subsys io
    [    0.001510] Initializing cgroup subsys memory
    [    0.001535] Initializing cgroup subsys devices
    [    0.001548] Initializing cgroup subsys freezer
    [    0.001559] Initializing cgroup subsys perf_event
    [    0.001570] Initializing cgroup subsys pids
    [    0.001596] CPU: Testing write buffer coherency: ok
    [    0.001797] /cpus/cpu@0 missing clock-frequency property
    [    0.001813] /cpus/cpu@1 missing clock-frequency property
    [    0.001824] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000
    [    0.001857] Setting up static identity map for 0x80008380 - 0x800083e0
    [    0.080056] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001
    [    0.080124] Brought up 2 CPUs
    [    0.080137] SMP: Total of 2 processors activated (24.59 BogoMIPS).
    [    0.080143] CPU: All CPU(s) started in HYP mode.
    [    0.080149] CPU: Virtualization extensions available.
    [    0.080528] devtmpfs: initialized
    [    0.108874] VFP support v0.3: implementor 41 architecture 4 part 30 variant f rev 0
    [    0.109815] omap_hwmod: l3_main_2 using broken dt data from ocp
    [    0.313560] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
    [    0.313581] futex hash table entries: 512 (order: 3, 32768 bytes)
    [    0.318512] pinctrl core: initialized pinctrl subsystem
    [    0.319383] NET: Registered protocol family 16
    [    0.320361] DMA: preallocated 256 KiB pool for atomic coherent allocations
    [    0.350228] cpuidle: using governor ladder
    [    0.380253] cpuidle: using governor menu
    [    0.388782] OMAP GPIO hardware version 0.1
    [    0.395253] irq: no irq domain found for /ocp/l4@4a000000/scm@2000/pinmux@1400 !
    [    0.411805] omap-gpmc 50000000.gpmc: GPMC revision 6.0
    [    0.411819] gpmc_mem_init: disabling cs 0 mapped at 0x0-0x1000000
    [    0.420399] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers.
    [    0.420409] hw-breakpoint: maximum watchpoint size is 8 bytes.
    [    0.420883] omap4_sram_init:Unable to allocate sram needed to handle errata I688
    [    0.420893] omap4_sram_init:Unable to get sram pool needed to handle errata I688
    [    0.421469] OMAP DMA hardware revision 0.0
    [    0.461710] omap-dma-engine 4a056000.dma-controller: OMAP DMA engine driver (LinkedList1/2/3 supported)
    [    0.462861] edma 43300000.edma: memcpy is disabled
    [    0.467700] edma 43300000.edma: TI EDMA DMA engine driver
    [    0.472091] omap-iommu 40d01000.mmu: 40d01000.mmu registered
    [    0.472268] omap-iommu 40d02000.mmu: 40d02000.mmu registered
    [    0.472429] omap-iommu 58882000.mmu: 58882000.mmu registered
    [    0.472586] omap-iommu 55082000.mmu: 55082000.mmu registered
    [    0.472883] omap-iommu 41501000.mmu: 41501000.mmu registered
    [    0.473068] omap-iommu 41502000.mmu: 41502000.mmu registered
    [    0.476072] palmas 0-0058: IRQ missing: skipping irq request
    [    0.490799] palmas 0-0058: Muxing GPIO 2e, PWM 0, LED 0
    [    0.563116] pcf857x 0-0020: probed
    [    0.563692] pcf857x 0-0021: probed
    [    0.563848] omap_i2c 48070000.i2c: bus 0 rev0.12 at 400 kHz
    [    0.564248] omap_i2c 48060000.i2c: bus 2 rev0.12 at 400 kHz
    [    0.564454] media: Linux media interface: v0.10
    [    0.564507] Linux video capture interface: v2.00
    [    0.564551] pps_core: LinuxPPS API ver. 1 registered
    [    0.564559] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    [    0.564584] PTP clock support registered
    [    0.564633] EDAC MC: Ver: 3.0.0
    [    0.565382] omap-mailbox 48840000.mailbox: omap mailbox rev 0x400
    [    0.565676] omap-mailbox 48842000.mailbox: omap mailbox rev 0x400
    [    0.566011] Advanced Linux Sound Architecture Driver Initialized.
    [    0.566883] clocksource: Switched to clocksource arch_sys_counter
    [    0.577472] NET: Registered protocol family 2
    [    0.577971] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
    [    0.578034] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
    [    0.578159] TCP: Hash tables configured (established 8192 bind 8192)
    [    0.578207] UDP hash table entries: 512 (order: 2, 16384 bytes)
    [    0.578238] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    [    0.578448] NET: Registered protocol family 1
    [    0.578717] RPC: Registered named UNIX socket transport module.
    [    0.578726] RPC: Registered udp transport module.
    [    0.578733] RPC: Registered tcp transport module.
    [    0.578739] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.578758] PCI: CLS 0 bytes, default 64
    [    0.579754] hw perfevents: enabled with armv7_cortex_a15 PMU driver, 7 counters available
    [    0.589787] squashfs: version 4.0 (2009/01/31) Phillip Lougher
    [    0.590437] NFS: Registering the id_resolver key type
    [    0.590463] Key type id_resolver registered
    [    0.590471] Key type id_legacy registered
    [    0.590531] ntfs: driver 2.1.32 [Flags: R/O].
    [    0.591819] bounce: pool size: 64 pages
    [    0.591974] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
    [    0.591991] io scheduler noop registered
    [    0.592004] io scheduler deadline registered
    [    0.592038] io scheduler cfq registered (default)
    [    0.596973] pinctrl-single 4a003400.pinmux: 282 pins at pa fc003400 size 1128
    [    0.600156] PCI host bridge /ocp/axi@0/pcie_rc@51000000 ranges:
    [    0.600168]   No bus range found for /ocp/axi@0/pcie_rc@51000000, using [bus 00-ff]
    [    0.600202]    IO 0x20003000..0x20012fff -> 0x00000000
    [    0.600223]   MEM 0x20013000..0x2fffffff -> 0x20013000
    [    0.630054] dra7-pcie 51000000.pcie_rc: link is not up
    [    0.630225] dra7-pcie 51000000.pcie_rc: PCI host bridge to bus 0000:00
    [    0.630237] pci_bus 0000:00: root bus resource [bus 00-ff]
    [    0.630247] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
    [    0.630257] pci_bus 0000:00: root bus resource [mem 0x20013000-0x2fffffff]
    [    0.630290] pci 0000:00:00.0: [104c:8888] type 01 class 0x060400
    [    0.630333] pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0x000fffff]
    [    0.630355] pci 0000:00:00.0: reg 0x14: [mem 0x00000000-0x0000ffff]
    [    0.630422] pci 0000:00:00.0: supports D1
    [    0.630431] pci 0000:00:00.0: PME# supported from D0 D1 D3hot
    [    0.630650] PCI: bus0: Fast back to back transfers disabled
    [    0.630778] PCI: bus1: Fast back to back transfers enabled
    [    0.630861] pci 0000:00:00.0: BAR 0: assigned [mem 0x20100000-0x201fffff]
    [    0.630876] pci 0000:00:00.0: BAR 1: assigned [mem 0x20020000-0x2002ffff]
    [    0.630888] pci 0000:00:00.0: PCI bridge to [bus 01]
    [    0.631106] pcieport 0000:00:00.0: Signaling PME through PCIe PME interrupt
    [    0.631119] pcie_pme 0000:00:00.0:pcie01: service driver pcie_pme loaded
    [    0.631235] aer 0000:00:00.0:pcie02: service driver aer loaded
    [    0.692035] Serial: 8250/16550 driver, 10 ports, IRQ sharing disabled
    [    0.695416] 4806a000.serial: ttyS0 at MMIO 0x4806a000 (irq = 301, base_baud = 3000000) is a 8250
    [    1.705829] console [ttyS0] enabled
    [    1.710245] 4806c000.serial: ttyS1 at MMIO 0x4806c000 (irq = 302, base_baud = 3000000) is a 8250
    [    1.719956] 48020000.serial: ttyS2 at MMIO 0x48020000 (irq = 303, base_baud = 3000000) is a 8250
    [    1.729993] [drm] Initialized drm 1.1.0 20060810
    [    1.735510] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    [    1.742197] [drm] No driver support for vblank timestamp query.
    [    1.748354] [drm] Initialized vdrm 1.0.0 20110917 on minor 0
    [    1.761301] loop: module loaded
    [    1.764826] vmemexp device MAJOR num = 245
    [    1.768972] vmemexp class registered
    [    1.772691] /dev/vmemexp device registered
    [    1.776804] ioctl DBUFIOC_EXPORT_VIRTMEM = -1072899120
    [    1.782703] nand: No NAND device found
    [    1.786473] omap2-nand 8000000.nand: scan failed, may be bus-width mismatch
    [    1.796421] m25p80 spi32766.0: s25fl256s1 (32768 Kbytes)
    [    1.801839] 7 ofpart partitions found on MTD device spi32766.0
    [    1.807715] Creating 7 MTD partitions on "spi32766.0":
    [    1.812878] 0x000000000000-0x000000040000 : "QSPI.SPL"
    [    1.818993] 0x000000040000-0x000000140000 : "QSPI.u-boot"
    [    1.825322] 0x000000140000-0x0000001c0000 : "QSPI.u-boot-spl-os"
    [    1.832283] 0x0000001c0000-0x0000001d0000 : "QSPI.u-boot-env"
    [    1.838992] 0x0000001d0000-0x0000001e0000 : "QSPI.u-boot-env.backup1"
    [    1.846370] 0x0000001e0000-0x0000009e0000 : "QSPI.kernel"
    [    1.852729] 0x0000009e0000-0x000002000000 : "QSPI.file-system"
    [    1.860549] libphy: Fixed MDIO Bus: probed
    [    1.906918] davinci_mdio 48485000.mdio: davinci mdio revision 1.6
    [    1.913043] davinci_mdio 48485000.mdio: detected phy mask fffffff3
    [    1.923269] libphy: 48485000.mdio: probed
    [    1.927319] davinci_mdio 48485000.mdio: phy[2]: device 48485000.mdio:02, driver unknown
    [    1.935359] davinci_mdio 48485000.mdio: phy[3]: device 48485000.mdio:03, driver unknown
    [    1.944042] cpsw 48484000.ethernet: Detected MACID = f0:b5:d1:0d:a2:5a
    [    1.950712] cpsw 48484000.ethernet: cpts: overflow check period 800
    [    1.957682] cpsw 48484000.ethernet: cpsw: Detected MACID = f0:b5:d1:0d:a2:5b
    [    1.966314] mousedev: PS/2 mouse device common for all mice
    [    1.972523] i2c /dev entries driver
    [    1.981292] omap_hsmmc 4809c000.mmc: Got CD GPIO
    [    1.986925] omap_hsmmc 480b4000.mmc: no pinctrl state for sdr25 mode
    [    1.993311] omap_hsmmc 480b4000.mmc: no pinctrl state for sdr12 mode
    [    1.999869] evm_3v3_sw: supplied by sysen1
    [    2.080684] mmc0: MAN_BKOPS_EN bit is not set
    [    2.092607] mmc0: new HS200 MMC card at address 0001
    [    2.098055] mmcblk0: mmc0:0001 MMC08G 7.25 GiB 
    [    2.102840] mmcblk0boot0: mmc0:0001 MMC08G partition 1 8.00 MiB
    [    2.109021] mmcblk0boot1: mmc0:0001 MMC08G partition 2 8.00 MiB
    [    2.158714] ledtrig-cpu: registered to indicate activity on CPUs
    [    2.167204] aic_dvdd: supplied by evm_3v3_sw
    [    2.173106] davinci-mcasp 4847c000.mcasp: invalid tdm slots: 0
    [    2.180619] NET: Registered protocol family 10
    [    2.195875] sit: IPv6 over IPv4 tunneling driver
    [    2.201088] NET: Registered protocol family 17
    [    2.205758] Key type dns_resolver registered
    [    2.210238] omap_voltage_late_init: Voltage driver support not added
    [    2.217140] Adding alias for supply vdd,cpu0 -> vdd,4a003b20.oppdm
    [    2.223348] Adding alias for supply vbb,cpu0 -> vbb,4a003b20.oppdm
    [    2.230068] Adding alias for supply vdd,cpu0 -> vdd,4a003b20.oppdm
    [    2.236279] Adding alias for supply vbb,cpu0 -> vbb,4a003b20.oppdm
    [    2.244515] Power Management for TI OMAP4+ devices.
    [    2.249619] Registering SWP/SWPB emulation handler
    [    2.255346] dmm 4e000000.dmm: workaround for errata i878 in use
    [    2.262649] dmm 4e000000.dmm: initialized all PAT entries
    [    2.268775] [drm] Initialized omapdrm 1.0.0 20110917 on minor 1
    [    2.285604] omap_hsmmc 4809c000.mmc: Got CD GPIO
    [    2.328214] asoc-simple-card sound0: tlv320aic3x-hifi <-> 48468000.mcasp mapping ok
    [    2.347800] input: gpio_keys as /devices/platform/gpio_keys/input/input0
    [    2.356692] hctosys: unable to open rtc device (rtc0)
    [    2.373115] evm_1v8: disabling
    [    2.376185] aic_dvdd: disabling
    [    2.379357] vmmcwl_fixed: disabling
    [    2.383028] ldousb: disabling
    [    2.386413] ALSA device list:
    [    2.389402]   #0: DRA7xx-EVM
    [    2.392937] Waiting for root device PARTUUID=5d031825-02...
    [    2.854330] mmc2: host does not support reading read-only switch, assuming write-enable
    [    2.865623] mmc2: new ultra high speed SDR104 SDXC card at address 0001
    [    2.872678] mmcblk1: mmc2:0001 ED4QT 119 GiB 
    [    2.878193]  mmcblk1: p1 p2
    [    2.947848] EXT4-fs (mmcblk1p2): mounting ext3 file system using the ext4 subsystem
    [    3.246476] EXT4-fs (mmcblk1p2): recovery complete
    [    3.277019] EXT4-fs (mmcblk1p2): mounted filesystem with ordered data mode. Opts: (null)
    [    3.285179] VFS: Mounted root (ext3 filesystem) on device 179:50.
    [    3.293387] devtmpfs: mounted
    [    3.296592] Freeing unused kernel memory: 340K
    [    3.301075] This architecture does not have kernel memory protection.
    [    3.405716] systemd[1]: System time before build time, advancing clock.
    [    3.440952] random: systemd: uninitialized urandom read (16 bytes read, 24 bits of entropy available)
    [    3.450387] systemd[1]: Configuration file /etc/systemd/system.conf is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    3.467983] random: systemd: uninitialized urandom read (16 bytes read, 24 bits of entropy available)
    [    3.480588] systemd[1]: systemd 229 running in system mode. (+PAM -AUDIT -SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP -LIBCRYPTSETUP -GCRYPT +GNUTLS +ACL +XZ -LZ4 -SECCOMP +BLKID -ELFUTILS +KMOD -IDN)
    [    3.499096] systemd[1]: Detected architecture arm.
    [    3.518045] systemd[1]: Set hostname to <dra7xx-evm>.
    [    3.601465] random: systemd-sysv-ge: uninitialized urandom read (16 bytes read, 26 bits of entropy available)
    [    3.603455] random: systemd-gpt-aut: uninitialized urandom read (16 bytes read, 26 bits of entropy available)
    [    3.603631] random: systemd-gpt-aut: uninitialized urandom read (16 bytes read, 26 bits of entropy available)
    [    3.635597] random: systemd-sysv-ge: uninitialized urandom read (16 bytes read, 27 bits of entropy available)
    [    3.647629] random: systemd-sysv-ge: uninitialized urandom read (16 bytes read, 27 bits of entropy available)
    [    3.658395] systemd-sysv-generator[99]: Configuration file /etc/systemd/system/systemd-udevd.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    3.675753] systemd-sysv-generator[99]: Configuration file /lib/systemd/system/run-postinsts.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    3.695688] systemd-sysv-generator[99]: Configuration file /lib/systemd/system/alsa-state.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    3.712924] systemd-sysv-generator[99]: Configuration file /lib/systemd/system/busybox-syslog.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    3.753076] random: systemd: uninitialized urandom read (16 bytes read, 30 bits of entropy available)
    [    3.762570] random: systemd: uninitialized urandom read (16 bytes read, 30 bits of entropy available)
    [    3.772431] random: systemd: uninitialized urandom read (16 bytes read, 30 bits of entropy available)
    [    3.918999] systemd[1]: Configuration file /lib/systemd/system/local-fs.target is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    3.936687] systemd[1]: Configuration file /lib/systemd/system/tmp.mount is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    3.951926] systemd[1]: Configuration file /lib/systemd/system/system.slice is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    3.967039] systemd[1]: Configuration file /lib/systemd/system/-.slice is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    3.982458] systemd[1]: Configuration file /lib/systemd/system/slices.target is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    3.997602] systemd[1]: Configuration file /lib/systemd/system/systemd-journald.socket is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.014181] systemd[1]: Configuration file /lib/systemd/system/systemd-journald.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.031461] systemd[1]: Configuration file /lib/systemd/system/sysinit.target is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.049638] systemd[1]: Configuration file /lib/systemd/system/basic.target is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.065502] systemd[1]: Configuration file /lib/systemd/system/alsa-state.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.080544] systemd[1]: Configuration file /lib/systemd/system/alsa-restore.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.096283] systemd[1]: Configuration file /lib/systemd/system/paths.target is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.111237] systemd[1]: Configuration file /lib/systemd/system/timers.target is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.126659] systemd[1]: Configuration file /lib/systemd/system/systemd-tmpfiles-clean.timer is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.143086] systemd[1]: Configuration file /lib/systemd/system/systemd-tmpfiles-clean.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.159707] systemd[1]: Configuration file /lib/systemd/system/time-sync.target is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.175828] systemd[1]: Configuration file /lib/systemd/system/remote-fs.target is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.191150] systemd[1]: Configuration file /lib/systemd/system/remote-fs-pre.target is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.207173] systemd[1]: Configuration file /lib/systemd/system/reboot.target is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.223863] systemd[1]: Configuration file /lib/systemd/system/systemd-update-utmp-runlevel.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.241422] systemd[1]: Configuration file /lib/systemd/system/graphical.target is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.257695] systemd[1]: Configuration file /lib/systemd/system/rescue.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.273201] systemd[1]: Configuration file /lib/systemd/system/multi-user.target is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.290840] systemd[1]: Configuration file /lib/systemd/system/systemd-ask-password-wall.path is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.307831] systemd[1]: Configuration file /lib/systemd/system/systemd-ask-password-wall.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.324717] systemd[1]: Configuration file /lib/systemd/system/dbus.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.339751] systemd[1]: Configuration file /lib/systemd/system/dbus.socket is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.354830] systemd[1]: Configuration file /lib/systemd/system/getty.target is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.370629] systemd[1]: Configuration file /lib/systemd/system/serial-getty@.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.386997] systemd[1]: Configuration file /etc/systemd/system/getty.target.wants/../../../../lib/systemd/system/getty@.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.407060] systemd[1]: Configuration file /lib/systemd/system/serial-getty@.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.422654] systemd[1]: Configuration file /lib/systemd/system/systemd-user-sessions.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.439375] systemd[1]: Configuration file /lib/systemd/system/nss-user-lookup.target is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.455200] systemd[1]: Configuration file /lib/systemd/system/systemd-logind.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.471477] systemd[1]: Configuration file /lib/systemd/system/user.slice is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.487047] systemd[1]: Configuration file /lib/systemd/system/rc-local.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.502478] systemd[1]: Configuration file /lib/systemd/system/network.target is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.517625] systemd[1]: Configuration file /lib/systemd/system/network-pre.target is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.533214] systemd[1]: Configuration file /lib/systemd/system/systemd-resolved.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.549389] systemd[1]: Configuration file /lib/systemd/system/org.freedesktop.resolve1.busname is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.566172] systemd[1]: Configuration file /lib/systemd/system/busnames.target is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.582310] systemd[1]: Configuration file /lib/systemd/system/org.freedesktop.network1.busname is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.599390] systemd[1]: Configuration file /lib/systemd/system/org.freedesktop.hostname1.busname is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.616259] systemd[1]: Configuration file /etc/systemd/system/systemd-hostnamed.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.633023] systemd[1]: Configuration file /lib/systemd/system/org.freedesktop.machine1.busname is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.649801] systemd[1]: Configuration file /lib/systemd/system/systemd-machined.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.666090] systemd[1]: Configuration file /lib/systemd/system/machine.slice is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.681160] systemd[1]: Configuration file /lib/systemd/system/org.freedesktop.login1.busname is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.697772] systemd[1]: Configuration file /lib/systemd/system/org.freedesktop.timedate1.busname is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.714645] systemd[1]: Configuration file /lib/systemd/system/systemd-timedated.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.731016] systemd[1]: Configuration file /lib/systemd/system/org.freedesktop.systemd1.busname is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.747765] systemd[1]: Configuration file /lib/systemd/system/org.freedesktop.locale1.busname is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.764503] systemd[1]: Configuration file /lib/systemd/system/systemd-localed.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.780710] systemd[1]: Configuration file /lib/systemd/system/busybox-klogd.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.796568] systemd[1]: Configuration file /lib/systemd/system/systemd-networkd.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.812824] systemd[1]: Configuration file /lib/systemd/system/busybox-syslog.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.830982] systemd[1]: Configuration file /lib/systemd/system/rescue.target is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.847175] systemd[1]: Configuration file /lib/systemd/system/systemd-reboot.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.863101] systemd[1]: Configuration file /lib/systemd/system/final.target is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.878053] systemd[1]: Configuration file /lib/systemd/system/poweroff.target is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.894018] systemd[1]: Configuration file /lib/systemd/system/systemd-poweroff.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.911373] systemd[1]: Configuration file /lib/systemd/system/systemd-ask-password-console.path is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.928314] systemd[1]: Configuration file /lib/systemd/system/systemd-ask-password-console.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.945487] systemd[1]: Configuration file /lib/systemd/system/kmod-static-nodes.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.961653] systemd[1]: Configuration file /lib/systemd/system/sys-kernel-config.mount is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.978529] systemd[1]: Configuration file /lib/systemd/system/sys-fs-fuse-connections.mount is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    4.995165] systemd[1]: Configuration file /lib/systemd/system/systemd-random-seed.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.012597] systemd[1]: Configuration file /lib/systemd/system/systemd-update-done.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.029075] systemd[1]: Configuration file /lib/systemd/system/systemd-vconsole-setup.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.045719] systemd[1]: Configuration file /lib/systemd/system/systemd-firstboot.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.061919] systemd[1]: Configuration file /lib/systemd/system/sys-kernel-debug.mount is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.077837] systemd[1]: Configuration file /lib/systemd/system/systemd-hwdb-update.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.094221] systemd[1]: Configuration file /lib/systemd/system/ldconfig.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.109615] systemd[1]: Configuration file /lib/systemd/system/systemd-modules-load.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.126100] systemd[1]: Configuration file /lib/systemd/system/systemd-machine-id-commit.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.143007] systemd[1]: Configuration file /lib/systemd/system/systemd-journal-flush.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.159647] systemd[1]: Configuration file /lib/systemd/system/systemd-tmpfiles-setup.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.176284] systemd[1]: Configuration file /lib/systemd/system/systemd-udev-trigger.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.192786] systemd[1]: Configuration file /lib/systemd/system/systemd-udevd-control.socket is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.209341] systemd[1]: Configuration file /lib/systemd/system/systemd-udevd-kernel.socket is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.225691] systemd[1]: Configuration file /lib/systemd/system/systemd-sysctl.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.241665] systemd[1]: Configuration file /lib/systemd/system/systemd-tmpfiles-setup-dev.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.258645] systemd[1]: Configuration file /etc/systemd/system/systemd-udevd.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.274069] systemd[1]: Configuration file /lib/systemd/system/systemd-update-utmp.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.290529] systemd[1]: Configuration file /lib/systemd/system/systemd-journal-catalog-update.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.307982] systemd[1]: Configuration file /lib/systemd/system/dev-mqueue.mount is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.323394] systemd[1]: Configuration file /lib/systemd/system/dev-hugepages.mount is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.339053] systemd[1]: Configuration file /lib/systemd/system/systemd-timesyncd.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.355476] systemd[1]: Configuration file /etc/systemd/system/sync-clocks.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.371413] systemd[1]: Configuration file /lib/systemd/system/run-postinsts.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.386752] systemd[1]: Configuration file /lib/systemd/system/swap.target is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.401992] systemd[1]: Configuration file /lib/systemd/system/emergency.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.417493] systemd[1]: Configuration file /lib/systemd/system/syslog.socket is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.432842] systemd[1]: Configuration file /lib/systemd/system/systemd-journald-audit.socket is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.449353] systemd[1]: Configuration file /lib/systemd/system/systemd-journald-dev-log.socket is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.466172] systemd[1]: Configuration file /lib/systemd/system/sockets.target is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.483557] systemd[1]: Configuration file /lib/systemd/system/systemd-initctl.socket is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.499874] systemd[1]: Configuration file /lib/systemd/system/systemd-initctl.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.515830] systemd[1]: Configuration file /lib/systemd/system/dropbear.socket is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.531949] systemd[1]: Configuration file /lib/systemd/system/systemd-networkd.socket is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.547916] systemd[1]: Configuration file /lib/systemd/system/umount.target is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.562928] systemd[1]: Configuration file /lib/systemd/system/var-lib-machines.mount is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.578916] systemd[1]: Configuration file /lib/systemd/system/systemd-remount-fs.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.595779] systemd[1]: Configuration file /lib/systemd/system/systemd-fsck-root.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.611948] systemd[1]: Configuration file /lib/systemd/system/var-volatile-lib.service is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.628073] systemd[1]: Configuration file /lib/systemd/system/emergency.target is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.643387] systemd[1]: Configuration file /lib/systemd/system/local-fs-pre.target is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.658937] systemd[1]: Configuration file /lib/systemd/system/shutdown.target is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    5.677185] systemd[1]: sockets.target: Found ordering cycle on sockets.target/start
    [    5.684967] systemd[1]: sockets.target: Found dependency on dropbear.socket/stop
    [    5.692413] systemd[1]: sockets.target: Found dependency on sysinit.target/start
    [    5.699859] systemd[1]: sockets.target: Found dependency on alignment.service/start
    [    5.707563] systemd[1]: sockets.target: Found dependency on basic.target/start
    [    5.714817] systemd[1]: sockets.target: Found dependency on sockets.target/start
    [    5.722260] systemd[1]: sockets.target: Breaking ordering cycle by deleting job dropbear.socket/stop
    [    5.731461] systemd[1]: dropbear.socket: Job dropbear.socket/stop deleted to break ordering cycle starting with sockets.target/start
    [    5.767081] systemd[1]: basic.target: Found ordering cycle on basic.target/start
    [    5.774511] systemd[1]: basic.target: Found dependency on sysinit.target/start
    [    5.781799] systemd[1]: basic.target: Found dependency on alignment.service/start
    [    5.789328] systemd[1]: basic.target: Found dependency on basic.target/start
    [    5.796407] systemd[1]: basic.target: Breaking ordering cycle by deleting job alignment.service/start
    [    5.805683] systemd[1]: alignment.service: Job alignment.service/start deleted to break ordering cycle starting with basic.target/start
    [    5.838522] systemd[1]: Reached target Swap.
    [    5.865799] systemd[1]: Created slice System Slice.
    [    5.887175] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [    5.907146] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [    5.927523] systemd[1]: Created slice system-serial\x2dgetty.slice.
    [    5.947114] systemd[1]: Listening on Syslog Socket.
    [    5.967072] systemd[1]: Listening on udev Kernel Socket.
    [    5.987089] systemd[1]: Listening on Journal Socket (/dev/log).
    [    6.007028] systemd[1]: Reached target Remote File Systems.
    [    6.027496] systemd[1]: Created slice system-getty.slice.
    [    6.047098] systemd[1]: Listening on udev Control Socket.
    [    6.067147] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [    6.097030] systemd[1]: Reached target Paths.
    [    6.117098] systemd[1]: Listening on Journal Socket.
    [    6.167193] systemd[1]: Starting Setup Virtual Console...
    [    6.188754] systemd[1]: Mounting Debug File System...
    [    6.219210] systemd[1]: Mounting POSIX Message Queue File System...
    [    6.249983] systemd[1]: Mounting Temporary Directory...
    [    6.279380] systemd[1]: Starting Journal Service...
    [    6.299756] systemd-journald[138]: Configuration file /etc/systemd/journald.conf is marked executable. Please remove executable permission bits. Proceeding anyway.
    [    6.321258] systemd[1]: Starting Load Kernel Modules...
    [    6.347843] systemd[1]: Created slice User and Session Slice.
    [    6.367219] systemd[1]: Reached target Slices.
    [    6.417226] systemd[1]: Starting Create list of required static device nodes for the current kernel...
    [    6.449099] systemd[1]: Starting Remount Root and Kernel File Systems...
    [    6.464022] EXT4-fs (mmcblk1p2): re-mounted. Opts: (null)
    [    6.477451] systemd[1]: Listening on Network Service Netlink Socket.
    [    6.507587] systemd[1]: Mounted Debug File System.
    [    6.527153] systemd[1]: Mounted POSIX Message Queue File System.
    [    6.547215] systemd[1]: Mounted Temporary Directory.
    [    6.577302] systemd[1]: Started Journal Service.
    [    7.192194] systemd-journald[138]: Received request to flush runtime journal from PID 1
    [    7.557424] omap-rproc 58820000.ipu: assigned reserved memory node ipu1_cma@9d000000
    [    7.565239]  remoteproc0: 58820000.ipu is available
    [    7.582901]  remoteproc0: Note: remoteproc is still under development and considered experimental.
    [    7.599922]  remoteproc0: THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn't yet guaranteed.
    [    7.612728] omap-rproc 55020000.ipu: assigned reserved memory node ipu2_cma@95800000
    [    7.623080]  remoteproc0: Direct firmware load for dra7-ipu1-fw.xem4 failed with error -2
    [    7.632818]  remoteproc0: failed to load dra7-ipu1-fw.xem4
    [    7.639901]  remoteproc1: 55020000.ipu is available
    [    7.639904]  remoteproc1: Note: remoteproc is still under development and considered experimental.
    [    7.639906]  remoteproc1: THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn't yet guaranteed.
    [    7.640159] omap-rproc 40800000.dsp: assigned reserved memory node dsp1_cma@99000000
    [    7.640196]  remoteproc2: 40800000.dsp is available
    [    7.640199]  remoteproc2: Note: remoteproc is still under development and considered experimental.
    [    7.640201]  remoteproc2: THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn't yet guaranteed.
    [    7.640488] omap-rproc 41000000.dsp: assigned reserved memory node dsp2_cma@9f000000
    [    7.640527]  remoteproc3: 41000000.dsp is available
    [    7.640529]  remoteproc3: Note: remoteproc is still under development and considered experimental.
    [    7.640531]  remoteproc3: THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn't yet guaranteed.
    [    7.799313]  remoteproc2: registered virtio0 (type 7)
    [    7.911923] omap-des 480a5000.des: OMAP DES hw accel rev: 2.2
    [    7.933780]  remoteproc3: registered virtio1 (type 7)
    [    7.978800] omap_rng 48090000.rng: OMAP Random Number Generator ver. 20
    [    7.980972]  remoteproc1: registered virtio2 (type 7)
    [    7.995190] rtc rtc0: 48838000.rtc: dev (254:0)
    [    7.995204] omap_rtc 48838000.rtc: rtc core: registered 48838000.rtc as rtc0
    [    8.123082] SCSI subsystem initialized
    [    8.187423] libata version 3.00 loaded.
    [    8.225251] ahci 4a140000.sata: SSS flag set, parallel bus scan disabled
    [    8.261594] ahci 4a140000.sata: AHCI 0001.0300 32 slots 1 ports 3 Gbps 0x1 impl platform mode
    [    8.289245] CAN device driver interface
    [    8.296477] ahci 4a140000.sata: flags: 64bit ncq sntf stag pm led clo only pmp pio slum part ccc apst 
    [    8.340251] scsi host0: ahci
    [    8.345311] ata1: SATA max UDMA/133 mmio [mem 0x4a140000-0x4a1410ff] port 0x100 irq 342
    [    8.377281] omap-sham 4b101000.sham: hw accel on OMAP rev 4.3
    [    8.494013] omap-aes 4b500000.aes: OMAP AES hw accel rev: 3.3
    [    8.549517] omap-aes 4b700000.aes: OMAP AES hw accel rev: 3.3
    [    8.568903] c_can_platform 4ae3c000.can: c_can_platform device registered (regs=fce3c000, irq=358)
    [    8.659009] FAT-fs (mmcblk1p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
    [    8.704764] [drm] Initialized pvr 1.14.3699939 20110701 on minor 2
    [    8.727458] ata1: SATA link down (SStatus 0 SControl 300)
    [    9.284593]  remoteproc2: powering up 40800000.dsp
    [    9.292523]  remoteproc2: Booting fw image dra7-dsp1-fw.xe66, size 2851416
    [    9.299116] omap_hwmod: mmu0_dsp1: _wait_target_disable failed
    [    9.299146] omap-iommu 40d01000.mmu: 40d01000.mmu: version 3.0
    [    9.299220] omap-iommu 40d02000.mmu: 40d02000.mmu: version 3.0
    [    9.322751]  remoteproc2: remote processor 40800000.dsp is now up
    [    9.327180] virtio_rpmsg_bus virtio0: rpmsg host is online
    [    9.327274] virtio_rpmsg_bus virtio0: creating channel rpmsg-proto addr 0x3d
    [    9.329291]  remoteproc3: powering up 41000000.dsp
    [    9.337031]  remoteproc3: Booting fw image dra7-dsp2-fw.xe66, size 2851416
    [    9.343603] omap_hwmod: mmu0_dsp2: _wait_target_disable failed
    [    9.343633] omap-iommu 41501000.mmu: 41501000.mmu: version 3.0
    [    9.343676] omap-iommu 41502000.mmu: 41502000.mmu: version 3.0
    [    9.372323]  remoteproc3: remote processor 41000000.dsp is now up
    [    9.397071] virtio_rpmsg_bus virtio1: rpmsg host is online
    [    9.397152] virtio_rpmsg_bus virtio1: creating channel rpmsg-proto addr 0x3d
    [    9.416922]  remoteproc1: powering up 55020000.ipu
    [    9.423754]  remoteproc1: Booting fw image dra7-ipu2-fw.xem4, size 6452356
    [    9.423831] omap-iommu 55082000.mmu: 55082000.mmu: version 2.1
    [    9.484243]  remoteproc1: remote processor 55020000.ipu is now up
    [    9.485270] virtio_rpmsg_bus virtio2: rpmsg host is online
    [    9.524588] NET: Registered protocol family 41
    [    9.534545] virtio_rpmsg_bus virtio2: creating channel rpmsg-proto addr 0x50
    [    9.883274] net eth1: initializing cpsw version 1.15 (0)
    [    9.892488] net eth0: initialized cpsw ale version 1.4
    [    9.897719] net eth0: ALE Table size 1024
    [    9.920001] net eth1: phy found : id is : 0x20005c7a
    [    9.941698] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
    [    9.949627] net eth0: initializing cpsw version 1.15 (0)
    [    9.962122] net eth0: phy found : id is : 0x20005c7a
    [    9.973396] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
    [    9.984750] usbcore: registered new interface driver usbfs
    [    9.990996] usbcore: registered new interface driver hub
    [    9.996939] usbcore: registered new device driver usb
    [   10.040623] dwc3 48890000.usb: otg: primary host xhci-hcd.0.auto registered
    [   10.054235] dwc3 48890000.usb: otg: shared host xhci-hcd.0.auto registered
    [   10.063871] PVR_K: UM DDK-(3699939) and KM DDK-(3699939) match. [ OK ]
    [   10.070764] dwc3 48890000.usb: otg: can't start till gadget registers
    [   10.088185] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
    [   10.093761] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 1
    [   10.104533] xhci-hcd xhci-hcd.1.auto: hcc params 0x0220f04c hci version 0x100 quirks 0x00210010
    [   10.113954] xhci-hcd xhci-hcd.1.auto: irq 499, io mem 0x488d0000
    [   10.129511] hub 1-0:1.0: USB hub found
    [   10.133808] hub 1-0:1.0: 1 port detected
    [   10.153047] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
    [   10.167028] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 2
    [   10.185457] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
    [   10.205147] hub 2-0:1.0: USB hub found
    [   10.209027] hub 2-0:1.0: 1 port detected
    [   11.047352] random: nonblocking pool is initialized
    [   11.964000] cpsw 48484000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
    [   11.971896] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
    [   20.044375] omap_hwmod: mmu1_dsp2: _wait_target_disable failed
    [   20.058497] omap_hwmod: mmu1_dsp1: _wait_target_disable failed
    [   20.071628] omap_hwmod: mmu0_dsp2: _wait_target_disable failed
    [   20.084695] omap_hwmod: mmu0_dsp1: _wait_target_disable failed
    

    2. it seems that the driver is not fully supported for 'DP83TC811R-Q1'. Is there any patch to resolve it?

    Thank you.

  • Hi

    This does not seem to be related to the ethernet driver but more a link negotiation issue at the PHY level

    I am not entirely familiar with the PHY part that you have mentioned above.

    What changes did you make for enabling support for the new PHY part

    Have you ensured that the PHY boot strap settings are for 100Mbps, full-duplex, auto-negotiation enabled - with this the PHY should link up at 100Mbps without need for SW intervention, you can check at the external switch side if there is a visual LED indication for this

  • HI

    Are there further updates from your side  - has the issue been resolved