Message ID | 1251418675-16262-1-git-send-email-santiago.nunez@ridgerun.com (mailing list archive) |
---|---|
State | Changes Requested |
Headers | show |
This series of patches provide support for the TVP7002 decoder in DM365. Support includes: * Inclusion of the chip in v4l2 definitions * Definition in board specific data structures * Liking within the VPFE architecture * Definition of TVP7002 specific data structures * Kconfig and Makefile support The v3 series corrects many issued pointed out by Muralidharan Karicheri, Vaibhav Hiremath and Hans Verkuil.
This series of patches provide support for the TVP7002 decoder in DM365. Support includes: * Inclusion of the chip in v4l2 definitions * Definition in board specific data structures * Liking within the VPFE architecture * Definition of TVP7002 specific data structures * Kconfig and Makefile support The v4 series corrects many issued pointed out by Muralidharan Karicheri, Vaibhav Hiremath and Hans Verkuil. Tested on DM365 TI EVM.
Santiago, Did you test TVP7002 capture on DM365 EVM? Could you please share the sample application? Thanks Sneha > -----Original Message----- > From: Santiago Nunez-Corrales [mailto:snunez@ridgerun.com] > Sent: Thursday, September 03, 2009 6:51 PM > To: davinci-linux-open-source@linux.davincidsp.com > Cc: Karicheri, Muralidharan; todd.fischer@ridgerun.com; > diego.dompe@ridgerun.com; clark.becker@ridgerun.com; Narnakaje, > Snehaprabha > Subject: [PATCH 0/6 v4] Support for TVP7002 in DM365 > > This series of patches provide support for the TVP7002 decoder in DM365. > Support > includes: > > * Inclusion of the chip in v4l2 definitions > * Definition in board specific data structures > * Liking within the VPFE architecture > * Definition of TVP7002 specific data structures > * Kconfig and Makefile support > > The v4 series corrects many issued pointed out by Muralidharan > Karicheri, Vaibhav Hiremath and > Hans Verkuil. Tested on DM365 TI EVM. > > > -- > Santiago Nunez-Corrales, Eng. > RidgeRun Engineering, LLC > > Guayabos, Curridabat > San Jose, Costa Rica > +(506) 2271 1487 > +(506) 8313 0536 > http://www.ridgerun.com > >
diff --git a/drivers/media/video/Kconfig b/drivers/media/video/Kconfig index d3723a1..a35395e 100644 --- a/drivers/media/video/Kconfig +++ b/drivers/media/video/Kconfig @@ -383,6 +383,15 @@ config VIDEO_TVP5150 To compile this driver as a module, choose M here: the module will be called tvp5150. +config VIDEO_TVP7002 + tristate "Texas Instruments TVP7002 video decoder" + depends on VIDEO_V4L2 && I2C + ---help--- + Support for the Texas Instruments TVP7002 video decoder. + + To compile this driver as a module, choose M here: the + module will be called tvp7002. + config VIDEO_VPX3220 tristate "vpx3220a, vpx3216b & vpx3214c video decoders" depends on VIDEO_V4L2 && I2C diff --git a/drivers/media/video/Makefile b/drivers/media/video/Makefile index 00fb23e..9a8090e 100644 --- a/drivers/media/video/Makefile +++ b/drivers/media/video/Makefile @@ -55,6 +55,7 @@ obj-$(CONFIG_VIDEO_THS7303) += ths7303.o obj-$(CONFIG_VIDEO_VINO) += indycam.o obj-$(CONFIG_VIDEO_TVP5150) += tvp5150.o obj-$(CONFIG_VIDEO_TVP514X) += tvp514x.o +obj-$(CONFIG_VIDEO_TVP7002) += tvp7002.o obj-$(CONFIG_VIDEO_MSP3400) += msp3400.o obj-$(CONFIG_VIDEO_CS5345) += cs5345.o obj-$(CONFIG_VIDEO_CS53L32A) += cs53l32a.o