* [PATCH 1/7] ARM: shmobile: lager: add gpio regulator support on defconfig
2013-12-24 6:03 [GIT PULL 0/7] Second Round of Renesas ARM Based SoC Defconfig Updates for v3.14 Simon Horman
@ 2013-12-24 6:03 ` Simon Horman
2013-12-24 6:03 ` [PATCH 2/7] ARM: shmobile: lager: fixup I2C device " Simon Horman
` (6 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Simon Horman @ 2013-12-24 6:03 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 | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/arm/configs/lager_defconfig b/arch/arm/configs/lager_defconfig
index 35bff5e..064b7cc 100644
--- a/arch/arm/configs/lager_defconfig
+++ b/arch/arm/configs/lager_defconfig
@@ -89,6 +89,7 @@ CONFIG_THERMAL=y
CONFIG_RCAR_THERMAL=y
CONFIG_REGULATOR=y
CONFIG_REGULATOR_FIXED_VOLTAGE=y
+CONFIG_REGULATOR_GPIO=y
CONFIG_DRM=y
CONFIG_DRM_RCAR_DU=y
# CONFIG_USB_SUPPORT is not set
--
1.8.4
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 2/7] ARM: shmobile: lager: fixup I2C device on defconfig
2013-12-24 6:03 [GIT PULL 0/7] Second Round of Renesas ARM Based SoC Defconfig Updates for v3.14 Simon Horman
2013-12-24 6:03 ` [PATCH 1/7] ARM: shmobile: lager: add gpio regulator support on defconfig Simon Horman
@ 2013-12-24 6:03 ` Simon Horman
2013-12-24 6:03 ` [PATCH 3/7] ARM: shmobile: genmai: Rename ARCH_SHMOBILE to ARCH_SHMOBILE_LEGACY Simon Horman
` (5 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Simon Horman @ 2013-12-24 6:03 UTC (permalink / raw)
To: linux-arm-kernel
From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
R-Car H2 needs I2C_CAR, not I2C_SH_MOBILE
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 | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/configs/lager_defconfig b/arch/arm/configs/lager_defconfig
index 064b7cc..d97ac5e 100644
--- a/arch/arm/configs/lager_defconfig
+++ b/arch/arm/configs/lager_defconfig
@@ -80,7 +80,7 @@ CONFIG_SERIAL_SH_SCI_CONSOLE=y
# CONFIG_HW_RANDOM is not set
CONFIG_I2C=y
CONFIG_I2C_GPIO=y
-CONFIG_I2C_SH_MOBILE=y
+CONFIG_I2C_RCAR=y
CONFIG_GPIO_SH_PFC=y
CONFIG_GPIOLIB=y
CONFIG_GPIO_RCAR=y
--
1.8.4
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 3/7] ARM: shmobile: genmai: Rename ARCH_SHMOBILE to ARCH_SHMOBILE_LEGACY
2013-12-24 6:03 [GIT PULL 0/7] Second Round of Renesas ARM Based SoC Defconfig Updates for v3.14 Simon Horman
2013-12-24 6:03 ` [PATCH 1/7] ARM: shmobile: lager: add gpio regulator support on defconfig Simon Horman
2013-12-24 6:03 ` [PATCH 2/7] ARM: shmobile: lager: fixup I2C device " Simon Horman
@ 2013-12-24 6:03 ` Simon Horman
2013-12-24 6:03 ` [PATCH 4/7] ARM: shmobile: Koelsch: enable Ether in defconfig Simon Horman
` (4 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Simon Horman @ 2013-12-24 6:03 UTC (permalink / raw)
To: linux-arm-kernel
From: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
The ARCH_SHMOBILE configuration option has been renamed to
ARCH_SHMOBILE_LEGACY. Update the defconfig accordingly.
Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Acked-by: Magnus Damm <damm@opensource.se>
[ horms+renesas at verge.net.au: Removed non-genmai changes which
have been squashed into "ARM: Rename ARCH_SHMOBILE to ARCH_SHMOBILE_LEGACY". ]
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
arch/arm/configs/genmai_defconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/configs/genmai_defconfig b/arch/arm/configs/genmai_defconfig
index 69b1531..aa0b704 100644
--- a/arch/arm/configs/genmai_defconfig
+++ b/arch/arm/configs/genmai_defconfig
@@ -12,7 +12,7 @@ CONFIG_SLAB=y
# CONFIG_BLK_DEV_BSG is not set
# CONFIG_IOSCHED_DEADLINE is not set
# CONFIG_IOSCHED_CFQ is not set
-CONFIG_ARCH_SHMOBILE=y
+CONFIG_ARCH_SHMOBILE_LEGACY=y
CONFIG_ARCH_R7S72100=y
CONFIG_MACH_GENMAI=y
# CONFIG_SH_TIMER_CMT is not set
--
1.8.4
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 4/7] ARM: shmobile: Koelsch: enable Ether in defconfig
2013-12-24 6:03 [GIT PULL 0/7] Second Round of Renesas ARM Based SoC Defconfig Updates for v3.14 Simon Horman
` (2 preceding siblings ...)
2013-12-24 6:03 ` [PATCH 3/7] ARM: shmobile: genmai: Rename ARCH_SHMOBILE to ARCH_SHMOBILE_LEGACY Simon Horman
@ 2013-12-24 6:03 ` Simon Horman
2013-12-24 6:03 ` [PATCH 5/7] ARM: shmobile: armadillo800eva: Enable backlight control " Simon Horman
` (3 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Simon Horman @ 2013-12-24 6:03 UTC (permalink / raw)
To: linux-arm-kernel
From: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Enable the Ether driver in 'koelsch_defconfig' along with DHCP autoconfiguration
and NFS root.
Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
arch/arm/configs/koelsch_defconfig | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/arch/arm/configs/koelsch_defconfig b/arch/arm/configs/koelsch_defconfig
index 825c16d..c59eab1 100644
--- a/arch/arm/configs/koelsch_defconfig
+++ b/arch/arm/configs/koelsch_defconfig
@@ -29,7 +29,27 @@ CONFIG_VFP=y
CONFIG_NEON=y
# CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set
CONFIG_PM_RUNTIME=y
+CONFIG_NET=y
+CONFIG_INET=y
+CONFIG_IP_PNP=y
+CONFIG_IP_PNP_DHCP=y
CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
+CONFIG_NETDEVICES=y
+# CONFIG_NET_VENDOR_ARC is not set
+# CONFIG_NET_CADENCE is not set
+# CONFIG_NET_VENDOR_BROADCOM is not set
+# CONFIG_NET_VENDOR_CIRRUS is not set
+# CONFIG_NET_VENDOR_FARADAY is not set
+# CONFIG_NET_VENDOR_INTEL is not set
+# CONFIG_NET_VENDOR_MARVELL is not set
+# CONFIG_NET_VENDOR_MICREL is not set
+# CONFIG_NET_VENDOR_NATSEMI is not set
+CONFIG_SH_ETH=y
+# CONFIG_NET_VENDOR_SEEQ is not set
+# CONFIG_NET_VENDOR_SMSC is not set
+# CONFIG_NET_VENDOR_STMICRO is not set
+# CONFIG_NET_VENDOR_VIA is not set
+# CONFIG_NET_VENDOR_WIZNET is not set
# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
# CONFIG_INPUT_MOUSE is not set
# CONFIG_LEGACY_PTYS is not set
@@ -49,6 +69,8 @@ CONFIG_LEDS_CLASS=y
CONFIG_TMPFS=y
CONFIG_CONFIGFS_FS=y
# CONFIG_MISC_FILESYSTEMS is not set
+CONFIG_NFS_FS=y
+CONFIG_ROOT_NFS=y
# CONFIG_ENABLE_WARN_DEPRECATED is not set
# CONFIG_ENABLE_MUST_CHECK is not set
# CONFIG_ARM_UNWIND is not set
--
1.8.4
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 5/7] ARM: shmobile: armadillo800eva: Enable backlight control in defconfig
2013-12-24 6:03 [GIT PULL 0/7] Second Round of Renesas ARM Based SoC Defconfig Updates for v3.14 Simon Horman
` (3 preceding siblings ...)
2013-12-24 6:03 ` [PATCH 4/7] ARM: shmobile: Koelsch: enable Ether in defconfig Simon Horman
@ 2013-12-24 6:03 ` Simon Horman
2013-12-24 6:03 ` [PATCH 6/7] ARM: shmobile: koelsch: Enable CONFIG_PACKET " Simon Horman
` (2 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Simon Horman @ 2013-12-24 6:03 UTC (permalink / raw)
To: linux-arm-kernel
From: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
The backlight is controlled by a PWM signal generated by the TPU.
Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
arch/arm/configs/armadillo800eva_defconfig | 3 +++
1 file changed, 3 insertions(+)
diff --git a/arch/arm/configs/armadillo800eva_defconfig b/arch/arm/configs/armadillo800eva_defconfig
index fae939d..6341e6e 100644
--- a/arch/arm/configs/armadillo800eva_defconfig
+++ b/arch/arm/configs/armadillo800eva_defconfig
@@ -105,6 +105,7 @@ CONFIG_FB=y
CONFIG_FB_SH_MOBILE_LCDC=y
CONFIG_FB_SH_MOBILE_HDMI=y
CONFIG_LCD_CLASS_DEVICE=y
+CONFIG_BACKLIGHT_PWM=y
CONFIG_FRAMEBUFFER_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
CONFIG_LOGO=y
@@ -130,6 +131,8 @@ CONFIG_DMADEVICES=y
CONFIG_SH_DMAE=y
CONFIG_UIO=y
CONFIG_UIO_PDRV_GENIRQ=y
+CONFIG_PWM=y
+CONFIG_PWM_RENESAS_TPU=y
# CONFIG_DNOTIFY is not set
CONFIG_MSDOS_FS=y
CONFIG_VFAT_FS=y
--
1.8.4
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 6/7] ARM: shmobile: koelsch: Enable CONFIG_PACKET in defconfig
2013-12-24 6:03 [GIT PULL 0/7] Second Round of Renesas ARM Based SoC Defconfig Updates for v3.14 Simon Horman
` (4 preceding siblings ...)
2013-12-24 6:03 ` [PATCH 5/7] ARM: shmobile: armadillo800eva: Enable backlight control " Simon Horman
@ 2013-12-24 6:03 ` Simon Horman
2013-12-24 6:03 ` [PATCH 7/7] ARM: shmobile: koelsch: Do not disable CONFIG_{INOTIFY_USER, UNIX} " Simon Horman
2013-12-29 21:25 ` [GIT PULL 0/7] Second Round of Renesas ARM Based SoC Defconfig Updates for v3.14 Olof Johansson
7 siblings, 0 replies; 9+ messages in thread
From: Simon Horman @ 2013-12-24 6:03 UTC (permalink / raw)
To: linux-arm-kernel
CONFIG_PACKET is required for the ISC dhcpd daemon function.
This change brings the koelsch defconfig into line with
other shmobile defconfigs.
Signed-off-by: Simon Horman <horms@verge.net.au>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
arch/arm/configs/koelsch_defconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/arm/configs/koelsch_defconfig b/arch/arm/configs/koelsch_defconfig
index c59eab1..ef79cbf 100644
--- a/arch/arm/configs/koelsch_defconfig
+++ b/arch/arm/configs/koelsch_defconfig
@@ -30,6 +30,7 @@ CONFIG_NEON=y
# CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set
CONFIG_PM_RUNTIME=y
CONFIG_NET=y
+CONFIG_PACKET=y
CONFIG_INET=y
CONFIG_IP_PNP=y
CONFIG_IP_PNP_DHCP=y
--
1.8.4
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 7/7] ARM: shmobile: koelsch: Do not disable CONFIG_{INOTIFY_USER, UNIX} in defconfig
2013-12-24 6:03 [GIT PULL 0/7] Second Round of Renesas ARM Based SoC Defconfig Updates for v3.14 Simon Horman
` (5 preceding siblings ...)
2013-12-24 6:03 ` [PATCH 6/7] ARM: shmobile: koelsch: Enable CONFIG_PACKET " Simon Horman
@ 2013-12-24 6:03 ` Simon Horman
2013-12-29 21:25 ` [GIT PULL 0/7] Second Round of Renesas ARM Based SoC Defconfig Updates for v3.14 Olof Johansson
7 siblings, 0 replies; 9+ messages in thread
From: Simon Horman @ 2013-12-24 6:03 UTC (permalink / raw)
To: linux-arm-kernel
CONFIG_INOTIFY_USER and CONFIG_UNIX are required for udev to function.
This change brings the koelsch defconfig into line with
other shmobile defconfigs.
Signed-off-by: Simon Horman <horms@verge.net.au>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
arch/arm/configs/koelsch_defconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/configs/koelsch_defconfig b/arch/arm/configs/koelsch_defconfig
index ef79cbf..acec6b8 100644
--- a/arch/arm/configs/koelsch_defconfig
+++ b/arch/arm/configs/koelsch_defconfig
@@ -31,6 +31,7 @@ CONFIG_NEON=y
CONFIG_PM_RUNTIME=y
CONFIG_NET=y
CONFIG_PACKET=y
+CONFIG_UNIX=y
CONFIG_INET=y
CONFIG_IP_PNP=y
CONFIG_IP_PNP_DHCP=y
@@ -66,7 +67,6 @@ CONFIG_NEW_LEDS=y
CONFIG_LEDS_CLASS=y
# CONFIG_IOMMU_SUPPORT is not set
# CONFIG_DNOTIFY is not set
-# CONFIG_INOTIFY_USER is not set
CONFIG_TMPFS=y
CONFIG_CONFIGFS_FS=y
# CONFIG_MISC_FILESYSTEMS is not set
--
1.8.4
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [GIT PULL 0/7] Second Round of Renesas ARM Based SoC Defconfig Updates for v3.14
2013-12-24 6:03 [GIT PULL 0/7] Second Round of Renesas ARM Based SoC Defconfig Updates for v3.14 Simon Horman
` (6 preceding siblings ...)
2013-12-24 6:03 ` [PATCH 7/7] ARM: shmobile: koelsch: Do not disable CONFIG_{INOTIFY_USER, UNIX} " Simon Horman
@ 2013-12-29 21:25 ` Olof Johansson
7 siblings, 0 replies; 9+ messages in thread
From: Olof Johansson @ 2013-12-29 21:25 UTC (permalink / raw)
To: linux-arm-kernel
On Tue, Dec 24, 2013 at 03:03:22PM +0900, Simon Horman wrote:
> Hi Kevin, Hi Olof, Hi Arnd,
>
> please consider this second round of Renesas ARM based SoC defconfig
> updates for v3.14.
>
> It is based on the first round of such updates,
> tagged as renesas-defconfig-for-v3.14, which you have already pulled.
>
>
> The following changes since commit 577092b3d11530acd8467074f6ea7e2dd36b5028:
>
> ARM: shmobile: kzm9d: Enable AUTO_ZRELADDR in defconfig (2013-11-24 15:13:43 +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.14
Pulled, thanks.
-Olof
^ permalink raw reply [flat|nested] 9+ messages in thread