hisilicon-femac-mdio.txt 562 B

12345678910111213141516171819202122
  1. Hisilicon Fast Ethernet MDIO Controller interface
  2. Required properties:
  3. - compatible: should be "hisilicon,hisi-femac-mdio".
  4. - reg: address and length of the register set for the device.
  5. - clocks: A phandle to the reference clock for this device.
  6. - PHY subnode: inherits from phy binding [1]
  7. [1] Documentation/devicetree/bindings/net/phy.txt
  8. Example:
  9. mdio: mdio@10091100 {
  10. compatible = "hisilicon,hisi-femac-mdio";
  11. reg = <0x10091100 0x10>;
  12. clocks = <&crg HI3516CV300_MDIO_CLK>;
  13. #address-cells = <1>;
  14. #size-cells = <0>;
  15. phy0: phy@1 {
  16. reg = <1>;
  17. };
  18. };