* [PATCH 0/3] ARM: shmobile: r8a779x: use fallback usbhs compatibility string @ 2015-12-18 2:11 Simon Horman 2015-12-18 2:11 ` [PATCH 1/3] ARM: shmobile: r8a7790: " Simon Horman ` (3 more replies) 0 siblings, 4 replies; 13+ messages in thread From: Simon Horman @ 2015-12-18 2:11 UTC (permalink / raw) To: linux-arm-kernel Hi, this short series makes use of the recently added fallback usbhs compatibility string in the r8a779[014] device trees. Based on renesas-devel-20151218-v4.4-rc5. Simon Horman (3): ARM: shmobile: r8a7790: use fallback usbhs compatibility string ARM: shmobile: r8a7791: use fallback usbhs compatibility string ARM: shmobile: r8a7794: use fallback usbhs compatibility string arch/arm/boot/dts/r8a7790.dtsi | 2 +- arch/arm/boot/dts/r8a7791.dtsi | 2 +- arch/arm/boot/dts/r8a7794.dtsi | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) -- 2.1.4 ^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH 1/3] ARM: shmobile: r8a7790: use fallback usbhs compatibility string 2015-12-18 2:11 [PATCH 0/3] ARM: shmobile: r8a779x: use fallback usbhs compatibility string Simon Horman @ 2015-12-18 2:11 ` Simon Horman 2015-12-18 10:15 ` Geert Uytterhoeven 2015-12-18 2:11 ` [PATCH 2/3] ARM: shmobile: r8a7791: " Simon Horman ` (2 subsequent siblings) 3 siblings, 1 reply; 13+ messages in thread From: Simon Horman @ 2015-12-18 2:11 UTC (permalink / raw) To: linux-arm-kernel Use recently added fallback compatibility string in r8a7790 device tree. Signed-off-by: Simon Horman <horms+renesas@verge.net.au> --- arch/arm/boot/dts/r8a7790.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/boot/dts/r8a7790.dtsi b/arch/arm/boot/dts/r8a7790.dtsi index 7dfd393bfc7e..d5f79ed17caf 100644 --- a/arch/arm/boot/dts/r8a7790.dtsi +++ b/arch/arm/boot/dts/r8a7790.dtsi @@ -746,7 +746,7 @@ }; hsusb: usb@e6590000 { - compatible = "renesas,usbhs-r8a7790"; + compatible = "renesas,usbhs-r8a7790", "renesas,usbhs"; reg = <0 0xe6590000 0 0x100>; interrupts = <0 107 IRQ_TYPE_LEVEL_HIGH>; clocks = <&mstp7_clks R8A7790_CLK_HSUSB>; -- 2.1.4 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH 1/3] ARM: shmobile: r8a7790: use fallback usbhs compatibility string 2015-12-18 2:11 ` [PATCH 1/3] ARM: shmobile: r8a7790: " Simon Horman @ 2015-12-18 10:15 ` Geert Uytterhoeven 0 siblings, 0 replies; 13+ messages in thread From: Geert Uytterhoeven @ 2015-12-18 10:15 UTC (permalink / raw) To: linux-arm-kernel On Fri, Dec 18, 2015 at 3:11 AM, Simon Horman <horms+renesas@verge.net.au> wrote: > --- a/arch/arm/boot/dts/r8a7790.dtsi > +++ b/arch/arm/boot/dts/r8a7790.dtsi > @@ -746,7 +746,7 @@ > }; > > hsusb: usb@e6590000 { > - compatible = "renesas,usbhs-r8a7790"; > + compatible = "renesas,usbhs-r8a7790", "renesas,usbhs"; "renesas,rcar-gen2-usbhs", not "renesas,usbhs". -- 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] 13+ messages in thread
* [PATCH 2/3] ARM: shmobile: r8a7791: use fallback usbhs compatibility string 2015-12-18 2:11 [PATCH 0/3] ARM: shmobile: r8a779x: use fallback usbhs compatibility string Simon Horman 2015-12-18 2:11 ` [PATCH 1/3] ARM: shmobile: r8a7790: " Simon Horman @ 2015-12-18 2:11 ` Simon Horman 2015-12-18 10:15 ` Geert Uytterhoeven 2015-12-18 2:11 ` [PATCH 3/3] ARM: shmobile: r8a7794: " Simon Horman 2015-12-18 2:42 ` [PATCH 0/3] ARM: shmobile: r8a779x: use fallback pcie " Simon Horman 3 siblings, 1 reply; 13+ messages in thread From: Simon Horman @ 2015-12-18 2:11 UTC (permalink / raw) To: linux-arm-kernel Use recently added fallback compatibility string in r8a7791 device tree. Signed-off-by: Simon Horman <horms+renesas@verge.net.au> --- arch/arm/boot/dts/r8a7791.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/boot/dts/r8a7791.dtsi b/arch/arm/boot/dts/r8a7791.dtsi index 2a369ddcb6fd..e2ffbfae6c5c 100644 --- a/arch/arm/boot/dts/r8a7791.dtsi +++ b/arch/arm/boot/dts/r8a7791.dtsi @@ -822,7 +822,7 @@ }; hsusb: usb@e6590000 { - compatible = "renesas,usbhs-r8a7791"; + compatible = "renesas,usbhs-r8a7791", "renesas,usbhs"; reg = <0 0xe6590000 0 0x100>; interrupts = <0 107 IRQ_TYPE_LEVEL_HIGH>; clocks = <&mstp7_clks R8A7791_CLK_HSUSB>; -- 2.1.4 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH 2/3] ARM: shmobile: r8a7791: use fallback usbhs compatibility string 2015-12-18 2:11 ` [PATCH 2/3] ARM: shmobile: r8a7791: " Simon Horman @ 2015-12-18 10:15 ` Geert Uytterhoeven 0 siblings, 0 replies; 13+ messages in thread From: Geert Uytterhoeven @ 2015-12-18 10:15 UTC (permalink / raw) To: linux-arm-kernel On Fri, Dec 18, 2015 at 3:11 AM, Simon Horman <horms+renesas@verge.net.au> wrote: > Use recently added fallback compatibility string in r8a7791 device tree. > > Signed-off-by: Simon Horman <horms+renesas@verge.net.au> > --- > arch/arm/boot/dts/r8a7791.dtsi | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/arch/arm/boot/dts/r8a7791.dtsi b/arch/arm/boot/dts/r8a7791.dtsi > index 2a369ddcb6fd..e2ffbfae6c5c 100644 > --- a/arch/arm/boot/dts/r8a7791.dtsi > +++ b/arch/arm/boot/dts/r8a7791.dtsi > @@ -822,7 +822,7 @@ > }; > > hsusb: usb@e6590000 { > - compatible = "renesas,usbhs-r8a7791"; > + compatible = "renesas,usbhs-r8a7791", "renesas,usbhs"; "renesas,rcar-gen2-usbhs", not "renesas,usbhs". 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] 13+ messages in thread
* [PATCH 3/3] ARM: shmobile: r8a7794: use fallback usbhs compatibility string 2015-12-18 2:11 [PATCH 0/3] ARM: shmobile: r8a779x: use fallback usbhs compatibility string Simon Horman 2015-12-18 2:11 ` [PATCH 1/3] ARM: shmobile: r8a7790: " Simon Horman 2015-12-18 2:11 ` [PATCH 2/3] ARM: shmobile: r8a7791: " Simon Horman @ 2015-12-18 2:11 ` Simon Horman 2015-12-18 10:16 ` Geert Uytterhoeven 2015-12-18 2:42 ` [PATCH 0/3] ARM: shmobile: r8a779x: use fallback pcie " Simon Horman 3 siblings, 1 reply; 13+ messages in thread From: Simon Horman @ 2015-12-18 2:11 UTC (permalink / raw) To: linux-arm-kernel Use recently added fallback compatibility string in r8a7794 device tree. Signed-off-by: Simon Horman <horms+renesas@verge.net.au> --- arch/arm/boot/dts/r8a7794.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/boot/dts/r8a7794.dtsi b/arch/arm/boot/dts/r8a7794.dtsi index 6c78f1fae90f..e0b2e97da598 100644 --- a/arch/arm/boot/dts/r8a7794.dtsi +++ b/arch/arm/boot/dts/r8a7794.dtsi @@ -724,7 +724,7 @@ }; hsusb: usb@e6590000 { - compatible = "renesas,usbhs-r8a7794"; + compatible = "renesas,usbhs-r8a7794", "renesas,usbhs"; reg = <0 0xe6590000 0 0x100>; interrupts = <0 107 IRQ_TYPE_LEVEL_HIGH>; clocks = <&mstp7_clks R8A7794_CLK_HSUSB>; -- 2.1.4 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH 3/3] ARM: shmobile: r8a7794: use fallback usbhs compatibility string 2015-12-18 2:11 ` [PATCH 3/3] ARM: shmobile: r8a7794: " Simon Horman @ 2015-12-18 10:16 ` Geert Uytterhoeven 2015-12-21 4:34 ` Simon Horman 0 siblings, 1 reply; 13+ messages in thread From: Geert Uytterhoeven @ 2015-12-18 10:16 UTC (permalink / raw) To: linux-arm-kernel On Fri, Dec 18, 2015 at 3:11 AM, Simon Horman <horms+renesas@verge.net.au> wrote: > --- a/arch/arm/boot/dts/r8a7794.dtsi > +++ b/arch/arm/boot/dts/r8a7794.dtsi > @@ -724,7 +724,7 @@ > }; > > hsusb: usb@e6590000 { > - compatible = "renesas,usbhs-r8a7794"; > + compatible = "renesas,usbhs-r8a7794", "renesas,usbhs"; "renesas,rcar-gen2-usbhs", not "renesas,usbhs". (no complaints from checkpatch.pl?) 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] 13+ messages in thread
* Re: [PATCH 3/3] ARM: shmobile: r8a7794: use fallback usbhs compatibility string 2015-12-18 10:16 ` Geert Uytterhoeven @ 2015-12-21 4:34 ` Simon Horman 0 siblings, 0 replies; 13+ messages in thread From: Simon Horman @ 2015-12-21 4:34 UTC (permalink / raw) To: linux-arm-kernel On Fri, Dec 18, 2015 at 11:16:11AM +0100, Geert Uytterhoeven wrote: > On Fri, Dec 18, 2015 at 3:11 AM, Simon Horman > <horms+renesas@verge.net.au> wrote: > > --- a/arch/arm/boot/dts/r8a7794.dtsi > > +++ b/arch/arm/boot/dts/r8a7794.dtsi > > @@ -724,7 +724,7 @@ > > }; > > > > hsusb: usb@e6590000 { > > - compatible = "renesas,usbhs-r8a7794"; > > + compatible = "renesas,usbhs-r8a7794", "renesas,usbhs"; > > "renesas,rcar-gen2-usbhs", not "renesas,usbhs". > > (no complaints from checkpatch.pl?) Silly me, I will fix that. ^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH 0/3] ARM: shmobile: r8a779x: use fallback pcie compatibility string 2015-12-18 2:11 [PATCH 0/3] ARM: shmobile: r8a779x: use fallback usbhs compatibility string Simon Horman ` (2 preceding siblings ...) 2015-12-18 2:11 ` [PATCH 3/3] ARM: shmobile: r8a7794: " Simon Horman @ 2015-12-18 2:42 ` Simon Horman 2015-12-18 2:42 ` [PATCH 1/3] ARM: shmobile: r8a7790: use fallback pci " Simon Horman ` (3 more replies) 3 siblings, 4 replies; 13+ messages in thread From: Simon Horman @ 2015-12-18 2:42 UTC (permalink / raw) To: linux-arm-kernel Hi, this short series makes use of the recently added fallback pci compatibility string in the r8a779[014] device trees. Based on renesas-devel-20151218-v4.4-rc5. Simon Horman (3): ARM: shmobile: r8a7790: use fallback pci compatibility string ARM: shmobile: r8a7791: use fallback pci compatibility string ARM: shmobile: r8a7794: use fallback pci compatibility string arch/arm/boot/dts/r8a7790.dtsi | 6 +++--- arch/arm/boot/dts/r8a7791.dtsi | 4 ++-- arch/arm/boot/dts/r8a7794.dtsi | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) -- 2.1.4 ^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH 1/3] ARM: shmobile: r8a7790: use fallback pci compatibility string 2015-12-18 2:42 ` [PATCH 0/3] ARM: shmobile: r8a779x: use fallback pcie " Simon Horman @ 2015-12-18 2:42 ` Simon Horman 2015-12-18 2:42 ` [PATCH 2/3] ARM: shmobile: r8a7791: " Simon Horman ` (2 subsequent siblings) 3 siblings, 0 replies; 13+ messages in thread From: Simon Horman @ 2015-12-18 2:42 UTC (permalink / raw) To: linux-arm-kernel Use recently added fallback compatibility string in r8a7790 device tree. Signed-off-by: Simon Horman <horms+renesas@verge.net.au> --- arch/arm/boot/dts/r8a7790.dtsi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/arm/boot/dts/r8a7790.dtsi b/arch/arm/boot/dts/r8a7790.dtsi index 7dfd393bfc7e..8f2e073ae382 100644 --- a/arch/arm/boot/dts/r8a7790.dtsi +++ b/arch/arm/boot/dts/r8a7790.dtsi @@ -1476,7 +1476,7 @@ }; pci0: pci@ee090000 { - compatible = "renesas,pci-r8a7790"; + compatible = "renesas,pci-r8a7790", "renesas,pci-rcar-gen2"; device_type = "pci"; reg = <0 0xee090000 0 0xc00>, <0 0xee080000 0 0x1100>; @@ -1511,7 +1511,7 @@ }; pci1: pci@ee0b0000 { - compatible = "renesas,pci-r8a7790"; + compatible = "renesas,pci-r8a7790", "renesas,pci-rcar-gen2"; device_type = "pci"; reg = <0 0xee0b0000 0 0xc00>, <0 0xee0a0000 0 0x1100>; @@ -1532,7 +1532,7 @@ }; pci2: pci@ee0d0000 { - compatible = "renesas,pci-r8a7790"; + compatible = "renesas,pci-r8a7790", "renesas,pci-rcar-gen2"; device_type = "pci"; clocks = <&mstp7_clks R8A7790_CLK_EHCI>; power-domains = <&cpg_clocks>; -- 2.1.4 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH 2/3] ARM: shmobile: r8a7791: use fallback pci compatibility string 2015-12-18 2:42 ` [PATCH 0/3] ARM: shmobile: r8a779x: use fallback pcie " Simon Horman 2015-12-18 2:42 ` [PATCH 1/3] ARM: shmobile: r8a7790: use fallback pci " Simon Horman @ 2015-12-18 2:42 ` Simon Horman 2015-12-18 2:42 ` [PATCH 3/3] ARM: shmobile: r8a7794: " Simon Horman 2016-02-15 1:55 ` [PATCH 0/3] ARM: shmobile: r8a779x: use fallback pcie " Simon Horman 3 siblings, 0 replies; 13+ messages in thread From: Simon Horman @ 2015-12-18 2:42 UTC (permalink / raw) To: linux-arm-kernel Use recently added fallback compatibility string in r8a7791 device tree. Signed-off-by: Simon Horman <horms+renesas@verge.net.au> --- arch/arm/boot/dts/r8a7791.dtsi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/boot/dts/r8a7791.dtsi b/arch/arm/boot/dts/r8a7791.dtsi index 2a369ddcb6fd..d38fb239f286 100644 --- a/arch/arm/boot/dts/r8a7791.dtsi +++ b/arch/arm/boot/dts/r8a7791.dtsi @@ -1494,7 +1494,7 @@ }; pci0: pci@ee090000 { - compatible = "renesas,pci-r8a7791"; + compatible = "renesas,pci-r8a7791", "renesas,pci-rcar-gen2"; device_type = "pci"; reg = <0 0xee090000 0 0xc00>, <0 0xee080000 0 0x1100>; @@ -1529,7 +1529,7 @@ }; pci1: pci@ee0d0000 { - compatible = "renesas,pci-r8a7791"; + compatible = "renesas,pci-r8a7791", "renesas,pci-rcar-gen2"; device_type = "pci"; reg = <0 0xee0d0000 0 0xc00>, <0 0xee0c0000 0 0x1100>; -- 2.1.4 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH 3/3] ARM: shmobile: r8a7794: use fallback pci compatibility string 2015-12-18 2:42 ` [PATCH 0/3] ARM: shmobile: r8a779x: use fallback pcie " Simon Horman 2015-12-18 2:42 ` [PATCH 1/3] ARM: shmobile: r8a7790: use fallback pci " Simon Horman 2015-12-18 2:42 ` [PATCH 2/3] ARM: shmobile: r8a7791: " Simon Horman @ 2015-12-18 2:42 ` Simon Horman 2016-02-15 1:55 ` [PATCH 0/3] ARM: shmobile: r8a779x: use fallback pcie " Simon Horman 3 siblings, 0 replies; 13+ messages in thread From: Simon Horman @ 2015-12-18 2:42 UTC (permalink / raw) To: linux-arm-kernel Use recently added fallback compatibility string in r8a7794 device tree. Signed-off-by: Simon Horman <horms+renesas@verge.net.au> --- arch/arm/boot/dts/r8a7794.dtsi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/boot/dts/r8a7794.dtsi b/arch/arm/boot/dts/r8a7794.dtsi index 6c78f1fae90f..94ef03ad9cc3 100644 --- a/arch/arm/boot/dts/r8a7794.dtsi +++ b/arch/arm/boot/dts/r8a7794.dtsi @@ -654,7 +654,7 @@ }; pci0: pci@ee090000 { - compatible = "renesas,pci-r8a7794"; + compatible = "renesas,pci-r8a7794", "renesas,pci-rcar-gen2"; device_type = "pci"; reg = <0 0xee090000 0 0xc00>, <0 0xee080000 0 0x1100>; @@ -689,7 +689,7 @@ }; pci1: pci@ee0d0000 { - compatible = "renesas,pci-r8a7794"; + compatible = "renesas,pci-r8a7794", "renesas,pci-rcar-gen2"; device_type = "pci"; reg = <0 0xee0d0000 0 0xc00>, <0 0xee0c0000 0 0x1100>; -- 2.1.4 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH 0/3] ARM: shmobile: r8a779x: use fallback pcie compatibility string 2015-12-18 2:42 ` [PATCH 0/3] ARM: shmobile: r8a779x: use fallback pcie " Simon Horman ` (2 preceding siblings ...) 2015-12-18 2:42 ` [PATCH 3/3] ARM: shmobile: r8a7794: " Simon Horman @ 2016-02-15 1:55 ` Simon Horman 3 siblings, 0 replies; 13+ messages in thread From: Simon Horman @ 2016-02-15 1:55 UTC (permalink / raw) To: linux-arm-kernel [Cc linux-renesas-soc@vger.kernel.org] On Fri, Dec 18, 2015 at 11:42:36AM +0900, Simon Horman wrote: > Hi, > > this short series makes use of the recently added fallback pci > compatibility string in the r8a779[014] device trees. > > Based on renesas-devel-20151218-v4.4-rc5. > > Simon Horman (3): > ARM: shmobile: r8a7790: use fallback pci compatibility string > ARM: shmobile: r8a7791: use fallback pci compatibility string > ARM: shmobile: r8a7794: use fallback pci compatibility string > > arch/arm/boot/dts/r8a7790.dtsi | 6 +++--- > arch/arm/boot/dts/r8a7791.dtsi | 4 ++-- > arch/arm/boot/dts/r8a7794.dtsi | 4 ++-- > 3 files changed, 7 insertions(+), 7 deletions(-) I have queued these up for v4.6 ^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2016-02-15 1:55 UTC | newest] Thread overview: 13+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2015-12-18 2:11 [PATCH 0/3] ARM: shmobile: r8a779x: use fallback usbhs compatibility string Simon Horman 2015-12-18 2:11 ` [PATCH 1/3] ARM: shmobile: r8a7790: " Simon Horman 2015-12-18 10:15 ` Geert Uytterhoeven 2015-12-18 2:11 ` [PATCH 2/3] ARM: shmobile: r8a7791: " Simon Horman 2015-12-18 10:15 ` Geert Uytterhoeven 2015-12-18 2:11 ` [PATCH 3/3] ARM: shmobile: r8a7794: " Simon Horman 2015-12-18 10:16 ` Geert Uytterhoeven 2015-12-21 4:34 ` Simon Horman 2015-12-18 2:42 ` [PATCH 0/3] ARM: shmobile: r8a779x: use fallback pcie " Simon Horman 2015-12-18 2:42 ` [PATCH 1/3] ARM: shmobile: r8a7790: use fallback pci " Simon Horman 2015-12-18 2:42 ` [PATCH 2/3] ARM: shmobile: r8a7791: " Simon Horman 2015-12-18 2:42 ` [PATCH 3/3] ARM: shmobile: r8a7794: " Simon Horman 2016-02-15 1:55 ` [PATCH 0/3] ARM: shmobile: r8a779x: use fallback pcie " Simon Horman
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).