smsc-lan87xx.txt 579 B

123456789101112131415161718192021222324
  1. SMSC LAN87xx Ethernet PHY
  2. Some boards require special tuning values. Configure them
  3. through an Ethernet OF device node.
  4. Optional properties:
  5. - smsc,disable-energy-detect:
  6. If set, do not enable energy detect mode for the SMSC phy.
  7. default: enable energy detect mode
  8. Examples:
  9. smsc phy with disabled energy detect mode on an am335x based board.
  10. &davinci_mdio {
  11. pinctrl-names = "default", "sleep";
  12. pinctrl-0 = <&davinci_mdio_default>;
  13. pinctrl-1 = <&davinci_mdio_sleep>;
  14. status = "okay";
  15. ethernetphy0: ethernet-phy@0 {
  16. reg = <0>;
  17. smsc,disable-energy-detect;
  18. };
  19. };