linux-usb.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Peter Chen <peter.chen@kernel.org>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: linux-usb@vger.kernel.org
Subject: [GIT PULL] usb: changes for v5.12-rc1
Date: Mon, 8 Feb 2021 21:22:38 +0800	[thread overview]
Message-ID: <20210208132238.GA16704@b29397-desktop> (raw)

The following changes since commit 5c8fe583cce542aa0b84adc939ce85293de36e5e:

  Linux 5.11-rc1 (2020-12-27 15:30:22 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git/ tags/usb-v5.12-rc1

for you to fetch changes up to 1ee18ded86ece87227a76d7101034fd305b8c803:

  usb: cdnsp: Removes some useless trace events (2021-02-06 15:43:52 +0800)

----------------------------------------------------------------
In v5.12-rc1, it adds cdnsp drivers for Cadence USB3 Family,
it is different UDC driver with current cdns3 driver.

----------------------------------------------------------------
Aswath Govindraju (1):
      usb: cdns3: Add support for TI's AM64 SoC

Pawel Laszczak (19):
      usb: cdns3: Add support for DRD CDNSP
      usb: cdns3: Split core.c into cdns3-plat and core.c file
      usb: cdns3: Moves reusable code to separate module
      usb: cdns3: Refactoring names in reusable code
      usb: cdns3: Changed type of gadget_dev in cdns structure
      usb: cdnsp: Device side header file for CDNSP driver
      usb: cdnsp: cdns3 Add main part of Cadence USBSSP DRD Driver
      usb: cdnsp: Add tracepoints for CDNSP driver
      usb: cdns3: Change file names for cdns3 driver.
      MAINTAINERS: add Cadence USBSSP DRD IP driver entry
      usb: cdnsp: Removes some not useful function arguments
      usb: cdns3: Removes xhci_cdns3_suspend_quirk from host-export.h
      usb: cdnsp: fix error handling in cdnsp_mem_init()
      usb: cdns3: Fixes for sparse warnings
      usb: cdnsp: Fixes for sparse warnings
      usb: cdnsp: Fix for undefined reference to `usb_hcd_is_primary_hcd'
      usb: cdns3: Adds missing __iomem markers
      usb: cdnsp: fixes undefined reference to cdns_remove
      usb: cdnsp: Removes some useless trace events

Randy Dunlap (2):
      usb: cdns3: fix build when PM_SLEEP is not set
      usb: cdns3: fix warning when USB_CDNS_HOST is not set

Zou Wei (1):
      usb: cdnsp: Mark cdnsp_gadget_ops with static keyword

 MAINTAINERS                                    |    9 +
 drivers/usb/Makefile                           |    2 +
 drivers/usb/cdns3/Kconfig                      |   60 +-
 drivers/usb/cdns3/Makefile                     |   43 +-
 drivers/usb/cdns3/{debug.h => cdns3-debug.h}   |    0
 drivers/usb/cdns3/{ep0.c => cdns3-ep0.c}       |    8 +-
 drivers/usb/cdns3/{gadget.c => cdns3-gadget.c} |   34 +-
 drivers/usb/cdns3/{gadget.h => cdns3-gadget.h} |    0
 drivers/usb/cdns3/cdns3-imx.c                  |    2 +-
 drivers/usb/cdns3/cdns3-plat.c                 |  315 +++
 drivers/usb/cdns3/cdns3-ti.c                   |    1 +
 drivers/usb/cdns3/{trace.c => cdns3-trace.c}   |    2 +-
 drivers/usb/cdns3/{trace.h => cdns3-trace.h}   |    6 +-
 drivers/usb/cdns3/cdnsp-debug.h                |  583 ++++++
 drivers/usb/cdns3/cdnsp-ep0.c                  |  489 +++++
 drivers/usb/cdns3/cdnsp-gadget.c               | 2009 +++++++++++++++++++
 drivers/usb/cdns3/cdnsp-gadget.h               | 1601 ++++++++++++++++
 drivers/usb/cdns3/cdnsp-mem.c                  | 1336 +++++++++++++
 drivers/usb/cdns3/cdnsp-pci.c                  |  254 +++
 drivers/usb/cdns3/cdnsp-ring.c                 | 2438 ++++++++++++++++++++++++
 drivers/usb/cdns3/cdnsp-trace.c                |   12 +
 drivers/usb/cdns3/cdnsp-trace.h                |  830 ++++++++
 drivers/usb/cdns3/core.c                       |  455 ++---
 drivers/usb/cdns3/core.h                       |   65 +-
 drivers/usb/cdns3/drd.c                        |  224 ++-
 drivers/usb/cdns3/drd.h                        |   94 +-
 drivers/usb/cdns3/gadget-export.h              |   22 +-
 drivers/usb/cdns3/host-export.h                |   18 +-
 drivers/usb/cdns3/host.c                       |   26 +-
 29 files changed, 10415 insertions(+), 523 deletions(-)
 rename drivers/usb/cdns3/{debug.h => cdns3-debug.h} (100%)
 rename drivers/usb/cdns3/{ep0.c => cdns3-ep0.c} (99%)
 rename drivers/usb/cdns3/{gadget.c => cdns3-gadget.c} (99%)
 rename drivers/usb/cdns3/{gadget.h => cdns3-gadget.h} (100%)
 create mode 100644 drivers/usb/cdns3/cdns3-plat.c
 rename drivers/usb/cdns3/{trace.c => cdns3-trace.c} (89%)
 rename drivers/usb/cdns3/{trace.h => cdns3-trace.h} (99%)
 create mode 100644 drivers/usb/cdns3/cdnsp-debug.h
 create mode 100644 drivers/usb/cdns3/cdnsp-ep0.c
 create mode 100644 drivers/usb/cdns3/cdnsp-gadget.c
 create mode 100644 drivers/usb/cdns3/cdnsp-gadget.h
 create mode 100644 drivers/usb/cdns3/cdnsp-mem.c
 create mode 100644 drivers/usb/cdns3/cdnsp-pci.c
 create mode 100644 drivers/usb/cdns3/cdnsp-ring.c
 create mode 100644 drivers/usb/cdns3/cdnsp-trace.c
 create mode 100644 drivers/usb/cdns3/cdnsp-trace.h

-- 

Thanks,
Peter Chen


             reply	other threads:[~2021-02-08 13:26 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-08 13:22 Peter Chen [this message]
2021-02-09  8:35 ` [GIT PULL] usb: changes for v5.12-rc1 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=20210208132238.GA16704@b29397-desktop \
    --to=peter.chen@kernel.org \
    --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).