All of lore.kernel.org
 help / color / mirror / Atom feed
From: Chunfeng Yun <chunfeng.yun@mediatek.com>
To: u-boot@lists.denx.de
Subject: [PATCH next v7 00/10] Add support MediaTek USB3 DRD driver
Date: Mon, 28 Sep 2020 10:01:33 +0800	[thread overview]
Message-ID: <1601258493.29336.7.camel@mhfsdcap03> (raw)
In-Reply-To: <1600420213-25974-1-git-send-email-chunfeng.yun@mediatek.com>

Hi Marek, Lukasz

   Any comments on this patch series?

Thanks a lot


On Fri, 2020-09-18 at 17:10 +0800, Chunfeng Yun wrote:
> These patches introduce the MediaTek USB3 Dual-Role Controller
> driver.
> The driver can be configured as Peripheral only and Host only(xHCI)
> modes, and it's ported from Linux Kernel 5.8-rc1
> 
> v7 changes
>     1. use xhci quirk flag XHCI_MTK_HOST
> 
> v6 changes
>     1. modify commit message of [4/10]
> 
> v5 changes:
>     1. change condition of readl_poll_timeout() when check clocks
>     2. add xhci-mtk.c and myself as maintainer for MTK USB
> 
> v4 changes:
>     1. [4/10], [9/10] and [10/10] are new patches
>     2. add a glue driver
>     3. add host driver and rebuild host flow
>     4. support force_vbus mode for device
>     5. update bindings to support glue driver
> 
> v3 changes:
>     1. add patch [5/7]
>     2. add udc_set_speed()
>     3. simplify some code flow
> 
> v2 changes:
>     1. simplify QMU operations
> 
> Chunfeng Yun (10):
>   dt-binding: usb: add bindings for some common properties
>   dt-bindings: usb: mtu3: add bindings for MediaTek USB3 DRD
>   usb: add USB_SPEED_SUPER_PLUS
>   usb: common: add define of usb_speed_string()
>   usb: add MediaTek USB3 DRD driver
>   usb: gadget: Add bcdDevice for the MTU3 USB Gadget Controller
>   arm: dts: mt8512: add usb related nodes
>   configs: mt8512: enable fastboot
>   configs: mt8512: add USB host related configs
>   MAINTAINERS: add USB driver to ARM MEDIATEK
> 
>  MAINTAINERS                                    |   3 +
>  Makefile                                       |   1 +
>  arch/arm/dts/mt8512-bm1-emmc.dts               |  34 +
>  arch/arm/dts/mt8512.dtsi                       |  49 +-
>  configs/mt8512_bm1_emmc_defconfig              |  26 +
>  doc/device-tree-bindings/usb/generic.txt       |  31 +
>  doc/device-tree-bindings/usb/mediatek,mtu3.txt |  79 +++
>  drivers/usb/Kconfig                            |   2 +
>  drivers/usb/common/common.c                    |   8 +
>  drivers/usb/gadget/gadget_chips.h              |   8 +
>  drivers/usb/mtu3/Kconfig                       |  45 ++
>  drivers/usb/mtu3/Makefile                      |  11 +
>  drivers/usb/mtu3/mtu3.h                        | 423 +++++++++++
>  drivers/usb/mtu3/mtu3_core.c                   | 838 ++++++++++++++++++++++
>  drivers/usb/mtu3/mtu3_dr.h                     |  52 ++
>  drivers/usb/mtu3/mtu3_gadget.c                 | 686 ++++++++++++++++++
>  drivers/usb/mtu3/mtu3_gadget_ep0.c             | 933 +++++++++++++++++++++++++
>  drivers/usb/mtu3/mtu3_host.c                   | 141 ++++
>  drivers/usb/mtu3/mtu3_hw_regs.h                | 515 ++++++++++++++
>  drivers/usb/mtu3/mtu3_plat.c                   | 368 ++++++++++
>  drivers/usb/mtu3/mtu3_qmu.c                    | 504 +++++++++++++
>  drivers/usb/mtu3/mtu3_qmu.h                    |  37 +
>  include/linux/usb/ch9.h                        |   5 +-
>  23 files changed, 4794 insertions(+), 5 deletions(-)
>  create mode 100644 doc/device-tree-bindings/usb/generic.txt
>  create mode 100644 doc/device-tree-bindings/usb/mediatek,mtu3.txt
>  create mode 100644 drivers/usb/mtu3/Kconfig
>  create mode 100644 drivers/usb/mtu3/Makefile
>  create mode 100644 drivers/usb/mtu3/mtu3.h
>  create mode 100644 drivers/usb/mtu3/mtu3_core.c
>  create mode 100644 drivers/usb/mtu3/mtu3_dr.h
>  create mode 100644 drivers/usb/mtu3/mtu3_gadget.c
>  create mode 100644 drivers/usb/mtu3/mtu3_gadget_ep0.c
>  create mode 100644 drivers/usb/mtu3/mtu3_host.c
>  create mode 100644 drivers/usb/mtu3/mtu3_hw_regs.h
>  create mode 100644 drivers/usb/mtu3/mtu3_plat.c
>  create mode 100644 drivers/usb/mtu3/mtu3_qmu.c
>  create mode 100644 drivers/usb/mtu3/mtu3_qmu.h
> 

  parent reply	other threads:[~2020-09-28  2:01 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-18  9:10 [PATCH next v7 00/10] Add support MediaTek USB3 DRD driver Chunfeng Yun
2020-09-18  9:10 ` [PATCH next v7 01/10] dt-binding: usb: add bindings for some common properties Chunfeng Yun
2020-10-13 14:15   ` Bin Meng
2020-09-18  9:10 ` [PATCH next v7 02/10] dt-bindings: usb: mtu3: add bindings for MediaTek USB3 DRD Chunfeng Yun
2020-10-13 14:18   ` Bin Meng
2020-10-14  2:46     ` Chunfeng Yun
2020-09-18  9:10 ` [PATCH next v7 03/10] usb: add USB_SPEED_SUPER_PLUS Chunfeng Yun
2020-10-13 14:19   ` Bin Meng
2020-10-14  2:50     ` Chunfeng Yun
2020-09-18  9:10 ` [PATCH next v7 04/10] usb: common: add define of usb_speed_string() Chunfeng Yun
2020-10-13 14:21   ` Bin Meng
2020-09-18  9:10 ` [PATCH next v7 05/10] usb: add MediaTek USB3 DRD driver Chunfeng Yun
2020-10-13 14:26   ` Bin Meng
2020-10-14  3:15     ` Chunfeng Yun
2020-09-18  9:10 ` [PATCH next v7 06/10] usb: gadget: Add bcdDevice for the MTU3 USB Gadget Controller Chunfeng Yun
2020-10-13 14:28   ` Bin Meng
2020-09-18  9:10 ` [PATCH next v7 07/10] arm: dts: mt8512: add usb related nodes Chunfeng Yun
2020-10-13 14:32   ` Bin Meng
2020-09-18  9:10 ` [PATCH next v7 08/10] configs: mt8512: enable fastboot Chunfeng Yun
2020-09-18  9:10 ` [PATCH next v7 09/10] configs: mt8512: add USB host related configs Chunfeng Yun
2020-10-13 14:34   ` Bin Meng
2020-10-14  3:40     ` Chunfeng Yun
2020-09-18  9:10 ` [PATCH next v7 10/10] MAINTAINERS: add USB driver to ARM MEDIATEK Chunfeng Yun
2020-10-13 14:35   ` Bin Meng
2020-09-28  2:01 ` Chunfeng Yun [this message]
2020-09-28  2:12   ` [PATCH next v7 00/10] Add support MediaTek USB3 DRD driver Marek Vasut
2020-09-28  2:20     ` Chunfeng Yun
2020-10-13  7:26     ` Chunfeng Yun
2020-10-13 10:27       ` Bin Meng

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=1601258493.29336.7.camel@mhfsdcap03 \
    --to=chunfeng.yun@mediatek.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 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.