From mboxrd@z Thu Jan 1 00:00:00 1970 From: Uwe =?iso-8859-1?Q?Kleine-K=F6nig?= Subject: Re: [PATCH v3 5/6] pwm: fsl-ftm: Don't update the state for the caller of pwm_apply_state() Date: Wed, 4 Sep 2019 10:21:37 +0200 Message-ID: <20190904082137.7rro26fh4cankej5@pengutronix.de> References: <20190824153707.13746-6-uwe@kleine-koenig.org> <20190902142709.wxrjsfzorozgeiuh@pengutronix.de> <20190903184800.2fmmvwyzbwbsaf6y@pengutronix.de> <20190903201550.gxcyed5svtq33ev2@pengutronix.de> <20190903210740.qgyvxxmsdg5dzaby@pengutronix.de> Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Return-path: Content-Disposition: inline In-Reply-To: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "Linux-rockchip" Errors-To: linux-rockchip-bounces+glpar-linux-rockchip=m.gmane.org-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org To: Doug Anderson Cc: linux-pwm , Heiko Stuebner , Maxime Ripard , Patrick Havelange , "open list:ARM/Rockchip SoC..." , Chen-Yu Tsai , Thierry Reding , Sascha Hauer List-Id: linux-pwm@vger.kernel.org On Tue, Sep 03, 2019 at 02:48:54PM -0700, Doug Anderson wrote: > Hi, > = > On Tue, Sep 3, 2019 at 2:07 PM Uwe Kleine-K=F6nig > wrote: > > > > On Tue, Sep 03, 2019 at 01:50:27PM -0700, Doug Anderson wrote: > > > Hi, > > > > > > On Tue, Sep 3, 2019 at 1:15 PM Uwe Kleine-K=F6nig > > > wrote: > > > > > > > > On Tue, Sep 03, 2019 at 12:35:25PM -0700, Doug Anderson wrote: > > > > > Hi, > > > > > > > > > > On Tue, Sep 3, 2019 at 11:48 AM Uwe Kleine-K=F6nig > > > > > wrote: > > > > > > > > > > > > Hello, > > > > > > > > > > > > On Tue, Sep 03, 2019 at 09:54:37AM -0700, Doug Anderson wrote: > > > > > > > On Mon, Sep 2, 2019 at 7:27 AM Uwe Kleine-K=F6nig > > > > > > > wrote: > > > > > > > > On Fri, Aug 30, 2019 at 10:39:16AM -0700, Doug Anderson wro= te: > > > > > > > > > On Sat, Aug 24, 2019 at 8:37 AM Uwe Kleine-K=F6nig wrote: > > > > > > > > > > > > > > > > > > > > The pwm-fsl-ftm driver is one of only three PWM drivers= which updates > > > > > > > > > > the state for the caller of pwm_apply_state(). This mig= ht have > > > > > > > > > > surprising results if the caller reuses the values expe= cting them to > > > > > > > > > > still represent the same state. > > > > > > > > > > > > > > > > > > > > Signed-off-by: Uwe Kleine-K=F6nig > > > > > > > > > > --- > > > > > > > > > > drivers/pwm/pwm-fsl-ftm.c | 4 ---- > > > > > > > > > > 1 file changed, 4 deletions(-) > > > > > > > > > > > > > > > > > > Presumably this patch could break something since the pwm= -fsl-ftm > > > > > > > > > driver doesn't appear to implement the get_state() functi= on. ...or > > > > > > > > > did I miss it? > > > > > > > > > > > > > > > > I don't expect breakage. We have more than 50 pwm drivers a= nd only three > > > > > > > > of them made use of adapting the passed state. So unless yo= u do > > > > > > > > something special with the PWM (i.e. more than backlight, L= ED or fan > > > > > > > > control) I don't think a consumer might care. But it might = well be that > > > > > > > > I miss something so feel free to prove me wrong. > > > > > > > > > > > > > > I don't have this hardware so I can't prove you wrong. ...but > > > > > > > presumably someone added the code to return the state on purp= ose? > > > > > > > > > > > > > > Maybe you could implement get_state() for this driver in your= series? > > > > > > > > > > > > Sure, I could. But I don't have hardware either and so I'm not = in a > > > > > > better position than anybody else on this list. > > > > > > > > > > > > I suggest to apply as is during the merge window, and let affec= ted > > > > > > user report problems (or patches) if there really is an issue. > > > > > > Guessing what people might suffer from and trying to cure this = with > > > > > > untested patches won't help I think. > > > > > > > > > > I suppose it's not up to me, but I would rather have a patch that > > > > > attempts to keep things working like they did before rather than = one > > > > > that is known to change behavior. Even worse is that your patch > > > > > description doesn't mention this functionality change at all. > > > > > > > > I suggest to add > > > > > > > > As the driver doesn't provide a .get_state() callback it is > > > > expected that this changes behaviour slightly as pwm_get_st= ate() > > > > will yield the last set instead of the last implemented set= ting. > > > > > > > > to the commit log to fix this. > > > > > > > > > I will also note that not everyone does a deep test of all > > > > > functionality during every kernel merge window. ...so your chang= e in > > > > > functionality certain has a pretty high chance of remaining broke= n for > > > > > a while. > > > > > > > > I don't expect any real breakage. The changed behaviour only affects > > > > users of pwm_get_state() that is called after pwm_apply_state(). > > > > > > > > > In addition if a PWM is used for something like a PWM > > > > > regulator then subtle changes can cause totally non-obvious break= ages, > > > > > maybe adjusting regulators by a very small percentage. > > > > > > > > So for drivers/regulator/pwm-regulator.c this affects the .get_volt= age() > > > > call only. Note that .set_voltage() does call pwm_get_state() but > > > > doesn't use the result. I don't see how my change would affect the > > > > configuration written to the PWM registers when the PWM regulator d= river > > > > is its user. So if you want to convince me that the PWM regulator i= s one > > > > of the potentially affected consumers, you have to work a bit harde= r. > > > > :-) > > > > > > Prior to your patch, pwm_apply_state() would call the ->apply() > > > function, right? That would modify the state. Then pwm_apply_state() > > > would store the state (after it had been modified) into pwm->state. > > > All future calls to pwm_get_state() would return the modified state. > > > > > > ...this means that the call to pwm_get_state() in > > > pwm_regulator_get_voltage() would return the actual hardware state. > > > > > > After your patch series pwm_get_state() will not return the actual > > > hardware state for "pwm-fsl-ftm.c", it will return the state that was > > > programmed. > > > > > > While pwm_set_voltage() will not necessarily be affected, future calls > > > to pwm_regulator_get_voltage() could be affected. Unless you are > > > asserting that 100% of the calls to pwm_get_voltage() cosmetic. > > > > > > > > > Please correct anything I got wrong there. > > > > I think this is all true. The key question here is then: Who calls the > > .get_voltage() callback and cares about the result? Yes, it changes a > > few files in sysfs but apart from that? > = > There are lots of drivers that call get_voltage() for things other > than sysfs, but without auditing each one I can't say if any of them > would change behavior in a way that would matter. In my book it is ok to do such a change. The driver continues to compile just fine, it isn't knowingly broken. And if someone finds a regression we can fix it then and have someone who cares for testing. And even if a regulator changes its behaviour slightly and breaks in a hardly detectable way, I would bet that in 95% of the cases it only worked by chance before. And I hope for the remaining 5% who seem to care about correctness, that the reverify on a kernel upgrade. Yes, there might be some cases falling through the cracks, but if we start to demand this kind of care from people who work on generic code (here: PWM core) we will be stuck for a long time and scare people with motivation away. So the lesser evil in my eyes is to accept that not all corner cases might be handled because they are unknown. Best regards Uwe -- = Pengutronix e.K. | Uwe Kleine-K=F6nig | Industrial Linux Solutions | http://www.pengutronix.de/ |