From: Alexander Stein <alexander.stein@ew.tq-group.com>
To: Doug Anderson <dianders@chromium.org>,
Matthias Kaehlcke <mka@chromium.org>,
Icenowy Zheng <uwu@icenowy.me>,
Stefan Wahren <stefan.wahren@i2se.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
linux-kernel@vger.kernel.org, linux-usb@vger.kernel.org,
stable@vger.kernel.org,
Ravi Chandra Sadineni <ravisadineni@chromium.org>
Subject: Re: [PATCH v2 1/2] usb: misc: onboard_usb_hub: Don't create platform devices for DT nodes without 'vdd-supply'
Date: Mon, 02 Jan 2023 15:38:19 +0100 [thread overview]
Message-ID: <1783674.3VsfAaAtOV@steina-w> (raw)
In-Reply-To: <fdfe4b3c-1e7c-b9d5-6173-ce2c0e8dd52b@i2se.com>
Hi Stefan,
Am Montag, 2. Januar 2023, 12:44:33 CET schrieb Stefan Wahren:
> Hello Alexander,
>
> Am 02.01.23 um 10:20 schrieb Alexander Stein:
> > Hi everybody,
> >
> > Am Freitag, 23. Dezember 2022, 08:46:45 CET schrieb Icenowy Zheng:
> >> 在 2022-12-22星期四的 11:26 -0800,Doug Anderson写道:
> >>
> >>> Hi,
> >>>
> >>> On Wed, Dec 21, 2022 at 6:26 PM Matthias Kaehlcke <mka@chromium.org>
> >>>
> >>> wrote:
> >>>> The primary task of the onboard_usb_hub driver is to control the
> >>>> power of an onboard USB hub. The driver gets the regulator from the
> >>>> device tree property "vdd-supply" of the hub's DT node. Some boards
> >>>> have device tree nodes for USB hubs supported by this driver, but
> >>>> don't specify a "vdd-supply". This is not an error per se, it just
> >>>> means that the onboard hub driver can't be used for these hubs, so
> >>>> don't create platform devices for such nodes.
> >>>>
> >>>> This change doesn't completely fix the reported regression. It
> >>>> should fix it for the RPi 3 B Plus and boards with similar hub
> >>>> configurations (compatible DT nodes without "vdd-supply"), boards
> >>>> that actually use the onboard hub driver could still be impacted
> >>>> by the race conditions discussed in that thread. Not creating the
> >>>> platform devices for nodes without "vdd-supply" is the right
> >>>> thing to do, independently from the race condition, which will
> >>>> be fixed in future patch.
> >>>>
> >>>> Fixes: 8bc063641ceb ("usb: misc: Add onboard_usb_hub driver")
> >>>> Link:
> >>>> https://lore.kernel.org/r/d04bcc45-3471-4417-b30b-5cf9880d785d@i2se.com
> >>>> /
> >>>> Reported-by: Stefan Wahren <stefan.wahren@i2se.com>
> >>>> Signed-off-by: Matthias Kaehlcke <mka@chromium.org>
> >>>> ---
> >>>>
> >>>> Changes in v2:
> >>>> - don't create platform devices when "vdd-supply" is missing,
> >>>>
> >>>> rather than returning an error from _find_onboard_hub()
> >>>>
> >>>> - check for "vdd-supply" not "vdd" (Johan)
> >>>> - updated subject and commit message
> >>>> - added 'Link' tag (regzbot)
> >>>>
> >>>> drivers/usb/misc/onboard_usb_hub_pdevs.c | 13 +++++++++++++
> >>>> 1 file changed, 13 insertions(+)
> >>>
> >>> I'm a tad bit skeptical.
> >>>
> >>> It somehow feels a bit too much like "inside knowledge" to add this
> >>> here. I guess the "onboard_usb_hub_pdevs.c" is already pretty
> >>> entangled with "onboard_usb_hub.c", but I'd rather the "pdevs" file
> >>> keep the absolute minimum amount of stuff in it and all of the
> >>> details
> >>> be in the other file.
> >>>
> >>> If this was the only issue though, I'd be tempted to let it slide. As
> >>> it is, I'm kinda worried that your patch will break Alexander Stein,
> >>> who should have been CCed (I've CCed him now) or Icenowy Zheng (also
> >>> CCed now). I believe those folks are using the USB hub driver
> >>> primarily to drive a reset GPIO. Looking at the example in the
> >>> bindings for one of them (genesys,gl850g.yaml), I even see that the
> >>> reset-gpio is specified but not a vdd-supply. I think you'll break
> >>> that?
> >>
> >> Well technically in my final DT a regulator is included (to have the
> >> Vbus enabled when enabling the hub), however I am still against this
> >> patch, because the driver should work w/o vdd-supply (or w/o reset-
> >> gpios), and changing this behavior is a DT binding stability breakage.
> >
> > I second that. The bindings don't require neither vdd-supply nor
> > reset-gpios.
> >
> > But I have to admit I lack to understand the purpose of this series in the
> > first place. What is the benefit or fix?
>
> did you followed the provided link from the patch?
Ah, I didn't notice that. Thanks. Admittedly I've yet to fully understand that
race condition, but Matthias already suspects this series might not be enough,
even for boards which do use vdd-supply.
Just for the record, this series breaks my board if, as suspected by Doug
Anderson and Icenowy Zheng, there is no vdd-supply. The reset line will never
be touched.
Best regards,
Alexander
> Best regards
>
> > Best regards,
> > Alexader
> >
> >> In addition the kernel never fails because of a lacking regulator
> >> unless explicitly forbid dummy regulators.
> >>
> >> BTW USB is a discoverable bus, and if a hub do not need special
> >> handlement, it just does not need to appear in the DT, thus no onboard
> >> hub DT node.
> >>
> >>> In general, it feels like it should actually be fine to create the
> >>> USB
> >>> hub driver even if vdd isn't supplied. Sure, it won't do a lot, but
> >>> it
> >>> shouldn't actively hurt anything. You'll just be turning off and on
> >>> bogus regulators and burning a few CPU cycles. I guess the problem is
> >>> some race condition that you talk about in the commit message. I'd
> >>> rather see that fixed... That being said, if we want to be more
> >>> efficient and not burn CPU cycles and memory in Stefan Wahren's case,
> >>> maybe the USB hub driver itself could return a canonical error value
> >>> from its probe when it detects that it has no useful job and then
> >>> "onboard_usb_hub_pdevs" could just silently bail out?
> >>
> >> I agree.
next prev parent reply other threads:[~2023-01-02 14:38 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-12-22 2:26 [PATCH v2 1/2] usb: misc: onboard_usb_hub: Don't create platform devices for DT nodes without 'vdd-supply' Matthias Kaehlcke
2022-12-22 2:26 ` [PATCH v2 2/2] usb: misc: onboard_hub: Fail silently when there is no platform device Matthias Kaehlcke
2022-12-22 5:50 ` Greg Kroah-Hartman
2022-12-22 12:21 ` Stefan Wahren
2022-12-22 2:28 ` [PATCH v2 1/2] usb: misc: onboard_usb_hub: Don't create platform devices for DT nodes without 'vdd-supply' kernel test robot
2022-12-22 5:50 ` Greg Kroah-Hartman
2022-12-22 12:19 ` Stefan Wahren
2022-12-22 19:26 ` Doug Anderson
2022-12-23 7:46 ` Icenowy Zheng
2023-01-02 9:20 ` Alexander Stein
2023-01-02 11:44 ` Stefan Wahren
2023-01-02 14:38 ` Alexander Stein [this message]
2023-01-03 17:31 ` Matthias Kaehlcke
2023-01-03 17:24 ` Matthias Kaehlcke
2023-01-03 17:12 ` Matthias Kaehlcke
2023-01-04 9:00 ` Alexander Stein
2023-01-04 19:37 ` Matthias Kaehlcke
2023-01-05 1:42 ` Matthias Kaehlcke
2023-01-05 7:50 ` Stefan Wahren
2023-01-05 19:41 ` Matthias Kaehlcke
2023-01-05 20:45 ` Matthias Kaehlcke
2022-12-23 14:01 ` Johan Hovold
2023-01-03 17:42 ` Matthias Kaehlcke
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=1783674.3VsfAaAtOV@steina-w \
--to=alexander.stein@ew.tq-group.com \
--cc=dianders@chromium.org \
--cc=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=mka@chromium.org \
--cc=ravisadineni@chromium.org \
--cc=stable@vger.kernel.org \
--cc=stefan.wahren@i2se.com \
--cc=uwu@icenowy.me \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.