All of lore.kernel.org
 help / color / mirror / Atom feed
* [PULL] u-boot-usb/next
@ 2023-02-22 15:36 Marek Vasut
  2023-02-22 18:37 ` Tom Rini
  0 siblings, 1 reply; 21+ messages in thread
From: Marek Vasut @ 2023-02-22 15:36 UTC (permalink / raw)
  To: Tom Rini, Kunihiko Hayashi, u-boot

The following changes since commit 4eb7c5030d3f3c707c02a64dc8ea90de3da89928:

   Merge tag 'efi-2023-04-rc3' of 
https://source.denx.de/u-boot/custodians/u-boot-efi (2023-02-19 17:03:30 
-0500)

are available in the Git repository at:

   git://source.denx.de/u-boot-usb.git next

for you to fetch changes up to a073f9d7779e3f911306b61b7856a2262a8148a4:

   uniphier_defconfig: Disable USB_XHCI_DWC3 (2023-02-22 04:22:30 +0100)

----------------------------------------------------------------
Kunihiko Hayashi (9):
       usb: dwc3-generic: Allow different controller DT node pattern
       usb: dwc3-generic: Add clock initialization in child DT node
       usb: dwc3-generic: Export glue structures and functions
       usb: dwc3-generic: Add the size of regs property to glue structure
       reset: uniphier: Add USB glue reset support
       clk: uniphier: Add missing USB SS-PHY clocks
       phy: socionext: Add UniPhier USB3 PHY driver
       usb: dwc3-uniphier: Use dwc3-generic instead of xhci-dwc3
       uniphier_defconfig: Disable USB_XHCI_DWC3

Marek Vasut (1):
       usb: dwc3: Look up reference clock DT phandle in both controller 
DT nodes

  configs/uniphier_v7_defconfig             |   1 -
  configs/uniphier_v8_defconfig             |   1 -
  drivers/clk/uniphier/clk-uniphier-sys.c   |   5 +++
  drivers/phy/socionext/Kconfig             |   8 +++++
  drivers/phy/socionext/Makefile            |   1 +
  drivers/phy/socionext/phy-uniphier-usb3.c | 168 
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  drivers/reset/reset-uniphier.c            |  78 
+++++++++++++++++++++++++++++++++++++++++-
  drivers/usb/dwc3/Kconfig                  |   4 ++-
  drivers/usb/dwc3/dwc3-generic.c           | 132 
++++++++++++++++++++++++++++++++++++++++++++---------------------------
  drivers/usb/dwc3/dwc3-generic.h           |  33 ++++++++++++++++++
  drivers/usb/dwc3/dwc3-uniphier.c          | 116 
+++++++++++++++++++++++++++++++++++++++++----------------------
  11 files changed, 453 insertions(+), 94 deletions(-)
  create mode 100644 drivers/phy/socionext/phy-uniphier-usb3.c
  create mode 100644 drivers/usb/dwc3/dwc3-generic.h

^ permalink raw reply	[flat|nested] 21+ messages in thread
* [PULL] u-boot-usb/next
@ 2023-09-16 10:16 Marek Vasut
  2023-09-16 22:38 ` Tom Rini
  0 siblings, 1 reply; 21+ messages in thread
From: Marek Vasut @ 2023-09-16 10:16 UTC (permalink / raw)
  To: u-boot, Tom Rini; +Cc: Marek Vasut

The following changes since commit 2fe4b54556ea6271237b35de68dc458bfceab94c:

  Merge branch '2023-09-14-remove-NEEDS_MANUAL_RELOC' into next (2023-09-14 16:23:49 -0400)

are available in the Git repository at:

  git://source.denx.de/u-boot-usb.git next

for you to fetch changes up to 2caf974b5fac69a1b778e64503f2c107a8d7c3a3:

  board: usb: Replace legacy usb_gadget_handle_interrupts() (2023-09-15 23:38:02 +0200)

