public inbox for devicetree@vger.kernel.org
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: Marco Felsch <m.felsch@pengutronix.de>
Cc: Ze Huang <huang.ze@linux.dev>, Rob Herring <robh@kernel.org>,
	Krzysztof Kozlowski <krzk+dt@kernel.org>,
	Conor Dooley <conor+dt@kernel.org>,
	Fabio Estevam <festevam@gmail.com>,
	Matthias Kaehlcke <mka@chromium.org>,
	Liam Girdwood <lgirdwood@gmail.com>,
	Mark Brown <broonie@kernel.org>,
	devicetree@vger.kernel.org, linux-usb@vger.kernel.org,
	linux-kernel@vger.kernel.org, kernel@pengutronix.de
Subject: Re: [PATCH v4 0/5] Add onboard-dev USB hub host managed vbus handling support
Date: Tue, 10 Feb 2026 14:20:08 +0100	[thread overview]
Message-ID: <2026021026-unaired-freebie-718a@gregkh> (raw)
In-Reply-To: <20260210123228.wmtyf3ezwratne5k@pengutronix.de>

On Tue, Feb 10, 2026 at 01:32:28PM +0100, Marco Felsch wrote:
> Hi,
> 
> On 26-02-10, Ze Huang wrote:
> > On Fri Sep 12, 2025 at 4:22 AM CST, Marco Felsch wrote:
> > > Hi,
> > >
> > > the whole purpose of this series is to make it possible to control the
> > > USB VBUS regulators of an USB hub via host managed regulators.
> > >
> > > Regards,
> > >   Marco
> > >
> > > ---
> > > Changes in v4:
> > > - dt-bindings: change to vbus-supply and shift doc to usb-device.yaml
> > > - onboard_dev: make use of new regulator API to parse child device
> > >                regulators.
> > > - onboard_dev: drop hard coded downstream port number and make it more
> > >                dynamic
> > > - onboard_dev: drop limiting support to SMSC hubs
> > > - Link to v3: https://lore.kernel.org/r/20250821-v6-16-topic-usb-onboard-dev-v3-0-6d2b38a5d818@pengutronix.de
> > >
> > > Changes in v3:
> > > - fix dt-bindings issues
> > > - Link to v2: https://lore.kernel.org/all/20250327172803.3404615-1-m.felsch@pengutronix.de/
> > >
> > > Changes in v2:
> > > - fix compile time errors in case the module builds
> > > - Link to v1: https://lore.kernel.org/all/20240807-b4-v6-10-topic-usb-onboard-dev-v1-0-f33ce21353c9@pengutronix.de/
> > >
> > > ---
> > > Marco Felsch (5):
> > >       usb: port: track the disabled state
> > >       usb: hub: add infrastructure to pass onboard_dev port features
> > >       dt-bindings: usb: usb-device: add usb hub port vbus-supply suppport
> > >       dt-bindings: usb: microchip,usb2514: add vbus-supply example
> > >       usb: misc: onboard_dev: add hub downstream port host vbus-supply handling
> > >
> > >  .../devicetree/bindings/usb/microchip,usb2514.yaml |   7 ++
> > >  .../devicetree/bindings/usb/usb-device.yaml        |   6 ++
> > >  drivers/usb/core/hub.c                             |  55 +++++++++-
> > >  drivers/usb/core/hub.h                             |   4 +
> > >  drivers/usb/core/port.c                            |   6 ++
> > >  drivers/usb/misc/onboard_usb_dev.c                 | 117 +++++++++++++++++++++
> > >  include/linux/usb.h                                |   3 +
> > >  7 files changed, 196 insertions(+), 2 deletions(-)
> > > ---
> > > base-commit: 038d61fd642278bab63ee8ef722c50d10ab01e8f
> > > change-id: 20250821-v6-16-topic-usb-onboard-dev-b8d4d1d8a086
> > >
> > > Best regards,
> > 
> > Hi Marco,
> > 
> > I'm checking in to ask about the status of this patch series.
> > 
> > We are currently working on the Spacemit K1 SoC and we have a use case
> > that requires onboard_dev to manage the USB VBUS regulator. This series
> > would be very helpful for us :)
> 
> :)
> 
> > Link: https://lore.kernel.org/all/DG8QBWSJ79MP.2MVIHFRBX3WXX@linux.dev/
> 
> Regarding the status of this series. Rob provided his r-b tag once I
> fixed the minor typo. I also need to fix bug [1] which is triggered by
> the asix binding. I could move the 'vbus-supply' example to the
> usb-device.yaml.
> 
> @Greg, @USB-maintainers
> Are the driver changes OK?

I have no idea, this thread was from a very long time ago.  Please
resubmit after rebasing on 7.0-rc1 when it is out as we can't do
anything with any new patches until then anyway.

thanks,

greg k-h

  reply	other threads:[~2026-02-10 13:20 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-09-11 20:22 [PATCH v4 0/5] Add onboard-dev USB hub host managed vbus handling support Marco Felsch
2025-09-11 20:22 ` [PATCH v4 1/5] usb: port: track the disabled state Marco Felsch
2025-09-11 20:22 ` [PATCH v4 2/5] usb: hub: add infrastructure to pass onboard_dev port features Marco Felsch
2025-09-11 20:22 ` [PATCH v4 3/5] dt-bindings: usb: usb-device: add usb hub port vbus-supply suppport Marco Felsch
2025-09-15 20:58   ` Rob Herring
2025-09-11 20:22 ` [PATCH v4 4/5] dt-bindings: usb: microchip,usb2514: add vbus-supply example Marco Felsch
2025-09-12  0:17   ` Rob Herring (Arm)
2025-09-12  8:51     ` Marco Felsch
2025-09-12 14:11       ` Rob Herring
2025-09-12 15:30         ` Marco Felsch
2025-09-11 20:22 ` [PATCH v4 5/5] usb: misc: onboard_dev: add hub downstream port host vbus-supply handling Marco Felsch
2026-02-10  6:23 ` [PATCH v4 0/5] Add onboard-dev USB hub host managed vbus handling support Ze Huang
2026-02-10 12:32   ` Marco Felsch
2026-02-10 13:20     ` Greg Kroah-Hartman [this message]
2026-02-23 11:29       ` Marco Felsch

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=2026021026-unaired-freebie-718a@gregkh \
    --to=gregkh@linuxfoundation.org \
    --cc=broonie@kernel.org \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=festevam@gmail.com \
    --cc=huang.ze@linux.dev \
    --cc=kernel@pengutronix.de \
    --cc=krzk+dt@kernel.org \
    --cc=lgirdwood@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=m.felsch@pengutronix.de \
    --cc=mka@chromium.org \
    --cc=robh@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