network.txt 1.0 KB

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