* [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v4.16
@ 2017-12-22 10:29 Simon Horman
2017-12-22 10:29 ` [PATCH 1/3] ARM: shmobile: defconfig: Enable SGTL5000 audio codec Simon Horman
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Simon Horman @ 2017-12-22 10:29 UTC (permalink / raw)
To: linux-arm-kernel
Hi Olof, Hi Kevin, Hi Arnd,
Please consider these Renesas ARM based SoC defconfig updates for v4.16.
The following changes since commit 4fbd8d194f06c8a3fd2af1ce560ddb31f7ec8323:
Linux 4.15-rc1 (2017-11-26 16:01:47 -0800)
are available in the git repository at:
https://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git tags/renesas-defconfig-for-v4.16
for you to fetch changes up to 1943cbd3b39ee3310494d5b531a906e836bb9f7f:
ARM: shmobile: defconfig: Enable PWM (2017-12-20 09:29:49 +0100)
----------------------------------------------------------------
Renesas ARM Based SoC Defconfig Updates for v4.16
shmobile_defconfig:
* Enable PWM timers, which are present on R-Car and RZ/G1 platforms,
as a built-in
* Enable SGTL5000 audio codec, which is present on the he iWave RZ/G1M Q7
carrier board, as a built-in
multi_v7_defconfig:
* Enable PWM timers, which are present on R-Car and RZ/G1 platforms,
as a module
----------------------------------------------------------------
Biju Das (1):
ARM: shmobile: defconfig: Enable SGTL5000 audio codec
Fabrizio Castro (2):
ARM: multi_v7_defconfig: Select PWM_RCAR as module
ARM: shmobile: defconfig: Enable PWM
arch/arm/configs/multi_v7_defconfig | 1 +
arch/arm/configs/shmobile_defconfig | 2 ++
2 files changed, 3 insertions(+)
^ permalink raw reply [flat|nested] 5+ messages in thread* [PATCH 1/3] ARM: shmobile: defconfig: Enable SGTL5000 audio codec
2017-12-22 10:29 [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v4.16 Simon Horman
@ 2017-12-22 10:29 ` Simon Horman
2017-12-22 10:29 ` [PATCH 2/3] ARM: multi_v7_defconfig: Select PWM_RCAR as module Simon Horman
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2017-12-22 10:29 UTC (permalink / raw)
To: linux-arm-kernel
From: Biju Das <biju.das@bp.renesas.com>
The iWave RZ/G1M Q7 carrier board supports I2S audio codec "SGTL5000".
To increase hardware support enable the driver in the shmobile_defconfig
multiplatform configuration.
Signed-off-by: Biju Das <biju.das@bp.renesas.com>
Reviewed-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
arch/arm/configs/shmobile_defconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/arm/configs/shmobile_defconfig b/arch/arm/configs/shmobile_defconfig
index 7b4fc0143148..d60dbe1f108f 100644
--- a/arch/arm/configs/shmobile_defconfig
+++ b/arch/arm/configs/shmobile_defconfig
@@ -173,6 +173,7 @@ CONFIG_SND_SOC=y
CONFIG_SND_SOC_SH4_FSI=y
CONFIG_SND_SOC_RCAR=y
CONFIG_SND_SOC_AK4642=y
+CONFIG_SND_SOC_SGTL5000=y
CONFIG_SND_SOC_WM8978=y
CONFIG_SND_SIMPLE_SCU_CARD=y
CONFIG_USB=y
--
2.11.0
^ permalink raw reply related [flat|nested] 5+ messages in thread* [PATCH 2/3] ARM: multi_v7_defconfig: Select PWM_RCAR as module
2017-12-22 10:29 [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v4.16 Simon Horman
2017-12-22 10:29 ` [PATCH 1/3] ARM: shmobile: defconfig: Enable SGTL5000 audio codec Simon Horman
@ 2017-12-22 10:29 ` Simon Horman
2017-12-22 10:29 ` [PATCH 3/3] ARM: shmobile: defconfig: Enable PWM Simon Horman
2018-01-05 6:39 ` [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v4.16 Olof Johansson
3 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2017-12-22 10:29 UTC (permalink / raw)
To: linux-arm-kernel
From: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
Enable PWM support for R-Car and friends by default.
Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
Reviewed-by: Biju Das <biju.das@bp.renesas.com>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
arch/arm/configs/multi_v7_defconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
index 61509c4b769f..b4c36f99f0fa 100644
--- a/arch/arm/configs/multi_v7_defconfig
+++ b/arch/arm/configs/multi_v7_defconfig
@@ -879,6 +879,7 @@ CONFIG_PWM_ATMEL=m
CONFIG_PWM_ATMEL_HLCDC_PWM=m
CONFIG_PWM_ATMEL_TCB=m
CONFIG_PWM_FSL_FTM=m
+CONFIG_PWM_RCAR=m
CONFIG_PWM_RENESAS_TPU=y
CONFIG_PWM_ROCKCHIP=m
CONFIG_PWM_SAMSUNG=m
--
2.11.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 3/3] ARM: shmobile: defconfig: Enable PWM
2017-12-22 10:29 [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v4.16 Simon Horman
2017-12-22 10:29 ` [PATCH 1/3] ARM: shmobile: defconfig: Enable SGTL5000 audio codec Simon Horman
2017-12-22 10:29 ` [PATCH 2/3] ARM: multi_v7_defconfig: Select PWM_RCAR as module Simon Horman
@ 2017-12-22 10:29 ` Simon Horman
2018-01-05 6:39 ` [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v4.16 Olof Johansson
3 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2017-12-22 10:29 UTC (permalink / raw)
To: linux-arm-kernel
From: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
RZ/G1 and R-Car platforms have PWM timers. This patch enables PWM support
by default.
Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
Reviewed-by: Biju Das <biju.das@bp.renesas.com>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
arch/arm/configs/shmobile_defconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/arm/configs/shmobile_defconfig b/arch/arm/configs/shmobile_defconfig
index d60dbe1f108f..578434cfd1a0 100644
--- a/arch/arm/configs/shmobile_defconfig
+++ b/arch/arm/configs/shmobile_defconfig
@@ -208,6 +208,7 @@ CONFIG_STAGING_BOARD=y
CONFIG_IIO=y
CONFIG_AK8975=y
CONFIG_PWM=y
+CONFIG_PWM_RCAR=y
CONFIG_PWM_RENESAS_TPU=y
CONFIG_GENERIC_PHY=y
CONFIG_PHY_RCAR_GEN2=y
--
2.11.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v4.16
2017-12-22 10:29 [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v4.16 Simon Horman
` (2 preceding siblings ...)
2017-12-22 10:29 ` [PATCH 3/3] ARM: shmobile: defconfig: Enable PWM Simon Horman
@ 2018-01-05 6:39 ` Olof Johansson
3 siblings, 0 replies; 5+ messages in thread
From: Olof Johansson @ 2018-01-05 6:39 UTC (permalink / raw)
To: linux-arm-kernel
On Fri, Dec 22, 2017 at 11:29:33AM +0100, Simon Horman wrote:
> Hi Olof, Hi Kevin, Hi Arnd,
>
> Please consider these Renesas ARM based SoC defconfig updates for v4.16.
>
>
> The following changes since commit 4fbd8d194f06c8a3fd2af1ce560ddb31f7ec8323:
>
> Linux 4.15-rc1 (2017-11-26 16:01:47 -0800)
>
> are available in the git repository at:
>
> https://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git tags/renesas-defconfig-for-v4.16
>
> for you to fetch changes up to 1943cbd3b39ee3310494d5b531a906e836bb9f7f:
>
> ARM: shmobile: defconfig: Enable PWM (2017-12-20 09:29:49 +0100)
>
> ----------------------------------------------------------------
> Renesas ARM Based SoC Defconfig Updates for v4.16
>
> shmobile_defconfig:
> * Enable PWM timers, which are present on R-Car and RZ/G1 platforms,
> as a built-in
> * Enable SGTL5000 audio codec, which is present on the he iWave RZ/G1M Q7
> carrier board, as a built-in
>
> multi_v7_defconfig:
> * Enable PWM timers, which are present on R-Car and RZ/G1 platforms,
> as a module
Merged, thanks.
-Olof
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2018-01-05 6:39 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-12-22 10:29 [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v4.16 Simon Horman
2017-12-22 10:29 ` [PATCH 1/3] ARM: shmobile: defconfig: Enable SGTL5000 audio codec Simon Horman
2017-12-22 10:29 ` [PATCH 2/3] ARM: multi_v7_defconfig: Select PWM_RCAR as module Simon Horman
2017-12-22 10:29 ` [PATCH 3/3] ARM: shmobile: defconfig: Enable PWM Simon Horman
2018-01-05 6:39 ` [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v4.16 Olof Johansson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox