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