linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL 0/4] Second Round of Renesas ARM Based SoC Defconfig Updates for v3.15
@ 2014-02-13  8:04 Simon Horman
  2014-02-13  8:04 ` [PATCH 1/4] ARM: shmobile: koelsch: Enable I2C in defconfig Simon Horman
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Simon Horman @ 2014-02-13  8:04 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Olof, Hi Kevin, Hi Arnd,

please consider this second round of Renesas ARM based SoC defconfig
updates for v3.15.

This pull-request is based on the first round of such updates,
tagged as renesas-defconfig-for-v3.15, which I have previously sent
a pull-request for.


The following changes since commit 0771ddff31186836f62a20c42e7958bd37f7b4ed:

  ARM: shmobile: ape6evm: enable CONFIG_DEVTMPFS in defconfig (2014-02-04 10:26:04 +0900)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git tags/renesas-defconfig2-for-v3.15

for you to fetch changes up to 8f33d31ee270f2a6bcc661815a520f76565674c3:

  ARM: shmobile: genmai defconfig: Enable RSPI (2014-02-06 20:53:59 +0900)

----------------------------------------------------------------
Second Round of Renesas ARM Based SoC Defconfig Updates for v3.15

* r7s72100 SoC (RZ/A1H) based Genmai board
  - Enable RSPI

* r8a7790 (R-Car H2) based Koelsch board
  - Enable I2C, RSPI and MTD_M25P80

* r8a7779 (R-Car H1) based Lager board
  - Enable sound

----------------------------------------------------------------
Geert Uytterhoeven (2):
      ARM: shmobile: koelsch defconfig: Enable RSPI and MTD_M25P80
      ARM: shmobile: genmai defconfig: Enable RSPI

Kuninori Morimoto (1):
      ARM: shmobile: lager: add sound support on defconfig

Valentine Barshak (1):
      ARM: shmobile: koelsch: Enable I2C in defconfig

 arch/arm/configs/genmai_defconfig  | 2 ++
 arch/arm/configs/koelsch_defconfig | 6 ++++++
 arch/arm/configs/lager_defconfig   | 4 ++++
 3 files changed, 12 insertions(+)

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

* [PATCH 1/4] ARM: shmobile: koelsch: Enable I2C in defconfig
  2014-02-13  8:04 [GIT PULL 0/4] Second Round of Renesas ARM Based SoC Defconfig Updates for v3.15 Simon Horman
@ 2014-02-13  8:04 ` Simon Horman
  2014-02-13  8:04 ` [PATCH 2/4] ARM: shmobile: lager: add sound support on defconfig Simon Horman
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Simon Horman @ 2014-02-13  8:04 UTC (permalink / raw)
  To: linux-arm-kernel

From: Valentine Barshak <valentine.barshak@cogentembedded.com>

This enables I2C support in koelsch_defconfig.

Signed-off-by: Valentine Barshak <valentine.barshak@cogentembedded.com>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
 arch/arm/configs/koelsch_defconfig | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/arch/arm/configs/koelsch_defconfig b/arch/arm/configs/koelsch_defconfig
index 3015797..c3b3c9d 100644
--- a/arch/arm/configs/koelsch_defconfig
+++ b/arch/arm/configs/koelsch_defconfig
@@ -62,6 +62,8 @@ CONFIG_SH_ETH=y
 CONFIG_SERIAL_SH_SCI=y
 CONFIG_SERIAL_SH_SCI_NR_UARTS=20
 CONFIG_SERIAL_SH_SCI_CONSOLE=y
+CONFIG_I2C=y
+CONFIG_I2C_RCAR=y
 # CONFIG_HWMON is not set
 CONFIG_THERMAL=y
 CONFIG_RCAR_THERMAL=y
-- 
1.8.5.2

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

* [PATCH 2/4] ARM: shmobile: lager: add sound support on defconfig
  2014-02-13  8:04 [GIT PULL 0/4] Second Round of Renesas ARM Based SoC Defconfig Updates for v3.15 Simon Horman
  2014-02-13  8:04 ` [PATCH 1/4] ARM: shmobile: koelsch: Enable I2C in defconfig Simon Horman
