linux-renesas-soc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] Renesas ARM64 Based SoC Defconfig Updates for v5.1
@ 2019-02-08 11:12 Simon Horman
  2019-02-08 11:12 ` [PATCH 1/3] arm64: defconfig: Enable CONFIG_PHY_RCAR_GEN3_PCIE Simon Horman
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Simon Horman @ 2019-02-08 11:12 UTC (permalink / raw)
  To: arm
  Cc: linux-renesas-soc, Olof Johansson, Kevin Hilman, Arnd Bergmann,
	linux-arm-kernel, Magnus Damm, Simon Horman

Hi Olof, Hi Kevin, Hi Arnd,

Please consider these Renesas ARM64 based SoC defconfig updates for v5.1.


The following changes since commit bfeffd155283772bbe78c6a05dec7c0128ee500c:

  Linux 5.0-rc1 (2019-01-06 17:08:20 -0800)

are available in the git repository at:

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

for you to fetch changes up to b8c3667a892a2ef2a2a5f91dfc2e3e3f0225185e:

  arm64: defconfig: select Kingfisher Sound related configs (2019-01-07 14:54:31 +0100)

----------------------------------------------------------------
Renesas ARM64 Based SoC Defconfig Updates for v5.1

Enable:
* PCM3168A support which is required for audio on Kingfisher daughterboards
* R-Car thermal support
* Gen3 PCIe PHY support

----------------------------------------------------------------
Geert Uytterhoeven (1):
      arm64: defconfig: Enable CONFIG_PHY_RCAR_GEN3_PCIE

Kuninori Morimoto (1):
      arm64: defconfig: select Kingfisher Sound related configs

Simon Horman (1):
      arm64: defconfig: Enable R-Car thermal driver

 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 CONFIG_PHY_RCAR_GEN3_PCIE
  2019-02-08 11:12 [GIT PULL] Renesas ARM64 Based SoC Defconfig Updates for v5.1 Simon Horman
@ 2019-02-08 11:12 ` Simon Horman
  2019-02-08 11:12 ` [PATCH 2/3] arm64: defconfig: Enable R-Car thermal driver Simon Horman
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2019-02-08 11:12 UTC (permalink / raw)
  To: linux-renesas-soc
  Cc: linux-arm-kernel, Magnus Damm, Geert Uytterhoeven, Simon Horman

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

Enable R-Car Gen3 PCIe PHY support, which is needed for PCIe to function
on the Renesas Condor board.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Marek Vasut <marek.vasut@gmail.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 3ef443cfbab6..22b5f6fcf723 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -689,6 +689,7 @@ CONFIG_PHY_HISI_INNO_USB2=y
 CONFIG_PHY_MVEBU_CP110_COMPHY=y
 CONFIG_PHY_QCOM_QMP=m
 CONFIG_PHY_QCOM_USB_HS=y
+CONFIG_PHY_RCAR_GEN3_PCIE=y
 CONFIG_PHY_RCAR_GEN3_USB2=y
 CONFIG_PHY_RCAR_GEN3_USB3=m
 CONFIG_PHY_ROCKCHIP_EMMC=y
-- 
2.11.0


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

* [PATCH 2/3] arm64: defconfig: Enable R-Car thermal driver
  2019-02-08 11:12 [GIT PULL] Renesas ARM64 Based SoC Defconfig Updates for v5.1 Simon Horman
  2019-02-08 11:12 ` [PATCH 1/3] arm64: defconfig: Enable CONFIG_PHY_RCAR_GEN3_PCIE Simon Horman
