linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] ARM: davinci_all_defconfig: enble support for USB audio/video
@ 2017-05-18 11:01 Sekhar Nori
  2017-05-18 11:01 ` [PATCH 1/2] ARM: davinci_all_defconfig: cleanup with savedefconfig Sekhar Nori
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Sekhar Nori @ 2017-05-18 11:01 UTC (permalink / raw)
  To: linux-arm-kernel

Patch 1/2 syncs davinci_all_defconfig with savedefconfig output.
Patch 2/2 enables USB audio and video device support.

Sekhar Nori (2):
  ARM: davinci_all_defconfig: cleanup with savedefconfig
  ARM: davinci_all_defconfig: enable USB audio/video device support

 arch/arm/configs/davinci_all_defconfig | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

-- 
2.9.0

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

* [PATCH 1/2] ARM: davinci_all_defconfig: cleanup with savedefconfig
  2017-05-18 11:01 [PATCH 0/2] ARM: davinci_all_defconfig: enble support for USB audio/video Sekhar Nori
@ 2017-05-18 11:01 ` Sekhar Nori
  2017-05-18 11:01 ` [PATCH 2/2] ARM: davinci_all_defconfig: enable USB audio/video device support Sekhar Nori
  2017-05-22 10:57 ` [PATCH 0/2] ARM: davinci_all_defconfig: enble support for USB audio/video Sekhar Nori
  2 siblings, 0 replies; 4+ messages in thread
From: Sekhar Nori @ 2017-05-18 11:01 UTC (permalink / raw)
  To: linux-arm-kernel

davinci_all_defconfig is out of sync with savedefconfig in some places.
Regenerate the default settings by:

$ make davinci_all_config
$ make savedefconfig
$ cp defconfig arch/arm/configs/davinci_all_defconfig

Signed-off-by: Sekhar Nori <nsekhar@ti.com>
---
 arch/arm/configs/davinci_all_defconfig | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/arch/arm/configs/davinci_all_defconfig b/arch/arm/configs/davinci_all_defconfig
index 67db82999c06..d8cdcfaa0206 100644
--- a/arch/arm/configs/davinci_all_defconfig
+++ b/arch/arm/configs/davinci_all_defconfig
@@ -83,14 +83,13 @@ CONFIG_NETCONSOLE=y
 CONFIG_TUN=m
 CONFIG_DM9000=y
 CONFIG_TI_DAVINCI_EMAC=y
+CONFIG_LSI_ET1011C_PHY=y
 CONFIG_LXT_PHY=y
 CONFIG_SMSC_PHY=y
-CONFIG_LSI_ET1011C_PHY=y
 CONFIG_PPP=m
 CONFIG_PPP_DEFLATE=m
 CONFIG_PPP_ASYNC=m
 CONFIG_PPP_SYNC_TTY=m
-# CONFIG_INPUT_MOUSEDEV is not set
 CONFIG_INPUT_EVDEV=m
 CONFIG_INPUT_EVBUG=m
 CONFIG_KEYBOARD_ATKBD=m
@@ -236,7 +235,6 @@ CONFIG_NLS_ASCII=m
 CONFIG_NLS_ISO8859_1=y
 CONFIG_NLS_UTF8=m
 CONFIG_DEBUG_FS=y
-CONFIG_TIMER_STATS=y
 CONFIG_DEBUG_RT_MUTEXES=y
 CONFIG_DEBUG_MUTEXES=y
 # CONFIG_ARM_UNWIND is not set
-- 
2.9.0

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

* [PATCH 2/2] ARM: davinci_all_defconfig: enable USB audio/video device support
  2017-05-18 11:01 [PATCH 0/2] ARM: davinci_all_defconfig: enble support for USB audio/video Sekhar Nori
  2017-05-18 11:01 ` [PATCH 1/2] ARM: davinci_all_defconfig: cleanup with savedefconfig Sekhar Nori
@ 2017-05-18 11:01 ` Sekhar Nori
  2017-05-22 10:57 ` [PATCH 0/2] ARM: davinci_all_defconfig: enble support for USB audio/video Sekhar Nori
  2 siblings, 0 replies; 4+ messages in thread
From: Sekhar Nori @ 2017-05-18 11:01 UTC (permalink / raw)
  To: linux-arm-kernel

Enable support for USB audio and video camera devices.

Tested on OMAP-L138 LCDK using Logitech webcam and
Plantronics headset.

Signed-off-by: Sekhar Nori <nsekhar@ti.com>
---
 arch/arm/configs/davinci_all_defconfig | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/arch/arm/configs/davinci_all_defconfig b/arch/arm/configs/davinci_all_defconfig
index d8cdcfaa0206..be69dd4075f0 100644
--- a/arch/arm/configs/davinci_all_defconfig
+++ b/arch/arm/configs/davinci_all_defconfig
@@ -130,6 +130,8 @@ CONFIG_REGULATOR_FIXED_VOLTAGE=y
 CONFIG_REGULATOR_TPS6507X=y
 CONFIG_MEDIA_SUPPORT=m
 CONFIG_MEDIA_CAMERA_SUPPORT=y
+CONFIG_MEDIA_USB_SUPPORT=y
+CONFIG_USB_VIDEO_CLASS=m
 CONFIG_V4L_PLATFORM_DRIVERS=y
 CONFIG_VIDEO_DAVINCI_VPIF_DISPLAY=m
 CONFIG_VIDEO_DAVINCI_VPIF_CAPTURE=m
@@ -146,6 +148,7 @@ CONFIG_FRAMEBUFFER_CONSOLE=y
 CONFIG_LOGO=y
 CONFIG_SOUND=m
 CONFIG_SND=m
+CONFIG_SND_USB_AUDIO=m
 CONFIG_SND_SOC=m
 CONFIG_SND_EDMA_SOC=m
 CONFIG_SND_DA850_SOC_EVM=m
-- 
2.9.0

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

* [PATCH 0/2] ARM: davinci_all_defconfig: enble support for USB audio/video
  2017-05-18 11:01 [PATCH 0/2] ARM: davinci_all_defconfig: enble support for USB audio/video Sekhar Nori
  2017-05-18 11:01 ` [PATCH 1/2] ARM: davinci_all_defconfig: cleanup with savedefconfig Sekhar Nori
  2017-05-18 11:01 ` [PATCH 2/2] ARM: davinci_all_defconfig: enable USB audio/video device support Sekhar Nori
@ 2017-05-22 10:57 ` Sekhar Nori
  2 siblings, 0 replies; 4+ messages in thread
From: Sekhar Nori @ 2017-05-22 10:57 UTC (permalink / raw)
  To: linux-arm-kernel

On Thursday 18 May 2017 04:31 PM, Sekhar Nori wrote:
> Patch 1/2 syncs davinci_all_defconfig with savedefconfig output.
> Patch 2/2 enables USB audio and video device support.

Applied to v4.13/defconfig.

Thanks,
Sekhar

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

end of thread, other threads:[~2017-05-22 10:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-05-18 11:01 [PATCH 0/2] ARM: davinci_all_defconfig: enble support for USB audio/video Sekhar Nori
2017-05-18 11:01 ` [PATCH 1/2] ARM: davinci_all_defconfig: cleanup with savedefconfig Sekhar Nori
2017-05-18 11:01 ` [PATCH 2/2] ARM: davinci_all_defconfig: enable USB audio/video device support Sekhar Nori
2017-05-22 10:57 ` [PATCH 0/2] ARM: davinci_all_defconfig: enble support for USB audio/video 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).