devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] phy rcar-gen3-usb[23]: Add support for r8a77965
@ 2018-02-27  5:52 Yoshihiro Shimoda
  2018-02-27  5:52 ` [PATCH 1/2] phy: rcar-gen3-usb2: " Yoshihiro Shimoda
  2018-02-27  5:52 ` [PATCH 2/2] phy: rcar-gen3-usb3: Add binding " Yoshihiro Shimoda
  0 siblings, 2 replies; 7+ messages in thread
From: Yoshihiro Shimoda @ 2018-02-27  5:52 UTC (permalink / raw)
  To: kishon, robh+dt, mark.rutland
  Cc: linux-kernel, devicetree, linux-renesas-soc, Yoshihiro Shimoda

This patch set adds R-Car Gen3 USB 2.0 and 3.0 support for R8A77965.


Yoshihiro Shimoda (2):
  phy: rcar-gen3-usb2: Add support for r8a77965
  phy: rcar-gen3-usb3: Add binding for r8a77965

 Documentation/devicetree/bindings/phy/rcar-gen3-phy-usb2.txt | 2 ++
 Documentation/devicetree/bindings/phy/rcar-gen3-phy-usb3.txt | 2 ++
 drivers/phy/renesas/phy-rcar-gen3-usb2.c                     | 4 ++++
 3 files changed, 8 insertions(+)

-- 
1.9.1

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [PATCH 1/2] phy: rcar-gen3-usb2: Add support for r8a77965
  2018-02-27  5:52 [PATCH 0/2] phy rcar-gen3-usb[23]: Add support for r8a77965 Yoshihiro Shimoda
@ 2018-02-27  5:52 ` Yoshihiro Shimoda
  2018-03-02  8:15   ` Kishon Vijay Abraham I
  2018-02-27  5:52 ` [PATCH 2/2] phy: rcar-gen3-usb3: Add binding " Yoshihiro Shimoda
  1 sibling, 1 reply; 7+ messages in thread
From: Yoshihiro Shimoda @ 2018-02-27  5:52 UTC (permalink / raw)
  To: kishon, robh+dt, mark.rutland
  Cc: linux-kernel, devicetree, linux-renesas-soc, Yoshihiro Shimoda

This patch adds support for r8a77965 (R-Car M3-N). This SoC has
dedicated pins.

Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
---
 Documentation/devicetree/bindings/phy/rcar-gen3-phy-usb2.txt | 2 ++
 drivers/phy/renesas/phy-rcar-gen3-usb2.c                     | 4 ++++
 2 files changed, 6 insertions(+)

diff --git a/Documentation/devicetree/bindings/phy/rcar-gen3-phy-usb2.txt b/Documentation/devicetree/bindings/phy/rcar-gen3-phy-usb2.txt
index 99b651b..dbd137c 100644
--- a/Documentation/devicetree/bindings/phy/rcar-gen3-phy-usb2.txt
+++ b/Documentation/devicetree/bindings/phy/rcar-gen3-phy-usb2.txt
@@ -8,6 +8,8 @@ Required properties:
 	      SoC.
 	      "renesas,usb2-phy-r8a7796" if the device is a part of an R8A7796
 	      SoC.
+	      "renesas,usb2-phy-r8a77965" if the device is a part of an
+	      R8A77965 SoC.
 	      "renesas,usb2-phy-r8a77995" if the device is a part of an
 	      R8A77995 SoC.
 	      "renesas,rcar-gen3-usb2-phy" for a generic R-Car Gen3 compatible device.
diff --git a/drivers/phy/renesas/phy-rcar-gen3-usb2.c b/drivers/phy/renesas/phy-rcar-gen3-usb2.c
index 9c90e7d..fb8f05e 100644
--- a/drivers/phy/renesas/phy-rcar-gen3-usb2.c
+++ b/drivers/phy/renesas/phy-rcar-gen3-usb2.c
@@ -397,6 +397,10 @@ static irqreturn_t rcar_gen3_phy_usb2_irq(int irq, void *_ch)
 		.data = (void *)RCAR_GEN3_PHY_HAS_DEDICATED_PINS,
 	},
 	{
+		.compatible = "renesas,usb2-phy-r8a77965",
+		.data = (void *)RCAR_GEN3_PHY_HAS_DEDICATED_PINS,
+	},
+	{
 		.compatible = "renesas,rcar-gen3-usb2-phy",
 	},
 	{ }
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH 2/2] phy: rcar-gen3-usb3: Add binding for r8a77965
  2018-02-27  5:52 [PATCH 0/2] phy rcar-gen3-usb[23]: Add support for r8a77965 Yoshihiro Shimoda
  2018-02-27  5:52 ` [PATCH 1/2] phy: rcar-gen3-usb2: " Yoshihiro Shimoda
