All of lore.kernel.org
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: Biju Das <biju.das@bp.renesas.com>
Cc: Alan Stern <stern@rowland.harvard.edu>,
	Dmitry Osipenko <digetx@gmail.com>,
	Jianguo Sun <sunjianguo1@huawei.com>,
	Avi Fishman <AviFishman70@gmail.com>,
	Ofer Heifetz <oferh@marvell.com>, Lubomir Rintel <lkundrak@v3.sk>,
	Ran Wang <ran.wang_1@nxp.com>,
	Chunfeng Yun <chunfeng.yun@mediatek.com>,
	linux-usb@vger.kernel.org, Simon Horman <horms@verge.net.au>,
	Geert Uytterhoeven <geert+renesas@glider.be>,
	Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>,
	Chris Paterson <Chris.Paterson2@renesas.com>,
	Fabrizio Castro <fabrizio.castro@bp.renesas.com>,
	linux-renesas-soc@vger.kernel.org
Subject: Re: [PATCH 04/12] usb: host: ehci-r8a77470: Add EHCI support for Renesas RZ/G1C devices
Date: Mon, 1 Apr 2019 15:28:32 +0200	[thread overview]
Message-ID: <20190401132832.GA21551@kroah.com> (raw)
In-Reply-To: <1554123232-58942-5-git-send-email-biju.das@bp.renesas.com>

On Mon, Apr 01, 2019 at 01:53:44PM +0100, Biju Das wrote:
> This patch adds the glue code required to ensure the on-chip EHCI
> controller works on RZ/G1C(a.k.a R8A77470) SoC's from Renesas.
> 
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> ---
> V1-->V2
>   * New patch
> ---
>  drivers/usb/host/Kconfig         |   9 ++
>  drivers/usb/host/Makefile        |   1 +
>  drivers/usb/host/ehci-r8a77470.c | 327 +++++++++++++++++++++++++++++++++++++++
>  3 files changed, 337 insertions(+)
>  create mode 100644 drivers/usb/host/ehci-r8a77470.c
> 
> diff --git a/drivers/usb/host/Kconfig b/drivers/usb/host/Kconfig
> index d809671..a474aa9 100644
> --- a/drivers/usb/host/Kconfig
> +++ b/drivers/usb/host/Kconfig
> @@ -237,6 +237,15 @@ config USB_EHCI_HCD_STI
>  	  Enable support for the on-chip EHCI controller found on
>  	  STMicroelectronics consumer electronics SoC's.
>  
> +config USB_EHCI_HCD_R8A77470
> +	tristate "Support for Renesas R8A77470 on-chip EHCI USB controller"
> +	depends on ARCH_R8A77470 && OF

COMPILE_TEST so that others can also test-build this to ensure that we
do not break anything over time?

thanks,

greg k-h

WARNING: multiple messages have this Message-ID (diff)
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: Biju Das <biju.das@bp.renesas.com>
Cc: Alan Stern <stern@rowland.harvard.edu>,
	Dmitry Osipenko <digetx@gmail.com>,
	Jianguo Sun <sunjianguo1@huawei.com>,
	Avi Fishman <AviFishman70@gmail.com>,
	Ofer Heifetz <oferh@marvell.com>, Lubomir Rintel <lkundrak@v3.sk>,
	Ran Wang <ran.wang_1@nxp.com>,
	Chunfeng Yun <chunfeng.yun@mediatek.com>,
	linux-usb@vger.kernel.org, Simon Horman <horms@verge.net.au>,
	Geert Uytterhoeven <geert+renesas@glider.be>,
	Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>,
	Chris Paterson <Chris.Paterson2@renesas.com>,
	Fabrizio Castro <fabrizio.castro@bp.renesas.com>,
	linux-renesas-soc@vger.kernel.org
Subject: [04/12] usb: host: ehci-r8a77470: Add EHCI support for Renesas RZ/G1C devices
Date: Mon, 1 Apr 2019 15:28:32 +0200	[thread overview]
Message-ID: <20190401132832.GA21551@kroah.com> (raw)

On Mon, Apr 01, 2019 at 01:53:44PM +0100, Biju Das wrote:
> This patch adds the glue code required to ensure the on-chip EHCI
> controller works on RZ/G1C(a.k.a R8A77470) SoC's from Renesas.
> 
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> ---
> V1-->V2
>   * New patch
> ---
>  drivers/usb/host/Kconfig         |   9 ++
>  drivers/usb/host/Makefile        |   1 +
>  drivers/usb/host/ehci-r8a77470.c | 327 +++++++++++++++++++++++++++++++++++++++
>  3 files changed, 337 insertions(+)
>  create mode 100644 drivers/usb/host/ehci-r8a77470.c
> 
> diff --git a/drivers/usb/host/Kconfig b/drivers/usb/host/Kconfig
> index d809671..a474aa9 100644
> --- a/drivers/usb/host/Kconfig
> +++ b/drivers/usb/host/Kconfig
> @@ -237,6 +237,15 @@ config USB_EHCI_HCD_STI
>  	  Enable support for the on-chip EHCI controller found on
>  	  STMicroelectronics consumer electronics SoC's.
>  
> +config USB_EHCI_HCD_R8A77470
> +	tristate "Support for Renesas R8A77470 on-chip EHCI USB controller"
> +	depends on ARCH_R8A77470 && OF

