From: Michal Simek <michal.simek@xilinx.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v2 0/6] Convert Xilinx ZynqMP to DM_USB with generic DWC3 glue logic driver
Date: Fri, 18 May 2018 13:15:03 +0200 [thread overview]
Message-ID: <cover.1526642103.git.michal.simek@xilinx.com> (raw)
Hi,
this patchset is based on unfinished series send to ML 06/13/2017
by Vignesh
"[U-Boot] [PATCH v2 00/13] driver model bring-up of dwc3 usb peripheral"
We have taken some part of this to Xilinx tree and use it for a while
but it is time to review it and upstream it.
The patchset has 2 patches created by Mugunthan which are a little bit
fixed.
dwc3-generic driver was inspired by omap version.
And the last 3 patches just doing conversion and enable DM_USB for our
platform.
Thanks,
Michal
Changes in v2:
- Retype dwc->dev in gadget.c to avoid compilation warning
- Guard udevice with __UBOOT__
- Move ifdef in core.c to avoid compilation issues for some platforms
(for example edison)
- Change style to avoid correct but not nice indentation by using char
*driver variable (suggested by Marek)
Michal Simek (4):
usb: dwc3: Add generic DWC3 glue logic driver
usb: xhci: zynqmp: Add support for DM_USB
arm64: zynqmp: Use DWC3 generic driver and DM_USB
usb: xhci: zynqmp: Remove support for !DM_USB
Mugunthan V N (2):
usb: dwc3: Add dwc3_init/remove with DM_USB
usb: common: add support to get maximum speed from dt
arch/arm/include/asm/arch-zynqmp/hardware.h | 3 -
board/xilinx/zynqmp/zynqmp.c | 46 -----
.../xilinx_zynqmp_zc1751_xm015_dc1_defconfig | 1 +
.../xilinx_zynqmp_zc1751_xm016_dc2_defconfig | 1 +
.../xilinx_zynqmp_zc1751_xm017_dc3_defconfig | 1 +
configs/xilinx_zynqmp_zcu100_revC_defconfig | 1 +
configs/xilinx_zynqmp_zcu102_rev1_0_defconfig | 1 +
configs/xilinx_zynqmp_zcu102_revA_defconfig | 1 +
configs/xilinx_zynqmp_zcu102_revB_defconfig | 1 +
configs/xilinx_zynqmp_zcu104_revA_defconfig | 1 +
configs/xilinx_zynqmp_zcu104_revC_defconfig | 1 +
configs/xilinx_zynqmp_zcu106_revA_defconfig | 1 +
configs/xilinx_zynqmp_zcu111_revA_defconfig | 1 +
drivers/usb/common/common.c | 29 ++++
drivers/usb/dwc3/Kconfig | 6 +
drivers/usb/dwc3/Makefile | 1 +
drivers/usb/dwc3/core.c | 55 ++++++
drivers/usb/dwc3/core.h | 6 +
drivers/usb/dwc3/dwc3-generic.c | 157 ++++++++++++++++++
drivers/usb/dwc3/gadget.c | 2 +-
drivers/usb/host/Kconfig | 1 +
drivers/usb/host/xhci-zynqmp.c | 85 ++++++----
.../configs/xilinx_zynqmp_zc1751_xm015_dc1.h | 1 -
.../configs/xilinx_zynqmp_zc1751_xm016_dc2.h | 2 -
.../configs/xilinx_zynqmp_zc1751_xm017_dc3.h | 3 -
include/configs/xilinx_zynqmp_zcu100.h | 3 -
include/configs/xilinx_zynqmp_zcu102.h | 2 -
include/configs/xilinx_zynqmp_zcu104.h | 2 -
include/configs/xilinx_zynqmp_zcu106.h | 2 -
include/configs/xilinx_zynqmp_zcu111.h | 2 -
include/linux/usb/otg.h | 9 +
scripts/config_whitelist.txt | 1 -
32 files changed, 330 insertions(+), 99 deletions(-)
create mode 100644 drivers/usb/dwc3/dwc3-generic.c
--
2.17.0
next reply other threads:[~2018-05-18 11:15 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-05-18 11:15 Michal Simek [this message]
2018-05-18 11:15 ` [U-Boot] [PATCH v2 1/6] usb: dwc3: Add dwc3_init/remove with DM_USB Michal Simek
2018-05-18 13:21 ` Jean-Jacques Hiblot
2018-05-18 11:15 ` [U-Boot] [PATCH v2 2/6] usb: common: add support to get maximum speed from dt Michal Simek
2018-05-18 11:15 ` [U-Boot] [PATCH v2 3/6] usb: dwc3: Add generic DWC3 glue logic driver Michal Simek
2018-05-18 13:24 ` Jean-Jacques Hiblot
2018-05-18 13:26 ` Jean-Jacques Hiblot
2018-05-21 6:45 ` Michal Simek
2018-05-18 11:15 ` [U-Boot] [PATCH v2 4/6] usb: xhci: zynqmp: Add support for DM_USB Michal Simek
2018-05-18 11:15 ` [U-Boot] [PATCH v2 5/6] arm64: zynqmp: Use DWC3 generic driver and DM_USB Michal Simek
2018-05-18 11:15 ` [U-Boot] [PATCH v2 6/6] usb: xhci: zynqmp: Remove support for !DM_USB Michal Simek
2018-05-18 11:25 ` [U-Boot] [PATCH v2 0/6] Convert Xilinx ZynqMP to DM_USB with generic DWC3 glue logic driver Marek Vasut
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=cover.1526642103.git.michal.simek@xilinx.com \
--to=michal.simek@xilinx.com \
--cc=u-boot@lists.denx.de \
/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