----------------------------------------------------------------
Marek Vasut (17):
      dm: usb: udc: Factor out plain udevice handler functions
      usb: sandbox: Add DM_USB_GADGET support
      configs: sandbox: Enable DM_USB_GADGET
      cmd: fastboot: Use plain udevice for UDC controller interaction
      cmd: rockusb: Use plain udevice for UDC controller interaction
      cmd: sdp: Reorder variable declaration
      cmd: thordown: Reorder variable declaration
      cmd: ums: Use plain udevice for UDC controller interaction
      dfu: Detach the controller on error
      dfu: Use plain udevice for UDC controller interaction
      spl: sdp: Detach the controller on error
      sdp: Use plain udevice for UDC controller interaction
      thordown: Use plain udevice for UDC controller interaction
      usb: gadget: acm: Use plain udevice for UDC controller interaction
      usb: gadget: ether: Use plain udevice for UDC controller interaction
      dm: usb: udc: Drop legacy udevice handler functions
      board: usb: Replace legacy usb_gadget_handle_interrupts()

 arch/arm/mach-rockchip/board.c      |  4 +-
 board/purism/librem5/spl.c          |  4 +-
 board/samsung/common/exynos5-dt.c   |  4 +-
 board/st/stih410-b2260/board.c      |  4 +-
 board/ti/am43xx/board.c             |  6 +--
 cmd/fastboot.c                      |  7 ++--
 cmd/rockusb.c                       |  7 ++--
 cmd/thordown.c                      | 24 ++++++------
 cmd/usb_gadget_sdp.c                | 15 +++++---
 cmd/usb_mass_storage.c              | 10 +++--
 common/dfu.c                        | 19 ++++++----
 common/spl/spl_sdp.c                | 20 ++++++----
 configs/sandbox64_defconfig         |  1 +
 configs/sandbox_defconfig           |  1 +
 configs/sandbox_flattree_defconfig  |  1 +
 configs/sandbox_noinst_defconfig    |  1 +
 configs/sandbox_spl_defconfig       |  1 +
 configs/sandbox_vpl_defconfig       |  1 +
 drivers/usb/dwc3/core.c             |  6 +--
 drivers/usb/dwc3/dwc3-omap.c        |  8 ++--
 drivers/usb/gadget/at91_udc.c       |  2 +-
 drivers/usb/gadget/atmel_usba_udc.c |  3 +-
 drivers/usb/gadget/ci_udc.c         |  4 +-
 drivers/usb/gadget/dwc2_udc_otg.c   | 12 +-----
 drivers/usb/gadget/ether.c          | 20 +++++-----
 drivers/usb/gadget/f_acm.c          | 13 ++++---
 drivers/usb/gadget/f_mass_storage.c |  8 ++--
 drivers/usb/gadget/f_sdp.c          | 10 ++---
 drivers/usb/gadget/f_thor.c         | 74 +++++++++++++++++++------------------
 drivers/usb/gadget/udc/Makefile     |  2 +-
 drivers/usb/gadget/udc/udc-uclass.c | 57 ++++++++++++++--------------
 drivers/usb/host/usb-sandbox.c      |  6 ++-
 drivers/usb/musb-new/musb_uboot.c   |  2 +-
 include/dwc3-omap-uboot.h           |  2 +-
 include/dwc3-uboot.h                |  2 +-
 include/linux/usb/gadget.h          | 32 ++++++++--------
 include/sdp.h                       |  6 +--
 include/thor.h                      |  4 +-
 include/usb_mass_storage.h          |  2 +-
 39 files changed, 214 insertions(+), 191 deletions(-)

^ permalink raw reply	[flat|nested] 21+ messages in thread
* [PULL] u-boot-usb/next
@ 2023-09-05 13:50 Marek Vasut
  2023-09-06 17:50 ` Tom Rini
  0 siblings, 1 reply; 21+ messages in thread
From: Marek Vasut @ 2023-09-05 13:50 UTC (permalink / raw)
  To: u-boot, Tom Rini; +Cc: Marek Vasut

The following changes since commit f2bb6d9ffd9ba0d0d89c00445a70cf81327a7af2:

  Merge tag 'doc-next' of https://source.denx.de/u-boot/custodians/u-boot-efi into next (2023-09-02 09:08:34 -0400)

are available in the Git repository at:

  git://source.denx.de/u-boot-usb.git next

for you to fetch changes up to adee3ba577a6d5902b5af6c2368faf5f509003c6:

  usb: host: ohci-generic: Make usage of clock/reset bulk() API (2023-09-04 18:25:20 +0200)

----------------------------------------------------------------
Fabrice Gasnier (2):
      usb: check for companion controller in uclass
      usb: host: ohci-generic: Make usage of clock/reset bulk() API

 drivers/usb/host/ohci-generic.c | 92 +++++++++++++----------------------------
 drivers/usb/host/usb-uclass.c   | 36 ++++++++++++++++
 2 files changed, 65 insertions(+), 63 deletions(-)

^ permalink raw reply	[flat|nested] 21+ messages in thread
* [PULL] u-boot-usb/next
@ 2023-05-18 15:01 Marek Vasut
  2023-05-18 20:09 ` Tom Rini
  0 siblings, 1 reply; 21+ messages in thread
