From: Felipe Balbi <felipe.balbi@linux.intel.com>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: linux-usb@vger.kernel.org
Subject: [GIT PULL] USB: changes for v5.3 merge window
Date: Thu, 27 Jun 2019 10:55:47 +0300 [thread overview]
Message-ID: <87y31nea2k.fsf@linux.intel.com> (raw)
Hi Greg,
Here's my pull request for v5.3 merge window. Relevant patches have been
tested on platforms I have available.
Let me know if you want anything to be changed
cheers
The following changes since commit a954e5fb4bc2d401b8fc3b4c7cd316497ff80225:
Merge 5.2-rc5 into usb-next (2019-06-17 11:23:24 +0200)
are available in the Git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git tags/usb-for-v5.3
for you to fetch changes up to aa23ce847ddac1fd5ffe987ff12e12ff48318e45:
usb: dwc3: remove unused @lock member of dwc3_ep struct (2019-06-20 11:50:19 +0300)
----------------------------------------------------------------
usb: changes for v5.3 merge window
The biggest part here is a set of patches removing unnecesary variables
from several drivers.
Meson-g12a's dwc3 glue implemented IRQ-based OTG/DRD role swap.
Qcom's dwc3 glue added support for ACPI, mainly for the AArch64-based
SoCs.
DWC3 also got support for Intel Elkhart Lake platforms.
----------------------------------------------------------------
Andrzej Pietrasiewicz (1):
usb: gadget: Zero ffs_io_data
Anurag Kumar Vulisha (3):
doc: dt: bindings: usb: dwc3: Update entries for disabling U1 and U2
usb: gadget: send usb_gadget as an argument in get_config_params
usb: dwc3: gadget: Add support for disabling U1 and U2 entries
Biju Das (1):
usb: gadget: udc: renesas_usb3: Enhance role switch support
Chunfeng Yun (1):
usb: dwc3: remove unused @lock member of dwc3_ep struct
Colin Ian King (1):
usb: gadget: net2272: remove redundant assignments to pointer 's'
Daniel M German (1):
usb: Replace snprintf with scnprintf in gether_get_ifname
Douglas Anderson (3):
Documentation: dt-bindings: Add snps,need-phy-for-wake for dwc2 USB
ARM: dts: rockchip: Allow wakeup from rk3288-veyron's dwc2 USB ports
USB: dwc2: Don't turn off the usbphy in suspend if wakeup is enabled
EJ Hsu (1):
usb: gadget: storage: Remove warning message
Enric Balletbo i Serra (1):
usb: dwc3: Fix core validation in probe, move after clocks are enabled
Fei Yang (1):
usb: gadget: f_fs: data_len used before properly set
Felipe Balbi (1):
usb: dwc3: pci: Add Support for Intel Elkhart Lake Devices
Guenter Roeck (1):
Revert "usb: dwc2: host: Setting qtd to NULL after freeing it"
Hariprasad Kelam (3):
usb: gadget: at91_udc: Remove unneeded variable
fotg210-udc: Remove unneeded variable
USB: omap_udc: Remove unneeded variable
Jonas Stenvall (1):
usb: gadget: u_audio: Fixed variable declaration coding style issue
Kefeng Wang (1):
usb: dwc3: qcom: Use of_clk_get_parent_count()
Kiruthika Varadarajan (1):
usb: gadget: ether: Fix race between gether_disconnect and rx_submit
Lee Jones (4):
soc: qcom: geni: Add support for ACPI
usb: dwc3: qcom: Add support for booting with ACPI
usb: dwc3: qcom: Start USB in 'host mode' on the SDM845
usb: dwc3: qcom: Improve error handling
Marek Szyprowski (1):
usb: dwc2: Force 8bit UTMI width for Samsung Exynos SoCs
Neil Armstrong (1):
usb: dwc3: meson-g12a: Add support for IRQ based OTG switching
Simon Horman (2):
dt-bindings: usb: renesas_usbhs: Rename bindings documentation file
dt-bindings: usb: renesas_gen3: Rename bindings documentation file
Documentation/devicetree/bindings/usb/dwc2.txt | 3 +
Documentation/devicetree/bindings/usb/dwc3.txt | 2 +
.../usb/{renesas_usb3.txt => renesas,usb3.txt} | 0
.../usb/{renesas_usbhs.txt => renesas,usbhs.txt} | 0
arch/arm/boot/dts/rk3288-veyron.dtsi | 2 +
drivers/soc/qcom/qcom-geni-se.c | 21 +-
drivers/usb/dwc2/core.h | 8 +
drivers/usb/dwc2/hcd.c | 20 +-
drivers/usb/dwc2/hcd.h | 1 -
drivers/usb/dwc2/params.c | 1 +
drivers/usb/dwc2/platform.c | 23 ++-
drivers/usb/dwc3/Kconfig | 2 +-
drivers/usb/dwc3/core.c | 16 +-
drivers/usb/dwc3/core.h | 6 +-
drivers/usb/dwc3/dwc3-meson-g12a.c | 36 +++-
drivers/usb/dwc3/dwc3-pci.c | 4 +
drivers/usb/dwc3/dwc3-qcom.c | 224 ++++++++++++++++++---
drivers/usb/dwc3/ep0.c | 9 +-
drivers/usb/dwc3/gadget.c | 22 +-
drivers/usb/dwc3/gadget.h | 6 +
drivers/usb/gadget/composite.c | 2 +-
drivers/usb/gadget/function/f_fs.c | 9 +-
drivers/usb/gadget/function/f_mass_storage.c | 21 +-
drivers/usb/gadget/function/storage_common.h | 1 +
drivers/usb/gadget/function/u_audio.c | 4 +-
drivers/usb/gadget/function/u_ether.c | 10 +-
drivers/usb/gadget/udc/at91_udc.c | 3 +-
drivers/usb/gadget/udc/fotg210-udc.c | 3 +-
drivers/usb/gadget/udc/net2272.c | 5 -
drivers/usb/gadget/udc/omap_udc.c | 3 +-
drivers/usb/gadget/udc/renesas_usb3.c | 91 ++++++++-
include/linux/usb/gadget.h | 3 +-
32 files changed, 469 insertions(+), 92 deletions(-)
rename Documentation/devicetree/bindings/usb/{renesas_usb3.txt => renesas,usb3.txt} (100%)
rename Documentation/devicetree/bindings/usb/{renesas_usbhs.txt => renesas,usbhs.txt} (100%)
--
balbi
next reply other threads:[~2019-06-27 7:55 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-06-27 7:55 Felipe Balbi [this message]
2019-07-01 10:11 ` [GIT PULL] USB: changes for v5.3 merge window Greg Kroah-Hartman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87y31nea2k.fsf@linux.intel.com \
--to=felipe.balbi@linux.intel.com \
--cc=gregkh@linuxfoundation.org \
--cc=linux-usb@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).