[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20250809205736.34b75763@jic23-huawei>
Date: Sat, 9 Aug 2025 20:57:36 +0100
From: Jonathan Cameron <jic23@...nel.org>
To: Andy Shevchenko <andriy.shevchenko@...el.com>
Cc: Jonathan Cameron <Jonathan.Cameron@...wei.com>, Andy Shevchenko
<andy.shevchenko@...il.com>, Akshay Jindal <akshayaj.lkd@...il.com>,
anshulusr@...il.com, dlechner@...libre.com, nuno.sa@...log.com,
andy@...nel.org, shuah@...nel.org, linux-iio@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH] iio: light: ltr390: Add remove callback with needed
support in device registration
On Sat, 9 Aug 2025 12:53:40 +0300
Andy Shevchenko <andriy.shevchenko@...el.com> wrote:
> On Thu, Aug 07, 2025 at 02:04:01PM +0100, Jonathan Cameron wrote:
> > On Wed, 6 Aug 2025 23:02:44 +0300
> > Andy Shevchenko <andriy.shevchenko@...el.com> wrote:
> > > On Wed, Aug 06, 2025 at 04:18:01PM +0100, Jonathan Cameron wrote:
> > > > On Tue, 5 Aug 2025 14:47:32 +0200
> > > > Andy Shevchenko <andy.shevchenko@...il.com> wrote:
> > > > > On Tue, Aug 5, 2025 at 6:05 AM Akshay Jindal <akshayaj.lkd@...il.com> wrote:
> > > > > > On Tue, Aug 5, 2025 at 2:36 AM Andy Shevchenko
> > > > > > <andy.shevchenko@...il.com> wrote:
>
> ...
>
> > > > > > > Doesn't sound right to me. HAve you investigated PM runtime paths?
> > > > > > Yes I did investigate and found that PM runtime->suspend() callback
> > > > > > co-exists with remove callback.
> > > > > >
> > > > > > > Looking at what the code you added there it sounds to me like a part
> > > > > > > of PM runtime ->suspend() callback.
> > > > > > Yes, part of functionality will always be common, because both the
> > > > > > callback implementations put
> > > > > > the device into powered down or low power state which is what has been done here
> > > > > > Both _suspend() and remove are called at different times in the lifecycle of the
> > > > > > driver, but with respect to register setting, they put the device into
> > > > > > power down state.
> > > > >
> > > > > Are you sure about the remove stage and how it interacts with runtime
> > > > > PM? Please, check how the device driver core manages PM on the remove
> > > > > stage.
> > > > >
> > > > > > Additionally .remove() can have code for:
> > > > > > 1. disable runtime power management (if enabled while device registration).
> > > > >
> > > > > If the device core enables it for you, it will disable it
> > > > > symmetrically. I don't see the issue here, it should be done
> > > > > automatically. If you do that explicitly, use the respective
> > > > > devm_pm_runtime_*() call.
> > > > >
> > > > > > 2. device cleanup (disabling interrupt and cleaning up other configs done).
> > > > >
> > > > > Wrap them into devm if required.
> > > > >
> > > > > > 2. unregister the device.
> > > > >
> > > > > Already done in the original code which your patch reverts, why?
> > > > >
> > > > > > For eg: another light sensor bh1750
> > > > > > static void bh1750_remove(struct i2c_client *client)
> > > > > > {
> > > > > > iio_device_unregister(indio_dev);
> > > > > > mutex_lock(&data->lock);
> > > > > > i2c_smbus_write_byte(client, BH1750_POWER_DOWN);
> > > > > > mutex_unlock(&data->lock);
> > > > > > }
> > > > > >
> > > > > > static int bh1750_suspend(struct device *dev)
> > > > > > {
> > > > > > mutex_lock(&data->lock);
> > > > > > ret = i2c_smbus_write_byte(data->client, BH1750_POWER_DOWN);
> > > > > > mutex_unlock(&data->lock);
> > > > > > return ret;
> > > > > > }
> > > > >
> > > > > Correct and where do you see the problem here? Perhaps the problem is
> > > > > in the cleanup aordering and some other bugs vs. devm calls?
> > > > >
> > > > > > In drivers/iio/light, you can find similar examples in pa12203001,
> > > > > > rpr0521, apds9960,
> > > > > > vcnl4000, isl29028, vcnl4035. You can find many more examples in
> > > > > > sensors other than light sensors.
> > > > >
> > > > > Good, should all they need to be fixed?
> > > >
> > > > The complex corners that occur with devm + runtime pm are around
> > > > things that we must not run if we are already in runtime suspend.
> > > > Typically disabling power supplies (as we can underflow counters
> > > > and getting warning prints). Seeing as this driver is not
> > > > doing that it should be simple to use a devm_add_action_or_reset()
> > > >
> > > > Key thing to consider is that runtime pm may not be built.
> > >
> > > This will mean that user does not want to handle PM at all at runtime, so why
> > > should it be our problem? If device is off, it's not the problem of the driver
> > > to do the power cycle at run time (yes, this might not apply to the system
> > > suspend and resume cases, which has to be implemented as well).
> > >
> > > > So the flow should work with those calls doing nothing. That means that
> > > > if you turn the device on in probe we should make sure to explicitly turn
> > > > it off in the remove flow. That's where devm_add_action_or_reset()
> > > > comes in handy.
> > >
> > > I don't think we should do that explicitly in remove. As I pointed out above,
> > > this the case that driver should not override. Otherwise there is no point in
> > > having the common runtime PM. User deliberately makes it not compiled, so they
> > > should prepare to leave with it.
> >
> > Hmm. I don't agree. We turned it on so on error or remove I think we
> > should turn it off again. We do that in many drivers that never made use of
> > any of the standard PM stuff because they only touch enable and disable in
> > probe and remove. If nothing else I don't like the lack of balance between
> > probe and remove if we don't do it.
>
> We can do it, but this sounds to me like a step back. Implementing proper PM
> runtime callbacks is a step forward.
I entirely agree that runtime PM is good to have and it does a lot more
than just turning the power on and off once per probe / remove cycle.
But runtime_pm is currently optional (system wide) and that's not something
I think we are in a position to change. We should support runtime pm in
as many drivers as possible but not rely on it for 'correct functionality'.
To me turning a device off at remove that we turned on at probe is something
we should do. Now if it's already off, then sure don't turn it off again if
it has side effects to do so (which is the heart of the underflow warning issue
with regulators)
>
> Doing the former in the existing drivers is not an argument to me because all
> of them avoiding use of the PM APIs. Note, with PM APIs it may also involve
> devlink and other benefits that device driver core gives us.
We have lots of drivers that do both minimal management at probe and remove
as necessary to function, and if it is enabled, full runtime pm.
Though recently it has shown up that there are some underflow issues if we
aren't careful wrt to regulators being handled by devm.
>
> > > > ret = regmap_set_bits(data->regmap, LTR390_MAIN_CTRL, LTR390_SENSOR_ENABLE);
> > > > Is the paired operation with the second disable you add in remove.
> > > > Wrap that in a devm callback.
> > > >
> > > > More complex is the interrupt enable as that doesn't pair with
> > > > anything in particular in probe. I'm curious though, do we need
> > > > to disable it given the next operation turns off the sensor and on
> > > > probe we reset the sensor.
> > > >
> > > > Is just clearing the enable bit enough?
>
Powered by blists - more mailing lists