All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] Please pull u-boot-dfu-next-20241003
@ 2024-10-03 17:45 Mattijs Korpershoek
  2024-10-04  2:40 ` Tom Rini
  0 siblings, 1 reply; 2+ messages in thread
From: Mattijs Korpershoek @ 2024-10-03 17:45 UTC (permalink / raw)
  To: Tom Rini, u-boot
  Cc: Lukasz Majewski, Heinrich Schuchardt, Rasmus Villemoes,
	Marek Vasut

Hi Tom,

Here are some new developments for next:

DFU:
- Reinitialize only if dfu_alt_info changed

USB Gadget:
- New usb gadget driver for Renesas USBHS
- Simplify kconfig deps for CMD_USB_MASS_STORAGE

Android:
- Provide bootloader version to android via kernel commandline

CI job:
- https://source.denx.de/u-boot/custodians/u-boot-dfu/-/pipelines/22516

Regards,
Mattijs

The following changes since commit 3a0b829efc35227b1079a444f00e0729502197ad:

  Merge tag 'v2024.10-rc6' into next (2024-09-30 17:48:12 -0600)

are available in the Git repository at:

  https://source.denx.de/u-boot/custodians/u-boot-dfu.git tags/u-boot-dfu-next-20241003

for you to fetch changes up to c74758ccc091402b558b9aa7eaf1c50171d2f49f:

  cmd: simplify CONFIG_CMD_USB_MASS_STORAGE dependencies (2024-10-03 10:01:35 +0200)

----------------------------------------------------------------
u-boot-dfu-next-20241003

DFU:
- Reinitialize only if dfu_alt_info changed

USB Gadget:
- New usb gadget driver for Renesas USBHS
- Simplify kconfig deps for CMD_USB_MASS_STORAGE

Android:
- Provide bootloader version to android via kernel commandline

----------------------------------------------------------------
Heinrich Schuchardt (1):
      cmd: simplify CONFIG_CMD_USB_MASS_STORAGE dependencies

Mattijs Korpershoek (1):
      bootstd: android: Add U-Boot version to cmdline

Rasmus Villemoes (1):
      dfu: define a callback function for the dfu_alt_info environment variable

Vitaliy Vasylskyy (1):
      usb: gadget: usbhs: Add Renesas USBHS device driver

 boot/bootmeth_android.c               |   13 +-
 cmd/Kconfig                           |    3 +-
 drivers/dfu/dfu.c                     |   16 +
 drivers/dfu/dfu_mmc.c                 |    3 +-
 drivers/usb/gadget/Kconfig            |    9 +
 drivers/usb/gadget/Makefile           |    1 +
 drivers/usb/gadget/rcar/Makefile      |    8 +
 drivers/usb/gadget/rcar/common.c      |  478 ++++++++++++++
 drivers/usb/gadget/rcar/common.h      |  328 ++++++++++
 drivers/usb/gadget/rcar/fifo.c        | 1067 +++++++++++++++++++++++++++++++
 drivers/usb/gadget/rcar/fifo.h        |  114 ++++
 drivers/usb/gadget/rcar/mod.c         |  345 ++++++++++
 drivers/usb/gadget/rcar/mod.h         |  161 +++++
 drivers/usb/gadget/rcar/mod_gadget.c  | 1136 +++++++++++++++++++++++++++++++++
 drivers/usb/gadget/rcar/pipe.c        |  849 ++++++++++++++++++++++++
 drivers/usb/gadget/rcar/pipe.h        |  114 ++++
 drivers/usb/gadget/rcar/renesas_usb.h |  125 ++++
 include/dfu.h                         |    1 +
 include/env_callback.h                |    7 +
 19 files changed, 4774 insertions(+), 4 deletions(-)
 create mode 100644 drivers/usb/gadget/rcar/Makefile
 create mode 100644 drivers/usb/gadget/rcar/common.c
 create mode 100644 drivers/usb/gadget/rcar/common.h
 create mode 100644 drivers/usb/gadget/rcar/fifo.c
 create mode 100644 drivers/usb/gadget/rcar/fifo.h
 create mode 100644 drivers/usb/gadget/rcar/mod.c
 create mode 100644 drivers/usb/gadget/rcar/mod.h
 create mode 100644 drivers/usb/gadget/rcar/mod_gadget.c
 create mode 100644 drivers/usb/gadget/rcar/pipe.c
 create mode 100644 drivers/usb/gadget/rcar/pipe.h
 create mode 100644 drivers/usb/gadget/rcar/renesas_usb.h


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

* Re: [GIT PULL] Please pull u-boot-dfu-next-20241003
  2024-10-03 17:45 [GIT PULL] Please pull u-boot-dfu-next-20241003 Mattijs Korpershoek
@ 2024-10-04  2:40 ` Tom Rini
  0 siblings, 0 replies; 2+ messages in thread
From: Tom Rini @ 2024-10-04  2:40 UTC (permalink / raw)
  To: Mattijs Korpershoek
  Cc: u-boot, Lukasz Majewski, Heinrich Schuchardt, Rasmus Villemoes,
	Marek Vasut

[-- Attachment #1: Type: text/plain, Size: 1026 bytes --]

On Thu, Oct 03, 2024 at 07:45:38PM +0200, Mattijs Korpershoek wrote:

> Hi Tom,
> 
> Here are some new developments for next:
> 
> DFU:
> - Reinitialize only if dfu_alt_info changed
> 
> USB Gadget:
> - New usb gadget driver for Renesas USBHS
> - Simplify kconfig deps for CMD_USB_MASS_STORAGE
> 
> Android:
> - Provide bootloader version to android via kernel commandline
> 
> CI job:
> - https://source.denx.de/u-boot/custodians/u-boot-dfu/-/pipelines/22516
> 
> Regards,
> Mattijs
> 
> The following changes since commit 3a0b829efc35227b1079a444f00e0729502197ad:
> 
>   Merge tag 'v2024.10-rc6' into next (2024-09-30 17:48:12 -0600)
> 
> are available in the Git repository at:
> 
>   https://source.denx.de/u-boot/custodians/u-boot-dfu.git tags/u-boot-dfu-next-20241003
> 
> for you to fetch changes up to c74758ccc091402b558b9aa7eaf1c50171d2f49f:
> 
>   cmd: simplify CONFIG_CMD_USB_MASS_STORAGE dependencies (2024-10-03 10:01:35 +0200)
> 

Applied to u-boot/next, 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-10-04  2:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-03 17:45 [GIT PULL] Please pull u-boot-dfu-next-20241003 Mattijs Korpershoek
2024-10-04  2:40 ` 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.