linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/7] ARM: shmobile: defconfig: Update for v5.8-rc1
@ 2020-06-24 13:19 Geert Uytterhoeven
  2020-06-24 13:19 ` [PATCH 1/7] ARM: shmobile: defconfig: Refresh " Geert Uytterhoeven
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: Geert Uytterhoeven @ 2020-06-24 13:19 UTC (permalink / raw)
  To: Magnus Damm; +Cc: linux-renesas-soc, Geert Uytterhoeven, linux-arm-kernel

	Hi all,

This patch series refresh the defconfig for Renesas ARM boards for
v5.8-rc1, and enables missing support.

I intend to queue this in renesas-devel for v5.9, and plan to send a
similar (but modular) version for multi_v7_defconfig.

Thanks for your comments!

Geert Uytterhoeven (7):
  ARM: shmobile: defconfig: Refresh for v5.8-rc1
  ARM: shmobile: defconfig: Enable DA9063 ONKEY support
  ARM: shmobile: defconfig: Enable CAT9554 support
  ARM: shmobile: defconfig: Enable RZ/A watchdog support
  ARM: shmobile: defconfig: Enable RZ/A1 CEU support
  ARM: shmobile: defconfig: Enable ADV7612 CEC support
  ARM: shmobile: defconfig: Enable RZ/A1H RTC support

 arch/arm/configs/shmobile_defconfig | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

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

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* [PATCH 1/7] ARM: shmobile: defconfig: Refresh for v5.8-rc1
  2020-06-24 13:19 [PATCH 0/7] ARM: shmobile: defconfig: Update for v5.8-rc1 Geert Uytterhoeven
@ 2020-06-24 13:19 ` Geert Uytterhoeven
  2020-06-24 13:19 ` [PATCH 2/7] ARM: shmobile: defconfig: Enable DA9063 ONKEY support Geert Uytterhoeven
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Geert Uytterhoeven @ 2020-06-24 13:19 UTC (permalink / raw)
  To: Magnus Damm; +Cc: linux-renesas-soc, Geert Uytterhoeven, linux-arm-kernel

Refresh the defconfig for Renesas ARM boards:
  - Drop CONFIG_ZBOOT_ROM_TEXT=0x0 CONFIG_ZBOOT_ROM_BSS=0x0 (no longer
    needed since commit 39c3e304567a013a ("ARM: 8984/1: Kconfig: set
    default ZBOOT_ROM_TEXT/BSS value to 0x0")),
  - Move CONFIG_MEDIA_SUBDRV_AUTOSELECT (moved in commit
    1b80d36aeb92a767 ("media: Kconfig: move the position of sub-driver
    autoselection")),
  - Drop CONFIG_MEDIA_CONTROLLER=y and CONFIG_VIDEO_V4L2_SUBDEV_API=y
    (auto-enabled since commit 32a363d0b0b142f3 ("media: Kconfig files:
    use select for V4L2 subdevs and MC")),
  - Enable CONFIG_MEDIA_PLATFORM_SUPPORT (needed since commit
    06b93644f4d102bd ("media: Kconfig: add an option to filter in/out
    platform drivers")).

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 arch/arm/configs/shmobile_defconfig | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/arch/arm/configs/shmobile_defconfig b/arch/arm/configs/shmobile_defconfig
index 9cf3143025e1eea4..99ad932193268ce0 100644
--- a/arch/arm/configs/shmobile_defconfig
+++ b/arch/arm/configs/shmobile_defconfig
@@ -13,8 +13,6 @@ CONFIG_SMP=y
 CONFIG_SCHED_MC=y
 CONFIG_NR_CPUS=8
 CONFIG_HIGHMEM=y
-CONFIG_ZBOOT_ROM_TEXT=0x0
-CONFIG_ZBOOT_ROM_BSS=0x0
 CONFIG_ARM_APPENDED_DTB=y
 CONFIG_KEXEC=y
 CONFIG_CPU_FREQ=y
@@ -109,16 +107,15 @@ CONFIG_REGULATOR_DA9210=y
 CONFIG_REGULATOR_GPIO=y
 CONFIG_REGULATOR_MAX8973=y
 CONFIG_MEDIA_SUPPORT=y
+# CONFIG_MEDIA_SUBDRV_AUTOSELECT is not set
 CONFIG_MEDIA_CAMERA_SUPPORT=y
-CONFIG_MEDIA_CONTROLLER=y
-CONFIG_VIDEO_V4L2_SUBDEV_API=y
+CONFIG_MEDIA_PLATFORM_SUPPORT=y
 CONFIG_V4L_PLATFORM_DRIVERS=y
 CONFIG_VIDEO_RCAR_VIN=y
 CONFIG_V4L_MEM2MEM_DRIVERS=y
 CONFIG_VIDEO_RENESAS_FDP1=y
 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
-- 
2.17.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* [PATCH 2/7] ARM: shmobile: defconfig: Enable DA9063 ONKEY support
  2020-06-24 13:19 [PATCH 0/7] ARM: shmobile: defconfig: Update for v5.8-rc1 Geert Uytterhoeven
  2020-06-24 13:19 ` [PATCH 1/7] ARM: shmobile: defconfig: Refresh " Geert Uytterhoeven
