From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 83DB14A31 for ; Mon, 21 Aug 2023 16:01:23 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 46C7DC433C8; Mon, 21 Aug 2023 16:01:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1692633683; bh=aX4uOZqx4fuKGR4vLazYSCKmLEo9pLv6Ch7nrty5dEs=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=ZYKpyWrsAwMxX28B1d1pdBPaZQ2kJZQGINDkwdh1aUmJj0Trs/jhyB6SlUfbeGwq6 X9Ivl9Pj+IC/EEMghk/YeV6VC7xygOyYqcEwkVSYXZLRbMm74ARf7SOYKeXuKavTlU qI3JW9qOa3Vm3kecdy2KaIskEVhHGBi3uu+TUH5bkRXX3RdAHNysR4ZRhFvXhyTFOe BC2LjPM4VspI3JCz9U4Ro8M7StLxXxEH6bIKLUV386YUQotI2x5/5ZG80pV8uYETOd q0fZFSJXpJUcdfXkBCK2vX7SNrOdn/QewNx9spqsQ7xoeX2VlWndtpnnxmLJsOa/4e TZ0s/b51DPXAw== Received: (nullmailer pid 1743429 invoked by uid 1000); Mon, 21 Aug 2023 16:01:20 -0000 Date: Mon, 21 Aug 2023 11:01:20 -0500 From: Rob Herring To: MD Danish Anwar Cc: Randy Dunlap , Roger Quadros , Simon Horman , Vignesh Raghavendra , Andrew Lunn , Richard Cochran , Conor Dooley , Krzysztof Kozlowski , Paolo Abeni , Jakub Kicinski , Eric Dumazet , "David S. Miller" , nm@ti.com, srk@ti.com, linux-kernel@vger.kernel.org, devicetree@vger.kernel.org, netdev@vger.kernel.org, linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org Subject: Re: [PATCH v2 2/5] dt-bindings: net: Add iep property in ICSSG dt binding Message-ID: <20230821160120.GA1734560-robh@kernel.org> References: <20230807110048.2611456-1-danishanwar@ti.com> <20230807110048.2611456-3-danishanwar@ti.com> Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230807110048.2611456-3-danishanwar@ti.com> On Mon, Aug 07, 2023 at 04:30:45PM +0530, MD Danish Anwar wrote: > Add iep node in ICSSG driver dt binding document. Why? Bindings are for h/w, not drivers. You are adding a property, not a node. Would be nice to know what 'iep' is without having to look at the diff (e.g. when running 'git log'). > > Signed-off-by: MD Danish Anwar > --- > Documentation/devicetree/bindings/net/ti,icssg-prueth.yaml | 7 +++++++ > 1 file changed, 7 insertions(+) > > diff --git a/Documentation/devicetree/bindings/net/ti,icssg-prueth.yaml b/Documentation/devicetree/bindings/net/ti,icssg-prueth.yaml > index 8ec30b3eb760..36870238f92f 100644 > --- a/Documentation/devicetree/bindings/net/ti,icssg-prueth.yaml > +++ b/Documentation/devicetree/bindings/net/ti,icssg-prueth.yaml > @@ -52,6 +52,12 @@ properties: > description: > phandle to MII_RT module's syscon regmap > > + ti,iep: > + $ref: /schemas/types.yaml#/definitions/phandle-array phandle-array really means matrix, so you need to fully describe the items constraints. > + maxItems: 2 2 phandles or 1 phandle and 1 arg? Looks like the former from the example, so: maxItems: 2 items: maxItems: 1 > + description: > + phandle to IEP (Industrial Ethernet Peripheral) for ICSSG driver > + > interrupts: > maxItems: 2 > description: > @@ -155,6 +161,7 @@ examples: > "tx1-0", "tx1-1", "tx1-2", "tx1-3", > "rx0", "rx1"; > ti,mii-g-rt = <&icssg2_mii_g_rt>; > + ti,iep = <&icssg2_iep0>, <&icssg2_iep1>; > interrupt-parent = <&icssg2_intc>; > interrupts = <24 0 2>, <25 1 3>; > interrupt-names = "tx_ts0", "tx_ts1"; > -- > 2.34.1 >