* [PATCH 0/3] ARM: shmobile: defconfig: Misc updates
@ 2015-12-10 15:15 Geert Uytterhoeven
2015-12-10 15:16 ` [PATCH 1/3] ARM: shmobile: defconfig: Drop useless CONFIG_USB_RCAR_PHY=y Geert Uytterhoeven
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Geert Uytterhoeven @ 2015-12-10 15:15 UTC (permalink / raw)
To: linux-arm-kernel
Hi Simon, Magnus,
Here are a few updates for the shmobile defconfig.
If these are accepted, I'll send out equivalent updates for
multi_v7_defconfig.
Geert Uytterhoeven (3):
ARM: shmobile: defconfig: Drop useless CONFIG_USB_RCAR_PHY=y
ARM: shmobile: defconfig: Enable missing support based on DTSes
ARM: shmobile: defconfig: Enable frame buffer console for
armadillo800eva
arch/arm/configs/shmobile_defconfig | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
--
1.9.1
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/3] ARM: shmobile: defconfig: Drop useless CONFIG_USB_RCAR_PHY=y
2015-12-10 15:15 [PATCH 0/3] ARM: shmobile: defconfig: Misc updates Geert Uytterhoeven
@ 2015-12-10 15:16 ` Geert Uytterhoeven
2015-12-10 15:16 ` [PATCH 2/3] ARM: shmobile: defconfig: Enable missing support based on DTSes Geert Uytterhoeven
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Geert Uytterhoeven @ 2015-12-10 15:16 UTC (permalink / raw)
To: linux-arm-kernel
The Renesas R-Car (Gen1) USB PHY driver (which is being removed) does
not support DT, and is thus useless in a Renesas ARM multi-platform
kernel.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
arch/arm/configs/shmobile_defconfig | 1 -
1 file changed, 1 deletion(-)
diff --git a/arch/arm/configs/shmobile_defconfig b/arch/arm/configs/shmobile_defconfig
index 70d718e088a65fed..9a30c2c464c946ca 100644
--- a/arch/arm/configs/shmobile_defconfig
+++ b/arch/arm/configs/shmobile_defconfig
@@ -162,7 +162,6 @@ CONFIG_USB_EHCI_HCD=y
CONFIG_USB_OHCI_HCD=y
CONFIG_USB_R8A66597_HCD=y
CONFIG_USB_RENESAS_USBHS=y
-CONFIG_USB_RCAR_PHY=y
CONFIG_USB_GADGET=y
CONFIG_USB_RENESAS_USBHS_UDC=y
CONFIG_USB_ETH=y
--
1.9.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 2/3] ARM: shmobile: defconfig: Enable missing support based on DTSes
2015-12-10 15:15 [PATCH 0/3] ARM: shmobile: defconfig: Misc updates Geert Uytterhoeven
2015-12-10 15:16 ` [PATCH 1/3] ARM: shmobile: defconfig: Drop useless CONFIG_USB_RCAR_PHY=y Geert Uytterhoeven
@ 2015-12-10 15:16 ` Geert Uytterhoeven
2015-12-10 15:16 ` [PATCH 3/3] ARM: shmobile: defconfig: Enable frame buffer console for armadillo800eva Geert Uytterhoeven
2015-12-11 23:07 ` [PATCH 0/3] ARM: shmobile: defconfig: Misc updates Simon Horman
3 siblings, 0 replies; 5+ messages in thread
From: Geert Uytterhoeven @ 2015-12-10 15:16 UTC (permalink / raw)
To: linux-arm-kernel
Enable all missing support, extracted from the various Renesas ARM DTSes
using linux-config-from-dt.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
arch/arm/configs/shmobile_defconfig | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/arch/arm/configs/shmobile_defconfig b/arch/arm/configs/shmobile_defconfig
index 9a30c2c464c946ca..09a83d1411cc598b 100644
--- a/arch/arm/configs/shmobile_defconfig
+++ b/arch/arm/configs/shmobile_defconfig
@@ -52,6 +52,8 @@ CONFIG_UNIX=y
CONFIG_INET=y
CONFIG_IP_PNP=y
CONFIG_IP_PNP_DHCP=y
+CONFIG_CAN=y
+CONFIG_CAN_RCAR=y
CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
CONFIG_DEVTMPFS=y
CONFIG_DEVTMPFS_MOUNT=y
@@ -98,6 +100,7 @@ CONFIG_SERIAL_SH_SCI=y
CONFIG_SERIAL_SH_SCI_NR_UARTS
CONFIG_SERIAL_SH_SCI_CONSOLE=y
CONFIG_I2C_CHARDEV=y
+CONFIG_I2C_EMEV2=y
CONFIG_I2C_GPIO=y
CONFIG_I2C_RIIC=y
CONFIG_I2C_SH_MOBILE=y
@@ -134,6 +137,7 @@ CONFIG_SOC_CAMERA=y
CONFIG_SOC_CAMERA_PLATFORM=y
CONFIG_VIDEO_RCAR_VIN=y
CONFIG_V4L_MEM2MEM_DRIVERS=y
+CONFIG_VIDEO_RENESAS_JPU=y
CONFIG_VIDEO_RENESAS_VSP1=y
# CONFIG_MEDIA_SUBDRV_AUTOSELECT is not set
CONFIG_VIDEO_ADV7180=y
@@ -175,9 +179,11 @@ CONFIG_RTC_CLASS=y
CONFIG_RTC_DRV_RS5C372=y
CONFIG_RTC_DRV_S35390A=y
CONFIG_RTC_DRV_RX8581=y
+CONFIG_RTC_DRV_DA9063=y
CONFIG_DMADEVICES=y
CONFIG_SH_DMAE=y
CONFIG_RCAR_DMAC=y
+CONFIG_RENESAS_USB_DMAC=y
# CONFIG_IOMMU_SUPPORT is not set
CONFIG_IIO=y
CONFIG_AK8975=y
--
1.9.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 3/3] ARM: shmobile: defconfig: Enable frame buffer console for armadillo800eva
2015-12-10 15:15 [PATCH 0/3] ARM: shmobile: defconfig: Misc updates Geert Uytterhoeven
2015-12-10 15:16 ` [PATCH 1/3] ARM: shmobile: defconfig: Drop useless CONFIG_USB_RCAR_PHY=y Geert Uytterhoeven
2015-12-10 15:16 ` [PATCH 2/3] ARM: shmobile: defconfig: Enable missing support based on DTSes Geert Uytterhoeven
@ 2015-12-10 15:16 ` Geert Uytterhoeven
2015-12-11 23:07 ` [PATCH 0/3] ARM: shmobile: defconfig: Misc updates Simon Horman
3 siblings, 0 replies; 5+ messages in thread
From: Geert Uytterhoeven @ 2015-12-10 15:16 UTC (permalink / raw)
To: linux-arm-kernel
Enabling the frame buffer device on armadillo800eva requires the board
staging code.
Also enable the frame buffer, so you will actually see output during
boot.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
An alternative to CONFIG_FRAMEBUFFER_CONSOLE=y would be CONFIG_LOGO=y.
---
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 09a83d1411cc598b..969738324a5d5f81 100644
--- a/arch/arm/configs/shmobile_defconfig
+++ b/arch/arm/configs/shmobile_defconfig
@@ -153,6 +153,7 @@ CONFIG_FB_SH_MOBILE_MERAM=y
# CONFIG_BACKLIGHT_GENERIC is not set
CONFIG_BACKLIGHT_PWM=y
CONFIG_BACKLIGHT_AS3711=y
+CONFIG_FRAMEBUFFER_CONSOLE=y
CONFIG_SOUND=y
CONFIG_SND=y
CONFIG_SND_SOC=y
@@ -184,6 +185,8 @@ CONFIG_DMADEVICES=y
CONFIG_SH_DMAE=y
CONFIG_RCAR_DMAC=y
CONFIG_RENESAS_USB_DMAC=y
+CONFIG_STAGING=y
+CONFIG_STAGING_BOARD=y
# CONFIG_IOMMU_SUPPORT is not set
CONFIG_IIO=y
CONFIG_AK8975=y
--
1.9.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 0/3] ARM: shmobile: defconfig: Misc updates
2015-12-10 15:15 [PATCH 0/3] ARM: shmobile: defconfig: Misc updates Geert Uytterhoeven
` (2 preceding siblings ...)
2015-12-10 15:16 ` [PATCH 3/3] ARM: shmobile: defconfig: Enable frame buffer console for armadillo800eva Geert Uytterhoeven
@ 2015-12-11 23:07 ` Simon Horman
3 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2015-12-11 23:07 UTC (permalink / raw)
To: linux-arm-kernel
On Thu, Dec 10, 2015 at 04:15:59PM +0100, Geert Uytterhoeven wrote:
> Hi Simon, Magnus,
>
> Here are a few updates for the shmobile defconfig.
> If these are accepted, I'll send out equivalent updates for
> multi_v7_defconfig.
>
> Geert Uytterhoeven (3):
> ARM: shmobile: defconfig: Drop useless CONFIG_USB_RCAR_PHY=y
> ARM: shmobile: defconfig: Enable missing support based on DTSes
> ARM: shmobile: defconfig: Enable frame buffer console for
> armadillo800eva
>
> arch/arm/configs/shmobile_defconfig | 10 +++++++++-
> 1 file changed, 9 insertions(+), 1 deletion(-)
Thanks, I have queued these up.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-12-11 23:07 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-10 15:15 [PATCH 0/3] ARM: shmobile: defconfig: Misc updates Geert Uytterhoeven
2015-12-10 15:16 ` [PATCH 1/3] ARM: shmobile: defconfig: Drop useless CONFIG_USB_RCAR_PHY=y Geert Uytterhoeven
2015-12-10 15:16 ` [PATCH 2/3] ARM: shmobile: defconfig: Enable missing support based on DTSes Geert Uytterhoeven
2015-12-10 15:16 ` [PATCH 3/3] ARM: shmobile: defconfig: Enable frame buffer console for armadillo800eva Geert Uytterhoeven
2015-12-11 23:07 ` [PATCH 0/3] ARM: shmobile: defconfig: Misc updates Simon Horman
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).