From: Marek Vasut @ 2023-05-18 15:01 UTC (permalink / raw)
  To: Tom Rini, u-boot

The following changes since commit 5d0b3dde115b0d26d414199678983d01b738ad1b:

   Merge branch '2023-05-15-build-system-updates' into next (2023-05-15 
15:26:54 -0400)

are available in the Git repository at:

   git://source.denx.de/u-boot-usb.git next

for you to fetch changes up to da83ada02a2684f743fadaf3b915e92f83d74628:

   usb: gadget: Add and use matching SPL USB ethernet gadget Kconfig 
symbols (2023-05-17 01:51:39 +0200)

----------------------------------------------------------------
Marek Vasut (4):
       usb: Move SPL_USB_HOST Kconfig symbol to drivers/usb/
       usb: Move SPL_USB_STORAGE Kconfig symbol to drivers/usb/
       usb: Move SPL_USB_GADGET and related Kconfig symbols to drivers/usb/
       usb: gadget: Add and use matching SPL USB ethernet gadget Kconfig 
symbols

  common/spl/Kconfig          | 90 
---------------------------------------------
  drivers/usb/Kconfig         | 22 +++++++++++
  drivers/usb/gadget/Kconfig  | 88 
++++++++++++++++++++++++++++++++++++++++++++
  drivers/usb/gadget/Makefile |  8 ++--
  drivers/usb/host/Kconfig    | 13 +++++++
  5 files changed, 126 insertions(+), 95 deletions(-)


^ permalink raw reply	[flat|nested] 21+ messages in thread
* [PULL] u-boot-usb/next
@ 2023-03-03  0:05 Marek Vasut
  2023-03-03 23:40 ` Tom Rini
  0 siblings, 1 reply; 21+ messages in thread
From: Marek Vasut @ 2023-03-03  0:05 UTC (permalink / raw)
  To: Tom Rini, u-boot, Chunfeng Yun

The following changes since commit 49cba67852f1fb5ef481bef3532b2cda96816e45:

   Merge branch 'next' of 
https://source.denx.de/u-boot/custodians/u-boot-marvell into next 
(2023-03-01 11:00:22 -0500)

are available in the Git repository at:

   git://source.denx.de/u-boot-usb.git next

for you to fetch changes up to ea436dbc40e01a6c483c41d7ec1e4a419fc6b7c0:

   dt-bindings: usb: mtk-xhci: add support mt8195 (2023-03-02 22:43:44 
+0100)

----------------------------------------------------------------
Chunfeng Yun (5):
       phy: phy-mtk-tphy: remove macros to prepare bitfield value
       phy: phy-mtk-tphy: add support mt8195
       usb: xhci-mtk: modify the SOF/ITP interval for mt8195
       dt-bindings: phy-mtk-tphy: add support mt8195
       dt-bindings: usb: mtk-xhci: add support mt8195

Marek Vasut (1):
       usb: dwc3-meson-g12a: Select PHY instead of imply PHY

  doc/device-tree-bindings/phy/phy-mtk-tphy.txt      |   1 +
  doc/device-tree-bindings/usb/mediatek,mtk-xhci.txt |   4 +-
  drivers/phy/phy-mtk-tphy.c                         | 213 
+++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------
  drivers/usb/dwc3/Kconfig                           |   4 +-
  drivers/usb/host/xhci-mtk.c                        |  49 
++++++++++++++++++-
  5 files changed, 182 insertions(+), 89 deletions(-)

^ permalink raw reply	[flat|nested] 21+ messages in thread
* [PULL] u-boot-usb/next
@ 2020-10-01  8:29 Marek Vasut
  2020-10-01 17:09 ` Tom Rini
  0 siblings, 1 reply; 21+ messages in thread
From: Marek Vasut @ 2020-10-01  8:29 UTC (permalink / raw)
  To: u-boot

The following changes since commit ae52e75d23ce11f36b3eae758045da95a871f263:

  Merge tag 'for-v2021.01-next' of
https://gitlab.denx.de/u-boot/custodians/u-boot-i2c into next
(2020-09-17 09:55:01 -0400)

are available in the Git repository at:

  git://git.denx.de/u-boot-usb.git next

for you to fetch changes up to 4fb50766433626f4d57e7491e638bc55d80badef:

  usb: xhci-rcar: Add support for R8A774A1 SoC (2020-09-22 13:40:27 +0200)

----------------------------------------------------------------
Chance.Yang (1):
      usb: dwc2: Fix contorl OUT transfer issue

