[PULL] u-boot-usb/master

The following changes since commit 36b661dc919da318c163a45f4a220d2e3d9db608:
Merge branch 'next' (2022-07-11 14:58:57 -0400)
are available in the Git repository at:
git://source.denx.de/u-boot-usb.git master
for you to fetch changes up to 16aabfe2f29d4682b2176095029fa307caccaced:
spl: sdp: Pass the USB index to board_usb_init() (2022-07-14 16:13:11 +0200)
---------------------------------------------------------------- Fabio Estevam (1): spl: sdp: Pass the USB index to board_usb_init()
Kory Maincent (1): usb: kbd: allow probing even if usbkbd not in stdin
Michal Simek (1): ti: keystone: Don't select GPIO_EXTRA_HEADER
Patrick Delaunay (1): usb: hub: introduce HUB_DEBOUNCE_TIMEOUT
Rui Miguel Silva (3): usb: common: move urb code to common usb: add isp1760 family driver corstone1000: enable isp1763 usb controller and mmc
T Karthik Reddy (1): usb: dwc3: Add support to reset usb ULPI phy
Makefile | 1 + arch/arm/Kconfig | 1 - common/spl/spl_sdp.c | 2 +- common/usb_hub.c | 6 +- common/usb_kbd.c | 25 +- configs/corstone1000_defconfig | 3 + drivers/usb/Kconfig | 2 + drivers/usb/common/Makefile | 4 + drivers/usb/common/usb_urb.c | 160 ++++ drivers/usb/dwc3/dwc3-generic.c | 30 + drivers/usb/host/r8a66597-hcd.c | 30 +- drivers/usb/isp1760/Kconfig | 12 + drivers/usb/isp1760/Makefile | 6 + drivers/usb/isp1760/isp1760-core.c | 380 ++++++++++ drivers/usb/isp1760/isp1760-core.h | 96 +++ drivers/usb/isp1760/isp1760-hcd.c | 2477 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ drivers/usb/isp1760/isp1760-hcd.h | 81 ++ drivers/usb/isp1760/isp1760-if.c | 125 +++ drivers/usb/isp1760/isp1760-regs.h | 292 +++++++ drivers/usb/isp1760/isp1760-uboot.c | 75 ++ drivers/usb/isp1760/isp1760-uboot.h | 27 + drivers/usb/musb-new/musb_core.c | 2 +- drivers/usb/musb-new/musb_host.c | 2 +- drivers/usb/musb-new/musb_host.h | 2 +- drivers/usb/musb-new/musb_uboot.c | 38 +- drivers/usb/musb-new/musb_uboot.h | 2 +- include/configs/corstone1000.h | 6 + drivers/usb/musb-new/usb-compat.h => include/linux/usb/usb_urb_compat.h | 47 +- include/usb_defs.h | 32 + 29 files changed, 3874 insertions(+), 92 deletions(-) create mode 100644 drivers/usb/common/usb_urb.c create mode 100644 drivers/usb/isp1760/Kconfig create mode 100644 drivers/usb/isp1760/Makefile create mode 100644 drivers/usb/isp1760/isp1760-core.c create mode 100644 drivers/usb/isp1760/isp1760-core.h create mode 100644 drivers/usb/isp1760/isp1760-hcd.c create mode 100644 drivers/usb/isp1760/isp1760-hcd.h create mode 100644 drivers/usb/isp1760/isp1760-if.c create mode 100644 drivers/usb/isp1760/isp1760-regs.h create mode 100644 drivers/usb/isp1760/isp1760-uboot.c create mode 100644 drivers/usb/isp1760/isp1760-uboot.h rename drivers/usb/musb-new/usb-compat.h => include/linux/usb/usb_urb_compat.h (59%)

On Thu, Jul 14, 2022 at 05:05:00PM +0200, Marek Vasut wrote:
The following changes since commit 36b661dc919da318c163a45f4a220d2e3d9db608:
Merge branch 'next' (2022-07-11 14:58:57 -0400)
are available in the Git repository at:
git://source.denx.de/u-boot-usb.git master
for you to fetch changes up to 16aabfe2f29d4682b2176095029fa307caccaced:
spl: sdp: Pass the USB index to board_usb_init() (2022-07-14 16:13:11 +0200)
Applied to u-boot/master, thanks!
participants (2)
-
Marek Vasut
-
Tom Rini