linux-media.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
To: unlisted-recipients:; (no To-header on input)@casper.infradead.org
Cc: Linux Media Mailing List <linux-media@vger.kernel.org>,
	Mauro Carvalho Chehab <mchehab@infradead.org>
Subject: Re: [PATCH 00/13] Add media controller support to em28xx driver
Date: Fri, 29 Jan 2016 10:37:40 -0200	[thread overview]
Message-ID: <20160129103740.560ba259@recife.lan> (raw)
In-Reply-To: <cover.1454067262.git.mchehab@osg.samsung.com>

Em Fri, 29 Jan 2016 10:10:50 -0200
Mauro Carvalho Chehab <mchehab@osg.samsung.com> escreveu:

> This series add MC support to the em28xx driver. Among the hybrid TV USB
> drivers, this is the most complex one, as there are lots of different hardware
> options that are compatible with this driver.
> 
> Yet, it is used with only two analog TV demod drivers (tvp5150 and saa7115)
> and, optionally, one IF-PLL audio decoder (msp3400). It means that there aren't
> many I2C drivers that need to be touched.
> 
> The PCI drivers are a way more complex, as they may have audio processors and 
> may use a wide range of other I2C drivers. So, it is wise to implement MC support
> at em28xx before those, as it helps to address some issues before extending
> MC to the wild.
> 
> The two patches in this series are actually unrelated to MC. The first one is a cleanup
> at em28xx, and the second patch fixes one KASAN error.
> 
> The next patches make the Media Controller aware of the existence of IF-PLL
> drivers, commonly found on older designs. They also standardize the pad index
> for tuners, IF-PLLs and demods.
> 
> Finally, MC support for tda9887, tvp5150, saa7115 and msp3400 is added, making
> those drivers to properly report the MC function supported by the driver and
> creating the source/sink pads for them.
> 
> The last patch finally add em28xx MC support.
> 
> I opted to not add any helper function for now at v4l2-mc.c, putting all needed code
> at em28xx, because I didn't want to cause hard to find conflicts with Shuah's patches,
> that are touching the routines at au0828. After having Shuah patches merged, I'll
> work to move the generic code to v4l2-mc.c (yet to be created).
> 
> This series was tested on the following devices:
> 
> Hauppauge HVR-950 (2040:6513):
> 	https://mchehab.fedorapeople.org/mc-next-gen/hvr_950.png
> 
> Haupauge WinTV USB2 (2040:4200):
> 	https://mchehab.fedorapeople.org/mc-next-gen/wintv_usb2.png
> 
> KWorld USB ATSC TV Stick UB435-Q V3 (1b80:e34c):
> 	https://mchehab.fedorapeople.org/mc-next-gen/kworld_435q.png
> 
> PCTV 261e (2013:0258):
> 	https://mchehab.fedorapeople.org/mc-next-gen/pctv_261e.png
> 
> PCTV 290e (2013:024f):
> 	https://mchehab.fedorapeople.org/mc-next-gen/pctv_290e.png
> 
> Pixelview PlayTV USB2 (eb1a:2821):
> 	https://mchehab.fedorapeople.org/mc-next-gen/playtv_usb.png
> 
> 	(an extra patch was needed for it to detect the tuner - I'll send it in separate)

Tested also on a pure S-Video/Composite capture card:

Terratec Grabster AV350 (0ccd:0084):
	https://mchehab.fedorapeople.org/mc-next-gen/terratec_av350.png

This board actually have also a Scart interface, but switching
between Scart and Video is done via a manual switch. So, the
driver is actually unable to detect if the input is coming from
Composite/S-Video or from scart.

Regards,
Mauro

  parent reply	other threads:[~2016-01-29 12:37 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-29 12:10 [PATCH 00/13] Add media controller support to em28xx driver Mauro Carvalho Chehab
2016-01-29 12:10 ` [PATCH 01/13] [media] em28xx: remove unused input types Mauro Carvalho Chehab
2016-01-29 12:10 ` [PATCH 02/13] [media] xc2028: avoid use after free Mauro Carvalho Chehab
2016-01-29 12:10 ` [PATCH 03/13] [media] tuner.h: rename TUNER_PAD_IF_OUTPUT to TUNER_PAD_OUTPUT Mauro Carvalho Chehab
2016-01-29 12:10 ` [PATCH 04/13] [media] v4l2-mc.h: move tuner PAD definitions to this new header Mauro Carvalho Chehab
2016-01-29 12:10 ` [PATCH 05/13] [media] v4l2-mc.h: Split audio from baseband output Mauro Carvalho Chehab
2016-01-29 12:10 ` [PATCH 06/13] [media] media.h: add support for IF-PLL video/sound decoder Mauro Carvalho Chehab
2016-01-29 12:10 ` [PATCH 07/13] [media] v4l2-mc.h Add pads for audio and video IF-PLL decoders Mauro Carvalho Chehab
2016-01-29 12:10 ` [PATCH 08/13] [media] v4l2-mc: add analog TV demodulator pad index macros Mauro Carvalho Chehab
2016-01-29 12:10 ` [PATCH 09/13] [media] tvp5150: create the expected number of pads Mauro Carvalho Chehab
2016-01-29 18:21   ` Javier Martinez Canillas
2016-01-29 12:11 ` [PATCH 10/13] [media] msp3400: initialize MC data Mauro Carvalho Chehab
2016-01-29 12:11 ` [PATCH 11/13] [media] tvp5150: identify it as a MEDIA_ENT_F_ATV_DECODER Mauro Carvalho Chehab
2016-01-29 18:22   ` Javier Martinez Canillas
2016-01-29 12:11 ` [PATCH 12/13] [media] saa7115: initialize demod type and add the needed pads Mauro Carvalho Chehab
2016-01-29 12:11 ` [PATCH 13/13] [media] em28xx: add media controller support Mauro Carvalho Chehab
2016-01-29 17:13   ` [PATCH v2 13/13]] " Mauro Carvalho Chehab
2016-01-29 12:37 ` Mauro Carvalho Chehab [this message]
2016-01-29 17:21   ` [PATCH 00/13] Add media controller support to em28xx driver Mauro Carvalho Chehab

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20160129103740.560ba259@recife.lan \
    --to=mchehab@osg.samsung.com \
    --cc=linux-media@vger.kernel.org \
    --cc=mchehab@infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).