@ 2020-06-24 13:19 ` Geert Uytterhoeven
  2020-06-24 13:19 ` [PATCH 3/7] ARM: shmobile: defconfig: Enable CAT9554 support Geert Uytterhoeven
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Geert Uytterhoeven @ 2020-06-24 13:19 UTC (permalink / raw)
  To: Magnus Damm; +Cc: linux-renesas-soc, Geert Uytterhoeven, linux-arm-kernel

Enable support for the "ONKEY" of the Dialog DA9063 PMIC, which is used
on the Stout and Silk boards.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 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 99ad932193268ce0..a8a8cc8a834c8972 100644
--- a/arch/arm/configs/shmobile_defconfig
+++ b/arch/arm/configs/shmobile_defconfig
@@ -65,6 +65,7 @@ CONFIG_INPUT_TOUCHSCREEN=y
 CONFIG_TOUCHSCREEN_EDT_FT5X06=y
 CONFIG_TOUCHSCREEN_ST1232=y
 CONFIG_INPUT_MISC=y
+CONFIG_INPUT_DA9063_ONKEY=y
 CONFIG_INPUT_ADXL34X=y
 # CONFIG_LEGACY_PTYS is not set
 CONFIG_SERIAL_8250=y
-- 
2.17.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* [PATCH 3/7] ARM: shmobile: defconfig: Enable CAT9554 support
  2020-06-24 13:19 [PATCH 0/7] ARM: shmobile: defconfig: Update for v5.8-rc1 Geert Uytterhoeven
  2020-06-24 13:19 ` [PATCH 1/7] ARM: shmobile: defconfig: Refresh " Geert Uytterhoeven
  2020-06-24 13:19 ` [PATCH 2/7] ARM: shmobile: defconfig: Enable DA9063 ONKEY support Geert Uytterhoeven
@ 2020-06-24 13:19 ` Geert Uytterhoeven
  2020-06-24 13:19 ` [PATCH 4/7] ARM: shmobile: defconfig: Enable RZ/A watchdog support Geert Uytterhoeven
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Geert Uytterhoeven @ 2020-06-24 13:19 UTC (permalink / raw)
  To: Magnus Damm; +Cc: linux-renesas-soc, Geert Uytterhoeven, linux-arm-kernel

Enable support for the ON Semiconductor CAT9554 I2C I/O Expander, which
is used on the RSK+RZA1 board.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 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 a8a8cc8a834c8972..e451c402f017a3c9 100644
--- a/arch/arm/configs/shmobile_defconfig
+++ b/arch/arm/configs/shmobile_defconfig
@@ -89,6 +89,7 @@ CONFIG_PINCTRL_RZA1=y
 CONFIG_PINCTRL_RZA2=y
 CONFIG_GPIO_EM=y
 CONFIG_GPIO_RCAR=y
+CONFIG_GPIO_PCA953X=y
 CONFIG_GPIO_PCF857X=y
 CONFIG_POWER_RESET=y
 CONFIG_POWER_RESET_RMOBILE=y
