linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 2/3] ARM: shmobile: Document Renesas Draak board DT bindings
       [not found] <1500553741-21890-1-git-send-email-geert+renesas@glider.be>
@ 2017-07-20 12:29 ` Geert Uytterhoeven
  2017-07-24 19:58   ` Rob Herring
  2017-07-20 12:29 ` [PATCH 3/3] arm64: renesas: Add Renesas R8A77995 Kconfig support Geert Uytterhoeven
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 5+ messages in thread
From: Geert Uytterhoeven @ 2017-07-20 12:29 UTC (permalink / raw)
  To: linux-arm-kernel

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 91f92d62650207fd..275cda1469b8b95c 100644
--- a/Documentation/devicetree/bindings/arm/shmobile.txt
+++ b/Documentation/devicetree/bindings/arm/shmobile.txt
@@ -55,6 +55,8 @@ Boards:
     compatible = "renesas,blanche", "renesas,r8a7792"
   - BOCK-W
     compatible = "renesas,bockw", "renesas,r8a7778"
+  - Draak (RTP0RC77995SEB0010S)
+    compatible = "renesas,draak", "renesas,r8a77995"
   - Genmai (RTK772100BC00000BR)
     compatible = "renesas,genmai", "renesas,r7s72100"
   - GR-Peach (X28A-M01-E/F)
-- 
2.7.4

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

* [PATCH 3/3] arm64: renesas: Add Renesas R8A77995 Kconfig support
       [not found] <1500553741-21890-1-git-send-email-geert+renesas@glider.be>
  2017-07-20 12:29 ` [PATCH 2/3] ARM: shmobile: Document Renesas Draak board DT bindings Geert Uytterhoeven
@ 2017-07-20 12:29 ` Geert Uytterhoeven
       [not found] ` <1500553741-21890-2-git-send-email-geert+renesas@glider.be>
  2017-07-27 15:12 ` [PATCH 0/3] arm64: renesas: Base R-Car D3 support Simon Horman
  3 siblings, 0 replies; 5+ messages in thread
From: Geert Uytterhoeven @ 2017-07-20 12:29 UTC (permalink / raw)
  To: linux-arm-kernel

Add a configuration option for the R-Car D3 SoC.

Note that r8a77995 is the first Renesas "r8a<n>" SoC using a 5 digit
number in its Kconfig symbol, as r8a77990 will be a different SoC.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 arch/arm64/Kconfig.platforms | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/arch/arm64/Kconfig.platforms b/arch/arm64/Kconfig.platforms
index f5f0c813dfecc56c..a1c9f4ed7a887ab2 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_R8A77995
+	bool "Renesas R-Car D3 SoC Platform"
+	depends on ARCH_RENESAS
+	help
+	  This enables support for the Renesas R-Car D3 SoC.
+
 config ARCH_STRATIX10
 	bool "Altera's Stratix 10 SoCFPGA Family"
 	help
-- 
2.7.4

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

* [PATCH 1/3] ARM: shmobile: Document R-Car D3 SoC DT bindings
       [not found] ` <1500553741-21890-2-git-send-email-geert+renesas@glider.be>
@ 2017-07-24 19:57   ` Rob Herring
  0 siblings, 0 replies; 5+ messages in thread
From: Rob Herring @ 2017-07-24 19:57 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, Jul 20, 2017 at 02:28:59PM +0200, Geert Uytterhoeven wrote:
> Note that r8a77995 is the first Renesas "r8a<n>" SoC matching against a 5
> digit number, as r8a77990 will be a different SoC.
> 
> 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] 5+ messages in thread

* [PATCH 2/3] ARM: shmobile: Document Renesas Draak board DT bindings
  2017-07-20 12:29 ` [PATCH 2/3] ARM: shmobile: Document Renesas Draak board DT bindings Geert Uytterhoeven
@ 2017-07-24 19:58   ` Rob Herring
  0 siblings, 0 replies; 5+ messages in thread
From: Rob Herring @ 2017-07-24 19:58 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, Jul 20, 2017 at 02:29:00PM +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] 5+ messages in thread

* [PATCH 0/3] arm64: renesas: Base R-Car D3 support
       [not found] <1500553741-21890-1-git-send-email-geert+renesas@glider.be>
                   ` (2 preceding siblings ...)
       [not found] ` <1500553741-21890-2-git-send-email-geert+renesas@glider.be>
@ 2017-07-27 15:12 ` Simon Horman
  3 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2017-07-27 15:12 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, Jul 20, 2017 at 02:28:58PM +0200, Geert Uytterhoeven wrote:
> 	Hi Simon, Magnus, Rob, Mark, Catalin, Will,
> 
> This patch series adds base support for the Renesas R-Car D3 SoC and the
> Renesas Draak development board.
> 
> It documents SoC and board specific DT compatible values, and adds a
> Kconfig symbol.
> 
> Thanks!
> 
> Geert Uytterhoeven (3):
>   ARM: shmobile: Document R-Car D3 SoC DT bindings
>   ARM: shmobile: Document Renesas Draak board DT bindings
>   arm64: renesas: Add Renesas R8A77995 Kconfig support

Thanks, applied for v4.14.

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

end of thread, other threads:[~2017-07-27 15:12 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <1500553741-21890-1-git-send-email-geert+renesas@glider.be>
2017-07-20 12:29 ` [PATCH 2/3] ARM: shmobile: Document Renesas Draak board DT bindings Geert Uytterhoeven
2017-07-24 19:58   ` Rob Herring
2017-07-20 12:29 ` [PATCH 3/3] arm64: renesas: Add Renesas R8A77995 Kconfig support Geert Uytterhoeven
     [not found] ` <1500553741-21890-2-git-send-email-geert+renesas@glider.be>
2017-07-24 19:57   ` [PATCH 1/3] ARM: shmobile: Document R-Car D3 SoC DT bindings Rob Herring
2017-07-27 15:12 ` [PATCH 0/3] arm64: renesas: Base R-Car D3 support 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).