linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] ARM: davinci_all_defconfig: enable modules required by vpif
@ 2017-02-16 17:58 Bartosz Golaszewski
  2017-02-16 17:58 ` [PATCH 1/2] ARM: davinci_all_defconfig: enable VPIF display modules Bartosz Golaszewski
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Bartosz Golaszewski @ 2017-02-16 17:58 UTC (permalink / raw)
  To: Russell King, Sekhar Nori, David Lechner, Kevin Hilman,
	Michael Turquette, Patrick Titiano
  Cc: linux-arm-kernel, linux-kernel, Bartosz Golaszewski

The first patch enables the modules needed for vpif display.

The second enables IRQ support for the pca953x driver needed for
correct vpif capture support on the da850-evm board with the UI
expander.

Bartosz Golaszewski (2):
  ARM: davinci_all_defconfig: enable VPIF display modules
  ARM: davinci_all_defconfig: enable IRQ support for pca953x

 arch/arm/configs/davinci_all_defconfig | 3 +++
 1 file changed, 3 insertions(+)

-- 
2.9.3

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

* [PATCH 1/2] ARM: davinci_all_defconfig: enable VPIF display modules
  2017-02-16 17:58 [PATCH 0/2] ARM: davinci_all_defconfig: enable modules required by vpif Bartosz Golaszewski
@ 2017-02-16 17:58 ` Bartosz Golaszewski
  2017-02-16 17:58 ` [PATCH 2/2] ARM: davinci_all_defconfig: enable IRQ support for pca953x Bartosz Golaszewski
  2017-02-20  9:43 ` [PATCH 0/2] ARM: davinci_all_defconfig: enable modules required by vpif Sekhar Nori
  2 siblings, 0 replies; 4+ messages in thread
From: Bartosz Golaszewski @ 2017-02-16 17:58 UTC (permalink / raw)
  To: Russell King, Sekhar Nori, David Lechner, Kevin Hilman,
	Michael Turquette, Patrick Titiano
  Cc: linux-arm-kernel, linux-kernel, Bartosz Golaszewski

Enable the VPIF display module and the video encoder present on the
da850-evm UI board.

Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
---
 arch/arm/configs/davinci_all_defconfig | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/arch/arm/configs/davinci_all_defconfig b/arch/arm/configs/davinci_all_defconfig
index c8663ea..bf2c0ca 100644
--- a/arch/arm/configs/davinci_all_defconfig
+++ b/arch/arm/configs/davinci_all_defconfig
@@ -133,9 +133,11 @@ CONFIG_REGULATOR_TPS6507X=y
 CONFIG_MEDIA_SUPPORT=m
 CONFIG_MEDIA_CAMERA_SUPPORT=y
 CONFIG_V4L_PLATFORM_DRIVERS=y
+CONFIG_VIDEO_DAVINCI_VPIF_DISPLAY=m
 CONFIG_VIDEO_DAVINCI_VPIF_CAPTURE=m
 # CONFIG_MEDIA_SUBDRV_AUTOSELECT is not set
 CONFIG_VIDEO_TVP514X=m
+CONFIG_VIDEO_ADV7343=m
 CONFIG_DRM=m
 CONFIG_DRM_TILCDC=m
 CONFIG_DRM_DUMB_VGA_DAC=m
-- 
2.9.3

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

* [PATCH 2/2] ARM: davinci_all_defconfig: enable IRQ support for pca953x
  2017-02-16 17:58 [PATCH 0/2] ARM: davinci_all_defconfig: enable modules required by vpif Bartosz Golaszewski
  2017-02-16 17:58 ` [PATCH 1/2] ARM: davinci_all_defconfig: enable VPIF display modules Bartosz Golaszewski
@ 2017-02-16 17:58 ` Bartosz Golaszewski
  2017-02-20  9:43 ` [PATCH 0/2] ARM: davinci_all_defconfig: enable modules required by vpif Sekhar Nori
  2 siblings, 0 replies; 4+ messages in thread
From: Bartosz Golaszewski @ 2017-02-16 17:58 UTC (permalink / raw)
  To: Russell King, Sekhar Nori, David Lechner, Kevin Hilman,
	Michael Turquette, Patrick Titiano
  Cc: linux-arm-kernel, linux-kernel, Bartosz Golaszewski

We need IRQs from the tca6416 expander for vpif capture to work on the
da850-evm board.

Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
---
 arch/arm/configs/davinci_all_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/configs/davinci_all_defconfig b/arch/arm/configs/davinci_all_defconfig
index bf2c0ca..91557ae 100644
--- a/arch/arm/configs/davinci_all_defconfig
+++ b/arch/arm/configs/davinci_all_defconfig
@@ -121,6 +121,7 @@ CONFIG_PINCTRL_DA850_PUPD=m
 CONFIG_PINCTRL_SINGLE=y
 CONFIG_GPIO_SYSFS=y
 CONFIG_GPIO_PCA953X=y
+CONFIG_GPIO_PCA953X_IRQ=y
 CONFIG_POWER_RESET=y
 CONFIG_POWER_RESET_GPIO=y
 CONFIG_WATCHDOG=y
-- 
2.9.3

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

* Re: [PATCH 0/2] ARM: davinci_all_defconfig: enable modules required by vpif
  2017-02-16 17:58 [PATCH 0/2] ARM: davinci_all_defconfig: enable modules required by vpif Bartosz Golaszewski
  2017-02-16 17:58 ` [PATCH 1/2] ARM: davinci_all_defconfig: enable VPIF display modules Bartosz Golaszewski
  2017-02-16 17:58 ` [PATCH 2/2] ARM: davinci_all_defconfig: enable IRQ support for pca953x Bartosz Golaszewski
@ 2017-02-20  9:43 ` Sekhar Nori
  2 siblings, 0 replies; 4+ messages in thread
From: Sekhar Nori @ 2017-02-20  9:43 UTC (permalink / raw)
  To: Bartosz Golaszewski, Russell King, David Lechner, Kevin Hilman,
	Michael Turquette, Patrick Titiano
  Cc: linux-arm-kernel, linux-kernel

On Thursday 16 February 2017 11:28 PM, Bartosz Golaszewski wrote:
> The first patch enables the modules needed for vpif display.
> 
> The second enables IRQ support for the pca953x driver needed for
> correct vpif capture support on the da850-evm board with the UI
> expander.

Applied to v4.12/defconfig

Thanks,
Sekhar

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

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

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-16 17:58 [PATCH 0/2] ARM: davinci_all_defconfig: enable modules required by vpif Bartosz Golaszewski
2017-02-16 17:58 ` [PATCH 1/2] ARM: davinci_all_defconfig: enable VPIF display modules Bartosz Golaszewski
2017-02-16 17:58 ` [PATCH 2/2] ARM: davinci_all_defconfig: enable IRQ support for pca953x Bartosz Golaszewski
2017-02-20  9:43 ` [PATCH 0/2] ARM: davinci_all_defconfig: enable modules required by vpif Sekhar Nori

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