@ 2019-02-08 11:12 ` Simon Horman
  2019-02-08 11:12 ` [PATCH 3/3] arm64: defconfig: select Kingfisher Sound related configs Simon Horman
  2019-02-15 15:51 ` [GIT PULL] Renesas ARM64 Based SoC Defconfig Updates for v5.1 Arnd Bergmann
  3 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2019-02-08 11:12 UTC (permalink / raw)
  To: linux-renesas-soc; +Cc: linux-arm-kernel, Magnus Damm, Simon Horman

Enable the R-Car thermal driver as a built-in.
This seems safer than enabling as a module from the point of view of
protecting equipment from overheating.

This driver is used in conjunction with the R-Car V3M (r8a77970),
E3 (r8a77990) and D3 (r8a77995) SoCs.

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

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index 22b5f6fcf723..741b5f305e03 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -401,6 +401,7 @@ CONFIG_THERMAL_GOV_POWER_ALLOCATOR=y
 CONFIG_CPU_THERMAL=y
 CONFIG_THERMAL_EMULATION=y
 CONFIG_ROCKCHIP_THERMAL=m
+CONFIG_RCAR_THERMAL=y
 CONFIG_RCAR_GEN3_THERMAL=y
 CONFIG_ARMADA_THERMAL=y
 CONFIG_BCM2835_THERMAL=m
-- 
2.11.0


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

* [PATCH 3/3] arm64: defconfig: select Kingfisher Sound related configs
  2019-02-08 11:12 [GIT PULL] Renesas ARM64 Based SoC Defconfig Updates for v5.1 Simon Horman
  2019-02-08 11:12 ` [PATCH 1/3] arm64: defconfig: Enable CONFIG_PHY_RCAR_GEN3_PCIE Simon Horman
  2019-02-08 11:12 ` [PATCH 2/3] arm64: defconfig: Enable R-Car thermal driver Simon Horman
@ 2019-02-08 11:12 ` Simon Horman
  2019-02-15 15:51 ` [GIT PULL] Renesas ARM64 Based SoC Defconfig Updates for v5.1 Arnd Bergmann
  3 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2019-02-08 11:12 UTC (permalink / raw)
  To: linux-renesas-soc
  Cc: linux-arm-kernel, Magnus Damm, Kuninori Morimoto, Simon Horman

From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

This patch selects PCM3168A which is needed for Kingfisher Sound

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.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 741b5f305e03..e1484113667b 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -510,6 +510,7 @@ CONFIG_SND_SOC_RK3399_GRU_SOUND=m
 CONFIG_SND_SOC_SAMSUNG=y
 CONFIG_SND_SOC_RCAR=m
 CONFIG_SND_SOC_AK4613=m
+CONFIG_SND_SOC_PCM3168A_I2C=m
 CONFIG_SND_SIMPLE_CARD=m
 CONFIG_SND_AUDIO_GRAPH_CARD=m
 CONFIG_I2C_HID=m
-- 
2.11.0


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

* Re: [GIT PULL] Renesas ARM64 Based SoC Defconfig Updates for v5.1
  2019-02-08 11:12 [GIT PULL] Renesas ARM64 Based SoC Defconfig Updates for v5.1 Simon Horman
                   ` (2 preceding siblings ...)
  2019-02-08 11:12 ` [PATCH 3/3] arm64: defconfig: select Kingfisher Sound related configs Simon Horman
@ 2019-02-15 15:51 ` Arnd Bergmann
  3 siblings, 0 replies; 5+ messages in thread
From: Arnd Bergmann @ 2019-02-15 15:51 UTC (permalink / raw)
  To: Simon Horman
  Cc: arm-soc, Linux-Renesas, Olof Johansson, Kevin Hilman, Linux ARM,
	Magnus Damm

On Fri, Feb 8, 2019 at 12:13 PM Simon Horman <horms+renesas@verge.net.au> wrote:
> Renesas ARM64 Based SoC Defconfig Updates for v5.1
>
> Enable:
> * PCM3168A support which is required for audio on Kingfisher daughterboards
> * R-Car thermal support
> * Gen3 PCIe PHY support

Pulled into arm/defconfig, thanks!

    Arnd

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

end of thread, other threads:[~2019-02-15 15:51 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-08 11:12 [GIT PULL] Renesas ARM64 Based SoC Defconfig Updates for v5.1 Simon Horman
2019-02-08 11:12 ` [PATCH 1/3] arm64: defconfig: Enable CONFIG_PHY_RCAR_GEN3_PCIE Simon Horman
2019-02-08 11:12 ` [PATCH 2/3] arm64: defconfig: Enable R-Car thermal driver Simon Horman
2019-02-08 11:12 ` [PATCH 3/3] arm64: defconfig: select Kingfisher Sound related configs Simon Horman
2019-02-15 15:51 ` [GIT PULL] Renesas ARM64 Based SoC Defconfig Updates for v5.1 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).