COMPILE_TEST so that others can also test-build this to ensure that we
do not break anything over time?

thanks,

greg k-h

  reply	other threads:[~2019-04-01 13:28 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-04-01 12:53 [PATCH 00/12] Add USB2.0 support Biju Das
2019-04-01 12:53 ` [PATCH 01/12] dt-bindings: phy: rcar-gen2: Add r8a77470 support Biju Das
2019-04-01 12:53 ` [PATCH 02/12] phy: renesas: phy-rcar-gen2: Add support for r8a77470 Biju Das
2019-04-01 12:53 ` [PATCH 03/12] dt-bindings: usb: ehci-r8a77470 devicetree binding document Biju Das
2019-04-01 12:53   ` [03/12] " Biju Das
2019-04-06  6:06   ` [PATCH 03/12] " Rob Herring
2019-04-09  7:29     ` Biju Das
2019-04-09  7:29       ` [03/12] " Biju Das
2019-04-09 10:39       ` [PATCH 03/12] " Yoshihiro Shimoda
2019-04-09 10:39         ` [03/12] " Yoshihiro Shimoda
2019-04-01 12:53 ` [PATCH 04/12] usb: host: ehci-r8a77470: Add EHCI support for Renesas RZ/G1C devices Biju Das
2019-04-01 12:53   ` [04/12] " Biju Das
2019-04-01 13:28   ` Greg Kroah-Hartman [this message]
2019-04-01 13:28     ` Greg Kroah-Hartman
2019-04-01 15:36     ` [PATCH 04/12] " Biju Das
2019-04-01 15:36       ` [04/12] " Biju Das
2019-04-01 14:24   ` [PATCH 04/12] " Alan Stern
2019-04-01 14:24     ` [04/12] " Alan Stern
2019-04-01 15:17     ` [PATCH 04/12] " Biju Das
2019-04-01 15:17       ` [04/12] " Biju Das
2019-04-01 15:32       ` [PATCH 04/12] " Alan Stern
2019-04-01 15:32         ` [04/12] " Alan Stern
2019-04-02  4:21   ` [PATCH 04/12] " Yoshihiro Shimoda
2019-04-02  4:21     ` [04/12] " Yoshihiro Shimoda
2019-04-02 11:33     ` [PATCH 04/12] " Biju Das
2019-04-02 11:33       ` [04/12] " Biju Das
2019-04-01 12:53 ` [PATCH 05/12] ARM: shmobile: Enable USB [EO]HCI HCD PLATFORM support in shmobile_defconfig Biju Das
2019-04-01 12:53   ` Biju Das
2019-04-01 12:53 ` [PATCH 06/12] dt-bindings: usb: renesas_usbhs: Add support for r8a77470 Biju Das
2019-04-01 12:53 ` [PATCH 07/12] ARM: dts: r8a77470: Add USB PHY DT support Biju Das
2019-04-01 12:53 ` [PATCH 08/12] ARM: dts: iwg23s-sbc: Enable USB Phy[01] Biju Das
2019-04-01 12:53 ` [PATCH 09/12] ARM: dts: r8a77470: Add USB2.0 Host (EHCI/OHCI) device Biju Das
2019-04-01 12:53 ` [PATCH 10/12] ARM: dts: iwg23s-sbc: Enable USB USB2.0 Host Biju Das
2019-04-01 12:53 ` [PATCH 11/12] ARM: dts: r8a77470: Add HSUSB device nodes Biju Das
2019-04-01 12:53 ` [PATCH 12/12] ARM: dts: iwg23s-sbc: Enable HS-USB Biju Das

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=20190401132832.GA21551@kroah.com \
    --to=gregkh@linuxfoundation.org \
    --cc=AviFishman70@gmail.com \
    --cc=Chris.Paterson2@renesas.com \
    --cc=biju.das@bp.renesas.com \
    --cc=chunfeng.yun@mediatek.com \
    --cc=digetx@gmail.com \
    --cc=fabrizio.castro@bp.renesas.com \
    --cc=geert+renesas@glider.be \
    --cc=horms@verge.net.au \
    --cc=linux-renesas-soc@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=lkundrak@v3.sk \
    --cc=oferh@marvell.com \
    --cc=ran.wang_1@nxp.com \
    --cc=stern@rowland.harvard.edu \
    --cc=sunjianguo1@huawei.com \
    --cc=yoshihiro.shimoda.uh@renesas.com \
    /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.