@ 2014-02-13  8:04 ` Simon Horman
  2014-02-13  8:04 ` [PATCH 3/4] ARM: shmobile: koelsch defconfig: Enable RSPI and MTD_M25P80 Simon Horman
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Simon Horman @ 2014-02-13  8:04 UTC (permalink / raw)
  To: linux-arm-kernel

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

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
 arch/arm/configs/lager_defconfig | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/arch/arm/configs/lager_defconfig b/arch/arm/configs/lager_defconfig
index 3e7e0ae..b17f487 100644
--- a/arch/arm/configs/lager_defconfig
+++ b/arch/arm/configs/lager_defconfig
@@ -105,6 +105,10 @@ CONFIG_VIDEO_RCAR_VIN=y
 CONFIG_VIDEO_ADV7180=y
 CONFIG_DRM=y
 CONFIG_DRM_RCAR_DU=y
+CONFIG_SOUND=y
+CONFIG_SND=y
+CONFIG_SND_SOC=y
+CONFIG_SND_SOC_RCAR=y
 # CONFIG_USB_SUPPORT is not set
 CONFIG_MMC=y
 CONFIG_MMC_SDHI=y
-- 
1.8.5.2

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

* [PATCH 3/4] ARM: shmobile: koelsch defconfig: Enable RSPI and MTD_M25P80
  2014-02-13  8:04 [GIT PULL 0/4] Second Round of Renesas ARM Based SoC Defconfig Updates for v3.15 Simon Horman
  2014-02-13  8:04 ` [PATCH 1/4] ARM: shmobile: koelsch: Enable I2C in defconfig Simon Horman
  2014-02-13  8:04 ` [PATCH 2/4] ARM: shmobile: lager: add sound support on defconfig Simon Horman
