From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753468AbbKLOob (ORCPT ); Thu, 12 Nov 2015 09:44:31 -0500 Received: from mail.kernel.org ([198.145.29.136]:52431 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751048AbbKLOoa (ORCPT ); Thu, 12 Nov 2015 09:44:30 -0500 Date: Thu, 12 Nov 2015 08:44:25 -0600 From: Rob Herring To: Mans Rullgard Cc: Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, slash.tmp@free.fr Subject: Re: [PATCH v3 1/2] devicetree: add binding for Aurora VLSI NB8800 Ethernet controller Message-ID: <20151112144425.GA21857@rob-hp-laptop> References: <1445895295-16778-1-git-send-email-mans@mansr.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1445895295-16778-1-git-send-email-mans@mansr.com> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Oct 26, 2015 at 09:34:54PM +0000, Mans Rullgard wrote: > This adds a binding for the Aurora VLSI NB8800 Ethernet controller > using the "aurora,nb8800" compatible string. When used in Sigma > Designs chips a few additional features are available. These variants > are indicated by a "sigma,-ethernet" compatible string. > > Signed-off-by: Mans Rullgard Acked-by: Rob Herring > --- > Changes: > - added phy child node > --- > .../devicetree/bindings/net/aurora,nb8800.txt | 37 ++++++++++++++++++++++ > 1 file changed, 37 insertions(+) > create mode 100644 Documentation/devicetree/bindings/net/aurora,nb8800.txt > > diff --git a/Documentation/devicetree/bindings/net/aurora,nb8800.txt b/Documentation/devicetree/bindings/net/aurora,nb8800.txt > new file mode 100644 > index 0000000..df12ff1 > --- /dev/null > +++ b/Documentation/devicetree/bindings/net/aurora,nb8800.txt > @@ -0,0 +1,37 @@ > +* Aurora VLSI AU-NB8800 Ethernet controller > + > +Required properties: > +- compatible: Should be "sigma,-ethernet", "aurora,nb8800" > +- reg: Should be MMIO address space of the device > +- interrupts: Should contain the interrupt specifier for the device > +- interrupt-parent: Should be a phandle for the interrupt controller > +- clocks: Should be a phandle for the clock for the device > +- #address-cells: Should be <1> > +- #size-cells: Should be <0> > + > +Common properties described in ethernet.txt: > +- local-mac-address > +- mac-address > +- phy-handle > +- phy-mode > + > +The attached PHY should be specified in a child node as per phy.txt. > + > +Example: > + > +ethernet@26000 { > + compatible = "sigma,smp8642-ethernet", "aurora,nb8800"; > + reg = <0x26000 0x800>; > + interrupts = <38>; > + clocks = <&sys_clk>; > + max-speed = <1000>; > + phy-connection-type = "rgmii"; > + phy-handle = <ð0_phy>; > + #address-cells = <1>; > + #size-cells = <0>; > + > + eth0_phy: ethernet-phy@1 { > + compatible = "ethernet-phy-ieee802.3-c22"; > + reg = <1>; > + }; > +}; > -- > 2.6.2 >