-- 
2.17.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* [PATCH 4/7] ARM: shmobile: defconfig: Enable RZ/A watchdog support
  2020-06-24 13:19 [PATCH 0/7] ARM: shmobile: defconfig: Update for v5.8-rc1 Geert Uytterhoeven
                   ` (2 preceding siblings ...)
  2020-06-24 13:19 ` [PATCH 3/7] ARM: shmobile: defconfig: Enable CAT9554 support Geert Uytterhoeven
@ 2020-06-24 13:19 ` Geert Uytterhoeven
  2020-06-24 13:19 ` [PATCH 5/7] ARM: shmobile: defconfig: Enable RZ/A1 CEU support Geert Uytterhoeven
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Geert Uytterhoeven @ 2020-06-24 13:19 UTC (permalink / raw)
  To: Magnus Damm; +Cc: linux-renesas-soc, Geert Uytterhoeven, linux-arm-kernel

Enable support for the RZ/A watchdog timer, which is used on RZ/A1H and
RZ/A2M boards.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 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 e451c402f017a3c9..84e5b54514b4bd12 100644
--- a/arch/arm/configs/shmobile_defconfig
+++ b/arch/arm/configs/shmobile_defconfig
@@ -101,6 +101,7 @@ CONFIG_RCAR_THERMAL=y
 CONFIG_WATCHDOG=y
 CONFIG_DA9063_WATCHDOG=y
 CONFIG_RENESAS_WDT=y
+CONFIG_RENESAS_RZAWDT=y
 CONFIG_MFD_AS3711=y
 CONFIG_MFD_DA9063=y
 CONFIG_REGULATOR_FIXED_VOLTAGE=y
-- 
2.17.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* [PATCH 5/7] ARM: shmobile: defconfig: Enable RZ/A1 CEU support
  2020-06-24 13:19 [PATCH 0/7] ARM: shmobile: defconfig: Update for v5.8-rc1 Geert Uytterhoeven
                   ` (3 preceding siblings ...)
  2020-06-24 13:19 ` [PATCH 4/7] ARM: shmobile: defconfig: Enable RZ/A watchdog support Geert Uytterhoeven
@ 2020-06-24 13:19 ` Geert Uytterhoeven
  2020-06-24 13:19 ` [PATCH 6/7] ARM: shmobile: defconfig: Enable ADV7612 CEC support Geert Uytterhoeven
  2020-06-24 13:19 ` [PATCH 7/7] ARM: shmobile: defconfig: Enable RZ/A1H RTC support Geert Uytterhoeven
  6 siblings, 0 replies; 8+ messages in thread
From: Geert Uytterhoeven @ 2020-06-24 13:19 UTC (permalink / raw)
  To: Magnus Damm; +Cc: linux-renesas-soc, Geert Uytterhoeven, linux-arm-kernel

Enable support for the RZ/A1H Capture Engine Unit, which is used on the
GR-Peach audiocamera shield expansion board.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 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 84e5b54514b4bd12..345685a52ffc5af5 100644
--- a/arch/arm/configs/shmobile_defconfig
+++ b/arch/arm/configs/shmobile_defconfig
@@ -114,6 +114,7 @@ CONFIG_MEDIA_SUPPORT=y
 CONFIG_MEDIA_CAMERA_SUPPORT=y
 CONFIG_MEDIA_PLATFORM_SUPPORT=y
 CONFIG_V4L_PLATFORM_DRIVERS=y
+CONFIG_VIDEO_RENESAS_CEU=y
 CONFIG_VIDEO_RCAR_VIN=y
 CONFIG_V4L_MEM2MEM_DRIVERS=y
 CONFIG_VIDEO_RENESAS_FDP1=y
-- 
2.17.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* [PATCH 6/7] ARM: shmobile: defconfig: Enable ADV7612 CEC support
  2020-06-24 13:19 [PATCH 0/7] ARM: shmobile: defconfig: Update for v5.8-rc1 Geert Uytterhoeven
                   ` (4 preceding siblings ...)
  2020-06-24 13:19 ` [PATCH 5/7] ARM: shmobile: defconfig: Enable RZ/A1 CEU support Geert Uytterhoeven
@ 2020-06-24 13:19 ` Geert Uytterhoeven
  2020-06-24 13:19 ` [PATCH 7/7] ARM: shmobile: defconfig: Enable RZ/A1H RTC support Geert Uytterhoeven
  6 siblings, 0 replies; 8+ messages in thread
From: Geert Uytterhoeven @ 2020-06-24 13:19 UTC (permalink / raw)
  To: Magnus Damm; +Cc: linux-renesas-soc, Geert Uytterhoeven, linux-arm-kernel

Enable support for Consumer Electronics Control on the Analog Devices
ADV7612 HDMI receiver, which is used on the Koelsch and Lager boards.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 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 345685a52ffc5af5..916ca4941a629577 100644
--- a/arch/arm/configs/shmobile_defconfig
+++ b/arch/arm/configs/shmobile_defconfig
@@ -122,6 +122,7 @@ CONFIG_VIDEO_RENESAS_JPU=y
 CONFIG_VIDEO_RENESAS_VSP1=y
 CONFIG_VIDEO_ADV7180=y
 CONFIG_VIDEO_ADV7604=y
+CONFIG_VIDEO_ADV7604_CEC=y
 CONFIG_VIDEO_ML86V7667=y
 CONFIG_DRM=y
 CONFIG_DRM_RCAR_DU=y
-- 
2.17.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* [PATCH 7/7] ARM: shmobile: defconfig: Enable RZ/A1H RTC support
  2020-06-24 13:19 [PATCH 0/7] ARM: shmobile: defconfig: Update for v5.8-rc1 Geert Uytterhoeven
                   ` (5 preceding siblings ...)
  2020-06-24 13:19 ` [PATCH 6/7] ARM: shmobile: defconfig: Enable ADV7612 CEC support Geert Uytterhoeven
@ 2020-06-24 13:19 ` Geert Uytterhoeven
  6 siblings, 0 replies; 8+ messages in thread
