Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754902AbdIHODa (ORCPT ); Fri, 8 Sep 2017 10:03:30 -0400 Received: from vps0.lunn.ch ([178.209.37.122]:33029 "EHLO vps0.lunn.ch" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751738AbdIHOD2 (ORCPT ); Fri, 8 Sep 2017 10:03:28 -0400 Date: Fri, 8 Sep 2017 16:03:22 +0200 From: Andrew Lunn To: Kunihiko Hayashi Cc: netdev@vger.kernel.org, "David S. Miller" , Florian Fainelli , Rob Herring , Mark Rutland , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, devicetree@vger.kernel.org, Masahiro Yamada , Masami Hiramatsu , Jassi Brar Subject: Re: [PATCH net-next 1/3] dt-bindings: net: add DT bindings for Socionext UniPhier AVE Message-ID: <20170908140322.GD25219@lunn.ch> References: <1504875731-3680-1-git-send-email-hayashi.kunihiko@socionext.com> <1504875731-3680-2-git-send-email-hayashi.kunihiko@socionext.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1504875731-3680-2-git-send-email-hayashi.kunihiko@socionext.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 Content-Length: 623 Lines: 28 > + eth: ethernet@65000000 { > + compatible = "socionext,uniphier-ave4"; > + reg = <0x65000000 0x8500>; > + interrupts = <0 66 4>; > + pinctrl-names = "default"; > + pinctrl-0 = <&pinctrl_ether_rgmii>; > + phy-mode = "rgmii"; > + socionext,desc-bits = <64>; > + local-mac-address = [00 00 00 00 00 00]; > + > + #address-cells = <1>; > + #size-cells = <0>; > + ethphy: ethphy@1 { > + reg = <1>; > + }; So you normally have an mdio node, and the phy as a children of that node. mdio { ethphy: ethernet-phy@6 { reg = <6>; }; }; Andrew