Re: [PATCH v2 1/9] i2c: prepare runtime PM support for I2C clientdevices

From: Mika Westerberg
Date: Fri Sep 13 2013 - 13:26:34 EST


On Fri, Sep 13, 2013 at 05:50:22PM +0300, Mika Westerberg wrote:
> On Fri, Sep 13, 2013 at 07:30:55AM -0700, Kevin Hilman wrote:
> > Mika Westerberg <mika.westerberg@xxxxxxxxxxxxxxx> writes:
> >
> > > On Thu, Sep 12, 2013 at 02:34:21PM -0700, Kevin Hilman wrote:
> > >> > diff --git a/drivers/i2c/i2c-core.c b/drivers/i2c/i2c-core.c
> > >> > index f32ca29..44374b4 100644
> > >> > --- a/drivers/i2c/i2c-core.c
> > >> > +++ b/drivers/i2c/i2c-core.c
> > >> > @@ -248,11 +248,30 @@ static int i2c_device_probe(struct device *dev)
> > >> > client->flags & I2C_CLIENT_WAKE);
> > >> > dev_dbg(dev, "probe\n");
> > >> >
> > >> > + /* Make sure the adapter is active */
> > >> > + pm_runtime_get_sync(&client->adapter->dev);
> > >> > +
> > >> > + /*
> > >> > + * Enable runtime PM for the client device. If the client wants to
> > >> > + * participate on runtime PM it should call pm_runtime_put() in its
> > >> > + * probe() callback.
> > >> > + */
> > >> > + pm_runtime_get_noresume(&client->dev);
> > >> > + pm_runtime_set_active(&client->dev);
> > >>
> > >> Why the set_active here?
> > >>
> > >> For hardware that is disabled/powered-off on startup, there will now be
> > >> a mismatch between the hardware state an the RPM core state.
> > >
> > > The call to pm_runtime_get_noresume() should make sure that the device is
> > > in active state (at least in state where it can access the bus) if I'm
> > > understanding this right.
> >
> > No, after _get_noresume(), nothing happens to the hardware. It simply
> > increments the usecount. From pm_runtime.h:
> >
> > static inline void pm_runtime_get_noresume(struct device *dev)
> > {
> > atomic_inc(&dev->power.usage_count);
> > }
> >
> > So after the _get_noresume() and _set_active() you're very likely to
> > have a disconnect between the hardware state and what state RPM thinks
> > the hardware is in.
>
> Good point.
>
> I suppose calling pm_runtime_get() here would work (and make the state
> active in all case)? I used _noresume() here because at this point the
> driver itself hasn't had change to install it's RPM hooks.

I take that back.

[ It has been some time since this code was originally written so I can't
remember all the details :-/ ]

The pm_runtime_get_noresume() is there just to increment the refcount. It
has nothing to do to "activate" the device in question. Sorry about the
confusion from my part.

This is what happens in case the device is enumerated from ACPI:

// This makes sure that the controller itself is powered on
// (adapter device follows its parent which is the controller). The
// controller is attached to the ACPI power domain so it is
// brought to D0 now.
pm_runtime_get_sync(&client->adapter->dev);

// This binds the client device to the ACPI power domain, and in
// addition to that brings the client device to D0.
if (ACPI_HANDLE(&client->dev))
acpi_dev_pm_attach(&client->dev, true);

// Increase the refcount so that client can start runtime PM
// transitions when it calls _put().
pm_runtime_get_noresume(&client->dev);

// Mark the device being active as
// 1) In ACPI case we know that is true as we just powered the
// device on.
// 2) We treat the device by default to be runtime PM active and
// powered on (that's in the changelog and should follow what
// the PCI bus did).
pm_runtime_set_active(&client->dev);

// Enable runtime PM but nothing happens yet as long as the client
// driver doesn't call _put().
pm_runtime_enable(&client->dev);

So, yes there might be a disconnect between the runtime PM state and the
device HW state now (same is with default to suspended).

When the driver ->probe() is called, it needs to power on the device (which
it probably needs to do anyway to be able to talk to the device and probe
its registers, etc.). Once the driver calls _put() the device is eventually
moved to suspended state (and its RPM hooks are called). I might be missing
something but is there a case where this is not beneficial?
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/