* [PATCH v2 0/3] phy: rcar-gen3-usb[23]: Add support for r8a77965
@ 2018-03-05 5:32 Yoshihiro Shimoda
2018-03-05 5:32 ` [PATCH v2 1/3] dt-bindings: rcar-gen3-phy-usb2: Add bindings " Yoshihiro Shimoda
` (2 more replies)
0 siblings, 3 replies; 9+ messages in thread
From: Yoshihiro Shimoda @ 2018-03-05 5:32 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.
Changes from v1:
- Separate patch1 to dt-bindings and adding of_device_id table entry.
- Revise the subject for dt-bindings patch(es).
Yoshihiro Shimoda (3):
dt-bindings: rcar-gen3-phy-usb2: Add bindings for r8a77965
phy: rcar-gen3-usb2: Add support for r8a77965
dt-bindings: rcar-gen3-phy-usb3: Add bindings 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] 9+ messages in thread
* [PATCH v2 1/3] dt-bindings: rcar-gen3-phy-usb2: Add bindings for r8a77965
2018-03-05 5:32 [PATCH v2 0/3] phy: rcar-gen3-usb[23]: Add support for r8a77965 Yoshihiro Shimoda
@ 2018-03-05 5:32 ` Yoshihiro Shimoda
2018-03-05 8:18 ` Geert Uytterhoeven
2018-03-07 21:26 ` Rob Herring
2018-03-05 5:32 ` [PATCH v2 2/3] phy: rcar-gen3-usb2: Add support " Yoshihiro Shimoda
2018-03-05 5:32 ` [PATCH v2 3/3] dt-bindings: rcar-gen3-phy-usb3: Add bindings " Yoshihiro Shimoda
2 siblings, 2 replies; 9+ messages in thread
From: Yoshihiro Shimoda @ 2018-03-05 5:32 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).
Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
---
Documentation/devicetree/bindings/phy/rcar-gen3-phy-usb2.txt | 2 ++
1 file changed, 2 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.
--
1.9.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH v2 2/3] phy: rcar-gen3-usb2: Add support for r8a77965
2018-03-05 5:32 [PATCH v2 0/3] phy: rcar-gen3-usb[23]: Add support for r8a77965 Yoshihiro Shimoda
2018-03-05 5:32 ` [PATCH v2 1/3] dt-bindings: rcar-gen3-phy-usb2: Add bindings " Yoshihiro Shimoda
@ 2018-03-05 5:32 ` Yoshihiro Shimoda
2018-03-05 8:18 ` Geert Uytterhoeven
2018-03-05 5:32 ` [PATCH v2 3/3] dt-bindings: rcar-gen3-phy-usb3: Add bindings " Yoshihiro Shimoda
2 siblings, 1 reply; 9+ messages in thread
From: Yoshihiro Shimoda @ 2018-03-05 5:32 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>
---
drivers/phy/renesas/phy-rcar-gen3-usb2.c | 4 ++++
1 file changed, 4 insertions(+)
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] 9+ messages in thread
* [PATCH v2 3/3] dt-bindings: rcar-gen3-phy-usb3: Add bindings for r8a77965
2018-03-05 5:32 [PATCH v2 0/3] phy: rcar-gen3-usb[23]: Add support for r8a77965 Yoshihiro Shimoda
2018-03-05 5:32 ` [PATCH v2 1/3] dt-bindings: rcar-gen3-phy-usb2: Add bindings " Yoshihiro Shimoda
2018-03-05 5:32 ` [PATCH v2 2/3] phy: rcar-gen3-usb2: Add support " Yoshihiro Shimoda
@ 2018-03-05 5:32 ` Yoshihiro Shimoda
2018-03-05 8:20 ` Geert Uytterhoeven
2018-03-07 21:26 ` Rob Herring
2 siblings, 2 replies; 9+ messages in thread
From: Yoshihiro Shimoda @ 2018-03-05 5:32 UTC (permalink / raw)
To: kishon, robh+dt, mark.rutland
Cc: linux-kernel, devicetree, linux-renesas-soc, Yoshihiro Shimoda
This patch adds bindings 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] 9+ messages in thread
* Re: [PATCH v2 1/3] dt-bindings: rcar-gen3-phy-usb2: Add bindings for r8a77965
2018-03-05 5:32 ` [PATCH v2 1/3] dt-bindings: rcar-gen3-phy-usb2: Add bindings " Yoshihiro Shimoda
@ 2018-03-05 8:18 ` Geert Uytterhoeven
2018-03-07 21:26 ` Rob Herring
1 sibling, 0 replies; 9+ messages in thread
From: Geert Uytterhoeven @ 2018-03-05 8:18 UTC (permalink / raw)
To: Yoshihiro Shimoda
Cc: Kishon Vijay Abraham I, Rob Herring, Mark Rutland,
Linux Kernel Mailing List,
open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
Linux-Renesas
On Mon, Mar 5, 2018 at 6:32 AM, Yoshihiro Shimoda
<yoshihiro.shimoda.uh@renesas.com> wrote:
> This patch adds support for r8a77965 (R-Car M3-N).
>
> Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v2 2/3] phy: rcar-gen3-usb2: Add support for r8a77965
2018-03-05 5:32 ` [PATCH v2 2/3] phy: rcar-gen3-usb2: Add support " Yoshihiro Shimoda
@ 2018-03-05 8:18 ` Geert Uytterhoeven
0 siblings, 0 replies; 9+ messages in thread
From: Geert Uytterhoeven @ 2018-03-05 8:18 UTC (permalink / raw)
To: Yoshihiro Shimoda
Cc: Kishon Vijay Abraham I, Rob Herring, Mark Rutland,
Linux Kernel Mailing List,
open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
Linux-Renesas
On Mon, Mar 5, 2018 at 6:32 AM, Yoshihiro Shimoda
<yoshihiro.shimoda.uh@renesas.com> 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>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v2 3/3] dt-bindings: rcar-gen3-phy-usb3: Add bindings for r8a77965
2018-03-05 5:32 ` [PATCH v2 3/3] dt-bindings: rcar-gen3-phy-usb3: Add bindings " Yoshihiro Shimoda
@ 2018-03-05 8:20 ` Geert Uytterhoeven
2018-03-07 21:26 ` Rob Herring
1 sibling, 0 replies; 9+ messages in thread
From: Geert Uytterhoeven @ 2018-03-05 8:20 UTC (permalink / raw)
To: Yoshihiro Shimoda
Cc: Kishon Vijay Abraham I, Rob Herring, Mark Rutland,
Linux Kernel Mailing List,
open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
Linux-Renesas
On Mon, Mar 5, 2018 at 6:32 AM, Yoshihiro Shimoda
<yoshihiro.shimoda.uh@renesas.com> wrote:
> This patch adds bindings for r8a77965 (R-Car M3-N).
>
> Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v2 1/3] dt-bindings: rcar-gen3-phy-usb2: Add bindings for r8a77965
2018-03-05 5:32 ` [PATCH v2 1/3] dt-bindings: rcar-gen3-phy-usb2: Add bindings " Yoshihiro Shimoda
2018-03-05 8:18 ` Geert Uytterhoeven
@ 2018-03-07 21:26 ` Rob Herring
1 sibling, 0 replies; 9+ messages in thread
From: Rob Herring @ 2018-03-07 21:26 UTC (permalink / raw)
To: Yoshihiro Shimoda
Cc: kishon, mark.rutland, linux-kernel, devicetree, linux-renesas-soc
On Mon, Mar 05, 2018 at 02:32:43PM +0900, Yoshihiro Shimoda wrote:
> This patch adds support for r8a77965 (R-Car M3-N).
>
> Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
> ---
> Documentation/devicetree/bindings/phy/rcar-gen3-phy-usb2.txt | 2 ++
> 1 file changed, 2 insertions(+)
Reviewed-by: Rob Herring <robh@kernel.org>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v2 3/3] dt-bindings: rcar-gen3-phy-usb3: Add bindings for r8a77965
2018-03-05 5:32 ` [PATCH v2 3/3] dt-bindings: rcar-gen3-phy-usb3: Add bindings " Yoshihiro Shimoda
2018-03-05 8:20 ` Geert Uytterhoeven
@ 2018-03-07 21:26 ` Rob Herring
1 sibling, 0 replies; 9+ messages in thread
From: Rob Herring @ 2018-03-07 21:26 UTC (permalink / raw)
To: Yoshihiro Shimoda
Cc: kishon, mark.rutland, linux-kernel, devicetree, linux-renesas-soc
On Mon, Mar 05, 2018 at 02:32:45PM +0900, Yoshihiro Shimoda wrote:
> This patch adds bindings 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(+)
Reviewed-by: Rob Herring <robh@kernel.org>
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2018-03-07 21:26 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-03-05 5:32 [PATCH v2 0/3] phy: rcar-gen3-usb[23]: Add support for r8a77965 Yoshihiro Shimoda
2018-03-05 5:32 ` [PATCH v2 1/3] dt-bindings: rcar-gen3-phy-usb2: Add bindings " Yoshihiro Shimoda
2018-03-05 8:18 ` Geert Uytterhoeven
2018-03-07 21:26 ` Rob Herring
2018-03-05 5:32 ` [PATCH v2 2/3] phy: rcar-gen3-usb2: Add support " Yoshihiro Shimoda
2018-03-05 8:18 ` Geert Uytterhoeven
2018-03-05 5:32 ` [PATCH v2 3/3] dt-bindings: rcar-gen3-phy-usb3: Add bindings " Yoshihiro Shimoda
2018-03-05 8:20 ` Geert Uytterhoeven
2018-03-07 21:26 ` Rob Herring
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).