From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kishon Vijay Abraham I Subject: Re: [PATCH v6 1/5] phy: add a driver for the Rockchip SoC internal USB2.0 PHY Date: Fri, 12 Dec 2014 11:17:01 +0530 Message-ID: <548A8155.8080809@ti.com> References: <1418291722-25448-1-git-send-email-lyz@rock-chips.com> <1418291722-25448-2-git-send-email-lyz@rock-chips.com> <548971AF.1020506@ti.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=m.gmane.org@lists.infradead.org To: Doug Anderson Cc: Tao Huang , "devicetree@vger.kernel.org" , =?UTF-8?B?SGVpa28gU3TDvGJuZXI=?= , "open list:ARM/Rockchip SoC..." , "linux-kernel@vger.kernel.org" , Chris , Eddie Cai , Rob Herring , Yunzhi Li , Olof Johansson , jwerner@chromium.org, "linux-arm-kernel@lists.infradead.org" , Grant Likely List-Id: devicetree@vger.kernel.org Hi, On Friday 12 December 2014 12:11 AM, Doug Anderson wrote: > Kishon, > > On Thu, Dec 11, 2014 at 2:27 AM, Kishon Vijay Abraham I wrote: >> I didn't mean that. You can get rid of this entire xlate stuff if you use >> something like below >> >> phy@xxx { >> compatible = ""; >> phy1:usb_phy { >> } >> phy2:usb_phy { >> }; >> }; >> >> >> usb@xx { >> compatible = ""; >> phys = <&phy1>; //doesn't need xlate >> /* this needs xlate >> phys = <&phy 1>; >> */ >> phy-names = "phy"; >> }; > > Is the syntax you proposed really better? Are you saying that you > advocate never using "#phy-cells" other than 0 for new bindings? Is No. It can still be used for configuring the PHY. For example, in the case of PIPE3 PHY we configure it to USB PHY, SATA PHY or PCIE PHY depending on to which controller the PHY is connected to. I feel using phy-cells just for differentiating the PHY is pointless when you have a separate node for each PHY. Thanks Kishon