Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751952AbbBRCw4 (ORCPT ); Tue, 17 Feb 2015 21:52:56 -0500 Received: from smtp.codeaurora.org ([198.145.29.96]:43811 "EHLO smtp.codeaurora.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751568AbbBRCwy (ORCPT ); Tue, 17 Feb 2015 21:52:54 -0500 Message-ID: <54E3FE80.2090202@codeaurora.org> Date: Tue, 17 Feb 2015 18:52:48 -0800 From: Stephen Boyd User-Agent: Mozilla/5.0 (X11; Linux i686 on x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.4.0 MIME-Version: 1.0 To: Bjorn Andersson , Andy Gross CC: Bjorn Andersson , Rob Herring , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , Lee Jones , Mark Brown , Srinivas Kandagatla , "devicetree@vger.kernel.org" , "linux-kernel@vger.kernel.org" Subject: Re: [PATCH] mfd: devicetree: bindings: Add Qualcomm RPM regulator subnodes References: <1422582666-32653-1-git-send-email-bjorn.andersson@sonymobile.com> <20150213221332.GA19975@qualcomm.com> In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3339 Lines: 75 On 02/17/15 13:48, Bjorn Andersson wrote: > On Fri, Feb 13, 2015 at 2:13 PM, Andy Gross wrote: >> On Thu, Jan 29, 2015 at 05:51:06PM -0800, Bjorn Andersson wrote: >>> Add the regulator subnodes to the Qualcomm RPM MFD device tree bindings. >>> >>> Signed-off-by: Bjorn Andersson >>> --- >>> #include >>> @@ -66,5 +237,18 @@ frequencies. >>> >>> #address-cells = <1>; >>> #size-cells = <0>; >>> + >>> + pm8921_smps1: pm8921-smps1 { >>> + compatible = "qcom,rpm-pm8921-smps"; >>> + reg = ; >>> + >>> + regulator-min-microvolt = <1225000>; >>> + regulator-max-microvolt = <1225000>; >>> + regulator-always-on; >>> + >>> + bias-pull-down; >>> + >>> + qcom,switch-mode-frequency = <3200000>; >>> + }; >>> }; >> My only comment here is that most (all but one) of the other mfd regulator >> devices use regulators {}. Still wonder if that's what we should do. >> > Looking at the existing mfds they all have a list in the code of the > regulators supported on a certain mfd. Through the use of > regulator_desc.{of_match,regulators_node} these regulators are > populated with properties from of_nodes matched by name (of_match) > under the specified node (regulators_node). > But as we've discussed in other cases it's not desirable to maintain > these lists for the various variants of Qualcomm platforms, so I did > choose to go with "standalone" platform devices - with matching > through compatible and all. > > But that's all implementation, looking at the binding itself a > regulator {} (clocks{} and msm_bus{}) would serve as a sort of > grouping of children based on type. Except for the implications this > has on the implementation I don't see much benefit of this (and in our > case the implementation would suffer from the extra grouping). > > > Let me know what you think, I based these ideas on just reading the > existing code and bindings, and might very well have missed something. > The main benefit I can think of is we cut down on runtime memory bloat. (gdb) p sizeof(struct platform_device) $1 = 624 Multiply that by 20 regulators and you get 624 * 20 = 12480 bytes in platform devices. If we had one platform_device for all RPM controlled regulators that would reduce this number from ~12k to ~0.5K. It would require of_regulator_match() and the (undesirable) lists of regulator names for all the different pmic variants, or we would need to pick out the regulator nodes based on compatible matching. Is that so bad? In the other cases we were putting lots of data in the driver purely for debugging, whereas in this case we're doing it to find nodes that we need to hook up with regulators in software and any associated data for that regulator. -- Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, a Linux Foundation Collaborative Project -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/