Advertisement
Guest User

Diagnostic

a guest
Aug 13th, 2012
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.24 KB | None | 0 0
  1. # dmesg
  2. bus: 'mdio_bus': registered
  3. bus: 'mdio_bus': add driver Generic PHY
  4. bus: 'platform': add driver macb
  5. bus: 'platform': driver_probe_device: matched device macb with driver macb
  6. bus: 'platform': really_probe: probing driver macb with device macb
  7. device: 'eth0': device_add
  8. device: 'ffffffff': device_add
  9. device: 'ffffffff:00': device_add
  10. bus: 'mdio_bus': add device ffffffff:00
  11. device: 'ffffffff:04': device_add
  12. bus: 'mdio_bus': add device ffffffff:04
  13. MACB_mii_bus: probed
  14. driver: 'ffffffff:00': driver_bound: bound to device 'Generic PHY'
  15. eth0: Atmel MACB at 0xfffc4000 irq 21 (12:34:56:78:9a:bc)
  16. eth0: attached PHY driver [Generic PHY] (mii_bus:phy_addr=ffffffff:00, irq=-1)
  17. driver: 'macb': driver_bound: bound to device 'macb'
  18. bus: 'platform': really_probe: bound device macb to driver macb
  19.  
  20.  
  21. # mii-diag
  22. Using the default interface 'eth0'.
  23. Basic registers of MII PHY #0:  3000 7849 0022 1513 01e1 ffff 0004 2001.
  24. The autonegotiated capability is 01e0.
  25. The autonegotiated media type is 100baseTx-FD.
  26. Basic mode control register 0x3000: Auto-negotiation enabled.
  27. Basic mode status register 0x7849 ... 7849.
  28. Link status: not established.
  29. Your link partner advertised ffff: Flow-control 100baseT4 100baseTx-FD 100baseTx 10baseT-FD 10baseT, w/ 802.3X flow control.
  30. End of basic transceiver information.
  31.  
  32. # ethtool
  33. Settings for eth0:
  34.         Supported ports: [ TP MII ]
  35.         Supported link modes:   10baseT/Half 10baseT/Full
  36.                                 100baseT/Half
  37.         Supported pause frame use: No
  38.         Supports auto-negotiation: No
  39.         Advertised link modes:  10baseT/Half 10baseT/Full
  40.                                 100baseT/Half
  41.         Advertised pause frame use: No
  42.         Advertised auto-negotiation: No
  43.         Speed: 100Mb/s
  44.         Duplex: Full
  45.         Port: MII
  46.         PHYAD: 0
  47.         Transceiver: external
  48.         Auto-negotiation: on
  49.         Link detected: no
  50.  
  51. # cat /proc/interrupts
  52.            CPU0
  53.   1:    1602016         AIC  at91_tick, ttyS0
  54.   9:      10422         AIC  mmc0
  55.  20:          0         AIC  ohci_hcd:usb1
  56.  21:          0         AIC  eth0
  57. Err:          0
  58.  
  59. # lsmod
  60. Module                  Size  Used by
  61. macb                    6876  0
  62. libphy                 14442  1 macb
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement