brcm,iproc-mdio.txt 534 B

1234567891011121314151617181920212223
  1. * Broadcom iProc MDIO bus controller
  2. Required properties:
  3. - compatible: should be "brcm,iproc-mdio"
  4. - reg: address and length of the register set for the MDIO interface
  5. - #size-cells: must be 1
  6. - #address-cells: must be 0
  7. Child nodes of this MDIO bus controller node are standard Ethernet PHY device
  8. nodes as described in Documentation/devicetree/bindings/net/phy.txt
  9. Example:
  10. mdio@18002000 {
  11. compatible = "brcm,iproc-mdio";
  12. reg = <0x18002000 0x8>;
  13. #size-cells = <1>;
  14. #address-cells = <0>;
  15. enet-gphy@0 {
  16. reg = <0>;
  17. };
  18. };