devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Ryder Lee <ryder.lee@mediatek.com>
To: min.guo@mediatek.com
Cc: Mark Rutland <mark.rutland@arm.com>,
	devicetree@vger.kernel.org,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org,
	chunfeng.yun@mediatek.com, Rob Herring <robh+dt@kernel.org>,
	Alan Stern <stern@rowland.harvard.edu>,
	Matthias Brugger <matthias.bgg@gmail.com>,
	linux-mediatek@lists.infradead.org, Bin Liu <b-liu@ti.com>,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [SPAM][PATCH v2 0/4] Add MediaTek MUSB Controller Driver
Date: Tue, 15 Jan 2019 13:18:44 +0800	[thread overview]
Message-ID: <1547529524.13961.2.camel@mtkswgap22> (raw)
In-Reply-To: <1547516626-5084-1-git-send-email-min.guo@mediatek.com>

On Tue, 2019-01-15 at 09:43 +0800, min.guo@mediatek.com wrote:
> From: Min Guo <min.guo@mediatek.com>
> 
> These patches introduce the MediaTek MUSB controller driver.
> 
> The driver can be configured as Dual-Role Device (DRD),
> Peripheral Only and Host Only modes. This has beed tested on
> MT2701 with a variety of devices in host mode and with the 
> f_mass gadget driver in peripheral mode, plugging otg cables
> in/out a lot of times in all possible imaginable plug orders.
> 
> changes in v2:
> changes of dt-bindings suggested by Rob and Bin:
> 1. Modify DRC to DRD
> 2. Drop the "<soc-model>-musb" in compatible
> 3. Remove phy-names
> 4. Add space after comma in clock-names
> dtsi:
> 1. Remove phy-names
> changes of driver suggested by Bin:
> 1. Add a new patch for musb_set_toggle
> 2. Add summarize of MediaTek musb controller differences in the commit log
> 3. Abondon patch "usb: musb: Move musbhsdma macro definition to musb_dma.h"
> 4. Add "|| COMPILE_TEST" in Kconfig
> 5. Add musb_clearb() and musb_clearw() hooks
> 6. Add get_toggle() and set_toggle() hooks
> 7. Replace musb_readl() with musb_readw() to read 16bit toggle register
> 8. Move MediaTek's private toggle registers from musb_regs.h to mediatek.c
> 9. Create musbhs_dma_controller_create_noirq()
> 
> Min Guo (4):
>   dt-bindings: usb: musb: Add support for MediaTek musb controller
>   arm: dts: mt2701: Add usb2 device nodes
>   usb: musb: Extract set toggle as a separate interface
>   usb: musb: Add support for MediaTek musb controller
> 
>  .../devicetree/bindings/usb/mediatek,musb.txt      |  43 ++
>  arch/arm/boot/dts/mt2701-evb.dts                   |  21 +
>  arch/arm/boot/dts/mt2701.dtsi                      |  33 ++
>  drivers/usb/musb/Kconfig                           |   8 +-
>  drivers/usb/musb/Makefile                          |   1 +
>  drivers/usb/musb/mediatek.c                        | 617 +++++++++++++++++++++
>  drivers/usb/musb/musb_core.c                       |  69 +++
>  drivers/usb/musb/musb_core.h                       |   9 +
>  drivers/usb/musb/musb_dma.h                        |   9 +
>  drivers/usb/musb/musb_host.c                       |  35 +-
>  drivers/usb/musb/musb_io.h                         |   6 +
>  drivers/usb/musb/musbhsdma.c                       |  55 +-
>  12 files changed, 868 insertions(+), 38 deletions(-)
>  create mode 100644 Documentation/devicetree/bindings/usb/mediatek,musb.txt
>  create mode 100644 drivers/usb/musb/mediatek.c
> 

I tried the series on my mt7623

Tested-by: Ryder Lee <ryder.lee@mediatek.com>

      parent reply	other threads:[~2019-01-15  5:18 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-15  1:43 [PATCH v2 0/4] Add MediaTek MUSB Controller Driver min.guo
2019-01-15  1:43 ` [PATCH v2 1/4] dt-bindings: usb: musb: Add support for MediaTek musb controller min.guo
2019-01-15  1:43 ` [PATCH v2 2/4] arm: dts: mt2701: Add usb2 device nodes min.guo
2019-01-15  1:43 ` [PATCH v2 3/4] usb: musb: Extract set toggle as a separate interface min.guo
2019-01-15 15:19   ` Matthias Brugger
2019-01-15 20:40     ` Bin Liu
2019-01-16  2:43       ` Min Guo
2019-01-16  2:44     ` Min Guo
2019-01-15  1:43 ` [PATCH v2 4/4] usb: musb: Add support for MediaTek musb controller min.guo
2019-01-15 20:38   ` Bin Liu
2019-01-16  2:43     ` Min Guo
2019-01-16  9:39     ` Min Guo
2019-01-16 13:59       ` Bin Liu
2019-01-17  3:34         ` Min Guo
2019-01-15  5:18 ` Ryder Lee [this message]

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=1547529524.13961.2.camel@mtkswgap22 \
    --to=ryder.lee@mediatek.com \
    --cc=b-liu@ti.com \
    --cc=chunfeng.yun@mediatek.com \
    --cc=devicetree@vger.kernel.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mediatek@lists.infradead.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=matthias.bgg@gmail.com \
    --cc=min.guo@mediatek.com \
    --cc=robh+dt@kernel.org \
    --cc=stern@rowland.harvard.edu \
    /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).