* [PATCH 0/2] arm64: renesas: Add support for R-Car V3M @ 2017-08-25 12:56 Geert Uytterhoeven 2017-08-25 12:56 ` [PATCH 1/2] ARM: shmobile: Document R-Car V3M SoC DT bindings Geert Uytterhoeven [not found] ` <1503665810-13945-1-git-send-email-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org> 0 siblings, 2 replies; 9+ messages in thread From: Geert Uytterhoeven @ 2017-08-25 12:56 UTC (permalink / raw) To: Simon Horman, Magnus Damm, Rob Herring, Mark Rutland, Catalin Marinas, Will Deacon Cc: Sergei Shtylyov, devicetree, linux-renesas-soc, linux-arm-kernel, Geert Uytterhoeven Hi all, This patch series adds initial R-Car V3M infrastructure: 1. SoC DT bindings, 2. Main Kconfig symbol. Both follow the example set by R-Car D3 aka r8a77995, using 5-digit instead of 4-digit part numbers. Alternatively, we could stick to 4-digit part numbers if the fifth digit is a zero. For your convenience, a branch with more preliminary work (thanks Sergei, for posting the clock driver!) for testing on v3m/eagle is also available in the topic/r8a77970-integration branch of my renesas-drivers git repository at git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git. Thanks for your comments! Geert Uytterhoeven (2): ARM: shmobile: Document R-Car V3M SoC DT bindings arm64: renesas: Add Renesas R8A77970 Kconfig support Documentation/devicetree/bindings/arm/shmobile.txt | 2 ++ arch/arm64/Kconfig.platforms | 6 ++++++ 2 files changed, 8 insertions(+) -- 2.7.4 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
* [PATCH 1/2] ARM: shmobile: Document R-Car V3M SoC DT bindings 2017-08-25 12:56 [PATCH 0/2] arm64: renesas: Add support for R-Car V3M Geert Uytterhoeven @ 2017-08-25 12:56 ` Geert Uytterhoeven 2017-08-31 20:08 ` Rob Herring [not found] ` <1503665810-13945-1-git-send-email-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org> 1 sibling, 1 reply; 9+ messages in thread From: Geert Uytterhoeven @ 2017-08-25 12:56 UTC (permalink / raw) To: Simon Horman, Magnus Damm, Rob Herring, Mark Rutland, Catalin Marinas, Will Deacon Cc: Sergei Shtylyov, devicetree, linux-renesas-soc, linux-arm-kernel, Geert Uytterhoeven Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> --- Documentation/devicetree/bindings/arm/shmobile.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Documentation/devicetree/bindings/arm/shmobile.txt b/Documentation/devicetree/bindings/arm/shmobile.txt index 275cda1469b8b95c..387cbd1a10375f2b 100644 --- a/Documentation/devicetree/bindings/arm/shmobile.txt +++ b/Documentation/devicetree/bindings/arm/shmobile.txt @@ -39,6 +39,8 @@ SoCs: compatible = "renesas,r8a7795" - R-Car M3-W (R8A77960) compatible = "renesas,r8a7796" + - R-Car V3M (R8A77970) + compatible = "renesas,r8a77970" - R-Car D3 (R8A77995) compatible = "renesas,r8a77995" -- 2.7.4 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH 1/2] ARM: shmobile: Document R-Car V3M SoC DT bindings 2017-08-25 12:56 ` [PATCH 1/2] ARM: shmobile: Document R-Car V3M SoC DT bindings Geert Uytterhoeven @ 2017-08-31 20:08 ` Rob Herring 0 siblings, 0 replies; 9+ messages in thread From: Rob Herring @ 2017-08-31 20:08 UTC (permalink / raw) To: Geert Uytterhoeven Cc: Simon Horman, Magnus Damm, Mark Rutland, Catalin Marinas, Will Deacon, Sergei Shtylyov, devicetree, linux-renesas-soc, linux-arm-kernel On Fri, Aug 25, 2017 at 02:56:49PM +0200, Geert Uytterhoeven wrote: > Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> > --- > Documentation/devicetree/bindings/arm/shmobile.txt | 2 ++ > 1 file changed, 2 insertions(+) Acked-by: Rob Herring <robh@kernel.org> ^ permalink raw reply [flat|nested] 9+ messages in thread
[parent not found: <1503665810-13945-1-git-send-email-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>]
* [PATCH 2/2] arm64: renesas: Add Renesas R8A77970 Kconfig support [not found] ` <1503665810-13945-1-git-send-email-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org> @ 2017-08-25 12:56 ` Geert Uytterhoeven 2017-08-28 7:44 ` [PATCH 0/2] arm64: renesas: Add support for R-Car V3M Simon Horman 1 sibling, 0 replies; 9+ messages in thread From: Geert Uytterhoeven @ 2017-08-25 12:56 UTC (permalink / raw) To: Simon Horman, Magnus Damm, Rob Herring, Mark Rutland, Catalin Marinas, Will Deacon Cc: Sergei Shtylyov, devicetree-u79uwXL29TY76Z2rM5mHXA, linux-renesas-soc-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, Geert Uytterhoeven Add a configuration option for the R-Car V3M SoC. Signed-off-by: Geert Uytterhoeven <geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org> --- arch/arm64/Kconfig.platforms | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/arch/arm64/Kconfig.platforms b/arch/arm64/Kconfig.platforms index a1c9f4ed7a887ab2..8a19015311a35d47 100644 --- a/arch/arm64/Kconfig.platforms +++ b/arch/arm64/Kconfig.platforms @@ -184,6 +184,12 @@ config ARCH_R8A7796 help This enables support for the Renesas R-Car M3-W SoC. +config ARCH_R8A77970 + bool "Renesas R-Car V3M SoC Platform" + depends on ARCH_RENESAS + help + This enables support for the Renesas R-Car V3M SoC. + config ARCH_R8A77995 bool "Renesas R-Car D3 SoC Platform" depends on ARCH_RENESAS -- 2.7.4 -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH 0/2] arm64: renesas: Add support for R-Car V3M [not found] ` <1503665810-13945-1-git-send-email-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org> 2017-08-25 12:56 ` [PATCH 2/2] arm64: renesas: Add Renesas R8A77970 Kconfig support Geert Uytterhoeven @ 2017-08-28 7:44 ` Simon Horman [not found] ` <20170828074453.GA22421-/R6kz+dDXgpPR4JQBCEnsQ@public.gmane.org> 1 sibling, 1 reply; 9+ messages in thread From: Simon Horman @ 2017-08-28 7:44 UTC (permalink / raw) To: Geert Uytterhoeven Cc: Magnus Damm, Rob Herring, Mark Rutland, Catalin Marinas, Will Deacon, Sergei Shtylyov, devicetree-u79uwXL29TY76Z2rM5mHXA, linux-renesas-soc-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r On Fri, Aug 25, 2017 at 02:56:48PM +0200, Geert Uytterhoeven wrote: > Hi all, > > This patch series adds initial R-Car V3M infrastructure: > 1. SoC DT bindings, > 2. Main Kconfig symbol. > > Both follow the example set by R-Car D3 aka r8a77995, using 5-digit instead > of 4-digit part numbers. > Alternatively, we could stick to 4-digit part numbers if the fifth digit is > a zero. > > For your convenience, a branch with more preliminary work (thanks Sergei, > for posting the clock driver!) for testing on v3m/eagle is also available > in the topic/r8a77970-integration branch of my renesas-drivers git > repository at > git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git. > > Thanks for your comments! This looks good to me. I am in favour of using the 5-digit scheme for all new R-Car Gen 3 SoCs as it seems the safest option with regards to as yet unknown (to me) part numbers.. -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 9+ messages in thread
[parent not found: <20170828074453.GA22421-/R6kz+dDXgpPR4JQBCEnsQ@public.gmane.org>]
* Re: [PATCH 0/2] arm64: renesas: Add support for R-Car V3M [not found] ` <20170828074453.GA22421-/R6kz+dDXgpPR4JQBCEnsQ@public.gmane.org> @ 2017-08-30 7:26 ` Simon Horman 2017-08-30 8:21 ` Geert Uytterhoeven 0 siblings, 1 reply; 9+ messages in thread From: Simon Horman @ 2017-08-30 7:26 UTC (permalink / raw) To: Geert Uytterhoeven Cc: Magnus Damm, Rob Herring, Mark Rutland, Catalin Marinas, Will Deacon, Sergei Shtylyov, devicetree-u79uwXL29TY76Z2rM5mHXA, linux-renesas-soc-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r On Mon, Aug 28, 2017 at 09:44:54AM +0200, Simon Horman wrote: > On Fri, Aug 25, 2017 at 02:56:48PM +0200, Geert Uytterhoeven wrote: > > Hi all, > > > > This patch series adds initial R-Car V3M infrastructure: > > 1. SoC DT bindings, > > 2. Main Kconfig symbol. > > > > Both follow the example set by R-Car D3 aka r8a77995, using 5-digit instead > > of 4-digit part numbers. > > Alternatively, we could stick to 4-digit part numbers if the fifth digit is > > a zero. > > > > For your convenience, a branch with more preliminary work (thanks Sergei, > > for posting the clock driver!) for testing on v3m/eagle is also available > > in the topic/r8a77970-integration branch of my renesas-drivers git > > repository at > > git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git. > > > > Thanks for your comments! > > This looks good to me. > > I am in favour of using the 5-digit scheme for all new R-Car Gen 3 SoCs > as it seems the safest option with regards to as yet unknown (to me) part > numbers. Geert, any objections to me applying these? I'm happy to wait longer if you prefer. -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 0/2] arm64: renesas: Add support for R-Car V3M 2017-08-30 7:26 ` Simon Horman @ 2017-08-30 8:21 ` Geert Uytterhoeven [not found] ` <CAMuHMdWvRBH8ZNgQKDGS3Z41BN7_o_H=hN5aGdbK44YT8rusXw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 0 siblings, 1 reply; 9+ messages in thread From: Geert Uytterhoeven @ 2017-08-30 8:21 UTC (permalink / raw) To: Simon Horman Cc: Geert Uytterhoeven, Magnus Damm, Rob Herring, Mark Rutland, Catalin Marinas, Will Deacon, Sergei Shtylyov, devicetree@vger.kernel.org, Linux-Renesas, linux-arm-kernel@lists.infradead.org Hi Simon, On Wed, Aug 30, 2017 at 9:26 AM, Simon Horman <horms@verge.net.au> wrote: > On Mon, Aug 28, 2017 at 09:44:54AM +0200, Simon Horman wrote: >> On Fri, Aug 25, 2017 at 02:56:48PM +0200, Geert Uytterhoeven wrote: >> > This patch series adds initial R-Car V3M infrastructure: >> > 1. SoC DT bindings, >> > 2. Main Kconfig symbol. >> > >> > Both follow the example set by R-Car D3 aka r8a77995, using 5-digit instead >> > of 4-digit part numbers. >> > Alternatively, we could stick to 4-digit part numbers if the fifth digit is >> > a zero. >> > >> > For your convenience, a branch with more preliminary work (thanks Sergei, >> > for posting the clock driver!) for testing on v3m/eagle is also available >> > in the topic/r8a77970-integration branch of my renesas-drivers git >> > repository at >> > git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git. >> > >> > Thanks for your comments! >> >> This looks good to me. >> >> I am in favour of using the 5-digit scheme for all new R-Car Gen 3 SoCs >> as it seems the safest option with regards to as yet unknown (to me) part >> numbers. > > Geert, any objections to me applying these? > I'm happy to wait longer if you prefer. It would be good to have an ack from Rob. No need to hurry. 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
[parent not found: <CAMuHMdWvRBH8ZNgQKDGS3Z41BN7_o_H=hN5aGdbK44YT8rusXw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>]
* Re: [PATCH 0/2] arm64: renesas: Add support for R-Car V3M [not found] ` <CAMuHMdWvRBH8ZNgQKDGS3Z41BN7_o_H=hN5aGdbK44YT8rusXw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> @ 2017-08-30 9:28 ` Simon Horman 2017-09-01 8:59 ` Simon Horman 0 siblings, 1 reply; 9+ messages in thread From: Simon Horman @ 2017-08-30 9:28 UTC (permalink / raw) To: Geert Uytterhoeven Cc: Geert Uytterhoeven, Magnus Damm, Rob Herring, Mark Rutland, Catalin Marinas, Will Deacon, Sergei Shtylyov, devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Linux-Renesas, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org On Wed, Aug 30, 2017 at 10:21:46AM +0200, Geert Uytterhoeven wrote: > Hi Simon, > > On Wed, Aug 30, 2017 at 9:26 AM, Simon Horman <horms-/R6kz+dDXgpPR4JQBCEnsQ@public.gmane.org> wrote: > > On Mon, Aug 28, 2017 at 09:44:54AM +0200, Simon Horman wrote: > >> On Fri, Aug 25, 2017 at 02:56:48PM +0200, Geert Uytterhoeven wrote: > >> > This patch series adds initial R-Car V3M infrastructure: > >> > 1. SoC DT bindings, > >> > 2. Main Kconfig symbol. > >> > > >> > Both follow the example set by R-Car D3 aka r8a77995, using 5-digit instead > >> > of 4-digit part numbers. > >> > Alternatively, we could stick to 4-digit part numbers if the fifth digit is > >> > a zero. > >> > > >> > For your convenience, a branch with more preliminary work (thanks Sergei, > >> > for posting the clock driver!) for testing on v3m/eagle is also available > >> > in the topic/r8a77970-integration branch of my renesas-drivers git > >> > repository at > >> > git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git. > >> > > >> > Thanks for your comments! > >> > >> This looks good to me. > >> > >> I am in favour of using the 5-digit scheme for all new R-Car Gen 3 SoCs > >> as it seems the safest option with regards to as yet unknown (to me) part > >> numbers. > > > > Geert, any objections to me applying these? > > I'm happy to wait longer if you prefer. > > It would be good to have an ack from Rob. > No need to hurry. Understood, I will wait. -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 0/2] arm64: renesas: Add support for R-Car V3M 2017-08-30 9:28 ` Simon Horman @ 2017-09-01 8:59 ` Simon Horman 0 siblings, 0 replies; 9+ messages in thread From: Simon Horman @ 2017-09-01 8:59 UTC (permalink / raw) To: Geert Uytterhoeven Cc: Geert Uytterhoeven, Magnus Damm, Rob Herring, Mark Rutland, Catalin Marinas, Will Deacon, Sergei Shtylyov, devicetree@vger.kernel.org, Linux-Renesas, linux-arm-kernel@lists.infradead.org On Wed, Aug 30, 2017 at 11:28:39AM +0200, Simon Horman wrote: > On Wed, Aug 30, 2017 at 10:21:46AM +0200, Geert Uytterhoeven wrote: > > Hi Simon, > > > > On Wed, Aug 30, 2017 at 9:26 AM, Simon Horman <horms@verge.net.au> wrote: > > > On Mon, Aug 28, 2017 at 09:44:54AM +0200, Simon Horman wrote: > > >> On Fri, Aug 25, 2017 at 02:56:48PM +0200, Geert Uytterhoeven wrote: > > >> > This patch series adds initial R-Car V3M infrastructure: > > >> > 1. SoC DT bindings, > > >> > 2. Main Kconfig symbol. > > >> > > > >> > Both follow the example set by R-Car D3 aka r8a77995, using 5-digit instead > > >> > of 4-digit part numbers. > > >> > Alternatively, we could stick to 4-digit part numbers if the fifth digit is > > >> > a zero. > > >> > > > >> > For your convenience, a branch with more preliminary work (thanks Sergei, > > >> > for posting the clock driver!) for testing on v3m/eagle is also available > > >> > in the topic/r8a77970-integration branch of my renesas-drivers git > > >> > repository at > > >> > git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git. > > >> > > > >> > Thanks for your comments! > > >> > > >> This looks good to me. > > >> > > >> I am in favour of using the 5-digit scheme for all new R-Car Gen 3 SoCs > > >> as it seems the safest option with regards to as yet unknown (to me) part > > >> numbers. > > > > > > Geert, any objections to me applying these? > > > I'm happy to wait longer if you prefer. > > > > It would be good to have an ack from Rob. > > No need to hurry. > > Understood, I will wait. Rob has acked the DT binding patch and I have applied the series. ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2017-09-01 8:59 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2017-08-25 12:56 [PATCH 0/2] arm64: renesas: Add support for R-Car V3M Geert Uytterhoeven 2017-08-25 12:56 ` [PATCH 1/2] ARM: shmobile: Document R-Car V3M SoC DT bindings Geert Uytterhoeven 2017-08-31 20:08 ` Rob Herring [not found] ` <1503665810-13945-1-git-send-email-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org> 2017-08-25 12:56 ` [PATCH 2/2] arm64: renesas: Add Renesas R8A77970 Kconfig support Geert Uytterhoeven 2017-08-28 7:44 ` [PATCH 0/2] arm64: renesas: Add support for R-Car V3M Simon Horman [not found] ` <20170828074453.GA22421-/R6kz+dDXgpPR4JQBCEnsQ@public.gmane.org> 2017-08-30 7:26 ` Simon Horman 2017-08-30 8:21 ` Geert Uytterhoeven [not found] ` <CAMuHMdWvRBH8ZNgQKDGS3Z41BN7_o_H=hN5aGdbK44YT8rusXw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 2017-08-30 9:28 ` Simon Horman 2017-09-01 8:59 ` 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).