Re: [PATCH RFC] [media] add Aptina mt9m114 HD digital image sensor driver

2013-04-07 Thread Scott Jiang
Hi Laurent, +struct mt9m114_reg { + u16 reg; + u32 val; + int width; +}; + +enum { + MT9M114_QVGA, + MT9M114_VGA, + MT9M114_WVGA, + MT9M114_720P, +}; This is the part I don't like. Instead of hardcoding 4 different

No Signal with TerraTec Cinergy T PCIe dual

2013-04-07 Thread Jan Saris
Hi, Sinse a couple of months I'm trying to get my second DVB-C card to work, but with no luck. I have searched a lot around and even tried the last media_build. I am running linux 3.5.0-26-generic with the latests media_build from here (http://git.linuxtv.org/media_build.git) For some reason

[RFC PATCH 0/2] rtl28xxu: add experimental support for r820t

2013-04-07 Thread Mauro Carvalho Chehab
Several rtl28xxu are currently shipped with a r820t tuner. Add experimental suppor for it. NOTE: I don't have DVB-T signal here, so I couldn't fully test the driver. By sniffing the USB traffic from rtl-sdr and comparing with this driver's traffic, it seems to be working fine, at least up to

[RFC PATCH 2/2] rtl28xxu: add support for Rafael Micro r820t

2013-04-07 Thread Mauro Carvalho Chehab
This tuner is used on some rtl2882 dongles. Add it to the driver. Signed-off-by: Mauro Carvalho Chehab mche...@redhat.com --- drivers/media/usb/dvb-usb-v2/Kconfig| 1 + drivers/media/usb/dvb-usb-v2/rtl28xxu.c | 30 ++ drivers/media/usb/dvb-usb-v2/rtl28xxu.h | 1

[RFC PATCH 1/2] r820t: Add a tuner driver for Rafael Micro R820T silicon tuner

2013-04-07 Thread Mauro Carvalho Chehab
This driver was written from scratch, based on an existing driver that it is part of rtl-sdr git tree, released under GPLv2: https://groups.google.com/forum/#!topic/ultra-cheap-sdr/Y3rBEOFtHug https://github.com/n1gp/gr-baz

Re: Hauppauge Nova-S-Plus DVB-S works for one channel, but cannot tune in others

2013-04-07 Thread Mauro Carvalho Chehab
Em Sat, 06 Apr 2013 22:20:19 +0200 Hans-Peter Jansen h...@urpla.net escreveu: On Samstag, 6. April 2013 16:26:32 Mauro Carvalho Chehab wrote: Em Sat, 06 Apr 2013 19:26:23 +0200 Hans-Peter Jansen h...@urpla.net escreveu: On Samstag, 6. April 2013 10:37:52 you wrote: Em Sat, 06 Apr

cron job: media_tree daily build: WARNINGS

2013-04-07 Thread Hans Verkuil
This message is generated daily by a cron job that builds media_tree for the kernels and architectures in the list below. Results of the daily build of media_tree: date: Sun Apr 7 19:00:18 CEST 2013 git branch: test git hash: 53faa685fa7df0e12751eebbda30bc7e7bb5e71a gcc

Re: Hauppauge Nova-S-Plus DVB-S works for one channel, but cannot tune in others

2013-04-07 Thread Hans-Peter Jansen
On Sonntag, 7. April 2013 14:03:29 Mauro Carvalho Chehab wrote: Em Sat, 06 Apr 2013 22:20:19 +0200 Hans-Peter Jansen h...@urpla.net escreveu: On Samstag, 6. April 2013 16:26:32 Mauro Carvalho Chehab wrote: Em Sat, 06 Apr 2013 19:26:23 +0200 Hans-Peter Jansen h...@urpla.net

vivi kernel driver

2013-04-07 Thread Michal Lazo
Hi V4L2 driver vivi generate 25% cpu load on raspberry pi(linux 3.6.11) or 8% on x86(linux 3.2.0-39) player GST_DEBUG=*:3,v4l2src:3,v4l2:3 gst-launch-0.10 v4l2src device=/dev/video0 norm=255 ! video/x-raw-rgb, width=720, height=576, framerate=3/1001 ! fakesink sync=false Anybody can answer

