network.txt 998 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. * Network
  2. Currently defined compatibles:
  3. - fsl,cpm1-scc-enet
  4. - fsl,cpm2-scc-enet
  5. - fsl,cpm1-fec-enet
  6. - fsl,cpm2-fcc-enet (third resource is GFEMR)
  7. - fsl,qe-enet
  8. Example:
  9. ethernet@11300 {
  10. compatible = "fsl,mpc8272-fcc-enet",
  11. "fsl,cpm2-fcc-enet";
  12. reg = <11300 20 8400 100 11390 1>;
  13. local-mac-address = [ 00 00 00 00 00 00 ];
  14. interrupts = <20 8>;
  15. interrupt-parent = <&PIC>;
  16. phy-handle = <&PHY0>;
  17. fsl,cpm-command = <12000300>;
  18. };
  19. * MDIO
  20. Currently defined compatibles:
  21. fsl,pq1-fec-mdio (reg is same as first resource of FEC device)
  22. fsl,cpm2-mdio-bitbang (reg is port C registers)
  23. Properties for fsl,cpm2-mdio-bitbang:
  24. fsl,mdio-pin : pin of port C controlling mdio data
  25. fsl,mdc-pin : pin of port C controlling mdio clock
  26. Example:
  27. mdio@10d40 {
  28. compatible = "fsl,mpc8272ads-mdio-bitbang",
  29. "fsl,mpc8272-mdio-bitbang",
  30. "fsl,cpm2-mdio-bitbang";
  31. reg = <10d40 14>;
  32. #address-cells = <1>;
  33. #size-cells = <0>;
  34. fsl,mdio-pin = <12>;
  35. fsl,mdc-pin = <13>;
  36. };