linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/4] ARM: shmobile: defconfig: Enable CONFIG_VIDEO_ADV7604
  2017-01-06 11:18 [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v4.11 Simon Horman
@ 2017-01-06 11:18 ` Simon Horman
  2017-01-06 11:18 ` [PATCH 2/4] ARM: shmobile: defconfig: Enable CMA for DMA Simon Horman
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Simon Horman @ 2017-01-06 11:18 UTC (permalink / raw)
  To: linux-arm-kernel

From: Niklas S?derlund <niklas.soderlund+renesas@ragnatech.se>

The adv7612 is used on Gen2 boards (Lager, Koelsch and Gose) for HDMI
input. Enable support for this chip in shmobile_defconfig.

Signed-off-by: Niklas S?derlund <niklas.soderlund+renesas@ragnatech.se>
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 1b0f8ae36fb3..98e9ce66740d 100644
--- a/arch/arm/configs/shmobile_defconfig
+++ b/arch/arm/configs/shmobile_defconfig
@@ -145,6 +145,7 @@ CONFIG_VIDEO_RENESAS_JPU=y
 CONFIG_VIDEO_RENESAS_VSP1=y
 # CONFIG_MEDIA_SUBDRV_AUTOSELECT is not set
 CONFIG_VIDEO_ADV7180=y
+CONFIG_VIDEO_ADV7604=y
 CONFIG_VIDEO_ML86V7667=y
 CONFIG_DRM=y
 CONFIG_DRM_I2C_ADV7511=y
-- 
2.7.0.rc3.207.g0ac5344

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

* [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v4.11
@ 2017-01-06 11:18 Simon Horman
  2017-01-06 11:18 ` [PATCH 1/4] ARM: shmobile: defconfig: Enable CONFIG_VIDEO_ADV7604 Simon Horman
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Simon Horman @ 2017-01-06 11:18 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Olof, Hi Kevin, Hi Arnd,

Please consider these Renesas ARM based SoC defconfig updates for v4.11.


The following changes since commit 7ce7d89f48834cefece7804d38fc5d85382edf77:

  Linux 4.10-rc1 (2016-12-25 16:13:08 -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.11

for you to fetch changes up to e37278d83e348eb53029452e65892780359b6bea:

  ARM: multi_v7_defconfig: Enable r8a774[35] SoCs (2017-01-03 10:44:04 +0100)

----------------------------------------------------------------
Renesas ARM Based SoC Defconfig Updates for v4.11

Enable:
* Recently added Enable r8a774[35] SoCs
* CMA for DMA to allow use of VIN with large frame sizes
* CONFIG_VIDEO_ADV7604 to allow use of HDMI input

----------------------------------------------------------------
Niklas S?derlund (2):
      ARM: shmobile: defconfig: Enable CONFIG_VIDEO_ADV7604
      ARM: shmobile: defconfig: Enable CMA for DMA

Simon Horman (2):
      ARM: shmobile: defconfig: Enable r8a774[35] SoCs
      ARM: multi_v7_defconfig: Enable r8a774[35] SoCs

 arch/arm/configs/multi_v7_defconfig | 2 ++
 arch/arm/configs/shmobile_defconfig | 6 ++++++
 2 files changed, 8 insertions(+)

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

* [PATCH 2/4] ARM: shmobile: defconfig: Enable CMA for DMA
  2017-01-06 11:18 [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v4.11 Simon Horman
  2017-01-06 11:18 ` [PATCH 1/4] ARM: shmobile: defconfig: Enable CONFIG_VIDEO_ADV7604 Simon Horman
@ 2017-01-06 11:18 ` Simon Horman
  2017-01-06 11:18 ` [PATCH 3/4] ARM: shmobile: defconfig: Enable r8a774[35] SoCs Simon Horman
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Simon Horman @ 2017-01-06 11:18 UTC (permalink / raw)
  To: linux-arm-kernel

From: Niklas S?derlund <niklas.soderlund+renesas@ragnatech.se>

To be able to use VIN with larger frame sizes CMA memory are needed for
DMA. If this is not enabled trying to capture large frames can result in
errors such as:

rcar-vin e6ef0000.video: dma_alloc_coherent of size 8388608 failed

A CMA area of 64MB are needed for v4l2-compliance to pass on all formats
on the largest possible frame size of 2048x2048.

Signed-off-by: Niklas S?derlund <niklas.soderlund+renesas@ragnatech.se>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
 arch/arm/configs/shmobile_defconfig | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/arch/arm/configs/shmobile_defconfig b/arch/arm/configs/shmobile_defconfig
index 98e9ce66740d..b66e17aec058 100644
--- a/arch/arm/configs/shmobile_defconfig
+++ b/arch/arm/configs/shmobile_defconfig
@@ -33,6 +33,7 @@ CONFIG_HAVE_ARM_ARCH_TIMER=y
 CONFIG_NR_CPUS=8
 CONFIG_AEABI=y
 CONFIG_HIGHMEM=y
+CONFIG_CMA=y
 CONFIG_ZBOOT_ROM_TEXT=0x0
 CONFIG_ZBOOT_ROM_BSS=0x0
 CONFIG_ARM_APPENDED_DTB=y
@@ -58,6 +59,8 @@ CONFIG_CAN_RCAR=y
 CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
 CONFIG_DEVTMPFS=y
 CONFIG_DEVTMPFS_MOUNT=y
+CONFIG_DMA_CMA=y
+CONFIG_CMA_SIZE_MBYTES=64
 CONFIG_SIMPLE_PM_BUS=y
 CONFIG_MTD=y
 CONFIG_MTD_BLOCK=y
-- 
2.7.0.rc3.207.g0ac5344

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

* [PATCH 3/4] ARM: shmobile: defconfig: Enable r8a774[35] SoCs
  2017-01-06 11:18 [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v4.11 Simon Horman
  2017-01-06 11:18 ` [PATCH 1/4] ARM: shmobile: defconfig: Enable CONFIG_VIDEO_ADV7604 Simon Horman
  2017-01-06 11:18 ` [PATCH 2/4] ARM: shmobile: defconfig: Enable CMA for DMA Simon Horman
@ 2017-01-06 11:18 ` Simon Horman
  2017-01-06 11:18 ` [PATCH 4/4] ARM: multi_v7_defconfig: " Simon Horman
  2017-01-10  3:13 ` [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v4.11 Olof Johansson
  4 siblings, 0 replies; 6+ messages in thread
From: Simon Horman @ 2017-01-06 11:18 UTC (permalink / raw)
  To: linux-arm-kernel

Enable recently added r8a7743 (RZ/G1M) and r8a7745 (RZ/G1E) SoCs.

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

diff --git a/arch/arm/configs/shmobile_defconfig b/arch/arm/configs/shmobile_defconfig
index b66e17aec058..760688aa5c79 100644
--- a/arch/arm/configs/shmobile_defconfig
+++ b/arch/arm/configs/shmobile_defconfig
@@ -14,6 +14,8 @@ CONFIG_ARCH_EMEV2=y
 CONFIG_ARCH_R7S72100=y
 CONFIG_ARCH_R8A73A4=y
 CONFIG_ARCH_R8A7740=y
+CONFIG_ARCH_R8A7743=y
+CONFIG_ARCH_R8A7745=y
 CONFIG_ARCH_R8A7778=y
 CONFIG_ARCH_R8A7779=y
 CONFIG_ARCH_R8A7790=y
-- 
2.7.0.rc3.207.g0ac5344

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

* [PATCH 4/4] ARM: multi_v7_defconfig: Enable r8a774[35] SoCs
  2017-01-06 11:18 [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v4.11 Simon Horman
                   ` (2 preceding siblings ...)
  2017-01-06 11:18 ` [PATCH 3/4] ARM: shmobile: defconfig: Enable r8a774[35] SoCs Simon Horman
@ 2017-01-06 11:18 ` Simon Horman
  2017-01-10  3:13 ` [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v4.11 Olof Johansson
  4 siblings, 0 replies; 6+ messages in thread
From: Simon Horman @ 2017-01-06 11:18 UTC (permalink / raw)
  To: linux-arm-kernel

Enable recently added r8a7743 (RZ/G1M) and r8a7745 (RZ/G1E) SoCs.

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

diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
index b01a43851294..f084a0a928b8 100644
--- a/arch/arm/configs/multi_v7_defconfig
+++ b/arch/arm/configs/multi_v7_defconfig
@@ -87,6 +87,8 @@ CONFIG_ARCH_EMEV2=y
 CONFIG_ARCH_R7S72100=y
 CONFIG_ARCH_R8A73A4=y
 CONFIG_ARCH_R8A7740=y
+CONFIG_ARCH_R8A7743=y
+CONFIG_ARCH_R8A7745=y
 CONFIG_ARCH_R8A7778=y
 CONFIG_ARCH_R8A7779=y
 CONFIG_ARCH_R8A7790=y
-- 
2.7.0.rc3.207.g0ac5344

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

* [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v4.11
  2017-01-06 11:18 [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v4.11 Simon Horman
                   ` (3 preceding siblings ...)
  2017-01-06 11:18 ` [PATCH 4/4] ARM: multi_v7_defconfig: " Simon Horman
@ 2017-01-10  3:13 ` Olof Johansson
  4 siblings, 0 replies; 6+ messages in thread
From: Olof Johansson @ 2017-01-10  3:13 UTC (permalink / raw)
  To: linux-arm-kernel

On Fri, Jan 06, 2017 at 12:18:10PM +0100, Simon Horman wrote:
> Hi Olof, Hi Kevin, Hi Arnd,
> 
> Please consider these Renesas ARM based SoC defconfig updates for v4.11.
> 
> 
> The following changes since commit 7ce7d89f48834cefece7804d38fc5d85382edf77:
> 
>   Linux 4.10-rc1 (2016-12-25 16:13:08 -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.11
> 
> for you to fetch changes up to e37278d83e348eb53029452e65892780359b6bea:
> 
>   ARM: multi_v7_defconfig: Enable r8a774[35] SoCs (2017-01-03 10:44:04 +0100)
> 
> ----------------------------------------------------------------
> Renesas ARM Based SoC Defconfig Updates for v4.11
> 
> Enable:
> * Recently added Enable r8a774[35] SoCs
> * CMA for DMA to allow use of VIN with large frame sizes
> * CONFIG_VIDEO_ADV7604 to allow use of HDMI input

Merged into next/defconfig. Thanks.


-Olof

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

end of thread, other threads:[~2017-01-10  3:13 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-06 11:18 [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v4.11 Simon Horman
2017-01-06 11:18 ` [PATCH 1/4] ARM: shmobile: defconfig: Enable CONFIG_VIDEO_ADV7604 Simon Horman
2017-01-06 11:18 ` [PATCH 2/4] ARM: shmobile: defconfig: Enable CMA for DMA Simon Horman
2017-01-06 11:18 ` [PATCH 3/4] ARM: shmobile: defconfig: Enable r8a774[35] SoCs Simon Horman
2017-01-06 11:18 ` [PATCH 4/4] ARM: multi_v7_defconfig: " Simon Horman
2017-01-10  3:13 ` [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v4.11 Olof Johansson

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