@ 2018-02-27  5:52 ` Yoshihiro Shimoda
  2018-03-02  8:14   ` Kishon Vijay Abraham I
  1 sibling, 1 reply; 7+ messages in thread
From: Yoshihiro Shimoda @ 2018-02-27  5:52 UTC (permalink / raw)
  To: kishon, robh+dt, mark.rutland
  Cc: linux-kernel, devicetree, linux-renesas-soc, Yoshihiro Shimoda

This patch adds binding for r8a77965 (R-Car M3-N).

Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
---
 Documentation/devicetree/bindings/phy/rcar-gen3-phy-usb3.txt | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Documentation/devicetree/bindings/phy/rcar-gen3-phy-usb3.txt b/Documentation/devicetree/bindings/phy/rcar-gen3-phy-usb3.txt
index f94cea4..47dd296 100644
--- a/Documentation/devicetree/bindings/phy/rcar-gen3-phy-usb3.txt
+++ b/Documentation/devicetree/bindings/phy/rcar-gen3-phy-usb3.txt
@@ -11,6 +11,8 @@ Required properties:
 	      SoC.
 	      "renesas,r8a7796-usb3-phy" if the device is a part of an R8A7796
 	      SoC.
+	      "renesas,r8a77965-usb3-phy" if the device is a part of an
+	      R8A77965 SoC.
 	      "renesas,rcar-gen3-usb3-phy" for a generic R-Car Gen3 compatible
 	      device.
 
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH 2/2] phy: rcar-gen3-usb3: Add binding for r8a77965
  2018-02-27  5:52 ` [PATCH 2/2] phy: rcar-gen3-usb3: Add binding " Yoshihiro Shimoda
@ 2018-03-02  8:14   ` Kishon Vijay Abraham I
  2018-03-05  5:19     ` Yoshihiro Shimoda
  0 siblings, 1 reply; 7+ messages in thread
From: Kishon Vijay Abraham I @ 2018-03-02  8:14 UTC (permalink / raw)
  To: Yoshihiro Shimoda, robh+dt, mark.rutland
  Cc: linux-kernel, devicetree, linux-renesas-soc



On Tuesday 27 February 2018 11:22 AM, Yoshihiro Shimoda wrote:
> This patch adds binding for r8a77965 (R-Car M3-N).

$subject should be  dt-bindings: rcar-gen3-phy-usb3: Add binding for r8a77965

Thanks
Kishon
> 
> Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
> ---
>  Documentation/devicetree/bindings/phy/rcar-gen3-phy-usb3.txt | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/Documentation/devicetree/bindings/phy/rcar-gen3-phy-usb3.txt b/Documentation/devicetree/bindings/phy/rcar-gen3-phy-usb3.txt
> index f94cea4..47dd296 100644
> --- a/Documentation/devicetree/bindings/phy/rcar-gen3-phy-usb3.txt
> +++ b/Documentation/devicetree/bindings/phy/rcar-gen3-phy-usb3.txt
> @@ -11,6 +11,8 @@ Required properties:
>  	      SoC.
>  	      "renesas,r8a7796-usb3-phy" if the device is a part of an R8A7796
>  	      SoC.
> +	      "renesas,r8a77965-usb3-phy" if the device is a part of an
> +	      R8A77965 SoC.
>  	      "renesas,rcar-gen3-usb3-phy" for a generic R-Car Gen3 compatible
>  	      device.
>  
> 

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH 1/2] phy: rcar-gen3-usb2: Add support for r8a77965
  2018-02-27  5:52 ` [PATCH 1/2] phy: rcar-gen3-usb2: " Yoshihiro Shimoda
@ 2018-03-02  8:15   ` Kishon Vijay Abraham I
  2018-03-05  5:18     ` Yoshihiro Shimoda
  0 siblings, 1 reply; 7+ messages in thread
From: Kishon Vijay Abraham I @ 2018-03-02  8:15 UTC (permalink / raw)
  To: Yoshihiro Shimoda, robh+dt, mark.rutland
  Cc: linux-kernel, devicetree, linux-renesas-soc