From: Geert Uytterhoeven @ 2020-06-24 13:19 UTC (permalink / raw)
  To: Magnus Damm; +Cc: linux-renesas-soc, Geert Uytterhoeven, linux-arm-kernel

Enable support for the RZ/A1H Realtime Clock, which is used on the
Genmai and RSK+RZA1 boards.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 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 916ca4941a629577..bbedc42bb2d9987c 100644
--- a/arch/arm/configs/shmobile_defconfig
+++ b/arch/arm/configs/shmobile_defconfig
@@ -170,6 +170,7 @@ CONFIG_RTC_DRV_BQ32K=y
 CONFIG_RTC_DRV_S35390A=y
 CONFIG_RTC_DRV_RX8581=y
 CONFIG_RTC_DRV_DA9063=y
+CONFIG_RTC_DRV_SH=y
 CONFIG_DMADEVICES=y
 CONFIG_RCAR_DMAC=y
 CONFIG_RENESAS_USB_DMAC=y
-- 
2.17.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

end of thread, other threads:[~2020-06-24 13:22 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-24 13:19 [PATCH 0/7] ARM: shmobile: defconfig: Update for v5.8-rc1 Geert Uytterhoeven
2020-06-24 13:19 ` [PATCH 1/7] ARM: shmobile: defconfig: Refresh " Geert Uytterhoeven
2020-06-24 13:19 ` [PATCH 2/7] ARM: shmobile: defconfig: Enable DA9063 ONKEY support Geert Uytterhoeven
2020-06-24 13:19 ` [PATCH 3/7] ARM: shmobile: defconfig: Enable CAT9554 support Geert Uytterhoeven
2020-06-24 13:19 ` [PATCH 4/7] ARM: shmobile: defconfig: Enable RZ/A watchdog support Geert Uytterhoeven
2020-06-24 13:19 ` [PATCH 5/7] ARM: shmobile: defconfig: Enable RZ/A1 CEU support Geert Uytterhoeven
2020-06-24 13:19 ` [PATCH 6/7] ARM: shmobile: defconfig: Enable ADV7612 CEC support Geert Uytterhoeven
2020-06-24 13:19 ` [PATCH 7/7] ARM: shmobile: defconfig: Enable RZ/A1H RTC support Geert Uytterhoeven

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