Re: em28xx: kernel oops in em28xx_tuner_callback() when watching digital TV

2013-04-07 Thread Frank Schäfer
Am 06.04.2013 08:38, schrieb Hans Verkuil: On Fri April 5 2013 18:11:59 Frank Schäfer wrote: Mauro, Hans, with the latest media-tree, I'm getting the following kernel oops when starting to watch digital TV with em28xx devices: [ 124.297707] BUG: unable to handle kernel paging request at

[RFC PATCH 3/5] rtl28xxu: use r820t to obtain the signal strength

2013-04-07 Thread Mauro Carvalho Chehab
Now that we can get the strength from r820t, use it. Signed-off-by: Mauro Carvalho Chehab mche...@redhat.com --- drivers/media/usb/dvb-usb-v2/rtl28xxu.c | 4 1 file changed, 4 insertions(+) diff --git a/drivers/media/usb/dvb-usb-v2/rtl28xxu.c b/drivers/media/usb/dvb-usb-v2/rtl28xxu.c

[RFC PATCH 2/5] r820t: Set gain mode to auto

2013-04-07 Thread Mauro Carvalho Chehab
This tuner works with 2 modes: automatic gain mode and manual gain mode. Put it into automatic mode, as we currently don't have any API for manual gain adjustment. The logic to allow setting the manual mode is there, as it is just a few extra code. This way, if/when we latter add support for

[RFC PATCH 5/5] rtl820t: Add a debug msg when PLL gets locked

2013-04-07 Thread Mauro Carvalho Chehab
[ 2255.342797] r820t 3-001a: generic_set_freq: PLL locked on frequency 725476191 Hz, gain=45 Signed-off-by: Mauro Carvalho Chehab mche...@redhat.com --- drivers/media/tuners/r820t.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/drivers/media/tuners/r820t.c

[RFC PATCH 4/5] r820t: proper lock and set the I2C gate

2013-04-07 Thread Mauro Carvalho Chehab
As this tuner can be used by analog and digital parts of the driver, be sure that all ops that access the hardware will be be properly locked. Signed-off-by: Mauro Carvalho Chehab mche...@redhat.com --- drivers/media/tuners/r820t.c | 50 +--- 1 file

[PULL] git://linuxtv.org/mkrufky/dvb demods

2013-04-07 Thread Michael Krufky
The following changes since commit 53faa685fa7df0e12751eebbda30bc7e7bb5e71a: [media] siano: Fix array boundary at smscore_translate_msg() (2013-04-04 14:35:40 -0300) are available in the git repository at: git://linuxtv.org/mkrufky/dvb demods for you to fetch changes up to

[PULL] Ondrej Zary's patches for AverMedia A706

2013-04-07 Thread Michael Krufky
The following changes since commit 53faa685fa7df0e12751eebbda30bc7e7bb5e71a: [media] siano: Fix array boundary at smscore_translate_msg() (2013-04-04 14:35:40 -0300) are available in the git repository at: git://linuxtv.org/mkrufky/dvb AverMediaA706-April for you to fetch changes up to

Re: Hauppauge Nova-S-Plus DVB-S works for one channel, but cannot tune in others

2013-04-07 Thread Mauro Carvalho Chehab
Em Sun, 07 Apr 2013 21:10:21 +0200 Hans-Peter Jansen h...@urpla.net escreveu: On Sonntag, 7. April 2013 14:03:29 Mauro Carvalho Chehab wrote: Em Sat, 06 Apr 2013 22:20:19 +0200 Hans-Peter Jansen h...@urpla.net escreveu: On Samstag, 6. April 2013 16:26:32 Mauro Carvalho Chehab wrote:

[PULL] git://linuxtv.org/mkrufky/dvb demods

2013-04-07 Thread Michael Krufky
The following changes since commit 53faa685fa7df0e12751eebbda30bc7e7bb5e71a: [media] siano: Fix array boundary at smscore_translate_msg() (2013-04-04 14:35:40 -0300) are available in the git repository at: git://linuxtv.org/mkrufky/dvb demods for you to fetch changes up to