On Tuesday 27 February 2018 11:22 AM, Yoshihiro Shimoda wrote:
> This patch adds support for r8a77965 (R-Car M3-N). This SoC has
> dedicated pins.
> 
> Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
> ---
>  Documentation/devicetree/bindings/phy/rcar-gen3-phy-usb2.txt | 2 ++
>  drivers/phy/renesas/phy-rcar-gen3-usb2.c                     | 4 ++++
>  2 files changed, 6 insertions(+)
> 
> diff --git a/Documentation/devicetree/bindings/phy/rcar-gen3-phy-usb2.txt b/Documentation/devicetree/bindings/phy/rcar-gen3-phy-usb2.txt
> index 99b651b..dbd137c 100644
> --- a/Documentation/devicetree/bindings/phy/rcar-gen3-phy-usb2.txt
> +++ b/Documentation/devicetree/bindings/phy/rcar-gen3-phy-usb2.txt
> @@ -8,6 +8,8 @@ Required properties:
>  	      SoC.
>  	      "renesas,usb2-phy-r8a7796" if the device is a part of an R8A7796
>  	      SoC.
> +	      "renesas,usb2-phy-r8a77965" if the device is a part of an
> +	      R8A77965 SoC.

have dt-binding Documentation as a separate patch.

Thanks
Kishon

^ permalink raw reply	[flat|nested] 7+ messages in thread

* RE: [PATCH 1/2] phy: rcar-gen3-usb2: Add support for r8a77965
  2018-03-02  8:15   ` Kishon Vijay Abraham I
@ 2018-03-05  5:18     ` Yoshihiro Shimoda
  0 siblings, 0 replies; 7+ messages in thread
From: Yoshihiro Shimoda @ 2018-03-05  5:18 UTC (permalink / raw)
  To: Kishon Vijay Abraham I, robh+dt, mark.rutland
  Cc: linux-kernel, devicetree, linux-renesas-soc

Hi,

> From: Kishon Vijay Abraham I, Sent: Friday, March 2, 2018 5:15 PM
> 
> On Tuesday 27 February 2018 11:22 AM, Yoshihiro Shimoda wrote:
> > This patch adds support for r8a77965 (R-Car M3-N). This SoC has
> > dedicated pins.
> >
> > Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
> > ---
> >  Documentation/devicetree/bindings/phy/rcar-gen3-phy-usb2.txt | 2 ++
> >  drivers/phy/renesas/phy-rcar-gen3-usb2.c                     | 4 ++++
> >  2 files changed, 6 insertions(+)
> >
> > diff --git a/Documentation/devicetree/bindings/phy/rcar-gen3-phy-usb2.txt
> b/Documentation/devicetree/bindings/phy/rcar-gen3-phy-usb2.txt
> > index 99b651b..dbd137c 100644
> > --- a/Documentation/devicetree/bindings/phy/rcar-gen3-phy-usb2.txt
> > +++ b/Documentation/devicetree/bindings/phy/rcar-gen3-phy-usb2.txt
> > @@ -8,6 +8,8 @@ Required properties:
> >  	      SoC.
> >  	      "renesas,usb2-phy-r8a7796" if the device is a part of an R8A7796
> >  	      SoC.
> > +	      "renesas,usb2-phy-r8a77965" if the device is a part of an
> > +	      R8A77965 SoC.
> 
> have dt-binding Documentation as a separate patch.

I will fix this in v2.

Best regards,
Yoshihiro Shimoda

> Thanks
> Kishon

^ permalink raw reply	[flat|nested] 7+ messages in thread

* RE: [PATCH 2/2] phy: rcar-gen3-usb3: Add binding for r8a77965
  2018-03-02  8:14   ` Kishon Vijay Abraham I
@ 2018-03-05  5:19     ` Yoshihiro Shimoda
  0 siblings, 0 replies; 7+ messages in thread
From: Yoshihiro Shimoda @ 2018-03-05  5:19 UTC (permalink / raw)
  To: Kishon Vijay Abraham I, robh+dt, mark.rutland
  Cc: linux-kernel, devicetree, linux-renesas-soc

Hi,

> From: Kishon Vijay Abraham I, Sent: Friday, March 2, 2018 5:15 PM
> 
> On Tuesday 27 February 2018 11:22 AM, Yoshihiro Shimoda wrote:
> > This patch adds binding for r8a77965 (R-Car M3-N).
> 
> $subject should be  dt-bindings: rcar-gen3-phy-usb3: Add binding for r8a77965

I will revise this in v2.

Best regards,
Yoshihiro Shimoda

> Thanks
> Kishon

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2018-03-05  5:19 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-27  5:52 [PATCH 0/2] phy rcar-gen3-usb[23]: Add support for r8a77965 Yoshihiro Shimoda
2018-02-27  5:52 ` [PATCH 1/2] phy: rcar-gen3-usb2: " Yoshihiro Shimoda
2018-03-02  8:15   ` Kishon Vijay Abraham I
2018-03-05  5:18     ` Yoshihiro Shimoda
2018-02-27  5:52 ` [PATCH 2/2] phy: rcar-gen3-usb3: Add binding " Yoshihiro Shimoda
2018-03-02  8:14   ` Kishon Vijay Abraham I
2018-03-05  5:19     ` Yoshihiro Shimoda

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).