linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Saravana Kannan <saravanak@google.com>
To: Andy Shevchenko <andy.shevchenko@gmail.com>
Cc: Linus Walleij <linus.walleij@linaro.org>,
	Bartosz Golaszewski <bgolaszewski@baylibre.com>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Marc Zyngier <maz@kernel.org>,
	Jisheng Zhang <Jisheng.Zhang@synaptics.com>,
	Kever Yang <kever.yang@rock-chips.com>,
	"kernel-team@android.com" <kernel-team@android.com>,
	"linux-gpio@vger.kernel.org" <linux-gpio@vger.kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v2] gpiolib: Bind gpio_device to a driver to enable fw_devlink=on by default
Date: Tue, 26 Jan 2021 10:16:25 -0800	[thread overview]
Message-ID: <CAGETcx_FmOvLe4fN8ZZ_Kno-DnUy2DcPayk9Szmx2vrihr0KoQ@mail.gmail.com> (raw)
In-Reply-To: <CAHp75VfKiuVd7JO-0nwCuvy7tgPZScOpKX8Q4+oT+JSBR+d=ew@mail.gmail.com>

On Tue, Jan 26, 2021 at 1:40 AM Andy Shevchenko
<andy.shevchenko@gmail.com> wrote:
>
>
>
> On Friday, January 22, 2021, Saravana Kannan <saravanak@google.com> wrote:
>>
>> There are multiple instances of GPIO device tree nodes of the form:
>>
>> foo {
>>         compatible = "acme,foo";
>>         ...
>>
>>         gpio0: gpio0@xxxxxxxx {
>>                 compatible = "acme,bar";
>>                 ...
>>                 gpio-controller;
>>         };
>>
>>         gpio1: gpio1@xxxxxxxx {
>>                 compatible = "acme,bar";
>>                 ...
>>                 gpio-controller;
>>         };
>>
>>         ...
>> }
>>
>> bazz {
>>         my-gpios = <&gpio0 ...>;
>> }
>>
>> Case 1: The driver for "foo" populates struct device for these gpio*
>> nodes and then probes them using a driver that binds with "acme,bar".
>> This driver for "acme,bar" then registers the gpio* nodes with gpiolib.
>> This lines up with how DT nodes with the "compatible" property are
>> typically converted to struct devices and then registered with driver
>> core to probe them. This also allows the gpio* devices to hook into all
>> the driver core capabilities like runtime PM, probe deferral,
>> suspend/resume ordering, device links, etc.
>>
>> Case 2: The driver for "foo" doesn't populate struct devices for these
>> gpio* nodes before registering them with gpiolib. Instead it just loops
>> through its child nodes and directly registers the gpio* nodes with
>> gpiolib.
>>
>> Drivers that follow case 2 cause problems with fw_devlink=on. This is
>> because fw_devlink will prevent bazz from probing until there's a struct
>> device that has gpio0 as its fwnode (because bazz lists gpio0 as a GPIO
>> supplier). Once the struct device is available, fw_devlink will create a
>> device link with gpio0 device as the supplier and bazz device as the
>> consumer. After this point, since the gpio0 device will never bind to a
>> driver, the device link will prevent bazz device from ever probing.
>>
>> Finding and refactoring all the instances of drivers that follow case 2
>> will cause a lot of code churn and it is not something that can be done
>> in one shot. In some instances it might not even be possible to refactor
>> them cleanly. Examples of such instances are [1] [2].
>>
>> This patch works around this problem and avoids all the code churn by
>> simply setting the fwnode of the gpio_device and creating a stub driver
>> to bind to the gpio_device. This allows all the consumers to continue
>> probing when the driver follows case 2.
>>
>
> Do we need to unregister it at __exit initcall?
> What side effects would be of the stub driver presence on the GPIO bus? Any traverse on it will work as before?

I checked. There is no __exit initcall.

-Saravana

  parent reply	other threads:[~2021-01-27  0:59 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-22 19:35 [PATCH v5] gpiolib: Bind gpio_device to a driver to enable fw_devlink=on by default Saravana Kannan
2021-01-23 22:52 ` Linus Walleij
2021-01-24  2:53   ` Saravana Kannan
2021-01-24 22:48     ` Linus Walleij
2021-01-26  8:14       ` Greg Kroah-Hartman
     [not found] ` <CAHp75VfKiuVd7JO-0nwCuvy7tgPZScOpKX8Q4+oT+JSBR+d=ew@mail.gmail.com>
2021-01-26 18:16   ` Saravana Kannan [this message]
2021-01-26 18:32     ` [PATCH v2] " Andy Shevchenko
2021-01-27 14:22 ` [PATCH v5] " Greg Kroah-Hartman
2021-01-27 14:31   ` Bartosz Golaszewski
2021-01-27 15:04     ` Greg Kroah-Hartman
2021-01-30 17:39 ` Dmitry Osipenko
2021-01-31 21:28   ` Saravana Kannan
2021-02-01 16:49     ` Dmitry Osipenko
2021-02-01 20:15       ` Saravana Kannan
2021-02-01 21:15         ` Dmitry Osipenko
  -- strict thread matches above, loose matches on Subject: below --
2021-01-16  1:14 [PATCH v2] " Saravana Kannan
2021-01-16 20:37 ` Andy Shevchenko
2021-01-17 12:02 ` Marc Zyngier
2021-01-18 20:38   ` Saravana Kannan
2021-01-20 15:39     ` Marc Zyngier
2021-01-20 15:48       ` Greg Kroah-Hartman
2021-01-20 15:58         ` Marc Zyngier
2021-01-20 17:01           ` Greg Kroah-Hartman
2021-01-21 13:00 ` Linus Walleij
2021-01-21 19:43   ` Saravana Kannan
2021-01-22 13:04     ` Linus Walleij

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAGETcx_FmOvLe4fN8ZZ_Kno-DnUy2DcPayk9Szmx2vrihr0KoQ@mail.gmail.com \
    --to=saravanak@google.com \
    --cc=Jisheng.Zhang@synaptics.com \
    --cc=andy.shevchenko@gmail.com \
    --cc=bgolaszewski@baylibre.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=kernel-team@android.com \
    --cc=kever.yang@rock-chips.com \
    --cc=linus.walleij@linaro.org \
    --cc=linux-gpio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=maz@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).