linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] Renesas ARM64 Based SoC Defconfig Updates for v4.15
@ 2017-09-29 11:52 Simon Horman
  2017-09-29 11:52 ` [PATCH 1/3] arm64: defconfig: Enable Renesas R8A77995 SoC Simon Horman
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Simon Horman @ 2017-09-29 11:52 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Olof, Hi Kevin, Hi Arnd,

Please consider these Renesas ARM64 based SoC defconfig updates for v4.15.


The following changes since commit 2bd6bf03f4c1c59381d62c61d03f6cc3fe71f66e:

  Linux 4.14-rc1 (2017-09-16 15:47:51 -0700)

are available in the git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git tags/renesas-arm64-defconfig-for-v4.15

for you to fetch changes up to bb58b29899ff9c6d1e97727ec05b500e832ebd7d:

  arm64: defconfig: enable R8A77970 SoC (2017-09-25 09:19:10 +0200)

----------------------------------------------------------------
Renesas ARM64 Based SoC Defconfig Updates for v4.15

* Enable the following to allow further test coverage
  - r8a77970 (V3M) and r8a77995 (D3) R-Car Gen3 SoCs
  - R-Car Gen3 thermal driver.
    This is used on a range of R-Car Gen3 SoCs

----------------------------------------------------------------
Geert Uytterhoeven (1):
      arm64: defconfig: Enable Renesas R8A77995 SoC

Sergei Shtylyov (1):
      arm64: defconfig: enable R8A77970 SoC

Wolfram Sang (1):
      arm64: defconfig: enable thermal driver for Renesas R-Car Gen3

 arch/arm64/configs/defconfig | 3 +++
 1 file changed, 3 insertions(+)

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

* [PATCH 1/3] arm64: defconfig: Enable Renesas R8A77995 SoC
  2017-09-29 11:52 [GIT PULL] Renesas ARM64 Based SoC Defconfig Updates for v4.15 Simon Horman
@ 2017-09-29 11:52 ` Simon Horman
  2017-09-29 11:52 ` [PATCH 2/3] arm64: defconfig: enable thermal driver for Renesas R-Car Gen3 Simon Horman
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2017-09-29 11:52 UTC (permalink / raw)
  To: linux-arm-kernel

From: Geert Uytterhoeven <geert+renesas@glider.be>

Enable support for the Renesas R-Car D3 SoC.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
 arch/arm64/configs/defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index 34480e9af2e7..a83012a7f4b8 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -51,6 +51,7 @@ CONFIG_ARCH_SEATTLE=y
 CONFIG_ARCH_RENESAS=y
 CONFIG_ARCH_R8A7795=y
 CONFIG_ARCH_R8A7796=y
+CONFIG_ARCH_R8A77995=y
 CONFIG_ARCH_STRATIX10=y
 CONFIG_ARCH_TEGRA=y
 CONFIG_ARCH_SPRD=y
-- 
2.1.4

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

* [PATCH 2/3] arm64: defconfig: enable thermal driver for Renesas R-Car Gen3
  2017-09-29 11:52 [GIT PULL] Renesas ARM64 Based SoC Defconfig Updates for v4.15 Simon Horman
  2017-09-29 11:52 ` [PATCH 1/3] arm64: defconfig: Enable Renesas R8A77995 SoC Simon Horman
