Hi Tom, Please find the following fixes for master:
Android: - Handle boot images with missing DTB Usb gadget: - Fix nullptr in g_dnl when serial# is unset - Add missing schedule() in f_mass_storage gadget - Add support for STih407 in dwc3-generic - Fix usb clocks on STih407 - Migrate STih407 to DM_USB_GADGET Note that this also includes some small developments to enable DM_USB_GADGET on the ST STih407 platforms. These were pending for some time. I missed those because the patches were assigned to Marek (instead of me) on patchwork. If it's too late (because it's past rc2) then please let me know. In any case, my apologies for missing the patches. CI Job: - https://source.denx.de/u-boot/custodians/u-boot-dfu/-/pipelines/24556 Thanks, Mattijs The following changes since commit b3c09eb36529fbb277bec17b35e638f42cb33683: arm64: configs: Remove SYS_BOOTM_LEN for TI devices (2025-02-05 12:45:11 -0600) are available in the Git repository at: https://source.denx.de/u-boot/custodians/u-boot-dfu.git tags/u-boot-dfu-20250211 for you to fetch changes up to 4096d28ec80f982454ef0dc7d42a4d4eaead5d56: configs: stih410-b2260: Enable CMD_USB_MASS_STORAGE flag (2025-02-11 09:01:08 +0100) ---------------------------------------------------------------- u-boot-dfu-20250211 Android: - Handle boot images with missing DTB Usb gadget: - Fix nullptr in g_dnl when serial# is unset - Add missing schedule() in f_mass_storage gadget - Add support for STih407 in dwc3-generic - Fix usb clocks on STih407 - Migrate STih407 to DM_USB_GADGET ---------------------------------------------------------------- Michael Ferolito (1): usb: gadget: g_dnl: Fix NULLPTR dereference when serial# is unset Patrice Chotard (10): usb: gadget: f_mass_storage: Add schedule() in sleep_thread() 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 Sam Day (1): boot: android: handle boot images with missing DTB MAINTAINERS | 3 +- arch/arm/dts/stih410-b2260-u-boot.dtsi | 10 ++ board/st/stih410-b2260/board.c | 30 ---- boot/image-android.c | 5 +- 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/gadget/f_mass_storage.c | 1 + drivers/usb/gadget/g_dnl.c | 3 +- drivers/usb/host/Kconfig | 9 -- drivers/usb/host/Makefile | 1 - drivers/usb/host/dwc3-sti-glue.c | 253 --------------------------------- include/dwc3-sti-glue.h | 41 ------ 15 files changed, 170 insertions(+), 354 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