Chunfeng Yun (9):
      usb: xhci: add a member hci_version in xhci_ctrl struct
      usb: xhci: create one unified function to calculate TRB TD remainder
      usb: xhci: add quirks flag to support MediaTek xHCI 0.96
      usb: xhci: convert to HCS_MAX_PORTS()
      usb: xhci: convert to TRB_TYPE()
      usb: xhci: convert to TRB_LEN() and TRB_INTR_TARGET()
      usb: xhci: convert to TRB_TX_TYPE()
      usb: xhci: use macros with parameter to fill ep_info2
      usb: xhci: convert to readx_poll_sleep_timeout()

Lad Prabhakar (1):
      usb: xhci-rcar: Add support for R8A774A1 SoC

 drivers/usb/gadget/dwc2_udc_otg_xfer_dma.c |  16 +++++++++--
 drivers/usb/host/xhci-mem.c                |  18 ++++--------
 drivers/usb/host/xhci-mtk.c                |   1 +
 drivers/usb/host/xhci-rcar.c               |   1 +
 drivers/usb/host/xhci-ring.c               | 141
++++++++++++++++++++++++++++++++++++++++++++----------------------------------------------
 drivers/usb/host/xhci.c                    |  37 +++++++++++-------------
 include/usb/xhci.h                         |  18 ++++--------
 7 files changed, 111 insertions(+), 121 deletions(-)

^ permalink raw reply	[flat|nested] 21+ messages in thread
* [PULL] u-boot-usb/next
@ 2020-03-30  9:32 Marek Vasut
  2020-04-01 13:43 ` Tom Rini
  0 siblings, 1 reply; 21+ messages in thread
From: Marek Vasut @ 2020-03-30  9:32 UTC (permalink / raw)
  To: u-boot

A couple of fixed/cleans, this is for next:

The following changes since commit 350c44dfb99017e9147ee07d37a40626bde62250:

  Merge branch '2020-03-27-master-imports' (2020-03-27 17:54:38 -0400)

are available in the Git repository at:

  git://git.denx.de/u-boot-usb.git next

for you to fetch changes up to ac28e59a574dd231a4787752d923f618587e3d10:

  usb: Migrate to support live DT for some driver (2020-03-30 03:48:53
+0200)

----------------------------------------------------------------
Kever Yang (3):
      usb: dwc3-of-simple: Drop redundant inclding header file
      usb: ehci-msm: Use dev interface to get device address
      usb: Migrate to support live DT for some driver

 drivers/usb/cdns3/core.c           | 15 ++++++---------
 drivers/usb/cdns3/gadget.c         |  2 +-
 drivers/usb/common/common.c        | 12 +++++-------
 drivers/usb/dwc3/dwc3-generic.c    | 16 +++++++---------
 drivers/usb/dwc3/dwc3-meson-g12a.c |  2 +-
 drivers/usb/gadget/dwc2_udc_otg.c  |  5 ++---
 drivers/usb/host/dwc3-of-simple.c  |  1 -
 drivers/usb/host/dwc3-sti-glue.c   | 20 +++++++-------------
 drivers/usb/host/ehci-msm.c        |  4 +---
 drivers/usb/host/ehci-mx6.c        |  2 +-
 drivers/usb/host/xhci-dwc3.c       |  3 +--
 drivers/usb/musb-new/ti-musb.c     | 12 +++++-------
 include/linux/usb/otg.h            | 10 ++++++----
 13 files changed, 43 insertions(+), 61 deletions(-)

^ permalink raw reply	[flat|nested] 21+ messages in thread

end of thread, other threads:[~2023-09-16 22:38 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-22 15:36 [PULL] u-boot-usb/next Marek Vasut
2023-02-22 18:37 ` Tom Rini
2023-02-22 22:09   ` Marek Vasut
2023-02-23  1:50     ` Tom Rini
2023-02-23  4:45       ` Marek Vasut
2023-02-23 16:36     ` Tom Rini
  -- strict thread matches above, loose matches on Subject: below --
2023-09-16 10:16 Marek Vasut
2023-09-16 22:38 ` Tom Rini
2023-09-05 13:50 Marek Vasut
2023-09-06 17:50 ` Tom Rini
2023-05-18 15:01 Marek Vasut
2023-05-18 20:09 ` Tom Rini
2023-03-03  0:05 Marek Vasut
2023-03-03 23:40 ` Tom Rini
2020-10-01  8:29 Marek Vasut
2020-10-01 17:09 ` Tom Rini
2020-10-01 17:42   ` Marek Vasut
2020-10-01 18:09     ` Tom Rini
2020-10-01 18:38       ` Marek Vasut
2020-03-30  9:32 Marek Vasut
2020-04-01 13:43 ` Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.