From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752239AbbCYXo7 (ORCPT ); Wed, 25 Mar 2015 19:44:59 -0400 Received: from comal.ext.ti.com ([198.47.26.152]:60721 "EHLO comal.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752157AbbCYXor (ORCPT ); Wed, 25 Mar 2015 19:44:47 -0400 Message-ID: <55134847.3060304@ti.com> Date: Thu, 26 Mar 2015 05:14:07 +0530 From: Kishon Vijay Abraham I User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0 MIME-Version: 1.0 To: Dmitry Torokhov CC: Arun Ramamurthy , Rob Herring , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , Arnd Bergmann , , , , "linux-kernel@vger.kernel.org" , Anatol Pomazau , Jonathan Richardson , Scott Branden , Ray Jui Subject: Re: [PATCH v1 1/3] phy: phy-core: allow specifying supply at port level References: <1426886727-537-1-git-send-email-arun.ramamurthy@broadcom.com> <1426886727-537-2-git-send-email-arun.ramamurthy@broadcom.com> <55133294.4040705@ti.com> <5513391B.2060505@ti.com> <20150325224921.GB16950@dtor-ws> In-Reply-To: <20150325224921.GB16950@dtor-ws> Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, On Thursday 26 March 2015 04:19 AM, Dmitry Torokhov wrote: > On Thu, Mar 26, 2015 at 04:09:23AM +0530, Kishon Vijay Abraham I wrote: >> Hi, >> >> On Thursday 26 March 2015 03:47 AM, Dmitry Torokhov wrote: >>> On Wed, Mar 25, 2015 at 3:11 PM, Kishon Vijay Abraham I wrote: >>>> Hi, >>>> >>>> On Saturday 21 March 2015 02:55 AM, Arun Ramamurthy wrote: >>>>> Multi-port phy's may have per-port power supplies. Let's change phy core >>>>> to first attempt to look up the supply at the port level, and then, if >>>>> not found, check parent device. >>>> >>>> Why not just have every port provide the power supply if it needs? >>>> I don't think checking for parent device should be present in the phy-core at >>>> all. >>> >>> We need to do that if we want to keep compatibility with the current >>> DTSes: before this patch the supply would be always looked up on >>> device and not port level. >> >> ah okay. >> so just using regulator_get_optional(&phy->dev, "phy"); should be sufficient > > This is for regulators specified at port level (&phy->dev represents > port). > >> right? Why do we need regulator_get_optional(phy->dev.parent, "phy");? >> > > This is for compatibility with old multi-port bindings where supply is > specified at parent device level and phy_create() is called with dev and > node that is not NULL and not the same as dev->of_node. I have no idea > if such bindings exist in wild, but wanted to keep them working given > stated DT stability rules. Such a binding doesn't exist. So let's keep only the regulator_get_optional(&phy->dev, "phy"); part. Only TI SoCs and recently sun9i started using phy-supply and none of them use multi-phy PHY provider. Thanks Kishon