@ 2014-02-13  8:04 ` Simon Horman
  2014-02-13  8:04 ` [PATCH 4/4] ARM: shmobile: genmai defconfig: Enable RSPI Simon Horman
  2014-02-20  9:27 ` [GIT PULL 0/4] Second Round of Renesas ARM Based SoC Defconfig Updates for v3.15 Olof Johansson
  4 siblings, 0 replies; 6+ messages in thread
From: Simon Horman @ 2014-02-13  8:04 UTC (permalink / raw)
  To: linux-arm-kernel

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

This enables support for the Spansion s25fl512s SPI FLASH on QSPI.

Signed-off-by: Geert Uytterhoeven <geert+renesas@linux-m68k.org>
Acked-by: Magnus Damm <damm@opensource.se>
[horms+renesas at verge.net.au: resolved conflict]
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
 arch/arm/configs/koelsch_defconfig | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/arch/arm/configs/koelsch_defconfig b/arch/arm/configs/koelsch_defconfig
index c3b3c9d..9561139 100644
--- a/arch/arm/configs/koelsch_defconfig
+++ b/arch/arm/configs/koelsch_defconfig
@@ -40,6 +40,8 @@ CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
 CONFIG_BLK_DEV_SD=y
 CONFIG_ATA=y
 CONFIG_SATA_RCAR=y
+CONFIG_MTD=y
+CONFIG_MTD_M25P80=y
 CONFIG_NETDEVICES=y
 # CONFIG_NET_VENDOR_ARC is not set
 # CONFIG_NET_CADENCE is not set
@@ -64,6 +66,8 @@ CONFIG_SERIAL_SH_SCI_NR_UARTS=20
 CONFIG_SERIAL_SH_SCI_CONSOLE=y
 CONFIG_I2C=y
 CONFIG_I2C_RCAR=y
+CONFIG_SPI=y
+CONFIG_SPI_RSPI=y
 # CONFIG_HWMON is not set
 CONFIG_THERMAL=y
 CONFIG_RCAR_THERMAL=y
-- 
1.8.5.2

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

* [PATCH 4/4] ARM: shmobile: genmai defconfig: Enable RSPI
  2014-02-13  8:04 [GIT PULL 0/4] Second Round of Renesas ARM Based SoC Defconfig Updates for v3.15 Simon Horman
                   ` (2 preceding siblings ...)
  2014-02-13  8:04 ` [PATCH 3/4] ARM: shmobile: koelsch defconfig: Enable RSPI and MTD_M25P80 Simon Horman
@ 2014-02-13  8:04 ` Simon Horman
  2014-02-20  9:27 ` [GIT PULL 0/4] Second Round of Renesas ARM Based SoC Defconfig Updates for v3.15 Olof Johansson
  4 siblings, 0 replies; 6+ messages in thread
From: Simon Horman @ 2014-02-13  8:04 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/genmai_defconfig | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/arch/arm/configs/genmai_defconfig b/arch/arm/configs/genmai_defconfig
index c56a7ff..5ee6ac0 100644
--- a/arch/arm/configs/genmai_defconfig
+++ b/arch/arm/configs/genmai_defconfig
@@ -81,6 +81,8 @@ CONFIG_SERIAL_SH_SCI_NR_UARTS=10
 CONFIG_SERIAL_SH_SCI_CONSOLE=y
 # CONFIG_HW_RANDOM is not set
 CONFIG_I2C_SH_MOBILE=y
+CONFIG_SPI=y
+CONFIG_SPI_RSPI=y
 # CONFIG_HWMON is not set
 CONFIG_THERMAL=y
 CONFIG_RCAR_THERMAL=y
-- 
1.8.5.2

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

* [GIT PULL 0/4] Second Round of Renesas ARM Based SoC Defconfig Updates for v3.15
  2014-02-13  8:04 [GIT PULL 0/4] Second Round of Renesas ARM Based SoC Defconfig Updates for v3.15 Simon Horman
                   ` (3 preceding siblings ...)
  2014-02-13  8:04 ` [PATCH 4/4] ARM: shmobile: genmai defconfig: Enable RSPI Simon Horman
@ 2014-02-20  9:27 ` Olof Johansson
  4 siblings, 0 replies; 6+ messages in thread
From: Olof Johansson @ 2014-02-20  9:27 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, Feb 13, 2014 at 05:04:22PM +0900, Simon Horman wrote:
> Hi Olof, Hi Kevin, Hi Arnd,
> 
> please consider this second round of Renesas ARM based SoC defconfig
> updates for v3.15.
> 
> This pull-request is based on the first round of such updates,
> tagged as renesas-defconfig-for-v3.15, which I have previously sent
> a pull-request for.
> 
> 
> The following changes since commit 0771ddff31186836f62a20c42e7958bd37f7b4ed:
> 
>   ARM: shmobile: ape6evm: enable CONFIG_DEVTMPFS in defconfig (2014-02-04 10:26:04 +0900)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git tags/renesas-defconfig2-for-v3.15

Pulled, thanks.


-Olof

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

end of thread, other threads:[~2014-02-20  9:27 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-13  8:04 [GIT PULL 0/4] Second Round of Renesas ARM Based SoC Defconfig Updates for v3.15 Simon Horman
2014-02-13  8:04 ` [PATCH 1/4] ARM: shmobile: koelsch: Enable I2C in defconfig Simon Horman
2014-02-13  8:04 ` [PATCH 2/4] ARM: shmobile: lager: add sound support on defconfig Simon Horman
2014-02-13  8:04 ` [PATCH 3/4] ARM: shmobile: koelsch defconfig: Enable RSPI and MTD_M25P80 Simon Horman
2014-02-13  8:04 ` [PATCH 4/4] ARM: shmobile: genmai defconfig: Enable RSPI Simon Horman
2014-02-20  9:27 ` [GIT PULL 0/4] Second Round of Renesas ARM Based SoC Defconfig Updates for v3.15 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).