* [GIT PULL] Please pull u-boot-dfu-20240711
@ 2024-07-11 13:09 Mattijs Korpershoek
2024-07-12 16:07 ` Tom Rini
0 siblings, 1 reply; 2+ messages in thread
From: Mattijs Korpershoek @ 2024-07-11 13:09 UTC (permalink / raw)
To: Tom Rini, u-boot; +Cc: Lukasz Majewski, Marek Vasut, Caleb Connolly
Hi Tom,
Please find some new developments for master:
Usb gadget:
- A welcome cleanup: epautoconf workaround is dropped to use
.match_ep() instead
- Introduce handle_interrupts() op for USB_GADGET_GENERIC, which
allows a per-driver interrupt handling
Fastboot:
- Fix mssing include when building with TCP only
Thi CI job is at https://source.denx.de/u-boot/custodians/u-boot-dfu/-/pipelines/21552
Thanks,
Mattijs
The following changes since commit 7c9c5c0562347dccb8ac89148784a34de402ea9e:
Merge patch series "xtensa: Enable qemu-xtensa board" (2024-07-04 16:11:08 -0600)
are available in the Git repository at:
https://source.denx.de/u-boot/custodians/u-boot-dfu.git tags/u-boot-dfu-20240711
for you to fetch changes up to b091d3872833a4b8d088ee41348a2d4ff48067cc:
include/fastboot.h: add missing types.h include (2024-07-09 09:15:37 +0200)
----------------------------------------------------------------
u-boot-dfu-20240711
Usb gadget:
- A welcome cleanup: epautoconf workaround is dropped to use
.match_ep() instead
- Introduce handle_interrupts() op for USB_GADGET_GENERIC, which
allows a per-driver interrupt handling
Fastboot:
- Fix mssing include when building with TCP only
----------------------------------------------------------------
Caleb Connolly (1):
include/fastboot.h: add missing types.h include
Marek Vasut (17):
usb: gadget: g_dnl: Drop usb_gadget_controller_number()
usb: gadget: ether: Drop usb_gadget_controller_number()
usb: gadget: Drop usb_gadget_controller_number()
usb: gadget: Drop all gadget_is_*() functions
usb: gadget: Add full ep_matches() check past .match_ep() callback
usb: dwc3: gadget: Convert epautoconf workaround to match_ep callback
usb: gadget: Introduce handle_interrupts ops to USB_GADGET_GENERIC uclass
usb: gadget: cdns3: Convert interrupt handling to usb_gadget_generic_ops
usb: gadget: dwc2: Convert interrupt handling to usb_gadget_generic_ops
usb: gadget: dwc3: Convert interrupt handling to usb_gadget_generic_ops
usb: gadget: max3420: Convert interrupt handling to usb_gadget_generic_ops
usb: gadget: mtu3: Convert interrupt handling to usb_gadget_generic_ops
usb: gadget: omap2430: Convert interrupt handling to usb_gadget_generic_ops
usb: gadget: musb: Convert interrupt handling to usb_gadget_generic_ops
usb: gadget: ux500: Convert interrupt handling to usb_gadget_generic_ops
usb: gadget: sandbox: Drop dm_usb_gadget_handle_interrupts()
usb: gadget: Mark dm_usb_gadget_handle_interrupts as non-weak for DM_USB_GADGET
drivers/usb/cdns3/core.c | 24 +++++
drivers/usb/cdns3/gadget-export.h | 2 +
drivers/usb/cdns3/gadget.c | 11 +-
drivers/usb/dwc3/dwc3-generic.c | 23 ++--
drivers/usb/dwc3/dwc3-layerscape.c | 21 ++--
drivers/usb/dwc3/gadget.c | 33 ++++++
drivers/usb/gadget/dwc2_udc_otg.c | 20 +++-
drivers/usb/gadget/epautoconf.c | 81 +-------------
drivers/usb/gadget/ether.c | 25 ++---
drivers/usb/gadget/g_dnl.c | 17 +--
drivers/usb/gadget/gadget_chips.h | 210 ------------------------------------
drivers/usb/gadget/max3420_udc.c | 19 ++--
drivers/usb/gadget/udc/udc-uclass.c | 24 +++++
drivers/usb/host/usb-sandbox.c | 7 +-
drivers/usb/mtu3/mtu3_plat.c | 23 ++--
drivers/usb/musb-new/omap2430.c | 26 +++--
drivers/usb/musb-new/ti-musb.c | 23 ++--
drivers/usb/musb-new/ux500.c | 22 ++--
include/fastboot.h | 2 +
include/linux/usb/gadget.h | 8 ++
20 files changed, 219 insertions(+), 402 deletions(-)
delete mode 100644 drivers/usb/gadget/gadget_chips.h
^ permalink raw reply [flat|nested] 2+ messages in thread* Re: [GIT PULL] Please pull u-boot-dfu-20240711
2024-07-11 13:09 [GIT PULL] Please pull u-boot-dfu-20240711 Mattijs Korpershoek
@ 2024-07-12 16:07 ` Tom Rini
0 siblings, 0 replies; 2+ messages in thread
From: Tom Rini @ 2024-07-12 16:07 UTC (permalink / raw)
To: Mattijs Korpershoek; +Cc: u-boot, Lukasz Majewski, Marek Vasut, Caleb Connolly
[-- Attachment #1: Type: text/plain, Size: 1075 bytes --]
On Thu, Jul 11, 2024 at 03:09:58PM +0200, Mattijs Korpershoek wrote:
> Hi Tom,
>
> Please find some new developments for master:
>
> Usb gadget:
> - A welcome cleanup: epautoconf workaround is dropped to use
> .match_ep() instead
> - Introduce handle_interrupts() op for USB_GADGET_GENERIC, which
> allows a per-driver interrupt handling
>
> Fastboot:
> - Fix mssing include when building with TCP only
>
> Thi CI job is at https://source.denx.de/u-boot/custodians/u-boot-dfu/-/pipelines/21552
>
> Thanks,
> Mattijs
>
> The following changes since commit 7c9c5c0562347dccb8ac89148784a34de402ea9e:
>
> Merge patch series "xtensa: Enable qemu-xtensa board" (2024-07-04 16:11:08 -0600)
>
> are available in the Git repository at:
>
> https://source.denx.de/u-boot/custodians/u-boot-dfu.git tags/u-boot-dfu-20240711
>
> for you to fetch changes up to b091d3872833a4b8d088ee41348a2d4ff48067cc:
>
> include/fastboot.h: add missing types.h include (2024-07-09 09:15:37 +0200)
>
Applied to u-boot/master, thanks!
--
Tom
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-07-12 16:07 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-11 13:09 [GIT PULL] Please pull u-boot-dfu-20240711 Mattijs Korpershoek
2024-07-12 16:07 ` Tom Rini
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox