linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v3.16
@ 2014-04-16  6:03 Simon Horman
  2014-04-16  6:03 ` [PATCH 1/7] ARM: shmobile: multiplatform: Enable MSIOF in defconfig Simon Horman
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: Simon Horman @ 2014-04-16  6:03 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Olof, Hi Kevin, Hi Arnd,

Please consider these Renesas ARM based SoC defconfig updates for v3.16.


The following changes since commit c9eaa447e77efe77b7fa4c953bd62de8297fd6c5:

  Linux 3.15-rc1 (2014-04-13 14:18:35 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git tags/renesas-defconfig-for-v3.16

for you to fetch changes up to 1d59eb190e3dc575c7bbee4a163c3facd0de2ed9:

  ARM: shmobile: Enable USB [EO]HCI HCD support in shmobile_defconfig (2014-04-14 11:23:55 +0900)

----------------------------------------------------------------
Renesas ARM Based SoC Defconfig Updates for v3.16

SH Mobile Multi-Platform
* Enable USB [EO]HCI HCD, VSP1, HIGHMEM, USBHS, I2C_SH_MOBILE,
  EEPROM_AT24 and MSIOF

----------------------------------------------------------------
Geert Uytterhoeven (1):
      ARM: shmobile: multiplatform: Enable MSIOF in defconfig

Magnus Damm (4):
      ARM: shmobile: Include i2c-shmobile.c in shmobile_defconfig
      ARM: shmobile: Include at24.c in shmobile_defconfig
      ARM: shmobile: Enable HIGHMEM in shmobile_defconfig
      ARM: shmobile: Enable VSP1 in shmobile_defconfig

Simon Horman (1):
      ARM: shmobile: Enable USB [EO]HCI HCD support in shmobile_defconfig

Ulrich Hecht (1):
      ARM: shmobile: Enable USBHS gadget support in shmobile_defconfig

 arch/arm/configs/shmobile_defconfig | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

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

* [PATCH 1/7] ARM: shmobile: multiplatform: Enable MSIOF in defconfig
  2014-04-16  6:03 [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v3.16 Simon Horman
@ 2014-04-16  6:03 ` Simon Horman
  2014-04-16  6:03 ` [PATCH 2/7] ARM: shmobile: Include i2c-shmobile.c in shmobile_defconfig Simon Horman
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Simon Horman @ 2014-04-16  6:03 UTC (permalink / raw)
  To: linux-arm-kernel

From: Geert Uytterhoeven <geert+renesas@linux-m68k.org>

Signed-off-by: Geert Uytterhoeven <geert+renesas@linux-m68k.org>
Acked-by: Magnus Damm <damm@opensource.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 83b0725..2a27d46 100644
--- a/arch/arm/configs/shmobile_defconfig
+++ b/arch/arm/configs/shmobile_defconfig
@@ -78,6 +78,7 @@ CONFIG_I2C_GPIO=y
 CONFIG_I2C_RCAR=y
 CONFIG_SPI=y
 CONFIG_SPI_RSPI=y
+CONFIG_SPI_SH_MSIOF=y
 CONFIG_GPIO_EM=y
 CONFIG_GPIO_RCAR=y
 # CONFIG_HWMON is not set
-- 
1.8.5.2

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

* [PATCH 2/7] ARM: shmobile: Include i2c-shmobile.c in shmobile_defconfig
  2014-04-16  6:03 [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v3.16 Simon Horman
  2014-04-16  6:03 ` [PATCH 1/7] ARM: shmobile: multiplatform: Enable MSIOF in defconfig Simon Horman
@ 2014-04-16  6:03 ` Simon Horman
  2014-04-16  6:03 ` [PATCH 3/7] ARM: shmobile: Include at24.c " Simon Horman
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Simon Horman @ 2014-04-16  6:03 UTC (permalink / raw)
  To: linux-arm-kernel

From: Magnus Damm <damm@opensource.se>

Many SoCs include I2C controller instances compatible with
the i2c-shmobile.c driver. To increase hardware support enable
the driver in the shmobile_defconfig multiplatform configuration.

