Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752584AbcDVUN6 (ORCPT ); Fri, 22 Apr 2016 16:13:58 -0400 Received: from mail.kernel.org ([198.145.29.136]:33315 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751084AbcDVUN4 (ORCPT ); Fri, 22 Apr 2016 16:13:56 -0400 Date: Fri, 22 Apr 2016 15:13:51 -0500 From: Rob Herring To: Pramod Kumar Cc: Catalin Marinas , Will Deacon , Masahiro Yamada , Chen-Yu Tsai , BCM Kernel Feedback , Pawel Moll , Mark Rutland , Arnd Bergmann , Suzuki K Poulose , Punit Agrawal , devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, netdev@vger.kernel.org Subject: Re: [PATCH 5/6] Documentation: Binding doc for ethernet master in NS2 Message-ID: <20160422201351.GA3048@rob-hp-laptop> References: <1461230323-27891-1-git-send-email-pramod.kumar@broadcom.com> <1461230323-27891-6-git-send-email-pramod.kumar@broadcom.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1461230323-27891-6-git-send-email-pramod.kumar@broadcom.com> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1818 Lines: 59 On Thu, Apr 21, 2016 at 02:48:42PM +0530, Pramod Kumar wrote: > Adding binding doc for ethernet master present in shared > MDIO controller. > > Signed-off-by: Pramod Kumar > Reviewed-by: Ray Jui > Reviewed-by: Scott Branden > --- > .../bindings/net/brcm,iproc-mdio-shared.txt | 32 ++++++++++++++++++++++ > 1 file changed, 32 insertions(+) > create mode 100644 Documentation/devicetree/bindings/net/brcm,iproc-mdio-shared.txt > > diff --git a/Documentation/devicetree/bindings/net/brcm,iproc-mdio-shared.txt b/Documentation/devicetree/bindings/net/brcm,iproc-mdio-shared.txt > new file mode 100644 > index 0000000..1ffdd4b > --- /dev/null > +++ b/Documentation/devicetree/bindings/net/brcm,iproc-mdio-shared.txt > @@ -0,0 +1,32 @@ > +Broadcom Ethernet master for shared mdio controller > + > +Required properties: > +- compatible: must be "brcm,iproc-mdio-master-eth" > +- reg: master id of Ethernet block > +- address-cells: should be 1 > +- size-cells: should be 0 > + > +Sub-nodes: > + Each port's PHY should be represented as a sub-node. > + > +Sub-nodes required properties: > +- reg: the PHY number > +- phy-mode: media type connecting the PHY and MAC. > + > + > +Example: > + eth-master@0 { Is this a child of something? Why is this not just an mdio bus underneath the ethernet controller? How is this accessed? > + compatible = "brcm,iproc-mdio-master-eth"; > + reg = <0x0>; > + #address-cells = <1>; > + #size-cells = <0>; > + gphy0: eth-phy@10 { > + reg = <0x10>; > + phy-mode = "mii"; > + }; > + status = "ok" > + }; > + > +For more info on ethernet phy binding, please,refer to: > +Documentation/devicetree/bindings/net/phy.txt > +Documentation/devicetree/bindings/net/ethernet.txt > -- > 1.9.1 >