Hi Stephen,

DP83867IR is a tricky PHY to use due to its quasi state bootstrap pins. Each 
pin can have 4 states.

You will need to use strong pull up/down on the bootstrap pins to ensure that 
it latches a correct bootstrap at Power on reset.

Can you cross check if the bootstrap configuration is right by dumping the 
bootstrap configuration?

e.g.

diff --git a/drivers/net/phy/dp83867.c b/drivers/net/phy/dp83867.c
index c1ab976..ccfb0bf 100644
--- a/drivers/net/phy/dp83867.c
+++ b/drivers/net/phy/dp83867.c
@@ -218,6 +218,11 @@ static int dp83867_config_init(struct phy_device *phydev)
                dp83867 = (struct dp83867_private *)phydev->priv;
        }
 
+       val = phy_read_mmd(phydev, DP83867_DEVADDR, DP83867_STRAP_STS1);
+       dev_info(&phydev->mdio.dev, "STRAP_STS1 0x%x\n", val);
+       val = phy_read_mmd(phydev, DP83867_DEVADDR, DP83867_CFG4);
+       dev_info(&phydev->mdio.dev, "CFG4 0x%x\n", val);
+
        /* RX_DV/RX_CTRL strapped in mode 1 or mode 2 workaround */
        if (dp83867->rxctrl_strap_quirk) {
                val = phy_read_mmd(phydev, DP83867_DEVADDR, DP83867_CFG4);
-- 
Texas Instruments Finland Oy, Porkkalankatu 22, 00180 Helsinki.
Y-tunnus/Business ID: 0615521-4. Kotipaikka/Domicile: Helsinki

On 16/10/2018 01:30, stephen.nguye...@gmail.com wrote:
> Hello,
> 
> I wanted to upgrade to gigabit Ethernet and swapped out the Ethernet PHY to 
> Texas Instrument DP83867IR
> The board booted up fine and detects the PHY. But trying to communicate 
> through the Ethernet as simple as pinging has no response.
> 
> I'm not quite sure if it's a software or hardware problem.
> 
> Here's my connection
> EthernetPHY.jpg <about:invalid#zClosurez>
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> Here are the dmesg logs, ifconfig, and ethtool on eth0
> 
> |
> [   0.000000]BootingLinuxon physical CPU 0x0
> [   0.000000]Linuxversion 4.14.49-ti-r54 (root@b2-am57xx-beagle-x15-2gb)(gcc 
> version 6.3.020170516(Debian6.3.0-18+deb9u1))#1 SMP PREEMPT Fri Jun 15 
> 22:14:13 UTC 2018
> [   0.000000]CPU:ARMv7Processor[413fc082]revision 2(ARMv7),cr=10c5387d
> [   0.000000]CPU:PIPT /VIPT nonaliasing data cache,VIPT aliasing instruction 
> cache
> [   0.000000]OF:fdt:Machinemodel:TI AM335x BeagleBoneBlack
> [   0.000000]Memorypolicy:Datacache writeback
> [   0.000000]efi:GettingEFI parameters fromFDT:
> [   0.000000]efi:UEFI notfound.
> [   0.000000]cma:Reserved48MiBat 0x9c800000
> [   0.000000]Onnode 0totalpages:130560
> [   0.000000]free_area_init_node:node 0,pgdat c15ed380,node_mem_map df961000
> [   0.000000]  Normalzone:1148pages used formemmap
> [   0.000000]  Normalzone:0pages reserved
> [   0.000000]  Normalzone:130560pages,LIFO batch:31
> [   0.000000]CPU:AllCPU(s)started inSVC mode.
> [   0.000000]AM335X ES2.1(sgx neon)
> [   0.000000]random:get_random_bytes called 
> fromstart_kernel+0xac/0x460withcrng_init=0
> [   0.000000]percpu:Embedded18pages/cpu @df8ea000s41548 r8192 d23988 u73728
> [   0.000000]pcpu-alloc:s41548 r8192 d23988 u73728 alloc=18*4096
> [   0.000000]pcpu-alloc:[0]0
> [   0.000000]Built1zonelists,mobility grouping on. Totalpages:129412
> [   0.000000]Kernelcommand 
> line:console=ttyO0,115200n8bone_capemgr.uboot_capemgr_enabled=1root=/dev/mmcblk0p1
>  ro rootfstype=ext4 rootwait coherent_pool=1Mnet.ifnames=0quiet
> [   0.000000]PID hash table entries:2048(order:1,8192bytes)
> [   0.000000]Dentrycache hash table entries:65536(order:6,262144bytes)
> [   0.000000]Inode-cache hash table entries:32768(order:5,131072bytes)
> [   0.000000]Memory:440472K/522240Kavailable (13312Kkernel 
> code,1168Krwdata,4372Krodata,1024Kinit,673Kbss,32616Kreserved,49152Kcma-reserved,0Khighmem)
> [   0.000000]Virtualkernel memory layout:
>                    vector  :0xffff0000-0xffff1000  (  4kB)
>                    fixmap  :0xffc00000-0xfff00000  (3072kB)
>                    vmalloc :0xe0000000-0xff800000  (504MB)
>                    lowmem  :0xc0000000-0xdfe00000  (510MB)
>                    pkmap   :0xbfe00000-0xc0000000  (  2MB)
>                    modules :0xbf000000-0xbfe00000  ( 14MB)
>                      .text :0xc0008000-0xc0e00000  (14304kB)
>                      .init :0xc1400000-0xc1500000  (1024kB)
>                      .data :0xc1500000-0xc16241a8  (1169kB)
>                       .bss :0xc162ec1c-0xc16d709c  (674kB)
> [   0.000000]SLUB:HWalign=64,Order=0-3,MinObjects=0,CPUs=1,Nodes=1
> [   0.000000]ftrace:allocating 42794entries in126pages
> [   0.000000]Preemptiblehierarchical RCU implementation.
> [   0.000000]    RCU restricting CPUsfromNR_CPUS=2to nr_cpu_ids=1.
> [   0.000000]    TasksRCU enabled.
> [   0.000000]RCU:Adjustinggeometry forrcu_fanout_leaf=16,nr_cpu_ids=1
> [   0.000000]NR_IRQS:16,nr_irqs:16,preallocated irqs:16
> [   0.000000]IRQ:Foundan INTC at 0xfa200000(revision 5.0)with128interrupts
> [   0.000000]OMAP clockevent source:timer2 at 24000000Hz
> [   0.000026]sched_clock:32bits at 24MHz,resolution 41ns,wraps every 
> 89478484971ns
> [   
> 0.000048]clocksource:timer1:mask:0xffffffffmax_cycles:0xffffffff,max_idle_ns:79635851949ns
> [   0.000059]OMAP clocksource:timer1 at 24000000Hz
> [   0.002191]timer_probe:nomatching timers found
> [   0.002535]Console:colour dummy device 80x30
> [   0.002564]WARNING:Your'console=ttyO0'has been replaced by'ttyS0'
> [   0.002569]Thisensures that you still see kernel messages.Please
> [   0.002573]update your kernel commandline.
> [   0.002601]Calibratingdelay loop...995.32BogoMIPS(lpj=1990656)
> [   0.020622]pid_max:default:32768minimum:301
> [   0.020893]SecurityFrameworkinitialized
> [   0.020909]Yama:becoming mindful.
> [   0.020949]AppArmor:AppArmordisabled byboot time parameter
> [   0.021141]Mount-cache hash table entries:1024(order:0,4096bytes)
> [   0.021154]Mountpoint-cache hash table entries:1024(order:0,4096bytes)
> [   0.022168]CPU:Testingwrite buffer coherency:ok
> [   0.022674]CPU0:thread -1,cpu 0,socket -1,mpidr 0
> [   0.036714]Settingup staticidentity map for0x80100000-0x80100060
> [   0.044620]HierarchicalSRCU implementation.
> [   0.055741]EFI services will notbe available.
> [   0.060629]smp:Bringingup secondary CPUs...
> [   0.060644]smp:Broughtup 1node,1CPU
> [   0.060655]SMP:Totalof 1processors activated (995.32BogoMIPS).
> [   0.060662]CPU:AllCPU(s)started inSVC mode.
> [   0.062247]devtmpfs:initialized
> [   0.096985]VFP support v0.3:implementor 41architecture 3part 30variant c 
> rev 3
> [   
> 0.097457]clocksource:jiffies:mask:0xffffffffmax_cycles:0xffffffff,max_idle_ns:7645041785100000ns
> [   0.097485]futex hash table entries:256(order:2,16384bytes)
> [   0.101423]xor:measuring software checksum speed
> [   0.140649]   arm4regs  : 1200.000MB/sec
> [   0.180597]   8regs    : 1075.000MB/sec
> [   0.220595]   32regs   :  988.000MB/sec
> [   0.260595]   neon      : 1620.000MB/sec
> [   0.260603]xor:usingfunction:neon (1620.000MB/sec)
> [   0.260622]pinctrl core:initialized pinctrl subsystem
> [   0.261430]DMI notpresent orinvalid.
> [   0.261864]NET:Registeredprotocol family 16
> [   0.265748]DMA:preallocated 1024KiBpool foratomic coherent allocations
> [   0.360575]omap_hwmod:debugss:_wait_target_disable failed
> [   0.401395]cpuidle:usinggovernor menu
> [   0.416488]OMAP GPIO hardware version 0.1
> [   0.436298]NoATAGs?
> [   0.436320]hw-breakpoint:debug architecture 0x4unsupported.
> [   0.438061]omap4_sram_init:Unableto allocate sram needed to handle errata 
> I688
> [   0.438079]omap4_sram_init:Unableto getsram pool needed to handle errata 
> I688
> [   0.532660]raid6:neonx2   gen() 1882MB/s
> [   0.600626]raid6:neonx2   xor() 1497MB/s
> [   0.600634]raid6:usingalgorithm neonx2 gen()1882MB/s
> [   0.600641]raid6:....xor()1497MB/s,rmw enabled
> [   0.600647]raid6:usingneon recovery algorithm
> [   0.609470]edma 49000000.edma:TI EDMA DMA engine driver
> [   0.616386]SCSI subsystem initialized
> [   0.620764]libata version 3.00loaded.
> [   0.621063]usbcore:registered newinterfacedriver usbfs
> [   0.621120]usbcore:registered newinterfacedriver hub
> [   0.621240]usbcore:registered newdevice driver usb
> [   0.622580]omap_i2c 44e0b000.i2c:could notfind pctldev fornode 
> /ocp/l4_wkup@44c00000/scm@210000/pinmux@800/pinmux_i2c0_pins,deferring probe
> [   0.623567]omap_i2c 4802a000.i2c:bus 1rev0.11at 100kHz
> [   0.625037]omap_i2c 4819c000.i2c:bus 2rev0.11at 100kHz
> [   0.625327]media:Linuxmedia interface:v0.10
> [   0.625391]Linuxvideo capture interface:v2.00
> [   0.625564]pps_core:LinuxPPSAPI ver.1registered
> [   
> 0.625572]pps_core:Softwarever.5.3.6-Copyright2005-2007RodolfoGiometti<giome...@linux.it>
> [   0.625594]PTP clock support registered
> [   0.625710]dmi:Firmwareregistration failed.
> [   0.626538]omap-mailbox 480c8000.mailbox:omap mailbox rev 0x400
> [   0.629021]AdvancedLinuxSoundArchitectureDriverInitialized.
> [   0.629723]NetLabel:Initializing
> [   0.629733]NetLabel: domain hash size =128
> [   0.629738]NetLabel: protocols =UNLABELED CIPSOv4CALIPSO
> [   0.629821]NetLabel: unlabeled traffic allowed bydefault
> [   0.633103]clocksource:Switchedto clocksource timer1
> [   0.798961]VFS:Diskquotas dquot_6.6.0
> [   0.799076]VFS:Dquot-cache hash table entries:1024(order 0,4096bytes)
> [   0.812069]NET:Registeredprotocol family 2
> [   0.812989]TCP established hash table entries:4096(order:2,16384bytes)
> [   0.813036]TCP bind hash table entries:4096(order:3,32768bytes)
> [   0.813204]TCP:Hashtables configured (established 4096bind 4096)
> [   0.813339]UDP hash table entries:256(order:1,8192bytes)
> [   0.813363]UDP-Litehash table entries:256(order:1,8192bytes)
> [   0.813588]NET:Registeredprotocol family 1
> [   0.822512]RPC:Registerednamed UNIX socket transport module.
> [   0.822523]RPC:Registeredudp transport module.
> [   0.822528]RPC:Registeredtcp transport module.
> [   0.822533]RPC:Registeredtcp NFSv4.1backchannel transport module.
> [   0.823492]Unpackinginitramfs...
> [   1.017164]random:fast init done
> [   1.071799]Freeinginitrd memory:3940K
> [   1.072398]hw perfevents:nointerrupt-affinity property for/pmu,guessing.
> [   1.072620]hw perfevents:enabled witharmv7_cortex_a8 PMU driver,5counters 
> available
> [   1.075232]audit:initializing netlink subsys (disabled)
> [   1.076452]audit:type=2000audit(1.076:1):state=initialized 
> audit_enabled=0res=1
> [   1.076584]workingset:timestamp_bits=14max_order=17bucket_order=3
> [   1.082496]zbud:loaded
> [   1.089869]NFS:Registeringthe id_resolver key type
> [   1.089911]Keytype id_resolver registered
> [   1.089917]Keytype id_legacy registered
> [   1.089935]nfs4filelayout_init:NFSv4FileLayoutDriverRegistering...
> [   1.090272]fuse init (API version 7.26)
> [   1.091168]orangefs_debugfs_init:called withdebug mask::none::0:
> [   1.091368]orangefs_init:moduleversion upstream loaded
> [   1.091377]SGI XFS withACLs,security attributes,realtime,nodebug enabled
> [   1.102271]Keytype asymmetric registered
> [   1.102287]Asymmetrickey parser 'x509'registered
> [   1.102423]Blocklayer SCSI generic (bsg)driver version 0.4loaded (major 243)
> [   1.106762]io scheduler noop registered
> [   1.106773]io scheduler deadline registered
> [   1.107172]io scheduler cfq registered (default)
> [   1.107182]io scheduler mq-deadline registered
> [   1.110788]pinctrl-single 44e10800.pinmux:142pins at pa f9e10800 size 568
> [   1.121190]gpio-of-helper ocp:cape-universal:ready
> [   1.132132]wkup_m3_ipc 44e11324.wkup_m3_ipc:could notgetrproc handle
> [   1.134749]Serial:8250/16550driver,6ports,IRQ sharing disabled
> [   1.138928]44e09000.serial:ttyS0 at MMIO 0x44e09000(irq =30,base_baud 
> =3000000)isa 8250
> [   1.155310]console [ttyS0]enabled
> [   1.156491]48022000.serial:ttyS1 at MMIO 0x48022000(irq =31,base_baud 
> =3000000)isa 8250
> [   1.157670]48024000.serial:ttyS2 at MMIO 0x48024000(irq =32,base_baud 
> =3000000)isa 8250
> [   1.158666]481a8000.serial:ttyS4 at MMIO 0x481a8000(irq =33,base_baud 
> =3000000)isa 8250
> [   1.159626]481aa000.serial:ttyS5 at MMIO 0x481aa000(irq =34,base_baud 
> =3000000)isa 8250
> [   1.163594]omap_rng 48310000.rng:RandomNumberGeneratorver.20
> [   1.164708][drm]Initializedvgem 1.0.020120112forvirtualdevice on minor 0
> [   1.164833]usbcore:registered newinterfacedriver udl
> [   1.175020]at24 2-0054:32768byte24c256EEPROM,writable,1bytes/write
> [   1.175338]at24 2-0055:32768byte24c256EEPROM,writable,1bytes/write
> [   1.175576]at24 2-0056:32768byte24c256EEPROM,writable,1bytes/write
> [   1.175823]at24 2-0057:32768byte24c256EEPROM,writable,1bytes/write
> [   1.176485]eqep 48300180.eqep:ver.1.0
> [   1.176675]eqep 48300180.eqep:count_mode:0
> [   1.176686]eqep 48300180.eqep:invert_qa:1
> [   1.176694]eqep 48300180.eqep:invert_qb:1
> [   1.176702]eqep 48300180.eqep:invert_qi:0
> [   1.176709]eqep 48300180.eqep:invert_qs:0
> [   1.176718]eqep 48300180.eqep:swap_inputs:0
> [   1.176727]eqep 48300180.eqep:QDECCTL:0x0180
> [   1.176735]eqep 48300180.eqep:QPOSINIT:0x00000000
> [   1.176743]eqep 48300180.eqep:QPOSMAX:0xffffffff
> [   1.176750]eqep 48300180.eqep:QPOSCNT:0x00000000
> [   1.176760]eqep 48300180.eqep:omit_interrupt:0
> [   1.176767]eqep 48300180.eqep:QEINT:0x0800
> [   1.176775]eqep 48300180.eqep:QUPRD:0x05f5e100
> [   1.176783]eqep 48300180.eqep:QEPCTL:0x009ewrite
> [   1.176790]eqep 48300180.eqep:QEPCTL:0x009eread
> [   1.176816]eqep 48300180.eqep:irq:121,clk_rate:100000000
> [   1.177053]eqep 48302180.eqep:ver.1.0
> [   1.177298]eqep 48302180.eqep:count_mode:0
> [   1.177308]eqep 48302180.eqep:invert_qa:1
> [   1.177316]eqep 48302180.eqep:invert_qb:1
> [   1.177323]eqep 48302180.eqep:invert_qi:0
> [   1.177331]eqep 48302180.eqep:invert_qs:0
> [   1.177338]eqep 48302180.eqep:swap_inputs:0
> [   1.177346]eqep 48302180.eqep:QDECCTL:0x0180
> [   1.177354]eqep 48302180.eqep:QPOSINIT:0x00000000
> [   1.177361]eqep 48302180.eqep:QPOSMAX:0xffffffff
> [   1.177369]eqep 48302180.eqep:QPOSCNT:0x00000000
> [   1.177378]eqep 48302180.eqep:omit_interrupt:0
> [   1.177385]eqep 48302180.eqep:QEINT:0x0800
> [   1.177392]eqep 48302180.eqep:QUPRD:0x05f5e100
> [   1.177399]eqep 48302180.eqep:QEPCTL:0x009ewrite
> [   1.177407]eqep 48302180.eqep:QEPCTL:0x009eread
> [   1.177430]eqep 48302180.eqep:irq:122,clk_rate:100000000
> [   1.177637]eqep 48304180.eqep:ver.1.0
> [   1.177739]eqep 48304180.eqep:count_mode:0
> [   1.177748]eqep 48304180.eqep:invert_qa:1
> [   1.177756]eqep 48304180.eqep:invert_qb:1
> [   1.177763]eqep 48304180.eqep:invert_qi:0
> [   1.177771]eqep 48304180.eqep:invert_qs:0
> [   1.177778]eqep 48304180.eqep:swap_inputs:0
> [   1.177786]eqep 48304180.eqep:QDECCTL:0x0180
> [   1.177794]eqep 48304180.eqep:QPOSINIT:0x00000000
> [   1.177802]eqep 48304180.eqep:QPOSMAX:0xffffffff
> [   1.177809]eqep 48304180.eqep:QPOSCNT:0x00000000
> [   1.177817]eqep 48304180.eqep:omit_interrupt:0
> [   1.177824]eqep 48304180.eqep:QEINT:0x0800
> [   1.177831]eqep 48304180.eqep:QUPRD:0x05f5e100
> [   1.177839]eqep 48304180.eqep:QEPCTL:0x009ewrite
> [   1.177846]eqep 48304180.eqep:QEPCTL:0x009eread
> [   1.177865]eqep 48304180.eqep:irq:124,clk_rate:100000000
> [   1.241031]libphy:FixedMDIO Bus:probed
> [   1.242014]CAN device driver interface
> [   1.243725]c_can_platform 481cc000.can:c_can_platform device registered 
> (regs=fa1cc000,irq=41)
> [   1.244733]c_can_platform 481d0000.can:c_can_platform device registered 
> (regs=fa1d0000,irq=42)
> [   1.301224]davinci_mdio 4a101000.mdio:davinci mdio revision 1.6,bus freq 
> 1000000
> [   1.301243]davinci_mdio 4a101000.mdio:detected phy mask fffffffe
> [   1.302448]davinci_mdio:dt:updated phy_id[0]fromphy_mask[fffffffe]
> [   1.316464]libphy:4a101000.mdio:probed
> [   1.316494]davinci_mdio 4a101000.mdio:phy[0]:device 4a101000.mdio:00,driver 
> unknown
> [   1.317917]cpsw 4a100000.ethernet:DetectedMACID =f4:5e:ab:f3:78:06
> [   1.318064]cpsw 4a100000.ethernet:initialized cpsw ale version 1.4
> [   1.318074]cpsw 4a100000.ethernet:ALE Tablesize 1024
> [   1.318127]cpsw 4a100000.ethernet:cpts:overflow check period 1250(jiffies)
> [   1.322429]ehci_hcd:USB 2.0'Enhanced'HostController(EHCI)Driver
> [   1.322493]ehci-platform:EHCI generic platform driver
> [   1.322971]ehci-omap:OMAP-EHCI HostControllerdriver
> [   1.324140]usbcore:registered newinterfacedriver usb-storage
> [   1.328024]am335x-phy-driver 47401300.usb-phy:47401300.usb-phy supply vcc 
> notfound,usingdummy regulator
> [   1.331838]am335x-phy-driver 47401b00.usb-phy:47401b00.usb-phy supply vcc 
> notfound,usingdummy regulator
> [   1.349271]omap_rtc 44e3e000.rtc:registered asrtc0
> [   1.350799]i2c /dev entries driver
> [   1.355806]omap_wdt:OMAP WatchdogTimerRev0x01:initial timeout 60sec
> [   1.356334]softdog:initialized.soft_noboot=0soft_margin=60sec 
> soft_panic=0(nowayout=1)
> [   1.358153]cpuidle:enable-method property 'ti,am3352'found operations
> [   1.359253]sdhci:SecureDigitalHostControllerInterfacedriver
> [   1.359262]sdhci:Copyright(c)PierreOssman
> [   1.360584]omap_hsmmc 48060000.mmc:GotCD GPIO
> [   1.441621]sdhci-pltfm:SDHCI platform andOF driver helper
> [   1.444612]ledtrig-cpu:registered to indicate activity on CPUs
> [   1.445691]omap-aes 53500000.aes:OMAP AES hw accel rev:3.2
> [   1.446018]omap-aes 53500000.aes:will run requests pump withrealtime 
> priority
> [   1.452405]omap-sham 53100000.sham:hw accel on OMAP rev 4.3
> [   1.456773]hidraw:raw HID events driver (C)JiriKosina
> [   1.460929]usbcore:registered newinterfacedriver usbhid
> [   1.460939]usbhid:USB HID core driver
> [   1.461884]remoteproc remoteproc0:wkup_m3 isavailable
> [   1.467986]wireguard:WireGuard0.0.20180531loaded.Seewww.wireguard.com 
> forinformation.
> [   
> 1.468000]wireguard:Copyright(C)2015-2018JasonA.Donenfeld<ja...@zx2c4.com>.AllRightsReserved.
> [   1.468828]NET:Registeredprotocol family 10
> [   1.475004]SegmentRoutingwithIPv6
> [   1.475091]mip6:MobileIPv6
> [   1.475108]NET:Registeredprotocol family 17
> [   1.475126]can:controller area network core (rev 20170425abi 9)
> [   1.475219]NET:Registeredprotocol family 29
> [   1.475437]Keytype dns_resolver registered
> [   1.475445]mpls_gso:MPLS GSO support
> [   1.475456]NET:Registeredprotocol family 44
> [   1.475862]omap_voltage_late_init:Voltagedriver support notadded
> [   1.482973]ThumbEECPU extension supported.
> [   1.483001]RegisteringSWP/SWPB emulation handler
> [   1.484168]registered taskstats version 1
> [   1.484448]zswap:loaded usingpool lzo/zbud
> [   1.487229]Btrfsloaded,crc32c=crc32c-generic
> [   1.487333]ima:NoTPM chip found,activating TPM-bypass!(rc=-19)
> [   1.487358]ima:Allocatedhash algorithm:sha256
> [   1.489398]mmc0:host does notsupport reading read-only switch,assuming 
> write-enable
> [   1.492561]mmc0:newhigh speed SDHC card at address aaaa
> [   1.496524]mmcblk0:mmc0:aaaa SA08G 7.40GiB
> [   1.500399] mmcblk0:p1
> [   1.504174]mmc1:newhigh speed MMC card at address 0001
> [   1.505452]mmcblk1:mmc1:0001Q2J54A 3.64GiB
> [   1.505931]mmcblk1boot0:mmc1:0001Q2J54A partition 12.00MiB
> [   1.506327]mmcblk1boot1:mmc1:0001Q2J54A partition 22.00MiB
> [   1.506697]mmcblk1rpmb:mmc1:0001Q2J54A partition 3512KiB
> [   1.539321]input:tps65217_pwr_but 
> as/devices/platform/ocp/44e0b000.i2c/i2c-0/0-0024/tps65217-pwrbutton/input/input0
> [   1.539929]tps65217 0-0024:TPS65217 ID 0xeversion 1.2
> [   1.540419]at24 0-0050:32768byte24c256EEPROM,writable,1bytes/write
> [   1.540534]omap_i2c 44e0b000.i2c:bus 0rev0.11at 400kHz
> [   1.542344]remoteproc remoteproc0:powering up wkup_m3
> [   1.542464]remoteproc remoteproc0:Bootingfw image 
> am335x-pm-firmware.elf,size 217168
> [   1.549439]remoteproc remoteproc0:remote processor wkup_m3 isnow up
> [   1.549461]wkup_m3_ipc 44e11324.wkup_m3_ipc:CM3 FirmwareVersion=0x193
> [   1.552708]musb-hdrc musb-hdrc.1:MUSB HDRC host driver
> [   1.552749]musb-hdrc musb-hdrc.1:newUSB bus registered,assigned bus number 1
> [   1.553207]usb usb1:NewUSB device found,idVendor=1d6b,idProduct=0002
> [   1.553220]usb usb1:NewUSB device strings:Mfr=3,Product=2,SerialNumber=1
> [   1.553229]usb usb1:Product:MUSB HDRC host driver
> [   1.553236]usb usb1:Manufacturer:Linux4.14.49-ti-r54 musb-hcd
> [   1.553244]usb usb1:SerialNumber:musb-hdrc.1
> [   1.554276]hub 1-0:1.0:USB hub found
> [   1.554373]hub 1-0:1.0:1port detected
> [   1.558827]omap_rtc 44e3e000.rtc:setting system clock to 
> 2000-01-0100:00:00UTC (946684800)
> [   1.558848]of_cfs_init
> [   1.558999]of_cfs_init:OK
> [   1.560324]ALSA device list:
> [   1.560333]  Nosoundcards found.
> [   1.565346]Freeingunused kernel memory:1024K
> [   1.707063]musb-hdrc musb-hdrc.1:VBUS_ERROR ina_wait_vrise 
> (81,<SessEnd),retry#1, port1 00000104
> [   1.712946]random:systemd-udevd:uninitialized urandom read (16bytes read)
> [   1.714037]random:systemd-udevd:uninitialized urandom read (16bytes read)
> [   1.714149]random:systemd-udevd:uninitialized urandom read (16bytes read)
> [   1.859486]musb-hdrc musb-hdrc.1:VBUS_ERROR ina_wait_vrise 
> (81,<SessEnd),retry#2, port1 00000104
> [   2.011908]musb-hdrc musb-hdrc.1:VBUS_ERROR ina_wait_vrise 
> (81,<SessEnd),retry#3, port1 00000104
> [   2.164355]musb-hdrc musb-hdrc.1:VBUS_ERROR ina_wait_vrise 
> (80,<SessEnd),retry#3, port1 0008010c
> [  24.077566]EXT4-fs (mmcblk0p1):mounted filesystem withordered data 
> mode.Opts:(null)
> [  24.616725]systemd[1]:Systemtime before build time,advancing clock.
> [  24.703044]ip_tables:(C)2000-2006NetfilterCoreTeam
> [  24.748680]systemd[1]:systemd 232running insystem mode.(+PAM +AUDIT 
> +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS 
> +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
> [  24.749639]systemd[1]:Detectedarchitecture arm.
> [  24.751588]systemd[1]:Sethostname to <beaglebone>.
> [  25.395556]systemd[1]:Setup automount 
> ArbitraryExecutableFileFormatsFileSystemAutomountPoint.
> [  25.396350]systemd[1]:Listeningon /dev/initctl CompatibilityNamedPipe.
> [  25.396724]systemd[1]:Listeningon fsck to fsckd communication Socket.
> [  25.397606]systemd[1]:StartedDispatchPasswordRequeststo 
> ConsoleDirectoryWatch.
> [  25.398120]systemd[1]:Listeningon udev ControlSocket.
> [  25.399677]systemd[1]:Createdslice SystemSlice.
> [  25.404532]systemd[1]:Mounting/sys/kernel/debug...
> [  26.196466]EXT4-fs (mmcblk0p1):re-mounted.Opts:errors=remount-ro
> [  26.881235]systemd-journald[769]:Receivedrequest to flush runtime journal 
> fromPID 1
> [  29.193908]net eth0:initializing cpsw version 1.12(0)
> [  29.200293]GenericPHY 4a101000.mdio:00:attached PHY driver 
> [GenericPHY](mii_bus:phy_addr=4a101000.mdio:00,irq=POLL)
> [  29.225402]IPv6:ADDRCONF(NETDEV_UP):eth0:link isnotready
> [  31.024037]random:crng init done
> [  31.024062]random:7urandom warning(s)missed due to ratelimiting
> [  33.996026]usingrandom selfethernet address
> [  33.996046]usingrandom host ethernet address
> [  34.179144]usingrandom selfethernet address
> [  34.179164]usingrandom host ethernet address
> [  34.764637]MassStorageFunction,version:2009/09/11
> [  34.764662]LUN:removable file:(nomedium)
> [  35.109581]usb0:HOST MAC f4:5e:ab:f3:78:07
> [  35.117802]usb0:MAC f4:5e:ab:f3:78:08
> [  35.125397]usb1:HOST MAC f4:5e:ab:f3:78:0a
> [  35.130766]usb1:MAC f4:5e:ab:f3:78:0b
> [  36.092321]IPv6:ADDRCONF(NETDEV_UP):usb0:link isnotready
> [  36.349960]IPv6:ADDRCONF(NETDEV_UP):usb1:link isnotready
> [  45.567128]cpsw 4a100000.etherneteth0:LinkisUp-1Gbps/Full-flow control rx/tx
> [  45.567222]IPv6:ADDRCONF(NETDEV_CHANGE):eth0:link becomes ready
> [  70.448401]pruss 4a300000.pruss:creating PRU cores andother child platform 
> devices
> [  70.465809]remoteproc remoteproc1:4a334000.pruisavailable
> [  70.465942]pru-rproc 4a334000.pru:PRU rproc node 
> /ocp/pruss_soc_bus@4a326004/pruss@0/pru@34000 probed successfully
> [  70.486572]remoteproc remoteproc2:4a338000.pruisavailable
> [  70.486695]pru-rproc 4a338000.pru:PRU rproc node 
> /ocp/pruss_soc_bus@4a326004/pruss@0/pru@38000 probed successfully
> eth0:flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
>         inet 192.168.102.200 netmask 255.255.255.0 broadcast 192.168.102.255
>         inet6 fe80::f65e:abff:fef3:7806 prefixlen 64 scopeid 0x20<link>
>         ether f4:5e:ab:f3:78:06 txqueuelen 1000 (Ethernet)
>         RX packets 0 bytes 0(0.0B)
>         RX errors 0 dropped 0 overruns 0 frame 0
>         TX packets 35 bytes 5566(5.4KiB)
>         TX errors 0 dropped 0overruns 0 carrier 0 collisions 0
>         device interrupt 54 
> 
> lo:flags=73<UP,LOOPBACK,RUNNING> mtu 65536
>         inet 127.0.0.1 netmask 255.0.0.0
>         inet6 ::1 prefixlen 128 scopeid 0x10<host>
>         loop  txqueuelen 1000 (LocalLoopback)
>         RX packets 0 bytes 0(0.0B)
>         RX errors 0 dropped 0 overruns 0 frame 0
>         TX packets 0 bytes 0(0.0B)
>         TX errors 0 dropped 0overruns 0 carrier 0 collisions 0
> 
> usb0:flags=4099<UP,BROADCAST,MULTICAST> mtu 1500
>         inet 192.168.7.2 netmask 255.255.255.252 broadcast 192.168.7.3
>         ether f4:5e:ab:f3:78:08 txqueuelen 1000 (Ethernet)
>         RX packets 0 bytes 0(0.0B)
>         RX errors 0 dropped 0 overruns 0 frame 0
>         TX packets 0 bytes 0(0.0B)
>         TX errors 0 dropped 0overruns 0 carrier 0 collisions 0
> 
> usb1:flags=4099<UP,BROADCAST,MULTICAST> mtu 1500
>         inet 192.168.6.2 netmask 255.255.255.252 broadcast 192.168.6.3
>         ether f4:5e:ab:f3:78:0b txqueuelen 1000 (Ethernet)
>         RX packets 0 bytes 0(0.0B)
>         RX errors 0 dropped 0 overruns 0 frame 0
>         TX packets 0 bytes 0(0.0B)
>         TX errors 0 dropped 0overruns 0 carrier 0 collisions 0
> 
> Settingsforeth0:
>     Supportedports:[TP AUI BNC MII FIBRE ]
>     Supportedlink modes:  10baseT/Half10baseT/Full
>                             100baseT/Half100baseT/Full
>                             1000baseT/Half1000baseT/Full
>     Supportedpause frame use:SymmetricReceive-only
>     Supportsauto-negotiation:Yes
>     Advertisedlink modes: 10baseT/Half10baseT/Full
>                             100baseT/Half100baseT/Full
>                             1000baseT/Half1000baseT/Full
>     Advertisedpause frame use:No
>     Advertisedauto-negotiation:Yes
>     Linkpartner advertised link modes: 10baseT/Half10baseT/Full
>                                          100baseT/Half100baseT/Full
>                                          1000baseT/Full
>     Linkpartner advertised pause frame use:Symmetric
>     Linkpartner advertised auto-negotiation:Yes
>     Speed:1000Mb/s
>     Duplex:Full
>     Port:MII
>     PHYAD:0
>     Transceiver:internal
>     Auto-negotiation:on
>     SupportsWake-on:d
>     Wake-on:d
>     Currentmessage level:0x00000000(0)
>                    
>     Linkdetected:yes
> |
> 
> 
> 
> 
> -- 
> For more options, visit http://beagleboard.org/discuss
> ---
> You received this message because you are subscribed to the Google Groups 
> "BeagleBoard" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to beagleboard+unsubscr...@googlegroups.com 
> <mailto:beagleboard+unsubscr...@googlegroups.com>.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/beagleboard/d97fa34e-e8e4-42cb-a78d-a07f6eafceb5%40googlegroups.com
>  
> <https://groups.google.com/d/msgid/beagleboard/d97fa34e-e8e4-42cb-a78d-a07f6eafceb5%40googlegroups.com?utm_medium=email&utm_source=footer>.
> For more options, visit https://groups.google.com/d/optout.

-- 
Texas Instruments Finland Oy, Porkkalankatu 22, 00180 Helsinki.
Y-tunnus/Business ID: 0615521-4. Kotipaikka/Domicile: Helsinki

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/beagleboard/49b54fad-4e86-4302-54b3-f7fa797afb5d%40ti.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to