@ 2017-09-29 11:52 ` Simon Horman
  2017-09-29 11:52 ` [PATCH 3/3] arm64: defconfig: enable R8A77970 SoC Simon Horman
  2017-10-19 16:10 ` [GIT PULL] Renesas ARM64 Based SoC Defconfig Updates for v4.15 Arnd Bergmann
  3 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2017-09-29 11:52 UTC (permalink / raw)
  To: linux-arm-kernel

From: Wolfram Sang <wsa+renesas@sang-engineering.com>

We want this driver to detect critical temperatures in time.

Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
 arch/arm64/configs/defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index a83012a7f4b8..1eb054469927 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -316,6 +316,7 @@ CONFIG_CPU_THERMAL=y
 CONFIG_THERMAL_EMULATION=y
 CONFIG_BRCMSTB_THERMAL=m
 CONFIG_EXYNOS_THERMAL=y
+CONFIG_RCAR_GEN3_THERMAL=y
 CONFIG_ROCKCHIP_THERMAL=m
 CONFIG_WATCHDOG=y
 CONFIG_S3C2410_WATCHDOG=y
-- 
2.1.4

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

* [PATCH 3/3] arm64: defconfig: enable R8A77970 SoC
  2017-09-29 11:52 [GIT PULL] Renesas ARM64 Based SoC Defconfig Updates for v4.15 Simon Horman
  2017-09-29 11:52 ` [PATCH 1/3] arm64: defconfig: Enable Renesas R8A77995 SoC Simon Horman
  2017-09-29 11:52 ` [PATCH 2/3] arm64: defconfig: enable thermal driver for Renesas R-Car Gen3 Simon Horman
@ 2017-09-29 11:52 ` Simon Horman
  2017-10-19 16:10 ` [GIT PULL] Renesas ARM64 Based SoC Defconfig Updates for v4.15 Arnd Bergmann
  3 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2017-09-29 11:52 UTC (permalink / raw)
  To: linux-arm-kernel

From: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>

Enable the Renesas R-Car V3M (R8A77970) SoC in the ARM64 defconfig.

Suggested-by: Simon Horman <horms@verge.net.au>
Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Acked-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
 arch/arm64/configs/defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index 1eb054469927..cb5b37fe1e14 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -51,6 +51,7 @@ CONFIG_ARCH_SEATTLE=y
 CONFIG_ARCH_RENESAS=y
 CONFIG_ARCH_R8A7795=y
 CONFIG_ARCH_R8A7796=y
+CONFIG_ARCH_R8A77970=y
 CONFIG_ARCH_R8A77995=y
 CONFIG_ARCH_STRATIX10=y
 CONFIG_ARCH_TEGRA=y
-- 
2.1.4

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

* [GIT PULL] Renesas ARM64 Based SoC Defconfig Updates for v4.15
  2017-09-29 11:52 [GIT PULL] Renesas ARM64 Based SoC Defconfig Updates for v4.15 Simon Horman
                   ` (2 preceding siblings ...)
  2017-09-29 11:52 ` [PATCH 3/3] arm64: defconfig: enable R8A77970 SoC Simon Horman
@ 2017-10-19 16:10 ` Arnd Bergmann
  3 siblings, 0 replies; 5+ messages in thread
From: Arnd Bergmann @ 2017-10-19 16:10 UTC (permalink / raw)
  To: linux-arm-kernel

On Fri, Sep 29, 2017 at 1:52 PM, Simon Horman
<horms+renesas@verge.net.au> wrote:
>
> ----------------------------------------------------------------
> Renesas ARM64 Based SoC Defconfig Updates for v4.15
>
> * Enable the following to allow further test coverage
>   - r8a77970 (V3M) and r8a77995 (D3) R-Car Gen3 SoCs
>   - R-Car Gen3 thermal driver.
>     This is used on a range of R-Car Gen3 SoCs

Pulled into next/soc, thanks!

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

end of thread, other threads:[~2017-10-19 16:10 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-09-29 11:52 [GIT PULL] Renesas ARM64 Based SoC Defconfig Updates for v4.15 Simon Horman
2017-09-29 11:52 ` [PATCH 1/3] arm64: defconfig: Enable Renesas R8A77995 SoC Simon Horman
2017-09-29 11:52 ` [PATCH 2/3] arm64: defconfig: enable thermal driver for Renesas R-Car Gen3 Simon Horman
2017-09-29 11:52 ` [PATCH 3/3] arm64: defconfig: enable R8A77970 SoC Simon Horman
2017-10-19 16:10 ` [GIT PULL] Renesas ARM64 Based SoC Defconfig Updates for v4.15 Arnd Bergmann

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