From: Patrice CHOTARD <patrice.chotard@foss.st.com>
To: <u-boot@lists.denx.de>, Marek Vasut <marex@denx.de>
Cc: Patrick DELAUNAY <patrick.delaunay@foss.st.com>,
U-Boot STM32 <uboot-stm32@st-md-mailman.stormreply.com>,
Caleb Connolly <caleb.connolly@linaro.org>,
Ilias Apalodimas <ilias.apalodimas@linaro.org>,
Jan Kiszka <jan.kiszka@siemens.com>,
Marek Vasut <marek.vasut+renesas@mailbox.org>,
Marek Vasut <marex@denx.de>, Mathieu Othacehe <othacehe@gnu.org>,
Mattijs Korpershoek <mkorpershoek@baylibre.com>,
Nathan Barrett-Morrison <nathan.morrison@timesys.com>,
Neil Armstrong <neil.armstrong@linaro.org>,
Oliver Gaskell <Oliver.Gaskell@analog.com>,
Patrick Rudolph <patrick.rudolph@9elements.com>,
Paul Barker <paul.barker.ct@bp.renesas.com>,
Robert Marko <robert.marko@sartura.hr>,
Sam Protsenko <semen.protsenko@linaro.org>,
Simon Glass <sjg@chromium.org>,
Sjoerd Simons <sjoerd@collabora.com>,
Tom Rini <trini@konsulko.com>
Subject: Re: [PATCH v5 0/9] Restore USB and add UMS support for STiH407-B2260
Date: Mon, 10 Feb 2025 11:28:50 +0100 [thread overview]
Message-ID: <4492fe8a-1b60-44da-93b7-383eae3fa269@foss.st.com> (raw)
In-Reply-To: <20250130163547.512990-1-patrice.chotard@foss.st.com>
Hi Marek
Any chance to get this series merged in next U-Boot tag 2025.04-rc2 ?
Thanks
Patrice
On 1/30/25 17:35, Patrice Chotard wrote:
>
> This series is :
> _ restoring USB on STiH410-B2260 which hasn't been
> tested since a while.
> _ migrating STi DWC3 glue from proprietary driver to
> dwc3-generic driver.
> _ adding UMS support for STiH410-B2260.
>
>
> Changes in v5:
> - move this patch from 6/9 to 3/9 position to avoid to have
> 2 drivers with identical compatible string simultaneously.
> - update commit description accordingly
> - reorder files entry for ARM STI in MAINTAINERS file
> - add #define LOG_CATEGORY UCLASS_NOP
> - use UCLASS_NOP instead of UCLASS_SIMPLE_BUS
>
> Changes in v4:
> - Update Kconfig description
>
> Changes in v3:
> - add RB Mattijs Korpershoek
> - Update comment by adding "Remove useless include files"
> - Replace debug() by dev_err()
> - check return value of syscon_regmap_lookup_by_phandle()
> - add RB Mattijs Korpershoek
>
> Changes in v2:
> - remove useless include files
> - add dwc3-sti.c DWC3 wrapper as done for dwc3-am62.c
>
> Patrice Chotard (9):
> ARM: dts: sti: Add fixed clock for ehci and ohci nodes in
> stih410-b2260.dtsi
> configs: stih410-b2260: Enable DM_REGULATOR flag
> usb: dwc3: Remove dwc3 glue driver support for STi
> usb: dwc3-generic: Reorder include
> usb: dwc3-generic: Add STih407 support
> configs: stih410-b2260: Enable USB_DWC3_GENERIC and USB_DWC3_STI flags
> configs: stih410-b2260: Enable DM_USB_GADGET flag
> board: stih410-b2260: Remove board_usb_init/cleanup()
> configs: stih410-b2260: Enable CMD_USB_MASS_STORAGE flag
>
> MAINTAINERS | 3 +-
> arch/arm/dts/stih410-b2260-u-boot.dtsi | 10 +
> board/st/stih410-b2260/board.c | 30 ---
> configs/stih410-b2260_defconfig | 5 +
> drivers/usb/dwc3/Kconfig | 8 +
> drivers/usb/dwc3/Makefile | 1 +
> drivers/usb/dwc3/dwc3-generic-sti.c | 134 +++++++++++++
> drivers/usb/dwc3/dwc3-generic.c | 20 +-
> drivers/usb/host/Kconfig | 9 -
> drivers/usb/host/Makefile | 1 -
> drivers/usb/host/dwc3-sti-glue.c | 253 -------------------------
> include/dwc3-sti-glue.h | 41 ----
> 12 files changed, 163 insertions(+), 352 deletions(-)
> create mode 100644 drivers/usb/dwc3/dwc3-generic-sti.c
> delete mode 100644 drivers/usb/host/dwc3-sti-glue.c
> delete mode 100644 include/dwc3-sti-glue.h
>
next prev parent reply other threads:[~2025-02-10 10:34 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-30 16:35 [PATCH v5 0/9] Restore USB and add UMS support for STiH407-B2260 Patrice Chotard
2025-01-30 16:35 ` [PATCH v5 1/9] ARM: dts: sti: Add fixed clock for ehci and ohci nodes in stih410-b2260.dtsi Patrice Chotard
2025-01-30 16:35 ` [PATCH v5 2/9] configs: stih410-b2260: Enable DM_REGULATOR flag Patrice Chotard
2025-01-30 16:35 ` [PATCH v5 3/9] usb: dwc3: Remove dwc3 glue driver support for STi Patrice Chotard
2025-01-30 16:35 ` [PATCH v5 4/9] usb: dwc3-generic: Reorder include Patrice Chotard
2025-01-30 16:35 ` [PATCH v5 5/9] usb: dwc3-generic: Add STih407 support Patrice Chotard
2025-01-31 7:16 ` Mattijs Korpershoek
2025-01-30 16:35 ` [PATCH v5 6/9] configs: stih410-b2260: Enable USB_DWC3_GENERIC and USB_DWC3_STI flags Patrice Chotard
2025-01-30 16:35 ` [PATCH v5 7/9] configs: stih410-b2260: Enable DM_USB_GADGET flag Patrice Chotard
2025-01-30 16:35 ` [PATCH v5 8/9] board: stih410-b2260: Remove board_usb_init/cleanup() Patrice Chotard
2025-01-30 16:35 ` [PATCH v5 9/9] configs: stih410-b2260: Enable CMD_USB_MASS_STORAGE flag Patrice Chotard
2025-02-10 10:28 ` Patrice CHOTARD [this message]
2025-02-10 13:42 ` [PATCH v5 0/9] Restore USB and add UMS support for STiH407-B2260 Marek Vasut
2025-02-11 7:55 ` Mattijs Korpershoek
2025-02-11 8:24 ` Patrice CHOTARD
2025-02-11 8:02 ` Mattijs Korpershoek
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=4492fe8a-1b60-44da-93b7-383eae3fa269@foss.st.com \
--to=patrice.chotard@foss.st.com \
--cc=Oliver.Gaskell@analog.com \
--cc=caleb.connolly@linaro.org \
--cc=ilias.apalodimas@linaro.org \
--cc=jan.kiszka@siemens.com \
--cc=marek.vasut+renesas@mailbox.org \
--cc=marex@denx.de \
--cc=mkorpershoek@baylibre.com \
--cc=nathan.morrison@timesys.com \
--cc=neil.armstrong@linaro.org \
--cc=othacehe@gnu.org \
--cc=patrick.delaunay@foss.st.com \
--cc=patrick.rudolph@9elements.com \
--cc=paul.barker.ct@bp.renesas.com \
--cc=robert.marko@sartura.hr \
--cc=semen.protsenko@linaro.org \
--cc=sjg@chromium.org \
--cc=sjoerd@collabora.com \
--cc=trini@konsulko.com \
--cc=u-boot@lists.denx.de \
--cc=uboot-stm32@st-md-mailman.stormreply.com \
/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