Signed-off-by: Magnus Damm <damm@opensource.se>
Acked-by: Wolfram Sang <wsa@the-dreams.de>
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 2a27d46..d96133a 100644
--- a/arch/arm/configs/shmobile_defconfig
+++ b/arch/arm/configs/shmobile_defconfig
@@ -75,6 +75,7 @@ CONFIG_SERIAL_SH_SCI=y
 CONFIG_SERIAL_SH_SCI_NR_UARTS=20
 CONFIG_SERIAL_SH_SCI_CONSOLE=y
 CONFIG_I2C_GPIO=y
+CONFIG_I2C_SH_MOBILE=y
 CONFIG_I2C_RCAR=y
 CONFIG_SPI=y
 CONFIG_SPI_RSPI=y
-- 
1.8.5.2

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

* [PATCH 3/7] ARM: shmobile: Include at24.c in shmobile_defconfig
  2014-04-16  6:03 [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v3.16 Simon Horman
  2014-04-16  6:03 ` [PATCH 1/7] ARM: shmobile: multiplatform: Enable MSIOF in defconfig Simon Horman
  2014-04-16  6:03 ` [PATCH 2/7] ARM: shmobile: Include i2c-shmobile.c in shmobile_defconfig Simon Horman
@ 2014-04-16  6:03 ` Simon Horman
  2014-04-16  6:03 ` [PATCH 4/7] ARM: shmobile: Enable USBHS gadget support " Simon Horman
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Simon Horman @ 2014-04-16  6:03 UTC (permalink / raw)
  To: linux-arm-kernel

From: Magnus Damm <damm@opensource.se>

The Koelsch board includes an at24-compatible EEPROM hooked up via I2C.
To increase hardware support enable the driver in the shmobile_defconfig
multiplatform configuration.

Signed-off-by: Magnus Damm <damm@opensource.se>
Acked-by: Wolfram Sang <wsa@the-dreams.de>
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 d96133a..146ee70 100644
--- a/arch/arm/configs/shmobile_defconfig
+++ b/arch/arm/configs/shmobile_defconfig
@@ -43,6 +43,7 @@ CONFIG_DEVTMPFS=y
 CONFIG_DEVTMPFS_MOUNT=y
 CONFIG_MTD=y
 CONFIG_MTD_M25P80=y
+CONFIG_EEPROM_AT24=y
 CONFIG_BLK_DEV_SD=y
 CONFIG_ATA=y
 CONFIG_SATA_RCAR=y
-- 
1.8.5.2

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

* [PATCH 4/7] ARM: shmobile: Enable USBHS gadget support in shmobile_defconfig
  2014-04-16  6:03 [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v3.16 Simon Horman
                   ` (2 preceding siblings ...)
  2014-04-16  6:03 ` [PATCH 3/7] ARM: shmobile: Include at24.c " Simon Horman
@ 2014-04-16  6:03 ` Simon Horman
  2014-04-16  6:03 ` [PATCH 5/7] ARM: shmobile: Enable HIGHMEM " Simon Horman
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Simon Horman @ 2014-04-16  6:03 UTC (permalink / raw)
  To: linux-arm-kernel

From: Ulrich Hecht <ulrich.hecht@gmail.com>

The renesas_usbhs driver provides USB gadget support for most Renesas
platforms. To increase hardware support enable the driver in the
shmobile_defconfig multiplatform configuration.

Signed-off-by: Ulrich Hecht <ulrich.hecht@gmail.com>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
 arch/arm/configs/shmobile_defconfig | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/arch/arm/configs/shmobile_defconfig b/arch/arm/configs/shmobile_defconfig
index 146ee70..c10e626 100644
--- a/arch/arm/configs/shmobile_defconfig
+++ b/arch/arm/configs/shmobile_defconfig
@@ -103,7 +103,11 @@ CONFIG_SOUND=y
 CONFIG_SND=y
 CONFIG_SND_SOC=y
 CONFIG_SND_SOC_RCAR=y
+CONFIG_USB=y
 CONFIG_USB_RCAR_GEN2_PHY=y
+CONFIG_USB_RENESAS_USBHS=y
+CONFIG_USB_GADGET=y
+CONFIG_USB_RENESAS_USBHS_UDC=y
 CONFIG_MMC=y
 CONFIG_MMC_SDHI=y
 CONFIG_MMC_SH_MMCIF=y
-- 
1.8.5.2

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

* [PATCH 5/7] ARM: shmobile: Enable HIGHMEM in shmobile_defconfig
  2014-04-16  6:03 [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v3.16 Simon Horman
                   ` (3 preceding siblings ...)
  2014-04-16  6:03 ` [PATCH 4/7] ARM: shmobile: Enable USBHS gadget support " Simon Horman
@ 2014-04-16  6:03 ` Simon Horman
  2014-04-16  6:03 ` [PATCH 6/7] ARM: shmobile: Enable VSP1 " Simon Horman
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Simon Horman @ 2014-04-16  6:03 UTC (permalink / raw)
  To: linux-arm-kernel

From: Magnus Damm <damm@opensource.se>

Many mach-shmobile hardware platforms include support for more
than 1GiB of RAM. Enable HIGHMEM by default to allow use of
larger amounts of memory.

Signed-off-by: Magnus Damm <damm@opensource.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 c10e626..b73a038 100644
--- a/arch/arm/configs/shmobile_defconfig
+++ b/arch/arm/configs/shmobile_defconfig
@@ -25,6 +25,7 @@ CONFIG_SCHED_MC=y
 CONFIG_HAVE_ARM_ARCH_TIMER=y
 CONFIG_NR_CPUS=8
 CONFIG_AEABI=y
+CONFIG_HIGHMEM=y
 CONFIG_ZBOOT_ROM_TEXT=0x0
 CONFIG_ZBOOT_ROM_BSS=0x0
 CONFIG_ARM_APPENDED_DTB=y
-- 
1.8.5.2

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

* [PATCH 6/7] ARM: shmobile: Enable VSP1 in shmobile_defconfig
  2014-04-16  6:03 [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v3.16 Simon Horman
                   ` (4 preceding siblings ...)
  2014-04-16  6:03 ` [PATCH 5/7] ARM: shmobile: Enable HIGHMEM " Simon Horman
@ 2014-04-16  6:03 ` Simon Horman
  2014-04-16  6:03 ` [PATCH 7/7] ARM: shmobile: Enable USB [EO]HCI HCD support " Simon Horman
  2014-05-05 20:42 ` [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v3.16 Olof Johansson
  7 siblings, 0 replies; 9+ messages in thread
From: Simon Horman @ 2014-04-16  6:03 UTC (permalink / raw)
  To: linux-arm-kernel

From: Magnus Damm <damm@opensource.se>

Both r8a7790 and r8a7791 have multiple on-chip VSP1 devices, so
enable the VSP1 driver by default in the shmobile_defconfig.

Signed-off-by: Magnus Damm <damm@opensource.se>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
 arch/arm/configs/shmobile_defconfig | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/arch/arm/configs/shmobile_defconfig b/arch/arm/configs/shmobile_defconfig
index b73a038..8fb30b0 100644
--- a/arch/arm/configs/shmobile_defconfig
+++ b/arch/arm/configs/shmobile_defconfig
@@ -92,10 +92,14 @@ CONFIG_REGULATOR_FIXED_VOLTAGE=y
 CONFIG_REGULATOR_GPIO=y
 CONFIG_MEDIA_SUPPORT=y
 CONFIG_MEDIA_CAMERA_SUPPORT=y
+CONFIG_MEDIA_CONTROLLER=y
+CONFIG_VIDEO_V4L2_SUBDEV_API=y
 CONFIG_V4L_PLATFORM_DRIVERS=y
 CONFIG_SOC_CAMERA=y
 CONFIG_SOC_CAMERA_PLATFORM=y
 CONFIG_VIDEO_RCAR_VIN=y
+CONFIG_V4L_MEM2MEM_DRIVERS=y
+CONFIG_VIDEO_RENESAS_VSP1=y
 # CONFIG_MEDIA_SUBDRV_AUTOSELECT is not set
 CONFIG_VIDEO_ADV7180=y
 CONFIG_DRM=y
-- 
1.8.5.2

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

* [PATCH 7/7] ARM: shmobile: Enable USB [EO]HCI HCD support in shmobile_defconfig
  2014-04-16  6:03 [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v3.16 Simon Horman
                   ` (5 preceding siblings ...)
  2014-04-16  6:03 ` [PATCH 6/7] ARM: shmobile: Enable VSP1 " Simon Horman
@ 2014-04-16  6:03 ` Simon Horman
  2014-05-05 20:42 ` [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v3.16 Olof Johansson
  7 siblings, 0 replies; 9+ messages in thread
From: Simon Horman @ 2014-04-16  6:03 UTC (permalink / raw)
  To: linux-arm-kernel

The USB [EO]HCI HCD drivers provide USB host support for Renesas
R-Car Gen2 platforms. To increase hardware support enable the driver in the
shmobile_defconfig multiplatform configuration.

Acked-by: Magnus Damm <damm@opensource.se>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
 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 8fb30b0..6d6437c 100644
--- a/arch/arm/configs/shmobile_defconfig
+++ b/arch/arm/configs/shmobile_defconfig
@@ -110,6 +110,8 @@ CONFIG_SND_SOC=y
 CONFIG_SND_SOC_RCAR=y
 CONFIG_USB=y
 CONFIG_USB_RCAR_GEN2_PHY=y
+CONFIG_USB_EHCI_HCD=y
+CONFIG_USB_OHCI_HCD=y
 CONFIG_USB_RENESAS_USBHS=y
 CONFIG_USB_GADGET=y
 CONFIG_USB_RENESAS_USBHS_UDC=y
-- 
1.8.5.2

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

* [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v3.16
  2014-04-16  6:03 [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v3.16 Simon Horman
                   ` (6 preceding siblings ...)
  2014-04-16  6:03 ` [PATCH 7/7] ARM: shmobile: Enable USB [EO]HCI HCD support " Simon Horman
@ 2014-05-05 20:42 ` Olof Johansson
  7 siblings, 0 replies; 9+ messages in thread
From: Olof Johansson @ 2014-05-05 20:42 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, Apr 16, 2014 at 03:03:05PM +0900, Simon Horman wrote:
> Hi Olof, Hi Kevin, Hi Arnd,
> 
> Please consider these Renesas ARM based SoC defconfig updates for v3.16.
> 
> 
> The following changes since commit c9eaa447e77efe77b7fa4c953bd62de8297fd6c5:
> 
>   Linux 3.15-rc1 (2014-04-13 14:18:35 -0700)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git tags/renesas-defconfig-for-v3.16
> 
> for you to fetch changes up to 1d59eb190e3dc575c7bbee4a163c3facd0de2ed9:
> 
>   ARM: shmobile: Enable USB [EO]HCI HCD support in shmobile_defconfig (2014-04-14 11:23:55 +0900)

Merged, thanks.

-Olof

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

end of thread, other threads:[~2014-05-05 20:42 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-16  6:03 [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v3.16 Simon Horman
2014-04-16  6:03 ` [PATCH 1/7] ARM: shmobile: multiplatform: Enable MSIOF in defconfig Simon Horman
2014-04-16  6:03 ` [PATCH 2/7] ARM: shmobile: Include i2c-shmobile.c in shmobile_defconfig Simon Horman
2014-04-16  6:03 ` [PATCH 3/7] ARM: shmobile: Include at24.c " Simon Horman
2014-04-16  6:03 ` [PATCH 4/7] ARM: shmobile: Enable USBHS gadget support " Simon Horman
2014-04-16  6:03 ` [PATCH 5/7] ARM: shmobile: Enable HIGHMEM " Simon Horman
2014-04-16  6:03 ` [PATCH 6/7] ARM: shmobile: Enable VSP1 " Simon Horman
2014-04-16  6:03 ` [PATCH 7/7] ARM: shmobile: Enable USB [EO]HCI HCD support " Simon Horman
2014-05-05 20:42 ` [GIT PULL] Renesas ARM Based SoC Defconfig Updates for v3.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;
as well as URLs for NNTP newsgroup(s).