From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754530AbdFNH4p (ORCPT ); Wed, 14 Jun 2017 03:56:45 -0400 Received: from mail-io0-f194.google.com ([209.85.223.194]:35415 "EHLO mail-io0-f194.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754175AbdFNH4n (ORCPT ); Wed, 14 Jun 2017 03:56:43 -0400 MIME-Version: 1.0 X-Originating-IP: [90.68.25.6] In-Reply-To: <20170613202217.nj23xkahpz3jc4h5@qmqm.qmqm.pl> References: <053529c206a2afc453b52e2c0f024acd85341a83.1497364762.git.mirq-linux@rere.qmqm.pl> <20170613174628.sv4v76s7torrn5jx@sirena.org.uk> <20170613202217.nj23xkahpz3jc4h5@qmqm.qmqm.pl> From: Javier Martinez Canillas Date: Wed, 14 Jun 2017 09:56:37 +0200 Message-ID: Subject: Re: [PATCH v2 2/2] regulator: tps65910: Allow supply references to the same chip To: =?UTF-8?B?TWljaGHFgiBNaXJvc8WCYXc=?= Cc: Mark Brown , Linux Kernel , Tony Lindgren , Liam Girdwood , Keerthy , "linux-omap@vger.kernel.org" Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by mail.home.local id v5E7undC020478 Hello Michal, What kernel version are you using? It shouldn't be necessary anymore to resolve regulators dependencies during regulator_register(), now that logic to lookup the parent supply has been moved to regulator_get() instead. On Tue, Jun 13, 2017 at 10:22 PM, Michał Mirosław wrote: > On Tue, Jun 13, 2017 at 06:46:28PM +0100, Mark Brown wrote: >> On Tue, Jun 13, 2017 at 04:41:58PM +0200, Michał Mirosław wrote: >> > This allows for (acyclic) references from tps6591x supplies to >> > its outputs. >> This is clearly not something that should be open coded in individual >> drivers, aside from the code duplication it is obviously possible to >> have two different chips supplying each other which this wouldn't help >> at all. Is this happening for you with current kernels, we have a few >> mechanisms for deferring bindings of supplies which should help here. > > What mechanisms would that be? What I observed is that whenever The specific commit that adds the mechanism Mark is referring to is: commit 6261b06de565baafa590e58a531a1a5522cea0b6 Author: Bjorn Andersson Date: Tue Mar 24 18:56:05 2015 -0700 regulator: Defer lookup of supply to regulator_get Instead of resolving regulator supplies during registration move this to the time of a consumer retrieving a handle. The benefit is that it's possible for one driver to register regulators with internal dependencies out of order. Signed-off-by: Bjorn Andersson Signed-off-by: Mark Brown > a regulator's supply is not available but described in device-tree, What do you mean by not available? At some point it the parent supply should be registered with the regulator core and prevent the client device to defer its probe when calling regulator_get(). Now, if you don't have a client device that calls regulator_get() to resolve the parent supply but still need the parent supply to be enabled, this commit does in the core what you attempt to do in your driver: commit 5e3ca2b349b1e2c80b060b51bbf2af37448fad85 Author: Javier Martinez Canillas Date: Wed Mar 23 20:59:34 2016 -0300 regulator: Try to resolve regulators supplies on registration Commit 6261b06de565 ("regulator: Defer lookup of supply to regulator_get") moved the regulator supplies lookup logic from the regulators registration to the regulators get time. Unfortunately, that changed the behavior of the regulator core since now a parent supply with a child regulator marked as always-on, won't be enabled unless a client driver attempts to get the child regulator during boot. This patch tries to resolve the parent supply for the already registered regulators each time that a new regulator is registered. So the regulators that have child regulators marked as always on will be enabled regardless if a driver gets the child regulator or not. That was the behavior before the mentioned commit, since parent supplies were looked up at regulator registration time instead of during child get. Since regulator_resolve_supply() checks for rdev->supply, most of the times it will be a no-op. Errors aren't checked to keep the possible out of order dependencies which was the motivation for the mentioned commit. Also, the supply being available will be enforced on regulator get anyways in case the resolve fails on regulators registration. Fixes: 6261b06de565 ("regulator: Defer lookup of supply to regulator_get") Suggested-by: Mark Brown Signed-off-by: Javier Martinez Canillas Signed-off-by: Mark Brown Cc: # 4.1+ > the whole device's registration is deferred. > > The device-tree I'm working on contains: > > pmic: tps65911@2d { > compatible = "ti,tps65911"; > reg = <0x2d>; > ... > vcc3-supply = <&vio_reg>; // ldo6, ldo7, ldo8 > ... > regulators { > vio_reg: vio { > regulator-min-microvolt = <1800000>; > regulator-max-microvolt = <1800000>; > regulator-always-on; > }; > ... > } > } I don't see anything wrong with this DTS, it should work.... I did something similar for the max77802 PMIC in arch/arm/boot/dts/exynos5800-peach-pi.dts, some regulators have as input supplies regulators from the same PMIC and may not be necessarily registered in the order to resolve parent supplies on child registration. > > Best Regards, > Michał Mirosław Best regards, Javier